diff --git a/galvasr2/align/ds_generate_lm.py b/galvasr2/align/ds_generate_lm.py index 3e6ceea8..934293b1 100644 --- a/galvasr2/align/ds_generate_lm.py +++ b/galvasr2/align/ds_generate_lm.py @@ -18,7 +18,6 @@ def convert_and_filter_topk(args): with io.TextIOWrapper( io.BufferedWriter(gzip.open(data_lower, "w+")), encoding="utf-8" ) as file_out: - # Open the input file either from input.txt or input.txt.gz _, file_extension = os.path.splitext(args.input_txt) if file_extension == ".gz": diff --git a/galvasr2/align/generate_lm.py b/galvasr2/align/generate_lm.py index 85734b60..983bc7ef 100644 --- a/galvasr2/align/generate_lm.py +++ b/galvasr2/align/generate_lm.py @@ -15,7 +15,6 @@ def convert_and_filter_topk(output_dir, input_txt, top_k): with io.TextIOWrapper( io.BufferedWriter(gzip.open(data_lower, "w+")), encoding="utf-8" ) as file_out: - # Open the input file either from input.txt or input.txt.gz _, file_extension = os.path.splitext(input_txt) if file_extension == ".gz": diff --git a/galvasr2/align/spark/align_cuda_decoder.py b/galvasr2/align/spark/align_cuda_decoder.py index a66e8962..ac72c642 100644 --- a/galvasr2/align/spark/align_cuda_decoder.py +++ b/galvasr2/align/spark/align_cuda_decoder.py @@ -259,7 +259,6 @@ def main(argv): ], unmount_cmd=["fusermount", "-u"], ) as temp_dir_name: - posix_ctm_out_dir = re.sub( r"^{0}".format(FLAGS.input_gcs_bucket), temp_dir_name, ctm_out_dir ) diff --git a/galvasr2/align/utils.py b/galvasr2/align/utils.py index 3c74accb..c1cf23e4 100644 --- a/galvasr2/align/utils.py +++ b/galvasr2/align/utils.py @@ -186,7 +186,8 @@ def __len__(self): class LimitingPool: """Limits unbound ahead-processing of multiprocessing.Pool's imap method before items get consumed by the iteration caller. - This prevents OOM issues in situations where items represent larger memory allocations.""" + This prevents OOM issues in situations where items represent larger memory allocations. + """ def __init__(self, processes=None, limit_factor=2, sleeping_for=0.1): self.processes = os.cpu_count() if processes is None else processes diff --git a/galvasr2/utils.py b/galvasr2/utils.py index 59c15b3a..bbca1881 100644 --- a/galvasr2/utils.py +++ b/galvasr2/utils.py @@ -2,6 +2,7 @@ import re import sys + # https://stackoverflow.com/a/45176191 def find_runfiles(): """Find the runfiles tree (useful when _not_ run from a zip file)""" diff --git a/galvasr2/yamnet/inference.py b/galvasr2/yamnet/inference.py index 08f1e55c..a25f741c 100644 --- a/galvasr2/yamnet/inference.py +++ b/galvasr2/yamnet/inference.py @@ -82,7 +82,6 @@ def run_inference(config): def get_dataset(config): - logger.debug("Getting file paths") files, filenames = list_files(config["input_path"], config) @@ -237,9 +236,7 @@ def download(url, path): def run_model_on_dataset(yamnet, classes, params, dataset, filenames, config): - with jsonlines.open(config["output_path"], mode="w") as writer: - for batch, filename in zip(dataset, filenames): logger.debug(filename) items = split_into_items(batch, config) @@ -295,7 +292,6 @@ def print_results(writer, filename, results, yamnet_classes, index, config): def run_model_on_batch(yamnet, classes, params, pair): - batch, sr = pair waveform = batch / 32768.0 # Convert to [-1.0, +1.0] @@ -339,7 +335,6 @@ def config_path(): def setup_logging(arguments): - logging_format = "%(asctime)s - %(levelname)s - %(name)s - %(message)s" if arguments["verbose"]: diff --git a/galvasr2/yamnet/scripts/histogram.py b/galvasr2/yamnet/scripts/histogram.py index 05550ffa..417f9b41 100644 --- a/galvasr2/yamnet/scripts/histogram.py +++ b/galvasr2/yamnet/scripts/histogram.py @@ -127,7 +127,6 @@ def config_path(): def setup_logging(arguments): - logging_format = "%(asctime)s - %(levelname)s - %(name)s - %(message)s" if arguments["verbose"]: diff --git a/galvasr2/yamnet/yamnet/params.py b/galvasr2/yamnet/yamnet/params.py index a4e047d2..c1533fcd 100644 --- a/galvasr2/yamnet/yamnet/params.py +++ b/galvasr2/yamnet/yamnet/params.py @@ -17,6 +17,7 @@ from dataclasses import dataclass + # The following hyperparameters (except patch_hop_seconds) were used to train YAMNet, # so expect some variability in performance if you change these. The patch hop can # be changed arbitrarily: a smaller hop should give you more patches from the same diff --git a/galvasr2/yamnet/yamnet/yamnet.py b/galvasr2/yamnet/yamnet/yamnet.py index 41a8750c..8846bf2c 100644 --- a/galvasr2/yamnet/yamnet/yamnet.py +++ b/galvasr2/yamnet/yamnet/yamnet.py @@ -108,7 +108,7 @@ def yamnet(features, params): (params.patch_frames, params.patch_bands, 1), input_shape=(params.patch_frames, params.patch_bands), )(features) - for (i, (layer_fun, kernel, stride, filters)) in enumerate(_YAMNET_LAYER_DEFS): + for i, (layer_fun, kernel, stride, filters) in enumerate(_YAMNET_LAYER_DEFS): net = layer_fun("layer{}".format(i + 1), kernel, stride, filters, params)(net) embeddings = layers.GlobalAveragePooling2D()(net) logits = layers.Dense(units=params.num_classes, use_bias=True)(embeddings) diff --git a/scripts/recipes/librispeech/steps/cleanup/combine_short_segments.py b/scripts/recipes/librispeech/steps/cleanup/combine_short_segments.py index 91cae90d..ea40875c 100755 --- a/scripts/recipes/librispeech/steps/cleanup/combine_short_segments.py +++ b/scripts/recipes/librispeech/steps/cleanup/combine_short_segments.py @@ -133,7 +133,6 @@ def GetCombinedUttIndexRange(utt_index, utts, utt_durs, minimum_duration): cur_utt_dur = utt_durs[utts[utt_index]] while num_remaining_segments > 0: - left_utt_dur = 0 if left_index >= 0: left_utt_dur = utt_durs[utts[left_index]] @@ -267,7 +266,6 @@ def CombineSegments(input_dir, output_dir, minimum_duration): speakers = spk2utt.keys() speakers.sort() for speaker in speakers: - utts = spk2utt[speaker] # this is an assignment of the reference # In WriteCombinedDirFiles the values of spk2utt will have the list # of combined utts which will be used as reference diff --git a/scripts/recipes/librispeech/steps/cleanup/internal/align_ctm_ref.py b/scripts/recipes/librispeech/steps/cleanup/internal/align_ctm_ref.py index 39c04f2a..96e82c16 100755 --- a/scripts/recipes/librispeech/steps/cleanup/internal/align_ctm_ref.py +++ b/scripts/recipes/librispeech/steps/cleanup/internal/align_ctm_ref.py @@ -530,7 +530,7 @@ def get_ctm_edits( # current_time is the end of the last ctm segment we processesed. current_time = ctm_array[0][0] if ctm_len > 0 else 0.0 - for (ref_word, hyp_word, ref_prev_i, hyp_prev_i, ref_i, hyp_i) in alignment_output: + for ref_word, hyp_word, ref_prev_i, hyp_prev_i, ref_i, hyp_i in alignment_output: try: ctm_pos = hyp_prev_i # This is true because we cannot have errors at the end because diff --git a/scripts/recipes/librispeech/steps/cleanup/make_biased_lms.py b/scripts/recipes/librispeech/steps/cleanup/make_biased_lms.py index eeceb21a..58820901 100755 --- a/scripts/recipes/librispeech/steps/cleanup/make_biased_lms.py +++ b/scripts/recipes/librispeech/steps/cleanup/make_biased_lms.py @@ -57,6 +57,7 @@ ) ) + # This processes one group of input lines; 'group_of_lines' is # an array of lines of input integerized text, e.g. # [ 'utt1 67 89 432', 'utt2 89 48 62' ] diff --git a/scripts/recipes/librispeech/steps/conf/append_prf_to_ctm.py b/scripts/recipes/librispeech/steps/conf/append_prf_to_ctm.py index 8336246b..330f9e94 100755 --- a/scripts/recipes/librispeech/steps/conf/append_prf_to_ctm.py +++ b/scripts/recipes/librispeech/steps/conf/append_prf_to_ctm.py @@ -41,7 +41,7 @@ # Parse the prf records into dictionary, prf_dict = dict() -for (f, c, t, e) in prf: +for f, c, t, e in prf: t_pos = 0 # position in the 't' string, while t_pos < len(t): t1 = t[t_pos:].split(" ", 1)[0] # get 1st token at 't_pos' diff --git a/scripts/recipes/librispeech/steps/conf/prepare_calibration_data.py b/scripts/recipes/librispeech/steps/conf/prepare_calibration_data.py index cfdab1ef..b9cf0dcd 100755 --- a/scripts/recipes/librispeech/steps/conf/prepare_calibration_data.py +++ b/scripts/recipes/librispeech/steps/conf/prepare_calibration_data.py @@ -85,7 +85,7 @@ # Build the targets, if o.conf_targets != "": with open(o.conf_targets, "w") as f: - for (utt, chan, beg, dur, wrd_id, conf, score_tag) in ctm: + for utt, chan, beg, dur, wrd_id, conf, score_tag in ctm: # Skip the words we don't know if being correct, if score_tag == "U": continue @@ -124,7 +124,7 @@ # Build the input features, with open(o.conf_feats, "w") as f: - for (utt, chan, beg, dur, wrd_id, conf, score_tag) in ctm: + for utt, chan, beg, dur, wrd_id, conf, score_tag in ctm: # Build the key, same as previously, key = "%s^%s^%s^%s^%s,%s,%s" % (utt, chan, beg, dur, wrd_id, conf, score_tag) diff --git a/scripts/recipes/librispeech/steps/diagnostic/analyze_lattice_depth_stats.py b/scripts/recipes/librispeech/steps/diagnostic/analyze_lattice_depth_stats.py index 56c7382b..85cce5ff 100755 --- a/scripts/recipes/librispeech/steps/diagnostic/analyze_lattice_depth_stats.py +++ b/scripts/recipes/librispeech/steps/diagnostic/analyze_lattice_depth_stats.py @@ -169,7 +169,6 @@ def GetMean(depth_to_count): for phone, depths in sorted( phone_depth_counts.items(), key=lambda x: -sum(x[1].values()) ): - frequency_percentage = sum(depths.values()) * 100.0 / total_frames if frequency_percentage < args.frequency_cutoff_percentage: continue diff --git a/scripts/recipes/librispeech/steps/dict/internal/prune_pron_candidates.py b/scripts/recipes/librispeech/steps/dict/internal/prune_pron_candidates.py index e5de3189..679024cc 100755 --- a/scripts/recipes/librispeech/steps/dict/internal/prune_pron_candidates.py +++ b/scripts/recipes/librispeech/steps/dict/internal/prune_pron_candidates.py @@ -146,7 +146,7 @@ def PruneProns( # have stats, we append them to the "stats" dict, with a zero count. for word, entry in stats.iteritems(): prons_with_stats = set() - for (pron, count) in entry: + for pron, count in entry: prons_with_stats.add(pron) for pron in lexicon_g2p[word]: if pron not in prons_with_stats: diff --git a/scripts/recipes/librispeech/steps/dict/internal/sum_arc_info.py b/scripts/recipes/librispeech/steps/dict/internal/sum_arc_info.py index f69f01b6..d11719f2 100755 --- a/scripts/recipes/librispeech/steps/dict/internal/sum_arc_info.py +++ b/scripts/recipes/librispeech/steps/dict/internal/sum_arc_info.py @@ -133,7 +133,7 @@ def Main(): if phones not in prons[word]: prons[word].append(phones) - for (word, utt) in stats: + for word, utt in stats: count_sum = 0.0 counts = dict() for phones in stats[(word, utt)]: diff --git a/scripts/recipes/librispeech/steps/dict/select_prons_greedy.py b/scripts/recipes/librispeech/steps/dict/select_prons_greedy.py index e443a363..01a0abd6 100755 --- a/scripts/recipes/librispeech/steps/dict/select_prons_greedy.py +++ b/scripts/recipes/librispeech/steps/dict/select_prons_greedy.py @@ -237,7 +237,7 @@ def OneEMIter(args, word, stats, prons, pron_probs, debug=False): for i in range(len(pron_probs)): pron_probs[i] = pron_probs[i] / s log_like = 0.0 - for (utt, start_frame) in stats[word]: + for utt, start_frame in stats[word]: prob = [] soft_counts = [] for i in range(len(prons[word])): diff --git a/scripts/recipes/librispeech/steps/libs/nnet3/report/log_parse.py b/scripts/recipes/librispeech/steps/libs/nnet3/report/log_parse.py index 5e31c75f..c9c6d76d 100755 --- a/scripts/recipes/librispeech/steps/libs/nnet3/report/log_parse.py +++ b/scripts/recipes/librispeech/steps/libs/nnet3/report/log_parse.py @@ -218,7 +218,6 @@ def fill_nonlin_stats_table_with_regex_result(groups, gate_index, stats_table): def parse_progress_logs_for_nonlinearity_stats(exp_dir): - """Parse progress logs for mean and std stats for non-linearities. e.g. for a line that is parsed from progress.*.log: exp/nnet3/lstm_self_repair_ld5_sp/log/progress.9.log:component name=Lstm3_i diff --git a/scripts/recipes/librispeech/steps/libs/nnet3/train/chain_objf/acoustic_model.py b/scripts/recipes/librispeech/steps/libs/nnet3/train/chain_objf/acoustic_model.py index eb433894..63ec8e4a 100644 --- a/scripts/recipes/librispeech/steps/libs/nnet3/train/chain_objf/acoustic_model.py +++ b/scripts/recipes/librispeech/steps/libs/nnet3/train/chain_objf/acoustic_model.py @@ -651,7 +651,6 @@ def compute_train_cv_probabilities( def compute_progress(dir, iter, run_opts): - prev_model = "{0}/{1}.mdl".format(dir, iter - 1) model = "{0}/{1}.mdl".format(dir, iter) diff --git a/scripts/recipes/librispeech/steps/libs/nnet3/train/common.py b/scripts/recipes/librispeech/steps/libs/nnet3/train/common.py index 301f8dde..ea29cd17 100644 --- a/scripts/recipes/librispeech/steps/libs/nnet3/train/common.py +++ b/scripts/recipes/librispeech/steps/libs/nnet3/train/common.py @@ -143,7 +143,6 @@ def get_successful_models(num_models, log_file_pattern, difference_threshold=1.0 def get_average_nnet_model(dir, iter, nnets_list, run_opts, get_raw_nnet_from_am=True): - next_iter = iter + 1 if get_raw_nnet_from_am: out_model = """- \| nnet3-am-copy --set-raw-nnet=- \ @@ -169,7 +168,6 @@ def get_average_nnet_model(dir, iter, nnets_list, run_opts, get_raw_nnet_from_am def get_best_nnet_model( dir, iter, best_model_index, run_opts, get_raw_nnet_from_am=True ): - best_model = "{dir}/{next_iter}.{best_model_index}.raw".format( dir=dir, next_iter=iter + 1, best_model_index=best_model_index ) @@ -550,7 +548,6 @@ def verify_egs_dir( def compute_presoftmax_prior_scale( dir, alidir, num_jobs, run_opts, presoftmax_prior_scale_power=-0.25 ): - # getting the raw pdf count common_lib.execute_command( """{command} JOB=1:{num_jobs} {dir}/log/acc_pdf.JOB.log \ @@ -707,7 +704,6 @@ def get_learning_rate( def should_do_shrinkage( iter, model_file, shrink_saturation_threshold, get_raw_nnet_from_am=True ): - if iter == 0: return True diff --git a/scripts/recipes/librispeech/steps/libs/nnet3/train/frame_level_objf/acoustic_model.py b/scripts/recipes/librispeech/steps/libs/nnet3/train/frame_level_objf/acoustic_model.py index 4b3c964c..1f994466 100644 --- a/scripts/recipes/librispeech/steps/libs/nnet3/train/frame_level_objf/acoustic_model.py +++ b/scripts/recipes/librispeech/steps/libs/nnet3/train/frame_level_objf/acoustic_model.py @@ -33,7 +33,6 @@ def generate_egs( egs_opts=None, cmvn_opts=None, ): - """Wrapper for calling steps/nnet3/get_egs.sh Generates targets from alignment directory 'alidir', which contains diff --git a/scripts/recipes/librispeech/steps/libs/nnet3/train/frame_level_objf/common.py b/scripts/recipes/librispeech/steps/libs/nnet3/train/frame_level_objf/common.py index e9796728..39c8665b 100644 --- a/scripts/recipes/librispeech/steps/libs/nnet3/train/frame_level_objf/common.py +++ b/scripts/recipes/librispeech/steps/libs/nnet3/train/frame_level_objf/common.py @@ -703,7 +703,6 @@ def get_realign_iters(realign_times, num_iters, num_jobs_initial, num_jobs_final def align(dir, data, lang, run_opts, iter=None, online_ivector_dir=None): - alidir = "{dir}/ali{ali_suffix}".format( dir=dir, ali_suffix="_iter_{0}".format(iter) if iter is not None else "" ) diff --git a/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/basic_layers.py b/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/basic_layers.py index f07b320f..c12773e9 100644 --- a/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/basic_layers.py +++ b/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/basic_layers.py @@ -335,39 +335,32 @@ class XconfigInputLayer(XconfigLayerBase): """ def __init__(self, first_token, key_to_value, prev_names=None): - assert first_token == "input" XconfigLayerBase.__init__(self, first_token, key_to_value, prev_names) def set_default_configs(self): - self.config = {"dim": -1} def check_configs(self): - if self.config["dim"] <= 0: raise RuntimeError( "Dimension of input-layer '{0}'" "should be positive.".format(self.name) ) def get_input_descriptor_names(self): - return [] # there is no 'input' field in self.config. def output_name(self, auxiliary_outputs=None): - # there are no auxiliary outputs as this layer will just pass the input assert auxiliary_outputs is None return self.name def output_dim(self, auxiliary_outputs=None): - # there are no auxiliary outputs as this layer will just pass the input assert auxiliary_outputs is None return self.config["dim"] def get_full_config(self): - # unlike other layers the input layers need to be printed in # 'init.config' (which initializes the neural network prior to the LDA) ans = [] @@ -399,12 +392,10 @@ class XconfigTrivialOutputLayer(XconfigLayerBase): """ def __init__(self, first_token, key_to_value, prev_names=None): - assert first_token == "output" XconfigLayerBase.__init__(self, first_token, key_to_value, prev_names) def set_default_configs(self): - # note: self.config['input'] is a descriptor, '[-1]' means output # the most recent layer. self.config = { @@ -415,7 +406,6 @@ def set_default_configs(self): } def check_configs(self): - if ( self.config["objective-type"] != "linear" and self.config["objective-type"] != "quadratic" @@ -427,20 +417,17 @@ def check_configs(self): ) def output_name(self, auxiliary_outputs=None): - # there are no auxiliary outputs as this layer will just pass the output # of the previous layer assert auxiliary_outputs is None return self.name def output_dim(self, auxiliary_outputs=None): - assert auxiliary_outputs is None # note: each value of self.descriptors is (descriptor, dim, normalized-string, output-string). return self.descriptors["input"]["dim"] def get_full_config(self): - # the input layers need to be printed in 'init.config' (which # initializes the neural network prior to the LDA), in 'ref.config', # which is a version of the config file used for getting left and right @@ -515,12 +502,10 @@ class XconfigOutputLayer(XconfigLayerBase): """ def __init__(self, first_token, key_to_value, prev_names=None): - assert first_token == "output-layer" XconfigLayerBase.__init__(self, first_token, key_to_value, prev_names) def set_default_configs(self): - # note: self.config['input'] is a descriptor, '[-1]' means output # the most recent layer. self.config = { @@ -551,7 +536,6 @@ def set_default_configs(self): } def check_configs(self): - if self.config["dim"] <= -1: raise RuntimeError( "In output-layer, dim has invalid value {0}" @@ -576,7 +560,6 @@ def check_configs(self): ) def auxiliary_outputs(self): - auxiliary_outputs = ["affine"] if self.config["include-log-softmax"]: auxiliary_outputs.append("log-softmax") @@ -584,7 +567,6 @@ def auxiliary_outputs(self): return auxiliary_outputs def output_name(self, auxiliary_output=None): - if auxiliary_output is None: # Note: nodes of type output-node in nnet3 may not be accessed in # Descriptors, so calling this with auxiliary_outputs=None doesn't @@ -601,7 +583,6 @@ def output_name(self, auxiliary_output=None): ) def output_dim(self, auxiliary_output=None): - if auxiliary_output is None: # Note: nodes of type output-node in nnet3 may not be accessed in # Descriptors, so calling this with auxiliary_outputs=None doesn't @@ -623,7 +604,6 @@ def get_full_config(self): return ans def _generate_config(self): - configs = [] # note: each value of self.descriptors is (descriptor, dim, @@ -776,7 +756,6 @@ def __init__(self, first_token, key_to_value, prev_names=None): XconfigLayerBase.__init__(self, first_token, key_to_value, prev_names) def set_default_configs(self): - # note: self.config['input'] is a descriptor, '[-1]' means output # the most recent layer. self.config = { @@ -1345,7 +1324,6 @@ def get_full_config(self): return ans def _generate_config(self): - # note: each value of self.descriptors is (descriptor, dim, # normalized-string, output-string). # by 'descriptor_final_string' we mean a string that can appear in @@ -1398,7 +1376,6 @@ class XconfigExistingLayer(XconfigLayerBase): """ def __init__(self, first_token, key_to_value, prev_names=None): - assert first_token == "existing" XconfigLayerBase.__init__(self, first_token, key_to_value, prev_names) diff --git a/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/convolution.py b/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/convolution.py index a0ef9dd1..2401c8a7 100644 --- a/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/convolution.py +++ b/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/convolution.py @@ -1411,6 +1411,7 @@ def _generate_bottleneck_resblock_config(self): # An example line using this layer is: # channel-average-layer name=channel-average input=Append(2, 4, 6, 8) dim=64 + # the configuration value 'dim' is the output dimension of this layer. # The input dimension is expected to be a multiple of 'dim'. The output # will be the average of 'dim'-sized blocks of the input. diff --git a/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/gru.py b/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/gru.py index 1cd6ad84..bb5b2ce5 100644 --- a/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/gru.py +++ b/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/gru.py @@ -13,6 +13,7 @@ import sys from libs.nnet3.xconfig.basic_layers import XconfigLayerBase + # This class is for lines like # 'gru-layer name=gru1 input=[-1] delay=-3' # It generates an GRU sub-graph without output projections. @@ -91,7 +92,6 @@ def get_full_config(self): # convenience function to generate the GRU config def generate_gru_config(self): - # assign some variables to reduce verbosity name = self.name # in the below code we will just call descriptor_strings as descriptors for conciseness @@ -397,7 +397,6 @@ def get_full_config(self): # convenience function to generate the PGRU config def generate_pgru_config(self): - # assign some variables to reduce verbosity name = self.name # in the below code we will just call descriptor_strings as descriptors for conciseness @@ -736,7 +735,6 @@ def get_full_config(self): # convenience function to generate the Norm-PGRU config def generate_pgru_config(self): - # assign some variables to reduce verbosity name = self.name # in the below code we will just call descriptor_strings as descriptors for conciseness @@ -1125,7 +1123,6 @@ def get_full_config(self): # convenience function to generate the OPGRU config def generate_pgru_config(self): - # assign some variables to reduce verbosity name = self.name # in the below code we will just call descriptor_strings as descriptors for conciseness @@ -1336,6 +1333,7 @@ def generate_pgru_config(self): # Different from the vanilla OPGRU, the NormOPGRU uses batchnorm in the forward direction # and renorm in the recurrence. + # The output dimension of the layer may be specified via 'cell-dim=xxx', but if not specified, # the dimension defaults to the same as the input. # See other configuration values below. @@ -1475,7 +1473,6 @@ def get_full_config(self): # convenience function to generate the Norm-OPGRU config def generate_pgru_config(self): - # assign some variables to reduce verbosity name = self.name # in the below code we will just call descriptor_strings as descriptors for conciseness @@ -1841,7 +1838,6 @@ def get_full_config(self): # convenience function to generate the GRU config def generate_gru_config(self): - # assign some variables to reduce verbosity name = self.name # in the below code we will just call descriptor_strings as descriptors for conciseness @@ -2123,7 +2119,6 @@ def get_full_config(self): # convenience function to generate the PGRU config def generate_pgru_config(self): - # assign some variables to reduce verbosity name = self.name # in the below code we will just call descriptor_strings as descriptors for conciseness @@ -2299,6 +2294,7 @@ def generate_pgru_config(self): # Different from the vanilla PGRU, the NormPGRU uses batchnorm in the forward direction # and renorm in the recurrence. + # The output dimension of the layer may be specified via 'cell-dim=xxx', but if not specified, # the dimension defaults to the same as the input. # See other configuration values below. @@ -2444,7 +2440,6 @@ def get_full_config(self): # convenience function to generate the Norm-PGRU config def generate_pgru_config(self): - # assign some variables to reduce verbosity name = self.name # in the below code we will just call descriptor_strings as descriptors for conciseness @@ -2824,7 +2819,6 @@ def get_full_config(self): # convenience function to generate the OPGRU config def generate_pgru_config(self): - # assign some variables to reduce verbosity name = self.name # in the below code we will just call descriptor_strings as descriptors for conciseness @@ -3013,6 +3007,7 @@ def generate_pgru_config(self): # Different from the vanilla OPGRU, the NormOPGRU uses batchnorm in the forward direction # and renorm in the recurrence. + # The output dimension of the layer may be specified via 'cell-dim=xxx', but if not specified, # the dimension defaults to the same as the input. # See other configuration values below. @@ -3158,7 +3153,6 @@ def get_full_config(self): # convenience function to generate the Norm-OPGRU config def generate_pgru_config(self): - # assign some variables to reduce verbosity name = self.name # in the below code we will just call descriptor_strings as descriptors for conciseness diff --git a/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/lstm.py b/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/lstm.py index 107a1777..9f9d8676 100644 --- a/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/lstm.py +++ b/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/lstm.py @@ -123,7 +123,6 @@ def get_full_config(self): # convenience function to generate the LSTM config def _generate_lstm_config(self): - # assign some variables to reduce verbosity name = self.name # in the below code we will just call descriptor_strings as descriptors for conciseness @@ -530,7 +529,6 @@ def get_full_config(self): # convenience function to generate the LSTM config def _generate_lstm_config(self): - # assign some variables to reduce verbosity name = self.name # in the below code we will just call descriptor_strings as descriptors for conciseness @@ -995,7 +993,6 @@ def get_full_config(self): # convenience function to generate the LSTM config def _generate_lstm_config(self): - # assign some variables to reduce verbosity name = self.name # in the below code we will just call descriptor_strings as descriptors for conciseness @@ -1138,6 +1135,7 @@ def _generate_lstm_config(self): # And the LSTM is followed by a batchnorm component (this is by default; it's not # part of the layer name, like lstmb-batchnorm-layer). + # # The output dimension of the layer may be specified via 'cell-dim=xxx', but if not specified, # the dimension defaults to the same as the input. @@ -1233,7 +1231,6 @@ def get_full_config(self): # convenience function to generate the LSTM config def _generate_lstm_config(self): - # assign some variables to reduce verbosity name = self.name # in the below code we will just call descriptor_strings as descriptors for conciseness diff --git a/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/parser.py b/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/parser.py index 4c2d0581..d91ac8a1 100644 --- a/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/parser.py +++ b/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/parser.py @@ -89,6 +89,7 @@ "delta-layer": xlayers.XconfigDeltaLayer, } + # Turn a config line and a list of previous layers into # either an object representing that line of the config file; or None # if the line was empty after removing comments. diff --git a/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/utils.py b/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/utils.py index 0a534f4c..455a51ae 100644 --- a/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/utils.py +++ b/scripts/recipes/librispeech/steps/libs/nnet3/xconfig/utils.py @@ -201,6 +201,7 @@ def convert_value_to_type(key, dest_type, string_value): # they are interpreted as Offset(prev_layer, -3) where 'prev_layer' # is the previous layer in the config file. + # Also, in any place a raw input/layer/output name can appear, we accept things # like [-1] meaning the previous input/layer/output's name, or [-2] meaning the # last-but-one input/layer/output, and so on. diff --git a/scripts/recipes/librispeech/steps/nnet2/make_multisplice_configs.py b/scripts/recipes/librispeech/steps/nnet2/make_multisplice_configs.py index 65d1ec8c..20375ec2 100755 --- a/scripts/recipes/librispeech/steps/nnet2/make_multisplice_configs.py +++ b/scripts/recipes/librispeech/steps/nnet2/make_multisplice_configs.py @@ -8,6 +8,7 @@ from __future__ import print_function import re, argparse, sys, math, warnings + # returns the set of frame indices required to perform the convolution # between sequences with frame indices in x and y def get_convolution_index_set(x, y): diff --git a/scripts/recipes/librispeech/steps/nnet3/chain/e2e/train_e2e.py b/scripts/recipes/librispeech/steps/nnet3/chain/e2e/train_e2e.py index fdc6cb63..170de9e4 100755 --- a/scripts/recipes/librispeech/steps/nnet3/chain/e2e/train_e2e.py +++ b/scripts/recipes/librispeech/steps/nnet3/chain/e2e/train_e2e.py @@ -535,7 +535,6 @@ def train(args, run_opts): ) for iter in range(num_iters): - percent = num_archives_processed * 100.0 / num_archives_to_process epoch = num_archives_processed * args.num_epochs / num_archives_to_process diff --git a/scripts/recipes/librispeech/steps/nnet3/lstm/make_configs.py b/scripts/recipes/librispeech/steps/nnet3/lstm/make_configs.py index 3ca5c4f9..1f3fbecd 100755 --- a/scripts/recipes/librispeech/steps/nnet3/lstm/make_configs.py +++ b/scripts/recipes/librispeech/steps/nnet3/lstm/make_configs.py @@ -380,7 +380,6 @@ def MakeConfigs( max_change_per_component, max_change_per_component_final, ): - config_lines = {"components": [], "component-nodes": []} config_files = {} diff --git a/scripts/recipes/librispeech/steps/nnet3/multilingual/allocate_multilingual_examples.py b/scripts/recipes/librispeech/steps/nnet3/multilingual/allocate_multilingual_examples.py index 2a62b469..5ba6a66d 100755 --- a/scripts/recipes/librispeech/steps/nnet3/multilingual/allocate_multilingual_examples.py +++ b/scripts/recipes/librispeech/steps/nnet3/multilingual/allocate_multilingual_examples.py @@ -60,7 +60,6 @@ def get_args(): - parser = argparse.ArgumentParser( description=""" This script generates examples for multilingual training of neural network by producing 3 sets of primary files diff --git a/scripts/recipes/librispeech/steps/nnet3/report/generate_plots.py b/scripts/recipes/librispeech/steps/nnet3/report/generate_plots.py index bc8fc53f..f2da47b0 100755 --- a/scripts/recipes/librispeech/steps/nnet3/report/generate_plots.py +++ b/scripts/recipes/librispeech/steps/nnet3/report/generate_plots.py @@ -217,7 +217,6 @@ def generate_acc_logprob_plots( latex_report=None, output_name="output", ): - assert start_iter >= 1 if plot: @@ -293,6 +292,7 @@ def generate_acc_logprob_plots( (0, 0), 1, 1, facecolor="w", fill=False, edgecolor="none", linewidth=0 ) + # This function is used to insert a column to the legend, the column_index is 1-based def insert_a_column_legend( legend_handle, legend_label, lp, mp, hp, dir, prefix_length, column_index @@ -996,7 +996,7 @@ def generate_plots( else: latex_report = None - for (output_name, objective_type) in output_names: + for output_name, objective_type in output_names: if objective_type == "linear": logger.info("Generating accuracy plots for '%s'", output_name) generate_acc_logprob_plots( diff --git a/scripts/recipes/librispeech/steps/nnet3/tdnn/make_configs.py b/scripts/recipes/librispeech/steps/nnet3/tdnn/make_configs.py index dd5558fc..8efbe929 100755 --- a/scripts/recipes/librispeech/steps/nnet3/tdnn/make_configs.py +++ b/scripts/recipes/librispeech/steps/nnet3/tdnn/make_configs.py @@ -556,7 +556,6 @@ def MakeConfigs( max_change_per_component_final, objective_type, ): - parsed_splice_output = ParseSpliceString(splice_indexes_string.strip()) left_context = parsed_splice_output["left_context"] diff --git a/scripts/recipes/librispeech/utils/data/internal/modify_speaker_info.py b/scripts/recipes/librispeech/utils/data/internal/modify_speaker_info.py index 5f5b2799..58d78764 100755 --- a/scripts/recipes/librispeech/utils/data/internal/modify_speaker_info.py +++ b/scripts/recipes/librispeech/utils/data/internal/modify_speaker_info.py @@ -84,6 +84,7 @@ except Exception as e: sys.exit("modify_speaker_info.py: problem reading utt2dur info: " + str(e)) + # splits a list of utts into a list of lists, based on constraints from the # command line args. Note: the last list will tend to be shorter than the others, # we make no attempt to fix this. diff --git a/scripts/recipes/librispeech/utils/lang/bpe/apply_bpe.py b/scripts/recipes/librispeech/utils/lang/bpe/apply_bpe.py index 3463b7ee..4fbb0980 100755 --- a/scripts/recipes/librispeech/utils/lang/bpe/apply_bpe.py +++ b/scripts/recipes/librispeech/utils/lang/bpe/apply_bpe.py @@ -28,7 +28,6 @@ class BPE(object): def __init__(self, codes, merges=-1, separator="@@", vocab=None, glossaries=None): - codes.seek(0) # check version information @@ -387,7 +386,6 @@ def isolate_glossary(word, glossary): if __name__ == "__main__": - # python 2/3 compatibility if sys.version_info < (3, 0): sys.stderr = codecs.getwriter("UTF-8")(sys.stderr) diff --git a/scripts/recipes/librispeech/utils/lang/bpe/learn_bpe.py b/scripts/recipes/librispeech/utils/lang/bpe/learn_bpe.py index c3588de0..25cc3972 100755 --- a/scripts/recipes/librispeech/utils/lang/bpe/learn_bpe.py +++ b/scripts/recipes/librispeech/utils/lang/bpe/learn_bpe.py @@ -105,7 +105,6 @@ def update_pair_statistics(pair, changed, stats, indices): first, second = pair new_pair = first + second for j, word, old_word, freq in changed: - # find all instances of pair, and update frequency/indices around it i = 0 while True: @@ -266,7 +265,6 @@ def main(infile, outfile, num_symbols, min_frequency=2, verbose=False, is_dict=F if __name__ == "__main__": - # python 2/3 compatibility if sys.version_info < (3, 0): sys.stderr = codecs.getwriter("UTF-8")(sys.stderr) diff --git a/scripts/recipes/librispeech/utils/lang/make_kn_lm.py b/scripts/recipes/librispeech/utils/lang/make_kn_lm.py index c0924913..b76511c5 100755 --- a/scripts/recipes/librispeech/utils/lang/make_kn_lm.py +++ b/scripts/recipes/librispeech/utils/lang/make_kn_lm.py @@ -227,7 +227,6 @@ def cal_f(self): for n in range(0, self.ngram_order - 1): this_order_counts = self.counts[n] for hist, counts_for_hist in this_order_counts.items(): - n_star_star = 0 for w in counts_for_hist.word_to_count.keys(): n_star_star += len(counts_for_hist.word_to_context[w]) @@ -425,7 +424,6 @@ def print_as_arpa( if __name__ == "__main__": - ngram_counts = NgramCounts(args.ngram_order) if args.text is None: diff --git a/scripts/recipes/librispeech/utils/lang/make_lexicon_fst.py b/scripts/recipes/librispeech/utils/lang/make_lexicon_fst.py index bb2d9bda..af8f0d66 100755 --- a/scripts/recipes/librispeech/utils/lang/make_lexicon_fst.py +++ b/scripts/recipes/librispeech/utils/lang/make_lexicon_fst.py @@ -256,7 +256,7 @@ def write_fst_no_silence(lexicon, nonterminals=None, left_context_phones=None): loop_state = 0 next_state = 1 # the next un-allocated state, will be incremented as we go. - for (word, pronprob, pron) in lexicon: + for word, pronprob, pron in lexicon: cost = -math.log(pronprob) cur_state = loop_state for i in range(len(pron) - 1): @@ -367,7 +367,7 @@ def write_fst_with_silence( ) ) - for (word, pronprob, pron) in lexicon: + for word, pronprob, pron in lexicon: pron_cost = -math.log(pronprob) cur_state = loop_state for i in range(len(pron) - 1): diff --git a/scripts/recipes/librispeech/utils/lang/make_phone_lm.py b/scripts/recipes/librispeech/utils/lang/make_phone_lm.py index ed13b40c..9c6ebca3 100755 --- a/scripts/recipes/librispeech/utils/lang/make_phone_lm.py +++ b/scripts/recipes/librispeech/utils/lang/make_phone_lm.py @@ -359,7 +359,6 @@ def EnsureStructurallyNeededNgramsExist(self): if args.verbose >= 1: num_ngrams_initial = self.GetNumNgrams() for n in reversed(list(range(args.no_backoff_ngram_order, args.ngram_order))): - for hist, counts_for_hist in self.counts[n].items(): # This loop ensures that if we have an n-gram like (6, 7, 8) -> 9, # then, say, (7, 8) -> 9 and (8) -> 9 exist. diff --git a/scripts/recipes/librispeech/utils/lang/make_position_dependent_subword_lexicon.py b/scripts/recipes/librispeech/utils/lang/make_position_dependent_subword_lexicon.py index 5ef1c0a8..c8d609f5 100755 --- a/scripts/recipes/librispeech/utils/lang/make_position_dependent_subword_lexicon.py +++ b/scripts/recipes/librispeech/utils/lang/make_position_dependent_subword_lexicon.py @@ -79,7 +79,7 @@ def write_position_dependent_lexicon(lexiconp, separator): So the suffix_list is initialized with all _I and we only replace the first and last phone suffix when dealing with different cases when necessary. """ - for (word, prob, phones) in lexiconp: + for word, prob, phones in lexiconp: phones_length = len(phones) # suffix_list is initialized by all "_I"s. diff --git a/scripts/recipes/librispeech/utils/lang/make_subword_lexicon_fst.py b/scripts/recipes/librispeech/utils/lang/make_subword_lexicon_fst.py index 662f6fc7..4f6b921a 100755 --- a/scripts/recipes/librispeech/utils/lang/make_subword_lexicon_fst.py +++ b/scripts/recipes/librispeech/utils/lang/make_subword_lexicon_fst.py @@ -8,6 +8,7 @@ import math import sys + # see get_args() below for usage mesage def get_args(): parser = argparse.ArgumentParser( @@ -150,7 +151,7 @@ def write_fst_no_silence(lexicon, position_dependent, separator): word_internal_state = next_state next_state += 1 - for (word, pron_prob, phones) in lexicon: + for word, pron_prob, phones in lexicon: pron_cost = 0.0 # do not support pron_prob phones_len = len(phones) @@ -269,7 +270,7 @@ def write_fst_with_silence( word_internal_state = next_state next_state += 1 - for (word, pron_prob, phones) in lexicon: + for word, pron_prob, phones in lexicon: pron_cost = 0.0 # do not support pron_prob phones_len = len(phones) @@ -318,7 +319,7 @@ def write_fst_with_silence( phone = phones[i] if i >= 0 else "" word = word if i <= 0 else "" cost = pron_cost if i <= 0 else 0.0 - for (end_state, end_cost) in zip(end_state_list, end_cost_list): + for end_state, end_cost in zip(end_state_list, end_cost_list): print_arc(current_state, end_state, phone, word, cost + end_cost) # set the final state diff --git a/scripts/recipes/librispeech/utils/nnet/make_nnet_proto.py b/scripts/recipes/librispeech/utils/nnet/make_nnet_proto.py index 5bc98a1f..23e8eb37 100755 --- a/scripts/recipes/librispeech/utils/nnet/make_nnet_proto.py +++ b/scripts/recipes/librispeech/utils/nnet/make_nnet_proto.py @@ -164,6 +164,7 @@ sum(map(int, re.split("[,:]", o.block_softmax_dims))) == num_leaves ) # posible separators : ',' ':' + # Optionaly scale def Glorot(dim1, dim2): if o.with_glorot: diff --git a/scripts/wikimedia_commons.py b/scripts/wikimedia_commons.py new file mode 100644 index 00000000..0b488584 --- /dev/null +++ b/scripts/wikimedia_commons.py @@ -0,0 +1,98 @@ +import mwxml +import pickle +from tqdm import tqdm +import requests +import os +from pyWikiCommons import pyWikiCommons + + +def get_dataset(xml_file, output_file_name): + dump = mwxml.Dump.from_file(open(xml_file)) + print(dump.site_info.name, dump.site_info.dbname) + + pages = [] + counter = 0 + for page in tqdm(dump): + if page.namespace == 102: + counter += 1 + for revision in page: + revision = revision + pages.append(revision) + print(counter) + + wikimedia = [i.to_json() for i in pages] + + import json + + with open(output_file_name, "w") as file: + json.dump(wikimedia, file) + + +# Esto solo sirve para .webm +def change_format(file_name): + import subprocess + + changed_filename = os.rename(file_name, "temp.webm") + print(true_link) + subprocess.run(f'ffmpeg -i "temp.webm" {file_name}.mp3', shell=True) + + +def download_file(url, file_name): + headers = { + "User-Agent": "CoolBot/0.0 (https://example.org/coolbot/; coolbot@example.org)" + } + with requests.get(url, stream=True, headers=headers) as r: + r.raise_for_status() + with open(file_name, "wb") as f: + for chunk in r.iter_content(chunk_size=8192): + f.write(chunk) + return file_name + + +def split_with_last_dot(string): + for character in range(len(string) - 1, 0, -1): + if string[character] == ".": + left = string[:character] + right = string[character + 1 :] + return [left, right] + + +# Download, convert and upload files to GCP + +import json + +with open("wikimedia.json", "r") as file: + previous_json = json.load(file) + +counter = 0 +database = {} +# for i in range(len(previous_json)): +for i in range(1): + link = previous_json[i]["page"]["title"] + dots = 0 + left, _ = split_with_last_dot(link) + true_link, _ = split_with_last_dot(link) + + with open(link + ".txt", "w") as f: + f.write(previous_json[i]["text"]) + + # upload_and_delete_txt() + + if true_link in database.keys(): + database[true_link].append(link) + else: + database[true_link] = [link] + try: + url = pyWikiCommons.get_commons_url("File:" + true_link) + download_file(url, true_link) + change_format(true_link) + + # upload_and_delete_video() + + f = open("uploaded.txt", "a") + f.write(f"{i},{true_link}\n") + f.close() + except: + f = open("error.txt", "a") + f.write(f"{i},{true_link}\n") + f.close() diff --git a/scripts/wikimedia_download_and_EDA.ipynb b/scripts/wikimedia_download_and_EDA.ipynb new file mode 100644 index 00000000..60332b31 --- /dev/null +++ b/scripts/wikimedia_download_and_EDA.ipynb @@ -0,0 +1,111288 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "9e51e5e7", + "metadata": {}, + "source": [] + }, + { + "cell_type": "markdown", + "id": "fea6fbc7", + "metadata": {}, + "source": [ + "# Read data downloaded from wikimedia commons" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "2254587e", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31517960it [01:25, 367343.87it/s]\n" + ] + }, + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 10\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mevent\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0melem\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mtqdm\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mET\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0miterparse\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"commonswiki-20221001-pages-articles-multistream.xml\"\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mevents\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"start\"\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m\"end\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 11\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mevent\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0;34m'end'\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 12\u001b[0;31m \u001b[0;32mif\u001b[0m \u001b[0melem\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtag\u001b[0m \u001b[0;32min\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0mroot\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;34m\"ns\"\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mroot\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;34m\"text\"\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mroot\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;34m\"sha1\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 13\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0melem\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtag\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0mroot\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;34m\"ns\"\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 14\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0melem\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtext\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0;34m\"102\"\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mKeyboardInterrupt\u001b[0m: " + ] + } + ], + "source": [ + "from lxml import etree as ET\n", + "import resource\n", + "from tqdm import tqdm\n", + "\n", + "path = []\n", + "results = []\n", + "to_process = False\n", + "root = \"{http://www.mediawiki.org/xml/export-0.10/}\"\n", + "\n", + "\n", + "for event, elem in tqdm(ET.iterparse(\"commonswiki-20221001-pages-articles-multistream.xml\", events=(\"start\", \"end\"))):\n", + " if event == 'end':\n", + " if elem.tag in (root+\"ns\",root+\"text\",root+\"sha1\"):\n", + " if elem.tag == root+\"ns\":\n", + " if elem.text == \"102\":\n", + " print(elem.text)\n", + " to_process = True\n", + "\n", + " if to_process == True:\n", + " if elem.tag == root+\"text\":\n", + " text = elem.text\n", + " if elem.tag == root+\"comment\":\n", + " comment = elem.text\n", + " results.append({\"text\":text,\"comment\":comment})\n", + " to_process=False\n", + " elem.clear()\n", + " " + ] + }, + { + "cell_type": "markdown", + "id": "40feedce", + "metadata": {}, + "source": [ + "# Get items with NS = 102 (TimedText)" + ] + }, + { + "cell_type": "code", + "execution_count": 85, + "id": "b57fda5d", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Wikimedia Commons commonswiki\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "6167502it [13:17, 8625.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "6177641it [13:18, 7983.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2\n", + "3\n", + "4\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "6232766it [13:25, 8660.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "6382616it [13:43, 7940.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "6384286it [13:43, 8032.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "6417437it [13:48, 8114.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8\n", + "9\n", + "10\n", + "11\n", + "12\n", + "13\n", + "14\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "6421762it [13:48, 8580.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15\n", + "16\n", + "17\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "6464966it [13:53, 8764.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "18\n", + "19\n", + "20\n", + "21\n", + "22\n", + "23\n", + "24\n", + "25\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "6469459it [13:54, 8995.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "26\n", + "27\n", + "28\n", + "29\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "6474978it [13:54, 9028.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "30\n", + "31\n", + "32\n", + "33\n", + "34\n", + "35\n", + "36\n", + "37\n", + "38\n", + "39\n", + "40\n", + "41\n", + "42\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "6545575it [14:03, 8362.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "43\n", + "44\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "6548180it [14:03, 8051.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "45\n", + "46\n", + "47\n", + "48\n", + "49\n", + "50\n", + "51\n", + "52\n", + "53\n", + "54\n", + "55\n", + "56\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "7110769it [15:12, 7456.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "57\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "7200634it [15:23, 9035.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "58\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "7203353it [15:23, 8929.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "59\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "7311164it [15:36, 8845.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "60\n", + "61\n", + "62\n", + "63\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "7604616it [16:12, 8199.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "64\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "7615610it [16:13, 7958.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "65\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "7666998it [16:20, 8009.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "66\n", + "67\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "7954097it [16:54, 8949.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "68\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8348270it [17:45, 7919.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "69\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8359876it [17:46, 8528.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "70\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8559610it [18:11, 8185.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "71\n", + "72\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8563024it [18:11, 8383.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "73\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8566574it [18:12, 8787.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "74\n", + "75\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8570111it [18:12, 8800.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "76\n", + "77\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8574566it [18:13, 8693.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "78\n", + "79\n", + "80\n", + "81\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8578056it [18:13, 8699.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "82\n", + "83\n", + "84\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8580660it [18:13, 8573.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "85\n", + "86\n", + "87\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8583254it [18:14, 7958.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "88\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8589270it [18:14, 8752.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "89\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8594703it [18:15, 9020.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "90\n", + "91\n", + "92\n", + "93\n", + "94\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8602937it [18:16, 8869.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "95\n", + "96\n", + "97\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8609911it [18:17, 8397.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "98\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8613336it [18:17, 8483.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "99\n", + "100\n", + "101\n", + "102\n", + "103\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8627460it [18:19, 8043.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "104\n", + "105\n", + "106\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8629969it [18:19, 7935.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "107\n", + "108\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8647032it [18:21, 7470.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "109\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8661180it [18:23, 7657.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "110\n", + "111\n", + "112\n", + "113\n", + "114\n", + "115\n", + "116\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8663549it [18:23, 7816.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "117\n", + "118\n", + "119\n", + "120\n", + "121\n", + "122\n", + "123\n", + "124\n", + "125\n", + "126\n", + "127\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8666033it [18:24, 7643.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "128\n", + "129\n", + "130\n", + "131\n", + "132\n", + "133\n", + "134\n", + "135\n", + "136\n", + "137\n", + "138\n", + "139\n", + "140\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8668313it [18:24, 7235.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "141\n", + "142\n", + "143\n", + "144\n", + "145\n", + "146\n", + "147\n", + "148\n", + "149\n", + "150\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8678669it [18:26, 7247.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "151\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8686071it [18:26, 7823.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "152\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8689574it [18:27, 8509.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "153\n", + "154\n", + "155\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8694011it [18:27, 8659.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "156\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8725847it [18:31, 8363.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "157\n", + "158\n", + "159\n", + "160\n", + "161\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8733927it [18:33, 8283.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "162\n", + "163\n", + "164\n", + "165\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8740604it [18:34, 6587.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "166\n", + "167\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8746285it [18:34, 7453.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "168\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8765080it [18:37, 8474.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "169\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8786920it [18:40, 8316.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "170\n", + "171\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8789634it [18:40, 8822.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "172\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8904002it [18:54, 7783.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "173\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "8934695it [18:58, 7613.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "174\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9035053it [19:10, 8672.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "175\n", + "176\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9055377it [19:12, 8598.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "177\n", + "178\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9058798it [19:13, 8043.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "179\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9079276it [19:15, 8980.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "180\n", + "181\n", + "182\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9094254it [19:17, 8354.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "183\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9123873it [19:21, 8837.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "184\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9126517it [19:21, 8511.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "185\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9169702it [19:26, 8558.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "186\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9175983it [19:27, 8873.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "187\n", + "188\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9180565it [19:27, 9097.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "189\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9197465it [19:29, 7911.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "190\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9246155it [19:36, 7960.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "191\n", + "192\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9334273it [19:46, 8420.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "193\n", + "194\n", + "195\n", + "196\n", + "197\n", + "198\n", + "199\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9386138it [19:53, 7659.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "200\n", + "201\n", + "202\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9397349it [19:54, 8674.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "203\n", + "204\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9399050it [19:54, 8197.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "205\n", + "206\n", + "207\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9401563it [19:54, 8274.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "208\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9405721it [19:55, 8217.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "209\n", + "210\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9411515it [19:56, 8158.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "211\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9416406it [19:56, 7732.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "212\n", + "213\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9423471it [19:57, 8442.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "214\n", + "215\n", + "216\n", + "217\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9426809it [19:58, 7992.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "218\n", + "219\n", + "220\n", + "221\n", + "222\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9428382it [19:58, 7386.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "223\n", + "224\n", + "225\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9433228it [19:58, 7410.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "226\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9444728it [20:00, 7474.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "227\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9463069it [20:03, 7499.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "228\n", + "229\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9475696it [20:04, 7981.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "230\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9480467it [20:05, 5686.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "231\n", + "232\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9487636it [20:06, 6655.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "233\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9525097it [20:11, 8053.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "234\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9542448it [20:13, 8623.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "235\n", + "236\n", + "237\n", + "238\n", + "239\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9926928it [21:06, 6113.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "240\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9938407it [21:09, 4106.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "241\n", + "242\n", + "243\n", + "244\n", + "245\n", + "246\n", + "247\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "9938853it [21:09, 4094.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "248\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9941502it [21:10, 5079.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "249\n", + "250\n", + "251\n", + "252\n", + "253\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9963439it [21:13, 6198.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "254\n", + "255\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "9980175it [21:16, 5934.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "256\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "10300645it [21:57, 7969.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "257\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11211486it [23:53, 7915.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "258\n", + "259\n", + "260\n", + "261\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11220340it [23:54, 7688.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "262\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11225158it [23:54, 7867.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "263\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11245511it [23:57, 7522.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "264\n", + "265\n", + "266\n", + "267\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11306010it [24:05, 7639.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "268\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11340553it [24:09, 8214.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "269\n", + "270\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11349570it [24:10, 7816.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "271\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11366848it [24:13, 7506.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "272\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11388584it [24:15, 8631.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "273\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11422629it [24:19, 7934.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "274\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11458592it [24:24, 7497.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "275\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11551488it [24:35, 8490.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "276\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11554839it [24:36, 8069.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "277\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11558969it [24:36, 8257.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "278\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11565012it [24:37, 8196.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "279\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11566624it [24:37, 7684.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "280\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11677319it [24:51, 8097.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "281\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11687807it [24:52, 6709.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "282\n", + "283\n", + "284\n", + "285\n", + "286\n", + "287\n", + "288\n", + "289\n", + "290\n", + "291\n", + "292\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11755349it [25:01, 7316.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "293\n", + "294\n", + "295\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11760764it [25:02, 7745.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "296\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11774231it [25:03, 7979.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "297\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11786605it [25:05, 8280.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "298\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11792463it [25:06, 8346.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "299\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11795812it [25:06, 8240.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "300\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11802475it [25:07, 8117.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "301\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11847640it [25:12, 8108.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "302\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11878496it [25:16, 7745.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "303\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11896130it [25:19, 7674.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "304\n", + "305\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "11899345it [25:19, 7947.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "306\n", + "307\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12055525it [25:44, 8016.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "308\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12100043it [25:50, 8023.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "309\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12103441it [25:50, 8435.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "310\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12150388it [25:56, 7975.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "311\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12165096it [25:58, 8100.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "312\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12271880it [26:11, 8050.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "313\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12351230it [26:21, 7874.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "314\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12353610it [26:22, 7581.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "315\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12452032it [26:34, 7503.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "316\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12472426it [26:37, 8509.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "317\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12497696it [26:40, 8802.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "318\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12500350it [26:40, 8777.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "319\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12507493it [26:41, 8835.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "320\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12532657it [26:44, 8812.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "321\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12657627it [26:58, 8320.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "322\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12662831it [26:59, 6112.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "323\n", + "324\n", + "325\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12682223it [27:02, 8634.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "326\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12695184it [27:03, 8499.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "327\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12730918it [27:08, 7654.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "328\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "12845378it [27:22, 8142.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "329\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "13140905it [28:00, 8052.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "330\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "13253179it [28:14, 7789.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "331\n", + "332\n", + "333\n", + "334\n", + "335\n", + "336\n", + "337\n", + "338\n", + "339\n", + "340\n", + "341\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "13288790it [28:18, 8352.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "342\n", + "343\n", + "344\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "13445423it [28:38, 8086.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "345\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "13585168it [29:00, 3739.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "346\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "13694357it [29:25, 7998.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "347\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "13985544it [30:08, 7910.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "348\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "14193865it [30:41, 7075.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "349\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "14564990it [31:28, 8682.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "350\n", + "351\n", + "352\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "14629281it [31:36, 8700.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "353\n", + "354\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "14661592it [31:40, 8726.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "355\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "14755953it [31:50, 8890.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "356\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "14759538it [31:51, 8848.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "357\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "14862040it [32:03, 8954.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "358\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "14893858it [32:07, 8060.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "359\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "14902951it [32:08, 8853.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "360\n", + "361\n", + "362\n", + "363\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "15221033it [32:47, 7629.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "364\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "15356191it [33:10, 7151.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "365\n", + "366\n", + "367\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "15369450it [33:12, 7227.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "368\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "15403592it [33:17, 7141.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "369\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "15412660it [33:19, 6661.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "370\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "15452006it [33:24, 8358.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "371\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "15564087it [33:40, 7912.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "372\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "15610874it [33:48, 6363.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "373\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "15679883it [33:57, 8595.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "374\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "15832461it [34:18, 7434.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "375\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "15877644it [34:25, 6908.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "376\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "15909065it [34:30, 5954.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "377\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "16429400it [35:48, 6919.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "378\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "16761840it [37:03, 4978.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "379\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "16789533it [37:09, 4977.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "380\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17204944it [38:15, 7404.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "381\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17225844it [38:18, 8032.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "382\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17228434it [38:18, 7921.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "383\n", + "384\n", + "385\n", + "386\n", + "387\n", + "388\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17230682it [38:18, 6555.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "389\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17232682it [38:19, 6495.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "390\n", + "391\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17235998it [38:19, 6555.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "392\n", + "393\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17244957it [38:20, 8275.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "394\n", + "395\n", + "396\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17249311it [38:21, 8563.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "397\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17253564it [38:21, 8428.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "398\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17267234it [38:23, 8230.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "399\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17285288it [38:25, 7202.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "400\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17342156it [38:33, 7419.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "401\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17346322it [38:33, 8065.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "402\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17383046it [38:38, 7782.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "403\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17395085it [38:40, 7649.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "404\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17400425it [38:40, 7065.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "405\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17415923it [38:42, 8360.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "406\n", + "407\n", + "408\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17419285it [38:43, 8098.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "409\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17439709it [38:45, 8097.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "410\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17443014it [38:46, 8094.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "411\n", + "412\n", + "413\n", + "414\n", + "415\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17448624it [38:46, 7844.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "416\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17463092it [38:48, 6636.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "417\n", + "418\n", + "419\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17465302it [38:49, 7162.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "420\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17468589it [38:49, 7922.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "421\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17473729it [38:50, 8527.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "422\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17476245it [38:50, 7512.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "423\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17478718it [38:50, 7938.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "424\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17481106it [38:51, 7881.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "425\n", + "426\n", + "427\n", + "428\n", + "429\n", + "430\n", + "431\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17487061it [38:51, 8504.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "432\n", + "433\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17488804it [38:52, 8354.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "434\n", + "435\n", + "436\n", + "437\n", + "438\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17492195it [38:52, 8411.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "439\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17496455it [38:52, 8392.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "440\n", + "441\n", + "442\n", + "443\n", + "444\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17498984it [38:53, 8397.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "445\n", + "446\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17510913it [38:54, 8659.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "447\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17534766it [38:57, 7972.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "448\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17538910it [38:58, 8337.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "449\n", + "450\n", + "451\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17541448it [38:58, 7625.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "452\n", + "453\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17548083it [38:59, 7523.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "454\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17551481it [38:59, 8348.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "455\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17568502it [39:01, 7885.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "456\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17571748it [39:02, 7499.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "457\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17576937it [39:02, 8311.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "458\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17613072it [39:07, 8094.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "459\n", + "460\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17616598it [39:08, 8644.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "461\n", + "462\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17632162it [39:09, 8440.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "463\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17637217it [39:10, 8288.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "464\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17645728it [39:11, 8504.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "465\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17685051it [39:16, 8569.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "466\n", + "467\n", + "468\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17692771it [39:17, 8524.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "469\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17713215it [39:19, 8619.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "470\n", + "471\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17725412it [39:21, 8533.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "472\n", + "473\n", + "474\n", + "475\n", + "476\n", + "477\n", + "478\n", + "479\n", + "480\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17728050it [39:21, 8601.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "481\n", + "482\n", + "483\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17731508it [39:21, 8591.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "484\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17735841it [39:22, 8616.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "485\n", + "486\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17741704it [39:22, 7851.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "487\n", + "488\n", + "489\n", + "490\n", + "491\n", + "492\n", + "493\n", + "494\n", + "495\n", + "496\n", + "497\n", + "498\n", + "499\n", + "500\n", + "501\n", + "502\n", + "503\n", + "504\n", + "505\n", + "506\n", + "507\n", + "508\n", + "509\n", + "510\n", + "511" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17743393it [39:23, 8052.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "512\n", + "513\n", + "514\n", + "515\n", + "516\n", + "517\n", + "518\n", + "519\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17746804it [39:23, 8394.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "520\n", + "521\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17752796it [39:24, 7955.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "522\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17759659it [39:25, 8671.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "523\n", + "524\n", + "525\n", + "526\n", + "527\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17770519it [39:26, 8181.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "528\n", + "529\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17773044it [39:26, 8371.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "530\n", + "531\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17780908it [39:27, 8663.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "532\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17788991it [39:28, 6781.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "533\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17791148it [39:29, 7014.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "534\n", + "535\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17803535it [39:30, 8351.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "536\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17825094it [39:33, 8447.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "537\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17835939it [39:35, 7915.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "538\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17933035it [39:47, 8058.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "539\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17957520it [39:50, 7784.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "540\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "17969763it [39:51, 8696.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "541\n", + "542\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18003142it [39:55, 7299.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "543\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18008627it [39:56, 7890.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "544\n", + "545\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18075844it [40:04, 7948.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "546\n", + "547\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18085840it [40:06, 7947.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "548\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18101770it [40:08, 7641.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "549\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18117018it [40:10, 8161.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "550\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18220462it [40:23, 8734.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "551\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18238865it [40:25, 8315.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "552\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18283876it [40:30, 8257.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "553\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18349810it [40:39, 8317.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "554\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18375848it [40:42, 8364.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "555\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18410258it [40:48, 4234.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "556\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18490133it [40:58, 8355.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "557\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18514167it [41:01, 7774.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "558\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18567603it [41:08, 7070.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "559\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18575265it [41:09, 8286.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "560\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18577888it [41:09, 8184.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "561\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18582767it [41:10, 8051.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "562\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18590258it [41:11, 8220.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "563\n", + "564\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18599061it [41:12, 8756.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "565\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18613037it [41:14, 8915.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "566\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18652733it [41:18, 8027.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "567\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18668601it [41:21, 8227.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "568\n", + "569\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18684400it [41:23, 8085.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "570\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18703981it [41:25, 8521.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "571\n", + "572\n", + "573" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18705700it [41:25, 8449.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "574\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18758921it [41:32, 7219.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "575\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18786878it [41:36, 7889.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "576\n", + "577\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18794442it [41:37, 8060.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "578\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18814467it [41:39, 7640.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "579\n", + "580\n", + "581\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18823743it [41:41, 6905.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "582\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18842607it [41:43, 7225.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "583\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18850255it [41:44, 8072.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "584\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18913654it [41:52, 7992.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "585\n", + "586\n", + "587\n", + "588\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18934310it [41:55, 7936.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "589\n", + "590\n", + "591\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18960815it [41:58, 7440.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "592\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18975899it [42:00, 8557.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "593\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18982955it [42:01, 8678.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "594\n", + "595\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18994304it [42:02, 8014.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "596\n", + "597\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "18997632it [42:03, 8128.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "598\n", + "599\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19000179it [42:03, 8371.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "600\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19010257it [42:04, 8152.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "601\n", + "602\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19017081it [42:05, 8303.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "603\n", + "604" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19021310it [42:05, 8368.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "605\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19029105it [42:06, 8540.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "606\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19062123it [42:10, 8436.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "607\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19087171it [42:13, 8865.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "608\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19089859it [42:13, 8677.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "609\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19107489it [42:16, 8040.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "610\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19115883it [42:17, 7652.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "611\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19125897it [42:18, 8178.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "612\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19140854it [42:20, 7889.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "613\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19153223it [42:21, 8229.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "614\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19156515it [42:22, 8070.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "615\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19166745it [42:23, 8118.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "616\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19169925it [42:23, 7375.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "617\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19178918it [42:24, 8204.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "618\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19183051it [42:25, 7972.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "619\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19191289it [42:26, 7319.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "620\n", + "621\n", + "622\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19193637it [42:26, 7185.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "623\n", + "624\n", + "625\n", + "626\n", + "627\n", + "628\n", + "629\n", + "630\n", + "631\n", + "632\n", + "633\n", + "634\n", + "635\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19199581it [42:27, 8564.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "636\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19237764it [42:32, 7494.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "637\n", + "638\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19274795it [42:37, 7870.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "639\n", + "640\n", + "641\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19278752it [42:37, 7603.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "642\n", + "643\n", + "644\n", + "645\n", + "646\n", + "647\n", + "648\n", + "649\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19285327it [42:38, 7742.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "650\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19290208it [42:39, 7563.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "651\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19297855it [42:40, 7599.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "652\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19310223it [42:41, 7986.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "653\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19318160it [42:43, 7221.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "654\n", + "655\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19320365it [42:43, 7133.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "656\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19321849it [42:43, 7196.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "657\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19328423it [42:44, 8313.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "658\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19343137it [42:46, 8732.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "659\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19348189it [42:46, 8037.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "660\n", + "661\n", + "662\n", + "663\n", + "664\n", + "665\n", + "666\n", + "667\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19352370it [42:47, 8359.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "668\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19358940it [42:48, 8159.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "669\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19364679it [42:48, 8008.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "670\n", + "671\n", + "672\n", + "673\n", + "674\n", + "675\n", + "676\n", + "677\n", + "678\n", + "679\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19368938it [42:49, 8426.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "680\n", + "681\n", + "682\n", + "683\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19374019it [42:49, 7986.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "684\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19386576it [42:51, 8024.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "685\n", + "686\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19391677it [42:52, 7988.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "687\n", + "688\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19399089it [42:53, 8323.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "689\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19407618it [42:54, 8404.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "690\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19415147it [42:55, 8172.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "691\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19417561it [42:55, 7934.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "692\n", + "693\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19420876it [42:55, 7615.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "694\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19424846it [42:56, 7886.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "695\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19426423it [42:56, 7814.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "696\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19434875it [42:57, 8481.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "697\n", + "698\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19443695it [42:58, 7354.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "699\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19446236it [42:58, 8118.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "700\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19458843it [43:00, 8689.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "701\n", + "702\n", + "703\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19463146it [43:01, 8188.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "704\n", + "705\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19479198it [43:02, 8313.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "706\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19484181it [43:03, 7922.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "707\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19487450it [43:04, 8022.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "708\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19497936it [43:05, 7531.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "709\n", + "710\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19513066it [43:07, 8706.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "711\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19521668it [43:08, 8330.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "712\n", + "713\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19539932it [43:10, 7995.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "714\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19556527it [43:12, 8220.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "715\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19559861it [43:13, 8289.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "716\n", + "717\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19562428it [43:13, 8126.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "718\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19579683it [43:15, 7969.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "719\n", + "720\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19582957it [43:15, 7919.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "721\n", + "722\n", + "723\n", + "724\n", + "725\n", + "726\n", + "727\n", + "728\n", + "729\n", + "730\n", + "731\n", + "732\n", + "733\n", + "734\n", + "735\n", + "736\n", + "737\n", + "738\n", + "739\n", + "740\n", + "741\n", + "742\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19585409it [43:16, 8072.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "743\n", + "744\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19604828it [43:19, 8238.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "745\n", + "746\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19618623it [43:20, 8143.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "747\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19622628it [43:21, 7682.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "748\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19629862it [43:22, 7946.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "749\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19634608it [43:22, 7827.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "750\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19642771it [43:23, 8028.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "751\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19661633it [43:26, 7859.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "752\n", + "753\n", + "754\n", + "755\n", + "756\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19671655it [43:28, 5406.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "757\n", + "758\n", + "759\n", + "760\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19690418it [43:30, 8118.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "761\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19713659it [43:33, 7248.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "762\n", + "763\n", + "764\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19716847it [43:34, 7738.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "765\n", + "766\n", + "767\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19731402it [43:36, 7839.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "768\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19783704it [43:42, 8055.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "769\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19835002it [43:49, 8376.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "770\n", + "771\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19871607it [43:53, 8175.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "772\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19880851it [43:54, 8081.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "773\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19895244it [43:56, 8419.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "774\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19915274it [43:59, 7766.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "775\n", + "776\n", + "777\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19930115it [44:01, 8070.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "778\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19936762it [44:01, 8036.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "779\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19949956it [44:03, 6344.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "780\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19977133it [44:07, 7510.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "781\n", + "782\n", + "783\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "19995464it [44:09, 8223.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "784\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20002852it [44:10, 8168.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "785\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20023650it [44:13, 8071.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "786\n", + "787\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20029451it [44:14, 8034.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "788\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20037689it [44:15, 7040.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "789\n", + "790\n", + "791\n", + "792\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20039862it [44:15, 7063.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "793\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20043605it [44:16, 7529.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "794\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20047508it [44:16, 7737.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "795\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20064798it [44:27, 301.71it/s] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "796\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20079620it [44:29, 7892.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "797\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20083693it [44:30, 7849.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "798\n", + "799\n", + "800\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20086141it [44:30, 8052.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "801\n", + "802\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20089518it [44:30, 8215.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "803\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20091947it [44:31, 7850.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "804\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20102078it [44:32, 8584.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "805\n", + "806\n", + "807\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20117852it [44:34, 7376.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "808\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20120948it [44:35, 7566.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "809\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20159742it [44:39, 8042.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "810\n", + "811\n", + "812\n", + "813\n", + "814\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20171538it [44:41, 8011.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "815\n", + "816\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20178771it [44:42, 8019.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "817\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20198173it [44:44, 7704.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "818\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20219148it [44:47, 8629.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "819\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20225111it [44:48, 7931.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "820\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20233666it [44:49, 8644.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "821\n", + "822\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20242184it [44:50, 8171.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "823\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20245383it [44:50, 7713.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "824\n", + "825\n", + "826\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20251061it [44:51, 7932.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "827\n", + "828\n", + "829\n", + "830\n", + "831\n", + "832\n", + "833\n", + "834\n", + "835\n", + "836\n", + "837\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20257615it [44:52, 8121.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "838\n", + "839\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20261607it [44:52, 7616.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "840\n", + "841\n", + "842\n", + "843\n", + "844\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20269082it [44:53, 8004.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "845\n", + "846\n", + "847\n", + "848\n", + "849\n", + "850\n", + "851\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20272173it [44:53, 6923.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "852\n", + "853\n", + "854\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20277568it [44:54, 7651.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "855\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20280125it [44:55, 8144.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "856\n", + "857\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20282739it [44:55, 8589.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "858\n", + "859\n", + "860\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20286184it [44:55, 8547.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "861\n", + "862\n", + "863\n", + "864\n", + "865\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20295988it [44:56, 8916.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "866\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20302877it [44:57, 8475.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "867\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20329125it [45:01, 8163.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "868\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20331600it [45:01, 8080.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "869\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20344690it [45:02, 8002.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "870\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20375932it [45:06, 8145.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "871\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20404402it [45:10, 8058.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "872\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20413862it [45:11, 7470.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "873\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20418748it [45:12, 8173.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "874\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20429260it [45:13, 8162.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "875\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20457445it [45:17, 7625.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "876\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20468868it [45:18, 8147.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "877\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20481005it [45:20, 8130.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "878\n", + "879\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20514918it [45:24, 8101.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "880\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20527308it [45:26, 8379.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "881\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20531372it [45:26, 7350.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "882\n", + "883\n", + "884\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20535905it [45:27, 7563.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "885\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20578571it [45:33, 6127.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "886\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20579982it [45:33, 5797.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "887\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20596823it [45:35, 7948.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "888\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20599143it [45:35, 7356.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "889\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20623038it [45:38, 7930.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "890\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20633896it [45:40, 8166.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "891\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20637905it [45:40, 7524.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "892\n", + "893\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20643020it [45:41, 8329.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "894\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20662970it [45:43, 7643.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "895\n", + "896\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20664615it [45:44, 7963.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "897\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20675218it [45:45, 8173.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "898\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20677720it [45:45, 8109.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "899\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20692129it [45:47, 8375.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "900\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20710559it [45:49, 7606.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "901\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20713839it [45:50, 8074.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "902\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20717179it [45:50, 8316.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "903\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20728388it [45:51, 8593.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "904\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20744673it [45:53, 8089.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "905\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20761487it [45:56, 7951.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "906\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20794119it [46:00, 8015.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "907\n", + "908\n", + "909\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20821590it [46:04, 7397.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "910\n", + "911\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20828124it [46:04, 7543.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "912\n", + "913\n", + "914\n", + "915\n", + "916\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20839310it [46:06, 8294.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "917\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20844403it [46:06, 8433.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "918\n", + "919\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20850315it [46:07, 8086.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "920\n", + "921\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20853625it [46:08, 8248.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "922\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20857019it [46:08, 8304.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "923\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20863076it [46:09, 8568.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "924\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20868308it [46:09, 8473.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "925\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20873418it [46:10, 8504.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "926\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20886972it [46:12, 8906.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "927\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20896758it [46:13, 8494.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "928\n", + "929\n", + "930\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20926284it [46:16, 8518.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "931\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20930562it [46:17, 8407.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "932\n", + "933\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20933190it [46:17, 8479.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "934\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20945365it [46:18, 8565.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "935\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20949720it [46:19, 8635.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "936\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20953999it [46:20, 8370.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "937\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20960818it [46:20, 8295.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "938\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20964252it [46:21, 8534.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "939\n", + "940\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20975129it [46:22, 8296.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "941\n", + "942\n", + "943\n", + "944\n", + "945\n", + "946\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "20984452it [46:23, 7509.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "947\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21003087it [46:27, 6724.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "948\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21009573it [46:28, 6693.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "949\n", + "950\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21011735it [46:28, 7038.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "951\n", + "952\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21016819it [46:29, 7209.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "953\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21019301it [46:29, 7989.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "954\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21021789it [46:30, 8220.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "955\n", + "956\n", + "957\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21034828it [46:32, 5768.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "958\n", + "959\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21037790it [46:32, 6272.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "960\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21093533it [46:39, 8474.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "961\n", + "962\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21104155it [46:41, 8213.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "963\n", + "964\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21113016it [46:42, 7326.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "965\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21120028it [46:43, 7772.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "966\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21133597it [46:44, 8001.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "967\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21137779it [46:45, 8271.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "968\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21142804it [46:46, 8173.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "969\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21166565it [46:48, 8707.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "970\n", + "971\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21168301it [46:49, 8646.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "972\n", + "973\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21187631it [46:51, 8565.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "974\n", + "975\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21195472it [46:52, 8586.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "976\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21206024it [46:53, 8476.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "977\n", + "978\n", + "979\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21211395it [46:54, 8799.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "980\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21226096it [46:55, 8416.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "981\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21236811it [46:57, 8851.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "982\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21241205it [46:57, 8593.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "983\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21249292it [46:58, 8919.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "984\n", + "985\n", + "986\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21253732it [46:58, 8729.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "987\n", + "988\n", + "989\n", + "990\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21291858it [47:03, 8983.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "991\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21322367it [47:06, 8723.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "992\n", + "993\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21352726it [47:10, 8959.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "994\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21358096it [47:10, 8707.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "995\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21367905it [47:11, 8765.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "996\n", + "997\n", + "998\n", + "999\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21385013it [47:13, 8618.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1000\n", + "1001\n", + "1002\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21397569it [47:15, 8893.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1003\n", + "1004\n", + "1005\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21407402it [47:16, 8740.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1006\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21412654it [47:16, 8486.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1007\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21426111it [47:18, 8782.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1008\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21430436it [47:19, 8404.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1009\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21433060it [47:19, 8605.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1010\n", + "1011\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21443550it [47:20, 7924.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1012\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21485176it [47:25, 8662.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1013\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21505179it [47:27, 8373.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1014\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21514100it [47:28, 8756.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1015\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21524841it [47:30, 7949.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1016\n", + "1017\n", + "1018\n", + "1019\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "21525688it [47:30, 7700.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1020\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21531083it [47:30, 8944.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1021\n", + "1022\n", + "1023\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21549367it [47:32, 9123.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1024\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21556699it [47:33, 8942.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1025\n", + "1026\n", + "1027\n", + "1028\n", + "1029\n", + "1030\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21561233it [47:34, 8821.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1031\n", + "1032\n", + "1033\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21563019it [47:34, 8828.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1034\n", + "1035\n", + "1036\n", + "1037\n", + "1038\n", + "1039\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21575945it [47:35, 8703.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1040\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21591305it [47:37, 9007.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1041\n", + "1042\n", + "1043\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21595753it [47:38, 8658.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1044\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21597486it [47:38, 8475.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1045\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21601051it [47:38, 8804.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1046\n", + "1047\n", + "1048\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21605481it [47:39, 8741.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1049\n", + "1050\n", + "1051\n", + "1052\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21609130it [47:39, 9048.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1053\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21612758it [47:40, 9042.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1054\n", + "1055\n", + "1056\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21625398it [47:41, 8983.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1057\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21631842it [47:42, 9174.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1058\n", + "1059\n", + "1060\n", + "1061\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21634581it [47:42, 8962.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1062\n", + "1063\n", + "1064\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21648163it [47:44, 9026.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1065\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21650885it [47:44, 8918.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1066\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21685868it [47:48, 9399.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1067\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21727767it [47:53, 8861.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1068\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21764899it [47:57, 9006.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1069\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21774932it [47:58, 8817.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1070\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21796187it [48:00, 8822.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1071\n", + "1072\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21806094it [48:02, 8913.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1073\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21818839it [48:03, 8989.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1074\n", + "1075\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21830737it [48:04, 8821.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1076\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21836966it [48:05, 8273.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1077\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21903362it [48:14, 6681.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1078\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21925989it [48:17, 8093.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1079\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21930138it [48:17, 8060.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1080\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21933433it [48:18, 7925.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1081\n", + "1082\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21937054it [48:18, 8781.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1083\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "21981259it [48:24, 8701.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1084\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22011671it [48:27, 8850.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1085\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22048479it [48:31, 8749.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1086\n", + "1087\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22111837it [48:39, 8950.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1088\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22146094it [48:42, 9098.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1089\n", + "1090\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22150731it [48:43, 9033.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1091\n", + "1092\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22169649it [48:45, 8870.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1093\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22175036it [48:46, 8876.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1094\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22215437it [48:50, 8526.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1095\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22222385it [48:51, 8677.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1096\n", + "1097\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22225013it [48:51, 8729.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1098\n", + "1099\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22237031it [48:53, 9116.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1100\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22241614it [48:53, 8967.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1101\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22251274it [48:54, 8793.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1102\n", + "1103\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22303592it [49:01, 8805.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1104\n", + "1105\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22310494it [49:02, 8600.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1106\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22318342it [49:03, 8166.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1107\n", + "1108\n", + "1109\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22357984it [49:07, 8815.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1110\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22412436it [49:14, 8904.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1111\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22415091it [49:14, 8699.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1112\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22416883it [49:15, 8486.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1113\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22421865it [49:15, 8210.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1114\n", + "1115\n", + "1116\n", + "1117\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22425444it [49:16, 8826.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1118\n", + "1119\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22486615it [49:23, 9083.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1120\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22518592it [49:26, 9020.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1121\n", + "1122\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22526013it [49:27, 9225.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1123\n", + "1124\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22532483it [49:28, 9140.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1125\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22536976it [49:28, 8767.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1126\n", + "1127\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22549537it [49:30, 9147.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1128\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22566631it [49:32, 8925.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1129\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22581671it [49:33, 8674.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1130\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22601212it [49:36, 8412.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1131\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22611320it [49:37, 8980.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1132\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22639241it [49:40, 8456.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1133\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22653061it [49:42, 8225.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1134\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22656383it [49:42, 8068.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1135\n", + "1136\n", + "1137\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22658897it [49:43, 8139.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1138\n", + "1139\n", + "1140\n", + "1141\n", + "1142\n", + "1143\n", + "1144\n", + "1145\n", + "1146\n", + "1147\n", + "1148\n", + "1149\n", + "1150\n", + "1151\n", + "1152\n", + "1153\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22767431it [49:55, 8767.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1154\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22824068it [50:02, 8485.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1155\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22840236it [50:04, 6591.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1156\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22844875it [50:05, 7607.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1157\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22860123it [50:06, 9109.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1158\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22883971it [50:09, 8799.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1159\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22937441it [50:15, 9168.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1160\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22950293it [50:17, 9245.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1161\n", + "1162\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "22959550it [50:18, 8966.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1163\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23012044it [50:24, 8788.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1164\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23014702it [50:24, 8551.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1165\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23017393it [50:24, 8810.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1166\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23022714it [50:25, 8846.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1167\n", + "1168\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23061006it [50:29, 8860.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1169\n", + "1170\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23064599it [50:30, 8960.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1171\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23083374it [50:32, 8954.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1172\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23108912it [50:35, 8764.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1173\n", + "1174\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23118759it [50:36, 8485.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1175\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23122189it [50:37, 8012.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1176\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23128283it [50:37, 8554.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1177\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23135452it [50:38, 8648.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1178\n", + "1179\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23152740it [50:40, 9109.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1180\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23170845it [50:42, 8725.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1181\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23185120it [50:44, 9048.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1182\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23198595it [50:45, 8635.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1183\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23208368it [50:46, 8857.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1184\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23211944it [50:47, 8808.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1185\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23240643it [50:50, 9060.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1186\n", + "1187\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23251681it [50:51, 8917.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1188\n", + "1189\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23261215it [50:52, 8446.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1190\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23285864it [50:55, 8953.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1191\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23324368it [50:59, 8988.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1192\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23334438it [51:01, 9138.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1193\n", + "1194\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23341687it [51:01, 8556.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1195\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23363322it [51:04, 8882.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1196\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23377684it [51:05, 8943.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1197\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23380334it [51:06, 8671.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1198\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23409625it [51:09, 7565.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1199\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23414082it [51:10, 8787.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1200\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23418585it [51:10, 8964.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1201\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23440461it [51:13, 8685.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1202\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23442999it [51:13, 8229.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1203\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23470742it [51:16, 8977.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1204\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23484441it [51:18, 9385.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1205\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23503888it [51:20, 8815.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1206\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23508287it [51:21, 8359.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1207\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23544393it [51:25, 8715.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1208\n", + "1209\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23546988it [51:25, 8592.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1210\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23549540it [51:25, 8319.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1211\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23576796it [51:29, 5530.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1212\n", + "1213\n", + "1214\n", + "1215\n", + "1216\n", + "1217\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23584593it [51:30, 8290.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1218\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23587194it [51:30, 8461.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1219\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23594431it [51:31, 8981.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1220\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23600759it [51:32, 9002.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1221\n", + "1222\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23604405it [51:32, 9005.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1223\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23611472it [51:33, 7997.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1224\n", + "1225\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23617733it [51:34, 8893.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1226\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23629304it [51:35, 8795.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1227\n", + "1228\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23639148it [51:36, 8908.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1229\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23642700it [51:36, 8802.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1230\n", + "1231\n", + "1232\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23644472it [51:37, 8749.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1233\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23656997it [51:38, 9014.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1234\n", + "1235\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23662432it [51:39, 9045.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1236\n", + "1237\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23666960it [51:39, 8861.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1238\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23672256it [51:40, 7928.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1239\n", + "1240\n", + "1241\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23683545it [51:42, 6528.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1242\n", + "1243\n", + "1244\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23686243it [51:42, 6488.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1245\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23726002it [51:47, 7582.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1246\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23745775it [51:50, 6906.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1247\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23751291it [51:51, 8238.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1248\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23789842it [51:56, 7316.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1249\n", + "1250\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23794285it [51:57, 7351.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1251\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23797295it [51:57, 7313.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1252\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23838111it [52:03, 7310.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1253\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23860594it [52:06, 8400.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1254\n", + "1255\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23866765it [52:06, 8900.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1256\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23890909it [52:20, 4649.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1257\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23936540it [52:26, 8057.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1258\n", + "1259\n", + "1260\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "23945947it [52:27, 8517.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1261\n", + "1262\n", + "1263\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24001490it [52:34, 7553.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1264\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24005655it [52:34, 7964.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1265\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24010803it [52:35, 8439.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1266\n", + "1267\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24012464it [52:35, 7918.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1268\n", + "1269\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24019058it [52:36, 6017.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1270\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24027645it [52:37, 8094.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1271\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24037619it [52:38, 8352.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1272\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24040958it [52:39, 8150.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1273\n", + "1274\n", + "1275\n", + "1276\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24058140it [52:41, 8979.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1277\n", + "1278\n", + "1279\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24084425it [52:44, 8689.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1280\n", + "1281\n", + "1282\n", + "1283\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24109072it [52:47, 9254.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1284\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24118990it [52:48, 8737.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1285\n", + "1286\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24134332it [52:50, 8911.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1287\n", + "1288\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24141528it [52:51, 8824.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1289\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24171580it [52:54, 8664.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1290\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24175128it [52:55, 8783.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1291\n", + "1292\n", + "1293\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24178527it [52:55, 8063.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1294\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24201075it [52:58, 9322.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1295\n", + "1296\n", + "1297\n", + "1298\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24244757it [53:03, 7302.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1299\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24257032it [53:05, 8589.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1300\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24266794it [53:06, 8749.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1301\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24269469it [53:06, 7921.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1302\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24292956it [53:09, 8986.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1303\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24363173it [53:17, 9034.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1304\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24381262it [53:19, 8925.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1305\n", + "1306\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24398713it [53:21, 8794.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1307\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24414888it [53:22, 8861.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1308\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24421314it [53:23, 9174.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1309\n", + "1310\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24423142it [53:23, 8997.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1311\n", + "1312\n", + "1313\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24426775it [53:24, 9015.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1314\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24433086it [53:24, 8711.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1315\n", + "1316\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24441217it [53:25, 8691.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1317\n", + "1318\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24450899it [53:26, 8472.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1319\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24469530it [53:29, 8833.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1320\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24473148it [53:29, 9042.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1321\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24479470it [53:30, 8949.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1322\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24492024it [53:31, 8876.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1323\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24503809it [53:32, 8805.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1324\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24515423it [53:34, 8595.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1325\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24540472it [53:37, 8273.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1326\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24564605it [53:40, 9027.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1327\n", + "1328\n", + "1329\n", + "1330\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24606603it [53:44, 8508.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1331\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24609253it [53:45, 8707.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1332\n", + "1333\n", + "1334\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24612815it [53:45, 8806.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1335\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24616397it [53:46, 8868.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1336\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24625583it [53:47, 9035.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1337\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24630256it [53:47, 9326.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1338\n", + "1339\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24639349it [53:48, 8966.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1340\n", + "1341\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24660306it [53:50, 9006.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1342\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24676831it [53:52, 8696.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1343\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24694081it [53:54, 8290.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1344\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24698516it [53:55, 8827.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1345\n", + "1346\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24721545it [53:57, 8943.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1347\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24735035it [53:59, 8704.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1348\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24746916it [54:00, 9118.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1349\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24823436it [54:09, 8632.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1350\n", + "1351\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24840093it [54:11, 8636.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1352\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24845421it [54:12, 8716.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1353\n", + "1354\n", + "1355\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24852430it [54:12, 8766.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1356\n", + "1357\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24880425it [54:16, 8718.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1358\n", + "1359\n", + "1360\n", + "1361\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24893053it [54:17, 8363.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1362\n", + "1363\n", + "1364\n", + "1365\n", + "1366\n", + "1367\n", + "1368\n", + "1369\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24895720it [54:17, 7244.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1370\n", + "1371\n", + "1372\n", + "1373\n", + "1374\n", + "1375\n", + "1376\n", + "1377\n", + "1378\n", + "1379\n", + "1380\n", + "1381\n", + "1382\n", + "1383\n", + "1384\n", + "1385\n", + "1386\n", + "1387\n", + "1388\n", + "1389\n", + "1390\n", + "1391\n", + "1392\n", + "1393\n", + "1394\n", + "1395\n", + "1396\n", + "1397\n", + "1398\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24918279it [54:20, 8790.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1399\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24927237it [54:21, 8974.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1400\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24952986it [54:24, 8512.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1401\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24966030it [54:25, 8596.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1402\n", + "1403\n", + "1404\n", + "1405\n", + "1406\n", + "1407\n", + "1408\n", + "1409\n", + "1410\n", + "1411\n", + "1412\n", + "1413\n", + "1414\n", + "1415\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24975684it [54:27, 8676.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1416\n", + "1417\n", + "1418\n", + "1419\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24978332it [54:27, 8765.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1420\n", + "1421\n", + "1422\n", + "1423\n", + "1424\n", + "1425\n", + "1426\n", + "1427\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "24987801it [54:28, 8090.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1428\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25004756it [54:30, 8580.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1429\n", + "1430\n", + "1431\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25021880it [54:33, 6003.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1432\n", + "1433\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25024949it [54:34, 4964.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1434\n", + "1435\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25035633it [54:38, 6645.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1436\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25039686it [54:39, 7957.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1437\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25041995it [54:39, 6613.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1438\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25044723it [54:39, 6330.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1439\n", + "1440\n", + "1441\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25046745it [54:40, 6582.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1442\n", + "1443\n", + "1444\n", + "1445\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25048729it [54:40, 4766.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1446\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25051750it [54:41, 4303.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1447\n", + "1448\n", + "1449\n", + "1450\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25060312it [54:42, 6180.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1451\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25075430it [54:45, 6072.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1452\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25087544it [54:47, 6997.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1453\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25090418it [54:47, 7130.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1454\n", + "1455\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25093914it [54:48, 6804.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1456\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25127591it [54:54, 6267.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1457\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25140309it [54:55, 7865.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1458\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25147673it [54:56, 6067.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1459\n", + "1460\n", + "1461\n", + "1462\n", + "1463\n", + "1464\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25153539it [54:57, 6907.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1465\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25183621it [55:02, 7356.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1466\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25227452it [55:08, 7321.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1467\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25228796it [55:08, 4206.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1468\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25235028it [55:10, 5397.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1469\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25246117it [55:12, 6610.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1470\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25268366it [55:15, 7948.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1471\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25275823it [55:16, 8221.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1472\n", + "1473\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25322007it [55:22, 7445.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1474\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25338321it [55:24, 7369.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1475\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25356657it [55:27, 6267.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1476\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25368996it [55:29, 7711.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1477\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25378305it [55:30, 7316.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1478\n", + "1479\n", + "1480\n", + "1481\n", + "1482\n", + "1483\n", + "1484\n", + "1485\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25389389it [55:31, 7146.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1486\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25447507it [55:39, 5601.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1487\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25450344it [55:40, 6774.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1488\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25470602it [55:43, 7589.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1489\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25477188it [55:44, 6312.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1490\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25532679it [55:51, 7911.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1491\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25564843it [55:55, 8311.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1492\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25567331it [55:56, 8172.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1493\n", + "1494\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25575013it [55:57, 8527.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1495\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25589285it [55:58, 8227.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1496\n", + "1497\n", + "1498\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25618118it [56:02, 8127.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1499\n", + "1500\n", + "1501\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25621472it [56:02, 8307.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1502\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25626661it [56:03, 8333.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1503\n", + "1504\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25636606it [56:04, 7357.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1505\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25654465it [56:06, 8489.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1506\n", + "1507\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25728071it [56:16, 8136.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1508\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25770244it [56:21, 6554.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1509\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25775478it [56:22, 7284.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1510\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25794986it [56:25, 6880.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1511\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25807964it [56:27, 7369.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1512\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25830351it [56:30, 6596.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1513\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25837868it [56:31, 7799.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1514\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25877573it [56:37, 6535.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1515\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25881648it [56:38, 6728.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1516\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25906407it [56:41, 6451.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1517\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25919644it [56:43, 6879.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1518\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25936974it [56:46, 6818.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1519\n", + "1520\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25959006it [56:49, 7152.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1521\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25986265it [56:53, 6442.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1522\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "25999363it [56:55, 6430.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1523\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26024993it [56:59, 6462.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1524\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26125128it [57:13, 6286.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1525\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26127839it [57:13, 6746.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1526\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26134972it [57:14, 7321.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1527\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26151897it [57:17, 7642.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1528\n", + "1529\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26157414it [57:17, 7623.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1530\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26160143it [57:18, 6128.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1531\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26165326it [57:19, 6325.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1532\n", + "1533\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26171057it [57:20, 6360.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1534\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26172351it [57:20, 6227.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1535\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26182723it [57:22, 5648.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1536\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26198706it [57:25, 5433.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1537\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26201699it [57:25, 5689.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1538\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26220874it [57:29, 5004.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1539\n", + "1540\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26256705it [57:36, 6130.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1541\n", + "1542\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26276048it [57:39, 6119.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1543\n", + "1544\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26323434it [57:47, 6883.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1545\n", + "1546\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26394005it [58:05, 6057.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1547\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26489482it [58:21, 6524.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1548\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26506135it [58:24, 7682.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1549\n", + "1550\n", + "1551\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26568224it [58:32, 7779.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1552\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26621780it [58:40, 7202.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1553\n", + "1554\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26629818it [58:41, 7185.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1555\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26657187it [58:44, 8309.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1556\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26670181it [58:46, 7263.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1557\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26684871it [58:48, 8076.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1558\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26695258it [58:49, 7563.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1559\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26715151it [58:52, 8371.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1560\n", + "1561\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26732352it [58:54, 6841.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1562\n", + "1563\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26734733it [58:54, 7618.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1564\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26742823it [58:56, 7841.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1565\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26768791it [58:59, 6622.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1566\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26777967it [59:00, 7856.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1567\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26803601it [59:04, 5935.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1568\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26807737it [59:05, 6842.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1569\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26809116it [59:05, 6784.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1570\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26813240it [59:06, 6562.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1571\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26836176it [59:09, 8513.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1572\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26860945it [59:12, 8254.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1573\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26870821it [59:13, 7640.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1574\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26924923it [59:20, 7390.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1575\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26977100it [59:27, 8399.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1576\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "26984713it [59:28, 8314.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1577\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27004613it [59:31, 6217.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1578\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27049643it [59:37, 8524.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1579\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27053903it [59:37, 8184.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1580\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27109424it [59:44, 8203.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1581\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27155481it [59:50, 8479.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1582\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27166777it [59:51, 8692.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1583\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27176265it [59:52, 8431.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1584\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27181864it [59:53, 7946.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1585\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27213105it [59:56, 8665.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1586\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27223277it [59:58, 7552.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1587\n", + "1588\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27273626it [1:00:04, 8688.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1589\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27322001it [1:00:10, 7457.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1590\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27324093it [1:00:10, 6118.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1591\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27349283it [1:00:14, 8089.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1592\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27392455it [1:00:20, 8124.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1593\n", + "1594\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27409354it [1:00:22, 7526.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1595\n", + "1596\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27411617it [1:00:22, 7046.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1597\n", + "1598\n", + "1599\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27428343it [1:00:25, 6252.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1600\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27463524it [1:00:29, 8723.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1601\n", + "1602\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27477493it [1:00:31, 7492.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1603\n", + "1604\n", + "1605\n", + "1606\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27485387it [1:00:32, 6918.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1607\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27545303it [1:00:40, 6974.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1608\n", + "1609\n", + "1610\n", + "1611\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27547722it [1:00:41, 7761.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1612\n", + "1613\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27582874it [1:00:45, 7699.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1614\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27618300it [1:00:50, 5432.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1615\n", + "1616\n", + "1617\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27643789it [1:00:54, 6944.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1618\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27723233it [1:01:05, 4772.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1619\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27734204it [1:01:07, 5329.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1620\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27800806it [1:01:17, 5162.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1621\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27830362it [1:01:21, 7631.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1622\n", + "1623\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27846440it [1:01:24, 8170.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1624\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27874849it [1:01:27, 7832.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1625\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27881422it [1:01:29, 5055.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1626\n", + "1627\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27884828it [1:01:29, 5799.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1628\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27886573it [1:01:30, 5453.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1629\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27888561it [1:01:30, 6282.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1630\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27909883it [1:01:32, 7769.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1631\n", + "1632\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27919028it [1:01:34, 7293.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1633\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27920461it [1:01:34, 6911.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1634\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27925387it [1:01:35, 6723.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1635\n", + "1636\n", + "1637\n", + "1638\n", + "1639\n", + "1640\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27933103it [1:01:36, 6587.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1641\n", + "1642\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27940626it [1:01:37, 7530.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1643\n", + "1644\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "27992037it [1:01:44, 6820.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1645\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28008178it [1:01:46, 7104.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1646\n", + "1647\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28018056it [1:01:48, 7374.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1648\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28062635it [1:01:54, 8168.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1649\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28088800it [1:01:57, 6818.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1650\n", + "1651\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28093674it [1:01:58, 7093.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1652\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28137016it [1:02:04, 7085.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1653\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28149357it [1:02:06, 8291.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1654\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28166964it [1:02:08, 7227.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1655\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28180081it [1:02:10, 6577.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1656\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28186270it [1:02:11, 7778.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1657\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28200894it [1:02:13, 7745.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1658\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28204117it [1:02:13, 7557.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1659\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28205705it [1:02:13, 7439.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1660\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28216446it [1:02:15, 8375.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1661\n", + "1662\n", + "1663\n", + "1664\n", + "1665\n", + "1666\n", + "1667\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28220450it [1:02:15, 7800.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1668\n", + "1669\n", + "1670\n", + "1671\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28223739it [1:02:16, 7321.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1672\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28233442it [1:02:17, 7446.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1673\n", + "1674\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28241239it [1:02:18, 7731.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1675\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28245204it [1:02:18, 7439.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1676\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28248285it [1:02:19, 7670.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1677\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28252902it [1:02:19, 7495.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1678\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28265319it [1:02:21, 7718.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1679\n", + "1680\n", + "1681\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28295111it [1:02:25, 7358.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1682\n", + "1683\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28320555it [1:02:29, 7276.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1684\n", + "1685\n", + "1686\n", + "1687\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28333111it [1:02:30, 7330.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1688\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28341626it [1:02:32, 4547.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1689\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28346161it [1:02:33, 6234.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1690\n", + "1691\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28347334it [1:02:33, 4797.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1692\n", + "1693\n", + "1694\n", + "1695\n", + "1696\n", + "1697\n", + "1698\n", + "1699\n", + "1700\n", + "1701\n", + "1702\n", + "1703\n", + "1704\n", + "1705\n", + "1706\n", + "1707\n", + "1708\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28363116it [1:02:35, 8069.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1709\n", + "1710\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28367215it [1:02:36, 8073.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1711\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28372903it [1:02:37, 6233.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1712\n", + "1713\n", + "1714\n", + "1715\n", + "1716\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28379726it [1:02:37, 7729.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1717\n", + "1718\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28383872it [1:02:38, 8110.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1719\n", + "1720\n", + "1721\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28386389it [1:02:38, 8232.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1722\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28416630it [1:02:42, 8724.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1723\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28459978it [1:03:05, 4897.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1724\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28467294it [1:03:07, 3930.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1725\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28468698it [1:03:07, 4463.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1726\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28484924it [1:03:12, 3476.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1727\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28498759it [1:03:16, 4475.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1728\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28511062it [1:03:19, 3431.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1729\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28527247it [1:03:24, 4257.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1730\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28544242it [1:03:28, 3756.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1731\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28547957it [1:03:29, 4487.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1732\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28561956it [1:03:32, 4407.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1733\n", + "1734\n", + "1735\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28567854it [1:03:35, 3954.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1736\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28569815it [1:03:35, 4413.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1737\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28570693it [1:03:35, 4175.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1738\n", + "1739\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28572342it [1:03:36, 3895.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1740\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28574886it [1:03:36, 3676.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1741\n", + "1742\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28599607it [1:03:43, 4291.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1743\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28608273it [1:03:45, 3357.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1744\n", + "1745\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28618644it [1:03:47, 5137.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1746\n", + "1747\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28620162it [1:03:47, 4794.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1748\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28621105it [1:03:47, 4342.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1749\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28627558it [1:03:49, 4419.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1750\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28628533it [1:03:49, 4218.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1751\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28655120it [1:03:54, 6858.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1752\n", + "1753\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28657835it [1:03:55, 6340.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1754\n", + "1755\n", + "1756\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28664003it [1:03:56, 5176.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1757\n", + "1758\n", + "1759\n", + "1760\n", + "1761\n", + "1762\n", + "1763\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28679330it [1:03:59, 4108.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1764\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28705744it [1:04:04, 5795.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1765\n", + "1766\n", + "1767\n", + "1768\n", + "1769\n", + "1770\n", + "1771\n", + "1772\n", + "1773\n", + "1774\n", + "1775\n", + "1776\n", + "1777\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28707847it [1:04:04, 6673.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1778\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28712676it [1:04:05, 5144.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1779\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28715270it [1:04:05, 4936.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1780\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28717205it [1:04:06, 5738.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1781\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28719460it [1:04:06, 6943.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1782\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28723784it [1:04:07, 5276.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1783\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28728606it [1:04:08, 5145.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1784\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28736671it [1:04:09, 6713.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1785\n", + "1786\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28743224it [1:04:10, 7362.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1787\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28754655it [1:04:11, 7299.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1788\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28775194it [1:04:14, 8481.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1789\n", + "1790\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28820092it [1:04:20, 8128.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1791\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28821807it [1:04:20, 8148.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1792\n", + "1793\n", + "1794\n", + "1795\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28827951it [1:04:21, 8743.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1796\n", + "1797\n", + "1798\n", + "1799\n", + "1800\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28837429it [1:04:22, 8489.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1801\n", + "1802\n", + "1803\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28846633it [1:04:23, 8158.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1804\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28852610it [1:04:24, 8089.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1805\n", + "1806\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28882086it [1:04:27, 7745.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1807\n", + "1808\n", + "1809\n", + "1810\n", + "1811\n", + "1812\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28925695it [1:04:33, 6760.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1813\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28936431it [1:04:35, 8127.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1814\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28942109it [1:04:35, 7685.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1815\n", + "1816\n", + "1817\n", + "1818\n", + "1819\n", + "1820\n", + "1821\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28947813it [1:04:36, 8059.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1822\n", + "1823\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28949426it [1:04:36, 7949.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1824\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28954312it [1:04:37, 8004.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1825\n", + "1826\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28973534it [1:04:39, 8395.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1827\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28982516it [1:04:40, 7923.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1828\n", + "1829\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "28995201it [1:04:42, 8157.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1830\n", + "1831\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29001234it [1:04:43, 8615.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1832\n", + "1833\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29005537it [1:04:43, 8583.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1834\n", + "1835\n", + "1836\n", + "1837\n", + "1838\n", + "1839\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29012330it [1:04:44, 8086.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1840\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29014802it [1:04:44, 8029.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1841\n", + "1842\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29044440it [1:04:48, 7979.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1843\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29052450it [1:04:49, 8601.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1844\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29090545it [1:04:53, 8432.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1845\n", + "1846\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29101043it [1:04:54, 8612.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1847\n", + "1848\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29110449it [1:04:56, 8519.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1849\n", + "1850\n", + "1851\n", + "1852\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29115845it [1:04:56, 6216.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1853\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29123961it [1:04:58, 4895.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1854\n", + "1855\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29130947it [1:05:00, 4842.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1856\n", + "1857\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29132326it [1:05:00, 4049.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1858\n", + "1859\n", + "1860\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29139505it [1:05:01, 7667.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1861\n", + "1862\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29144626it [1:05:02, 8341.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1863\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29150465it [1:05:03, 8203.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1864\n", + "1865\n", + "1866\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29152997it [1:05:03, 8340.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1867\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29155507it [1:05:03, 8292.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1868\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29164845it [1:05:05, 6953.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1869\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29181997it [1:05:08, 6783.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1870\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29210244it [1:05:11, 6576.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1871\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29239353it [1:05:16, 7806.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1872\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29266881it [1:05:19, 8021.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1873\n", + "1874\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29313923it [1:05:29, 4287.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1875\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29335616it [1:05:33, 4599.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1876\n", + "1877\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29336694it [1:05:33, 5003.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1878\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29346958it [1:05:35, 4889.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1879\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29348315it [1:05:36, 4001.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1880\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29359148it [1:05:37, 7919.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1881\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29360735it [1:05:38, 7751.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1882\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29365131it [1:05:38, 6230.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1883\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29381094it [1:05:41, 6078.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1884\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29382878it [1:05:41, 5645.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1885\n", + "1886\n", + "1887\n", + "1888\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29391742it [1:05:43, 6598.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1889\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29393179it [1:05:43, 6944.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1890\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29402887it [1:05:44, 8171.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1891\n", + "1892\n", + "1893\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29405841it [1:05:45, 6435.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1894\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29413511it [1:05:46, 7602.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1895\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29422795it [1:05:47, 5846.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1896\n", + "1897\n", + "1898\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29428004it [1:05:48, 6677.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1899\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29443878it [1:05:50, 7784.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1900\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29454312it [1:05:52, 6548.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1901\n", + "1902\n", + "1903\n", + "1904\n", + "1905\n", + "1906\n", + "1907\n", + "1908\n", + "1909\n", + "1910\n", + "1911\n", + "1912\n", + "1913\n", + "1914\n", + "1915\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29459985it [1:05:52, 6587.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1916\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29461283it [1:05:53, 6188.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1917\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29462516it [1:05:53, 5712.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1918\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29465930it [1:05:53, 6125.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1919\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29470678it [1:05:54, 7080.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1920\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29482031it [1:05:56, 7653.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1921\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29496673it [1:05:58, 7279.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1922\n", + "1923\n", + "1924\n", + "1925\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29532388it [1:06:02, 7824.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1926\n", + "1927\n", + "1928\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29537474it [1:06:03, 8412.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1929\n", + "1930\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29544070it [1:06:04, 7824.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1931\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29562393it [1:06:06, 7014.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1932\n", + "1933\n", + "1934\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29579649it [1:06:10, 7313.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1935\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29592010it [1:06:12, 4297.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1936\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29605912it [1:06:15, 3935.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1937\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29626290it [1:06:18, 6088.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1938\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29630295it [1:06:19, 6743.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1939\n", + "1940\n", + "1941\n", + "1942\n", + "1943\n", + "1944\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29631643it [1:06:19, 6309.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1945\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29642683it [1:06:21, 5574.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1946\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29659461it [1:06:24, 6602.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1947\n", + "1948\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29660811it [1:06:24, 6672.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1949\n", + "1950\n", + "1951\n", + "1952\n", + "1953\n", + "1954\n", + "1955\n", + "1956\n", + "1957\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29668039it [1:06:25, 7259.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1958\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29670491it [1:06:26, 7792.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1959\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29674612it [1:06:26, 7789.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1960\n", + "1961\n", + "1962\n", + "1963\n", + "1964\n", + "1965\n", + "1966\n", + "1967\n", + "1968\n", + "1969\n", + "1970\n", + "1971\n", + "1972\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29679294it [1:06:27, 6647.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1973\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29681380it [1:06:27, 6606.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1974\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29685496it [1:06:28, 7983.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1975\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29688712it [1:06:28, 7457.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1976\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29693073it [1:06:29, 7083.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1977\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29702774it [1:06:30, 7731.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1978\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29715352it [1:06:32, 8433.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1979\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29728974it [1:06:34, 6709.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1980\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29732179it [1:06:34, 7265.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1981\n", + "1982\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29745486it [1:06:36, 8228.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1983\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29748798it [1:06:36, 8163.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1984\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29771857it [1:06:39, 7549.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1985\n", + "1986\n", + "1987\n", + "1988\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29773364it [1:06:39, 7345.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1989\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29776973it [1:06:40, 6807.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1990\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29779805it [1:06:40, 6566.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1991\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29784199it [1:06:41, 7292.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1992\n", + "1993\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29788101it [1:06:41, 7801.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1994\n", + "1995\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29790458it [1:06:42, 7712.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1996\n", + "1997\n", + "1998\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29823604it [1:06:46, 7627.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1999\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29835325it [1:06:48, 7813.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2000\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29842107it [1:06:49, 7700.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2001\n", + "2002\n", + "2003\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29868883it [1:06:53, 7999.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2004\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29872252it [1:06:53, 8238.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2005\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29879993it [1:06:54, 5983.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2006\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29894102it [1:06:56, 7248.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2007\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29906407it [1:06:58, 8197.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2008\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29910602it [1:06:58, 8440.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2009\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29914830it [1:06:59, 6591.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2010\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29922056it [1:07:00, 7213.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2011\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29934265it [1:07:02, 7400.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2012\n", + "2013\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29944482it [1:07:03, 6686.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2014\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29945711it [1:07:04, 3281.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2015\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29947339it [1:07:05, 1997.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2016\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29951776it [1:07:06, 4080.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2017\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29956793it [1:07:07, 6134.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2018\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29965345it [1:07:09, 5737.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2019\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29978131it [1:07:11, 5843.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2020\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29979773it [1:07:11, 4704.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2021\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "29999752it [1:07:15, 5565.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2022\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30004668it [1:07:16, 5916.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2023\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30010695it [1:07:17, 4617.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2024\n", + "2025\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30041619it [1:07:22, 4581.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2026\n", + "2027\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30045626it [1:07:23, 4926.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2028\n", + "2029\n", + "2030\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30055542it [1:07:25, 6023.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2031\n", + "2032\n", + "2033\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30061956it [1:07:26, 7581.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2034\n", + "2035\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30066753it [1:07:27, 7686.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2036\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30077918it [1:07:28, 7299.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2037\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30097785it [1:07:31, 7516.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2038\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30114712it [1:07:33, 7176.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2039\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30133377it [1:07:36, 6989.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2040\n", + "2041\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30139982it [1:07:37, 7324.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2042\n", + "2043\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30167468it [1:07:40, 7647.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2044\n", + "2045\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30169703it [1:07:41, 7221.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2046\n", + "2047\n", + "2048\n", + "2049\n", + "2050\n", + "2051\n", + "2052\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30171100it [1:07:41, 6025.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2053\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30179280it [1:07:42, 7825.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2054\n", + "2055\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30198180it [1:07:45, 6433.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2056\n", + "2057\n", + "2058\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30215629it [1:07:47, 6914.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2059\n", + "2060\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30217901it [1:07:47, 7461.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2061\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30237179it [1:07:50, 7846.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2062\n", + "2063\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30240348it [1:07:50, 7849.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2064\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30275426it [1:07:55, 8439.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2065\n", + "2066\n", + "2067\n", + "2068\n", + "2069\n", + "2070\n", + "2071\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30295868it [1:07:57, 8331.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2072\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30298377it [1:07:58, 8081.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2073\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30308356it [1:07:59, 7734.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2074\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30310484it [1:07:59, 6140.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2075\n", + "2076\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30337557it [1:08:03, 7348.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2077\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30362220it [1:08:07, 6421.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2078\n", + "2079\n", + "2080\n", + "2081\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30377389it [1:08:09, 7958.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2082\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30382998it [1:08:10, 7884.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2083\n", + "2084\n", + "2085\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30389674it [1:08:11, 8169.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2086\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30405260it [1:08:13, 7810.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2087\n", + "2088\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30407599it [1:08:13, 7407.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2089\n", + "2090\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30414986it [1:08:14, 7298.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2091\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30422152it [1:08:15, 7104.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2092\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30429231it [1:08:16, 6760.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2093\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30432528it [1:08:17, 6425.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2094\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30439964it [1:08:18, 6791.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2095\n", + "2096\n", + "2097\n", + "2098\n", + "2099\n", + "2100\n", + "2101\n", + "2102\n", + "2103\n", + "2104\n", + "2105\n", + "2106\n", + "2107\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30450989it [1:08:19, 6714.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2108\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30452350it [1:08:20, 6725.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2109\n", + "2110\n", + "2111\n", + "2112\n", + "2113\n", + "2114\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30454577it [1:08:20, 6990.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2115\n", + "2116\n", + "2117\n", + "2118\n", + "2119\n", + "2120\n", + "2121\n", + "2122\n", + "2123\n", + "2124\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30457718it [1:08:20, 7593.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2125\n", + "2126\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30466633it [1:08:22, 7962.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2127\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30470537it [1:08:22, 7708.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2128\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30476241it [1:08:23, 8126.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2129\n", + "2130\n", + "2131\n", + "2132\n", + "2133\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30477863it [1:08:23, 8071.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2134\n", + "2135\n", + "2136\n", + "2137\n", + "2138\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30480232it [1:08:23, 7456.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2139\n", + "2140\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30496967it [1:08:26, 8282.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2141\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30536723it [1:08:33, 6888.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2142\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30539924it [1:08:34, 7684.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2143\n", + "2144\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30543081it [1:08:34, 7677.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2145\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30550129it [1:08:35, 6942.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2146\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30590244it [1:08:40, 7668.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2147\n", + "2148\n", + "2149\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30603962it [1:08:42, 8589.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2150\n", + "2151\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30610417it [1:08:43, 6455.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2152\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30630249it [1:08:46, 7561.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2153\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30641652it [1:08:47, 7204.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2154\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30661616it [1:08:52, 5636.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2155\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30728808it [1:09:00, 8173.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2156\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30751127it [1:09:03, 8620.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2157\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30754631it [1:09:03, 8671.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2158\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30789860it [1:09:08, 6384.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2159\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30792565it [1:09:08, 6451.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2160\n", + "2161\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30807231it [1:09:10, 7814.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2162\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30846753it [1:09:17, 7799.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2163\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30864038it [1:09:19, 8165.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2164\n", + "2165\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30875445it [1:09:20, 7865.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2166\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30880819it [1:09:21, 4716.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2167\n", + "2168\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30901312it [1:09:25, 7281.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2169\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30912653it [1:09:26, 8135.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2170\n", + "2171\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30918494it [1:09:27, 8168.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2172\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "30988253it [1:09:35, 8202.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2173\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31021655it [1:09:40, 6911.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2174\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31039535it [1:09:42, 8064.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2175\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31056457it [1:09:45, 7451.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2176\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31075908it [1:09:47, 8097.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2177\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31100510it [1:09:51, 6776.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2178\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31110038it [1:09:52, 6877.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2179\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31139678it [1:09:57, 7880.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2180\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31141980it [1:09:57, 7254.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2181\n", + "2182\n", + "2183\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31170357it [1:10:02, 7996.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2184\n", + "2185\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31183810it [1:10:04, 5837.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2186\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31187132it [1:10:04, 5303.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2187\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31194923it [1:10:06, 7015.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2188\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31204821it [1:10:07, 6126.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2189\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31206885it [1:10:07, 6598.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2190\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31211261it [1:10:08, 7142.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2191\n", + "2192\n", + "2193\n", + "2194\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31212633it [1:10:08, 6176.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2195\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31213849it [1:10:09, 5079.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2196\n", + "2197\n", + "2198\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31216048it [1:10:09, 6563.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2199\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31219088it [1:10:09, 6755.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2200\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31222649it [1:10:10, 6924.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2201\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31224050it [1:10:10, 6565.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2202\n", + "2203\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31229235it [1:10:11, 7302.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2204\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31231399it [1:10:11, 7107.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2205\n", + "2206\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31235824it [1:10:12, 6544.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2207\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31241021it [1:10:12, 7588.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2208\n", + "2209\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31248772it [1:10:14, 7288.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2210\n", + "2211\n", + "2212\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31254229it [1:10:14, 7825.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2213\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31277772it [1:10:18, 6347.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2214\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31280976it [1:10:18, 4966.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2215\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31281959it [1:10:19, 4618.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2216\n", + "2217\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31285444it [1:10:19, 6038.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2218\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31297638it [1:10:21, 8250.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2219\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31301010it [1:10:21, 8038.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2220\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31306792it [1:10:22, 8106.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2221\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31314123it [1:10:23, 6132.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2222\n", + "2223\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31317956it [1:10:24, 7480.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2224\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31344294it [1:10:28, 7300.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2225\n", + "2226\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31359150it [1:10:30, 5040.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2227\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31360196it [1:10:31, 4658.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2228\n", + "2229\n", + "2230\n", + "2231\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31361335it [1:10:31, 4883.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2232\n", + "2233\n", + "2234\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31373524it [1:10:33, 5623.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2235\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31375853it [1:10:33, 5211.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2236\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31380407it [1:10:34, 7452.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2237\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31389772it [1:10:35, 5458.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2238\n", + "2239\n", + "2240\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31397218it [1:10:37, 6270.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2241\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31408916it [1:10:39, 4955.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2242\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31410446it [1:10:39, 5036.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2243\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31419130it [1:10:41, 5294.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2244\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31420927it [1:10:41, 5829.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2245\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31422773it [1:10:41, 6074.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2246\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31442577it [1:10:45, 6282.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2247\n", + "2248\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31445069it [1:10:45, 6014.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2249\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31446892it [1:10:45, 6024.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2250\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31462506it [1:10:48, 6085.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2251\n", + "2252\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31470947it [1:10:49, 5779.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2253\n", + "2254\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31490687it [1:10:53, 4409.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2255\n", + "2256\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31506167it [1:10:55, 7989.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2257\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31533075it [1:10:59, 5206.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2258\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31539797it [1:11:01, 4505.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2259\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31557320it [1:11:04, 7704.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2260\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31573770it [1:11:07, 7305.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2261\n", + "2262\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31575937it [1:11:07, 6829.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2263\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31581577it [1:11:08, 7174.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2264\n", + "2265\n", + "2266\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31584834it [1:11:08, 8001.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2267\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31594087it [1:11:09, 8255.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2268\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31620790it [1:11:13, 7403.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2269\n", + "2270\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31631705it [1:11:15, 6460.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2271\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31638231it [1:11:16, 7726.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2272\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31646426it [1:11:17, 8272.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2273\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31656349it [1:11:18, 8118.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2274\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31660659it [1:11:18, 7709.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2275\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31669925it [1:11:20, 7319.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2276\n", + "2277\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31674372it [1:11:21, 4938.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2278\n", + "2279\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31682834it [1:11:22, 8035.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2280\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31702568it [1:11:24, 8456.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2281\n", + "2282\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31705144it [1:11:24, 8481.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2283\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31711090it [1:11:25, 8347.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2284\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31728177it [1:11:27, 8366.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2285\n", + "2286\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31755904it [1:11:31, 8565.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2287\n", + "2288\n", + "2289\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31789790it [1:11:35, 8042.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2290\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31799886it [1:11:36, 7532.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2291\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31810497it [1:11:38, 7321.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2292\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31817516it [1:11:38, 7869.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2293\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31846324it [1:11:43, 6690.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2294\n", + "2295\n", + "2296\n", + "2297\n", + "2298\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31849496it [1:11:43, 7673.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2299\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31866338it [1:11:45, 6624.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2300\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31894919it [1:11:50, 6835.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2301\n", + "2302\n", + "2303\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "31998348it [1:12:03, 7282.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2304\n", + "2305\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32018342it [1:12:06, 7555.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2306\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32023985it [1:12:07, 6666.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2307\n", + "2308\n", + "2309\n", + "2310\n", + "2311\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32082769it [1:12:15, 6271.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2312\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32084700it [1:12:16, 6265.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2313\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32095796it [1:12:18, 6450.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2314\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32173149it [1:12:32, 4953.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2315\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32177392it [1:12:32, 5135.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2316\n", + "2317\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32188253it [1:12:35, 5558.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2318\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32204737it [1:12:38, 6807.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2319\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32296263it [1:12:51, 7497.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2320\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32307073it [1:12:52, 7347.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2321\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32343146it [1:12:57, 7594.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2322\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32505768it [1:13:18, 8133.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2323\n", + "2324\n", + "2325\n", + "2326\n", + "2327\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32548921it [1:13:23, 8158.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2328\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32600925it [1:13:30, 7895.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2329\n", + "2330\n", + "2331\n", + "2332\n", + "2333\n", + "2334\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32623105it [1:13:32, 7678.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2335\n", + "2336\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32658901it [1:13:37, 8550.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2337\n", + "2338\n", + "2339\n", + "2340\n", + "2341\n", + "2342\n", + "2343\n", + "2344\n", + "2345\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32665889it [1:13:38, 8627.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2346\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32710363it [1:13:43, 7943.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2347\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32716754it [1:13:44, 7893.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2348\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32782981it [1:13:53, 8011.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2349\n", + "2350\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32792577it [1:13:54, 7891.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2351\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32826501it [1:13:58, 7845.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2352\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32862378it [1:14:03, 8796.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2353\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32867764it [1:14:03, 8987.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2354\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32869578it [1:14:04, 9009.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2355\n", + "2356\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32874078it [1:14:04, 8898.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2357\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32879449it [1:14:05, 8330.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2358\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32883826it [1:14:05, 8719.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2359\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32887532it [1:14:06, 9122.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2360\n", + "2361\n", + "2362\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32889346it [1:14:06, 8829.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2363\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32893805it [1:14:06, 8826.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2364\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32910797it [1:14:08, 8971.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2365\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32977083it [1:14:16, 8687.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2366\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32982425it [1:14:17, 8913.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2367\n", + "2368\n", + "2369\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "32997716it [1:14:18, 8916.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2370\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33002951it [1:14:19, 8291.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2371\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33006378it [1:14:19, 8231.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2372\n", + "2373\n", + "2374" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33008956it [1:14:20, 8406.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "2375\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33056801it [1:14:26, 7628.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2376\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33137741it [1:14:38, 7166.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2377\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33161735it [1:14:42, 7851.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2378\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33176418it [1:14:44, 5895.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2379\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33194412it [1:14:46, 7302.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2380\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33214517it [1:14:49, 6153.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2381\n", + "2382\n", + "2383\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33235186it [1:14:52, 7303.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2384\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33243486it [1:14:53, 6953.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2385\n", + "2386\n", + "2387\n", + "2388\n", + "2389\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33261470it [1:14:56, 7026.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2390\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33269917it [1:14:57, 7726.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2391\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33278839it [1:14:58, 6336.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2392\n", + "2393\n", + "2394\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33297899it [1:15:01, 8448.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2395\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33312802it [1:15:03, 7932.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2396\n", + "2397\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33318260it [1:15:03, 7214.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2398\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33348606it [1:15:08, 7118.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2399\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33350992it [1:15:08, 7726.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2400\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33397889it [1:15:15, 7444.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2401\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33399386it [1:15:15, 7447.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2402\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33416337it [1:15:17, 8397.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2403\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33453286it [1:15:22, 7533.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2404\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33480805it [1:15:26, 7801.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2405\n", + "2406\n", + "2407\n", + "2408\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33497564it [1:15:28, 7203.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2409\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33515124it [1:15:30, 8043.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2410\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33519135it [1:15:31, 7820.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2411\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33561769it [1:15:37, 7527.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2412\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33570849it [1:15:38, 7450.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2413\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33629260it [1:15:45, 7802.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2414\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33643633it [1:15:47, 7965.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2415\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33654102it [1:15:49, 7761.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2416\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33657430it [1:15:49, 8265.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2417\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33674260it [1:15:51, 8223.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2418\n", + "2419\n", + "2420\n", + "2421\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33679506it [1:15:52, 8434.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2422\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33686284it [1:15:52, 8490.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2423\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33704155it [1:15:55, 7173.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2424\n", + "2425\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33713493it [1:15:56, 7775.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2426\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33723341it [1:15:57, 8241.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2427\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33746098it [1:16:00, 7509.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2428\n", + "2429\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33752308it [1:16:01, 7605.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2430\n", + "2431\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33806643it [1:16:08, 7209.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2432\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33810549it [1:16:08, 7568.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2433\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33836895it [1:16:12, 8020.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2434\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33892281it [1:16:19, 6560.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2435\n", + "2436\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33938057it [1:16:25, 7672.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2437\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33942367it [1:16:26, 7985.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2438\n", + "2439\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33947074it [1:16:26, 7743.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2440\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33963964it [1:16:29, 7862.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2441\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "33984444it [1:16:31, 7420.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2442\n", + "2443\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34005645it [1:16:36, 5610.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2444\n", + "2445\n", + "2446\n", + "2447\n", + "2448\n", + "2449\n", + "2450\n", + "2451\n", + "2452\n", + "2453\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34029995it [1:16:42, 5300.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2454\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34064880it [1:17:06, 7402.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2455\n", + "2456\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34081985it [1:17:08, 7752.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2457\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34088218it [1:17:09, 7694.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2458\n", + "2459\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34102738it [1:17:11, 8134.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2460\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34105180it [1:17:11, 7803.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2461\n", + "2462\n", + "2463\n", + "2464\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34109870it [1:17:12, 7714.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2465\n", + "2466\n", + "2467\n", + "2468\n", + "2469\n", + "2470\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34115017it [1:17:13, 8487.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2471\n", + "2472\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34118404it [1:17:13, 8351.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2473\n", + "2474\n", + "2475\n", + "2476\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34135846it [1:17:15, 6779.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2477\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34158205it [1:17:18, 8368.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2478\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34167380it [1:17:19, 8021.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2479\n", + "2480\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34180126it [1:17:21, 8148.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2481\n", + "2482\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34186499it [1:17:22, 7887.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2483\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34193876it [1:17:23, 7997.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2484\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34212185it [1:17:25, 8478.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2485\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34265373it [1:17:31, 8003.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2486\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34282284it [1:17:33, 6959.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2487\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34286879it [1:17:34, 7249.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2488\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34301795it [1:17:36, 8301.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2489\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34312779it [1:17:37, 8426.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2490\n", + "2491\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34333105it [1:17:40, 8311.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2492\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34357924it [1:17:43, 8296.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2493\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34367327it [1:17:44, 8328.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2494\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34377948it [1:17:45, 8073.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2495\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34414340it [1:17:50, 8365.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2496\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34424357it [1:17:51, 8317.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2497\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34471189it [1:17:57, 8111.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2498\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34475301it [1:17:57, 8177.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2499\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34549897it [1:18:06, 8422.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2500\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34566565it [1:18:08, 8829.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2501\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34580792it [1:18:10, 8804.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2502\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34608666it [1:18:13, 8928.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2503\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34616698it [1:18:14, 8583.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2504\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34631968it [1:18:16, 8555.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2505\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34640524it [1:18:17, 8256.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2506\n", + "2507\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34643941it [1:18:17, 8470.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2508\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34670653it [1:18:21, 7241.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2509\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34690697it [1:18:23, 8063.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2510\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34694816it [1:18:24, 8136.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2511\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34756123it [1:18:31, 8485.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2512\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34760437it [1:18:32, 8580.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2513\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34763025it [1:18:32, 8528.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2514\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34770567it [1:18:33, 8033.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2515\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34848667it [1:18:43, 8313.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2516\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34893023it [1:18:48, 8681.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2517\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34901983it [1:18:49, 8901.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2518\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34911009it [1:18:50, 9007.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2519\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34918260it [1:18:51, 8445.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2520\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34947674it [1:18:54, 8834.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2521\n", + "2522\n", + "2523\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34986144it [1:18:58, 8516.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2524\n", + "2525\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "34992765it [1:18:59, 9167.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2526\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35001391it [1:19:00, 9207.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2527\n", + "2528\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35017621it [1:19:02, 9026.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2529\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35044943it [1:19:05, 9013.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2530\n", + "2531\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35048650it [1:19:05, 9219.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2532\n", + "2533\n", + "2534\n", + "2535\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35054172it [1:19:06, 8964.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2536\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35062360it [1:19:07, 8874.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2537\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35068528it [1:19:08, 8811.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2538\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35074771it [1:19:08, 7729.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2539\n", + "2540\n", + "2541\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35076270it [1:19:09, 6774.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2542\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35089913it [1:19:11, 7531.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2543\n", + "2544\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35101213it [1:19:12, 8880.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2545\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35114181it [1:19:14, 8569.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2546\n", + "2547\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35160183it [1:19:19, 7744.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2548\n", + "2549\n", + "2550\n", + "2551\n", + "2552\n", + "2553\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35164189it [1:19:20, 7969.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2554\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35187854it [1:19:23, 7493.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2555\n", + "2556\n", + "2557\n", + "2558\n", + "2559\n", + "2560\n", + "2561\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35190908it [1:19:23, 7365.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2562\n", + "2563\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35192360it [1:19:23, 6942.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2564\n", + "2565\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35196564it [1:19:24, 7012.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2566\n", + "2567\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35199217it [1:19:24, 8094.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2568\n", + "2569\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35202360it [1:19:25, 7407.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2570\n", + "2571\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35219023it [1:19:27, 7672.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2572\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35222227it [1:19:27, 7660.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2573\n", + "2574\n", + "2575\n", + "2576\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35228792it [1:19:29, 7424.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2577\n", + "2578\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35246101it [1:19:31, 6715.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2579\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35248147it [1:19:31, 6738.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2580\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35253153it [1:19:32, 6986.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2581\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35260715it [1:19:33, 5860.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2582\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35278289it [1:19:36, 6954.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2583\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35289371it [1:19:38, 7228.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2584\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35317928it [1:19:42, 6410.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2585\n", + "2586\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35322119it [1:19:42, 6851.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2587\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35326489it [1:19:43, 7008.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2588\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35330723it [1:19:43, 6634.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2589\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35365812it [1:19:48, 7228.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2590\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35442770it [1:19:59, 6968.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2591\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35447891it [1:20:00, 7227.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2592\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35456900it [1:20:01, 7193.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2593\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35476934it [1:20:04, 6587.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2594\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35487959it [1:20:06, 7463.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2595\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35492493it [1:20:06, 7402.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2596\n", + "2597\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35498245it [1:20:07, 6612.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2598\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35538567it [1:20:13, 7095.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2599\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35554503it [1:20:15, 7382.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2600\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35581228it [1:20:19, 7327.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2601\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35586420it [1:20:19, 7227.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2602\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35603675it [1:20:22, 7302.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2603\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35628359it [1:20:25, 7404.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2604\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35655829it [1:20:29, 6961.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2605\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35664896it [1:20:30, 7500.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2606\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35692615it [1:20:34, 7974.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2607\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35712047it [1:20:37, 5274.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2608\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35751519it [1:20:45, 4598.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2609\n", + "2610\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35756892it [1:20:47, 4140.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2611\n", + "2612\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35770859it [1:20:50, 6174.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2613\n", + "2614\n", + "2615\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35772245it [1:20:50, 6575.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2616\n", + "2617\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35774197it [1:20:50, 6120.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2618\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35777895it [1:20:51, 7256.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2619\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35782678it [1:20:51, 7857.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2620\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35784321it [1:20:51, 8044.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2621\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35795678it [1:20:53, 8274.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2622\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35823848it [1:20:56, 8305.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2623\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35828989it [1:20:57, 8395.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2624\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35842830it [1:20:58, 8736.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2625\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35879396it [1:21:03, 8959.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2626\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35897278it [1:21:05, 8793.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2627\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35908971it [1:21:06, 8961.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2628\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35910781it [1:21:06, 8946.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2629\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35915370it [1:21:07, 8950.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2630\n", + "2631\n", + "2632\n", + "2633\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35926332it [1:21:08, 8886.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2634\n", + "2635\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35930853it [1:21:08, 8948.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2636\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35937202it [1:21:09, 9023.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2637\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35947187it [1:21:10, 8923.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2638\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35964295it [1:21:12, 9019.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2639\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35967969it [1:21:13, 9053.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2640\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35974211it [1:21:13, 8282.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2641\n", + "2642\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35976868it [1:21:14, 8645.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2643\n", + "2644\n", + "2645\n", + "2646\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "35994106it [1:21:16, 8937.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2647\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36011112it [1:21:18, 8890.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2648\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36021845it [1:21:19, 8802.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2649\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36026223it [1:21:19, 7852.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2650\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36035888it [1:21:21, 8300.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2651\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36039378it [1:21:21, 8534.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2652\n", + "2653\n", + "2654\n", + "2655\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36050155it [1:21:22, 8741.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2656\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36057066it [1:21:23, 8497.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2657\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36066819it [1:21:24, 8719.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2658\n", + "2659\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36074061it [1:21:25, 8896.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2660\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36080461it [1:21:26, 9017.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2661\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36094031it [1:21:27, 8802.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2662\n", + "2663\n", + "2664\n", + "2665\n", + "2666\n", + "2667\n", + "2668\n", + "2669\n", + "2670\n", + "2671\n", + "2672\n", + "2673\n", + "2674\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36101205it [1:21:28, 8852.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2675\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36115701it [1:21:30, 8912.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2676\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36143234it [1:21:33, 8718.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2677\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36175124it [1:21:38, 8472.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2678\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36180963it [1:21:39, 8354.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2679\n", + "2680\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36183665it [1:21:39, 8758.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2681\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36208159it [1:21:42, 8980.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2682\n", + "2683\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36252282it [1:21:47, 8809.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2684\n", + "2685\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36260383it [1:21:47, 8803.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2686\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36264803it [1:21:48, 6775.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2687\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36275771it [1:21:49, 8462.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2688\n", + "2689\n", + "2690\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36284149it [1:21:50, 8559.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2691\n", + "2692\n", + "2693\n", + "2694\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36289510it [1:21:51, 8803.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2695\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36294007it [1:21:52, 8872.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2696\n", + "2697\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36300125it [1:21:52, 8108.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2698\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36305488it [1:21:53, 8877.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2699\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36319881it [1:21:55, 9076.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2700\n", + "2701\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36322548it [1:21:55, 8451.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2702\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36325995it [1:21:55, 8462.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2703\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36333892it [1:21:56, 8603.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2704\n", + "2705\n", + "2706\n", + "2707\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36336672it [1:21:57, 9045.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2708\n", + "2709\n", + "2710\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36342069it [1:21:57, 8913.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2711\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36345645it [1:21:58, 8766.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2712\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36350152it [1:21:58, 8854.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2713\n", + "2714\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36355619it [1:21:59, 9058.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2715\n", + "2716\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36361117it [1:21:59, 8819.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2717\n", + "2718\n", + "2719\n", + "2720\n", + "2721\n", + "2722\n", + "2723\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36366582it [1:22:00, 8956.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2724\n", + "2725\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36375361it [1:22:01, 7921.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2726\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36380852it [1:22:02, 7423.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2727\n", + "2728\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36384634it [1:22:02, 7245.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2729\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36403701it [1:22:05, 8710.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2730\n", + "2731\n", + "2732\n", + "2733\n", + "2734\n", + "2735\n", + "2736\n", + "2737\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36424545it [1:22:07, 8761.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2738\n", + "2739\n", + "2740\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36427169it [1:22:07, 8671.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2741\n", + "2742\n", + "2743\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36430771it [1:22:08, 8691.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2744\n", + "2745\n", + "2746\n", + "2747\n", + "2748\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36437085it [1:22:09, 8952.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2749\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36455396it [1:22:11, 9068.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2750\n", + "2751\n", + "2752\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36461722it [1:22:11, 8991.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2753\n", + "2754\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36465382it [1:22:12, 8922.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2755\n", + "2756\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36477207it [1:22:13, 8824.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2757\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36481518it [1:22:14, 7082.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2758\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36502365it [1:22:16, 8876.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2759\n", + "2760\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36508743it [1:22:17, 9021.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2761\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36524957it [1:22:18, 8894.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2762\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36550235it [1:22:22, 7172.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2763\n", + "2764\n", + "2765\n", + "2766\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36560543it [1:22:23, 8687.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2767\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36563125it [1:22:23, 8346.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2768\n", + "2769\n", + "2770\n", + "2771\n", + "2772\n", + "2773\n", + "2774\n", + "2775\n", + "2776\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36566685it [1:22:24, 8772.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2777\n", + "2778\n", + "2779\n", + "2780\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36589767it [1:22:26, 8970.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2781\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36593371it [1:22:27, 8889.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2782\n", + "2783\n", + "2784\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36596022it [1:22:27, 8298.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2785\n", + "2786\n", + "2787\n", + "2788\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36603817it [1:22:28, 7982.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2789\n", + "2790\n", + "2791\n", + "2792\n", + "2793\n", + "2794\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36605464it [1:22:28, 7777.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2795\n", + "2796\n", + "2797\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36608952it [1:22:29, 8478.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2798\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36634027it [1:22:32, 8127.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2799\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36640533it [1:22:32, 7470.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2800\n", + "2801\n", + "2802\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36649958it [1:22:34, 7274.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2803\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36652171it [1:22:34, 6513.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2804\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36656498it [1:22:35, 7149.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2805\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36662089it [1:22:36, 7830.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2806\n", + "2807\n", + "2808\n", + "2809\n", + "2810\n", + "2811\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36663619it [1:22:36, 7307.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2812\n", + "2813\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36665047it [1:22:36, 6867.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2814\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36677187it [1:22:38, 8200.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2815\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36680648it [1:22:38, 8592.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2816\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36683232it [1:22:38, 8487.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2817\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36693011it [1:22:39, 8807.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2818\n", + "2819\n", + "2820\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36707733it [1:22:41, 8886.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2821\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36782460it [1:22:50, 8854.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2822\n", + "2823\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36786075it [1:22:50, 8916.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2824\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36795162it [1:22:51, 9074.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2825\n", + "2826\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36809512it [1:22:53, 8725.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2827\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36823743it [1:22:54, 8777.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2828\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36837654it [1:22:56, 8434.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2829\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36847952it [1:22:57, 8340.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2830\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36868429it [1:23:00, 8923.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2831\n", + "2832\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36887642it [1:23:02, 6791.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2833\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36891577it [1:23:03, 7773.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2834\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36902249it [1:23:04, 9008.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2835\n", + "2836\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36904945it [1:23:04, 8594.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2837\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36909487it [1:23:05, 8867.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2838\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36920331it [1:23:06, 8929.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2839\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36925652it [1:23:07, 8565.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2840\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36931582it [1:23:07, 8383.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2841\n", + "2842\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "36955081it [1:23:10, 8949.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2843\n", + "2844\n", + "2845\n", + "2846\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37026623it [1:23:19, 8927.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2847\n", + "2848\n", + "2849\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37045705it [1:23:21, 8851.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2850\n", + "2851\n", + "2852\n", + "2853\n", + "2854\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37061736it [1:23:22, 8529.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2855\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37064410it [1:23:23, 8819.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2856\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37093635it [1:23:26, 6484.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2857\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37118943it [1:23:32, 3629.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2858\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37125234it [1:23:34, 2732.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2859\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37146958it [1:23:41, 3820.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2860\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37151914it [1:23:42, 5271.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2861\n", + "2862\n", + "2863\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37172738it [1:23:45, 6461.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2864\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37174692it [1:23:45, 6379.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2865\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37177857it [1:23:46, 5668.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2866\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37186722it [1:23:47, 6168.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2867\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37200301it [1:23:50, 5774.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2868\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37201544it [1:23:50, 6001.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2869\n", + "2870\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37208974it [1:23:51, 5197.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2871\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37213792it [1:23:52, 4772.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2872\n", + "2873\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37216635it [1:23:53, 5562.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2874\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37221951it [1:23:54, 5703.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2875\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37233132it [1:23:56, 3669.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2876\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37235516it [1:23:57, 3419.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2877\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37267117it [1:24:01, 8991.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2878\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37270731it [1:24:01, 8836.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2879\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37274370it [1:24:02, 9018.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2880\n", + "2881\n", + "2882\n", + "2883\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37278915it [1:24:02, 9067.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2884\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37283474it [1:24:03, 9118.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2885\n", + "2886\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37285281it [1:24:03, 8882.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2887\n", + "2888\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37289811it [1:24:03, 8806.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2889\n", + "2890\n", + "2891\n", + "2892\n", + "2893\n", + "2894\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37303934it [1:24:05, 8902.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2895\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37305752it [1:24:05, 8948.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2896\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37317486it [1:24:07, 8523.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2897\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37320846it [1:24:07, 8063.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2898\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37329908it [1:24:08, 8663.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2899\n", + "2900\n", + "2901\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37337148it [1:24:09, 8847.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2902\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37348583it [1:24:10, 8679.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2903\n", + "2904\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37355836it [1:24:11, 9082.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2905\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37361815it [1:24:12, 8222.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2906\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37365255it [1:24:12, 8490.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2907\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37375955it [1:24:14, 8719.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2908\n", + "2909\n", + "2910\n", + "2911\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37382332it [1:24:14, 8960.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2912\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37387772it [1:24:15, 8986.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2913\n", + "2914\n", + "2915\n", + "2916\n", + "2917\n", + "2918\n", + "2919\n", + "2920\n", + "2921\n", + "2922\n", + "2923" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37390489it [1:24:15, 8934.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "2924\n", + "2925\n", + "2926\n", + "2927\n", + "2928\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37395944it [1:24:16, 8839.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2929\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37398613it [1:24:16, 8825.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2930\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37407603it [1:24:17, 8780.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2931\n", + "2932\n", + "2933\n", + "2934\n", + "2935\n", + "2936\n", + "2937\n", + "2938\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37415893it [1:24:18, 9137.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2939\n", + "2940\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37448429it [1:24:22, 8628.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2941\n", + "2942\n", + "2943\n", + "2944\n", + "2945\n", + "2946\n", + "2947\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37452012it [1:24:22, 8845.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2948\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37466505it [1:24:24, 8876.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2949\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37485512it [1:24:26, 8931.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2950\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37489098it [1:24:26, 8836.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2951\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37503168it [1:24:28, 8213.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2952\n", + "2953\n", + "2954\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37511994it [1:24:29, 8792.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2955\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37514581it [1:24:29, 8344.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2956\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37519425it [1:24:30, 7156.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2957\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37522833it [1:24:31, 8205.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2958\n", + "2959\n", + "2960\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37525475it [1:24:31, 8621.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2961\n", + "2962\n", + "2963\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37530920it [1:24:32, 8912.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2964\n", + "2965\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37534488it [1:24:32, 8807.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2966\n", + "2967\n", + "2968\n", + "2969\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37536252it [1:24:32, 8690.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2970\n", + "2971\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37541352it [1:24:33, 8186.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2972\n", + "2973\n", + "2974\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37552893it [1:24:35, 7048.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2975\n", + "2976\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37558044it [1:24:36, 8380.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2977\n", + "2978\n", + "2979\n", + "2980\n", + "2981\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37564302it [1:24:36, 8775.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2982\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37567911it [1:24:37, 8986.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2983\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37576245it [1:24:38, 9072.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2984\n", + "2985\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37578063it [1:24:38, 8921.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2986\n", + "2987\n", + "2988\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37581641it [1:24:38, 8871.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2989\n", + "2990\n", + "2991\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37585236it [1:24:39, 8858.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2992\n", + "2993\n", + "2994\n", + "2995\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37588855it [1:24:39, 9000.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2996\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37597971it [1:24:40, 8617.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2997\n", + "2998\n", + "2999\n", + "3000\n", + "3001\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37601616it [1:24:41, 8944.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3002\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37611567it [1:24:42, 9033.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3003\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37613378it [1:24:42, 8799.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3004\n", + "3005\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37617122it [1:24:42, 9235.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3006\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37618969it [1:24:43, 9197.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3007\n", + "3008\n", + "3009\n", + "3010\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37632485it [1:24:44, 8778.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3011\n", + "3012\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37635152it [1:24:44, 8786.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3013\n", + "3014\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37640596it [1:24:45, 8817.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3015\n", + "3016\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37647402it [1:24:46, 7699.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3017\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37658484it [1:24:47, 7162.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3018\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37667695it [1:24:49, 5481.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3019\n", + "3020\n", + "3021\n", + "3022\n", + "3023\n", + "3024\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37673172it [1:24:50, 7586.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3025\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37694149it [1:24:52, 9041.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3026\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37714188it [1:24:54, 8982.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3027\n", + "3028\n", + "3029\n", + "3030\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37728791it [1:24:56, 9001.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3031\n", + "3032\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37731470it [1:24:56, 8689.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3033\n", + "3034\n", + "3035\n", + "3036\n", + "3037\n", + "3038\n", + "3039\n", + "3040\n", + "3041\n", + "3042\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37744161it [1:24:58, 8876.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3043\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37751299it [1:24:58, 8893.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3044\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37759316it [1:24:59, 7382.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3045\n", + "3046\n", + "3047\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37761758it [1:25:00, 7770.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3048\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37772420it [1:25:01, 8706.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3049\n", + "3050\n", + "3051\n", + "3052\n", + "3053\n", + "3054\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37780310it [1:25:02, 8651.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3055\n", + "3056\n", + "3057\n", + "3058\n", + "3059\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37832677it [1:25:08, 7493.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3060\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37843387it [1:25:09, 8943.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3061\n", + "3062\n", + "3063\n", + "3064\n", + "3065\n", + "3066\n", + "3067\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37845196it [1:25:10, 8979.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3068\n", + "3069\n", + "3070\n", + "3071\n", + "3072\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37867811it [1:25:12, 8950.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3073\n", + "3074\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37871328it [1:25:13, 8624.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3075\n", + "3076\n", + "3077\n", + "3078\n", + "3079\n", + "3080\n", + "3081\n", + "3082\n", + "3083\n", + "3084\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37876610it [1:25:13, 8785.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3085\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37883779it [1:25:14, 8795.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3086\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37909121it [1:25:17, 8984.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3087\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37929148it [1:25:19, 8958.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3088\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37936262it [1:25:20, 8375.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3089\n", + "3090\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "37951522it [1:25:22, 8769.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3091\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38000533it [1:25:27, 8837.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3092\n", + "3093\n", + "3094\n", + "3095\n", + "3096\n", + "3097\n", + "3098\n", + "3099\n", + "3100\n", + "3101\n", + "3102\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38006808it [1:25:28, 8536.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3103\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38012829it [1:25:29, 8199.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3104\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38015205it [1:25:29, 7288.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3105\n", + "3106\n", + "3107\n", + "3108\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38018649it [1:25:29, 8081.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3109\n", + "3110\n", + "3111\n", + "3112\n", + "3113\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38039865it [1:25:32, 8741.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3114\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38058597it [1:25:34, 8133.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3115\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38086031it [1:25:37, 8605.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3116\n", + "3117\n", + "3118\n", + "3119\n", + "3120\n", + "3121" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38087749it [1:25:38, 8285.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "3122\n", + "3123\n", + "3124\n", + "3125\n", + "3126\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38099529it [1:25:39, 9156.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3127\n", + "3128\n", + "3129\n", + "3130" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38101362it [1:25:39, 8995.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "3131\n", + "3132\n", + "3133\n", + "3134\n", + "3135\n", + "3136\n", + "3137\n", + "3138\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38113178it [1:25:40, 8675.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3139\n", + "3140\n", + "3141\n", + "3142\n", + "3143\n", + "3144\n", + "3145\n", + "3146\n", + "3147\n", + "3148\n", + "3149\n", + "3150\n", + "3151\n", + "3152\n", + "3153\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38123762it [1:25:42, 8762.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3154\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38127311it [1:25:42, 8809.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3155\n", + "3156\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38148273it [1:25:44, 9451.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3157\n", + "3158\n", + "3159\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38151135it [1:25:45, 9164.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3160\n", + "3161\n", + "3162\n", + "3163\n", + "3164\n", + "3165\n", + "3166\n", + "3167\n", + "3168\n", + "3169\n", + "3170\n", + "3171\n", + "3172\n", + "3173\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38190524it [1:25:49, 8763.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3174\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38194044it [1:25:50, 8756.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3175\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38198495it [1:25:50, 8695.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3176\n", + "3177\n", + "3178\n", + "3179\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38201122it [1:25:50, 8555.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3180\n", + "3181\n", + "3182\n", + "3183\n", + "3184\n", + "3185\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38220702it [1:25:53, 8880.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3186\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38245613it [1:25:56, 8661.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3187\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38260667it [1:25:57, 8104.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3188\n", + "3189\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38296799it [1:26:01, 8913.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3190\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38302871it [1:26:02, 8459.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3191\n", + "3192\n", + "3193\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38320553it [1:26:04, 7858.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3194\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38346219it [1:26:07, 8733.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3195\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38351603it [1:26:08, 8624.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3196\n", + "3197\n", + "3198\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38356879it [1:26:08, 8479.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3199\n", + "3200\n", + "3201\n", + "3202\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38359444it [1:26:09, 8354.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3203\n", + "3204\n", + "3205\n", + "3206\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38363842it [1:26:09, 8721.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3207\n", + "3208\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38369204it [1:26:10, 8874.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3209\n", + "3210\n", + "3211\n", + "3212\n", + "3213\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38375448it [1:26:11, 8687.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3214\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38382610it [1:26:11, 8868.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3215\n", + "3216\n", + "3217\n", + "3218\n", + "3219\n", + "3220\n", + "3221\n", + "3222\n", + "3223\n", + "3224\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38395031it [1:26:13, 8861.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3225\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38401413it [1:26:14, 9010.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3226\n", + "3227\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38415811it [1:26:15, 8937.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3228\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38417597it [1:26:15, 8741.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3229\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38426248it [1:26:16, 8348.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3230\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38453021it [1:26:19, 8724.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3231\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38454810it [1:26:20, 8840.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3232\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38468120it [1:26:21, 8658.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3233\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38475294it [1:26:22, 8900.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3234\n", + "3235\n", + "3236\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38477985it [1:26:22, 8584.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3237\n", + "3238\n", + "3239\n", + "3240\n", + "3241\n", + "3242\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38492257it [1:26:24, 8561.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3243\n", + "3244\n", + "3245\n", + "3246\n", + "3247\n", + "3248\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38500310it [1:26:25, 8876.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3249\n", + "3250\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38503914it [1:26:25, 8793.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3251\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38521960it [1:26:27, 8504.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3252\n", + "3253\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38523719it [1:26:28, 8639.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3254\n", + "3255\n", + "3256\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38526343it [1:26:28, 8370.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3257\n", + "3258\n", + "3259\n", + "3260\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38528097it [1:26:28, 8579.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3261\n", + "3262\n", + "3263\n", + "3264\n", + "3265\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38538479it [1:26:29, 8137.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3266\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38545971it [1:26:30, 8362.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3267\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38549577it [1:26:31, 8761.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3268\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38558400it [1:26:32, 8373.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3269\n", + "3270\n", + "3271\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38561908it [1:26:32, 8664.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3272\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38564572it [1:26:32, 8789.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3273\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38624872it [1:26:40, 6806.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3274\n", + "3275\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38626509it [1:26:40, 7510.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3276\n", + "3277\n", + "3278\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38647551it [1:26:43, 8798.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3279\n", + "3280\n", + "3281\n", + "3282\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38683543it [1:26:47, 8919.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3283\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38689922it [1:26:47, 8837.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3284\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38700466it [1:26:49, 8935.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3285\n", + "3286\n", + "3287\n", + "3288\n", + "3289\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38702245it [1:26:49, 8817.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3290\n", + "3291\n", + "3292\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38741314it [1:26:53, 8710.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3293\n", + "3294\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38754545it [1:26:55, 8810.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3295\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38774315it [1:26:57, 8838.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3296\n", + "3297\n", + "3298\n", + "3299\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38781327it [1:26:58, 8648.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3300\n", + "3301\n", + "3302\n", + "3303\n", + "3304\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38788438it [1:26:59, 8749.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3305\n", + "3306\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38791077it [1:26:59, 8767.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3307\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38799039it [1:27:00, 8066.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3308\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38802509it [1:27:00, 8543.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3309\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38812895it [1:27:02, 8413.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3310\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38831351it [1:27:04, 7469.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3311\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38836999it [1:27:05, 8039.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3312\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38852399it [1:27:07, 8453.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3313\n", + "3314\n", + "3315\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38865205it [1:27:08, 8550.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3316\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38866923it [1:27:08, 8538.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3317\n", + "3318\n", + "3319\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38870409it [1:27:09, 8683.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3320\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38877197it [1:27:09, 8102.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3321\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38905859it [1:27:13, 8470.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3322\n", + "3323\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38926230it [1:27:16, 7580.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3324\n", + "3325\n", + "3326\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "38946672it [1:27:18, 8503.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3327\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39045723it [1:27:29, 8470.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3328\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39048391it [1:27:30, 8185.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3329\n", + "3330\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39061598it [1:27:31, 8730.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3331\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39065214it [1:27:32, 8718.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3332\n", + "3333\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39091200it [1:27:35, 8973.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3334\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39092994it [1:27:35, 8786.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3335\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39111893it [1:27:37, 8586.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3336\n", + "3337\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39136478it [1:27:40, 8217.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3338\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39160977it [1:27:43, 8727.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3339\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39178214it [1:27:45, 8078.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3340\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39193889it [1:27:47, 8520.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3341\n", + "3342\n", + "3343\n", + "3344\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39208796it [1:27:49, 8520.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3345\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39214359it [1:27:49, 7736.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3346\n", + "3347\n", + "3348\n", + "3349\n", + "3350\n", + "3351\n", + "3352\n", + "3353\n", + "3354\n", + "3355\n", + "3356\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39216744it [1:27:50, 7744.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3357\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39218333it [1:27:50, 7333.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3358\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39256029it [1:27:55, 8153.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3359\n", + "3360\n", + "3361\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39258545it [1:27:55, 8184.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3362\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39261863it [1:27:55, 8163.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3363\n", + "3364\n", + "3365\n", + "3366\n", + "3367\n", + "3368\n", + "3369\n", + "3370\n", + "3371\n", + "3372\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39272447it [1:27:57, 8658.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3373\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39277721it [1:27:57, 8621.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3374\n", + "3375\n", + "3376\n", + "3377\n", + "3378\n", + "3379\n", + "3380\n", + "3381\n", + "3382\n", + "3383\n", + "3384\n", + "3385\n", + "3386\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39280343it [1:27:58, 8504.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3387\n", + "3388\n", + "3389\n", + "3390\n", + "3391\n", + "3392\n", + "3393\n", + "3394\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39284701it [1:27:58, 8278.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3395\n", + "3396\n", + "3397\n", + "3398\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39288728it [1:27:59, 7842.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3399\n", + "3400\n", + "3401\n", + "3402\n", + "3403\n", + "3404\n", + "3405\n", + "3406\n", + "3407\n", + "3408\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39294861it [1:27:59, 8466.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3409\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39305058it [1:28:01, 8624.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3410\n", + "3411\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39312223it [1:28:01, 8691.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3412\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39323977it [1:28:03, 8861.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3413\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39371936it [1:28:08, 8446.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3414\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39383457it [1:28:10, 8413.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3415\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39434509it [1:28:16, 8708.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3416\n", + "3417\n", + "3418\n", + "3419\n", + "3420\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39436301it [1:28:16, 8811.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3421\n", + "3422\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39442394it [1:28:17, 8558.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3423\n", + "3424\n", + "3425\n", + "3426\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39465211it [1:28:19, 8694.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3427\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39481200it [1:28:21, 8683.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3428\n", + "3429\n", + "3430\n", + "3431\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39498777it [1:28:23, 8465.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3432\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39520340it [1:28:26, 8643.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3433\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39541434it [1:28:28, 8125.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3434\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39546572it [1:28:29, 8258.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3435\n", + "3436\n", + "3437\n", + "3438\n", + "3439\n", + "3440\n", + "3441\n", + "3442\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39549107it [1:28:29, 8045.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3443\n", + "3444\n", + "3445\n", + "3446\n", + "3447\n", + "3448\n", + "3449\n", + "3450\n", + "3451\n", + "3452\n", + "3453\n", + "3454\n", + "3455\n", + "3456\n", + "3457\n", + "3458\n", + "3459\n", + "3460\n", + "3461\n", + "3462\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39552506it [1:28:29, 8054.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3463\n", + "3464\n", + "3465\n", + "3466\n", + "3467\n", + "3468\n", + "3469\n", + "3470\n", + "3471\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39570933it [1:28:32, 8095.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3472\n", + "3473\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39588632it [1:28:34, 6658.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3474\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39596707it [1:28:35, 7958.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3475\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39612096it [1:28:37, 8443.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3476\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39631170it [1:28:39, 8597.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3477\n", + "3478\n", + "3479\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39632897it [1:28:40, 8611.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3480\n", + "3481\n", + "3482\n", + "3483\n", + "3484\n", + "3485\n", + "3486\n", + "3487\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39669187it [1:28:44, 8108.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3488\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39706605it [1:28:48, 8724.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3489\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39726189it [1:28:51, 8535.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3490\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39739139it [1:28:52, 8412.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3491\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39761057it [1:28:55, 8031.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3492\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39764332it [1:28:55, 8128.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3493\n", + "3494\n", + "3495\n", + "3496\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39775442it [1:28:57, 8356.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3497\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39824681it [1:29:02, 8930.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3498\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39923704it [1:29:14, 8893.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3499\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39939227it [1:29:16, 8243.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3500\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39965943it [1:29:19, 8780.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3501\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "39978162it [1:29:21, 8151.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3502\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40017360it [1:29:25, 8072.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3503\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40037511it [1:29:28, 8243.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3504\n", + "3505\n", + "3506\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40060453it [1:29:30, 8288.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3507\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40062982it [1:29:31, 8216.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3508\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40079138it [1:29:33, 8609.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3509\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40091235it [1:29:34, 8336.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3510\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40173587it [1:29:44, 7474.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3511\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40189400it [1:29:46, 8812.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3512\n", + "3513\n", + "3514\n", + "3515\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40191172it [1:29:46, 8796.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3516\n", + "3517\n", + "3518\n", + "3519\n", + "3520\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40192934it [1:29:46, 8760.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3521\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40207943it [1:29:48, 8503.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3522\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40254028it [1:29:53, 8815.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3523\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40258395it [1:29:54, 8658.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3524\n", + "3525\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40265488it [1:29:55, 8681.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3526\n", + "3527\n", + "3528\n", + "3529" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40267254it [1:29:55, 8763.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40283920it [1:29:57, 8745.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3530\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40295486it [1:29:58, 8234.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3531\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40306830it [1:30:00, 8908.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3532\n", + "3533\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40310392it [1:30:00, 8754.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3534\n", + "3535\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40313049it [1:30:00, 8684.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3536\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40321141it [1:30:01, 8763.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3537\n", + "3538\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40363368it [1:30:07, 7933.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3539\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40365869it [1:30:07, 8080.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3540\n", + "3541\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40369395it [1:30:07, 8709.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3542\n", + "3543\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40379219it [1:30:09, 8681.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3544\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40385522it [1:30:09, 9051.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3545\n", + "3546\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40394356it [1:30:10, 8446.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3547\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40465405it [1:30:19, 7830.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3548\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40469605it [1:30:20, 8123.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3549\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40495671it [1:30:23, 8274.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3550\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40516329it [1:30:26, 4845.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3551\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40585149it [1:30:34, 8258.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3552\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40605653it [1:30:36, 8583.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3553\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40627195it [1:30:39, 8444.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3554\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40690861it [1:31:08, 8975.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3555\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40712975it [1:31:11, 8300.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3556\n", + "3557\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40730519it [1:31:13, 8830.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3558\n", + "3559\n", + "3560\n", + "3561\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40759175it [1:31:16, 8601.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3562\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40799575it [1:31:21, 8872.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3563\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40802142it [1:31:21, 7614.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3564\n", + "3565\n", + "3566\n", + "3567\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40804844it [1:31:22, 8484.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3568\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40818066it [1:31:23, 8790.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3569\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40819856it [1:31:23, 8860.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3570\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40821655it [1:31:23, 8831.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3571\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40826013it [1:31:24, 8623.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3572\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40844415it [1:31:26, 8444.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3573\n", + "3574\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40859402it [1:31:28, 8247.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3575\n", + "3576\n", + "3577\n", + "3578\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40877332it [1:31:30, 8707.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3579\n", + "3580\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40881692it [1:31:31, 8635.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3581\n", + "3582\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40895719it [1:31:33, 8736.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3583\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40915426it [1:31:35, 8191.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3584\n", + "3585\n", + "3586\n", + "3587\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40920410it [1:31:36, 8071.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3588\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40940919it [1:31:38, 8684.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3589\n", + "3590\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40961165it [1:31:40, 8757.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3591\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40968177it [1:31:41, 8748.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3592\n", + "3593\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40973523it [1:31:42, 8924.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3594\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "40978897it [1:31:42, 8732.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3595\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41022103it [1:31:48, 8729.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3596\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41043892it [1:31:50, 8543.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3597\n", + "3598\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41067135it [1:31:53, 8648.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3599\n", + "3600\n", + "3601\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41070657it [1:31:53, 8705.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3602\n", + "3603\n", + "3604\n", + "3605\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41095176it [1:31:56, 8727.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3606\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41106990it [1:31:57, 8889.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3607\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41132936it [1:32:00, 8931.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3608\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41152439it [1:32:03, 8749.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3609\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41195460it [1:32:08, 7947.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3610\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41198852it [1:32:08, 8310.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3611\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41206140it [1:32:09, 8977.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3612\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41232817it [1:32:12, 8985.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3613\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41240981it [1:32:13, 8817.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3614\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41254280it [1:32:14, 8953.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3615\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41276693it [1:32:17, 8567.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3616\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41312761it [1:32:21, 8729.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3617\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41333877it [1:32:24, 8836.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3618\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41368669it [1:32:28, 8922.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3619\n", + "3620\n", + "3621\n", + "3622\n", + "3623\n", + "3624\n", + "3625\n", + "3626\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41383726it [1:32:29, 8821.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3627\n", + "3628\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41435239it [1:32:35, 8608.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3629\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41455158it [1:32:38, 8304.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3630\n", + "3631\n", + "3632\n", + "3633\n", + "3634\n", + "3635\n", + "3636\n", + "3637\n", + "3638\n", + "3639\n", + "3640\n", + "3641\n", + "3642\n", + "3643\n", + "3644\n", + "3645\n", + "3646\n", + "3647\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41462035it [1:32:38, 8368.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3648\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41480198it [1:32:41, 8485.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3649\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41497637it [1:32:43, 8589.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3650\n", + "3651\n", + "3652\n", + "3653" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41499381it [1:32:43, 8503.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "3654\n", + "3655\n", + "3656\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41512585it [1:32:44, 8772.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3657\n", + "3658\n", + "3659\n", + "3660\n", + "3661\n", + "3662\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41542873it [1:32:48, 8481.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3663\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41546307it [1:32:48, 8422.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3664\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41548913it [1:32:49, 8321.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3665\n", + "3666\n", + "3667\n", + "3668\n", + "3669\n", + "3670\n", + "3671\n", + "3672\n", + "3673\n", + "3674\n", + "3675\n", + "3676\n", + "3677\n", + "3678\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41560208it [1:32:50, 8527.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3679\n", + "3680\n", + "3681\n", + "3682\n", + "3683\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41572420it [1:32:51, 8255.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3684\n", + "3685\n", + "3686\n", + "3687\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41618388it [1:32:57, 8408.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3688\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41638392it [1:32:59, 8502.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3689\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41640948it [1:33:00, 8170.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3690\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41653057it [1:33:01, 8478.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3691\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41672243it [1:33:03, 8630.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3692\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41726315it [1:33:10, 8428.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3693\n", + "3694\n", + "3695\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41728959it [1:33:10, 8582.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3696\n", + "3697\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41751655it [1:33:13, 7865.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3698\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41765511it [1:33:15, 6710.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3699\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41790241it [1:33:17, 8846.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3700\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41796379it [1:33:18, 8651.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3701\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41799849it [1:33:19, 8574.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3702\n", + "3703\n", + "3704\n", + "3705\n", + "3706\n", + "3707\n", + "3708\n", + "3709\n", + "3710\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41840377it [1:33:23, 8795.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3711\n", + "3712\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41859666it [1:33:26, 8170.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3713\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41863152it [1:33:26, 8584.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3714\n", + "3715\n", + "3716\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41870098it [1:33:27, 8558.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3717\n", + "3718\n", + "3719\n", + "3720\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41873620it [1:33:27, 8415.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3721\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41885763it [1:33:29, 8351.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3722\n", + "3723\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41891668it [1:33:29, 8295.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3724\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41927176it [1:33:34, 8359.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3725\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41936642it [1:33:35, 8617.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3726\n", + "3727\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41938362it [1:33:35, 8000.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3728\n", + "3729\n", + "3730\n", + "3731\n", + "3732\n", + "3733\n", + "3734\n", + "3735\n", + "3736\n", + "3737\n", + "3738\n", + "3739\n", + "3740\n", + "3741\n", + "3742\n", + "3743\n", + "3744\n", + "3745\n", + "3746\n", + "3747\n", + "3748\n", + "3749\n", + "3750\n", + "3751\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41940911it [1:33:35, 8165.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3752\n", + "3753\n", + "3754\n", + "3755\n", + "3756\n", + "3757\n", + "3758\n", + "3759\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41943410it [1:33:36, 8278.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3760\n", + "3761\n", + "3762\n", + "3763\n", + "3764\n", + "3765\n", + "3766\n", + "3767\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41945161it [1:33:36, 8494.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3768\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41947733it [1:33:36, 8503.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3769\n", + "3770\n", + "3771\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41954699it [1:33:37, 8535.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3772\n", + "3773\n", + "3774\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41957231it [1:33:37, 8201.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3775\n", + "3776\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41959838it [1:33:38, 8516.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3777\n", + "3778\n", + "3779" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41962464it [1:33:38, 8681.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "3780\n", + "3781\n", + "3782" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41964176it [1:33:38, 8386.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "3783\n", + "3784\n", + "3785\n", + "3786\n", + "3787\n", + "3788\n", + "3789\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41979136it [1:33:40, 8455.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3790\n", + "3791\n", + "3792\n", + "3793\n", + "3794\n", + "3795\n", + "3796\n", + "3797\n", + "3798\n", + "3799\n", + "3800\n", + "3801\n", + "3802\n", + "3803\n", + "3804" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41980839it [1:33:40, 8274.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "3805\n", + "3806\n", + "3807\n", + "3808\n", + "3809\n", + "3810\n", + "3811\n", + "3812\n", + "3813\n", + "3814\n", + "3815\n", + "3816\n", + "3817\n", + "3818\n", + "3819\n", + "3820\n", + "3821\n", + "3822\n", + "3823\n", + "3824\n", + "3825\n", + "3826\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41985985it [1:33:41, 8346.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3827\n", + "3828\n", + "3829\n", + "3830\n", + "3831\n", + "3832\n", + "3833\n", + "3834\n", + "3835\n", + "3836\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "41986822it [1:33:41, 6752.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3837\n", + "3838\n", + "3839\n", + "3840\n", + "3841\n", + "3842\n", + "3843\n", + "3844\n", + "3845\n", + "3846\n", + "3847\n", + "3848\n", + "3849\n", + "3850\n", + "3851\n", + "3852\n", + "3853\n", + "3854\n", + "3855\n", + "3856\n", + "3857\n", + "3858\n", + "3859\n", + "3860\n", + "3861\n", + "3862\n", + "3863\n", + "3864\n", + "3865\n", + "3866\n", + "3867\n", + "3868\n", + "3869\n", + "3870\n", + "3871\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41988337it [1:33:41, 7112.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3872\n", + "3873\n", + "3874\n", + "3875\n", + "3876\n", + "3877\n", + "3878\n", + "3879\n", + "3880\n", + "3881\n", + "3882\n", + "3883\n", + "3884\n", + "3885\n", + "3886\n", + "3887\n", + "3888" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41989909it [1:33:41, 7490.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "3889\n", + "3890\n", + "3891\n", + "3892\n", + "3893\n", + "3894\n", + "3895\n", + "3896\n", + "3897" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41991452it [1:33:41, 7410.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "3898\n", + "3899\n", + "3900\n", + "3901\n", + "3902\n", + "3903\n", + "3904\n", + "3905\n", + "3906\n", + "3907\n", + "3908\n", + "3909\n", + "3910\n", + "3911\n", + "3912\n", + "3913\n", + "3914\n", + "3915\n", + "3916\n", + "3917\n", + "3918\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41992998it [1:33:42, 7519.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3919\n", + "3920\n", + "3921\n", + "3922\n", + "3923\n", + "3924\n", + "3925\n", + "3926\n", + "3927\n", + "3928\n", + "3929\n", + "3930\n", + "3931\n", + "3932\n", + "3933\n", + "3934\n", + "3935\n", + "3936" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41995403it [1:33:42, 7829.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "3937\n", + "3938\n", + "3939\n", + "3940\n", + "3941\n", + "3942\n", + "3943\n", + "3944\n", + "3945\n", + "3946\n", + "3947\n", + "3948\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41996973it [1:33:42, 7768.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3949\n", + "3950\n", + "3951\n", + "3952\n", + "3953\n", + "3954\n", + "3955\n", + "3956\n", + "3957\n", + "3958\n", + "3959\n", + "3960\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "41998568it [1:33:42, 7824.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3961\n", + "3962\n", + "3963\n", + "3964\n", + "3965\n", + "3966\n", + "3967\n", + "3968\n", + "3969\n", + "3970\n", + "3971\n", + "3972\n", + "3973\n", + "3974\n", + "3975\n", + "3976\n", + "3977" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42000988it [1:33:43, 7943.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "3978\n", + "3979\n", + "3980\n", + "3981\n", + "3982\n", + "3983\n", + "3984\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42005209it [1:33:43, 8167.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3985\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42006804it [1:33:43, 7364.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3986\n", + "3987\n", + "3988\n", + "3989\n", + "3990\n", + "3991\n", + "3992\n", + "3993\n", + "3994\n", + "3995\n", + "3996\n", + "3997\n", + "3998\n", + "3999\n", + "4000\n", + "4001\n", + "4002\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42008335it [1:33:44, 7480.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4003\n", + "4004\n", + "4005\n", + "4006\n", + "4007\n", + "4008\n", + "4009\n", + "4010\n", + "4011\n", + "4012\n", + "4013\n", + "4014\n", + "4015\n", + "4016\n", + "4017\n", + "4018\n", + "4019\n", + "4020\n", + "4021\n", + "4022\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42012491it [1:33:44, 8238.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4023\n", + "4024\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42015149it [1:33:44, 8625.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4025\n", + "4026\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42018573it [1:33:45, 8393.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4027\n", + "4028\n", + "4029\n", + "4030\n", + "4031\n", + "4032\n", + "4033\n", + "4034\n", + "4035\n", + "4036\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42020310it [1:33:45, 8544.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4037\n", + "4038\n", + "4039\n", + "4040\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42022859it [1:33:45, 8341.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4041\n", + "4042\n", + "4043\n", + "4044\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42028124it [1:33:46, 8569.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4045\n", + "4046\n", + "4047\n", + "4048\n", + "4049\n", + "4050\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42029876it [1:33:46, 8637.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4051\n", + "4052\n", + "4053\n", + "4054\n", + "4055\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42032456it [1:33:46, 8130.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4056\n", + "4057\n", + "4058\n", + "4059\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42038552it [1:33:47, 8613.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4060\n", + "4061\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42041166it [1:33:47, 8595.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4062\n", + "4063\n", + "4064\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42044678it [1:33:48, 8707.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4065\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42049093it [1:33:48, 8825.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4066\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42066847it [1:33:50, 8656.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4067\n", + "4068\n", + "4069\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42071364it [1:33:51, 8672.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4070\n", + "4071\n", + "4072\n", + "4073\n", + "4074\n", + "4075\n", + "4076\n", + "4077\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42073977it [1:33:51, 8506.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4078\n", + "4079\n", + "4080\n", + "4081\n", + "4082\n", + "4083\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42077570it [1:33:52, 8712.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4084\n", + "4085\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42080142it [1:33:52, 8327.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4086\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42092985it [1:33:53, 8445.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4087\n", + "4088\n", + "4089\n", + "4090\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42095558it [1:33:54, 8534.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4091\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42098127it [1:33:54, 8362.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4092\n", + "4093\n", + "4094\n", + "4095\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42101517it [1:33:54, 7881.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4096\n", + "4097\n", + "4098\n", + "4099\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42104934it [1:33:55, 8344.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4100\n", + "4101\n", + "4102\n", + "4103\n", + "4104\n", + "4105\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42110915it [1:33:56, 8359.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4106\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42115306it [1:33:56, 8591.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4107\n", + "4108\n", + "4109\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42117874it [1:33:56, 8392.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4110\n", + "4111\n", + "4112\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42119538it [1:33:57, 8081.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4113\n", + "4114\n", + "4115\n", + "4116\n", + "4117\n", + "4118\n", + "4119\n", + "4120\n", + "4121\n", + "4122\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42121110it [1:33:57, 7036.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4123\n", + "4124\n", + "4125\n", + "4126\n", + "4127\n", + "4128\n", + "4129\n", + "4130\n", + "4131\n", + "4132\n", + "4133\n", + "4134\n", + "4135\n", + "4136\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42123196it [1:33:57, 6628.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4137\n", + "4138\n", + "4139\n", + "4140\n", + "4141\n", + "4142\n", + "4143\n", + "4144\n", + "4145\n", + "4146\n", + "4147\n", + "4148\n", + "4149\n", + "4150\n", + "4151\n", + "4152\n", + "4153\n", + "4154\n", + "4155\n", + "4156\n", + "4157\n", + "4158\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42124769it [1:33:57, 7278.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4159\n", + "4160\n", + "4161\n", + "4162\n", + "4163\n", + "4164\n", + "4165\n", + "4166\n", + "4167\n", + "4168\n", + "4169\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "42125505it [1:33:58, 6557.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4170\n", + "4171\n", + "4172\n", + "4173\n", + "4174\n", + "4175\n", + "4176\n", + "4177\n", + "4178\n", + "4179\n", + "4180\n", + "4181\n", + "4182\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42130302it [1:33:58, 7479.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4183\n", + "4184\n", + "4185\n", + "4186\n", + "4187\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42132355it [1:33:59, 5819.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4188\n", + "4189\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42133653it [1:33:59, 6121.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4190\n", + "4191\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42136405it [1:34:00, 5017.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4192\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42142622it [1:34:00, 7663.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4193\n", + "4194\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42165997it [1:34:03, 8716.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4195\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42170423it [1:34:04, 8754.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4196\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42182590it [1:34:05, 8536.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4197\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42195551it [1:34:07, 8423.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4198\n", + "4199\n", + "4200\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42258738it [1:34:14, 8537.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4201\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42280432it [1:34:17, 8530.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4202\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42313887it [1:34:21, 8761.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4203\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42342545it [1:34:25, 8308.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4204\n", + "4205\n", + "4206\n", + "4207\n", + "4208\n", + "4209\n", + "4210\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42344999it [1:34:25, 8027.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4211\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42376398it [1:34:29, 7982.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4212\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42393481it [1:34:31, 8706.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4213\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42397807it [1:34:31, 8487.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4214\n", + "4215\n", + "4216\n", + "4217\n", + "4218\n", + "4219\n", + "4220\n", + "4221\n", + "4222\n", + "4223\n", + "4224\n", + "4225\n", + "4226\n", + "4227\n", + "4228\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42404695it [1:34:32, 8196.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4229\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42407315it [1:34:33, 8487.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4230\n", + "4231\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42408968it [1:34:33, 6396.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4232\n", + "4233\n", + "4234\n", + "4235\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42412074it [1:34:33, 7346.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4236\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42413661it [1:34:33, 7552.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4237\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42416865it [1:34:34, 7548.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4238\n", + "4239\n", + "4240\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42422801it [1:34:35, 8422.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4241\n", + "4242\n", + "4243\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42431398it [1:34:36, 8452.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4244\n", + "4245\n", + "4246\n", + "4247\n", + "4248\n", + "4249\n", + "4250\n", + "4251\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42433941it [1:34:36, 7841.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4252\n", + "4253\n", + "4254\n", + "4255\n", + "4256\n", + "4257\n", + "4258\n", + "4259\n", + "4260\n", + "4261\n", + "4262\n", + "4263\n", + "4264\n", + "4265\n", + "4266\n", + "4267\n", + "4268\n", + "4269\n", + "4270\n", + "4271\n", + "4272\n", + "4273" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42435600it [1:34:36, 7998.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "4274\n", + "4275\n", + "4276\n", + "4277\n", + "4278\n", + "4279\n", + "4280\n", + "4281\n", + "4282\n", + "4283\n", + "4284\n", + "4285\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42437210it [1:34:36, 7886.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4286\n", + "4287\n", + "4288\n", + "4289\n", + "4290\n", + "4291\n", + "4292\n", + "4293\n", + "4294\n", + "4295\n", + "4296\n", + "4297\n", + "4298\n", + "4299\n", + "4300\n", + "4301\n", + "4302\n", + "4303\n", + "4304\n", + "4305\n", + "4306\n", + "4307\n", + "4308\n", + "4309\n", + "4310\n", + "4311\n", + "4312\n", + "4313\n", + "4314\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42439608it [1:34:37, 7722.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4315\n", + "4316\n", + "4317\n", + "4318\n", + "4319\n", + "4320\n", + "4321\n", + "4322\n", + "4323\n", + "4324\n", + "4325\n", + "4326\n", + "4327\n", + "4328\n", + "4329\n", + "4330\n", + "4331\n", + "4332\n", + "4333\n", + "4334\n", + "4335\n", + "4336\n", + "4337\n", + "4338\n", + "4339\n", + "4340\n", + "4341\n", + "4342\n", + "4343\n", + "4344\n", + "4345" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42441155it [1:34:37, 7669.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "4346\n", + "4347\n", + "4348\n", + "4349\n", + "4350\n", + "4351\n", + "4352\n", + "4353\n", + "4354\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42442698it [1:34:37, 7654.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4355\n", + "4356\n", + "4357\n", + "4358\n", + "4359\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42445887it [1:34:38, 7882.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4360\n", + "4361\n", + "4362\n", + "4363\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42452275it [1:34:38, 7633.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4364\n", + "4365\n", + "4366\n", + "4367\n", + "4368\n", + "4369\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42455616it [1:34:39, 8163.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4370\n", + "4371\n", + "4372\n", + "4373\n", + "4374\n", + "4375\n", + "4376\n", + "4377\n", + "4378\n", + "4379\n", + "4380\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42457245it [1:34:39, 7999.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4381\n", + "4382\n", + "4383\n", + "4384\n", + "4385\n", + "4386\n", + "4387\n", + "4388\n", + "4389\n", + "4390\n", + "4391\n", + "4392\n", + "4393\n", + "4394\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42458819it [1:34:39, 6940.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4395\n", + "4396\n", + "4397\n", + "4398\n", + "4399\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42461257it [1:34:40, 7732.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4400\n", + "4401\n", + "4402\n", + "4403\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42463651it [1:34:40, 7892.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4404\n", + "4405\n", + "4406\n", + "4407\n", + "4408\n", + "4409\n", + "4410\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42465354it [1:34:40, 8202.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4411\n", + "4412\n", + "4413\n", + "4414\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42467850it [1:34:40, 8039.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4415\n", + "4416\n", + "4417\n", + "4418\n", + "4419\n", + "4420\n", + "4421\n", + "4422\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42470466it [1:34:41, 8523.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4423\n", + "4424\n", + "4425\n", + "4426\n", + "4427\n", + "4428\n", + "4429\n", + "4430\n", + "4431\n", + "4432\n", + "4433\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42472185it [1:34:41, 8507.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4434\n", + "4435\n", + "4436\n", + "4437\n", + "4438\n", + "4439\n", + "4440\n", + "4441\n", + "4442\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42475697it [1:34:41, 8394.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4443\n", + "4444\n", + "4445\n", + "4446\n", + "4447\n", + "4448\n", + "4449\n", + "4450\n", + "4451\n", + "4452\n", + "4453\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42478310it [1:34:42, 8590.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4454\n", + "4455\n", + "4456\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42480790it [1:34:42, 7602.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4457\n", + "4458\n", + "4459\n", + "4460\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42500623it [1:34:44, 8167.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4461\n", + "4462\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42504002it [1:34:45, 8376.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4463\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42506543it [1:34:45, 8349.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4464\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42509098it [1:34:45, 8369.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4465\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42511648it [1:34:46, 8286.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4466\n", + "4467\n", + "4468\n", + "4469\n", + "4470\n", + "4471\n", + "4472\n", + "4473\n", + "4474\n", + "4475\n", + "4476\n", + "4477\n", + "4478\n", + "4479\n", + "4480\n", + "4481\n", + "4482\n", + "4483\n", + "4484\n", + "4485\n", + "4486\n", + "4487\n", + "4488\n", + "4489" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42513296it [1:34:46, 7885.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "4490\n", + "4491\n", + "4492\n", + "4493\n", + "4494\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42525380it [1:34:47, 8520.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4495\n", + "4496\n", + "4497\n", + "4498\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42527072it [1:34:47, 8337.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4499\n", + "4500\n", + "4501\n", + "4502\n", + "4503\n", + "4504\n", + "4505" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42529658it [1:34:48, 8560.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42531415it [1:34:48, 8599.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4506\n", + "4507\n", + "4508\n", + "4509\n", + "4510\n", + "4511\n", + "4512\n", + "4513\n", + "4514\n", + "4515\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42533976it [1:34:48, 8377.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4516\n", + "4517\n", + "4518\n", + "4519\n", + "4520\n", + "4521\n", + "4522\n", + "4523\n", + "4524\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42535637it [1:34:48, 7838.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4525\n", + "4526\n", + "4527\n", + "4528\n", + "4529\n", + "4530\n", + "4531\n", + "4532\n", + "4533\n", + "4534\n", + "4535\n", + "4536\n", + "4537\n", + "4538\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42537259it [1:34:49, 7794.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4539\n", + "4540\n", + "4541\n", + "4542\n", + "4543\n", + "4544\n", + "4545\n", + "4546\n", + "4547\n", + "4548\n", + "4549\n", + "4550\n", + "4551" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42538884it [1:34:49, 7947.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "4552\n", + "4553\n", + "4554\n", + "4555\n", + "4556\n", + "4557\n", + "4558\n", + "4559\n", + "4560\n", + "4561\n", + "4562\n", + "4563\n", + "4564\n", + "4565\n", + "4566\n", + "4567\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42540505it [1:34:49, 7817.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4568\n", + "4569\n", + "4570\n", + "4571\n", + "4572\n", + "4573\n", + "4574\n", + "4575\n", + "4576\n", + "4577\n", + "4578\n", + "4579\n", + "4580\n", + "4581\n", + "4582\n", + "4583\n", + "4584\n", + "4585\n", + "4586\n", + "4587\n", + "4588\n", + "4589\n", + "4590\n", + "4591\n", + "4592\n", + "4593\n", + "4594\n", + "4595\n", + "4596\n", + "4597\n", + "4598\n", + "4599\n", + "4600\n", + "4601\n", + "4602\n", + "4603\n", + "4604\n", + "4605\n", + "4606\n", + "4607\n", + "4608\n", + "4609\n", + "4610\n", + "4611\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42551158it [1:34:50, 8697.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4612\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42562866it [1:34:52, 8667.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4613\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42567243it [1:34:52, 8581.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4614\n", + "4615\n", + "4616\n", + "4617\n", + "4618\n", + "4619\n", + "4620\n", + "4621\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42569768it [1:34:52, 8230.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4622\n", + "4623\n", + "4624\n", + "4625\n", + "4626\n", + "4627\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42572337it [1:34:53, 8391.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4628\n", + "4629\n", + "4630\n", + "4631\n", + "4632\n", + "4633\n", + "4634\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42574056it [1:34:53, 8446.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4635\n", + "4636\n", + "4637\n", + "4638\n", + "4639\n", + "4640\n", + "4641\n", + "4642\n", + "4643\n", + "4644\n", + "4645\n", + "4646\n", + "4647\n", + "4648\n", + "4649\n", + "4650\n", + "4651\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42575739it [1:34:53, 7992.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4652\n", + "4653\n", + "4654\n", + "4655\n", + "4656\n", + "4657\n", + "4658\n", + "4659\n", + "4660\n", + "4661\n", + "4662\n", + "4663\n", + "4664\n", + "4665\n", + "4666\n", + "4667\n", + "4668\n", + "4669\n", + "4670\n", + "4671\n", + "4672\n", + "4673\n", + "4674\n", + "4675\n", + "4676\n", + "4677\n", + "4678\n", + "4679\n", + "4680\n", + "4681\n", + "4682\n", + "4683\n", + "4684\n", + "4685\n", + "4686\n", + "4687\n", + "4688\n", + "4689\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42577336it [1:34:53, 7748.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4690\n", + "4691\n", + "4692\n", + "4693\n", + "4694\n", + "4695\n", + "4696\n", + "4697\n", + "4698\n", + "4699\n", + "4700\n", + "4701\n", + "4702\n", + "4703\n", + "4704\n", + "4705\n", + "4706\n", + "4707\n", + "4708\n", + "4709\n", + "4710\n", + "4711\n", + "4712\n", + "4713\n", + "4714\n", + "4715\n", + "4716\n", + "4717\n", + "4718\n", + "4719\n", + "4720\n", + "4721" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42578857it [1:34:54, 7354.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "4722\n", + "4723\n", + "4724\n", + "4725\n", + "4726\n", + "4727\n", + "4728\n", + "4729\n", + "4730\n", + "4731\n", + "4732\n", + "4733\n", + "4734\n", + "4735\n", + "4736\n", + "4737\n", + "4738\n", + "4739\n", + "4740\n", + "4741\n", + "4742\n", + "4743\n", + "4744\n", + "4745\n", + "4746\n", + "4747\n", + "4748\n", + "4749\n", + "4750\n", + "4751\n", + "4752\n", + "4753\n", + "4754" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42581075it [1:34:54, 7359.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "4755\n", + "4756\n", + "4757\n", + "4758\n", + "4759\n", + "4760\n", + "4761\n", + "4762\n", + "4763\n", + "4764\n", + "4765\n", + "4766\n", + "4767\n", + "4768\n", + "4769\n", + "4770\n", + "4771\n", + "4772\n", + "4773\n", + "4774\n", + "4775\n", + "4776\n", + "4777\n", + "4778\n", + "4779\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42582683it [1:34:54, 7701.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4780\n", + "4781\n", + "4782\n", + "4783\n", + "4784\n", + "4785\n", + "4786\n", + "4787\n", + "4788\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42586950it [1:34:55, 8397.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4789\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42592986it [1:34:55, 8421.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4790\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42596479it [1:34:56, 8626.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4791\n", + "4792\n", + "4793\n", + "4794\n", + "4795\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42599066it [1:34:56, 8546.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4796\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42606747it [1:34:57, 8253.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4797\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42616264it [1:34:58, 8187.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4798\n", + "4799\n", + "4800\n", + "4801\n", + "4802\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42626595it [1:34:59, 8623.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4803\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42640628it [1:35:01, 8685.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4804\n", + "4805\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42650337it [1:35:02, 8521.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4806\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42661475it [1:35:03, 8247.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4807\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42683386it [1:35:06, 8891.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4808\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42713328it [1:35:09, 8781.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4809\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42784175it [1:35:18, 8871.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4810\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42801693it [1:35:20, 8608.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4811\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42822108it [1:35:22, 8897.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4812\n", + "4813\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42844322it [1:35:24, 8772.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4814\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42847909it [1:35:25, 8786.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4815\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42889842it [1:35:30, 8677.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4816\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42914169it [1:35:33, 8718.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4817\n", + "4818\n", + "4819\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42920137it [1:35:33, 7529.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4820\n", + "4821\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42935615it [1:35:35, 8357.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4822\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42940964it [1:35:36, 8921.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4823\n", + "4824\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42942736it [1:35:36, 8722.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4825\n", + "4826\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42953542it [1:35:37, 8075.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4827\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42956146it [1:35:38, 8348.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4828\n", + "4829\n", + "4830\n", + "4831" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42958726it [1:35:38, 8341.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "4832\n", + "4833\n", + "4834\n", + "4835\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42962180it [1:35:39, 8572.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4836\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42963873it [1:35:39, 7979.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4837\n", + "4838\n", + "4839\n", + "4840\n", + "4841\n", + "4842\n", + "4843\n", + "4844\n", + "4845\n", + "4846\n", + "4847\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42968967it [1:35:39, 7994.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4848\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42972081it [1:35:40, 7403.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4849\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42974281it [1:35:40, 7265.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4850\n", + "4851\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42977885it [1:35:41, 6675.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4852\n", + "4853\n", + "4854\n", + "4855\n", + "4856\n", + "4857\n", + "4858\n", + "4859\n", + "4860\n", + "4861\n", + "4862\n", + "4863\n", + "4864\n", + "4865\n", + "4866\n", + "4867\n", + "4868\n", + "4869\n", + "4870\n", + "4871\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42979279it [1:35:41, 5851.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4872\n", + "4873\n", + "4874\n", + "4875\n", + "4876\n", + "4877\n", + "4878\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42980981it [1:35:41, 7099.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4879\n", + "4880\n", + "4881\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42985975it [1:35:42, 7056.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4882\n", + "4883\n", + "4884\n", + "4885\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42987562it [1:35:42, 5754.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4886\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42991049it [1:35:43, 6215.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4887\n", + "4888\n", + "4889\n", + "4890\n", + "4891\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42992498it [1:35:43, 6661.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4892\n", + "4893\n", + "4894\n", + "4895\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "42994620it [1:35:43, 6873.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4896\n", + "4897\n", + "4898\n", + "4899\n", + "4900\n", + "4901\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43004969it [1:35:45, 8942.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4902\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43010355it [1:35:45, 8878.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4903\n", + "4904\n", + "4905\n", + "4906\n", + "4907\n", + "4908\n", + "4909\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43015689it [1:35:46, 8435.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4910\n", + "4911\n", + "4912\n", + "4913\n", + "4914\n", + "4915\n", + "4916\n", + "4917\n", + "4918\n", + "4919\n", + "4920\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43017437it [1:35:46, 8523.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4921\n", + "4922\n", + "4923\n", + "4924\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43021084it [1:35:46, 8676.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4925\n", + "4926\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43029967it [1:35:47, 8279.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4927\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43035021it [1:35:48, 7913.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4928\n", + "4929\n", + "4930\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43039173it [1:35:49, 8075.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4931\n", + "4932\n", + "4933\n", + "4934\n", + "4935\n", + "4936\n", + "4937\n", + "4938\n", + "4939\n", + "4940\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43042518it [1:35:49, 8186.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4941\n", + "4942\n", + "4943\n", + "4944\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43046478it [1:35:49, 7606.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4945\n", + "4946\n", + "4947\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43049045it [1:35:50, 8221.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4948\n", + "4949" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43050742it [1:35:50, 8330.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "4950\n", + "4951\n", + "4952\n", + "4953\n", + "4954\n", + "4955\n", + "4956\n", + "4957\n", + "4958\n", + "4959\n", + "4960\n", + "4961\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43054129it [1:35:50, 8414.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4962\n", + "4963\n", + "4964\n", + "4965\n", + "4966\n", + "4967\n", + "4968\n", + "4969\n", + "4970\n", + "4971\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43056668it [1:35:51, 8443.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4972\n", + "4973\n", + "4974\n", + "4975\n", + "4976\n", + "4977\n", + "4978\n", + "4979\n", + "4980\n", + "4981\n", + "4982\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43058395it [1:35:51, 8297.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4983\n", + "4984\n", + "4985\n", + "4986\n", + "4987\n", + "4988\n", + "4989\n", + "4990\n", + "4991\n", + "4992\n", + "4993\n", + "4994\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43063611it [1:35:52, 8660.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4995\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43068068it [1:35:52, 8766.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4996\n", + "4997\n", + "4998\n", + "4999\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43071582it [1:35:52, 8641.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5000\n", + "5001\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43075974it [1:35:53, 8676.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5002\n", + "5003\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43078517it [1:35:53, 7505.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5004\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43082792it [1:35:54, 8207.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5005\n", + "5006\n", + "5007\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43084421it [1:35:54, 7963.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5008\n", + "5009\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43086135it [1:35:54, 8284.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5010\n", + "5011\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43089044it [1:35:55, 6228.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5012\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43092665it [1:35:55, 6937.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5013\n", + "5014\n", + "5015\n", + "5016\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43096724it [1:35:56, 7886.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5017\n", + "5018\n", + "5019\n", + "5020\n", + "5021\n", + "5022\n", + "5023\n", + "5024\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43099189it [1:35:56, 7953.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5025\n", + "5026\n", + "5027\n", + "5028\n", + "5029\n", + "5030\n", + "5031\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43101716it [1:35:56, 8185.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5032\n", + "5033\n", + "5034\n", + "5035\n", + "5036\n", + "5037\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43103352it [1:35:57, 7823.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5038\n", + "5039\n", + "5040\n", + "5041\n", + "5042\n", + "5043\n", + "5044\n", + "5045\n", + "5046\n", + "5047\n", + "5048\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43105683it [1:35:57, 7570.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5049\n", + "5050\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43107373it [1:35:57, 8010.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5051\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43113239it [1:35:58, 8182.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5052\n", + "5053\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43115706it [1:35:58, 7568.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5054\n", + "5055\n", + "5056\n", + "5057\n", + "5058\n", + "5059\n", + "5060\n", + "5061\n", + "5062\n", + "5063\n", + "5064\n", + "5065\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43117958it [1:35:58, 7207.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5066\n", + "5067\n", + "5068\n", + "5069\n", + "5070\n", + "5071\n", + "5072\n", + "5073\n", + "5074\n", + "5075\n", + "5076\n", + "5077\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43120077it [1:35:59, 6526.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5078\n", + "5079\n", + "5080\n", + "5081\n", + "5082\n", + "5083\n", + "5084\n", + "5085\n", + "5086\n", + "5087\n", + "5088\n", + "5089\n", + "5090\n", + "5091\n", + "5092\n", + "5093\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43122298it [1:35:59, 7115.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5094\n", + "5095\n", + "5096\n", + "5097\n", + "5098\n", + "5099\n", + "5100\n", + "5101\n", + "5102\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43126349it [1:36:00, 8101.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5103\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43131996it [1:36:00, 7975.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5104\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43139385it [1:36:01, 8008.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5105\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43142546it [1:36:02, 7714.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5106\n", + "5107\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43150649it [1:36:03, 8039.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5108\n", + "5109\n", + "5110\n", + "5111\n", + "5112\n", + "5113\n", + "5114\n", + "5115\n", + "5116\n", + "5117\n", + "5118\n", + "5119\n", + "5120\n", + "5121\n", + "5122\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43153021it [1:36:03, 7570.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5123\n", + "5124\n", + "5125\n", + "5126\n", + "5127\n", + "5128\n", + "5129\n", + "5130\n", + "5131\n", + "5132\n", + "5133\n", + "5134\n", + "5135\n", + "5136\n", + "5137\n", + "5138\n", + "5139\n", + "5140\n", + "5141\n", + "5142\n", + "5143\n", + "5144\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43154584it [1:36:03, 7478.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5145\n", + "5146\n", + "5147\n", + "5148\n", + "5149\n", + "5150\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43159677it [1:36:04, 7844.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5151\n", + "5152\n", + "5153\n", + "5154\n", + "5155\n", + "5156\n", + "5157\n", + "5158\n", + "5159\n", + "5160\n", + "5161\n", + "5162\n", + "5163\n", + "5164\n", + "5165\n", + "5166\n", + "5167\n", + "5168\n", + "5169\n", + "5170\n", + "5171\n", + "5172\n", + "5173\n", + "5174\n", + "5175\n", + "5176\n", + "5177\n", + "5178\n", + "5179\n", + "5180\n", + "5181\n", + "5182\n", + "5183\n", + "5184\n", + "5185\n", + "5186\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43163076it [1:36:04, 8003.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5187\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43167160it [1:36:05, 8019.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5188\n", + "5189\n", + "5190\n", + "5191\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43170518it [1:36:05, 8313.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5192\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43183482it [1:36:07, 8592.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5193\n", + "5194\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43189581it [1:36:07, 8558.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5195\n", + "5196\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43193029it [1:36:08, 8415.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5197\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43195654it [1:36:08, 8473.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5198\n", + "5199\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43207909it [1:36:10, 8700.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5200\n", + "5201\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43226365it [1:36:12, 8841.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5202\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43234294it [1:36:13, 8450.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5203\n", + "5204\n", + "5205\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43237647it [1:36:13, 8185.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5206\n", + "5207\n", + "5208\n", + "5209\n", + "5210\n", + "5211\n", + "5212\n", + "5213\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43240969it [1:36:13, 8156.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5214\n", + "5215\n", + "5216\n", + "5217\n", + "5218\n", + "5219\n", + "5220\n", + "5221\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43242628it [1:36:14, 8187.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5222\n", + "5223\n", + "5224\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43245144it [1:36:14, 8143.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5225\n", + "5226\n", + "5227\n", + "5228\n", + "5229\n", + "5230\n", + "5231\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43248560it [1:36:14, 8391.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5232\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43252837it [1:36:15, 8510.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5233\n", + "5234\n", + "5235\n", + "5236\n", + "5237\n", + "5238\n", + "5239\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43254519it [1:36:15, 7933.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5240\n", + "5241\n", + "5242\n", + "5243\n", + "5244\n", + "5245\n", + "5246\n", + "5247\n", + "5248\n", + "5249\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43256134it [1:36:15, 7929.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5250\n", + "5251\n", + "5252\n", + "5253\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43259519it [1:36:16, 8417.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5254\n", + "5255\n", + "5256\n", + "5257\n", + "5258\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43261235it [1:36:16, 8388.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5259\n", + "5260\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43265477it [1:36:16, 8343.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5261\n", + "5262\n", + "5263\n", + "5264\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43268897it [1:36:17, 8462.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5265\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43271405it [1:36:17, 8199.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5266\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43273039it [1:36:17, 7920.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5267\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43281199it [1:36:18, 8331.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5268\n", + "5269\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43283749it [1:36:19, 8301.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5270\n", + "5271\n", + "5272\n", + "5273\n", + "5274\n", + "5275\n", + "5276\n", + "5277\n", + "5278\n", + "5279\n", + "5280\n", + "5281\n", + "5282\n", + "5283\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43289511it [1:36:19, 7629.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5284\n", + "5285\n", + "5286\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43293557it [1:36:20, 7746.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5287\n", + "5288\n", + "5289\n", + "5290\n", + "5291\n", + "5292\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43295166it [1:36:20, 7904.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5293\n", + "5294\n", + "5295\n", + "5296\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43297627it [1:36:21, 7963.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5297\n", + "5298\n", + "5299\n", + "5300\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43302778it [1:36:21, 8180.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5301\n", + "5302\n", + "5303\n", + "5304\n", + "5305\n", + "5306\n", + "5307\n", + "5308\n", + "5309\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43310404it [1:36:22, 8376.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5310\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43463688it [1:36:41, 8383.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5311\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43488534it [1:36:44, 7982.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5312\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43491881it [1:36:44, 8348.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5313\n", + "5314\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43509169it [1:36:46, 8231.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5315\n", + "5316\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43510815it [1:36:46, 8033.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5317\n", + "5318\n", + "5319\n", + "5320\n", + "5321\n", + "5322\n", + "5323\n", + "5324\n", + "5325\n", + "5326\n", + "5327\n", + "5328\n", + "5329\n", + "5330\n", + "5331\n", + "5332\n", + "5333\n", + "5334\n", + "5335\n", + "5336\n", + "5337\n", + "5338\n", + "5339\n", + "5340\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43513224it [1:36:47, 7997.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5341\n", + "5342\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43573815it [1:36:54, 7749.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5343\n", + "5344\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43583201it [1:36:55, 8293.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5345\n", + "5346\n", + "5347\n", + "5348\n", + "5349\n", + "5350\n", + "5351\n", + "5352\n", + "5353\n", + "5354\n", + "5355\n", + "5356\n", + "5357\n", + "5358\n", + "5359\n", + "5360\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43614264it [1:36:59, 7181.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5361\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43626390it [1:37:01, 8317.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5362\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43640128it [1:37:02, 8484.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5363\n", + "5364\n", + "5365\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43643564it [1:37:03, 8555.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5366\n", + "5367\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43683749it [1:37:08, 8414.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5368\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43687927it [1:37:08, 8309.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5369\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43702619it [1:37:10, 8610.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5370\n", + "5371\n", + "5372\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43706864it [1:37:11, 8437.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5373\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43725311it [1:37:13, 8491.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5374\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43729588it [1:37:13, 8366.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5375\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43735483it [1:37:14, 8304.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5376\n", + "5377\n", + "5378\n", + "5379\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43741535it [1:37:15, 8565.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5380\n", + "5381\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43766649it [1:37:18, 7867.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5382\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43779852it [1:37:20, 7935.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5383\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43785065it [1:37:20, 8554.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5384\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43798052it [1:37:22, 8621.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5385\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43818693it [1:37:24, 8232.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5386\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43881607it [1:37:32, 8375.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5387\n", + "5388\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43917871it [1:37:36, 8495.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5389\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43919567it [1:37:37, 7955.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5390\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43947622it [1:37:40, 8231.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5391\n", + "5392\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "43954522it [1:37:41, 8600.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5393\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44032195it [1:37:50, 8479.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5394\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44045179it [1:37:52, 8679.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5395\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44063427it [1:37:54, 8398.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5396\n", + "5397\n", + "5398\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44066841it [1:37:54, 8466.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5399\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44073404it [1:37:55, 7948.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5400\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44076782it [1:37:56, 8303.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5401\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44085111it [1:37:57, 8061.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5402\n", + "5403\n", + "5404\n", + "5405\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44091643it [1:37:57, 8089.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5406\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44103628it [1:37:59, 8238.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5407\n", + "5408\n", + "5409\n", + "5410\n", + "5411\n", + "5412\n", + "5413\n", + "5414\n", + "5415\n", + "5416\n", + "5417\n", + "5418\n", + "5419\n", + "5420\n", + "5421\n", + "5422\n", + "5423\n", + "5424\n", + "5425\n", + "5426\n", + "5427\n", + "5428\n", + "5429\n", + "5430\n", + "5431\n", + "5432\n", + "5433\n", + "5434\n", + "5435\n", + "5436\n", + "5437\n", + "5438\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44107094it [1:37:59, 8582.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5439\n", + "5440\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44127022it [1:38:02, 8522.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5441\n", + "5442\n", + "5443\n", + "5444\n", + "5445\n", + "5446\n", + "5447\n", + "5448\n", + "5449\n", + "5450\n", + "5451\n", + "5452\n", + "5453\n", + "5454\n", + "5455\n", + "5456\n", + "5457\n", + "5458\n", + "5459\n", + "5460\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44135057it [1:38:03, 8668.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5461\n", + "5462\n", + "5463\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44160235it [1:38:05, 8600.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5464\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44166273it [1:38:06, 8505.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5465\n", + "5466\n", + "5467\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44171458it [1:38:07, 8538.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5468\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44179250it [1:38:08, 8700.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5469\n", + "5470\n", + "5471\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44199809it [1:38:10, 8860.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5472\n", + "5473\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44210444it [1:38:11, 8169.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5474\n", + "5475\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44215219it [1:38:12, 7766.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5476\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44218566it [1:38:12, 8154.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5477\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44239003it [1:38:15, 7718.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5478\n", + "5479\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44247353it [1:38:16, 8389.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5480\n", + "5481\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44249869it [1:38:16, 8307.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5482\n", + "5483\n", + "5484\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44253380it [1:38:17, 8594.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5485\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44257845it [1:38:17, 8833.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5486\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44271163it [1:38:19, 8725.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5487\n", + "5488\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44281135it [1:38:20, 8987.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5489\n", + "5490\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44313358it [1:38:23, 8588.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5491\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44316869it [1:38:24, 8602.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5492\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44326605it [1:38:25, 7780.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5493\n", + "5494\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44333899it [1:38:26, 8250.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5495\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44354292it [1:38:28, 8599.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5496\n", + "5497\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44357732it [1:38:29, 8570.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5498\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44362112it [1:38:29, 8658.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5499\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44384665it [1:38:32, 8752.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5500\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44387302it [1:38:32, 8615.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5501\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44394351it [1:38:33, 8606.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5502\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44424136it [1:38:37, 7836.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5503\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44435478it [1:38:38, 8648.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5504\n", + "5505\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44446955it [1:38:39, 8543.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5506\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44453105it [1:38:40, 8717.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5507\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44478034it [1:38:43, 8666.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5508\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44520050it [1:38:48, 8565.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5509\n", + "5510\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44533880it [1:38:50, 8336.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5511\n", + "5512\n", + "5513\n", + "5514\n", + "5515\n", + "5516\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44536568it [1:38:50, 8596.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5517\n", + "5518\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44585001it [1:38:56, 8436.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5519\n", + "5520\n", + "5521\n", + "5522\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44610933it [1:38:59, 8881.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5523\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44633928it [1:39:02, 8741.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5524\n", + "5525\n", + "5526\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44643827it [1:39:03, 8991.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5527\n", + "5528\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44649228it [1:39:03, 8973.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5529\n", + "5530\n", + "5531\n", + "5532\n", + "5533\n", + "5534\n", + "5535\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44661558it [1:39:05, 8602.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5536\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44693789it [1:39:09, 8767.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5537\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44702498it [1:39:10, 8643.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5538\n", + "5539\n", + "5540\n", + "5541\n", + "5542\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44705128it [1:39:10, 8644.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5543\n", + "5544\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44707739it [1:39:10, 8530.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5545\n", + "5546\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44711154it [1:39:11, 8473.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5547\n", + "5548\n", + "5549\n", + "5550\n", + "5551\n", + "5552\n", + "5553\n", + "5554\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44715501it [1:39:11, 8494.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5555\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44720801it [1:39:12, 8799.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5556\n", + "5557" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44732352it [1:39:13, 8683.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "5558\n", + "5559\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44734123it [1:39:13, 8534.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5560\n", + "5561\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44742030it [1:39:14, 8686.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5562\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44754236it [1:39:16, 8642.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5563\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44762788it [1:39:17, 8422.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5564\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44764500it [1:39:17, 8496.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5565\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44770392it [1:39:18, 8410.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5566\n", + "5567\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44774682it [1:39:18, 8238.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5568\n", + "5569\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44787122it [1:39:19, 8800.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5570\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44807629it [1:39:22, 8781.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5571\n", + "5572\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44813885it [1:39:23, 8730.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5573\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44817612it [1:39:23, 9182.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5574\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44829423it [1:39:24, 8787.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5575\n", + "5576\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44843790it [1:39:26, 8929.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5577\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44856274it [1:39:27, 9014.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5578\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44860761it [1:39:28, 8868.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5579\n", + "5580\n", + "5581\n", + "5582\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44863414it [1:39:28, 8661.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5583\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44874052it [1:39:29, 8671.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5584\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44877593it [1:39:30, 8734.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5585\n", + "5586\n", + "5587\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44881973it [1:39:30, 8272.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5588\n", + "5589\n", + "5590\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44895068it [1:39:32, 8691.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5591\n", + "5592\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44902175it [1:39:33, 8839.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5593\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44907464it [1:39:33, 8534.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5594\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44912594it [1:39:34, 8108.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5595\n", + "5596\n", + "5597\n", + "5598\n", + "5599\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44916840it [1:39:34, 7881.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5600\n", + "5601\n", + "5602\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44921259it [1:39:35, 8675.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5603\n", + "5604\n", + "5605\n", + "5606\n", + "5607\n", + "5608\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44923881it [1:39:35, 8692.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5609\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44937195it [1:39:37, 8522.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5610\n", + "5611\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44942637it [1:39:37, 8788.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5612\n", + "5613\n", + "5614\n", + "5615\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44950784it [1:39:38, 9018.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5616\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44983603it [1:39:42, 8530.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5617\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "44990898it [1:39:43, 8915.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5618\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45004034it [1:39:44, 8730.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5619\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45006652it [1:39:45, 8663.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5620\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45025471it [1:39:47, 8734.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5621\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45033428it [1:39:48, 8666.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5622\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45038712it [1:39:48, 8396.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5623\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45044764it [1:39:49, 8382.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5624\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45055099it [1:39:50, 8284.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5625\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45061195it [1:39:51, 8532.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5626\n", + "5627\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45063900it [1:39:51, 8841.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5628\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45069067it [1:39:52, 8415.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5629\n", + "5630\n", + "5631\n", + "5632\n", + "5633\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45075890it [1:39:53, 8433.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5634\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45082952it [1:39:54, 8787.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5635\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45111410it [1:39:57, 7107.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5636\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45123646it [1:39:59, 7962.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5637\n", + "5638\n", + "5639\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45134320it [1:40:00, 8090.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5640\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45167600it [1:40:04, 8739.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5641\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45184450it [1:40:06, 8719.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5642\n", + "5643\n", + "5644\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45187134it [1:40:06, 8778.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5645\n", + "5646\n", + "5647\n", + "5648\n", + "5649\n", + "5650\n", + "5651\n", + "5652\n", + "5653\n", + "5654\n", + "5655" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45189780it [1:40:07, 8784.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "5656\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45204792it [1:40:08, 8769.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5657\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45235233it [1:40:12, 8732.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5658\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45242440it [1:40:13, 8978.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5659\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45245121it [1:40:13, 8798.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5660\n", + "5661\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45253936it [1:40:14, 8602.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5662\n", + "5663\n", + "5664\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45263724it [1:40:15, 8844.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5665\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45275209it [1:40:16, 8517.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5666\n", + "5667\n", + "5668\n", + "5669\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45281373it [1:40:17, 8468.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5670\n", + "5671\n", + "5672\n", + "5673\n", + "5674\n", + "5675\n", + "5676\n", + "5677\n", + "5678\n", + "5679\n", + "5680\n", + "5681\n", + "5682\n", + "5683\n", + "5684\n", + "5685\n", + "5686\n", + "5687\n", + "5688\n", + "5689\n", + "5690\n", + "5691\n", + "5692\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45283918it [1:40:17, 8355.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5693\n", + "5694\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45315432it [1:40:21, 8269.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5695\n", + "5696\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45324251it [1:40:22, 8662.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5697\n", + "5698\n", + "5699\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45328711it [1:40:23, 8516.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5700\n", + "5701\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45332294it [1:40:23, 8778.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5702\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45335795it [1:40:23, 8665.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5703\n", + "5704\n", + "5705\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45348078it [1:40:25, 6724.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5706\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45396464it [1:40:31, 8580.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5707\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45401848it [1:40:32, 8726.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5708\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45430315it [1:40:36, 8142.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5709\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45432900it [1:40:36, 8304.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5710\n", + "5711\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45446230it [1:40:38, 8248.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5712\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45453070it [1:40:38, 7646.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5713\n", + "5714\n", + "5715\n", + "5716\n", + "5717\n", + "5718\n", + "5719\n", + "5720\n", + "5721\n", + "5722\n", + "5723\n", + "5724\n", + "5725\n", + "5726\n", + "5727\n", + "5728\n", + "5729\n", + "5730\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45463410it [1:40:40, 8742.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5731\n", + "5732\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45474697it [1:40:41, 8532.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5733\n", + "5734\n", + "5735\n", + "5736\n", + "5737\n", + "5738\n", + "5739\n", + "5740\n", + "5741\n", + "5742\n", + "5743\n", + "5744\n", + "5745\n", + "5746\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45477353it [1:40:41, 8698.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5747\n", + "5748\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45485318it [1:40:42, 8654.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5749\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45498657it [1:40:44, 8823.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5750\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45516167it [1:40:46, 8566.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5751\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45588951it [1:40:55, 8650.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5752\n", + "5753\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45594187it [1:40:55, 8579.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5754\n", + "5755\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45606635it [1:40:57, 8689.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5756\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45637324it [1:41:01, 6622.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5757\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45647622it [1:41:02, 8053.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5758\n", + "5759\n", + "5760\n", + "5761\n", + "5762\n", + "5763\n", + "5764\n", + "5765\n", + "5766\n", + "5767\n", + "5768\n", + "5769\n", + "5770\n", + "5771\n", + "5772\n", + "5773\n", + "5774\n", + "5775\n", + "5776\n", + "5777\n", + "5778\n", + "5779\n", + "5780\n", + "5781\n", + "5782\n", + "5783\n", + "5784\n", + "5785\n", + "5786\n", + "5787\n", + "5788\n", + "5789\n", + "5790\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45665270it [1:41:04, 8332.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5791\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45669749it [1:41:05, 8706.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5792\n", + "5793" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45671579it [1:41:05, 8950.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45676906it [1:41:06, 8771.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5794\n", + "5795\n", + "5796\n", + "5797\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45749040it [1:41:14, 7694.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5798\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45762364it [1:41:16, 8887.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5799\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45766951it [1:41:16, 8969.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5800\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45773150it [1:41:17, 8052.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5801\n", + "5802\n", + "5803\n", + "5804\n", + "5805\n", + "5806\n", + "5807\n", + "5808\n", + "5809\n", + "5810\n", + "5811\n", + "5812\n", + "5813\n", + "5814\n", + "5815" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45774723it [1:41:17, 7221.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "5816\n", + "5817\n", + "5818\n", + "5819\n", + "5820\n", + "5821\n", + "5822\n", + "5823\n", + "5824\n", + "5825\n", + "5826\n", + "5827\n", + "5828\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45777690it [1:41:17, 7063.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5829\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45779746it [1:41:18, 6401.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5830\n", + "5831\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45790748it [1:41:19, 8855.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5832\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45810260it [1:41:21, 8545.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5833\n", + "5834\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45823739it [1:41:23, 7473.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5835\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45834928it [1:41:24, 8782.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5836\n", + "5837\n", + "5838\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45849785it [1:41:26, 8633.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5839\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45853360it [1:41:27, 8797.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5840\n", + "5841\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45883254it [1:41:30, 8665.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5842\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45886758it [1:41:30, 8633.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5843\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45911662it [1:41:33, 8826.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5844\n", + "5845\n", + "5846\n", + "5847\n", + "5848\n", + "5849\n", + "5850\n", + "5851\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45920709it [1:41:34, 8230.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5852\n", + "5853\n", + "5854\n", + "5855\n", + "5856\n", + "5857\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45926071it [1:41:35, 8873.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5858\n", + "5859\n", + "5860\n", + "5861\n", + "5862\n", + "5863\n", + "5864\n", + "5865\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45946049it [1:41:37, 8736.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5866\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45950484it [1:41:38, 8866.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5867\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45969703it [1:41:40, 9351.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5868\n", + "5869\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45973414it [1:41:40, 8860.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5870\n", + "5871\n", + "5872\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45980727it [1:41:41, 9090.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5873\n", + "5874" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45984367it [1:41:41, 9068.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "5875\n", + "5876\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "45999150it [1:41:43, 9116.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5877\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46005519it [1:41:44, 9005.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5878\n", + "5879\n", + "5880\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46016423it [1:41:45, 9053.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5881\n", + "5882\n", + "5883\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46020044it [1:41:45, 8945.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5884\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46030871it [1:41:47, 8831.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5885\n", + "5886\n", + "5887\n", + "5888\n", + "5889\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46032639it [1:41:47, 8826.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5890\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46043653it [1:41:48, 8954.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5891\n", + "5892\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46046341it [1:41:48, 8788.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5893\n", + "5894\n", + "5895" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46048966it [1:41:49, 8649.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "5896\n", + "5897\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46052605it [1:41:49, 9025.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5898\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46056247it [1:41:49, 8957.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5899\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46058058it [1:41:50, 8965.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5900\n", + "5901\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46072350it [1:41:51, 9017.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5902\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46080442it [1:41:52, 8652.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5903\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46122013it [1:41:57, 8741.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5904\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46152274it [1:42:00, 8902.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5905\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46225410it [1:42:09, 6818.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5906\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46242662it [1:42:11, 8789.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5907\n", + "5908\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46276572it [1:42:16, 6232.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5909\n", + "5910\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46336662it [1:42:25, 8146.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5911\n", + "5912\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46379910it [1:42:30, 8488.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5913\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46382599it [1:42:31, 8826.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5914\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46393561it [1:42:32, 8958.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5915\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46403525it [1:42:33, 8678.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5916\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46428604it [1:42:36, 8790.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5917\n", + "5918\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46431244it [1:42:36, 8746.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5919\n", + "5920\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46470045it [1:42:41, 8652.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5921\n", + "5922\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46523748it [1:42:47, 8463.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5923\n", + "5924\n", + "5925\n", + "5926\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46568457it [1:42:52, 8917.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5927\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46581912it [1:42:53, 8584.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5928\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46586405it [1:42:54, 8867.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5929\n", + "5930\n", + "5931\n", + "5932\n", + "5933\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46595257it [1:42:55, 8628.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5934\n", + "5935\n", + "5936\n", + "5937\n", + "5938\n", + "5939\n", + "5940\n", + "5941\n", + "5942\n", + "5943\n", + "5944\n", + "5945\n", + "5946\n", + "5947\n", + "5948\n", + "5949\n", + "5950\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46598839it [1:42:55, 8782.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5951\n", + "5952\n", + "5953\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46618431it [1:42:58, 8617.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5954\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46624774it [1:42:58, 8762.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5955\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46667865it [1:43:03, 8869.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5956\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46685650it [1:43:05, 8907.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5957\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46693791it [1:43:06, 8843.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5958\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46706838it [1:43:08, 8476.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5959\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46711169it [1:43:08, 8579.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5960\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46714711it [1:43:09, 8553.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5961\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46720253it [1:43:10, 5876.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5962\n", + "5963\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46730025it [1:43:11, 8205.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5964\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46749773it [1:43:13, 8738.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5965\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46826386it [1:43:22, 8979.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5966\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46867172it [1:43:27, 9149.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5967\n", + "5968\n", + "5969\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46876981it [1:43:28, 8158.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5970\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46902278it [1:43:31, 8426.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5971\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46908289it [1:43:32, 7978.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5972\n", + "5973\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46932653it [1:43:35, 7395.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5974\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46936001it [1:43:35, 8257.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5975\n", + "5976\n", + "5977\n", + "5978\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46940348it [1:43:36, 8640.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5979\n", + "5980\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46965683it [1:43:39, 8472.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5981\n", + "5982\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "46989449it [1:43:42, 8752.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5983\n", + "5984\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47015179it [1:43:45, 8529.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5985\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47020390it [1:43:46, 8442.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5986\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47031889it [1:43:47, 8817.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5987\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47147613it [1:44:01, 8647.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5988\n", + "5989\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47150152it [1:44:01, 8096.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5990\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47175110it [1:44:04, 7352.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5991\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47181649it [1:44:05, 8027.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5992\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47189432it [1:44:06, 8633.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5993\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47198851it [1:44:07, 8090.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5994\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47265546it [1:44:15, 7936.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5995\n", + "5996\n", + "5997\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47272084it [1:44:16, 8199.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5998\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47280441it [1:44:17, 8630.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5999\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47296354it [1:44:19, 8876.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6000\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47351698it [1:44:25, 7796.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6001\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47392601it [1:44:30, 8466.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6002\n", + "6003\n", + "6004\n", + "6005\n", + "6006\n", + "6007\n", + "6008\n", + "6009\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47401468it [1:44:31, 8680.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6010\n", + "6011\n", + "6012\n", + "6013\n", + "6014\n", + "6015\n", + "6016\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47413710it [1:44:32, 8561.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6017\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47437710it [1:44:36, 6647.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6018\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47441567it [1:44:37, 7700.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6019\n", + "6020\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47454611it [1:44:38, 8093.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6021\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47477986it [1:44:41, 8136.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6022\n", + "6023\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47488450it [1:44:42, 7571.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6024\n", + "6025\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47502528it [1:44:44, 7952.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6026\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47523053it [1:44:47, 7716.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6027\n", + "6028\n", + "6029\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47585077it [1:44:57, 8299.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6030\n", + "6031\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47606378it [1:44:59, 8785.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6032\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47678898it [1:45:10, 8073.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6033\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47681457it [1:45:10, 8365.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6034\n", + "6035\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47713805it [1:45:14, 7702.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6036\n", + "6037\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47716156it [1:45:14, 7767.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6038\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47718818it [1:45:15, 8454.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6039\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47736915it [1:45:17, 8773.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6040\n", + "6041\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47742163it [1:45:17, 8406.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6042\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47782444it [1:45:24, 6568.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6043\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47799129it [1:45:26, 8500.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6044\n", + "6045\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47813266it [1:45:28, 8007.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6046\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47818332it [1:45:28, 7986.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6047\n", + "6048\n", + "6049\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47858968it [1:45:35, 8839.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6050\n", + "6051\n", + "6052\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47867000it [1:45:36, 8817.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6053\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47895826it [1:45:39, 8631.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6054\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47902645it [1:45:40, 7714.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6055\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47905051it [1:45:40, 7869.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6056\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47906732it [1:45:40, 8143.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6057\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47920067it [1:45:42, 8738.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6058\n", + "6059\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47962748it [1:45:47, 8706.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6060\n", + "6061\n", + "6062\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47977640it [1:45:49, 8275.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6063\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47984464it [1:45:50, 8518.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6064\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "47992441it [1:45:50, 8805.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6065\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48001213it [1:45:51, 8637.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6066\n", + "6067\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48003835it [1:45:52, 8585.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6068\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48017582it [1:45:53, 8545.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6069\n", + "6070\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48034088it [1:45:55, 8443.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6071\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48036763it [1:45:56, 8779.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6072\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48046446it [1:45:57, 8847.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6073\n", + "6074\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48054486it [1:45:58, 8606.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6075\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48070247it [1:46:00, 8683.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6076\n", + "6077\n", + "6078\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48072864it [1:46:00, 8650.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6079\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48084371it [1:46:01, 8469.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6080\n", + "6081\n", + "6082\n", + "6083\n", + "6084\n", + "6085\n", + "6086\n", + "6087\n", + "6088\n", + "6089\n", + "6090\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48103061it [1:46:03, 7914.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6091\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48122205it [1:46:06, 8812.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6092\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48170334it [1:46:14, 5627.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6093\n", + "6094\n", + "6095\n", + "6096\n", + "6097\n", + "6098\n", + "6099\n", + "6100\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48244192it [1:46:27, 8303.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6101\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48251296it [1:46:28, 8755.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6102\n", + "6103\n", + "6104\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48253903it [1:46:28, 8309.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6105\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48260588it [1:46:29, 8276.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6106\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48299572it [1:46:34, 8399.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6107\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48320050it [1:46:36, 8287.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6108\n", + "6109\n", + "6110\n", + "6111\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48349765it [1:46:40, 8752.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6112\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48370128it [1:46:42, 8027.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6113\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48379717it [1:46:43, 8450.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6114\n", + "6115\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48384982it [1:46:44, 8694.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6116\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48420529it [1:46:49, 7925.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6117\n", + "6118\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48437924it [1:46:51, 8363.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6119\n", + "6120\n", + "6121\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48440565it [1:46:51, 8588.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6122\n", + "6123\n", + "6124\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48444028it [1:46:52, 8374.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6125\n", + "6126\n", + "6127\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48452611it [1:46:53, 8523.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6128\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48457086it [1:46:53, 8759.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6129\n", + "6130\n", + "6131\n", + "6132\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48459699it [1:46:54, 8656.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6133\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48501386it [1:46:59, 8954.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6134\n", + "6135\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48507751it [1:46:59, 8526.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6136\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48522496it [1:47:01, 8863.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6137\n", + "6138\n", + "6139\n", + "6140\n", + "6141\n", + "6142\n", + "6143\n", + "6144\n", + "6145\n", + "6146\n", + "6147\n", + "6148\n", + "6149\n", + "6150\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48526121it [1:47:01, 8886.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6151\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48542223it [1:47:03, 8501.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6152\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48555995it [1:47:05, 8556.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6153\n", + "6154\n", + "6155\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48567721it [1:47:06, 8776.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6156\n", + "6157\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48580597it [1:47:08, 8797.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6158\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48585225it [1:47:08, 9224.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6159\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48592626it [1:47:09, 8656.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6160\n", + "6161\n", + "6162\n", + "6163\n", + "6164\n", + "6165\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48595281it [1:47:09, 8720.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6166\n", + "6167\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48603289it [1:47:10, 8553.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6168\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48609648it [1:47:11, 9158.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6169\n", + "6170\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48614327it [1:47:11, 9327.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6171\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48627904it [1:47:13, 8755.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6172\n", + "6173\n", + "6174\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48632332it [1:47:14, 8853.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6175\n", + "6176\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48666655it [1:47:17, 9059.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6177\n", + "6178\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48670242it [1:47:18, 7768.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6179\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48681265it [1:47:19, 8198.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6180\n", + "6181\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48684828it [1:47:20, 8752.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6182\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48690188it [1:47:20, 8933.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6183\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48693806it [1:47:21, 8797.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6184\n", + "6185\n", + "6186\n", + "6187\n", + "6188\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48701857it [1:47:22, 8855.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6189\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48706333it [1:47:22, 8899.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6190\n", + "6191\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48716964it [1:47:23, 8481.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6192\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48719626it [1:47:24, 8721.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6193\n", + "6194\n", + "6195\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48722306it [1:47:24, 8848.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6196\n", + "6197\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48742946it [1:47:26, 8646.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6198\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48760327it [1:47:28, 8587.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6199\n", + "6200\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48774709it [1:47:30, 8921.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6201\n", + "6202\n", + "6203\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48788782it [1:47:32, 7592.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6204\n", + "6205\n", + "6206\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48800856it [1:47:33, 7915.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6207\n", + "6208\n", + "6209\n", + "6210\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48803487it [1:47:33, 8543.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6211\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48805197it [1:47:34, 8173.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6212\n", + "6213\n", + "6214\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48810872it [1:47:34, 7016.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6215\n", + "6216\n", + "6217\n", + "6218\n", + "6219\n", + "6220\n", + "6221\n", + "6222\n", + "6223\n", + "6224\n", + "6225\n", + "6226\n", + "6227\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48818632it [1:47:35, 8640.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6228\n", + "6229\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48822230it [1:47:36, 8625.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6230\n", + "6231\n", + "6232\n", + "6233\n", + "6234\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48865428it [1:47:41, 8745.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6235\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48883416it [1:47:43, 9038.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6236\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48886145it [1:47:43, 9000.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6237\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48889748it [1:47:43, 8350.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6238\n", + "6239\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48892414it [1:47:44, 7928.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6240\n", + "6241\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48895763it [1:47:44, 8212.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6242\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48900145it [1:47:45, 8663.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6243\n", + "6244\n", + "6245\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48922383it [1:48:35, 6318.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6246\n", + "6247\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48933792it [1:48:36, 6900.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6248\n", + "6249\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48935171it [1:48:37, 6810.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6250\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48941755it [1:48:38, 7331.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6251\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48952299it [1:48:39, 6319.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6252\n", + "6253\n", + "6254\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48955730it [1:48:40, 6483.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6255\n", + "6256\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48961049it [1:48:41, 4498.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6257\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48962934it [1:48:41, 4437.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6258\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "48975840it [1:48:44, 6706.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6259\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49032089it [1:48:56, 5507.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6260\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49046578it [1:48:58, 5012.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6261\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49068647it [1:49:02, 6668.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6262\n", + "6263\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49076103it [1:49:03, 6849.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6264\n", + "6265" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49077451it [1:49:03, 6574.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "6266\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49080101it [1:49:03, 6324.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6267\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49086771it [1:49:05, 5764.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6268\n", + "6269\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49090355it [1:49:05, 5850.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6270\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49093854it [1:49:06, 5655.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6271\n", + "6272\n", + "6273\n", + "6274\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49102118it [1:49:07, 6269.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6275\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49106066it [1:49:08, 6324.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6276\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49114736it [1:49:09, 7375.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6277\n", + "6278\n", + "6279\n", + "6280\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49126986it [1:49:11, 6895.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6281\n", + "6282\n", + "6283\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49130863it [1:49:11, 7896.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6284\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49135620it [1:49:12, 7683.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6285\n", + "6286\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49138166it [1:49:12, 7855.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6287\n", + "6288\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49142209it [1:49:13, 8102.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6289\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49145521it [1:49:13, 7483.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6290\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49150287it [1:49:14, 7694.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6291\n", + "6292\n", + "6293\n", + "6294\n", + "6295\n", + "6296\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49152564it [1:49:14, 7447.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6297\n", + "6298\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49166056it [1:49:16, 7201.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6299\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49175738it [1:49:17, 6807.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6300\n", + "6301\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49178773it [1:49:18, 7189.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6302\n", + "6303\n", + "6304\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49181893it [1:49:18, 7650.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6305\n", + "6306\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49183390it [1:49:19, 7162.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6307\n", + "6308\n", + "6309\n", + "6310\n", + "6311\n", + "6312\n", + "6313\n", + "6314\n", + "6315\n", + "6316\n", + "6317\n", + "6318\n", + "6319\n", + "6320\n", + "6321\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49189208it [1:49:19, 7033.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6322\n", + "6323\n", + "6324\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49192268it [1:49:20, 7236.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6325\n", + "6326\n", + "6327\n", + "6328\n", + "6329\n", + "6330\n", + "6331\n", + "6332\n", + "6333\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49196840it [1:49:20, 7457.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6334\n", + "6335\n", + "6336\n", + "6337\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49198299it [1:49:21, 6714.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6338\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49201354it [1:49:21, 7196.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6339\n", + "6340\n", + "6341\n", + "6342\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49205932it [1:49:22, 7563.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6343\n", + "6344\n", + "6345\n", + "6346\n", + "6347\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49208200it [1:49:22, 7445.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6348\n", + "6349\n", + "6350\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49210444it [1:49:22, 6853.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6351\n", + "6352\n", + "6353\n", + "6354\n", + "6355\n", + "6356\n", + "6357\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49220336it [1:49:24, 7888.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6358\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49226956it [1:49:25, 6195.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6359\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49232463it [1:49:26, 4824.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6360\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49245620it [1:49:29, 7568.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6361\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49273213it [1:49:33, 4812.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6362\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49285139it [1:49:35, 3815.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6363\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49286287it [1:49:36, 3597.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6364\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49305132it [1:49:41, 5141.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6365\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49323933it [1:49:44, 6078.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6366\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49337111it [1:49:46, 7615.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6367\n", + "6368\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49340820it [1:49:46, 7053.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6369\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49347600it [1:49:47, 7015.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6370\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49352071it [1:49:48, 7417.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6371\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49360199it [1:49:49, 7385.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6372\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49362451it [1:49:49, 6940.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6373\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49367804it [1:49:50, 7742.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6374\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49370190it [1:49:51, 7449.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6375\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49392220it [1:49:53, 7275.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6376\n", + "6377\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49395991it [1:49:54, 7309.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6378\n", + "6379\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49407737it [1:49:56, 7395.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6380\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49423155it [1:49:58, 7584.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6381\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49449460it [1:50:02, 3369.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6382\n", + "6383\n", + "6384\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49459103it [1:50:04, 5524.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6385\n", + "6386\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49472525it [1:50:09, 5162.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6387\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49475481it [1:50:10, 5686.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6388\n", + "6389\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49479260it [1:50:11, 3129.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6390\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49487849it [1:50:13, 5596.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6391\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49490628it [1:50:13, 4659.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6392\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49516796it [1:50:18, 6347.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6393\n", + "6394\n", + "6395\n", + "6396\n", + "6397\n", + "6398\n", + "6399\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49518078it [1:50:18, 6127.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6400\n", + "6401\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49519316it [1:50:18, 5395.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6402\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49524094it [1:50:19, 5085.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6403\n", + "6404\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49543022it [1:50:22, 5196.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6405\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49554054it [1:50:24, 6101.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6406\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49557050it [1:50:25, 5486.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6407\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49576989it [1:50:28, 7134.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6408\n", + "6409\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49581717it [1:50:29, 7754.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6410\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49583871it [1:50:29, 5329.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6411\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49604065it [1:50:32, 7718.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6412\n", + "6413\n", + "6414\n", + "6415\n", + "6416\n", + "6417\n", + "6418\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49617577it [1:50:35, 7359.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6419\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49640651it [1:50:39, 7832.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6420\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49648892it [1:50:40, 5874.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6421\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49663511it [1:50:42, 6593.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6422\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49672890it [1:50:44, 7831.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6423\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49691697it [1:50:46, 7242.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6424\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49694608it [1:50:46, 7195.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6425\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49697569it [1:50:47, 7233.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6426\n", + "6427\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49701818it [1:50:48, 6914.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6428\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49717554it [1:50:50, 7793.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6429\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49734533it [1:50:52, 7909.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6430\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49745035it [1:50:53, 7868.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6431\n", + "6432\n", + "6433\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49757554it [1:50:55, 5534.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6434\n", + "6435\n", + "6436\n", + "6437\n", + "6438\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49759973it [1:50:56, 5925.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6439\n", + "6440\n", + "6441\n", + "6442\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49761230it [1:50:56, 6114.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6443\n", + "6444\n", + "6445\n", + "6446\n", + "6447\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49762507it [1:50:56, 6029.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6448\n", + "6449\n", + "6450\n", + "6451\n", + "6452\n", + "6453\n", + "6454\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49764650it [1:50:56, 6815.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6455\n", + "6456\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49766154it [1:50:56, 7094.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6457\n", + "6458\n", + "6459\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49768393it [1:50:57, 7035.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6460\n", + "6461\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49769784it [1:50:57, 5767.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6462\n", + "6463\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49773113it [1:50:58, 4024.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6464\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49781618it [1:51:00, 5744.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6465\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49817345it [1:51:05, 7919.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6466\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49834095it [1:51:08, 7633.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6467\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49856579it [1:51:11, 8011.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6468\n", + "6469\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49872393it [1:51:13, 6674.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6470\n", + "6471\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49900813it [1:51:18, 5876.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6472\n", + "6473\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49910523it [1:51:20, 6683.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6474\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49912072it [1:51:20, 7162.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6475\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49927787it [1:51:22, 7670.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6476\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49930291it [1:51:23, 8167.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6477\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49940886it [1:51:24, 7182.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6478\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "49957378it [1:51:26, 8352.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6479\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50000504it [1:51:32, 5956.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6480\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50006978it [1:51:33, 7141.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6481\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50027927it [1:51:36, 7535.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6482\n", + "6483\n", + "6484\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50064747it [1:51:41, 8225.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6485\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50067273it [1:51:42, 8358.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6486\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50086635it [1:51:44, 7140.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6487\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50092400it [1:51:45, 8177.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6488\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50097376it [1:51:45, 7946.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6489\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50102753it [1:51:46, 6720.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6490\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50123248it [1:51:49, 7050.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6491\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50150179it [1:51:53, 8128.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6492\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50154016it [1:51:54, 7231.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6493\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50228254it [1:52:04, 8293.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6494\n", + "6495\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50239994it [1:52:05, 7809.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6496\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50245023it [1:52:06, 6254.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6497\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50251080it [1:52:07, 7882.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6498\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50274412it [1:52:10, 7914.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6499\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50276901it [1:52:10, 8025.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6500\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50278547it [1:52:10, 8030.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6501\n", + "6502\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50281880it [1:52:11, 8162.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6503\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50294900it [1:52:12, 7738.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6504\n", + "6505\n", + "6506\n", + "6507\n", + "6508\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50298920it [1:52:13, 7486.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6509\n", + "6510\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50305226it [1:52:14, 7333.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6511\n", + "6512\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50307623it [1:52:14, 7786.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6513\n", + "6514\n", + "6515\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50311139it [1:52:14, 8600.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6516\n", + "6517\n", + "6518\n", + "6519\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50319321it [1:52:15, 7767.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6520\n", + "6521\n", + "6522\n", + "6523\n", + "6524\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50322546it [1:52:16, 8018.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6525\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50326706it [1:52:16, 8086.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6526\n", + "6527\n", + "6528\n", + "6529\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50332720it [1:52:17, 8399.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6530\n", + "6531\n", + "6532\n", + "6533\n", + "6534\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50339352it [1:52:18, 7672.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6535\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50348614it [1:52:19, 8462.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6536\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50361508it [1:52:20, 8478.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6537\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50364046it [1:52:21, 8357.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6538\n", + "6539\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50379618it [1:52:22, 8434.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6540\n", + "6541\n", + "6542\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50382172it [1:52:23, 8413.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6543\n", + "6544\n", + "6545\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50386387it [1:52:23, 8209.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6546\n", + "6547\n", + "6548\n", + "6549\n", + "6550\n", + "6551\n", + "6552\n", + "6553\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50395728it [1:52:25, 7377.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6554\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50398010it [1:52:25, 7126.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6555\n", + "6556\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50401484it [1:52:25, 6678.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6557\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50403876it [1:52:26, 7419.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6558\n", + "6559\n", + "6560\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50409537it [1:52:26, 8140.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6561\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50415529it [1:52:27, 7951.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6562\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50423180it [1:52:28, 7726.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6563\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50431636it [1:52:30, 6071.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6564\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50438918it [1:52:31, 5817.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6565\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50440088it [1:52:31, 5392.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6566\n", + "6567\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50448417it [1:52:33, 3789.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6568\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50459761it [1:52:36, 3225.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6569\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50471232it [1:52:39, 4671.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6570\n", + "6571\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50481621it [1:52:41, 5291.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6572\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50502680it [1:52:45, 7202.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6573\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50506607it [1:52:46, 7684.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6574\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50509771it [1:52:46, 7707.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6575\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50513777it [1:52:46, 7786.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6576\n", + "6577\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50517001it [1:52:47, 7951.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6578\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50518610it [1:52:47, 7384.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6579\n", + "6580\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50525878it [1:52:48, 7098.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6581\n", + "6582\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50548170it [1:52:51, 8008.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6583\n", + "6584\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50552483it [1:52:52, 8543.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6585\n", + "6586\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50558433it [1:52:52, 8264.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6587\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50570650it [1:52:54, 8635.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6588\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50581067it [1:52:55, 8605.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6589\n", + "6590\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50589459it [1:52:56, 8394.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6591\n", + "6592\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50591946it [1:52:56, 7992.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6593\n", + "6594\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50602812it [1:52:58, 7333.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6595\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50616858it [1:53:00, 7745.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6596\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50629006it [1:53:01, 7974.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6597\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50642736it [1:53:03, 7566.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6598\n", + "6599\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50660774it [1:53:06, 8207.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6600\n", + "6601\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50667938it [1:53:07, 4752.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6602\n", + "6603\n", + "6604\n", + "6605\n", + "6606\n", + "6607\n", + "6608\n", + "6609\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50683421it [1:53:10, 7407.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6610\n", + "6611\n", + "6612\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50694712it [1:53:12, 6385.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6613\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50698511it [1:53:12, 7671.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6614\n", + "6615\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50706340it [1:53:13, 7115.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6616\n", + "6617\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50721982it [1:53:16, 6208.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6618\n", + "6619\n", + "6620\n", + "6621\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50725248it [1:53:16, 5786.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6622\n", + "6623\n", + "6624\n", + "6625\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50736056it [1:53:19, 3348.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6626\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50740627it [1:53:20, 4507.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6627\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50756184it [1:53:22, 6928.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6628\n", + "6629\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50758647it [1:53:22, 7646.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6630\n", + "6631\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50775985it [1:53:25, 7994.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6632\n", + "6633\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50781642it [1:53:25, 7766.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6634\n", + "6635\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50789152it [1:53:26, 8191.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6636\n", + "6637\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50795057it [1:53:27, 8482.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6638\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50803676it [1:53:28, 7010.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6639\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50807919it [1:53:29, 8281.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6640\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50819008it [1:53:30, 6938.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6641\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50821738it [1:53:31, 6222.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6642\n", + "6643\n", + "6644\n", + "6645\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50844339it [1:53:34, 7479.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6646\n", + "6647\n", + "6648\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50853248it [1:53:35, 7312.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6649\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50855557it [1:53:36, 7415.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6650\n", + "6651\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50860246it [1:53:36, 7640.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6652\n", + "6653\n", + "6654\n", + "6655\n", + "6656" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50861984it [1:53:36, 8194.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50868407it [1:53:37, 6715.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6657\n", + "6658\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50870809it [1:53:38, 7564.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6659\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50876650it [1:53:38, 8024.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6660\n", + "6661\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50882538it [1:53:39, 8470.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6662\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50911538it [1:53:43, 8064.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6663\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50924099it [1:53:44, 8523.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6664\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50928424it [1:53:45, 7729.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6665\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50931504it [1:53:45, 7346.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6666\n", + "6667\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50932995it [1:53:45, 6868.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6668\n", + "6669\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50950714it [1:53:48, 8710.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6670\n", + "6671\n", + "6672\n", + "6673\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50955108it [1:53:48, 8583.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6674\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50960851it [1:53:49, 7597.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6675\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50963258it [1:53:49, 7814.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6676\n", + "6677\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50969312it [1:53:50, 8548.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6678\n", + "6679\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "50990746it [1:53:54, 3174.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6680\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51015247it [1:53:58, 7936.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6681\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51030585it [1:54:00, 8506.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6682\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51044817it [1:54:02, 5594.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6683\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51048844it [1:54:03, 4939.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6684\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51054275it [1:54:04, 5468.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6685\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51078391it [1:54:08, 5766.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6686\n", + "6687\n", + "6688\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51080794it [1:54:09, 5949.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6689\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51089358it [1:54:11, 4243.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6690\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51107334it [1:54:14, 7981.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6691\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51114140it [1:54:15, 5664.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6692\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51117051it [1:54:16, 5100.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6693\n", + "6694\n", + "6695\n", + "6696\n", + "6697\n", + "6698\n", + "6699\n", + "6700\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51133665it [1:54:18, 7092.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6701\n", + "6702\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51153182it [1:54:20, 8223.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6703\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51162621it [1:54:21, 8373.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6704\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51178168it [1:54:23, 8250.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6705\n", + "6706\n", + "6707\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51206305it [1:54:27, 8098.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6708\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51223766it [1:54:29, 7989.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6709\n", + "6710\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51235255it [1:54:31, 8145.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6711\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51239940it [1:54:31, 7657.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6712\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51243773it [1:54:32, 7406.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6713\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51250155it [1:54:33, 7924.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6714\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51252484it [1:54:33, 7556.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6715\n", + "6716\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51258669it [1:54:34, 7827.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6717\n", + "6718\n", + "6719\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51263536it [1:54:35, 8059.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6720\n", + "6721\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51265186it [1:54:35, 8151.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6722\n", + "6723\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51268406it [1:54:35, 7644.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6724\n", + "6725\n", + "6726\n", + "6727\n", + "6728\n", + "6729\n", + "6730\n", + "6731\n", + "6732\n", + "6733\n", + "6734\n", + "6735\n", + "6736\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51284648it [1:54:37, 7951.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6737\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51287134it [1:54:38, 8169.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6738\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51322115it [1:54:42, 8036.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6739\n", + "6740\n", + "6741\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51324547it [1:54:42, 7655.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6742\n", + "6743\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51326070it [1:54:43, 7326.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6744\n", + "6745\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51354857it [1:54:47, 7501.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6746\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51376360it [1:54:49, 7018.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6747\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51381443it [1:54:50, 7211.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6748\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51384829it [1:54:51, 6301.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6749\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51394370it [1:54:52, 7601.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6750\n", + "6751\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51404180it [1:54:53, 5871.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6752\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51405888it [1:54:54, 4999.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6753\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51410428it [1:54:54, 7673.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6754\n", + "6755\n", + "6756\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51418255it [1:54:55, 7799.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6757\n", + "6758\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51421319it [1:54:56, 6814.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6759\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51427359it [1:54:57, 6146.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6760\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51438576it [1:54:58, 7437.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6761\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51443323it [1:54:59, 7576.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6762\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51445701it [1:54:59, 7811.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6763\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51454620it [1:55:00, 8101.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6764\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51472071it [1:55:03, 8264.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6765\n", + "6766\n", + "6767\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51474437it [1:55:03, 7503.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6768\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51479381it [1:55:04, 8279.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6769\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51485009it [1:55:04, 7391.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6770\n", + "6771\n", + "6772\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51491336it [1:55:05, 7979.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6773\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51496292it [1:55:06, 7858.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6774\n", + "6775\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51504818it [1:55:07, 7649.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6776\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51510487it [1:55:08, 8111.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6777\n", + "6778\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51533188it [1:55:11, 7822.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6779\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51536426it [1:55:11, 7948.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6780\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51542794it [1:55:12, 7614.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6781\n", + "6782\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51545262it [1:55:12, 7832.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6783\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51550202it [1:55:13, 8030.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6784\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51555343it [1:55:13, 8448.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6785\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51568538it [1:55:15, 7755.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6786\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51574051it [1:55:16, 7441.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6787\n", + "6788\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51586467it [1:55:17, 7281.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6789\n", + "6790\n", + "6791\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51590333it [1:55:18, 7426.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6792\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51604272it [1:55:20, 7990.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6793\n", + "6794\n", + "6795\n", + "6796\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51606715it [1:55:20, 8052.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6797\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51620521it [1:55:22, 7945.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6798\n", + "6799\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51635400it [1:55:24, 7661.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6800\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51664403it [1:55:28, 6106.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6801\n", + "6802\n", + "6803\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51677500it [1:55:30, 7227.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6804\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51690544it [1:55:32, 7913.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6805\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51698221it [1:55:33, 6293.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6806\n", + "6807" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51703016it [1:55:33, 7842.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "6808\n", + "6809\n", + "6810\n", + "6811\n", + "6812\n", + "6813\n", + "6814\n", + "6815\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51722874it [1:55:36, 8137.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6816\n", + "6817\n", + "6818\n", + "6819\n", + "6820\n", + "6821\n", + "6822\n", + "6823\n", + "6824\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51755866it [1:55:40, 7405.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6825\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51764239it [1:55:41, 8286.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6826\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51767613it [1:55:42, 8262.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6827\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51774840it [1:55:43, 7887.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6828\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51782224it [1:55:44, 8033.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6829\n", + "6830\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51784600it [1:55:44, 7710.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6831\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51798468it [1:55:46, 7419.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6832\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51805127it [1:55:47, 7602.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6833\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51811514it [1:55:48, 7260.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6834\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51816599it [1:55:49, 8418.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6835\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51819848it [1:55:49, 7598.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6836\n", + "6837\n", + "6838\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51822133it [1:55:49, 7188.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6839\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51845825it [1:55:54, 8606.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6840\n", + "6841\n", + "6842\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51850989it [1:55:54, 7241.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6843\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51854087it [1:55:55, 7521.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6844\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51857596it [1:55:55, 5982.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6845\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51880698it [1:55:59, 7047.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6846\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51883168it [1:55:59, 7814.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6847\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51902330it [1:56:02, 7188.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6848\n", + "6849\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51904685it [1:56:02, 7613.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6850\n", + "6851\n", + "6852" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51906275it [1:56:02, 7773.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "6853\n", + "6854\n", + "6855\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51908822it [1:56:03, 8218.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6856\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51924436it [1:56:05, 8622.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6857\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51943621it [1:56:07, 7442.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6858\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "51993117it [1:56:14, 8134.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6859\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52005298it [1:56:15, 7703.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6860\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52012317it [1:56:16, 7012.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6861\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52019252it [1:56:17, 8113.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6862\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52025009it [1:56:18, 7447.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6863\n", + "6864\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52029534it [1:56:18, 7405.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6865\n", + "6866\n", + "6867\n", + "6868\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52031088it [1:56:19, 7534.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6869\n", + "6870\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52038328it [1:56:20, 8036.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6871\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52042433it [1:56:20, 8047.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6872\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52047933it [1:56:21, 7002.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6873\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52057494it [1:56:22, 7081.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6874\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52074299it [1:56:24, 7021.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6875\n", + "6876\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52076102it [1:56:25, 3904.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6877\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52082947it [1:56:26, 6393.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6878\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52085774it [1:56:27, 6796.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6879\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52087992it [1:56:27, 6965.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6880\n", + "6881\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52095511it [1:56:28, 5358.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6882\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52116632it [1:56:31, 8308.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6883\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52122507it [1:56:32, 7453.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6884\n", + "6885\n", + "6886\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52123947it [1:56:32, 6527.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6887\n", + "6888\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52129749it [1:56:33, 7353.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6889\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52138074it [1:56:34, 7931.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6890\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52144317it [1:56:35, 7588.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6891\n", + "6892\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52150453it [1:56:36, 6192.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6893\n", + "6894\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52156203it [1:56:37, 6075.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6895\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52164975it [1:56:38, 7586.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6896\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52179777it [1:56:41, 4105.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6897\n", + "6898\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52219364it [1:56:47, 6779.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6899\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52225063it [1:56:47, 7974.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6900\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52274767it [1:56:54, 7585.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6901\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52306166it [1:56:58, 8148.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6902\n", + "6903\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52333429it [1:57:01, 7402.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6904\n", + "6905\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52354389it [1:57:04, 8578.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6906\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52386598it [1:57:08, 7745.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6907\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52391381it [1:57:08, 7616.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6908\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52407058it [1:57:11, 7208.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6909\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52411406it [1:57:11, 6864.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6910\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52413507it [1:57:12, 6642.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6911\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52495585it [1:57:26, 3154.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6912\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52497141it [1:57:27, 3731.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6913\n", + "6914\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52500075it [1:57:27, 4864.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6915\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52510561it [1:57:29, 5314.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6916\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52520032it [1:57:31, 5450.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6917\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52524072it [1:57:32, 5739.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6918\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52528983it [1:57:33, 4647.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6919\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52534836it [1:57:34, 6169.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6920\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52542952it [1:57:35, 8075.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6921\n", + "6922\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52576687it [1:57:39, 8549.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6923\n", + "6924\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52586861it [1:57:40, 8153.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6925\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52591101it [1:57:41, 8358.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6926\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52601251it [1:57:42, 8682.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6927\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52609916it [1:57:43, 8437.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6928\n", + "6929\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52615875it [1:57:44, 8432.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6930\n", + "6931\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52621131it [1:57:44, 8554.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6932\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52623760it [1:57:45, 8614.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6933\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52642237it [1:57:48, 6720.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6934\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52645394it [1:57:49, 4217.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6935\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52668607it [1:57:52, 7810.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6936\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52674353it [1:57:53, 7993.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6937\n", + "6938\n", + "6939\n", + "6940\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52698473it [1:57:56, 6812.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6941\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52705114it [1:57:57, 7195.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6942\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52714326it [1:57:59, 7529.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6943\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52724796it [1:58:00, 7089.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6944\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52730270it [1:58:01, 6952.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6945\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52746633it [1:58:04, 6992.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6946\n", + "6947\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52813464it [1:58:13, 7500.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6948\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52832135it [1:58:16, 6546.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6949\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52856453it [1:58:20, 7758.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6950\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52886307it [1:58:24, 7475.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6951\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52937898it [1:58:32, 5011.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6952\n", + "6953\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52984214it [1:58:39, 7432.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6954\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "52996172it [1:58:41, 3786.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6955\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53031357it [1:58:46, 7081.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6956\n", + "6957\n", + "6958\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53053704it [1:58:49, 7326.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6959\n", + "6960\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53057537it [1:58:50, 7712.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6961\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53076825it [1:58:52, 8021.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6962\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53084396it [1:58:53, 8239.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6963\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53108475it [1:58:56, 8078.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6964\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53131117it [1:59:00, 6964.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6965\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53139423it [1:59:01, 7917.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6966\n", + "6967\n", + "6968\n", + "6969\n", + "6970\n", + "6971\n", + "6972\n", + "6973\n", + "6974\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53141840it [1:59:01, 7804.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6975\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53161869it [1:59:04, 7785.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6976\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53218812it [1:59:13, 5196.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6977\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53221052it [1:59:13, 5489.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6978\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53249182it [1:59:17, 7666.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6979\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53259205it [1:59:18, 7464.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6980\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53280450it [1:59:21, 7695.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6981\n", + "6982\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53289002it [1:59:22, 7820.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6983\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53292144it [1:59:23, 7152.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6984\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53304932it [1:59:25, 8230.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6985\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53324492it [1:59:27, 7940.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6986\n", + "6987\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53326849it [1:59:27, 7666.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6988\n", + "6989\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53334140it [1:59:28, 7926.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6990\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53341063it [1:59:29, 7373.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6991\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53346361it [1:59:30, 7169.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6992\n", + "6993\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53356275it [1:59:31, 7740.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6994\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53358781it [1:59:32, 8158.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6995\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53361174it [1:59:32, 7484.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6996\n", + "6997\n", + "6998\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53362675it [1:59:32, 7246.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6999\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53395259it [1:59:37, 7474.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7000\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53397487it [1:59:37, 6769.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7001\n", + "7002\n", + "7003\n", + "7004\n", + "7005\n", + "7006\n", + "7007\n", + "7008\n", + "7009\n", + "7010\n", + "7011\n", + "7012\n", + "7013\n", + "7014\n", + "7015\n", + "7016\n", + "7017\n", + "7018\n", + "7019\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53401329it [1:59:38, 7651.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7020\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53410301it [1:59:39, 7285.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7021\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53431224it [1:59:42, 7220.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7022\n", + "7023\n", + "7024\n", + "7025\n", + "7026\n", + "7027\n", + "7028\n", + "7029\n", + "7030\n", + "7031\n", + "7032\n", + "7033\n", + "7034\n", + "7035\n", + "7036\n", + "7037\n", + "7038\n", + "7039\n", + "7040\n", + "7041\n", + "7042\n", + "7043\n", + "7044\n", + "7045\n", + "7046\n", + "7047\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53446359it [1:59:44, 7545.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7048\n", + "7049\n", + "7050\n", + "7051\n", + "7052\n", + "7053\n", + "7054\n", + "7055\n", + "7056\n", + "7057\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53448584it [1:59:44, 6815.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7058\n", + "7059\n", + "7060\n", + "7061\n", + "7062\n", + "7063\n", + "7064\n", + "7065\n", + "7066\n", + "7067\n", + "7068\n", + "7069\n", + "7070\n", + "7071\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53455541it [1:59:45, 7755.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7072\n", + "7073\n", + "7074\n", + "7075\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53462618it [1:59:46, 7135.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7076\n", + "7077\n", + "7078\n", + "7079\n", + "7080\n", + "7081\n", + "7082\n", + "7083\n", + "7084\n", + "7085\n", + "7086\n", + "7087\n", + "7088\n", + "7089\n", + "7090\n", + "7091\n", + "7092\n", + "7093\n", + "7094\n", + "7095\n", + "7096\n", + "7097\n", + "7098\n", + "7099\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53464609it [1:59:46, 6041.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7100\n", + "7101\n", + "7102\n", + "7103\n", + "7104\n", + "7105\n", + "7106\n", + "7107\n", + "7108\n", + "7109\n", + "7110\n", + "7111\n", + "7112\n", + "7113\n", + "7114\n", + "7115\n", + "7116\n", + "7117\n", + "7118\n", + "7119\n", + "7120\n", + "7121\n", + "7122\n", + "7123\n", + "7124\n", + "7125\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53479812it [1:59:49, 7231.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7126\n", + "7127\n", + "7128\n", + "7129\n", + "7130\n", + "7131\n", + "7132\n", + "7133\n", + "7134\n", + "7135\n", + "7136\n", + "7137\n", + "7138\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53482717it [1:59:49, 6941.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7139\n", + "7140\n", + "7141\n", + "7142\n", + "7143\n", + "7144\n", + "7145\n", + "7146\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53487894it [1:59:50, 7322.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7147\n", + "7148\n", + "7149\n", + "7150\n", + "7151\n", + "7152\n", + "7153\n", + "7154\n", + "7155\n", + "7156\n", + "7157\n", + "7158\n", + "7159\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53490192it [1:59:50, 7345.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7160\n", + "7161\n", + "7162\n", + "7163\n", + "7164\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53500991it [1:59:51, 7634.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7165\n", + "7166\n", + "7167\n", + "7168\n", + "7169\n", + "7170\n", + "7171\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53533749it [1:59:56, 7453.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7172\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53547161it [1:59:58, 7596.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7173\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53555771it [1:59:59, 7450.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7174\n", + "7175\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53558865it [1:59:59, 7375.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7176\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53561889it [2:00:00, 7231.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7177\n", + "7178\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53585435it [2:00:03, 7802.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7179\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53594356it [2:00:04, 7583.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7180\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53599216it [2:00:05, 7907.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7181\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53626165it [2:00:09, 7362.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7182\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53635346it [2:00:10, 7480.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7183\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53639727it [2:00:10, 7148.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7184\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53645709it [2:00:11, 7035.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7185\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53650004it [2:00:12, 6805.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7186\n", + "7187\n", + "7188\n", + "7189\n", + "7190\n", + "7191\n", + "7192\n", + "7193\n", + "7194\n", + "7195\n", + "7196\n", + "7197\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53666189it [2:00:14, 7776.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7198\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53672343it [2:00:15, 7367.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7199\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53680057it [2:00:16, 7498.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7200\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53684796it [2:00:17, 7748.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7201\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53699009it [2:00:19, 7714.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7202\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53701422it [2:00:19, 7896.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7203\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53705311it [2:00:19, 7562.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7204\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53720224it [2:00:21, 6953.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7205\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53727734it [2:00:22, 7178.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7206\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53729114it [2:00:23, 5323.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7207\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53749389it [2:00:26, 5697.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7208\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53764894it [2:00:28, 6771.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7209\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53768995it [2:00:29, 6352.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7210\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53831683it [2:00:41, 6217.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7211\n", + "7212\n", + "7213\n", + "7214\n", + "7215\n", + "7216\n", + "7217\n", + "7218\n", + "7219\n", + "7220\n", + "7221\n", + "7222\n", + "7223\n", + "7224\n", + "7225\n", + "7226\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53834680it [2:00:42, 7144.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7227\n", + "7228\n", + "7229\n", + "7230\n", + "7231\n", + "7232\n", + "7233\n", + "7234\n", + "7235\n", + "7236\n", + "7237\n", + "7238\n", + "7239\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53849709it [2:00:44, 6405.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7240\n", + "7241\n", + "7242\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53872446it [2:00:47, 7567.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7243\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53884118it [2:00:50, 5561.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7244\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53906424it [2:00:53, 7866.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7245\n", + "7246\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53909616it [2:00:54, 7927.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7247\n", + "7248\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53917672it [2:00:55, 7840.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7249\n", + "7250\n", + "7251\n", + "7252\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53962321it [2:01:01, 7897.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7253\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "53965810it [2:01:01, 5242.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7254\n", + "7255\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54007153it [2:01:08, 4395.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7256\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54022786it [2:01:10, 6623.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7257\n", + "7258\n", + "7259\n", + "7260\n", + "7261\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54024107it [2:01:10, 6442.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7262\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54025378it [2:01:10, 5891.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7263\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54027201it [2:01:11, 5744.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7264\n", + "7265\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54057330it [2:01:16, 7620.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7266\n", + "7267\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54069811it [2:01:18, 7396.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7268\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54079796it [2:01:19, 7657.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7269\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54095032it [2:01:21, 7640.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7270\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54116650it [2:01:24, 5728.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7271\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54124495it [2:01:25, 6805.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7272\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54129874it [2:01:26, 7314.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7273\n", + "7274\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54132784it [2:01:27, 6079.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7275\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54146846it [2:01:28, 8086.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7276\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54163206it [2:01:31, 7020.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7277\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54169018it [2:01:31, 7271.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7278\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54190687it [2:01:35, 6497.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7279\n", + "7280\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54195683it [2:01:36, 6801.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7281\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54198517it [2:01:36, 6858.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7282\n", + "7283\n", + "7284\n", + "7285\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54203996it [2:01:37, 6586.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7286\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54212991it [2:01:38, 7423.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7287\n", + "7288\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54227946it [2:01:41, 7399.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7289\n", + "7290\n", + "7291\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54240061it [2:01:42, 6960.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7292\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54248161it [2:01:44, 5577.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7293\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54273492it [2:01:47, 7909.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7294\n", + "7295\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54284061it [2:01:49, 7872.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7296\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54309807it [2:01:52, 7936.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7297\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54326706it [2:01:54, 7202.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7298\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54337498it [2:01:56, 6829.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7299\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54352535it [2:01:58, 8103.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7300\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54354143it [2:01:58, 7805.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7301\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54370713it [2:02:01, 5788.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7302\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54385214it [2:02:02, 7863.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7303\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54387613it [2:02:03, 7779.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7304\n", + "7305\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54399598it [2:02:04, 7668.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7306\n", + "7307\n", + "7308\n", + "7309\n", + "7310\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54422607it [2:02:07, 7989.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7311\n", + "7312\n", + "7313\n", + "7314\n", + "7315\n", + "7316\n", + "7317\n", + "7318\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54433415it [2:02:08, 8007.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7319\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54452354it [2:02:11, 8134.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7320\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54497368it [2:02:18, 4624.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7321\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54501147it [2:02:18, 7101.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7322\n", + "7323\n", + "7324\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54504998it [2:02:19, 7389.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7325\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54514086it [2:02:20, 7822.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7326\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54586859it [2:02:31, 8280.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7327\n", + "7328\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54595807it [2:02:32, 8006.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7329\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54615451it [2:02:35, 7867.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7330\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54650082it [2:02:39, 8087.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7331\n", + "7332\n", + "7333\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54663380it [2:02:41, 8165.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7334\n", + "7335\n", + "7336\n", + "7337\n", + "7338\n", + "7339\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54685910it [2:02:44, 7620.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7340\n", + "7341\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54690737it [2:02:44, 8020.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7342\n", + "7343\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54694061it [2:02:45, 7483.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7344\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54706636it [2:02:46, 8024.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7345\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54718707it [2:02:48, 7561.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7346\n", + "7347\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54729833it [2:02:49, 7612.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7348\n", + "7349\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54737493it [2:02:51, 7698.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7350\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54749119it [2:02:52, 7266.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7351\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54752964it [2:02:53, 7396.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7352\n", + "7353\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54759131it [2:02:53, 6908.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7354\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54770296it [2:02:55, 5885.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7355\n", + "7356\n", + "7357\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54806062it [2:03:00, 7653.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7358\n", + "7359\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54826777it [2:03:03, 7983.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7360\n", + "7361\n", + "7362\n", + "7363\n", + "7364\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54829196it [2:03:03, 7800.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7365\n", + "7366\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54832417it [2:03:04, 7771.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7367\n", + "7368\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54843122it [2:03:05, 7612.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7369\n", + "7370\n", + "7371\n", + "7372\n", + "7373\n", + "7374\n", + "7375\n", + "7376\n", + "7377\n", + "7378\n", + "7379\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54847907it [2:03:06, 7766.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7380\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54860958it [2:03:07, 7686.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7381\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54863141it [2:03:08, 6752.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7382\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54880326it [2:03:10, 7508.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7383\n", + "7384\n", + "7385\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54887628it [2:03:11, 6933.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7386\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54888991it [2:03:12, 6456.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7387\n", + "7388\n", + "7389\n", + "7390\n", + "7391\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54892595it [2:03:12, 6909.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7392\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54894781it [2:03:12, 7101.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7393\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54899530it [2:03:13, 6192.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7394\n", + "7395\n", + "7396\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54919495it [2:03:16, 7127.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7397\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54929211it [2:03:17, 7708.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7398\n", + "7399\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54936580it [2:03:18, 6723.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7400\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54941954it [2:03:19, 6933.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7401\n", + "7402\n", + "7403\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54944241it [2:03:20, 7249.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7404\n", + "7405\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54951742it [2:03:21, 6732.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7406\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54955288it [2:03:21, 7139.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7407\n", + "7408\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "54982605it [2:03:25, 7906.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7409\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55023561it [2:03:30, 8318.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7410\n", + "7411\n", + "7412\n", + "7413\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55075733it [2:03:37, 7169.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7414\n", + "7415\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55107175it [2:03:41, 7453.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7416\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55123445it [2:03:43, 8247.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7417\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55132882it [2:03:44, 3810.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7418\n", + "7419\n", + "7420\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55159390it [2:03:48, 7622.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7421\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55168800it [2:03:50, 7309.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7422\n", + "7423\n", + "7424\n", + "7425\n", + "7426\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55180021it [2:03:51, 7502.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7427\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55195791it [2:03:53, 6445.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7428\n", + "7429\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55239653it [2:04:00, 7508.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7430\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55254055it [2:04:02, 7066.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7431\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55297401it [2:04:07, 7791.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7432\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55326971it [2:04:11, 8423.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7433\n", + "7434\n", + "7435\n", + "7436\n", + "7437\n", + "7438\n", + "7439\n", + "7440\n", + "7441\n", + "7442\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55371772it [2:04:17, 7693.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7443\n", + "7444\n", + "7445\n", + "7446\n", + "7447\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55377554it [2:04:18, 8181.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7448\n", + "7449\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55391506it [2:04:20, 7275.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7450\n", + "7451\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55413113it [2:04:23, 7452.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7452\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55429239it [2:04:25, 7698.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7453\n", + "7454\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55445534it [2:04:27, 7128.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7455\n", + "7456\n", + "7457\n", + "7458\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55476993it [2:04:32, 5110.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7459\n", + "7460\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55480010it [2:04:32, 7062.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7461\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55481411it [2:04:33, 5194.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7462\n", + "7463\n", + "7464\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55482954it [2:04:33, 4385.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7465\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55486138it [2:04:34, 6151.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7466\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55498701it [2:04:36, 5300.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7467\n", + "7468\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55499882it [2:04:36, 5389.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7469\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55505809it [2:04:37, 6850.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7470\n", + "7471\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55515704it [2:04:38, 7151.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7472\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55523150it [2:04:39, 7696.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7473\n", + "7474\n", + "7475\n", + "7476\n", + "7477\n", + "7478\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55537368it [2:04:41, 7913.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7479\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55538949it [2:04:41, 7810.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7480\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55547166it [2:04:42, 7787.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7481\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55559340it [2:04:44, 7763.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7482\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55566168it [2:04:45, 7077.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7483\n", + "7484\n", + "7485\n", + "7486\n", + "7487\n", + "7488\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55568948it [2:04:45, 6666.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7489\n", + "7490\n", + "7491\n", + "7492\n", + "7493\n", + "7494\n", + "7495\n", + "7496\n", + "7497\n", + "7498\n", + "7499\n", + "7500\n", + "7501\n", + "7502\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55570273it [2:04:46, 6281.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7503\n", + "7504\n", + "7505\n", + "7506\n", + "7507\n", + "7508\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55581452it [2:04:47, 7397.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7509\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55586803it [2:04:48, 7664.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7510\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55589164it [2:04:48, 7724.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7511\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55597440it [2:04:50, 6521.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7512\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55626726it [2:04:53, 8419.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7513\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55628379it [2:04:54, 7934.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7514\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55632510it [2:04:54, 7810.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7515\n", + "7516\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55639135it [2:04:55, 8102.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7517\n", + "7518\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55669097it [2:04:59, 8088.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7519\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55677457it [2:05:00, 7932.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7520\n", + "7521\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55679044it [2:05:00, 7805.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7522\n", + "7523\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55699456it [2:05:02, 8454.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7524\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55722723it [2:05:05, 6643.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7525\n", + "7526\n", + "7527\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "55723398it [2:05:06, 6086.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7528\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55725337it [2:05:06, 6174.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7529\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55733095it [2:05:07, 6913.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7530\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55745414it [2:05:09, 7562.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7531\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55765230it [2:05:11, 7896.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7532\n", + "7533\n", + "7534\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55769334it [2:05:12, 7568.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7535\n", + "7536\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55772496it [2:05:12, 7767.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7537\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55776382it [2:05:13, 7598.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7538\n", + "7539\n", + "7540\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55782543it [2:05:14, 7302.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7541\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55802326it [2:05:16, 7013.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7542\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55809791it [2:05:17, 7583.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7543\n", + "7544\n", + "7545\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55827333it [2:05:20, 7194.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7546\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55841569it [2:05:22, 5915.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7547\n", + "7548\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55845229it [2:05:23, 7009.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7549\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55871386it [2:05:27, 4774.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7550\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55873507it [2:05:28, 6211.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7551\n", + "7552\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55888592it [2:05:30, 6475.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7553\n", + "7554\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55891930it [2:05:30, 6617.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7555\n", + "7556\n", + "7557\n", + "7558\n", + "7559\n", + "7560\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55896002it [2:05:31, 6658.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7561\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55900587it [2:05:32, 6276.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7562\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55905054it [2:05:32, 6265.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7563\n", + "7564\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55910782it [2:05:34, 6352.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7565\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55914268it [2:05:34, 6656.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7566\n", + "7567\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55948077it [2:05:39, 7844.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7568\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55964007it [2:05:41, 6946.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7569\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55969774it [2:05:42, 7254.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7570\n", + "7571\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "55986254it [2:05:44, 7320.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7572\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56009157it [2:05:47, 7561.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7573\n", + "7574\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56011460it [2:05:47, 7520.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7575\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56037780it [2:05:51, 7256.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7576\n", + "7577\n", + "7578\n", + "7579\n", + "7580\n", + "7581\n", + "7582\n", + "7583\n", + "7584\n", + "7585\n", + "7586\n", + "7587\n", + "7588\n", + "7589\n", + "7590\n", + "7591\n", + "7592\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56048855it [2:05:52, 7125.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7593\n", + "7594\n", + "7595\n", + "7596\n", + "7597\n", + "7598\n", + "7599\n", + "7600\n", + "7601\n", + "7602\n", + "7603\n", + "7604\n", + "7605\n", + "7606\n", + "7607\n", + "7608\n", + "7609\n", + "7610\n", + "7611\n", + "7612\n", + "7613\n", + "7614\n", + "7615\n", + "7616\n", + "7617\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56053461it [2:05:53, 7473.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7618\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56055792it [2:05:53, 7261.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7619\n", + "7620\n", + "7621\n", + "7622\n", + "7623\n", + "7624\n", + "7625\n", + "7626\n", + "7627\n", + "7628\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56059609it [2:05:54, 7625.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7629\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56063352it [2:05:54, 7377.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7630\n", + "7631\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56081626it [2:05:58, 6048.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7632\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56106371it [2:06:02, 4704.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7633\n", + "7634\n", + "7635\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56117191it [2:06:05, 5214.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7636\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56134454it [2:06:08, 5710.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7637\n", + "7638\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56136150it [2:06:08, 5464.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7639\n", + "7640\n", + "7641\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56147336it [2:06:11, 4943.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7642\n", + "7643\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56170312it [2:06:15, 6555.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7644\n", + "7645\n", + "7646\n", + "7647\n", + "7648\n", + "7649\n", + "7650\n", + "7651\n", + "7652\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56173852it [2:06:16, 3096.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7653\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56174535it [2:06:16, 1979.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7654\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56176720it [2:06:17, 2518.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7655\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56182656it [2:06:19, 5215.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7656\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56184931it [2:06:19, 6836.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7657\n", + "7658\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56188045it [2:06:20, 7652.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7659\n", + "7660\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56205439it [2:06:22, 7268.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7661\n", + "7662\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56222610it [2:06:24, 8088.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7663\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56225071it [2:06:25, 7936.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7664\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56226644it [2:06:25, 7497.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7665\n", + "7666\n", + "7667\n", + "7668\n", + "7669\n", + "7670\n", + "7671\n", + "7672\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56238701it [2:06:26, 8078.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7673\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56250130it [2:06:28, 7845.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7674\n", + "7675\n", + "7676\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56252566it [2:06:28, 7893.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7677\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56268324it [2:06:30, 7032.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7678\n", + "7679\n", + "7680\n", + "7681\n", + "7682\n", + "7683\n", + "7684\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56284118it [2:06:33, 7723.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7685\n", + "7686\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56296266it [2:06:34, 7423.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7687\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56322936it [2:06:38, 8478.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7688\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56332370it [2:06:39, 8451.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7689\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56346143it [2:06:41, 8094.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7690\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56351768it [2:06:41, 7758.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7691\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56355027it [2:06:42, 8098.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7692\n", + "7693\n", + "7694\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56362408it [2:06:43, 7966.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7695\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56364801it [2:06:43, 7633.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7696\n", + "7697\n", + "7698\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56371283it [2:06:44, 7522.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7699\n", + "7700\n", + "7701\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56375009it [2:06:44, 7350.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7702\n", + "7703\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56377243it [2:06:45, 7411.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7704\n", + "7705\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56379535it [2:06:45, 7316.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7706\n", + "7707\n", + "7708\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56386473it [2:06:46, 7815.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7709\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56392105it [2:06:47, 7876.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7710\n", + "7711\n", + "7712\n", + "7713\n", + "7714\n", + "7715\n", + "7716\n", + "7717\n", + "7718\n", + "7719\n", + "7720\n", + "7721\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56396181it [2:06:47, 7976.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7722\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56397759it [2:06:47, 7641.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7723\n", + "7724\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56400929it [2:06:48, 7854.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7725\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56427010it [2:06:51, 8221.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7726\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56468472it [2:06:56, 8409.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7727\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56474232it [2:06:57, 7974.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7728\n", + "7729\n", + "7730\n", + "7731\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56476563it [2:06:58, 7347.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7732\n", + "7733\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56484302it [2:06:59, 7331.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7734\n", + "7735\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56489024it [2:06:59, 7943.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7736\n", + "7737\n", + "7738\n", + "7739\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56522132it [2:07:03, 7807.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7740\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56523661it [2:07:04, 7112.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7741\n", + "7742\n", + "7743\n", + "7744\n", + "7745\n", + "7746\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56528007it [2:07:04, 7046.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7747\n", + "7748\n", + "7749\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56529858it [2:07:05, 4993.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7750\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56531631it [2:07:05, 5475.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7751\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56533977it [2:07:05, 6937.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7752\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56545523it [2:07:07, 7798.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7753\n", + "7754\n", + "7755\n", + "7756\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56589960it [2:07:13, 8237.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7757\n", + "7758\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "56590786it [2:07:13, 7425.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7759\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56593569it [2:07:13, 5851.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7760\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56599301it [2:07:14, 7377.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7761\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56606330it [2:07:15, 5601.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7762\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56612843it [2:07:16, 7282.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7763\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56632728it [2:07:20, 8433.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7764\n", + "7765\n", + "7766\n", + "7767\n", + "7768" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56634393it [2:07:20, 8143.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "7769\n", + "7770\n", + "7771\n", + "7772\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56641133it [2:07:21, 8160.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7773\n", + "7774\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56680736it [2:07:26, 7083.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7775\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56683574it [2:07:27, 6957.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7776\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56689235it [2:07:27, 8125.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7777\n", + "7778\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56693312it [2:07:28, 8031.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7779\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56694911it [2:07:28, 7044.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7780\n", + "7781\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56698112it [2:07:29, 7558.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7782\n", + "7783\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56700589it [2:07:29, 7679.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7784\n", + "7785\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56715827it [2:07:31, 6687.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7786\n", + "7787\n", + "7788\n", + "7789\n", + "7790\n", + "7791\n", + "7792\n", + "7793\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56717883it [2:07:31, 6723.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7794\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56719956it [2:07:32, 6514.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7795\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56731086it [2:07:33, 6368.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7796\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56733009it [2:07:34, 5980.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7797\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56739258it [2:07:35, 7292.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7798\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56752227it [2:07:36, 8078.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7799\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56756414it [2:07:37, 8089.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7800\n", + "7801\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56766744it [2:07:38, 8190.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7802\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56775868it [2:07:39, 8049.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7803\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56783438it [2:07:40, 8051.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7804\n", + "7805\n", + "7806\n", + "7807\n", + "7808\n", + "7809\n", + "7810\n", + "7811\n", + "7812\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56792497it [2:07:41, 8062.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7813\n", + "7814\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56794952it [2:07:42, 7550.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7815\n", + "7816\n", + "7817\n", + "7818\n", + "7819\n", + "7820\n", + "7821\n", + "7822\n", + "7823\n", + "7824\n", + "7825\n", + "7826\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56797191it [2:07:42, 7175.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7827\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56819512it [2:07:45, 7685.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7828\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56839369it [2:07:48, 7950.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7829\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56843323it [2:07:48, 7771.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7830\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56872232it [2:07:53, 5059.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7831\n", + "7832\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56883704it [2:07:55, 6677.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7833\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56885799it [2:07:55, 6877.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7834\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56889775it [2:07:56, 5473.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7835\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56907877it [2:07:59, 4240.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7836\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56925950it [2:08:02, 6815.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7837\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56933470it [2:08:04, 6773.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7838\n", + "7839\n", + "7840\n", + "7841\n", + "7842\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56934732it [2:08:04, 4854.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7843\n", + "7844\n", + "7845\n", + "7846\n", + "7847\n", + "7848\n", + "7849\n", + "7850\n", + "7851\n", + "7852\n", + "7853\n", + "7854\n", + "7855\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56940433it [2:08:05, 5110.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7856\n", + "7857\n", + "7858\n", + "7859\n", + "7860\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56941462it [2:08:05, 4308.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7861\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56942983it [2:08:06, 4800.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7862\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56948103it [2:08:06, 6568.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7863\n", + "7864\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56950798it [2:08:07, 6179.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7865\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56954965it [2:08:07, 6871.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7866\n", + "7867\n", + "7868\n", + "7869\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56967307it [2:08:09, 6782.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7870\n", + "7871\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "56972415it [2:08:10, 5893.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7872\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57003543it [2:08:15, 7904.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7873\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57037573it [2:08:19, 6964.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7874\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57046535it [2:08:21, 7319.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7875\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57052257it [2:08:21, 7958.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7876\n", + "7877\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57055528it [2:08:22, 7700.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7878\n", + "7879\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57057111it [2:08:22, 7450.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7880\n", + "7881\n", + "7882\n", + "7883\n", + "7884\n", + "7885\n", + "7886\n", + "7887\n", + "7888\n", + "7889\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57058688it [2:08:22, 7664.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7890\n", + "7891\n", + "7892\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57060247it [2:08:22, 7458.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7893\n", + "7894\n", + "7895\n", + "7896\n", + "7897\n", + "7898\n", + "7899\n", + "7900\n", + "7901\n", + "7902\n", + "7903\n", + "7904\n", + "7905\n", + "7906\n", + "7907\n", + "7908\n", + "7909\n", + "7910\n", + "7911\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57063272it [2:08:23, 6906.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7912\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57070223it [2:08:24, 7298.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7913\n", + "7914\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57073396it [2:08:24, 7711.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7915\n", + "7916\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57081822it [2:08:25, 7717.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7917\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57085885it [2:08:26, 8030.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7918\n", + "7919\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57089229it [2:08:26, 8186.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7920\n", + "7921\n", + "7922\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57100816it [2:08:28, 7567.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7923\n", + "7924\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57103304it [2:08:28, 7805.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7925\n", + "7926\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57106541it [2:08:29, 8028.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7927\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57115083it [2:08:30, 8121.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7928\n", + "7929\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57117236it [2:08:30, 5711.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7930\n", + "7931\n", + "7932\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57129052it [2:08:32, 7728.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7933\n", + "7934\n", + "7935\n", + "7936\n", + "7937\n", + "7938\n", + "7939\n", + "7940\n", + "7941\n", + "7942\n", + "7943\n", + "7944\n", + "7945\n", + "7946\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57134605it [2:08:32, 7855.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7947\n", + "7948\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "57135395it [2:08:33, 7776.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7949\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57161153it [2:08:36, 7483.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7950\n", + "7951\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57167528it [2:08:37, 7686.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7952\n", + "7953\n", + "7954\n", + "7955\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57169918it [2:08:38, 7702.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7956\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57174605it [2:08:38, 7370.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7957\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57179297it [2:08:39, 7547.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7958\n", + "7959\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57180804it [2:08:39, 7035.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7960\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57193635it [2:08:41, 7848.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7961\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57196045it [2:08:41, 7973.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7962\n", + "7963\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57200170it [2:08:42, 8067.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7964\n", + "7965\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57213854it [2:08:43, 8348.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7966\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57220668it [2:08:44, 8400.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7967\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57243921it [2:08:47, 7912.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7968\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57266272it [2:08:50, 8125.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7969\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57299126it [2:08:55, 7350.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7970\n", + "7971\n", + "7972\n", + "7973\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57330145it [2:08:59, 4582.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7974\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57331923it [2:08:59, 5575.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7975\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57353506it [2:09:03, 6721.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7976\n", + "7977\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57411562it [2:09:11, 6125.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7978\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57417978it [2:09:13, 5156.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7979\n", + "7980\n", + "7981\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57421107it [2:09:13, 7306.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7982\n", + "7983\n", + "7984\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57424333it [2:09:13, 7907.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7985\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57450660it [2:09:17, 7918.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7986\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57458331it [2:09:17, 8328.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7987\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57510471it [2:09:24, 8282.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7988\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57531104it [2:09:27, 7989.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7989\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57533537it [2:09:27, 8060.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7990\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57537821it [2:09:27, 8535.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7991\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57544672it [2:09:28, 8383.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7992\n", + "7993\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57556081it [2:09:30, 7352.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7994\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57557508it [2:09:30, 5940.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7995\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57568684it [2:09:32, 6296.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7996\n", + "7997\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57575923it [2:09:34, 3573.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7998\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57580426it [2:09:35, 4962.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7999\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57593824it [2:09:38, 5183.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8000\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57599225it [2:09:39, 3933.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8001\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57600413it [2:09:40, 3585.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8002\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57602182it [2:09:40, 4194.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8003\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57626043it [2:09:44, 6886.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8004\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57630139it [2:09:44, 5037.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8005\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57647707it [2:09:48, 5999.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8006\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57657881it [2:09:49, 6235.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8007\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57666620it [2:09:51, 5881.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8008\n", + "8009\n", + "8010\n", + "8011\n", + "8012\n", + "8013\n", + "8014\n", + "8015\n", + "8016\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57673838it [2:09:52, 6658.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8017\n", + "8018\n", + "8019\n", + "8020\n", + "8021\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57692724it [2:09:55, 7284.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8022\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57695805it [2:09:55, 7640.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8023\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57702546it [2:09:56, 6662.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8024\n", + "8025\n", + "8026\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57746948it [2:10:02, 7695.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8027\n", + "8028\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57751503it [2:10:03, 7223.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8029\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57761124it [2:10:04, 6855.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8030\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57768403it [2:10:05, 6921.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8031\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57822432it [2:10:13, 8120.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8032\n", + "8033\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57826580it [2:10:14, 7674.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8034\n", + "8035\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57836237it [2:10:15, 5597.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8036\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57846001it [2:10:17, 5865.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8037\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57847637it [2:10:18, 4955.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8038\n", + "8039\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57867651it [2:10:20, 8108.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8040\n", + "8041\n", + "8042\n", + "8043\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57900434it [2:10:24, 8083.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8044\n", + "8045\n", + "8046\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57908932it [2:10:25, 8285.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8047\n", + "8048\n", + "8049\n", + "8050\n", + "8051\n", + "8052\n", + "8053\n", + "8054\n", + "8055\n", + "8056" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57910599it [2:10:25, 8133.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "8057\n", + "8058\n", + "8059\n", + "8060\n", + "8061\n", + "8062\n", + "8063\n", + "8064\n", + "8065\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57934117it [2:10:28, 7963.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8066\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57943455it [2:10:29, 8301.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8067\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57954664it [2:10:31, 7423.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8068\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57959691it [2:10:32, 8255.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8069\n", + "8070\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57962232it [2:10:32, 8335.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8071\n", + "8072\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57964716it [2:10:32, 8084.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8073\n", + "8074\n", + "8075\n", + "8076\n", + "8077\n", + "8078\n", + "8079\n", + "8080\n", + "8081\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "57973692it [2:10:33, 7465.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8082\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58020932it [2:10:42, 6444.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8083\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58022377it [2:10:42, 6845.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8084\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58033261it [2:10:44, 6464.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8085\n", + "8086\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58044719it [2:10:45, 8396.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8087\n", + "8088\n", + "8089\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58050302it [2:10:46, 5840.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8090\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58051566it [2:10:47, 6090.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8091\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58059469it [2:10:48, 6535.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8092\n", + "8093\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58065139it [2:10:49, 7313.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8094\n", + "8095\n", + "8096\n", + "8097\n", + "8098\n", + "8099\n", + "8100\n", + "8101\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58095412it [2:10:52, 8436.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8102\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58115578it [2:10:55, 8479.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8103\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58120646it [2:10:56, 8384.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8104\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58131081it [2:10:57, 8425.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8105\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58138898it [2:10:58, 8624.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8106\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58176522it [2:11:02, 8491.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8107\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58182555it [2:11:03, 8498.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8108\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58185169it [2:11:03, 8583.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8109\n", + "8110\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58205714it [2:11:06, 8767.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8111\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58222363it [2:11:07, 8703.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8112\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58265922it [2:11:13, 8675.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8113\n", + "8114\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58285714it [2:11:15, 8482.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8115\n", + "8116\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58288308it [2:11:15, 8492.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8117\n", + "8118\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58300547it [2:11:17, 8781.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8119\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58366277it [2:11:25, 8765.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8120\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58393515it [2:11:28, 8454.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8121\n", + "8122\n", + "8123\n", + "8124\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58399328it [2:11:29, 8111.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8125\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58408099it [2:11:30, 8631.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8126\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58436824it [2:11:33, 7296.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8127\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58438346it [2:11:33, 6250.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8128\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58447978it [2:11:35, 8357.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8129\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58463351it [2:11:36, 7504.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8130\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58473630it [2:11:38, 8711.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8131\n", + "8132\n", + "8133\n", + "8134\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58479911it [2:11:38, 8575.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8135\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58500208it [2:11:41, 8772.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8136\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58504563it [2:11:41, 8024.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8137\n", + "8138\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58507819it [2:11:42, 8056.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8139\n", + "8140\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58513648it [2:11:42, 7811.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8141\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58518540it [2:11:43, 7893.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8142\n", + "8143\n", + "8144\n", + "8145\n", + "8146\n", + "8147\n", + "8148\n", + "8149\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58522564it [2:11:44, 7978.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8150\n", + "8151\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58531785it [2:11:45, 7573.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8152\n", + "8153\n", + "8154\n", + "8155\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58545645it [2:11:46, 8049.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8156\n", + "8157\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58643608it [2:13:04, 7480.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8158\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58648066it [2:13:04, 7066.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8159\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58651090it [2:13:05, 7395.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8160\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58660087it [2:13:06, 7071.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8161\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58662278it [2:13:06, 7029.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8162\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58666658it [2:13:07, 7334.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8163\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58670479it [2:13:07, 7588.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8164\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58700803it [2:13:12, 7341.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8165\n", + "8166\n", + "8167\n", + "8168\n", + "8169\n", + "8170\n", + "8171\n", + "8172\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58715139it [2:13:14, 7483.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8173\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58718889it [2:13:14, 7299.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8174\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58760161it [2:13:20, 7166.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8175\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58762273it [2:13:20, 6737.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8176\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58779412it [2:13:23, 7269.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8177\n", + "8178\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58780889it [2:13:23, 7287.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8179\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58799332it [2:13:26, 7351.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8180\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58811973it [2:13:28, 6725.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8181\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58830685it [2:13:31, 6540.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8182\n", + "8183\n", + "8184\n", + "8185\n", + "8186\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58855991it [2:13:36, 6645.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8187\n", + "8188\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58889414it [2:13:43, 5293.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8189\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58929881it [2:13:49, 7409.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8190\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58947342it [2:13:51, 7187.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8191\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58963467it [2:13:53, 6980.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8192\n", + "8193\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "58990053it [2:13:57, 7249.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8194\n", + "8195\n", + "8196\n", + "8197\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59002690it [2:13:59, 7503.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8198\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59032917it [2:14:04, 5642.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8199\n", + "8200\n", + "8201\n", + "8202\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59061904it [2:14:08, 6269.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8203\n", + "8204\n", + "8205\n", + "8206\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59074178it [2:14:11, 4205.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8207\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59085362it [2:14:13, 5075.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8208\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59090114it [2:14:14, 5339.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8209\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59094976it [2:14:15, 6165.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8210\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59096797it [2:14:16, 5493.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8211\n", + "8212\n", + "8213\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59109560it [2:14:18, 5357.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8214\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59117904it [2:14:19, 6446.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8215\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59128351it [2:14:21, 6110.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8216\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59139103it [2:14:23, 6088.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8217\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59140940it [2:14:23, 5988.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8218\n", + "8219\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59152488it [2:14:26, 5766.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8220\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59191345it [2:14:32, 5528.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8221\n", + "8222\n", + "8223\n", + "8224\n", + "8225\n", + "8226\n", + "8227\n", + "8228\n", + "8229\n", + "8230\n", + "8231\n", + "8232\n", + "8233\n", + "8234\n", + "8235\n", + "8236\n", + "8237\n", + "8238\n", + "8239\n", + "8240\n", + "8241\n", + "8242\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59242654it [2:14:41, 6162.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8243\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59266665it [2:14:47, 3337.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8244\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59277160it [2:14:51, 4754.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8245\n", + "8246\n", + "8247\n", + "8248\n", + "8249\n", + "8250\n", + "8251\n", + "8252\n", + "8253\n", + "8254\n", + "8255\n", + "8256\n", + "8257\n", + "8258\n", + "8259\n", + "8260\n", + "8261\n", + "8262\n", + "8263\n", + "8264\n", + "8265\n", + "8266\n", + "8267\n", + "8268\n", + "8269\n", + "8270\n", + "8271\n", + "8272\n", + "8273\n", + "8274\n", + "8275\n", + "8276\n", + "8277\n", + "8278\n", + "8279\n", + "8280\n", + "8281\n", + "8282\n", + "8283\n", + "8284\n", + "8285\n", + "8286\n", + "8287\n", + "8288\n", + "8289\n", + "8290\n", + "8291\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59278312it [2:14:51, 5140.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8292\n", + "8293\n", + "8294\n", + "8295\n", + "8296\n", + "8297\n", + "8298\n", + "8299\n", + "8300\n", + "8301\n", + "8302\n", + "8303\n", + "8304\n", + "8305\n", + "8306\n", + "8307\n", + "8308\n", + "8309\n", + "8310\n", + "8311\n", + "8312\n", + "8313\n", + "8314\n", + "8315\n", + "8316\n", + "8317\n", + "8318\n", + "8319\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59279711it [2:14:51, 6036.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8320\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59282259it [2:14:52, 6129.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8321\n", + "8322\n", + "8323\n", + "8324\n", + "8325\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59286380it [2:14:52, 6885.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8326\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59290518it [2:14:53, 6790.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8327\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59292642it [2:14:53, 6975.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8328\n", + "8329\n", + "8330\n", + "8331\n", + "8332\n", + "8333\n", + "8334\n", + "8335\n", + "8336\n", + "8337\n", + "8338\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59297857it [2:14:54, 7022.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8339\n", + "8340\n", + "8341\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59306957it [2:14:56, 6014.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8342\n", + "8343\n", + "8344\n", + "8345\n", + "8346\n", + "8347\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59315786it [2:14:57, 5280.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8348\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59321461it [2:14:58, 3655.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8349\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59322883it [2:14:59, 3011.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8350\n", + "8351\n", + "8352\n", + "8353\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59338231it [2:15:03, 3206.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8354\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59354816it [2:15:08, 3049.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8355\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59357788it [2:15:09, 3772.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8356\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59358912it [2:15:09, 3354.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8357\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59360715it [2:15:10, 3271.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8358\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59363977it [2:15:10, 4829.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8359\n", + "8360\n", + "8361\n", + "8362\n", + "8363\n", + "8364\n", + "8365\n", + "8366\n", + "8367\n", + "8368\n", + "8369\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59367119it [2:15:11, 5221.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8370\n", + "8371\n", + "8372\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59368316it [2:15:11, 5542.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8373\n", + "8374\n", + "8375\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59375582it [2:15:12, 6768.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8376\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59377590it [2:15:13, 6611.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8377\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59386315it [2:15:14, 5644.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8378\n", + "8379\n", + "8380\n", + "8381\n", + "8382\n", + "8383\n", + "8384\n", + "8385\n", + "8386\n", + "8387\n", + "8388\n", + "8389\n", + "8390\n", + "8391\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59388175it [2:15:15, 5923.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8392\n", + "8393\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59393626it [2:15:15, 6751.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8394\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59400331it [2:15:16, 6489.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8395\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59417299it [2:15:20, 5029.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8396\n", + "8397\n", + "8398\n", + "8399\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59418793it [2:15:20, 4775.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8400\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59420339it [2:15:21, 5027.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8401\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59423256it [2:15:21, 5636.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8402\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59436337it [2:15:23, 5885.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8403\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59444161it [2:15:24, 5649.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8404\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59450856it [2:15:26, 3837.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8405\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59454932it [2:15:27, 4602.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8406\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59467514it [2:15:32, 5722.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8407\n", + "8408\n", + "8409\n", + "8410\n", + "8411\n", + "8412\n", + "8413\n", + "8414\n", + "8415\n", + "8416\n", + "8417\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "59468094it [2:15:32, 5260.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8418\n", + "8419\n", + "8420\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59470330it [2:15:32, 5452.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8421\n", + "8422\n", + "8423\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59485769it [2:15:35, 7378.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8424\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59488075it [2:15:35, 7107.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8425\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59497366it [2:15:36, 7453.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8426\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59509200it [2:15:38, 7988.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8427\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59513380it [2:15:39, 8104.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8428\n", + "8429\n", + "8430\n", + "8431\n", + "8432\n", + "8433\n", + "8434\n", + "8435\n", + "8436\n", + "8437\n", + "8438\n", + "8439\n", + "8440\n", + "8441\n", + "8442\n", + "8443\n", + "8444\n", + "8445\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59527985it [2:15:40, 8534.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8446\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59529664it [2:15:41, 7756.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8447\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59532065it [2:15:41, 7892.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8448\n", + "8449\n", + "8450\n", + "8451\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59534618it [2:15:41, 8278.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8452\n", + "8453\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59541660it [2:15:42, 8788.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8454\n", + "8455\n", + "8456\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59544314it [2:15:42, 8745.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8457\n", + "8458\n", + "8459\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59547917it [2:15:43, 8848.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8460\n", + "8461\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59554038it [2:15:43, 8611.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8462\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59558422it [2:15:44, 8723.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8463\n", + "8464\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59568861it [2:15:45, 8611.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8465\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59573217it [2:15:46, 8690.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8466\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59585589it [2:15:47, 8643.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8467\n", + "8468\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59597212it [2:15:48, 8795.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8469\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59608202it [2:15:50, 7101.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8470\n", + "8471\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59610460it [2:15:50, 7428.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8472\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59614295it [2:15:51, 7014.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8473\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59691961it [2:16:00, 8592.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8474\n", + "8475\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59701432it [2:16:02, 8794.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8476\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59707632it [2:16:02, 8757.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8477\n", + "8478\n", + "8479\n", + "8480\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59717207it [2:16:04, 6198.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8481\n", + "8482\n", + "8483\n", + "8484\n", + "8485\n", + "8486\n", + "8487\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59750545it [2:16:08, 7814.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8488\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59773631it [2:16:12, 7848.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8489\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59776588it [2:16:12, 6720.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8490\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59799365it [2:16:15, 7224.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8491\n", + "8492\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59815722it [2:16:18, 6819.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8493\n", + "8494\n", + "8495\n", + "8496\n", + "8497\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59828226it [2:16:19, 7830.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8498\n", + "8499\n", + "8500\n", + "8501\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59837548it [2:16:21, 6612.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8502\n", + "8503\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59845906it [2:16:22, 7797.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8504\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59861082it [2:16:24, 8196.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8505\n", + "8506\n", + "8507\n", + "8508\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59876246it [2:16:26, 8213.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8509\n", + "8510\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59880479it [2:16:26, 8245.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8511\n", + "8512\n", + "8513\n", + "8514\n", + "8515\n", + "8516\n", + "8517\n", + "8518\n", + "8519\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59902981it [2:16:29, 8369.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8520\n", + "8521\n", + "8522\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59907432it [2:16:29, 8653.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8523\n", + "8524\n", + "8525\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59923649it [2:16:32, 6258.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8526\n", + "8527\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59931081it [2:16:33, 6159.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8528\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59945848it [2:16:36, 5422.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8529\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59949379it [2:16:37, 7001.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8530\n", + "8531\n", + "8532\n", + "8533\n", + "8534\n", + "8535\n", + "8536\n", + "8537\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59954022it [2:16:37, 7454.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8538\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59981049it [2:16:41, 6793.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8539\n", + "8540\n", + "8541\n", + "8542\n", + "8543\n", + "8544\n", + "8545\n", + "8546\n", + "8547\n", + "8548\n", + "8549\n", + "8550\n", + "8551\n", + "8552\n", + "8553\n", + "8554\n", + "8555\n", + "8556\n", + "8557\n", + "8558\n", + "8559\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "59996072it [2:16:43, 6447.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8560\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60016074it [2:16:46, 7575.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8561\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60019298it [2:16:46, 7810.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8562\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60023426it [2:16:47, 7997.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8563\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60025019it [2:16:47, 7802.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8564\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60033109it [2:16:48, 7791.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8565\n", + "8566\n", + "8567\n", + "8568\n", + "8569\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60036063it [2:16:49, 6852.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8570\n", + "8571\n", + "8572\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60042425it [2:16:49, 7642.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8573\n", + "8574\n", + "8575\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60051250it [2:16:51, 7268.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8576\n", + "8577\n", + "8578\n", + "8579\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60052868it [2:16:51, 6642.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8580\n", + "8581\n", + "8582\n", + "8583\n", + "8584\n", + "8585\n", + "8586\n", + "8587\n", + "8588\n", + "8589\n", + "8590\n", + "8591\n", + "8592\n", + "8593\n", + "8594\n", + "8595\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60066747it [2:16:53, 7701.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8596\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60079153it [2:16:54, 7678.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8597\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60082165it [2:16:55, 7213.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8598\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60088242it [2:16:56, 6993.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8599\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60092785it [2:16:56, 7689.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8600\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60105991it [2:16:58, 7874.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8601\n", + "8602\n", + "8603\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60112112it [2:16:59, 7494.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8604\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60124520it [2:17:00, 8068.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8605\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60127022it [2:17:01, 8003.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8606\n", + "8607\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60135880it [2:17:02, 7739.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8608\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60146114it [2:17:03, 7402.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8609\n", + "8610\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60148352it [2:17:04, 7325.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8611\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60183005it [2:17:08, 8125.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8612\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60187108it [2:17:09, 8133.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8613\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60193711it [2:17:09, 8142.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8614\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60202547it [2:17:11, 7388.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8615\n", + "8616\n", + "8617\n", + "8618\n", + "8619\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60217873it [2:17:13, 7774.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8620\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60222869it [2:17:13, 7941.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8621\n", + "8622\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60224419it [2:17:14, 7508.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8623\n", + "8624\n", + "8625\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60266880it [2:17:19, 8396.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8626\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60274074it [2:17:20, 6699.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8627\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60276381it [2:17:20, 7426.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8628\n", + "8629\n", + "8630\n", + "8631\n", + "8632\n", + "8633\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60291079it [2:17:22, 7034.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8634\n", + "8635\n", + "8636\n", + "8637\n", + "8638\n", + "8639\n", + "8640\n", + "8641\n", + "8642\n", + "8643\n", + "8644\n", + "8645\n", + "8646\n", + "8647\n", + "8648\n", + "8649\n", + "8650\n", + "8651\n", + "8652\n", + "8653\n", + "8654\n", + "8655\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60292536it [2:17:22, 7154.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8656\n", + "8657\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60309656it [2:17:24, 8545.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8658\n", + "8659\n", + "8660\n", + "8661\n", + "8662\n", + "8663\n", + "8664\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60318207it [2:17:25, 8641.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8665\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60324150it [2:17:26, 8211.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8666\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60351317it [2:17:29, 8218.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8667\n", + "8668\n", + "8669\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60352954it [2:17:30, 7883.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8670\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60357896it [2:17:30, 8229.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8671\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60364472it [2:17:31, 7684.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8672\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60369634it [2:17:32, 8311.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8673\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60373050it [2:17:32, 8433.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8674\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60385594it [2:17:34, 8209.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8675\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60401484it [2:17:36, 7973.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8676\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60404758it [2:17:36, 7399.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8677\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60406955it [2:17:37, 7069.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8678\n", + "8679\n", + "8680\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60410062it [2:17:37, 7228.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8681\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60415867it [2:17:38, 6333.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8682\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60420397it [2:17:39, 5761.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8683\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60422911it [2:17:39, 6107.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8684\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60425567it [2:17:40, 6514.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8685\n", + "8686\n", + "8687\n", + "8688\n", + "8689\n", + "8690\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60446598it [2:17:43, 7197.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8691\n", + "8692\n", + "8693\n", + "8694\n", + "8695\n", + "8696\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60451567it [2:17:43, 6624.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8697\n", + "8698\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60456952it [2:17:44, 6015.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8699\n", + "8700\n", + "8701\n", + "8702\n", + "8703\n", + "8704\n", + "8705\n", + "8706\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60459449it [2:17:45, 5911.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8707\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60467554it [2:17:46, 7119.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8708\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60481814it [2:17:48, 7190.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8709\n", + "8710\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60525872it [2:17:54, 7557.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8711\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60529663it [2:17:54, 7501.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8712\n", + "8713\n", + "8714\n", + "8715\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60540735it [2:17:56, 7312.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8716\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60547139it [2:17:57, 7756.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8717\n", + "8718\n", + "8719\n", + "8720\n", + "8721\n", + "8722\n", + "8723\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60550281it [2:17:57, 7432.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8724\n", + "8725\n", + "8726\n", + "8727\n", + "8728\n", + "8729\n", + "8730\n", + "8731\n", + "8732\n", + "8733\n", + "8734\n", + "8735\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60554738it [2:17:58, 7113.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8736\n", + "8737\n", + "8738\n", + "8739\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60571982it [2:18:00, 7028.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8740\n", + "8741\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60592849it [2:18:03, 7408.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8742\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60611883it [2:18:06, 6190.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8743\n", + "8744\n", + "8745\n", + "8746\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60615491it [2:18:06, 6578.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8747\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60619154it [2:18:07, 7001.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8748\n", + "8749\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60641902it [2:18:10, 6646.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8750\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60658194it [2:18:12, 8030.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8751\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60664605it [2:18:13, 7981.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8752\n", + "8753\n", + "8754\n", + "8755\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60667082it [2:18:13, 8038.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8756\n", + "8757\n", + "8758\n", + "8759\n", + "8760\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60686699it [2:18:16, 7861.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8761\n", + "8762\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60689951it [2:18:16, 7809.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8763\n", + "8764\n", + "8765\n", + "8766\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60691643it [2:18:16, 8019.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8767\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60696504it [2:18:17, 7945.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8768\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60698091it [2:18:17, 7847.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8769\n", + "8770\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60703647it [2:18:18, 7239.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8771\n", + "8772\n", + "8773\n", + "8774\n", + "8775\n", + "8776\n", + "8777\n", + "8778\n", + "8779\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60705091it [2:18:18, 7045.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8780\n", + "8781\n", + "8782\n", + "8783\n", + "8784\n", + "8785\n", + "8786\n", + "8787\n", + "8788\n", + "8789\n", + "8790\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60707390it [2:18:18, 7362.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8791\n", + "8792\n", + "8793\n", + "8794\n", + "8795\n", + "8796\n", + "8797\n", + "8798\n", + "8799\n", + "8800\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60708865it [2:18:19, 6872.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8801\n", + "8802\n", + "8803\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60712756it [2:18:19, 7467.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8804\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60725636it [2:18:21, 7617.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8805\n", + "8806\n", + "8807\n", + "8808\n", + "8809\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60729568it [2:18:21, 7737.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8810\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60736725it [2:18:22, 7807.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8811\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60741231it [2:18:23, 7292.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8812\n", + "8813\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60745172it [2:18:23, 7791.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8814\n", + "8815\n", + "8816\n", + "8817\n", + "8818\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60753895it [2:18:24, 7882.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8819\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60780207it [2:18:29, 6214.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8820\n", + "8821\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60788210it [2:18:30, 7193.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8822\n", + "8823\n", + "8824\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60791041it [2:18:30, 6673.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8825\n", + "8826\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60803397it [2:18:32, 6697.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8827\n", + "8828\n", + "8829\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60821205it [2:18:34, 7828.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8830\n", + "8831\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60834777it [2:18:36, 8081.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8832\n", + "8833\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60840432it [2:18:37, 7961.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8834\n", + "8835\n", + "8836\n", + "8837\n", + "8838\n", + "8839\n", + "8840\n", + "8841\n", + "8842\n", + "8843\n", + "8844\n", + "8845\n", + "8846\n", + "8847\n", + "8848" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60841999it [2:18:37, 7311.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "8849\n", + "8850\n", + "8851\n", + "8852\n", + "8853\n", + "8854\n", + "8855\n", + "8856\n", + "8857\n", + "8858\n", + "8859\n", + "8860\n", + "8861\n", + "8862\n", + "8863\n", + "8864\n", + "8865\n", + "8866" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60843467it [2:18:37, 7061.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "8867\n", + "8868\n", + "8869\n", + "8870\n", + "8871\n", + "8872\n", + "8873\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60847259it [2:18:38, 7664.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8874\n", + "8875\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60854632it [2:18:39, 7967.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8876\n", + "8877\n", + "8878\n", + "8879\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60867261it [2:18:40, 6872.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8880\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60875741it [2:18:42, 7883.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8881\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60878048it [2:18:42, 6509.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8882\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60880385it [2:18:42, 7378.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8883\n", + "8884\n", + "8885\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60903582it [2:18:45, 7978.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8886\n", + "8887\n", + "8888\n", + "8889\n", + "8890\n", + "8891\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60905968it [2:18:45, 7872.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8892\n", + "8893\n", + "8894\n", + "8895\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60945702it [2:18:51, 7914.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8896\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "60959005it [2:18:53, 6315.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8897\n", + "8898\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61020435it [2:19:01, 7543.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8899\n", + "8900\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61023406it [2:19:02, 7183.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8901\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61035822it [2:19:03, 7596.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8902\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61048916it [2:19:05, 7164.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8903\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61069008it [2:19:08, 7351.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8904\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61081728it [2:19:10, 7538.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8905\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61086913it [2:19:10, 7271.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8906\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61101358it [2:19:12, 5949.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8907\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61115545it [2:19:14, 7769.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8908\n", + "8909\n", + "8910\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61122210it [2:19:15, 6744.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8911\n", + "8912\n", + "8913\n", + "8914\n", + "8915\n", + "8916\n", + "8917\n", + "8918\n", + "8919\n", + "8920\n", + "8921\n", + "8922\n", + "8923\n", + "8924\n", + "8925\n", + "8926\n", + "8927\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61126303it [2:19:16, 6530.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8928\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61130528it [2:19:17, 6878.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8929\n", + "8930\n", + "8931\n", + "8932\n", + "8933\n", + "8934\n", + "8935\n", + "8936\n", + "8937\n", + "8938\n", + "8939\n", + "8940\n", + "8941\n", + "8942" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61132728it [2:19:17, 7124.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61154860it [2:19:20, 6692.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8943\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61162208it [2:19:22, 6112.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8944\n", + "8945\n", + "8946\n", + "8947\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61163447it [2:19:22, 6075.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8948\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61165962it [2:19:22, 5678.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8949\n", + "8950\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61169254it [2:19:23, 6634.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8951\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61173295it [2:19:23, 6639.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8952\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61176864it [2:19:24, 7089.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8953\n", + "8954\n", + "8955\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61178276it [2:19:24, 6793.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8956\n", + "8957\n", + "8958\n", + "8959\n", + "8960\n", + "8961\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61181151it [2:19:25, 6793.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8962\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61185466it [2:19:25, 7060.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8963\n", + "8964\n", + "8965\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61188421it [2:19:26, 7294.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8966\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61192793it [2:19:26, 6867.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8967\n", + "8968\n", + "8969\n", + "8970\n", + "8971\n", + "8972\n", + "8973\n", + "8974\n", + "8975\n", + "8976\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61204687it [2:19:28, 6513.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8977\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61207222it [2:19:29, 3746.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8978\n", + "8979\n", + "8980\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61211947it [2:19:30, 4178.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8981\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61219521it [2:19:32, 4632.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8982\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61220444it [2:19:32, 4016.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8983\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61230098it [2:19:35, 4860.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8984\n", + "8985\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61247461it [2:19:37, 7239.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8986\n", + "8987\n", + "8988\n", + "8989\n", + "8990\n", + "8991\n", + "8992\n", + "8993\n", + "8994\n", + "8995\n", + "8996\n", + "8997\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61267730it [2:19:40, 7608.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8998\n", + "8999\n", + "9000\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61276009it [2:19:41, 7315.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9001\n", + "9002\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61285251it [2:19:42, 7615.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9003\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61288416it [2:19:43, 7731.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9004\n", + "9005\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61299317it [2:19:44, 7608.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9006\n", + "9007\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61317788it [2:19:47, 6052.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9008\n", + "9009\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61320056it [2:19:47, 7060.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9010\n", + "9011\n", + "9012\n", + "9013\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61340674it [2:19:50, 6327.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9014\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61344971it [2:19:51, 5070.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9015\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61349091it [2:19:52, 5316.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9016\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61350679it [2:19:52, 4963.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9017\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61355581it [2:19:53, 6642.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9018\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61381626it [2:19:57, 7323.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9019\n", + "9020\n", + "9021\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61384858it [2:19:57, 7792.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9022\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61393741it [2:19:59, 7405.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9023\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61401336it [2:20:00, 6937.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9024\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61405762it [2:20:00, 6816.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9025\n", + "9026\n", + "9027\n", + "9028\n", + "9029\n", + "9030\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61407122it [2:20:00, 6574.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9031\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61414894it [2:20:02, 6756.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9032\n", + "9033\n", + "9034\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61416988it [2:20:02, 6815.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9035\n", + "9036\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61419767it [2:20:02, 6883.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9037\n", + "9038\n", + "9039\n", + "9040\n", + "9041\n", + "9042\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61431407it [2:20:04, 6687.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9043\n", + "9044\n", + "9045\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61435170it [2:20:05, 7116.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9046\n", + "9047\n", + "9048\n", + "9049\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61437459it [2:20:05, 7246.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9050\n", + "9051\n", + "9052\n", + "9053\n", + "9054\n", + "9055\n", + "9056\n", + "9057\n", + "9058\n", + "9059\n", + "9060\n", + "9061\n", + "9062\n", + "9063\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61438906it [2:20:05, 7015.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9064\n", + "9065\n", + "9066\n", + "9067\n", + "9068\n", + "9069\n", + "9070\n", + "9071\n", + "9072\n", + "9073\n", + "9074\n", + "9075\n", + "9076\n", + "9077\n", + "9078\n", + "9079\n", + "9080\n", + "9081\n", + "9082\n", + "9083\n", + "9084\n", + "9085\n", + "9086\n", + "9087\n", + "9088\n", + "9089\n", + "9090\n", + "9091\n", + "9092\n", + "9093\n", + "9094\n", + "9095\n", + "9096\n", + "9097\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61440302it [2:20:05, 6519.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9098\n", + "9099\n", + "9100\n", + "9101\n", + "9102\n", + "9103\n", + "9104\n", + "9105\n", + "9106\n", + "9107\n", + "9108\n", + "9109\n", + "9110\n", + "9111\n", + "9112\n", + "9113\n", + "9114\n", + "9115\n", + "9116\n", + "9117\n", + "9118\n", + "9119\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61443209it [2:20:06, 6940.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9120\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61450790it [2:20:07, 7207.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9121\n", + "9122\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61453081it [2:20:07, 7507.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9123\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61454629it [2:20:07, 7621.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9124\n", + "9125\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61456934it [2:20:08, 6859.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9126\n", + "9127\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61474296it [2:20:10, 7041.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9128\n", + "9129\n", + "9130\n", + "9131\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61478078it [2:20:11, 7423.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9132\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61483297it [2:20:11, 7380.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9133\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61489304it [2:20:12, 7541.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9134\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61499772it [2:20:14, 6399.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9135\n", + "9136\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61502242it [2:20:14, 7607.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9137\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61510459it [2:20:15, 5525.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9138\n", + "9139\n", + "9140\n", + "9141\n", + "9142\n", + "9143\n", + "9144\n", + "9145\n", + "9146\n", + "9147\n", + "9148\n", + "9149\n", + "9150\n", + "9151\n", + "9152\n", + "9153\n", + "9154\n", + "9155\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61511571it [2:20:15, 5384.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9156\n", + "9157\n", + "9158\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61517609it [2:20:16, 5802.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9159\n", + "9160\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61536190it [2:20:20, 5801.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9161\n", + "9162\n", + "9163\n", + "9164\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61540948it [2:20:20, 5893.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9165\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61553625it [2:20:23, 5500.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9166\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61575460it [2:20:26, 6055.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9167\n", + "9168\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61580302it [2:20:27, 5967.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9169\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61593240it [2:20:29, 8269.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9170\n", + "9171\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61597467it [2:20:29, 8427.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9172\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61601903it [2:20:30, 8738.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9173\n", + "9174\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61618473it [2:20:32, 8633.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9175\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61628155it [2:20:33, 8572.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9176\n", + "9177\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61636890it [2:20:34, 8139.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9178\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61638520it [2:20:34, 8066.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9179\n", + "9180\n", + "9181\n", + "9182\n", + "9183\n", + "9184\n", + "9185\n", + "9186\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61648488it [2:20:35, 7759.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9187\n", + "9188\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61654320it [2:20:36, 7910.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9189\n", + "9190\n", + "9191\n", + "9192\n", + "9193\n", + "9194\n", + "9195\n", + "9196\n", + "9197\n", + "9198\n", + "9199\n", + "9200\n", + "9201\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61685049it [2:20:40, 7851.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9202\n", + "9203\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61691774it [2:20:41, 7597.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9204\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61705376it [2:20:43, 8187.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9205\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61713707it [2:20:44, 8053.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9206\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61716965it [2:20:44, 7715.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9207\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61720996it [2:20:45, 7947.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9208\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61728678it [2:20:45, 8638.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9209\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61731347it [2:20:46, 8731.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9210\n", + "9211\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61736352it [2:20:46, 7661.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9212\n", + "9213\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61744476it [2:20:47, 8280.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9214\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61752743it [2:20:48, 8239.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9215\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61760868it [2:20:49, 8065.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9216\n", + "9217\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61774742it [2:20:51, 8478.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9218\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61785505it [2:20:53, 7760.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9219\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61789443it [2:20:53, 7482.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9220\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61855062it [2:21:02, 6452.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9221\n", + "9222\n", + "9223\n", + "9224\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61861084it [2:21:03, 8112.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9225\n", + "9226\n", + "9227\n", + "9228\n", + "9229\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61871733it [2:21:05, 8663.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9230\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61889207it [2:21:07, 7657.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9231\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61898101it [2:21:08, 8709.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9232\n", + "9233\n", + "9234\n", + "9235\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "61973421it [2:21:17, 7971.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9236\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62023415it [2:21:25, 5710.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9237\n", + "9238\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62050844it [2:21:29, 6832.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9239\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62077732it [2:21:33, 6750.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9240\n", + "9241\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62090739it [2:21:35, 7515.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9242\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62092241it [2:21:35, 7375.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9243\n", + "9244\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62114394it [2:21:38, 7590.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9245\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62127530it [2:21:40, 6988.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9246\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62149722it [2:21:43, 7256.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9247\n", + "9248\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62185232it [2:21:48, 7444.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9249\n", + "9250\n", + "9251\n", + "9252\n", + "9253\n", + "9254\n", + "9255\n", + "9256\n", + "9257\n", + "9258\n", + "9259\n", + "9260\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62187472it [2:21:48, 7331.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9261\n", + "9262\n", + "9263\n", + "9264\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62188970it [2:21:48, 7374.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9265\n", + "9266\n", + "9267\n", + "9268\n", + "9269" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62190455it [2:21:49, 7331.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62230165it [2:21:54, 7116.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9270\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62232744it [2:21:54, 5862.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9271\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62249605it [2:21:58, 5096.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9272\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62258990it [2:21:59, 5534.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9273\n", + "9274\n", + "9275\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62262406it [2:22:00, 5574.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9276\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62278971it [2:22:03, 6445.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9277\n", + "9278\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62302227it [2:22:07, 5796.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9279\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62306643it [2:22:07, 6027.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9280\n", + "9281\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62340296it [2:22:13, 6648.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9282\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62342238it [2:22:13, 5988.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9283\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62378287it [2:22:19, 6516.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9284\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62409674it [2:22:23, 6601.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9285\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62412893it [2:22:24, 6139.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9286\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62416831it [2:22:24, 6377.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9287\n", + "9288\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62418852it [2:22:25, 6503.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9289\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62430638it [2:22:27, 6230.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9290\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62466476it [2:22:32, 6285.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9291\n", + "9292\n", + "9293\n", + "9294\n", + "9295\n", + "9296\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62471845it [2:22:33, 5886.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9297\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62478376it [2:22:35, 5361.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9298\n", + "9299\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62481846it [2:22:35, 5973.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9300\n", + "9301\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62518868it [2:22:42, 4958.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9302\n", + "9303\n", + "9304\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62524748it [2:22:43, 6038.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9305\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62527409it [2:22:43, 6344.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9306\n", + "9307\n", + "9308\n", + "9309\n", + "9310\n", + "9311\n", + "9312\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62541599it [2:22:45, 6565.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9313\n", + "9314\n", + "9315\n", + "9316\n", + "9317\n", + "9318\n", + "9319\n", + "9320\n", + "9321\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62549064it [2:22:47, 6959.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9322\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62559968it [2:22:48, 7034.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9323\n", + "9324\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62562795it [2:22:49, 6852.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9325\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62572416it [2:22:50, 6557.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9326\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62583066it [2:22:52, 5512.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9327\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62584856it [2:22:52, 5748.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9328\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62588105it [2:22:53, 6486.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9329\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62594609it [2:22:54, 7039.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9330\n", + "9331\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62597312it [2:22:54, 6370.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9332\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62602973it [2:22:55, 6185.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9333\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62613748it [2:22:57, 5941.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9334\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62619112it [2:22:58, 5572.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9335\n", + "9336\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62622372it [2:22:59, 2827.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9337\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62628894it [2:23:02, 5151.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9338\n", + "9339\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62635034it [2:23:03, 6837.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9340\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62644504it [2:23:04, 7388.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9341\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62647526it [2:23:04, 7318.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9342\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62656193it [2:23:06, 6268.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9343\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62675537it [2:23:09, 7795.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9344\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62692726it [2:23:11, 6911.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9345\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62699285it [2:23:12, 6852.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9346\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62705955it [2:23:13, 7504.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9347\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62710823it [2:23:14, 7473.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9348\n", + "9349\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62714916it [2:23:14, 7791.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9350\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62722974it [2:23:15, 8044.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9351\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62726296it [2:23:16, 8159.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9352\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62731018it [2:23:17, 7474.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9353\n", + "9354\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62736322it [2:23:17, 7015.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9355\n", + "9356\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62747634it [2:23:19, 7405.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9357\n", + "9358\n", + "9359\n", + "9360\n", + "9361\n", + "9362\n", + "9363\n", + "9364\n", + "9365\n", + "9366\n", + "9367\n", + "9368\n", + "9369\n", + "9370\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62754938it [2:23:20, 7042.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9371\n", + "9372\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62768564it [2:23:22, 7618.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9373\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62782539it [2:23:23, 7953.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9374\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62786613it [2:23:24, 7857.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9375\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62788150it [2:23:24, 7058.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9376\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62796428it [2:23:25, 8156.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9377\n", + "9378\n", + "9379\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62807387it [2:23:27, 7865.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9380\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62815573it [2:23:28, 7694.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9381\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62818695it [2:23:28, 7648.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9382\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62839680it [2:23:31, 7460.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9383\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62844521it [2:23:32, 7953.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9384\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62849350it [2:23:32, 7241.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9385\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62853974it [2:23:33, 7390.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9386\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62864850it [2:23:34, 7204.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9387\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62867189it [2:23:35, 7290.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9388\n", + "9389\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62880796it [2:23:36, 8042.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9390\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "62881603it [2:23:37, 5168.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9391\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62883499it [2:23:37, 5547.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9392\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62884757it [2:23:37, 5573.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9393\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62895337it [2:23:39, 7004.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9394\n", + "9395\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62897348it [2:23:39, 6029.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9396\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62899970it [2:23:40, 6347.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9397\n", + "9398\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62902601it [2:23:40, 6473.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9399\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62907118it [2:23:41, 7523.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9400\n", + "9401\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62916857it [2:23:42, 8085.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9402\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62918460it [2:23:42, 7739.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9403\n", + "9404\n", + "9405\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62923898it [2:23:43, 7519.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9406\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62929557it [2:23:44, 6774.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9407\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62933600it [2:23:44, 6692.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9408\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62935834it [2:23:45, 7150.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9409\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62948550it [2:23:46, 7604.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9410\n", + "9411\n", + "9412" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62950163it [2:23:46, 7631.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "9413\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62953430it [2:23:47, 7890.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9414\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62975017it [2:23:50, 7925.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9415\n", + "9416\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62986080it [2:23:51, 7702.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9417\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "62990169it [2:23:52, 7855.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9418\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63001882it [2:23:53, 7362.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9419\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63027381it [2:23:57, 8122.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9420\n", + "9421\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63047215it [2:23:59, 7456.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9422\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63049615it [2:24:00, 7711.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9423\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63052730it [2:24:00, 7744.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9424\n", + "9425\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63059731it [2:24:01, 7334.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9426\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63064460it [2:24:02, 7595.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9427\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63067619it [2:24:02, 7709.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9428\n", + "9429\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63075743it [2:24:03, 7773.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9430\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63092268it [2:24:05, 7087.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9431\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63095958it [2:24:06, 7065.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9432\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63103107it [2:24:07, 7642.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9433\n", + "9434\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63106873it [2:24:07, 7427.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9435\n", + "9436\n", + "9437\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63112273it [2:24:08, 7596.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9438\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63114566it [2:24:08, 7488.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9439\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63124307it [2:24:10, 8273.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9440\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63128357it [2:24:10, 7272.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9441\n", + "9442\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63131345it [2:24:11, 7287.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9443\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63137787it [2:24:11, 8017.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9444\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63150230it [2:24:13, 8054.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9445\n", + "9446\n", + "9447\n", + "9448\n", + "9449\n", + "9450\n", + "9451\n", + "9452\n", + "9453\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63157608it [2:24:14, 7162.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9454\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63161434it [2:24:15, 5516.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9455\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63169088it [2:24:16, 4917.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9456\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63170494it [2:24:16, 4200.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9457\n", + "9458\n", + "9459\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63171774it [2:24:17, 3956.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9460\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63175655it [2:24:18, 3817.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9461\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63184759it [2:24:20, 4330.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9462\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63187041it [2:24:21, 3833.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9463\n", + "9464\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63195188it [2:24:22, 5177.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9465\n", + "9466\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63204487it [2:24:24, 8051.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9467\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63208594it [2:24:24, 8134.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9468\n", + "9469\n", + "9470\n", + "9471\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63210984it [2:24:24, 7410.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9472\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63213308it [2:24:25, 7426.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9473\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63220299it [2:24:26, 5956.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9474\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63226852it [2:24:27, 7048.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9475\n", + "9476\n", + "9477\n", + "9478\n", + "9479\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63233078it [2:24:28, 7241.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9480\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63249234it [2:24:30, 6794.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9481\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63252250it [2:24:30, 7120.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9482\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63254339it [2:24:31, 6717.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9483\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63259677it [2:24:32, 7676.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9484\n", + "9485\n", + "9486\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63302766it [2:24:38, 8405.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9487\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63315739it [2:24:40, 7392.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9488\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63324695it [2:24:41, 7888.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9489\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63361632it [2:24:46, 8242.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9490\n", + "9491\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63370061it [2:24:48, 8433.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9492\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63386659it [2:24:50, 7333.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9493\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63417562it [2:24:54, 7842.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9494\n", + "9495\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63426977it [2:24:55, 6841.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9496\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63447030it [2:24:58, 6907.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9497\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63451470it [2:24:58, 7518.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9498\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63490681it [2:25:03, 7321.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9499\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63494392it [2:25:04, 7207.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9500\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63518795it [2:25:07, 6966.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9501\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63520109it [2:25:07, 5367.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9502\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63523653it [2:25:08, 4451.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9503\n", + "9504\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63525589it [2:25:09, 4442.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9505\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63528473it [2:25:09, 4799.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9506\n", + "9507\n", + "9508\n", + "9509\n", + "9510\n", + "9511\n", + "9512\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63534284it [2:25:11, 6361.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9513\n", + "9514\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63536637it [2:25:11, 7330.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9515\n", + "9516\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63539561it [2:25:11, 7077.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9517\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63544933it [2:25:12, 5314.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9518\n", + "9519\n", + "9520\n", + "9521\n", + "9522\n", + "9523\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63548201it [2:25:13, 6546.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9524\n", + "9525\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63577604it [2:25:17, 5902.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9526\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63626048it [2:25:24, 7211.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9527\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63638157it [2:25:25, 7078.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9528\n", + "9529\n", + "9530\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63648018it [2:25:27, 7554.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9531\n", + "9532\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63650275it [2:25:27, 6969.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9533\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63654570it [2:25:27, 8329.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9534\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63678946it [2:25:30, 8261.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9535\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63737758it [2:25:39, 7726.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9536\n", + "9537\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63762615it [2:25:42, 8073.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9538\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63780017it [2:25:44, 7354.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9539\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63788830it [2:25:45, 7347.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9540\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63791746it [2:25:46, 6790.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9541\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63803210it [2:25:48, 6889.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9542\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63822019it [2:25:51, 6484.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9543\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63828753it [2:25:52, 7163.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9544\n", + "9545\n", + "9546\n", + "9547\n", + "9548\n", + "9549\n", + "9550\n", + "9551\n", + "9552\n", + "9553\n", + "9554\n", + "9555\n", + "9556\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63831874it [2:25:52, 7725.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9557\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63833466it [2:25:52, 7662.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9558\n", + "9559\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63840141it [2:25:53, 8154.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9560\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63844429it [2:25:53, 8193.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9561\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63847722it [2:25:54, 8082.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9562\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63852581it [2:25:55, 7916.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9563\n", + "9564\n", + "9565\n", + "9566\n", + "9567\n", + "9568\n", + "9569\n", + "9570\n", + "9571\n", + "9572\n", + "9573\n", + "9574\n", + "9575\n", + "9576\n", + "9577\n", + "9578\n", + "9579\n", + "9580\n", + "9581\n", + "9582\n", + "9583\n", + "9584\n", + "9585\n", + "9586\n", + "9587\n", + "9588\n", + "9589\n", + "9590\n", + "9591\n", + "9592\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63858199it [2:25:55, 7633.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9593\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63863184it [2:25:56, 7866.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9594\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63865604it [2:25:56, 7893.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9595\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63880198it [2:25:58, 5950.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9596\n", + "9597\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63882276it [2:25:59, 6650.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9598\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63886143it [2:25:59, 7821.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9599\n", + "9600\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63902738it [2:26:02, 7038.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9601\n", + "9602\n", + "9603\n", + "9604\n", + "9605\n", + "9606\n", + "9607\n", + "9608\n", + "9609\n", + "9610\n", + "9611\n", + "9612\n", + "9613\n", + "9614\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63908292it [2:26:03, 8054.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9615\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63910698it [2:26:03, 7863.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9616\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63923500it [2:26:05, 7685.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9617\n", + "9618\n", + "9619\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63927588it [2:26:05, 8028.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9620\n", + "9621\n", + "9622\n", + "9623\n", + "9624\n", + "9625\n", + "9626\n", + "9627\n", + "9628\n", + "9629\n", + "9630\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63932498it [2:26:06, 7683.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9631\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63938157it [2:26:07, 6255.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9632\n", + "9633\n", + "9634\n", + "9635\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63941790it [2:26:07, 7151.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9636\n", + "9637\n", + "9638\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63948381it [2:26:08, 7966.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9639\n", + "9640\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63950795it [2:26:09, 7909.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9641\n", + "9642\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63954944it [2:26:09, 8279.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9643\n", + "9644\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63957437it [2:26:09, 8093.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9645\n", + "9646\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63977269it [2:26:12, 8503.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9647\n", + "9648\n", + "9649\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63980770it [2:26:12, 8697.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9650\n", + "9651\n", + "9652\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "63995928it [2:26:14, 8768.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9653\n", + "9654\n", + "9655\n", + "9656\n", + "9657\n", + "9658\n", + "9659\n", + "9660\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64001206it [2:26:14, 8574.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9661\n", + "9662\n", + "9663\n", + "9664\n", + "9665\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64011835it [2:26:16, 6880.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9666\n", + "9667\n", + "9668\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64015995it [2:26:17, 6127.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9669\n", + "9670\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64031898it [2:26:20, 4110.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9671\n", + "9672\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64038452it [2:26:21, 2130.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9673\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64051017it [2:26:28, 3291.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9674\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64054839it [2:26:29, 5217.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9675\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64065651it [2:26:31, 5814.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9676\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64069165it [2:26:31, 5684.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9677\n", + "9678\n", + "9679\n", + "9680\n", + "9681\n", + "9682\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64071180it [2:26:32, 6373.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9683\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64078895it [2:26:33, 6438.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9684\n", + "9685\n", + "9686\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64080168it [2:26:33, 5988.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9687\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64085460it [2:26:34, 5839.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9688\n", + "9689\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64096997it [2:26:35, 7391.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9690\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64103206it [2:26:36, 8023.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9691\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64108146it [2:26:37, 7939.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9692\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64111167it [2:26:37, 7173.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9693\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64113325it [2:26:38, 6736.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9694\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64116683it [2:26:38, 6645.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9695\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64143693it [2:26:42, 8602.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9696\n", + "9697\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64157078it [2:26:43, 7296.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9698\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64160888it [2:26:44, 7383.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9699\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64173277it [2:26:46, 5558.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9700\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64178427it [2:26:46, 8097.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9701\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64180887it [2:26:46, 7933.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9702\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64185076it [2:26:47, 8393.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9703\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64192242it [2:26:48, 6899.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9704\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64226355it [2:26:52, 8644.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9705\n", + "9706\n", + "9707\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64229012it [2:26:52, 8528.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9708\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64231663it [2:26:53, 8467.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9709\n", + "9710\n", + "9711\n", + "9712\n", + "9713\n", + "9714\n", + "9715\n", + "9716\n", + "9717\n", + "9718\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64236018it [2:26:53, 8578.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9719\n", + "9720\n", + "9721\n", + "9722\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64245017it [2:26:54, 9087.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9723\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64258272it [2:26:56, 8316.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9724\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64262733it [2:26:56, 8749.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9725\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64282737it [2:26:59, 8335.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9726\n", + "9727\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64287101it [2:26:59, 8726.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9728\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64289684it [2:27:00, 8486.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9729\n", + "9730\n", + "9731\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64296652it [2:27:00, 8735.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9732\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64324787it [2:27:04, 8526.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9733\n", + "9734\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64329235it [2:27:04, 8074.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9735\n", + "9736\n", + "9737\n", + "9738\n", + "9739\n", + "9740\n", + "9741\n", + "9742\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64333672it [2:27:05, 8737.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9743\n", + "9744\n", + "9745\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64336373it [2:27:05, 8926.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9746\n", + "9747\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64339944it [2:27:05, 8778.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9748\n", + "9749\n", + "9750\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64344429it [2:27:06, 8811.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9751\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64365644it [2:27:08, 7960.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9752\n", + "9753\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64379827it [2:27:10, 8835.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9754\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64393015it [2:27:12, 8758.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9755\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64417668it [2:27:14, 9098.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9756\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64422318it [2:27:15, 8943.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9757\n", + "9758\n", + "9759\n", + "9760\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64472508it [2:27:21, 8723.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9761\n", + "9762\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64482191it [2:27:22, 8743.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9763\n", + "9764\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64484873it [2:27:22, 8842.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9765\n", + "9766\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64491388it [2:27:23, 6775.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9767\n", + "9768\n", + "9769\n", + "9770\n", + "9771\n", + "9772\n", + "9773\n", + "9774\n", + "9775\n", + "9776\n", + "9777\n", + "9778\n", + "9779\n", + "9780\n", + "9781\n", + "9782\n", + "9783\n", + "9784\n", + "9785\n", + "9786\n", + "9787\n", + "9788\n", + "9789\n", + "9790\n", + "9791\n", + "9792\n", + "9793\n", + "9794\n", + "9795\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64499591it [2:27:24, 7762.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9796\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64520334it [2:27:27, 8643.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9797\n", + "9798\n", + "9799\n", + "9800\n", + "9801\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64530851it [2:27:28, 8685.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9802\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64536353it [2:27:28, 9213.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9803\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64544607it [2:27:29, 8995.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9804\n", + "9805\n", + "9806\n", + "9807\n", + "9808\n", + "9809\n", + "9810\n", + "9811\n", + "9812\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64548241it [2:27:30, 9035.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9813\n", + "9814\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64550091it [2:27:30, 8774.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9815\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64554667it [2:27:31, 8884.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9816\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64560756it [2:27:31, 7786.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9817\n", + "9818" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64562399it [2:27:31, 7951.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "9819\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64565101it [2:27:32, 8614.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9820\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64572266it [2:27:33, 9002.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9821\n", + "9822\n", + "9823\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64576750it [2:27:33, 8854.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9824\n", + "9825\n", + "9826\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64582077it [2:27:34, 7793.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9827\n", + "9828\n", + "9829\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64588375it [2:27:35, 7292.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9830\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64591203it [2:27:35, 6751.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9831\n", + "9832\n", + "9833\n", + "9834\n", + "9835\n", + "9836\n", + "9837\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64593468it [2:27:35, 7356.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9838\n", + "9839\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64597763it [2:27:36, 8424.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9840\n", + "9841\n", + "9842\n", + "9843\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64622430it [2:27:39, 9044.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9844\n", + "9845\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64628754it [2:27:39, 8923.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9846\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64633143it [2:27:40, 8617.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9847\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64637567it [2:27:40, 8787.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9848\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64649221it [2:27:42, 8671.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9849\n", + "9850\n", + "9851\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64664956it [2:27:44, 8588.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9852\n", + "9853\n", + "9854\n", + "9855\n", + "9856\n", + "9857\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64671101it [2:27:44, 8752.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9858\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64676184it [2:27:45, 8305.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9859\n", + "9860\n", + "9861\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64686524it [2:27:46, 8505.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9862\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64695369it [2:27:47, 8615.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9863\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64700414it [2:27:48, 8021.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9864\n", + "9865\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64727120it [2:27:52, 7010.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9866\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64729677it [2:27:52, 7952.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9867\n", + "9868\n", + "9869\n", + "9870\n", + "9871\n", + "9872\n", + "9873\n", + "9874\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64758236it [2:27:55, 8958.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9875\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64783227it [2:27:58, 6578.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9876\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64797038it [2:28:01, 8559.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9877\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64804680it [2:28:01, 8473.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9878\n", + "9879\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64829257it [2:28:04, 7814.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9880\n", + "9881\n", + "9882" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64830982it [2:28:05, 8236.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "9883\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64833463it [2:28:05, 8145.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9884\n", + "9885\n", + "9886\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64842835it [2:28:06, 8226.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9887\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64847986it [2:28:07, 8353.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9888\n", + "9889\n", + "9890\n", + "9891\n", + "9892\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64851266it [2:28:07, 7993.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9893\n", + "9894\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64866475it [2:28:09, 6838.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9895\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64879602it [2:28:11, 8074.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9896\n", + "9897\n", + "9898\n", + "9899\n", + "9900\n", + "9901\n", + "9902\n", + "9903\n", + "9904\n", + "9905" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64881214it [2:28:11, 8001.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64886178it [2:28:11, 8281.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9906\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64921850it [2:28:15, 8786.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9907\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64925359it [2:28:16, 8699.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9908\n", + "9909\n", + "9910\n", + "9911\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64929735it [2:28:16, 8653.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9912\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64938494it [2:28:17, 8713.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9913\n", + "9914\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64962777it [2:28:20, 8852.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9915\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64973747it [2:28:21, 8880.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9916\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64995510it [2:28:24, 8968.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9917\n", + "9918\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "64998165it [2:28:24, 8682.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9919\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65030349it [2:28:28, 8170.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9920\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65040734it [2:28:29, 8793.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9921\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65046975it [2:28:30, 8857.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9922\n", + "9923\n", + "9924\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65051516it [2:28:30, 9054.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9925\n", + "9926\n", + "9927\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65073203it [2:28:33, 7591.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9928\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65084907it [2:28:35, 6305.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9929\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65091429it [2:28:35, 8501.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9930\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65103458it [2:28:37, 7838.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9931\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65117598it [2:28:39, 7650.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9932\n", + "9933\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65122051it [2:28:40, 6651.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9934\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65127931it [2:28:40, 8173.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9935\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65133194it [2:28:41, 8629.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9936\n", + "9937\n", + "9938\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65135830it [2:28:41, 8750.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9939\n", + "9940\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65144141it [2:28:43, 3947.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9941\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65146847it [2:28:44, 3582.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9942\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65151029it [2:28:45, 3848.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9943\n", + "9944\n", + "9945\n", + "9946\n", + "9947\n", + "9948\n", + "9949\n", + "9950\n", + "9951\n", + "9952\n", + "9953\n", + "9954\n", + "9955\n", + "9956\n", + "9957\n", + "9958\n", + "9959\n", + "9960\n", + "9961\n", + "9962\n", + "9963\n", + "9964\n", + "9965\n", + "9966\n", + "9967\n", + "9968\n", + "9969\n", + "9970\n", + "9971\n", + "9972\n", + "9973\n", + "9974\n", + "9975\n", + "9976\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65151787it [2:28:45, 3650.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9977\n", + "9978\n", + "9979\n", + "9980\n", + "9981\n", + "9982\n", + "9983\n", + "9984\n", + "9985\n", + "9986\n", + "9987\n", + "9988\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65153532it [2:28:45, 3170.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9989\n", + "9990\n", + "9991\n", + "9992\n", + "9993\n", + "9994\n", + "9995\n", + "9996\n", + "9997\n", + "9998\n", + "9999\n", + "10000\n", + "10001\n", + "10002\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65155309it [2:28:46, 4179.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10003\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65172140it [2:28:50, 3747.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10004\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65175618it [2:28:51, 4928.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10005\n", + "10006\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65209752it [2:28:58, 6652.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10007\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65211277it [2:28:58, 7203.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10008\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65214001it [2:28:59, 5243.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10009\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65217082it [2:29:00, 3912.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10010\n", + "10011\n", + "10012\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65226119it [2:29:02, 4213.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10013\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65231689it [2:29:03, 4832.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10014\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65236969it [2:29:04, 3612.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10015\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65237703it [2:29:04, 3276.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10016\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65247192it [2:29:07, 3916.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10017\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65255573it [2:29:09, 3009.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10018\n", + "10019\n", + "10020\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65256523it [2:29:09, 3093.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10021\n", + "10022\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65288839it [2:29:16, 6550.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10023\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65293075it [2:29:17, 6843.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10024\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65296015it [2:29:17, 7231.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10025\n", + "10026\n", + "10027\n", + "10028\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65341637it [2:29:26, 5758.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10029\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65354837it [2:29:29, 5170.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10030\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65375806it [2:29:33, 7079.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10031\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65379178it [2:29:33, 8194.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10032\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65388768it [2:29:35, 8563.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10033\n", + "10034\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65400244it [2:29:36, 8615.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10035\n", + "10036\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65414343it [2:29:38, 8810.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10037\n", + "10038\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65430855it [2:29:39, 8572.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10039\n", + "10040\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65432606it [2:29:40, 8570.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10041\n", + "10042\n", + "10043\n", + "10044\n", + "10045\n", + "10046\n", + "10047\n", + "10048\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65469135it [2:29:50, 3551.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10049\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65532617it [2:30:06, 8526.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10050\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65540446it [2:30:07, 8139.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10051\n", + "10052\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65549896it [2:30:08, 8019.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10053\n", + "10054\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65555133it [2:30:09, 8508.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10055\n", + "10056\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65558662it [2:30:09, 8680.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10057\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65606867it [2:30:15, 8851.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10058\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65618319it [2:30:16, 8577.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10059\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65620904it [2:30:16, 8438.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10060\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65624406it [2:30:17, 8604.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10061\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65655702it [2:30:20, 8487.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10062\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65662914it [2:30:21, 8880.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10063\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65666504it [2:30:21, 8824.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10064\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65668286it [2:30:22, 8800.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10065\n", + "10066\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65679964it [2:30:23, 8960.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10067\n", + "10068\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65684550it [2:30:24, 9017.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10069\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65696268it [2:30:25, 8939.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10070\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65698970it [2:30:25, 8770.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10071\n", + "10072\n", + "10073\n", + "10074\n", + "10075\n", + "10076\n", + "10077\n", + "10078" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65700723it [2:30:25, 8701.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "10079\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65715054it [2:30:27, 8659.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10080\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65717846it [2:30:27, 9102.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10081\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65721486it [2:30:28, 8731.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10082\n", + "10083\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65725764it [2:30:28, 7437.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10084\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65745069it [2:30:35, 2627.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10085\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65749704it [2:30:38, 1721.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10086\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65757469it [2:30:41, 1414.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10087\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65775734it [2:30:47, 9033.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10088\n", + "10089\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65779416it [2:30:47, 8784.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10090\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65798669it [2:30:49, 8747.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10091\n", + "10092\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65800478it [2:30:50, 8884.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10093\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65808546it [2:30:51, 8812.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10094\n", + "10095\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65811217it [2:30:51, 8751.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10096\n", + "10097\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65813902it [2:30:51, 8864.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10098\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65819238it [2:30:52, 8818.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10099\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65827939it [2:30:53, 8649.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10100\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65835214it [2:30:54, 8700.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10101\n", + "10102\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65840630it [2:30:54, 8786.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10103\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65847787it [2:30:55, 8727.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10104\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65858546it [2:30:56, 8866.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10105\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65867597it [2:30:57, 8996.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10106\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65879343it [2:30:59, 8816.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10107\n", + "10108\n", + "10109\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65899615it [2:31:01, 9138.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10110\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65914070it [2:31:03, 8742.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10111\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65925118it [2:31:04, 8917.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10112\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65931635it [2:31:05, 9366.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10113\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65937190it [2:31:05, 9080.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10114\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65948225it [2:31:06, 9082.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10115\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "65985110it [2:31:11, 9034.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10116\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66001715it [2:31:12, 9002.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10117\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66010018it [2:31:13, 9014.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10118\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66025662it [2:31:15, 9110.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10119\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66038281it [2:31:17, 8806.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10120\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66047440it [2:31:18, 9109.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10121\n", + "10122\n", + "10123\n", + "10124\n", + "10125\n", + "10126\n", + "10127\n", + "10128\n", + "10129\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66060075it [2:31:19, 8845.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10130\n", + "10131\n", + "10132\n", + "10133\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66082563it [2:31:22, 8818.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10134\n", + "10135\n", + "10136\n", + "10137\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66105821it [2:31:24, 8794.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10138\n", + "10139\n", + "10140\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66107556it [2:31:24, 8421.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10141\n", + "10142\n", + "10143\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66110956it [2:31:25, 8384.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10144\n", + "10145\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66118228it [2:31:26, 9105.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10146\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66121872it [2:31:26, 8940.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10147\n", + "10148\n", + "10149\n", + "10150\n", + "10151\n", + "10152\n", + "10153\n", + "10154\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66124573it [2:31:26, 8941.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10155\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66127293it [2:31:27, 9001.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10156\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66130864it [2:31:27, 8620.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10157\n", + "10158\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66140995it [2:31:28, 7765.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10159\n", + "10160\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66169156it [2:31:32, 8171.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10161\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66189708it [2:31:34, 8225.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10162\n", + "10163\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66199638it [2:31:35, 8423.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10164\n", + "10165\n", + "10166\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66213931it [2:31:37, 8397.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10167\n", + "10168\n", + "10169\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66233293it [2:31:39, 7257.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10170\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66244189it [2:31:41, 8103.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10171\n", + "10172\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66251059it [2:31:42, 8662.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10173\n", + "10174\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66263004it [2:31:43, 8152.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10175\n", + "10176\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66267456it [2:31:44, 8759.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10177\n", + "10178\n", + "10179\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66271822it [2:31:44, 8673.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10180\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66318008it [2:31:50, 8701.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10181\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66346242it [2:31:53, 7227.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10182\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66361125it [2:31:55, 8887.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10183\n", + "10184\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66374404it [2:31:56, 8757.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10185\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66378702it [2:31:57, 7908.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10186\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66383113it [2:31:57, 8681.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10187\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66384843it [2:31:57, 8469.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10188\n", + "10189\n", + "10190\n", + "10191\n", + "10192\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66386602it [2:31:58, 8644.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10193\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66400172it [2:31:59, 8905.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10194\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66417448it [2:32:01, 8817.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10195\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66420142it [2:32:01, 8783.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10196\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66423730it [2:32:02, 8933.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10197\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66430026it [2:32:02, 8884.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10198\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66438084it [2:32:03, 8625.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10199\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66451423it [2:32:05, 8370.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10200\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66538177it [2:32:15, 8981.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10201\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66552692it [2:32:16, 8910.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10202\n", + "10203\n", + "10204\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66574330it [2:32:19, 9087.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10205\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66582478it [2:32:20, 8925.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10206\n", + "10207\n", + "10208\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66587856it [2:32:20, 8788.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10209\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66593298it [2:32:21, 8623.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10210\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66701180it [2:32:33, 8719.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10211\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66708184it [2:32:34, 8502.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10212\n", + "10213\n", + "10214\n", + "10215\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66715269it [2:32:35, 8898.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10216\n", + "10217\n", + "10218\n", + "10219\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66734275it [2:32:37, 8684.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10220\n", + "10221\n", + "10222\n", + "10223\n", + "10224\n", + "10225\n", + "10226\n", + "10227\n", + "10228\n", + "10229\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66752047it [2:32:39, 8728.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10230\n", + "10231\n", + "10232\n", + "10233\n", + "10234\n", + "10235\n", + "10236\n", + "10237\n", + "10238\n", + "10239\n", + "10240\n", + "10241\n", + "10242\n", + "10243\n", + "10244\n", + "10245\n", + "10246\n", + "10247\n", + "10248\n", + "10249\n", + "10250\n", + "10251\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66755525it [2:32:40, 8611.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10252\n", + "10253\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66762562it [2:32:41, 8774.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10254\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66788752it [2:32:44, 8835.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10255\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66829692it [2:32:48, 9034.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10256\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66856694it [2:32:51, 8776.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10257\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66892809it [2:32:55, 8642.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10258\n", + "10259\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66906150it [2:32:57, 9059.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10260\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66929645it [2:32:59, 9082.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10261\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66974691it [2:33:04, 9008.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10262\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66978337it [2:33:05, 8926.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10263\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "66989102it [2:33:06, 8885.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10264\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67009844it [2:33:08, 9038.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10265\n", + "10266\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67019900it [2:33:10, 9092.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10267\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67034323it [2:33:11, 8856.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10268\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67072521it [2:33:15, 9105.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10269\n", + "10270\n", + "10271\n", + "10272\n", + "10273\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67090855it [2:33:18, 8931.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10274\n", + "10275\n", + "10276\n", + "10277\n", + "10278\n", + "10279\n", + "10280\n", + "10281\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67101750it [2:33:19, 9032.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10282\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67115631it [2:33:20, 9167.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10283\n", + "10284\n", + "10285\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67120226it [2:33:21, 9107.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10286\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67130266it [2:33:22, 8925.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10287\n", + "10288\n", + "10289\n", + "10290\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67139185it [2:33:23, 8782.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10291\n", + "10292\n", + "10293\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67147241it [2:33:24, 8740.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10294\n", + "10295\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67150910it [2:33:24, 9130.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10296\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67153525it [2:33:25, 7861.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10297\n", + "10298\n", + "10299\n", + "10300\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67156902it [2:33:25, 8220.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10301\n", + "10302\n", + "10303\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67160374it [2:33:25, 8642.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10304\n", + "10305\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67176488it [2:33:27, 9039.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10306\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67186942it [2:33:28, 8481.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10307\n", + "10308\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67191205it [2:33:29, 8174.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10309\n", + "10310\n", + "10311\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67194765it [2:33:29, 8790.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10312\n", + "10313\n", + "10314\n", + "10315\n", + "10316\n", + "10317\n", + "10318\n", + "10319\n", + "10320\n", + "10321\n", + "10322\n", + "10323\n", + "10324\n", + "10325\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67212536it [2:33:31, 8708.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10326\n", + "10327\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67216105it [2:33:32, 8900.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10328\n", + "10329\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67227387it [2:33:33, 7914.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10330\n", + "10331\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67233262it [2:33:34, 8218.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10332\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67235632it [2:33:34, 7287.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10333\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67240702it [2:33:35, 7594.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10334\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67248237it [2:33:36, 8224.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10335\n", + "10336\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67250793it [2:33:36, 8381.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10337\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67253446it [2:33:36, 8583.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10338\n", + "10339\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67267714it [2:33:38, 8739.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10340\n", + "10341\n", + "10342\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67272175it [2:33:39, 8763.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10343\n", + "10344\n", + "10345\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67289900it [2:33:41, 8414.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10346\n", + "10347\n", + "10348" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67292523it [2:33:41, 8624.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "10349\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67295249it [2:33:41, 8980.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10350\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67302414it [2:33:42, 8974.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10351\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67306008it [2:33:42, 8943.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10352\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67308724it [2:33:43, 8874.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10353\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67320279it [2:33:44, 8744.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10354\n", + "10355\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67323735it [2:33:44, 8179.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10356\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67355120it [2:33:48, 9059.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10357\n", + "10358\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67363267it [2:33:49, 8727.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10359\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67373971it [2:33:50, 8664.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10360\n", + "10361\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67388370it [2:33:52, 9081.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10362\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67392900it [2:33:52, 8881.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10363\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67402063it [2:33:53, 8892.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10364\n", + "10365\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67410778it [2:33:54, 8179.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10366\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67436459it [2:33:57, 8962.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10367\n", + "10368\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67445482it [2:33:58, 8614.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10369\n", + "10370\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67449920it [2:33:59, 8728.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10371\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67456238it [2:34:00, 9126.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10372\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67468930it [2:34:01, 8279.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10373\n", + "10374\n", + "10375\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67471458it [2:34:01, 8011.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10376\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67502968it [2:34:05, 8683.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10377\n", + "10378\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67507429it [2:34:06, 8735.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10379\n", + "10380\n", + "10381\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67518415it [2:34:07, 8760.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10382\n", + "10383\n", + "10384\n", + "10385\n", + "10386\n", + "10387\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67532804it [2:34:09, 8668.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10388\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67534634it [2:34:09, 8922.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10389\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67570429it [2:34:13, 8559.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10390\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67582011it [2:34:14, 8880.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10391\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67596378it [2:34:16, 8812.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10392\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67603563it [2:34:17, 8841.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10393\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67607110it [2:34:17, 8429.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10394\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67633376it [2:34:20, 8288.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10395\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67664294it [2:34:24, 8689.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10396\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67667856it [2:34:24, 8741.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10397\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67670555it [2:34:25, 8892.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10398\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67679633it [2:34:26, 8703.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10399\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67696635it [2:34:28, 8176.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10400\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67699949it [2:34:28, 7732.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10401\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67710342it [2:34:29, 8783.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10402\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67721860it [2:34:31, 8649.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10403\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67734411it [2:34:32, 6745.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10404\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67738216it [2:34:33, 6967.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10405\n", + "10406\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67743249it [2:34:34, 8165.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10407\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67747583it [2:34:34, 8221.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10408\n", + "10409\n", + "10410\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67758089it [2:34:35, 8561.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10411\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67762397it [2:34:36, 7447.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10412\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67770502it [2:34:37, 8043.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10413\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67778354it [2:34:38, 8511.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10414\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67790906it [2:34:39, 7824.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10415\n", + "10416\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67818878it [2:34:43, 8745.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10417\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67824933it [2:34:43, 8450.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10418\n", + "10419\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67838952it [2:34:45, 7809.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10420\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67872032it [2:34:49, 8652.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10421\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67887246it [2:34:51, 8373.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10422\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67898775it [2:34:52, 8405.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10423\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67920771it [2:34:55, 8770.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10424\n", + "10425\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67923254it [2:34:55, 7307.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10426\n", + "10427\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67924675it [2:34:55, 6308.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10428\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67930450it [2:34:56, 8027.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10429\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67938718it [2:34:57, 7695.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10430\n", + "10431\n", + "10432\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67950236it [2:34:58, 8590.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10433\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "67980514it [2:35:02, 8846.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10434\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68005225it [2:35:05, 8877.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10435\n", + "10436\n", + "10437\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68017715it [2:35:06, 9024.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10438\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68024840it [2:35:07, 8682.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10439\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68064804it [2:35:12, 8782.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10440\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68068247it [2:35:12, 8003.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10441\n", + "10442\n", + "10443\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68070845it [2:35:12, 8471.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10444\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68086775it [2:35:14, 8761.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10445\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68097383it [2:35:15, 8596.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10446\n", + "10447\n", + "10448\n", + "10449\n", + "10450\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68111530it [2:35:17, 8919.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10451\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68114276it [2:35:17, 9071.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10452\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68121535it [2:35:18, 8965.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10453\n", + "10454\n", + "10455\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68129728it [2:35:19, 9055.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10456\n", + "10457\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68135239it [2:35:20, 9116.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10458\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68137953it [2:35:20, 8577.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10459\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68139770it [2:35:20, 8699.67it/s]Namespace id conflict detected. =User talk:Test919,733,084, <namespace>=0, mapped_namespace=3\n", + "68152678it [2:35:22, 9137.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10460\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68155427it [2:35:22, 8884.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10461\n", + "10462\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68158996it [2:35:22, 8826.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10463\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68190064it [2:35:26, 8750.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10464\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68209864it [2:35:28, 8456.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10465\n", + "10466\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68255584it [2:35:33, 8267.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10467\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68258995it [2:35:34, 8185.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10468\n", + "10469\n", + "10470\n", + "10471\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68267674it [2:35:35, 8759.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10472\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68276649it [2:35:36, 8818.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10473\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68307524it [2:35:39, 8870.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10474\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68321805it [2:35:41, 7949.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10475\n", + "10476\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68330761it [2:35:42, 8876.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10477\n", + "10478\n", + "10479\n", + "10480\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68337110it [2:35:43, 8818.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10481\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68346031it [2:35:44, 8471.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10482\n", + "10483\n", + "10484\n", + "10485\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68369572it [2:35:47, 8860.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10486\n", + "10487\n", + "10488\n", + "10489\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68377552it [2:35:48, 8545.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10490\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68381051it [2:35:48, 8650.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10491\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68383680it [2:35:48, 8438.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10492\n", + "10493\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68388868it [2:35:49, 8647.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10494\n", + "10495\n", + "10496\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68396733it [2:35:50, 8743.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10497\n", + "10498\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68401947it [2:35:50, 8489.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10499\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68428840it [2:35:54, 8756.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10500\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68439335it [2:35:55, 8571.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10501\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68448688it [2:35:56, 8260.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10502\n", + "10503\n", + "10504\n", + "10505\n", + "10506" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68452008it [2:35:56, 8219.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "10507\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68458089it [2:35:57, 8767.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10508\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68461771it [2:35:57, 9054.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10509\n", + "10510\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68463568it [2:35:58, 6873.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10511\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68482142it [2:36:00, 8399.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10512\n", + "10513\n", + "10514\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68496828it [2:36:02, 8117.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10515\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68503170it [2:36:03, 7500.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10516\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68515852it [2:36:04, 7947.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10517\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68524607it [2:36:05, 8716.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10518\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68546527it [2:36:08, 8691.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10519\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68554644it [2:36:09, 8703.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10520\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68578264it [2:36:12, 8232.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10521\n", + "10522" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68580003it [2:36:12, 8463.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "10523\n", + "10524\n", + "10525\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68609445it [2:36:16, 7477.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10526\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68612760it [2:36:16, 8049.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10527\n", + "10528\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68637070it [2:36:19, 7671.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10529\n", + "10530\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68649940it [2:36:21, 8562.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10531\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68656865it [2:36:21, 8681.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10532\n", + "10533\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68661218it [2:36:22, 8491.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10534\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68692005it [2:36:26, 8509.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10535\n", + "10536\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68721128it [2:36:29, 8622.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10537\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68731429it [2:36:30, 8370.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10538\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68750266it [2:36:32, 8559.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10539\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68780639it [2:36:36, 8417.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10540\n", + "10541\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68798734it [2:36:38, 8685.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10542\n", + "10543\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68804914it [2:36:39, 8589.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10544\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68816078it [2:36:40, 8276.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10545\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68820471it [2:36:41, 8769.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10546\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68844855it [2:36:44, 8943.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10547\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68853564it [2:36:45, 8587.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10548\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68860641it [2:36:46, 8680.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10549\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68897231it [2:36:50, 7906.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10550\n", + "10551\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68903948it [2:36:51, 8191.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10552\n", + "10553\n", + "10554\n", + "10555\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68906452it [2:36:51, 8177.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10556\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68931840it [2:36:54, 8869.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10557\n", + "10558\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68941221it [2:36:55, 8125.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10559\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68947222it [2:36:56, 8652.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10560\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "68988704it [2:37:01, 8562.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10561\n", + "10562\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69058275it [2:37:09, 8556.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10563\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69067879it [2:37:10, 8614.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10564\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69111718it [2:37:15, 8616.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10565\n", + "10566\n", + "10567\n", + "10568\n", + "10569\n", + "10570\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69212100it [2:37:27, 8550.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10571\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69214759it [2:37:27, 8785.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10572\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69239697it [2:37:30, 8126.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10573\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69242273it [2:37:30, 8450.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10574\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69250873it [2:37:31, 8538.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10575\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69283340it [2:37:35, 8402.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10576\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69294469it [2:37:37, 8009.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10577\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69319481it [2:37:40, 8560.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10578\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69376009it [2:37:46, 8479.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10579\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69378551it [2:37:46, 8338.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10580\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69410864it [2:37:50, 8561.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10581\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69428697it [2:37:52, 7839.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10582\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69459993it [2:37:56, 8744.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10583\n", + "10584\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69470753it [2:37:57, 8594.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10585\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69473350it [2:37:58, 8189.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10586\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69490329it [2:38:00, 9020.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10587\n", + "10588\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69504483it [2:38:01, 8733.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10589\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69517796it [2:38:03, 8596.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10590\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69525975it [2:38:04, 8766.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10591\n", + "10592\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69543102it [2:38:06, 8155.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10593\n", + "10594\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69600845it [2:38:13, 9009.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10595\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69639783it [2:38:17, 8794.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10596\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69681828it [2:38:22, 8768.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10597\n", + "10598\n", + "10599\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69700119it [2:38:24, 8304.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10600\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69766920it [2:38:32, 8042.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10601\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69770421it [2:38:33, 8627.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10602\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69824449it [2:38:39, 8959.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10603\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69828956it [2:38:39, 8943.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10604\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69839711it [2:38:40, 8780.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10605\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69876389it [2:38:45, 9089.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10606\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69900517it [2:38:47, 8641.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10607\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69904555it [2:39:59, 161.90it/s] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10608\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69908818it [2:40:00, 875.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10609\n", + "10610\n", + "10611\n", + "10612\n", + "10613\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69962984it [2:40:06, 8934.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10614\n", + "10615\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69966539it [2:40:07, 8685.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10616\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69978935it [2:40:08, 8658.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10617\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "69990257it [2:40:09, 8672.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10618\n", + "10619\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70001600it [2:40:11, 8211.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10620\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70012209it [2:40:12, 8787.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10621\n", + "10622\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70043412it [2:40:16, 8752.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10623\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70059622it [2:40:17, 8881.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10624\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70061386it [2:40:18, 8465.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10625\n", + "10626\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70064875it [2:40:18, 8636.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10627\n", + "10628\n", + "10629\n", + "10630\n", + "10631\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70069437it [2:40:19, 8935.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10632\n", + "10633\n", + "10634\n", + "10635\n", + "10636\n", + "10637\n", + "10638\n", + "10639\n", + "10640\n", + "10641\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70071246it [2:40:19, 8867.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10642\n", + "10643\n", + "10644\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70084051it [2:40:20, 8891.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10645\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70086845it [2:40:21, 9143.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10646\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70104443it [2:40:23, 8108.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10647\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70126111it [2:40:25, 8792.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10648\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70136850it [2:40:26, 8965.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10649\n", + "10650\n", + "10651\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70164075it [2:40:29, 9014.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10652\n", + "10653\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70173075it [2:40:30, 8719.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10654\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70194362it [2:40:33, 8625.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10655\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70242105it [2:40:39, 5441.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10656\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70244232it [2:40:40, 6421.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10657\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70252514it [2:40:41, 8455.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10658\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70289749it [2:40:45, 6253.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10659\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70293385it [2:40:46, 3247.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10660\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70302869it [2:40:47, 8218.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10661\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70309000it [2:40:48, 8587.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10662\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70313482it [2:40:49, 8771.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10663\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70317044it [2:40:49, 8829.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10664\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70324987it [2:40:50, 8831.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10665\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70342611it [2:40:52, 8584.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10666\n", + "10667\n", + "10668\n", + "10669\n", + "10670\n", + "10671\n", + "10672\n", + "10673\n", + "10674\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70355949it [2:40:53, 8828.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10675\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70383451it [2:40:57, 8705.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10676\n", + "10677\n", + "10678\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70385323it [2:40:57, 9016.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10679\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70386984it [2:40:57, 5646.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10680\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70395766it [2:40:58, 8137.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10681\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70417078it [2:41:01, 7777.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10682\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70422034it [2:41:02, 7772.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10683\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70444865it [2:41:04, 7967.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10684\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70488131it [2:41:10, 8424.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10685\n", + "10686\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70513431it [2:41:13, 8762.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10687\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70550166it [2:41:17, 8750.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10688\n", + "10689\n", + "10690\n", + "10691\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70580978it [2:41:21, 8473.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10692\n", + "10693\n", + "10694\n", + "10695\n", + "10696\n", + "10697\n", + "10698\n", + "10699\n", + "10700\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70600612it [2:41:23, 9009.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10701\n", + "10702\n", + "10703" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70602404it [2:41:23, 8823.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "10704\n", + "10705\n", + "10706\n", + "10707\n", + "10708\n", + "10709\n", + "10710\n", + "10711\n", + "10712\n", + "10713\n", + "10714\n", + "10715\n", + "10716\n", + "10717\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70613987it [2:41:24, 8942.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10718\n", + "10719\n", + "10720\n", + "10721\n", + "10722\n", + "10723\n", + "10724\n", + "10725\n", + "10726\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70632682it [2:41:27, 8659.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10727\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70659020it [2:41:30, 8559.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10728\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70670965it [2:41:31, 8989.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10729\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70678959it [2:41:32, 8802.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10730\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70786838it [2:41:45, 8855.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10731\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70833019it [2:41:50, 8561.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10732\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70890161it [2:41:57, 9388.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10733\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70930394it [2:42:01, 8920.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10734\n", + "10735\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70960940it [2:42:05, 8845.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10736\n", + "10737\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70990138it [2:42:08, 8862.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10738\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70991940it [2:42:08, 8937.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10739\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70994642it [2:42:09, 8616.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10740\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "70999152it [2:42:09, 8226.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10741\n", + "10742\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71014586it [2:42:11, 9177.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10743\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71021975it [2:42:12, 9000.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10744\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71026585it [2:42:12, 9099.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10745\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71054948it [2:42:15, 8816.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10746\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71082034it [2:42:19, 8869.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10747\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71098091it [2:42:20, 8297.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10748\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71102379it [2:42:21, 8244.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10749\n", + "10750\n", + "10751\n", + "10752\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71117603it [2:42:23, 8899.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10753\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71124928it [2:42:23, 9041.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10754\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71133202it [2:42:24, 9089.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10755\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71140616it [2:42:25, 8995.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10756\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71157217it [2:42:27, 9140.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10757\n", + "10758\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71172200it [2:42:29, 9081.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10759\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71175828it [2:42:29, 9003.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10760\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71192259it [2:42:31, 8711.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10761\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71207520it [2:42:33, 7748.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10762\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71217157it [2:42:34, 8337.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10763\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71247987it [2:42:37, 8841.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10764\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71272220it [2:42:40, 8844.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10765\n", + "10766\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71279322it [2:42:41, 8862.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10767\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71291199it [2:42:42, 9013.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10768\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71300243it [2:42:43, 8791.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10769\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71310181it [2:42:44, 9126.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10770\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71312961it [2:42:45, 9218.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10771\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71326868it [2:42:46, 8776.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10772\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71331442it [2:42:47, 9123.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10773\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71335931it [2:42:47, 8530.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10774\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71353242it [2:42:49, 8908.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10775\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71375009it [2:42:52, 8930.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10776\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71379574it [2:42:52, 8675.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10777\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71385112it [2:42:53, 9164.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10778\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71396193it [2:42:54, 9196.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10779\n", + "10780\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71398943it [2:42:54, 9042.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10781\n", + "10782\n", + "10783\n", + "10784\n", + "10785\n", + "10786\n", + "10787\n", + "10788\n", + "10789\n", + "10790" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71401724it [2:42:55, 9122.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71404499it [2:42:55, 8477.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10791\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71415354it [2:42:56, 8847.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10792\n", + "10793\n", + "10794\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71448788it [2:43:00, 8771.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10795\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71468698it [2:43:02, 8944.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10796\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71478590it [2:43:03, 8987.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10797\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71496464it [2:43:05, 9067.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10798\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71572430it [2:43:14, 9224.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10799\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71575999it [2:43:14, 8697.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10800\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71583033it [2:43:15, 8018.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10801\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71606299it [2:43:18, 8813.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10802\n", + "10803\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71622841it [2:43:20, 8684.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10804\n", + "10805\n", + "10806\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71626469it [2:43:20, 9001.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10807\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71630069it [2:43:21, 8719.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10808\n", + "10809\n", + "10810\n", + "10811\n", + "10812\n", + "10813\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71633618it [2:43:21, 8857.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10814\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71682832it [2:43:26, 9570.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10815\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71722183it [2:43:31, 8000.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10816\n", + "10817\n", + "10818\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71757733it [2:43:35, 8633.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10819\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71780813it [2:43:38, 8862.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10820\n", + "10821\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71806520it [2:43:41, 8864.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10822\n", + "10823\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71809224it [2:43:41, 8952.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10824\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71819083it [2:43:42, 8979.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10825\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71828171it [2:43:44, 8848.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10826\n", + "10827\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71830891it [2:43:44, 8968.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10828\n", + "10829\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71833655it [2:43:44, 8711.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10830\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71839028it [2:43:45, 8767.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10831\n", + "10832\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71876544it [2:43:49, 8541.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10833\n", + "10834\n", + "10835\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71887231it [2:43:50, 8730.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10836\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71902532it [2:43:52, 8903.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10837\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71913370it [2:43:53, 9066.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10838\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71955446it [2:43:59, 7056.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10839\n", + "10840\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71962437it [2:44:00, 8181.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10841\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71978440it [2:44:01, 8881.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10842\n", + "10843\n", + "10844\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "71982005it [2:44:02, 8508.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10845\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72014366it [2:44:05, 8839.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10846\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72024288it [2:44:07, 8992.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10847\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72034914it [2:44:08, 8762.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10848\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72038541it [2:44:08, 8573.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10849\n", + "10850\n", + "10851\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72059770it [2:44:11, 9175.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10852\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72069036it [2:44:12, 9106.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10853\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72087620it [2:44:14, 9058.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10854\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72096743it [2:44:15, 8997.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10855\n", + "10856\n", + "10857\n", + "10858\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72099466it [2:44:15, 8938.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10859\n", + "10860\n", + "10861\n", + "10862\n", + "10863\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72110318it [2:44:16, 8518.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10864\n", + "10865\n", + "10866\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72114860it [2:44:17, 8966.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10867\n", + "10868\n", + "10869\n", + "10870\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72119429it [2:44:17, 9004.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10871\n", + "10872\n", + "10873\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72131172it [2:44:18, 8914.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10874\n", + "10875" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72141744it [2:44:20, 8115.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "10876\n", + "10877\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72144360it [2:44:20, 8516.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10878\n", + "10879\n", + "10880\n", + "10881\n", + "10882\n", + "10883\n", + "10884\n", + "10885\n", + "10886\n", + "10887\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72148781it [2:44:21, 8643.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10888\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72158523it [2:44:22, 8498.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10889\n", + "10890\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72165715it [2:44:23, 8953.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10891\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72171277it [2:44:23, 9141.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10892\n", + "10893\n", + "10894\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72174005it [2:44:24, 8865.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10895\n", + "10896\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72183372it [2:44:25, 9313.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10897\n", + "10898\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72187063it [2:44:25, 9017.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10899\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72215030it [2:44:28, 8398.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10900\n", + "10901\n", + "10902\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72220412it [2:44:29, 8775.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10903\n", + "10904\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72236981it [2:44:31, 9286.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10905\n", + "10906\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72239758it [2:44:31, 9150.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10907\n", + "10908\n", + "10909\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72243475it [2:44:31, 8948.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10910\n", + "10911\n", + "10912\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72247114it [2:44:32, 8909.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10913\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72252717it [2:44:32, 9007.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10914\n", + "10915\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72258135it [2:44:33, 8365.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10916\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72268559it [2:44:34, 8262.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10917\n", + "10918\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72274323it [2:44:35, 8045.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10919\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72280751it [2:44:36, 9088.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10920\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72287048it [2:44:36, 8922.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10921\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72292472it [2:44:37, 8969.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10922\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72306210it [2:44:39, 8960.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10923\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72318142it [2:44:40, 9105.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10924\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72328821it [2:44:41, 8632.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10925\n", + "10926\n", + "10927\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72333459it [2:44:42, 9172.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10928\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72339840it [2:44:42, 8840.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10929\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72346310it [2:44:43, 9024.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10930\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72349960it [2:44:43, 8975.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10931\n", + "10932\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72352664it [2:44:44, 8921.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10933\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72357266it [2:44:44, 9135.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10934\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72374247it [2:44:46, 8655.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10935\n", + "10936\n", + "10937\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72381460it [2:44:47, 8847.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10938\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72384201it [2:44:47, 8974.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10939\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72390526it [2:44:48, 8765.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10940\n", + "10941\n", + "10942\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72405347it [2:44:50, 8610.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10943\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72429176it [2:44:53, 8173.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10944\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72464041it [2:44:56, 9161.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10945\n", + "10946\n", + "10947\n", + "10948\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72500013it [2:45:01, 9112.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10949\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72527346it [2:45:04, 8700.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10950\n", + "10951\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72531697it [2:45:04, 8260.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10952\n", + "10953\n", + "10954\n", + "10955\n", + "10956\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72534237it [2:45:05, 8381.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10957\n", + "10958\n", + "10959\n", + "10960\n", + "10961\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72535986it [2:45:05, 8578.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10962\n", + "10963\n", + "10964\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72551167it [2:45:07, 8798.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10965\n", + "10966\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72553863it [2:45:07, 8819.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10967\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72560959it [2:45:08, 8693.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10968\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72580487it [2:45:10, 8667.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10969\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72586487it [2:45:11, 8434.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10970\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72611774it [2:45:14, 8374.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10971\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72623838it [2:45:15, 8372.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10972\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72625517it [2:45:15, 8222.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10973\n", + "10974\n", + "10975\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72629756it [2:45:16, 8284.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10976\n", + "10977\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72638859it [2:45:17, 9082.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10978\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72653108it [2:45:18, 8646.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10979\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72659294it [2:45:19, 8482.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10980\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72669858it [2:45:20, 8860.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10981\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72677085it [2:45:21, 8473.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10982\n", + "10983\n", + "10984\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72684013it [2:45:22, 8248.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10985\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72688514it [2:45:23, 8924.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10986\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72702222it [2:45:24, 8903.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10987\n", + "10988\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72722105it [2:45:26, 9165.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10989\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72724929it [2:45:27, 9345.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10990\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72735185it [2:45:28, 8899.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10991\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72739703it [2:45:28, 8691.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10992\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72745313it [2:45:29, 9158.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10993\n", + "10994\n", + "10995\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72768412it [2:45:31, 9015.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10996\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72771120it [2:45:32, 8971.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10997\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72819615it [2:45:37, 8664.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10998\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72834574it [2:45:39, 8948.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10999\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72848805it [2:45:41, 8845.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11000\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72852376it [2:45:41, 8851.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11001\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72864969it [2:45:43, 8922.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11002\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72867647it [2:45:43, 8857.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11003\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72889111it [2:45:46, 6302.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11004\n", + "11005\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72898672it [2:45:47, 6365.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11006\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72911921it [2:45:49, 7475.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11007\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72913386it [2:45:49, 6683.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11008\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72927378it [2:45:51, 8897.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11009\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72935571it [2:45:52, 9138.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11010\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72942880it [2:45:53, 9000.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11011\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72948297it [2:45:53, 8985.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11012\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72950176it [2:45:54, 9196.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11013\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72956582it [2:45:54, 8924.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11014\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72960144it [2:45:55, 8792.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11015\n", + "11016\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "72977848it [2:45:57, 8641.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11017\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73002028it [2:45:59, 9030.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11018\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73010140it [2:46:00, 8816.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11019\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73011924it [2:46:01, 8861.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11020\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73040198it [2:46:04, 8106.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11021\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73044111it [2:46:04, 7077.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11022\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73049096it [2:46:05, 6837.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11023\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73053109it [2:46:06, 8141.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11024\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73058569it [2:46:06, 8863.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11025\n", + "11026\n", + "11027\n", + "11028\n", + "11029\n", + "11030\n", + "11031\n", + "11032\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73062157it [2:46:07, 8798.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11033\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73072543it [2:46:08, 7658.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11034\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73088151it [2:46:10, 8859.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11035\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73093496it [2:46:10, 8906.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11036\n", + "11037\n", + "11038\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73132765it [2:46:15, 8191.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11039\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73144837it [2:46:16, 8410.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11040\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73153378it [2:46:17, 8680.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11041\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73156003it [2:46:18, 8416.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11042\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73164865it [2:46:19, 8176.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11043\n", + "11044\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73185222it [2:46:21, 8203.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11045\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73200652it [2:46:23, 8501.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11046\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73206830it [2:46:24, 8787.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11047\n", + "11048\n", + "11049\n", + "11050\n", + "11051\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73210349it [2:46:24, 8048.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11052\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73226167it [2:46:26, 8433.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11053\n", + "11054\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73306179it [2:46:36, 8173.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11055\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73351569it [2:46:41, 8568.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11056\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73371130it [2:46:44, 8434.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11057\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73387510it [2:46:46, 8614.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11058\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73395932it [2:46:47, 7829.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11059\n", + "11060\n", + "11061\n", + "11062\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73403419it [2:46:47, 8495.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11063\n", + "11064\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73448151it [2:46:53, 8598.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11065\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73451723it [2:46:53, 8681.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11066\n", + "11067\n", + "11068\n", + "11069\n", + "11070\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73476683it [2:46:56, 8869.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11071\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73488042it [2:46:57, 8831.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11072\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73494394it [2:46:58, 9086.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11073\n", + "11074\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73536563it [2:47:03, 8856.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11075\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73560484it [2:47:06, 8067.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11076\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73575543it [2:47:08, 8646.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11077\n", + "11078\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73601024it [2:47:10, 8647.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11079\n", + "11080\n", + "11081\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73607960it [2:47:11, 8576.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11082\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73614075it [2:47:12, 8584.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11083\n", + "11084\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73622964it [2:47:13, 8460.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11085\n", + "11086\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73624713it [2:47:13, 8573.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11087\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73640559it [2:47:15, 8559.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11088\n", + "11089\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73651885it [2:47:16, 8502.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11090\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73666370it [2:47:18, 9027.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11091\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73679212it [2:47:19, 8908.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11092\n", + "11093\n", + "11094\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73691674it [2:47:21, 8537.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11095\n", + "11096\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73705079it [2:47:22, 8731.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11097\n", + "11098\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73716705it [2:47:24, 8434.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11099\n", + "11100\n", + "11101\n", + "11102\n", + "11103\n", + "11104\n", + "11105\n", + "11106\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73724617it [2:47:25, 8588.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11107\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73738277it [2:47:26, 9078.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11108\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73740087it [2:47:26, 8334.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11109\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73756008it [2:47:29, 8044.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11110\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73765837it [2:47:31, 5585.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11111\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73766960it [2:47:31, 5136.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11112\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73768005it [2:47:32, 5036.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11113\n", + "11114\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73787185it [2:47:36, 8224.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11115\n", + "11116\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73788933it [2:47:36, 8444.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11117\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73794814it [2:47:37, 7867.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11118\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73820332it [2:47:40, 8492.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11119\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73859567it [2:47:45, 8941.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11120\n", + "11121\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73873054it [2:47:46, 7771.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11122\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73894327it [2:47:49, 7488.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11123\n", + "11124\n", + "11125\n", + "11126\n", + "11127\n", + "11128\n", + "11129\n", + "11130\n", + "11131\n", + "11132\n", + "11133\n", + "11134\n", + "11135\n", + "11136\n", + "11137\n", + "11138\n", + "11139\n", + "11140\n", + "11141\n", + "11142\n", + "11143\n", + "11144\n", + "11145\n", + "11146\n", + "11147\n", + "11148\n", + "11149\n", + "11150\n", + "11151\n", + "11152\n", + "11153\n", + "11154\n", + "11155\n", + "11156\n", + "11157\n", + "11158\n", + "11159\n", + "11160\n", + "11161\n", + "11162\n", + "11163\n", + "11164\n", + "11165\n", + "11166\n", + "11167\n", + "11168\n", + "11169\n", + "11170\n", + "11171\n", + "11172\n", + "11173\n", + "11174\n", + "11175\n", + "11176\n", + "11177\n", + "11178\n", + "11179\n", + "11180\n", + "11181\n", + "11182\n", + "11183\n", + "11184\n", + "11185\n", + "11186\n", + "11187\n", + "11188\n", + "11189\n", + "11190\n", + "11191\n", + "11192\n", + "11193\n", + "11194\n", + "11195\n", + "11196\n", + "11197\n", + "11198\n", + "11199\n", + "11200\n", + "11201\n", + "11202\n", + "11203\n", + "11204\n", + "11205\n", + "11206\n", + "11207\n", + "11208\n", + "11209\n", + "11210\n", + "11211\n", + "11212\n", + "11213\n", + "11214\n", + "11215\n", + "11216\n", + "11217\n", + "11218\n", + "11219\n", + "11220\n", + "11221\n", + "11222\n", + "11223\n", + "11224\n", + "11225\n", + "11226\n", + "11227\n", + "11228\n", + "11229\n", + "11230\n", + "11231\n", + "11232\n", + "11233\n", + "11234\n", + "11235\n", + "11236\n", + "11237\n", + "11238\n", + "11239\n", + "11240\n", + "11241\n", + "11242\n", + "11243\n", + "11244\n", + "11245\n", + "11246\n", + "11247\n", + "11248\n", + "11249\n", + "11250\n", + "11251\n", + "11252\n", + "11253\n", + "11254\n", + "11255\n", + "11256\n", + "11257\n", + "11258\n", + "11259\n", + "11260\n", + "11261\n", + "11262\n", + "11263\n", + "11264\n", + "11265\n", + "11266\n", + "11267\n", + "11268\n", + "11269\n", + "11270\n", + "11271\n", + "11272\n", + "11273\n", + "11274\n", + "11275\n", + "11276\n", + "11277\n", + "11278\n", + "11279\n", + "11280\n", + "11281\n", + "11282\n", + "11283\n", + "11284\n", + "11285\n", + "11286\n", + "11287\n", + "11288" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73895984it [2:47:49, 7761.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "11289\n", + "11290\n", + "11291\n", + "11292\n", + "11293\n", + "11294\n", + "11295\n", + "11296\n", + "11297\n", + "11298\n", + "11299\n", + "11300\n", + "11301\n", + "11302\n", + "11303\n", + "11304\n", + "11305\n", + "11306\n", + "11307\n", + "11308\n", + "11309\n", + "11310\n", + "11311\n", + "11312\n", + "11313\n", + "11314\n", + "11315\n", + "11316\n", + "11317\n", + "11318\n", + "11319\n", + "11320\n", + "11321\n", + "11322\n", + "11323\n", + "11324\n", + "11325\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73898591it [2:47:49, 8343.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11326\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73901369it [2:47:50, 8906.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11327\n", + "11328\n", + "11329\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73933835it [2:47:53, 8349.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11330\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73936252it [2:47:54, 7593.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11331\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73939555it [2:47:54, 8207.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11332\n", + "11333\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73959804it [2:47:57, 8333.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11334\n", + "11335\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73984981it [2:48:00, 8579.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11336\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73987585it [2:48:00, 8642.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11337\n", + "11338\n", + "11339\n", + "11340\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "73994770it [2:48:01, 8993.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11341\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74002039it [2:48:02, 8714.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11342\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74005517it [2:48:02, 8521.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11343\n", + "11344\n", + "11345\n", + "11346\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74024598it [2:48:04, 8242.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11347\n", + "11348\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74038023it [2:48:06, 9066.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11349\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74049035it [2:48:07, 9029.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11350\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74064575it [2:48:09, 9102.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11351\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74068234it [2:48:09, 9038.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11352\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74097183it [2:48:12, 8525.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11353\n", + "11354\n", + "11355\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74099829it [2:48:13, 8651.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11356\n", + "11357\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74104415it [2:48:13, 9043.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11358\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74109880it [2:48:14, 8709.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11359\n", + "11360\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74123017it [2:48:15, 9191.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11361\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74163343it [2:48:20, 8209.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11362\n", + "11363\n", + "11364\n", + "11365\n", + "11366\n", + "11367\n", + "11368\n", + "11369\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74174055it [2:48:21, 7370.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11370\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74176479it [2:48:22, 7831.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11371\n", + "11372\n", + "11373\n", + "11374\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74194315it [2:48:24, 8587.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11375\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74198610it [2:48:24, 8509.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11376\n", + "11377\n", + "11378\n", + "11379" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74201177it [2:48:25, 8467.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74205433it [2:48:25, 8094.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11380\n", + "11381\n", + "11382\n", + "11383\n", + "11384\n", + "11385\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74211559it [2:48:26, 8752.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11386\n", + "11387\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74216881it [2:48:26, 8650.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11388\n", + "11389\n", + "11390\n", + "11391\n", + "11392\n", + "11393\n", + "11394\n", + "11395\n", + "11396\n", + "11397\n", + "11398\n", + "11399\n", + "11400\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74231488it [2:48:28, 8174.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11401\n", + "11402\n", + "11403\n", + "11404\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74234162it [2:48:28, 8649.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11405\n", + "11406\n", + "11407\n", + "11408\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74237704it [2:48:29, 8483.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11409\n", + "11410\n", + "11411\n", + "11412\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74241211it [2:48:29, 8627.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11413\n", + "11414\n", + "11415\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74243840it [2:48:30, 8479.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11416\n", + "11417\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74248025it [2:48:30, 7796.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11418\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74251364it [2:48:31, 8205.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11419\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74261479it [2:48:32, 8212.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11420\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74267526it [2:48:33, 8593.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11421\n", + "11422\n", + "11423\n", + "11424\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74270173it [2:48:33, 8146.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11425\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74273393it [2:48:33, 7776.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11426\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74284073it [2:48:35, 8268.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11427\n", + "11428\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74296867it [2:48:36, 8682.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11429\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74301318it [2:48:37, 8711.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11430\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74310935it [2:48:38, 8851.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11431\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74324020it [2:48:39, 8278.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11432\n", + "11433\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74326482it [2:48:40, 8085.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11434\n", + "11435\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74346084it [2:48:42, 7948.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11436\n", + "11437\n", + "11438\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74361986it [2:48:44, 8166.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11439\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74386237it [2:48:49, 6624.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11440\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74408419it [2:48:51, 8561.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11441\n", + "11442\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74418704it [2:48:52, 8247.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11443\n", + "11444\n", + "11445\n", + "11446\n", + "11447\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74421314it [2:48:53, 8568.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11448\n", + "11449\n", + "11450\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74429979it [2:48:54, 8436.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11451\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74434945it [2:48:54, 8091.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11452\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74436580it [2:48:55, 8065.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11453\n", + "11454\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74439091it [2:48:55, 8156.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11455\n", + "11456\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74440755it [2:48:55, 8224.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11457\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74444148it [2:48:56, 8395.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11458\n", + "11459\n", + "11460\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74449424it [2:48:56, 8456.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11461\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74465016it [2:48:59, 7469.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11462\n", + "11463\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74468821it [2:49:00, 5257.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11464\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74483379it [2:49:02, 8490.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11465\n", + "11466\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74486784it [2:49:02, 8422.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11467\n", + "11468\n", + "11469\n", + "11470\n", + "11471\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74499783it [2:49:03, 7665.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11472\n", + "11473\n", + "11474\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74514021it [2:49:05, 8070.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11475\n", + "11476\n", + "11477\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74521924it [2:49:06, 8847.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11478\n", + "11479\n", + "11480\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74523705it [2:49:06, 8872.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11481\n", + "11482\n", + "11483\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74532461it [2:49:08, 8093.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11484\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74540399it [2:49:08, 8864.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11485\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74552974it [2:49:10, 8807.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11486\n", + "11487\n", + "11488\n", + "11489\n", + "11490\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74555635it [2:49:10, 8605.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11491\n", + "11492\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74565030it [2:49:11, 8362.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11493\n", + "11494\n", + "11495\n", + "11496\n", + "11497\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74566731it [2:49:11, 8428.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11498\n", + "11499\n", + "11500\n", + "11501\n", + "11502\n", + "11503\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74570978it [2:49:12, 6981.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11504\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74580143it [2:49:14, 5560.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11505\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74633908it [2:49:21, 7589.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11506\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74666877it [2:49:25, 8144.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11507\n", + "11508\n", + "11509\n", + "11510\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74679180it [2:49:26, 8788.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11511\n", + "11512\n", + "11513\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74704896it [2:49:29, 8848.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11514\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74725253it [2:49:32, 7940.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11515\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74736422it [2:49:33, 7594.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11516\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74745486it [2:49:35, 6756.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11517\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74751387it [2:49:35, 8075.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11518\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74757185it [2:49:36, 7177.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11519\n", + "11520\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74759763it [2:49:36, 8040.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11521\n", + "11522\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74786423it [2:49:39, 8508.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11523\n", + "11524\n", + "11525\n", + "11526\n", + "11527\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74806078it [2:49:42, 8707.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11528\n", + "11529\n", + "11530\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74810558it [2:49:42, 8942.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11531\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74813230it [2:49:43, 8788.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11532\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74817679it [2:49:43, 8504.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11533\n", + "11534\n", + "11535\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74830651it [2:49:45, 8654.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11536\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74864200it [2:49:49, 8600.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11537\n", + "11538\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74879931it [2:49:50, 8640.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11539\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74951046it [2:49:59, 8373.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11540\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74959553it [2:50:00, 8015.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11541\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74980832it [2:50:03, 8339.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11542\n", + "11543\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "74994250it [2:50:04, 8474.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11544\n", + "11545\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75004799it [2:50:06, 8454.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11546\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75014242it [2:50:07, 8551.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11547\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75035516it [2:50:09, 8935.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11548\n", + "11549\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75048760it [2:50:11, 8573.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11550\n", + "11551\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75088834it [2:50:16, 8364.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11552\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75093091it [2:50:16, 8323.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11553\n", + "11554\n", + "11555\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75131737it [2:50:21, 8684.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11556\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75134407it [2:50:21, 8694.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11557\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75149464it [2:50:23, 8871.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11558\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75223910it [2:50:31, 8459.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11559\n", + "11560\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75239539it [2:50:33, 8409.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11561\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75243845it [2:50:34, 8079.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11562\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75281824it [2:50:38, 8772.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11563\n", + "11564\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75298496it [2:50:40, 8587.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11565\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75318465it [2:50:42, 8360.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11566\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75323764it [2:50:43, 8803.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11567\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75388236it [2:50:50, 8701.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11568\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75407839it [2:50:53, 9057.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11569\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75439370it [2:50:56, 8554.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11570\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75452853it [2:50:58, 9008.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11571\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75482283it [2:51:01, 8451.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11572\n", + "11573\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75495827it [2:51:03, 8871.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11574\n", + "11575\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75500261it [2:51:03, 8841.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11576\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75504805it [2:51:04, 8959.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11577\n", + "11578\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75520499it [2:51:06, 8642.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11579\n", + "11580\n", + "11581\n", + "11582\n", + "11583\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75526781it [2:51:06, 8797.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11584\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75543560it [2:51:08, 8678.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11585\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75550751it [2:51:09, 8829.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11586\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75558908it [2:51:10, 8853.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11587\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75572018it [2:51:12, 4668.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11588\n", + "11589\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75608912it [2:51:18, 8263.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11590\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75617227it [2:51:19, 8130.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11591\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75624257it [2:51:20, 7782.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11592\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75637296it [2:51:21, 8772.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11593\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75664692it [2:51:25, 8663.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11594\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75739040it [2:51:33, 8095.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11595\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75750075it [2:51:35, 8354.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11596\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75763267it [2:51:36, 8739.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11597\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75765928it [2:51:36, 8778.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11598\n", + "11599\n", + "11600\n", + "11601\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75769302it [2:51:37, 7224.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11602\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75790682it [2:51:40, 8427.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11603\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75838583it [2:51:45, 8348.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11604\n", + "11605\n", + "11606\n", + "11607\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75871731it [2:51:49, 8480.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11608\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75918452it [2:51:55, 8679.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11609\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75923726it [2:51:55, 8667.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11610\n", + "11611\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75954127it [2:51:59, 7968.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11612\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "75960698it [2:52:00, 8276.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11613\n", + "11614\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76092057it [2:52:15, 8499.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11615\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76181363it [2:52:25, 8267.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11616\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76189268it [2:52:26, 8741.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11617\n", + "11618\n", + "11619\n", + "11620\n", + "11621\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76198161it [2:52:27, 8737.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11622\n", + "11623\n", + "11624\n", + "11625\n", + "11626\n", + "11627\n", + "11628\n", + "11629\n", + "11630\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76265836it [2:52:37, 7110.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11631\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76294640it [2:52:41, 8268.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11632\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76332461it [2:52:45, 8546.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11633\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76343734it [2:52:46, 8521.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11634\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76372475it [2:52:50, 8634.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11635\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76377791it [2:52:50, 8827.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11636\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76401801it [2:52:53, 8727.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11637\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76412778it [2:52:54, 8035.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11638\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76416070it [2:52:55, 8174.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11639\n", + "11640\n", + "11641\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76441210it [2:52:58, 8843.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11642\n", + "11643\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76476050it [2:53:02, 8916.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11644\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76477851it [2:53:02, 8964.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11645\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76486833it [2:53:03, 8826.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11646\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76512108it [2:53:06, 9046.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11647\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76519231it [2:53:07, 8797.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11648\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76546649it [2:53:10, 8670.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11649\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76574010it [2:53:13, 8736.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11650\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76579202it [2:53:13, 8272.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11651\n", + "11652\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76593374it [2:53:15, 9033.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11653\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76610065it [2:53:17, 8584.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11654\n", + "11655\n", + "11656\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76638214it [2:53:20, 8928.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11657\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76651787it [2:53:22, 8922.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11658\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76677496it [2:53:25, 9108.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11659\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76703407it [2:53:27, 8653.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11660\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76712823it [2:53:29, 8641.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11661\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76734590it [2:53:31, 7923.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11662\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76796289it [2:53:39, 8431.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11663\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76817898it [2:53:41, 9027.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11664\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76856389it [2:53:46, 8802.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11665\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76898254it [2:53:50, 9014.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11666\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76934144it [2:53:55, 8870.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11667\n", + "11668\n", + "11669\n", + "11670\n", + "11671\n", + "11672\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76977687it [2:54:00, 8614.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11673\n", + "11674\n", + "11675\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "76995500it [2:54:02, 8899.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11676\n", + "11677\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77059994it [2:54:09, 8824.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11678\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77135087it [2:54:17, 8762.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11679\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77143044it [2:54:18, 8682.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11680\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77191543it [2:54:24, 8677.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11681\n", + "11682\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77195071it [2:54:24, 8699.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11683\n", + "11684\n", + "11685\n", + "11686\n", + "11687\n", + "11688" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77197742it [2:54:25, 8836.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77215523it [2:54:27, 8970.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11689\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77239909it [2:54:30, 8795.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11690\n", + "11691\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77278076it [2:54:34, 8758.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11692\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77309661it [2:54:38, 8904.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11693\n", + "11694\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77339230it [2:54:41, 8834.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11695\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77343754it [2:54:42, 8944.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11696\n", + "11697\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77348247it [2:54:42, 8786.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11698\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77365903it [2:54:44, 8648.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11699\n", + "11700\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77367659it [2:54:44, 8701.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11701\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77372048it [2:54:45, 8588.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11702\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77394725it [2:54:47, 8643.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11703\n", + "11704\n", + "11705\n", + "11706\n", + "11707\n", + "11708\n", + "11709\n", + "11710\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77407063it [2:54:49, 8364.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11711\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77446052it [2:54:53, 8663.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11712\n", + "11713\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77452988it [2:54:54, 8625.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11714\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77475208it [2:54:57, 8828.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11715\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77494098it [2:54:59, 8795.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11716\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77505744it [2:55:00, 8743.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11717\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77523670it [2:55:02, 9055.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11718\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77546521it [2:55:05, 8813.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11719\n", + "11720\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77550931it [2:55:05, 8675.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11721\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77571051it [2:55:08, 8466.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11722\n", + "11723\n", + "11724\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77617148it [2:55:13, 8773.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11725\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77626642it [2:55:14, 8417.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11726\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77630165it [2:55:15, 8748.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11727\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77672021it [2:55:19, 8670.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11728\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77719585it [2:55:25, 8890.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11729\n", + "11730\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77722276it [2:55:25, 8753.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11731\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77784974it [2:55:33, 6544.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11732\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77787715it [2:55:33, 5668.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11733\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77824713it [2:55:38, 8032.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11734\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77851257it [2:55:41, 8641.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11735\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77855632it [2:55:42, 8656.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11736\n", + "11737\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77863469it [2:55:43, 8366.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11738\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77903719it [2:55:48, 8518.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11739\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77910734it [2:55:48, 8603.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11740\n", + "11741\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77916859it [2:55:49, 8535.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11742\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77921316it [2:55:50, 8912.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11743\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77927439it [2:55:50, 7981.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11744\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77930875it [2:55:51, 8195.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11745\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77936024it [2:55:51, 8600.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11746\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77939500it [2:55:52, 8503.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11747\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77947658it [2:55:53, 8811.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11748\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77958264it [2:55:54, 8655.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11749\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77981484it [2:55:57, 8765.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11750\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "77993938it [2:55:58, 8515.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11751\n", + "11752\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78005282it [2:55:59, 8712.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11753\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78048979it [2:56:04, 8539.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11754\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78061304it [2:56:06, 8641.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11755\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78072877it [2:56:07, 8559.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11756\n", + "11757\n", + "11758\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78080141it [2:56:08, 8910.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11759\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78085412it [2:56:09, 8473.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11760\n", + "11761\n", + "11762\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78090664it [2:56:09, 8683.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11763\n", + "11764\n", + "11765\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78124681it [2:56:13, 8698.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11766\n", + "11767\n", + "11768\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78134972it [2:56:14, 8643.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11769\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78154616it [2:56:17, 8822.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11770\n", + "11771\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78156380it [2:56:17, 8697.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11772\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78160721it [2:56:17, 8565.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11773\n", + "11774\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78166018it [2:56:18, 8751.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11775\n", + "11776\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78181093it [2:56:20, 8781.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11777\n", + "11778\n", + "11779\n", + "11780\n", + "11781\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78193642it [2:56:21, 8600.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11782\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78202585it [2:56:22, 8801.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11783\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78206087it [2:56:22, 8679.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11784\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78227884it [2:56:25, 8632.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11785\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78243809it [2:56:27, 8686.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11786\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78273744it [2:56:30, 8738.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11787\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78294185it [2:56:33, 8525.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11788\n", + "11789\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78303780it [2:56:34, 8279.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11790\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78318864it [2:56:36, 8670.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11791\n", + "11792\n", + "11793\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78323208it [2:56:36, 8595.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11794\n", + "11795\n", + "11796\n", + "11797\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78411998it [2:56:46, 8850.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11798\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78422555it [2:56:48, 8794.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11799\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78424319it [2:56:48, 8793.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11800\n", + "11801\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78429579it [2:56:48, 8440.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11802\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78490602it [2:56:56, 8568.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11803\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78493279it [2:56:57, 8734.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11804\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78503686it [2:56:58, 7877.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11805\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78524316it [2:57:00, 8970.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11806\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78530624it [2:57:01, 8471.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11807\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78563171it [2:57:05, 8908.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11808\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78583679it [2:57:07, 8694.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11809\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78642391it [2:57:14, 8681.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11810\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78662417it [2:57:17, 6567.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11811\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78739332it [2:57:25, 8706.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11812\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78767987it [2:57:29, 8816.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11813\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78775079it [2:57:29, 8737.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11814\n", + "11815\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78856776it [2:57:39, 8630.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11816\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78877136it [2:57:41, 8831.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11817\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78899664it [2:57:44, 8823.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11818\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78902305it [2:57:44, 8736.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11819\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "78974719it [2:57:52, 8687.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11820\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79048937it [2:58:01, 8797.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11821\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79079745it [2:58:05, 8466.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11822\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79106785it [2:58:08, 8288.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11823\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79121368it [2:58:09, 8561.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11824\n", + "11825\n", + "11826\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79179875it [2:58:16, 8143.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11827\n", + "11828\n", + "11829\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79235305it [2:58:23, 8904.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11830\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79243447it [2:58:23, 8449.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11831\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79264734it [2:58:26, 8702.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11832\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79288395it [2:58:29, 7851.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11833\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79295419it [2:58:30, 8553.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11834\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79304195it [2:58:31, 8810.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11835\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79307742it [2:58:31, 8694.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11836\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79312930it [2:58:32, 8645.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11837\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79332325it [2:58:34, 8459.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11838\n", + "11839\n", + "11840\n", + "11841\n", + "11842\n", + "11843\n", + "11844\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79343906it [2:58:35, 8825.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11845\n", + "11846\n", + "11847\n", + "11848\n", + "11849\n", + "11850\n", + "11851\n", + "11852\n", + "11853\n", + "11854\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79352836it [2:58:36, 8738.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11855\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79355433it [2:58:37, 8120.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11856\n", + "11857\n", + "11858\n", + "11859\n", + "11860\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79357093it [2:58:37, 7934.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11861\n", + "11862\n", + "11863\n", + "11864\n", + "11865\n", + "11866\n", + "11867" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79359610it [2:58:37, 8131.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "11868\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79362184it [2:58:37, 8409.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11869\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79369146it [2:58:38, 8673.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11870\n", + "11871\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79376862it [2:58:39, 8060.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11872\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79383745it [2:58:40, 8473.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11873\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79386418it [2:58:40, 8823.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11874\n", + "11875\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79389098it [2:58:41, 8672.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11876\n", + "11877\n", + "11878\n", + "11879\n", + "11880\n", + "11881\n", + "11882\n", + "11883\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79397180it [2:58:42, 8730.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11884\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79407930it [2:58:43, 8492.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11885\n", + "11886\n", + "11887\n", + "11888\n", + "11889\n", + "11890\n", + "11891\n", + "11892\n", + "11893\n", + "11894\n", + "11895\n", + "11896\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79417507it [2:58:44, 8039.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11897\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79472434it [2:58:51, 8543.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11898\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79481267it [2:58:52, 8485.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11899\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79498902it [2:58:54, 8613.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11900\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79502405it [2:58:54, 8739.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11901\n", + "11902\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79504145it [2:58:55, 8603.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11903\n", + "11904\n", + "11905\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79542139it [2:58:59, 8615.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11906\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79556929it [2:59:01, 7653.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11907\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79605951it [2:59:08, 8539.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11908\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79630940it [2:59:11, 8412.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11909\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79663546it [2:59:15, 7143.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11910\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79671330it [2:59:16, 8290.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11911\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79708653it [2:59:20, 7831.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11912\n", + "11913\n", + "11914\n", + "11915\n", + "11916\n", + "11917\n", + "11918\n", + "11919\n", + "11920\n", + "11921\n", + "11922\n", + "11923\n", + "11924\n", + "11925\n", + "11926\n", + "11927\n", + "11928\n", + "11929\n", + "11930\n", + "11931\n", + "11932\n", + "11933\n", + "11934\n", + "11935" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79711145it [2:59:21, 8114.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "11936\n", + "11937\n", + "11938\n", + "11939\n", + "11940\n", + "11941\n", + "11942\n", + "11943\n", + "11944\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79738263it [2:59:24, 8777.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11945\n", + "11946\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79768595it [2:59:28, 8460.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11947\n", + "11948\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79796073it [2:59:31, 8698.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11949\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79818548it [2:59:33, 8128.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11950\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79859761it [2:59:38, 8703.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11951\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79902037it [2:59:43, 8088.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11952\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79939725it [2:59:48, 8235.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11953\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79962299it [2:59:51, 8785.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11954\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "79982982it [2:59:53, 8725.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11955\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80010707it [2:59:58, 8607.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11956\n", + "11957\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80033622it [3:00:00, 8775.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11958\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80041401it [3:00:01, 8359.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11959\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80049084it [3:00:02, 8230.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11960\n", + "11961\n", + "11962\n", + "11963\n", + "11964\n", + "11965\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80056200it [3:00:03, 8204.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11966\n", + "11967\n", + "11968\n", + "11969\n", + "11970\n", + "11971\n", + "11972\n", + "11973\n", + "11974\n", + "11975\n", + "11976\n", + "11977\n", + "11978\n", + "11979\n", + "11980\n", + "11981\n", + "11982\n", + "11983\n", + "11984\n", + "11985\n", + "11986\n", + "11987\n", + "11988\n", + "11989\n", + "11990\n", + "11991\n", + "11992\n", + "11993\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80067258it [3:00:05, 8172.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11994\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80074903it [3:00:05, 8445.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11995\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80081942it [3:00:06, 8613.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11996\n", + "11997\n", + "11998\n", + "11999\n", + "12000\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80108436it [3:00:09, 8616.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12001\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80112547it [3:00:10, 7747.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12002\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80125740it [3:00:12, 7669.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12003\n", + "12004\n", + "12005\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80141113it [3:00:14, 8507.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12006\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80146592it [3:00:14, 7291.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12007\n", + "12008\n", + "12009\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80186671it [3:00:19, 7680.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12010\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80190871it [3:00:20, 8355.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12011\n", + "12012\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80193292it [3:00:20, 7469.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12013\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80194786it [3:00:21, 7345.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12014\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80201333it [3:00:21, 8318.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12015\n", + "12016\n", + "12017\n", + "12018\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80210709it [3:00:22, 8470.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12019\n", + "12020\n", + "12021\n", + "12022\n", + "12023\n", + "12024\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80212395it [3:00:23, 7743.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12025\n", + "12026\n", + "12027\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80241141it [3:00:26, 7701.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12028\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80244605it [3:00:27, 8478.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12029\n", + "12030\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80247186it [3:00:27, 8168.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12031\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80278181it [3:00:31, 8378.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12032\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80282448it [3:00:31, 8384.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12033\n", + "12034\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80295507it [3:00:33, 8288.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12035\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80297197it [3:00:33, 7728.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12036\n", + "12037\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80356670it [3:00:40, 8609.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12038\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80401939it [3:00:46, 8403.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12039\n", + "12040\n", + "12041\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80412714it [3:00:47, 8390.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12042\n", + "12043\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80414426it [3:00:48, 8336.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12044\n", + "12045\n", + "12046\n", + "12047\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80418837it [3:00:48, 8595.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12048\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80424091it [3:00:49, 8123.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12049\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80429578it [3:00:50, 7648.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12050\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80432897it [3:00:50, 8103.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12051\n", + "12052\n", + "12053\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80437133it [3:00:50, 8442.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12054\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80438894it [3:00:51, 8633.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12055\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80444034it [3:00:51, 8476.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12056\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80446594it [3:00:52, 7790.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12057\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80465264it [3:00:54, 8006.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12058\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80496396it [3:00:58, 7922.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12059\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80522996it [3:01:01, 8662.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12060\n", + "12061\n", + "12062\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80527320it [3:01:01, 8563.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12063\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80542019it [3:01:03, 8668.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12064\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80544616it [3:01:03, 8491.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12065\n", + "12066\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80547164it [3:01:04, 8451.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12067\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80564938it [3:01:06, 8185.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12068\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80580321it [3:01:08, 8655.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12069\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80589817it [3:01:09, 8403.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12070\n", + "12071\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80592399it [3:01:09, 8477.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12072\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80594885it [3:01:09, 7639.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12073\n", + "12074\n", + "12075\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80599659it [3:01:10, 7856.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12076\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80608003it [3:01:11, 8172.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12077\n", + "12078\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80621978it [3:01:13, 8458.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12079\n", + "12080\n", + "12081\n", + "12082\n", + "12083\n", + "12084\n", + "12085\n", + "12086\n", + "12087\n", + "12088\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80628905it [3:01:14, 8632.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12089\n", + "12090\n", + "12091\n", + "12092\n", + "12093\n", + "12094\n", + "12095\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80630612it [3:01:14, 8219.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12096\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80634119it [3:01:14, 8605.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12097\n", + "12098\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80638543it [3:01:15, 8624.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12099\n", + "12100\n", + "12101\n", + "12102\n", + "12103\n", + "12104\n", + "12105\n", + "12106\n", + "12107\n", + "12108\n", + "12109\n", + "12110\n", + "12111\n", + "12112\n", + "12113\n", + "12114\n", + "12115\n", + "12116\n", + "12117\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80666624it [3:01:18, 8344.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12118\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80674179it [3:01:19, 8257.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12119\n", + "12120\n", + "12121\n", + "12122\n", + "12123\n", + "12124\n", + "12125\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80692771it [3:01:21, 8659.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12126\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80697057it [3:01:22, 8097.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12127\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80699494it [3:01:22, 7730.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12128\n", + "12129\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80710047it [3:01:23, 8582.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12130\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80718828it [3:01:24, 8390.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12131\n", + "12132\n", + "12133\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80721399it [3:01:24, 8450.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12134\n", + "12135\n", + "12136\n", + "12137\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80733216it [3:01:26, 7971.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12138\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80739367it [3:01:27, 8823.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12139\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80745494it [3:01:27, 8671.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12140\n", + "12141\n", + "12142\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80748930it [3:01:28, 7918.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12143\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80752134it [3:01:28, 7852.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12144\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80755419it [3:01:29, 7907.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12145\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80788860it [3:01:32, 7932.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12146\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80795441it [3:01:33, 8032.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12147\n", + "12148\n", + "12149\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80806462it [3:01:35, 8367.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12150\n", + "12151\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80816072it [3:01:36, 8647.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12152\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80817730it [3:01:36, 7630.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12153\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80826229it [3:01:37, 8289.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12154\n", + "12155\n", + "12156\n", + "12157\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80834819it [3:01:38, 8516.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12158\n", + "12159\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80861558it [3:01:41, 8861.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12160\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80872761it [3:01:43, 7275.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12161\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80876768it [3:01:43, 7883.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12162\n", + "12163\n", + "12164\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80889780it [3:01:45, 8575.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12165\n", + "12166\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80903991it [3:01:46, 8620.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12167\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80946309it [3:01:51, 8670.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12168\n", + "12169\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "80990618it [3:01:57, 8346.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12170\n", + "12171\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81003065it [3:01:58, 8609.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12172\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81006604it [3:01:58, 8717.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12173\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81038601it [3:02:02, 8567.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12174\n", + "12175\n", + "12176\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81065207it [3:02:05, 8718.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12177\n", + "12178\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81095300it [3:02:09, 8631.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12179\n", + "12180\n", + "12181\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81102516it [3:02:09, 8772.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12182\n", + "12183\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81148424it [3:02:15, 8454.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12184\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81152678it [3:02:15, 8388.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12185\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81155187it [3:02:16, 8262.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12186\n", + "12187\n", + "12188\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81158487it [3:02:16, 7800.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12189\n", + "12190\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81168884it [3:02:17, 8743.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12191\n", + "12192\n", + "12193\n", + "12194\n", + "12195\n", + "12196\n", + "12197\n", + "12198\n", + "12199\n", + "12200\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81180346it [3:02:19, 8439.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12201\n", + "12202\n", + "12203\n", + "12204\n", + "12205\n", + "12206\n", + "12207\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81183800it [3:02:19, 8542.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12208\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81188083it [3:02:20, 8375.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12209\n", + "12210\n", + "12211" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81189762it [3:02:20, 8174.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "12212\n", + "12213\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81191483it [3:02:20, 8362.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12214\n", + "12215\n", + "12216\n", + "12217\n", + "12218\n", + "12219\n", + "12220\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81199223it [3:02:21, 8328.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12221\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81205364it [3:02:22, 8321.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12222\n", + "12223\n", + "12224\n", + "12225" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81207136it [3:02:22, 8610.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "12226\n", + "12227\n", + "12228\n", + "12229\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81237076it [3:02:25, 8664.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12230\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81264546it [3:02:28, 8851.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12231\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81267239it [3:02:29, 8819.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12232\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81311986it [3:02:34, 8355.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12233\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81320923it [3:02:35, 8938.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12234\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81328127it [3:02:36, 9002.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12235\n", + "12236\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81333466it [3:02:36, 8663.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12237\n", + "12238\n", + "12239\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81337922it [3:02:37, 8897.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12240\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81342275it [3:02:37, 8576.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12241\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81345769it [3:02:38, 8703.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12242\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81349278it [3:02:38, 8156.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12243\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81360631it [3:02:40, 8573.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12244\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81369405it [3:02:41, 8630.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12245\n", + "12246\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81401656it [3:02:44, 8813.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12247\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81451531it [3:02:50, 8764.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12248\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81460496it [3:02:51, 8581.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12249\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81463951it [3:02:51, 8607.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12250\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81474435it [3:02:53, 8622.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12251\n", + "12252\n", + "12253\n", + "12254\n", + "12255\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81485102it [3:02:54, 8780.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12256\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81498558it [3:02:55, 8649.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12257\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81511028it [3:02:57, 8922.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12258\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81522647it [3:02:58, 8617.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12259\n", + "12260\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81533257it [3:02:59, 8287.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12261\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81539186it [3:03:00, 8334.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12262\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81546243it [3:03:01, 8752.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12263\n", + "12264\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81571733it [3:03:04, 8601.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12265\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81577890it [3:03:05, 8848.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12266\n", + "12267\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81584167it [3:03:05, 8915.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12268\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81587793it [3:03:06, 9009.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12269\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81627176it [3:03:11, 8099.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12270\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81629649it [3:03:11, 8171.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12271\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81651275it [3:03:14, 8135.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12272\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81667914it [3:03:16, 8841.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12273\n", + "12274\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81671611it [3:03:16, 9172.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12275\n", + "12276\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81678963it [3:03:17, 9017.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12277\n", + "12278\n", + "12279\n", + "12280\n", + "12281\n", + "12282\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81689489it [3:03:18, 8396.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12283\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81694815it [3:03:19, 7380.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12284\n", + "12285\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81699759it [3:03:19, 7730.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12286\n", + "12287\n", + "12288\n", + "12289\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81725397it [3:03:22, 8009.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12290\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81754017it [3:03:26, 8798.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12291\n", + "12292\n", + "12293\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81763680it [3:03:27, 8732.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12294\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81784572it [3:03:30, 8511.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12295\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81807209it [3:03:32, 8221.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12296\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81828955it [3:03:35, 8571.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12297\n", + "12298\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81839459it [3:03:36, 8696.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12299\n", + "12300\n", + "12301\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81851577it [3:03:38, 8576.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12302\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81867638it [3:03:39, 8886.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12303\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81880221it [3:03:41, 8854.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12304\n", + "12305\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81915329it [3:03:45, 8402.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12306\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81926086it [3:03:46, 8710.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12307\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81933310it [3:03:47, 8578.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12308\n", + "12309\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81941087it [3:03:48, 8685.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12310\n", + "12311\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81963529it [3:03:50, 8497.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12312\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81970751it [3:03:51, 8944.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12313\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81986859it [3:03:53, 8326.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12314\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "81993995it [3:03:54, 8837.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12315\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82000178it [3:03:55, 8564.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12316\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82005390it [3:03:55, 8579.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12317\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82048065it [3:04:00, 8904.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12318\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82071726it [3:04:03, 8734.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12319\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82142838it [3:04:11, 8715.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12320\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82225664it [3:04:21, 8064.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12321\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82240470it [3:04:23, 8730.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12322\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82267899it [3:04:26, 8765.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12323\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82316282it [3:04:32, 8497.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12324\n", + "12325\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82318910it [3:04:32, 8637.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12326\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82369071it [3:04:38, 8541.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12327\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82444924it [3:04:47, 8261.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12328\n", + "12329\n", + "12330\n", + "12331\n", + "12332\n", + "12333\n", + "12334\n", + "12335\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82470502it [3:04:50, 8156.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12336\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82473889it [3:04:51, 8300.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12337\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82529325it [3:04:57, 8900.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12338\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82544375it [3:04:59, 8770.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12339\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82547924it [3:04:59, 8736.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12340\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82574376it [3:05:02, 8548.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12341\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82642851it [3:05:10, 8308.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12342\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82785392it [3:05:27, 8713.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12343\n", + "12344\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82788962it [3:05:27, 8868.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12345\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82791639it [3:05:27, 8871.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12346\n", + "12347\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82803865it [3:05:29, 8526.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12348\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82812622it [3:05:30, 8791.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12349\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82818853it [3:05:31, 8843.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12350\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82828577it [3:05:32, 8748.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12351\n", + "12352\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82831210it [3:05:32, 8671.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12353\n", + "12354\n", + "12355\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82833863it [3:05:32, 8736.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12356\n", + "12357\n", + "12358\n", + "12359\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82863494it [3:05:36, 8585.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12360\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82866100it [3:05:36, 8616.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12361\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82868763it [3:05:36, 8667.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12362\n", + "12363\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82883250it [3:05:38, 9001.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12364\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82893073it [3:05:39, 8851.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12365\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82911285it [3:05:41, 8145.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12366\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82937937it [3:05:45, 8471.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12367\n", + "12368\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82943039it [3:05:45, 8307.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12369\n", + "12370\n", + "12371\n", + "12372\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82946450it [3:05:46, 8454.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12373\n", + "12374\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82949864it [3:05:46, 8396.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12375\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82962267it [3:05:47, 8590.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12376\n", + "12377\n", + "12378\n", + "12379\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82964854it [3:05:48, 8559.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12380\n", + "12381\n", + "12382\n", + "12383\n", + "12384\n", + "12385\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82968448it [3:05:48, 8902.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12386\n", + "12387\n", + "12388\n", + "12389\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82970224it [3:05:48, 8727.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12390\n", + "12391\n", + "12392\n", + "12393\n", + "12394\n", + "12395\n", + "12396\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "82996919it [3:05:51, 8784.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12397\n", + "12398\n", + "12399\n", + "12400\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83007591it [3:05:53, 8401.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12401\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83022833it [3:05:54, 8838.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12402\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83131665it [3:06:07, 8753.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12403\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83163460it [3:06:10, 8899.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12404\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83177904it [3:06:12, 8839.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12405\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83226307it [3:06:18, 8290.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12406\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83233301it [3:06:19, 8666.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12407\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83279228it [3:06:24, 8892.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12408\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83283679it [3:06:24, 8652.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12409\n", + "12410\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83301569it [3:06:26, 8678.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12411\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83387813it [3:06:36, 9005.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12412\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83437225it [3:06:42, 9126.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12413\n", + "12414\n", + "12415\n", + "12416\n", + "12417\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83445491it [3:06:42, 8917.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12418\n", + "12419\n", + "12420\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83448089it [3:06:43, 8385.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12421\n", + "12422\n", + "12423\n", + "12424\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83451709it [3:06:43, 8758.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12425\n", + "12426\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83454457it [3:06:43, 8995.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12427\n", + "12428\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83503885it [3:06:49, 8794.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12429\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83514772it [3:06:50, 8885.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12430\n", + "12431\n", + "12432\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83518471it [3:06:51, 9088.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12433\n", + "12434\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83534121it [3:06:52, 9057.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12435\n", + "12436\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83562193it [3:06:56, 9034.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12437\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83589130it [3:06:59, 9211.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12438\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83697220it [3:07:10, 8974.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12439\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83700824it [3:07:11, 8920.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12440\n", + "12441\n", + "12442\n", + "12443\n", + "12444\n", + "12445\n", + "12446\n", + "12447\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83703531it [3:07:11, 8997.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12448\n", + "12449\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83712485it [3:07:12, 8951.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12450\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83716030it [3:07:13, 8790.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12451\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83781854it [3:07:20, 9073.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12452\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83821536it [3:07:24, 9114.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12453\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83825196it [3:07:25, 8441.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12454\n", + "12455\n", + "12456\n", + "12457\n", + "12458\n", + "12459\n", + "12460\n", + "12461" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83826968it [3:07:25, 8515.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "12462\n", + "12463\n", + "12464\n", + "12465\n", + "12466\n", + "12467\n", + "12468\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83864176it [3:07:29, 8929.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12469\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83872604it [3:07:30, 9338.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12470\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83953144it [3:07:40, 8307.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12471\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "83972922it [3:07:42, 8869.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12472\n", + "12473\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84046745it [3:11:34, 3162.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12474\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84051931it [3:11:35, 4576.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12475\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84143941it [3:11:53, 6262.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12476\n", + "12477\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84164573it [3:11:57, 4899.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12478\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84179027it [3:12:00, 4093.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12479\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84188323it [3:12:02, 5488.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12480\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84198291it [3:12:05, 3524.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12481\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84199979it [3:12:05, 3924.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12482\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84203015it [3:12:05, 5789.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12483\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84216216it [3:12:10, 3498.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12484\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84341886it [3:12:40, 5079.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12485\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84346575it [3:12:41, 4757.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12486\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84398276it [3:12:51, 5397.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12487\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84420540it [3:12:54, 6167.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12488\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84529307it [3:13:12, 5857.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12489\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84579161it [3:13:21, 5892.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12490\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84582250it [3:13:21, 5910.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12491\n", + "12492\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84593931it [3:13:23, 6547.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12493\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84596629it [3:13:24, 6332.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12494\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84615125it [3:13:27, 6506.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12495\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84673391it [3:13:38, 5731.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12496\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84735125it [3:13:49, 6054.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12497\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84743782it [3:13:51, 6124.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12498\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84807328it [3:14:01, 5850.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12499\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84810439it [3:14:02, 6145.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12500\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84817586it [3:14:03, 6770.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12501\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84830223it [3:14:05, 5556.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12502\n", + "12503\n", + "12504\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84862871it [3:14:09, 7256.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12505\n", + "12506\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84875987it [3:14:11, 7418.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12507\n", + "12508\n", + "12509\n", + "12510\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84887941it [3:14:13, 7564.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12511\n", + "12512\n", + "12513\n", + "12514\n", + "12515\n", + "12516\n", + "12517\n", + "12518\n", + "12519\n", + "12520\n", + "12521\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84948473it [3:14:21, 7544.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12522\n", + "12523\n", + "12524\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84956913it [3:14:22, 7278.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12525\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84959191it [3:14:22, 7456.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12526\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84979176it [3:14:25, 7970.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12527\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "84995882it [3:14:27, 7133.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12528\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85006647it [3:14:29, 7430.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12529\n", + "12530\n", + "12531\n", + "12532\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85015429it [3:14:30, 7169.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12533\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85020735it [3:14:31, 6957.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12534\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85059993it [3:14:37, 7462.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12535\n", + "12536\n", + "12537\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85068450it [3:14:38, 7925.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12538\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85160888it [3:14:51, 7670.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12539\n", + "12540\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85201276it [3:14:58, 6277.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12541\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85202501it [3:14:58, 5504.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12542\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85207335it [3:14:59, 6270.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12543\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85215266it [3:15:00, 6876.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12544\n", + "12545\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85218898it [3:15:00, 6951.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12546\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85221810it [3:15:01, 7091.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12547\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85227969it [3:15:02, 7508.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12548\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85239829it [3:15:03, 7790.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12549\n", + "12550\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85311158it [3:15:14, 6345.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12551\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85321012it [3:15:16, 7351.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12552\n", + "12553\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85361066it [3:15:27, 3092.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12554\n", + "12555\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85364875it [3:15:28, 2600.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12556\n", + "12557\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85388652it [3:15:34, 6010.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12558\n", + "12559\n", + "12560\n", + "12561\n", + "12562\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85405641it [3:15:37, 7206.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12563\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85423557it [3:15:39, 7098.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12564\n", + "12565\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85435308it [3:15:41, 7256.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12566\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85437538it [3:15:41, 6966.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12567\n", + "12568\n", + "12569\n", + "12570\n", + "12571\n", + "12572\n", + "12573\n", + "12574\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85482522it [3:15:48, 7712.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12575\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85518790it [3:15:56, 3152.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12576\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85521269it [3:15:57, 4846.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12577\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85532922it [3:15:59, 7008.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12578\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85549864it [3:16:02, 5776.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12579\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85563649it [3:16:04, 4219.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12580\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85587834it [3:16:11, 3844.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12581\n", + "12582\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85638180it [3:16:21, 7267.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12583\n", + "12584\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85659390it [3:16:24, 6158.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12585\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85661139it [3:16:25, 5469.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12586\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85662551it [3:16:25, 6249.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12587\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85692578it [3:16:30, 7837.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12588\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85719789it [3:16:34, 6211.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12589\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85777481it [3:16:42, 7926.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12590\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85785194it [3:16:43, 7851.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12591\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85801071it [3:16:45, 7598.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12592\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85805721it [3:16:46, 7739.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12593\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85810265it [3:16:46, 7312.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12594\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85835253it [3:16:49, 7613.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12595\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85888114it [3:16:57, 7851.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12596\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85899928it [3:16:59, 7820.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12597\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85955711it [3:17:10, 2232.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12598\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "85986788it [3:17:20, 4447.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12599\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86040098it [3:17:29, 7481.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12600\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86042286it [3:17:29, 6958.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12601\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86048669it [3:17:30, 7626.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12602\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86067680it [3:17:33, 4741.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12603\n", + "12604\n", + "12605\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86069873it [3:17:34, 5180.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12606\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86094392it [3:17:38, 6166.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12607\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86168848it [3:17:55, 4344.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12608\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86233538it [3:18:07, 6910.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12609\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86260698it [3:18:13, 3466.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12610\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86263220it [3:18:14, 5685.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12611\n", + "12612\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86272421it [3:18:16, 4066.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12613\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86306340it [3:18:22, 4676.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12614\n", + "12615\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86319680it [3:18:26, 4539.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12616\n", + "12617\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86326673it [3:18:27, 6448.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12618\n", + "12619\n", + "12620\n", + "12621\n", + "12622\n", + "12623\n", + "12624\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86353964it [3:18:32, 5742.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12625\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86358458it [3:18:32, 6373.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12626\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86386238it [3:18:38, 4844.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12627\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86396135it [3:18:39, 6182.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12628\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86418713it [3:18:42, 7294.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12629\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86440829it [3:18:46, 4198.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12630\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86503491it [3:18:56, 5486.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12631\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86516037it [3:18:58, 6857.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12632\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86525516it [3:18:59, 6944.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12633\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86554497it [3:19:04, 5955.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12634\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86571004it [3:19:06, 7508.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12635\n", + "12636\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86616853it [3:19:12, 7880.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12637\n", + "12638\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86683667it [3:19:22, 5972.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12639\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86725217it [3:19:28, 6460.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12640\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86737127it [3:19:29, 7671.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12641\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86739293it [3:19:30, 6469.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12642\n", + "12643\n", + "12644\n", + "12645\n", + "12646\n", + "12647\n", + "12648\n", + "12649\n", + "12650\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86765693it [3:19:34, 3890.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12651\n", + "12652\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86779094it [3:19:37, 6483.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12653\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86797853it [3:19:40, 7126.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12654\n", + "12655\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86847697it [3:19:47, 7431.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12656\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86866459it [3:19:50, 7520.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12657\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86872596it [3:19:50, 7762.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12658\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86877287it [3:19:51, 7550.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12659\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86885966it [3:19:52, 7143.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12660\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86902102it [3:19:54, 7877.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12661\n", + "12662\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86910760it [3:19:55, 7602.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12663\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86933057it [3:19:58, 8123.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12664\n", + "12665\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86935453it [3:19:59, 7782.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12666\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86937776it [3:19:59, 7475.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12667\n", + "12668\n", + "12669\n", + "12670\n", + "12671\n", + "12672\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86965296it [3:20:05, 4770.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12673\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "86986841it [3:20:08, 7308.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12674\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87015914it [3:20:12, 6850.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12675\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87018832it [3:20:13, 6988.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12676\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87117228it [3:20:26, 7282.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12677\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87127781it [3:20:28, 7166.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12678\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87133621it [3:20:29, 7317.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12679\n", + "12680\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87135844it [3:20:29, 7286.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12681\n", + "12682\n", + "12683\n", + "12684\n", + "12685\n", + "12686\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87146463it [3:20:31, 7260.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12687\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87226444it [3:20:44, 4113.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12688\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87230771it [3:20:46, 3454.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12689\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87294727it [3:20:56, 6057.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12690\n", + "12691\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87327324it [3:21:01, 6605.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12692\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87340032it [3:21:02, 7561.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12693\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87347911it [3:21:03, 6835.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12694\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87357868it [3:21:05, 5658.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12695\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87361916it [3:21:06, 6728.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12696\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87363400it [3:21:06, 7077.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12697\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87379964it [3:21:09, 6580.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12698\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87382064it [3:21:09, 6697.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12699\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87386645it [3:21:10, 7370.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12700\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87390216it [3:21:10, 6385.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12701\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87395364it [3:21:11, 7500.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12702\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87413184it [3:21:13, 6249.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12703\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87417171it [3:21:14, 6274.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12704\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87422531it [3:21:15, 6707.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12705\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87462554it [3:21:22, 5238.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12706\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87466435it [3:21:23, 4829.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12707\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87494452it [3:21:27, 7483.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12708\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87505484it [3:21:29, 6726.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12709\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87536935it [3:21:34, 5548.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12710\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87559297it [3:21:37, 7886.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12711\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87595173it [3:21:42, 7547.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12712\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87612063it [3:21:44, 8255.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12713\n", + "12714\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87619487it [3:21:45, 8101.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12715\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87621889it [3:21:45, 7858.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12716\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87643734it [3:21:48, 8198.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12717\n", + "12718\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87654442it [3:21:50, 8207.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12719\n", + "12720\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87656074it [3:21:50, 7920.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12721\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87701375it [3:21:56, 6644.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12722\n", + "12723\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87704636it [3:21:57, 5762.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12724\n", + "12725\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87706843it [3:21:57, 6800.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12726\n", + "12727\n", + "12728\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87715616it [3:21:58, 6814.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12729\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87739958it [3:22:02, 7674.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12730\n", + "12731\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87750537it [3:22:03, 8025.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12732\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87786050it [3:22:08, 7261.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12733\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87797305it [3:22:09, 7176.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12734\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87807319it [3:22:11, 5428.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12735\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87831708it [3:22:15, 7374.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12736\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87863087it [3:22:20, 6607.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12737\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87864436it [3:22:20, 6639.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12738\n", + "12739\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87869507it [3:22:21, 7065.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12740\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87883388it [3:22:23, 7013.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12741\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87904796it [3:22:26, 6670.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12742\n", + "12743\n", + "12744\n", + "12745\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87906946it [3:22:26, 6241.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12746\n", + "12747\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87916669it [3:22:28, 6930.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12748\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87969672it [3:22:36, 5118.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12749\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87974169it [3:22:37, 2920.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12750\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87978639it [3:22:38, 5340.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12751\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87995993it [3:22:41, 6807.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12752\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "87998243it [3:22:41, 7320.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12753\n", + "12754\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88024386it [3:22:45, 6539.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12755\n", + "12756\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88030078it [3:22:46, 6103.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12757\n", + "12758\n", + "12759\n", + "12760\n", + "12761\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88031283it [3:22:46, 5656.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12762\n", + "12763\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88050949it [3:22:49, 7239.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12764\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88056178it [3:22:50, 7267.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12765\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88071585it [3:22:52, 7749.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12766\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88077023it [3:22:53, 7784.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12767\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88115476it [3:23:02, 3009.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12768\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88129474it [3:23:06, 4084.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12769\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88145413it [3:23:12, 3472.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12770\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88147632it [3:23:13, 3275.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12771\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88182059it [3:23:17, 7641.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12772\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88195618it [3:23:19, 7677.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12773\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88198622it [3:23:20, 7270.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12774\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88201706it [3:23:20, 7224.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12775\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88209275it [3:23:21, 6288.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12776\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88226261it [3:23:24, 6917.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12777\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88241606it [3:23:27, 6440.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12778\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88245279it [3:23:27, 7357.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12779\n", + "12780\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88253075it [3:23:28, 7791.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12781\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88257051it [3:23:29, 7849.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12782\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88258647it [3:23:29, 7903.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12783\n", + "12784\n", + "12785\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88274199it [3:23:31, 8084.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12786\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88295129it [3:23:34, 6608.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12787\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88337300it [3:23:40, 7898.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12788\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88340163it [3:23:40, 6245.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12789\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88347556it [3:23:41, 7518.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12790\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88376298it [3:23:45, 7585.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12791\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88393943it [3:23:48, 7492.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12792\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88407631it [3:23:50, 7394.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12793\n", + "12794\n", + "12795\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88414429it [3:23:51, 6920.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12796\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88442643it [3:23:54, 7862.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12797\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88457300it [3:23:56, 8106.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12798\n", + "12799\n", + "12800\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88478113it [3:23:59, 8096.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12801\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88491094it [3:24:00, 7788.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12802\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88502699it [3:24:02, 8274.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12803\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88520869it [3:24:04, 7090.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12804\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88531679it [3:24:05, 7954.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12805\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88542954it [3:24:07, 8084.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12806\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88553047it [3:24:08, 8197.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12807\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88579179it [3:24:11, 8209.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12808\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88644553it [3:24:19, 8529.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12809\n", + "12810\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88652213it [3:24:20, 7677.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12811\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88653851it [3:24:21, 7636.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12812\n", + "12813\n", + "12814\n", + "12815\n", + "12816\n", + "12817\n", + "12818\n", + "12819\n", + "12820\n", + "12821\n", + "12822\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88657071it [3:24:21, 8019.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12823\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88674817it [3:24:23, 8351.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12824\n", + "12825\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88677423it [3:24:23, 8482.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12826\n", + "12827\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88691035it [3:24:25, 8156.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12828\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88704364it [3:24:27, 7345.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12829\n", + "12830\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88726233it [3:24:30, 4795.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12831\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88728128it [3:24:30, 4494.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12832\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88730846it [3:24:31, 4351.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12833\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88740946it [3:24:33, 3330.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12834\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88743411it [3:24:34, 2317.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12835\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88760711it [3:24:40, 2137.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12836\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88763304it [3:24:41, 1988.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12837\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88794045it [3:24:47, 7009.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12838\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88795414it [3:24:47, 6526.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12839\n", + "12840\n", + "12841\n", + "12842\n", + "12843\n", + "12844\n", + "12845\n", + "12846\n", + "12847\n", + "12848\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88797318it [3:24:48, 5434.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12849\n", + "12850\n", + "12851\n", + "12852\n", + "12853\n", + "12854\n", + "12855\n", + "12856\n", + "12857\n", + "12858\n", + "12859\n", + "12860\n", + "12861\n", + "12862\n", + "12863\n", + "12864\n", + "12865\n", + "12866\n", + "12867\n", + "12868\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88798467it [3:24:48, 5259.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12869\n", + "12870\n", + "12871\n", + "12872\n", + "12873\n", + "12874\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88801736it [3:24:49, 5154.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12875\n", + "12876\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88813029it [3:24:51, 5521.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12877\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88850645it [3:24:59, 5322.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12878\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88872890it [3:25:03, 5577.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12879\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88880139it [3:25:04, 7442.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12880\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88887182it [3:25:05, 6245.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12881\n", + "12882\n", + "12883\n", + "12884\n", + "12885\n", + "12886\n", + "12887\n", + "12888\n", + "12889\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88890199it [3:25:05, 5757.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12890\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88922461it [3:25:10, 7668.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12891\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88940738it [3:25:13, 7523.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12892\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88951108it [3:25:15, 6379.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12893\n", + "12894\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88969865it [3:25:17, 6920.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12895\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88980247it [3:25:19, 7241.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12896\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88987613it [3:25:20, 7298.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12897\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "88998901it [3:25:21, 7999.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12898\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89013431it [3:25:23, 7294.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12899\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89033110it [3:25:26, 7800.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12900\n", + "12901\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89037095it [3:25:26, 7636.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12902\n", + "12903\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89040134it [3:25:27, 7289.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12904\n", + "12905\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89046441it [3:25:28, 8024.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12906\n", + "12907\n", + "12908\n", + "12909\n", + "12910\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89068280it [3:25:30, 7978.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12911\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89081832it [3:25:32, 7940.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12912\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89091967it [3:25:34, 6527.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12913\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89099998it [3:25:35, 7114.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12914\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89120982it [3:25:38, 7326.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12915\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89156537it [3:25:43, 7367.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12916\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89166633it [3:25:44, 7492.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12917\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89168967it [3:25:45, 7553.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12918\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89174936it [3:25:46, 7076.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12919\n", + "12920\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89188307it [3:25:47, 7421.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12921\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89193732it [3:25:48, 7804.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12922\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89200528it [3:25:49, 6729.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12923\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89201894it [3:25:49, 6681.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12924\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89204808it [3:25:50, 6940.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12925\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89209028it [3:25:50, 6440.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12926\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89240407it [3:25:56, 5603.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12927\n", + "12928\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89252590it [3:25:58, 2650.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12929\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89267722it [3:26:02, 8373.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12930\n", + "12931\n", + "12932\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89285946it [3:26:05, 5619.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12933\n", + "12934\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89314904it [3:26:09, 7967.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12935\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89331003it [3:26:12, 7275.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12936\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89360186it [3:26:17, 4883.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12937\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89382828it [3:26:20, 7563.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12938\n", + "12939\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89385074it [3:26:21, 7187.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12940\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89423068it [3:26:26, 7881.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12941\n", + "12942\n", + "12943\n", + "12944\n", + "12945\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89443202it [3:26:28, 7972.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12946\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89464340it [3:26:31, 7502.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12947\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89485614it [3:26:34, 8065.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12948\n", + "12949\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89487230it [3:26:34, 7825.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12950\n", + "12951\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89489477it [3:26:34, 6718.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12952\n", + "12953\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89491842it [3:26:35, 7526.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12954\n", + "12955\n", + "12956\n", + "12957\n", + "12958\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89493353it [3:26:35, 7162.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12959\n", + "12960\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89495584it [3:26:35, 7240.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12961\n", + "12962\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89497739it [3:26:35, 6832.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12963\n", + "12964\n", + "12965\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89499323it [3:26:36, 7378.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12966\n", + "12967\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89501629it [3:26:36, 7575.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12968\n", + "12969\n", + "12970\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89548702it [3:26:42, 8036.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12971\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89551844it [3:26:42, 7575.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12972\n", + "12973\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89555826it [3:26:43, 7784.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12974\n", + "12975\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89683194it [3:27:00, 8112.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12976\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89707207it [3:27:03, 7763.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12977\n", + "12978\n", + "12979\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89713982it [3:27:04, 7426.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12980\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89730869it [3:27:06, 7270.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12981\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89757299it [3:27:10, 7432.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12982\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89770542it [3:27:11, 8197.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12983\n", + "12984\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89792939it [3:27:14, 7627.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12985\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89797583it [3:27:15, 7572.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12986\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89901680it [3:27:28, 8086.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12987\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89903285it [3:27:29, 7663.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12988\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89907114it [3:27:29, 6528.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12989\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89928228it [3:27:32, 8075.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12990\n", + "12991\n", + "12992" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89929847it [3:27:33, 7949.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "12993\n", + "12994\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89931373it [3:27:33, 6705.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12995\n", + "12996\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89933561it [3:27:33, 7066.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12997\n", + "12998\n", + "12999\n", + "13000\n", + "13001\n", + "13002\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89943227it [3:27:34, 7379.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13003\n", + "13004\n", + "13005\n", + "13006\n", + "13007\n", + "13008\n", + "13009\n", + "13010\n", + "13011\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89949272it [3:27:35, 7459.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13012\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89994423it [3:27:41, 7885.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13013\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "89999339it [3:27:42, 8011.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13014\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90003076it [3:27:43, 6149.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13015\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90007049it [3:27:43, 6655.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13016\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90018983it [3:27:45, 7442.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13017\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90080078it [3:27:53, 7775.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13018\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90084042it [3:27:54, 7590.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13019\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90085549it [3:27:54, 6562.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13020\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90104307it [3:27:57, 6679.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13021\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90121885it [3:28:00, 6811.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13022\n", + "13023\n", + "13024\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90128756it [3:28:01, 7713.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13025\n", + "13026\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90153110it [3:28:04, 7523.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13027\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90176593it [3:28:07, 7074.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13028\n", + "13029\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90197324it [3:28:10, 7071.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13030\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90233506it [3:28:15, 8237.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13031\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90263716it [3:28:19, 8344.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13032\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90273559it [3:28:20, 8055.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13033\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90331806it [3:28:27, 8109.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13034\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90342036it [3:28:28, 7213.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13035\n", + "13036\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90378556it [3:28:34, 6699.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13037\n", + "13038\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90440285it [3:28:43, 5867.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13039\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90462692it [3:28:46, 7459.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13040\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90465553it [3:28:46, 6801.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13041\n", + "13042\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90502971it [3:28:52, 7497.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13043\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90518568it [3:28:54, 7141.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13044\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90523374it [3:28:54, 8046.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13045\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90531040it [3:28:56, 7478.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13046\n", + "13047\n", + "13048\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90546969it [3:28:58, 7461.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13049\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90552137it [3:28:58, 7186.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13050\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90652034it [3:29:13, 7142.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13051\n", + "13052\n", + "13053\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90653419it [3:29:13, 6161.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13054\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90656270it [3:29:14, 6720.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13055\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90658653it [3:29:14, 7527.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13056\n", + "13057\n", + "13058\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90664380it [3:29:15, 8143.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13059\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90731383it [3:29:23, 8183.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13060\n", + "13061\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90774065it [3:29:29, 7700.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13062\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90788754it [3:29:30, 8108.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13063\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90798274it [3:29:32, 7413.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13064\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90819562it [3:29:35, 8219.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13065\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90821199it [3:29:35, 8061.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13066\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90854363it [3:29:39, 8168.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13067\n", + "13068\n", + "13069\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90862504it [3:29:40, 7885.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13070\n", + "13071\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90921141it [3:29:50, 6598.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13072\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90928535it [3:29:51, 7471.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13073\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90972104it [3:29:57, 7706.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13074\n", + "13075\n", + "13076\n", + "13077\n", + "13078\n", + "13079\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90976858it [3:29:58, 6791.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13080\n", + "13081\n", + "13082\n", + "13083\n", + "13084\n", + "13085\n", + "13086\n", + "13087\n", + "13088\n", + "13089\n", + "13090\n", + "13091\n", + "13092\n", + "13093\n", + "13094\n", + "13095\n", + "13096\n", + "13097\n", + "13098\n", + "13099\n", + "13100\n", + "13101\n", + "13102\n", + "13103\n", + "13104\n", + "13105\n", + "13106\n", + "13107\n", + "13108\n", + "13109\n", + "13110\n", + "13111\n", + "13112\n", + "13113\n", + "13114\n", + "13115\n", + "13116\n", + "13117\n", + "13118\n", + "13119\n", + "13120\n", + "13121\n", + "13122\n", + "13123\n", + "13124\n", + "13125\n", + "13126\n", + "13127\n", + "13128\n", + "13129\n", + "13130\n", + "13131\n", + "13132\n", + "13133\n", + "13134\n", + "13135\n", + "13136\n", + "13137\n", + "13138\n", + "13139\n", + "13140\n", + "13141\n", + "13142\n", + "13143\n", + "13144\n", + "13145\n", + "13146\n", + "13147\n", + "13148\n", + "13149\n", + "13150\n", + "13151\n", + "13152\n", + "13153\n", + "13154" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90978350it [3:29:58, 6937.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "13155\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90981147it [3:29:58, 6641.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13156\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90989081it [3:29:59, 6517.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13157\n", + "13158\n", + "13159\n", + "13160\n", + "13161\n", + "13162\n", + "13163\n", + "13164\n", + "13165\n", + "13166\n", + "13167\n", + "13168\n", + "13169\n", + "13170\n", + "13171\n", + "13172\n", + "13173\n", + "13174\n", + "13175\n", + "13176\n", + "13177\n", + "13178\n", + "13179\n", + "13180\n", + "13181\n", + "13182\n", + "13183\n", + "13184\n", + "13185\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90990392it [3:30:00, 6216.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13186\n", + "13187\n", + "13188\n", + "13189\n", + "13190\n", + "13191\n", + "13192\n", + "13193\n", + "13194\n", + "13195\n", + "13196\n", + "13197\n", + "13198\n", + "13199\n", + "13200\n", + "13201\n", + "13202\n", + "13203\n", + "13204\n", + "13205\n", + "13206\n", + "13207\n", + "13208\n", + "13209\n", + "13210\n", + "13211\n", + "13212\n", + "13213\n", + "13214\n", + "13215\n", + "13216\n", + "13217\n", + "13218\n", + "13219\n", + "13220\n", + "13221\n", + "13222\n", + "13223\n", + "13224\n", + "13225\n", + "13226\n", + "13227\n", + "13228\n", + "13229\n", + "13230\n", + "13231\n", + "13232\n", + "13233\n", + "13234\n", + "13235\n", + "13236\n", + "13237\n", + "13238\n", + "13239\n", + "13240\n", + "13241\n", + "13242\n", + "13243\n", + "13244\n", + "13245\n", + "13246\n", + "13247\n", + "13248\n", + "13249\n", + "13250\n", + "13251\n", + "13252\n", + "13253\n", + "13254\n", + "13255\n", + "13256\n", + "13257\n", + "13258\n", + "13259\n", + "13260\n", + "13261\n", + "13262\n", + "13263\n", + "13264\n", + "13265\n", + "13266\n", + "13267\n", + "13268\n", + "13269\n", + "13270\n", + "13271\n", + "13272\n", + "13273\n", + "13274\n", + "13275\n", + "13276\n", + "13277\n", + "13278\n", + "13279\n", + "13280\n", + "13281\n", + "13282\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90991673it [3:30:00, 5903.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13283\n", + "13284\n", + "13285\n", + "13286\n", + "13287\n", + "13288\n", + "13289\n", + "13290\n", + "13291\n", + "13292\n", + "13293\n", + "13294\n", + "13295\n", + "13296\n", + "13297\n", + "13298\n", + "13299\n", + "13300\n", + "13301\n", + "13302\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90993730it [3:30:00, 6488.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13303\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "90996587it [3:30:01, 6718.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13304\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91005881it [3:30:02, 7453.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13305\n", + "13306\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91010565it [3:30:03, 7451.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13307\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91028185it [3:30:05, 7905.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13308\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91077155it [3:30:11, 8335.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13309\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91131943it [3:30:18, 8130.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13310\n", + "13311\n", + "13312\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91152761it [3:30:21, 8171.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13313\n", + "13314\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91160885it [3:30:22, 8000.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13315\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91183308it [3:30:25, 7297.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13316\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91215592it [3:30:29, 6845.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13317\n", + "13318\n", + "13319\n", + "13320\n", + "13321\n", + "13322\n", + "13323\n", + "13324\n", + "13325\n", + "13326\n", + "13327\n", + "13328\n", + "13329\n", + "13330\n", + "13331\n", + "13332\n", + "13333\n", + "13334\n", + "13335\n", + "13336\n", + "13337\n", + "13338\n", + "13339\n", + "13340\n", + "13341\n", + "13342\n", + "13343\n", + "13344\n", + "13345\n", + "13346\n", + "13347" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91216900it [3:30:29, 5458.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "13348\n", + "13349\n", + "13350\n", + "13351\n", + "13352\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91233463it [3:30:32, 7101.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13353\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91237028it [3:30:32, 7055.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13354\n", + "13355\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91238469it [3:30:32, 7118.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13356\n", + "13357\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91276302it [3:30:38, 6297.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13358\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91291348it [3:30:40, 7827.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13359\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91293709it [3:30:41, 7650.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13360\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91318440it [3:30:44, 7805.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13361\n", + "13362\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91321701it [3:30:44, 8123.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13363\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91323313it [3:30:45, 7932.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13364\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91332493it [3:30:46, 6942.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13365\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91359909it [3:30:50, 6251.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13366\n", + "13367\n", + "13368\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91386888it [3:30:54, 7067.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13369\n", + "13370\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91393489it [3:30:55, 7393.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13371\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91399375it [3:30:56, 6747.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13372\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91413003it [3:30:58, 7426.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13373\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91422728it [3:30:59, 7788.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13374\n", + "13375\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91427449it [3:31:00, 7295.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13376\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91428831it [3:31:00, 5758.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13377\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91431266it [3:31:00, 5763.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13378\n", + "13379\n", + "13380\n", + "13381\n", + "13382\n", + "13383\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91433032it [3:31:01, 5232.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13384\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91442710it [3:31:02, 7499.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13385\n", + "13386\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91446592it [3:31:03, 7658.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13387\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91448114it [3:31:03, 6665.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13388\n", + "13389\n", + "13390\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "91448799it [3:31:03, 5639.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13391\n", + "13392\n", + "13393\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91453369it [3:31:04, 6755.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13394\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91458964it [3:31:05, 8011.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13395\n", + "13396\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91462210it [3:31:05, 7573.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13397\n", + "13398\n", + "13399\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91471478it [3:31:06, 5900.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13400\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91480518it [3:31:08, 8070.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13401\n", + "13402\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91490308it [3:31:09, 8186.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13403\n", + "13404\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91502764it [3:31:10, 7359.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13405\n", + "13406\n", + "13407\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91504242it [3:31:11, 7202.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13408\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91511034it [3:31:12, 7180.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13409\n", + "13410\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91516290it [3:31:12, 7380.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13411\n", + "13412\n", + "13413\n", + "13414\n", + "13415\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91518516it [3:31:13, 7196.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13416\n", + "13417\n", + "13418\n", + "13419\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91527239it [3:31:14, 8069.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13420\n", + "13421\n", + "13422\n", + "13423\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91528815it [3:31:14, 7227.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13424\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91531072it [3:31:14, 7306.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13425\n", + "13426\n", + "13427\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91537923it [3:31:15, 7412.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13428\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91539406it [3:31:15, 7348.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13429\n", + "13430\n", + "13431\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91541653it [3:31:16, 7263.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13432\n", + "13433\n", + "13434\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91545958it [3:31:16, 6190.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13435\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91548553it [3:31:17, 6012.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13436\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91559892it [3:31:18, 7677.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13437\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91564553it [3:31:19, 7390.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13438\n", + "13439\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91575759it [3:31:21, 7307.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13440\n", + "13441\n", + "13442\n", + "13443\n", + "13444\n", + "13445\n", + "13446\n", + "13447\n", + "13448\n", + "13449\n", + "13450\n", + "13451\n", + "13452\n", + "13453\n", + "13454\n", + "13455\n", + "13456\n", + "13457\n", + "13458\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91586139it [3:31:22, 6911.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13459\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91587577it [3:31:22, 5786.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13460\n", + "13461\n", + "13462\n", + "13463\n", + "13464\n", + "13465\n", + "13466\n", + "13467\n", + "13468\n", + "13469\n", + "13470\n", + "13471\n", + "13472\n", + "13473\n", + "13474\n", + "13475\n", + "13476\n", + "13477\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91589484it [3:31:23, 6073.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13478\n", + "13479\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91591475it [3:31:23, 6193.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13480\n", + "13481\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91596553it [3:31:24, 6797.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13482\n", + "13483\n", + "13484\n", + "13485\n", + "13486\n", + "13487\n", + "13488\n", + "13489\n", + "13490\n", + "13491\n", + "13492\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91607797it [3:31:25, 7066.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13493\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91613950it [3:31:26, 7129.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13494\n", + "13495\n", + "13496\n", + "13497\n", + "13498\n", + "13499\n", + "13500\n", + "13501\n", + "13502\n", + "13503\n", + "13504\n", + "13505\n", + "13506\n", + "13507\n", + "13508\n", + "13509\n", + "13510\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91615458it [3:31:26, 6994.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13511\n", + "13512\n", + "13513\n", + "13514\n", + "13515\n", + "13516\n", + "13517\n", + "13518\n", + "13519\n", + "13520\n", + "13521\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91617610it [3:31:27, 7033.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13522\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91625127it [3:31:29, 6177.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13523\n", + "13524\n", + "13525\n", + "13526\n", + "13527\n", + "13528\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91626503it [3:31:29, 6255.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13529\n", + "13530\n", + "13531\n", + "13532\n", + "13533\n", + "13534\n", + "13535\n", + "13536\n", + "13537\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91642634it [3:31:31, 8252.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13538\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91645186it [3:31:31, 8344.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13539\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91647808it [3:31:31, 8452.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13540\n", + "13541\n", + "13542\n", + "13543\n", + "13544\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91675947it [3:31:36, 5444.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13545\n", + "13546\n", + "13547\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91678948it [3:31:37, 4458.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13548\n", + "13549\n", + "13550\n", + "13551\n", + "13552\n", + "13553\n", + "13554\n", + "13555\n", + "13556\n", + "13557\n", + "13558\n", + "13559\n", + "13560\n", + "13561\n", + "13562\n", + "13563\n", + "13564\n", + "13565\n", + "13566\n", + "13567\n", + "13568\n", + "13569\n", + "13570\n", + "13571\n", + "13572\n", + "13573\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91683381it [3:31:38, 4623.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13574\n", + "13575\n", + "13576\n", + "13577\n", + "13578\n", + "13579\n", + "13580\n", + "13581\n", + "13582\n", + "13583\n", + "13584\n", + "13585\n", + "13586\n", + "13587\n", + "13588\n", + "13589\n", + "13590\n", + "13591\n", + "13592\n", + "13593\n", + "13594\n", + "13595\n", + "13596\n", + "13597\n", + "13598\n", + "13599\n", + "13600\n", + "13601\n", + "13602\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "91683856it [3:31:38, 4144.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13603\n", + "13604\n", + "13605\n", + "13606\n", + "13607\n", + "13608\n", + "13609\n", + "13610\n", + "13611\n", + "13612\n", + "13613\n", + "13614\n", + "13615\n", + "13616\n", + "13617\n", + "13618\n", + "13619\n", + "13620\n", + "13621\n", + "13622\n", + "13623\n", + "13624\n", + "13625\n", + "13626\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91690188it [3:31:39, 5881.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13627\n", + "13628\n", + "13629\n", + "13630\n", + "13631\n", + "13632\n", + "13633\n", + "13634\n", + "13635\n", + "13636\n", + "13637\n", + "13638\n", + "13639\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91691319it [3:31:40, 4963.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13640\n", + "13641\n", + "13642\n", + "13643\n", + "13644\n", + "13645\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91695271it [3:31:40, 5871.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13646\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91697388it [3:31:41, 6257.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13647\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91698676it [3:31:41, 5408.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13648\n", + "13649\n", + "13650\n", + "13651\n", + "13652\n", + "13653\n", + "13654\n", + "13655\n", + "13656\n", + "13657\n", + "13658\n", + "13659\n", + "13660\n", + "13661\n", + "13662\n", + "13663\n", + "13664\n", + "13665\n", + "13666\n", + "13667\n", + "13668\n", + "13669\n", + "13670\n", + "13671\n", + "13672\n", + "13673\n", + "13674\n", + "13675\n", + "13676\n", + "13677\n", + "13678\n", + "13679\n", + "13680" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91699764it [3:31:41, 4716.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "13681\n", + "13682\n", + "13683\n", + "13684\n", + "13685\n", + "13686\n", + "13687\n", + "13688\n", + "13689\n", + "13690\n", + "13691\n", + "13692\n", + "13693\n", + "13694\n", + "13695\n", + "13696\n", + "13697\n", + "13698\n", + "13699\n", + "13700\n", + "13701\n", + "13702\n", + "13703\n", + "13704\n", + "13705\n", + "13706\n", + "13707\n", + "13708\n", + "13709\n", + "13710\n", + "13711\n", + "13712\n", + "13713\n", + "13714\n", + "13715\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91704188it [3:31:42, 6464.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13716\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91708697it [3:31:43, 5928.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13717\n", + "13718\n", + "13719\n", + "13720\n", + "13721\n", + "13722\n", + "13723\n", + "13724\n", + "13725\n", + "13726\n", + "13727\n", + "13728\n", + "13729\n", + "13730\n", + "13731\n", + "13732\n", + "13733\n", + "13734\n", + "13735\n", + "13736\n", + "13737\n", + "13738\n", + "13739\n", + "13740\n", + "13741\n", + "13742\n", + "13743\n", + "13744\n", + "13745\n", + "13746\n", + "13747\n", + "13748\n", + "13749\n", + "13750\n", + "13751\n", + "13752\n", + "13753\n", + "13754\n", + "13755\n", + "13756\n", + "13757\n", + "13758\n", + "13759\n", + "13760" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91709826it [3:31:43, 4614.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "13761\n", + "13762\n", + "13763\n", + "13764\n", + "13765\n", + "13766\n", + "13767\n", + "13768\n", + "13769\n", + "13770\n", + "13771\n", + "13772\n", + "13773\n", + "13774\n", + "13775\n", + "13776\n", + "13777\n", + "13778\n", + "13779\n", + "13780\n", + "13781\n", + "13782\n", + "13783\n", + "13784\n", + "13785\n", + "13786\n", + "13787\n", + "13788\n", + "13789\n", + "13790\n", + "13791\n", + "13792\n", + "13793\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91710844it [3:31:43, 4460.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13794\n", + "13795\n", + "13796\n", + "13797\n", + "13798\n", + "13799\n", + "13800\n", + "13801\n", + "13802\n", + "13803\n", + "13804\n", + "13805\n", + "13806\n", + "13807\n", + "13808\n", + "13809\n", + "13810\n", + "13811\n", + "13812\n", + "13813\n", + "13814\n", + "13815\n", + "13816\n", + "13817\n", + "13818\n", + "13819\n", + "13820\n", + "13821\n", + "13822\n", + "13823\n", + "13824\n", + "13825\n", + "13826\n", + "13827\n", + "13828\n", + "13829\n", + "13830\n", + "13831\n", + "13832\n", + "13833\n", + "13834\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91731933it [3:31:46, 7778.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13835\n", + "13836\n", + "13837\n", + "13838\n", + "13839\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91744742it [3:31:48, 8201.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13840\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91762480it [3:31:50, 7995.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13841\n", + "13842\n", + "13843\n", + "13844\n", + "13845\n", + "13846\n", + "13847\n", + "13848\n", + "13849\n", + "13850\n", + "13851\n", + "13852\n", + "13853\n", + "13854\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91764932it [3:31:51, 8122.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13855\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91777046it [3:31:52, 7486.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13856\n", + "13857\n", + "13858\n", + "13859\n", + "13860\n", + "13861\n", + "13862\n", + "13863\n", + "13864\n", + "13865\n", + "13866\n", + "13867\n", + "13868\n", + "13869\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91778552it [3:31:52, 7345.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13870\n", + "13871\n", + "13872\n", + "13873\n", + "13874\n", + "13875\n", + "13876\n", + "13877\n", + "13878\n", + "13879\n", + "13880\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91780786it [3:31:53, 7328.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13881\n", + "13882\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91789825it [3:31:54, 8023.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13883\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91792229it [3:31:54, 7784.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13884\n", + "13885\n", + "13886\n", + "13887\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91796218it [3:31:55, 7798.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13888\n", + "13889\n", + "13890\n", + "13891\n", + "13892\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91805729it [3:31:56, 7911.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13893\n", + "13894\n", + "13895\n", + "13896\n", + "13897\n", + "13898\n", + "13899\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91808959it [3:31:56, 7911.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13900\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91826172it [3:31:58, 7424.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13901\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91829293it [3:31:59, 7262.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13902\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91851012it [3:32:02, 7537.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13903\n", + "13904\n", + "13905\n", + "13906\n", + "13907\n", + "13908\n", + "13909\n", + "13910\n", + "13911\n", + "13912\n", + "13913\n", + "13914\n", + "13915\n", + "13916\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91852575it [3:32:02, 7487.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13917\n", + "13918\n", + "13919\n", + "13920\n", + "13921\n", + "13922\n", + "13923\n", + "13924\n", + "13925\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91854108it [3:32:02, 7473.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13926\n", + "13927\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91860535it [3:32:03, 7821.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13928\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91873636it [3:32:05, 7656.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13929\n", + "13930\n", + "13931\n", + "13932\n", + "13933\n", + "13934\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91877608it [3:32:05, 7755.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13935\n", + "13936\n", + "13937\n", + "13938\n", + "13939\n", + "13940\n", + "13941\n", + "13942\n", + "13943\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91880564it [3:32:06, 7120.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13944\n", + "13945\n", + "13946\n", + "13947\n", + "13948\n", + "13949\n", + "13950\n", + "13951\n", + "13952\n", + "13953\n", + "13954\n", + "13955\n", + "13956\n", + "13957\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91916755it [3:32:11, 7964.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13958\n", + "13959\n", + "13960\n", + "13961\n", + "13962\n", + "13963\n", + "13964\n", + "13965\n", + "13966\n", + "13967\n", + "13968\n", + "13969\n", + "13970\n", + "13971\n", + "13972\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91918348it [3:32:11, 7847.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13973\n", + "13974\n", + "13975\n", + "13976\n", + "13977\n", + "13978\n", + "13979\n", + "13980\n", + "13981\n", + "13982\n", + "13983\n", + "13984\n", + "13985\n", + "13986\n", + "13987\n", + "13988\n", + "13989\n", + "13990" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91919911it [3:32:11, 7574.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "13991\n", + "13992\n", + "13993\n", + "13994\n", + "13995\n", + "13996\n", + "13997\n", + "13998\n", + "13999\n", + "14000\n", + "14001\n", + "14002\n", + "14003\n", + "14004\n", + "14005\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91938790it [3:32:14, 8089.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14006\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91949172it [3:32:15, 7842.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14007\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91964702it [3:32:17, 7048.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14008\n", + "14009\n", + "14010\n", + "14011\n", + "14012\n", + "14013\n", + "14014\n", + "14015\n", + "14016\n", + "14017\n", + "14018\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91966091it [3:32:18, 6636.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14019\n", + "14020\n", + "14021\n", + "14022\n", + "14023\n", + "14024\n", + "14025\n", + "14026\n", + "14027\n", + "14028\n", + "14029\n", + "14030\n", + "14031\n", + "14032\n", + "14033\n", + "14034\n", + "14035\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91967426it [3:32:18, 6466.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14036\n", + "14037\n", + "14038\n", + "14039\n", + "14040\n", + "14041\n", + "14042\n", + "14043\n", + "14044\n", + "14045\n", + "14046\n", + "14047\n", + "14048\n", + "14049\n", + "14050\n", + "14051\n", + "14052\n", + "14053\n", + "14054\n", + "14055\n", + "14056\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "91969549it [3:32:18, 6909.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14057\n", + "14058\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92007587it [3:32:23, 7821.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14059\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92019741it [3:32:25, 7973.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14060\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92027475it [3:32:26, 7714.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14061\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92029011it [3:32:26, 6749.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14062\n", + "14063\n", + "14064\n", + "14065\n", + "14066\n", + "14067\n", + "14068\n", + "14069\n", + "14070\n", + "14071\n", + "14072\n", + "14073\n", + "14074\n", + "14075\n", + "14076\n", + "14077\n", + "14078\n", + "14079\n", + "14080\n", + "14081\n", + "14082\n", + "14083\n", + "14084\n", + "14085\n", + "14086\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92030371it [3:32:26, 6494.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14087\n", + "14088\n", + "14089\n", + "14090\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92049442it [3:32:29, 6806.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14091\n", + "14092\n", + "14093\n", + "14094\n", + "14095\n", + "14096\n", + "14097\n", + "14098\n", + "14099\n", + "14100\n", + "14101\n", + "14102\n", + "14103\n", + "14104\n", + "14105\n", + "14106\n", + "14107\n", + "14108\n", + "14109\n", + "14110\n", + "14111" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92051694it [3:32:30, 7251.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92060392it [3:32:31, 7007.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14112\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92067130it [3:32:32, 7370.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14113\n", + "14114\n", + "14115\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92068601it [3:32:32, 7297.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14116\n", + "14117\n", + "14118\n", + "14119\n", + "14120\n", + "14121\n", + "14122\n", + "14123\n", + "14124\n", + "14125\n", + "14126\n", + "14127\n", + "14128\n", + "14129\n", + "14130\n", + "14131\n", + "14132\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92071666it [3:32:32, 7381.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14133\n", + "14134\n", + "14135\n", + "14136\n", + "14137\n", + "14138\n", + "14139\n", + "14140\n", + "14141\n", + "14142\n", + "14143\n", + "14144\n", + "14145\n", + "14146\n", + "14147\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92079174it [3:32:34, 7648.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14148\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92081630it [3:32:34, 7964.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14149\n", + "14150\n", + "14151\n", + "14152\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92087199it [3:32:35, 7786.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14153\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92090464it [3:32:35, 7868.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14154\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92094844it [3:32:36, 6673.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14155\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92119616it [3:32:39, 7906.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14156\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92122056it [3:32:39, 7906.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14157\n", + "14158\n", + "14159\n", + "14160\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92126128it [3:32:40, 7780.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14161\n", + "14162\n", + "14163\n", + "14164\n", + "14165\n", + "14166\n", + "14167\n", + "14168\n", + "14169\n", + "14170\n", + "14171\n", + "14172\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92127683it [3:32:40, 7632.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14173\n", + "14174\n", + "14175\n", + "14176\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92135540it [3:32:41, 7475.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14177\n", + "14178\n", + "14179\n", + "14180\n", + "14181\n", + "14182\n", + "14183\n", + "14184\n", + "14185\n", + "14186\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92138811it [3:32:41, 7891.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14187\n", + "14188\n", + "14189\n", + "14190\n", + "14191\n", + "14192\n", + "14193\n", + "14194\n", + "14195\n", + "14196\n", + "14197\n", + "14198\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92140418it [3:32:41, 7850.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14199\n", + "14200\n", + "14201\n", + "14202\n", + "14203\n", + "14204\n", + "14205\n", + "14206\n", + "14207\n", + "14208\n", + "14209\n", + "14210\n", + "14211\n", + "14212\n", + "14213\n", + "14214\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92141982it [3:32:42, 7724.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14215\n", + "14216\n", + "14217\n", + "14218\n", + "14219\n", + "14220\n", + "14221\n", + "14222\n", + "14223\n", + "14224\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92143585it [3:32:42, 7685.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14225\n", + "14226\n", + "14227\n", + "14228\n", + "14229\n", + "14230\n", + "14231\n", + "14232\n", + "14233\n", + "14234\n", + "14235\n", + "14236\n", + "14237\n", + "14238\n", + "14239\n", + "14240\n", + "14241" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92145116it [3:32:42, 7433.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "14242\n", + "14243\n", + "14244\n", + "14245\n", + "14246\n", + "14247\n", + "14248\n", + "14249\n", + "14250\n", + "14251\n", + "14252\n", + "14253\n", + "14254\n", + "14255\n", + "14256\n", + "14257\n", + "14258\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92147476it [3:32:42, 7739.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14259\n", + "14260\n", + "14261\n", + "14262\n", + "14263\n", + "14264\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92152173it [3:32:43, 6715.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14265\n", + "14266\n", + "14267\n", + "14268\n", + "14269\n", + "14270\n", + "14271\n", + "14272\n", + "14273\n", + "14274\n", + "14275\n", + "14276\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92153625it [3:32:43, 6990.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14277\n", + "14278\n", + "14279\n", + "14280\n", + "14281\n", + "14282\n", + "14283\n", + "14284\n", + "14285\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92162811it [3:32:45, 7717.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14286\n", + "14287\n", + "14288\n", + "14289\n", + "14290\n", + "14291\n", + "14292\n", + "14293\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92177163it [3:32:46, 7921.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14294\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92186271it [3:32:48, 8215.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14295\n", + "14296\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92199771it [3:32:49, 6385.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14297\n", + "14298\n", + "14299\n", + "14300\n", + "14301\n", + "14302\n", + "14303\n", + "14304\n", + "14305\n", + "14306\n", + "14307\n", + "14308\n", + "14309\n", + "14310\n", + "14311\n", + "14312\n", + "14313\n", + "14314\n", + "14315\n", + "14316\n", + "14317\n", + "14318\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92201099it [3:32:50, 6089.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14319\n", + "14320\n", + "14321\n", + "14322\n", + "14323\n", + "14324\n", + "14325\n", + "14326\n", + "14327\n", + "14328\n", + "14329\n", + "14330\n", + "14331\n", + "14332\n", + "14333\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92204525it [3:32:50, 4603.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14334\n", + "14335\n", + "14336\n", + "14337\n", + "14338\n", + "14339\n", + "14340\n", + "14341\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92250087it [3:32:56, 8005.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14342\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92260567it [3:32:57, 7828.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14343\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92278185it [3:33:00, 7517.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14344\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92290714it [3:33:01, 7436.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14345\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92296707it [3:33:02, 7193.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14346\n", + "14347\n", + "14348\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92356353it [3:33:12, 8388.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14349\n", + "14350\n", + "14351\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92384036it [3:33:15, 8476.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14352\n", + "14353\n", + "14354\n", + "14355\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92386531it [3:33:16, 7656.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14356\n", + "14357\n", + "14358\n", + "14359\n", + "14360\n", + "14361\n", + "14362\n", + "14363\n", + "14364\n", + "14365\n", + "14366\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92402369it [3:33:18, 7493.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14367\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92412490it [3:33:19, 8409.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14368\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92436869it [3:33:22, 8210.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14369\n", + "14370\n", + "14371\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92470921it [3:33:26, 8126.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14372\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92481779it [3:33:27, 8122.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14373\n", + "14374\n", + "14375\n", + "14376\n", + "14377\n", + "14378\n", + "14379" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92483435it [3:33:28, 8107.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "14380\n", + "14381\n", + "14382\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92510120it [3:33:31, 7849.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14383\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92514952it [3:33:32, 8028.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14384\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92523386it [3:33:33, 8305.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14385\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92527375it [3:33:33, 7261.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14386\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92545171it [3:33:35, 8294.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14387\n", + "14388\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92551595it [3:33:36, 7526.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14389\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92566374it [3:33:38, 8234.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14390\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92571338it [3:33:39, 8147.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14391\n", + "14392\n", + "14393\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92586981it [3:33:41, 8233.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14394\n", + "14395\n", + "14396\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92613697it [3:33:44, 7965.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14397\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92632309it [3:33:46, 8165.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14398\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92645392it [3:33:48, 7667.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14399\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92655979it [3:33:49, 7661.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14400\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92664910it [3:33:50, 7846.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14401\n", + "14402\n", + "14403\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92669688it [3:33:51, 7950.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14404\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92672117it [3:33:51, 7967.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14405\n", + "14406\n", + "14407\n", + "14408\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92695434it [3:33:54, 7954.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14409\n", + "14410\n", + "14411\n", + "14412\n", + "14413\n", + "14414\n", + "14415\n", + "14416\n", + "14417\n", + "14418\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92724565it [3:33:58, 7741.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14419\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92748088it [3:34:01, 7761.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14420\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92753810it [3:34:02, 8092.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14421\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92756230it [3:34:02, 7947.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14422\n", + "14423\n", + "14424\n", + "14425\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92758700it [3:34:03, 7924.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14426\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92775102it [3:34:05, 8228.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14427\n", + "14428\n", + "14429\n", + "14430\n", + "14431\n", + "14432\n", + "14433\n", + "14434\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92779240it [3:34:05, 8248.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14435\n", + "14436\n", + "14437\n", + "14438\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92808189it [3:34:09, 8444.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14439\n", + "14440\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92810712it [3:34:09, 8207.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14441\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92820593it [3:34:10, 7483.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14442\n", + "14443\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92823072it [3:34:11, 7973.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14444\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92868084it [3:34:16, 8110.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14445\n", + "14446\n", + "14447\n", + "14448\n", + "14449\n", + "14450\n", + "14451\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92870575it [3:34:16, 8203.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14452\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92873050it [3:34:17, 8140.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14453\n", + "14454\n", + "14455\n", + "14456\n", + "14457\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92882276it [3:34:18, 8288.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14458\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92894946it [3:34:19, 8391.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14459\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92898219it [3:34:20, 7774.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14460\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92900589it [3:34:20, 7572.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14461\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92904327it [3:34:21, 7375.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14462\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92907451it [3:34:21, 7570.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14463\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92908933it [3:34:21, 6389.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14464\n", + "14465\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92911029it [3:34:22, 6750.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14466\n", + "14467\n", + "14468\n", + "14469\n", + "14470\n", + "14471\n", + "14472\n", + "14473\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92917515it [3:34:22, 8283.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14474\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92927142it [3:34:24, 6008.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14475\n", + "14476\n", + "14477\n", + "14478\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92929420it [3:34:25, 7015.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14479\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92936621it [3:34:26, 7900.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14480\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92947130it [3:34:27, 7884.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14481\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92970485it [3:34:30, 7805.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14482\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92975623it [3:34:30, 8513.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14483\n", + "14484\n", + "14485\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92978270it [3:34:31, 8701.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14486\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "92991452it [3:34:32, 8139.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14487\n", + "14488\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93002852it [3:34:34, 6557.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14489\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93006895it [3:34:34, 6710.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14490\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93023643it [3:34:37, 8069.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14491\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93026072it [3:34:37, 7940.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14492\n", + "14493\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93040588it [3:34:39, 7982.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14494\n", + "14495\n", + "14496\n", + "14497\n", + "14498\n", + "14499\n", + "14500\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93046468it [3:34:39, 8066.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14501\n", + "14502\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93057989it [3:34:41, 7942.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14503\n", + "14504\n", + "14505\n", + "14506\n", + "14507\n", + "14508\n", + "14509\n", + "14510\n", + "14511\n", + "14512\n", + "14513\n", + "14514\n", + "14515" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93059551it [3:34:41, 7406.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "14516\n", + "14517\n", + "14518\n", + "14519\n", + "14520\n", + "14521\n", + "14522\n", + "14523\n", + "14524\n", + "14525\n", + "14526\n", + "14527\n", + "14528\n", + "14529\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93061994it [3:34:41, 7798.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14530\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93065293it [3:34:42, 8106.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14531\n", + "14532\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93072604it [3:34:43, 8045.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14533\n", + "14534\n", + "14535\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93082437it [3:34:44, 8158.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14536\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93084867it [3:34:44, 7703.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14537\n", + "14538\n", + "14539\n", + "14540\n", + "14541\n", + "14542\n", + "14543\n", + "14544\n", + "14545\n", + "14546\n", + "14547\n", + "14548\n", + "14549\n", + "14550\n", + "14551\n", + "14552\n", + "14553\n", + "14554\n", + "14555\n", + "14556\n", + "14557\n", + "14558\n", + "14559\n", + "14560\n", + "14561\n", + "14562\n", + "14563\n", + "14564\n", + "14565\n", + "14566\n", + "14567\n", + "14568\n", + "14569\n", + "14570\n", + "14571\n", + "14572\n", + "14573\n", + "14574\n", + "14575\n", + "14576\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93092239it [3:34:45, 8215.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14577\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93102850it [3:34:47, 8185.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14578\n", + "14579\n", + "14580\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93106268it [3:34:47, 8152.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14581\n", + "14582\n", + "14583\n", + "14584\n", + "14585\n", + "14586\n", + "14587\n", + "14588\n", + "14589\n", + "14590\n", + "14591\n", + "14592\n", + "14593\n", + "14594\n", + "14595\n", + "14596\n", + "14597\n", + "14598\n", + "14599\n", + "14600\n", + "14601\n", + "14602\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93107945it [3:34:47, 7934.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14603\n", + "14604\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93111978it [3:34:48, 7918.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14605\n", + "14606\n", + "14607\n", + "14608\n", + "14609\n", + "14610\n", + "14611\n", + "14612\n", + "14613\n", + "14614\n", + "14615\n", + "14616\n", + "14617\n", + "14618\n", + "14619\n", + "14620\n", + "14621\n", + "14622\n", + "14623\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93119391it [3:34:49, 8089.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14624\n", + "14625\n", + "14626\n", + "14627\n", + "14628\n", + "14629\n", + "14630\n", + "14631\n", + "14632\n", + "14633\n", + "14634\n", + "14635\n", + "14636\n", + "14637\n", + "14638\n", + "14639\n", + "14640\n", + "14641\n", + "14642\n", + "14643\n", + "14644\n", + "14645\n", + "14646\n", + "14647\n", + "14648\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93122580it [3:34:49, 7766.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14649\n", + "14650\n", + "14651\n", + "14652\n", + "14653\n", + "14654\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93125839it [3:34:49, 7993.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14655\n", + "14656\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93132323it [3:34:50, 8181.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14657\n", + "14658\n", + "14659\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93139708it [3:34:51, 8138.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14660\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93156179it [3:34:54, 5904.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14661\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93158176it [3:34:55, 6417.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14662\n", + "14663\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93183576it [3:34:59, 7628.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14664\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93201465it [3:35:02, 6909.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14665\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93205063it [3:35:02, 6644.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14666\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93222229it [3:35:05, 7477.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14667\n", + "14668\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93225461it [3:35:05, 7821.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14669\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93231858it [3:35:06, 6586.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14670\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93242998it [3:35:08, 6598.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14671\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93246093it [3:35:09, 7510.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14672\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93269478it [3:35:12, 8463.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14673\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93284605it [3:35:14, 8175.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14674\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93298578it [3:35:15, 8245.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14675\n", + "14676\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93300223it [3:35:16, 8050.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14677\n", + "14678\n", + "14679\n", + "14680\n", + "14681\n", + "14682\n", + "14683\n", + "14684\n", + "14685\n", + "14686\n", + "14687\n", + "14688\n", + "14689\n", + "14690\n", + "14691\n", + "14692\n", + "14693\n", + "14694\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93316029it [3:35:18, 7930.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14695\n", + "14696\n", + "14697\n", + "14698\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93319347it [3:35:18, 8067.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14699\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93331634it [3:35:20, 7264.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14700\n", + "14701\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93333981it [3:35:20, 7658.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14702\n", + "14703\n", + "14704\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93335602it [3:35:20, 7893.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14705\n", + "14706\n", + "14707\n", + "14708\n", + "14709\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93342298it [3:35:21, 8228.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14710\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93352666it [3:35:22, 8200.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14711\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93358459it [3:35:23, 8046.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14712\n", + "14713\n", + "14714\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93365832it [3:35:24, 7805.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14715\n", + "14716\n", + "14717\n", + "14718\n", + "14719\n", + "14720\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93369067it [3:35:24, 7946.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14721\n", + "14722\n", + "14723\n", + "14724\n", + "14725\n", + "14726\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93383889it [3:35:26, 8102.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14727\n", + "14728\n", + "14729\n", + "14730\n", + "14731\n", + "14732\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93385509it [3:35:26, 8010.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14733\n", + "14734\n", + "14735\n", + "14736\n", + "14737\n", + "14738\n", + "14739\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93399539it [3:35:28, 7934.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14740\n", + "14741\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93401122it [3:35:28, 7752.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14742\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93407709it [3:35:29, 7551.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14743\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93411672it [3:35:30, 7475.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14744\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93417893it [3:35:30, 7757.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14745\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93429124it [3:35:32, 7729.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14746\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93434656it [3:35:33, 7674.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14747\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93441206it [3:35:34, 6273.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14748\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93442837it [3:35:34, 3212.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14749\n", + "14750\n", + "14751\n", + "14752\n", + "14753\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93454252it [3:35:37, 7280.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14754\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93459498it [3:35:37, 7404.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14755\n", + "14756\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93476571it [3:35:40, 7865.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14757\n", + "14758\n", + "14759\n", + "14760\n", + "14761\n", + "14762\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93478082it [3:35:40, 7071.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14763\n", + "14764\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93479558it [3:35:40, 7037.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14765\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93495907it [3:35:42, 7413.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14766\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93498944it [3:35:43, 7506.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14767\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93504405it [3:35:43, 7703.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14768\n", + "14769\n", + "14770\n", + "14771\n", + "14772\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93509308it [3:35:44, 8135.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14773\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93512492it [3:35:44, 7676.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14774\n", + "14775\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93514861it [3:35:45, 7712.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14776\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93517197it [3:35:45, 7111.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14777\n", + "14778\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93519632it [3:35:45, 7829.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14779\n", + "14780\n", + "14781\n", + "14782\n", + "14783\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93526784it [3:35:46, 7143.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14784\n", + "14785\n", + "14786\n", + "14787\n", + "14788\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93531746it [3:35:47, 7932.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14789\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93542488it [3:35:48, 7592.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14790\n", + "14791\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93552295it [3:35:50, 8194.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14792\n", + "14793\n", + "14794\n", + "14795\n", + "14796\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93565061it [3:35:51, 5999.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14797\n", + "14798\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93569361it [3:35:52, 6620.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14799\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93579005it [3:35:53, 7926.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14800\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93589167it [3:35:55, 8317.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14801\n", + "14802\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93591640it [3:35:55, 8152.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14803\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93593180it [3:35:55, 6426.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14804\n", + "14805\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93594459it [3:35:55, 5822.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14806\n", + "14807\n", + "14808\n", + "14809\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93596248it [3:35:56, 5772.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14810\n", + "14811\n", + "14812\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93598174it [3:35:56, 5942.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14813\n", + "14814\n", + "14815\n", + "14816\n", + "14817\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93600551it [3:35:56, 5053.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14818\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93611252it [3:35:58, 8097.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14819\n", + "14820\n", + "14821\n", + "14822\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93617734it [3:35:59, 7818.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14823\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93625507it [3:36:00, 6083.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14824\n", + "14825\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93627479it [3:36:00, 6467.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14826\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93635786it [3:36:02, 4518.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14827\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93637487it [3:36:02, 4729.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14828\n", + "14829\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93638779it [3:36:02, 5537.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14830\n", + "14831\n", + "14832\n", + "14833\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93643181it [3:36:03, 7118.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14834\n", + "14835\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93644684it [3:36:03, 7319.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14836\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93661027it [3:36:05, 8164.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14837\n", + "14838\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93665252it [3:36:06, 8232.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14839\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93670295it [3:36:06, 8356.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14840\n", + "14841\n", + "14842\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93678616it [3:36:07, 7929.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14843\n", + "14844\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93684186it [3:36:08, 7945.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14845\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93692533it [3:36:09, 8318.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14846\n", + "14847\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93696764it [3:36:10, 8152.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14848\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93703254it [3:36:10, 7979.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14849\n", + "14850\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93721211it [3:36:13, 8108.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14851\n", + "14852\n", + "14853\n", + "14854\n", + "14855\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93722826it [3:36:13, 7964.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14856\n", + "14857\n", + "14858\n", + "14859\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93731837it [3:36:14, 7931.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14860\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93735182it [3:36:14, 8185.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14861\n", + "14862\n", + "14863\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93744252it [3:36:16, 8098.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14864\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93753181it [3:36:17, 7984.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14865\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93756286it [3:36:17, 7462.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14866\n", + "14867\n", + "14868\n", + "14869\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93772247it [3:36:19, 8021.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14870\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93774638it [3:36:20, 7667.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14871\n", + "14872\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93777006it [3:36:20, 7499.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14873\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93779323it [3:36:20, 7428.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14874\n", + "14875\n", + "14876\n", + "14877\n", + "14878\n", + "14879\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93781734it [3:36:20, 7854.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14880\n", + "14881\n", + "14882\n", + "14883\n", + "14884\n", + "14885" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93783293it [3:36:21, 7545.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "14886\n", + "14887\n", + "14888\n", + "14889\n", + "14890\n", + "14891\n", + "14892\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93800054it [3:36:23, 7194.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14893\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93804830it [3:36:24, 7938.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14894\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93819112it [3:36:25, 8176.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14895\n", + "14896\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93838413it [3:36:28, 8077.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14897\n", + "14898\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93846514it [3:36:29, 7669.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14899\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93851676it [3:36:30, 6074.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14900\n", + "14901\n", + "14902\n", + "14903\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93853742it [3:36:30, 6419.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14904\n", + "14905\n", + "14906\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93855777it [3:36:30, 6648.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14907\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93859184it [3:36:31, 6662.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14908\n", + "14909\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93861260it [3:36:31, 6831.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14910\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93870326it [3:36:32, 5885.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14911\n", + "14912\n", + "14913\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93873572it [3:36:33, 3572.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14914\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93875858it [3:36:34, 5087.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14915\n", + "14916\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93878600it [3:36:34, 5099.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14917\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93886652it [3:36:36, 6233.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14918\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93895972it [3:36:37, 7319.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14919\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93902796it [3:36:38, 7293.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14920\n", + "14921\n", + "14922\n", + "14923\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93905797it [3:36:38, 7224.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14924\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93908895it [3:36:39, 7571.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14925\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93912049it [3:36:39, 7753.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14926\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93913626it [3:36:39, 7808.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14927\n", + "14928\n", + "14929\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93927351it [3:36:41, 8111.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14930\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93941441it [3:36:43, 8386.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14931\n", + "14932\n", + "14933\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93943095it [3:36:43, 7648.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14934\n", + "14935\n", + "14936\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93962884it [3:36:46, 8256.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14937\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93978376it [3:36:48, 7884.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14938\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93995124it [3:36:50, 8054.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14939\n", + "14940\n", + "14941\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "93997538it [3:36:50, 7974.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14942\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94008207it [3:36:51, 8129.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14943\n", + "14944\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94017332it [3:36:53, 8360.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14945\n", + "14946\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94027400it [3:36:54, 8035.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14947\n", + "14948\n", + "14949\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94046845it [3:36:56, 8210.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14950\n", + "14951\n", + "14952\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94051165it [3:36:57, 8355.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14953\n", + "14954\n", + "14955\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94052842it [3:36:57, 8186.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14956\n", + "14957\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94066976it [3:36:59, 6197.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14958\n", + "14959\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94068859it [3:36:59, 5932.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14960\n", + "14961\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94079582it [3:37:01, 8166.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14962\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94101949it [3:37:04, 7929.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14963\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94106736it [3:37:04, 7334.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14964\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94113279it [3:37:05, 8054.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14965\n", + "14966\n", + "14967\n", + "14968\n", + "14969\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94119028it [3:37:06, 8113.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14970\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94136214it [3:37:08, 8032.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14971\n", + "14972\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94142016it [3:37:09, 8194.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14973\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94169289it [3:37:12, 8147.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14974\n", + "14975\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94191508it [3:37:15, 8023.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14976\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94210705it [3:37:17, 7963.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14977\n", + "14978\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94212288it [3:37:18, 7718.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14979\n", + "14980\n", + "14981\n", + "14982\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94216266it [3:37:18, 7807.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14983\n", + "14984\n", + "14985\n", + "14986\n", + "14987\n", + "14988\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94277292it [3:37:26, 8257.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14989\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94285363it [3:37:27, 7084.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14990\n", + "14991\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94290148it [3:37:28, 7793.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14992\n", + "14993\n", + "14994\n", + "14995\n", + "14996\n", + "14997\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94291783it [3:37:28, 7983.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14998\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94318167it [3:37:31, 8737.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14999\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94326620it [3:37:32, 8143.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15000\n", + "15001\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94344683it [3:37:34, 7169.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15002\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94346961it [3:37:35, 7349.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15003\n", + "15004\n", + "15005\n", + "15006\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94355008it [3:37:36, 7031.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15007\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94365212it [3:37:37, 7101.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15008\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94381416it [3:37:39, 7550.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15009\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94383671it [3:37:40, 7373.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15010\n", + "15011\n", + "15012\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94386045it [3:37:40, 7717.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15013\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94389164it [3:37:40, 7685.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15014\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94390705it [3:37:41, 7494.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15015\n", + "15016\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94397155it [3:37:41, 7955.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15017\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94404841it [3:37:42, 8369.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15018\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94409707it [3:37:43, 7768.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15019\n", + "15020\n", + "15021\n", + "15022\n", + "15023\n", + "15024\n", + "15025\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94412159it [3:37:43, 8025.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15026\n", + "15027\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94415411it [3:37:44, 7997.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15028\n", + "15029\n", + "15030\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94423579it [3:37:45, 8068.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15031\n", + "15032\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94425995it [3:37:45, 7914.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15033\n", + "15034\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94444103it [3:37:47, 7904.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15035\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94453100it [3:37:48, 8246.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15036\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94455657it [3:37:49, 8356.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15037\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94458956it [3:37:49, 8016.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15038\n", + "15039\n", + "15040\n", + "15041\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94470378it [3:37:51, 7579.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15042\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94476965it [3:37:52, 6756.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15043\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94481089it [3:37:52, 6753.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15044\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94485175it [3:37:53, 5609.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15045\n", + "15046\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94489967it [3:37:54, 7715.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15047\n", + "15048\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94498191it [3:37:55, 8161.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15049\n", + "15050\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94508973it [3:37:56, 8071.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15051\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94519883it [3:37:57, 8536.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15052\n", + "15053\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94541805it [3:38:00, 8207.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15054\n", + "15055\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94558046it [3:38:02, 7803.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15056\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94575507it [3:38:05, 7987.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15057\n", + "15058\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94587944it [3:38:06, 8276.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15059\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94593835it [3:38:07, 8236.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15060\n", + "15061\n", + "15062" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94595559it [3:38:07, 8158.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "15063\n", + "15064\n", + "15065\n", + "15066\n", + "15067\n", + "15068\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94597938it [3:38:07, 7725.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15069\n", + "15070\n", + "15071\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94609471it [3:38:09, 7826.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15072\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94617517it [3:38:10, 7835.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15073\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94620680it [3:38:10, 7666.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15074\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94625602it [3:38:11, 8176.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15075\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94629600it [3:38:11, 7742.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15076\n", + "15077\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94633599it [3:38:12, 7502.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15078\n", + "15079\n", + "15080\n", + "15081\n", + "15082\n", + "15083\n", + "15084\n", + "15085\n", + "15086\n", + "15087\n", + "15088\n", + "15089\n", + "15090\n", + "15091\n", + "15092\n", + "15093\n", + "15094\n", + "15095\n", + "15096\n", + "15097\n", + "15098\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94642127it [3:38:13, 8130.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15099\n", + "15100\n", + "15101\n", + "15102\n", + "15103\n", + "15104\n", + "15105\n", + "15106\n", + "15107\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94648670it [3:38:14, 7989.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15108\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94681829it [3:38:18, 8188.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15109\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94685173it [3:38:18, 7880.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15110\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94694284it [3:38:19, 8084.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15111\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94702707it [3:38:20, 8332.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15112\n", + "15113\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94705188it [3:38:21, 7975.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15114\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94716742it [3:38:22, 8114.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15115\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94728735it [3:38:24, 8547.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15116\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94738095it [3:38:25, 8534.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15117\n", + "15118\n", + "15119\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94742323it [3:38:25, 8140.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15120\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94744778it [3:38:26, 8059.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15121\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94746419it [3:38:26, 8039.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15122\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94766871it [3:38:28, 8252.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15123\n", + "15124\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94778883it [3:38:30, 8426.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15125\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94788938it [3:38:31, 8147.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15126\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94792131it [3:38:31, 7822.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15127\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94798675it [3:38:32, 8016.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15128\n", + "15129\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94810625it [3:38:34, 7817.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15130\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94813059it [3:38:34, 7796.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15131\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94816977it [3:38:35, 7650.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15132\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94825980it [3:38:36, 8335.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15133\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94841085it [3:38:38, 8342.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15134\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94849449it [3:38:39, 8201.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15135\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94857994it [3:38:40, 8569.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15136\n", + "15137\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94863875it [3:38:40, 8139.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15138\n", + "15139\n", + "15140\n", + "15141\n", + "15142\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94871093it [3:38:41, 7968.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15143\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94878345it [3:38:42, 8222.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15144\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94888472it [3:38:43, 8287.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15145\n", + "15146\n", + "15147\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94895390it [3:38:44, 8639.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15148\n", + "15149\n", + "15150\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94900502it [3:38:45, 8437.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15151\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94911515it [3:38:46, 8222.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15152\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94913160it [3:38:46, 7990.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15153\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94918838it [3:38:47, 7973.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15154\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94926354it [3:38:48, 8392.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15155\n", + "15156\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94928879it [3:38:48, 8381.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15157\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94931401it [3:38:49, 8138.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15158\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94939954it [3:38:50, 8423.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15159\n", + "15160" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94942552it [3:38:50, 8558.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "15161\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94945988it [3:38:50, 8152.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15162\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94960078it [3:38:52, 7771.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15163\n", + "15164\n", + "15165\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94967580it [3:38:53, 8231.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15166\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94969233it [3:38:53, 8181.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15167\n", + "15168\n", + "15169\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94972480it [3:38:54, 7897.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15170\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94974873it [3:38:54, 7771.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15171\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "94977315it [3:38:54, 8029.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15172\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95000983it [3:38:57, 8270.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15173\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95012603it [3:38:59, 8166.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15174\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95022801it [3:39:00, 8369.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15175\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95042497it [3:39:02, 8100.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15176\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95044235it [3:39:03, 7960.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15177\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95052086it [3:39:04, 6644.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15178\n", + "15179\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95079093it [3:39:07, 8196.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15180\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95096914it [3:39:09, 8411.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15181\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95105090it [3:39:10, 8019.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15182\n", + "15183\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95108271it [3:39:11, 7736.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15184\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95118236it [3:39:12, 8376.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15185\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95137980it [3:39:15, 7723.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15186\n", + "15187\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95144548it [3:39:15, 8405.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15188\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95160031it [3:39:17, 7825.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15189\n", + "15190\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95168204it [3:39:18, 8275.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15191\n", + "15192\n", + "15193\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95170668it [3:39:19, 8126.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15194\n", + "15195\n", + "15196\n", + "15197\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95191835it [3:39:21, 8408.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15198\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95201083it [3:39:22, 8444.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15199\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95218860it [3:39:25, 8168.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15200\n", + "15201\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95228979it [3:39:26, 8300.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15202\n", + "15203\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95248298it [3:39:28, 7735.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15204\n", + "15205\n", + "15206\n", + "15207\n", + "15208\n", + "15209\n", + "15210\n", + "15211\n", + "15212\n", + "15213\n", + "15214\n", + "15215\n", + "15216\n", + "15217\n", + "15218\n", + "15219\n", + "15220\n", + "15221\n", + "15222\n", + "15223\n", + "15224\n", + "15225\n", + "15226\n", + "15227\n", + "15228\n", + "15229\n", + "15230\n", + "15231\n", + "15232\n", + "15233\n", + "15234\n", + "15235\n", + "15236\n", + "15237\n", + "15238\n", + "15239\n", + "15240\n", + "15241\n", + "15242\n", + "15243\n", + "15244\n", + "15245\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95262535it [3:39:30, 8188.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15246\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95278375it [3:39:32, 8200.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15247\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95285691it [3:39:33, 7590.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15248\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95294396it [3:39:34, 6643.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15249\n", + "15250\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95314491it [3:39:37, 7562.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15251\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95335007it [3:39:40, 7708.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15252\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95338132it [3:39:40, 7642.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15253\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95342101it [3:39:41, 7888.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15254\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95346120it [3:39:41, 7805.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15255\n", + "15256\n", + "15257\n", + "15258\n", + "15259\n", + "15260\n", + "15261\n", + "15262\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95354610it [3:39:42, 8340.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15263\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95357155it [3:39:43, 8335.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15264\n", + "15265\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95358801it [3:39:43, 7996.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15266\n", + "15267\n", + "15268\n", + "15269\n", + "15270\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95365271it [3:39:44, 8097.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15271\n", + "15272\n", + "15273\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95367650it [3:39:44, 7525.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15274\n", + "15275\n", + "15276\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95369183it [3:39:44, 6343.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15277\n", + "15278\n", + "15279\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95372554it [3:39:45, 7861.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15280\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95381946it [3:39:46, 7675.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15281\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95388159it [3:39:47, 7792.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15282\n", + "15283\n", + "15284\n", + "15285\n", + "15286\n", + "15287\n", + "15288\n", + "15289\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95392111it [3:39:47, 7655.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15290\n", + "15291\n", + "15292\n", + "15293\n", + "15294\n", + "15295\n", + "15296\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95404926it [3:39:49, 7063.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15297\n", + "15298\n", + "15299\n", + "15300\n", + "15301\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95406508it [3:39:49, 7470.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15302\n", + "15303\n", + "15304\n", + "15305\n", + "15306\n", + "15307\n", + "15308\n", + "15309\n", + "15310\n", + "15311\n", + "15312\n", + "15313\n", + "15314\n", + "15315\n", + "15316\n", + "15317\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95408005it [3:39:50, 7098.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15318\n", + "15319\n", + "15320\n", + "15321\n", + "15322\n", + "15323\n", + "15324\n", + "15325\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95410437it [3:39:50, 7732.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15326\n", + "15327\n", + "15328\n", + "15329\n", + "15330\n", + "15331\n", + "15332\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95414587it [3:39:50, 8268.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15333\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95422136it [3:39:51, 8172.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15334\n", + "15335\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95433042it [3:39:53, 8046.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15336\n", + "15337\n", + "15338\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95437977it [3:39:53, 8001.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15339\n", + "15340\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95441259it [3:39:54, 7955.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15341\n", + "15342\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95451267it [3:39:55, 8473.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15343\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95460433it [3:39:56, 7509.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15344\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95475314it [3:39:58, 7868.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15345\n", + "15346\n", + "15347\n", + "15348\n", + "15349\n", + "15350\n", + "15351\n", + "15352\n", + "15353\n", + "15354\n", + "15355\n", + "15356\n", + "15357\n", + "15358\n", + "15359\n", + "15360\n", + "15361\n", + "15362\n", + "15363\n", + "15364\n", + "15365\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95476994it [3:39:58, 8149.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15366\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95481716it [3:39:59, 7666.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15367\n", + "15368\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95483258it [3:39:59, 7655.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15369\n", + "15370\n", + "15371\n", + "15372\n", + "15373\n", + "15374\n", + "15375\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95487934it [3:39:59, 7631.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15376\n", + "15377\n", + "15378\n", + "15379\n", + "15380\n", + "15381\n", + "15382\n", + "15383" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95489522it [3:40:00, 7797.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "15384\n", + "15385\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95502009it [3:40:01, 7736.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15386\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95516938it [3:40:03, 7183.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15387\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95519152it [3:40:04, 7222.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15388\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95521469it [3:40:04, 7513.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15389\n", + "15390\n", + "15391\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95523700it [3:40:04, 7137.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15392\n", + "15393\n", + "15394\n", + "15395\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95528350it [3:40:05, 7602.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15396\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95535196it [3:40:06, 7549.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15397\n", + "15398\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95537585it [3:40:06, 7771.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15399\n", + "15400\n", + "15401\n", + "15402\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95541361it [3:40:07, 7326.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15403\n", + "15404\n", + "15405\n", + "15406\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95542908it [3:40:07, 7497.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15407\n", + "15408\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95549553it [3:40:08, 7290.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15409\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95560987it [3:40:09, 8021.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15410\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95564136it [3:40:10, 7512.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15411\n", + "15412\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95567211it [3:40:10, 7367.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15413\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95569538it [3:40:10, 7631.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15414\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95574195it [3:40:11, 7723.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15415\n", + "15416\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95588236it [3:40:13, 7910.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15417\n", + "15418\n", + "15419\n", + "15420\n", + "15421\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95592987it [3:40:13, 7668.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15422\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95612642it [3:40:16, 8446.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15423\n", + "15424\n", + "15425\n", + "15426\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95619859it [3:40:17, 8079.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15427\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95622323it [3:40:17, 8112.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15428\n", + "15429\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95626925it [3:40:18, 7392.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15430\n", + "15431\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95630131it [3:40:18, 7795.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15432\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95633993it [3:40:19, 7393.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15433\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95639752it [3:40:19, 8178.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15434\n", + "15435\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95641379it [3:40:20, 7891.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15436\n", + "15437\n", + "15438\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95644757it [3:40:20, 8160.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15439\n", + "15440\n", + "15441\n", + "15442\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95647201it [3:40:20, 7939.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15443\n", + "15444\n", + "15445\n", + "15446\n", + "15447\n", + "15448\n", + "15449\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95652952it [3:40:21, 8000.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15450\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95655461it [3:40:21, 8185.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15451\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95660208it [3:40:22, 7681.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15452\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95666609it [3:40:23, 8127.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15453\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95669803it [3:40:23, 7810.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15454\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95672194it [3:40:24, 7828.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15455\n", + "15456\n", + "15457\n", + "15458\n", + "15459\n", + "15460\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95673731it [3:40:24, 7313.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15461\n", + "15462\n", + "15463\n", + "15464\n", + "15465\n", + "15466\n", + "15467\n", + "15468\n", + "15469\n", + "15470\n", + "15471\n", + "15472\n", + "15473\n", + "15474\n", + "15475\n", + "15476\n", + "15477\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95680260it [3:40:25, 8217.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15478\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95689304it [3:40:26, 8123.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15479\n", + "15480\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95695866it [3:40:27, 7965.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15481\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95711236it [3:40:29, 7698.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15482\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95716879it [3:40:30, 6369.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15483\n", + "15484\n", + "15485\n", + "15486\n", + "15487\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95718265it [3:40:30, 6492.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15488\n", + "15489\n", + "15490\n", + "15491\n", + "15492\n", + "15493\n", + "15494\n", + "15495\n", + "15496\n", + "15497\n", + "15498\n", + "15499\n", + "15500\n", + "15501\n", + "15502\n", + "15503" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95719959it [3:40:30, 7502.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "15504\n", + "15505\n", + "15506\n", + "15507\n", + "15508\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95724293it [3:40:30, 8226.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15509\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95731224it [3:40:31, 8317.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15510\n", + "15511\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95736686it [3:40:32, 6291.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15512\n", + "15513\n", + "15514\n", + "15515\n", + "15516\n", + "15517\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95739932it [3:40:33, 6385.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15518\n", + "15519\n", + "15520\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95743186it [3:40:33, 6145.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15521\n", + "15522\n", + "15523\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95745810it [3:40:34, 6527.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15524\n", + "15525\n", + "15526\n", + "15527\n", + "15528\n", + "15529\n", + "15530\n", + "15531\n", + "15532\n", + "15533\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95747184it [3:40:34, 6708.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15534\n", + "15535\n", + "15536\n", + "15537\n", + "15538\n", + "15539\n", + "15540\n", + "15541\n", + "15542\n", + "15543\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95754003it [3:40:35, 7431.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15544\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95764398it [3:40:36, 7548.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15545\n", + "15546\n", + "15547\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95766741it [3:40:36, 7498.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15548\n", + "15549\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95772059it [3:40:37, 7208.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15550\n", + "15551\n", + "15552\n", + "15553\n", + "15554\n", + "15555\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95774454it [3:40:37, 7633.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15556\n", + "15557\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95779656it [3:40:38, 7060.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15558\n", + "15559\n", + "15560\n", + "15561\n", + "15562\n", + "15563\n", + "15564\n", + "15565\n", + "15566\n", + "15567\n", + "15568\n", + "15569\n", + "15570\n", + "15571\n", + "15572\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95787987it [3:40:39, 7533.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15573\n", + "15574\n", + "15575\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95789516it [3:40:40, 7548.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15576\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95793301it [3:40:40, 6755.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15577\n", + "15578\n", + "15579\n", + "15580\n", + "15581\n", + "15582\n", + "15583\n", + "15584\n", + "15585\n", + "15586\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95794768it [3:40:40, 7043.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15587\n", + "15588\n", + "15589\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95797082it [3:40:41, 7505.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15590\n", + "15591\n", + "15592\n", + "15593\n", + "15594\n", + "15595\n", + "15596\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95800967it [3:40:41, 7708.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15597\n", + "15598\n", + "15599\n", + "15600\n", + "15601\n", + "15602\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95804884it [3:40:42, 7729.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15603\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95809529it [3:40:42, 7484.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15604\n", + "15605\n", + "15606\n", + "15607\n", + "15608\n", + "15609\n", + "15610\n", + "15611\n", + "15612\n", + "15613\n", + "15614\n", + "15615\n", + "15616\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95811768it [3:40:43, 7296.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15617\n", + "15618\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95813952it [3:40:43, 7157.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15619\n", + "15620\n", + "15621\n", + "15622\n", + "15623\n", + "15624\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95818365it [3:40:43, 7297.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15625\n", + "15626\n", + "15627\n", + "15628\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95830194it [3:40:45, 7807.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15629\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95831847it [3:40:45, 7830.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15630\n", + "15631\n", + "15632\n", + "15633\n", + "15634\n", + "15635\n", + "15636\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95848225it [3:40:47, 7302.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15637\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95857805it [3:40:49, 7603.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15638\n", + "15639\n", + "15640\n", + "15641\n", + "15642\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95860084it [3:40:49, 7282.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15643\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95862282it [3:40:49, 7291.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15644\n", + "15645\n", + "15646\n", + "15647\n", + "15648\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95870817it [3:40:50, 8042.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15649\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95872416it [3:40:51, 7830.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15650\n", + "15651\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95873968it [3:40:51, 7626.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15652\n", + "15653\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95877855it [3:40:51, 7631.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15654\n", + "15655\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95883486it [3:40:52, 7701.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15656\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95897236it [3:40:54, 7852.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15657\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95902070it [3:40:54, 8000.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15658\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95911726it [3:40:56, 8054.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15659\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95917507it [3:40:56, 8262.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15660\n", + "15661\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95919983it [3:40:57, 7950.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15662\n", + "15663\n", + "15664\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95921575it [3:40:57, 7818.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15665\n", + "15666\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95924960it [3:40:57, 8170.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15667\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95927392it [3:40:58, 7991.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15668\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95934698it [3:40:59, 8009.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15669\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95942408it [3:40:59, 8354.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15670\n", + "15671\n", + "15672\n", + "15673\n", + "15674\n", + "15675\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95947427it [3:41:00, 8026.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15676\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95952222it [3:41:01, 7833.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15677\n", + "15678\n", + "15679\n", + "15680\n", + "15681\n", + "15682\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95955359it [3:41:01, 7794.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15683\n", + "15684\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95959304it [3:41:02, 7871.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15685\n", + "15686\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95961673it [3:41:02, 7814.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15687\n", + "15688\n", + "15689\n", + "15690\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95964122it [3:41:02, 7990.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15691\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95971371it [3:41:03, 7830.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15692\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95972983it [3:41:03, 7931.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15693\n", + "15694\n", + "15695\n", + "15696\n", + "15697\n", + "15698\n", + "15699\n", + "15700\n", + "15701\n", + "15702\n", + "15703\n", + "15704\n", + "15705\n", + "15706\n", + "15707\n", + "15708\n", + "15709\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95974581it [3:41:04, 7809.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15710\n", + "15711\n", + "15712\n", + "15713\n", + "15714\n", + "15715\n", + "15716\n", + "15717\n", + "15718\n", + "15719\n", + "15720\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95986583it [3:41:05, 8177.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15721\n", + "15722\n", + "15723\n", + "15724\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95990765it [3:41:06, 8082.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15725\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95994062it [3:41:06, 8021.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15726\n", + "15727\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "95998256it [3:41:07, 8235.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15728\n", + "15729\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96000744it [3:41:07, 8136.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15730\n", + "15731\n", + "15732\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96014058it [3:41:09, 8498.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15733\n", + "15734" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96015749it [3:41:09, 8281.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96019171it [3:41:09, 8331.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15735\n", + "15736\n", + "15737\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96023326it [3:41:10, 8204.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15738\n", + "15739\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96032609it [3:41:11, 8024.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15740\n", + "15741\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96038863it [3:41:12, 7646.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15742\n", + "15743\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96043803it [3:41:12, 8006.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15744\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96046335it [3:41:13, 8091.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15745\n", + "15746\n", + "15747\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96052163it [3:41:13, 8234.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15748\n", + "15749\n", + "15750\n", + "15751\n", + "15752\n", + "15753\n", + "15754\n", + "15755\n", + "15756\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96069857it [3:41:16, 8288.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15757\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96073177it [3:41:16, 8143.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15758\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96075604it [3:41:16, 7799.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15759\n", + "15760\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96077168it [3:41:16, 7704.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15761\n", + "15762\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96079547it [3:41:17, 7847.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15763\n", + "15764\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96092974it [3:41:18, 8257.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15765\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96097747it [3:41:19, 6469.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15766\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96102529it [3:41:20, 7902.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15767\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96117459it [3:41:22, 7989.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15768\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96130811it [3:41:23, 8345.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15769\n", + "15770\n", + "15771\n", + "15772\n", + "15773\n", + "15774\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96135821it [3:41:24, 8243.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15775\n", + "15776\n", + "15777\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96138337it [3:41:24, 8186.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15778\n", + "15779\n", + "15780\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96142509it [3:41:25, 8093.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15781\n", + "15782\n", + "15783\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96146606it [3:41:25, 7826.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15784\n", + "15785\n", + "15786\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96150793it [3:41:26, 8255.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15787\n", + "15788\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96153207it [3:41:26, 7812.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15789\n", + "15790\n", + "15791\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96155587it [3:41:26, 7741.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15792\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96157991it [3:41:27, 7959.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15793\n", + "15794\n", + "15795" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96159581it [3:41:27, 7835.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "15796\n", + "15797\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96163779it [3:41:27, 8230.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15798\n", + "15799\n", + "15800\n", + "15801\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96165415it [3:41:28, 8053.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15802\n", + "15803\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96168699it [3:41:28, 7956.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15804\n", + "15805\n", + "15806\n", + "15807\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96171110it [3:41:28, 7920.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15808\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96176799it [3:41:29, 7983.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15809\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96179231it [3:41:29, 7756.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15810\n", + "15811\n", + "15812\n", + "15813\n", + "15814\n", + "15815\n", + "15816\n", + "15817\n", + "15818\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96184947it [3:41:30, 7896.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15819\n", + "15820\n", + "15821\n", + "15822\n", + "15823\n", + "15824\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96189768it [3:41:31, 7924.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15825\n", + "15826\n", + "15827\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96196274it [3:41:31, 8030.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15828\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96202966it [3:41:32, 7804.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15829\n", + "15830\n", + "15831\n", + "15832\n", + "15833\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96204624it [3:41:32, 8058.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15834\n", + "15835\n", + "15836\n", + "15837\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96210105it [3:41:33, 7577.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15838\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96214883it [3:41:34, 7596.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15839\n", + "15840\n", + "15841\n", + "15842\n", + "15843\n", + "15844\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96216370it [3:41:34, 6536.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15845\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96225347it [3:41:35, 8218.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15846\n", + "15847\n", + "15848\n", + "15849\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96249540it [3:41:38, 8426.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15850\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96251219it [3:41:38, 8316.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15851\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96254700it [3:41:39, 8646.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15852\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96261351it [3:41:40, 8170.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15853\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96264546it [3:41:40, 7599.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15854\n", + "15855\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96267786it [3:41:41, 8043.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15856\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96285564it [3:41:43, 8571.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15857\n", + "15858\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96289800it [3:41:43, 8072.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15859\n", + "15860\n", + "15861\n", + "15862\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96300361it [3:41:45, 8018.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15863\n", + "15864\n", + "15865\n", + "15866\n", + "15867\n", + "15868\n", + "15869\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96305175it [3:41:45, 7977.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15870\n", + "15871\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96307664it [3:41:45, 8168.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15872\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96310111it [3:41:46, 8042.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15873\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96332105it [3:41:48, 8485.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15874\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96348787it [3:41:51, 7921.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15875\n", + "15876\n", + "15877\n", + "15878\n", + "15879\n", + "15880\n", + "15881\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96359571it [3:41:52, 8172.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15882\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96370516it [3:41:53, 8485.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15883\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96384026it [3:41:55, 8457.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15884\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96399140it [3:41:57, 8314.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15885\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96411513it [3:41:58, 7969.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15886\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96440172it [3:42:02, 8172.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15887\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96447665it [3:42:03, 8378.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15888\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96451048it [3:42:03, 8306.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15889\n", + "15890\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96458526it [3:42:04, 8015.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15891\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96463330it [3:42:05, 7880.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15892\n", + "15893\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96490945it [3:42:08, 6711.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15894\n", + "15895\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96495187it [3:42:09, 5645.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15896\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96508222it [3:42:11, 8382.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15897\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96514923it [3:42:12, 8152.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15898\n", + "15899\n", + "15900\n", + "15901\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96516438it [3:42:12, 6222.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15902\n", + "15903\n", + "15904\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96517721it [3:42:12, 5411.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15905\n", + "15906\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96520370it [3:42:13, 4947.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15907\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96522428it [3:42:13, 4976.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15908\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96524896it [3:42:14, 5806.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15909\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96536889it [3:42:16, 7458.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15910\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96546053it [3:42:17, 6465.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15911\n", + "15912\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96572209it [3:42:20, 7897.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15913\n", + "15914\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96602501it [3:42:24, 7585.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15915\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96614530it [3:42:26, 5773.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15916\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96615714it [3:42:26, 5680.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15917\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96624099it [3:42:28, 5811.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15918\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96628021it [3:42:29, 6604.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15919\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96632938it [3:42:29, 6753.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15920\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96635809it [3:42:30, 7186.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15921\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96648454it [3:42:31, 7178.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15922\n", + "15923\n", + "15924\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96674246it [3:42:35, 7843.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15925\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96678325it [3:42:35, 8092.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15926\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96691835it [3:42:37, 8033.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15927\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96700647it [3:42:38, 7967.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15928\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96702252it [3:42:38, 7851.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15929\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96707190it [3:42:39, 8132.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15930\n", + "15931\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96708836it [3:42:39, 8111.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15932\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96715388it [3:42:40, 7933.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15933\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96721873it [3:42:41, 7746.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15934\n", + "15935\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96732372it [3:42:42, 7931.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15936\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96738886it [3:42:43, 8144.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15937\n", + "15938\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96742874it [3:42:44, 7764.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15939\n", + "15940\n", + "15941\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96747617it [3:42:44, 7565.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15942\n", + "15943\n", + "15944\n", + "15945\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96751750it [3:42:45, 7947.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15946\n", + "15947\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96757665it [3:42:45, 8329.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15948\n", + "15949\n", + "15950\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96760143it [3:42:46, 8139.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15951\n", + "15952\n", + "15953\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96770703it [3:42:47, 7515.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15954\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96774799it [3:42:48, 6284.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15955\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96778377it [3:42:48, 7064.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15956\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96783929it [3:42:49, 6910.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15957\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96797711it [3:42:51, 8300.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15958\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96805776it [3:42:52, 7947.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15959\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96809818it [3:42:52, 8037.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15960\n", + "15961\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96816453it [3:42:53, 8194.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15962\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96818866it [3:42:54, 7807.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15963\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96827804it [3:42:55, 7992.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15964\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96830257it [3:42:55, 7898.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15965\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96831864it [3:42:55, 7843.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15966\n", + "15967\n", + "15968\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96835889it [3:42:56, 7697.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15969\n", + "15970\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96841579it [3:42:56, 8094.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15971\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96846643it [3:42:57, 8443.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15972\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96856676it [3:42:59, 6757.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15973\n", + "15974\n", + "15975\n", + "15976\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96861461it [3:42:59, 7780.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15977\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96863847it [3:42:59, 7887.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15978\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96868231it [3:43:00, 6840.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15979\n", + "15980\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96875448it [3:43:01, 8041.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15981\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96886890it [3:43:03, 7975.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15982\n", + "15983\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96901808it [3:43:05, 7680.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15984\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96903326it [3:43:05, 7241.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15985\n", + "15986\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96906542it [3:43:05, 7922.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15987\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96922017it [3:43:07, 8040.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15988\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96926029it [3:43:08, 7942.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15989\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96939464it [3:43:09, 7895.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15990\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96945121it [3:43:10, 7953.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15991\n", + "15992\n", + "15993\n", + "15994\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96956903it [3:43:12, 8066.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15995\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96964571it [3:43:12, 8209.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15996\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96966221it [3:43:13, 8053.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15997\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96968731it [3:43:13, 8001.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15998\n", + "15999\n", + "16000\n", + "16001\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96971946it [3:43:13, 7933.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16002\n", + "16003\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96979996it [3:43:14, 8268.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16004\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96984199it [3:43:15, 8114.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16005\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96986655it [3:43:15, 8078.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16006\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "96996478it [3:43:16, 7941.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16007\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97002976it [3:43:17, 7832.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16008\n", + "16009\n", + "16010\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97015633it [3:43:19, 7967.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16011\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97018879it [3:43:19, 7971.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16012\n", + "16013\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97024311it [3:43:20, 7523.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16014\n", + "16015\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97027453it [3:43:20, 7775.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16016\n", + "16017\n", + "16018\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97029921it [3:43:21, 8123.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16019\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97033195it [3:43:21, 8100.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16020\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97036527it [3:43:21, 8216.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16021\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97038962it [3:43:22, 7705.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16022\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97047785it [3:43:23, 7953.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16023\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97061028it [3:43:25, 8193.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16024\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97062668it [3:43:25, 8074.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16025\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97068349it [3:43:26, 7854.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16026\n", + "16027\n", + "16028\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97082436it [3:43:27, 7910.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16029\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97095360it [3:43:29, 8591.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16030\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97103311it [3:43:30, 8879.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16031\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97111412it [3:43:31, 8933.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16032\n", + "16033\n", + "16034\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97127002it [3:43:33, 6526.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16035\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97151370it [3:43:37, 5733.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16036\n", + "16037\n", + "16038\n", + "16039\n", + "16040\n", + "16041\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97168206it [3:43:39, 7003.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16042\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97175220it [3:43:40, 6439.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16043\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97177829it [3:43:41, 6237.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16044\n", + "16045\n", + "16046\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97204756it [3:43:45, 7384.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16047\n", + "16048\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97206926it [3:43:45, 6407.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16049\n", + "16050\n", + "16051\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97232235it [3:43:51, 3064.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16052\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97247560it [3:43:58, 3003.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16053\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97255143it [3:44:01, 2759.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16054\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97256067it [3:44:01, 2807.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16055\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97276263it [3:44:05, 7720.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16056\n", + "16057\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97291412it [3:44:07, 7515.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16058\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97305829it [3:44:09, 7855.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16059\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97308018it [3:44:09, 5917.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16060\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97322446it [3:44:12, 5451.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16061\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97335334it [3:44:14, 5755.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16062\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97351540it [3:44:18, 3984.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16063\n", + "16064\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97376509it [3:44:22, 6115.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16065\n", + "16066\n", + "16067\n", + "16068\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97378917it [3:44:22, 5677.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16069\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97409815it [3:44:28, 5429.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16070\n", + "16071\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97411534it [3:44:29, 5533.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16072\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97414466it [3:44:29, 5686.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16073\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97418601it [3:44:30, 5791.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16074\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97451428it [3:44:36, 5010.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16075\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97452417it [3:44:37, 4715.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16076\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97515003it [3:44:48, 5332.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16077\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97516608it [3:44:48, 5322.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16078\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97527306it [3:44:50, 5621.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16079\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97530045it [3:44:51, 6050.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16080\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97535863it [3:44:52, 5072.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16081\n", + "16082\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97537693it [3:44:52, 5651.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16083\n", + "16084\n", + "16085\n", + "16086\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97539545it [3:44:52, 6079.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16087\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97550637it [3:44:54, 6582.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16088\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97558474it [3:44:55, 6338.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16089\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97564788it [3:44:56, 6164.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16090\n", + "16091\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97572571it [3:44:58, 6451.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16092\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97582526it [3:44:59, 6507.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16093\n", + "16094\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97584502it [3:44:59, 6367.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16095\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97585765it [3:45:00, 6074.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16096\n", + "16097\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97587684it [3:45:00, 6309.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16098\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97594365it [3:45:01, 6548.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16099\n", + "16100\n", + "16101\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97596961it [3:45:01, 6207.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16102\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97614965it [3:45:05, 4378.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16103\n", + "16104\n", + "16105\n", + "16106\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97616402it [3:45:05, 4575.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16107\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97627102it [3:45:07, 4856.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16108\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97638295it [3:45:09, 5486.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16109\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97639403it [3:45:10, 5444.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16110\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97675358it [3:45:16, 6540.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16111\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97677281it [3:45:16, 6076.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16112\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97679710it [3:45:16, 5694.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16113\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97687842it [3:45:18, 5771.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16114\n", + "16115\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97689912it [3:45:18, 6428.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16116\n", + "16117\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97692546it [3:45:19, 6524.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16118\n", + "16119\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97694491it [3:45:19, 6333.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16120\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97700988it [3:45:20, 6709.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16121\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97703120it [3:45:20, 7013.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16122\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97716572it [3:45:22, 6574.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16123\n", + "16124\n", + "16125\n", + "16126\n", + "16127\n", + "16128\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97731680it [3:45:25, 6777.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16129\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97739988it [3:45:26, 6575.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16130\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97749581it [3:45:27, 6931.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16131\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97756393it [3:45:28, 6528.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16132\n", + "16133\n", + "16134\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97757708it [3:45:29, 6489.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16135\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97774111it [3:45:31, 6360.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16136\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97777432it [3:45:32, 6611.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16137\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97779434it [3:45:32, 6485.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16138\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97781395it [3:45:32, 6412.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16139\n", + "16140\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97786542it [3:45:33, 4659.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16141\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97806223it [3:45:36, 6037.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16142\n", + "16143\n", + "16144\n", + "16145\n", + "16146\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97810039it [3:45:37, 5818.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16147\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97815079it [3:45:38, 6346.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16148\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97826254it [3:45:40, 6195.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16149\n", + "16150\n", + "16151\n", + "16152\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97830118it [3:45:40, 6121.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16153\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97833389it [3:45:41, 6477.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16154\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97836681it [3:45:41, 6240.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16155\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97846026it [3:45:43, 5851.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16156\n", + "16157\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97851043it [3:45:44, 6299.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16158\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97854364it [3:45:44, 6420.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16159\n", + "16160\n", + "16161\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97862502it [3:45:45, 6623.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16162\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97875757it [3:45:48, 6427.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16163\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97884508it [3:45:49, 6387.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16164\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97890404it [3:45:50, 6519.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16165\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97894461it [3:45:50, 6289.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16166\n", + "16167\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97898478it [3:45:51, 6453.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16168\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97914239it [3:45:53, 6481.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16169\n", + "16170\n", + "16171\n", + "16172\n", + "16173\n", + "16174\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97915557it [3:45:54, 6486.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16175\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97923960it [3:45:55, 5935.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16176\n", + "16177\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97931119it [3:45:56, 6406.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16178\n", + "16179\n", + "16180\n", + "16181\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97937057it [3:45:57, 6410.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16182\n", + "16183\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97943625it [3:45:58, 5789.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16184\n", + "16185" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97958963it [3:46:00, 6779.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "16186\n", + "16187\n", + "16188\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97967026it [3:46:02, 6502.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16189\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97984881it [3:46:05, 6121.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16190\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97991953it [3:46:06, 6139.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16191\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97995220it [3:46:06, 6034.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16192\n", + "16193\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "97996409it [3:46:06, 5447.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16194\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98005700it [3:46:08, 6380.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16195\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98013472it [3:46:09, 6233.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16196\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98017880it [3:46:10, 6316.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16197\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98022884it [3:46:11, 6001.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16198\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98030989it [3:46:13, 5593.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16199\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98033234it [3:46:13, 5165.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16200\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98037345it [3:46:14, 4956.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16201\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98043739it [3:46:15, 5044.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16202\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98051636it [3:46:17, 4509.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16203\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98054672it [3:46:18, 5205.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16204\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98056339it [3:46:18, 5397.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16205\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98057590it [3:46:18, 5800.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16206\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98069843it [3:46:20, 5606.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16207\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98075033it [3:46:21, 5742.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16208\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98078687it [3:46:22, 5750.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16209\n", + "16210\n", + "16211\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98084526it [3:46:23, 5431.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16212\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98096637it [3:46:25, 5947.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16213\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98100076it [3:46:26, 5191.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16214\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98101767it [3:46:26, 5458.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16215\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98108162it [3:46:27, 5041.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16216\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98125173it [3:46:31, 6011.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16217\n", + "16218\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98131309it [3:46:32, 5196.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16219\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98133742it [3:46:32, 5989.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16220\n", + "16221\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98135074it [3:46:32, 6379.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16222\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98147102it [3:46:35, 5996.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16223\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98149760it [3:46:35, 6592.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16224\n", + "16225\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98152960it [3:46:36, 5028.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16226\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98158825it [3:46:37, 3840.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16227\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98163494it [3:46:38, 4529.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16228\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98182496it [3:46:42, 5637.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16229\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98186613it [3:46:43, 5863.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16230\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98207627it [3:46:47, 5010.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16231\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98221362it [3:46:50, 5290.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16232\n", + "16233\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98228197it [3:46:51, 5106.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16234\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98232918it [3:46:52, 4690.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16235\n", + "16236\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98235091it [3:46:53, 5215.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16237\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98236904it [3:46:53, 5803.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16238\n", + "16239\n", + "16240\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98238077it [3:46:53, 5592.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16241\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98239270it [3:46:53, 5786.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16242\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98241008it [3:46:54, 5420.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16243\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98243332it [3:46:54, 5597.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16244\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98246667it [3:46:55, 5146.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16245\n", + "16246\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98249698it [3:46:55, 5646.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16247\n", + "16248\n", + "16249\n", + "16250\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98252616it [3:46:56, 5540.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16251\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98256651it [3:46:56, 5593.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16252\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98271812it [3:46:59, 5762.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16253\n", + "16254\n", + "16255\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98274164it [3:47:00, 5794.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16256\n", + "16257\n", + "16258\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98275857it [3:47:00, 5364.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16259\n", + "16260\n", + "16261\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98278574it [3:47:00, 5313.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16262\n", + "16263\n", + "16264\n", + "16265\n", + "16266\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98279619it [3:47:01, 5038.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16267\n", + "16268\n", + "16269\n", + "16270\n", + "16271\n", + "16272\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98281246it [3:47:01, 5069.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16273\n", + "16274\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98291679it [3:47:03, 5168.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16275\n", + "16276\n", + "16277\n", + "16278\n", + "16279\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98292766it [3:47:03, 5170.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16280\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98294603it [3:47:03, 5406.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16281\n", + "16282\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98297069it [3:47:04, 4130.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16283\n", + "16284\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98299265it [3:47:04, 5246.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16285\n", + "16286\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98303534it [3:47:05, 5980.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16287\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98320521it [3:47:08, 6223.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16288\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98327692it [3:47:09, 6359.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16289\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98342564it [3:47:12, 6024.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16290\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98344396it [3:47:12, 5922.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16291\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98348735it [3:47:13, 6006.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16292\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98355444it [3:47:14, 6122.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16293\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98360749it [3:47:15, 6307.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16294\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98371359it [3:47:17, 5920.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16295\n", + "16296\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98373964it [3:47:17, 6429.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16297\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98396302it [3:47:21, 6688.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16298\n", + "16299\n", + "16300\n", + "16301\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98398391it [3:47:21, 6503.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16302\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98409108it [3:47:23, 6673.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16303\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98430151it [3:47:26, 6824.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16304\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98438133it [3:47:27, 6231.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16305\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98439960it [3:47:27, 5846.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16306\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98446660it [3:47:28, 6019.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16307\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98447917it [3:47:29, 6132.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16308\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98449888it [3:47:29, 6287.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16309\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98452913it [3:47:30, 3790.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16310\n", + "16311\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98461648it [3:47:32, 5213.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16312\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98467854it [3:47:33, 5470.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16313\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98470035it [3:47:33, 4845.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16314\n", + "16315\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98474416it [3:47:34, 4154.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16316\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98478872it [3:47:35, 5555.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16317\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98482024it [3:47:36, 6259.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16318\n", + "16319\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98491032it [3:47:37, 6532.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16320\n", + "16321\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98508729it [3:47:40, 5285.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16322\n", + "16323\n", + "16324\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98514447it [3:47:41, 5246.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16325\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98515959it [3:47:42, 4267.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16326\n", + "16327\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98548321it [3:47:47, 6767.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16328\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98551000it [3:47:47, 6631.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16329\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98568894it [3:47:50, 6371.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16330\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98581486it [3:47:52, 5933.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16331\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98583473it [3:47:53, 6421.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16332\n", + "16333\n", + "16334\n", + "16335\n", + "16336\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98584744it [3:47:53, 6189.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16337\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98592738it [3:47:54, 5631.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16338\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98596295it [3:47:55, 5742.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16339\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98607479it [3:47:57, 4768.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16340\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98611928it [3:47:58, 5538.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16341\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98613654it [3:47:58, 5516.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16342\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98615225it [3:47:58, 4981.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16343\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98623233it [3:48:00, 6014.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16344\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98628878it [3:48:01, 6209.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16345\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98630109it [3:48:01, 5964.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16346\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98633192it [3:48:01, 6131.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16347\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98644972it [3:48:03, 6371.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16348\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98648052it [3:48:04, 5987.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16349\n", + "16350\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98713773it [3:48:20, 7269.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16351\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98717333it [3:48:20, 6517.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16352\n", + "16353\n", + "16354\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98729728it [3:48:22, 5985.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16355\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98745007it [3:48:25, 7008.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16356\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98747093it [3:48:25, 6063.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16357\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98768456it [3:48:29, 7076.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16358\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98798481it [3:48:33, 6697.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16359\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98899014it [3:48:45, 8107.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16360\n", + "16361\n", + "16362\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98912208it [3:48:48, 6355.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16363\n", + "16364\n", + "16365\n", + "16366\n", + "16367\n", + "16368\n", + "16369\n", + "16370\n", + "16371\n", + "16372\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98926981it [3:48:51, 8073.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16373\n", + "16374\n", + "16375\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98929423it [3:48:51, 8041.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16376\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "98945833it [3:48:53, 7989.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16377\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99006982it [3:49:01, 7856.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16378\n", + "16379\n", + "16380\n", + "16381\n", + "16382\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99009411it [3:49:02, 7871.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16383\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99017140it [3:49:03, 8407.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16384\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99025323it [3:49:04, 7947.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16385\n", + "16386\n", + "16387\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99034242it [3:49:05, 8097.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16388\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99040017it [3:49:06, 5679.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16389\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99043067it [3:49:06, 5403.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16390\n", + "16391\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99044906it [3:49:07, 5872.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16392\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99053528it [3:49:08, 6413.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16393\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99092252it [3:49:13, 7047.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16394\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99110774it [3:49:16, 7837.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16395\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99118815it [3:49:17, 7334.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16396\n", + "16397\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99123311it [3:49:18, 7422.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16398\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99126398it [3:49:18, 7679.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16399\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99134081it [3:49:19, 7308.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16400\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99139769it [3:49:20, 5035.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16401\n", + "16402\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99144821it [3:49:21, 5808.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16403\n", + "16404\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99151329it [3:49:22, 6983.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16405\n", + "16406\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99156897it [3:49:23, 7861.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16407\n", + "16408\n", + "16409\n", + "16410\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99174640it [3:49:25, 7829.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16411\n", + "16412\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99182507it [3:49:26, 7499.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16413\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99189698it [3:49:27, 7386.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16414\n", + "16415\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99198403it [3:49:29, 6838.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16416\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99205071it [3:49:30, 6464.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16417\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99212857it [3:49:31, 4878.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16418\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99214532it [3:49:31, 5420.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16419\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99224211it [3:49:33, 4728.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16420\n", + "16421\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99229377it [3:49:34, 8052.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16422\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99244211it [3:49:36, 7805.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16423\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99246592it [3:49:36, 7701.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16424\n", + "16425\n", + "16426\n", + "16427\n", + "16428\n", + "16429\n", + "16430\n", + "16431\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99248997it [3:49:36, 7792.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16432\n", + "16433\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99254583it [3:49:37, 7631.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16434\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99276414it [3:49:40, 6548.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16435\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99279499it [3:49:41, 5684.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16436\n", + "16437\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99288964it [3:49:42, 7013.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16438\n", + "16439\n", + "16440\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99292150it [3:49:43, 7310.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16441\n", + "16442\n", + "16443" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99293626it [3:49:43, 7035.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "16444\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99311369it [3:49:45, 8758.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16445\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99330852it [3:49:47, 8381.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16446\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99335309it [3:49:48, 8615.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16447\n", + "16448\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99341502it [3:49:49, 8836.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16449\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99357047it [3:49:51, 8360.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16450\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99373384it [3:49:53, 6731.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16451\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99375481it [3:49:53, 6667.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16452\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99382915it [3:49:54, 8099.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16453\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99399679it [3:49:56, 6908.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16454\n", + "16455\n", + "16456\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99419251it [3:49:59, 7373.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16457\n", + "16458\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99445066it [3:50:02, 7804.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16459\n", + "16460\n", + "16461\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99462542it [3:50:05, 7591.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16462\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99481815it [3:50:07, 7273.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16463\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99496507it [3:50:09, 6748.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16464\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99499425it [3:50:10, 7146.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16465\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99503845it [3:50:10, 7361.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16466\n", + "16467\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99506262it [3:50:11, 7772.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16468\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99521057it [3:50:13, 8199.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16469\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99525097it [3:50:13, 7646.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16470\n", + "16471\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99533832it [3:50:14, 7988.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16472\n", + "16473\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99536218it [3:50:15, 7886.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16474\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99539377it [3:50:15, 7827.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16475\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99553027it [3:50:17, 7545.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16476\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99558400it [3:50:18, 7371.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16477\n", + "16478\n", + "16479\n", + "16480\n", + "16481\n", + "16482\n", + "16483\n", + "16484\n", + "16485\n", + "16486\n", + "16487\n", + "16488\n", + "16489\n", + "16490\n", + "16491\n", + "16492\n", + "16493\n", + "16494\n", + "16495\n", + "16496\n", + "16497\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99563344it [3:50:18, 6738.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16498\n", + "16499\n", + "16500\n", + "16501\n", + "16502\n", + "16503\n", + "16504\n", + "16505\n", + "16506\n", + "16507\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99568607it [3:50:19, 7118.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16508\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99595058it [3:50:23, 7535.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16509\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99603535it [3:50:24, 6769.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16510\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99640097it [3:50:28, 8402.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16511\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99659924it [3:50:30, 7671.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16512\n", + "16513\n", + "16514\n", + "16515\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99662991it [3:50:31, 7584.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16516\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99676566it [3:50:33, 8689.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16517\n", + "16518\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99681473it [3:50:33, 7836.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16519\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99686636it [3:50:34, 8318.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16520\n", + "16521\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99692541it [3:50:35, 8485.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16522\n", + "16523\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99720539it [3:50:38, 7806.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16524\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99729581it [3:50:39, 7907.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16525\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99744403it [3:50:41, 7906.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16526\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99760533it [3:50:43, 8538.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16527\n", + "16528\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99784186it [3:50:46, 6766.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16529\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99804928it [3:50:49, 7105.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16530\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99824298it [3:50:51, 8539.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16531\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99830398it [3:50:52, 8292.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16532\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99852200it [3:50:55, 8646.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16533\n", + "16534\n", + "16535\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99871445it [3:54:19, 5122.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16536\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99872929it [3:54:19, 5838.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16537\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99881057it [3:54:20, 6269.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16538\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99888985it [3:54:22, 5904.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16539\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99892891it [3:54:22, 4359.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16540\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99930127it [3:54:28, 7520.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16541\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99935725it [3:54:29, 8072.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16542\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99952049it [3:54:31, 7301.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16543\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "99963848it [3:54:35, 3210.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16544\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100000151it [3:54:41, 6469.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16545\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100065859it [3:54:52, 6894.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16546\n", + "16547\n", + "16548\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100069858it [3:54:52, 5493.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16549\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100087215it [3:54:55, 7180.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16550\n", + "16551\n", + "16552\n", + "16553\n", + "16554\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100090672it [3:54:55, 8346.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16555\n", + "16556\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100093246it [3:54:56, 8494.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16557\n", + "16558\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100094912it [3:54:56, 7299.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16559\n", + "16560\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100102680it [3:54:57, 6267.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16561\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100103997it [3:54:57, 5974.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16562\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100126810it [3:55:00, 8502.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16563\n", + "16564\n", + "16565\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100129326it [3:55:01, 8077.32it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16566\n", + "16567\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100147021it [3:55:03, 8811.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16568\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100158716it [3:55:04, 8540.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16569\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100165622it [3:55:05, 8344.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16570\n", + "16571\n", + "16572\n", + "16573\n", + "16574\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100172597it [3:55:06, 8651.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16575\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100179560it [3:55:07, 6408.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16576\n", + "16577\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100189222it [3:55:08, 7805.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16578\n", + "16579\n", + "16580\n", + "16581\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100203696it [3:55:12, 1754.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16582\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100204667it [3:55:12, 1746.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16583\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100210481it [3:55:15, 2668.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16584\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100231614it [3:55:20, 4957.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16585\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100260545it [3:55:26, 5193.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16586\n", + "16587\n", + "16588\n", + "16589\n", + "16590\n", + "16591\n", + "16592\n", + "16593\n", + "16594\n", + "16595\n", + "16596\n", + "16597\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100261579it [3:55:26, 4973.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16598\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100267815it [3:55:27, 5483.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16599\n", + "16600\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100269625it [3:55:27, 5848.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16601\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100284206it [3:55:34, 4031.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16602\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100294894it [3:55:36, 6861.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16603\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100303458it [3:55:37, 7353.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16604\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100318060it [3:55:39, 4857.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16605\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100321122it [3:55:41, 2805.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16606\n", + "16607\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100322328it [3:55:41, 3301.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16608\n", + "16609\n", + "16610\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100371529it [3:55:49, 5897.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16611\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100373797it [3:55:50, 5284.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16612\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100414051it [3:55:59, 4733.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16613\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100423573it [3:56:02, 4437.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16614\n", + "16615\n", + "16616\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100425945it [3:56:02, 4528.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16617\n", + "16618\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100432425it [3:56:03, 5489.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16619\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100438597it [3:56:05, 4725.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16620\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100441524it [3:56:05, 5835.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16621\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100496663it [3:56:15, 5755.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16622\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100506298it [3:56:17, 5125.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16623\n", + "16624\n", + "16625\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100532295it [3:56:22, 6413.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16626\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100577112it [3:56:29, 6203.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16627\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100610704it [3:56:35, 5518.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16628\n", + "16629\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100648690it [3:56:42, 6326.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16630\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100655836it [3:56:43, 6889.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16631\n", + "16632\n", + "16633\n", + "16634\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100667134it [3:56:45, 7598.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16635\n", + "16636\n", + "16637\n", + "16638\n", + "16639\n", + "16640\n", + "16641\n", + "16642\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100675228it [3:56:46, 7088.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16643\n", + "16644\n", + "16645\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100690533it [3:56:48, 6684.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16646\n", + "16647\n", + "16648\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100730377it [3:56:54, 5734.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16649\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100812073it [3:57:07, 6292.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16650\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100818431it [3:57:08, 7323.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16651\n", + "16652\n", + "16653\n", + "16654\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100819931it [3:57:08, 7408.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16655\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100845564it [3:57:12, 8172.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16656\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100863192it [3:57:14, 7134.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16657\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100876107it [3:57:16, 5975.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16658\n", + "16659\n", + "16660\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100878139it [3:57:16, 6509.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16661\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100891590it [3:57:18, 7340.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16662\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100897557it [3:57:19, 7439.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16663\n", + "16664\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100911403it [3:57:21, 7549.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16665\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100920844it [3:57:22, 7549.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16666\n", + "16667\n", + "16668\n", + "16669\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100941549it [3:57:25, 7037.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16670\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100946618it [3:57:26, 5651.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16671\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100948911it [3:57:26, 6985.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16672\n", + "16673\n", + "16674\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100959852it [3:57:28, 7046.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16675\n", + "16676\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100962514it [3:57:28, 6032.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16677\n", + "16678\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100965816it [3:57:29, 6443.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16679\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100971500it [3:57:30, 7128.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16680\n", + "16681\n", + "16682\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100975866it [3:57:30, 7025.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16683\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100990072it [3:57:32, 7270.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16684\n", + "16685\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101001690it [3:57:34, 6114.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16686\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101011001it [3:57:35, 7783.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16687\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101013381it [3:57:36, 7794.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16688\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101037902it [3:57:39, 8051.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16689\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101041044it [3:57:39, 7737.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16690\n", + "16691\n", + "16692\n", + "16693\n", + "16694\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101044354it [3:57:40, 8042.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16695\n", + "16696\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101062889it [3:57:42, 7570.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16697\n", + "16698\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101066010it [3:57:42, 7522.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16699\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101070610it [3:57:43, 7201.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16700\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101087528it [3:57:45, 7628.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16701\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101095048it [3:57:46, 6683.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16702\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101110467it [3:57:49, 7447.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16703\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101125478it [3:57:51, 7796.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16704\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101134553it [3:57:52, 7056.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16705\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101148556it [3:57:54, 6959.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16706\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101152356it [3:57:54, 7566.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16707\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101160401it [3:57:56, 6735.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16708\n", + "16709" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101161818it [3:57:56, 6851.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "16710\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101166025it [3:57:56, 6497.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16711\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101171291it [3:57:57, 7539.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16712\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101177075it [3:57:58, 6902.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16713\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101178565it [3:57:58, 7125.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16714\n", + "16715\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101183999it [3:57:59, 7464.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16716\n", + "16717\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101186952it [3:57:59, 7170.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16718\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101199917it [3:58:01, 7253.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16719\n", + "16720\n", + "16721\n", + "16722\n", + "16723\n", + "16724\n", + "16725\n", + "16726\n", + "16727\n", + "16728\n", + "16729\n", + "16730\n", + "16731\n", + "16732\n", + "16733\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101212861it [3:58:03, 8046.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16734\n", + "16735\n", + "16736\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101218642it [3:58:04, 8086.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16737\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101225226it [3:58:04, 7700.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16738\n", + "16739\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101226911it [3:58:05, 7955.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16740\n", + "16741\n", + "16742\n", + "16743\n", + "16744\n", + "16745\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101231938it [3:58:05, 7993.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16746\n", + "16747\n", + "16748\n", + "16749\n", + "16750\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101241944it [3:58:06, 8198.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16751\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101253393it [3:58:08, 7350.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16752\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101255767it [3:58:08, 7770.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16753\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101271394it [3:58:10, 7851.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16754\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101280442it [3:58:11, 8291.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16755\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101295713it [3:58:14, 5014.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16756\n", + "16757\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101316642it [3:58:17, 6499.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16758\n", + "16759\n", + "16760\n", + "16761\n", + "16762\n", + "16763\n", + "16764\n", + "16765\n", + "16766\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101318753it [3:58:18, 6822.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16767\n", + "16768\n", + "16769\n", + "16770\n", + "16771\n", + "16772\n", + "16773\n", + "16774\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "101319497it [3:58:18, 7002.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16775\n", + "16776\n", + "16777\n", + "16778\n", + "16779\n", + "16780\n", + "16781\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101321484it [3:58:18, 6085.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16782\n", + "16783\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101338065it [3:58:21, 7683.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16784\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101344670it [3:58:22, 5239.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16785\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101347649it [3:58:22, 6795.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16786\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101354897it [3:58:23, 7464.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16787\n", + "16788\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101363622it [3:58:25, 6495.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16789\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101375740it [3:58:26, 7456.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16790\n", + "16791\n", + "16792\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101377374it [3:58:27, 7699.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16793\n", + "16794\n", + "16795\n", + "16796\n", + "16797\n", + "16798\n", + "16799\n", + "16800\n", + "16801\n", + "16802\n", + "16803\n", + "16804\n", + "16805\n", + "16806\n", + "16807\n", + "16808\n", + "16809\n", + "16810\n", + "16811\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101379650it [3:58:27, 7442.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16812\n", + "16813\n", + "16814\n", + "16815\n", + "16816\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101404068it [3:58:30, 6446.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16817\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101416493it [3:58:32, 6776.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16818\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101435334it [3:58:36, 4848.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16819\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101448185it [3:58:39, 7219.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16820\n", + "16821\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101457411it [3:58:40, 7552.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16822\n", + "16823\n", + "16824\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101459722it [3:58:40, 6882.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16825\n", + "16826\n", + "16827\n", + "16828\n", + "16829\n", + "16830\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "101460418it [3:58:40, 5919.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16831\n", + "16832\n", + "16833\n", + "16834\n", + "16835\n", + "16836\n", + "16837\n", + "16838\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101463564it [3:58:41, 4753.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16839\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101467102it [3:58:42, 5838.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16840\n", + "16841\n", + "16842\n", + "16843\n", + "16844\n", + "16845\n", + "16846\n", + "16847\n", + "16848\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101468242it [3:58:42, 4907.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16849\n", + "16850\n", + "16851\n", + "16852\n", + "16853\n", + "16854\n", + "16855\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101470221it [3:58:42, 4765.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16856\n", + "16857\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101472238it [3:58:43, 5999.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16858\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101476335it [3:58:43, 6785.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16859\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101485009it [3:58:44, 7054.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16860\n", + "16861\n", + "16862\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101486564it [3:58:45, 6875.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16863\n", + "16864\n", + "16865\n", + "16866\n", + "16867\n", + "16868\n", + "16869\n", + "16870\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101488846it [3:58:45, 7294.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16871\n", + "16872\n", + "16873\n", + "16874\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101490345it [3:58:45, 7062.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16875\n", + "16876\n", + "16877\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101494641it [3:58:46, 7030.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16878\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101496758it [3:58:46, 6186.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16879\n", + "16880\n", + "16881\n", + "16882\n", + "16883\n", + "16884\n", + "16885\n", + "16886\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101498003it [3:58:46, 5954.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16887\n", + "16888\n", + "16889\n", + "16890\n", + "16891\n", + "16892\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101502957it [3:58:47, 5990.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16893\n", + "16894\n", + "16895\n", + "16896\n", + "16897\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101530395it [3:58:51, 7664.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16898\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101558600it [3:58:55, 7679.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16899\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101565764it [3:58:56, 7811.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16900\n", + "16901\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101574491it [3:58:57, 7552.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16902\n", + "16903\n", + "16904\n", + "16905\n", + "16906\n", + "16907\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101582039it [3:58:58, 8310.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16908\n", + "16909\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101597688it [3:59:00, 6798.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16910\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101608751it [3:59:02, 6487.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16911\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101627999it [3:59:05, 6472.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16912\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101646308it [3:59:08, 5592.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16913\n", + "16914\n", + "16915\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101654160it [3:59:09, 6788.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16916\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101668335it [3:59:11, 6567.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16917\n", + "16918\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101715492it [3:59:19, 6861.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16919\n", + "16920\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101768714it [3:59:27, 6302.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16921\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101802048it [3:59:31, 7409.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16922\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101855987it [3:59:40, 7127.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16923\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101859047it [3:59:41, 7512.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16924\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "101946680it [3:59:54, 6173.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16925\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102002255it [4:00:03, 6348.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16926\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102017498it [4:00:05, 7403.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16927\n", + "16928\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102024338it [4:00:06, 7433.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16929\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102032628it [4:00:07, 7363.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16930\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102036368it [4:00:07, 7446.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16931\n", + "16932\n", + "16933\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102038632it [4:00:08, 7345.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16934\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102069657it [4:00:12, 7537.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16935\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102073837it [4:00:12, 7954.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16936\n", + "16937\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102076315it [4:00:13, 7843.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16938\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102088734it [4:00:14, 7586.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16939\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102094854it [4:00:15, 7553.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16940\n", + "16941\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102101305it [4:00:16, 6479.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16942\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102110673it [4:00:17, 6525.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16943\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102120699it [4:00:19, 6847.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16944\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102135972it [4:00:21, 7198.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16945\n", + "16946\n", + "16947\n", + "16948\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102142065it [4:00:22, 6997.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16949\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102146228it [4:00:23, 6829.39it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16950\n", + "16951\n", + "16952\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102148320it [4:00:23, 6817.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16953\n", + "16954\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102151897it [4:00:23, 6835.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16955\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102155465it [4:00:24, 6873.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16956\n", + "16957\n", + "16958\n", + "16959\n", + "16960\n", + "16961\n", + "16962\n", + "16963\n", + "16964\n", + "16965\n", + "16966\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102157525it [4:00:24, 6834.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16967\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102164547it [4:00:25, 6545.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16968\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102168581it [4:00:26, 7750.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16969\n", + "16970\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102173345it [4:00:27, 7236.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16971\n", + "16972\n", + "16973\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102180429it [4:00:28, 7495.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16974\n", + "16975\n", + "16976\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102182925it [4:00:28, 8026.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16977\n", + "16978\n", + "16979\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102188220it [4:00:29, 6082.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16980\n", + "16981\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102217901it [4:00:33, 7299.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16982\n", + "16983\n", + "16984\n", + "16985\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102219476it [4:00:33, 7338.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16986\n", + "16987\n", + "16988\n", + "16989\n", + "16990\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102224951it [4:00:34, 5784.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16991\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102228313it [4:00:34, 7443.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16992\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102231891it [4:00:35, 8572.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16993\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102234556it [4:00:35, 8768.74it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16994\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102246327it [4:00:37, 9057.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16995\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102256063it [4:00:38, 8708.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16996\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102268595it [4:00:39, 8023.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16997\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102274505it [4:00:40, 8557.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16998\n", + "16999\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102280776it [4:00:41, 8953.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17000\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102296043it [4:00:43, 8490.82it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17001\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102318459it [4:00:46, 8451.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17002\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102342354it [4:00:48, 6907.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17003\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102348229it [4:00:49, 7283.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17004\n", + "17005\n", + "17006\n", + "17007\n", + "17008\n", + "17009\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102349761it [4:00:50, 7235.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17010\n", + "17011\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102375572it [4:00:53, 8538.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17012\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102388592it [4:00:54, 8466.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17013\n", + "17014\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102413040it [4:00:57, 8202.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17015\n", + "17016\n", + "17017\n", + "17018\n", + "17019\n", + "17020\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102415632it [4:00:57, 8483.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17021\n", + "17022\n", + "17023\n", + "17024\n", + "17025\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102418151it [4:00:58, 8289.72it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17026\n", + "17027\n", + "17028\n", + "17029\n", + "17030\n", + "17031\n", + "17032\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102421708it [4:00:58, 8637.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17033\n", + "17034\n", + "17035\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102430401it [4:00:59, 8335.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17036\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102435636it [4:01:00, 8678.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17037\n", + "17038\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102440908it [4:01:00, 8746.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17039\n", + "17040\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102456101it [4:01:02, 8832.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17041\n", + "17042" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102459745it [4:01:02, 8988.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "17043\n", + "17044\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102480494it [4:01:05, 8903.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17045\n", + "17046\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102494872it [4:01:06, 8838.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17047\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102496659it [4:01:07, 8750.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17048\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102506241it [4:01:08, 8715.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17049\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102519714it [4:01:09, 8629.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17050\n", + "17051\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102528719it [4:01:10, 8934.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17052\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102538613it [4:01:12, 6206.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17053\n", + "17054\n", + "17055\n", + "17056\n", + "17057\n", + "17058\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102542894it [4:01:12, 7201.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17059\n", + "17060\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102565035it [4:01:17, 6400.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17061\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102569907it [4:01:18, 7979.85it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17062\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102589938it [4:01:20, 8367.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17063\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102594426it [4:01:21, 8586.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17064\n", + "17065\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102612417it [4:01:23, 7100.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17066\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102622901it [4:01:24, 8961.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17067\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102626377it [4:01:25, 8403.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17068\n", + "17069\n", + "17070\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102630643it [4:01:25, 8455.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17071\n", + "17072\n", + "17073\n", + "17074\n", + "17075\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102643867it [4:01:27, 7946.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17076\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102651482it [4:01:28, 5847.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17077\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102662190it [4:01:29, 8573.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17078\n", + "17079\n", + "17080\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102663895it [4:01:29, 8233.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17081\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102681904it [4:01:32, 7019.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17082\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102687209it [4:01:33, 7249.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17083\n", + "17084\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102688582it [4:01:33, 5948.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17085\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102692528it [4:01:34, 6523.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17086\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102694388it [4:01:34, 5399.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17087\n", + "17088\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "102694941it [4:01:34, 3905.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17089\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102706410it [4:01:36, 6623.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17090\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102712192it [4:01:37, 6207.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17091\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102715063it [4:01:38, 6982.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17092\n", + "17093\n", + "17094\n", + "17095\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102717356it [4:01:38, 7071.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17096\n", + "17097\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102721963it [4:01:39, 6053.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17098\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102736222it [4:01:41, 5467.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17099\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102744041it [4:01:43, 5261.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17100\n", + "17101\n", + "17102\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102810003it [4:01:53, 7492.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17103\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102821008it [4:01:54, 7462.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17104\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102826218it [4:01:55, 7257.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17105\n", + "17106\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102837491it [4:01:57, 6358.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17107\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102847602it [4:01:58, 7618.54it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17108\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102865037it [4:02:00, 8134.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17109\n", + "17110\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102887380it [4:02:03, 7841.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17111\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102897713it [4:02:05, 5795.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17112\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102901038it [4:02:05, 5081.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17113\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102915642it [4:02:08, 5071.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17114\n", + "17115\n", + "17116\n", + "17117\n", + "17118\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102925362it [4:02:10, 5494.45it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17119\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102940454it [4:02:12, 4639.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17120\n", + "17121\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102972471it [4:02:17, 6932.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17122\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102982813it [4:02:19, 6762.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17123\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102990024it [4:02:20, 6583.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17124\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "102991462it [4:02:20, 6929.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17125\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103007938it [4:02:22, 6042.26it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17126\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103009839it [4:02:23, 6282.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17127\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103016083it [4:02:24, 6350.35it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17128\n", + "17129\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103034447it [4:02:26, 7208.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17130\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103037573it [4:02:27, 7701.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17131\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103054700it [4:02:29, 7991.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17132\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103057092it [4:02:29, 7784.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17133\n", + "17134\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103083795it [4:02:33, 7024.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17135\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103106601it [4:02:37, 6964.56it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17136\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103109589it [4:02:37, 6522.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17137\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103116428it [4:02:38, 7425.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17138\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103122204it [4:02:39, 6682.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17139\n", + "17140\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103145685it [4:02:42, 7234.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17141\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103148577it [4:02:43, 7064.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17142\n", + "17143\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103182461it [4:02:48, 7044.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17144\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103204709it [4:02:51, 7618.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17145\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103209278it [4:02:51, 7044.78it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17146\n", + "17147\n", + "17148\n", + "17149\n", + "17150\n", + "17151\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103210748it [4:02:51, 7085.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17152\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "103212472it [4:02:52, 7082.87it/s]\n" + ] + } + ], + "source": [ + "import mwxml\n", + "import pickle\n", + "from tqdm import tqdm\n", + "\n", + "def get_dataset(xml_file ,output_file_name):\n", + " dump = mwxml.Dump.from_file(open(xml_file))\n", + " print(dump.site_info.name, dump.site_info.dbname)\n", + "\n", + " pages = []\n", + " counter = 0\n", + " for page in tqdm(dump):\n", + " if page.namespace == 102:\n", + " counter+=1\n", + " for revision in page:\n", + " revision = revision\n", + " pages.append(revision) \n", + " wikimedia = [i.to_json() for i in pages]\n", + "\n", + " import json\n", + " with open(output_file_name , 'w') as file:\n", + " json.dump(wikimedia, file)\n", + " " + ] + }, + { + "cell_type": "markdown", + "id": "216b0d8f", + "metadata": {}, + "source": [ + "# Read json with ns = 102" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "93d2fef6", + "metadata": {}, + "outputs": [], + "source": [ + "import json\n", + "with open(\"wikimedia.json\" , 'r') as file:\n", + " previous_json = json.load(file)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "d8aada48", + "metadata": {}, + "outputs": [], + "source": [ + "def split_with_last_dot(string):\n", + " for character in range(len(string)-1,0,-1):\n", + " if string[character]==\".\":\n", + " left = string[:character]\n", + " right = string[character+1:]\n", + " return [left,right]\n", + "database = {}\n", + "for i in previous_json:\n", + " title = i[\"page\"][\"title\"]\n", + " if len(title.split(\".\"))>3:\n", + " w,_ = split_with_last_dot(title)\n", + " x,_ = split_with_last_dot(w)\n", + " y,_ = split_with_last_dot(x)\n", + " true_link = y+\".flac\"\n", + "\n", + " if true_link in database.keys():\n", + " database[true_link].append(title)\n", + " else:\n", + " database[true_link] = [title]" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "id": "8aa8cf0d", + "metadata": {}, + "outputs": [], + "source": [ + "with open(\"correspondence.json\" , 'w') as file:\n", + " json.dump(database, file)" + ] + }, + { + "cell_type": "markdown", + "id": "dd07ed5a", + "metadata": {}, + "source": [ + "# Upload raw videos and transcriptions" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "00f85890", + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 18%|█▊ | 597/3406 [2:26:24<24:26:05, 31.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14343\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 22%|██▏ | 739/3406 [3:23:11<9:41:31, 13.08s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14485\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 38%|███▊ | 1299/3406 [5:46:54<2:15:58, 3.87s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15045\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 64%|██████▍ | 2192/3406 [7:21:48<3:17:20, 9.75s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15938\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 68%|██████▊ | 2303/3406 [7:31:10<2:07:53, 6.96s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16049\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 77%|███████▋ | 2620/3406 [11:04:55<51:39:15, 236.58s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16365\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 2723/3406 [13:36:26<35:02, 3.08s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16469\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 2781/3406 [18:07:40<21:06, 2.03s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16527\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 97%|█████████▋| 3294/3406 [19:41:59<08:34, 4.59s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17040\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 99%|█████████▉| 3380/3406 [19:59:55<01:30, 3.49s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17126\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|██████████| 3406/3406 [20:01:43<00:00, 21.17s/it]\n" + ] + } + ], + "source": [ + "from pyWikiCommons import pyWikiCommons\n", + "import requests\n", + "import os\n", + "from google.cloud import storage\n", + "bimport os\n", + "from tqdm import tqdm\n", + " \n", + "def download_file(url,file_name):\n", + " headers = {'User-Agent': 'CoolBot/0.0 (https://example.org/coolbot/; coolbot@example.org)'}\n", + " with requests.get(url, stream=True, headers=headers) as r:\n", + " r.raise_for_status()\n", + " with open(file_name, 'wb') as f:\n", + " for chunk in r.iter_content(chunk_size=8192): \n", + " f.write(chunk)\n", + " return file_name\n", + "\n", + "def split_with_last_dot(string):\n", + " for character in range(len(string)-1,0,-1):\n", + " if string[character]==\".\":\n", + " left = string[:character]\n", + " right = string[character+1:]\n", + " return [left,right]\n", + "\n", + "def upload_file_gcp(file_name, file_type): \n", + " # Initiate names\n", + " project_id = 'the-peoples-speech' # Your Project ID\n", + " bucket_name = 'wikimedia_commons' # Name of bucket\n", + " bucket_file = f'{file_type}/{file_name}' # Location of the file on Bucket\n", + " local_file = f'{file_name}' # Location of downloaded file on your PC\n", + "\n", + " # Set Credential\n", + " os.environ[\"GOOGLE_APPLICATION_CREDENTIALS\"] = \"the-peoples-speech-ee8163e65ace.json\"\n", + " client = storage.Client(project_id)\n", + " bucket = client.get_bucket(bucket_name)\n", + " blob = bucket.blob(bucket_file)\n", + " blob.upload_from_filename(local_file)\n", + " signed_url = blob.generate_signed_url(\n", + " version=\"v4\",\n", + " expiration=timedelta(seconds=60),\n", + " method=\"GET\")\n", + "\n", + "\n", + " \n", + "counter = 0\n", + "database = {}\n", + "for i in tqdm(range(13746,len(previous_json))):\n", + " link = previous_json[i][\"page\"][\"title\"]\n", + " dots = 0\n", + " try:\n", + " if len(link.split(\".\"))>2:\n", + " left,_ = split_with_last_dot(link)\n", + " true_link, _ = split_with_last_dot(left)\n", + "\n", + "\n", + " with open(link+\".txt\", 'w') as f:\n", + " f.write(previous_json[i][\"text\"])\n", + " upload_file_gcp(link+\".txt\", \"transcription\")\n", + " os.remove(link+\".txt\")\n", + "\n", + " if true_link in database.keys():\n", + " database[true_link].append(link)\n", + " else:\n", + " database[true_link] = [link]\n", + " try:\n", + " url = pyWikiCommons.get_commons_url(\"File:\" + true_link)\n", + " file_name = download_file(url, true_link)\n", + " upload_file_gcp(true_link, \"raw_videos\")\n", + " os.remove(true_link)\n", + " f = open(\"uploaded.txt\", \"a\")\n", + " f.write(f\"{i},{true_link}\\n\")\n", + " f.close()\n", + " except:\n", + " f = open(\"error.txt\", \"a\")\n", + " f.write(f\"{i},{true_link}\\n\")\n", + " f.close()\n", + " else:\n", + " print(i)\n", + " except:\n", + " print(i)\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "5aa1bd96", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "13746" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#link = previous_json[2345][\"page\"][\"title\"]\n", + "#link\n" + ] + }, + { + "cell_type": "code", + "execution_count": 78, + "id": "5bd5691c", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "('hola.perra', 'hola')\n" + ] + } + ], + "source": [ + "def split_with_last_dot(string):\n", + " for character in range(len(string)-1,0,-1):\n", + " if string[character]==\".\":\n", + " left = string[:character]\n", + " right = string[character+1:]\n", + " return [left,right]" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "id": "4694d404", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "CompletedProcess(args='ffmpeg -i The Impact of Wikipedia Dumisani Ndubane.webm perro.mp3', returncode=1)" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import subprocess\n", + "\n", + "path = 'The Impact of Wikipedia Dumisani Ndubane.webm'\n", + "\n", + "subprocess.run(f'ffmpeg -i {path} perro.mp3',shell=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "584967b6", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Collecting gcloud\n", + " Downloading gcloud-0.18.3.tar.gz (454 kB)\n", + "\u001b[K |████████████████████████████████| 454 kB 4.7 MB/s eta 0:00:01\n", + "\u001b[?25hRequirement already satisfied: httplib2>=0.9.1 in /Users/julianeusse/miniconda3/envs/factored/lib/python3.7/site-packages (from gcloud) (0.20.4)\n", + "Requirement already satisfied: googleapis-common-protos in /Users/julianeusse/miniconda3/envs/factored/lib/python3.7/site-packages (from gcloud) (1.56.3)\n", + "Collecting oauth2client>=2.0.1\n", + " Downloading oauth2client-4.1.3-py2.py3-none-any.whl (98 kB)\n", + "\u001b[K |████████████████████████████████| 98 kB 1.5 MB/s eta 0:00:01\n", + "\u001b[?25hRequirement already satisfied: protobuf!=3.0.0.b2.post1,>=3.0.0b2 in /Users/julianeusse/miniconda3/envs/factored/lib/python3.7/site-packages (from gcloud) (3.19.3)\n", + "Requirement already satisfied: six in /Users/julianeusse/miniconda3/envs/factored/lib/python3.7/site-packages (from gcloud) (1.16.0)\n", + "Requirement already satisfied: pyparsing!=3.0.0,!=3.0.1,!=3.0.2,!=3.0.3,<4,>=2.4.2 in /Users/julianeusse/miniconda3/envs/factored/lib/python3.7/site-packages (from httplib2>=0.9.1->gcloud) (2.4.7)\n", + "Requirement already satisfied: rsa>=3.1.4 in /Users/julianeusse/miniconda3/envs/factored/lib/python3.7/site-packages (from oauth2client>=2.0.1->gcloud) (4.7.2)\n", + "Requirement already satisfied: pyasn1-modules>=0.0.5 in /Users/julianeusse/miniconda3/envs/factored/lib/python3.7/site-packages (from oauth2client>=2.0.1->gcloud) (0.2.8)\n", + "Requirement already satisfied: pyasn1>=0.1.7 in /Users/julianeusse/miniconda3/envs/factored/lib/python3.7/site-packages (from oauth2client>=2.0.1->gcloud) (0.4.8)\n", + "Building wheels for collected packages: gcloud\n", + " Building wheel for gcloud (setup.py) ... \u001b[?25ldone\n", + "\u001b[?25h Created wheel for gcloud: filename=gcloud-0.18.3-py3-none-any.whl size=602937 sha256=4d27b6cb25e415b1be826239422f56f3defdf9a03c87b63529681c7fcbab0d8f\n", + " Stored in directory: /Users/julianeusse/Library/Caches/pip/wheels/50/9d/19/dc1a639905431252dbf8a61388a83459c5cfef7add445bebe4\n", + "Successfully built gcloud\n", + "Installing collected packages: oauth2client, gcloud\n", + "Successfully installed gcloud-0.18.3 oauth2client-4.1.3\n" + ] + } + ], + "source": [ + "from gcloud import storage\n", + "from oauth2client.service_account import ServiceAccountCredentials\n", + "import os\n", + "\n", + "credentials_dict = {\n", + " 'type': 'service_account',\n", + " 'client_id': os.environ['BACKUP_CLIENT_ID'],\n", + " 'client_email': os.environ['BACKUP_CLIENT_EMAIL'],\n", + " 'private_key_id': os.environ['BACKUP_PRIVATE_KEY_ID'],\n", + " 'private_key': os.environ['BACKUP_PRIVATE_KEY'],\n", + "}\n", + "credentials = ServiceAccountCredentials.from_json_keyfile_dict(\n", + " credentials_dict\n", + ")\n", + "client = storage.Client(credentials=credentials, project='myproject')\n", + "bucket = client.get_bucket('mybucket')\n", + "blob = bucket.blob('myfile')\n", + "blob.upload_from_filename('myfile')\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "458ee748", + "metadata": {}, + "outputs": [], + "source": [ + "url=\"https://commons.wikimedia.org/wiki/TimedText:Elephants Dream.ogg.sv.srt\"" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "b43fced5", + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'b' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m<ipython-input-7-89e6c98d9288>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mb\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;31mNameError\u001b[0m: name 'b' is not defined" + ] + } + ], + "source": [ + "b" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "id": "e9eb97f6", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "links\n", + "Elephants Dream.ogg.pt.srt\n", + "links\n", + "Elephants Dream.ogv.pt.srt\n", + "links\n", + "Elephants Dream.ogg.sv.srt\n", + "links\n", + "Elephants Dream.ogv.sv.srt\n", + "links\n", + "Krazy Kat Bugolist 1916 silent.ogv.en.srt\n", + "links\n", + "Krazy Kat Bugologist 1916 silent.ogv.en.srt\n", + "links\n", + "Krazy Kat Bugolist 1916 silent.ogv.de.srt\n", + "links\n", + "Krazy Kat Bugologist 1916 silent.ogv.de.srt\n", + "links\n", + "Elephants Dream.ogg.ru.srt\n", + "links\n", + "Elephants Dream.ogv.ru.srt\n", + "links\n", + "Elephants Dream.ogv.en.srt\n", + "links\n", + "Elephants Dream.ogv.sv.srt\n", + "links\n", + "Elephants Dream.ogv.pt.srt\n", + "links\n", + "Elephants Dream.ogv.ar.srt\n", + "links\n", + "Elephants Dream.ogg.af.srt\n", + "links\n", + "Elephants Dream.ogv.af.srt\n", + "links\n", + "Elephants Dream.ogg.bn.srt\n", + "links\n", + "Elephants Dream.ogv.bn.srt\n", + "links\n", + "Elephants Dream.ogg.pt-br.srt\n", + "links\n", + "Elephants Dream.ogv.pt-br.srt\n", + "links\n", + "Elephants Dream.ogg.es.srt\n", + "links\n", + "Elephants Dream.ogv.es.srt\n", + "links\n", + "Elephants Dream.ogg.br.srt\n", + "links\n", + "Elephants Dream.ogv.br.srt\n", + "links\n", + "Elephants Dream.ogg.bg.srt\n", + "links\n", + "Elephants Dream.ogv.bg.srt\n", + "links\n", + "Elephants Dream.ogg.ca.srt\n", + "links\n", + "Elephants Dream.ogv.ca.srt\n", + "links\n", + "Elephants Dream.ogg.zh.srt\n", + "links\n", + "Elephants Dream (high quality).ogv.zh.srt\n", + "links\n", + "Elephants Dream.ogg.cs.srt\n", + "links\n", + "Elephants Dream.ogv.cs.srt\n", + "links\n", + "Elephants Dream.ogg.da.srt\n", + "links\n", + "Elephants Dream.ogv.da.srt\n", + "links\n", + "Elephants Dream.ogg.nl.srt\n", + "links\n", + "Elephants Dream.ogv.nl.srt\n", + "links\n", + "Elephants Dream.ogg.et.srt\n", + "links\n", + "Elephants Dream.ogv.et.srt\n", + "links\n", + "Elephants Dream.ogg.fi.srt\n", + "links\n", + "Elephants Dream.ogv.fi.srt\n", + "links\n", + "Elephants Dream.ogg.fr.srt\n", + "links\n", + "Elephants Dream.ogv.fr.srt\n", + "links\n", + "Welcome to globallives 2.0.ogv.zh-chs.srt\n", + "links\n", + "Welcome to globallives 2.0.ogv.zh.srt\n", + "links\n", + "Welcome to globallives 2.0.ogv.pt-br.srt\n", + "links\n", + "Welcome to globallives 2.0.ogv.nl.srt\n", + "links\n", + "Elephants Dream.ogg.zh-cn.srt\n", + "links\n", + "Elephants Dream.ogv.zh-cn.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogg.en.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogv.en.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogg.de.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogv.de.srt\n", + "links\n", + "Edit Button.ogv.ms.srt/\n", + "links\n", + "Edit Button.ogv.ms.srt\n", + "links\n", + "Commons h264 MVC theora.ogv.it.srt\n", + "links\n", + "Wikimedia Italia - WikiGuida 2 - Commons.ogv.it.srt\n", + "links\n", + "Commons h264 MVC theora.ogv.es.srt\n", + "links\n", + "Wikimedia Italia - WikiGuida 2 - Commons.ogv.es.srt\n", + "links\n", + "Krazy Kat Bugolist 1916 silent.ogv.es.srt\n", + "links\n", + "Krazy Kat Bugologist 1916 silent.ogv.es.srt\n", + "links\n", + "Frankenstein (1910) - Full Movie.ogv.fr.srt\n", + "links\n", + "480p-Publicidade-wikilivros.ogv.en.srt\n", + "links\n", + "480p-Publicidade-wikilivros.ogv.pt.srt\n", + "links\n", + "Nice People MEDIUM.ogv.MK.srt\n", + "links\n", + "Nice People MEDIUM.ogv.mk.srt\n", + "links\n", + "Krazy Kat Bugolist 1916 silent.ogv.eu.srt\n", + "links\n", + "Krazy Kat Bugologist 1916 silent.ogv.eu.srt\n", + "links\n", + "Elephants Dream.ogg.de.srt\n", + "links\n", + "Elephants Dream.ogv.de.srt\n", + "links\n", + "Elephants Dream.ogg.el.srt\n", + "links\n", + "Elephants Dream.ogv.el.srt\n", + "links\n", + "Elephants Dream.ogg.hu.srt\n", + "links\n", + "Elephants Dream.ogv.hu.srt\n", + "links\n", + "Elephants Dream.ogg.it.srt\n", + "links\n", + "Elephants Dream.ogv.it.srt\n", + "links\n", + "Elephants Dream.ogg.ja.srt\n", + "links\n", + "Elephants Dream.ogv.ja.srt\n", + "links\n", + "Elephants Dream.ogg.pl.srt\n", + "links\n", + "Elephants Dream.ogv.pl.srt\n", + "links\n", + "Elephants Dream.ogg.ro.srt\n", + "links\n", + "Elephants Dream.ogv.ro.srt\n", + "links\n", + "Elephants Dream.ogg.sk.srt\n", + "links\n", + "Elephants Dream.ogv.sk.srt\n", + "links\n", + "Elephants Dream.ogg.sl.srt\n", + "links\n", + "Elephants Dream.ogv.sl.srt\n", + "links\n", + "Elephants Dream.ogg.no.srt\n", + "links\n", + "Elephants Dream.ogv.no.srt\n", + "links\n", + "Elephants Dream.ogg.he.srt\n", + "links\n", + "Elephants Dream.ogv.he.srt\n", + "links\n", + "Wiki loves monuments.ogg.zh-hant.srt\n", + "links\n", + "Wiki loves monuments.ogv.zh-hant.srt\n", + "links\n", + "Wiki loves monuments.ogg.en.srt\n", + "links\n", + "Wiki loves monuments.ogv.en.srt\n", + "links\n", + "Berlin airlift.ogv.undefined.srt\n", + "links\n", + "Berlin airlift.ogv.en.srt\n", + "links\n", + "US Supports No-Fly Zone Against Libya.ogv.undefined.srt\n", + "links\n", + "US Supports No-Fly Zone Against Libya.ogv.en.srt\n", + "links\n", + "US Supports No-Fly Zone Against Libya.ogv.undefined.srt\n", + "links\n", + "US Supports No-Fly Zone Against Libya.ogv.en.srt\n", + "links\n", + "Wiki loves monuments.ogg.ro.srt\n", + "links\n", + "Wiki loves monuments.ogv.ro.srt\n", + "links\n", + "Wiki loves monuments.ogg.sv.srt\n", + "links\n", + "Wiki loves monuments.ogv.sv.srt\n", + "links\n", + "Wikipedia ridotto.ogv.en.srt\n", + "links\n", + "Wiki loves monuments.ogg.ca.srt\n", + "links\n", + "Wiki loves monuments.ogv.ca.srt\n", + "links\n", + "Jarry (métro de Montréal).ogv.en.srt\n", + "links\n", + "Jarry - Métro de Montréal (1280×720).ogv.en.srt\n", + "links\n", + "Section 2.1 Introduction To Small Business & SBIR/STTR (How Small Businesses Work With DARPA) (DARPA).ogv.en.srt\n", + "links\n", + "Section 2.1 Introduction To Small Business & SBIR STTR (How Small Businesses Work With DARPA) (DARPA).og..\n", + "links\n", + "Section 3.1 From Research To Use (SBIR/STTR Transition Overview) (DARPA).ogv.en.srt\n", + "links\n", + "Section 3.1 From Research To Use (SBIR STTR Transition Overview) (DARPA).ogv.en.srt\n", + "links\n", + "Section 3.2 Addressing Transition Pathways & Risks (SBIR/STTR Transition Overview) (DARPA).ogv.en.srt\n", + "links\n", + "Section 3.2 Addressing Transition Pathways & Risks (SBIR STTR Transition Overview) (DARPA).ogv.en.srt\n", + "links\n", + "Section 3.3 Transition Planning (SBIR/STTR Transition Overview) (DARPA).ogv.en.srt\n", + "links\n", + "Section 3.3 Transition Planning (SBIR STTR Transition Overview) (DARPA).ogv.en.srt\n", + "links\n", + "Section 3.4 Communicating Your Innovation To Others (SBIR/STTR Transition Overview) (DARPA).ogv.en.srt\n", + "links\n", + "Section 3.4 Communicating Your Innovation To Others (SBIR STTR Transition Overview) (DARPA).ogv.en.srt\n", + "links\n", + "Yosemite Nature Notes 9: Frazil Ice.ogv.en.srt\n", + "links\n", + "Yosemite Nature Notes 9 - Frazil Ice.ogv.en.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogg.es.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogv.es.srt\n", + "links\n", + "Krazy Kat Bugolist 1916 silent.ogv.pt.srt\n", + "links\n", + "Krazy Kat Bugologist 1916 silent.ogv.pt.srt\n", + "links\n", + "Wikimedia Foundation 90 second HR Video with Disclaimer 720p.theora.ogv\n", + "links\n", + "Wikimedia Foundation 90 second HR Video with Disclaimer 720p.theora.ogv.en.srt\n", + "links\n", + "DuckandC1951.ogg.en.srt\n", + "links\n", + "DuckandC1951.ogv.en.srt\n", + "links\n", + "Dies.irae.ogg.latin.srt\n", + "links\n", + "Dies.irae.ogg.la.srt\n", + "links\n", + "Hoch tut euch auf.ogg.ger.srt\n", + "links\n", + "Friedrich Wilhelm Nietzsche - Hoch tut euch auf.oga.ger.srt\n", + "links\n", + "Hoch tut euch auf.ogg.de.srt\n", + "links\n", + "Friedrich Wilhelm Nietzsche - Hoch tut euch auf.oga.de.srt\n", + "links\n", + "Hoch tut euch auf.ogg.en.srt\n", + "links\n", + "Friedrich Wilhelm Nietzsche - Hoch tut euch auf.oga.en.srt\n", + "links\n", + "Assembleia01.ogv.en.srt\n", + "links\n", + "Assembleia inaugural da Associação Pietro Roveri.ogv.en.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogg.it.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogv.it.srt\n", + "links\n", + "Sextortionagent interview.ogg.fr.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogg.zh-hant.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogv.zh-hant.srt\n", + "links\n", + "En-us-blue.ogg.en.srt: Transcription finished. ([Edit=Allow only autoconfirmed users\n", + "links\n", + "Elephants Dream.ogg.zh.srt\n", + "links\n", + "Elephants Dream (high quality).ogv.zh.srt\n", + "links\n", + "O Canada.ogg.fr.srt\n", + "links\n", + "O Canada.ogg.frc.srt\n", + "links\n", + "Bibiana spiega quello che facciamo-YouTube.webm\n", + "links\n", + "Bibiana spiega quello che facciamo-YouTube.webm.en.srt\n", + "links\n", + "Bibiana spiega quello che facciamo-YouTube.webmsd.webm.es.srt\n", + "links\n", + "Bibiana spiega quello che facciamo-YouTube.webm.es.srt\n", + "links\n", + "What are the factors that generate poverty\n", + "links\n", + "What are the factors that generate poverty?-- TVP.webm.en.srt\n", + "links\n", + "2012-06 Brandenburg an der Havel Hohenstücken Betriebshof←Anton -Saefkow-Allee.ogv.de.srt\n", + "links\n", + "2012-06 Brandenburg an der Havel~Hohenstücken Betriebshof←Anton-Saefkow-Allee.ogv.de.srt\n", + "links\n", + "Brandenburg an der Havel~Ritterstraße Museum←Hauptbahnhof←Quenzbrücke←Hauptstraße.ogv.de.srt\n", + "links\n", + "2012-06 Brandenburg an der Havel~Ritterstraße Museum←Hauptbahnhof←Quenzbrücke←Haupts..\n", + "links\n", + "Amandine Bourgeois - L'enfer et moi presentation (French).ogv.fr.srt\n", + "links\n", + "Amandine Bourgeois - L'enfer et moi presentation (Français).ogv.fr.srt\n", + "links\n", + "National Flag Anthem of the Republic of China.ogg.zh-hant.srt\n", + "links\n", + "National Flag Anthem of the Republic of China piano version.oga.zh-hant.srt\n", + "links\n", + "Bangladesh building collapse - WN.ogg.bn.srt\n", + "links\n", + "Bangladesh building collapse - WN.ogv.bn.srt\n", + "links\n", + "Hur tittar du på Wikipedia.webm.no.srt\n", + "links\n", + "Hur tittar du på Wikipedia.webm.nb.srt\n", + "links\n", + "Hur tittar du på Wikipedia.webm.no.srt\n", + "links\n", + "Hur tittar du på Wikipedia.webm.nb.srt\n", + "links\n", + "South Africa National Anthem.ogg.xh.srt\n", + "links\n", + "South African national anthem.oga.xh.srt\n", + "links\n", + "South Africa National Anthem.ogg.zu.srt\n", + "links\n", + "South African national anthem.oga.zu.srt\n", + "links\n", + "South Africa National Anthem.ogg.st.srt\n", + "links\n", + "South African national anthem.oga.st.srt\n", + "links\n", + "Munich air disaster newsreel footage small unedited.ogg.en.srt\n", + "links\n", + "1958-02-10 Britain Mourns. Soccer Champs Die In Plane Crash - small unedited.ogv.en.srt\n", + "links\n", + "Execution of Mussolini (1945).ogg.en.srt\n", + "links\n", + "Execution of Mussolini (1945).ogv.en.srt\n", + "links\n", + "Algeria tense cease fire.ogg.en.srt\n", + "links\n", + "1962-03-22 Algeria tense cease fire.ogv.en.srt\n", + "links\n", + "Algier1954.ogg.en.srt\n", + "links\n", + "Algier1954.ogv.en.srt\n", + "links\n", + "Rebellion spreads in north africa 1955.ogg.en.srt\n", + "links\n", + "1955-08-25 Rebellion Spreads in North Africa.ogv.en.srt\n", + "links\n", + "France digs in for total war in algeria 1956.ogg.en.srt\n", + "links\n", + "1956-05-21 France Digs in For Total War in Algeria.ogv.en.srt\n", + "links\n", + "Egypt, Syria Merge In New Arab Republic.webm.en.srt\n", + "links\n", + "1958-02-03 Egypt, Syria Merge In New Arab Republic.webm.en.srt\n", + "links\n", + "Envoys probe french indochina 1947.ogg.en.srt\n", + "links\n", + "1947-01-16 New Head Of Church Installed.ogv.en.srt\n", + "links\n", + "Goa 1955 invasion.ogg.en.srt\n", + "links\n", + "Goa 1955 invasion.ogv.en.srt\n", + "links\n", + "Operation Upshot test.ogg.en.srt\n", + "links\n", + "Operation Upshot test.ogv.en.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogg.nl.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogv.nl.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogg.tr.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogv.tr.srt\n", + "links\n", + "Paraguay National Anthem.ogg.gn.srt\n", + "links\n", + "Paraguayan National Anthem.oga.gn.srt\n", + "links\n", + "Paraguay National Anthem.ogg.pt.srt\n", + "links\n", + "Paraguayan National Anthem.oga.pt.srt\n", + "links\n", + "Paraguay National Anthem.ogg.fr.srt\n", + "links\n", + "Paraguayan National Anthem.oga.fr.srt\n", + "links\n", + "Paraguay National Anthem.ogg.de.srt\n", + "links\n", + "Paraguayan National Anthem.oga.de.srt\n", + "links\n", + "Paraguay National Anthem.ogg.it.srt\n", + "links\n", + "Paraguayan National Anthem.oga.it.srt\n", + "links\n", + "Serbian National Anthem instrumental.ogg.sr-ec.srt\n", + "links\n", + "Serbian national anthem, instrumental.oga.sr-ec.srt\n", + "links\n", + "Victoy Parade 1945.ogv.es.srt\n", + "links\n", + "Victory Parade 1945.ogv.es.srt\n", + "links\n", + "Jana_gana_mana_vocal.ogg.bn.srt\n", + "links\n", + "Lupang Hinirang instrumental.ogg.tl.srt\n", + "links\n", + "Chryslyer imperial all transistor car radio audio sound news clip.ogg.en.srt\n", + "links\n", + "Chrysler Imperial all transistor car radio audio sound news clip.oga.en.srt\n", + "links\n", + "Depression era gangsters.ogg.en.srt\n", + "links\n", + "Depression era gangsters.ogv.en.srt\n", + "links\n", + "National Banner Song.ogg.pny.srt\n", + "links\n", + "National Banner Song.ogg.Hanyu Pinyin.srt\n", + "links\n", + "National Banner Song.ogg.pny.srt\n", + "links\n", + "National Banner Song.ogg.Hanyu Pinyin.srt\n", + "links\n", + "National Anthem of the Republic of China.ogg.zh-min-nan.srt\n", + "links\n", + "National Anthem of the Republic of China.ogg.nan.srt\n", + "links\n", + "Wikipl-UX-01.ogv.pl.srt\n", + "links\n", + "Plwiki-UX research 2014-10-04.ogv.pl.srt\n", + "links\n", + "Recursos Educacionais Abertas (Alta Resolução).ogv.pt-br.srt\n", + "links\n", + "Recursos Educacionais Abertos (Alta Resolução).ogv.pt-br.srt\n", + "links\n", + "O Canada.ogg.fr.srt\n", + "links\n", + "O Canada.ogg.frc.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.ru-latn.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.la.srt\n", + "links\n", + "Recursos Educacionais Abertas (Alta Resolução).ogv.pt.srt\n", + "links\n", + "Recursos Educacionais Abertos (Alta Resolução).ogv.pt.srt\n", + "links\n", + "Recursos Educacionais Abertas (Alta Resolução).ogv.es.srt\n", + "links\n", + "Recursos Educacionais Abertos (Alta Resolução).ogv.es.srt\n", + "links\n", + "Recursos Educacionais Abertas (Alta Resolução).ogv.en.srt\n", + "links\n", + "Recursos Educacionais Abertos (Alta Resolução).ogv.en.srt\n", + "links\n", + "Jingle Bells2.ogg.en.srt\n", + "links\n", + "Jingle Bells (Calm) (Kevin MacLeod) (ISRC USUAN1100188).oga.en.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.ru-latn.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.la.srt\n", + "links\n", + "Jingle Bells.ogg.en.srt\n", + "links\n", + "Jingle Bells (90bpm) (Kevin MacLeod) (ISRC USUAN1100187).oga.en.srt\n", + "links\n", + "Tabu Mone Rekho Sung by Rabindranath Tagore Himself.ogg.en.srt\n", + "links\n", + "তবু মনে রেখো - গায়ক-রবীন্দ্রনাথ ঠাকুর.oga.en.srt\n", + "links\n", + "Jimmy Wales voice.ogg.zh-cn.srt\n", + "links\n", + "La_fina_venk'.ogv.eo.srt\n", + "links\n", + "This is scoring.OGG.fr.srt\n", + "links\n", + "This is scoring.ogv.fr.srt\n", + "links\n", + "This is wicket-keeping.OGG.fr.srt\n", + "links\n", + "This is wicket-keeping.ogv.fr.srt\n", + "links\n", + "Wikipedia Edit2014.ogv.pl.srt\n", + "links\n", + "Wikipedia Edit 2014.webm.pl.srt\n", + "links\n", + "Wikipedia Edit2014.ogv.pl.srt\n", + "links\n", + "Wikipedia Edit 2014.webm.pl.srt\n", + "links\n", + "Bilady, Bilady, Bilady.ogg.en.srt\n", + "links\n", + "En-Bangladesh.ogg.en.srt\n", + "links\n", + "Bn-বাংলাদেশ.oga.en.srt\n", + "links\n", + "En-Bangladesh.ogg.bn.srt\n", + "links\n", + "Bn-বাংলাদেশ.oga.bn.srt\n", + "links\n", + "Tabu Mone Rekho Sung by Rabindranath Tagore Himself.ogg.bn.srt\n", + "links\n", + "তবু মনে রেখো - গায়ক-রবীন্দ্রনাথ ঠাকুর.oga.bn.srt\n", + "links\n", + "Hüter, ist die Nacht bald hin?.ogg.es.srt\n", + "links\n", + "Friedrich Wilhelm Nietzsche - Hüter, ist die Nacht bald hin?.oga.es.srt\n", + "links\n", + "Buthanese Passport.ogg.en.srt\n", + "links\n", + "Bhutanese passport.oga.en.srt\n", + "links\n", + "Berlin airlift.ogv.en.srt\n", + "links\n", + "Wikipedia Takes Montreal 2011 (WTMTL).ogv.de\n", + "links\n", + "Wikipedia Takes Montreal 2011 (WTMTL).ogv.de.srt\n", + "links\n", + "Sudan.ogg.ar.srt\n", + "links\n", + "Sudanese national anthem, performed by the U.S. Navy Band (instrumental).oga.ar.srt\n", + "links\n", + "MacLeod, Kevin - Netherworld Shanty.ogg.en.srt\n", + "links\n", + "Netherworld Shanty (MacLeod, Kevin ) (ISRC USUAN1100138).oga.en.srt\n", + "links\n", + "United States Navy Band - God Save the Queen.ogg.bs.srt\n", + "links\n", + "United States Navy Band - God Save the King.oga.bs.srt\n", + "links\n", + "Icelandic alphabet.ogg.is.srt\n", + "links\n", + "Is-Icelandic alphabet.oga.is.srt\n", + "links\n", + "Копаничари.ogg.en.srt\n", + "links\n", + "Копаничари.ogv.en.srt\n", + "links\n", + "Test video upload.webm.en.srt\n", + "links\n", + "William Fisher, CopyrightX- Lecture 2.1, Fairness and Personality Theories- Introduction.webm.en.srt\n", + "links\n", + "Test video upload.webm.en.srt\n", + "links\n", + "William Fisher, CopyrightX- Lecture 2.1, Fairness and Personality Theories- Introduction.webm.en.srt\n", + "links\n", + "ArCJ SAC 19760412 Séance inaugurale du 12 avril 1976.ogg.fr.srt\n", + "links\n", + "ArCJ SAC 19760412 Séance inaugurale du 12 avril 1976 SAC01.oga.fr.srt\n", + "links\n", + "Jana_Gana_Mana_instrumental.ogg.ml.srt\n", + "links\n", + "Discurso 2 de abril 2010.ogg.es.srt\n", + "links\n", + "Discurso 2 de abril 2010.ogv.es.srt\n", + "links\n", + "This is the Wikimedia Foundation.webm.en.srt\n", + "links\n", + "Live radio broadcasting from the scene of the Hindenburg disaster.ogg.he.srt\n", + "links\n", + "Live audio recording from the scene of the Hindenburg disaster 1937-05-06 19-25 EST.oga.he.srt\n", + "links\n", + "Филигран.ogg.mk.srt\n", + "links\n", + "Филигран.ogv.mk.srt\n", + "links\n", + "Krazy Kat Bugolist 1916 silent.ogv.ro.srt\n", + "links\n", + "Krazy Kat Bugologist 1916 silent.ogv.ro.srt\n", + "links\n", + "United States Navy Band - God Save the Queen.ogg.uk.srt\n", + "links\n", + "United States Navy Band - God Save the King.oga.uk.srt\n", + "links\n", + "Live radio broadcasting from the scene of the Hindenburg disaster.ogg.de.srt\n", + "links\n", + "Live audio recording from the scene of the Hindenburg disaster 1937-05-06 19-25 EST.oga.de.srt\n", + "links\n", + "Мультиплікаційний фільм - Ан-28.ogv.en.srt\n", + "links\n", + "Cartoon on the birth of the Antonov An-28.ogv.en.srt\n", + "links\n", + "英國脫歐公投-6月23日投票.ogg.zh.srt\n", + "links\n", + "英國脫歐公投-6月23日投票.ogv.zh.srt\n", + "links\n", + "Donastiapedia edit-a-thon 2016 - video message from Katherine Maher.webm.en.srt\n", + "links\n", + "Donostiapedia edit-a-thon 2016 - video message from Katherine Maher.webm.en.srt\n", + "links\n", + "Donastiapedia edit-a-thon 2016 - video message from Katherine Maher.webm.eu.srt\n", + "links\n", + "Donostiapedia edit-a-thon 2016 - video message from Katherine Maher.webm.eu.srt\n", + "links\n", + "Weekly Address- Standing Together to Stop the Violence.webm.en.srt\n", + "links\n", + "4-11-09-_Your_Weekly_Address.webm.en.srt\n", + "links\n", + "4-11-09-_Your_Weekly_Address.webm.es.srt\n", + "links\n", + "7-21-16- White House Press Briefing (timed text).ogg.en.srt\n", + "links\n", + "Donastiapedia edit-a-thon 2016 - video message from Katherine Maher.webm.en.srt\n", + "links\n", + "Donostiapedia edit-a-thon 2016 - video message from Katherine Maher.webm.en.srt\n", + "links\n", + "Donastiapedia edit-a-thon 2016 - video message from Katherine Maher.webm.eu.srt\n", + "links\n", + "Donostiapedia edit-a-thon 2016 - video message from Katherine Maher.webm.eu.srt\n", + "links\n", + "Grace Hopper (As Told By U.S. Chief Technology Officer Megan Smith).oggvorbis.ogg.en.srt\n", + "links\n", + "West Wing Week- 11-09-12 or \"Our Journey Forward\".opus.en.srt\n", + "links\n", + "West Wing Week- 11-16-12 or \"That's Who We Are\".ogg.en.srt\n", + "links\n", + "Hm.konungen.riksmotet2016.16d759.1080p.webm.srt\n", + "links\n", + "Hm.konungen.riksmotet2016.16d759.1080p.webm.sv.srt\n", + "links\n", + "2016-11-19 President Obama's Weekly Address.webm\n", + "links\n", + "2016-11-19 President Obama's Weekly Address.webm.en.srt\n", + "links\n", + "06 Every-day live at Auschwitz-Birkenau (Lucien Ducastel).webm.en.srt\n", + "links\n", + "06 Everyday life at Auschwitz-Birkenau (Lucien Ducastel).webm.en.srt\n", + "links\n", + "보호하다.ogg.ko.srt\n", + "links\n", + "Ko-보호하다.oga.ko.srt\n", + "links\n", + "The First Lady Delivers Remarks at \"Hamilton at the White House\" Workshop 2.ogg.en.srt\n", + "links\n", + "President Obama meets with President Edrogan of Turkey.webm.en.srt\n", + "links\n", + "President Obama meets with President Erdoğan of Turkey.webm.en.srt\n", + "links\n", + "President Obama Pardons the National Thanksgiving (subtitles).opus.en.srt\n", + "links\n", + "White House Press Secretary Josh Earnest on the Hobby Lobby Decision (subtitles).ogg.en.srt\n", + "links\n", + "President Obama Holds a Press Conference on the Economy (subtitles).opus.en.srt\n", + "links\n", + "Farewell Address to the American People (subtitles).ogg.en.srt\n", + "links\n", + "The President Welcomes the Chicago Blackhawks, 2015 Stanley Cup Champions (subtitles).ogg.en.srt\n", + "links\n", + "OSM Wikimedia linken voor het Museum Volkenkunde Leiden.ogg.en.srt\n", + "links\n", + "OSM Wikimedia linken voor het Museum Volkenkunde Leiden.ogv.en.srt\n", + "links\n", + "Trump 'It's not a Muslim ban'.webmhd.webm.en.srt\n", + "links\n", + "Trump 'It's not a Muslim ban'.webm.en.srt\n", + "links\n", + "Behind the Scenes- President Obama & Disney's Hall of Presidents (subtitles).ogg.en.srt\n", + "links\n", + "2016 Invictus Games- Retired Staff Sgt. Michael Kacer (subtitles).ogg.en.srt\n", + "links\n", + "OSM Wikimedia linken voor het Museum Volkenkunde Leiden.ogg.en.srt\n", + "links\n", + "OSM Wikimedia linken voor het Museum Volkenkunde Leiden.ogv.en.srt\n", + "links\n", + "Vice President Pence holds a swearing-in ceremony for Education Secretary Betsy DeVos (subtitles).ogg.en.srt\n", + "links\n", + "Открытый доступ 2016.ogg.ru.sr\n", + "links\n", + "Liftoff of SpaceX CRS-10 (subtitles).opus.en.srt\n", + "links\n", + "3-18-17- Weekly Address.webm.en.srt\n", + "links\n", + "2017-03-18 President Trump's Weekly Address.webm.en.srt\n", + "links\n", + "Depression era gangsters.ogg.en.srt\n", + "links\n", + "Depression era gangsters.ogv.en.srt\n", + "links\n", + "President Obama Holds a News Conference (subtitles).ogg.en.srt\n", + "links\n", + "Bizet - Carmen - 1 - Act 1 - Sene 5 - L'amour est un oiseau rebelle (Habanera).ogg.fr.srt\n", + "links\n", + "Bizet - Carmen - 1 - Act 1 - Scene 5 - L'amour est un oiseau rebelle (Habanera).oga.fr.srt\n", + "links\n", + "Goa 1955 invasion.ogg.en.srt\n", + "links\n", + "Goa 1955 invasion.ogv.en.srt\n", + "links\n", + "Bombing of Hamburg.ogg.en.srt\n", + "links\n", + "Bombing of Hamburg.ogv.en.srt\n", + "links\n", + "DuckandC1951.ogg.en.srt\n", + "links\n", + "DuckandC1951.ogv.en.srt\n", + "links\n", + "Discurso 2 de abril 2010.ogg.es.srt\n", + "links\n", + "Discurso 2 de abril 2010.ogv.es.srt\n", + "links\n", + "Lägg till hjälpspråk i inställningarna på Transaltewiki.webm.sv.srt\n", + "links\n", + "Lägg till hjälpspråk i inställningarna på Translatewiki.webm.sv.srt\n", + "links\n", + "Lägg till hjälpspråk i inställningarna på Transaltewiki.webm.sv.srt\n", + "links\n", + "Lägg till hjälpspråk i inställningarna på Translatewiki.webm.sv.srt\n", + "links\n", + "Elephants Dream.ogg.af.srt\n", + "links\n", + "Elephants Dream.ogv.af.srt\n", + "links\n", + "Elephants Dream.ogg.en.srt\n", + "links\n", + "Elephants Dream.ogv.en.srt\n", + "links\n", + "Elephants Dream.ogg.nl.srt\n", + "links\n", + "Elephants Dream.ogv.nl.srt\n", + "links\n", + "20150126 Julia Galef VoiceIntro.flac.en.srt\n", + "links\n", + "Julia Galef voice.flac.en.srt\n", + "links\n", + "中華民國國旗歌 (演奏版).ogg.zh-hant.srt\n", + "links\n", + "National Flag Anthem of the Republic of China中華民國國旗歌 (演奏版).oga.zh-hant.srt\n", + "links\n", + "Thirdlaw.ogg.en.srt\n", + "links\n", + "Thirdlaw.ogv.en.srt\n", + "links\n", + "Wikimania 2018 promo video.ogg.en.srt\n", + "links\n", + "Wikimania 2018 promo video.ogv.en.srt\n", + "links\n", + "Motivation for 6.002x (MITx).webm.en.srt\n", + "links\n", + "Motivation (6.002x-2).webm.en.srt\n", + "links\n", + "DuckandC1951.ogv.en.srt&action=edi\n", + "links\n", + "8-25-17- White House Press Briefing (subtitles).ogg.en.srt\n", + "links\n", + "President Trump Participates in a Briefing on the Opioid Crisis with Secretary of HHS Tom Price (subtitles).ogg.en.srt\n", + "links\n", + "President Trump Gives Remarks on MS-13 to Federal, State, and Local Law Enforcement (subtitles).ogg.en.srt\n", + "links\n", + "CCD - The heart of a digital camera (how a charge-coupled device works).webm.zh-hans.srt\n", + "links\n", + "Reunión Bilateral con Ministerio de Defensa de Suecia para fortalecer Cooperación.ogg.es.srt\n", + "links\n", + "Reunión Bilateral con Ministerio de Defensa de Suecia para fortalecer Cooperación.ogv.es.srt\n", + "links\n", + "1-16-13- White House Press Briefing (subtitles).ogg.en.srt\n", + "links\n", + "Evillaugh.ogg.en.srt\n", + "links\n", + "Evil laugh 2.oga.en.srt\n", + "links\n", + "RAI-OdeonA228022 02.ogg.fi.srt\n", + "links\n", + "Maamme (first recording).oga.fi.srt\n", + "links\n", + "2017-09-24 16-16-00 reconst-histo-burnhaupt-le-haut.ogg.en.srt\n", + "links\n", + "2017-09-24 16-16-00 reconst-histo-burnhaupt-le-haut.ogv.en.srt\n", + "links\n", + "2017-09-24 16-16-00 reconst-histo-burnhaupt-le-haut.ogg.eo.srt\n", + "links\n", + "2017-09-24 16-16-00 reconst-histo-burnhaupt-le-haut.ogv.eo.srt\n", + "links\n", + "2017-10-01 09-07-00 transterritoire-vtt-belfort.ogg.fr.srt\n", + "links\n", + "2017-10-01 09-07-00 transterritoire-vtt-belfort.ogv.fr.srt\n", + "links\n", + "2017-10-01 09-07-00 transterritoire-vtt-belfort.ogg.en.srt\n", + "links\n", + "2017-10-01 09-07-00 transterritoire-vtt-belfort.ogv.en.srt\n", + "links\n", + "Bangladesh building collapse - WN.ogg.bn.srt\n", + "links\n", + "Bangladesh building collapse - WN.ogv.bn.srt\n", + "links\n", + "2017-10-01 09-07-00 transterritoire-vtt-belfort.ogg.eo.srt\n", + "links\n", + "2017-10-01 09-07-00 transterritoire-vtt-belfort.ogv.eo.srt\n", + "links\n", + "Bizet - Carmen - 1 - Act 1 - Sene 5 - L'amour est un oiseau rebelle (Habanera).ogg.en.srt\n", + "links\n", + "Bizet - Carmen - 1 - Act 1 - Scene 5 - L'amour est un oiseau rebelle (Habanera).oga.en.srt\n", + "links\n", + "German national anthem performed by the US Navy Band.ogg.en.srt\n", + "links\n", + "Megan Willams -Objectivity does not exist (not even for jurnalists).webm.en.srt\n", + "links\n", + "Megan Willams -Objectivity does not exist (not even for journalists).webm.en.srt\n", + "links\n", + "Megan Willams -Objectivity does not exist (not even for jurnalists).webm.de.srt\n", + "links\n", + "Megan Willams -Objectivity does not exist (not even for journalists).webm.de.srt\n", + "links\n", + "David's advice about replying to messages.webm.ar.srt\n", + "links\n", + "نصيحة ديفيد بشأن الرد على الرسائل.webm.ar.srt\n", + "links\n", + "David's advice about replying to messages.webm.en.srt\n", + "links\n", + "نصيحة ديفيد بشأن الرد على الرسائل.webm.en.srt\n", + "links\n", + "David's advice about replying to messages.webm.ar.srt\n", + "links\n", + "نصيحة ديفيد بشأن الرد على الرسائل.webm.ar.srt\n", + "links\n", + "David's advice about replying to messages.webm.en.srt\n", + "links\n", + "نصيحة ديفيد بشأن الرد على الرسائل.webm.en.srt\n", + "links\n", + "Kamerlid Ester Ouwehand vertelt wat een motie is.webm.nl.srt\n", + "links\n", + "Kamerlid Esther Ouwehand vertelt wat een motie is.webm.nl.srt\n", + "links\n", + "Kamerlid Elbert Dijkgraaf zoekt de verschillen tussen de Tweede Kamer en de regering..webm.nl.srt\n", + "links\n", + "Kamerlid Elbert Dijkgraaf zoekt de verschillen tussen de Tweede Kamer en de regering.webm.nl.srt\n", + "links\n", + "Serbian National Anthem, instrumental.oga.en.srt\n", + "links\n", + "Serbian national anthem, instrumental.oga.en.srt\n", + "links\n", + "GroenLinks wil Nederland veranderen..webm.nl.srt\n", + "links\n", + "GroenLinks wil Nederland veranderen 2015.webm.nl.srt\n", + "links\n", + "National anthem of Apartheid South Africa - Die Stem van Suid-Afrika.oga.en.srt\n", + "links\n", + "National anthem of Apartheid South Africa - \"Die Stem van Suid-Afrika\".oga.en.srt\n", + "links\n", + "National anthem of Apartheid-era South Africa - Die Stem van Suid-Afrika.oga.en.srt\n", + "links\n", + "National anthem of Apartheid-era South Africa - \"Die Stem van Suid-Afrika\".oga.en.srt\n", + "links\n", + "What's Up for November 2017.webm.en.srt\n", + "links\n", + "Catch planet pairs and watch the moon pass stellar superstars! See Jupiter and Venus at dawn, the Moon shine near star clusters, and meteor activity all month long.webm.en.srt\n", + "links\n", + "Iraqi national anthem, performed by the United States Navy Band.wav.en.srt\n", + "links\n", + "Iraqi national anthem, performed by the U.S. Navy Band.wav.en.srt\n", + "links\n", + "Zambian national anthem.oga.en.srt\n", + "links\n", + "Zambian national anthem.ogg.en.srt\n", + "links\n", + "Zambian national anthem.oga.en.srt\n", + "links\n", + "Ali abdullah saleh pronounciation.ogg.en.srt\n", + "links\n", + "Ali abdullah saleh pronunciation.oga.en.srt\n", + "links\n", + "Redeye missile video.ogg.en.srt\n", + "links\n", + "Redeye missile video.ogv.en.srt\n", + "links\n", + "Territorial anthem of the United States Virgin Islands.oga.en.srt\n", + "links\n", + "Regional anthem of the United States Virgin Islands.oga.en.srt\n", + "links\n", + "Gimn rf t1.ogg.vi.srt\n", + "links\n", + "Asisko.wav.eu.srt\n", + "links\n", + "Eu-Asisko.wav.eu.srt\n", + "links\n", + "Βασικός κώδικας wiki.el.srt\n", + "links\n", + "Βασικός κώδικας wiki.webm.el.srt\n", + "links\n", + "United States Navy Band - God Save the Queen.ogg.fy.srt\n", + "links\n", + "United States Navy Band - God Save the King.oga.fy.srt\n", + "links\n", + "En-Bangladesh.ogg.bn.srt\n", + "links\n", + "Bn-বাংলাদেশ.oga.bn.srt\n", + "links\n", + "Krazy Kat Bugolist 1916 silent.ogv.en.srt\n", + "links\n", + "Krazy Kat Bugologist 1916 silent.ogv.en.srt\n", + "links\n", + "Krazy Kat Bugolist 1916 silent.ogv.de.srt\n", + "links\n", + "Krazy Kat Bugologist 1916 silent.ogv.de.srt\n", + "links\n", + "Krazy Kat Bugolist 1916 silent.ogv.es.srt\n", + "links\n", + "Krazy Kat Bugologist 1916 silent.ogv.es.srt\n", + "links\n", + "Krazy Kat Bugolist 1916 silent.ogv.eu.srt\n", + "links\n", + "Krazy Kat Bugologist 1916 silent.ogv.eu.srt\n", + "links\n", + "Krazy Kat Bugolist 1916 silent.ogv.gl.srt\n", + "links\n", + "Krazy Kat Bugologist 1916 silent.ogv.gl.srt\n", + "links\n", + "Krazy Kat Bugolist 1916 silent.ogv.pt.srt\n", + "links\n", + "Krazy Kat Bugologist 1916 silent.ogv.pt.srt\n", + "links\n", + "Krazy Kat Bugolist 1916 silent.ogv.ro.srt\n", + "links\n", + "Krazy Kat Bugologist 1916 silent.ogv.ro.srt\n", + "links\n", + "中華民國國旗歌 (演奏版).ogg.zh-hans.srt\n", + "links\n", + "National Flag Anthem of the Republic of China中華民國國旗歌 (演奏版).oga.zh-hans.srt\n", + "links\n", + "Bladder-cancer.webm.ar.srt\n", + "links\n", + "Non-urothelial cell bladder cancers.webm.ar.srt\n", + "links\n", + "Bladder-cancer.webm.ar.srt\n", + "links\n", + "Non-urothelial cell bladder cancers.webm.ar.srt\n", + "links\n", + "\"Naprej, zastava slave\", 1918.oga.en.srt\n", + "links\n", + "Sintel movie 4K.webm.ar\n", + "links\n", + "Sintel movie 4K.webm.ar.srt\n", + "links\n", + "Soviet Union national anthem instrumental 1977.ogg.vi.srt\n", + "links\n", + "Soviet Union national anthem (instrumental), 1977.oga.vi.srt\n", + "links\n", + "Voss,_Axel_(it).webm.it.srt\n", + "links\n", + "'Jouw verhaal is mijn verhaal'.webm.nl.srt\n", + "links\n", + "'Jouw verhaal is mijn verhaal' GroenLinks 2018.webm.nl.srt\n", + "links\n", + "Duterte-SONA-2018-Iloilo-City.ogg.en.srt\n", + "links\n", + "Duterte-SONA-2018-Iloilo-City.ogv.en.srt\n", + "links\n", + "Vlog -11 leerrechten Loon op Zand.webm.nl.srt\n", + "links\n", + "Vlog -11 - Akte van Belening van Loon op Zand.webm.nl.srt\n", + "links\n", + "United States Navy Band - God Save the Queen.ogg.fi.srt\n", + "links\n", + "United States Navy Band - God Save the King.oga.fi.srt\n", + "links\n", + "CAM Video- 2018 Nobel Laureate Donna Strickland.webm.en.srt\n", + "links\n", + "CAM Video- 2018 Nobel Laureate Donna Strickland.webm.en.srt\n", + "links\n", + "CAM Video- 2018 Nobel Laureate Donna Strickland.webm.en.srt\n", + "links\n", + "CAM Video- 2018 Nobel Laureate Donna Strickland.webm.en.srt\n", + "links\n", + "Song of Five Races Under One Union.ogg.en.srt\n", + "links\n", + "Song of Five Races Under One Union.opus.en.srt\n", + "links\n", + "La mort annoncée de Rémi Fraisse.webm.en.srt\n", + "links\n", + "Vidéomontage présentant une manifestation au barrage de Sivens.webm.en.srt\n", + "links\n", + "\"Ein feste Burg\" performed by the United States Army Band in December 2018.ogg.en.srt\n", + "links\n", + "\"Ein feste Burg\" performed by the United States Army Band in December 2018.oga.en.srt\n", + "links\n", + "\"Ein feste Burg\" performed by the United States Army Band in December 2018.ogg.en.srt\n", + "links\n", + "\"Ein feste Burg\" performed by the United States Army Band in December 2018.oga.en.srt\n", + "links\n", + "\"Hail to the Chief\" performed at George H.W. Bush's lying in state, December 2018.ogg.en.srt\n", + "links\n", + "\"Hail to the Chief\" performed at George H.W. Bush's lying in state, December 2018.oga.en.srt\n", + "links\n", + "Talkpages.ogg.is.srt\n", + "links\n", + "Talkpages.ogv.is.srt\n", + "links\n", + "Createaccount.ogg.is.srt\n", + "links\n", + "Createaccount.ogv.is.srt\n", + "links\n", + "Majulah Singapura.ogg.id-ar.srt\n", + "links\n", + "Majulah Singapura.ogg.id.srt\n", + "links\n", + "LaEspero.ogg.eo.srt\n", + "links\n", + "United States Navy Band - God Save the Queen.ogg.mi.srt\n", + "links\n", + "United States Navy Band - God Save the King.oga.mi.srt\n", + "links\n", + "\"Jedna si jedina\" - Former national anthem of Bosnia and Herzegovina (1992–1999).oga.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Measles.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Measles.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Dengue fever.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Dengue fever.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Pneumonia.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Pneumonia.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Typhoid fever.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Typhoid fever.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Cancer.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Cancer.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Hepatitis C.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Hepatitis C.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Tuberculosis.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Tuberculosis.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Acute vision loss.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Acute vision loss.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Economy of Bulgaria.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Economy of Bulgaria.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Appendicitis.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Appendicitis.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Periodontitis.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Periodontal disease.webm.en.srt\n", + "links\n", + "Former Russian national anthem (1991–2000), performed by the Brass Band of the Russian Federation Ministry of Defense.wav.en.srt\n", + "links\n", + "Former Russian national anthem (1990–2000), performed by the Brass Band of the Russian Ministry of Defense.wav.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Dengue fever.webm.ar.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Dengue fever.webm.ar.srt\n", + "links\n", + "Sudanese national anthem, performed by the U.S. Navy Band.oga.en.srt\n", + "links\n", + "Sudan.ogg.ar.srt\n", + "links\n", + "Sudanese national anthem, performed by the U.S. Navy Band (instrumental).oga.ar.srt\n", + "links\n", + "National Anthem of the Republic of China.ogg.zh-min-nan.srt\n", + "links\n", + "National Anthem of the Republic of China.ogg.nan.srt\n", + "links\n", + "Marines' Hymn, USMC Band.ogg.fr.srt\n", + "links\n", + "Territorial anthem of the United States Virgin Islands.wav.en.srt\n", + "links\n", + "Regional anthem of the United States Virgin Islands.wav.en.srt\n", + "links\n", + "Physicsworks.ogg.en.srt\n", + "links\n", + "Physicsworks.ogv.en.srt\n", + "links\n", + "Trumann hiroshima.ogg.pt-br.srt\n", + "links\n", + "Truman on Hiroshima.oga.pt-br.srt\n", + "links\n", + "ウィキペディア:ビデオウィキ-痛風.webm.ja.srt\n", + "links\n", + "Wikipedia:ビデオウィキ-痛風.webm.ja.srt\n", + "links\n", + "Wikipedia-VideoWiki-Ventricular fibrillation.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Ventricular fibrillation.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Measles (Osmosis).webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Measles (Osmosis).webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Breastfeeding.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Breastfeeding.webm.en.srt\n", + "links\n", + "Yacatecuhtli tocando el Cascabel.ogg.es.srt\n", + "links\n", + "Yacatecuhtli tocando el Cascabel.ogv.es.srt\n", + "links\n", + "Wikipedia-VideoWiki-A. P. J. Abdul Kalam.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-A. P. J. Abdul Kalam.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Anandi Gopal Joshi.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Anandi Gopal Joshi.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Lactose intolerance terminology.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Lactose intolerance terminology.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Lactose intolerance symptoms.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Lactose intolerance symptoms.webm.en.srt\n", + "links\n", + "October Ten Days That Shook the World (1928).webm.en.srt\n", + "links\n", + "1927. Октябрь (Эйзенштейн).webm.en.srt\n", + "links\n", + "October Ten Days That Shook the World (1928).webm.es.srt\n", + "links\n", + "1927. Октябрь (Эйзенштейн).webm.es.srt\n", + "links\n", + "Wikipedia-VideoWiki-Rani of Jhansi.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Rani of Jhansi.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Rabindranath Tagore.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Rabindranath Tagore.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-C. V. Raman.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-C. V. Raman.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Raja Ravi Varma.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Raja Ravi Varma.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Arundhati Roy.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Arundhati Roy.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Kailash Satyarthi.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Kailash Satyarthi.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-State Bank of India.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-State Bank of India.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Indian Institute of Science.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Indian Institute of Science.webm.en.srt\n", + "links\n", + "Icelandic alphabet.ogg.is.srt\n", + "links\n", + "Is-Icelandic alphabet.oga.is.srt\n", + "links\n", + "Wikipedia-VideoWiki-Homi J. Bhabha.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Homi J. Bhabha.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Kalpana Chawla.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Kalpana Chawla.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Sam Manekshaw.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Sam Manekshaw.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-K. M. Cariappa.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-K. M. Cariappa.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Arjan Singh.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Arjan Singh.webm.en.srt\n", + "links\n", + "Magnum, Our Own Agency.webm.webm.fa.srt\n", + "links\n", + "Magnum, Our Own Agency.webm.fa.srt\n", + "links\n", + "Wikipedia-VideoWiki-Indra Nooyi.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Indra Nooyi.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Vikram Sarabhai.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Vikram Sarabhai.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Mira Nair.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Mira Nair.webm.en.srt\n", + "links\n", + "Magnum, Our Own Agency.webm.fa.srt\n", + "links\n", + "Klimafaktor Sonne (ZDF, Terra X) 720p HD 50FPS.webm.webm.de.srt\n", + "links\n", + "Klimafaktor Sonne (ZDF, Terra X) 720p HD 50FPS.webm.de.srt\n", + "links\n", + "Klimafaktor Sonne (ZDF, Terra X) 720p HD 50FPS.webm.webm.en.srt\n", + "links\n", + "Klimafaktor Sonne (ZDF, Terra X) 720p HD 50FPS.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Chicken tikka.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Chicken tikka.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Biryani.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Biryani.webm.en.srt\n", + "links\n", + "Simon Bolivar-es.ogg.es.srt\n", + "links\n", + "Es-Simon Bolivar.oga.es.srt\n", + "links\n", + "Territorial anthem of the Northern Mariana Islands, performed by the United States Navy Band.oga.en.srt\n", + "links\n", + "Regional anthem of the Northern Mariana Islands, performed by the United States Navy Band.oga.en.srt\n", + "links\n", + "Sudanese national anthem, performed by the U.S. Navy Band (instrumental).oga.en.srt\n", + "links\n", + "Sudanese national anthem, performed by the U.S. Navy Band.oga.en.srt\n", + "links\n", + "National Anthem of Nicaragua by US Navy Band.ogg.en.srt\n", + "links\n", + "Territorial anthem of the United States Virgin Islands.oga.en.srt\n", + "links\n", + "Regional anthem of the United States Virgin Islands.oga.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Chaat.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Chaat.webm.en.srt\n", + "links\n", + "Handel - Zadok the Priest.ogg.en.srt\n", + "links\n", + "Handel - Zadok the Priest, HWV 258 (St Matthew's Concert Choir, Giromella).oga.en.srt\n", + "links\n", + "Summer 1995 Music scene at beach in Vega Baja, Puerto Rico - Snoop Dogg cameo.ogg.en.srt\n", + "links\n", + "Summer 1995 Music scene at beach in Vega Baja, Puerto Rico - Snoop Dogg cameo.ogv.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Price of cigarettes.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Price of cigarettes.webm.en.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.tr.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.tr.srt\n", + "links\n", + "Mengerflug \"Raumschifflager\" 20200201 5K color.webm.de.srt\n", + "links\n", + "Mandelboxflug \"Raumschifflager\" 20200201 5K color.webm.de.srt\n", + "links\n", + "Mengerflug \"Raumschifflager\" 20200201 5K color.webm.en.srt\n", + "links\n", + "Mandelboxflug \"Raumschifflager\" 20200201 5K color.webm.en.srt\n", + "links\n", + "Wikipedia-VideoWiki-Indian Peace Commission.webm.en.srt\n", + "links\n", + "En.Wikipedia-VideoWiki-Indian Peace Commission.webm.en.srt\n", + "links\n", + "FSF ShoeTool.ogg.en.srt\n", + "links\n", + "FSF ShoeTool.ogv.en.srt\n", + "links\n", + "FSF ShoeTool.ogg.fr.srt\n", + "links\n", + "FSF ShoeTool.ogv.fr.srt\n", + "links\n", + "FSF ShoeTool.ogg.nl.srt\n", + "links\n", + "FSF ShoeTool.ogv.nl.srt\n", + "links\n", + "FSF ShoeTool.ogg.es.srt\n", + "links\n", + "FSF ShoeTool.ogv.es.srt\n", + "links\n", + "FSF ShoeTool.ogg.eu.srt\n", + "links\n", + "FSF ShoeTool.ogv.eu.srt\n", + "links\n", + "FSF ShoeTool.ogg.ta.srt\n", + "links\n", + "FSF ShoeTool.ogv.ta.srt\n", + "links\n", + "FSF ShoeTool.ogg.tr.srt\n", + "links\n", + "FSF ShoeTool.ogv.tr.srt\n", + "links\n", + "FSF ShoeTool.ogg.ro.srt\n", + "links\n", + "FSF ShoeTool.ogv.ro.srt\n", + "links\n", + "FSF ShoeTool.ogg.uk.srt\n", + "links\n", + "FSF ShoeTool.ogv.uk.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.en.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.en.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.az.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.az.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.el.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.el.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.bg.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.bg.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.ar.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.ar.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.hy.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.hy.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.uz.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.uz.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.ru.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.ru.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.zh.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.zh.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.vi.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.vi.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.fr.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.fr.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.es.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.es.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.it.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.it.srt\n", + "links\n", + "FSF ShoeTool.ogg.en.srt\n", + "links\n", + "FSF ShoeTool.ogv.en.srt\n", + "links\n", + "FSF ShoeTool.ogg.uk.srt\n", + "links\n", + "FSF ShoeTool.ogv.uk.srt\n", + "links\n", + "FSF ShoeTool.ogg.ro.srt\n", + "links\n", + "FSF ShoeTool.ogv.ro.srt\n", + "links\n", + "FSF ShoeTool.ogg.tr.srt\n", + "links\n", + "FSF ShoeTool.ogv.tr.srt\n", + "links\n", + "FSF ShoeTool.ogg.ta.srt\n", + "links\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "FSF ShoeTool.ogv.ta.srt\n", + "links\n", + "FSF ShoeTool.ogg.eu.srt\n", + "links\n", + "FSF ShoeTool.ogv.eu.srt\n", + "links\n", + "FSF ShoeTool.ogg.es.srt\n", + "links\n", + "FSF ShoeTool.ogv.es.srt\n", + "links\n", + "FSF ShoeTool.ogg.nl.srt\n", + "links\n", + "FSF ShoeTool.ogv.nl.srt\n", + "links\n", + "FSF ShoeTool.ogg.fr.srt\n", + "links\n", + "FSF ShoeTool.ogv.fr.srt\n", + "links\n", + "Koronabirusa1 saguzarretatik gizakietara X9szY5HnIpw 1080p.webm.eu.srt\n", + "links\n", + "20200329 - Elhuyar Fundazioa - Koronabirusa1 saguzarretatik gizakietara.webm.eu.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.ja.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.ja.srt\n", + "links\n", + "Fucking, Austria.wav.en.srt\n", + "links\n", + "De-Fucking.wav.en.srt\n", + "links\n", + "COVID-19 L'OMS met en garde sur les \"passeports immunitaires\" - Wikinews Radio.ogg.fr.srt\n", + "links\n", + "COVID-19 L'OMS met en garde sur les \"passeports immunitaires\" - Wikinews Radio.oga.fr.srt\n", + "links\n", + "COVID-19 L'OMS met en garde sur les \"passeports immunitaires\" - Wikinews Radio.oga.fr.srt\n", + "links\n", + "COVID-19 L'OMS met en garde sur les \"passeports immunitaires\" - Wikinews Radio.ogg.fr.srt\n", + "links\n", + "COVID-19 L'OMS met en garde sur les \"passeports immunitaires\" - Wikinews Radio.oga.fr.srt\n", + "links\n", + "United States Navy Band - God Save the Queen.ogg.eu.srt\n", + "links\n", + "United States Navy Band - God Save the King.oga.eu.srt\n", + "links\n", + "200428 184 15300559 fasten stoffwechsel CC tex 3328k p15v15.webm.de.srt\n", + "links\n", + "Wie Fasten den Stoffwechsel verändert (CC BY 4.0).webm.de.srt\n", + "links\n", + "Die Temperaturkurve der Erde (ZDF, Terra X) 720p HD 50FPS.webm.de.srt\n", + "links\n", + "Die Temperaturkurve der Erde (ZDF, Terra X) 720p HD 50FPS.webm.nl.srt\n", + "links\n", + "Klima-Archiv Eislabor (ZDF, Terra X) 720p HD 50FPS.webm.de.srt\n", + "links\n", + "Klima-Archiv Eislabor (ZDF, Terra X) 720p HD 50FPS.webm.nl.srt\n", + "links\n", + "Rekonstruktion der Stadt Köln im 17. Jahrhundert.webm.de.srt\n", + "links\n", + "Rekonstruktion der Stadt Köln im 17. Jahrhundert.webm.nl.srt\n", + "links\n", + "Wie Fasten den Stoffwechsel verändert (CC BY 4.0).webm.de.srt\n", + "links\n", + "Wie Fasten den Stoffwechsel verändert (CC BY 4.0).webm.nl.srt\n", + "links\n", + "Gibt es einen Fahrstuhl in den Weltraum (CC BY 4.0).webm.de.srt\n", + "links\n", + "Gibt es einen Fahrstuhl in den Weltraum (CC BY 4.0).webm.nl.srt\n", + "links\n", + "Hadrianswall und Limes.webm.de.srt\n", + "links\n", + "Hadrianswall und Limes.webm.nl.srt\n", + "links\n", + "Karthago,_Phönizische_Großstadt_(CC_BY-SA_4.0).webm.ru.srt\n", + "links\n", + "File:Catullus 1 latine.webm.webm.en.srt\n", + "links\n", + "Catullus 1 latine.webm.en.srt\n", + "links\n", + "File:Catullus 1 latine.webm.webm.la.srt\n", + "links\n", + "Catullus 1 latine.webm.la.srt\n", + "links\n", + "WhatsApp Ptt 2020-08-06 at 18.56.24.ogg.yue.srt\n", + "links\n", + "WhatsApp Ptt 2020-08-06 at 18.56.24.opus.yue.srt\n", + "links\n", + "\"Home Means Nevada\" - Regional anthem of Nevada.ogg.en.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.ota.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.ota.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.mk.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.mk.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.sr.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.sr.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.be-tarask.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.be-tarask.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.ca.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.ca.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.cs.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.cs.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.eo.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.eo.srt\n", + "links\n", + "IstiklalMarsi-2013.ogg.fi.srt\n", + "links\n", + "IstiklalMarsi-2013 (version 2).oga.fi.srt\n", + "links\n", + "ASSHOLE, Bigot, Liar and Pussy grabber Donald Trump Drinks Disinfectant. Dump Donald Trump in 2020.webm.en-us.srt\n", + "links\n", + "Donald Trump Drinks Disinfectant.webm.en-us.srt\n", + "links\n", + "Justice Antonin Scalia on Separation of Powers and Checks and Balances.webm.es.srt\n", + "links\n", + "Jimmy Wales voice.ogg.en.srt\n", + "links\n", + "Movement Strategy Global Conversations.en.srt\n", + "links\n", + "Movement Strategy Global Conversations.webm.en.srt\n", + "links\n", + "Movement Strategy Global Conversations.en.srt\n", + "links\n", + "Movement Strategy Global Conversations.webm.en.srt\n", + "links\n", + "WikiJournal PDF fmtting.webm.en.srt\n", + "links\n", + "WikiJournal PDF formatting.webm.en.srt\n", + "links\n", + "Boy mnw.ogg.en.srt\n", + "links\n", + "Mnw-ကောန်ၚာ်တြုံ.oga.en.srt\n", + "links\n", + "Boy mnw.ogg.ja.srt\n", + "links\n", + "Mnw-ကောန်ၚာ်တြုံ.oga.ja.srt\n", + "links\n", + "Boy mnw.ogg.mnw.srt\n", + "links\n", + "Mnw-ကောန်ၚာ်တြုံ.oga.mnw.srt\n", + "links\n", + "Boy mnw.ogg.th.srt\n", + "links\n", + "Mnw-ကောန်ၚာ်တြုံ.oga.th.srt\n", + "links\n", + "Boy mnw.ogg.ko.srt\n", + "links\n", + "Mnw-ကောန်ၚာ်တြုံ.oga.ko.srt\n", + "links\n", + "Boy mnw.ogg.zh.srt\n", + "links\n", + "Mnw-ကောန်ၚာ်တြုံ.oga.zh.srt\n", + "links\n", + "Boy mnw.ogg.my.srt\n", + "links\n", + "Mnw-ကောန်ၚာ်တြုံ.oga.my.srt\n", + "links\n", + "Consonants mnw.ogg.en.srt\n", + "links\n", + "Mnw-ဗျဉ်.oga.en.srt\n", + "links\n", + "Consonants mnw.ogg.ja.srt\n", + "links\n", + "Mnw-ဗျဉ်.oga.ja.srt\n", + "links\n", + "Consonants mnw.ogg.ko.srt\n", + "links\n", + "Mnw-ဗျဉ်.oga.ko.srt\n", + "links\n", + "Consonants mnw.ogg.mnw.srt\n", + "links\n", + "Mnw-ဗျဉ်.oga.mnw.srt\n", + "links\n", + "Consonants mnw.ogg.my.srt\n", + "links\n", + "Mnw-ဗျဉ်.oga.my.srt\n", + "links\n", + "Consonants mnw.ogg.th.srt\n", + "links\n", + "Mnw-ဗျဉ်.oga.th.srt\n", + "links\n", + "Consonants mnw.ogg.zh.srt\n", + "links\n", + "Mnw-ဗျဉ်.oga.zh.srt\n", + "links\n", + "United States Navy Band - God Save the Queen.ogg.el.srt\n", + "links\n", + "United States Navy Band - God Save the King.oga.el.srt\n", + "links\n", + "05 Ri liberas.wav.eo.srt\n", + "links\n", + "Manolo Sanchez and Richard Nixon.ogg.en.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးထေဲ.ogg.en.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးထေဲ.oga.en.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးထေဲ.ogg.hi.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးထေဲ.oga.hi.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးထေဲ.ogg.ja.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးထေဲ.oga.ja.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးထေဲ.ogg.ko.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးထေဲ.oga.ko.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးထေဲ.ogg.mnw.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးထေဲ.oga.mnw.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးထေဲ.ogg.my.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးထေဲ.oga.my.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးထေဲ.ogg.th.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးထေဲ.oga.th.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးထေဲ.ogg.zh.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးထေဲ.oga.zh.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးစိုတ်ဂၠေံ.ogg.en.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးစိုတ်ဂၠေံ.oga.en.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးစိုတ်ဂၠေံ.ogg.hi.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးစိုတ်ဂၠေံ.oga.hi.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးစိုတ်ဂၠေံ.ogg.ja.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးစိုတ်ဂၠေံ.oga.ja.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးစိုတ်ဂၠေံ.ogg.ko.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးစိုတ်ဂၠေံ.oga.ko.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးစိုတ်ဂၠေံ.ogg.my.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးစိုတ်ဂၠေံ.oga.my.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးစိုတ်ဂၠေံ.ogg.mnw.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးစိုတ်ဂၠေံ.oga.mnw.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးစိုတ်ဂၠေံ.ogg.th.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးစိုတ်ဂၠေံ.oga.th.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးစိုတ်ဂၠေံ.ogg.zh.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးစိုတ်ဂၠေံ.oga.zh.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးထေဲ.ogg.ar.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးထေဲ.oga.ar.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးထေဲ.ogg.ta.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးထေဲ.oga.ta.srt\n", + "links\n", + "ညးဖျဵုဂှ် ဒှ်ညးထေဲ.ogg.ru.srt\n", + "links\n", + "Mnw-ညးဖျဵုဂှ် ဒှ်ညးထေဲ.oga.ru.srt\n", + "links\n", + "Processo alla reta – Teatro delle formiche teaser.mpg.it.srt\n", + "links\n", + "Processo alla rete – Teatro delle formiche teaser.mpg.it.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia!.webm.zh-hant.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! (English subtitles).webm.zh-hant.srt\n", + "links\n", + "Wikipedia Edukcja Emis Fin.webm.pl.srt\n", + "links\n", + "Wikipedia Edukacja Emis Fin.webm.pl.srt\n", + "links\n", + "01-27-21 Press Briefing by Press Secretary Jen Psaki, John Kerry, and Gina McCarthy re Gamestop short squeeze.webm.en.srt\n", + "links\n", + "Press Briefing by Press Secretary Jen Psaki, 2021-01-27-21 re Gamestop short squeeze.webm.en.srt\n", + "links\n", + "Video Educacion Regional (WMAR).webm.en.srt\n", + "links\n", + "Educación y Movimiento Wikimedia en América Latina.webm.en.srt\n", + "links\n", + "Video Educacion Regional (WMAR).webm.en.srt\n", + "links\n", + "Educación y Movimiento Wikimedia en América Latina.webm.en.srt\n", + "links\n", + "United States Navy Band - God Save the Queen.ogg.hu.srt\n", + "links\n", + "United States Navy Band - God Save the King.oga.hu.srt\n", + "links\n", + "Star Spangled Banner.ogg.ms.srt\n", + "links\n", + "\"The Star-Spangled Banner\" - Choral with band accompaniment - United States Army Field Band.oga.ms.srt\n", + "links\n", + "United States Navy Band - God Save the Queen.ogg.ar.srt\n", + "links\n", + "United States Navy Band - God Save the King.oga.ar.srt\n", + "links\n", + "\"The Star-Spangled Banner\" - Choral with band accompaniment - United States Army Field Band.oga.en.srt\n", + "links\n", + "ညးဗြဴဖျိန်ပုၚ်.ogg.en.srt\n", + "links\n", + "Mnw-ညးဗြဴဖျိန်ပုၚ်.oga.en.srt\n", + "links\n", + "ညးဗြဴဖျိန်ပုၚ်.ogg.ja.srt\n", + "links\n", + "Mnw-ညးဗြဴဖျိန်ပုၚ်.oga.ja.srt\n", + "links\n", + "ညးဗြဴဖျိန်ပုၚ်.ogg.ko.srt\n", + "links\n", + "Mnw-ညးဗြဴဖျိန်ပုၚ်.oga.ko.srt\n", + "links\n", + "ညးဗြဴဖျိန်ပုၚ်.ogg.lo.srt\n", + "links\n", + "Mnw-ညးဗြဴဖျိန်ပုၚ်.oga.lo.srt\n", + "links\n", + "ညးဗြဴဖျိန်ပုၚ်.ogg.mnw.srt\n", + "links\n", + "Mnw-ညးဗြဴဖျိန်ပုၚ်.oga.mnw.srt\n", + "links\n", + "ညးဗြဴဖျိန်ပုၚ်.ogg.my.srt\n", + "links\n", + "Mnw-ညးဗြဴဖျိန်ပုၚ်.oga.my.srt\n", + "links\n", + "ညးဗြဴဖျိန်ပုၚ်.ogg.th.srt\n", + "links\n", + "Mnw-ညးဗြဴဖျိန်ပုၚ်.oga.th.srt\n", + "links\n", + "ညးဗြဴဖျိန်ပုၚ်.ogg.zh.srt\n", + "links\n", + "Mnw-ညးဗြဴဖျိန်ပုၚ်.oga.zh.srt\n", + "links\n", + "ညးဗြဴဖျိန်ပုၚ်.ogg.km.srt\n", + "links\n", + "Mnw-ညးဗြဴဖျိန်ပုၚ်.oga.km.srt\n", + "links\n", + "ညးဗြဴဖျိန်ပုၚ်.ogg.ar.srt\n", + "links\n", + "Mnw-ညးဗြဴဖျိန်ပုၚ်.oga.ar.srt\n", + "links\n", + "ညးဗြဴဖျိန်ပုၚ်.ogg.hi.srt\n", + "links\n", + "Mnw-ညးဗြဴဖျိန်ပုၚ်.oga.hi.srt\n", + "links\n", + "March of the Volunteers vocal.ogg.zh-hans.srt\n", + "links\n", + "March of the Volunteers vocal.ogg.zh-hans.srt\n", + "links\n", + "United States Navy Band - God Save the Queen.ogg.la.srt\n", + "links\n", + "United States Navy Band - God Save the King.oga.la.srt\n", + "links\n", + "United States Navy Band - Maamme.ogg.fi.srt alapján Bán Aladár fordításával\n", + "links\n", + "Happy 20th birthday, Wikipedia! – without subtitles.webm.ar.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – International (subtitled) version.webm.ar.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – without subtitles.webm.es.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – International (subtitled) version.webm.es.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – without subtitles.webm.fr.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – International (subtitled) version.webm.fr.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – without subtitles.webm.de.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – International (subtitled) version.webm.de.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – without subtitles.webm.ru.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – International (subtitled) version.webm.ru.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – without subtitles.webm.zh.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – International (subtitled) version.webm.zh.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – without subtitles.webm.zh.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – International (subtitled) version.webm.zh.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – without subtitles.webm.ru.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – International (subtitled) version.webm.ru.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – without subtitles.webm.de.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – International (subtitled) version.webm.de.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – without subtitles.webm.fr.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – International (subtitled) version.webm.fr.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – without subtitles.webm.es.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – International (subtitled) version.webm.es.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – without subtitles.webm.ar.srt\n", + "links\n", + "Happy 20th birthday, Wikipedia! – International (subtitled) version.webm.ar.srt\n", + "links\n", + "WMF board candidacy statement.webm.pl.srt\n", + "links\n", + "Dariusz Jemielniak - 2021 WMF board candidacy statement (with subtitle soft translation).webm.pl.srt\n", + "links\n", + "Dariusz Jemielniak - 2021 WMF board candidacy statement (with subtitle soft translation).webm.ca.srt\n", + "links\n", + "WMF board candidacy statement.webm.en.srt\n", + "links\n", + "Dariusz Jemielniak - 2021 WMF board candidacy statement (with subtitle soft translation).webm.en.srt\n", + "links\n", + "WMF board candidacy statement.webm.pl.srt\n", + "links\n", + "Dariusz Jemielniak - 2021 WMF board candidacy statement (with subtitle soft translation).webm.pl.srt\n", + "links\n", + "Videoonwikipedia.ogv.ISO 639.srt\n", + "links\n", + "Videoonwikipedia.ogv.fa.srt\n", + "links\n", + "Kongo-Graupapagei Sprechen.ogg.de.srt\n", + "links\n", + "Psittacus erithacus speaking.oga.de.srt\n", + "links\n", + "Dariusz Jemielniak - 2021 WMF board candidacy statement (with subtitle soft translation).webm.de.srt\n", + "links\n", + "Dariusz Jemielniak - 2021 WMF board candidacy statement (with subtitle soft translation)-BROKEN.webm.de.srt\n", + "links\n", + "Imnul Republicii Moldova US NAVY.ogg.en.srt\n", + "links\n", + "Han forlot AKPml etter Fråsegna (skeivt arkiv).webm.nb.srt\n", + "links\n", + "Han forlot AKP-ml etter «Fråsegna» (skeivt arkiv).webm.nb.srt\n", + "links\n", + "Han forlot AKPml etter Fråsegna (skeivt arkiv).webm.en.srt\n", + "links\n", + "Han forlot AKP-ml etter «Fråsegna» (skeivt arkiv).webm.en.srt\n", + "links\n", + "45 av den samiske befolkningen opplever seksualisert vold (skeivt arkiv).webm.nb.srt\n", + "links\n", + "45% av den samiske befolkningen opplever seksualisert vold (skeivt arkiv).webm.nb.srt\n", + "links\n", + "45 av den samiske befolkningen opplever seksualisert vold (skeivt arkiv).webm.en.srt\n", + "links\n", + "45% av den samiske befolkningen opplever seksualisert vold (skeivt arkiv).webm.en.srt\n", + "links\n", + "Jeg skulle være et eksempel for homseelevene (skeivt arkiv).webm.nb.srt\n", + "links\n", + "Jeg skulle være et eksempel for homse-elevene (skeivt arkiv).webm.nb.srt\n", + "links\n", + "Jeg skulle være et eksempel for homseelevene (skeivt arkiv).webm.en.srt\n", + "links\n", + "Jeg skulle være et eksempel for homse-elevene (skeivt arkiv).webm.en.srt\n", + "links\n", + "45 av den samiske befolkningen opplever seksualisert vold (skeivt arkiv).webm.nb.srt\n", + "links\n", + "45% av den samiske befolkningen opplever seksualisert vold (skeivt arkiv).webm.nb.srt\n", + "links\n", + "45 av den samiske befolkningen opplever seksualisert vold (skeivt arkiv).webm.en.srt\n", + "links\n", + "45% av den samiske befolkningen opplever seksualisert vold (skeivt arkiv).webm.en.srt\n", + "links\n", + "Han forlot AKPml etter Fråsegna (skeivt arkiv).webm.nb.srt\n", + "links\n", + "Han forlot AKP-ml etter «Fråsegna» (skeivt arkiv).webm.nb.srt\n", + "links\n", + "Han forlot AKPml etter Fråsegna (skeivt arkiv).webm.en.srt\n", + "links\n", + "Han forlot AKP-ml etter «Fråsegna» (skeivt arkiv).webm.en.srt\n", + "links\n", + "Homo på Utsira No problem (skeivt arkiv).webm.nb.srt\n", + "links\n", + "Homo på Utsira? No problem (skeivt arkiv).webm.nb.srt\n", + "links\n", + "Homo på Utsira No problem (skeivt arkiv).webm.en.srt\n", + "links\n", + "Homo på Utsira? No problem (skeivt arkiv).webm.en.srt\n", + "links\n", + "Jeg skulle være et eksempel for homseelevene (skeivt arkiv).webm.nb.srt\n", + "links\n", + "Jeg skulle være et eksempel for homse-elevene (skeivt arkiv).webm.nb.srt\n", + "links\n", + "Jeg skulle være et eksempel for homseelevene (skeivt arkiv).webm.en.srt\n", + "links\n", + "Jeg skulle være et eksempel for homse-elevene (skeivt arkiv).webm.en.srt\n", + "links\n", + "Homo på Utsira No problem (skeivt arkiv).webm.nb.srt\n", + "links\n", + "Homo på Utsira? No problem (skeivt arkiv).webm.nb.srt\n", + "links\n", + "Homo på Utsira No problem (skeivt arkiv).webm.en.srt\n", + "links\n", + "Homo på Utsira? No problem (skeivt arkiv).webm.en.srt\n", + "links\n", + "Das Straßennetz im antiken Rom (CC BY 4.0).webm.en.srt\n", + "links\n", + "Karthago, Phönizische Großstadt (CC BY-SA 4.0).webm.en.srt\n", + "links\n", + "Persepolis,_Hauptstadt_Persiens_(CC_BY-SA_4.0).webm.en.srt\n", + "links\n", + "2011-02-26 President Obama's Weekly Address.ogv.eS.srt\n", + "links\n", + "2011-02-26 President Obama's Weekly Address.ogv.es.srt\n", + "links\n", + "2011-06-18 President Obama's Weekly Address.ogv.eS.srt\n", + "links\n", + "2011-06-18 President Obama's Weekly Address.ogv.es.srt\n", + "links\n", + "2011-06-18 President Obama's Weekly Address.ogv.eS.srt\n", + "links\n", + "2011-06-18 President Obama's Weekly Address.ogv.es.srt\n", + "links\n", + "2013-06-01 President Obama's Weekly Address.ogv.ru.srt\n", + "links\n", + "2013-06-01 President Obama's Weekly Address.ogv.en.srt\n", + "links\n", + "President Obama Speaks at BET’s “Love and Happiness- A Musical Experience\".webm.en.srt\n", + "links\n", + "President Obama Speaks at BET’s “Love and Happiness - A Musical Experience\".webm.en.srt\n", + "links\n", + "Altgriechisch2.ogg.en.srt\n", + "links\n", + "Altgriechisch2.ogg.de.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogg.zh-hant.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogv.zh-hant.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogg.de.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogv.de.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogg.en.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogv.en.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogg.es.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogv.es.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogg.it.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogv.it.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogg.nl.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogv.nl.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogg.tr.srt\n", + "links\n", + "Yeager supersonic flight 1947.ogv.tr.srt\n", + "links\n", + "Wiki loves monuments.ogg.zh-hant.srt\n", + "links\n", + "Wiki loves monuments.ogv.zh-hant.srt\n", + "links\n", + "Wiki loves monuments.ogg.sv.srt\n", + "links\n", + "Wiki loves monuments.ogv.sv.srt\n", + "links\n", + "Wiki loves monuments.ogg.ro.srt\n", + "links\n", + "Wiki loves monuments.ogv.ro.srt\n", + "links\n", + "Wiki loves monuments.ogg.en.srt\n", + "links\n", + "Wiki loves monuments.ogv.en.srt\n", + "links\n", + "Wiki loves monuments.ogg.ca.srt\n", + "links\n", + "Wiki loves monuments.ogv.ca.srt\n", + "links\n", + "Nationals Government went back to Nanjing.ogg.zh-hant.srt\n", + "links\n", + "Nationals Government went back to Nanjing.ogv.zh-hant.srt\n", + "links\n", + "Elephants Dream.ogg.bg.srt\n", + "links\n", + "Elephants Dream.ogv.bg.srt\n", + "links\n", + "Elephants Dream.ogg.bn.srt\n", + "links\n", + "Elephants Dream.ogv.bn.srt\n", + "links\n", + "Elephants Dream.ogg.br.srt\n", + "links\n", + "Elephants Dream.ogv.br.srt\n", + "links\n", + "Elephants Dream.ogg.el.srt\n", + "links\n", + "Elephants Dream.ogv.el.srt\n", + "links\n", + "Elephants Dream.ogg.de.srt\n", + "links\n", + "Elephants Dream.ogv.de.srt\n", + "links\n", + "Elephants Dream.ogg.da.srt\n", + "links\n", + "Elephants Dream.ogv.da.srt\n", + "links\n", + "Elephants Dream.ogg.cs.srt\n", + "links\n", + "Elephants Dream.ogv.cs.srt\n", + "links\n", + "Elephants Dream.ogg.ca.srt\n", + "links\n", + "Elephants Dream.ogv.ca.srt\n", + "links\n", + "Elephants Dream.ogg.it.srt\n", + "links\n", + "Elephants Dream.ogv.it.srt\n", + "links\n", + "Elephants Dream.ogg.ja.srt\n", + "links\n", + "Elephants Dream.ogv.ja.srt\n", + "links\n", + "Elephants Dream.ogg.hu.srt\n", + "links\n", + "Elephants Dream.ogv.hu.srt\n", + "links\n", + "Elephants Dream.ogg.fr.srt\n", + "links\n", + "Elephants Dream.ogv.fr.srt\n", + "links\n", + "Elephants Dream.ogg.he.srt\n", + "links\n", + "Elephants Dream.ogv.he.srt\n", + "links\n", + "Elephants Dream.ogg.fi.srt\n", + "links\n", + "Elephants Dream.ogv.fi.srt\n", + "links\n", + "Elephants Dream.ogg.et.srt\n", + "links\n", + "Elephants Dream.ogv.et.srt\n", + "links\n", + "Elephants Dream.ogg.es.srt\n", + "links\n", + "Elephants Dream.ogv.es.srt\n", + "links\n", + "Elephants Dream.ogg.no.srt\n", + "links\n", + "Elephants Dream.ogv.no.srt\n", + "links\n", + "Elephants Dream.ogg.ro.srt\n", + "links\n", + "Elephants Dream.ogv.ro.srt\n", + "links\n", + "Elephants Dream.ogg.pt.srt\n", + "links\n", + "Elephants Dream.ogv.pt.srt\n", + "links\n", + "Elephants Dream.ogg.pt-br.srt\n", + "links\n", + "Elephants Dream.ogv.pt-br.srt\n", + "links\n", + "Elephants Dream.ogg.pl.srt\n", + "links\n", + "Elephants Dream.ogv.pl.srt\n", + "links\n", + "Elephants Dream.ogg.sl.srt\n", + "links\n", + "Elephants Dream.ogv.sl.srt\n", + "links\n", + "Elephants Dream.ogg.sk.srt\n", + "links\n", + "Elephants Dream.ogv.sk.srt\n", + "links\n", + "Elephants Dream.ogg.ru.srt\n", + "links\n", + "Elephants Dream.ogv.ru.srt\n", + "links\n", + "Elephants Dream.ogg.zh-cn.srt\n", + "links\n", + "Elephants Dream.ogv.zh-cn.srt\n", + "links\n", + "Elephants Dream.ogg.sv.srt\n", + "links\n", + "Elephants Dream.ogv.sv.srt\n", + "links\n", + "Hurricane Connie 1955.ogg.en.srt\n", + "links\n", + "Hurricane Connie 1955.ogv.en.srt\n", + "links\n", + "Operation Upshot test.ogg.en.srt\n", + "links\n", + "Operation Upshot test.ogv.en.srt\n", + "links\n", + "This is scoring.OGG.fr.srt\n", + "links\n", + "This is scoring.ogv.fr.srt\n", + "links\n", + "This is wicket-keeping.OGG.fr.srt\n", + "links\n", + "This is wicket-keeping.ogv.fr.srt\n", + "links\n", + "Execution of Mussolini (1945).ogg.en.srt\n", + "links\n", + "Execution of Mussolini (1945).ogv.en.srt\n", + "links\n", + "Algier1954.ogg.en.srt\n", + "links\n", + "Algier1954.ogv.en.srt\n", + "links\n", + "Creative Commons license stewardship 20 years and beyond..webm.en.srt\n", + "links\n", + "Creative Commons license stewardship 20 years and beyond.webm.en.srt\n", + "links\n", + "United States Navy Band - God Save the Queen.ogg.nb.srt\n", + "links\n", + "United States Navy Band - God Save the King.oga.nb.srt\n", + "links\n", + "Bizet - Carmen - 1 - Act 1 - Sene 5 - L'amour est un oiseau rebelle (Habanera).ogg.ru.srt\n", + "links\n", + "Bizet - Carmen - 1 - Act 1 - Scene 5 - L'amour est un oiseau rebelle (Habanera).oga.ru.srt\n", + "links\n", + "\"Gualtier malde! Caro nome” - Rigoletto (2016-17) HD.webm.it.srt\n", + "links\n", + "\"Gualtier Maldè! Caro nome” - Rigoletto (2016-17) HD.webm.it.srt\n", + "links\n", + "Die Temperaturkurve der Erde (ZDF, Terra X) 720p HD 50FPS.webm.en-gb.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.ru.srt\n", + "links\n", + "Коми Республикаса кып.ogg.kv.srt\n", + "links\n", + "Regional anthem of Komi vocal.oga.kv.srt\n", + "links\n", + "Drei wichtige Hormone für den Stoffwechsel Terra X.webm.de.srt\n", + "links\n", + "Трактат быкова.ogv.ru.srt\n", + "links\n", + "«Трактат» Быкова.ogv.ru.srt\n", + "links\n", + "Booker T. Washington, Speech, 1895 - edit.ogg.en.srt\n", + "links\n", + "Anatoli malkin.ogg.ru.srt\n", + "links\n", + "Anatoli Malkin voice.oga.ru.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.da.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.de.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.es.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.fr.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.id.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.ja.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.ms.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.pt.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.pt-br.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.uk.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.zh.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.zh-hans.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.zh-tw.srt\n", + "links\n", + "National Anthem of Russia (2000), instrumental, one verse.ogg.pl.srt\n", + "links\n", + "Shir Hashirim-M04 (SK).ogg.he.srt\n", + "links\n", + "Q Song-M04 Zabek.oga.he.srt\n", + "links\n", + "Bombing of Hamburg.ogg.mk.srt\n", + "links\n", + "Was passiert in unserem Gehirn bei Angst?.webm.ru.srt\n", + "links\n", + "Was passiert in unserem Gehirn bei Angst?.webm.de.srt\n", + "links\n", + "Обращение Президента Российской Федерации 2022-02-24.webm.zh-cn.srt\n", + "links\n", + "Обращение Президента Российской Федерации 2022-02-24.webm.zh-hans.srt\n", + "links\n", + "Chuck Jones - Merrie Melodies - Fox Pop (1942) (restored HD version).webm.en.srt|an outdated duplicate file\n", + "links\n", + "Обращение Президента Российской Федерации 2022-02-24.webm.zh-cn.srt\n", + "links\n", + "Обращение Президента Российской Федерации 2022-02-24.webm.zh-hans.srt\n", + "links\n", + "Обращение Президента Российской Федерации 2022-02-24.webm.zh-hant.srt\n", + "links\n", + "У Львові рятувальники ліквідували пожежу на СТО ,що сталася після ворожого обстрілу окупантів.webm.es.srt\n", + "links\n", + "У Львові рятувальники ліквідували пожежу на СТО, що сталася після ворожого обстрілу окупантів.webm.es.srt\n", + "links\n", + "President_Obama_Makes_a_Statement_on_the_Shooting_in_Newtown.ogv.en.srt|sehen Sie sich diese an\n", + "links\n", + "Wikimedia Sound Logo meeting 1.webmhd.webm.en.srt\n", + "links\n", + "Wikimedia Sound Logo meeting 1.webm.en.srt\n", + "links\n", + "Board of Trustees informational video.webm.zh.srt\n", + "links\n", + "Board of Trustees informational video.webm.zh-tw.srt\n", + "links\n", + "14179-tag-science-short-twitter.webm.en.srt\n", + "links\n", + "Asteroid Bennu's Surprising Surface Revealed by OSIRIS-REx.webm.en.srt\n", + "links\n", + "14179-tag-science-long-twitter-1.webm.en.srt\n", + "links\n", + "Asteroid Bennu's Surprising Surface Revealed by OSIRIS-REx (long form).webm.en.srt\n", + "links\n", + "God-Save-The-Queen.ogg.en.srt\n", + "links\n", + "God-Save-The-King.oga.en.srt\n", + "links\n", + "WikiCon Brasil 2022 - Bastidores.webm.en.srt\n", + "links\n", + "WikiCon Brasil 2022 - Apresentação (Legendado).webm.en.srt\n", + "links\n", + "Internationale orchestral arrangement.ogg.hr.srt\n", + "links\n", + "Internationale orchestral arrangement.ogg.sh.srt\n" + ] + } + ], + "source": [ + "\n", + "links = []\n", + "for transcription in b:\n", + " comment = transcription[\"comment\"]\n", + " if isinstance(comment, str):\n", + " splitted_comment = comment.split(\"TimedText:\")\n", + " if len(splitted_comment)>1:\n", + " link = []\n", + " for index in range(1,len(splitted_comment)):\n", + "\n", + " limit = splitted_comment[index].find(\"]\")\n", + " print(\"links\")\n", + " print(splitted_comment[index][:limit])\n", + " link.append(splitted_comment[index][:limit])\n", + " links.append(link)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "f4debe0a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Collecting pyWikiCommons\n", + " Downloading pyWikiCommons-0.0.5-py3-none-any.whl (7.2 kB)\n", + "Requirement already satisfied: requests>=2.25 in /Users/julianeusse/miniconda3/envs/factored/lib/python3.7/site-packages (from pyWikiCommons) (2.25.1)\n", + "Requirement already satisfied: chardet<5,>=3.0.2 in /Users/julianeusse/miniconda3/envs/factored/lib/python3.7/site-packages (from requests>=2.25->pyWikiCommons) (4.0.0)\n", + "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /Users/julianeusse/miniconda3/envs/factored/lib/python3.7/site-packages (from requests>=2.25->pyWikiCommons) (1.26.6)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /Users/julianeusse/miniconda3/envs/factored/lib/python3.7/site-packages (from requests>=2.25->pyWikiCommons) (2022.5.18.1)\n", + "Requirement already satisfied: idna<3,>=2.5 in /Users/julianeusse/miniconda3/envs/factored/lib/python3.7/site-packages (from requests>=2.25->pyWikiCommons) (2.10)\n", + "Installing collected packages: pyWikiCommons\n", + "Successfully installed pyWikiCommons-0.0.5\n" + ] + } + ], + "source": [ + "!pip3 install pyWikiCommons\n" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "de1acbf6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'https://upload.wikimedia.org/wikipedia/commons/d/d5/Elephants_Dream.ogv'" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from pyWikiCommons import pyWikiCommons\n", + "\n", + "pyWikiCommons.get_commons_url(\"File:Elephants Dream.ogg\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "4f10b8a6", + "metadata": {}, + "outputs": [], + "source": [ + "import requests\n", + "def download_file(url):\n", + " local_filename = url.split('/')[-1]\n", + " # NOTE the stream=True parameter below\n", + " headers = {'User-Agent': 'CoolBot/0.0 (https://example.org/coolbot/; coolbot@example.org)'}\n", + " with requests.get(url, stream=True, headers=headers) as r:\n", + " r.raise_for_status()\n", + " with open(local_filename, 'wb') as f:\n", + " for chunk in r.iter_content(chunk_size=8192): \n", + " # If you have chunk encoded response uncomment if\n", + " # and set chunk_size parameter to None.\n", + " #if chunk: \n", + " f.write(chunk)\n", + " return local_filename" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "id": "b9971f78", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Elephants_Dream.ogv'" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'https://upload.wikimedia.org/wikipedia/commons/d/d5/Elephants_Dream.ogv'" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "f4e3dd08", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'TimedText:Elephants Dream.ogg.sv.srt&action=raw'" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "download_file(\"https://commons.wikimedia.org/wiki/TimedText:Elephants Dream.ogg.sv.srt&action=raw\")" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "2a3f6d3f", + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'index.php?title=TimedText:Elephants_Dream.ogv.en.srt&action=raw'" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "download_file(\"https://commons.wikimedia.org/w/index.php?title=TimedText:Elephants_Dream.ogv.en.srt&action=raw\")\n" + ] + }, + { + "cell_type": "markdown", + "id": "d46421e8", + "metadata": {}, + "source": [ + "# Files Database" + ] + }, + { + "cell_type": "code", + "execution_count": 87, + "id": "4f93f064", + "metadata": {}, + "outputs": [], + "source": [ + "import json\n", + "with open(\"database.json\" , 'r') as file:\n", + " database = json.load(file)" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "id": "9062137c", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total error Videos: 160\n", + "Total good Videos: 9412\n" + ] + } + ], + "source": [ + "with open(r\"error.txt\", 'r') as fp:\n", + " x = len(fp.readlines())\n", + " print('Total error Videos:', x)\n", + "\n", + "with open(r\"uploaded.txt\", 'r') as fp:\n", + " x = len(fp.readlines())\n", + " print('Total good Videos:', x)\n", + " " + ] + }, + { + "cell_type": "markdown", + "id": "509d1691", + "metadata": {}, + "source": [ + "# Change Format" + ] + }, + { + "cell_type": "code", + "execution_count": 158, + "id": "89070ff4", + "metadata": {}, + "outputs": [], + "source": [ + "def change_format(file_name):\n", + " import subprocess\n", + " changed_filename = os.rename(file_name, \"temp.webm\")\n", + " subprocess.run(f'ffmpeg -i \"temp.webm\" {file_name}.mp3',shell=True)\n", + "\n", + "change_format(\"video_1.webm\")\n" + ] + }, + { + "cell_type": "markdown", + "id": "540ccd4d", + "metadata": {}, + "source": [ + "# Upload file" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "b8bb19d6", + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'signed_url' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m<ipython-input-2-f3f10e032efb>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m 20\u001b[0m \u001b[0;31m# method=\"GET\")\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 21\u001b[0m \u001b[0;31m# Print Signed URL\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 22\u001b[0;31m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msigned_url\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;31mNameError\u001b[0m: name 'signed_url' is not defined" + ] + } + ], + "source": [ + "import os\n", + "from google.cloud import storage\n", + "from datetime import timedelta\n", + "\n", + "# Initiate names\n", + "project_id = 'the-peoples-speech' # Your Project ID\n", + "bucket_name = 'wikimedia_commons' # Name of bucket\n", + "bucket_file = 'test/error.txt' # Location of the file on Bucket\n", + "local_file = 'error.txt' # Location of downloaded file on your PC\n", + "\n", + "# Set Credential\n", + "os.environ[\"GOOGLE_APPLICATION_CREDENTIALS\"] = \"the-peoples-speech-ee8163e65ace.json\"\n", + "client = storage.Client(project_id)\n", + "bucket = client.get_bucket(bucket_name)\n", + "blob = bucket.blob(bucket_file)\n", + "blob.upload_from_filename(local_file)\n", + "signed_url = blob.generate_signed_url(\n", + " version=\"v4\",\n", + " expiration=timedelta(seconds=60),\n", + " method=\"GET\")\n", + "#Print Signed URL\n", + "print(signed_url)" + ] + }, + { + "cell_type": "code", + "execution_count": 84, + "id": "c0d2ad4a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "File error.txt uploaded to error.txt.\n" + ] + } + ], + "source": [ + "from google.cloud import storage\n", + "\n", + "def upload_blob(bucket_name, source_file_name, destination_blob_name):\n", + " \"\"\"Uploads a file to the bucket.\"\"\"\n", + "\n", + " storage_client = storage.Client()\n", + " bucket = storage_client.bucket(bucket_name)\n", + " blob = bucket.blob(destination_blob_name)\n", + "\n", + " blob.upload_from_filename(source_file_name)\n", + "\n", + " print(\n", + " f\"File {source_file_name} uploaded to {destination_blob_name}.\"\n", + " )\n", + "\n", + "upload_blob(\"ensayo_1\", \"error.txt\", \"error.txt\")" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "id": "50dab3fb", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "9584" + ] + }, + "execution_count": 94, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(new_database.keys())" + ] + }, + { + "cell_type": "markdown", + "id": "cf1ffbd2", + "metadata": {}, + "source": [ + "# Calculate video time" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "4ee5582d", + "metadata": {}, + "outputs": [], + "source": [ + "import json\n", + "with open(\"wikimedia.json\" , 'r') as file:\n", + " previous_json = json.load(file)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "1d4a9fb0", + "metadata": {}, + "outputs": [], + "source": [ + "import re\n", + "hour = 0\n", + "minutes = 0\n", + "secounds = 0\n", + "no_text = []\n", + "\n", + "for register in range(len(previous_json)):\n", + " \n", + " try:\n", + " time = re.findall(\"(?:([01]?\\d|2[0-3]):([0-5]?\\d):)?([0-5]?\\d)\", previous_json[register][\"text\"])\n", + " for i in reversed(time):\n", + " if i[0]!=\"\" and i[1]!=\"\" and i[2]!=\"\":\n", + " hour += int(i[0])\n", + " minutes += int(i[1])\n", + " secounds += int(i[2])\n", + " break\n", + " except:\n", + " no_text.append(register)\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "5a2d04da", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2971:14:21\n" + ] + } + ], + "source": [ + "\n", + "temp_minutes = minutes + secounds//60\n", + "reformated_secounds = secounds%60\n", + "reformated_hour = hour + temp_minutes//60\n", + "reformated_minuts = minutes % 60\n", + "print(f\"{reformated_hour}:{reformated_minuts}:{reformated_secounds}\")\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "687fd34c", + "metadata": {}, + "outputs": [], + "source": [ + "from google.cloud import storage\n", + "\n", + "lista = []\n", + "client = storage.Client()\n", + "for blob in client.list_blobs('wikimedia_commons', prefix='raw_videos'):\n", + " lista.append(blob)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "d9fddb21", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "<Blob: wikimedia_commons, raw_videos/\"America the Beautiful\", performed by the United States Marine Band in the 1950s.oga, 1669065413659670>" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lista[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "1824ea7f", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "<bound method Blob.download_to_file of <Blob: wikimedia_commons, raw_videos/1957-07-04 Fort Belvoir Army Package Power Reactor.ogv, 1668766147835074>>" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lista[500].download_to_file" + ] + }, + { + "cell_type": "markdown", + "id": "f55d4823", + "metadata": {}, + "source": [ + "languaje count" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "b007d613", + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'language_count' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m<ipython-input-14-f23eb91fb6b2>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0;34m{\u001b[0m\u001b[0mk\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0mv\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mk\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mv\u001b[0m \u001b[0;32min\u001b[0m \u001b[0msorted\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mlanguage_count\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mitems\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mkey\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mlambda\u001b[0m \u001b[0mitem\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0mitem\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mreverse\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mTrue\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m}\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;31mNameError\u001b[0m: name 'language_count' is not defined" + ] + } + ], + "source": [ + "{k: v for k, v in sorted(language_count.items(), key=lambda item: item[1],reverse=True)}" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "3007a696", + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'database' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m<ipython-input-8-9e0effcddd35>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 8\u001b[0m \u001b[0mlanguage_count\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m{\u001b[0m\u001b[0;34m}\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 9\u001b[0;31m \u001b[0;32mfor\u001b[0m \u001b[0mkey\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mdatabase\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mkeys\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 10\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mvideo\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mdatabase\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 11\u001b[0m \u001b[0mleft\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0m_\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0msplit_with_last_dot\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mvideo\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mNameError\u001b[0m: name 'database' is not defined" + ] + } + ], + "source": [ + "def split_with_last_dot(string):\n", + " for character in range(len(string)-1,0,-1):\n", + " if string[character]==\".\":\n", + " left = string[:character]\n", + " right = string[character+1:]\n", + " return [left,right]\n", + "\n", + "language_count = {}\n", + "for key in database.keys():\n", + " for video in database[key]:\n", + " left,_ = split_with_last_dot(video)\n", + " _,language = split_with_last_dot(left)\n", + " if language not in language_count.keys():\n", + " language_count[language]=1\n", + " else:\n", + " language_count[language]+=1\n", + " " + ] + }, + { + "cell_type": "markdown", + "id": "1433c35e", + "metadata": {}, + "source": [ + "format count" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4575b483", + "metadata": {}, + "outputs": [], + "source": [ + "def split_with_last_dot(string):\n", + " for character in range(len(string)-1,0,-1):\n", + " if string[character]==\".\":\n", + " left = string[:character]\n", + " right = string[character+1:]\n", + " return [left,right]\n", + "\n", + "language_count = {}\n", + "for key in database.keys():\n", + " try:\n", + " _,language = split_with_last_dot(key)\n", + " if language not in language_count.keys():\n", + " language_count[language]=1\n", + " else:\n", + " language_count[language]+=1\n", + " except:\n", + " print(key)\n", + " \n", + "{k: v for k, v in sorted(language_count.items(), key=lambda item: item[1],reverse=True)}" + ] + }, + { + "cell_type": "markdown", + "id": "8df70cc2", + "metadata": {}, + "source": [ + "\"America the Beautiful\", performed by the United States Marine Band in the 1950s.oga" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "d1c47a78", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 2.34 ms, sys: 11.5 ms, total: 13.8 ms\n", + "Wall time: 200 ms\n" + ] + }, + { + "data": { + "text/plain": [ + "CompletedProcess(args='ffmpeg -vn -sn -i \"America the Beautiful\", performed by the United States Marine Band in the 1950s.oga test_big_size.flac', returncode=1)" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "import subprocess\n", + "subprocess.run(f'ffmpeg -vn -sn -i {a} test_big_size.flac',shell=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "id": "241e3534", + "metadata": {}, + "outputs": [], + "source": [ + "from google.cloud import storage\n", + "import os\n", + "\n", + "#env variables \n", + "project_id = 'the-peoples-speech'\n", + "bucket_name = 'wikimedia_commons'\n", + "bucket_file = 'test/error.txt'\n", + "local_file = 'error.txt'\n", + "os.environ[\"GOOGLE_APPLICATION_CREDENTIALS\"] = \"the-peoples-speech-ee8163e65ace.json\"\n", + "client = storage.Client(project_id)\n", + "bucket = client.get_bucket(bucket_name)\n", + "blob = bucket.blob(bucket_file)\n", + "client = storage.Client(project_id)\n", + "\n", + "# get files in bucket\n", + "files_list = [blob for blob in client.list_blobs('wikimedia_commons', prefix='reformat')]" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "id": "312b68a1", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "47.64705882352941" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ce134a16", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.10" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/scripts/wikimedia_download_files.ipynb b/scripts/wikimedia_download_files.ipynb new file mode 100644 index 00000000..78283d82 --- /dev/null +++ b/scripts/wikimedia_download_files.ipynb @@ -0,0 +1,183 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 23, + "id": "23b9e5bf", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "<Blob: wikimedia_commons, correspondence.json, 1673477410263513>\n" + ] + }, + { + "ename": "ValueError", + "evalue": "<Blob: wikimedia_commons, correspondence.json, 1673477410263513> could not be converted to unicode", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m<ipython-input-23-ad64f9b6a84d>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m 31\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mfile\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mfiles_list\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;36m2\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 32\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mfile\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 33\u001b[0;31m \u001b[0mdownload_blob\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mbucket_name\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mfile\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mfile\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 34\u001b[0m \u001b[0mf\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mopen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"downloaded.txt\"\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m\"a\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 35\u001b[0m \u001b[0mf\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mwrite\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34mf\"{file}\\n\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m<ipython-input-23-ad64f9b6a84d>\u001b[0m in \u001b[0;36mdownload_blob\u001b[0;34m(bucket_name, source_blob_name, destination_file_name)\u001b[0m\n\u001b[1;32m 20\u001b[0m \u001b[0mstorage_client\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mstorage\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mClient\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 21\u001b[0m \u001b[0mbucket\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mstorage_client\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mbucket\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mbucket_name\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 22\u001b[0;31m \u001b[0mblob\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mbucket\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mblob\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msource_blob_name\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 23\u001b[0m \u001b[0mdownloads_folder\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mpathlib\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mPath\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcwd\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 24\u001b[0m \u001b[0mfile\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mdownloads_folder\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mjoinpath\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdestination_file_name\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/miniconda3/envs/factored/lib/python3.7/site-packages/google/cloud/storage/bucket.py\u001b[0m in \u001b[0;36mblob\u001b[0;34m(self, blob_name, chunk_size, encryption_key, kms_key_name, generation)\u001b[0m\n\u001b[1;32m 799\u001b[0m \u001b[0mencryption_key\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mencryption_key\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 800\u001b[0m \u001b[0mkms_key_name\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mkms_key_name\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 801\u001b[0;31m \u001b[0mgeneration\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mgeneration\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 802\u001b[0m )\n\u001b[1;32m 803\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/miniconda3/envs/factored/lib/python3.7/site-packages/google/cloud/storage/blob.py\u001b[0m in \u001b[0;36m__init__\u001b[0;34m(self, name, bucket, chunk_size, encryption_key, kms_key_name, generation)\u001b[0m\n\u001b[1;32m 214\u001b[0m \u001b[0mGet\u001b[0m \u001b[0mthe\u001b[0m \u001b[0mblob\u001b[0m\u001b[0;31m'\u001b[0m\u001b[0ms\u001b[0m \u001b[0mname\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 215\u001b[0m \"\"\"\n\u001b[0;32m--> 216\u001b[0;31m \u001b[0mname\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0m_bytes_to_unicode\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mname\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 217\u001b[0m \u001b[0msuper\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mBlob\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__init__\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mname\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mname\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 218\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/miniconda3/envs/factored/lib/python3.7/site-packages/google/cloud/_helpers/__init__.py\u001b[0m in \u001b[0;36m_bytes_to_unicode\u001b[0;34m(value)\u001b[0m\n\u001b[1;32m 350\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mresult\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 351\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 352\u001b[0;31m \u001b[0;32mraise\u001b[0m \u001b[0mValueError\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"%r could not be converted to unicode\"\u001b[0m \u001b[0;34m%\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0mvalue\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 353\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 354\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mValueError\u001b[0m: <Blob: wikimedia_commons, correspondence.json, 1673477410263513> could not be converted to unicode" + ] + } + ], + "source": [ + "from google.cloud import storage\n", + "import os\n", + "import pathlib\n", + "\n", + "#env variables \n", + "project_id = 'the-peoples-speech'\n", + "bucket_name = 'wikimedia_commons'\n", + "bucket_file = 'test/error.txt'\n", + "os.environ[\"GOOGLE_APPLICATION_CREDENTIALS\"] = \"the-peoples-speech-ee8163e65ace.json\"\n", + "client = storage.Client(project_id)\n", + "bucket = client.get_bucket(bucket_name)\n", + "blob = bucket.blob(bucket_file)\n", + "client = storage.Client(project_id)\n", + "\n", + "# Download file \n", + "\n", + "def download_blob(bucket_name, source_blob_name, destination_file_name):\n", + " \"\"\"Downloads a blob from the bucket.\"\"\"\n", + "\n", + " storage_client = storage.Client()\n", + " bucket = storage_client.bucket(bucket_name)\n", + " blob = bucket.blob(source_blob_name)\n", + " downloads_folder = pathlib.Path.cwd()\n", + " file = downloads_folder.joinpath(destination_file_name)\n", + "\n", + " blob.download_to_filename(file)\n", + " \n", + "# get files in bucket\n", + "files_list = [blob for blob in client.list_blobs('wikimedia_commons', prefix='transcription')]\n", + "\n", + "for file in files_list[0:2]:\n", + " download_blob(bucket_name, file.name, file.name)\n", + " f = open(\"downloaded.txt\", \"a\")\n", + " f.write(f\"{file}\\n\")\n", + " f.close()\n", + " \n", + "files_list = [blob for blob in client.list_blobs('wikimedia_commons', prefix='reformat')]\n", + "\n", + "for file in files_list[0:2]:\n", + " download_blob(bucket_name, file.name, file.name)\n", + " f = open(\"downloaded.txt\", \"a\")\n", + " f.write(f\"{file}\\n\")\n", + " f.close()" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "c732a22b", + "metadata": {}, + "outputs": [], + "source": [ + "files_list = [blob for blob in client.list_blobs('wikimedia_commons', prefix='transcription')]\n" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "d0c5ad42", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'transcription/\"America the Beautiful\", performed by the United States Marine Band in the 1950s.oga.en.srt'" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "files_list[0].name" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "6cece7f7", + "metadata": {}, + "outputs": [], + "source": [ + "def split_with_last_dot(string):\n", + " for character in range(len(string)-1,0,-1):\n", + " if string[character]==\".\":\n", + " left = string[:character]\n", + " right = string[character+1:]\n", + " return [left,right]\n", + "\n", + "exts=[]\n", + "for i in files_list:\n", + " _,r=split_with_last_dot(i.name)\n", + " exts.append(r)" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "9edadfb0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'OGG',\n", + " 'WebM',\n", + " 'flac',\n", + " 'mid',\n", + " 'mp3',\n", + " 'mpg',\n", + " 'oga',\n", + " 'ogg',\n", + " 'ogv',\n", + " 'opus',\n", + " 'wav',\n", + " 'webm'}" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "set(exts)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python [conda env:factored]", + "language": "python", + "name": "conda-env-factored-py" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.10" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/scripts/wikimedia_reformat.ipynb b/scripts/wikimedia_reformat.ipynb new file mode 100644 index 00000000..d303aafa --- /dev/null +++ b/scripts/wikimedia_reformat.ipynb @@ -0,0 +1,75151 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 43, + "id": "4489617e", + "metadata": {}, + "outputs": [], + "source": [ + "import json\n", + "with open(\"wikimedia.json\" , 'r') as file:\n", + " previous_json = json.load(file)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "17282952", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 14%|█▎ | 2345/17152 [33:46<3:21:17, 1.23it/s] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2345\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 14%|█▍ | 2401/17152 [34:29<3:13:17, 1.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2401\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 16%|█▌ | 2690/17152 [38:44<3:10:43, 1.26it/s] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2690\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 21%|██ | 3562/17152 [51:16<2:55:25, 1.29it/s] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3562\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 26%|██▌ | 4428/17152 [1:04:09<2:50:18, 1.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4428\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 28%|██▊ | 4826/17152 [1:10:27<2:45:19, 1.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4826\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 35%|███▍ | 5961/17152 [1:27:19<2:34:35, 1.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5961\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 35%|███▍ | 5970/17152 [1:27:27<2:58:42, 1.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5970\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 38%|███▊ | 6473/17152 [1:34:54<2:23:50, 1.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6473\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 42%|████▏ | 7244/17152 [1:45:49<2:14:06, 1.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7244\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 45%|████▌ | 7759/17152 [1:53:12<2:03:11, 1.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7759\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 49%|████▊ | 8355/17152 [2:01:28<1:54:15, 1.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8355\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 52%|█████▏ | 8961/17152 [2:10:15<1:50:09, 1.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8961\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 53%|█████▎ | 9049/17152 [2:11:38<2:27:13, 1.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9049\n", + "9050\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 53%|█████▎ | 9057/17152 [2:11:43<1:45:05, 1.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9057\n", + "9058\n", + "9059\n", + "9060\n", + "9061\n", + "9062\n", + "9063\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 54%|█████▎ | 9204/17152 [2:14:02<4:31:58, 2.05s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9204\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 54%|█████▍ | 9224/17152 [2:14:18<1:48:00, 1.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9224\n", + "9225\n", + "9226\n", + "9227\n", + "9228\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 54%|█████▍ | 9339/17152 [2:15:56<1:49:53, 1.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9339\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 57%|█████▋ | 9824/17152 [2:23:18<1:39:53, 1.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9824\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 67%|██████▋ | 11531/17152 [2:49:25<1:15:56, 1.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11531\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 72%|███████▏ | 12324/17152 [3:00:22<2:39:36, 1.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12324\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 72%|███████▏ | 12367/17152 [3:00:59<1:02:18, 1.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12367\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 73%|███████▎ | 12449/17152 [3:02:04<1:03:36, 1.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12449\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 75%|███████▍ | 12799/17152 [3:06:46<55:22, 1.31it/s] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12799\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 84%|████████▎ | 14343/17152 [3:28:57<38:40, 1.21it/s] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14343\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 84%|████████▍ | 14485/17152 [3:31:03<37:41, 1.18it/s] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14485\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 88%|████████▊ | 15045/17152 [3:39:41<28:46, 1.22it/s] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15045\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 93%|█████████▎| 15938/17152 [3:53:50<1:13:31, 3.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15938\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 94%|█████████▎| 16049/17152 [3:55:42<15:58, 1.15it/s] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16049\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 96%|█████████▌| 16469/17152 [4:03:16<11:16, 1.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16469\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 96%|█████████▋| 16527/17152 [4:04:04<08:34, 1.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "16527\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 99%|█████████▉| 17040/17152 [4:11:49<01:46, 1.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17040\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|█████████▉| 17126/17152 [4:13:22<00:42, 1.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17126\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|██████████| 17152/17152 [4:13:47<00:00, 1.13it/s]\n" + ] + } + ], + "source": [ + "############# ESTE ES PARA TRANSCRIPCIONES ###############\n", + "\n", + "from pyWikiCommons import pyWikiCommons\n", + "import requests\n", + "import os\n", + "from google.cloud import storage\n", + "from datetime import timedelta\n", + "import os\n", + "from tqdm import tqdm\n", + "\n", + "\n", + "# Esto solo sirve para .webm\n", + "def change_format(file_name):\n", + " import subprocess\n", + " changed_filename = os.rename(file_name, \"temp.webm\")\n", + " subprocess.run(f'ffmpeg -i \"temp.webm\" {file_name}.mp3',shell=True)\n", + " \n", + "def download_file(url,file_name):\n", + " headers = {'User-Agent': 'CoolBot/0.0 (https://example.org/coolbot/; coolbot@example.org)'}\n", + " with requests.get(url, stream=True, headers=headers) as r:\n", + " r.raise_for_status()\n", + " with open(file_name, 'wb') as f:\n", + " for chunk in r.iter_content(chunk_size=8192): \n", + " f.write(chunk)\n", + " return file_name\n", + "\n", + "def split_with_last_dot(string):\n", + " for character in range(len(string)-1,0,-1):\n", + " if string[character]==\".\":\n", + " left = string[:character]\n", + " right = string[character+1:]\n", + " return [left,right]\n", + "\n", + "def upload_file_gcp(file_name, file_type): \n", + " # Initiate names\n", + " project_id = 'the-peoples-speech' # Your Project ID\n", + " bucket_name = 'wikimedia_commons' # Name of bucket\n", + " bucket_file = f'{file_type}/{file_name}' # Location of the file on Bucket\n", + " local_file = f'{file_name}' # Location of downloaded file on your PC\n", + "\n", + " # Set Credential\n", + " os.environ[\"GOOGLE_APPLICATION_CREDENTIALS\"] = \"the-peoples-speech-ee8163e65ace.json\"\n", + " client = storage.Client(project_id)\n", + " bucket = client.get_bucket(bucket_name)\n", + " blob = bucket.blob(bucket_file)\n", + " blob.upload_from_filename(local_file)\n", + " signed_url = blob.generate_signed_url(\n", + " version=\"v4\",\n", + " expiration=timedelta(seconds=60),\n", + " method=\"GET\")\n", + " \n", + "\n", + " \n", + "counter = 0\n", + "database = {}\n", + "for i in tqdm(range(len(previous_json))):\n", + " link = previous_json[i][\"page\"][\"title\"]\n", + " dots = 0\n", + " try:\n", + " if len(link.split(\".\"))>2:\n", + " left,_ = split_with_last_dot(link)\n", + " true_link, _ = split_with_last_dot(left)\n", + "\n", + "\n", + " with open(link, 'w') as f:\n", + " f.write(previous_json[i][\"text\"])\n", + " upload_file_gcp(link, \"transcription\")\n", + " os.remove(link) \n", + "\n", + " if true_link in database.keys():\n", + " database[true_link].append(link)\n", + " else:\n", + " database[true_link] = [link]\n", + " try:\n", + " f = open(\"uploaded.txt\", \"a\")\n", + " f.write(f\"{i},{true_link}\\n\")\n", + " f.close()\n", + " except:\n", + " f = open(\"error.txt\", \"a\")\n", + " f.write(f\"{i},{true_link}\\n\")\n", + " f.close()\n", + " else:\n", + " print(i)\n", + " except:\n", + " print(i)\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "0e7248af", + "metadata": {}, + "outputs": [], + "source": [ + "def split_with_last_dot(string):\n", + " for character in range(len(string)-1,0,-1):\n", + " if string[character]==\".\":\n", + " left = string[:character]\n", + " right = string[character+1:]\n", + " return [left,right]\n", + "\n", + "language_count = {}\n", + "for key in database.keys():\n", + " for video in database[key]:\n", + " left,_ = split_with_last_dot(video)\n", + " _,language = split_with_last_dot(left)\n", + " if language not in language_count.keys():\n", + " language_count[language]=1\n", + " else:\n", + " language_count[language]+=1\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "id": "9b83a5f1", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'en': 7337,\n", + " 'de': 989,\n", + " 'es': 884,\n", + " 'ru': 691,\n", + " 'fr': 581,\n", + " 'ar': 432,\n", + " 'nl': 410,\n", + " 'it': 300,\n", + " 'pt': 294,\n", + " 'pt-br': 227,\n", + " 'pl': 214,\n", + " 'ko': 207,\n", + " 'vi': 203,\n", + " 'ja': 197,\n", + " 'zh': 172,\n", + " 'uk': 164,\n", + " 'id': 158,\n", + " 'sv': 157,\n", + " 'zh-hant': 146,\n", + " 'nb': 146,\n", + " 'tr': 140,\n", + " 'zh-hans': 122,\n", + " 'eo': 109,\n", + " 'hu': 95,\n", + " 'cs': 93,\n", + " 'th': 92,\n", + " 'la': 81,\n", + " 'zh-cn': 74,\n", + " 'el': 74,\n", + " 'bn': 70,\n", + " 'ca': 66,\n", + " 'ro': 64,\n", + " 'he': 62,\n", + " 'eu': 61,\n", + " 'ms': 59,\n", + " 'fa': 56,\n", + " 'fi': 54,\n", + " 'en-gb': 53,\n", + " 'hi': 51,\n", + " 'zh-tw': 51,\n", + " 'bg': 49,\n", + " 'mk': 48,\n", + " 'da': 45,\n", + " 'or': 45,\n", + " 'hr': 44,\n", + " 'tl': 42,\n", + " 'sr': 40,\n", + " 'sl': 33,\n", + " 'is': 28,\n", + " 'cy': 27,\n", + " 'be': 26,\n", + " 'az': 25,\n", + " 'sk': 24,\n", + " 'gl': 23,\n", + " 'my': 23,\n", + " 'en-ca': 22,\n", + " 'et': 20,\n", + " 'bs': 20,\n", + " 'af': 19,\n", + " 'ta': 18,\n", + " 'ml': 18,\n", + " 'sr-ec': 18,\n", + " 'zh-hk': 17,\n", + " 'te': 16,\n", + " 'sr-el': 16,\n", + " 'rm': 16,\n", + " 'sh': 15,\n", + " 'sq': 15,\n", + " 'no': 14,\n", + " 'ka': 14,\n", + " 'ga': 14,\n", + " 'ms-arab': 14,\n", + " 'pa': 13,\n", + " 'zh-sg': 13,\n", + " 'de-ch': 13,\n", + " 'sc': 12,\n", + " 'ceb': 12,\n", + " 'mnw': 11,\n", + " 'lv': 10,\n", + " 'lt': 10,\n", + " 'de-formal': 10,\n", + " 'yue': 9,\n", + " 'sw': 9,\n", + " 'kk': 9,\n", + " 'be-tarask': 9,\n", + " 'de-at': 9,\n", + " 'hy': 9,\n", + " 'grc': 9,\n", + " 'en-us': 9,\n", + " 'br': 8,\n", + " 'fy': 8,\n", + " 'war': 8,\n", + " 'mt': 8,\n", + " 'zh-my': 8,\n", + " 'mr': 8,\n", + " 'nds': 7,\n", + " 'undefined': 7,\n", + " 'ckb': 7,\n", + " 'zh-classical': 7,\n", + " 'mi': 7,\n", + " 'gu': 7,\n", + " 'yi': 7,\n", + " 'ch': 7,\n", + " 'ur': 7,\n", + " 'io': 6,\n", + " 'ky': 6,\n", + " 'kn': 6,\n", + " 'mwl': 6,\n", + " 'ab': 6,\n", + " 'gd': 6,\n", + " 'sa': 6,\n", + " 'yo': 6,\n", + " 'ksh': 6,\n", + " 'nap': 6,\n", + " 'cdo': 6,\n", + " 'nn': 5,\n", + " 'ks': 5,\n", + " 'lb': 5,\n", + " 'tt': 5,\n", + " 'sah': 5,\n", + " 'lo': 5,\n", + " 'km': 5,\n", + " 'ne': 5,\n", + " 'uz': 5,\n", + " 'xh': 5,\n", + " 'qu': 5,\n", + " 'ln': 5,\n", + " 'gn': 4,\n", + " 'mg': 4,\n", + " 'av': 4,\n", + " 'sat': 4,\n", + " 'kk-kz': 4,\n", + " 'si': 4,\n", + " 'as': 4,\n", + " 'ike-cans': 4,\n", + " 'am': 4,\n", + " 'st': 4,\n", + " 'tn': 4,\n", + " 'be-x-old': 4,\n", + " 'mo': 4,\n", + " 'so': 4,\n", + " 'ast': 4,\n", + " 'ti': 4,\n", + " 'bar': 4,\n", + " 'nl-be': 4,\n", + " 'jbo': 3,\n", + " 'zgh': 3,\n", + " 'zh-mo': 3,\n", + " 'pms': 3,\n", + " 'arz': 3,\n", + " 'ce': 3,\n", + " 'to': 3,\n", + " 'bcl': 3,\n", + " 'haw': 3,\n", + " 'jv': 3,\n", + " 'mn': 3,\n", + " 'ike-latn': 3,\n", + " 'tok': 3,\n", + " 'fil': 3,\n", + " 'aeb-arab': 3,\n", + " 'csb': 3,\n", + " 'ku': 3,\n", + " 'tg': 3,\n", + " 'ang': 3,\n", + " 'om': 3,\n", + " 'oc': 3,\n", + " 'gsw': 3,\n", + " 'ny': 3,\n", + " 'ts': 3,\n", + " 'vep': 3,\n", + " 'es-419': 3,\n", + " 'sco': 3,\n", + " 'kg': 3,\n", + " 'ss': 3,\n", + " 'sm': 3,\n", + " 'vo': 2,\n", + " 'LANG': 2,\n", + " 'tzm': 2,\n", + " 'shi': 2,\n", + " 'vec': 2,\n", + " 'blk': 2,\n", + " 'lmo': 2,\n", + " 'ady': 2,\n", + " 'ay': 2,\n", + " 'ba': 2,\n", + " 'iw': 2,\n", + " 'frc': 2,\n", + " 'zu': 2,\n", + " 'eml': 2,\n", + " 'ilo': 2,\n", + " 'pag': 2,\n", + " 'hil': 2,\n", + " 'pam': 2,\n", + " 'kk-latn': 2,\n", + " 'azb': 2,\n", + " 'gag': 2,\n", + " 'aa': 2,\n", + " 'cnr': 2,\n", + " 'simple': 2,\n", + " 'pcd': 2,\n", + " 'pnb': 2,\n", + " 'fo': 2,\n", + " 'dv': 2,\n", + " 'wuu': 2,\n", + " 'vt': 2,\n", + " 'sd': 2,\n", + " 'nd': 2,\n", + " 've': 2,\n", + " 'sg': 2,\n", + " 'ko-kp': 2,\n", + " 'pap': 2,\n", + " 'tet': 2,\n", + " 'wo': 2,\n", + " 'tk': 2,\n", + " 'krl': 2,\n", + " 'kr': 2,\n", + " 'tpi': 2,\n", + " 'pau': 2,\n", + " 'hu-formal': 2,\n", + " 'fon': 2,\n", + " 'su': 2,\n", + " 'tw': 2,\n", + " 'tyv': 2,\n", + " 'ha': 2,\n", + " 'lad': 2,\n", + " 'ace': 2,\n", + " 'fj': 2,\n", + " 'ff': 2,\n", + " 'ig': 2,\n", + " 'srn': 2,\n", + " 'fr-fr': 2,\n", + " 'myv': 2,\n", + " 'eS': 2,\n", + " 'tzl': 1,\n", + " 'avk': 1,\n", + " 'MK': 1,\n", + " 'cz': 1,\n", + " 'ISO 639': 1,\n", + " 'ncpa': 1,\n", + " 'ia': 1,\n", + " 'latin': 1,\n", + " 'ea': 1,\n", + " 'ita': 1,\n", + " 'ger': 1,\n", + " 'hn': 1,\n", + " 'nan': 1,\n", + " 'zh-min-nan': 1,\n", + " 'pt-BR': 1,\n", + " 'es-ES': 1,\n", + " 'wbp': 1,\n", + " 'nys': 1,\n", + " 'rue': 1,\n", + " 'ru-latn': 1,\n", + " 'id-ar': 1,\n", + " 'Hanyu Pinyin': 1,\n", + " 'pinyin': 1,\n", + " 'pny': 1,\n", + " 'gan-hant': 1,\n", + " 'dnle': 1,\n", + " 'cop': 1,\n", + " 'gom-latn': 1,\n", + " 'ahr': 1,\n", + " 'kab': 1,\n", + " 'mni': 1,\n", + " 'mos': 1,\n", + " 'abs': 1,\n", + " 'aln': 1,\n", + " 'uz-cyrl': 1,\n", + " 'bbc-latn': 1,\n", + " 'cps': 1,\n", + " 'tg-latn': 1,\n", + " 'lzh': 1,\n", + " 'hans': 1,\n", + " 'voice recording': 1,\n", + " 'vit': 1,\n", + " 'nl-informal': 1,\n", + " 'sn': 1,\n", + " 'nah': 1,\n", + " 'sr-eL': 1,\n", + " 'bem': 1,\n", + " 'ps': 1,\n", + " 'gan-hans': 1,\n", + " 'olo': 1,\n", + " 'kk-cn': 1,\n", + " 'kk-tr': 1,\n", + " 'zh-yue': 1,\n", + " 'cal': 1,\n", + " 'mhn': 1,\n", + " 'rif': 1,\n", + " 'ase': 1,\n", + " 'tcy': 1,\n", + " 'inh': 1,\n", + " 'tt-latn': 1,\n", + " 'bxr': 1,\n", + " 'ary': 1,\n", + " 'swb': 1,\n", + " 'ee': 1,\n", + " 'ota': 1,\n", + " 'ie': 1,\n", + " 'nds-nl': 1,\n", + " 'nv': 1,\n", + " 'scn': 1,\n", + " 'ext': 1,\n", + " 'als': 1,\n", + " 'an': 1,\n", + " 'arn': 1,\n", + " 'arp': 1,\n", + " 'bm': 1,\n", + " 'bik': 1,\n", + " 'cho': 1,\n", + " 'chn': 1,\n", + " 'cic': 1,\n", + " 'oj': 1,\n", + " 'clc': 1,\n", + " 'din': 1,\n", + " 'dsb': 1,\n", + " 'dua': 1,\n", + " 'egl': 1,\n", + " 'enm': 1,\n", + " 'fan': 1,\n", + " 'fit': 1,\n", + " 'frp': 1,\n", + " 'frr': 1,\n", + " 'fur': 1,\n", + " 'gil': 1,\n", + " 'gv': 1,\n", + " 'ht': 1,\n", + " 'hz': 1,\n", + " 'ho': 1,\n", + " 'hmn': 1,\n", + " 'ik': 1,\n", + " 'izh': 1,\n", + " 'jam': 1,\n", + " 'jut': 1,\n", + " 'kaj': 1,\n", + " 'kl': 1,\n", + " 'kea': 1,\n", + " 'kha': 1,\n", + " 'ki': 1,\n", + " 'rw': 1,\n", + " 'kos': 1,\n", + " 'kj': 1,\n", + " 'mad': 1,\n", + " 'lij': 1,\n", + " 'li': 1,\n", + " 'lg': 1,\n", + " 'luo': 1,\n", + " 'min': 1,\n", + " 'naq': 1,\n", + " 'na': 1,\n", + " 'nr': 1,\n", + " 'ndo': 1,\n", + " 'niu': 1,\n", + " 'non': 1,\n", + " 'nov': 1,\n", + " 'pdc': 1,\n", + " 'pdt': 1,\n", + " 'pfl': 1,\n", + " 'pih': 1,\n", + " 'rap': 1,\n", + " 'rar': 1,\n", + " 'rgn': 1,\n", + " 'rmo': 1,\n", + " 'rn': 1,\n", + " 'rup': 1,\n", + " 'ruq': 1,\n", + " 'sdc': 1,\n", + " 'sei': 1,\n", + " 'shy': 1,\n", + " 'sid': 1,\n", + " 'smn': 1,\n", + " 'snk': 1,\n", + " 'szl': 1,\n", + " 'ty': 1,\n", + " 'tli': 1,\n", + " 'tog': 1,\n", + " 'tum': 1,\n", + " 'vls': 1,\n", + " 'vro': 1,\n", + " 'wa': 1,\n", + " 'zza': 1,\n", + " 'zap': 1,\n", + " 'kw': 1,\n", + " 'es-es': 1,\n", + " 'pt-pt': 1,\n", + " 'mhr': 1,\n", + " 'co': 1,\n", + " 'dag': 1,\n", + " 'va': 1,\n", + " 'po': 1,\n", + " 'se-se': 1,\n", + " 'nrm': 1,\n", + " 'kv': 1,\n", + " 'dty': 1,\n", + " 'hak': 1,\n", + " 'bi': 1,\n", + " 'ogv': 1,\n", + " 'kcg': 1,\n", + " 'hif': 1,\n", + " 'hif-latn': 1,\n", + " 'ogg': 1,\n", + " 'webm': 1,\n", + " 'kk-cyrl': 1,\n", + " 'ks-arab': 1,\n", + " 'gan': 1,\n", + " 'tvl': 1}" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "{k: v for k, v in sorted(language_count.items(), key=lambda item: item[1],reverse=True)}" + ] + }, + { + "cell_type": "code", + "execution_count": 65, + "id": "2a84bfb3", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'id': 606357577, 'timestamp': '2021-11-09T10:09:54Z', 'user': {'id': 189884, 'text': 'Pacha Tchernof'}, 'page': {'id': 8752610, 'title': 'Elephants Dream.ogv.ru.srt', 'namespace': 102, 'restrictions': []}, 'minor': True, 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.ru.srt]] to [[TimedText:Elephants Dream.ogv.ru.srt]]: rename of the original file', 'text': '1\\n00:00:14,958 --> 00:00:17,833\\nСлева мы видим...\\n\\n2\\n00:00:18,458 --> 00:00:20,208\\nсправа мы видим...\\n\\n3\\n00:00:20,333 --> 00:00:21,875\\n...голово-клацов.\\n\\n4\\n00:00:22,000 --> 00:00:24,583\\nвсё в порядке.\\nв полном порядке.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nИмо?\\n\\n6\\n00:00:28,833 --> 00:00:30,250\\nОсторожно!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nТы не ранен?\\n\\n8\\n00:00:51,875 --> 00:00:53,875\\nВроде нет...\\nа ты?\\n\\n9\\n00:00:55,583 --> 00:00:57,125\\nЯ в порядке.\\n\\n10\\n00:00:57,542 --> 00:01:01,625\\nВставай.\\nИмо, здесь не безопасно.\\n\\n11\\n00:01:02,208 --> 00:01:03,625\\nПойдём.\\n\\n12\\n00:01:03,708 --> 00:01:05,708\\nЧто дальше?\\n\\n13\\n00:01:05,833 --> 00:01:07,833\\nТы увидишь!\\n\\n14\\n00:01:08,000 --> 00:01:08,833\\nТы увидишь...\\n\\n15\\n00:01:16,167 --> 00:01:18,375\\nИмо, сюда.\\n\\n16\\n00:01:34,917 --> 00:01:35,750\\nЗа мной!\\n\\n17\\n00:02:11,542 --> 00:02:12,750\\nИмо, быстрее!\\n\\n18\\n00:02:48,375 --> 00:02:50,083\\nТы не обращаешь внимания!\\n\\n19\\n00:02:50,708 --> 00:02:54,500\\nЯ только хотел ответить на ...\\n...звонок.\\n\\n20\\n00:02:55,000 --> 00:02:58,208\\nИмо, смотри,\\nто есть слушай...\\n\\n21\\n00:02:59,708 --> 00:03:02,292\\nТы должен учиться слушать.\\n\\n22\\n00:03:03,250 --> 00:03:05,333\\nЭто не какая-нибудь игра.\\n\\n23\\n00:03:06,000 --> 00:03:08,833\\nТы, вернее мы, легко можем погибнуть здесь.\\n\\n24\\n00:03:10,000 --> 00:03:11,167\\nСлушай...\\n\\n25\\n00:03:11,667 --> 00:03:14,125\\nслушай звуки машины.\\n\\n26\\n00:03:18,333 --> 00:03:20,417\\nСлушай своё дыхание.\\n\\n27\\n00:04:27,208 --> 00:04:29,250\\nИ не надоест тебе это?\\n\\n28\\n00:04:29,542 --> 00:04:31,083\\nНадоест?!?\\n\\n29\\n00:04:31,708 --> 00:04:34,625\\nИмо! Машина -\\nона как часовой механизм.\\n\\n30\\n00:04:35,500 --> 00:04:37,667\\nОдно движение не туда...\\n\\n31\\n00:04:37,792 --> 00:04:39,750\\n...и тебя размелют в месиво!\\n\\n32\\n00:04:41,042 --> 00:04:42,375\\nА разве это не -\\n\\n33\\n00:04:42,417 --> 00:04:46,500\\nМесиво, Имо!\\nты этого хочешь? месиво?\\n\\n34\\n00:04:48,083 --> 00:04:50,000\\nИмо, твоя цель в жизни?\\n\\n35\\n00:04:50,542 --> 00:04:52,250\\nМесиво!\\n\\n36\\n00:05:41,792 --> 00:05:43,458\\nИмо, закрой глаза.\\n\\n37\\n00:05:44,875 --> 00:05:46,542\\nЗачем?\\n- Ну же!\\n\\n38\\n00:05:51,500 --> 00:05:52,333\\nЛадно.\\n\\n39\\n00:05:53,708 --> 00:05:56,042\\nХорошо.\\n\\n40\\n00:05:59,500 --> 00:06:02,750\\nЧто ты видишь слева от себя, Имо?\\n\\n41\\n00:06:04,417 --> 00:06:06,000\\nНичего.\\n- Точно?\\n\\n42\\n00:06:06,333 --> 00:06:07,875\\nда, совсем ничего.\\n\\n43\\n00:06:08,042 --> 00:06:12,708\\nА справа от себя,\\nчто ты видишь справа от себя, Имо?\\n\\n44\\n00:06:13,833 --> 00:06:16,875\\nДа то же Пруг, в точности то же...\\n\\n45\\n00:06:17,042 --> 00:06:18,500\\nНичего!\\n\\n46\\n00:06:18,667 --> 00:06:19,500\\nПрекрасно...\\n\\n47\\n00:06:40,583 --> 00:06:42,917\\nПрислушайся, Пруг! Ты слышишь это?\\n\\n48\\n00:06:43,583 --> 00:06:45,042\\nМожет, мы пойдём туда?\\n\\n49\\n00:06:45,208 --> 00:06:48,042\\nТуда?\\nЭто не безопасно, Имо.\\n\\n50\\n00:06:49,875 --> 00:06:52,500\\nНо...\\n- Поверь мне, это так.\\n\\n51\\n00:06:53,292 --> 00:06:54,750\\nМожет я бы ...\\n\\n52\\n00:06:54,792 --> 00:06:56,333\\nНет.\\n\\n53\\n00:06:57,625 --> 00:06:59,583\\n- Но...\\n- НЕТ!\\n\\n54\\n00:06:59,708 --> 00:07:00,833\\nНет!\\n\\n55\\n00:07:00,833 --> 00:07:03,708\\nЕщё вопросы, Имо?\\n\\n56\\n00:07:04,250 --> 00:07:05,875\\nНет.\\n\\n57\\n00:07:09,458 --> 00:07:10,792\\nИмо?\\n\\n58\\n00:07:11,833 --> 00:07:13,500\\nИмо, почему...\\n\\n59\\n00:07:13,542 --> 00:07:14,458\\nИмо...\\n\\n60\\n00:07:14,500 --> 00:07:18,500\\n...почему? почему ты не видишь\\nкрасоты этого места?\\n\\n61\\n00:07:18,792 --> 00:07:20,708\\nТо как оно работает.\\n\\n62\\n00:07:20,833 --> 00:07:24,000\\nКак совершенно оно.\\n\\n63\\n00:07:24,083 --> 00:07:27,417\\nНет, Пруг, я не вижу.\\n\\n64\\n00:07:27,500 --> 00:07:30,333\\nЯ не вижу, потому что здесь ничего нет.\\n\\n65\\n00:07:31,375 --> 00:07:35,333\\nИ почему я должен доверять свою жизнь\\nчему-то, чего здесь нет?\\n\\n66\\n00:07:35,542 --> 00:07:37,125\\nэто ты мне можешь сказать?\\n\\n67\\n00:07:37,500 --> 00:07:39,167\\nОтветь мне!\\n\\n68\\n00:07:43,208 --> 00:07:44,542\\nПруг...\\n\\n69\\n00:07:45,500 --> 00:07:47,333\\nТы просто больной!\\n\\n70\\n00:07:47,375 --> 00:07:48,500\\nОтстань от меня.\\n\\n71\\n00:07:48,625 --> 00:07:49,917\\nИмо...\\n\\n72\\n00:07:52,542 --> 00:07:55,083\\nНет! Имо! Это ловушка!\\n\\n73\\n00:07:55,792 --> 00:07:57,167\\nЭто ловушка!\\n\\n74\\n00:07:57,208 --> 00:08:01,708\\nСлева от себя вы можете увидеть\\nВисящие сады Семирамиды!\\n\\n75\\n00:08:02,250 --> 00:08:04,292\\nСойдёт за ловушку?\\n\\n76\\n00:08:05,458 --> 00:08:07,125\\nНет, Имо.\\n\\n77\\n00:08:09,417 --> 00:08:12,750\\nСправа от себя вы можете увидеть...\\n...угадай кого...\\n\\n78\\n00:08:13,000 --> 00:08:14,708\\n...Колосса Родосского!\\n\\n79\\n00:08:15,500 --> 00:08:16,625\\nНет!\\n\\n80\\n00:08:16,667 --> 00:08:21,125\\nКолосс Родосский!\\nИ он здесь специально для тебя, Пруг.\\n\\n81\\n00:08:21,167 --> 00:08:22,208\\nСпециально для тебя...\\n\\n82\\n00:08:51,333 --> 00:08:53,167\\nОна здесь есть!\\n\\n83\\n00:08:53,208 --> 00:08:55,500\\nГоворю тебе,\\nИмо...\\n\\n84\\n00:08:57,333 --> 00:09:00,000\\n...она есть... есть...', 'bytes': 5951, 'sha1': 'tt1pf9p2zlc2ccu76v3kcqiwcosvxuk', 'parent_id': 45478392, 'model': 'wikitext', 'format': 'text/x-wiki', 'deleted': {'text': False, 'comment': False, 'user': False}}\n" + ] + } + ], + "source": [ + "save = True\n", + "def split_with_last_dot(string):\n", + " for character in range(len(string)-1,0,-1):\n", + " if string[character]==\".\":\n", + " left = string[:character]\n", + " right = string[character+1:]\n", + " return [left,right]\n", + "\n", + "def upload_file_gcp(file_name, file_type): \n", + " # Initiate names\n", + " project_id = 'the-peoples-speech' # Your Project ID\n", + " bucket_name = 'wikimedia_commons' # Name of bucket\n", + " bucket_file = f'{file_type}/{file_name}' # Location of the file on Bucket\n", + " local_file = f'{file_name}' # Location of downloaded file on your PC\n", + "\n", + " # Set Credential\n", + " os.environ[\"GOOGLE_APPLICATION_CREDENTIALS\"] = \"the-peoples-speech-ee8163e65ace.json\"\n", + " client = storage.Client(project_id)\n", + " bucket = client.get_bucket(bucket_name)\n", + " blob = bucket.blob(bucket_file)\n", + " blob.upload_from_filename(local_file)\n", + " signed_url = blob.generate_signed_url(\n", + " version=\"v4\",\n", + " expiration=timedelta(seconds=60),\n", + " method=\"GET\")\n", + " \n", + "for i in previous_json:\n", + " title = i[\"page\"][\"title\"]\n", + " title_temp , _ = split_with_last_dot(title)\n", + " _ , ext = split_with_last_dot(title_temp)\n", + " if ext == \"ru\":\n", + " print(i)\n", + " if save == True:\n", + " with open(\"ensayos/\"+title, 'w') as f:\n", + " f.write(i[\"text\"])\n", + " break" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "id": "7066cabc", + "metadata": {}, + "outputs": [], + "source": [ + "upload_file_gcp(\"ensayos/Elephants Dream.ogv.ru.srt\", \"ensayo\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "070d9237", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 44, + "id": "601f52bf", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Yochai Benkler - On Autonomy, Control and Cultural Experience.ogg', 'en']" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "split_with_last_dot(split_with_last_dot(previous_json[0][\"page\"][\"title\"])[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "66886277", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aaron Halfaker\n", + "Movement Strategy Global Conversations\n", + "PWR nuclear power plant animation\n", + "Star Spangled Banner instrumental\n" + ] + } + ], + "source": [ + "def split_with_last_dot(string):\n", + " for character in range(len(string)-1,0,-1):\n", + " if string[character]==\".\":\n", + " left = string[:character]\n", + " right = string[character+1:]\n", + " return [left,right]\n", + "\n", + "language_count = {}\n", + "for key in database.keys():\n", + " try:\n", + " _,language = split_with_last_dot(key)\n", + " if language not in language_count.keys():\n", + " language_count[language]=1\n", + " else:\n", + " language_count[language]+=1\n", + " except:\n", + " print(key)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a855120a", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "d2466c3e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'webm': 6578,\n", + " 'ogg': 1382,\n", + " 'ogv': 889,\n", + " 'oga': 321,\n", + " 'wav': 219,\n", + " 'flac': 67,\n", + " 'mp3': 59,\n", + " 'mpg': 27,\n", + " 'opus': 13,\n", + " 'mid': 9,\n", + " 'OGG': 3,\n", + " 'WebM': 2,\n", + " '0)': 1}" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "{k: v for k, v in sorted(language_count.items(), key=lambda item: item[1],reverse=True)}" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "e30382bf", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "9574" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "counter = 0\n", + "for i in database.keys():\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "411b6e41", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "dict_keys(['Yochai Benkler - On Autonomy, Control and Cultural Experience.ogg', 'Elephants Dream.ogv', 'Folgers.ogv', 'Krazy Kat Bugologist 1916 silent.ogv', 'Elephants Dream 1024.avi.to63.5w720vbr1760soft-targetabr112.ogv', 'Elephants Dream 1024.avi.w400vbr180abr48c2two-pass.ogv', 'Mayer and Bettle 2 - Creative Commons.ogv', 'Elephants Dream (high quality).ogv', 'Reticulum Rex with subtitles - Creative Commons.ogv', 'Audacity click track one per second for eight seconds mono88khz32bitfloat.ogg', 'Cal 2flip2click8khzvbr vlc.ogv', 'Elephants Dream.ogg', 'Cal64x48check vdfr1to25len2.avi.q10fr25.ogv', 'Wanna Work Together? with subtitles - Creative Commons.ogv', 'Welcome to globallives 2.0.ogv', 'Eben Moglen - From the birth of printing to industrial culture; the root of copyright.ogv', 'Wikipedia ridotto.ogv', 'Yeager supersonic flight 1947.ogv', 'The Crab Nebula NASA.ogv', 'Tutoriel-wikt.ogv', 'Wikipedia User Name MEDIUM.ogv', 'Nice People MEDIUM.ogv', 'Edit Button.ogv', 'Great Feeling.ogv', 'Sequence-Wikipedia Great Feeling Wikimedia Hungary.ogv', 'Sintel movie 720x306.ogv', 'As8 genesis1a.ogg', 'Wikimedia Italia - WikiGuida 2 - Commons.ogv', 'Miropcf-universal-subs-tutorial-step3.ogv', 'Miropcf-universal-subs-tutorial-step1.ogv', 'Miropcf-universal-subs-tutorial-step2.ogv', 'Miropcf About Universal Subtitles.ogv', 'Boldness and links tutorial.ogv', 'Tutorial on starting a sandbox article on Wikipedia.ogv', '051118-WSIS.2005-Bruce.Perens.ogg', 'Folgers commercial.ogg', 'Videoonwikipedia.ogv', 'Gullivers travels1939.ogg', 'Wikipedia video tutorial-2-Reliability-en.ogv', 'Roscheiderhof-zinnfigur.ogg', 'De.la.rua.ogv', 'Lopez.Murphy.ogv', 'Martinez.de.ogv', 'Frankenstein (1910) - Full Movie.ogv', 'Wikipedia video tutorial-1-Editing-en.ogv', '480p-Publicidade-wikilivros.ogv', 'Chocolate cake.ogg', 'WalesAnniversaryAddress.ogv', 'WalesCalltoAction.ogv', 'Footage of Egyptian protests from Al Jazeera office.ogv', 'The State of Wikipedia by JESS3.ogv', 'Createaccount.ogg', 'Allsång Skansen 1937.ogv', 'Ombrytning Stockholms-Tidningen 1937.ogv', 'Sattning Stockholms-Tidningen 1937.ogv', 'Kliche Stockholms-Tidningen 1937.ogv', 'Tidningstryck 1937.ogv', 'Arne Jarrick avkodningsbart.ogv', 'Carl XVI Gustaf Forstlingen 2006.ogv', 'Recordmydesktop-svenska.ogv', 'CamStudio tutorial.ogv', 'Män och maskiner 1936.ogv', 'Paramountjournalen 1925-09-07.ogv', 'Robert Goddard footage.ogg', 'January 2009 ISS tour.ogg', 'FelixTheCat-1919-FelineFollies silent.ogv', 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv', 'Barack Obama 2011 Tucson memorial speech.ogv', 'President Obama on Death of Osama bin Laden.ogv', 'How to create a Wikipedia article - Right to science and culture.ogv', 'Wiki loves monuments.ogv', 'Citing sources tutorial, part 1.ogv', 'Berlin airlift.ogv', 'US Supports No-Fly Zone Against Libya.ogv', 'Cavallo.ogv', 'People-are-Knowledge.ogv', 'Prof Walter Lewin Elastic Collisions.ogv', 'Polarization Filter with Clouds German.ogg', 'Wikipedia Takes Montreal 2011 (WTMTL).ogv', 'Jarry - Métro de Montréal (1280×720).ogv', 'Znani składają życzenia dla polskiej Wikipedii.ogv', 'Section 1.1 Small Business Introduction (An Introduction To DARPA) (DARPA).ogv', 'Section 1.2 Finding Your DARPA Program Manager (An Introduction To DARPA) (DARPA).ogv', 'Section 2.1 Introduction To Small Business & SBIR STTR (How Small Businesses Work With DARPA) (DARPA).ogv', 'Section 2.2 Preparing A Winning Proposal (How Small Businesses Work With DARPA) (DARPA).ogv', 'Section 2.3 Key Phase 1 & 2 Overview (How Small Businesses Work With DARPA) (DARPA).ogv', 'Section 3.1 From Research To Use (SBIR STTR Transition Overview) (DARPA).ogv', 'Section 3.2 Addressing Transition Pathways & Risks (SBIR STTR Transition Overview) (DARPA).ogv', 'Section 3.3 Transition Planning (SBIR STTR Transition Overview) (DARPA).ogv', 'Section 3.4 Communicating Your Innovation To Others (SBIR STTR Transition Overview) (DARPA).ogv', 'Section 4.1 Key DARPA Resources (Your Next Step To Success) (DARPA).ogv', 'Section 4.2 Start Your DARPA Success Story Today (Your Next Step To Success) (DARPA).ogv', '01 The Formative Years 1958 - 1975 (DARPA history).ogv', '02 - The Cold War Era 1975 - 1989 (DARPA history).ogv', '03 - The Post-Soviet Years 1989 - Present 2008 (DARPA history).ogv', 'Yosemite Nature Notes 9 - Frazil Ice.ogv', 'CSBS Alice Wiegand.ogv', 'CSBS Raúl Gutiérrez.ogv', 'Monmouthpedia video revised.ogv', 'Wikimedia Italia - WikiGuida 4 - Wikiquote.ogv', '¿Qué es Wikipedia?.ogv', 'Share Your Knowledge 1 Why glamwiki.ogv', 'Share Your Knowledge 2 How glamwiki.ogv', 'Education Program, Cairo Pilot, Testimonial.ogv', 'Les ateliers Wikimédia au musée de Cluny - Buzzeum.ogv', 'Createaccount.ogv', 'Zingaretti, Palazzo Chigi.ogg', 'RefTools.ogv', 'Citing sources tutorial, part 2.ogv', 'Talkpages.ogv', \"Dust Models Paint Alien's View of Solar System.ogv\", 'ABC Clarke predicts internet and PC.ogv', '1946-01-31 Radar makes Round Trip To Moon.ogv', '1946-07-11 Hughes Plane Crash.ogv', 'Bombing of Hamburg.ogv', '1958-02-03 First US Satellite Launched.ogv', '1946-02-21 New Airliner.ogv', '1937-05-10 Special Release - Zeppelin Explodes Scores Dead.ogv', 'Wikimedia Foundation 90 second HR Video with Disclaimer 720p.theora.ogv', 'B-2 Spirit.ogv', 'National anthem of Germany - U.S. Army 1st Armored Division Band.ogg', \"La Traviata - Act 1 - Libiamo ne' lieti calici.ogg\", 'DuckandC1951.ogv', 'Ich bin ein Berliner Speech (June 26, 1963) John Fitzgerald Kennedy trimmed.theora.ogv', 'United States Navy Band - National Anthem of Chile.ogg', 'Tear down this wall.ogv', 'Response to the Lewinsky Allegations (January 26, 1998) Bill Clinton.ogv', 'Message to Scientology.ogv', 'Boomer fires at Apogee Stadium.ogv', 'Dies.irae.ogg', 'Hino-Nacional-Brasil-instrumental-mec.ogg', 'ABC ATMs.ogv', 'Christoph Nolte - The Rocky Road - Follow me up to Carlow.ogg', 'Pablo Ortellado - Wikipedia na Universidade.ogv', 'Labrador barking on command.theora.ogv', 'A Portuguesa.ogg', 'United States Navy Band - ¡Oh, gloria inmarcesible!.ogg', 'Franz Schubert - Ellens dritter Gesang.oga', 'The Impact Of Wikipedia.webm', 'Editing basics - Sandboxes.ogv', 'Editing basics - Sandboxes.webm', 'Anthem of Bashkortostan.ogg', 'ML HELP HowToSearch HQ.ogv', 'British Grenadiers.ogg', 'Editing basics - Talk pages.webm', 'The Impact of Wikipedia Poongothai Balasubramanian.webm', 'Oarabile Mudongo V1.webm', 'The Impact of Wikipedia Dumisani Ndubane.webm', '1TR110-1 Kap8.3 Freiton1.ogg', 'Article-Feedback-Video-Tour-07-08.ogv', 'Roosevelt Infamy.ogg', 'The Impact of Wikipedia Peter Coti.webm', 'United States Navy Band - Amhrán na bhFiann.ogg', 'Firefogg screencast.ogv', 'Land der Berge Land am Strome instrumental.ogg', 'United States Navy Band - Himno Nacional Argentino.ogg', 'The Impact of Wikipedia Howard Morland.webm', 'The Impact of Wikipedia Gideon Digby.webm', 'Macarthurjustfadeaway.ogg', 'President Obama Makes a Statement on the Shooting in Newtown.ogv', 'Kimigayo vocal 1930.ogg', 'The Impact of Wikipedia Adrianne Wadewitz.webm', 'The Impact of Wikipedia Erlan Vega.webm', 'The Impact of Wikipedia Gereon Kalkuhl.webm', 'The Impact of Wikipedia Ravan Jaafar Altaie.webm', 'The Impact of Wikipedia - Andrea Zanni.webm', 'The Impact of Wikipedia - Mei Jiun Kwek.webm', 'The Impact of Wikipedia - Jimmy Wales.webm', 'The Impact of Wikipedia - Ganesh Paudel.webm', 'The Impact of Wikipedia - Q Miceli.webm', 'Proteus 3D model.ogv', 'The Impact of Wikipedia - Mike Cline.webm', 'The Impact of Wikipedia - David Shankbone.webm', 'WEB Clip.webm', 'U.S. Army Band - Good King Wenceslaus.ogg', 'The Impact of Wikipedia - Srikeit Tadepalli and Noopur Raval.webm', 'Editing basics - Uploading and adding images.webm', 'Friedrich Wilhelm Nietzsche - Hoch tut euch auf.oga', 'The Impact of Wikipedia - Alejandro Linares García.webm', 'En-uk-hippopotomonstrosesquipedaliophobia.ogg', \"Candidate's song take 2.ogg\", 'Wiki Loves Monuments 2012 Spain.ogv', 'Christmas enlightments rue de la Mésange 2.ogg', 'The Impact of Wikipedia - Benoit Rochon.webm', 'GWBush Oval Office Address 20010911-1-.ogg', 'En-us-hey.ogg', 'Tyrrell-Cosworth 002 (1971).ogg', 'The Impact of Wikipedia - Sami Al-Mubarak and Mina Nagy Takla.webm', \"Six o' clock closing ABC.ogv\", 'Editing basics - watchlists.webm', 'Sv-alphabet.ogg', 'Mike Tulley Interview - October 6 2010.ogv', 'Nowiny 1 tygodnia 2013 roku.oga', 'Assembleia inaugural da Associação Pietro Roveri.ogv', 'General quarters.ogg', 'Italian anthem.ogg', 'Istiklâl Marsi instrumetal.ogg', 'Pekka Haavisto on nuclear power.ogv', 'Fr-wagon.ogg', '2012-06 Dessau Hauptbahnhof←Tempelhofer Straße.ogv', 'Marcha de San Lorenzo.ogg', '2012-06 Dessau Junkerspark←Hauptbahnhof.ogv', '2012-06 Dessau Tempelhofer Straße←Sportplatz Kreuzberge←Hauptbahnhof.ogv', '2012-06 Dessau Hbf→Wörlitz.ogv', '2012-06 Wörlitz→Dessau Hbf.ogv', 'Obama2009HRCSpeechPart1.webm', 'Mud and Sand-silent 0to508.ogv', 'Mud and Sand-508toendnok.ogv', 'Hubble Goes to the eXtreme to Assemble Farthest Ever View of the Universe.ogv', 'Synapsis.theora.ogv', 'Sextortionagent interview.ogg', 'Chinese-Nanjing.ogg', 'United States Navy Band - Het Wilhelmus.ogg', 'GraziaDeledda.ogg', 'Eric Walter - voix.ogg', 'Glyn Moody voice.oga', 'Around the Corner (1937) 24fps selection.webm', \"What's a Love Dart?.webm\", '2012-06 Dessau Hauptbahnhof←Junkerspark.ogv', '2012-06 Dessau Tempelhofer Straße←Am Alten Wasserturm.ogv', 'A las barricadas.ogg', '2012-06 Dessau Hauptbahnhof←Sportplatz Kreuzberge←Peterholzstraße.ogv', 'Madrid - Manifestación antidesahucios - No son suicidios - 130216.webm', 'Auld Lang Syne.ogg', 'Boys beware.ogv', \"Artist's impression of the evolution of a hot high-mass binary star.ogv\", 'Madrid - Manifestación antidesahucios - Botella al contenedor - 130216.webm', 'BoysBewarecolorizedVersion.ogv', 'BoysAware1973.ogv', 'Goodbye, Glaciers.ogv', 'Girls beware.webm', 'StrangeOnesFullRez.ogv', 'Dangerousstranger.ogv', 'GangBoy.ogv', 'La Despedida.ogg', 'Ru-Lenin.ogg', 'La Donna E Mobile Rigoletto.ogg', 'Fermi Observations of Dwarf Galaxies Provide New Insights on Dark Matter.ogv', 'Sneak Preview - Wikipedia VisualEditor.webm', 'TSA- How It Works.ogv', 'En-us-could.ogg', 'Mohamed Atta to ATC-2.ogg', 'Neil Armstrong, small step for man (reversed).ogg', 'Pronunciation of \"Gaithersburg\" (city in Maryland).ogg', 'Star Spangled Banner instrumental.ogg', 'Himno Nacional Mexicano instrumental.ogg', 'Ru-30-буква-Ь.ogg', 'Ru-28-буква-Ъ.ogg', 'The movie ALMA — In Search of our Cosmic Origins.ogv', 'ESOcast 51 All Systems Go for Highest Altitude Supercomputer.ogv', 'Errichtung des Besichtigungsbauwerks.webm', 'Wiki feel stupid v2.ogv', 'The Wikipedia Education Program.webm', 'Me at the zoo.webm', 'Linus pronounces linux (english).oga', 'Mazurek Dabrowskiego.ogg', '2012-04 Halberstadt Friedhof←Hauptbahnhof.ogv', '2012-04 Halberstadt Hauptbahnhof←Sargstedter Weg.ogv', '2012-04 Halberstadt Sargstedter Weg←Herbingstraße←Hauptbahnhof.ogv', '2012-04 Halberstadt Hauptbahnhof←Friedhof.ogv', '2012-04 Halberstadt Johannesbrunnen←Klus←Heinrich-Heine-Platz.ogv', '2012-04 Halberstadt Landratsamt←Spiegelstraße.ogv', '2012-04 Halberstadt Bahnübergang Straßenbahn % Eisenbahn in der Westerhäuser Straße.ogv', '2012-04 Halberstadt Bahnübergang Straßenbahn % Eisenbahn in der Klusstraße.ogv', 'Verlegung Stolperstein Historisches Rathaus Köln.WebM', 'Pie In The Sky.ogg', 'M h set terminates cityrail.ogg', 'Hino Nacional Brasileiro Coral BDMG.ogg', 'Açaí.ogg', 'God Defend New Zealand instrumental.ogg', 'Apollo13problem.ogg', 'Pronunciation of the swedish word lagom.ogg', 'Ukaz!.webm', 'WWII submarine dive klaxon.ogg', 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash.ogv', 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash crop.ogv', 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash (Polish language).ogv', 'En-Hamlet.ogg', 'MevEnglishscrolltext.ogv', 'Dmitry Medvedev and Vladimir Putin - 2010 Polish Air Force Tu-154 crash.ogv', 'Russian Anthem chorus.ogg', 'United States Navy Band - La Bayamesa.ogg', 'Na vrhu brda, Pelišac.915.ogv', 'Pt-Portugues.ogg', 'Песня Хорста Весселя.ogg', 'National Anthem of the Republic of China.ogg', 'En-us-dies.ogg', 'AC Cobra (1964).ogg', 'En-us-bamboo.ogg', 'En-us-thus.ogg', 'Wien1.ogg', 'Jana Gana Mana instrumental.ogg', 'Deutschlandlied-novocals.ogg', 'NorthAmericanBusySignal.ogg', 'Pl-stront.ogg', 'Марш энтузиастов.ogg', 'Unterstützen Sie Wikipedia.ogv', 'Door toename automatisering in krantenbedrijf verdwijnt het oude zettersvak Weeknummer, 77-14 - Open Beelden - 13160.ogv', 'HaydnGottErhalteFranzDenKaiserQuartetVersionPianoReduction.ogg', 'Dial up modem noises.ogg', 'Pripyat 1986.ogg', 'President Obama speaks on explosions in Boston (2013-04-15).ogv', 'Panorame Pelišca.09-13.2.ogv', 'What is Bitcoin?.webm', 'Br-AcademiaBrasileiraDeLetras.ogg', 'Arirang.ogg', 'En-us-blue.ogg', 'SOS morse code.ogg', 'United States Navy Band - God Save the King.oga', 'U.S. Navy Band, Advance Australia Fair (instrumental).ogg', 'Kimi ga Yo instrumental.ogg', 'United States Navy Band - Nokoreach.ogg', 'O Canada.ogg', 'GLAM Wiki US 2013 Boot Camp - David Ferriero.webm', 'Pink noise.ogg', 'Thank You from the Children of OLPC.ogg', \"Hymne National de Côte d'Ivoire.ogg\", 'Jabberwocky-UK.ogg', 'Ru-кошка.ogg', 'Bibiana spiega quello che facciamo-YouTube.webm', 'A through Z in Morse code.ogg', 'Kamasutra.ogg', \"Billy Murray - You're a Grand Old Flag.ogg\", 'Thai National Anthem - US Navy Band.ogg', 'Thai Royal Anthem - US Navy Band.ogg', 'La Marseillaise.ogg', 'What are the factors that generate poverty?-- TVP.webm', 'Castle Entrance Piano 01.ogg', 'Expedition 35 Welcome Ceremony.ogv', 'Qc-peut-être.ogg', 'Qc-fête.oga', 'FRQC-tête.ogg', 'Soviet Anthem Instrumental 1955.ogg', 'ReaganBeginsBombingRussia.ogg', 'FR-Tard (Gaspésie).ogg', 'Fr-W-fr-Paris.ogg', 'National Anthem of Russia (2000), instrumental, one verse.ogg', '2012-06 Brandenburg an der Havel~Hohenstücken Betriebshof←Anton-Saefkow-Allee.ogv', 'Brandenburg an der Havel~Anton-Saefkow-Allee←Hauptbahnhof←Magdeburger Straße % Oberlandesgericht.ogv', \"Qc-p't-être.ogg\", '2012-06 Brandenburg an der Havel~Magdeburger Straße % Oberlandesgericht←Hauptbahnhof←Hohenstücken Nord.ogv', '2012-06 Brandenburg an der Havel~Hohenstücken Nord←Nicolaiplatz.ogv', '2012-06 Brandenburg an der Havel~Magdeburger Straße % Oberlandesgericht←Rotdornweg.ogv', '2012-06 Brandenburg an der Havel~Geranienweg←Hohenstücken Betriebshof.ogv', '2012-06 Brandenburg an der Havel~Ritterstraße Museum←Hauptbahnhof←Quenzbrücke←Hauptstraße.ogv', \"Amandine Bourgeois - L'enfer et moi presentation (Français).ogv\", 'Loreen presenting herself in Swedish.ogv', 'Leipzig.ogg', 'Eyþór Ingi - Ég á líf presentation (Íslenska).ogv', 'Robin Stjernberg - You presentation (svenska).ogv', 'El Sueño de Morfeo - Contigo hasta el final presentation (Español).ogv', 'Qc-caisse.ogg', 'Page-Curation-Video.ogv', 'Salve, Oh Patria.oga', 'The National Anthem of the Republic of Korea.ogg', 'The Brabanconne.ogg', '\"One Day in Berlin\" - Visit of John F. Kennedy, president of the United States in Berlin, 1963.webm', 'National Flag Anthem of the Republic of China piano version.oga', 'Sarva shiksha abhiyan, kasturba gandhi balika vidyalaya.webm', 'Ryan Dolan - Only Love Survives presentation.ogv', \"Marco Mengoni - L'essenziale presentation (Italiano).ogv\", 'Stefan Caplan.ogv', \"Cezar - It's My Life presentation (Română).ogv\", 'NREGA.webm', 'Krista Siegfrids - Marry Me presentation (suomeksi).ogv', 'BellSouth denies phone records were handed over to the NSA.ogg', 'Hatikvah instrumental.ogg', 'Aliona Moon - O Mie presentation (Română).ogv', 'United States Navy Band - O Canada.ogg', 'Pl-Budapeszt.ogg', 'Gianluca - Tomorrow presentation (Malti).ogv', '439 Friesland.ogg', 'Ussr Azerbaijan Anthem.ogg', 'US NAVY Band - Kaba Ma Kyei.ogg', 'Ntsika Kellem of Sinenjongo High School - Wikipedia means help to me.webm', 'Himno a cochabamba.ogg', 'The Dickson Baseball Dictionary -LOC-.webm', 'Green anoles in a territorial fight.webm', 'Anthem of Europe (US Navy instrumental long version).ogg', 'Poacher.ogg', 'Dmitry Medvedev address on 26 August 2008 regarding Abkhazia & South Ossetia.ogg', 'Ru-лошадь.ogg', 'Type in Telugu on Telugu Wikipedia.webm', 'Type in Telugu on Telugu Wikimedia projects.webm', 'WWV time signal - 20090904.ogg', 'En-us-sketch.ogg', 'Crazytales-soundtest.ogg', 'Bright College Years.ogg', 'Hur tittar du på Wikipedia.webm', 'En-us-North Korea.ogg', 'AAR214-KSFO-Crash.ogg', 'Bangladesh building collapse - WN.ogv', 'BergenBelsenHatikva.ogg', 'Majulah Singapura.ogg', 'Trayvon Martin Shooting Call1.ogg', 'United States Navy Band - National Anthem of Uruguay (complete).ogg', 'Negaraku instrumental.ogg', 'United States Navy Band - Gloria al Bravo Pueblo.ogg', 'South African national anthem.oga', 'Aaron Swartz - The Network Transformation.webm', 'US President Barack Obama, surveillance activities, June 2013.ogv', 'Chamberlain-war-declaration.ogg', 'Ununpentium.ogg', 'RefTools rework.ogv', 'VisualEditor reference tutorial.ogv', '中文維基百科教學頻道第三章.ogv', '中文維基百科教學頻道第一章.ogv', '中文維基百科教學頻道第兩章.ogv', 'Anthem of the Sakha Republic.ogg', 'Primeiras edições.webm', 'Ett filmklipp om Wikimedia Commons.ogv', 'Ladda upp en film på Commons.ogv', 'Himno Universidad de Medellin.ogg', 'RMS Titanic distress signal simulated as morse code.wav', '中文維基百科教學頻道第四章 第一部分.ogv', '中文維基百科教學頻道第四章 第二部分.ogv', 'Wikimedia UK Wikimania 2013 video.webm', 'Apollo13-wehaveaproblem.ogg', 'ZDFCheck so funktioniert er.ogv', 'George W Bush Columbia FINAL.ogg', 'Community at Work.webm', 'National Banner Song.ogg', 'South Africa National Anthem.ogg', 'Nippon News No241.ogv', 'Indonesiaraya.ogg', '2013-04-22 Resonanz.ogv', 'Het braken van een man - SoundCloud - Beeld en Geluid.ogg', 'Criação de conta.webm', 'Conta com som.webm', 'Desteapta-te, romane!.ogg', 'Levitan USSR attacked.ogg', \"Wikidata's World.webm\", 'Husam Azrak Telekom.WebM', 'Jp themesong 2.ogg', 'United States Navy Band - Marcha Nacional del Perú.ogg', 'От Советского Информбюро. 30 Марта 1945.ogg', 'Rotterdams centrum nadert voltooiing.ogg', 'Europoort Weeknummer 67-04 - Open Beelden - 31752.ogv', 'Fr-Paris--usine à gaz.ogg', 'Un millón de gracias, de Wikipedia en español.webm', 'March of the Volunteers instrumental.ogg', 'President USA Barack Obama Speaks on Syria 2013-08-31.webm', 'President Obama discusses preparations for Hurricane Sandy.ogv', \"President Obama's statement on US Consulate in Benghazi attacks 2012-09-12.ogv\", 'President Obama Speaks on Health Reform.ogv', 'Bottled Sunshine...A Juicy Story.theora.ogv', \"President Obama's speech at Camp Lejeune on 2009-02-27.ogv\", 'Smoke Ban ABC.ogv', 'President Obama’s Message for the Diamond Jubilee of Queen Elizabeth II 2012-06-05.ogv', 'President Barack Obama addressing the 2010 UN General Assembly on 2010-09-23.ogv', 'President Obama speaking on the shootings in Aurora, Colorado on 2012-07-20.ogv', \"President Obama's statement on Hurricane Sandy.ogv\", 'President Obama speaks on attacks in Boston (2013-04-16).ogv', 'President Obama speaks on attacks in Boston (2013-04-19).ogv', '20090124 WeeklyAddress.ogv', '100 jaar lichamelijke opvoeding.ogv', '1946-10-08 21 Nazi Chiefs Guilty.ogv', 'Fr-nièce.ogg', '1958-02-10 Britain Mourns. Soccer Champs Die In Plane Crash - small unedited.ogv', '1933-11 Industry Booms After Repeal of Prohibition.ogv', '1964-10-15 Khrushchev Resigns.ogv', 'Execution of Mussolini (1945).ogv', '1955-07-21 Morocco Riots Terror Mounts In Revolt Of Arabs.ogv', '1962-03-22 Algeria tense cease fire.ogv', 'Algier1954.ogv', '1955-08-25 Rebellion Spreads in North Africa.ogv', '1956-05-21 France Digs in For Total War in Algeria.ogv', '1958-02-06 Vanguard Fails in Second Launching.ogv', '1958-02-03 Egypt, Syria Merge In New Arab Republic.webm', '1956-08-09 Press Parley.ogv', '1956-07-30 Suez Canal Seized.ogv', 'Suez nationalization.ogv', 'Vesuvius in Eruption, newsreel (1944).ogv', '1947-01-16 New Head Of Church Installed.ogv', 'Hurricane Connie 1955.ogv', 'City of Trenton Council Meeting April 2, 2013.ogg', 'Goa 1955 invasion.ogv', '1961-04-13 Tale Of Century - Eichmann Tried For War Crimes.ogv', '1958-02-06 Atomic Weapons come to Korea.ogv', 'Operation Upshot test.ogv', 'CIS-A2K Wikimania 2013 series (Tamil Wikipedian S. Parvathi).webm', '1956-11-01 War in Egypt.ogv', 'Theodor Kallifatides en.webm', 'Harddrive-engineerguy.ogv', 'En-uk-Walsall.ogg', 'Ian Charlton.ogg', \"2009-02-21 President Obama's Weekly Address.ogv\", 'Jfk berlin address high.ogg', 'Thirdlaw.ogv', 'Glider aerobatics Georgij Kaminski - YouTube.webm', 'A is for apple.ogg', 'UVA DE CAMINHÃO - Carmen Miranda 1939.ogg', 'Zdravljica.ogg', 'Tautiška giesme instumental.ogg', 'Johannes.Hymnus.ogg', 'NASA - Propylene on Titan.webm', 'Claes Andersson fi.webm', \"2013-09-28 President Obama's Weekly Address.webm\", 'Mohandas Karamchand Gandhi pronunciation 3.oga', 'RepublikaSrpska.ogg', 'Preserving Archipelagus Orientalis.ogv', \"2013-09-28 President Obama's Weekly Address HD.webm\", 'Edward Snowden speaks about NSA programmes at Sam Adams award presentation in Moscow.webm', 'How Open Access Empowered a 16-Year-Old to Make Cancer Breakthrough.ogv', 'Paraguay National Anthem.ogg', 'Crazy (Radio Edit).ogg', 'Physicsworks.ogv', 'Sharkula Freestyle.webm', 'Paraguayan National Anthem.oga', 'Open Letter for Free Access to Wikipedia.webm', 'Challenger - STS-51-L Explosion.ogg', 'DTMF dialing.ogg', 'Internationale-ru.ogg', 'Ο Επιτάφιος του Σεῖκιλου - Epitaph of Seikilos.ogg', 'National Anthem of Chile.ogg', 'B-36 bomber.ogg', 'Internet-archive-brewster-kahle-2013-0329.webm', 'Ru-ночь.ogg', \"Fra Mauro's Map of the World.ogv\", 'Putting Australia on the Map.ogv', \"Flinders and Baudin's race to map Australia.ogv\", 'EduWiki Conference 2013 video.webm', 'Fr-Paris--être dans la merde.ogg', 'Swami Vivekananda.ogg', 'MargaretWoodrowWilson-TheStarSpangledBanner.ogg', 'GibraltarpediA introduction video.ogg', 'En-us-somnolent.ogg', 'Recording of Xun.ogg', 'Serbian national anthem, instrumental.oga', 'Wikimedia Italia - WikiGuida 1 - Wikipedia - Parte 2.ogv', 'Wilhelm II 6-8-1914.ogg', 'Mara-beboos.ogg', '20090512 James Earl Jones - Othello (I. iii) at the White House (trimmed).ogv', '2013-11-24 10 Jahre Alemannische Wikipedia.webm', 'White noise.ogg', 'Obama Dublin ATC.ogg', 'Andy Mabbett voice.ogg', 'Matt Cutts voice.ogg', 'Hymni i Flamurit instrumental.ogg', 'Fr-ananas.ogg', 'Panasonic NN-E225M microwave.flac', 'Amar Shonar Bangla instrumental.ogg', 'London Bridge Is Falling Down.ogg', 'En-us-vehicle.ogg', 'Stephen Fry voice.flac', 'En-us-onomatopoeia.ogg', 'Mila Rodino.ogg', 'Ne-ka.ogg', 'Citar ref VE.ogv', 'Gareth Mitchell voice.flac', 'Ian Emes voice.flac', 'National anthem of Jordan instrumental.ogg', 'Marche des Députés par Mehmed Zati.ogg', 'Introcution to MDGs.ogv', 'Millennium Villages, Jharkhand.webm', 'India Intro.webm', 'Los derechos de la hospitalidad para las personas sin hogar.webm', 'Colombia Intro.webm', 'The story of our documentary - Searching for the questions to ask.webm', 'Smoking Anus.ogv', 'MDG 3.webmsd.webm', 'Sierra Leone Intro.webm', 'Pease Porridge Hot.ogg', 'Story Panchachuli.webm', 'MDG 4.webm', 'MDG 5.webm', 'MDG 6.webm', 'MDG 7.webm', 'Nieuwe radarinstallatie Weeknummer 51-45 - Open Beelden - 22767.ogv', 'Björn Ranelid, Bokmässan 2013.ogv', 'Victory Parade 1945.ogv', 'Amplecartia.ogg', 'Frase de Neil Armstrong.ogg', 'A11v 1092338.ogg', 'Emery Emery Voice.ogg', 'Fr-Paris--pathétique.ogg', 'Arirang (USAS).ogg', 'Jana gana mana vocal.ogg', 'US Navy band - National anthem of Estonia.ogg', 'National Anthem of Kyrgyzstan.ogg', 'Plagiarism tutorial.ogv', 'Florence Nightingale voice - 1576A 2nd Rendition Crop.ogg', \"Alexander Graham Bell's Voice.ogg\", 'Art and Feminism Wikipedia Edit-a-thon, February 1, 2014.webm', 'Robin Owain en Voice.ogg', 'Costa Rica National Anthem.ogg', 'Lupang Hinirang instrumental.ogg', 'Valentina Matvienko voice.oga', 'Radio Murcia Primera Emisión.ogg', 'Jerry Coyne Voice.ogg', 'Den Zugang öffnen (Subtitles).webm', 'Kazakhstan 2006.ogg', 'Björn Ranelid presentation, Bokmässan 2013.webm', 'NATO Phonetic Alphabet reading.ogg', 'Cat purring.ogg', 'TNA332toShanghai.ogg', 'Philippine National Anthem, the Lupang Hinirang Tenor Solo.ogg', 'WikiCon - WikiTV-Interview - Dreisam.webm', 'Met koeiensprongen het voorjaar in.ogv', 'Mahmoud Abul-Huda Alhussainy media serves political-economic interestd.webm', 'Mahmoud Abul-Huda Alhussainy - Spirituality and sociality.webm', 'Mahmoud Abul-Huda Alhussainy - A spiritual person better person in society and work.webm', 'Mahmoud Abul-Huda Alhussainy - ONG that are violent are well organized internationally - unlikee peace building ONGs.webm', 'Kylie Sturgess Voice.ogg', 'Tawakkol Karman (English).ogv', 'Patrioticheskaya Pesnya.ogg', 'Visual workflow draft for pronunciation recording gadget for non-Wiktionary users final en.webm', 'Visual workflow draft for pronunciation recording gadget for Wiktionary users final en.webm', 'Visual workflow draft for pronunciation recording gadget for non-Wiktionary users final de.webm', 'Visual workflow draft for pronunciation recording gadget for Wiktionary users final de.webm', 'Rally in support the Accession of Crimea to Russia.webm', '1940-05-22 Mrs Roosevelt In Red Cross Appeal.ogv', 'PWR nuclear power plant animation.ogv', 'Ussrgymn.ogg', 'Turning a Resource into an Open Educational Resource.webm', 'Deutschlandlied played by USAREUR Band.ogg', 'U.S. Forest Service Chief Forester Tom Tidwell.ogg', 'What is Gross National Happiness.ogv', 'Experience ubuntu.ogg', 'Project Ben-Yehuda.webm', 'Free software for freedom, surveillance and you.webm', 'Peoples Temple Cult Death Tape Q042.ogg', 'JärDa-utrop.ogg', 'Harriet Hall Voice.ogg', 'Partido X, Partido del Futuro Rueda de prensa de presentación.webm', '15M-ExcelenteRevulsivoImportanteH264-bien-6000-v1.6.ogv', 'Présentation Creative Commons CC-Kiwi VF.ogv', 'Manufacture nationale de Sèvres Atelier du Moulin 2013.webm', 'Wikipedia in Ayb High School.ogv', 'Kafteji.ogv', 'Th-Bangkok ceremonial name.ogg', 'Star-spangled banner.ogg', 'Action of soap on oil.ogv', 'William Taft video montage.ogg', 'Unveiling the Official President Bush Portrait.ogv', 'Lijepa nasa domovino instrumental.ogg', 'Law2 4.wav', 'Militair ceremonieel aankomst Chinees staatshoofd op Schiphol DEF20140322.ogv', 'Conchita Wurst - Rise Like a Phoenix presentation (Deutsch).webm', \"Class 01 Reading Marx's Capital Vol I with David Harvey.webm\", \"Class 02 Reading Marx's Capital Vol I with David Harvey.webm\", \"Class 03 Reading Marx's Capital Vol I with David Harvey.webm\", \"Class 04 Reading Marx's Capital Vol I with David Harvey.webm\", \"Class 05 Reading Marx's Capital Vol I with David Harvey.webm\", \"Class 06 Reading Marx's Capital Vol I with David Harvey.webm\", \"Class 07 Reading Marx's Capital Vol I with David Harvey.webm\", \"Class 08 Reading Marx's Capital Vol I with David Harvey.webm\", \"Class 09 Reading Marx's Capital Vol I with David Harvey.webm\", \"Class 10 Reading Marx's Capital Vol I with David Harvey.webm\", \"Class 11 Reading Marx's Capital Vol I with David Harvey.webm\", \"Class 12 Reading Marx's Capital Vol I with David Harvey.webm\", \"Class 13 Reading Marx's Capital Vol I with David Harvey.webm\", 'Laxmi bai.ogg', 'A Brief History of Geodesy.ogv', 'Europe to the Stars bite-size.ogv', 'Vilija Matačiūnaitė - Attention presentation (Lietuvių).webm', 'Fr-Ceci-n-est-pas-une-pipe.ogg', 'Elaiza - Is It Right presentation (Deutsch).webm', 'Suzy - Quero ser tua presentation (Português).webm', 'Chrysler Imperial all transistor car radio audio sound news clip.oga', 'Donatan & Cleo - We Are Slavic presentation (Polski).webm', 'Molly - Children of the Universe presentation.webm', 'National Anthem of the Republic of Azerbaijan instrumental.ogg', \"Hersi - One Night's Anger presentation (Español).webm\", 'Pollapönk - No Prejudice presentation (English).webm', 'Can-linn & Kasey Smith - Heartbeat presentation.webm', 'Star-spangled banner 002.ogg', 'Depression era gangsters.ogv', 'Fr-allô.ogg', '2014-05-10 Wikimedia Hackathon Lila Tretikov.webm', 'Think Thomas J Watson Sr.ogg', 'NASA - How to Get Colder Than Anywhere Else.webm', 'Media Lengua Sample.ogg', 'Emperor of Japan - Tenno - New Years 2010.ogv', 'New medical editor.ogv', 'Ward Cunningham, Inventor of the Wiki.webm', 'United States Navy Band - Der er et yndigt land.ogg', 'Carl Espen - Silent Storm presentation (norsk).webm', 'Dalek Voice.ogg', 'Ru-банан.ogg', 'De-Ludwig van Beethoven (2 Varianten).ogg', 'Cherifian Anthem instrumental.ogg', 'Sumana-Harihareswara-wikicon-2014-keynote.webm', 'Sumanah-wcusa-2014-keynote.ogg', 'Gagauz Yerin Gimnı.ogg', 'Bilady, Bilady, Bilady.ogg', 'Valentina Monetta - Maybe presentation (Italiano).webm', 'National Anthem of Kenya.ogg', 'Hino Nacional Brasileiro instrumental.ogg', 'Bahraini Anthem.ogg', 'The Ocean - a driving force for Weather and Climate.ogv', 'The Greatest Gift in the Entire Universe.oga', 'HimnoNacionalUruguay.ogg', 'Peter Landevej (Hardy Hedager).ogv', 'Chamberlain returns from Munich with Anglo-German Agreement.ogg', 'Czech anthem.ogg', 'Lockheed U-2.ogv', 'A Black Hole’s Dinner is Fast Approaching - Part 2.ogv', 'SA-500D test article from Saturn V quarterly reports.ogv', 'Falkirk Wheel Timelapse, Scotland - Diliff.webm', 'Justin Anthony Knapp.2014-07-22.en.ogg', 'Hino da Independência.ogg', 'Justin Anthony Knapp.2014-07-22.es.ogg', 'Marathi Wikipedia ULS.webm', 'Inno di Mameli instrumental.ogg', 'ASVA - Concorde.ogg', 'Coding da Vinci - Anna-Maria Heckmann.webm', 'National Anthem of Russia (2000), three verses.ogg', 'Challenger Mission Control.ogv', 'Reagan Space Shuttle Challenger Speech.ogv', 'My Belarusy vocal.ogg', 'LebensmittelausgabeRoscheiderhof2014.webm', 'En-us-Abdelaziz Bouteflika from Algeria pronunciation (Voice of America).ogg', 'Wikimedia Chapters Dialogue.webmhd.webm', 'Trumann hiroshima.ogg', 'Big Buck Bunny Trailer 400p.ogg', 'The GLAM-Wiki Revolution.webm', 'Beijing Subway Line 2 Guloudajie Train Arriving 2014.webm', 'Beijing Subway Line 9 Arriving at Military Museum Station.webm', 'The Phantom of the Opera (1925).webm', 'York Museums Trust - The GLAM-Wiki Revolution.webm', 'Sk-Bratislava.ogg', 'The signing ceremony of the Treaty on the Eurasian Economic Union.webm', 'Sternzeit Vocoder.ogg', 'De-Elektrizität-article.ogg', 'Chinese-Macau full name.ogg', 'Txillardegi.ogv', 'National Library of Scotland - The GLAM-Wiki Revolution.webm', 'Lila Tretikov voice.ogg', 'Ramp op autoweg bij Breda-30768.ogv', 'Wikipedia-Slogan Hellschreiber.ogg', 'Mer Hayrenik instrumental.ogg', 'United States Navy Band - Sweden.ogg', 'De-der Drops ist gelutscht.ogg', 'Macekovo obracanje1940.ogv', 'Mensaje de Lila Tretikov sobre el editatón de 50 horas en el Museo Soumaya de la Ciudad de México.webm', 'Anthem-of-Ukraine Chorus Veryovka.ogg', 'Nixon resignation audio with buzz removed.ogg', 'National Anthem of Morocco.ogg', 'Hino da Carta.ogg', 'Germaine Greer BBC Radio4 Bookclub 5 Aug 2007 b007rdly.flac', 'Jimmy Wales voice.ogg', 'Plwiki-UX research 2014-10-04.ogv', 'Royal Society - The GLAM-Wiki Revolution.webm', 'Otegi.ogv', 'Michael Caine BBC Radio4 Front Row 29 Sept 2010 b00tyv8c.flac', 'FEZ trial gameplay HD.webm', 'Field cricket Gryllus pennsylvanicus.ogg', 'Wikipedie Komunitní projekt.webm', 'Reusing Open Access materials on Wikimedia projects.ogv', \"2014-09-27 President Obama's Weekly Address.webm\", 'Education For Death.ogv', 'Steg för steg för översättning i translatewiki.webm', 'Mohamed Atta to ATC-1.ogg', \"2014-01-18 President Obama's Weekly Address.webm\", \"2014-01-25 President Obama's Weekly Address.webm\", \"2014-01-04 President Obama's Weekly Address.webm\", \"2014-02-08 President Obama's Weekly Address.webm\", \"2014-02-15 President Obama's Weekly Address.webm\", \"2014-02-22 President Obama's Weekly Address.webm\", 'Wikipedie David Klempíř o přispívání do největší online encyklopedie.webm', \"2014-03-01 President Obama's Weekly Address.webm\", \"2014-03-08 President Obama's Weekly Address.webm\", 'Wikipedie Základní principy.webm', 'David mitchell bbc radio4 desert island discs 19 07 2009.flac', 'Wikipedie Encyklopedická významnost.webm', 'Hymne National du Burkina Faso.ogg', 'Himno Del Club Nacional de Football.ogg', 'Robin Hood (1922).webm', 'Hymn to liberty instrumental.oga', 'Recursos Educacionais Abertos.ogv', 'Recursos Educacionais Abertos (Alta Resolução).ogv', 'Booker T. Washington, Speech, 1895 - edit.ogg', 'Copy-me (01).ogv', 'Copy-me (02).ogv', 'Copy-me (03).ogv', '2014-11-07 Cloud Computing.webm', 'Barum (Landkreis Uelzen) Video 2014.webm', 'Landing on a Comet - The Rosetta Mission.webm', 'Animals in Gdansk.ogg', 'Fr-glace.ogg', 'Manifestation 3A Toulouse étudiants 15nov14.webm', 'De-Bayerische Motoren Werke Aktiengesellschaft.ogg', 'Swiss Psalm.ogg', 'Manifestation 3A Toulouse banderoles 15nov14.webm', \"A Year In The Life Of Earth's CO2 11719-1920-MASTER.webm\", '2 of 4 - Synthesis -A machine that uses gears, springs and levers to add sines and cosines.webm', '3 of 4 - Analysis - Explaining Fourier analysis with a machines.webm', '4 of 4 - Operation - The details of setting up the Harmonic Analyzer.webm', 'Imnul Republicii Moldova US NAVY.ogg', 'Dominican Republic National Anthem.ogg', 'WikiProject ESD introduction.webm', 'Knowledge for Everyone.webm', 'Knowledge for Everyone (no subtitles).webm', 'The Djiboutian anthem.ogg', \"Bennu's Journey.webm\", 'Micronesia National Anthem.ogg', 'Live audio recording from the scene of the Hindenburg disaster 1937-05-06 19-25 EST.oga', \"La fina venk'.ogv\", 'Jingle Bells (Calm) (Kevin MacLeod) (ISRC USUAN1100188).oga', \"Rewards For Fugitives Abu Du'a.ogg\", 'The Great Train Robbery (1903) - yt.webm', 'Gregorian chant - Procedamus in pace - Cum angelis - Psalm 24 (23) (German-Polish accent).ogg', 'Dominic Tildesley voice.flac', '1 of 4 - Intro & History - Introducing a 100-year-old mechanical computer.webm', 'ASVA - Saint-Michel.ogg', 'ChateauRougeMP89.ogg', 'National Anthem of Montenegro.ogg', 'Anthem of Ukraine instrumental.ogg', 'Jingle Bells (90bpm) (Kevin MacLeod) (ISRC USUAN1100187).oga', 'তবু মনে রেখো - গায়ক-রবীন্দ্রনাথ ঠাকুর.oga', 'First Inaugural (January 20, 1993) Bill Clinton.ogv', 'Kings Row (1942)-trailer.ogv', 'Snore man 50 years 160 kg.ogg', 'Wikipedia on GLAM-Tour Kulturkooperationen für lokale Wikipedia-Gruppen.webm', 'AbdurRahman Al Sudais 002.256.wav', 'Sk-Milan Rastislav Stefanik.ogg', 'Schola Gregoriana-Pater Noster.ogg', 'Wikipedia Edit 2014.webm', 'This is scoring.ogv', 'Wikipedia Edit2014.ogv', 'This is wicket-keeping.ogv', \"2014-12-20 President Obama's Weekly Address.webm\", 'Odia-Silalekharu mobile (Documentary).webm', 'Burg Belfort Flugaufnahme.webm', 'Anthem of Europe (US Navy instrumental short version).ogg', 'Azuki Bean phototropism.ogv', 'Ru-быть.ogg', 'Greg Dyke BBC Radio4 You and Yours 30 Jan 2009 b00gtg9f.flac', 'United States Navy Band - Maamme.ogg', 'Serbian National Anthem instrumental.ogg', 'Fr-Paris--pantomime.ogg', 'Die Stem van Suid-Afrika.ogg', 'Rise, O Voices of Rhodesia.ogg', 'En-us-underscore.ogg', 'Gangubai Hangal - Raga Durga 1935.ogg', 'Brown noise.ogg', 'Crackles pneumoniaO.ogg', 'Kölner Dom - Abschaltung Beleuchtung als Protest gegen die Kögida-Demo.ogg', 'Monte Brè, aerial recording.webm', 'Donetsk Regional Admin (City Hall) - Barricades and Balcony.webm', 'Rassemblement CharlieHebdo TLSE - footage.webm', 'Marche républicaine Toulouse10jan15 part1.webm', 'Mick Jagger BBC Radio4 Front Row 26 Dec 2012 b01pg54v.flac', 'MLRS attack on K2 blockpost near Volnovakha (dashcam).webm', 'En-us-sweetheart.ogg', 'Jack Andraka - Cancer Researcher.webm', 'Garrulus glandarius iphigenia.ogg', 'Interview with Doris Mansary (Ministry of Social Welfare, Gender and Children Affairs in Sierra Leone).webm', 'National Anthem of the Republic of Kosovo.ogg', 'Coding da Vinci 2014.webm', 'Polskieradio-wybuch-ii-wojny-swiatowej.ogg', 'Uzbekistan anthem.ogg', 'Anthem-of-uzbekistan-1992.ogg', 'En-Mercury(Planet).ogg', 'National Anthem of Laos.ogg', 'Vladimir Putin speech to IOC in Guatemala City.ogg', 'Implanon implantation.webm', 'Removal Implanon.webm', 'National Anthem of the Republic of Vietnam.ogg', 'Friedrich Wilhelm Nietzsche - Miserere.oga', 'PRISM - Snowden Interview - Laura Poitras HQ.webm', 'Friedrich Wilhelm Nietzsche - Hüter, ist die Nacht bald hin?.oga', 'TeotihuacanPronunciation.ogg', 'Friedrich Wilhelm Nietzsche - Mein Platz vor der Tür.oga', 'The Hunchback of Notre Dame (1923).webm', '051226-kakapo-billbooming.ogg', 'Friedrich Wilhelm Nietzsche - Aus der Jugendzeit.oga', 'Friedrich Wilhelm Nietzsche - Da geht ein Bach - 2.oga', 'Friedrich Wilhelm Nietzsche - Das zerbrochene Ringlein.oga', 'Friedrich Wilhelm Nietzsche - Wie sich Rebenranken schwingen.oga', 'RMS Titanic- Fascinating Engineering Facts.webm', 'The Star-Spangled Banner - U.S. Army 1st Armored Division Band.ogg', 'Fetal yawning 4D ultrasound ecografia 4D Dr. Wolfgang Moroder.theora.ogv', 'Doppler effect.ogg', 'United States Navy Band - Mawtini.ogg', 'Friedrich Wilhelm Nietzsche - Beschwörung.ogg', 'Friedrich Wilhelm Nietzsche - Nachspiel.ogg', 'Arthur Collins, Hello Ma Baby.ogg', 'Miauwen van een kater - SoundCloud - Beeld en Geluid.ogg', 'Friedrich Wilhelm Nietzsche - Ständchen.ogg', 'What is Wikipedia Zero?.webm', 'Weissfluhjoch, aerial video.webm', \"2014-05-03 President Obama's Weekly Address.webm\", \"2014-05-17 President Obama's Weekly Address.webm\", \"2014-06-07 President Obama's Weekly Address.webm\", \"2014-07-04 President Obama's Weekly Address.webm\", \"2014-05-31 President Obama's Weekly Address.webm\", \"2014-05-10 President Obama's Weekly Address.webm\", \"2014-05-24 President Obama's Weekly Address.webm\", \"2014-06-14 President Obama's Weekly Address.webm\", 'Tantum Ergo I Gregorian.ogg', 'Victoria Coren BBC Radio4 Saturday Live 16 April 2011 b010dd3z.flac', \"2014-07-19 President Obama's Weekly Address.webm\", \"2014-08-02 President Obama's Weekly Address.webm\", \"2014-06-21 President Obama's Weekly Address.webm\", \"2014-07-26 President Obama's Weekly Address.webm\", \"2014-08-30 President Obama's Weekly Address.webm\", \"2014-06-28 President Obama's Weekly Address.webm\", \"2014-09-13 President Obama's Weekly Address.webm\", \"2014-08-16 President Obama's Weekly Address.webm\", \"2014-08-09 President Obama's Weekly Address.webm\", \"2014-09-20 President Obama's Weekly Address.webm\", \"2014-09-06 President Obama's Weekly Address.webm\", \"2014-07-12 President Obama's Weekly Address.webm\", \"2014-10-04 President Obama's Weekly Address.webm\", 'Argentina.ogg', 'Earthrise conversation.ogg', 'Gray noise.ogg', 'Bn-বাংলাদেশ.oga', 'Belliss steam launch engine - Thinktank - Andy Mabbett - 2015-02-12 -01.flac', 'Gone Home - Launch Trailer.webm', '2012-10 RüBB~Göhren←Sellin Ost.ogv', '2012-10 RüBB~Sellin Ost←Garftitz.ogv', '2012-10 RüBB~Garftitz←Serams.ogv', '2012-10 RüBB~Serams←Putbus LB.ogv', 'Soviet Union national anthem instrumental 1977.ogg', 'Friedrich Wilhelm Nietzsche - Unendlich.ogg', 'United States Navy Band - Inno e Marcia Pontificale.ogg', 'Heart of Oak.ogg', 'Piezoelectric buzzer.ogg', 'Bozhe, tsarya khrani!.ogg', 'Inner marker.ogg', 'Outer marker.ogg', 'Art + Feminism Edit-a-thon at the Museum of Modern Art March 7, 2015.webm', 'Nokia tune.ogg', 'Sputnik beep.ogg', 'John F Kennedy Address on the Buildup of Arms in Cuba.ogg', 'Five Minutes To Live (1961).webm', 'Five Minutes to Live.ogv', 'Friedrich Wilhelm Nietzsche - Verwelkt.ogg', 'Cadillacsquareexcerpt.ogg', 'Editatona.webm', 'Ru-что (што).ogg', \"Arrivée et départ d'une rame MF 67.ogg\", 'SHELL TOX.ogg', 'Grus grus.ogg', 'Ru-Vladimir Vladimirovich Putin.ogg', 'Share-a-Fact on the Official Wikipedia Android app.webm', \"Major-General's Song.ogg\", 'A-Conversation-with-President-Obama-and-The-Wire-Creator-David-Simon.webm', 'A Mark of Wholesome Meat (1964).ogv', 'Britse kinderen bezoeken graven van hun gesneuvelde vaders Weeknummer 55-17 - Open Beelden - 20306.ogv', 'En-us-pot calling the kettle black.ogg', 'Suddenly (1954).webm', 'Shotinformativoledzeppelin-conceptoradialshotinformativo-ivoox3566815.ogg', 'Friedrich Wilhelm Nietzsche - Ungewitter.ogg', 'Friedrich Wilhelm Nietzsche - Gern und gerner.ogg', 'Friedrich Wilhelm Nietzsche - Das Kind an die erloschene Kerze.ogg', 'National Anthem of Syria.ogg', \"2015-03-28 President Obama's Weekly Address.webm\", 'Testimonial Sismo 1985 2.webm', 'The President, in 3D.webm', 'Share-a-Fact on the Official Wikipedia iPhone app.webm', 'Bhutanese passport.oga', \"2014-12-25 President Obama's Weekly Address.webm\", 'Ruth Lorenzo - Dancing In The Rain presentation (English).webm', 'Hardware and software for sceencasting.ogv', \"2014-12-13 President Obama's Weekly Address.webm\", 'Stephen Amell about flashbacks of Arrow at NerdHQ 2014.webm', \"Clinton - Opted to Use Personal E-mail Account 'For Convenience'.ogv\", 'President Obama welcomed the San Francisco Giants.ogv', \"2014-08-23 President Obama's Weekly Address.webm\", 'FSN nuclear fission.theora.ogv', \"2015-03-14 President Obama's Weekly Address.webm\", 'Barcelona, a capital that inspires.webm', 'Copying is not theft.ogv', 'How to mobile screencast.ogv', 'Claes Andersson en.webm', 'President Obama on Ending War in Iraq.ogv', 'Content Translation Screencast (English).webm', \"2014-02-01 President Obama's Weekly Address.webm\", 'Why was Leonardo da Vinci that famous?.webm', 'Surrender of BS Part 2 wiki.webm', \"2013-08-24 President Obama's Weekly Address.webm\", 'Hillary Clinton, Jeb Bush Face Challenges for 2016.ogv', 'Air Force Report Stargate.ogv', 'How to link text.ogv', 'The Polar Vortex Explained in 2 Minutes.webm', 'President Obama Welcomes the 2012 NBA Champion Miami Heat.ogv', \"2015-01-24 President Obama's Weekly Address.webm\", 'President Obama Pardons White House Turkey.ogv', 'Superman 4 The Arctic Giant 1942.ogv', 'Obama Nowruz message.ogv', 'Message from Lila Tretikov for the 10th anniversary of Bashkir Wikipedia.webm', 'The U.S Air Force Song.ogg', 'Ojcze nasz po kaszebsku.ogg', \"2015-01-17 President Obama's Weekly Address.webm\", 'En-us-United States.ogg', 'Indonesia Raya 1945.ogv', 'En-us-fuck.ogg', 'Another talk with the German Chancellor, Herr Hitler.ogg', 'Heather Wiki Intro.ogg', 'Susan Gerbic Voice.ogg', 'Levitan Germany surrender.ogg', 'Fr-Paris.ogg', 'Expedition 44-45 Crew Introduction.webm', 'Radio Oranje 27-feb.-1942 L. DE JONG DE FEBRUARI-OPSTAND VAN 1941 (HERDENKINGSKLANKBEELD) - 12166.wav', 'Austria.ogg', 'Metro SPB Announcement (ver. 2009).ogg', 'Homeopathic mass overdose The 10 23 Campaign Oslo.webm', 'Contraception – How to Prevent Unwanted Pregnancy.webm', 'STS-88 EVA 1 video highlights.ogv', 'What is feminist art.webm', 'De-arbeiten.ogg', 'De-at-arbeiten.ogg', 'Berlin airlift full res.webm', 'Lofsöngur.ogg', 'Interview Matthias Nepfer-HD.ogv', 'German alphabet-2.ogg', 'Citybanan sprängning video 2012.ogv', 'German extra letters.ogg', 'Park Hyang-rim - Oppaneun punggakjaeng-i.ogg', 'Bak Hyang Rim Kim Hae Song jeonhwa ilgi.ogg', 'Wilhelm Scream.ogg', 'Mahmoud Ahmadinejad Clean.ogg', 'Militair afscheid voor verzetsstrijdster Jos Gemmeke.webm', 'Millikan experiment.ogv', 'Six minutes pour la mer rouge.webm', 'WikipediaMeetup.webm', 'Fr-propice.ogg', 'Cockfighting.ogv', 'Rassemblement Méric, juin15, Toulouse-footage.webm', 'De-Venusfliegenfalle-article.ogg', 'Human whistling.ogg', 'Spike Sorting, Christophe Pouzat, NeuroMat.webm', 'Judy Tuan at the San Francisco Wikipedia Hackathon January 2012.webm', 'Corporate video BZK.webm', 'Wat gebeurt er op Verantwoordingsdag.webm', 'Video Trêveszaal.webm', 'Postbus 51 slaaphygiene.webm', 'Postbus 51 veilig vrijen.webm', 'Postbus 51 Bob jij of Bob ik.webm', 'Postbus 51 verstandig met energie.webm', 'Voordracht Van Nelle Ontwerpfabriek Werelderfgoed.webm', 'Potentiële lijst wederopbouwmonumenten.webm', 'Ru-Nizhny Novgorod filtered.ogg', 'Troonrede 2014.webm', \"C. Gounod - Marche funèbre d'une marionnette.oga\", 'Anna Koval talks about the Wikipedia Education Program pilot at the Second Chance Schools in Corfu.webm', 'Holland the next fashion hub.webm', 'Trio mineurslied.ex.oggvorbis.ogg', 'Russian alphabet.ogg', 'Alphabet.oga', 'Mila Rodino instrumental.ogg', 'Euskara iparraldean.ogv', 'Campagne Blijf uit de dode hoek gestart.webm', 'Campagne Het begint met taal.webm', 'Ru-на хуй.ogg', 'Wikimania Esino Lario Teaser.webm', 'Persconferentie regeerakkoord VVD en PvdA.webm', 'Persconferentie informateurs 21 september 2012.webm', 'Lila-Tretikov-w-Polsce.webm', 'Saturn.ogg', 'Print Wikipedia (no subtitles).webm', 'Cs-Brno.ogg', 'Carl Schlyter de.webm', 'Medici Villa Cafaggiolo.ogg', 'Upupa epops.ogg', 'F morse code.ogg', 'Investeren in energiebesparing, innovatie en scholing.webm', 'Andre Kuipers, 2 ruimtereizen.webm', 'Start 4 projecten langs A12 tussen Lunetten en Veenendaal.webm', 'Oorlogstrofee tijdelijk terug in Engeland.webm', 'En-us-Recep Tayyip Erdogan from Turkey pronunciation (Voice of America).ogg', 'Shotinformativotribusurbanas-conceptoradialshotinformativo-ivoox3564222.ogg', 'Shotinformativoelcampo-conceptoradialshotinformativo-ivoox3155319.ogg', 'Shotinformativolosjovenesmusica-conceptoradialshotinformativo-ivoox3566719.ogg', 'One Earth one family - Interfaith march in Rome to call for climate action.webm', 'Wikimania 2015 Estamxs Listos 2.webm', 'Christian Cariño (no subtitles).webm', 'Como subir multimedia a Wikimedia Commons.webm', 'Kürtőskalács.wav', 'Wikimania 2013 in Hong Kong (no subtitles).webm', 'Making of Rijksmuseum.webm', 'My Belarusy.ogg', 'Tec-de-monterrey-student-activities-in-wikimedia.webm', 'Skeptic Intro - Derek Colanduno.ogg', 'Kazakhstan National Anthem 2012.ogg', 'Exciting Elephant Ride in Jaipur at Amer Fort.webm', 'Launching for America.webm', 'Voices Of The Freddie Gray Protest- Part 1.webm', 'Aash Al Maleek instrumental.ogg', 'Қазақстан Республикасының Мемлекеттік Әнұраны.ogg', 'Piz Forbesch, aerial video.webm', 'Pythonlectureseverance1.1.webm', 'Pythonlectureseverance1.2.webm', 'Pythonlectureseverance1.3.webm', 'Pythonlectureseverance1.4.webm', 'Pythonlectureseverance1.5.webm', 'Bombing of Hamburg.ogg', '4 - 1 - Lecture 2.1 Expressions (19 59).webm', '4 - 2 - Lecture 2.2 Types (22 54).webm', '5 - 1 - Lecture 3.1 Conditional Statements (14 33).webm', '5 - 2 - Lecture 3.2 Examples of Conditional Statements (12 00).webm', '5 - 3 - Lecture 3.3 Try and Except (11 34).webm', 'National anthem of Pakistan.OGG', '6 - 1 - Chapter 4 - Functions (28 03).webm', '7 - 1 - Lecture 5.1 Loops and Iteration (21 12).webm', '7 - 2 - Lecture 5.2 Loop Idioms (15 05).webm', '7 - 3 - Lecture 5.3 Largest and Smallest (10 16).webm', '8 - 1 - Chapter 6 - Strings (27 57).webm', 'Juve contre Fantômas (1913).webm', 'Le Mort qui tue (1913).webm', '9 - 1 - Chapter 7 - Files (24 38).webm', 'Harry Truman Announcing Surrender Of Japan.ogg', 'Galitzijskye polae.ogg', '10 - 1 - Chapter 8 - Lists (27 14).webm', '11 - 1 - Chapter 9 - Dictionaries (37 38).webm', '12 - 1 - Chapter 10 - Tuples (26 36).webm', 'Emily Temple-Wood (2minutes27seconds).webm', '1937-03-20 Children Die As Gas Explosion Shatters School.ogv', 'Pocky.ogg', '13 - 1 - Chapter 11 - Regular Expressions (35 23).webm', '4 - 5 - Worked Exercise 2.3.webm', '5 - 5 - Worked Exercise 3.2 (8 58).webm', '7 - 4 - Worked Exercise 5.1 (14 39).webm', '10 - 3 - Worked Exercise Lists (16 35).webm', 'LibriVox - Schiller An die Freude.ogg', '1 - 2 - Welcome to Class (19 54).webm', 'Tajikistan anthem.ogg', 'Víctor Pey 04-09-2015 ES.ogg', 'Ludwig van Beethoven - wind sextet in e flat, op. 71 - i. adagio - allegro.ogg', 'De-Waschbaer 2-article.ogg', 'Py4Inf-01-Intro.ogg', 'Robert Clotworthy Raynor Wikipedia.ogg', 'Writing Contests - A quick snapshot.ogv', 'Elephants Dream(HQ).webm', 'National Flag Anthem(R.O.C).ogg', 'Bickham on Yampolsky Full version.webm', \"Fernando de lucia, mamma mia che vo sape'.(nutile, russo ).ogg\", 'Drone Photography of Versailles - Lionel Allorge.webm', 'Скорость звука.webm', 'Helen Bickham on Yampolsky Shortened Version.webm', 'Scarborough Fair.ogg', 'Eo-kio estas via nomo.ogg', 'Marechiare (1902) - Words S. Di Giacomo - Voice Ferdinando De Lucia.ogg', 'Video from Lila Tretikov to UNAM Mexico edit-a-thon participants, September 2015.webm', 'Путин - хуйло!.ogg', 'WikiAPA greets Wikimedians in Thailand.webm', 'Roosevelt Pearl Harbor.ogg', 'København.ogg', 'Supermoon Lunar Eclipse.webm', 'Karl Johansslussen video 2015a.webm', '1 año de Ayotz1napa -DiaDeLaIndignación.webm', 'Oili Oila - Fernando de Lucia - Di Giacomo (1907).ogg', 'WikiunamB.webm', 'Bach 330 Sei Lob und Preis Magna Voce.webm', 'Teaser Isen - a documentary film about Wikimania Esino Lario.webm', 'Frederic Chopin - Opus 25 - Twelve Grand Etudes - c minor.ogg', 'AsironLaburpenaTXIKI.ogg', 'O Canada French lyrics 1918.ogg', 'O Canada English Weir 1928.ogg', 'MV Summit Venture Mayday Call.flac', 'Koning opent vernieuwd ministerie van Economische Zaken.webm', 'มาร์ชเฟื่องฟ้า.ogg', 'Sintel movie 4K.webm', 'Alebrijes wikilearning.webm', 'La-ecc-achates.ogg', 'Peace to the Sultan (نشيد السلام السلطاني).ogg', 'Frederic Chopin - etude no. 12 in c minor, op. 25.ogg', 'Verklaring van de Koningin.webm', 'Koninklijk Paleis Amsterdam weer in alle pracht en praal te bezichtigen.webm', 'Prins van Oranje en Prinses Maxima doen mee met Make a Difference Day 20 maart 2009.webm', 'Duurzaam bouwen met bamboe Prins Claus Prijs 2009 voor Colombiaanse architect.webm', 'Koningin opent eerste Nederlandse importterminal voor vloeibaar aardgas.webm', 'Le pont Mirabeau Apollinaire.ogg', 'Prins van Oranje bij SAIL Amsterdam 2010.webm', 'Koningin bij viering 50-jarig bestaan Anne Frank Huis.webm', 'Prins van Oranje opent vernieuwde afdeling Rijksmuseum van Oudheden.webm', 'Koningin opent Philips museum in Eindhoven.webm', 'Prins van Oranje en Prinses Maxima bezoeken 50e Fruitcorso.webm', 'Koning opent vernieuwd Museum Prinsenhof Delft.webm', 'Koningin Maxima bezoekt robot-WK in Eindhoven.webm', 'De Koningin kondigt haar aftreden aan.webm', 'Toespraak Koningin op 29 april 2013.webm', 'Fabian Tompsett at DADA 99-ojo jubiliejaus paminėjimo renginių Alytuje.ogv', 'Atomic orbitals and periodic table construction.ogv', 'Shuttle Columbia sound barrier.ogg', 'Experime1940.ogv', \"'A Guerra - Elvira Donnarumma - Libero Bovio - Ernesto De Curtis.ogg\", 'Sudanese national anthem, performed by the U.S. Navy Band (instrumental).oga', 'Sudanese national anthem, performed by the U.S. Navy Band.oga', 'Reagan State of the Union 1986.ogv', 'Осторожно! Двери Закрываются.ogg', 'Assam.ogg', 'ME-EME-bite.ogg', 'Fr-poésie.ogg', 'NASA Webb Space Telescope Integrated Science Instrument Module.ogg', 'De-Mooresches Gesetz-article.ogg', 'Netherworld Shanty (MacLeod, Kevin ) (ISRC USUAN1100138).oga', 'Echo samples.ogg', 'Wikimanía 2015 en la Ciudad de México - Documental (teaser) .webm', 'Uspon na Supine, 8.stu.2015.webm', 'Wedefit Gesgeshi Widd Innat Ittyoppya.ogg', 'Catacombe de Paris.ogg', 'Tzolag Hovsepian shared his album and photos under free license.webm', 'Wikipedia Science Conference 2015 summary video.webm', 'Reefer Madness.webm', 'Man from Egypt-Larry Semon-Vitagraph Company of America-1916-De Egyptenaar-Intertitles in Dutch-720 x 404.ogv', 'Example.ogg', 'Is-Icelandic alphabet.oga', 'Froehliche Weihnacht ueberall - Video.webm', 'Froehliche Weihnacht ueberall - Audio.ogg', 'Es ist ein Ros entsprungen - Video.webm', 'Es ist ein Ros entsprungen - Audio.ogg', 'Ondertekening Deltawet.webm', 'Intro07.webm', 'Es wird scho glei dumpa - Audio.ogg', 'Es wird scho glei dumpa - Video.webm', 'Koning Willem-Alexander spreekt de Troonrede 2015 uit in de Ridderzaal.webm', 'Doctor Foster.ogg', 'Kabinet besluit over verlenging ISAF-missie Uruzgan.webm', 'Wijkpark Oude Westen, Rotterdam.webm', 'Resto Van Harte, Den Haag.webm', 'De Noorderparkkamer, Amsterdam.webm', 'Families militairen in spotlights bij Missie Max.webm', 'Persconferentie Rutte na ministerraad 28 januari 2011.webm', 'Persconferentie na ministerraad 7 januari 2011.webm', 'Wikipedia Edit 2015.webm', 'Payandeh Bada Iran.ogg', 'Bells (St. Andrew Catholic Church in Krásno nad Kysucou, Slovakia).ogg', 'Video Fraude Film Festival 007.webm', 'Easy.ogg', 'National anthem of Italy - U.S. Navy Band (long version).ogg', 'Pneumonia.webm', 'NOAA Weather Radio MKE-KEC60 Weekly Test.ogg', 'Flash flood emergency Tennessee.ogg', 'Siti Nurhaliza - Siti Nurhaliza Komen Desas-Desus Kehamilan.webm', 'Копаничари.ogv', 'Surah Al fatiha104.ogg', 'Wikimedia Foundation Metrics - November 2015.webm', 'Sous vide overview by Nomiku.webm', '由維基百科看開放與分享知識.ogv', 'Pasquale Amato, Georges Bizet, Chanson du toréador, Carmen.ogg', 'Expedition 46-47 scheduled for December launch.webm', 'With the Marines at Tarawa.ogv', 'StationLIFE - Nutrition (January 2016).webm', \"Wikipedia 15 - Jimmy's greetings.webm\", 'Anna Koval talks about the Wikipedia Education Program pilot in Republic of Srpska.webm', 'A Moment with Mikhail Kornienko.webm', 'Space Station Stories - The One Year Mission.webm', 'A Moment with Scott Kelly.webm', 'Soy Wikipedista.webm', 'Neil Armstrong small step.wav', 'Oben am jungen Rhein, by the U.S. Navy Band.ogg', 'Sous vide overview by Nomiku with VO.webm', 'Night of the Living Dead (1968).webm', 'How Wikipedia contributes to free knowledge.webm', 'SpaceX Tests Crew Dragon Parachutes.webm', 'Liftoff of Jason-3.webm', 'Cosmos Laundromat - First Cycle - Official Blender Foundation release.webm', 'William Fisher, CopyrightX- Lecture 2.1, Fairness and Personality Theories- Introduction.webm', 'Primary sclerosing cholangitis.webm', 'Test video upload.webm', 'Mentoria Iberocoop 2.webm', 'Sakura Sakura.song.ogg', 'Ap17 schmitt falls.ogg', 'ArCJ SAC 19760412 Séance inaugurale du 12 avril 1976 SAC01.oga', 'Ontdek het vernieuwde Rijksmuseum ook op Schiphol.webm', 'Open Data - explained in a nutshell.webm', 'MagicLab - 24 Drone Flight.webm', 'Noam Chomsky on Syria, China, Capitalism, and Ferguson.webm', 'Zika virus video osmosis.webm', 'Moscow metro tunnels - view from cab of Synergy train.webm', 'Road Rage with Subtitles.webm', 'Mexico.ogg', 'Apollo One Recording.ogg', 'Snow White and the Seven Dwarfs (Original Theatrical Trailer 2) 1937 (La Blancaneu).ogv', 'Polish Flag at Arkadia in Warsaw 2015.webm', 'András Kállay-Saunders - Running presentation (Magyar).webm', 'András Kállay-Saunders - Running presentation (English).webm', '1962-08-16 The Wall.ogv', '1960-07-21 First Polaris Firing By Submerged U-Boat.ogv', '1946-06-20 Japan Today.ogv', '1946-06-24 Big 4 Turns Down Austria on Tyrol-1.ogv', '1944-11-22 RAF Sinks Tirpitz.ogv', '1962-07-12 A Day in History.ogv', 'BlackLifeMatters Wikipedia Edit-a-thon in Harlem, New York City, February 6, 2016 (no subtitles).webm', '1958-06-09 Russian exhibit of Sputnik.ogv', 'Bioscooptrailer Bevrijdingsfestivals.webm', '1957-07-04 Fort Belvoir Army Package Power Reactor.ogv', 'Man With A Movie Camera (Dziga Vertov, 1929).webm', 'Operation Cue (1955).ogv', 'Tears of Steel in 4k - Official Blender Foundation release.webm', 'Tears of Steel 1080p.webm', 'Challenger Launch and Breakup.ogv', 'I am a Wikipedian.webm', 'Plan 9 from Outer Space (1959).webm', 'Captain Kidd (1945).webm', 'Of Human Bondage (1934).webm', 'Priest of Darkness (1936).webm', 'Humanity & Paper Balloons (1937).webm', 'The Million Ryo Pot (1935).webm', 'Nina Turner address at Women for Bernie Meetups, February 2016.webm', 'SDS strokovni svet tiskovna - stanje javnih financ in gospodarstva (6 del).webm', 'SDS strokovni svet tiskovna - stanje javnih financ in gospodarstva (4 del).webm', 'SDS strokovni svet tiskovna - stanje javnih financ in gospodarstva (5 del).webm', 'Bernie Sanders at Liberty University, September 2015.webm', 'William Fisher CopyrightX Lecture 3 2 The Subject Matter of Copyright Drama and choreography.webm', 'William Fisher CopyrightX Lecture 3 1, The Subject Matter of Copyright.webm', 'William Fisher, CopyrightX.webm', 'William Fisher CopyrightX Lecture 2 3.webm', 'Does Bernie Sanders Get Race - Rep Keith Ellison on the Laura Flanders Show, February 2016.webm', 'Larus occidentalis bei Bodega Bay.webm', 'Bernie Sanders interview compilation - The Laura Flanders Show - Part 1.webm', 'Bernie Sanders interview compilation - The Laura Flanders Show - Part 2.webm', 'Osmar Valdebenito ASBS 2016.webm', 'Gov.ntis.ava18921vnb1.ogv', 'JOSM 9900 en validator message \"Overlapping ways\" with shortcuts.ogv', 'William Fisher CopyrightX Lecture 3 4.webm', 'William Fisher CopyrightX Lecture 3 5.webm', 'William Fisher CopyrightX Lecture 3 3.webm', 'William Fisher CopyrightX Lecture 3 6.webm', 'William Fisher CopyrightX Lecture 6 2.webm', 'William Fisher CopyrightX Lecture 4 3.webm', 'William Fisher CopyrightX Lecture 5 1.webm', 'William Fisher CopyrightX Lecture 4 2.webm', 'William Fisher CopyrightX Lecture 6 3.webm', 'William Fisher CopyrightX Lecture 5 3.webm', 'William Fisher CopyrightX Lecture 4 1.webm', 'William Fisher,CopyrightX Lecture 5 2.webm', 'William Fisher CopyrightX Lecture 6 1.webm', 'William Fisher CopyrightX Lecture 7 3.webm', 'Thalie Envolée - Arthur Rimbaud - Le Dormeur du val.oga', 'William Fisher CopyrightX Lecture 8 3.webm', 'William Fisher CopyrightX Lecture 7 1.webm', '2016-03-09 11-45-50 manif-belfort.ogv', 'William Fisher CopyrightX Lecture 8 2.webm', 'William Fisher CopyrightX Lecture 7 2.webm', 'William Fisher CopyrightX Lecture 8 1.webm', 'William Fisher CopyrightX Lecture 9 3.webm', 'William Fisher CopyrightX Lecture 9 1.webm', 'William Fisher CopyrightX Lecture 9 2.webm', 'Arsenij Yatsenyuk voice.oga', 'William Fisher CopyrightX Lecture 10 3.webm', 'William Fisher,CopyrightX,Lecture 12 3.webm', 'William Fisher CopyrightX Lecture 10 1.webm', 'William Fisher CopyrightX Lecture 12 1.webm', 'William Fisher, CopyrightX, Lecture 12 2.webm', 'William Fisher CopyrightX Lecture 11 3.webm', 'William Fisher CopyrightX, Lecture 11 1.webm', 'William Fisher CopyrightX Lecture 10 2.webm', 'William Fisher CopyrightX Lecture 11 2.webm', 'Shame On You Rush Limbaugh.ogv', 'Login.ogg', 'Boycott Japanese goods 宋美齡在抗戰危急時呼籲抵制日貨英文.ogg', 'Medicare Price-Setting 101.webm', 'Tupolev Ant-20bis flight.ogv', 'APEC ABC.ogv', 'Wikipedia basics - watchlists.ogv', 'Bernie Brief (1) - Income Inequality.webm', 'Bernie Brief (3) - Climate Change.webm', 'Bernie Brief (2) - Social Security.webm', \"2009-06-06 President Obama's Weekly Address.ogv\", '1941-11-24 Mayor Samuels Proclaims City Defense Week.ogv', '1941-05-01 President Buys First Bond.ogv', \"2009-10-10 President Obama's Weekly Address.ogv\", 'Chamberlain resignation.ogg', \"2009-12-19 President Obama's Weekly Address.ogv\", \"2012-07-21 President Obama's Weekly Address.ogv\", \"2012-12-01 President Obama's Weekly Address.ogv\", \"2014-10-25 President Obama's Weekly Address.webm\", 'WikiArabia 2016 video message.webm', 'En-us-Wikipedia.ogg', 'President Obama and the First Family walk in Old Havana (HD).webm', \"2015-01-03 President Obama's Weekly Address.webm\", 'GT Verizon Communications Incorporated.ogg', 'NASA TV - New Horizons Pluto Launch (January 19, 2006).ogg', '4K Dron - Motocross Championship - MotoMax - PL.webm', 'The 2016 Art+Feminism Wikipedia Edit-a-thon (no subtitles).webm', 'United States Navy Band - Hey, Slavs.ogg', 'How a Wind Up Music Box Works engineerguy.webm', 'Thomas Edison Mary had lamb.ogg', 'Hino-Nacional-Brasil-coral-mec.ogg', 'Hino-Nacional-Brasil-coral-exército.ogg', 'Nieuws uit de West, garnalenvangst in de wateren van Suriname Weeknummer 58-32 - Open Beelden - 58892.ogv', 'Microsoft Anna example.ogg', 'Canción Nacional de Chile - Manuel Robles.ogg', 'Marcha Nacional.ogg', 'Trump Discovers Women Go to Bathroom - Bernie Sanders.webm', 'I Welcome Their Dislike - Bernie Sanders.webm', 'Terrorism Will Not Strike Fear in American Hearts - Bernie Sanders.webm', 'If Men Gave Birth to Babies.webm', 'Lionel Andrés Messi - Name.ogg', 'Pulque1.ogg', 'Djibouti anthem Somali lyrics.ogg', 'Nuit Debout.webm', 'WV Schools for the Deaf and Blind perform for Governor Tomblin.webm', 'Blocage UT2J 38 mars.webm', 'Campaña Iguales Chile 2.ogv', 'Discurso 2 de abril 2010.ogv', 'Gorriarán (UPyD) PP y PSOE no pueden vivir el uno sin el otro .webm', 'Arthur Sullivan - wax cylinder recording.ogg', 'Unions are my Family - Bernie Sanders.webm', 'President Obama Delivers Remarks on the 50th Anniversary of the Selma Marches.webm', 'Spot \"Soy Wikipedista\" WMAR.webm', 'The College Scorecard.webm', 'Meet John King.webm', 'Pl-jeden.ogg', 'Pl-trzy.ogg', \"2009-03-07 President Obama's Weekly Address.ogv\", 'Western Gull Golden Gate National Recreation Area.ogg', 'Handel - messiah - 02 comfort ye.ogg', \"2009-03-14 President Obama's Weekly Address.ogv\", \"2009-03-28 President Obama's Weekly Address.ogv\", \"2009-04-04 President Obama's Weekly Address.ogv\", 'Vinh Ha Long.ogg', 'Listening to the Latino Community - Bernie Sanders.webm', 'Mitch Kapor voice.ogg', '1942-03-03 Yukhnov.webm', 'Werner Herzog BBC Radio4 Start the Week 26 March 2012 b01dtjcj.flac', 'Gts (bbc) pips.ogg', 'Malta National Anthem.ogg', 'Pl-Lech Wałęsa.ogg', 'WikiArabia tech meetup in Ramallah 2016 (no subtitles).webm', 'Wikimedia Hackathon Jerusalem 2016 (no subtitles).webm', 'Acute cholecystitis.webm', \"Wilson's disease.webm\", 'People Should Not Be Forced to Drink Toxic Water - Bernie Sanders.webm', 'Secretary Clinton, Please Support our Tax on Carbon - Bernie Sanders.webm', 'We Demand Real Change - Bernie Sanders.webm', 'We Need A Vibrant Democracy - Bernie Sanders.webm', 'End Corporate Ownership of Prisons - Bernie Sanders.webm', 'The Hidden Cost of War - Bernie Sanders.webm', 'Joe Biden Likes our Aspirational Style - Bernie Sanders.webm', \"Lincoln's Gettysburg Address - Bernie Sanders.webm\", 'Philly Soda Tax Would Punish the Poor - Bernie Sanders.webm', \"America's Poverty is Among the World's Worst - Bernie Sanders.webm\", 'New Haven is a Microcosm of the Entire Country - Bernie Sanders.webm', 'What is the Dream that Inspires You - Bernie Sanders.webm', 'Joe Biden Likes Our Style - Bernie Sanders.webm', 'Disastrous Trade Deals Have Hurt Pennsylvania - Bernie Sanders.webm', 'Panama National Anthem.ogg', 'The Way We Dress - The Transformative Power of Clothes.webm', 'How a Wind Up Music Box Works.webm', 'Plastic Injection Molding.webm', 'Jaundice-video-osmosis.webm', 'Shock video.webm', 'Viral hepatitis.webm', 'Tavisupleba instrumental.ogg', 'Tavisupleba vocal.ogg', 'Geraldo Mesquita 26-10-2005.ogg', 'Iridium Flare01.ogg', 'Приказ ВГК от 8 мая 1945. Читает Юрий Левитан.ogg', 'Aortic dissection.webm', 'Charade (1963).webm', 'En-us-smitten.ogg', 'NWR audio Greensburg, Kansas tornado May 4, 2007.ogg', 'Making of Lunumiris.webm', 'This is the Wikimedia Foundation.webm', 'This is Wikipedia.webm', \"Premier talks Fort McMurray at Western Premiers' Conference kick-off.webm\", 'Tram parade in Moscow, 2014.webm', 'Ja-nihongo.ogg', 'Por qué hay desabastecimiento en Venezuela.ogv', 'Arteriosclerosis & Atherosclerosis video.webm', 'Kawasaki disease.webm', 'Angina video.webm', 'Viva Bernie - Bernie Sanders.webm', 'I am Proud to have Picketed for $15 an Hour - Bernie Sanders.webm', 'We are the Future of America and of the Democratic Party - Bernie Sanders.webm', 'Large Corporations Should Stop Lecturing Congress - Bernie Sanders.webm', 'Maybe It Is Time We Cut Their Compensation Packages - Bernie Sanders.webm', 'Solidaridad sin Fronteras -- Luz Meza.webm', 'Western Premiers focus on jobs and communities.webm', 'Invictus Games - US Navy May 11, 2016.webm', 'Invictus Games - US Navy - May 9, 2016.webm', 'Rocky Road to the Invictus Games.webm', 'WikiLive 2016 message from Katherine Maher.webm', 'Claire skinner bbc radio4 womans hour 01 09 2010.flac', 'Miranda Hart BBC Radio4 Desert Island Discs 22 Dec 2013 b03m3nhk.flac', 'Michael Laucke voice.flac', 'Invictus Games 2014.webm', 'Evolution of the Moon.ogv', 'Tony Kushner - Hollywood and Socialism.opus', 'Tom Friedman - 3 Minute Art History.opus', 'Ventricular tachycardia.webm', 'Ischemia video.webm', 'Hypoxia video.webm', 'Glen or Glenda (1953).webm', 'How to upload images at Wiki Loves Earth Moldova.ogv', 'Ventricular septal defects.webm', 'Sobre la gobernanza en internet.webm', 'Ventricular fibrillation video.webm', \"Here's to Engineering.webm\", 'The Faint Young Star Paradox - Solar Storms May Have Been Key to Life on Earth.webm', \"ScienceCasts - NASA's Next Great Space Telescope.webm\", 'Tetralogy of fallot video.webm', 'Филигран.ogv', 'Hu-rá.ogg', 'Aneurysms.webm', 'Vasculitis video.webm', 'Икарус-280.ogg', 'German national anthem performed by the US Navy Band.ogg', 'Planet Earth by Muqeem Khan.webm', 'ScienceCasts- Amazing Moons.webm', 'Basics of photography – how you learn to shoot better photos.webm', 'Hypoplastic left heart syndrome video.webm', 'Cardiac tumors video.webm', 'Bundle branch block video.webm', 'Lalkavol1 01 prus.ogg', 'Himno Club Sport Emelec.ogg', 'Truncus arteriosus video.webm', 'AV Block video.webm', 'Aortic coarctation.webm', 'Patent ductus arteriosus video.webm', 'Atrial septal defect video.webm', 'Creative Commons Music License Explained.webm', 'Summit Camp Greenland, aerial video.webm', 'Transposition of the great arteries video.webm', 'Heart attack video.webm', 'President Obama Speaks on Tragic Shooting in Orlando.webm', 'Kk-republic-of-kazakhstan.ogg', 'Atrial fibrillation video.webm', 'Aortic valve disease video.webm', 'Mitral valve diseases video.webm', 'Kagome Kagome.song.ogg', 'President Obama Delivers a Statement in Orlando.webm', 'President Obama Speaks on the Shooting in Orlando.webm', 'President Obama Delivers a Statement to the Press, 2016-06-14.webm', 'Anas platyrhynchos - Mallard - XC62258.ogg', 'Sound Effect - Door Bell.ogg', 'Cartoon on the birth of the Antonov An-28.ogv', 'Мультиплікаційний фільм - Ан-28.ogv', 'Autism spectrum disorder video.webm', '奧蘭多夜店爆恐襲,49人死於槍擊.webm', 'LIGO宣佈第二次探測到重力波.webm', 'Atrial flutter.webm', 'IUPAC命名Uut、Uup、Uus、Uuo四種化學元素.ogg', '英國脫歐公投-6月23日投票.ogv', 'Medium military transport aircraft An-70.webm', 'Announcing the Stonewall National Monument.webm', 'WAM English.webm', 'WAM Multi Language.webm', 'Fear and Desire (1953).webm', '1962-07-12 A Day in History.webm', 'The Snows of Kilimanjaro (1952).webm', 'Wikimania 2016 in Esino Lario, Italy (no subtitles).webm', 'Peripheral vascular disease video.webm', 'User Liberation.webm', 'Wikimania 2016, Jimmy Wales opening speech.webm', 'Sherlock Holmes and the Secret Weapon(1943).webm', 'Giuseppe Verdi - Anvil Chorus.ogg', 'Woodpecker.ogg', 'Lymphedema video.webm', 'Arteriovenous malformation video.webm', 'Wolff-parkinson-white syndrome video.webm', 'Nl-Hella Haasse.ogg', 'A Moment with Kate Rubins.webm', 'President Obama on the attacks in Dallas, Texas.webm', 'Donostiapedia edit-a-thon 2016 - video message from Katherine Maher.webm', 'President Obama on the fatal shootings of Alton Sterling and Philando Castile.webm', 'The President Honors the MLS Cup Champions.webm', 'Rose Garden Freestyle feat. Lin-Manuel Miranda.webm', 'The First Lady Hosts a Screening of \"Muppets Most Wanted\".webm', 'President Obama on Boosting Travel and Tourism.webm', 'Channel2 - Operation Protective Edge.webm', 'A Moment with Jeff Williams.webm', \"2016-07-09 President Obama's Weekly Address.webm\", \"2009-04-11 President Obama's Weekly Address.ogv\", 'A Fourth of July Celebration at the White House with the President and First Lady.webm', \"Raw Video- First Lady Michelle Obama & Big Bird Reunite at Lets Move! PSA's.webm\", '2015 White House Easter Egg Roll- Sesame Street Reads \"Just One You!\".webm', 'The First Lady, Elmo, and Rosita Partner to Encourage Healthy Food Choices for Kids.webm', 'Elmo & Maria Read \"Stretch\".webm', '2014 White House Easter Egg Roll- Sesame Street Characters Perform.webm', 'The Wikipedia Content Translation Tool reaches 100,000 translations (no subtitles).webm', 'President Obama hosts a Conversation on Community Policing and Criminal Justice.webm', 'President Obama Speaks at an Interfaith Memorial Service.webm', 'Artefact comparison ToS f15509.webm', 'Artefact comparison ToS f11811.webm', 'Artefact comparison ToS f04428.webm', '\"Enough!\" The first Jill Stein for President TV ad.webm', 'Stalinjeet speaking about Punjab Edit-a-thon 2016.webm', 'Channel 2 - Elections in Israel.webm', 'Liftoff of SpaceX CRS-9.webm', 'Provincie Flevoland - Het nieuwe land- Flevoland.webm', 'Provincie Flevoland - De vergeten haven.webm', '2015 World Series Champion Kansas City Royals.webm', 'Esto es un editatón de Wikipedia.webm', '7-21-16- White House Press Briefing.webm', \"2016-07-30 President Obama's Weekly Address.webm\", 'PronaturaVerFinal.webm', 'Ghimbav - Istoric al așezării.webm', '01-Biala-Magia-Gabriela-Oberbek.wav', '15-Wyroki-Gabriela-Oberbek.wav', \"2016-07-16 President Obama's Weekly Address.webm\", \"2016-07-23 President Obama's Weekly Address.webm\", \"2016-08-06 President Obama's Weekly Address.webm\", 'The Mercury 13 (As Told By U.S. Chief Technology Officer Megan Smith).ogg', 'Bake itunak-Peace Treaties wikimaratoia.webm', 'Donastiapedia edit-a-thon 2016 - video message from Katherine Maher.webm', 'United States Navy Band - Kong Kristian stod ved højen mast.ogg', 'Wikipedia in Education (12 of 12) Success and learning from failure.webm', 'Wikipedia in Education (11 of 12) Scaling and when to hire an employee.webm', 'Wikipedia in Education (10 of 12) Language and translation.webm', 'Wikipedia in Education (9 of 12) Motivating students.webm', 'Wikipedia in Education (1 of 12) Why do you teach Wikipedia?.webm', 'Wikipedia in Education (2 of 12) What was your first Wikipedia article?.webm', 'Wikipedia in Education (3 of 12) The five pillars of Wikipedia.webm', 'Wikipedia in Education (4 of 12) Assignments.webm', 'Wikipedia in Education (5 of 12) Brochures and tutorials.webm', 'Wikipedia in Education (6 of 12) The key to a successful education program.webm', 'Wikipedia in Education (7 of 12) Social media & connectivity.webm', 'Wikipedia in Education (8 of 12) Work with the Wikipedia community.webm', 'Evan Amos and the Wikipedia Effect.webm', 'MeekerBallGame.ogg', 'Ru-вряд ли.ogg', \"2016-06-18 President Obama's Weekly Address.webm\", \"2016-08-13 President Obama's Weekly Address.webm\", \"2016-07-02 President Obama's Weekly Address.webm\", 'Long QT syndrome and Torsade.webm', 'Het Noordbrabants Museum - Den Bosch Maquette Het Franse bombardement (2 6).webm', 'AbelRamirezInterview.webm', 'CELSO ZUBIREEntrevista.webm', 'ME-EME-meat.ogg', \"2016-08-20 President Obama's Weekly Address.webm\", 'S novym godom 2012.ogv', 'From Preda to Bergün with Rhaetian Railway, aerial video.webm', 'Paroramabahn Magdeburg.ogv', '20160702 Donostipedia-Eu Haur Literatura Elkarrizketak-motza.webm', '20160702 Donostipedia-Eu Haur Literatura Elkarrizketak.webm', 'Aerial firefighting operations in Oregon.webm', 'Dodenherdenking - Son en Breugel Nieuws.webm', 'National Liberal Club editathon August 2016 summary video.webm', 'Hypertension video.webm', 'Hypertrophic cardiomyopathy video.webm', 'Varicose veins and chronic venous insufficiency.webm', 'AVRT & AVNRT.webm', 'Heart failure.webm', 'Endocarditis.webm', 'Restrictive cardiomyopathy.webm', 'Dilated cardiomyopathy video.webm', 'Rheumatic fever & heart disease.webm', \"2016-08-27 President Obama's Weekly Address.webm\", 'Development of the pituitary gland.webm', 'Aunde Jande Rahi Puchde - Suhag (Punjabi Folksong).webm', 'Himmler am 4.10.1943 in Posen.ogg', \"2016-09-03 President Obama's Weekly Address.webm\", 'Ziad1.ogg', 'Mayday2.ogg', '001 Surah Al-Fatiha.ogg', \"2016-09-10 President Obama's Weekly Address.webm\", 'CDC PSA on H1N1.ogg', \"2016-09-17 President Obama's Weekly Address.webm\", 'İstiklal Marşı - National Anthem of Turkey.webm', 'Senator Elizabeth Warren questions Wells Fargo CEO John Stumpf at Banking Committee Hearing.webm', 'Brazil at War (1943).ogv', \"Yunitskiy's Sky Ways.webm\", 'Grace Hopper (As Told By U.S. Chief Technology Officer Megan Smith).oggvorbis.ogg', 'Kh-ckh-20160920-idttg71cb-web-hd.webm', 'Toespraak minister van Financiën bij aanbieden Miljoenennota 2016.webm', \"2016-09-24 President Obama's Weekly Address.webm\", 'US Constitution -- The \"Fifth Page\" (Transmittal Page).webm', 'To the Brink- JFK and the Cuban Missile Crisis.webm', 'Emancipation Proclamation 150th Anniversary at the National Archives.webm', \"President Ronald Reagan's Speech on Space Shuttle Challenger, January 28, 1986.webm\", 'The Role of the Combat Cameraman, 1952.webm', 'Eisenhower\\'s \"Military-Industrial Complex\" Speech Origins and Significance.webm', 'Recognition of the Japanese Zero Fighter, 1943.webm', 'Winning Your Wings, 1942.webm', 'Mind Your Military Manners- Military Etiquette and Grooming, 1971.webm', 'Pleasure of Your Company- Miltary Etiquette and Grooming, 1970.webm', \"Senator Elizabeth Warren on the Republicans' government shutdown threats.webm\", 'Katherine Maher video message Wiki Loves Earth Bulgaria awards ceremony 2016.webm', '2012-11-09 West Wing Week (Our Journey Forward) podcast.ogv', \"2012-11-16 West Wing Week (That's Who We Are) podcast.ogv\", 'West Wing Week- Mailbag Day Summer Edition.webm', 'President Obama Nominates Elena Kagan for Supreme Court.webm', 'Fa-مصدق.ogg', '\"You are not alone on this.\" - President Obama visits Baton Rouge.webm', 'Announcing the Katahdin Woods and Waters National Monument.webm', 'Hm.konungen.riksmotet2016.16d759.1080p.webm', '09-12-16- White House Press Briefing.webm', 'Intern Q&A with the President (a West Wing Week Special Edition).webm', 'A Gem from the Archive- Happy Birthday, POTUS! (August 3, 2009).webm', 'Senator Elizabeth Warren Celebrates the Career of Emily Winterson.webm', 'President Obama Delivers the Rutgers University Commencement Address.webm', 'President Obama Addresses the British Parliament.webm', 'President Obama Delivers the Commencement Address at Howard University.webm', 'The President Speaks to the Kenyan People.webm', 'International Conference \"Anti-Bullying Practices 2016\" 20-09-16 (WCSAG).ogg', 'WikiClubs promotional video (short verison).webm', 'When the Waves Swell.webm', \"2016-10-01 President Obama's Weekly Address.webm\", 'Silent Night (choral).ogg', 'The General (1926).webm', \"2016-10-08 President Obama's Weekly Address.webm\", \"2016-10-15 President Obama's Weekly Address.webm\", 'EN simpleshow foundation Fear of Flying explainer video.webm', 'EN simpleshow foundation Montessori explainer video.webm', 'Food Waste - explained by simpleshow foundation.webm', 'EN simpleshow foundation Visual Perception educational video.webm', 'Adam 2015-01 Warning Heroin sold als Cocain.webm', 'UCSF and Wiki Ed Medical Outreach, Amin Azzam.webm', 'UCSF and Wiki Ed Medical Outreach, Tina Brock.webm', 'UCSF and Wiki Ed Medical Outreach, Samantha Erickson.webm', 'Ja-Godzilla.oga', 'Cyberattack Slows US Access to Popular Sites.webm', 'Ru-независимый.ogg', \"FixCopyright- Copy explains 'Freedom of Panorama'.webm\", 'Azerbaijan national anthem (vocal version).ogg', 'Ramesh Powar.ogg', 'Video Luciana Galastri e o Editathon.webm', \"2016-10-29 President Obama's Weekly Address.webm\", 'Trick or Treat- Halloween 2016 at the White House.webm', 'State Arrival Ceremony for Prime Minister Renzi.webm', 'Couch Commander.webm', 'President Obama Delivers a Statement with Prime Minister Theresa May of the United Kingdom.webm', 'President Obama Speaks to the Australian Parliament.webm', 'President Obama Speaks at Hankuk University.webm', 'President Obama Addresses the Irish People.webm', 'President Obama Addresses Parliament.webm', 'President Obama and Prime Minister Trudeau Deliver Remarks at State Dinner.webm', 'For freedom of information - Allan Aguilar.webm', 'President Obama Participates in a Trilateral Press Conference.webm', 'CITIZENFOUR (2014) trailer.webm', 'Saganaki at the Parthenon Restaurant in Chicago.MOV.webm', 'Video Cicero Moraes e o Commons.webm', \"2016-11-05 President Obama's Weekly Address.webm\", 'Ja-Hentai.oga', 'Video ICIB, IAIDIGITAL e Digitalizacao.webm', 'Trams in Prague 2012-03-03 and 2012-03-04-eC7m62qhYlY.webm', 'Katherine Maher at MozFest 2016 Privacy and Harassment on the Internet.webm', \"2016-11-12 President Obama's Weekly Address.webm\", 'Senator Elizabeth Warren- President-Elect Trump Already Broke Promise to \"Drain the Swamp\".webm', 'Gallstones-osmosis-video.webm', 'Leise rieselt der Schnee fuer Gitarre und Cello.ogg', 'Chronic cholecystitis.webm', 'Malignant liver tumors video.webm', 'Benign liver tumors.webm', 'President Obama and Prime Minister Trudeau.webm', \"2016-11-19 President Obama's Weekly Address.webm\", 'Andrew Copson defining humanism, skepticism, religion.webm', 'President Obama and the First Family Take a Walk in Old Havana (2).webm', 'The First Family Takes in a Baseball Game in Havana, Cuba.webm', 'President Obama Meets with President-Elect Trump.webm', 'Raw Video- The President Takes a Surprise Walk.webm', 'Gimn Sovetskogo Soyuza (1977 Vocal).oga', 'President Obama and the First Family Take a Walk in Old Havana.webm', 'A chat with Katherine Maher - Executive Director of the Wikimedia Foundation (no subtitles).webm', '10 Struggle to create an united Slovenian state (Ciril Zlobec).webm', '05 Confinement; Surrender of Italy (Ciril Zlobec).webm', '02 First contacts with fascism (Ciril Zlobec).webm', '01 Introduction (Ciril Zlobec).webm', '03 Decision to join the partisan forces (Ciril Zlobec).webm', '06 First combat with German forces (Ciril Zlobec).webm', '07 Activities in the partisan movement (Ciril Zlobec).webm', '08 The prayer book anecdote; teacher in the partisan school (Ciril Zlobec).webm', '09 Being an individualist in war time (Ciril Zlobec).webm', 'Raw Video- The First Lady and Bo Surprise White House Visitors.webm', '\"What\\'s the secret to still dancing at 106-\".webm', 'My good fortune in Auschwitz.webm', 'Kazakhstan national anthem, played by the U.S. Navy Band.ogg', 'President Obama Meets with the 2016 American Nobel Prize Winners.webm', 'First Lady Michelle Obama Welcomes the Official White House Christmas Tree to the White House.webm', 'Senator Elizabeth Warren- floor speech on 21st Century Cures.webm', 'Senator Elizabeth Warren- Floor speech on 21st Century Cures Act.webm', '11-28-16- White House Press Briefing.webm', 'West Wing Week- 11-25-16 or, \"Tater & Tot\".webm', '11-29-16- White House Press Briefing.webm', 'Weekly Address- Coming Together On Thanksgiving.webm', \"2016-11-25 President Obama's Weekly Address.webm\", \"Raw Footage- President Obama's Surprise Lunch Stop.webm\", 'President Obama visits Joplin, Missouri, May 29, 2011.webm', 'Raw Video- President Obama at Iowa Diner.webm', 'Inside the White House- Beer Brewing.webm', 'Greetings from the President- Hola, Alo, Namaste!.webm', 'Springfield- Where It Began.webm', 'President Obama with Stephen Colbert.webm', '12-14-12- White House Press Briefing.webm', 'Raw Video- President Obama in Iowa Bookstore.webm', 'Introducing the Newest Obama - Sunny.webm', \"The Obamas' New Dog.webm\", '4-9-12- White House Press Briefing.webm', 'President Obama Speaks to Australian High School Students.webm', 'Get Prepared with Bo And Sunny.webm', 'Bo Inspects the 2012 White House Holiday Decorations.webm', 'On Board with President Obama- Touching Down in Anchorage.webm', 'The Gingerbread White House.webm', \"All the President's Pens.webm\", '11-9-12- White House Press Briefing.webm', '9-10-12- White House Press Briefing.webm', '4-4-12- White House Press Briefing.webm', 'Behind the Scenes - Preparing for the Pope.webm', 'President Obama Speaks to U.S. and Australian Service Members.webm', 'President Obama Speaks at U.S. Army Garrison Yongsan.webm', 'President Obama Pays a Surprise Visit to Troops in Afghanistan.webm', 'President Obama and the First Lady Speak to Troops at Fort Bragg.webm', 'The President Awards the Medal of Honor to Corporal William \"Kyle\" Carpenter.webm', '10-27-16- White House Press Briefing.webm', 'Steven Spielberg\\'s \"Obama\".webm', 'President Obama Sings \"Sweet Home Chicago\".webm', \"The President's Speech Trailer.webm\", \"The President Gets Laughs at the White House Correspondents' Dinner.webm\", 'President Obama at White House Correspondents Dinner.webm', 'Behind the Scenes of Presidential Advance- Part 2.webm', 'Behind the Scenes of Presidential Advance- Part 1.webm', 'Cinco de Mayo at the White House.webm', 'President Obama Welcomes the Los Angeles Lakers.webm', 'President Obama Attends the Memorial Service for Former Israeli President Shimon Peres.webm', '12-11-13- White House Press Briefing.webm', \"President Obama at White House Correspondents' Dinner.webm\", 'President Obama Celebrates Cinco de Mayo.webm', 'The 2014 NBA Champion San Antonio Spurs Visit the White House.webm', '2016 NBA Champion Cleveland Cavaliers.webm', 'President Obama Tours the 2014 White House Science Fair.webm', 'President Obama at 2011 White House Correspondents Dinner.webm', 'Celebrating 20th Century Art in the White House.webm', '2017 ACA Open Enrollment Kickoff and Briefing.webm', 'Cabinet Secretaries Armchair Discussion on Vets.webm', 'Inclusive STEM Education for Youth of Color.webm', '06 Everyday life at Auschwitz-Birkenau (Lucien Ducastel).webm', 'President Obama Attends a Trans-Pacific Partnership.webm', '10-31-16- White House Press Briefing.webm', 'Inside the White House- The Medal of Honor.webm', \"Weekly Address- The First Lady Marks Mother's Day and Speaks Out on the Tragic Kidnapping in Nigeria.webm\", 'President Obama Delivers Morehouse College Commencement Address.webm', 'President Obama Speaks at the Dedication of the George W. Bush Presidential Library.webm', 'President Obama Holds a Press Conference.webm', 'President Obama Awards the Medal of Honor.webm', '11-9-16- White House Press Briefing.webm', 'The President Presents the Medal of Honor to U.S. Navy Senior Chief Edward Byers, Jr..webm', 'The President Presents the Medal of Honor to Captain Groberg.webm', 'President Obama Honors the 2013 National Teacher of the Year.webm', 'Alex Meets the President.webm', 'Clothes Cleaning Process.webm', '9-11 Research - Factors Associated with Poor Control of 9 11-Related Asthma 10 Years Post-Disaster.webm', '9-11 Research - How Do We Plan to Study 9 11 Exposures and Resulting Cancer Risk to WTC Workers.webm', '9-11 Research - What are the Three Types of Cancer Found to Increase in WTC Exposed Populations.webm', '9-11 Research - What are we Finding Related to Airway Injury to Patients Exposed to WTC Dust.webm', '9-11 Research - What Do Trace Elements in Autopsy Tissues of WTC Decedents Tell Us.webm', '9-11 Research - What is the Impact of Differential Levels of WTC Exposure and Binge Drinking.webm', '9-11 Research - What is the Relationship between WTC Injuries and Chronic Health effects.webm', '9-11 Research - What is the Risk of WTC Responders Developing PTSD as a Result of 9 11 Exposures.webm', '9-11 Research - What Role Does Airway Inflammation Play in Obstructive Airway Disease.webm', 'A construction framer talks about protecting his crew from falls.webm', 'A new field-based approach to silica monitoring for mines.webm', 'A Particle is a Particle.webm', 'A Talk about NIOSH Field Studies and Partnership - CO and Houseboats.webm', 'Acoso sexual - Protéjase en el trabajo.webm', 'Aging, Exercise and Injury Prevention - A Molecular Physiology Approach.webm', 'Anthrax surface sampling - How to sample with cellulose sponge on nonporous surfaces.webm', 'Anthrax surface sampling- How to sample with macrofoam swab on nonporous surfaces.webm', 'Arc Flash Awareness.webm', 'Big or Small - OHSN Uses Standardized Language for All.webm', 'Bike Patrol Officers Safety Check List.webm', 'Blast Area Security.webm', 'Buy Quiet Construction Video.webm', 'Buy Quiet – For Manufacturers.webm', 'Construcción - Protéjase en el Trabajo.webm', 'Cutting fiber cement siding -- silica dust and lung disease.webm', 'Efficacy of Face Shields Against Cough Aerosol Droplets from a Cough Simulator.webm', 'Emergency Responder Health Monitoring and Surveillance Overview.webm', 'Enhancing the State-of-the-Art - Radiographic Tools for Investigating Occupational Lung Disorders.webm', 'Escape From Farmington No 9 An Oral History.webm', 'Faces of Black Lung.webm', 'Fall protection allows his men to go home at the end of the day.webm', 'Hand Arm Vibration Study.webm', 'Handling Explosives in Underground Mines.webm', 'Hazards in Motion.webm', 'Healthcare worker protective research- Is flushing the toilet hazardous-.webm', 'President Obama and Prime Minister Turnbull.webm', 'Press Briefing by Deputy Press Secretary Bill Burton.webm', '7-27-10- White House Press Briefing.webm', '5-17-10- White House Press Briefing.webm', '3-31-10- White House Press Briefing.webm', '5-5-10- White House Press Briefing.webm', '06-21-10- Press Briefing by Deputy Press Secretary Bill Burton.webm', '6-29-10- White House Press Briefing.webm', '4-26-10- White House Press Briefing.webm', '7-22-10- White House Press Briefing.webm', '7-13-10- White House Press Briefing.webm', '4-14-10- White House Press Briefing.webm', '7-21-10- White House Press Briefing.webm', '7-12-10- White House Press Briefing.webm', '8-11-10- White House Press Briefing.webm', '8-3-10- White House Press Briefing.webm', '6-22-10- White House Press Briefing.webm', '5-3-10- White House Press Briefing.webm', '7-19-10- White House Press Briefing.webm', '4-21-10- White House Press Briefing.webm', 'Press Briefing on Oil Spill in Gulf of Mexico.webm', '3-22-10- White House Press Briefing.webm', '4-6-10- White House Press Briefing.webm', '5-4-10- White House Press Briefing.webm', '5-6-10- White House Press Briefing.webm', '7-1-10- White House Press Briefing.webm', '5-10-10- White House Press Briefing.webm', '5-11-10- White House Press Briefing.webm', '4-19-10- White House Press Briefing.webm', '7-14-10- White House Press Briefing.webm', '3-24-10- White House Press Briefing.webm', '8-13-10- White House Press Briefing.webm', '6-10-10- White House Press Briefing.webm', '7-26-10- White House Press Briefing.webm', '6-9-10- White House Press Briefing.webm', '6-1-10- White House Press Briefing.webm', '5-22-10- White House Press Briefing.webm', '6-3-10- White House Press Briefing.webm', '6-7-10- White House Press Briefing.webm', '5-24-10- White House Press Briefing.webm', 'Press Briefing with Vice President Biden and Press Secretary Gibbs.webm', '6-16-10- White House Press Briefing.webm', '7-29-10- White House Press Briefing.webm', '5-20-10- White House Press Briefing.webm', '8-4-10- White House Press Briefing.webm', '2-26-10- White House Press Briefing.webm', '3-11-10- White House Press Briefing.webm', '3-9-10- White House Press Briefing.webm', '3-12-10- White House Press Briefing.webm', '3-16-10- White House Press Briefing.webm', '3-4-10- White House Press Briefing.webm', '3-1-10- White House Press Briefing.webm', '3-18-10- White House Press Briefing.webm', '1-26-10- White House Press Briefing.webm', '1-25-10- White House Press Briefing.webm', '2-23-10- White House Press Briefing.webm', '2-22-10- White House Press Briefing.webm', '2-12-10- White House Press Briefing.webm', '1-20-10- White House Press Briefing.webm', '1-15-10- White House Press Briefing.webm', '2-17-10- White House Press Briefing.webm', '2-16-10- White House Press Briefing.webm', '1-21-10- White House Press Briefing.webm', '2-4-10- White House Press Briefing.webm', '2-11-10- White House Press Briefing.webm', '1-14-10- White House Press Briefing.webm', '9-29-09- White House Press Briefing.webm', '11-23-09- White House Press Briefing.webm', '8-20-09- White House Press Briefing.webm', '11-6-09- White House Press Briefing.webm', '1-8-10- White House Press Briefing.webm', '8-31-09- White House Press Briefing.webm', '1-11-10- White House Press Briefing.webm', '12-22-09- White House Press Briefing.webm', '10-8-09- White House Press Briefing.webm', '11-2-09- White House Press Briefing.webm', \"President Obama's Primetime Press Conference on Health Reform.webm\", '1-5-10- White House Press Briefing.webm', '10-14-09- White House Press Briefing.webm', '9-16-09- White House Press Briefing.webm', 'Press Briefing on Security Review.webm', '11-3-09- White House Press Briefing.webm', '8-21-09- White House Press Briefing.webm', '10-9-09- White House Press Briefing.webm', '12-7-09- White House Press Briefing.webm', '9-30-09- White House Press Briefing.webm', '11-5-09- White House Press Briefing.webm', '9-10-09- White House Press Briefing.webm', '10-19-09- White House Press Briefing.webm', '10-30-09- White House Press Briefing.webm', '1-19-10- White House Press Briefing.webm', '12-15-09- White House Press Briefing.webm', '10-5-09- White House Press Briefing.webm', '8-7-09- White House Press Briefing.webm', '12-9-09- White House Press Briefing.webm', '12-16-09- White House Press Briefing.webm', '9-8-09- White House Press Briefing.webm', '10-1-09- White House Press Briefing.webm', '10-7-09- White House Press Briefing.webm', '7-28-09- White House Press Briefing.webm', '10-22-09- White House Press Briefing.webm', '6-16-09- White House Press Briefing.webm', '7-27-09- White House Press Briefing.webm', '8-19-09- White House Press Briefing.webm', '11-30-09- White House Press Briefing.webm', '6-18-09- White House Press Briefing.webm', '8-12-09- White House Press Briefing.webm', '6-26-09- White House Press Briefing.webm', '5-26-09- White House Press Briefing.webm', '6-2-09- White House Press Briefing.webm', '5-29-09- White House Press Briefing.webm', '7-2-09- White House Press Briefing.webm', 'Secretary of State Clinton Briefs Press on Aid to Pakistan.webm', '6-12-09- White House Press Briefing by Robert Gibbs and UN Ambassador Susan Rice.webm', '6-1-09- White House Press Briefing.webm', '8-18-09- White House Press Briefing.webm', '6-23-09- White House Press Briefing with President Obama.webm', '7-13-09- White House Press Briefing.webm', '10-28-09- White House Press Briefing.webm', '5-28-09- White House Press Briefing.webm', '8-6-09- White House Press Briefing.webm', '7-20-09- White House Press Briefing.webm', '6-10-09- White House Press Briefing.webm', '11-9-09- White House Press Briefing.webm', '10-13-09- White House Press Briefing.webm', '6-25-09- White House Press Briefing.webm', '6-9-09- White House Press Briefing.webm', '5-8-09- White House Press Briefing.webm', '5-13-09- White House Press Briefing.webm', '6-19-09- White House Press Briefing.webm', '10-6-09- White House Press Briefing.webm', '6-17-09- White House Press Briefing.webm', '5-22-09- White House Press Briefing.webm', '8-3-09- White House Press Briefing.webm', '8-4-09- White House Press Briefing.webm', '9-28-09- White House Press Briefing.webm', '5-27-09- White House Press Briefing.webm', '5-7-09- White House Press Briefing.webm', '5-15-09- White House Press Briefing.webm', '4-20-09- White House Press Briefing.webm', '5-19-09- White House Press Briefing.webm', '5-1-09- White House Press Briefing.webm', '4-21-09- White House Press Briefing.webm', '5-21-09- White House Press Briefing.webm', '4-30-09- White House Press Briefing.webm', '4-28-09- White House Press Briefing.webm', '1-6-10- White House Press Briefing.webm', '4-27-09- White House Press Briefing.webm', 'Press Briefing on H1N1 Influenza.webm', '4-24-09- White House Press Briefing.webm', '6-8-09- White House Press Briefing.webm', '4-15-09- White House Press Briefing.webm', '5-20-09- White House Press Briefing.webm', '7-24-09- White House Press Briefing.webm', '5-6-09- White House Press Briefing.webm', '9-17-09- White House Press Briefing.webm', '9-18-09- White House Press Briefing.webm', '5-5-09- White House Press Briefing.webm', 'Helping miners escape from a mining disaster.webm', 'Hidden Scars.webm', 'How Poison Ivy Works.webm', 'How to Wear Soft Foam Earplugs using the Roll-Pull-Hold technique.webm', 'Improving EMS Worker and Patient Safety Through Crash Testing.webm', 'Indium Lung Disease.ogv', 'Indium Lung Disease.webm', 'Know Your Nailer- Nail Gun Safety.webm', 'Let OHSN Data Guide Your Interventions.webm', 'Make it Safer with Roof Screen.webm', 'Man Overboard Prevention and Recovery.webm', 'Mast Climber Stability Research.webm', 'Mechanical arm effects on portable grinder vibrations.webm', \"Miner Mike Saves the Day! or Ground Support... It's Important!.webm\", 'Move It Rig Move Safety for Roughnecks.webm', 'Move It Rig Move Safety for Truckers.webm', '4-13-09- White House Press Briefing.webm', 'N95 Respirator Use During Advanced Pregnancy.webm', 'NIOSH Dose Reconstruction Program Video.webm', '3-27-09- White House Press Briefing.webm', '4-14-09- White House Press Briefing.webm', '3-23-09- White House Press Briefing.webm', '3-26-09- White House Press Briefing.webm', '3-20-09- White House Press Briefing.webm', '3-30-09- White House Press Briefing.webm', '9-9-10- White House Press Briefing.webm', '9-7-10- White House Press Briefing.webm', '4-9-09- White House Press Briefing.webm', '3-13-09- White House Press Briefing.webm', 'NIOSH Health Hazard Evaluations- Sampling for Exposures.webm', '3-16-09- White House Press Briefing.webm', 'NIOSH Nano Research - Engineering Controls for Nanomaterial Production and Handling Processes.webm', '3-25-09- White House Press Briefing.webm', '9-2-10- White House Press Briefing.webm', 'NIOSH Research on Refuge Alternatives for Underground Coal Mines.webm', 'NIOSH Scientists Investigating Pollution From Office Equipment.webm', '3-17-09- White House Press Briefing.webm', \"2016-12-03 President Obama's Weekly Address.webm\", '4-23-09- White House Press Briefing.webm', '5-18-09- White House Press Briefing.webm', 'Iridium flare in Cassiopeia.webm', '6-24-09- White House Press Briefing.webm', 'President Obama Discusses a Public Option at his Press Conference.webm', 'President Obama Updates the Press 12-29.webm', '8-30-10- White House Press Briefing.webm', 'President Obama speaks to the Press in Hawaii 12-28.webm', 'President Obama Speaks to the Press After Security Meeting.webm', 'President Obama Speaks to Press After Cabinet Meeting.webm', '2-1-10- White House Press Briefing.webm', '6-30-09- White House Press Briefing.webm', '7-1-09- White House Press Briefing.webm', '8-13-09- White House Press Briefing.webm', '7-30-09- White House Press Briefing.webm', '6-22-09- White House Press Briefing.webm', '12-2-09- White House Press Briefing.webm', 'Robert Gibbs To Take Your Questions on BP Oil Spill.webm', \"VP Biden on Rep. Joe Barton's Apology to BP.webm\", '3-30-10- White House Press Briefing.webm', '02-03-2010 - Press Briefing by Deputy Press Secretary Bill Burton.webm', 'Deepwater BP Oil Spill- Presidential Press Conference.webm', 'President Obama Speaks to Press on Air Force One.webm', 'Nuclear Security Summit Press Briefing.webm', 'The President on the 10-year Anniversary of Hurricane Katrina.webm', 'Press Briefing on START Nuclear Treaty.webm', 'Nuclear Security Summit- Press Conference.webm', 'The President Speaks at the National Clean Energy Summit.webm', 'The U.S. Re-Opens Our Embassy in Havana, Cuba.webm', 'Ko-hana-dul-set-net-daseot-yeoseot-ilgop-yeodeol-ahop-yeol.ogg', 'Ko-보호하다.oga', '6-7-15- White House Press Briefing.webm', '02-09-2010 - President Obama Holds Press Conference.webm', '6-5-15- White House Press Briefing.webm', '7-6-15- White House Press Briefing.webm', '6-15-15- White House Press Briefing.webm', 'President Obama Speaks to the People of Africa.webm', '6-23-15- White House Press Briefing.webm', '6-17-15- White House Press Briefing.webm', '7-20-15- White House Press Briefing.webm', '8-28-15- White House Press Briefing.webm', '6-12-15- White House Press Briefing.webm', 'Presidential Medal of Freedom Recipient John Glenn.webm', 'President Obama Meets With President-Elect Trump.webm', 'Raw Video- President Obama in Omaha.webm', 'Parking Gate Crash.webm', 'The 2011 State of the Union Address.webm', '10-20-15- White House Press Briefing.webm', 'The 2013 State of the Union Address (Enhanced Version).webm', '6-29-15- White House Press Briefing.webm', '7-9-15- White House Press Briefing.webm', '6-24-15- White House Press Briefing.webm', '6-25-15- White House Press Briefing.webm', '6-22-15- White House Press Briefing.webm', '8-4-15- White House Press Briefing.webm', '6-4-15- White House Press Briefing.webm', '8-3-16- White House Press Briefing.webm', '7-28-16- White House Press Briefing.webm', 'The 2011 State of the Union Address- Enhanced Version.webm', '7-13-15- White House Press Briefing.webm', '7-8-15- White House Press Briefing.webm', '9-16-15- White House Press Briefing.webm', '7-14-16- White House Press Briefing.webm', '5-22-15- White House Press Briefing.webm', '5-5-15- White House Press Briefing.webm', '5-1-15- White House Press Briefing.webm', '5-21-15- White House Press Briefing.webm', '2-24-15- White House Press Briefing.webm', '3-31-15- White House Press Briefing.webm', '5-12-15- White House Press Briefing.webm', '4-30-15- White House Press Briefing.webm', '1-30-15- White House Press Briefing.webm', '2-3-15- White House Press Briefing.webm', '12-17-14- White House Press Briefing.webm', '1-6-15- White House Press Briefing.webm', '1-5-15- White House Press Briefing.webm', '12-5-14- White House Press Briefing.webm', '12-18-14- White House Press Briefing.webm', '10-28-14- White House Press Briefing.webm', '12-2-14- White House Press Briefing.webm', '12-3-14- White House Press Briefing.webm', '11-3-14- White House Press Briefing.webm', '5-14-15- White House Press Briefing.webm', '2-4-15- White House Press Briefing.webm', '11-18-14- White House Press Briefing.webm', '2-10-15- White House Press Briefing.webm', 'Welcome to our channel- Drugslab.webm', '3-27-15- White House Press Briefing.webm', '4-13-15- White House Press Briefing.webm', '2-18-15- White House Press Briefing.webm', '2-23-15- White House Press Briefing.webm', 'Ritalin makes Nellie hyper (methylphenidate) - Drugslab.webm', \"Poppers - Do's and don'ts - Drugslab.webm\", \"Spacecake (cannabis - THC) - Do's and don'ts - Drugslab.webm\", \"Nitrous oxide (N20) - Do's and don'ts - Drugslab.webm\", \"LSD (Acid) - Do's and don'ts - Drugslab.webm\", \"Ecstasy (XTC - MDMA) Do's and don'ts - Drugslab.webm\", '3-2-15- White House Press Briefing.webm', 'President Obama Holds the 2014 Year-End Press Briefing.webm', \"Hash (hashish) - Do's and don'ts - Drugslab.webm\", \"Speed - Do's and don'ts - Drugslab.webm\", \"MDMA crystals - Do's and dont's - Drugslab.webm\", \"Magic mushrooms - do's and don'ts - Drugslab.webm\", 'President Obama Nominates Ashton Carter as Secretary of Defense.webm', 'Bastiaan eats spacecake (cannabis - THC) - Drugslab.webm', '12-12-14- White House Press Briefing.webm', \"GHB - Do's and don'ts - Drugslab.webm\", \"Ketamine (special K ) - do's and don'ts - Drugslab.webm\", 'Rens tries Ecstasy (XTC - MDMA) - Drugslab.webm', 'The First Lady Delivers Remarks at \"Hamilton at the White House\" Workshop.webm', 'Rens becomes horny of GHB - Drugslab.webm', \"2C-B - Do's and don'ts - Drugslab.webm\", 'Bastiaan sniffs ketamine (special K) - Drugslab.webm', '11-24-14- White House Press Briefing.webm', '1-28-15- Press Briefing by Principal Deputy Press Secretary Eric Schultz.webm', 'Rens goes fast on speed (Amphetamine) - Drugslab.webm', \"Caffeine - Do's and don'ts - Drugslab.webm\", \"Ritalin (methylphenidate) - Do's and don'ts - Drugslab.webm\", 'Nellie trips on 2C-B - Drugslab.webm', 'Bastiaan trips balls on LSD (Acid) - Drugslab.webm', '4-23-15- White House Press Briefing.webm', 'Rens trips on magic mushrooms - Drugslab.webm', 'Rens swallows pure Caffeine - Drugslab.webm', '1-26-15- White House Press Briefing.webm', 'Nellie smokes hash (hashish) - Drugslab.webm', '11-11-14- Press Briefing in Beijing, China.webm', 'Nellie dances on MDMA crystals - Drugslab.webm', 'Katherine Maher voice.ogg', 'Rens & Bastiaan fly high on nitrous oxide (N20) - Drugslab.webm', '10-27-14- White House Press Briefing.webm', '1-12-15- White House Press Briefing.webm', '11-6-14- White House Press Briefing.webm', '9-3-15- White House Press Briefing.webm', 'Ru-насквозь.ogg', 'New Year Address by Acting President Vladimir Putin, 1999.ogv', '12-8-14- White House Press Briefing.webm', '10-24-14- White House Press Briefing.webm', '11-19-14- White House Press Briefing.webm', '6-10-15- White House Press Briefing.webm', '10-22-14- White House Press Briefing.webm', '12-11-14- White House Press Briefing.webm', '4-16-15- White House Press Briefing.webm', '4-27-15- White House Press Briefing.webm', '1-29-15- White House Press Briefing.webm', '4-21-15- White House Press Briefing.webm', 'Radio Moscow announcement of Valentina Tereshkova space flight.ogg', 'Durga Puja.ogg', \"2016-12-10 President Obama's Weekly Address.webm\", 'Hochwasser 2013 Linz Donau.webm', \"Ha'apala After The World War II - en.webm\", 'Nurses Voices (Unit 2) from NIOSH Workplace Violence Prevention for Nurses Course.webm', 'Occupational Ladder Fall Injuries — United States, 2011.webm', 'OHSN - Created with Nurses for Nurses.webm', 'OHSN Provides Secure Benchmarking.webm', 'Partial Cab Video.webm', 'Paul Revere - A Story of Survival on Bristol Bay.webm', 'Peak and Mixed Exposures to Cleaning and Disinfecting Chemicals - Research Study.webm', 'Practical Demonstrations of Ergonomic Principles.webm', 'Procesamiento de carnes - Protéjase en el trabajo.webm', 'Reducing Dust inside Enclosed Cabs.webm', 'Research Testing of Total Inward Leakage of Negative Pressure Respirators.webm', 'Research to Inform the Prevention of Asthma in Health Care – Research Study.webm', 'Respirator Certification - As Vital as the Air We Breathe.webm', 'Rock Falls - Preventing Rock Fall Injuries in Underground Mines.webm', 'Simple Steps for Creating an Organizational Culture of Health.webm', 'Start verkoop Pinkpop-kaartjes 2016 Sittard-Geleen.webm', 'The President Meets with His Royal Highness Prince Harry of the United Kingdom.webm', \"Indonesia's Example to the World.webm\", 'First Lady Michelle Obama Plants the White House Kitchen Garden.webm', 'First Lady Michelle Obama Marks Diwali at the White House.webm', 'Открытый доступ 2016.ogg', 'The President Meets with the Prime Minister of India in Paris.webm', 'The President Holds a Bilateral Meeting with the President of Indonesia.webm', 'President Obama Addresses the United Nations General Assembly.webm', 'President Obama Meets with President Nieto of Mexico.webm', 'President Obama Speaks on U.S. Intelligence Programs.webm', 'The President and Dr. Biden Speak at Macomb Community College.webm', 'President Obama and First Lady Michelle Obama Host Black History Month Reception.webm', \"2016-12-17 President Obama's Weekly Address.webm\", 'President Obama and Prime Minister Gillard of Australia.webm', 'President Obama Holds a Bilateral Meeting with President Xi of China.webm', 'President Obama & Prime Minister Gillard Visit Wakefield High School.webm', 'President Obama on the Relationship Between Australia and the United States.webm', \"President Obama's Bilateral Meeting with Prime Minister Abbott of Australia.webm\", 'Press Briefing with President Obama and President Clinton.webm', 'The President Holds a Bilateral Meeting with the Prime Minister of Australia.webm', \"President Obama's News Conference with Prime Minister Gillard of Australia.webm\", 'The President Holds a Press Conference in Brisbane.webm', 'President Obama Meets with General Colin Powell.webm', 'Travels with The President - Rome & Vatican City.webm', 'On Board- Travels with the First Lady in China, Beijing.webm', 'On Board with President Obama in Japan.webm', 'On Board- Travels with the First Lady in China, Terracotta Warriors.webm', 'Being Biden- A Senate Swearing-In.webm', 'On Board- Behind the Scenes with the President & The First Lady at Robben Island.webm', 'Travels with the President- On Board in China.webm', 'On Board- Travels with the First Lady in China, The Great Wall of China.webm', 'President Obama & Pope Francis Meet in the West Wing.webm', 'President Obama Meets with President Bachelet of Chile.webm', 'West Wing Week- 4-23-10 \"Competing the Old-Fashioned Way\".webm', 'West Wing Week- 4-16-10 - \"The Interpreter\\'s Lounge\".webm', 'West Wing Week- 06-04-10 or \"More All\".webm', \"President Obama's Bilateral Meeting with Prime Minister Helle Thorning-Schmidt of Denmark.webm\", 'West Wing Week- 07-02-10 or \"Home of the Kringle\".webm', \"President Obama's Bilateral Meeting with President Cristina Fernandez de Kirchner of Argentina.webm\", 'West Wing Week- 05-28-10 or \" I, State Your Name\".webm', 'On Board- Travels with the Vice President in Asia.webm', '36 Hours in Ukraine with Vice President Biden.webm', 'President Obama and President Michelle Bachelet of Chile.webm', 'Travels with The First Lady- Africa.webm', 'Lunch in Honor of Chancellor Merkel.webm', 'The President Meets with the King of the Netherlands.webm', 'The President Holds his 2015 End-of-Year Press Conference.webm', 'West Wing Week- 12-12-14 or, \"Zeros & Ones\".webm', 'West Wing Week- 02-15-13 or \"You\\'re a Hero\".webm', 'State Dinner for German Chancellor Merkel.webm', 'West Wing Week 08-01-14- A Walk Down Main Street with President Obama.webm', 'Jorge Luis Borges.ogg', 'First Lady Michelle Obama on Leadership & Mentoring in Detroit.webm', 'West Wing Week 09-19-14 or, \"You guys aren\\'t normally this quiet are you-\".webm', 'The First Lady on the Importance of Studying Abroad.webm', 'First Lady Michelle Obama Honors the 2016 Class of the National Student Poets Program.webm', 'President Obama visits Midway Atoll.webm', 'Addressing the Turkish Parliament.webm', 'First Lady Michelle Obama Gives Remarks at a Let Girls Learn Event in Tokyo, Japan.webm', \"First Lady Michelle Obama Welcomes Kids to a Let's Move! Event with the LA Galaxy.webm\", 'The Menorah for the White House Hanukkah Ceremony.webm', 'The Kosher Kitchen.webm', 'The First Lady Speaks in London on the Let Girls Learn Initiative.webm', 'Hi-NarendraModi.ogg', 'President Obama and Prime Minister Netanyahu.webm', 'In the Kitchen before the Korean State Dinner.webm', 'Rahul Rajiv Gandhi.ogg', 'President Obama meets with President Erdoğan of Turkey.webm', 'Behind the Scenes- Preparing The United Kingdom State Dinner.webm', 'Preparing The German State Dinner.webm', 'Inside the White House- The Kitchen Garden.webm', 'Hanukkah at the White House.webm', 'Inside the White House- The State of the Union Address.webm', 'Behind the Scenes- Inside the Kitchen for the France State Dinner.webm', 'Inside The White House - Bees!.webm', 'First Lady Michelle Obama Addresses Young African Women Leaders.webm', 'West Wing Week- 5-6-11 or \"A Good Day For America\".webm', 'President Obama and Prime Minster Yingluck Speak Before Bilateral Meeting.webm', 'State Visit Working Lunch at the State Department.webm', 'West Wing Week- 1-21-11 or \"A Rather Large Painting\".webm', 'State Dinner for Prime Minister Cameron.webm', 'President Obama Meets with President Erdogan.webm', 'Inside the White House- Solar Panels.webm', 'President Obama Speaks at the 39th Annual CHCI Public Policy Conference & Annual Awards Gala.webm', 'President Obama Speaks at a Naturalization Ceremony for Servicemembers.webm', 'West Wing Week- 7-30-10 or \"The Men in Blue Jumpsuits\".webm', 'China State Visit Arrival Ceremony.webm', 'State Dinner with President Hu of China.webm', 'West Wing Week- 10-08-10 or \"A Farewell to Rahm\".webm', 'President Obama Meets with Turkish Prime Minister Erdogan.webm', 'West Wing Week- 05-07-10 or \"X.Y.Z.\".webm', 'West Wing Week- 10-29-10 or \"The Mysterious Case of Mysterious Case 55\".webm', 'Hanukkah at the White House 2012.webm', 'West Wing Week- 11-05-10 or \"Don\\'t Watch the Plasma Arc\".webm', 'The President Talks with Students in Turkey.webm', 'West Wing Week- 4-30-10 or \"Doing the Math\".webm', 'President Obama Speaks After a Civil Society Roundtable in Burma.webm', 'West Wing Week - 4-9-10 - \"24 Tiny Marzipan Beaks\".webm', 'Inside the White House- Letters to the President.webm', 'President Obama Speaks at a Naturalization Ceremony.webm', 'West Wing Week- 11-26-10 or \"The Turkey Behind the Turkey\".webm', 'West Wing Week- 03-22-13 or \"Reach Out to New Horizons\".webm', 'West Wing Week- 06-11-10 or \" Note to Self\".webm', 'West Wing Week- 1-28-11 or \"To Build Stuff and Invent Stuff\".webm', 'West Wing Week- 03-15-13 or \"Stay With It!\".webm', 'The First Lady Speaks at Naturalization Ceremony.webm', 'President Obama Meets with the King of Jordan.webm', 'Vice President Biden Honors Prime Minister Cameron.webm', 'West Wing Week- 06-18-10 or \"Gator-cade\".webm', 'West Wing Week- 8-06-10 or \"Dispatches from the Gulf\".webm', 'President Obama & NASA Astronaut Scott Kelly.webm', \"President Obama's Bilateral Meeting with President Vladimir Putin of Russia.webm\", 'West Wing Week- 05-10-13 or \"I Dare You to Do Better\".webm', \"President Obama Delivers a Statement on the Supreme Court's Ruling on Immigration.webm\", 'West Wing Week- 11-30-12 or \"-My2k, Tweet it!\".webm', 'West Wing Week- 4-2-10 - \"Future Planes of the Future\".webm', 'The Vice President Delivers Remarks at the Dedication of the Edward M. Kennedy Institute.webm', 'The President Speaks at a Naturalization Ceremony.webm', 'The President Meets with the King of Spain.webm', 'West Wing Week- 07-05-13 or \"Dispatches- Africa\".webm', 'Naturalization Ceremony for U.S. Service Members.webm', 'The President Meets with the President of Turkey in Paris.webm', 'President Obama Speaks at the Dedication of the Edward M. Kennedy Institute.webm', 'President Obama Meets with the President of Burma.webm', 'The President Delivers a Eulogy in Honor of Beau Biden.webm', 'President Obama Participates in a Discussion with Mark Zuckerberg and Entrepreneurs.webm', 'President Obama and Prime Minister Cameron Hold a Joint Press Conference.webm', 'First Lady Michelle Obama Previews the U.K. State Dinner.webm', '9-16-16- White House Press Briefing.webm', \"President Obama's Bilateral Meeting with President Thein Sein of Myanmar.webm\", 'President Obama Speaks at the General Assembly.webm', 'West Wing Week 11-15-13 or, \"We Will Stand By Your Side\".webm', 'West Wing Week 11-01-13 or \"Never Lose That Sense of Wonder\".webm', 'West Wing Week- 2-18-11 or \"Goodbye, Gibbs\".webm', 'West Wing Week- 1-6-12 or, \"2012- The Annual Resolutions Edition\".webm', 'West Wing Week- 12-07-12 or \"I Have To Pinch Myself\".webm', 'West Wing Week 12-13-13 or, \"Madiba, Farewell\".webm', 'West Wing Week- 2-10-12 or \"Don\\'t Be Bored...Make Something\".webm', 'West Wing Week- 11-12-10 or \"OCONUS\".webm', 'Wikipedia - FactsMatter2016.webm', 'West Wing Week- 2-4-11 or \"Enter the Hub\".webm', 'West Wing Week- 02-08-13 or- \"What\\'s Up, Camera Man-\".webm', 'West Wing Week 07-27-12 \"A Brighter Day Is Going To Come\".webm', 'West Wing Week- 2-17-12 or \"Go Big!\".webm', 'West Wing Week- 5-10-12 or \"Teach Your Parents How to Tweet\".webm', 'West Wing Week- 10-19-12 or \"The Power of We\".webm', 'West Wing Week- 11-22-12 or \"Hello Burma!\".webm', 'West Wing Week- 2-11-11 or \"The New Electrification\".webm', 'West Wing Week- 12-16-11 or \"A Final March Toward Home\".webm', 'West Wing Week- 4-1-16 or, \"And We\\'re Live!\".webm', 'West Wing Week- 05-29-16 or, \"Need a Little Beat-\".webm', 'President Obama and Prime Minister Cameron at the White House.webm', 'West Wing Week- 11-02-12 or \"What\\'s Brightest in America\".webm', 'West Wing Week 10-21-16 or, \"Buongiorno!\".webm', 'West Wing Week- 10-07-16 or, \"We\\'re At The White House!\".webm', 'This Is A Tour Of The West Wing (In Sign Language).webm', 'West Wing Week 10-18-13 or, \"The Shutdown Edition- The End\".webm', 'West Wing Week- 1-07-11 or \"Resolutions\".webm', 'Bipartisan Meeting on Health Reform- Part 3.webm', 'West Wing Week- 8-20-10 or \"Turkey Turkey and a Jammer\".webm', 'West Wing Week- 10-1-10 or \"One Two Three ... Lancers!\".webm', 'Bipartisan Meeting on Health Reform- Part 1.webm', 'West Wing Week- 9-10-10 or \"The Year 5771\".webm', 'West Wing Week- \"Dispatches from Iraq\".webm', 'Protecting Intellectual Property.webm', 'Bipartisan Meeting on Health Reform- Part 4.webm', 'The Vice President goes to Costco.webm', 'President Obama Nominates John Kerry for Secretary of State.webm', 'Promoting Responsible Fatherhood.webm', 'President Obama and Prime Minister Trudeau Hold a Joint Press Conference.webm', 'Bipartisan Meeting on Health Reform- Part 5.webm', \"The President's Back to School Speech.webm\", 'The Importance of Education Reform.webm', 'President Obama Speaks About Fatherhood.webm', \"President Obama's Message for America's Students.webm\", 'President Obama Speaks at the Joplin High School Commencement Ceremony.webm', 'President Obama Speaks on Manufacturing and the Economy.webm', 'President Obama- Notre Dame Commencement.webm', 'President Obama Speaks on Changes and Improvements in the Individual Insurance Market.webm', 'President Obama Speaks at Barnard College Commencement Ceremony.webm', 'Building a 21st Century Immigration System.webm', 'President Obama Speaks on College Affordability.webm', 'Fireworks on the National Mall from the White House.webm', 'President Obama at Michigan Commencement.webm', 'Vice President Biden Swears In Secretary of State John Kerry.webm', \"The First Lady's First Tweet.webm\", 'Salute The Troops Independence Day Celebration.webm', 'President Obama Tweets from the White House.webm', 'Four Hills Tournament - Vierschanzentournee - Explainer Video.webm', 'President Obama and President Xi Jinping of China Make a Statement.webm', 'President Obama Speaks at the Early Education Summit.webm', '4th of July at the White House 2011.webm', 'President Obama on Early Childhood Education.webm', 'The President Delivers Remarks at Independence Day Celebration.webm', 'President Obama Speaks at the Installation of FBI Director James Comey.webm', 'President Obama Addresses the 2016 U.S. Air Force Academy Graduates.webm', 'President Obama Speaks at the 2013 Tribal Nations Conference.webm', 'President Obama Speaks at the SelectUSA Investment Summit.webm', 'President Obama, Chinese President Hu Meet in Beijing.webm', '09 Cultural work at the partisans (Alenka Gerlovic).webm', '01 Introduction (Alenka Gerlovic).webm', '11 End of the war - alone and stranded (Alenka Gerlovic).webm', '02 Decision to take part in the Resistance (Alenka Gerlovic).webm', '06 A bicycle becomes tricycle (Alenka Gerlovic).webm', '07 Hiding; Alenka joins partisan movement (Alenka Gerlovic).webm', '08 Arriving at the partisans; first task (Alenka Gerlovic).webm', '05 Activities under Italian occupation (Alenka Gerlovic).webm', \"President Obama's Bilateral Meeting with Prime Minister Abe of Japan.webm\", '10 Partisan Vito, Alenkas husband (Alenka Gerlovic).webm', '03 Father did not agree with her decision (Alenka Gerlovic).webm', 'President Obama Speaks on Education and the Economy.webm', 'President Obama Meets with the Amir of Qatar.webm', 'President Obama Meets with The Amir of Qatar.webm', 'President Obama at Hampton University.webm', 'Near Field Communication in a nutshell.webm', 'President Obama Takes Questions at GOP House Issues Conference.webm', 'Weekly Address- Merry Christmas from the President and the First Lady.webm', 'Michael Chabon & Ayelet Waldman Speak at the White House Poetry Jam- (4 of 8).webm', 'Mayda del Valle at the White House Poetry Jam (2 of 8).webm', 'Esperanza Spalding Performs at the White House Poetry Jam- (5 of 8).webm', 'Jamaica Osorio Performs \"Kumulipo\" at the White House Poetry Jam- (6 of 8).webm', 'President and Mrs. Obama Open White House Poetry Jam (1 of 8).webm', 'Joshua Bennett Performs at the White House Poetry Jam- (7 of 8).webm', 'Smokey Robinson & Jennifer Hudson Perform at the White House- 2 of 11.webm', 'Jennifer Hudson Performs at the White House- 6 of 11.webm', 'Yolanda Adams Performs at the White House- 1 of 11.webm', 'Joan Baez Performs at the White House- 5 of 11.webm', 'Yolanda Adams Performs at the White House- 7 of 11.webm', 'Natalie Cole Performs at the White House- 4 of 11.webm', 'The Blind Boys of Alabama Perform at the White House- 11 of 11.webm', 'James Earl Jones Performs Shakespeare at the White House Poetry Jam- (3 of 8).webm', 'The Freedom Singers Perform at the White House- 8 of 11.webm', 'Smokey Robinson Performs at the White House- 10 of 11.webm', 'John Mellencamp Performs at the White House- 3 of 11.webm', 'Alisa Weilerstein and Jason Yoder Perform at the White House- 5 of 8.webm', 'Alisa Weilerstein and Sujari Britt Perform at the White House- 4 of 8.webm', 'Esperanza Spalding- \"Overjoyed\".webm', 'Joshua Bell and Sharon Isbin Perform at the White House- 7 of 8.webm', 'President Obama Opens White House Evening of Classical Music.webm', 'Sharon Isbin Performs at the White House- 1 of 8.webm', 'Alisa Weilerstein Performs at the White House- 3 of 8.webm', 'Joshua Bell and Awadagin Pratt Perform at the White House- 6 of 8.webm', 'Joshua Bell, Awadagin Pratt, and Alisa Weilerstein Perform at the White House- 8 of 8.webm', 'Awadagin Pratt Performs at the White House- 2 of 8.webm', 'Fireworks on the National Mall from the White House - 201.webm', 'The First Lady Speaks on the Film We Will Rise.webm', 'Tango Dancing at the Ambassadors Reception.webm', 'President Obama & King Adbullah Meet at the White House.webm', 'President Obama at the Lincoln Memorial Concert.webm', 'Weekly Address- Celebrating Independence Day.webm', \"President Obama's Bilateral Meeting with His Majesty Sultan of Brunei.webm\", 'Harry Connick, Jr. at the White House.webm', 'First Lady Michelle Obama Speaks at an Education Event in Dakar, Senegal.webm', 'President Obama and President Zuma of South Africa Toasts.webm', \"President Barack Obama's Inaugural Address.webm\", 'President Obama on His Birth Certificate & the Real Issues Facing America.webm', 'President Obama and President Sall of Senegal Exchange Toasts.webm', \"Watch- President's reaction to protests against election results.webm\", 'West Wing Week \"OCONUS III- A Homecoming of Sorts\".webm', 'U.S.-Brazil CEO Forum Discussion.webm', 'Signing the Tribal Law and Order Act.webm', 'West Wing Week- 12-17-10 or \"All These Pens\".webm', 'West Wing Week- 12-10-10 or \"It\\'s Alive!\".webm', 'Signing the Healthy, Hunger-Free Kids Act.webm', 'President Obama Speaks to the People of Brazil.webm', 'President Obama, President Rousseff Meet in Brasilia.webm', 'West Wing Week- 12-28-12 or \"Best of the West (Wing Week)\".webm', 'President Obama on the United States and Latin America.webm', \"President Obama's Bilateral Meeting with President Rousseff of Brazil.webm\", 'Weekly Address- The Military Mission in Libya.webm', 'President Obama on Greek Independence Day.webm', 'Weekly Address- The Legacy of Nancy Reagan.webm', 'Remarks by President Obama at Lighting of National Christmas Tree - 2015.webm', 'President Obama Discusses Immigration Reform with Business Leaders.webm', 'Weekly Address- Merry Christmas from the President & First Lady - 2010.webm', 'President Obama, President Funes Meet in San Salvador.webm', 'Weekly Address- Happy Holidays from the President and First Lady - 2014.webm', 'President Obama Lights the National Christmas Tree.webm', 'The First Lady Previews White House Holiday Decorations - 2010.webm', 'President Obama, President Pinera Meet in Santiago.webm', 'The President Receives an Update on the Economy.webm', 'President Obama Delivers Remarks at the National Christmas Tree Lighting Ceremony - 2014.webm', 'Weekly Address- The President and First Lady Thank our Troops for their Service this Holiday Season - 2011.webm', 'National Christmas Tree Lighting Ceremony 2013.webm', 'President Obama Lights the National Christmas Tree - 2010.webm', 'Weekly Address- Merry Christmas from the President and First Lady - 2015.webm', 'President Obama Lights the National Christmas Tree - 2012.webm', 'First Family Attends The Christmas Tree Lighting - 2016.webm', 'Christmas in Washington - 2010-12-12.webm', 'President Obama Speaks on Wall Street Reform.webm', 'President Obama Speaks at Flanders Field Cemetery.webm', 'West Wing Week- 06-12-15 or, \"Walking and Holding Hands\".webm', 'West Wing Week 07-17-15 or, \"Barack-amole\".webm', 'President Obama Pardons Turkey 2010.webm', 'West Wing Week- 9-26-14 or \"Stronger When We Stand United\".webm', 'West Wing Week 09-05-14 or, \"Every Gray Hair Is Worth It\".webm', 'President Obama Speaks at the Nuclear Security Summit.webm', 'The START Treaty and National Security.webm', 'President Obama Chairs the Closing Session of the Nuclear Summit.webm', 'West Wing Week- 1-16-15 or, \"The Little Circle Thing\".webm', 'President Obama at Opening Plenary of Nuclear Security Summit.webm', 'West Wing Week- 1-23-15 or, \"B is for Believe\".webm', 'President Obama Chairs the Opening Plenary Session.webm', 'West Wing Week 04-11-14 or, \"Love Never Ends\".webm', \"President Obama's Bilateral Meeting with Prime Minister Rutte of the Netherlands.webm\", 'West Wing Week- 1-2-15 or, \"That Zingy Sting- A Special, Year-End Edition\".webm', 'President Obama Pardons White House Turkey - 2013.webm', 'President Obama Pardons the National Thanksgiving 2016.webm', 'West Wing Week- 4-4-14 or, \"The Rosies\".webm', 'West Wing Week 03-14-14 or, \"What\\'s Up, Captain America-\".webm', 'President Obama Pardons the National Turkey 2014.webm', 'POTUS Nuclear Security Summit Press Conference.webm', 'West Wing Week 07-04-14 or, \"Cynicism is a Choice... Hope is a Better Choice\".webm', 'Nuclear Security Summit- Presidential Press Conference.webm', 'The President Pardons the National Thanksgiving Turkey 2015.webm', 'President Obama Holds a Press Conference with Prime Minister Rutte of the Netherlands.webm', 'President Obama Signs Health Reform Into Law.webm', 'President Obama Speaks at Palais Des Beaux Arts.webm', 'President Obama Speaks at the Wall Street Journal CEO Council Annual Meeting.webm', '11 Her husband, a deserter (Ana Zablatnik).webm', '08 Horrible conditions in prison (Ana Zablatnik).webm', '12 Horrors that her husband saw (Ana Zablatnik).webm', '01 Prohibition of Slovenian culture (Ana Zablatnik).webm', '13 Conclusion (Ana Zablatnik).webm', '09 Immediately after the war (Ana Zablatnik).webm', '05 Wish to join partisans, being arrested (Ana Zablatnik).webm', '04 First partisan action in the village (Ana Zablatnik).webm', '03 Life in fear (Ana Zablatnik).webm', '07 In prison (Ana Zablatnik).webm', '10 Discrimination of Slovenes after war (Ana Zablatnik).webm', '06 Under arrest; end of the war (Ana Zablatnik).webm', '02 Mobilization into the Wehrmacht (Ivo Srcnik).webm', '01 Introduction, family, youth (Ivo Srcnik).webm', '08 Short visit at mothers home (Ivo Srcnik).webm', 'President Obama Holds a Press Conference with Prime Minister Renzi.webm', '07 Coming to Slovenia with the brigade (Ivo Srcnik).webm', '10 Demobilisation; civil life starts (Ivo Srcnik).webm', '03 First contact with the Soviet resistance (Ivo Srcnik).webm', '09 Sending in children and women (Lipej Kolenik).webm', '09 As Yugoslav soldier after the war (Ivo Srcnik).webm', '06 Motivation; problems of the partisans (Lipej Kolenik).webm', '06 Battles in Yugoslavia (Ivo Srcnik).webm', '02 First contact with partisans (Lipej Kolenik).webm', '05 Joining the Yugoslav Brigade (Ivo Srcnik).webm', '03 Who supported the partisans- (Lipej Kolenik).webm', '04 Conscription to the Wehrmacht, injury (Lipej Kolenik).webm', '07 Lipejs tasks, provision of food supplies (Lipej Kolenik).webm', '08 Transmission of information (Lipej Kolenik).webm', '08 Discrimination of Slovenians after war (Romana Verdel).webm', '10 Women in the resistance (Lipej Kolenik).webm', '05 Joining the partisan army (Lipej Kolenik).webm', '05 Back to Carinthia (Romana Verdel).webm', '01 Anschluss, persecution, propaganda for resistance (Lipej Kolenik).webm', '01 Introduction; Family arrested (Romana Verdel).webm', '09 Hate against Germans for long time (Romana Verdel).webm', '11 Liberation and its significance today (Lipej Kolenik).webm', '03 Hidden in an earth cellar (Romana Verdel).webm', '02 Mass imprisonment, deportation (Romana Verdel).webm', '06 Partisan killed at farmers house (Romana Verdel).webm', '04 Hiding with partisans in bunkers (Romana Verdel).webm', '04 As prisoner of war in the Soviet Union (Ivo Srcnik).webm', 'Bahen, 1941.webm', 'President Obama Speaks at the 95th DAV Convention.webm', 'Listening in Strasbourg, France.webm', 'President Obama Meets with Liberian President Sirleaf.webm', '10 for 2014 with Chief of Staff Denis McDonough.webm', 'President Obama Meets with Singapore Minister Mentor Lee.webm', 'President Obama and King Salman Deliver Statements to the Press.webm', 'White House Chief of Staff Announcement - 2010-10-01.webm', 'President Obama speaks at the 2011 National Prayer Breakfast.webm', 'Advancing 21st Century Policing Briefing.webm', 'President Obama Speaks at the 2014 Easter Prayer Breakfast.webm', 'President Obama and President Nieto.webm', \"President Obama's Bilateral Meeting with Prime Minister Lee of Singapore.webm\", 'President Obama Speaks at the 2010 National Prayer Breakfast.webm', 'West Wing Week- 04-24-15 or, \"The Savage Splendor of a Swamp\".webm', 'President Obama Speaks on Civil Rights.webm', 'President Obama Speaks on the Equal Pay Act.webm', 'President Obama Speaks at the 2013 National Prayer Breakfast.webm', 'President Obama Speaks at the 2012 National Prayer Breakfast.webm', 'President Obama Speaks at the National Action Network Convention.webm', 'West Wing Week- 02-06-15 or, \"To All the DREAMers\".webm', 'West Wing Week- 12-04-2015 or, \"Fromage!\".webm', 'West Wing Week- 11-20-2015 or, \"Crossing Every Timezone\".webm', 'President Obama Names Denis McDonough as Chief of Staff.webm', 'President Obama Speaks at the 2014 National Prayer Breakfast.webm', 'West Wing Week- 02-19-16 or, \"Everybody Wave\".webm', 'West Wing Week- 11-06-2015 or, \"Top Prize!\".webm', 'West Wing Week- \"Under the Big Blue Whale\".webm', 'President Obama Meets with the Task Force on 21st Century Policing.webm', 'President Obama Speaks at the 2015 National Prayer Breakfast.webm', 'West Wing Week- 1-20-12 or \"The Time is Always Right to do What is Right\".webm', 'President Obama Meets with President Sirleaf of Liberia.webm', 'West Wing Week- 05-29-15 or, \"High Fives for Everybody!\".webm', 'West Wing Week- 1-13-12 or \"Insourcing- Bringing Jobs Back to America\".webm', 'West Wing Week- 12-02-11 or \"Bo Meets Bo\".webm', 'West Wing Week- 7-16-10 or \"6 Principals\".webm', 'West Wing Week- 7-09-10 or \"Independence\".webm', 'West Wing Week- 3-04-11 or \"Green Eggs and Governors\".webm', 'West Wing Week- 09-30-16 or, \"Hello Team USA\".webm', 'West Wing Week 09-1-11 or \"Goodnight, Irene\".webm', 'West Wing Week- 3-16-12 or \"Leveling the Playing Field\".webm', 'West Wing Week- 2-03-12 or \"Riding the Advanced Technology Superhighway\".webm', 'West Wing Week- 3-9-12 or \"Speak Softly; Carry a Big Stick\".webm', 'West Wing Week- 7-23-10 or \"A Sensible Mid Westerner\".webm', 'West Wing Week- 4-13-12 or \"You\\'re Proof of Change\".webm', 'West Wing Week- 10-15-10 or \" I Spy\".webm', 'West Wing Week- 5-13-11 or \"On the Border\".webm', 'West Wing Week- 11-11-16 or, \"Be Kind, Be Useful, Be Fearless\".webm', 'West Wing Week- 3-25-11 or \"OCONUS II - Mamalluca\".webm', 'President Obama Speaks on the Importance of Job Training.webm', 'Arrival Ceremony for PM Lee Hsien Loong.webm', 'West Wing Week- 3-11-11 or \"Law School in 15 Seconds\".webm', 'West Wing Week- 03-04-16 or, \"See Wall-E Over There-\".webm', 'West Wing Week- 11-19-10 or \"I Really Like this Guy\".webm', 'West Wing Week- 8-14-15 or, \"That\\'s Why We Do What We Do\".webm', 'West Wing Week- Mailbag Day, Summer Edition 2011.webm', 'West Wing Week 09-13-13 or, \"My Fellow Americans...\".webm', 'West Wing Week- 05-21-10 or \"85 Ton Electric Arc Furnace\".webm', 'West Wing Week- 9-12-14 or, \"Meeting Those Threats with Strength and Resolve\".webm', 'West Wing Week 03-28-14 or, \"The 2014 European Edition\".webm', 'West Wing Week 09-28-12 or \"A Common Heartbeat to Humanity\".webm', 'West Wing Week- 10-11-13 or \"The Shutdown Edition- Week Two\".webm', 'West Wing Week- 06-25-10 or \"Mailbag Day\".webm', 'West Wing Week- 1-08-16 or, \"Too Many\".webm', 'West Wing Week- 03-08-13 or \"Jedi Mind-Meld\".webm', 'West Wing Week- 5-4-12 or \"Out of Many, We are One.\".webm', 'West Wing Week- 09-18-15 or, \"FAFSA! (fafsa, fafsa, fafsa, fafsa)\".webm', 'West Wing Week- 11-27-15 or, \"This Turkey is Hereby Pardoned\".webm', 'West Wing Week 06-13-14 or, \"I Am Hip To All These Things\".webm', 'West Wing Week 11-04-11 or \"Let\\'s Get Moving\".webm', 'West Wing Week- 12-23-11 or \"-40dollars\".webm', 'West Wing Week- 11-11-11 or \"Super Duper Space Wrench\".webm', 'President Obama Speaks on Equal Pay for Equal Work.webm', 'West Wing Week- 11-14-14 or, \"The Future That We See\".webm', 'West Wing Week- 06-08-12 or \"Roll Up Our Sleeves and Never Quit\".webm', 'West Wing Week- 10-22-10 or \"The White House Science Fair\".webm', 'West Wing Week- 12-03-10 or \"Sharp Elbows\".webm', 'West Wing Week- 06-14-13 or \"There\\'s an App for That\".webm', 'West Wing Week- \"Mailbag Day, New Year\\'s Edition\".webm', 'President Obama Speaks at the 2016 National Prayer Breakfast.webm', 'West Wing Week 1-31-14 or, \"West Wing Week Turns 200!\".webm', 'West Wing Week 9-20-13 or, \"Every Moment of Every Day\".webm', 'West Wing Week 1-24-14 or, \"199!\".webm', 'West Wing Week- 06-21-12 or \"Dreamers\".webm', 'West Wing Week- 8-30-13 or \"Because They Marched\".webm', 'West Wing Week- 9-24-10 or \"Immeasurable Courage and Uncommon Valor\".webm', 'West Wing Week- 12-24-10 or \"AKA Santa Claus\".webm', 'West Wing Week- 5-30-14 or, \"I Love These Kids!\".webm', 'West Wing Week- 01-18-13 or \"-NowIsTheTime\".webm', 'West Wing Week 12-30-11 or \"Best of the West (Wing Week)\".webm', 'West Wing Week- 4-18-14 or, \"Pull Together, Fight Back, and Win\".webm', 'West Wing Week- 08-16-13 or \"Summer Mailbag- A Break from Tradition\".webm', 'West Wing Week 7-7-11 or \"Ready to Tweet\".webm', 'West Wing Week- 03-01-13 or \"Hope Springs Eternal\".webm', 'West Wing Week 06-23-11 or \"The Receding Tide\".webm', 'West Wing Week- 9-17-10 or \"Back to School\".webm', 'West Wing Week 11-22-13 or, \"A Man, A Plan, A Canal, Panama!\".webm', 'West Wing Week- 04-19-13 or \"Selflessly. Compassionately. Unafraid.\".webm', 'West Wing Week- 12-05-14 or, \"Multiparameter Flow Cytometer\".webm', 'West Wing Week 08-03-12 or \"98 & 98\".webm', 'West Wing Week- 8-24-12 or, \"The Historic, First-Ever Kids\\' State Dinner Edition!\".webm', 'West Wing Week- 4-22-11 or \"My Old Number, 23\".webm', 'West Wing Week 1-17-14 or \"Give Peace a Chance\".webm', 'West Wing Week- 08-09-13 or \"Rock Solid Foundation\".webm', 'West Wing Week- 4-15-11 or \"Open for Business\".webm', 'West Wing Week- 05-17-13 or \"We the Geeks\".webm', 'West Wing Week 11-24-11 or \"Your Best You\".webm', 'West Wing Week- 06-17-11 or \"Where the Future Will Be Won\".webm', 'West Wing Week- 10-21-11 or, \"Right Now!\".webm', 'West Wing Week- 10-09-2015 or, \"-StartTheConvo\".webm', 'President Obama- It Gets Better.webm', 'West Wing Week 04-25-14 or, \"POTUS Dreams of Sushi\".webm', 'West Wing Week- 7-14-11 or \"Our Heroes Are All Around Us\".webm', 'West Wing Week- 11-28-14 or, \"We Need Turkey\".webm', 'West Wing Week- 06-02-11 or \"One Step at a Time\".webm', 'West Wing Week 12-06-13 or, \"Olde English\".webm', 'West Wing Week- 01-04-13 or \"Welcome to 2013- The Annual Resolutions Edition!\".webm', 'West Wing Week 10-2-2015 or \"Make It Matter\".webm', 'West Wing Week- 12-18-2015 or, \"My Soon-To-Be-Fellow Citizens\".webm', 'West Wing Week- 02-01-13 or \"The Dude from Stillwater\".webm', 'West Wing Week- 03-29-13 or \"Where Peace Begins\".webm', 'West Wing Week- 12-11-2015 or, \"Notorious RBG\".webm', 'West Wing Week- 07-12-13 or \"Bring it On Brussels Sprout Wrap!\".webm', 'President Obama Speaks on Expanding Oil and Gas Pipelines.webm', 'West Wing Week- 4-8-11 or \"Windmills- Call Them Wind Turbines!\".webm', 'West Wing Week- 7-21-11 or \"Two Minute Warning\".webm', 'West Wing Week- 09-07-12 or \"Engage!\".webm', 'West Wing Week 05-02-14 or, \"Old Seoul\".webm', 'West Wing Week- 11-16-12 or \"That\\'s Who We Are\".webm', 'West Wing Week- 09-21-12 or \"The Dignity and Freedom That Every Person Deserves\".webm', 'West Wing Week- 10-10-14 or, \"Is Anybody Here Over 25-\".webm', 'West Wing Week- 06-19-15 or, \"Her Map & Compass\".webm', 'President Obama Speaks at 2012 Easter Prayer Breakfast.webm', 'West Wing Week- 06-21-13 or \"What\\'s the Craic-\".webm', 'West Wing Week 09-02-11 or \"Dispatches- Asia\".webm', 'West Wing Week- 05-24-13 or \"Justice for Everybody\".webm', 'West Wing Week- 3-18-11 or \"Punching Above Your Weight\".webm', 'West Wing Week- 12-21-12 or \"We Are There For Them\".webm', 'West Wing Week 06-20-14 or, \"Zot, Zot, Zot!\".webm', 'West Wing Week 03-21-14 or, \"24 Soldiers\".webm', 'West Wing Week- 5-18-12 or \"Reach High and Hope Deeply\".webm', 'West Wing Week- 3-22-12 or \"Slainte!\".webm', 'West Wing Week- 4-20-12 or \"Roll Tide\".webm', 'President Obama Speaks on Domestic Energy Production.webm', 'West Wing Week- 06-01-12 or \"Each of Them Loved This Country . . . More Than Life Itself.\".webm', 'West Wing Week- 10-03-14 or \"If the Body is Strong\".webm', 'West Wing Week- 12-14-12 or \"True to Ourselves and Our History\".webm', 'Signing of New START Nuclear Arms Treaty with Russia.webm', 'West Wing Week- 5-25-12 or \"We Are Not Meant to Walk This Road Alone.\".webm', 'West Wing Week- 09-14-12 or \"Eleven\".webm', 'President Obama Signs the STOCK Act.webm', 'West Wing Week 08-10-12 or \"We Have A Moral, Sacred Duty\".webm', 'West Wing Week- 11-21-14 or, \"Mingalarbar!\".webm', 'West Wing Week- 4-27-12 or \"\\'Don\\'t Double My Rate!\\'\".webm', 'President Obama Speaks on the Resurgence of the American Auto Industry.webm', 'West Wing Week 08-17-12 or, \"Dream Day\".webm', 'West Wing Week- 06-29-12 or \"The Right Thing To Do\".webm', 'West Wing Week- 08-02-13 or \"Let Us Be Awed By Their Shining Deeds\".webm', 'West Wing Week- 04-12-13 or \"We Choose Love\".webm', 'President Obama Speaks on the Buffett Rule.webm', 'The President Marks Five Years of the ACA.webm', 'President Obama Holds a Roundtable on the Economy.webm', 'President Obama Speaks on Expanding Our Energy Portfolio.webm', 'The President Hosts a Reception in Honor of LGBT Pride Month.webm', 'President Obama Nominates Sylvia Mathews Burwell as Secretary of Health and Human Services.webm', 'The President Announces a Historic Nuclear Deal with Iran.webm', 'A Conversation with President Obama and The Wire Creator David Simon.webm', 'President Obama on the International Nuclear Framework with Iran.webm', 'President Obama Participates in South by Southwest Interactive Discussion.webm', 'The President Speaks at the Islamic Society of Baltimore.webm', 'The light of Asia (1925).webm', 'President Obama Holds a Press Conference with Prime Minister Erdogan.webm', 'President Obama Presents American Jobs Act (Enhanced Version).webm', 'The President Speaks at the G7 Summit in Germany.webm', \"2016-12-24 President Obama's Weekly Address.webm\", 'President Obama Speaks at the Associated Press Luncheon.webm', '2013-01-07 - President Obama Makes a Personnel Annoucement.webm', 'President Obama Speaks to Troops at Marine Corps Base Hawaii - 2015.webm', 'President Obama Nominates Jim Yong Kim for World Bank President.webm', 'President Obama Visits Hiroshima.webm', 'Behind the Scenes at the 2016 State of the Union.webm', 'West Wing Week- White House Intern Edition.webm', 'President Obama and Prime Minister Abe Participates in a Wreath Laying Ceremony in Hiroshima.webm', 'Daily Press Briefing - December 27, 2016.webm', 'Rens rolling balls on Herbal XTC - Drugslab.webm', 'Nellie celebrates a white Christmas with cocaine - Drugslab.webm', 'Life Lessons from POTUS- On Being a Parent.webm', 'Wikipedia - FactsMatter2016.ja.webm', 'Persconferentie na de ministerraad, 11 januari 2008.webm', 'Gimn Sovetskogo Soyuza (1944 Stalinist lyrics).oga', \"2016-12-31 President Obama's Weekly Address.webm\", 'Aaron Halfaker', 'Aaron Halfaker.voice recording.oga', 'Road To Bali (1952).webm', 'Cat.ogg', 'Kreis springt.webm', 'Donating data to Wikidata.webm', 'En liten film om GLAMig data.webm', 'Els Segadors.ogg', 'West Wing Week- 01-06-17 or, \"It\\'s 2017!\".webm', \"A Look Inside the First Family's Residence.webm\", 'Yes We Can- People Share Their Most Memorable Moments from the Obama Presidency.webm', 'Combatant Commanders and Joint Chiefs of Staff.webm', 'Protecting Our Planet Means Protecting Our Ocean.webm', 'Hamilton at the White House.webm', 'OER Öppna lärresurser - OER Introduktion.webm', 'Armed Forces Full Honor Review Farewell Ceremony.webm', 'Letters to the President- Katy from Rhode Island.webm', 'The Record- President Obama on Social Progress and Equality.webm', 'Letters to the President- Russ and Linda from Texas.webm', 'At the White House with the Google Global Science Fair Winners.webm', \"It's the White House Science Fair!.webm\", \"Making History- President Obama's New Approach to Old Adversaries.webm\", 'The President Tours Faubourg Lafitte Neighborhood in New Orleans.webm', 'Presidents Obama, Bush, & Clinton- Help for Haiti.webm', 'Behind the Scenes- The ACA.webm', 'President Obama Speaks at Ubungo Symbion Power Plant.webm', 'The President Tours the Faffa Food Factory in Ethiopia.webm', 'President Obama and President Kikwete Hold a Press Conference.webm', 'Prithvi Vallabh (1943).webm', 'Bastiaan says cheers with alcohol - Drugslab.webm', \"This Is It- President Obama's Last State of the Union, Extended Cut.webm\", 'The Record- President Obama on 8 Years of Economic Progress.webm', \"The President's Guests at the State of the Union.webm\", 'The Record- President Obama on 8 Years of American Leadership in the World.webm', 'Letters to the President- Patrick from Massachusetts.webm', '20170107 Weekly Address HD.webm', 'The President Speaks at the Global Entrepreneurship Summit.webm', 'Letters to the President- Covered in Pennsylvania.webm', 'Letters to the President- Stories of Health Reform.webm', 'Behind the Scenes at \"In Performance at the White House- The Motown Sound\".webm', 'Raw Video- President Obama Meets Local Pittsburgh Band Comfort Tech.webm', 'Household Incomes Rising- Facebook Live with President Obama.webm', 'Raw Footage- The President and the Hovercraft.webm', 'West Wing Week- 12-30-16 or, \"Thanks, Obama!\".webm', 'A Surprise Call From The First Lady.webm', 'Behind the Scenes- Red, White and Blues.webm', 'Behind The Scenes- In Performance at The White House- Country Music.webm', 'President Obama Visits Stonehenge.webm', 'Raw Video- The President visits Main Street in Parkville, MO.webm', 'President Obama Participates in the Armed Forces Full Honor Review Farewell Ceremony.webm', 'The President Speaks at the Farewell Ceremony for General Dempsey.webm', 'President Obama and Prime Minister Modi Participate in a CEO Roundtable in India.webm', 'The President Meets with the President of Nigeria.webm', 'President Obama Speaks at an Official Dinner in Kenya.webm', 'President Obama Attends the India State Dinner.webm', 'The President and Prime Minister of Ethiopia hold a Joint Press Conference.webm', 'Remarks 67th Secretary of State Hillary Rodham Clinton.webm', 'President Obama Addresses the People of India.webm', 'President Obama Speaks on the Precision Medicine Initiative.webm', 'President Obama Delivers a Farewell Tribute to Secretary of Defense Chuck Hagel.webm', 'Secretary Kerry Delivers Remarks at the U.S. Naval Academy.webm', 'Welcome to Wikisource - short explanatory video.webm', 'Remarks from 61st Secretary of State James A. Baker, III.webm', 'Remarks by 68th Secretary of State John Kerry.webm', 'Daily Press Briefing - January 6, 2017.webm', 'Daily Press Briefing - January 9, 2017.webm', 'West Wing Week- 05-13-16 or, \"Stylin\\', Huh-\".webm', 'On Board- Travels with Dr. Biden in Asia.webm', 'Remarks by Secretaries of State Baker, Albright, Powell, Clinton at U.S. Diplomacy Center Completion.webm', 'President Obama and Prime Minister Modi.webm', 'The President Meets with the Prime Minister of India at the U.N..webm', 'President Obama meets with the President of Kenya.webm', 'President Obama Joins President Kenyatta of Kenya in a Joint Press Conference.webm', 'Daily Press Briefing - January 10, 2017.webm', 'Around the World with the Vice President & Dr. Biden.webm', 'The President visits the Power Africa Innovation Fair.webm', 'Sir David Attenborough & President Obama.webm', 'The President Speaks at the 2030 Agenda for Sustainable Development Goals.webm', 'The President Addresses the 70th United Nations General Assembly.webm', 'Dublin Castle, Ireland- Check in with Vice President Biden.webm', 'The Reach Higher Career App Challenge.webm', 'A Q&A with the First Lady on Take-Our-Daughters-and-Sons-to-Work-Day at the White House.webm', 'The President Speaks on the Economy in La Crosse, Wisconsin.webm', 'The First Lady Speaks on Career and Technical Education (CTE).webm', 'In Performance at the White House- The History of Gospel.webm', 'President Obama Honors the Super Bowl Champion Denver Broncos.webm', 'President Obama Delivers Remarks on Protecting Consumers from Abusive Payday Lending Practices.webm', 'President Obama Meets 108-Year-Old Lester Townsend.webm', 'The First Lady Participates in a Conversation on Let Girls Learn.webm', 'President Obama and the First Lady Welcome Prime Minister Renzi and Mrs. Landini of Italy.webm', 'The Story of Sergeant First Class Cory Remsburg & President Obama.webm', 'First Lady Michelle Obama Gives Remarks at a Peace Corps Training.webm', 'The First Lady Speaks at USAG Vicenza Family Day.webm', 'The President Speaks About Cybersecurity.webm', 'President Obama Speaks at the 2016 White House Science Fair.webm', 'President Obama Meets with the Prime Minister of Ireland.webm', 'President Obama Speaks at the Cybersecurity and Consumer Protection Summit.webm', 'President Obama Hosts the 2015 White House Science Fair.webm', 'Live from the White House Science Fair.webm', 'Daily Press Briefing - January 13, 2017.webm', 'The President Holds a Bilateral Meeting with the President of Italy.webm', 'U.S.-Vietnam- A Partnership That Will Endure.webm', 'Syndrome of inappropriate antidiuretic hormone.webm', 'President Obama Pardons the National Thanksgiving.webm', \"2017-01-07 President Obama's Weekly Address.webm\", 'Nellie completely spaced out on magic truffles (psilocybin) - Drugslab.webm', 'President Obama Speaks at the MBK Summit.webm', 'White House Press Secretary Josh Earnest on the Hobby Lobby Decision.webm', 'President Obama and President Raul Castro of Cuba Hold a Joint Press Conference.webm', '03-28-2012 -Press Briefing by Deputy Press Secretary Josh Earnest.webm', '06-08-2012 - President Obama Holds a Press Conference on the Economy.webm', 'President Obama on Deficit Reduction.webm', '04-04-2016 - Press Briefing by Press Secretary Josh Earnest.webm', 'The President Meets with Embassy Staff in Cuba.webm', '1-13-14- White House Press Briefing.webm', 'President Obama and President Macri of Argentina Exchange Toasts.webm', 'President Obama Delivers a Statement on Cuba.webm', 'The President and Vice President Speak at the Easter Prayer Breakfast.webm', 'All Hands Update- Army vs Navy.webm', 'President Obama Delivers Remarks to the People of Cuba.webm', 'The President and Vice President speak at the White House Easter Prayer Breakfast.webm', '3-21-16- White House Press Briefing in Havana, Cuba.webm', 'President Obama and the First Lady Read to Kids at the 2016 Easter Egg Roll.webm', 'President Obama Participates in the 2015 White House Easter Egg Roll.webm', '2015 White House Easter Egg Roll- President Obama Reads to Kids.webm', 'The President Honors the 2015 College Football Playoff National Champion Ohio State Buckeyes.webm', 'The President Kicks off the Official 2016 Easter Egg Roll.webm', 'President Obama Participates in a Press Conference After the Summit of the Americas.webm', 'Clemency Recipient Ramona Brant.webm', 'President Obama Meets with Civil Society Leaders in Cuba.webm', 'Clemency Recipient Phillip Emmert.webm', 'White House Easter Egg Roll- Celebrating 138 years.webm', 'White House Easter Egg Roll Highlights 2015.webm', '20th Anniversary of the Lake Tahoe Summit.webm', 'Clemency Recipient Norman Brown.webm', 'The President and First Lady Deliver Remarks at the 2016 Easter Egg Roll.webm', 'Taking Care of 18 Acres- The National Park Service at the White House.webm', 'The President and First Lady Kick off the White House Easter Egg Roll.webm', 'Sesame Street at the Storytime Stage of the 2016 Easter Egg Roll.webm', 'President Obama Delivers Remarks at White House Development Day.webm', 'President Obama Delivers Remarks on Commuting Prison Sentences.webm', \"President Obama Honors the 2016 UConn Women's Basketball Team.webm\", 'President Obama Speaks at an Eid al-Fitr Reception.webm', 'Beating the Odds Summit.webm', 'The President Honors the 2015 NFL Super Bowl Champions- The New England Patriots.webm', 'President Obama Honors The National Teacher of the Year & Finalists.webm', 'First Lady Michelle Obama and Dr. Biden Host a Joining Forces Employment Event.webm', 'The President and Prime Minister of Ireland Speak at the \"Friends of Ireland\" Luncheon.webm', 'President Obama Delivers Remarks at the Toner Prize Ceremony.webm', 'Joining Forces Celebration.webm', 'President Obama Speaks to Community Members in Flint, MI.webm', '7-29-16- White House Press Briefing.webm', '20160906 White House Press Briefing.webm', '6-28-16- White House Press Briefing.webm', '7-25-16- White House Press Briefing.webm', '7-20-16- White House Press Briefing.webm', '8-30-16- White House Press Briefing.webm', '7-6-16- White House Press Briefing.webm', '9-14-16- White House Press Briefing.webm', '8-29-16- White House Press Briefing.webm', '7-1-16- White House Press Briefing.webm', '5-6-16- White House Press Briefing.webm', '7-11-16- White House Press Briefing.webm', '6-30-16- White House Press Briefing.webm', '6-27-16- White House Press Briefing.webm', '09-15-16- White House Press Briefing.webm', '7-13-16- White House Press Briefing.webm', 'AngélicaCarrascoFinal creditos.webm', 'The President Speaks on the Rehabilitation and Reintegration of Formerly Incarcerated Individuals.webm', '20170110 President Obama Farewell Speech HD.webm', '20170106 President Obama Interview with Ezra Klein HD.webm', '10-19-15- White House Press Briefing.webm', '10-13-15- White House Press Briefing.webm', 'Arturo Estrada Semana i.webm', 'ArturoGarcíaBustosSemanai.webm', '1-27-16- White House Press Briefing.webm', 'AuroraReyesFinal creditos.webm', '1-28-16- White House Press Briefing.webm', '10-8-15- White House Press Briefing.webm', 'President Obama Welcomes the Chicago Blackhawks, 2010 Stanley Cup champions.webm', 'President Obama Honors the 2013 NHL Champion Chicago Blackhawks.webm', '7-26-16- White House Press Briefing.webm', '4-13-16- White House Press Briefing.webm', '2-15-16- White House Press Briefing in Sunnylands.webm', '1-9-17- White House Press Briefing.webm', '04-26-16- White House Press Briefing.webm', '1-6-17- White House Press Briefing.webm', '4-19-16- White House Press Briefing.webm', '11-13-15- White House Press Briefing.webm', '04-27-16- White House Press Briefing.webm', 'The President Welcomes the Chicago Blackhawks, 2015 Stanley Cup Champions.webm', '4-11-2016- White House Press Briefing.webm', '3-8-16- White House Press Briefing.webm', '4-15-16- White House Press Briefing.webm', 'Leon Bridges - Backstage at the White House.webm', '3-16-11- White House Press Briefing.webm', '3-17-11- White House Press Briefing.webm', '3-9-16- White House Press Briefing.webm', '2-8-11- White House Press Briefing.webm', '2-11-11- White House Press Briefing.webm', 'Vice President Biden and Dr. Biden Speak on the Cancer Moonshot.webm', '7-19-16- White House Press Briefing.webm', '5-20-16- White House Press Briefing.webm', '6-22-16- White House Press Briefing.webm', '7-15-16- White House Press Briefing.webm', '7-18-16- White House Press Briefing.webm', '5-11-16- White House Press Briefing.webm', '4-12-16- White House Press Briefing.webm', '4-29-16- White House Press Briefing.webm', '6-6-16- White House Press Briefing.webm', '5-12-16- White House Press Briefing.webm', '8-22-16- White House Press Briefing.webm', '5-19-16- White House Press Briefing.webm', '6-10-16- White House Press Briefing.webm', '5-13-16- White House Press Briefing.webm', '6-13-16- White House Press Briefing.webm', '5-10-16- White House Press Briefing.webm', '5-18-16- White House Press Briefing.webm', '5-5-16- White House Press Briefing.webm', '2-4-16- White House Press Briefing.webm', 'President Obama Speaks at the White House Summit on the United State of Women.webm', '2-1-16- White House Press Briefing.webm', '6-9-16- White House Press Briefing.webm', '8-24-16- White House Press Briefing.webm', 'CIA Director Brennan Press Conference.webm', \"President Carter's Addresses delivered at the State Dinner, 26 March 1979.webm\", '10-12-16- White House Press Briefing.webm', \"Egyptian Prime Minister Begin's Arrives for the Mideast Treaty Signing, 26-27 March 1979.webm\", 'White House Press Briefing.webm', 'President Obama Delivers a Statement on ISIL.webm', 'President Obama Hosts a State Dinner.webm', '5-3-16- White House Press Briefing.webm', \"Egyptian President Sadat's Remarks at the Camp David Agreement, 17 September 1978.webm\", '8-25-16- White House Press Briefing.webm', 'Celebrating the American with Disabilities Act at the White House.webm', 'Behind the scenes with Medal of Honor Recipient Captain Florent Groberg.webm', '9-20-16- White House Press Briefing.webm', '10-5-16- White House Press Briefing.webm', 'President Obama and the First Lady Participate in a State Arrival.webm', '8-26-16- White House Press Briefing.webm', '10-6-16- White House Press Briefing.webm', '10-3-16- White House Press Briefing.webm', 'Senator Elizabeth Warren questions Tom Price about Medicare and Medicaid Cuts.webm', \"Israeli Prime Minister Begin's remarks at the Camp David Agreement, 17 September 1978.webm\", \"President Carter's Remarks at the Camp David Agreement, 17 September 1978.webm\", 'Senator Markey Questions ExxonMobil CEO Rex Tillerson at Confirmation Hearing - Full - 1-11-17.webm', 'Medal of Honor Ceremony- Capt. Florent Groberg.webm', \"Egyptian President Sadat's Remarks Upon His Arrival at Camp David Summit , 5 September 1978.webm\", 'President Carter Speaking at CIA Headquarters, 16 August 1978.webm', \"Behind the Scenes with President Obama's Medal of Honor Recipient.webm\", \"Israeli Prime Minister Begin's Remarks Upon His Arrival at Camp David Summit , 5 September 1978.webm\", '6-15-16- White House Press Briefing.webm', 'Senator Elizabeth Warren- Opening Statement on Andrew Puzder at Workers Forum.webm', \"Andrew Puzder Workers' Forum with Carl's Jr Employee Lupe Guzman.webm\", 'President Obama Welcomes the Stanley Cup Champion LA Kings and MLS Cup Champion LA Galaxy.webm', '9-26-16- White House Press Briefing.webm', '10-4-16- White House Press Briefing.webm', '1-11-16- White House Press Briefing.webm', '2-2-16- White House Press Briefing.webm', '1-6-16- White House Press Briefing.webm', 'Honoring the NBA Champion Miami Heat.webm', 'The Decision to Move Forward- First Lady Michelle Obama Meets Paralympian Lt. Brad Snyder.webm', '5-2-11- White House Press Briefing.webm', '5-3-11- White House Press Briefing.webm', \"President Sadat's Addresses delivered at the State Dinner, 26 March 1979.webm\", \"Let's Move! London.webm\", 'Together as One- Honoring Team USA at the White House.webm', '1-8-16- White House Press Briefing.webm', 'Behind the Scenes with President Obama & Team USA Basketball.webm', '9-27-16- White House Press Briefing.webm', '5-17-11- White House Press Briefing.webm', 'President Obama Delivers Remarks on the Economy.webm', '9-22-16- White House Press Briefing.webm', 'The Frozen North (1922).webm', 'CantuSemana i.webm', 'Fanny RabelSemanai.webm', 'The President Celebrates the 2015 National Teacher of the Year.webm', 'Remarks by the First Lady at \"Broadway at the White House\".webm', 'President Obama on the Situation in Libya.webm', '4-5-11- White House Press Briefing.webm', 'President Obama Holds a Press Conference with Chancellor Angela Merkel.webm', 'Easter Prayer Breakfast.webm', 'White House Easter Egg Roll Highlights.webm', 'President Obama on the Green Fleet Initiative.webm', '4-29-09- Presidential Press Conference.webm', '4-18-11- White House Press Briefing.webm', '4-1-11- White House Press Briefing.webm', '4-12-11- White House Press Briefing.webm', '4-4-11- White House Press Briefing.webm', '4-11-11- White House Press Briefing.webm', 'President Obama Welcomes the Pittsburgh Penguins.webm', 'Open for Questions- Energy Security with Secretary Salazar.webm', 'Daily Press Briefing- October 26, 2012.webm', 'RinaLazoInterviewSemanai.webm', \"President Obama Addresses America's Energy Security.webm\", 'Presidential Press Conference.webm', '3-31-11- White House Press Briefing.webm', '11-4-10- White House Press Briefing.webm', '3-15-11- White House Press Briefing.webm', '3-14-11- White House Press Briefing.webm', '3-30-11- White House Press Briefing.webm', '5-11-11- White House Press Briefing.webm', '4-14-11- White House Press Briefing.webm', 'President Obama Honors the 2012 National Teacher of the Year and Finalists.webm', \"Secretary of State John Kerry's Remarks at Top of Daily Press Briefing.webm\", '10-28-10- White House Press Briefing.webm', '2011 National Teacher of the Year Award.webm', 'President Obama Honors the 2014 Teacher of the Year and Finalists.webm', '10-26-10- White House Press Briefing.webm', 'Building a Clean Energy Economy.webm', 'Presidential Press Conference on the 2012 Budget.webm', \"President Obama's Speech on Libya.webm\", \"Town Hall on America's Fiscal Future.webm\", 'President Obama Awards the Arts & Humanities Medal.webm', 'Museum of African American History Opening.webm', 'The First Lady Presents the School Counselor of the Year Award.webm', '3-24-09- Presidential Press Conference.webm', 'Josh Earnest (and President Obama) Briefs College Reporters.webm', 'The First Lady Honors the 2016 School Counselors of the Year The White House.webm', 'Gallbladder adenocarcinoma.webm', 'Cirrhosis.webm', 'Biliary atresia.webm', 'Ex1402-dive01.webm', '2-16-11- White House Press Briefing.webm', '9-23-16- White House Press Briefing.webm', 'President Obama News Conference.webm', 'Secretary Kerry Gives Farewell Remarks to State Department Employees.webm', 'Daily Press Briefing - January 19, 2017.webm', 'Baba Ramdev.ogg', \"Women's March Washington DC Protestor Sue Chan Remark.webm\", 'Bastiaan use Kratom and goes up and down (Mitragyna) - Drugslab.webm', 'William Weld Discusses the House Committee on the Judiciary Impeachent Inquiry.webm', 'President Obama Holds a YSEALI Town Hall.webm', 'President Obama Speaks to the People of Laos.webm', 'White House Spokesman Spicer Holds News Conference.webm', 'OSM Wikimedia linken voor het Museum Volkenkunde Leiden.ogv', 'May the 4th- the President, First Lady & R2-D2.webm', 'The Record- President Obama on Health Care in America.webm', 'West Wing Week 02-21-14 or \"Don\\'t Make Small Plans, Make Big Plans\".webm', '8-2-11- White House Press Briefing.webm', \"It's on Us Campus Sexual Assault Summit.webm\", '8-31-11- White House Press Briefing.webm', '8-10-11- White House Press Briefing.webm', '8-1-11- White House Press Briefing.webm', '7-13-11- White House Press Briefing.webm', 'Vice President Biden Speaks on Preventing Campus Sexual Assault.webm', 'Vice President Biden Speaks on Reauthorizing the Violence Against Women Act.webm', '8-4-11- White House Press Briefing.webm', '11-3-11- White House Press Briefing.webm', '7-8-11- White House Press Briefing.webm', '7-12-11- White House Press Briefing.webm', '11-21-11- White House Press Briefing.webm', '9-7-11- White House Press Briefing.webm', 'The President and Vice President Speak on Preventing Sexual Assault.webm', '9-12-11- White House Press Briefing.webm', '8-3-11- White House Press Briefing.webm', '7-7-11- White House Press Briefing.webm', '11-10-11- White House Press Briefing.webm', '7-5-11- White House Press Briefing.webm', '7-14-11- White House Press Briefing.webm', '9-1-11- White House Press Briefing.webm', '11-2-11- White House Press Briefing.webm', \"President Obama Speaks on the My Brother's Keeper Initiative.webm\", 'President Obama Speaks on the Economic Impact of the Government Shutdown.webm', '8-8-13- White House Press Briefing.webm', 'Travels with the First Lady- Joining Forces Anniversary.webm', \"President Obama and Japanese Prime Minister Abe's Historic Visit to Pearl Harbor.webm\", '10-21-13- White House Press Briefing.webm', 'President Obama Speaks on Improving Fuel Efficiency for American Trucks.webm', '11-1-13- White House Press Briefing.webm', '10-3-13- White House Press Briefing.webm', '10-17-13- White House Press Briefing.webm', '10-24-13- White House Press Briefing.webm', '10-9-13- White House Press Briefing.webm', '10-2-13- White House Press Briefing.webm', '7-23-13- White House Press Briefing.webm', '10-16-13- White House Press Briefing.webm', '7-16-13- White House Press Briefing.webm', '7-17-13- White House Press Briefing.webm', '7-22-13- White House Press Briefing.webm', '9-30-13- White House Press Briefing.webm', '10-28-13- White House Press Briefing.webm', '9-25-13- White House Press Briefing.webm', '10-1-13- White House Press Briefing.webm', '10-23-13- White House Press Briefing.webm', '10-31-13- White House Press Briefing.webm', '11-5-13- White House Press Briefing.webm', 'President Obama & Bill Nye Talk Earth Day in the Everglades.webm', 'Raw Video- President Obama Records a Video Before Speaking on ConnectED.webm', 'Behind the Scenes with President Obama- SOTU Speech Prep.webm', 'Letters to the President- Aleena from Maryland.webm', '6-15-11- White House Press Briefing.webm', \"The First Lady on the Fourth Anniversary of Let's Move!.webm\", 'Achondroplasia.webm', 'The President Holds a Press Conference in Turkey.webm', '7-31-13- White House Press Briefing.webm', '6-16-11- White House Press Briefing.webm', 'The President holds a Press Conference in Paris.webm', '11-29-10- White House Press Briefing.webm', '10-11-13- White House Press Briefing.webm', '7-29-15- White House Press Briefing by Deputy Press Secretary Eric Schultz.webm', 'Happiness is all in your mind- Gen Kelsang Nyema at TEDxGreenville 2014.webm', '10-10-13- White House Press Briefing.webm', '6-2-15- White House Press Briefing.webm', '11-6-15- White House Press Briefing.webm', 'Press Briefing by Principal Deputy Press Secretary Eric Schultz.webm', '7-12-13- White House Press Briefing.webm', '10-4-13- White House Press Briefing.webm', '9-26-13- White House Press Briefing.webm', '12-15-15- White House Press Briefing.webm', '6-3-15- White House Press Briefing.webm', '12-14-15- White House Press Briefing.webm', '2-26-15- White House Press Briefing.webm', '12-9-15- White House Press Briefing.webm', '12-17-15- White House Press Briefing.webm', '10-6-15- White House Press Briefing.webm', '12-16-15- White House Press Briefing.webm', 'What is theatre capable of- Simon Stone at TEDxSydney.webm', 'TEDxSydney - Richard Gill - The Value of Music Education.webm', 'Free software, free society- Richard Stallman at TEDxGeneva 2014.webm', \"Trump 'It's not a Muslim ban'.webm\", 'Trump Immigration Order Sparks Protests at NY Airport.webmhd.webm', '2014-07 Dorfbahn Serfaus Talfahrt.ogv', '2014-07 Dorfbahn Serfaus Bergfahrt.ogv', 'Rens eats a whole Peyote cactus (mescaline) - Drugslab.webm', 'Git Basics no. 3 - Get Going.webm', 'Git Basics no. 4 - Quick Wins with Git.webm', 'Git Basics no. 1 - What is VCS.webm', 'Git Basics no. 2 - What is Git.webm', 'Git Foundations - Branch.webm', 'Git Foundations - Ignore.webm', 'Git Foundations - Checkout.webm', 'Git Foundations - Init.webm', 'Git Foundations - Remove.webm', 'Git Foundations - Setup.webm', 'Git Foundations - Log.webm', 'Git Foundations - Move.webm', 'Git Foundations - Config.webm', 'Git Foundations - Introduction.webm', \"Behind the Scenes - President Obama and Disney's Hall of Presidents.ogv\", 'Pence at March for Life 2017.webm', 'Alcohol related liver disease.webm', 'Alport syndrome.webm', 'Alzheimer disease video.webm', 'Anorexia nervosa.webm', 'Aphthous Ulcers.webm', 'Appendicitis.webm', 'Ascending cholangitis.webm', 'Asthma.webm', 'Presidential Medal of Freedom Recipient - Arturo Sandoval.webm', '2016 Invictus Games - Retired Staff Sergeant Michael Kacer.webm', \"1944 - Himmler's Posen Speeches excerpt III.ogg\", 'Lupus video.webm', 'Message from the Acting Administrator.webm', 'Senator Elizabeth Warren at Copley Square Muslim Ban Protest.webm', 'Senator Elizabeth Warren at Boston Logan Airport for -NoBanNoWall Protest.webm', 'Swearing-In of The Secretary of Transportation.webm', 'President Trump Announces Supreme Court of the United States Nominee.webm', 'President Trump Delivers Remarks at DHS.webm', 'S-IC-D hurricane damage at Michoud.ogv', 'Munimji (1955).webm', 'ADA-Video Mach mit bei Wikipedia.webm', 'Asim Basu voice.ogg', 'Machmit Tutorials Teaser.webm', 'OSM Wikimedia linken voor het Museum Volkenkunde Leiden.ogg', 'Senator Elizabeth Warren floor speech on Rex Tillerson.webm', 'Senator Markey Discusses Republican Giveaways to Oil, Coal, Mining Companies - 2-2-17.webm', 'Richard Wolff- On Bernie Sanders and Socialism.webm', 'Nellie becomes dazed by Oxycontin (Oxycodon) - Drugslab.webm', 'CemalGursel1963.ogg', 'Or-ଘର ତୋଳା.flac', 'What is Creative Commons?.webm', 'Jabberwocky.ogg', 'Vice President Pence holds a swearing-in ceremony for Education Secretary Betsy DeVos.webm', 'Bumpy landing at Gatwick.webm', 'Weed (THC) - Drugslab.webm', 'Bastiaan gets baked - Weed (THC) - Drugslab.webm', 'Senator Markey Speaks in Opposition to Nomination of Tom Price for Sec. of HHS - 2-9-17.webm', 'February 11, 2017 g - Statement by Lieutenant-Colonel NM LPR Marochko AV.webm', 'February 7, 2017 Statement by Mr. NM LPR Marochko Lieutenant Colonel AV.webm', '06 February, 2017 the statement of the representative of Hm LPR Colonel A. V. Marochko.webm', '21 Jan 2017 - the statement of the representative of Hm LPR major Marochko A. V..webm', '18 Jan 2017 - the statement of the representative of Hm LPR major Marochko A. V..webm', '28 Jan 2017 - the statement of the representative of Hm LPR major Marochko And.webm', 'January 11, 2017 - Statement by HM LC Major Marochko AV.webm', '04 Jan 2017 - the statement of the representative of Hm LPR major Marochko A. V..webm', '19 Jan 2017 - the statement of the representative of Hm LPR major Marochko A. V..webm', '08 Jan 2017 - the statement of the representative of Hm LPR major Marochko A. V..webm', '12 Jan 2017 - the statement of the representative of Hm LPR major Marochko A. V..webm', '16 Jan 2017 - the statement of the representative of Hm LPR major Marochko A. V..webm', '10 Jan 2017 - the statement of the representative of Hm LPR major Marochko A. V..webm', '05 Jan 2017 - the statement of the representative of Hm LPR major Marochko A. V..webm', '09 Jan 2017 - the statement of the representative of Hm LPR major Marochko A. V..webm', '29 Dec 2016 - the statement of the representative of Hm LC major Marochko A. V..webm', '21 Dec 2016 - the statement of the representative of Hm LPR major Marochko And.webm', '15 December 2016 - the statement of the representative of Hm LPR major Marochko A. V..webm', '16 Dec 2016 - the statement of the representative of Hm LPR major Marochko AV.webm', '14 Dec 2016 - the statement of the representative NM LPR major Marochko A. V..webm', 'Statement by HM LPR Major Marochko And in December 6, 2016 g.webm', 'The statement of the representative of Hm LPR major Marochko A. V. 09 Dec 2016.webm', 'Statement by HM LPR Major Marochko AB November 28, 2016 Mr..webm', 'The statement of the head of Department militia Colonel Anashchenko O. V. - December 10, 2016..webm', 'The statement of the head of Department militia Colonel Anashchenko O. V. - 26 Nov 2016..webm', 'February 13, 2017 g - Statement by Lieutenant-Colonel NM LPR Marochko AV.webm', 'Открытый доступ 2016.ogv', 'Swearing-In Ceremony of the Secretary of Treasury.webm', 'Parent-Teacher Conference Listening Session.webm', 'President Trump Participates in a Roundtable.webm', 'Secretary Tillerson Delivers Remarks Upon his Arrival at the U.S. Department of State.webm', 'Ru-CCCP.ogg', 'Brateyevo depot of Moscow Metro.webm', 'February 16, 2017 g - Statement by Lieutenant-Colonel NM LPR Marochko AB.webm', 'Press Conference with FOMC Chairman Ben S. Bernanke.webm', 'Ja-Karaoke.oga', 'Intervjuo kun Chuck Smith de Duolingo.webm', 'Rens jerks off while sniffing poppers - Drugslab.webm', '2016 Mercury Transit in 4K.webm', 'Oral history of Odisha - Bahuna gita.webm', 'Oral history of Odisha - Storytelling.webm', \"2017-02-17 President Trump's Weekly Address.ogv\", 'NASA - Synthesis- NASA Data Visualizations In Ultra-HD (4K).webm', 'Liftoff of SpaceX CRS-10.webm', 'President Trump Makes Remarks at Boeing.webm', 'Justice Samuel Alito Swears-In EPA Administrator Scott Pruitt.webm', 'President Trump Holds a Press Conference.webm', 'A street vendor selling groundnuts in a bus at Bhadrak bus stand, Bhadrak, Odisha, India.flac', 'Westgate Bridge ABC.ogv', 'Wikimedia Deutschland Lizenzhinweisgenerator.webm', 'President Trump Speaks at the National Museum of African American History and Culture.webm', '2-21-17- White House Press Briefing.webm', 'Liftoff in UHD of SpaceX Falcon 9 on CRS-10 Mission.webm', 'Bastiaan parties for 12 hours straight after using 6-APB - Benzo Fury - Drugslab.webm', 'Navigation popups quick tour.ogv', 'Schizophrenia video.webm', 'A Gentle Introduction to Wikidata for Absolute Beginners (including non-techies!).webm', 'Richard Nixon discusses Vietnam negotiations with Brent Scowcroft, June 12, 1973.webm', '\"Cancer on the Presidency\"- John Dean explains the origins of the Watergate break-in, March 21, 1973.webm', '\"Smoking Gun\"- Richard Nixon and Bob Haldeman discuss the Watergate break-in, June 23, 1972.webm', 'Vice President Pence Participates in a Swearing-In Ceremony for Secretary of Commerce Wilbur Ross.webm', 'President Trump Leads a Listening Session with Health Insurance Company CEOs.webm', 'President Trump Stops by the National Governors Association Meeting.webm', '2-27-17- White House Press Briefing.webm', '2017-02-28 - The Joint Session of Congress.webm', 'Attorney General Sessions Statement on Recusal.webm', \"Senator Elizabeth Warren's Floor Speech on Commerce Secretary Nominee Wilbur Ross.webm\", 'Edward-Byers-to-receive-medal-of-Honor.webm', 'Navy Seal Receives Medal of Honor (103082945).webm', 'Robin Williams tribute video (354881).webm', 'Kersttoespraak 2016.ogg', 'Prins Willem-Alexander rijdt de Elfstedentocht.webm', 'Annonce Gare Bry Marne RER.ogg', 'Zo herken je een (on)betrouwbare peiling.webm', 'VERKIEZINGEN 2017- Verkiezingscampagnes - Historicus Harm Kaal.webm', 'VERKIEZINGEN 2017- Zorg - Gezondheidseconoom Marco Varkevisser.webm', 'America First, Japan Second (Official).webm', 'Speed makes Nellie aggressive (amphetamine) - Drugslab.webm', 'Or-ନଈ ବଢ଼ି.ogg', 'Een gesprek tussen Johnny en Jesse.webm', '20170103 Press Briefing HD.webm', '20170104 Press Briefing HD.webm', '20170105 White House Daily Briefing HD.webm', '1-11-17- White House Press Briefing.webm', '2030.wikimedia.org.webm', 'De PVV is economisch helemaal niet links. Integendeel.webm', 'Een gesprek tussen links en rechts met Jesse Klaver.webm', 'VERKIEZINGEN 2017- AOW en Pensioen - Econometrist Marike Knoef.webm', '3-8-17- White House Press Briefing.webm', 'Wiki loves Women - English WebM - Final.webm', 'President Trump Leads an NEC Listening Session With CEOs of Small and Community Banks.webm', 'President Trump Leads a Meeting with the U.S. House Deputy Whip Team.webm', '3-9-17- White House Press Briefing.webm', '3-7-17- White House Press Briefing.webm', 'Bastiaan philosophizes and enjoys the nature thanks to kanna (mesembrine) - Drugslab.webm', 'Voorbereiding aangifte bij Belastingdienst.webm', 'Fr-moelle épinière.oga', \"L'heure du thé.ogv\", 'Es-Ciudad de Mexico.ogg', 'VERKIEZINGEN 2017- Klimaat - Econoom Robert Dur.webm', 'President Trump Leads a Healthcare Discussion with Key House Committee Chairmen.webm', 'Twenty-sixth Amendment Certification Ceremony.webm', '3-10-17- White House Press Briefing.webm', 'A President Resigns- Richard Nixon and the End of an Era.webm', 'Richard Nixon explains his All-Time All-Star baseball team selections, June 30, 1972.webm', 'President Juncker addresses the European Parliament following the UK referendum.webm', \"Frans Timmermans' inspirational speech to EU Parliament.webm\", 'Teaching Wikipedia in Egypt - May Hachem.webm', \"2017-03-10 President Trump's Weekly Address.ogv\", 'Wil jij politiek 2.0- Stem 15 maart lijst 20 - Piratenpartij.webm', 'Piratenpartij - Campagnespot Tweede Kamerverkiezingen 2017 (Zendtijd Politieke partijen).webm', 'Ar-al Gumhuriyah al Iraqiya.ogg', 'Piratenpartij - Campagnespot Tweede Kamerverkiezingen 2017.webm', 'President Trump Makes Remarks at the Hermitage.webm', 'Swearing-in for the Administrator of CMS.webm', 'President Trump Makes Remarks at the American Center for Mobility.webm', '3-14-17- White House Press Briefing.webm', '3-16-17- White House Press Briefing.webm', \"Temazepam - Do's and don'ts - Drugslab.webm\", 'Bastiaan is knocked out by Temazepam - Drugslab.webm', 'Nicholas II of Russia 1910.ogg', \"2017-03-18 President Trump's Weekly Address.webm\", \"King Hussein's speech after the Battle of Karameh 1968.ogg\", 'Depression era gangsters.ogg', 'Documentary Paralympic Athelete Ronald Hertog - NOC*NSF.webm', 'DesignThinking.ogv', 'Interview with Secretary of State Rex Tillerson.ogg', 'Trump - Merkel Joint Press Conference.webm', 'AsironLaburpenaTXIKI.ogv', 'Women in botany and Wikipedia.webm', 'USS Nimitz Suez Canal Transit II.webm', 'President Trump Makes a Statement on Healthcare Law.webm', 'Pl-kurwa.ogg', '3-24-17- White House Press Briefing.webm', 'March 22, 2017 Statement by the representative of the NM LPR Lieutenant Colonel A. Marochko..webm', 'March 25, 2017 Statement of the representative of the NM LNR Lieutenant Colonel Marochko AV.webm', 'March 20, 2017 Statement of the representative of the NM LPR Lieutenant Colonel A. Marochko..webm', 'March 21, 2017 Statement by the representative of the NM LPR Lieutenant Colonel A. Marochko..webm', 'March 11, 2017 Statement by the representative of the NM LPR Lieutenant Colonel A. Marochko.webm', 'March 10, 2017 Weekly briefing by Lieutenant Colonel A. Marochko, representative of the NM LPR..webm', 'Een guerrilla-college over het verhaal achter de ramp.webm', 'Ru-годиться.ogg', 'White House Big Block of Cheese Day 2015 promo.webm', 'Big Block of Cheese Day- Virtual Edition.webm', 'Allison Janney at the White House Press Briefing.webm', '08-20-2012 - President Obama Holds a News Conference.webm', '1-10-14- White House Press Briefing.webm', '1-14-14- White House Press Briefing.webm', '1-15-13- White House Press Briefing.webm', 'President Trump Participates in a Roundtable with Women Small Business Owners.webm', 'President Trump Participates in and Makes Remarks at the Friends of Ireland Luncheon.webm', 'President Trump Meets with the Congressional Black Caucus Executive Committee.webm', \"President Trump's Joint Address to Congress.webm\", 'President Trump Hosts a Reception for Senators and Their Spouses.webm', 'President Trump Meets with the Republican Study Committee.webm', 'President Trump Holds a National Economic Council Meeting.webm', 'President Trump Leads a Bilateral Meeting with Prime Minister al-Abadi.webm', 'President Trump Signs House Joint Resolution 37, 44, 57 and 58.webm', 'President Trump Participates in a Meeting with Medal of Honor Recipients.webm', 'President Trump drops by the Women in Healthcare panel hosted by Seema Verma.webm', 'President Trump Hosts a Listening Session with the Fraternal Order of Police.webm', 'Vice President Pence Participates in a Swearing-in for the U.S. Ambassador to Israel, David Friedman.webm', 'President Trump Signs S. 442.webm', 'Vice President Pence Swears-in Director of National Intelligence Dan Coats.webm', 'President Trump Signs an Energy Independence Executive Order.webm', 'President Trump Meets with Charter Communications CEO Thomas Rutledge and Texas Governor Greg Abbott.webm', \"President Trump and Vice President Pence Speak at the Women's Empowerment Panel.webm\", 'President Trump Leads a Listening Session with Truckers and CEOs Regarding Healthcare.webm', 'President Trump Hosts a Greek Independence Day Celebration.webm', '3-28-17- White House Press Briefing.webm', 'President Trump Leads a Roundtable Discussion with United States and German Business Leaders.webm', '3-29-17- White House Press Briefing.webm', 'President Trump Hosts an Opioid and Drug Abuse Listening Session.webm', '3-27-17- White House Press Briefing.webm', 'Mind Your Military Manners (1971).webm', 'Look Like a Winner (1971).webm', 'Face to Face with Communism (1951).webm', 'The Battle of Midway (1942).webm', 'Batman, ca. 1973.webm', 'Batman for U.S. Savings Bonds, ca. 1966.webm', 'The Lone Ranger Peace Patrol (1958).webm', 'The Return of Count Spirochete, (1973).webm', 'Dark Souls- The Story of Hidetaka Miyazaki, and the Team Ico Game that Changed His Life Forever.webm', 'LSA seeds make Bastiaan puke and trip - Drugslab.webm', 'Wingsuit flight Jump from Aiguille du Midi 2016 - Chamonix.webm', 'Fiber optic cables — How they work.webm', 'Prerenal acute kidney injury.webm', 'Intrarenal acute kidney injury.webm', 'Rens takes modafinil and gets annoyed - Drugslab.webm', 'LAST MAN ON EARTH with Vincent Price 1964 HD - CC available.webm', 'President Trump Attends the Swearing-In Ceremony of the Honorable Neil Gorsuch.webm', 'EN simpleshow foundation Sushi explainer video.webm', 'Ru-носок.ogg', 'Välkommen till min plats.webm', 'OpenViBE signal averaging demo.webm', 'OpenViBE Aquisition Server hello world.webm', 'OpenViBE - Sinus Oscillator demo.webm', 'Postrenal acute kidney injury.webm', 'Horseshoe kidney.webm', 'Renal agenesis.webm', 'Multicystic kidney disease.webm', 'Tillerson Heads to Russia Amid Tense Relations Over Syria Attacks.webm', 'Sir David Attenborough BBC Radio4 Desert Island Discs 29 Jan 2012 b01b8yy0.flac', '4-11-17- White House Press Briefing.webm', 'Google+ Hangout With Secretary Kerry on Syria- Weighing the U.S. Response.webm', 'The Inauguration of the 45th President of the United States.webm', \"President Trump's Inaugural Address.webm\", 'MJ.webm', 'Bananenoogst.ogv', 'Orbital ATK CRS-7 Lifts off.webm', 'Science Speaks - Talking to Women in Science (Sudha, Medical Officer).webm', 'Science Speaks - Talking to Women in Science (Sara, Epidemiologist).webm', 'Science Speaks - Talking to Women in Science (Tara, Epidemiologist).webm', 'Science Speaks - Talking to Women in Science (Rebecca, Health Communication Specialist).webm', 'Science Speaks - Talking to Women in Science (Liz, Epidemiologist).webm', 'Science Speaks - Talking to Women in Science (Kendra, Industrial Hygienist).webm', 'Science Speaks - Talking to Women in Science (Kellie, Psychologist).webm', 'Science Speaks - Talking to Women in Science (Deborah, Engineer).webm', 'Occupational Exposure Banding – A conversation with Lauralynn Taylor McKernan, ScD, CIH.webm', \"Nick and Allison's WTC Story.webm\", \"Morris' WTC Story.webm\", \"Lillian's WTC Story.webm\", \"Lainie's WTC Story.webm\", 'Jon Stewart and John Feal - Healthcare for sick 9 11 responders and survivors.webm', \"John's WTC Story.webm\", 'How one firefighter found health care after becoming sick from 9 11.webm', 'Hope and Recovery with the WTC Health Program 2.webm', 'Hope and Recovery with the WTC Health Program 1.webm', 'Healthy Aging for Workers - Injuries, Illnesses, and Fatalities among Older Workers - 3 of 10.webm', \"Glenn's WTC Story.webm\", 'Cancer and the World Trade Center Health Program - WD2810.webm', \"Florence's WTC Story.webm\", 'Airway, Digestive, and Mental Health Comorbidities in WTC Responders and Survivors - WD2809.webm', \"Bob's WTC Story.webm\", \"Alex's WTC Story.webm\", 'Advances in the Screening and Treatment for WTC Responders and Survivors - WD2813.webm', \"'There's No Other Program Like This -' WTC Health Program Offer Hope.webm\", 'JuanDomingoPeron-RadioNacional.ogg', 'Nellie has a breakthrough on DMT - Drugslab.webm', 'Joint Press Conference w- Prime Minister Netanyahu.webm', 'Rens uses cocoa as a partydrug - Drugslab.webm', 'President Obama Delivers a Statement on the Paris Agreement.webm', 'President Trump Holds a Joint Press Conference with Prime Minister Gentiloni.webm', 'Basi Basistha Jabali Bamadeba.ogg', 'President Obama Visits the El Reno Federal Correctional Institution.webm', 'Davos 2012 - Global Economic Outlook.webm', 'Minimal-change disease.webm', 'Focal segmental glomerulosclerosis.webm', 'Membranoproliferative glomerulonephritis.webm', \"NASA's Solar Dynamics Observatory- Year 7 Ultra HD (4k).webm\", 'SDO- Year 6 Ultra-HD.webm', 'Duesseldorfer Marionetten-Theater - Der satanarchaeoluegenialkohoellische Wunschpunsch.webm', 'Ode to Joy.ogg', 'MDMA makes Bastiaan feel like a child again - Drugslab.webm', 'President Trump Holds a Joint Press Conference with Secretary General Stoltenberg.webm', 'Ta letter.webm', \"Bizet - Carmen - 1 - Act 1 - Scene 5 - L'amour est un oiseau rebelle (Habanera).oga\", 'Goa 1955 invasion.ogg', 'DuckandC1951.ogg', \"GRANDMOTHER'S PERANAKAN BROOCH • Jeweler Shows How to Make • George Town • MALAYSIA.webm\", 'Discurso 2 de abril 2010.ogg', 'Medie och informationskunnighet i undervisningen.webm', 'Lägg till hjälpspråk i inställningarna på Translatewiki.webm', 'Skapa konto på translatewiki.webm', 'Lärande och källkritik med yngre elever.webm', 'Lägg till hjälpspråk i inställningarna på Transaltewiki.webm', 'Tornado Emergency Alabama.ogg', 'Arbetssättet i Välkommen till min plats.webm', 'President Trump Participates in the U.S. Air Force Academy Commander-in-Chief Trophy Presentation.webm', 'Dixie (1916).ogg', 'Introduction to Kathabhidhana (for Wikimania).webm', 'Introduction to Kathabhidhana.webm', 'The President and the Vice President Join Education Secretary Betsy DeVos at a School Choice Event.webm', 'National EAS Test.ogg', 'President Trump Meets with President Abbas.webm', 'Prisat projekt använder Platsr.webm', 'Food Festival • Djemaa el Fna • Rotterdam - The NETHERLANDS.webm', 'SH-216 Colectivo discussion.webm', \"'Rule, Britannia!' (United States Army Strings).oga\", 'Professor Laura Tohe - \"Armed with Our Language, We Went to War- The Navajo Code Talkers.\".webm', 'Solomon Islands- Committed to conserving rainforests.webm', 'Sex Trafficking and the New Abolitionists- A Panel Discussion at Brooklyn Museum.webm', 'Gov. Justice signs Medical Cannabis Act.webm', 'Gov. Justice gives a budget update.webm', 'Gov. Justice makes major announcement regarding greyhound industry.webm', 'Gov. Justice vetoes GOP budget.webm', \"Remarks at the Arctic Council's 20th Anniversary Welcome Reception.webm\", 'Sesame Street- Grand Canyon Families.webm', 'Bastiaan has a bad trip after drinking DXM - Drugslab.webm', 'GHB makes Nellie feel weak - Drugslab.webm', 'Dutch Birthday Song - Lang zal ze leven (Long shall she-he live).webm', 'Ru-подарок.ogg', 'Comentario de Gerard Way sobre homosexuales y transgénero.webm', 'Membranous nephropathy.webm', 'Polycystic kidney disease.webm', 'Nephronophthisis.webm', 'Climate change is simple- David Roberts at TEDxTheEvergreenStateCollege.webm', 'An introduction to UK Parliament.webm', 'Проститутка. (Убитая жизнью). (1926).webm', 'What is the House of Commons-.webm', 'Venezuela (-PrayForVenezuela).webm', 'OpenSpeaks - Podcast 2 - Joel Aldor about the Philippine Heritage Map project.wav', 'President Trump Gives Remarks with President Abbas.webm', 'Laser, quantum principle.ogv', 'What is Tissue Engineering-.webm', \"Prince Rupert's Drops- 400 Year Old Mystery Revealed.webm\", \"President Trump's Trip Abroad - Rome, Vatican City, Brussels.webm\", 'CAT-D9L-crushes-a-car.webm', \"President Trump's Trip Abroad - Jerusalem, Bethlehem.webm\", \"President Trump's Trip Abroad - Riyadh.webm\", 'President Trump meets with President Emmanuel Macron of France.webm', 'Sindhi Wikipedia Sindhi people editthon tutorial.webm', 'Bill Monning Audio 2017.wav', 'Bloop real.ogg', 'A Moment with Jack Fischer.webm', 'Responses for impeachment in South Korea on 2017.ogv', 'National anthem of Ukraine, instrumental.oga', 'The Story of Satoshi Tajiri.webm', 'Max 1.ogv', 'Geboortezorg in beweging- perspectief voor de patiënt.webm', 'Andrew Dessler.ogg', \"New Graduates Earn Degrees At Bemidji State University's 98th Commencement.webm\", 'Mount Holyoke College Commencement 2016- roaring with Lyon pride..webm', 'Commencement Speech at Howard University, 6-4-65. MP2265-66..webm', \"Berkeley's 2016 University Medalist Kaavya Veliveti Commencement Speech.webm\", \"Wynton Marsalis' 2013 UVM Commencement Speech.webm\", 'UC Berkeley Medalist Radhika Kannan Speaks at Commencement.webm', 'Paul Ryan Carthage College Commencement Address 2016.webm', 'Maz Jobrani Delivers UC Berkeley Commencement Keynote Speech.webm', 'Franck-Hertz experiment Physics for Abitur.webm', 'WIENFILTER so funktioniert ein Geschwindigkeitsfilter.webm', 'ARTISANAL FUNNEL FISH-TRAP - ENGLISH SUBTITLES.webm', 'Transrapid Shanghai maglev train ride.webm', \"President Obama's 2015 State of the Union Address.webm\", 'Wikipedia - Share the Knowledge (Arabic).webm', 'Wikipedia - Share the Knowledge (Kurdish).webm', 'Share the Knowledge (no subtitles).webm', 'Save life Give Blood.webm', 'Marangoni effect experimental demonstration.ogv', 'En-us-Atambua from West Timor pronunciation (Voice of America).ogg', 'Aikoku Koshinkyoku (Columbia).ogg', 'Aikoku Koshinkyoku (Polydor).ogg', 'Wikistammtisch-episode-0002-mit-richard-heigl.oga', 'HE BR 52 4867 20101211 1605.ogv', 'Adam Hochschild, Co-Founder, Mother Jones.webm', 'The Engineering of a Disposable Diaper.webm', 'Marysville POL1.ogg', 'Audio Kevin Folta.wav', 'Uzo Iweala, Nigerian author, working on movement strategy.webm', 'Analysis of presentation situation, Movement Strategy Track, Wikimedia Conference 2017 in Berlin.webm', 'Analysis of presentation situation, Movement Strategy Track, Wikimedia Conference 2017 in Berlin (shortened).webm', 'Dandong.webm', 'National anthem of the Republic of China (Taiwan) 中華民國國歌(演奏版).ogg', 'Paris agreement signed.webm', 'Vikipedija i obrazovanje u Republici Srpskoj.webm', 'Managing Labor Pain - Kaiser Permanente.webm', 'Stages of Labor - Kaiser Permanente.webm', 'WikiLiburutegiak 2017 egitasmoa (bertsio laburra) (convert-video-online.com).webm', 'Brown bag - Panthea from Reboot.webm', 'A Is for Atom 1953.webm', 'Plénum de la Cathédrale Notre Dame de Strasbourg - 9 juillet 2000.ogg', 'Ru-Калифорния.ogg', 'Julia Galef voice.flac', '中華民國國旗歌 (演奏版).ogg', 'RenfrewshireAccent.ogg', 'Cherry Ripe (number station).ogg', 'Morevna Project - Pepper&Carrot (animated comic) - Episode 6 - The Potion Contest.webm', 'Morevna Project - Pepper&Carrot (animated comic) - Episode 6 - The Potion Contest (Russian variant).webm', 'NeuroMat completo semlegenda por dentro do cerebro.webm', 'Entrevista a Pilar Manjón, presidenta de la Asociación 11-M afectados del terrorismo.webm', 'Parábola origámica.ogv', 'God Bless America (1944), by the Boston Pops.ogg', \"Marines' Hymn (1944), by the Boston Pops.ogg\", \"Marine's Hymn.ogg\", \"Marines' Hymn, USMC Band.ogg\", 'Short clip of Philippine president Rodrigo Roa Duterte saying, among other things, \"Putang ina mo\".webm', 'WikiLiburutegiak 2017 egitasmoa (bertsio luzea).webm', 'Worcester Pronunciation.ogg', \"Women's Long Jump Final - 28th Summer Universiade 2015.webm\", 'Laboratory glassware introduction.webm', 'Alkali metals reations.webm', 'Analysis of eggshell sample by back titration.webm', 'Iberoconf 2017 (Buenos Aires).webm', 'Handling of concentrated acids.webm', 'How to cut a carrot.webm', 'National Flag Anthem of the Republic of China中華民國國旗歌 (演奏版).oga', 'Faederureaudio2.ogg', \"2011-11-12 President Obama's Weekly Address.ogv\", 'Wireless Charging for Electric Vehicles.webm', 'Energy 101- Fuel Cell Technology.webm', 'Charging Up in King County, Washington.webm', 'D.C. Hydrogen Fuel Station Demonstration Facility.webm', 'Recharging Michigan- A123 Systems.webm', 'Energy 101- Electric Vehicles.webm', \"The Resurgence of America's Auto Industry.webm\", 'Energy 101- Sustainable Public Transportation.webm', 'President Trump Holds a Joint Press Conference with President Macron.webm', 'President Trump Participates in an Expanded Meeting with President Vladimir Putin of Russia.webm', 'President Trump Speaks to the People of Poland.webm', \"President Trump's Six Months of America First.webm\", 'Energy Talks - Where Will Our Cars Drive Us- The Promise and Peril of Automated Vehicles.webm', 'First law.ogv', 'Common Workflow Language explained in 64 seconds.webm', 'Wiki Makes Video Intro 4 26.webm', 'President Trump Gives Remarks at the 2017 National Scout Jamboree.webm', 'Negaraku vocal.ogg', 'Animacion CutOut clip.webm', 'Animacion2d Wikiservicio.webm', 'MotionGraphicsAnimation.webm', 'President Trump Awards Heroic First Responders with Medal of Valor.webm', 'President Trump Meets with Prime Minister Hariri.webm', 'President Trump Leads Made in America Roundtable.webm', 'President Trump Gives Remarks to the People of Poland.webm', 'Secondlaw.ogv', 'President Trump Participates in the Celebrate Freedom Rally.webm', 'President Trump Gives Remarks to United States Military Personnel at Naval Air Station Sigonella.webm', 'Kalinka - Russian folk dance.webm', 'Thirdlaw.ogg', 'Recording of speaker of British English (Received Pronunciation).ogg', 'President Trump Recognizes First Responders to the June 14 Shooting Involving Congressman Scalise.webm', 'Intrepid- Methods to detect and prevent sexual assault.webm', 'Ali Rifat Istiklal Marche.ogg', 'Pl-Bydgoszcz.ogg', 'Writing the 2012 State of the Union Address (720p).ogv', 'President Trump Makes an Announcement with Senator Tom Cotton and Senator David Perdue.webm', 'President Trump Participates in an Event with Small Businesses.webm', 'Somos Wikimedia México.webm', 'President Trump Leads a Cabinet Meeting.webm', 'President Trump Awards the Medal of Honor.webm', 'President Trump Participates in a Department of Veterans Affairs Telehealth Event.webm', 'President Trump Presents the Medal of Honor.webm', 'President Trump Holds a Joint Press Conference with Prime Minister Hariri.webm', 'President Trump Gives Remarks at the Unleashing American Energy Event.webm', 'President Trump receives a FEMA briefing on hurricane season.webm', 'President Trump Signs the Space Council Executive Order.webm', 'The White House Movie Theater.webm', 'President Trump Participates in the White House Easter Egg Roll.webm', 'President Trump Visits France.webm', 'President Trump Participates in the Commissioning Ceremony for the Gerald R. Ford (CVN-78).webm', 'The Joint Session of Congress.webm', 'Wikimania 2018 promo video.ogv', '2017-08-06 16-46-52 reconst-histo-belfort.ogv', '2017-08-06 16-46-52 reconst-histo-belfort-webm.webm', 'Landwasserviadukt, aerial video.webm', 'OpenViBE signal decimation demonstration.webm', '(OpenViBE) time-based epoching example.webm', 'Motivation (6.002x-2).webm', 'Course Overview (6.002x).webm', 'Solis Viaduct, Schinschlucht and Solis dam, aerial video.webm', 'Knowledge belongs to all of us - 2030.wikimedia.org.webm', 'Duck And Cover (1951) Bert The Turtle.webm', 'FBI National Academy Recognizes 50,000th Graduate.webm', 'FBI Trains for War-Zone Deployments.webm', \"If I Didn't Care (1939), by The Ink Spots.oga\", 'President Trump receives a Security Briefing.webm', 'Thank you to Esino Lario for hosting Wikimania 2016 from Wikimania 2017 - message from Katherine Maher.webm', 'Happy Birthday Estonian Wikipedia!.webm', 'SpaceX CRS-12 Launches to the International Space Station.webm', 'SpaceX-Dragon CRS-12 Prelaunch News Conference.webm', 'Post-Launch Status of Next Space Station Supply Mission.webm', 'President Trump Delivers a Statement.webm', \"SpaceX-Dragon CRS-12 What's on Board Science Briefing.webm\", 'Gsw-oberelsässisch (Milhüsa)-ang.ogg', 'Felix Nartey - Wikipedian of the Year 2017.webm', 'Chol Chol Chol.ogg', 'Zimbabwe National Anthem.ogg', 'Love God, Love Neighbor.webm', 'President Trump Signs the Veterans Affair Choice and Quality Employment Act of 2017.webm', 'President Trump Delivers a Statement Following a National Security Briefing.webm', 'President Trump Participates in a Workforce Apprenticeship Discussion.webm', 'Insomnia.webm', 'Vice President Pence Delivers Remarks to the Argentine and Latin American Business Community.webm', 'EXPO-1520 train parade 3 in 2013.webm', 'Alan Melikdjanian voice.ogg', \"2011-12-03 President Obama's Weekly Address.ogv\", 'Isabelle Constant - Le problème du désir chez les couples installés - TEDxVaugirardRoad.webm', 'Why Does Iowa Go First-! - History of The Iowa Caucus Explained 2016.webm', 'President Obama Calls the International Space Station.webm', 'A Swift Tour of M31.ogv', 'The start of TV ABC.ogv', 'Uttaradit Mueang Ngam.ogg', 'Everybody can push the edit button - Natacha Rault.webm', 'Obsessive compulsive disorder.webm', 'FEMA Accessible Hurricane Harvey - Shelter in Place.webm', 'NWS Director Louis Uccellini on Hurricane Harvey.webm', '01 軍艦行進曲.ogg', 'Ru-чреватый.ogg', 'Wikilovesmonuments.org (no titles).webm', 'President Trump Meets with the I-85 Bridge First Responders.webm', 'President Trump Gives Remarks to the National Convention of the American Legion.webm', 'President Trump Gives a Presidential Address to the Nation.webm', 'Vice President Pence Makes Remarks to US Service Members Abroad the USS Ronald Reagan.webm', 'De-Einsiedler.ogg', 'GT Wikipedia AE.ogg', 'GT Wikipedia BE.ogg', 'Wikilovesmonuments.org.webm', 'Wikimania 2017 - Unifying editing and visual diffs.webm', '8-25-17- White House Press Briefing.webm', 'Arundhati Roy BBC Radio4 Bookclub 2 Oct 2011 b015brn8.flac', 'Estrategia 2030 - Entrevista Ruben Hilare.webm', 'Estrategia 2030 - Entrevista Victoria Tinta.webm', 'President Trump Participates in a Briefing on the Opioid Crisis with Secretary of HHS Tom Price.webm', 'President Trump Gives Remarks on MS-13 to Federal, State, and Local Law Enforcement.webm', 'Estrategia 2030 - Entrevista Tibonto Alexander.webm', 'Estrategia 2030 - Entrevista Modesta Chávez.webm', 'President Trump Participates in a Tour of the Emergency Operations Center.webm', 'President Trump Thanks First Responders.webm', 'The Ingenious Design of the Aluminum Beverage Can.webm', 'How a Film Projector Works.webm', 'President Trump Receive a Briefing on Hurricane Harvey with State Leadership.webm', 'CCD - The heart of a digital camera (how a charge-coupled device works).webm', 'President Trump Receives a Briefing on Hurricane Harvey Relief Efforts.webm', 'File:Math genius Artur Avila about calming chaos-VPRO-The Mind of the Universe.ogv', 'Math genius Artur Avila about calming chaos-VPRO-The Mind of the Universe.ogv', 'Biochemist Lee Cronin on creating artificial life-VPRO-The Mind of the Universe.ogv', 'Estrategia 2030 - Entrevista José Chuvé.webm', 'Carolina Cruz on how virtual reality will shape the world of tomorrow-VPRO-The Mind of the Universe.ogv', 'Chemist Hans Clevers replaces worn-down body parts with organoids created outside the body-VPRO-The Mind of the Universe.ogv', 'Element hunter Yuri Oganessian on creating new chemical elements-VPRO-The Mind of the Universe.ogv', 'Erik Demaine, the genius that plays for a living-VPRO-The Mind of the Universe.ogv', 'George Church on the revolution in and future of dna editing-VPRO-The Mind of the Universe.ogv', 'George Whitesides on the world of chemistry shaping our future-VPRO-The Mind of the Universe.ogv', 'Innovator Susant Pattnaik on how to impact your local community-VPRO.ogv', \"Chris Christie On Post-Sandy Obama Meet- 'I Would Do It Again' - Morning Joe - MSNBC.webm\", 'Congressman Pete Sessions Discusses DC Response To Hurricane Harvey - Morning Joe - MSNBC.webm', \"Michael Moore- Democrats Aren't Running The Right People - Morning Joe - MSNBC.webm\", 'Pastor Pulled To Safety At Charlottesville White Nationalists March - AM Joy - MSNBC.webm', 'IAS-director and Leon Levy professor Robbert Dijkgraaf interviews Martin Rees on the future of man in the cosmos-VPRO-The Mind of the Universe.ogv', 'IAS-director and Leon Levy professor Robbert Dijkgraaf interviews networks expert Jennifer Chayes on how the world of technology will shape our future-VPRO-The Mind of the Universe.ogv', 'Jan Wei Pan on quantum weirdness-VPRO-The Mind of the Universe.ogv', 'Jean-Jacques Hublin on human evolution-VPRO-The Mind of the Universe.ogv', 'Neuroscientist Miguel Nicolelis on connecting brains and machines-VPRO-The Mind of the Universe.ogv', 'Nicky Clayton on the theory of mind-VPRO-The Mind of the Universe.ogv', 'Pascale Fung on building robots with empathy-VPRO-The Mind of the Universe.ogv', 'Psychologist Charles Spence on fooling and reinforcing your senses-VPRO-The Mind of the Universe.ogv', 'Quantum physicist Juan Maldacena on the new quantum-reality theory-VPRO-The Mind of the Universe.ogv', 'Segenet Kelemu on how Africa can conquer the world through its knowledge of the world of insects-VPRO.ogv', 'Space pioneer Rick Tumlinson on colonizing space-VPRO-The Mind of the Universe.ogv', 'Trond Helge Torsvik-VPRO-The Mind of the Universe.ogv', 'Virus hunter Ron Fouchier on conquering the virus world-VPRO-The Mind of the Universe.ogv', 'Yoshua Bengio on intelligent machines-VPRO-The Mind of the Universe.ogv', 'Houston Mayor Sylvester Turner Says Houston Begins Recovery Mission - Morning Joe - MSNBC.ogg', \"Geist- 'This is jaw-dropping' - Morning Joe - MSNBC.webm\", 'Mika- What Will This Week Have In Store- - Morning Joe - MSNBC.webm', 'Cable car, Sheikh Russel Aviary and Eco Park, 2017.02.10.webm', \"Breitbart Editor Pollack- If Trump Tries To Reinvent, Support 'Will Erode'- Velshi & Ruhle - MSNBC.ogg\", 'Liberia National Anthem.ogg', \"360 Video- They've Lost Everything- Burundian Refugees in Tanzania.webm\", \"NASA Captures Hurricane Harvey's Rainfall.webm\", 'ISS passes over Hurricane Irma, Sept. 5.webm', 'St. Lucia Irma Waves.webm', 'Reunión Bilateral con Ministerio de Defensa de Suecia para fortalecer Cooperación.ogv', '1-16-13- White House Press Briefing.webm', 'ISS Passes Over Hurricane Irma - 9-6-2017.webm', 'Burning Man- The Festival.webm', 'Ru-О сколько нам открытий чудных.ogg', 'Ru-Руслан и Людмила, отрывок (У лукоморья дуб зеленый).ogg', 'Evil laugh 2.oga', 'Hurricane Irma Update - Direct Relief - 9-9.webm', 'Experience ubuntu.ogv', 'Ham Contest Exchange.ogg', 'Robotický knižní scanner.webm', 'HYMN - \"On Jordan\\'s Stormy Banks I Stand\" (church music).webm', 'Durham City Council June 19, 2017.webm', 'Chubitchi.webm', 'The Seedkeepers.webm', 'Our Wellbeing and The Future We Want (Showreel for Second Plenary).webm', \"Na'chi Brenga.webm\", 'Ka`ritchi.webm', 'Agroecology for Local Food Security (Fifth Plenary Showreel).webm', 'Bee Keeping.webm', 'Sohliang Seed.webm', 'Practices and consumption of soyabean.webm', 'Shifting Cultivation.webm', 'Maamme (first recording).oga', \"Cassini's Grand Finale.ogv\", 'Scharfenberg coupler in action ICE Leipzig-short.webm', 'National anthem of Algeria, by the U.S. Navy Band.oga', 'Free Software Foundation Europe - Public Money, Public Code.webm', \"Michael Moore- 'Donald Trump Outsmarted All Of Us' - All In - MSNBC.webm\", 'Neuron action potential.webm', 'Wikipedia - Things come together.webm', 'Wikipedia - Emmanuella goes to school.webm', 'Ru-Под каким созвездием.ogg', 'Wikipedia for Android Offline Demo.webm', 'Werken In De Wereld Van Olie En Gas - Aardgas Update 20.webm', 'Tigrigna.ogg', 'National Anthem of Eritrea by US Navy Band.ogg', 'Ana 1.ogv', 'Max 2.ogv', 'Ana 2.ogv', 'Max 3.ogv', 'Ana 3.ogv', 'Max 4.ogv', 'Ana 4.ogv', 'Max 5.ogv', 'Ana 5.ogv', 'Max 6.ogv', 'Ana 6.ogv', 'Max 7.ogv', 'Ana 7.ogv', 'Max 8.ogv', 'Ana 8.ogv', 'Max 9.ogv', 'Ana 9.ogv', 'Max 10.ogv', 'Anna 10.ogv', 'Max-1.ogv', 'Ana-1.ogv', 'Max-2.ogv', 'Ana-2.ogv', 'Max-3.ogv', 'Ana-3.ogv', 'Max-4.ogv', 'Ana-4.ogv', 'Max-5.ogv', 'Ana-5.ogv', 'Da-Tycho Brahe.ogg', 'Rowan Atkinson BBC Radio4 Front Row 8 Jan 2012 b018zvm9.flac', 'Position Firing.webm', 'How Satoru Iwata Saved Earthbound.webm', 'Cascada Lolaia.webm', 'Ja-kanji.ogg', 'Max-6.ogv', 'Van Allen Belts.ogv', 'Nl-plakt.ogg', '2017-09-24 16-16-00 reconst-histo-burnhaupt-le-haut.ogg', '2017-09-24 16-16-00 reconst-histo-burnhaupt-le-haut.ogv', '2017-10-01 09-07-00 transterritoire-vtt-belfort.ogv', 'Bangladesh building collapse - WN.ogg', 'Tutorial 5 Bilder in der Wikipedia.webm', 'Las Vegas Shooting Now Becomes Deadliest In US History - Morning Joe - MSNBC.webm', '6.002x-S6V2-MIT-edX-Nonlinear-Element-Video.webm', \"Harry Houdini's voice.ogg\", 'Advertising Record.ogg', 'Nad Tatrou sa blýska.ogg', \"You're a Grand Old Flag, MCB Camp Pendleton, February 2012.oga\", 'Himno Nacional Mexicano (instrumental).ogg', 'Haiti National Anthem.ogg', 'U.S. Navy Band - Kaba Ma Kyei.oga', 'Semper Paratus, January 2009.oga', 'Happy Birthday Korean Wikipedia!.webm', 'Megan Willams -Objectivity does not exist (not even for journalists).webm', 'NaturalAMinorScale.ogg', 'Patrioticheskaya Pesnya (May 2000).oga', 'Anchors Aweigh (January 20, 2009).oga', 'نصيحة ديفيد بشأن الرد على الرسائل.webm', \"David's advice about replying to messages.webm\", 'Lodewijk Asscher- investeer in de samenleving.webm', '\"Anchors Aweigh\" (January 20, 2009).ogg', 'The Brabançonne.oga', 'La Brabançonne.oga', 'Rendelsham.ogg', 'Anchors Aweigh (March 2015).oga', 'Premature atrial contraction.webm', '\"Die Stem van Suid-Afrika\" - National anthem of Apartheid South Africa.oga', 'Ru-тюль.ogg', '\"Die Stem van Suid-Afrika\" - National anthem of Apartheid-era South Africa.oga', 'CNO Statement on Recent Incidents in Pacific (August 21, 2017).ogv', \"Mika Brzezinski Responds To President Donald Trump's Tweets About Her - Morning Joe - MSNBC.webm\", 'Kamerlid Carola Schouten over het aanvragen van een Kamerdebat.webm', 'Christenen in Syrische oorlog tussen twee vuren.webm', 'Kamerlid Esther Ouwehand vertelt wat een motie is.webm', 'Kamerlid Fleur Agema over de sprekersvolgorde tijdens het debat.webm', 'Kamerlid Elbert Dijkgraaf zoekt de verschillen tussen de Tweede Kamer en de regering.webm', 'Kamerlid Joost Taverne over reces in de Kamer.webm', 'Kamerlid Henk Krol over Prinsjesdag.webm', 'Kamerlid Mona Keijzer over het wekelijkse vragenuur.webm', 'Kamerlid Nine Kooiman over werkbezoeken.webm', 'Kamerlid Linda Voortman over beleidsmedewerkers en internettende Kamerleden.webm', 'Kimi ga Yo 1930.ogg', 'National anthem of Apartheid South Africa - \"Die Stem van Suid-Afrika\".oga', 'National anthem of Apartheid-era South Africa - \"Die Stem van Suid-Afrika\".oga', 'Serbian National Anthem, instrumental.oga', 'Sapsan train - views from Saint Petersburg to Moscow.webm', '2017-10-19 10-19-34 manif-belfort.ogg', 'ChandrasekharPronunciation.ogg', 'Bingen Zupiria- \"Hezkuntzarako tresna gisa izugarrizko garrantzia hartu du Wikipediak\".webm', 'Informateur Zalm biedt eindverslag aan.webm', 'La Renaissance.ogg', '\"Jamaica, Land We Love\" (1962), performed by the United States Navy Band.oga', 'Wiki VortragMai1Hohmanncut5 1Master.webm', '\"Anchors Aweigh\" (January 20, 2009).oga', 'Himno del Segundo Imperio Mexicano (1863-1867 Música).ogg', 'GLAMonTAPE Interview Merete Sanderhoff.webm', 'Du gamla, du fria.ogg', 'South Korean national anthem.wav', 'GLAM on Tape Interview Sarah Powell.webm', 'Still White Danube - Тих Бял Дунав се вълнува.flac', 'Happy Birthday Wikidata!.webm', 'Filming Greed (1923).webm', 'Will Wikipedia exist in 20 years-.webm', '臺灣法務部,90年第五屆立法委員選舉,反賄選宣導影片,第二部,抓鬼篇,30秒。.webm', 'GLAM on Tape Interview Antje Theise.webm', 'GroenLinks wil Nederland veranderen 2015.webm', 'Super Mario Odyssey - The Story of Yoshiaki Koizumi.webm', 'Moja republika.ogg', 'Wikidata WMDE.webm', 'Worth It Or Not- Fall Collection 4.webm', \"'Nieuw in Nederland' - Het belang van sport voor nieuwe Nederlanders in beeld gebracht.webm\", 'Hans Spekman beantwoordt \"Web\\'s Most Searched Questions\" over de PvdA.webm', 'Waarom zouden we nog gaan stemmen-.webm', 'Doe mee met de verandering GL2016.webm', 'Applicant Orientation Guide Video.webm', '-MyPlateMyWins at Dinner.webm', 'MyPlate, MyWins- Real Solutions from Real Families.webm', 'En-us-Mississippi.ogg', 'National anthem of Apartheid South Africa - Die Stem van Suid-Afrika.oga', 'National anthem of Apartheid-era South Africa - Die Stem van Suid-Afrika.oga', '20170926 總統以軍禮歡迎並會晤索羅門群島蘇嘉瓦瑞總理伉儷.webm', '20170424 總統接見索羅門群島馬朗嘉副總理一行.webm', '20160725 總統接見索羅門群島總理蘇嘉瓦瑞伉儷訪華團.webm', '20170926 國宴款待索羅門群島蘇嘉瓦瑞總理伉儷.webm', '20161201 總統接受索羅門群島新任駐華特命全權大使王哲夫呈遞到任國書.webm', 'Oorlogsgeheimen 3-juli oorlog.webm', '\"Die Stem van Suid-Afrika\" performed at the White House in 1994.oga', 'National anthems of South Africa performed at the White House in 1994.ogg', 'Leki.ogg', 'Mortierongeval Mali.webm', 'National anthems of South Africa and the U.S. performed at the White House in 1994.ogg', 'National anthems of South Africa performed at the White House in 1994.oga', 'National anthems of South Africa and the U.S. performed at the White House in 1994.oga', '2017-10-19 10-19-34 manif-belfort.ogv', 'Fr-Paris--toile d’araignée.ogg', 'GLAM on TAPE Interview Antje Theise.webm', 'PetrSU without voice 2017.ogv', 'Petrozavodsk State University.webm', 'PetrSU English 2017.ogv', 'Monaco National Anthem.ogg', 'NASA Earth and Space Air Prize.webm', 'National anthem of Serbia, performed by the United States Navy Band.wav', 'House on haunted hill.ogv', 'Catch planet pairs and watch the moon pass stellar superstars! See Jupiter and Venus at dawn, the Moon shine near star clusters, and meteor activity all month long.webm', 'National anthem of Russia, performed by the United States Navy Band.wav', 'Βασική επεξεργασία - Έμφαση και σύνδεσμοι.webm', \"Hoe maak je echte Indiase dahl - Sonny's keuken.webm\", 'Sen. Bernie Sanders and Prof. Robert Reich press conference at UC Berkeley.webm', 'Irish national anthem, performed by the United States Navy Band.wav', 'New Zealand national anthem, performed by the United States Navy Band.wav', '\"Nkosi Sikelel\\' iAfrika\" performed at the White House in 1994.oga', 'HHS Salutes Veterans.webm', 'Inbreng Lodewijk Asscher bij debat over dividendbelasting.webm', 'Bogurodzica - Collegium Vocale.ogg', 'Marcha Tabasco.ogg', 'Het programmeren is spannend en leuk!.webm', 'Vatican national anthem, performed by the United States Navy Band.wav', 'Oito fatos no Senado em 2016.webm', 'Mozart - Eine kleine Nachtmusik - 1. Allegro.ogg', 'Programming.ogg', 'Iraqi national anthem, performed by the U.S. Navy Band.wav', 'Iraqi national anthem, performed by the United States Navy Band.wav', 'Mozambican national anthem, performed by the United States Navy Band.wav', 'The Maple Leaf Forever.ogg', \"At the potter's workshop.webm\", 'Tanzanian national anthem, performed by the United States Navy Band.oga', 'Bestaat er een medicijn tegen veroudering- - Het LAB -6.webm', 'Met een challenge je eigen gezondheid testen- - Het LAB -2.webm', 'Hoe kun je hallucineren zonder drugs- - Het LAB -8.webm', 'Hoe weet Facebook wie er met jou op de foto staat- - Het LAB -10.webm', 'Hoe pak je je rolkoffer perfect in- - Het LAB -9.webm', 'Vallen bosbranden te voorkomen- - Het LAB -3.webm', 'Wie is creatiever, een computer of een componist- - Het LAB -5.webm', 'Hoe kom je levend uit een bosbrand- - Het LAB -1.webm', 'HWW Oh Come All Ye Faithful.ogg', 'Podcast Live from Space- Astronaut Photography.webm', 'Eclipse-Like Events on This Week @NASA – August 18, 2017.webm', 'United States Navy Band - Allah Peliharakan Sultan.oga', 'Zambian national anthem.oga', 'Zambia National Anthem.ogg', 'Zambian national anthem.ogg', 'Polish letter Y.ogg', 'Open Letter for Free Access to Wikipedia (EN subtitles).webm', 'If everyone reading Wikipedia right now donated the cost of a cup of coffee.webm', 'Former imperial Iranian national anthem, performed by the United States Navy Band.oga', 'Milky Way and Andromeda galaxies are destined to collide.ogv', 'ESA-Astronaut-Paolo-Nespoli Voice-intro-ENG.flac', 'I wonder how long it would take to read Wikipedia from cover to cover?.webm', 'ESA-Astronaut-Paolo-Nespoli Voice-intro-ITA.flac', \"What's the weirdest fact you ever saw in Wikipedia?.webm\", \"Why don't ads belong on Wikipedia?.webm\", \"What's the first Wikipedia article you remember reading?.webm\", \"What's the most memorable time that Wikipedia helped you out?.webm\", \"What's an edit that you made on Wikipedia that you're most proud of?.webm\", 'Why is free access to the sum of human knowledge important to you?.webm', 'What is a Wikipedia article that represents you?.webm', 'What is the most interesting mathematical fact that you know?.webm', 'Describe yourself using a Wikipedia article.webm', 'If 2017 were a Wikipedia article, what would it be?.webm', 'Imagine a world without Wikipedia and then imagine a Wikipedia article to describe that world.webm', \"Can you summarize your New Year's resolution in a Wikipedia article?.webm\", 'Describe Wikipedia in 6 words or less.webm', 'Crash and Burst.ogv', 'Former Afghan national anthem, 1973-1978.oga', 'National anthem of Afghanistan, performed by the United States Navy Band.wav', 'Former Afghan national anthem, 1992-2006.oga', 'La Marseillaise (1907).webm', \"Inequality is real, it's personal, it's expensive and it was created.webm\", 'Thomas Piketty- Extreme inequality is useless for growth.webm', 'Animation of `Oumuamua passing through the Solar System.webm', 'Happy Birthday Turkish Wikipedia.webm', 'Polish FLAMRIC Phase 01 Book 01 Less 01-21.ogg', 'Former Iraqi national anthem, 1981-2003.oga', 'Himno Nacional Argentino instrumental.ogg', 'Ada Lovelace (As Told By U.S. Chief Technology Officer Megan Smith).mp3', 'Ali abdullah saleh pronunciation.oga', 'Former Iraqi national anthem, 1981-2003.wav', 'Happy Birthday Wikimedia Sweden.webm', 'Happy Birthday Wikimedia Argentina.webm', 'Happy Birthday Wiktionary.webm', 'Himno de Aguascalientes.ogg', 'Terence Eden voice sample.wav', 'President Trump Gives Remarks at Yad Vashem.webm', 'President Trump Gives Remarks at the Israel Museum.webm', 'National anthem of Kazakhstan, performed by the United States Navy Band.wav', 'Marcus Garvey, speech, 1921.ogg', \"Pete Souza Releases 'Intimate' Look At Former President Barack Obama In Office - Morning Joe - MSNBC.webm\", 'National anthem of South Korea, performed by the United States Navy Band.wav', 'Redeye missile video.ogv', 'Dek bovinoj.opus', \"Veiligheidsrisico's Jaarwisseling.webm\", 'Pressure Effect on Chemical Equilibrium (NO and NO2).webm', 'Temperature Effect on Chemical Equilibrium (NO and NO2).webm', 'Concentration Effect on Chemical Equilibrium (chromate and dichromate).webm', 'Avadeboncoeur.ogg', 'DGS Katze-Baum Beispielsatz.webm', 'DGS Weihnachten-Geschenke Beispielsatz.webm', 'Yvette Dantremont - Science Babe Wikipedia Description Audio.ogg', '0583 Aluminum on the March M03505 03 18 11 00 3mb.ogv', 'JC Penneys Toy Commercial.webm', 'Castle Films - Alice in Wonderland.webm', 'Norway (National Anthem).ogg', 'Roundand1939 edit.webm', 'Raising Awareness for Wikipedia - Lesson from Punjabi Community.webm', 'About Fallout (1963).webm', '6037 Atomic Alert Elementary version 00 38 27 15.webm', 'Survival1951.webm', 'Den hvide slavehandel (1910).webm', 'Pro patria (1915).webm', 'Die Bergkatze (1921).webm', 'Romeo und Julia im Schnee (1920).webm', 'Revolutionsbryllup (1914).webm', 'Die Gespensternstunde (1917).webm', '3177 Communism 02 10 39 20.webm', 'Encyclopedia Britannica - Southwestern 2.webm', 'National anthems of South Africa performed at the White House in October 1994.wav', 'Jamaicanpatois-twosentences2010.ogg', 'Unispher1964.webm', 'Volcanoes-video.webm', '0491 Moon Travel 01 30 24 00.webm', '0764 Frontiers of the Future A Screen Editorial With Lowell Thomas 01 47 51 00.webm', 'SPX 2017 Panel - Emil Ferris - My Favorite Thing Is Monsters.webm', 'Raising Awareness for Wikipedia- Lesson from Nigeria.webm', '0231 House in the Middle The 02 41 13 20-0040.webm', 'U.S. War Department - Divide and Conquer (1943).webm', 'European Badger (Meles meles) (W1CDR0001490 BD4).ogg', 'Steven Novella Voice.ogg', 'St. Lambertus (Immerather Dom) 2016.webm', 'Bitcoin for Beginners.webm', \"Copy's Christmas Story- How the King tried to turn the Merry Men into his Private Police.webm\", 'Wat willen we- Amnesty jaarraport 2016-17.webm', 'The stranger (1946).webm', 'Mihály Csíkszentmihályi.ogg', 'Regional anthem of the United States Virgin Islands.wav', 'Regional anthem of the United States Virgin Islands.oga', 'Knowledge Belongs to All of Us V9.0.2 (FINAL CUT).webm', 'U.S. Federal Civil Defense Administration - Operation Cue (1955).webm', 'U.S. Department of Defense, Office of Civil Defense - Operation Cue (1964 revision).webm', 'EM-0084-01.ogv', \"Maj. Gen. John A. Samford's Statement on Flying Saucers.webm\", 'Ru-шмат.ogg', 'Encyclopaedia Britannica Films - Atomic Alert (Elementary version).webm', 'Nazi Concentration Camps.webm', 'The main facts about the Vietnam War.webm', 'Eu-Asisko.wav', 'U.S. Army Air Forces - Special Delivery.webm', 'Auto-Lite on Parade.webm', 'Saint Paul Police Detectives and Their Work-A Color Chartoon.webm', 'Duli Yang Maha Mulia instrumental.ogg', 'Ereburgerschap voor Jack Mikkers.webm', 'De-Zoppot.ogg', '2018-01-25 19-42-00 meeting-lrem-modem-belfort.webm', 'Karma.ogg', 'Tentoonstelling Nineveh.webm', 'Chemotherapie wist vingerafdruk.webm', 'Why We Fight- Prelude to War.webm', 'National anthem of Korean Empire.wav', 'Sambad 100 Women Editathon trailer.webmhd.webm', 'The Engineering of the Drinking Bird.webm', '2 Little Blackbirds.webm', 'President Trump Delivers the State of the Union Address.webm', 'Anthem of the Republic of Artsakh.oga', '-bertsomate- Simetria.webm', '-bertsomate- Zirkunferentzia.webm', 'Sailors Participate in Cutlass Express 2015.webm', 'Danny Baker BBC Radio4 Desert Island Discs 31 Jul 2007 b012wcl4.flac', 'Khaled Hosseini BBC Radio4 Bookclub 2 Feb 2014 b03srddf.flac', 'Máquina de somar.webm', 'National anthem of Algeria, performed by the United States Navy Band.wav', 'Max Andersson i Jokkmokk.webm', 'Βασικός κώδικας wiki.webm', 'Carbon Footprint simple-explanation EN.webm', 'Houston FBI Prepares for 2017 Super Bowl.webm', 'FBI and Security Preparations for Super Bowl LII.webm', 'Polish letter A.ogg', 'Hoe kom je uit de schulden-.webm', 'President Trump Delivers Remarks on the Tragedy in Parkland, FL.webm', 'Open Data bij het Ministerie van Justitie en Veiligheid - -7 Innovatie door Technologie.webm', 'Happy Birthday Wikimedia Czech Republic!.webm', 'Happy Birthday Wikimedia Austria!.webm', 'Vesti La Giubba.ogg', '16RNC-187 Kennedy-Humphrey Debate, 1960 WV Primary.webm', 'About Parliament- Parliamentary Committees updated January 2018.webm', 'About Parliament- Making a Law updated January 2018.webm', 'About Parliament- What is Parliament updated January 2018.webm', 'About Parliament- The House of Representatives updated January 2018.webm', 'About Parliament- A New Parliament updated January 2018.webm', 'About Parliament- The Senate updated January 2018.webm', 'Snapshots- Question Time updated January 2018.webm', 'Snapshots- Get Involved updated January 2018.webm', 'Snapshots- Passing a Bill updated January 2018.webm', 'Ua93.oga', 'Introduction to Min Dong Chinese Wikinews in Fuzhou dialect.ogg', 'Arnab Goswami voice sample in Hindi.ogg', 'Tweede Kamer herdenkt oud-premier Ruud Lubbers.webm', 'Sleep-Related-Declarative-Memory-Consolidation-and-Verbal-Replay-during-Sleep-Talking-in-Patients-pone.0083352.s004.ogv', 'Scalia on Separation of Powers and Checks and Balances in the American Constitutional Republic.webm', 'Dotted Line Tool from the 1930s.webm', 'Kennedy on Punta del Este conference, August 1961.ogg', 'Dessau Hbf → Wörlitz 2016-09.ogv', 'Wörlitz → Dessau Hbf 2016-09.ogv', 'Forward with NOAA, instrumental.oga', 'De Stille Motor - GroenLinks, 2018.webm', 'Oranienbaum (Anh) → Ferropolis 2016-09.ogv', '\"Public Health Service March\", performed by the United States Coast Guard Band.oga', 'How to Build a Firewood Storage Shed.webm', 'Ferropolis → Oranienbaum (Anh) 2016-09.ogv', '\"Public Health Service March\", performed by the United States Coast Guard Band.wav', 'The Most Dangerous Game (1932).webm', 'Web standards for the future.webm', 'Mezdunarodnaya mosmetro opening, 2006-08-20.webm', 'United States Navy Band - \"Het Wilhelmus\".wav', 'ESOcast 123 Light.webm', 'ESOcast 122 Light.webm', 'ESOcast 120.webm', 'ESOcast 73.webm', 'ESOcast 65.webm', 'Hubblecast 97.webm', 'ESOcast 119.webm', 'ESOcast 112.webm', 'Grand Jury Indicts Thirteen Russian Individuals and Three Russian Companies for Scheme to Interfere.webm', 'ESOcast 116.webm', 'ESOcast 24.webm', 'ESOcast 87.webm', 'ESOcast 35.webm', 'Hubblecast 102.webm', 'Hubblecast 88.webm', 'Hubblecast 93.webm', 'Hubblecast 67.webm', 'Hubblecast 66.webm', 'Hubblecast 104.webm', 'Waarom GroenLinks tegen de sleepwet is.webm', 'Hubblecast 100.webm', 'Hubblecast 98.webm', 'Hubblecast 96.webm', 'Hubblecast 101.webm', 'Happy Birthday Wikimedia Australia!.webm', 'Hubblecast 65.webm', '1959-02-19 Weather Eye.webm', '1959-08-10 Explorer VI.webm', '1960-11-24 Tiros II Weatherman Satellite.webm', '1958-03-17 3rd Vanguard Successful.webm', '1960-10-06 Florida.webm', 'Dating Dos and Donts (1949).webm', '1933-08-07 Stratosphere Balloon Falls.webm', 'Commercial-LBJ1964ElectionAdDaisyGirl.ogv', 'Dissociative disorders.webm', 'March, \"The Stars and Stripes Forever\" · Colonel John R. Bourgeois, Director · John Philip Sousa · United States Marine Band.ogg', 'Hubblecast 54.webm', 'Mamie Smith, Crazy Blues.ogg', 'The Star Spangled Banner wikiVersion.ogg', 'The Eagle Has Landed, The Flight of Apollo 11, 1969.webm', '2013-03-31 2000z Shannon Volmet.ogg', 'Fr-Paris--chafouin.ogg', 'Zugelektronik, Störung.ogg', 'ESOcast 84- The New E-ELT Design Unveiled.webm', 'ESOcast 79 - 20 Years of Exoplanets.webm', 'Women in Wikimedia Programs.webm', 'Hubblecast 22.webm', 'FDA Announces Regulatory Plan to Shift Trajectory of Tobacco-related Disease and Death.webm', 'Trykk rediger!.webm', 'Ignacy dygas - mazurek dąbrowskiego.ogg', \"La fessée à l'école.ogv\", \"Overview of 'Mapping Our World' at the National Library of Australia.webm\", \"Preserving Blaeu's 'Archipelagus Orientalis' (1663) at the National Library of Australia.webm\", 'Pershing - Address from France.ogg', 'Jared Kushner Delivers Remarks on Improving the Healthcare System.webm', 'President Trump Delivers a Statement Upon Departure.webm', '3-20-18- White House Press Briefing.webm', 'President Trump Hosts a Law Enforcement Roundtable on Sanctuary Cities.webm', 'President Trump Delivers Remarks on Combating the Opioid Crisis.webm', 'President Trump Meets with Crown Prince Mohammad bin Salman of the Kingdom of Saudi Arabia.webm', 'Soviet Anthem Piano Instrumental (3 verses).ogg', 'Edward Marszewski talks about Version 05.webm', 'Massimo Pigliucci voice.ogg', 'Allah Selamatkan Sultan Kami instrumental.ogg', 'Women in Wikimedia Leadership Discussion.webm', '2018-03-25 11-25-00 commemo-belfort.webm', 'ESOcast 95 Light.webm', 'Moscow metro E car 3605.webm', 'Max Andersson presentation sv.webm', 'Max Andersson presentation en.webm', 'Wikistammtisch-episode-0011-mit-alice-wiegand.oga', 'En-Bangladesh.ogg', 'Georgian national anthem.oga', 'Georgian national anthem.wav', 'Micronesia Anthem Full.ogg', 'Kokborok pron.ogg', 'National anthem of the Bahamas.oga', 'Internationale.ogg', 'Bloemen kopen op de bloemenveiling - Dag 66.webm', 'Symptoms in Schizophrenia (Silent) (Pennsylvania State College, 1938).webm', 'CETA - än är inte sista ordet sagt.webm', 'Anyone Can Become Addicted to Drugs.webm', 'Brian Schmidt voice.ogg', 'Bike trip from Italy to Slovenia - Episode 10, Skocjan Cave, Postojna Cave and Predjama Castle.webm', 'Georgian national anthem.flac', 'Polish letter O.ogg', 'Nl-Ulenhofcollege-article.ogg', 'ESOcast 155 Light.webm', \"President Reagan's Address on the Program for Economic Recovery, April 28, 1981.webm\", 'Marcha de banderas (José Sabas Libornio Ibarra, 1895).ogg', 'Afscheid Elbert Dijkgraaf.webm', 'Sargentini over de rechtsstaat in Hongarije.webm', 'Uppladdningsfilter är dåligt för internet.webm', 'কীভাবে বাংলা উইকিসংকলনে মুদ্রণ সংশোধন করবেন.ogv', 'Diaporama salles informatiques Togo YovoTogo JUMPLabOrione Emmabuntus 2018.webm', 'Best engineering ipod lg.webm', 'Wind the bobbin up.webm', 'Pl-Wrocław-2.ogg', 'Former Georgian national anthem, 1990–2004.oga', 'Nuitdebout 32 Mars.webm', 'JFKennedy November1963.ogg', 'Hubblecast 109.webm', 'The Little Minister (1921).webm', 'Per amore di Jenny (1915).webm', 'The lure of drink (1915).webm', 'Internationale orchestral arrangement.ogg', 'Saturday night (1922).webm', 'Eire pronunciation.ogg', 'What is Mastodon.webm', 'East Timorese national anthem.wav', 'Le Logiciel Libre – Man -2.webm', 'Former national anthem of Kazakhstan, performed by the United States Navy Band.oga', '¿Cómo poner enlaces internos dentro de Wikipedia?.webm', 'Former Afghan national anthem, 1992-2006.wav', 'President Trump and The First Lady Host a State Dinner with the President of France and Mrs. Macron.webm', 'President Trump has a Restricted Bilateral Meeting with the President of France.webm', 'Vice President Pence Holds a Lunch in Honor of the President of France.webm', 'President Trump Delivers an Address to the Nation.webm', 'Gleisbaumaschine RU 800-S.webm', 'President Trump Participates in a Joint Press Availability with the President of France.webm', 'President Trump has an Expanded Bilateral Meeting with the President of France.webm', 'Max Andersson and Julia Reda talking about copyright.webm', 'Scientists discover under-ice phytoplankton bloom 2.ogv', 'Hu-magyarhimnusz.ogg', \"Sacramento County Sheriff's Department Sgt. Paul Belli.webm\", 'FBI Special Agent Marcus Knutson.webm', 'Wanted by the FBI- East Area Rapist.webm', \"Retired Sacramento County Sheriff's Detective Ray Biondi.webm\", 'Clues Sought in Unsolved East Area Rapist Case.webm', 'Alexander Graham Bell speaking.ogg', 'A year without Turkey.webm', \"First Lady Melania Trump's Initiative Launch.webm\", \"First Lady Melania Trump's Initiative Launch (announcement).webm\", 'Malawian national anthem.oga', 'Omroep Flevoland - Trailer bouwwerken.webm', 'Krazy Kat Bugolist 1916 silent.ogv', 'Four Ruffles and Flourishes and Hail Columbia.ogg', 'Four Ruffles and Flourishes, Hail Columbia - U.S. Army Band.ogg', 'Columbia, the gem of the ocean.ogg', 'Test mp3 opus 16kbps.wav', 'Happy Birthday Wikimedia Russia.webm', 'Happy Birthday Arabic Wikipedia.webm', 'Mélovingreetingsrussian.ogv', 'ESOcast 161 Light.webm', '麦提莎糯米糍.webm', \"8.02x - Lect 16 - Electromagnetic Induction, Faraday's Law, Lenz Law, SUPER DEMO.webm\", \"8.02x - Lect 10 - Batteries, Power, Kirchhoff's Rules, Circuits, Kelvin Water Dropper.webm\", \"8.02x - Lect 3 - Electric Flux, Gauss' Law, Examples.webm\", '8.02x - Lect 20 - Inductance, RL Circuits, Magnetic Field Energy.webm', 'Ru-активно 2.ogg', 'Mod lyset (1919).webm', 'Four ruffles and flourishes, hail to the chief (long version).ogg', 'How the Chamber Works (UK).webm', 'A Day in the Chamber (UK).webm', 'Making Laws (UK).webm', 'Westminster Hall and Committees.webm', 'Guide to the Chamber (UK).webm', 'Houses of History - Explore the story of UK Parliament and democracy.webm', 'Yamuna Nagar.ogg', 'Ecoles Ile de France GNULinux Emmabuntus 2018.webm', '-Laurel -Yanny Or.webm', 'Abscesses.webm', 'Acute leukemia.webm', 'Acute Pancreatitis.webm', 'Acute pyelonephritis.webm', 'Alcoholism.webm', 'Allergic rhinitis.webm', 'Alpha 1 antitrypsin deficiency.webm', 'Amnesia.webm', 'Amyloidosis.webm', 'Anatomy and physiology of the renal system.webm', 'Anatomy of the respiratory system.webm', 'Angiomyolipoma.webm', 'Attention deficit hyperactivity disorder video.webm', 'Autoimmune hepatitis.webm', 'Behcet disease.webm', 'GenghisKhan01.ogg', 'Alpha, Beta and Gamma - which objects can they travel through-.webm', 'Wikist0083-martin-kraft.mp3', 'SRINIVASA RAMANUJAN- The Mathematician & His Legacy.webm', 'Have a Coke (1967).webm', 'HWW To God Be The Glory.ogg', 'Russian national anthem performed at the White House in Washington, D.C. (September 1994).oga', 'HIV and AIDS explained in a simple way.webm', 'A-level Physics Core Practical- Finding a value for g using a free fall method.webm', 'ASEAN explained in 5 minutes.webm', 'Arabic Swadesh list 1-100.webm', 'What Alcohol Does to Your Body.webm', '\"Die Stem van Suid-Afrika\" performed by the South African Air Force Band.flac', '\"Die Stem van Suid-Afrika\" performed by the South African Air Force Band.oga', '\"Die Stem van Suid-Afrika\" performed by the South African Air Force Band.wav', '\"Die Stem van Suid-Afrika\" performed by the ASAF Choir and Cantare Male Voice Choir.oga', '\"The Call of South Africa\" performed by the ASAF Choir and the Cantare Male Voice Choir.oga', 'Women in Wikimedia Technical Spaces.webm', 'Let Us Sway Twin Oars.ogv', 'Brock Baton Rouge cut 1.webm', 'Mitt Romney addresses Obamacare.webm', '\"Nkosi Sikelel\\' iAfrika\" performed at the White House in 1994.flac', '\"Nkosi Sikelel\\' iAfrika\" performed at the White House in 1994.wav', '\"Zuid-Afrika\" pronounced in Dutch.oga', '\"Zuid-Afrika\" pronounced in Dutch.flac', '\"Zuid-Afrika\" pronounced in Dutch.wav', 'Ebola and Contact Tracing.webm', 'Movieton1944.ogv', 'A technofix for the climate- Marine geoengineering.webm', \"Recap of Bernie delegates' walk out at the DNC.webm\", 'Agneta Börjesson en.webm', 'Biliary colic.webm', 'Bipolar disorder.webm', 'Bladder exstrophy.webm', 'Blended-learning.webm', 'Non-urothelial cell bladder cancers.webm', 'Bladder-cancer.webm', 'Body focuses repetitive behaviors.webm', 'Bruxism.webm', 'Breastfeeding.webm', 'Bulimia nervosa.webm', 'Candidal infections.webm', 'Cannabis dependence.webm', 'Carcinoid syndrome.webm', 'Cardiac tamponade.webm', 'Carpal tunnel syndrome.webm', 'Celiac disease.webm', 'Cerebral palsy video.webm', 'Cholestatic liver disease.webm', 'Chronic bronchitis.webm', 'Chronic kidney disease.webm', 'Chronic pancreatitis.webm', 'Chronic pyelonephritis.webm', 'Cleidocranial dysplasia.webm', 'Cluster C personality disorders.webm', 'Cluster B personality disorders.webm', 'Cluster A personality disorders.webm', 'Cocaine dependence.webm', 'Colorectal polyps.webm', 'Congenital Pulmonary Airway Malformation.webm', 'Crescentic glomerulonephritis.webm', 'Crohn disease video.webm', 'Cushing Syndrome.webm', 'Cystic fibrosis.webm', 'Cystitis.webm', 'Deep vein thrombosis.webm', 'Delayed puberty.webm', 'Delirium video.webm', 'Depression video.webm', 'Diabetes video.webm', 'Diabetic nephropathy.webm', 'Digeorge syndrome.webm', 'Disruptive, impulse control, and conduct disorders.webm', 'Disseminated intravascular coagulation.webm', 'Diverticula, diverticulitis, diverticulosis video.webm', 'Down syndrome video.webm', 'Duchenne and Becker muscular dystrophy.webm', '\"Naprej, zastava slave\", 1918.oga', '\"Naprej zastava slave\", 1918.ogg', 'A technofix for the climate- Land-based geoengineering (BECCS).webm', 'Vlog -8- - Publieksdag Taal ende Teken.webm', 'En-us-A.p.j. Abdul Kalam from India pronunciation (Voice of America).ogg', 'Zh-新湖镇 (东平县)-part2.ogg', 'Zh-新湖镇 (东平县)-part1.ogg', 'Livvi-Karelian language and VepKar corpus by Tatiana Boiko.ogv', 'LaEspero.ogg', 'ESOcast 164 Light.webm', 'Capitals Game 5 - DC Preparedness Update, 6-7-18.webm', 'Nike Athletes Salute Kobe Bryant.webm', 'Discovery of Magnetic Fields.webm', 'ScienceCasts- Strong Magnetic Fields Found Inside Stars.webm', '8.02x - Lect 11 - Magnetic Fields, Lorentz Force, Torques, Electric Motors (DC).webm', 'Sachin Tendulkar.ogg', 'Wikipedia Grundlagen Beobachtungslisten.webm', 'How Does an MRI Work-.webm', \"Penguins' Archibald Brings Stanley Cup To Brainerd.webm\", 'Diputada Macha Mónica - Sesión 13-06-2018 - PL.webm', 'Bernie Greets Supporters in Chicago.webm', 'Donald Trump- This Is What a Rally Looks Like.webm', \"Minicamp Mic'd Up- Coach Armstrong.webm\", \"Mic'd Up- Head Coach Dan Quinn.webm\", 'Dan Quinn welcomes team back for offseason training (footage).webm', 'Calvin Ridley Draft Room Phone Call.webm', 'Dan Quinn at 2017 NFL Combine.webm', 'Sights- Super Bowl LI.webm', 'Mitt Romney addresses Obamacare (2018-05-29).webm', '5 Things to Preview the 2017-18 NHL Season.opus', 'National Anthem of Senegal.ogg', 'ESOcast 165.webm', 'A technofix for the climate- Atmospheric geoengineering (Solar Radiation Management).webm', 'Vlog -9 - vrijwilligers helpen met restaureren.webm', 'Carly Fiorina- This Is How to Fix Health Care in America.webm', \"Lt. General Michael Flynn on America's Role in the World.webm\", 'DACA Response from President Eduardo M. Ochoa.webm', 'Bernie Brief- Income Inequality - Ep. 1.webm', 'Bernie Brief- Climate Change - Ep. 3.webm', 'First Lady Melania Trump Visits Texas.webm', 'PWR nuclear power plant animation.webm', 'Governor Baker- \"Addiction Is Not A Choice, Addiction Is A Disease\".webm', 'Which States Are Next for Marriage Equality- Nov 12 Marriage News Watch.webm', 'Rahm Emanuel Press Conference - Bernie Sanders.webm', 'President Trump Gives Remarks on the Joint Comprehensive Plan of Action.webm', \"Bernie Sanders dines at Lou Mitchell's - Chicago, Illinois.webm\", 'Register to Vote in the November 4th Election.webm', 'Soviet Union national anthem (instrumental), 1977.oga', 'Anthem of Blue Lake Fine Arts Camp - From Canterbury Lane.ogg', 'Children of Gang Violence - Bernie Sanders.webm', 'Sanders Visits U.S.-Mexican Border - Bernie Sanders.webm', 'Asean Johnson Has Been Fought for Public Schools for Years.webm', 'If Men Gave Birth to Babies... - Bernie Sanders.webm', \"Have a Vision and Fight for What's Right - Bernie Sanders.webm\", 'We are Listening to Native Americans - Bernie Sanders.webm', \"The People Who Own This Country Don't Want You to Vote - Bernie Sanders.webm\", 'Jane Sanders on Working with Bernie.webm', 'What is the Dream that Inspires You- - Bernie Sanders.webm', 'Over Our Dead Bodies If You Cut Social Security - Bernie Sanders.webm', 'Chuy Garcia, Reclaim Campaign Announce Court Watch Program.webm', 'Town Hall Q&A in Clinton, Iowa - Bernie Sanders.webm', 'Bernie Sanders on FDR - Bernie Sanders.webm', 'Rally in Madison, Wisconsin - Bernie Sanders.webm', 'Democratic Socialism and Foreign Policy - Bernie Sanders.webm', 'Fagu Baskey.webm', 'United States Navy Band - National Anthem of Uruguay (short with intro).ogg', \"Ohio's Lost over 300k Jobs.webm\", 'Ohio Wanted to Suppress your Vote. We Said No, and We Won..webm', \"No, Secretary, We Can't Fix TPP. We Should Kill It - Bernie Sanders.webm\", 'Cowards Suppress Voters - We Want Participation - Bernie Sanders.webm', \"Nina Turner 'Feels the Bern'.webm\", '(B) What Green Means- Most Important Color is Green.webm', '(C) What Green Means- A Green New Deal for America.webm', '(A) What Green Means- A Better Life for All of Us.webm', 'Patch Adams Endorses Jill Stein.webm', '\"Die Stem van Suid-Afrika\" performed by the SABC Symphony Orchestra.oga', '\"Die Stem van Suid-Afrika\" performed by the SABC Symphony Orchestra.flac', '\"Die Stem van Suid-Afrika\" performed by the SABC Symphony Orchestra.wav', '\"Die Stem van Suid-Afrika\" performed by the ASAF Choir and Cantare Male Voice Choir.flac', 'Interview with 2016 Presidential Candidate Elijah Manley.webm', 'Korean Air Flight 801 crash, Guam air traffic control recording (August 1997).oga', 'Warrior Games To Chicago.webm', 'Adaptive Sports- Life Changing and Lifesaving for Athletes.webm', \"Families and Caregivers- Essential element in athletes' recovery and rehabilitation.webm\", \"Service Dogs- More than Man's Best Friend for Team Navy Athletes.webm\", 'Стробоскопический эффект.webm', '\"Suid-Afrika\", pronounced by Jan Schutte.oga', 'South Shore Site Selected For 2019 Hockey Day Minnesota.webm', \"The President's News Conference, 9-21-66..webm\", 'Voss, Axel (en).webm', 'Anthem of the Tajikistan SSR - Гимни РСС Тоҷикистон.ogg', 'Thank You for Not Endorsing me, Rahm Emanuel.webm', 'Pennsylvania Election Day Guide 2016.webm', \"Bernie Delegates' Protest at DNC.webm\", '2016 State of the Union Address- Enhanced.webm', 'Abu Dhabi 2011 - The Global Agenda Ahead.webm', 'Wikidata Editing with OpenRefine - Part 1.webm', 'DeFranco Reacts to the FineBros-React World Scandal.webm', 'Wikidata Editing with OpenRefine - Part 2.webm', 'Davos 2012 - CNN Debate - Can Emerging Markets Deliver Global Growth.webm', 'Inter-Faith Roundtable at Mosque - Bernie Sanders.webm', 'Wikidata Editing with OpenRefine - Part 3.webm', 'Some Differences Between Governor Walker and Myself - Bernie Sanders.webm', 'World of Tanks - \"I AM\" Light Tank.webm', 'Do Democrats Stand with the Poor or with Corporations-.webm', 'Why Do We Punish People For Getting an Education- - Bernie Sanders.webm', 'A Path Toward Citizenship - Bernie Sanders.webm', 'We Must Stop Outsourcing Jobs - Bernie Sanders.webm', 'President Clinton Owes Us an Apology - Bernie Sanders.webm', 'On The Road- Bernie in Arizona.webm', 'Vatican - Bernie Sanders Prepared Remarks.webm', 'Communications Workers of America Endorsement - Bernie Sanders.webm', 'Liberty University - Bernie Sanders.webm', 'Congresswoman Barbara Lee- College Should be Affordable.webm', 'Justice Antonin Scalia on Separation of Powers and Checks and Balances.webm', 'Bemidji Hockey Players React To Hockey Day Minnesota Announcement.webm', '(ART-HOBBY) Video Fabrication et recyclage de vieilles bougies HD.webm', 'Kach Demo Jerusalem song.webm', 'Administrator Bridenstine- NASA is Committed to Webb Telescope.webm', 'Padrenuestro.ogg', 'What is a browser-.webm', 'Taking the X out of X-Rays (Dr. William Coolidge, 1940).webm', 'How an atomic clock works, and its use in the global positioning system (GPS).webm', 'How a Laser Works.webm', 'Electric motor - stepper motor.webm', '2018-04-12 Question Period Ontario Legislature.webm', 'Are you with me-Nicola Sturgeon.webm', 'Seeds of Destiny (1946).webm', 'DAG Rosenstein Announces New Task Force on Market Integrity and Consumer Fraud.webm', 'Grand Jury Indicts 12 Russian Intelligence Officers for Hacking Offenses Related to 2016 Election.webm', 'Jannie Timmermans winnaar WK Visbakken 2018 - Altena TV.webm', 'Chinese(Cantonese)-Macau full name.ogg', 'Naples Post Office Provides Guidance on Holiday Mailing Deadlines.ogv', 'Rota Post Office Delivers Holiday Cheer.ogv', 'USS Cole Post Office Delivers Smiles.ogv', 'CFAS Holiday Mail.ogv', 'One Letter at a Time.ogv', 'US Navy 2013 holiday mail delivery deadlines established.ogv', 'NAVSUP Releases Deadlines for the Overseas Delivery of Holiday Mail.ogv', 'Postal address changes for Ships and Mobile Units (US Navy).ogv', 'US Navy postal information for holiday packages.ogv', 'Japan 2015 holiday mailing dates (US Navy).ogv', 'Darnall Post Office saved by charity.ogv', 'Mail Matters.ogv', 'How to Get Mail to an Inmate - Maricopa County Jail System.ogv', 'President Trump Participates in a Joint Press Conference with the Prime Minister of the UK.webm', 'USPS Station and Branch Optimization Initiative and Delivery Route Adjustments (Part 1).ogv', 'USPS Station and Branch Optimization Initiative and Delivery Route Adjustments (Part 2).ogv', \"'Jouw verhaal is mijn verhaal' GroenLinks 2018.webm\", 'Michele Bachmann Ignores Request To Fight For Women.webm', 'Algerian national anthem, performed by the United States Navy Band.flac', 'Idaho- Caucus Today.webm', 'Northern Minnesota Rocks The Vote During Caucus Night.webm', \"Secretary Pompeo's Opening Remarks at Joint Press Availability in Japan.webm\", 'Wikipassport - how to fold it.ogv', 'Secretary of State Mike Pompeo Meets with Saudi King Salman bin Abdulaziz Al Saud.webm', 'Eczema.webm', 'Electrocardiography Basics.webm', 'Emphysema.webm', 'Epilepsy video.webm', 'Epithelial ovarian cancer.webm', 'Eustachian Tube Disfunction.webm', 'Factitious disorder.webm', 'Fragile x syndrome.webm', 'Free radical injury.webm', 'Gallstone ileus.webm', 'Gastroschisis.webm', 'Generalized anxiety disorder video.webm', 'Germ cell ovarian cancer.webm', 'Glaucoma.webm', 'Goodpasture syndrome.webm', 'Gout.webm', 'Hemochromatosis.webm', 'Hemophilia.webm', 'Herpes.webm', 'Hirschsprung disease.webm', 'HIV & AIDS.webm', 'Huntington disease.webm', 'Hydronephrosis.webm', 'Hyperaldosteronism.webm', 'Hypercalcemia.webm', 'Für Bayern (Bayernhymne).ogg', 'Billionaires and Radical Hope- Thoughts from the World Economic Forum in Davos, Switzerland.webm', 'Duterte-SONA-2018-Iloilo-City.ogv', '\"O Canada\", performed by the United States Third Marine Aircraft Wing Band.oga', 'Poczta w Otmuchowie.ogv', \"Why President Donald Trump Just Can't 'Hit Delete' On Helsinki Remarks - Morning Joe - MSNBC.webm\", 'Fernschreiberprüfung.webm', 'Forum Open-Education - Offene Bildung - Politik und Zivilgesellschaft im Dialog.webm', 'Poczta na ulicy Krakowskiej w Otmuchowie.ogv', 'Brazilian Flag Anthem (Brazilian Army).ogg', 'How Tor Browser Protects Your Privacy and Identity Online.webm', 'Cdo 長樂儂掏下福建省第十六届運動會女界兩隻儂皮艇500米項目頭名.ogg', 'Cdo 第三屆福州語歌曲大賽福州賽區總決賽結束 interview, to Sie Zeng.ogg', 'Cdo 第三屆福州語歌曲大賽福州賽區總決賽結束 interview.ogg', 'GeburtstaginStUlrichGröden.ogg', 'Cdo 第三屆福州語歌曲大賽福州賽區總決賽結束 interview, to Dakdung.ogg', '\"Swingin\\' Six\" ZIP Code Video.webm', 'Punjab.ogg', 'Vlog -11 - Akte van Belening van Loon op Zand.webm', 'Akte van Belening van Loon op Zand 1269.webm', 'AnDasDeutscheVolkWilhelm1914.ogg', 'ITU 150 VIDEO.webm', 'Cdo 第三屆福州語歌曲大賽福州賽區總決賽結束 interview, to Iong Liu.ogg', 'Day 76-100 - Marco Rubio endorses John James for Senate.webm', 'Sv-Lund.ogg', '47 YouTubers Laugh Without Smiling.webm', 'The Jungle Book (1942).webm', 'Secretary Pompeo Meets with Chinese Foreign Minister Wang Yi.webm', 'Secretary Pompeo Delivers Remarks on \"Supporting Iranian Voices\".webm', 'Ministerial to Advance Religious Freedom- Remarks by Secretary Pompeo and Vice President Pence.webm', 'What is open knowledge? (A short history of copyright) by Wikimedia UK.webm', 'Rebuilding Indian Country - 1933.webm', 'President Trump and North Korean Leader Kim Jong Un Signs a Declaration of Friendship.webm', 'John James- Conservative Warrior for U.S. Senate.webm', '8-1-18- White House Press Briefing.webm', '6-18-18- White House Press Briefing.webm', '8-2-18- White House Press Briefing.webm', 'President Trump Participates in a Media Availability.webm', 'Regional anthem of the Northern Mariana Islands, performed by the United States Navy Band.oga', 'Louisiana French (Wikitongues).ogg', 'Parker Solar Probe.webm', 'BCLM gin trap demo - 2018-08-13 - Andy Mabbett.webm', 'Coping with China in the South China Sea.webm', 'Burial At Sea of Soviet Submariners from Hughes Glomar Explorer.webm', 'Amazon Canopy Comes to Life through Laser Data.webm', 'Wiki Loves Monuments 2018.webm', 'Zh, cmn, jlua, Feicheng Dialect, 维基百科, 自由的百科全书.ogg', 'Punjabi Wikipedia Tales - A Trip To Lahore!.webm', 'New Delhi Post.ogv', 'Quantum tunnel effect and its application to the scanning tunneling microscope.ogv', 'Elephants Dream.webm', '\"Die Stem van Suid-Afrika\" performed by the ASAF Choir and Cantare Male Voice Choir.wav', 'Understanding the Magnetic Sun.webm', 'NASA - Satellite Shows High Productivity From U.S. Corn Belt.webm', 'NASA - Human Fingerprint on Global Air Quality.webm', 'Traumatic Brain Injury (TBI) in Kids.webm', 'What is The Black Ducks.webm', 'العلمانية غايتنا Secularism is our goal.webm', 'Developing and Producing the B-61 Thermonuclear Bomb.webm', 'Gamal Abdel Nasser on the Muslim Brotherhood (subtitled).webm', '\"Made in America is back!\".webm', '\"Meeting with foreign leaders is a good thing, not a bad thing.\".webm', '8-15-18- White House Press Briefing.webm', '8-14-18- White House Press Briefing.webm', 'President Trump Hosts a Cabinet Meeting 2018-08-16.webm', \"'Sources' Give Don McGahn Notably Consistent Positive Media Coverage - Rachel Maddow - MSNBC.webm\", \"NASA's Parker Solar Probe Mission Launches to Touch the Sun.webm\", 'President Trump Has a Video Conference with NASA Astronauts Aboard the International Space Station.webm', 'Track Your Absentee Ballots with USPS.ogv', 'Auld Lang Syne - U.S. Navy Band.ogg', 'Hypermagnesemia.webm', 'Hyperkalemia.webm', 'Hyperphosphatemia.webm', 'Hypocalcemia.webm', 'Hypertrophic pyloric stenosis.webm', 'Hypokalemia.webm', 'Hypomagnesemia.webm', 'Hypophosphatemia.webm', 'Hypoprolactinemia.webm', 'Hypospadias and epispadias.webm', 'Idiopathic Pulmonary Fibrosis.webm', 'Influenza.webm', 'IgA Nephropathy.webm', 'Intestinal atresia.webm', 'Introduction to the lymphatic system.webm', 'Intussusception.webm', 'Irritable bowel syndrome.webm', 'Canto de entrada de misa de inicio de año en Cerro de Escamela, Orizaba.webm', 'Mahatma Gandhi first film interview (30 April 1931).webm', 'Veps language and VepKar corpus by Nina Zaitseva 2018.webm', 'Elephants Dream (2006).webm', 'Mark Edward Voice.ogg', 'Tropical Storm Lane Update 12am August 25th 2018.webm', 'NHC Director Dr. Rick Knabb - Post-Tropical Cyclone Hermine.webm', 'GOES-16 Satellite Tracks East Coast Storm.webm', 'Old Post Office in Sai Gon.ogv', \"NOAA's 2017 Atlantic Hurricane Season Outlook.webm\", 'Lane filtering in Queensland.webm', 'ScienceCasts- A Supermoon Trilogy.webm', 'Interview with Dr. Eugene Parker.webm', \"Liftoff of NASA's Parker Solar Probe.webm\", 'NASA Catches Hurricanes Jose and Maria.webm', '2017 Hurricanes and Aerosols Simulation.webm', \"NASA's EPIC View of 2017 Eclipse Across America.webm\", 'What determines when we have an eclipse-.webm', 'Get Ready for the 2017 Solar Eclipse.webm', 'Intense String of Hurricanes Seen From Space.webm', 'How to Safely Watch a Solar Eclipse.webm', \"SDO's View of the Aug. 21, 2017, Solar Eclipse.webm\", \"Gǒng Jīn'ōu.ogg\", 'Hino da Independência (orquestrado).ogg', 'Ziad2.ogg', 'NASA Psyche Mission- Journey to a Metal World.webm', 'Riding on the road shoulder on a motorcycle in Queensland.webm', '022yjygxSU45.webm', 'Queensland Road Rules – signalling at roundabouts.webm', 'David Boone, VMware & Vijay Banga, FedEx Services - VMworld.ogv', 'WPCleaner - Installation Win10.webm', 'NASA 60th- The Leading Edge of Flight.ogv', 'Everything About Living in Space.ogv', 'Central MN Post Office Shut Down Due To Health And Safety Concerns.ogv', 'Myhra To Run For State Auditor, Osmek Ends Campaign For Governor.ogg', 'Pension Reform Bill Update.webm', 'How an Alt-Right Leader Used a Lie to Climb the Ranks - Times Documentaries.webm', \"We won't back down! Support the postal workers' strike.ogv\", \"Reasons to support the postal workers' strike.ogv\", 'Police out of Post Offices!.ogv', 'Mounir - Our issues are the issues of all workers.ogv', 'Steph Davis, Fearless Flyer - HUMAN Limits.webm', 'Who owns the internet- Parliamentary breakfast with Jimmy Wales.webm', 'Pine River Man Arrested For Stealing Packages And Mail.ogv', '2018-08-22 Medientag Ruderverband-2277.webm', '2018-08-22 Medientag Ruderverband-2294.webm', '2018-08-22 Medientag Ruderverband-2329.webm', '2018-08-22 Medientag Ruderverband-2343.webm', 'Älvrosgården - The Älvros farmstead in Skansen.webm', '9-10-18- White House Press Briefing.webm', 'LAPD shooting of Richard Mendoza passenger bodycam.webm', 'Help the Postal Workers Win ! Give to the Strike Fund.ogv', 'SC Gov. Orders Mandatory Evacuations As Hurricane Florence Strengthens - Velshi & Ruhle - MSNBC.webm', 'Morevna Episode 3.0.2 (English).webm', 'TS Olivia Update 5am Wednesday.webm', 'Tropical Storm Olivia 11pm Tuesday.webm', 'Money Smart for Grades 6 to 8.webm', 'Money Smart for Grades 3 to 5.webm', 'Money Smart for Grades 9 to 12.webm', 'Money Smart for Small Business.webm', \"Anthem of the Yugoslav Peoples' Army - Попури ЈНА.ogg\", 'Hurricane Florence From Space on September 13.webm', 'Vlog -16 30 jaar aan de Kazernehof.webm', '.@fordschool - Ann Arbor City Council Candidates Debate 2015.webm', '.@fordschool - Ann Arbor City Council Candidates Debate 2016.webm', 'WikiGap workshop at Chalmers - interview Ilaria Barletta.webm', 'Growl (wokal).ogg', 'Tour of the EMS 01 - Introduction.webm', 'Tour of the EMS 04 - Infrared Waves.webm', 'Tour of the EMS 06 - Ultraviolet Waves.webm', 'Tour of the EMS 03 - Microwaves.webm', 'Tour of the EMS 02 - Radio Waves.webm', 'Tour of the EMS 05 - Visible Light Waves.webm', 'Tour of the EMS 07 - X-Rays.webm', 'Tour of the EMS 08 - Gamma Waves.webm', \"'De samenleving heeft het door' - Algemene Politieke Beschouwingen 2018.webm\", 'Cancer is NOT Hard to Cure.webm', 'Chinese Manual Therapy for Cancer Treatment.webm', 'NASA Technology We Use Everyday- Introducing Home & City.webm', 'NASA 60th- Home, Sweet Home.webm', \"President Donald Trump- Judge Brett Kavanaugh Is 'Anxious To Testify' - Andrea Mitchell - MSNBC.webm\", '2014 13th Congressional District Debate.webm', 'Kallmann Syndrome.webm', 'Kidney stones.webm', 'Klinefelter syndrome.webm', 'Lactose intolerance video.webm', 'Laryngomalacia.webm', 'President Trump Prioritizes Self-Protection In SCOTUS Choice Of Kavanaugh - Rachel Maddow - MSNBC.webm', 'Elbert Dijkgraaf (SGP) neemt afscheid, Voorzitter Khadija Arib spreekt hem toe.webm', 'Speech van Voorzitter Khadija Arib op de laatste vergaderdag van 2017.webm', 'লে হালুয়া.webm', 'মায়ের নজর.webm', 'দুনিয়া যখন দোরগোড়ায়.webm', 'লে হালুয়া (উইকিসংকলন সচেতনতা ভিডিও).webm', 'RES031 Open Science.opus', 'Runway incursion between Korean Air Lines Flight 36 and Air China Flight 9018 (1999).oga', 'Mòcheno language - Wikipedia.ogv', 'Ru-кофе.ogg', 'Online-Betrug - Gefahren erkennen und abwehren!.webm', 'Net neutrality explained! Why we need to savetheinternet.eu.webm', 'Net Neutrality Kills! - Savetheinternet.eu.webm', 'Ru-бабочка.ogg', 'CAM Video- 2018 Nobel Laureate Donna Strickland.webm', 'Debate Night 2018 - MN House District 10A.webm', 'Bemidji Reminding Residents To Follow Rules For Campaign Signs.webm', 'Republican Candidate Bob Anderson Makes Bid For US Senate.webm', 'Early Voting In Minnesota Off To A Strong Start.webm', 'Candidates For MN House Districts 10B And 10A Debate On Lakeland PBS.webm', 'House 9A Candidates Poston And Hering Square Off In Debate.webm', 'Minnesota Absentee Voting is Now Open.webm', 'Joe Radinovich Visits Bemidji In Bid For 8th Congressional District.webm', 'Bemidji Regional Airport Receives Nearly $2 Million in Grant Money.webm', '20 For 20 Preview- Beavers at Frozen Four (2009).webm', 'US Senate Candidate Karin Housley Campaigns In Bemidji.webm', 'Poll Says More Minnesotans Know Tina Smith Than Karin Housley.webm', '2018 Minnesota State Fair Sets New Overall Attendance Record.webm', 'Work On Hockey Day Minnesota Site Well Underway.webm', 'Five Candidates Running For Two Open Seats On Baxter City Council.webm', 'Current Minnesota Wild Member Matt Read Returns To Bemidji.webm', 'MN House 5B and 5A Candidates Debate The Issues.webm', \"BSU Women's Hockey's DeGeorge To Play On US U-22 Select Team.webm\", 'Candidates For MN House Districts 2B and 2A Debate in Bemidji.webm', '2018 Minnesota State Fair Draws To A Close.webm', \"New Faces Powering BSU Men's Hockey Into The Future.webm\", 'Construction Begins On Hockey Day Rink.webm', 'Minnesota Early Voting Up For August Primary.webm', 'Voters Head To The Polls For Minnesota Primary.webm', 'Pence Visits American Legion National Convention In Minneapolis.webm', 'Preparations For 2018 Minnesota State Fair Wrapping Up.webm', 'Gubernatorial Candidate Jeff Johnson Makes Stop In Bemidji.webm', 'Former BSU Offensive Lineman Krause Signs With Alliance Phoenix.webm', 'Joe Radinovich Celebrates Primary Win In Brainerd.webm', 'Ninth Judicial District Candidates.webm', 'Red Lake Election Results.webm', 'Former Beltrami County Commissioner Files For Bemidji Mayor.webm', 'Gubernatorial Candidates Debate For The First Time Since Primary.webm', '8th Congressional District Candidate Michelle Lee Visits Bemidji.webm', \"All Herberger's Stores In Minnesota To Close.webm\", \"Sen. Tina Smith's Staff Discusses Child Care Shortage In Bemidji.webm\", 'DFL-Endorsed Candidate For Governor Erin Murphy Visits Brainerd.webm', 'Minnesota State Fair Announces Seven New Rides For 2018.webm', 'Former Beaver Emma Terres Signs With ERC Ingolstadt In Germany.webm', 'The GOP Welcomes Candidates To Bemidji For A Grand Old Party.webm', 'Vene, Albrecht Vying For Bemidji Mayor.webm', 'Wild On The Water Returns To Mille Lacs Lake.webm', 'Official Red Lake Nation Election Results a.webm', \"Herberger's Stores In MN May Face Closures.webm\", 'To Feed An Army At The State Fair.webm', 'CLC Encourages Students To Register With \"Rock The Vote\" Event.webm', 'Attorney General Candidate Debra Hilstrom Makes Stop In Bemidji.webm', 'Trump Visits Fargo To Stump For Rep. Kevin Cramer.webm', \"BSU Women's Hockey Returns Experienced But Youthful Group.webm\", 'TJ Oshie Brings The Stanley Cup To Warroad.webm', 'Democratic Rep. Rick Nolan Will Not Seek Re-Election.webm', 'Bemidji State Could See Two Alums on the Minnesota Wild This Season.webm', 'Northwoods Adventure- Minnesota Wild Host Second Annual Fishing Tournament.webm', \"BSU Women's Hockey Prepares For Bulldogs In Postseason Play.webm\", 'Former Beaver Blueliner Joyce Signs With Swedish Club.webm', \"Senator Tina Smith's Staff Visit Bemidji To Discuss Farm Bill.webm\", 'Bemidji Regional Airport To See More Flights From Twin Cities.webm', 'Hockey Day Minnesota Tickets Go On Sale.webm', 'Hockey Camp in Nisswa Attracts Kids from Across the World.webm', \"Thrills And Chills At The State Fair's Mighty Midway.webm\", 'Verndale Holds September 11th Memorial Program.webm', 'The Race Is On For The Next Sheriff Of Crow Wing County.webm', 'MN Governor Candidates Hit The Road Before August Primary.webm', 'Swanson and Nolan Campaign Visits Brainerd.webm', 'Brainerd Professional Athletes Enjoy Being Home in the Summer.webm', 'Red Lake Tribal Council Election Set For May 16th.webm', \"BSU Men's Hockey Defenseman Whitecloud Signs With Golden Knights.webm\", \"Changes Arrive In Bemidji's Economic Landscape.webm\", 'Joe Radinovich And Pete Stauber Square Off In Debate In Brainerd.webm', 'Hockey Day Minnesota Bemidji Announces Teams, Schedule.webm', \"BSU Women's Hockey Taking Advantage of Bye Week.webm\", 'Republicans Gather With Hopes of Keeping Beltrami County Red.webm', 'BSU Celebrates Hockey Cheerleading Milestone.webm', \"BSU Men's Hockey Ready For Playoff Atmosphere This Weekend.webm\", 'Debate Night 2018 - MN House District 10B.webm', 'Debate Night 2018 - MN House District 9A.webm', 'Debate Night 2018 - MN House District 5A.webm', 'Debate Night 2018 - MN House District 2A.webm', 'Debate Night 2018 - MN House District 2B.webm', 'Debate Night 2018 - MN House District 5B.webm', 'Thunderhawks McLaughlin, Hain Taken In 2018 NHL Draft.ogg', 'Voters Approve New Palace Casino Project In Cass Lake.webm', 'Leech Lake Band Of Ojibwe Releases Official Election Results.webm', 'Bemidji City Council Ward 4 Special Election Results Announced.webm', 'Two In Running For Bemidji Ward 4 Seat After Low-Turnout Election.webm', 'Bemidji Ward 4 Special Election Absentee Ballots Available.webm', 'Seven Candidates To Vie For Bemidji City Council Ward 4 Special Election.webm', 'League Of Women Voters Holds Program On Election Security.webm', 'Absentee Voting To Be Offered For Brainerd Schools Special Election.webm', \"Candidates For Bemidji's Ward 4 Special Election Square Off.webm\", 'Bemidji To Hold Special Election To Fill Ward 4 Vacancy.webm', 'Bemidji Ward 4 Special Election Moved To March 14th.webm', 'Global temperature changes.webm', \"BSU's Gerry Fitzgerald Invited To Wild's Camp.webm\", 'First Gubernatorial Debate Since Primary To Be Held In Nisswa.webm', 'Wild Host First Annual Bass Fishing Tournament.webm', \"BSU Men's Hockey, Northern Michigan End Match In OT.webm\", \"BSU Men's Hockey Beats Air Force In Game 1 Of Series.webm\", \"BSU Men's Hockey Shuts Out (20) Michigan Tech.webm\", 'Viacrucis poblano 2017.webm', 'Crew Safe After Soyuz MS-10 Launch Abort.webm', 'MN Attorney General Candidate Keith Ellison Makes Stop In Bemidji.webm', 'Gubernatorial Candidate Matt Dean Makes Stop In Bemidji.webm', 'Gov. Candidate Erin Murphy Makes Stop In Bemidji.webm', 'Minnesota Secretary Of State Candidate Visits Little Falls.webm', '20181013 - Marche pour le climat Montbéliard.webm', 'Ru-Zimniy vecher (full).ogg', 'Ru-Птичка.ogg', 'John James at Hartford Memorial Baptist Church in Detroit.webm', 'Former national anthem of Mozambique, performed by the United States Navy Band.oga', 'Story about FLASHDISK..Stop motion animation...webm', 'Secretary Pompeo Meets with Bahraini Foreign Minister Al Khalifa.webm', 'LittleDavid.ogv', 'Charadrius vociferus.ogg', 'Zaire National Anthem.ogg', 'How to Vote by Special Projects.webm', 'Dzifa no longer understands anything at all after 2C-B - Drugslab.webm', 'Nellie sees herself dancing after MXE - Drugslab.webm', 'Bastiaan goes on an inner journey under the influence of San Pedro (Mescaline) - Drugslab.webm', 'Dzifa writes a song under the influence of Methylphenidate - Drugslab.webm', \"Bastiaan can't eat after using Ecstasy - Drugslab.webm\", 'Nellie gets confused after smoking weed - Drugslab.webm', 'Bastiaan eats truffles on a boat in Amsterdam - Drugslab.webm', 'Bastiaan takes MDA in the forest - Drugslab.webm', 'Vlog -18 - Uit de kast!.webm', 'President Trump Participates in the Swearing-In Ceremony of the Honorable Brett M. Kavanaugh.webm', 'Ru-Осень (отрывок).ogg', 'Ru-Поедем, я готов; куда бы вы, друзья.ogg', 'Ru-Я вас любил.ogg', 'Ru-Что в имени тебе моем.ogg', 'Song of Five Races Under One Union.opus', 'Mike Espy Weighs In On Mississippi Special Election - Morning Joe - MSNBC.webm', 'MH17 Missile Impact.webm', 'Namibian national anthem, performed by the United States Navy Band.oga', 'Flight Over a Rectangular Iceberg in the Antarctic.webm', 'Supercomputer Simulation Reveals Supermassive Black Holes.webm', 'Launch Pad Water Deluge System Test at NASA Kennedy Space Center.webm', 'Space Station Crew Holds an Out of this World Audience with the Pope.webm', 'Aaduthu Paaduthu pani chestunte Todi Kodallu.webm', 'Aaduthu Paaduthu pani chestunte (Audio) Todi Kodallu.ogg', 'Een reus waar Nederland tegenaan kon leunen.ogg', 'NASA- 60 Years in 60 Seconds.webm', 'Smart vibrator changes conversation about sex.webm', 'ABC Decimal Currency.ogv', 'Nofundraiser.ogv', 'Academics expose corruption in Grievance Studies.webm', 'Saudi Arabian national anthem, performed by the United States Navy Band.oga', \"The Brain That Wouldn't Die (webm version).webm\", 'Anthem of the Moldavian Soviet Socialist Republic (vocal).ogg', 'National Anthem of the Estonian SSR.ogg', 'Russian national anthem at Medvedev inauguration 2008.ogv', 'Flashmob DieRevolutionRollt 1918 in Hannover.webm', 'National anthem of Slovakia, performed by the United States Navy Band.ogg', 'Гимн Приднестровской Молдавской Республики (на трёх языках).ogg', 'National anthem of Transnistria.ogg', '6. Responsabilidade Objetiva e Direito de Regresso.webm', '2. Ouvidoria Geral do Estado.webm', 'Ru-Песни западных славян. Конь.ogg', 'Paul van Meenen - Commissie Justitie en Veiligheid.webm', 'Michel Rog - Commissie voor Sociale Zaken en Werkgelegenheid.webm', 'Helma Lodders - Commissie voor Volksgezondheid, Welzijn en Sport.webm', 'Erik Ziengs - Commissie voor Binnenlandse Zaken.webm', 'Raymond de Roon - Commissie voor Buitenlandse Handel en Ontwikkelingssamenwerking.webm', 'Sven Koopmans - Commissie voor de Verzoekschriften en de Burgerinitiatieven.webm', 'Pia Dijkstra - Commissie voor Buitenlandse Zaken.webm', 'Isabelle Diks - Commissie voor Economische Zaken en Klimaat.webm', 'Ockje Tellegen - Commissie voor Onderwijs, Cultuur en Wetenschap.webm', 'Aktion Standesamt 2018 Abschlusskundgebung vor dem Kanzleramt in Berlin 03.webm', 'Aktion Standesamt 2018 Abschlusskundgebung vor dem Kanzleramt in Berlin 02.webm', 'Ada Colau i Alexandria Ocasio-Cortez a Nova York.webm', 'Himna Kraljevine Jugoslavije.ogg', 'Vidéomontage présentant une manifestation au barrage de Sivens.webm', 'InSight Landing on Mars.webm', 'Mars in a Minute- How Do You Choose a Landing Site-.webm', 'NASA Explorers- Ice Odyssey.webm', 'ICON Mission Is Go for Launch.webm', 'NASA ScienceCasts- Lightning Across the Solar System.webm', 'ScienceCasts- Handprints on Hubble.webm', 'NASA 60th- How It All Began.webm', 'NASA 60th- Humans in Space.webm', 'The PrEP Project (All Episodes).webm', \"Joe Haeg Announced As Indianapolis Colts' Representative For Salute To Service Awards.webm\", 'Crow Wing County Hopes To See High Voter Turnout.webm', 'Early Voting Numbers Up In Beltrami County.webm', 'Jeff Johnson Urges Minnesotans To Vote.webm', 'Donna Bergstrom Makes Stop In Bemidji.webm', 'DFL Lt. Governor Candidate Flanagan Makes Campaign Stop In Red Lake.webm', 'Bliss-Persell House Of Representatives 5A Race Could Lead To Recount.webm', 'Local GOP, DFL Headquarters Make Final Push For Voters.webm', 'Pete Stauber Beats Joe Radinovich In Race For 8th Congressional District.webm', \"Itasca County Sheriff's Race Continues On Through Turbulence.webm\", 'GOP Congressional Candidates Housley And Stauber Stop In Bemidji.webm', 'MN GOP Candidates Make Campaign Stop In Bemidji.webm', 'DFL Candidates Walz And Smith Visit Bemidji To Rally Supporters.webm', 'Brainerd School Board Candidates Debate Ahead Of November 6 Election.webm', 'Brainerd Lakes Area Move To Amend Protests Against Big Money In Politics.webm', \"Albrecht & Vene Look To Bemidji's Future.webm\", 'Community Spotlight- CLC Hopes To See High Student Voter Turnout.webm', 'Bemidji School Board Candidates State Case During Forum.webm', 'Bemidji City Council Candidates Answer Questions Through Public Forum.webm', 'Two Candidates Looking To Become The Next Aitkin County Sheriff.webm', 'Groningen is onze stad.webm', 'SPPS Social Studies Classes Engage Students in the 2018 General Election.webm', 'Attje Kuiken - Commissie voor Landbouw, Natuur en Voedselkwaliteit.webm', 'Trailer do Canal - SPlovers.webm', 'LollaPalooza 2018 - SPlovers.webm', 'MASP - SPlovers.webm', 'Acupuntura Urbana- Os Cavaletes de Lina Bo Bardi do MASP - Teatro Oficina.webm', 'Por dentro do Sesc Paulista - SPlovers.webm', 'Anthem Ukrainian SSR.ogg', 'En-us-Deoxyribonucleic acid.ogg', 'Tour por Pinheiros - SPlovers.webm', 'We Are NASA.webm', 'What Emerged from the Big Bang- - Big History Project.webm', \"Northrop Grumman CRS-10 Mission to the Space Station- What's On Board-.webm\", \"Inside InSight - German Scientist Aims to Take Mars' Temperature.webm\", 'Stephen Hawking discusses the origin of the universe, UC Berkeley, 2007.webm', 'What Is Reality- (Official Film).webm', 'Arecibo message DTMF.ogg', 'Wikipedia - Superdotada.webm', 'Hymn of ussr instrumental.ogg', 'La Marseillaise Rouget de Lisle Musique de la Garde Républicaine.ogg', 'BySSR anthem vocal.ogg', \"Mississippi Won't Send A Democrat To DC- Chris McDaniel - Morning Joe - MSNBC.webm\", \"A Time for Freedom- Why I'm Running for United States Senate (Japheth Campbell).webm\", 'Collegium Vocale - Gaudete, Christus est natus.ogg', \"President Ronald Reagan's Speech at the Berlin Wall, June 12, 1987.webm\", '938-AAG-Trimmed.wav', 'Agnes Mulder- Commissie voor Infrastructuur en Waterstaat.webm', 'National anthem of Turkmenistan, performed by the United States Navy Band.oga', 'National anthem of Turkmenistan, performed by the United States Navy Band.wav', 'Belorussian SSR Anthem 1952.ogg', 'Dideba (Georgia former anthem) vocal instrumental mix in C major.ogg', 'Draft Ethical Principles of Therapeutic Assisted Reproductive Technologies.webm', '0762 Spinning Levers 04 45 20 00 3mb.webm', 'Learning disability.webm', 'Lewy body dementia.webm', 'Lupus nephritis.webm', 'Lyme disease.webm', 'Malaria.webm', 'Marfan Syndrome.webm', 'Measles.webm', 'Medullary sponge kidney.webm', 'Meningitis.webm', 'Menopause.webm', 'Menstrual cycle.webm', 'Mesothelioma.webm', 'Multiple sclerosis.webm', 'Mumps.webm', 'Myasthenia-gravis.webm', 'Myocarditis.webm', 'Narcolepsy.webm', 'Nasal polyps.webm', 'Neonatal hepatitis.webm', 'Neuroblastoma.webm', 'Neurogenic bladder.webm', 'Non-alcoholic fatty liver disease.webm', 'Non-hodgkin lymphoma.webm', 'Omphalocele.webm', 'Opioid dependence.webm', 'Tver dialects of Karelian and VepKar corpus by Irina Novak 2018.webm', 'Humat al-Hima.ogg', 'Michael Sheen voice.flac', 'Crystal River Refuge\\'s \"Manatee Manners\" for Boaters.webm', 'Tunisian Victory.webm', 'Anthem of Kazakhstan 1991-2006.ogg', \"En-us-it's all Greek to me.ogg\", 'DOD 106231676.webm', \"Ich hab' mich ergeben.ogg\", 'Is Dickinsonia our oldest ancestor-.webm', \"Tasmania's swift parrot set to follow the dodo.webm\", 'Tiny birds cry wolf to scare predators.webm', 'Cicha noc.wav', 'Ringing chest lock.flac', 'Fr-sensé.ogg', 'Wikipedia Tales - A Trip To Lahore!.webm', 'Gohmert-on-Wikipedia-2018-12-11.webm', 'WIKITONGUES- Sam speaking Louisiana French.webm', 'Georgian SSR anthem.ogg', 'Beautiful Japan (1918).webm', '\"America the Beautiful\", performed by the United States Navy Band.oga', '\"America the Beautiful\", performed by the United States Marine Band in the 1950s.oga', '\"Schönster Herr Jesu\" performed by the United States Army Band in December 2018.oga', '\"Ein feste Burg\" performed by the United States Army Band in December 2018.oga', '\"Ein feste Burg\" performed by the United States Army Band in December 2018.wav', '\"Ein feste Burg\" performed by the United States Army Band in December 2018.ogg', '\"Schönster Herr Jesu\" performed by the United States Army Band in December 2018.wav', 'Azərbaycan SSR Himni (1977 Vocal).oga', 'Sv-Carl von Linné.ogg', '\"Hail to the Chief\" performed at George H.W. Bush\\'s lying in state, December 2018.oga', '\"Hail to the Chief\" performed at George H.W. Bush\\'s lying in state, December 2018.wav', 'Himno Nacional de Bolivia instrumental.ogg', '\"Hail to the Chief\" performed at George H.W. Bush\\'s lying in state, December 2018.ogg', 'Internationale-cmn (英特纳雄耐尔).ogg', 'Ata Ratu \"Dana Peku Palanja Nggau-I\\'m not ready to leave you\".webm', \"Asia Bibi Lawyer Saif Ul Malook, Asia Bibi's Fight for Justice.webm\", 'H-SET OSCAR ONBOARD AUTOMATED ANNOUNCEMENT STRATHFIELD.ogg', 'National Anthem of Republic of Korea 2018 Chorus.wav', 'ScienceCasts- The Zero Gravity Coffee Cup.webm', 'ScienceCasts- Historic Vegetable Moment on the Space Station.webm', 'Russian anthem at Victory Day Parade 2010.ogv', 'Expedition 57 58 Change of Command Ceremony December 18 2018.webm', 'Apollo 8 genesis reading.ogg', 'The Genocide Word by Raphael Lemkin.ogv', 'AP11 FINAL APPROACH.ogv', 'LL-Q150 (fra)-Fabricio Cardenas (Culex)-François Hollande.wav', 'TA-மகாப்பிரத்தானம்.ogg', 'Russian anthem instrumental.oga', '05 Ri liberas.wav', 'TA-மகாபற்பன்.ogg', '09 La plej granda.wav', 'A Trap for Santa Claus (1909) .webm', 'Semper Paratus, May 2010.ogg', '2018-12-25 savoureuse-belfort.webm', '2018-12-26 Savoureuse-Belfort.webm', 'Vtin Action Cam EyPro Unboxing.webm', \"Decathlon 4K's Action cam- G-Eye 900 Review.webm\", \"BSU Men's Hockey To Play In 2019 Mariucci Classic.webm\", 'Nick Leitner Commits To Hometown Beavers.webm', 'Bemidji Falls to Thief River Falls in Girls Hockey.webm', 'Brainerd Boys Swimming And Diving Beats Bemidji.webm', 'Jeff Johnson To Retire From Politics.webm', \"BSU Men's Hockey Takes Win Over Alabama-Huntsville.webm\", \"BSU Women's Hockey Falls To St. Cloud State In Hall Of Fame Game.webm\", 'Red Cross Sees Decline In Blood Donations Around Holiday Season.webm', 'Brainerd Boys Hockey Takes Win Against Bemidji.webm', 'US Senate Passes $867 Billion Farm Bill.webm', \"BSU Women's Hockey Takes Win Over St. Cloud State.webm\", \"BSU Men's Hockey Set To Take On Rival Chargers.webm\", 'Bagley-Fosston Boys Hockey Wins Over Park Rapids In OT.webm', \"BSU Women's Hockey Takes Win Over Ohio State.webm\", 'More Donations Sought For Holiday Gifts For Kids Toy Drive.webm', \"BSU Women's Hockey Looking To Break Scoring Slump.webm\", 'Water Tower Citizens Committee Working On Strategies To Save The Historic Tower.webm', 'Roseau Girls Hockey Takes Win Over Bemidji.webm', 'Former Crosby Mayor Acquitted From Possessing A Stolen Firearm Charge.webm', 'Activist Winona LaDuke Applies To Public Utilities Commission Seat.webm', 'Bemidji Community Christmas Meal Still In Need Of Volunteers.webm', \"BSU Women's Hockey Team Carrying Momentum into Mercyhurst Matchup.webm\", 'MnDOT Preparing For The First Winter Storm Of The Season.webm', 'Bemidji Boys Hockey Ready To Start Season.webm', 'Brainerd-Little Falls Girls Hockey Looking For Return Trip To State Tournament.webm', 'Shoppers Looks For Gifts In Last-Minute Christmas Rush.webm', \"Northwoods Adventure- Pick's Christmas Trees.webm\", 'Governor-Elect Tim Walz Brings Listening Tour To Bemidji.webm', \"Scott Goddard Wins Crow Wing County Sheriff's Race.webm\", \"BSU Men's Hockey Putting SCSU Losses Behind Them.webm\", 'BSU Basketball Getting Ready For Conference Play.webm', 'Bemidji Wrestling Seeking Redemption This Year.webm', 'Brainerd Boys Hockey Hopes Brotherly Connection Can Lead Them To State.webm', \"Bemidji's Railroad Corridor Project Almost Derailed.webm\", 'Bemidji Football Ends Season With Loss to St. Thomas in State Semifinal.webm', 'Introductie Terugspeeltheater Amsterdam (full).webm', \"Isola d'Elba, Relitto di Pomonte, IMMERSIONE, Toscana. Action cam Thieye T5e Full HD.webm\", 'News of the outbreak of the Pacific War(Empire of Japan).ogg', 'Imperial Rescript on the Termination of the War.ogg', 'Martin Mahner voice - en.ogg', 'Diane Abbott BBC Radio4 Desert Island Discs 18 May 2008 b00bbdly.flac', 'SJACS school song.ogg', 'Martin Mull Talks \"The Cool Kids\" - Life Love and Pop - Culture.webm', \"How To Dim Sum - A Beginner's Guide.webm\", 'Regarding the incident of an ROK naval vessel directing its FC radar at an MSDF patrol aircraft ja.webm', 'Peruvian Anthem chorus - sixth verse.ogg', 'Accessori indispensabili per la nostra Action Camera - test SD cinese.webm', 'Ansage Elbe-Saale-Bahn Salzburg, 1.ogg', 'WIKITONGUES- Aakriti speaking Kashmiri.webm', 'WIKITONGUES- Abderrahman speaking Tachelhit.webm', 'WIKITONGUES- Anass speaking Moroccan Arabic.webm', 'WIKITONGUES- Anass speaking Tarifit.webm', 'WIKITONGUES- Dominique speaking Alsatian.webm', 'WIKITONGUES- David speaking Syrian Arabic.webm', 'WIKITONGUES- Foffo speaking Neapolitan.webm', 'WIKITONGUES- Golala speaking Sorani Kurdish.webm', 'WIKITONGUES- Eetu signing Finnish Sign Language.webm', 'WIKITONGUES- Hannah speaking Oshiwambo.webm', 'WIKITONGUES- John speaking English, Spanish, and Greek.webm', 'WIKITONGUES- Latonian and Yankee speaking Lenape and Nanticoke.webm', 'WIKITONGUES- John speaking Klao.webm', 'WIKITONGUES- Nawal speaking Moroccan Arabic.webm', 'WIKITONGUES- Marapun speaking Tamil.webm', 'WIKITONGUES- Nitesh speaking Haryanvi.webm', 'WIKITONGUES- Pau speaking French, Lithuanian, Italian, English, Spanish, and Catalan.webm', 'WIKITONGUES- Senful speaking Malay.webm', 'WIKITONGUES- Stefano speaking Abruzzese.webm', 'WIKITONGUES- Varney and Omoru speaking Vai.webm', 'WIKITONGUES- Ying speaking Henan Chinese.webm', 'WIKITONGUES- Sofie speaking Dutch Sign Language.webm', 'WIKITONGUES- Zubah speaking Loma.webm', 'WIKITONGUES- Yusuf speaking Sundanese.webm', 'WIKITONGUES- James speaking Filipino, English, and Spanish.webm', 'Ru-адюльтер.ogg', 'President Trump Addresses the Nation.webm', 'President Trump Delivers Remarks.webm', 'President Trump Delivers a Statement to the Press 2019.webm', 'Perry DeAngelis on Skepticast 24 August 2007.ogg', 'Audio James Randi Long Version.ogg', 'Dominee Gremdaat over de Nashville-verklaring.webm', 'Sri Lankan national anthem, performed by the United States Navy Band.oga', 'Husten-abf-.ogg', 'WIKITONGUES- Daniel speaking Extremaduran.webm', 'WIKITONGUES- Victor speaking Asturian.webm', 'WIKITONGUES- Finny speaking Musi.webm', 'WIKITONGUES- Ricardo speaking Sardinian.webm', 'WIKITONGUES- Anugrah speaking Li Niha.webm', 'President Trump Meets with the Senate Minority Leader and the House Speaker-Designate.webm', 'WIKITONGUES- Jackson speaking Konobo.webm', 'Anthem of the Republic of Karelia.ogg', 'Copying Is Not Theft.webm', 'Voz de Ávine Vinny.ogg', 'Inside the White House- The Situation Room.webm', 'Fr-Lucie Aubrac.ogg', 'Waarom willen we dronken worden-.webm', 'Internationale-uk.ogg', 'Killers from space.webm', 'Osteoarthritis.webm', 'Pancreatic carcinoma.webm', 'Pancoast tumor.webm', 'Peptic Ulcers.webm', 'Parkinsons disease.webm', 'Panic disorder.webm', 'Pericarditis and Pericardial Effusions.webm', 'Physician Compensation in the US.webm', 'Phobias.webm', 'Pertussis.webm', 'Physiology of cardiovascular system.webm', 'Department of State press briefing with Deputy Spokesperson Robert Palladino DOD 106314672-1280x720-2765k.webm', 'George W. Bush Speech - September 12, 2001.ogg', 'Apis on Adonidia flowers.webm', 'President Trump Delivers a Statement Upon Departure January 14, 2019.webm', 'National Anthem of Afghanistan (Instrumental).ogg', 'De-Rinderkennzeichnungs- und Rindfleischetikettierungsüberwachungsaufgabenübertragungsgesetz.ogg', '1981 government shutdown White House phone message.mp3', 'Anthem of the Moldavian Soviet Socialist Republic (instrumental).ogg', 'War of the Robots.ogv', 'WarOfTheRobots1978 (WebM video).webm', 'Anthem of Basque Country Vocal.ogg', 'De-Heinrich Himmler.ogg', 'How Helen Keller Learned To Talk.webm', 'Alexandria Ocasio-Cortez - 2019-01-16 Speech about an immigrant constituent.webm', 'Fi-Hyvää huomenta.ogg', 'Zuckmayer-Medaille 2019 22.webm', 'Zuckmayer-Medaille 2019 21.webm', 'Zuckmayer-Medaille 2019 23.webm', '2018 Christmas Decorations at the White House.webm', 'President Trump Hosts a Roundtable Discussion on Border Security and Safe Communities.webm', 'Millie Alexandra - Sign Me Up!.webm', 'When Johnny Comes Marching Home - USMA Band.ogg', 'Vlog -19 Winnaar Lanciersprijs 2017- Willem Vermeulen.webm', 'Talkpages.ogg', \"Joe Wilson's You Lie interruption.theora.ogv\", 'When Johnny Comes Marching Home, U.S. Military Academy Band.flac', 'When Johnny Comes Marching Home, U.S. Military Academy Band.wav', 'The Memorial Stadium Earthquake Retrofit.webm', 'DNC Future Forum - Houston, TX.webm', 'VP Biden & Berkeley\\'s Doudna discuss \"Cancer Moonshot\".webm', 'Davos 2016 - Welcome Message by the Executive Chairman.webm', 'De-Bremen.ogg', 'Joyce - Don Bacon for Congress.webm', 'American Indian Leaders, Students Participate in Indigenous Peoples Movement March.webm', 'Boot Polish (1954).webm', 'Seksuele en relationele vorming- Zo ga je om met gevoelige afbeeldingen.webm', 'Seksuele en relationele vorming- Vragen stellen zonder schaamte, zo kan het.webm', 'Japanese Rope Bondage - Sex Stuff.webm', 'Anna Drijver legt dividendbelasting uit (The Big Short).webm', '4050 Destination Earth 01 47 33 28.webm', 'Audio - Tyrannus dominicensis.ogg', 'SIEL-Ligne 1-Direction Chateau de Vincennes, prochain train dans 1 min.ogg', 'Ice Professionals Check Out The Hockey Day Minnesota Rink.webm', 'Day 5 Cheese cake.webm', \"Prime Minister David Cameron's EU Speech.ogv\", 'Reuzevliegtuig Tupolev Weeknummer 64-23 - Open Beelden - 52883.ogv', 'DOyly Carte 1960 - HMS Pinafore 02 - We sail the ocean blue.ogg', '\"Ishy Bilady\" performed by the United States Navy Band.oga', 'DOyly Carte 1960 - HMS Pinafore 03 - Im called Little Buttercup.ogg', \"Dzifa can't sit still after she uses Cocaine - Drugslab.webm\", \"Cocaine- Bastiaan investigates how it's cut - Drugslab Extra.webm\", 'Christmas special with MDMA - Drugslab.webm', 'Dzifa takes Ketamine in an indoor playground - Drugslab.webm', 'San Pedro Q&A with Nellie - Drugslab.webm', 'Bastiaan drinks alcohol and drives a car - Drugslab.webm', 'Nellie has a lot of emotions after taking San Pedro - Drugslab.webm', \"Nellie's stamina is put to the test after Kratom - Drugslab.webm\", 'This is our new host! - Drugslab.webm', 'NICER Charts the Area Around a New Black Hole.webm', 'Platz da für mein SUV.webm', 'Cory Booker on Healthcare \"This Is Our Moral Moment\".webm', 'Test formWizard gadget exemple.webm', 'Senator Klobuchar Meets With Multi-Agency Wellness Court.webm', 'Pool Safely Day - Sen. Amy Klobuchar (MN).webm', 'En-us-portmanteau-1.ogg', 'Millennium Dome entrance area (London) mid-2000.ogv', 'Dangerous days (1920).webm', 'President Trump Delivers Remarks Regarding the Shutdown.webm', 'Coffeeshop policies- Dzifa finds out - Drugslab Extra.webm', 'Dzifa takes GHB and talks about overdose - Drugslab.webm', \"Protect What You've Earned - Gen. James Mattis.webm\", 'Planetarium Hamburg, 2019.webm', 'The Future of Science is Open.webm', 'Barbara Jordan Oral History Interview I, 3-28-84..webm', 'Richard Dawkins BBC Radio4 Start the Week 17 Oct 2011 b015yr4h.flac', 'Audio Richard Dawkins.wav', 'Acute vision loss video article 25 feb 2019.webm', 'En-us-Mars.ogg', 'De-Dolchstoßlegende.ogg', 'Placenta previa.webm', 'Placental abruption.webm', 'Pleural effusion.webm', 'Posterior urethral valve.webm', 'Postpartum hemorrhage.webm', 'Posttraumatic stress disorder.webm', 'Potter sequence.webm', 'Prader willi syndrome.webm', 'Preeclampsia & eclampsia.webm', 'Pregnancy.webm', 'Premature Ovarian Failure.webm', 'Primary adrenal insufficiency.webm', 'Primary biliary cholangitis.webm', 'Prolactinoma.webm', 'Pulmonary Edema.webm', 'Pulmonary Embolism.webm', 'Pulmonary Hypertension.webm', 'Pulmonic Valve Disease.webm', 'President Trump and Secretary Pompeo Speak to the Media.webm', 'Ar-أجرى.ogg', 'Ar-شُكْرًا.ogg', 'Vice President Pence and Mrs. Pence Visit Auschwitz and Birkenau.webm', 'National anthem of Kenya, performed by the United States Navy Band.wav', 'President Trump Participates in a 1 on 1 Conversation with the Chairman of the State Affairs Commission of the Democratic People’s Republic of Korea.webm', 'Goodness Had Nothing to Do With It.webm', 'Ja-Kyoto-shi.oga', 'Ru-приоритет.ogg', 'Periodontal Disease Overview.webm', 'Wikipedia-VideoWiki-France video articl.webm', 'Katherine greeting for Litteraturhuset Wikipedians.webm', 'Wikipedia-VideoWiki-United Kingdom video article.webm', 'Wikipedia-VideoWiki-Mark Zuckerberg video article 9 march.webm', 'Nl-Nederlands.ogg', 'Bezoek Britse oorlogsbodem-518039.ogv', 'BILBAO MENDI FILM FESTIVAL 2018 - TOMMY CALDWELL - THE DAWN WALL.webm', 'Ashima Shiraishi sends Open Your Mind Direct 9a.webm', 'Nellie takes Coca powder (Erythroxylum coca) - Drugslab.webm', 'How to test your drugs- Nellie finds out - Drugslab Extra.webm', 'Bastiaan builds a closet after vaping weed - Drugslab.webm', 'Osmar Prado- estamos aqui para defender a governabilidade do governo.webm', 'NASA - Evolution of the Moon.webm', 'IGR J17062-6143 binary.webm', 'Sv-svenska.ogg', 'Recep Tayyip Erdogan, Turkish pronunciation.ogg', 'Wikipedia-VideoWiki-NASA video article.webm', 'Wikipedia-VideoWiki-Germany video.webm', 'Universal Declaration of Human Rights - ori - ra - Art1.ogg', 'Wikipedia-VideoWiki-Barack Obama video article.webm', '103-a Universala Kongreso de Esperanto 18 Meso RA.ogv', \"Skipping Drugs She Can't Afford.webm\", 'Anyang 25ton blacksmith hydraulic press.webm', 'Fr-pénis.ogg', 'En-us-restricted.ogg', 'Zh-Shanghai.ogg', 'Bohani in Hindi.ogg', '3-11-19- White House Press Briefing.webm', '1-28-17- Weekly Address.webm', 'Christchurch Mosque Shooting -- Flowers at the cordon.webm', 'La Voĉo de Zamenhof.wav', 'Editatón mujeres peruanas en wikipedia wikigap 2019.webm', 'Human centrifuge, envihab, DLR Cologne.webm', 'Sidda Veso, Pursere Kattuna.webm', 'President Trump Participates in an Executive Order Signing.webm', \"President Obama's Nowruz 2014 Message to the Iranian People.webm\", \"President Obama's Nowruz 2013 Message to the Iranian People.webm\", 'On Nowruz 2012, President Obama Speaks to the Iranian People.webm', 'The Gladiator Diet How Vegetarian Athletes Stack Up.webm', 'NASA - Colliding Neutron Stars Create Black Hole and Gamma-ray Burst.webm', 'Wikipedia-VideoWiki-Dengue fever overview viedo article.webm', 'Fr-Olympe de Gouges.ogg', 'En-Burundi-pronunciation.ogg', 'Ru-балалайка.ogg', 'Journey of Sound to the Brain.ogv', 'En-us-Barack-Hussein-Obama.ogg', 'Disappearing Ice.webm', 'Hungarian national anthem, performed by the United States Navy Band (May 1997 arrangement).oga', 'Wikipedia-VideoWiki-Typhoid fever overview video article.webm', 'Wikipedia-VideoWiki-Pneumonia overview.webm', 'Wikipedia-VideoWiki-Albert Einstein Video article.webm', 'Anthem of Ingushetia - ГIалгIайчен гимн.ogg', 'Internet in a Box.webm', 'Ido pronunciation Beaufront Jespersen La maxim bona.wav', 'Max Headroom broadcast intrusion.webm', 'Shahadah.ogg', 'Ido pronunciation Beaufront Renan Me naskis deino bluokula.wav', 'Presentation Audio.ogg', 'En-us-Pakistan.ogg', 'Présentation Audio.ogg', 'Wikipedia-VideoWiki-Dengue fever overview (Estonian).webm', 'Wikipedia-VideoWiki-Dengue fever 2 minute overview ( Arabic ).webm', 'Wikipedia-VideoWiki-Measles overview video article.webm', 'DECtalk demo.flac', 'Amiga speech synthesis.flac', 'Amstrad CPC speech synthesizer demo.flac', 'Azərbaycan marşı instrumental.ogg', 'C64 Software Automatic Mouth demo.flac', 'Amazonas Indigenous State anthem.ogg', '2019-03-03 GOES 16 Lee County Alabama Tornado.webm', 'Polish letter J.ogg', 'Ry Tanindrazanay malala ô! (instrumental).ogg', 'President Trump Meets with the Secretary General of the North Atlantic Treaty Organization.webm', 'Wikipedia-VideoWiki-Black Hole video article ( Arabic ).webm', 'Secretary Pompeo Opens a Press Availability at NATO Foreign Ministerial 2019.webm', 'Accesibilidad con OpenStreetMap en Perú.webm', \"Coup d'état.ogg\", 'Wikipedia-VideoWiki-Measles overview.webm', 'Wikipedia-VideoWiki-Dengue fever 2 minute overview (Bahasa Indonesia).webm', 'GLAM on Tour 2018 Wikimedia deutsch.webm', \"2013-12-14 President Obama's Weekly Address.webm\", 'Dengue Overview Video in English TTS.webm', 'Dengue video Gujarati.webm', 'Example sound file in Ogg Vorbis format.ogg', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ଡେଙ୍ଗୁ ଜ୍ୱର ୨ ମିନିଟ ଅବଲୋକନ.webm', 'Dengue fever overview in Tulu.webm', 'Wikipedia-VideoWiki-Hepatitis C overview.webm', '\"The Everlasting Punishment of Hell\" Christian Bible preaching (Baptist sermon).webm', 'Videowiki --Adithi--.webm', 'Videowiki--Adithi--.webm', '\"Loyalty\" Sermon about God, marriage, in-laws, and faithfulness.webm', 'Wikipedia-VideoWiki-Cancer overview video article.webm', 'Pneumonia 2 min Overview in Hindi.webm', 'Wikipedia-VideoWiki-Major depressive disorder overview.webm', 'Queer the Campus- A Documentary.webm', 'ESOcast 199 Light- Astronomers Capture First Image of a Black Hole.webm', 'Erklärvideo Fellow-Programm Freies Wissen.ogv', 'President Obama Delivers a Statement on the Attacks in Paris.webm', 'Wikipedia-VideoWiki-Tuberculosis overview.webm', 'Gila Monster.webm', 'Governo anunciou 35 projetos de infraestrutura.webm', 'ESOcast 170.webm', 'China quer aumentar investimentos no Brasil.webm', 'Contemplados comemoram moradias do Minha Casa Minha Vida.webm', 'Chris Pyak.webm', 'Wikipedia-VideoWiki-Malaria overview.webm', 'President Trump Participates in a Roundtable Discussion on the Economy and Tax Reform.webm', 'Wikimedia Summit 2019 - Key listener Sunil Abraham.webm', 'Sur sa mission en France Face B.ogg', 'Wikimedia Foundation branding proposal presentation.webm', 'In Changqingyuan Community in Yinzhou District, Tieling 02.webm', 'Tielingxi Railway Station Ticket Gate waiting hall 02.webm', 'Tielingxi Railway Station Ticket Gate waiting hall 01.webm', 'A train arrives at Tielingxi Railway Station.webm', 'Wikipedia-VideoWiki-Hypertension overview.webm', 'SSTV sunset audio.ogg', 'GREAT ORGANS AND CHURCHES OF FRANCE (The Joy of Music with Diane Bish).webm', 'Dengue 2 min overview Video in Marathi.webm', 'Wikipedia Tales (Telugu version).webm', 'En-uk-fuck2.ogg', 'Wikipedia-VideoWiki-Cholera overview.webm', 'Amapola- Los campesinos no son criminales..webm', 'WikiJournal publishing instructions 1.webm', 'Astronauts Koch and Meir React to International Space Station Mission Updates.webm', 'Bn-বাংলা.oga', 'Vlog -21 de Lanciersprijs 2019.webm', '\"Jedna si jedina\" - Former national anthem of Bosnia and Herzegovina (1992–1999).oga', 'Stevenson-Moore-Adelina Patti-The last rose of summer-(1906).ogg', \"'Jedna si Jedina' - Former national anthem of Bosnia and Herzegovina (1992–1999).ogg\", 'Wikipedia-VideoWiki-Measles 2 min overview video article.webm', 'Wikipedia-VideoWiki-Influenza.webm', 'En.Wikipedia-VideoWiki-Measles.webm', 'En.Wikipedia-VideoWiki-Gout.webm', 'President Trump Delivers a Statement Upon Departure from the White House April 26 2019.webm', 'Sorud-e Mellí-e Yomhurí-e Eslamí-e Irán (instrumental).oga', 'Former imperial Iranian flag anthem, performed by the United States Navy Band.wav', 'Former imperial Iranian royal anthem, performed by the United States Navy Band.flac', 'En.Wikipedia-VideoWiki-Dengue fever.webm', 'En.Wikipedia-VideoWiki-Pneumonia.webm', 'En.Wikipedia-VideoWiki-Typhoid fever.webm', 'En.Wikipedia-VideoWiki-Cancer.webm', 'WD bad heads click of death.ogg', 'En.Wikipedia-VideoWiki-Hepatitis C.webm', 'Wikipedia-VideoWiki-Major depressive disorder.webm', 'Wikipedia-VideoWiki-Malaria.webm', 'En.Wikipedia-VideoWiki-Tuberculosis.webm', 'Wikipedia-VideoWiki-Hypertension.webm', 'Wikipedia-VideoWiki-Cholera.webm', 'O Arise, All You Sons (instrumental).ogg', 'Bride of the Monster (1955).webm', 'En.Wikipedia-VideoWiki-Acute vision loss.webm', 'Wikipedia-VideoWiki-Tutorial.webm', 'Wikipedia-VideoWiki-Urinary tract infection.webm', 'Wikipedia-VideoWiki-Sandbox.webm', 'Wikipedia-VideoWiki-Polio.webm', 'National anthem of South Korea (1945–1948).wav', 'Wikipedia-VideoWiki-Sepsis.webm', 'Belau rekid.ogg', 'Vocoder demo.ogg', 'Wikipedia-VideoWiki-HIV-AIDS.webm', 'Global Lives Project.webm', 'Himmler Posen Speech - Extermination of the Jews excerpt, Oct 4, 1943.ogg', 'Belau rekid (instrumental).oga', 'A glimpse of Kaiyuan 2019-05-01 105200000.webm', 'A glimpse of Kaiyuan 2019-05-01 01.webm', 'Struggling on CRAZY roots in Kranjska Gora- Vlog 10- 2018.webm', 'Expedition 59 SpaceX CRS-17 Installation May 6 2019.webm', 'Teoria da História na Wikipédia 2018.1.webm', '102-Road Bus, Fanhe 20190410 161336000.webm', '225-Road Bus, Shenyang 181855000.webm', '244-Road Bus, Shenyang 20190427 121849.webm', '244-Road Bus, Shenyang 20190427 121416.webm', '244-Road Bus, Shenyang 20190427 120922.webm', '244-Road Bus, Shenyang 20190427 120947000.webm', 'Changqingyuan Community, Yinzhou, Tieling 110352000.webm', '244-Road Bus, Shenyang 20190427 122232000.webm', 'Changqingyuan Community, Yinzhou, Tieling 110910000.webm', '244-Road Bus, Shenyang 20190427 122908000.webm', '244-Road Bus, Shenyang 20190427 121906000.webm', '102-Road Bus, Fanhe 20190411 162853000.webm', '102-Road Bus, Fanhe 20190411 163348000.webm', '244-Road Bus, Shenyang 20190428 174510000.webm', '244-Road Bus, Shenyang 20190428 175425000.webm', 'G1266 from Tielingxi to Shenyangbei 20190427 113848.webm', 'G1266 from Tielingxi to Shenyangbei 20190427 113913.webm', 'G1266 from Tielingxi to Shenyangbei 20190427 114124000.webm', '244-Road Bus, Shenyang 20190428 211655000.webm', 'G1266 from Tielingxi to Shenyangbei 20190427 115023000.webm', 'Osterfest 2019 Goethe-Sprachlernzentrum, Shenyang 20190427 174604.webm', 'Goethe-Sprachlernzentrum, Shenyang 20190427 125829.webm', 'Osterfest 2019 Goethe-Sprachlernzentrum, Shenyang 20190427 180013.webm', 'Goethe-Sprachlernzentrum, Shenyang 20190427 125904.webm', 'Goethe-Sprachlernzentrum, Shenyang 20190427 125113000.webm', 'G8020 from Tielingxi to Shenyang 20190429 173806.webm', 'G8020 from Tielingxi to Shenyang 20190429 174012.webm', 'G8020 from Tielingxi to Shenyang 20190429 173402000.webm', 'G8020 from Tielingxi to Shenyang 20190429 174925000.webm', 'G8020 from Tielingxi to Shenyang 20190429 174715000.webm', 'Curadoria - Mario Sergio Cortella.webm', 'Ireland National Anthem (Amhrán na bhFiann) RTÉ 1961-1966.ogv', 'TU Delft OpenCourseWare.webm', 'The first sounds ever recorded complete set.ogg', 'Carolee Schneemann.webm', 'NEFFEX - Fight Back (Official Video).ogg', 'Wikijab022-tom-harvey-adam-seth-moss-gerald-shields.mp3', 'Biology practical demo - How do nettles sting-.webm', 'Anthem of Ecuador.ogg', 'Wikipedia-VideoWiki-Cystic fibrosis.webm', 'Big Boy 4014 Superdampflok Bilder mit 844 Rawlins to Rock Springs Union Pacific Railroad USA.webm', 'Travel Deep Inside a Leaf - Annotated Version - California Academy of Sciences.webm', 'Eagles vs Drones.webm', 'Alexandre Dias apresenta o Instituto Piano Brasileiro.webm', 'Sayaun Thunga Phool Ka (instrumental).ogg', 'National anthem of Kuwait (instrumental).ogg', 'The U.S. Navy a Lethal, Forward, Ready Force.webm', 'En.Wikipedia-VideoWiki-Economy of Bulgaria.webm', 'Progress 71 Docking Coverage.webm', 'Wikipedia-VideoWiki-Multiple sclerosis.webm', 'Rajesh Hamal Audio.ogg', 'En.Wikipedia-VideoWiki-Appendicitis.webm', 'Kassaman instrumental.ogg', 'Forged from the Love of Liberty (instrumental).ogg', 'United States Navy Band - Fatshe leno la rona.ogg', 'Motherland (instrumental).ogg', 'Graduation Song (1934 song).webm', 'Governor Tom Wolf 2019 Budget Address.webm', 'Governor Wolf signs non-discrimination executive orders.webm', 'Governor Wolf- I urge the legislature to legalize medical marijuana.webm', 'Governor Tom Wolf Remarks at Medical Marijuana Legalization Bill Signing.webm', 'Governor Tom Wolf and First Lady Frances Wolf Share Their Support for Planned Parenthood.webm', 'Governor Wolf Remarks At York Vigil For Pittsburgh Shooting Victims.webm', 'Governor Wolf Statement on Treatable Cancer Diagnosis.webm', 'Apollo 15 feather and hammer drop.ogv', 'Rudy Mancuso & Maia Mitchell - Magic (Official Music Video).webm', 'Governor Wolf Declares Heroin and Opioid Epidemic a Statewide Disaster Emergency.webm', \"Governor Wolf's 2017-2018 Budget Address.webm\", 'Governor Wolf Signs Stronger Lobbying Restrictions Bill into Law.webm', 'Zamenhof - Al la Esperantisto.ogg', 'Quo vadis (1913).webm', 'En.Wikipedia-VideoWiki-Periodontal disease.webm', '2017 Charlottesville vehicle-ramming attack.webm', 'Uk-Івано-Франківськ.oga', 'Wikipedia-VideoWiki-Dengue fever overview.webm', 'Governor Wolf Draws Line in The Sand on Budget After Repeated GOP Failure and Obstruction.webm', 'Governor Wolf on Travel Ban Executive Order- \"This Is Not Who We Are.\".webm', 'Governor Wolf Rejects Republican Plan to Cut Education; Releases Emergency Funding.webm', 'Budget Speech Preview from Governor Wolf.webm', 'A quick update from Governor Tom Wolf on the status of budget negotiations.webm', \"Governor Wolf's 2018 Budget Speech.webm\", \"Governor Tom Wolf on Senate Bill 3 Restricting Women's Health Choices.webm\", 'Governor Wolf Hosts Non-Partisan Redistricting Listening Session with Philadelphia Residents.webm', '102-Road Bus, Fanhe 20190505 161633 00.webm', '102-Road Bus, Fanhe 20190505 154815 00.webm', \"Governor Wolf's Facebook Town Hall on 2017-2018 Budget.webm\", 'Extinction Rebellion rallies in Dublin.webm', '102-Road Bus, Fanhe 20190508 161443.webm', '102-Road Bus, Fanhe 20190513 162643 00.webm', \"Slovenia's national anthem, performed by the United States Navy Band.oga\", 'Alberic Faretai Tepoeurumanu Riveta.opus', '02 Sbor-a-orchestr-Narodniho-divadla dirigent-Jiri-Belohlavek 2008.ogg', 'Alsace (1916, English).webm', 'Mormonens offer (1911).webm', 'Ugandan national anthem, performed by the U.S. Navy Band.wav', 'Grape farmer selling grapes in xinjiang.webm', 'Former Russian national anthem (1990–2000), performed by the Brass Band of the Russian Ministry of Defense.wav', 'Former Russian national anthem (1991–2000), performed by the Brass Band of the Russian Federation Ministry of Defense.wav', 'Rudy Mancuso - Mama (Official Music Video).webm', 'Pare, Pense e Use Camisinha - Campanha de Carnaval 2019.webm', '102-Road, Fanhe 20190506 162321 00.webm', 'Volg -22 Maculatuur.webm', 'Time-lapse Earth Flyover from NASA Astronaut in Space.webm', 'विकिपीडिया-वीडियोविकि-आंत्र ज्वर.webm', 'Dap Prampi Mesa Chokchey.ogg', 'Special Counsel Robert S. Mueller III Makes Statement on Investigation into Russian Interference...webm', 'Wikipedia-VideoWiki-Dengue fever Arabic.webm', 'Bloop.ogg', \"July 24- Jordan Spieth's British Open Win Tops Weekend's Best Sport Moments.webm\", 'Der er et yndigt land.ogg', 'Hey, Slavs 1930s instrumental.ogg', \"L'Aube Nouvelle.ogg\", 'President Trump Meets with Chairman Kim Jong Un.webm', \"Beto O'Rourke visits DeSoto- Democratic Candidate for US Senate- TX -.webm\", 'NEFFEX - Soldier (Copyright Free).webm', 'NEFFEX - Myself (Copyright Free).webm', 'NEFFEX - No Sleep (Copyright Free).webm', 'NEFFEX - Chance (Copyright Free).webm', 'Fight Back (Official Video) NEFFEX.webm', 'NEFFEX - Grateful (Copyright Free).webm', \"Emil Ferris - Moi, ce que j'aime, c'est les monstres, Livre premier.webm\", 'Libya, Libya, Libya instrumental.ogg', 'Canto del tordo negro o zorzal.ogg', 'Indian Peafowl.ogg', 'Pigs in a Polka LTGC.webm', 'Kanto-ludo.webm', 'Ecuadorian national anthem (abridged).ogg', 'Hollywood Capers 190611 LTGC.webm', \"You Don't Know What You're Doin' 190611 LTGC.webm\", \"Puss n' Booty 190611 LTGC.webm\", 'Wacky Blackout 190611 LTGC.webm', 'The Ducktators 190611 LTGC.webm', 'The Booze Hangs High 190611 LTGC.webm', 'Meet John Doughboy 190611 LTGC.webm', 'Big Buck Bunny with VTT acid test.webm', 'A Tale of Two Kitties 190612 LTPC.webm', 'The Planet Around Beta Pictoris Makes Waves.webm', 'Fifth-Column Mouse 190611 LTGC.webm', 'National anthem of Lesotho, performed by the U.S. Navy Band.wav', 'Bosko, the Talk-Ink Kid 190613 LTPC.webm', 'A379, Spooky Gulch, Grand Staircase-Escalante National Monument, Utah, USA, 2016.ogv', 'Die Stem van Suid Afrika - SA Lugmag orkes.ogg', 'Sudan.ogg', 'Persebaya anthem.ogg', 'President Trump and the First Lady Attend a Sumo Wrestling Match in Japan.webm', 'Gagarin-Poyekhali.ogg', 'En-us-Mongolia.ogg', 'AR-Wikipedia-VideoWiki-Sandbox.webm', 'Address to the Nation by President George W. Bush on September 11, 2001.webm', 'AR-Videowiki-ملعب.webm', 'Wikimedia Commons mobile App.webm', 'En mia ĝardeneto ronda.webm', 'ويكيبيديا-فيديوويكي-ملعب.webm', 'Tsuutina Bruce Starlight Tlicha.webm', 'Remarks from Ground Zero September 14, 2001.webm', 'Çi pronunciation.wav', 'El Salvador National Anthem.ogg', \"El Salvador's national anthem (abridged).ogg\", 'Noam Chomsky - UCL Rickman Godlee Lecture 2011.webm', 'National Anthem of the Republic of Tatarstan with words.ogg', 'WIKITONGUES- Elfie speaking Bahasa Aru.webm', 'Territorial anthem of the United States Virgin Islands.wav', 'Bike trip from Italy to Slovenia - Episode 14, The Lake Bled.webm', 'Bike trip from Italy to Slovenia - Episode 12, Ljubljana PART I.webm', 'Bike trip from Italy to Slovenia - Episode 15, The Lake Bohinj.webm', 'Bike trip from Italy to Slovenia - Episode 13, Ljubljana PART II.webm', 'Bike trip from Italy to Slovenia - Episode 11, Maribor and Ptuj.webm', 'Zizek. Las elecciones en Colombia. 2018.webm', 'Izjava legendarnega partizanskega komandanta Franca Severja Frante ob 70-letnici ZZB za vrednote NOB Slovenije.webm', \"Guido Raos pronounces 'Birrificio Lambrate'.ogg\", 'Adding Wikidata to OpenStreetMap.webm', 'Ru-каков.ogg', 'Aukje de Vries - defensie.webm', 'Jan Paternotte - Commissie voor Koninkrijksrelaties.webm', 'Hayke Veldman - Commissie voor Europese Zaken.webm', 'تقديم لفريق النمو، ويكيبيديا العربية.webm', 'En-us-p.m..ogg', 'President Trump Delivers Remarks at Salute to America.webm', 'Duncan Lawson voice.ogg', \"UK Parliament Open Lecture - An insider's guide to the House of Commons.webm\", '11-Moja-mila-na-kierchowie.mp3', 'Kees Moeliker, How a dead duck changed my life.webm', 'Physicsworks.ogg', 'ويكيبيديا-فيديوويكي-النقرس.webm', 'NEFFEX - Pull Me Apart (Copyright Free).webm', 'NEFFEX - Careless (Copyright Free).webm', 'NEFFEX - Best of Me (Official Video).webm', 'NEFFEX - Crown (Copyright Free).webm', 'NEFFEX - Flirt (Copyright Free).webm', 'NEFFEX - Life (Copyright Free).webm', 'NEFFEX - Unstoppable (Copyright Free).webm', 'NEFFEX - Numb (Copyright Free).webm', 'NEFFEX - Pro (Copyright Free).webm', 'NEFFEX - All These Thoughts (Copyright Free).webm', 'NEFFEX - Graveyard (Copyright Free).webm', 'NEFFEX - Dangerous (Copyright Free).webm', 'NEFFEX - Baller (Official Video).webm', 'NEFFEX - Nightmare (Official Video).webm', 'Is a crawl-delay rule ignored by Googlebot-.webm', 'Welcome to SEO Snippets.webm', 'Subdomain or subfolder, which is better for SEO-.webm', \"My site's template has multiple H1 tags.webm\", 'How do I regain ownership of a Search Console property-.webm', 'Do fixed penalties affect SEO-.webm', 'How often does Google re-index websites-.webm', 'Why does the indexed pages count vary-.webm', 'Google Search Console- What should I do with old 404 errors-.webm', 'Can my URLs use non-English words- - SEO Snippets.webm', 'Add a sitemap for more than 50,000 URLs - SEO Snippets.webm', 'Izjave Wikimedia Start Republic of Srpska 2019.ogv', 'Giovinezza.ogg', 'Truman on Hiroshima.oga', 'All You Need To Know About Belarus.webm', 'Gus John voice.ogg', 'Wikipedia:ビデオウィキ-痛風.webm', 'Zh-Dongping dialect-丁坞村.ogg', 'Or-Polio Summary VideoWiki Video.webm', 'Zh-接山主席台.ogg', 'Zh-cmn-zho-dongping dialect-接山主席台.ogg', 'विकिपीडिया-वीडियोविकि-कैंसर.webm', 'विकिपीडिया-वीडियोविकि-डेंगू बुख़ार.webm', 'President Trump Participates in a Bilateral Meeting with the Amir of the State of Qatar.webm', '360 Video Syrians \"Have to Survive Having No Rights\" in Lebanon.webm', 'Earth 360 Video The Call of Science.webm', 'The Eagle Has Landed, The Flight of Apollo 11, 1969 (excerpt).webm', 'PartidoDigital.webm', 'Gartenheim.webm', 'Wikipedia-ビデオウィキ-Tutorial.webm', 'Wikipedia-ビデオウィキ-Sandbox.webm', 'Wikipedia-ビデオウィキ-痛風.webm', 'President Trump Meets with Survivors of Religious Persecution.webm', 'Slut Walk München 2019.webm', 'Julius Dein Performs A Magic Trick on a Vape - The Real Cost.webm', 'Girl Reacts to Julius Dein Doing Magic on A Vape - The Real Cost.webm', 'Consequences of Smoking - Delivery - The Real Cost.webm', 'Why Is Vaping An Epidemic- - The Real Cost.webm', \"Effects From Dip - Smokeless Doesn't Mean Harmless - The Real Cost.webm\", \"Dip Can Leave a Mark - Smokeless Doesn't Mean Harmless - The Real Cost.webm\", \"Don't Let Cigarettes Control You - The Real Cost of Cigarettes.webm\", \"Distracted By Dip - Smokeless Doesn't Mean Harmless - The Real Cost.webm\", \"Nicotine & Vaping - Don't Get Hacked - The Real Cost.webm\", \"Losing Control From Dip - Smokeless Doesn't Mean Harmless - The Real Cost.webm\", 'Unofficial Anthem of Serb Krajina - Соколови, сиви тићи.ogg', \"(뉴스인스타) 180623 KBS '해피투게더3' 흥행 돌풍 대세녀 박경림, 제시 출근길 직캠.webm\", 'En-us-bitch.ogg', 'As Beijing Closes In, Many Hong Kongers Eye The Exits.webm', 'Nigral-proteasome-inhibition-in-mice-leads-to-motor-and-non-motor-deficits-and-increased-expression-Video1.ogv', 'The Speaker Explains - Keeping Order in the House of Commons.webm', 'The Speaker Explains - Bobbing in the House of Commons Chamber.webm', 'John Dowland -- Now, o now I needs must part.opus', 'En-us-appropriate-verb.ogg', 'Wikipedia-VideoWiki-Incremental Encoder.webm', 'WIKITONGUES- Pradeep speaking Bengali.webm', 'A-closer-look-into-the-α-helix-basin-srep38341-s5.ogv', 'President Trump Delivers a Statement Upon Departure July 12, 2019.webm', 'In Plenty and In Time of Need instrumental.ogg', 'President Trump Delivers Remarks at Williamsburg, VA.webm', 'Ernst W. Hamburger - uma vida dedicada à ciência 3.webm', 'Anthem of Buryatia (Buryat and Russian version).oga', 'Wikipedia-VideoWiki-Union (United States coin).webm', 'IPCC Projections of Temperature and Precipitation in the 21st Century.webm', 'Fla-Flu no Cérebro.webm', 'Mulheres e produção científica.webm', 'PDBrasilMundo.webm', 'Plexobraquial final.webm', 'Akita-inu playing - Tokyo area - April 2017.webm', 'Hr-Šibenik.ogg', 'En-us-kite.ogg', 'Voyager Golden Record greeting in English.ogg', \"(코보티비) '눈시울 붉힌' 서재덕의 시즌 첫 승 인터뷰.webm\", 'Dorothee Bär speaking in front of the Love Hate ambigram at Brandenburg Gate.webm', 'President Trump Delivers a Statement Upon Departure 2018-07-10.webm', '(100&Change) Not a Post-Fact World- Better Informed Citizenries through Wikipedia.webm', 'Golden Vanity.ogg', 'Robot running at high-speed performing rapid inversion - Journal.pone.0038003.s006.ogv', 'Hemidactylus platyurus performing a high-speed inversion on a ramp - Journal.pone.0038003.s004.ogv', 'Hen Wlad fy Nhadau piano.ogg', 'Should We Leave Islam - Armin Navabi.webm', 'Knockdrum Video.webm', 'President Trump Delivers a Statement Upon Departure August 7 2019.webm', 'Scrutinising Government.webm', 'Pesquisa e desenvolvimento.webm', 'President Trump and First Lady Melania Trump Visits El Paso Texas.webm', 'Department Press Briefing - August 8, 2019.webm', 'ଇଣ୍ଟରନେଟରେ ଓଡ଼ିଆ ଲେଖା କାହିଁକି ଅଧିକ ଆବଶ୍ୟକ? - ଓଡ଼ିଆ ଉଇକିପିଡ଼ିଆ ଶିକ୍ଷଣ ୧.webm', \"Trump says he called Xi Jinping the 'king' of China.webm\", '2019-08-17 Test file for TimedMediaHandler audio captions.ogg', 'Intervocalic nasal alveolar clicks.ogg', \"Entrevue de l'expédition Tapiskwan sipi 2019 - 03.webm\", 'Prime Minister Trudeau delivers a message on Eid al-Adha - 2019.webm', 'Prime Minister Trudeau delivers a message on Eid al-Fitr - 2019.webm', 'Meeting Mr. Kid Pix (Internet Archive).webm', 'President Trump Delivers Remarks Upon Departure August 18, 2019.webm', 'President Trump Participates in a Bilateral Meeting with the President of Romania 2019-08-20.webm', 'Mississippi Democrats- This State Is Ready For Someone Like Me - Morning Joe - MSNBC.webm', 'Omaha Track - Don Bacon for Congress.webm', '兩種懷疑心理之解釋 汪精衛 粵語.mp3', 'The True Glory, 1945 (restored).webm', 'Zoe Quinn, Crash Override - XOXO Festival (2015).webm', 'President Trump Delivers Remarks Upon Departure 2019-08-21.webm', \"I'm sorry.webm\", 'Mis kuradi kanalid- Ei tea- Aga meie teame! Subscribe to PewDiePie!.webm', 'Bebaskan Pengetahuan.webm', '.@fordschool - Thomas Perez- Creating shared prosperity through conscious capitalism.webm', \"Gov. Hickenlooper's 2018 Holiday Message.webm\", 'Headlines for Monday, January 23, 2017 (HL-23).webm', '2017-04-25 Question Period.webm', \"President Kennedy's Speech at Rice University.ogv\", 'Event- Creating Safe and Inclusive Schools.webm', 'What is Magna Carta-.webm', 'Micro-CT Rope HighRes 3D.ogv', 'Nuremberg subway U3 ride Nordwestring to Hauptbahnhof 2019-08.webm', 'Limite (1931).webm', 'Wikipedia-Videowiki-Measles (Osmosis).webm', 'En.Wikipedia-VideoWiki-Ventricular fibrillation.webm', \"Earth's Water Cycle.ogv\", 'En.Wikipedia-VideoWiki-Measles (Osmosis).webm', 'WIKITONGUES- Yorick speaking Oiltjers Dutch.webm', 'Problematic data - Tore Danielsson.webm', 'Adele Vrana and Siko Bouterse, Whose Knowledge, Community Keynote at CC Summit 2019.webm', 'En.Wikipedia-VideoWiki-Breastfeeding.webm', 'INFOCUS- Cut It Out (or Off)!.webm', 'Actuele cijfers meisjesbesnijdenis in Nederland - Pharos.webm', 'Meisjesbesnijdenis, wat kan je doen om je beter te voelen--Arabisch - Pharos.webm', \"Sarai and Hagar's Conflict - Abram and Circumcision.webm\", 'President Trump Delivers Remarks Upon Arrival 9-1-2019.webm', 'President Trump Delivers Remarks Upon Departure 8-30-2019.webm', 'Fr-Blois.ogg', 'Dorian 2019-08-30 1818Z from ISS.webm', 'Box of infinities – A Mandelbox film 4K UHD 20190907.webm', 'FixCopyright- Copy (aka copyright) Tells the Story of His Life.webm', 'PM Trudeau delivers remarks at the launch of the Facebook AI research lab at McGill University.webm', 'Yacatecuhtli tocando el Cascabel.ogv', 'Prime Minister Trudeau holds a media availability in Beijing, China.webm', 'Fluorescent and confocal microscopes.ogv', 'Rachael Dunlop Voice.ogg', 'User-Hassan.m.amin-sandbox.webm', 'O Canada English Weir 1928.flac', 'National Anthem of Nicaragua.ogg', 'I Strike Because... (a call to join the Global Climate Strike on 20 September 2019).webm', 'Wat gebeurt er met je brein als je slecht slaapt-.webm', 'Kan een dictator de wereld redden.webm', 'Heeft het zin om fair trade te kopen.webm', 'Blijft kernafval voor altijd gevaarlijk.webm', 'Heeft Jezus echt bestaan.webm', 'Hoeveel stress kan een mens aan.webm', 'Hoe genees je een depressie - praten of pillen.webm', 'Is de Europese Unie een geldverslindende machine.webm', 'Army Combat Fitness Test.webm', 'Army Combat Fitness Test- 3 Repetition Maximum Deadlift (MDL) (Event 1).webm', 'Army Combat Fitness Test- Standing Power Throw (SPT) (Event 2).webm', 'Strength Training Circuit- Overhead Push Press.webm', 'Army Combat Fitness Test- Sprint-Drag-Carry (SDC) (Event 4).webm', 'Army Combat Fitness Test- Leg Tuck (LTK) (Event 5).webm', 'Army Combat Fitness Test- Two-Mile Run (2MR) (Event 6).webm', 'Conditional Drill- Tuck Jump.webm', 'Conditioning Drill 1- Power Jump.webm', '2 Field and Equipment Setup.webm', 'Waarom ga jij vanavond weer te laat naar bed.webm', 'Van wie is het Beloofde Land.webm', 'Waarom gebruiken we drugs niet meer als medicijn.webm', 'Is het gevaarlijk om van geslacht te veranderen.webm', 'Waarom ploetert de Europese Unie elke keer in tijden van crisis.webm', 'Staan er in 2070 palmbomen op de purperen heide.webm', 'Moeten geneesmiddelen voor zeldzame ziektes echt onbetaalbaar zijn.webm', 'Hoe warmen bitcoins de aarde op.webm', 'Waarom beslist Europa hoe een Kinder Surprise eruit moet zien.webm', 'Worden Europese gevangenen nog gefolterd.webm', 'Hoe klinkt de kosmos.webm', 'Zijn we allemaal racisten.webm', 'Hoe hard waren de Spartanen voor hun kinderen.webm', 'Wat drijft iemand tot zelfmoord.webm', 'Bestaan er buitenaardse wezens.webm', 'Reageren mannen- en vrouwenlichamen anders op seks.webm', 'Waarom geloof jij fake news.webm', 'Waarom is het zo moeilijk om de klimaatveranderingen te voorspellen.webm', 'Staat al van voor je geboorte vast hoe oud je wordt.webm', 'Lokt kortsluiting in de hersenen autisme uit.webm', 'Is potlood sterker dan staal.webm', 'Waarom verlopen de Brexit-onderhandelingen zo moeilijk.webm', 'My Belarusy instrumental.ogg', 'رسالة كاثرين ماهر لمؤتمر ويكي عربية 2019 بمراكش.webm', 'How Your Tech Skills Mean So Much More with the CIA - DDI Careers.webm', \"'Principle and Pragmatism in Developing Private Law'- 2019 Cambridge Freshfields Lecture.webm\", 'Is het toeval dat je moeder je belt net als je aan haar denkt.webm', 'Happy birthday Polish Wikipedia.webm', '465 Terschelling.ogg', 'John Ashbery at the 2011 National Medals of Arts and Humanities Ceremony.webm', 'National anthem of the Sakha Republic Yakut and Russian.ogg', 'Plastic Reconstruction of Face (1918).webm', 'Dilma lamenta homenagem a um dos maiores torturadores da ditadura.webm', 'Operation Safeguard - Victory in Achorstan-3.webm', 'We Found $16.1 Million in Political and Taxpayer Spending at Trump Properties.webm', 'Operation Safeguard 4- Coalition Operations.webm', 'Operation Safeguard II Working & Living Abroad-2.webm', 'Operation Safeguard-Technical Threats Abroad-1.webm', 'No, que te dije que no.webm', 'América Latina será toda feminista.webm', 'Ni de la iglesia, ni del estado, ni del marido, ni del patrón, mi cuerpo es mío y sólo mía es la decisión..webm', 'Abajo el patriarcado se va a caer, arriba el feminismo que va a vencer.webm', 'Latin Quarter of Paris - YouTube.webm', \"NASA's Vertical Motion Simulator.webm\", \"Former Senator Tom Coburn- Paris Climate Agreement Was 'Poorly Negotiated'.webm\", 'En.Wikipedia-VideoWiki-A. P. J. Abdul Kalam.webm', 'Waarom zijn schimmels zo slecht nog niet.webm', 'Ligt er een fortuin op onze stortplaatsen.webm', 'Ville Niinisto - GEF - The EP Goes Green.webm', 'WIKITONGUES- Rizwan speaking Balti.webm', 'En.Wikipedia-VideoWiki-Anandi Gopal Joshi.webm', 'Wikipedia-VideoWiki-J. R. D. Tata.webm', 'En.Wikipedia-VideoWiki-Lactose intolerance terminology.webm', 'Why Teens are Attracted to Vaping.webm', 'Dr. Nora Volkow on Addiction- A Disease of Free Will.webm', 'Sergey Lagodinsky - GEF - The EP Goes Green.webm', 'Exzerpt aus Höckes Rede in Mödlareuth 20191003.webm', 'En.Wikipedia-VideoWiki-Lactose intolerance symptoms.webm', 'NIDA Live - The Science of Vaping.webm', '1927. Октябрь (Эйзенштейн).webm', 'En.Wikipedia-VideoWiki-Rani of Jhansi.webm', 'Pronunciation \"Volkswagen ID.3\" de.ogg', 'En.Wikipedia-VideoWiki-Rabindranath Tagore.webm', 'Pronunciation \"VW ID.3\" de.ogg', 'Pronunciation \"ID.3\" de.ogg', 'Pronunciation \"ID.3\" en.ogg', 'Pronunciation \"VW ID.3\" en.ogg', 'Pronunciation \"Volkswagen ID.3\" en.ogg', 'En.Wikipedia-VideoWiki-C. V. Raman.webm', 'En.Wikipedia-VideoWiki-Raja Ravi Varma.webm', 'Hoe gezond is flexibel werken.webm', 'En.Wikipedia-VideoWiki-Arundhati Roy.webm', 'En.Wikipedia-VideoWiki-Kailash Satyarthi.webm', 'Cy-Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch (Welsh pronunciation, recorded 17-05-2012).ogg', 'Pepper Introduction.webm', 'En.Wikipedia-VideoWiki-State Bank of India.webm', \"Beto O'Rourke on His Campaign, Ted Cruz & Impeachment - THE CIRCUS - SHOWTIME.webm\", 'En.Wikipedia-VideoWiki-Indian Institute of Science.webm', 'Icelandic alphabet.ogg', 'Wikipedia-VideoWiki-University of Delhi.webm', 'Artemis I (Mission Trajectory).webm', 'Stammen de mensen af van de apen.webm', 'Moet je elke dag 10 000 stappen zetten.webm', 'Waarom mag je niet op een koraal gaan zitten.webm', 'Hebben meertalige kinderen een slechter rapport.webm', 'Hoe verleid je juridisch verantwoord een vrouw.webm', 'Is terrorisme eigen aan de islam.webm', 'En.Wikipedia-VideoWiki-Homi J. Bhabha.webm', 'En.Wikipedia-VideoWiki-Kalpana Chawla.webm', 'Wikipedia-VideoWiki-A. R. Rahman.webm', 'Wikipedia-VideoWiki-Asha Bhosle.webm', 'Wikipedia-VideoWiki-Rajinikanth.webm', 'Eisenhower farewell address.ogg', 'En.Wikipedia-VideoWiki-Sam Manekshaw.webm', 'Wikipedia-VideoWiki-Lata Mangeshkar.webm', '1935 Строгий юноша.webm', 'Remembering the old days with Rafael Bittencourt.webm', 'En.Wikipedia-VideoWiki-K. M. Cariappa.webm', 'FČ - 1 Příprava - 1 WikiShootMe.webm', 'NATO Secretary General Doorstep Statement after Meeting with Prime Minister Boris Johnson DOD 107336050-5da665a54503c.webm', 'Ru-праздник.ogg', 'Joint Press Conference by NATO Secretary General and Turkish Minister of Foreign Affairs DOD 107329879-5da666b943e39.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ନିମୋନିଆ.webm', 'En.Wikipedia-VideoWiki-Arjan Singh.webm', 'Waarom groeien planten beter in de stad.webm', 'Red je het klimaat door bomen te kappen.webm', 'Take a tour of the House of Lords.webm', 'Venus Berlin 2019 100.webm', 'A Surprise Victory.webm', 'Magnum, Our Own Agency.webm', 'Interview by Rupika Sharma with Abhinava Srivastava (Partnerships Working Group member).webm', 'God Save the King (1927).ogg', 'Klimafaktor Sonne (ZDF, Terra X) 720p HD 50FPS.webm', 'En.Wikipedia-VideoWiki-Indra Nooyi.webm', 'En.Wikipedia-VideoWiki-Vikram Sarabhai.webm', 'Dame Jocelyn Bell-Burnell BBC Radio4 The Life Scientific 25 Oct 2010 b016812j.flac', 'En.Wikipedia-VideoWiki-Mira Nair.webm', 'Editing Wikipedia- Communicating with others using the Talk page and Help Desk.webm', 'Ricardo Rosselló habla sobre la filtración del Chat de Telegram.webm', 'March of the Volunteers vocal.ogg', 'Tea with an MP - Alan Mak.webm', 'So funktionieren Klimamodelle (ZDF, Terra X) 720p HD 50FPS.webm', 'Clock Time Lapse Video Download CC Free to Use Forever Link in Info Area.webm', 'Entrevista sobre o estado do Processo Estratégico após publicação dos rascunhos das recomendações.webm', 'Space Station Live - Cultivating Plant Growth in Space.webm', 'Barack Obama inaugural address.ogv', 'Magnum, our own agency.webm', '190601 Jin Wembley Stadium Day 1 Ay-Oh Chant.webm', 'Marc Miquel y Francesc Fort hablan del plan estratégico Wikimedia 2030.webm', 'Typewriter Wiki.webm', 'President Trump Delivers Remarks Upon Departure 2019-09-22.webm', 'What is Google Voice.webm', 'Klimafaktor Sonne (ZDF, Terra X) 720p HD 50FPS.webm.webm', \"Don't Mess with Mercury.webm\", 'Audio James Randi.wav', 'LL-Q150 (fra)-Pamputt-choisi.wav', 'Cuban national anthem (abridged version), performed by the U.S. Navy Band.oga', 'Discours du Président Jean-Claude Juncker sur l’incendie de Notre Dame de Paris.webm', 'Beispiel für eine KIFS-Transformation 5K 50FPS 20191109.webm', \"Peek Inside NASA's Orion Capsule Mockup.webm\", 'Sino-Vietnamese-Nam quốc sơn hà.ogg', 'Launch of NOAA-M aboard Titan II rocket.webm', '2019-11-11 commemo-Meroux.webm', 'Schmelzendes Eis in der Arktis (ZDF, Terra X) 720p HD 50FPS.webm', 'What is Magna Carta?.webm', 'Bn-কলকাতা.oga', 'Former Russian national anthem (1990–2000), performed by the Brass Band of the Russian Ministry of Defense.oga', 'Wikipedia-VideoWiki-Farhan Akhtar.webm', 'Wikipedia-VideoWiki-Amitabh Bachchan.webm', 'En.Wikipedia-VideoWiki-Chicken tikka.webm', 'Intolerance (1916).ogv', 'En.Wikipedia-VideoWiki-Biryani.webm', 'Press Briefing with White House Acting Chief of Staff Mick Mulvaney DOD 107344892-1920x1080-6221k-5dd197abaa14d.webm', 'President Trump Speaks at the International Association of Chiefs of Police Annual Conference DOD 107379843-1280x720-2765k-5dd19766c3b5d.webm', 'Es-Simon Bolivar.oga', 'Secretary of State Michael R. Pompeo remarks to the Press, at the Department of State DOD 107449649-5dd33804c3e81.webm', 'Pete Conrad First Steps on Moon Quote.ogg', 'Die wichtigsten Klimafaktoren (ZDF, Terra X) 720p 50FPS.webm', 'Die Temperaturkurve der Erde (ZDF, Terra X) 720p HD 50FPS.webm', 'Klima-Archiv Eislabor (ZDF, Terra X) 720p HD 50FPS.webm', 'Klimafaktor CO₂ (ZDF, Terra X) 720p HD 50FPS.webm', 'Mongolian national anthem, performed by the United States Navy Band.ogg', 'United States Navy Band - La Borinqueña.ogg', 'Arlbergtunnel nach Vorarlberg.webm', 'PhD Comics Open Access Week 2012.ogv', 'Wikimedia Strategy 2030 - Diversity - Interview Walaa Abdelmanaem (AR) - لقاء مع ولاء عبد المنعم.webm', 'Wikimedia Strategy 2030 - Roles & Responsibilities - Interview Zeinab Takouti (AR) - زينب تاكوتي.webm', '1860s arrangement of \"La Borinqueña\", performed by the U.S. Navy Band.oga', 'Russian national anthem performed at the White House in Washington, D.C. (1992).oga', 'The Patriotic Song.ogv', '2019-11-23 commemo-Belfort.webm', 'Himno de Centroamerica.ogg', 'Visit of the Sierpiński octahedron 20191124 5K.webm', 'National anthem of the Comoros, performed by the U.S. Navy Band.oga', 'Ugandan national anthem, performed by the U.S. Navy Band.ogg', 'The Haaf Fishing Station at Fethaland, Shetland.webm', 'ESOcast 211 Light.webm', 'Galaxy Collision Animation- James Webb Space Telescope Science.webm', 'Territorial anthem of the Northern Mariana Islands, performed by the United States Navy Band.oga', 'LL-Q150 (fra)-DSwissK-goulag.wav', 'National anthems of South Africa and the U.S. performed at the White House in 1994.wav', 'Forward with NOAA, instrumental.wav', 'Setup Mozilla Thunderbird for WMDE volunteer mail address.webm', 'Four Ruffles and Flourishes and Hail to the Chief.ogg', 'Pneumonoultramicroscopicsilicovolcanoconiosis2.ogg', \"Owen Jones's voice.ogg\", 'He-Pesach.ogg', '2019-11-30 lancement-illum-Belfort-coup.webm', 'Özlem Demirel (DIE LINKE) - Spitzenkandidatin zur Europawahl 2019 - YouTube.webm', 'Warum Wissen frei sein sollte - YouTube.webm', 'Ghanaian national anthem (instrumental), performed by the United States Navy Band.oga', 'National Anthem of Ghana.ogg', 'National Anthem of Nicaragua by US Navy Band.ogg', 'Territorial anthem of the United States Virgin Islands.oga', 'Airplane evacuation.webm', '\"Sleigh Ride\" performed by the United States Navy Band in December 2012.oga', 'KIFSTrafo 20191207 5K.webm', 'National anthem of Democratic Republic of the Congo, performed by the United States Navy Band.wav', '2019-12-07 inaug-mois-giv-Belfort.webm', 'President Trump Delivers Remarks at CIA Headquarters.webm', 'WikiMOOC - vidéo 12 - Les caractéristiques des sources.webm', 'How to Quit Suppressing Your Pain.webm', \"2 Reasons Why We Don't Know How to Lament.webm\", 'EM 2016 Deutschland - Nordirland Jogis Tagebuch.webm', 'EM 2016 Jogi Löw singt Gomez.webm', 'Ru-чурка.ogg', 'En.Wikipedia-VideoWiki-Chaat.webm', \"Handel - Zadok the Priest, HWV 258 (St Matthew's Concert Choir, Giromella).oga\", 'A Time for Choosing by Ronald Reagan.ogv', 'President Trump Participates in an Expanded Bilateral Meeting with the President of Paraguay.webm', 'Pakistan anthem - United States Navy Band.ogg', '4. Dimension einer Mandelbrot-Menge aus Quaternionen 20191213 5K.webm', 'Human fart.wav', 'WaterTractorBeam.webm', 'Summer 1995 Music scene at beach in Vega Baja, Puerto Rico - Snoop Dogg cameo.ogv', 'Part 6-8- Poetry of Perception.webm', 'Fundamentals of Neuroscience Presents- Small Circuits.webm', 'Nkulunkulu Mnikati wetibusiso temaSwati (instrumental).ogg', 'Die Portale der Mandelbox 5K 20191227 - YouTube.webm', 'Fred Rogers testifies before the Senate Subcommittee on Communications, 1969.ogv', 'East Timorese national anthem.oga', \"Why Boat Refugees Don't Fly! - Factpod 16.webm\", 'Battleship Potemkin.webm', 'Continuously varied JPEG compression for an abdominal CT scan - 1471-2342-12-24-S1.ogv', 'President Trump Delivers a Statement on Iran January 3 2020.webm', \"Don't Iraq Iran! Washington, D.C. anti-war protest, Jan. 4, 2020.webm\", 'Krazy Kat and Ignatz Mouse at the circus .webm', 'WIKITONGUES- Vira speaking Ukrainian.webm', 'Extended column test.webm', 'Romania National Anthem - Desteapta-te Romane.ogg', 'Sanskrit Chanting Guru Stotram.ogg', 'NATO Secretary General Press Point Following NAC Meeting DOD 107573162-5e1670a17bd38.webm', 'Press Briefing with Secretary of State Mike Pompeo and Secretary of the Treasury Steve Mnuchin January 10 2020.webm', 'President Trump Announces Proposed National Environmental Policy Act Regulations.webm', 'Huvudsidan på Wikipedia.webm', 'Greta Thunberg i Bryssel.webm', 'Die Seele der Mandelbox 4K4K - YouTube.webm', 'EssiebonsHowAreYou-Zaïko.ogg', 'Ar-User-Hassan.m.amin-sandbox.webm', 'Unitarian Universalists join the climate strike in Boston -Teaser.webm', 'Unitarian Universalists join the climate strike in Boston- Full Version.webm', 'Milano per il Clima - Global Strike 15-03-2019.webm', 'VoyagetothePlanetofPrehistoricWomen.webm', 'వికీపీడియా-వీడియోవికీ-sandbox.webm', 'Wikipedia-VideoWiki-Diarrhea.webm', 'ବ୍ୟବହାରକାରୀ-Ramjit Tudu-sandbox-ᱣᱤᱠᱤᱯᱤᱰᱤᱭᱟ-ᱵᱷᱤᱰᱤᱭᱳᱣᱤᱠᱤ-ᱮ ᱟᱨ ᱨᱮᱦᱢᱟᱱ.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ଝାନ୍\\u200cସୀ ରାଣୀ.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ଜେ ଆର ଡି ଟାଟା.webm', 'Användarsidan och diskussionssidan på Wikipedia.webm', 'ᱣᱤᱠᱤᱯᱤᱰᱤᱭᱟ-ᱵᱷᱤᱰᱤᱭᱳᱣᱤᱠᱤ-ᱮᱹ ᱟᱨᱹ ᱨᱮᱦᱢᱟᱱ.webm', 'En.Wikipedia-VideoWiki-Price of cigarettes.webm', 'ᱣᱤᱠᱤᱯᱤᱰᱤᱭᱟ-ᱵᱷᱤᱰᱤᱭᱳᱣᱤᱠᱤ-ᱡᱷᱟᱱᱥᱤ ᱨᱟᱹᱱᱤ.webm', 'Welcome back Turkey - KM.webm', '香港确诊两宗新型肺炎个案 机场火车站加强体温筛查.webm', '香港发现首宗高度怀疑新型冠状病毒感染肺炎个案.webm', '卫健委:新型冠状病毒感染肺炎已确诊440例 病毒存在变异可能.webm', '直击武汉发热门诊:多重防护 24小时接诊.webm', '国家卫健委:坚决防止疫情在农村扩散蔓延.webm', '直击机动车禁行后的武汉:街道上几乎看不到车辆.webm', 'Att skriva på Wikipedia – Olivia Wittberg.webm', 'Deltagarportalen och Bybrunnen.webm', 'MediaWiki och inställningar på Wikipedia.webm', 'Projekt och specialsidor på Wikipedia.webm', 'Skapa ett objekt i Wikidata.webm', 'Strukturerad data på Wikimedia Commons.webm', 'Systerprojekten till Wikipedia.webm', 'Vad är Wikidata?.webm', 'Vad är Wikimedia Commons?.webm', 'Malta anthem (instrumental).ogg', 'Savitrichya Online Leki FINAL29Jan2020.webm', 'Internationale-ind.ogg', 'IstiklalMarsi-2013 (version 2).oga', '航拍对比武汉火神山医院施工3天进度.webm', 'Mandelboxflug \"Raumschifflager\" 20200201 5K color.webm', \"Savitrichya Online Leki (Savitri's Online Daughters).webm\", 'En.Wikipedia-VideoWiki-Indian Peace Commission.webm', 'Corn Bunting (Emberiza calandra) (W1CDR0001392 BD1).ogg', 'Lyles.ogg', 'Ayatul Kursi by AbdurRahman Al Sudais.wav', 'Pl-Czesław Miłosz.ogg', 'Supernova.ogv', 'Soyuz MS-10 Launch Abort.webm', 'WikiGap 20180413 CreativeCommons-BYSA.webm', 'FULL REMARKS -- Senator Mitt Romney to vote to convict President Trump on Abuse of Power.webm', 'Phone Story.webm', 'Mary Robinson - Desert Island Discs - 28 July 2013.flac', '東京オータムセッション feat. 瀬戸口優・榎本夏樹・望月蒼太・早坂あかり・芹沢春輝・合田美桜(CV:神谷浩史・戸松遥・梶裕貴・阿澄佳奈・鈴村健一・豊崎愛生).webm', 'Infernal Dance of Kastchei.ogg', 'Schumann-Heink - Danny Boy (Londonderry air) (1917).ogg', 'Operation Castle test.ogv', 'The March (1964 film).webm', 'President Obama on Death of Osama bin Laden no watermark.webm', 'FSF ShoeTool.ogv', 'Saudi Arabian national anthem (fast tempo), performed by the United States Navy Band.oga', 'FSF ShoeTool.ogg', 'Records of telephone conversations in the night of the Chernobyl disaster.ogg', 'President Trump Delivers Remarks Upon Departure 2 18 2020.webm', '2020-02-18 la-culture-en-grand-Belfort.webm', 'Au sommet du Panthéon - Des Racines et des Ailes - YouTube.webm', 'ES-pe - Nicaragua.ogg', 'Dags för en vitamininjektion i ert innovationsarbete.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ଟାଇଫଏଡ ଜ୍ୱର.webm', 'Introduction to Structured Data on Wikimedia Commons.webm', 'Impressionnant château en Franche-Comté - Des Racines et des Ailes - YouTube.webm', 'Daisy Bell sung by Edward M. Favor.ogg', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-କଲେରା.webm', 'The Girl with a Hatbox (1927).webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ମିଳିମିଳା.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ହେପାଟାଇଟିସ ସି.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ଉଚ୍ଚ ରକ୍ତଚାପ.webm', 'Visit of the Mengerbulb I Evolution 20200211 2880p50 color.webm', 'NEFFEX - Make It (Official Video) Fight Back The Collection OUT NOW! - YouTube.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ସେପ୍ସିସ.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ଯକ୍ଷ୍ମା.webm', 'AWB İle Toplu Kategori Ekleme.ogv', 'Its-okay-to-not-like-things.webm', 'National anthem of the Kingdom of Eswatini.ogg', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ଇନ୍\\u200cଫ୍ଲୁଏଞ୍ଜା.webm', 'A Star Is Born (1937).ogv', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ଏଚଆଇଭି-ଏଡସ.webm', 'President Trump and Members of the Coronavirus Task Force Meet with Pharmaceutical Executives.webmhd.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ମୂତ୍ରାଙ୍ଗ ସଂକ୍ରମଣ.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ଆପେଣ୍ଡିସାଇଟିସ.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-କର୍କଟ.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ପେରିଓଡୋଣ୍ଟାଇଟିସ.webm', 'Schwanverhalten am Pfaffenteich 4320p24 20200309 160129.webm', 'President Trump Visits the Centers for Disease Control and Prevention.webmhd.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ପୋଲିଓ.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ପ୍ରମୁଖ ଅବସାଦ ବେମାରୀ.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ସିଜୋଫ୍ରେନିଆ.webm', 'Ukrainian national anthem 1916 (complete).ogg', 'Internet Hall of Fame 2014 Michael Kende interview.webm', '5-15-12- White House Press Briefing.webm', \"2011-12-10 President Obama's Weekly Address.ogv\", 'ITU TELECOM WORLD 2015 INTERVIEWS- Anat Bar-Gera, Chairperson, YooMee Africa AG.webm', 'COVID19 in numbers- R0, the case fatality rate and why we need to flatten the curve.webm', 'Truman Hiroshima Announcement.oga', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ସିସ୍ଟିକ୍ ଫାଇବ୍ରୋସିସ୍.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ମଲ୍ଟିପ୍ଲ ସ୍କ୍ଲେରୋସିସ.webm', 'President Trump Holds a Press Availability.webm', 'WikiGap 2020 Prague.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ମ୍ୟାଲେରିଆ.webm', 'Deaf culture intro.webm', 'LL-Q150 (fra)-WikiLucas00-rotationner.wav', 'Peyote (mescaline) - Do’s and don’ts - Drugslab.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-କରୋନା.webm', 'Senior DOD Official Holds News Conference feb 3 2020 DOD 107640372-1280x720-2765k-5e6fb7fa80e93.webm', 'Secretary of State Pompeo Remarks to the Media 3-5-2020 DOD 107713169-256x144-111k-5e710c578fdc9.webm', 'Radio report to the American people on the Potsdam Conference.mp3', 'Army goes rolling along.ogg', '10 Sexualities To Know About - YouTube.webm', 'President Trump Holds a News Conference March 13 2020.webmhd.webm', 'Members of the Coronavirus Task Force Hold a Press Briefing march 17 2020.webmhd.webm', 'Members of the Coronavirus Task Force Hold a Press Conference March 18 2020.webmhd.webm', 'Ochranná rouška, návod.webm', 'President Trump Participates in a Teleconference with Governors on Coronavirus Response March 19 2020.webmhd.webm', 'President Trump Delivers Remarks February 6 2020.webmhd.webm', 'Members of the Coronavirus Task Force Hold a Press Briefing 3 20 2020.webmhd.webm', 'Explainer Social Distancing During the 1918 Spanish Flu.webmhd.webm', 'The Chaos.flac', 'Beijing Subway Line 4 train announcement from Zhongguancun to Haidianhuangzhuang 20200323.ogg', '3 21 20 Members of the Coronavirus Task Force Hold a Press Briefing.webmhd.webm', '3 22 20 Members of the Coronavirus Task Force Hold a Press Briefing.webmhd.webm', 'Applause.ogg', 'De-Natriumchlorid-article.ogg', '3 16 20 Members of the Coronavirus Task Force Hold a Press Briefing.webm', '3 9 20 Members of the Coronavirus Task Force Hold a Press Briefing.webm', 'ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ସେଲ୍ୟୁଲାଇଟିସ.webm', '20200329 - Elhuyar Fundazioa - Koronabirusa1 saguzarretatik gizakietara.webm', 'Wanna Work Together-.webm', 'Get Creative.webm', 'Creative Commons- Remix.webm', 'SARS-CoV-2 and phylogenetic trees.webm', 'Zero-project - Metamorphosis (HD 1080).webm', 'Zero-project - Appassionata (HD 1080).webm', 'Zero-project and George Loukissas feat. Dia Yiannopoulou - The entrance (HD 1080).webm', 'Zero-project - Silence (HD 1080).webm', 'Anthem of the Republic of Adygea.ogg', 'Zero-project - Agnus Dei (HD 1080).webm', 'Instructievideo Wikidata aanmaken item Irene Houben.webm', 'Manchukuo National Anthem 1933-1942 Chinese Korean.ogg', 'Fr-Simone Veil.ogg', 'Anne Brasseur It is not about countries, it is about protecting citizens!.webm', 'Qualitative-Real-Time-Schlieren-and-Shadowgraph-Imaging-of-Human-Exhaled-Airflows-An-Aid-to-Aerosol-pone.0021392.s002.ogv', 'Wikipedia-VideoWiki-Coronavirus disease 2019.webm', 'Rhof-schuhmacher.ogv', 'KochZyklus 3840p60 20200401 color CRF06 GANZ OHNE TON.webm', 'DOyly Carte 1960 - HMS Pinafore 01 - Overture.ogg', 'DOyly Carte 1960 - HMS Pinafore 04 - The Nightingale.ogg', 'FR-Wikipedia.ogg', 'Wikipedia-VideoWiki-COVID-19.webm', '4 5 20 Members of the Coronavirus Task Force Hold a Press Briefing.webmhd.webm', 'Aix sponsa - Wood Duck XC63109.mp3', 'Strategic National Stockpile A Look Back at the Last 20 Years.webmhd.webm', '4 2 20 Members of the Coronavirus Task Force Hold a Press Briefing.webmhd.webm', '4 6 20 Members of the Coronavirus Task Force Hold a Press Briefing.webmhd.webm', '4 4 20 Members of the Coronavirus Task Force Hold a Press Briefing.webmhd.webm', 'Silbo.ogg', 'Fr.Wikipédia-VideoWiki-Maladie à coronavirus 2019.webm', 'ACA Allertor 125 video.ogv', 'Berkatlah Yang DiPertuan Besar Negeri Sembilan instrumental.ogg', 'Ny och populär.webm', 'Μήνυμα του Πρωθυπουργού Κυριάκου Μητσοτάκη προς τους πολίτες 22 Μαρτίου 2020.webm', 'Ru-да уж.ogg', 'VirgilStructuredData.webm', 'Global Maps of Dryness Help Prepare for Water Use around the Globe.webm', \"NASA Models the Complex Chemistry of Earth's Atmosphere.webm\", 'Using suggested edits module.webm', 'Protest of the Transylvanian National Council in Kolozsvar 22 December 1918.webm', 'Instruktioner Zoom mobil WMSE.ogv', 'WIKITONGUES- Krishna speaking Hindi.webm', 'Instruktioner för Zoom WMSE.ogv', 'En.Wikipedia-VideoWiki-Coronavirus disease 2019.webm', 'En.Wikipedia-VideoWiki-Major depressive disorder.webm', 'En.Wikipedia-VideoWiki-Schizophrenia.webm', 'En.Wikipedia-VideoWiki-HIV-AIDS.webm', 'En.Wikipedia-VideoWiki-Cholera.webm', 'En.Wikipedia-VideoWiki-Cystic fibrosis.webm', 'En.Wikipedia-VideoWiki-Polio.webm', 'En.Wikipedia-VideoWiki-Hypertension.webm', 'En.Wikipedia-VideoWiki-Influenza.webm', 'En.Wikipedia-VideoWiki-Malaria.webm', 'En.Wikipedia-VideoWiki-Multiple sclerosis.webm', 'En.Wikipedia-VideoWiki-Sepsis.webm', 'En.Wikipedia-VideoWiki-Urinary tract infection.webm', 'Goodness Had Nothing to Do With It (1932).webm', 'StructuredDataSearchAndBatchAddDemo.webm', 'Aardappelvijand nr 1 de coloradokever-526506.ogv', 'Annabel Lee.ogg', 'Himno Antioqueño.ogg', 'VIAF e Wikidata.mpg', 'Narrated Distributed Water Balance of the Nile Basin.webm', 'Korky Paul audio intro.mp3', 'Uk.Вікіпедія-Відеовікі-Drones.webm', 'Spaced repetition.webm', 'Émission WN-radio 2009-07-12.ogg', 'Sv.Wikipedia-VideoWiki-Covid-19.webm', 'What it Means to be NIOSH-Approved - A look into N95 Certification Testing.webm', 'أداة الرد في صفحات النقاش على ويكيبيديا.webm', 'De-Fucking.wav', 'En.Wikipedia-VideoWiki-Incremental Encoder.webm', 'Prime Minister Justin Trudeau’s remarks announcing a ban on assault-style firearms in Canada.webm', 'Chuck Jones - Merrie Melodies - Fox Pop (1942).webm', 'Hungarian national anthem, performed by the United States Navy Band (1997 arrangement).mp3', 'Sv.Wikipedia-VideoWiki-Bollnäs kommun.webm', 'Arianespace TV Customer - VV15 with FalconEye1.webm', 'Arianespace - VV15 - Mission Presentaton.webm', 'Verkeerschaos in Rotterdam ten einde officiële heropening Coolsingel.ogv', 'Ru-презрение.ogg', 'En-ca-Quebec.oga', 'COVID-19 L\\'OMS met en garde sur les \"passeports immunitaires\" - Wikinews Radio.oga', 'United States Navy Band - United Republic.ogg', 'Arianespace TV - VA252 Launch Sequence.webm', 'Brasil Hoje n. 120 (1975) - Reportagem da Agência Nacional sobre a cidade de Boa Vista, Roraima.webm', 'COVID-19 L\\'OMS met en garde sur les \"passeprts immunitaires\" - Wikinews Radio.ogg', 'COVID-19 L\\'OMS met en garde sur les \"passeports immunitaires\" - Wikinews Radio.ogg', 'Grc-θεός.ogg', '\"Fans Recall Kobe Bryant as an Inspiration\" (January 2020), VOA News.webm', 'Auvi-Q Injection.webm', 'Amour.mid', 'Belarusian national anthem, performed by the United States Navy Band.mp3', 'Video 1 - Washington Law.webm', 'We Are All Part of the Solution.webm', 'Video 2 - Consent.webm', 'Video 3 - Predatory Behavior.webm', 'Video 4 - Myths and Facts.webm', 'Video 5 - Personal Empowerment.webm', \"Video 6 - Stand Up Don't Stand By.webm\", 'Video 7 - Take Action.webm', 'Minnesota State to Vote on Change to Sexual Consent Policy.webm', 'Sv.Wikipedia-VideoWiki-Selma Lagerlöf.webm', 'Marcha Oficial de All Boys.ogg', 'Suggested edits module.webm', 'Old-bell-system-intercept-recording.ogg', 'Tutoriel 18 Le papillon en ballon.webm', 'Or.ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ପେରିଓଡୋଣ୍ଟାଇଟିସ.webm', 'Or.ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ଗାଉଟ.webm', 'From spit to DNA-sample.ogg', 'Fra spytprøve til DNA-kode.ogg', 'Från saliv till DNA-kod.ogg', '从有唾液DNA读数.ogg', 'De la saliva al código de ADN.ogg', 'Fruit Salad.webmhd.webm', 'Channel 2 - Japan.webm', 'De la saliva al código de ADN.ogv', '\"Lijepa nasa domovino\", 1918.ogg', 'Fra spytprøve til DNA-kode.ogv', '从有唾液DNA读数.ogv', 'From spit to DNA-sample.ogv', 'Från saliv till DNA-kod.ogv', 'Rebuilding a Species.ogv', 'From spit to DNA-sample.webm', 'Fra spytprøve til DNA-kode.webm', 'De la saliva al código de ADN.webm', 'Från saliv till DNA-kod.webm', '从有唾液DNA读数.webm', 'Donald Trump - Hydroxychlroquine \"I Happen to Be Taking It\".webm', 'The Goldbrick.ogv', 'The projection mapping on the Ukrainian Government Building for the Day of Remembrance for the victims of the Crimean Tatar genocide.webm', 'Solar System explained by simpleshow foundation.webm', 'School voor kuikenseksers Weeknummer 51-10 - Open Beelden - 62966.ogv', 'Who writes Wikipedia. Video by WMUA.webm', 'Zbigniew Stonoga - Uśmiechnij się.wav', 'Lagu Bangsa Johor instrumental.ogg', 'Hino Nacional da Republica Portuguesa.ogg', 'Experime1940 edit.webm', '0769 Halloween Party 18 35 20 00 3mb.webm', 'Toccata et Fugue BWV565.ogg', 'Wikimedia Summit 2020 Grant Report, Video 1.webm', 'Wikimedia Summit 2020 Grant Report, Video 2a.webm', 'Wikimedia Summit 2020 Grant Report, Video 3.webm', 'Wikimedia Summit 2020 Grant Report, Video 4.webm', '1968-04-04 RFK on MLK.ogg', 'Vera Drew introduction.wav', 'Vera Drew introduction.ogg', 'Vera Drew introduction.mp3', 'President Trump Holds a News Conference 29 may 2020 focus on WHO.webm', 'De-Übernahmen.ogg', '1957-06-03 British H-Bomb (claimed).ogv', 'WIKITONGUES- Dang speaking Thai.webm', 'Daisy (1964).webm', 'Dutch national anthem performed by the United States Navy Band.mp3', 'WIKITONGUES- Aydyn speaking Tuvan.webm', 'Jan Morgenstern - I move On.ogg', 'Sit-in Against Racial Injustice, Downtown Indianapolis (2020-06-06).webm', 'Voa english signing on with yankee doodle.ogg', 'What is Consensus Decision Making - Seeds For Change.webm', 'How to do consensus making - Seeds For Change.webm', 'How to make consensus genuinely democratic - Seeds For Change.webm', 'NL-Alert animatie.webm', 'Import books from Internet Archive to Wikisource.ogv', 'Wie Fasten den Stoffwechsel verändert (CC BY 4.0).webm', '新型コロナウイルスへの警戒を呼び掛ける新宿区の客引き行為等防止指導員.webm', '200428 184 15300559 fasten stoffwechsel CC tex 3328k p15v15.webm', 'Rekonstruktion der Stadt Köln im 17. Jahrhundert.webm', 'Mayday1.ogg', '200428 132 0055303728 Rechtswesen Antikes Rom CC tex 3328k p15v15.webm', 'En.Wikipedia-VideoWiki-WikiJournal PDF formatting.webm', 'Gu.વિકિપીડિયા-વિડિયોવિકિ-વિક્રમ સારાભાઈ.webm', 'Strike (1925).webm', 'Gibt es einen Fahrstuhl in den Weltraum (CC BY 4.0).webm', 'Hadrianswall und Limes.webm', 'Clean and Disinfect Home if someone has COVID-19.webm', 'Newtons Idee der Schwerkraft.webm', 'Die Temperaturkurve der Erde (ZDF, Terra X) 720p HD 50FPS - redub NL.webm', 'Klima-Archiv Eislabor (ZDF, Terra X) 720p HD 50FPS - redub NL.webm', 'Rekonstruktion der Stadt Köln im 17. Jahrhundert - redub NL.webm', 'Wie Fasten den Stoffwechsel verändert (CC BY 4.0) - redub NL.webm', 'Gibt es einen Fahrstuhl in den Weltraum (CC BY 4.0) - redub NL.webm', 'Hadrianswall und Limes - redub NL.webm', 'Yue-heung1gong2.ogg', 'Das Straßennetz im antiken Rom (CC BY 4.0).webm', 'Häufig gestellte Fragen zur Corona-Warn-App (FAQ) - YouTube.webm', 'Angkor - Zentrum des Königreichs der Khmer (CC BY-SA 4.0).webm', 'En-us-Juneteenth.mp3', 'En-us-Abigail.mp3', \"En-us-be gathered to one's fathers.mp3\", 'En-us-carcinization.mp3', 'En-us-constellationally.mp3', 'En-us-could care less.mp3', 'En-us-ebullience.mp3', 'En-us-freedom ride.mp3', 'En-us-hodiernal.mp3', 'En-us-nibling.mp3', 'En-us-overfired.mp3', 'En-us-rubbernecker.mp3', 'En-us-stiff-lipped.mp3', 'Freizeit im antiken Rom (CC BY 4.0).webm', 'So wohnten die Menschen im antiken Rom (CC BY 4.0).webm', 'Wie die Römer Recht gesprochen haben(CC BY 4.0).webm', 'Demokratie in Athen (CC BY 4.0).webm', 'Die Gründung Bagdads im 8. Jahrhundert (CC BY-SA 4.0).webm', 'Karthago, Phönizische Großstadt (CC BY-SA 4.0).webm', 'Persepolis, Hauptstadt Persiens (CC BY-SA 4.0).webm', 'Die Himmelsscheibe von Nebra (CC BY 4.0) .webm', 'Educación y Derechos Humanos 2020 WMAR.webm', 'Catalhöyük, erste Großsiedlung der Menschheit (CC by 4.0).webm', 'Petra, Hauptstadt der Nabatäer (CC BY-SA 4.0).webm', 'Jerusalem - Stadt des Glaubens (CC BY-SA 4.0).webm', 'Wie entstehen Fossilien (CC by 4.0).webm', 'Uruk, erste Metropole der Weltgeschichte (CC BY 4.0).webm', 'Palenque - Ruinenstadt der Maya (CC BY-SA 4.0).webm', 'So funktionieren Geysire (CC BY 4.0).webm', 'Die Aachener Kaiserpfalz (CC BY-SA 4.0).webm', '2020-06-23 cine-debat-Bavilliers.webm', 'Die Weltkarte von Mercator.webm', 'Microwave oven.ogg', 'Perücken als sozialer Status (CC BY 4.0) (720p).webm', 'Leben in Frankfurt am Main im Mittelalter (CC BY 4.0).webm', 'Lalibela - Monolithische Felsenkirchen (CC BY-SA 4.0) .webm', 'So wurde die Berliner Mauer gebaut (CC BY 4.0).webm', 'So wurde das KZ Auschwitz gebaut (CC BY 4.0).webm', 'Popeye the Sailor Meets Sindbad the Sailor (1936).webm', 'Kunst in der Steinzeit.webm', 'Mekka, Geburtsort des Islam (CC BY-SA 4.0).webm', 'Bahnbrechende Entdeckungen der Antike (CC BY 4.0).webm', 'Geschichte der Hauptstadt Berlin (CC BY-SA 4.0).webm', 'Chief Erika Shields, Atlanta Police Department.webm', 'Speere - älteste Waffen der Menschen (CC BY 4.0) .webm', 'Taj Mahal - Mausoleum der Liebe (CC BY-SA 4.0).webm', 'Wie die Germanen gewohnt haben (CC BY-SA 4.0).webm', 'Woran glaubten die Germanen (CC BY-SA 4.0).webm', 'Within Our Gates HQ.webm', 'May Irwin Kiss.webm', 'Cedar Basket Weaving with Brenda Crabtree - Urban Access Project.webm', 'President Donald Trump suggests measures to treat COVID-19 during Coronavirus Task Force press briefing.webm', 'World Map by Geradus Mercator CC-By.mpg', '237. Bez wodę koniczki bez wodę.mid', 'Y2mate.com - Catullus 1 ECnDusoaa9U 1080p.webm', 'Catullus 1 latine.webm', 'Catullus 4.webm', 'George HW Bush Americans with Disabilities Act.ogg', 'Ru-муда́к.ogg', 'ZiVideo014 Principles of Lock-in Master.webm', 'Wie entstehen Fossilien (CC by 4.0) redub EO.webm', 'SpanishPod newbie lesson A0006 line 3.ogg', 'Aldi - Indonesian language - Bible Verse John 3-16.ogg', '\"O Tannenbaum\".ogg', 'President Trump Delivers Remarks at Spirit of America Showcase.webm', 'President Trump participates in Spirit of America.webm', '\"Berlin Wall\" Speech - President Reagan\\'s Address at the Brandenburg Gate - 6-12-87.webm', '\"The Star-Spangled Banner\" performed by the United States Navy Band.mp3', 'Petra, Hauptstadt der Nabatäer (CC BY-SA 4.0) redub EO.webm', '2020-07-10 conf-hydrogene-Belfort.webm', '2020-07-16 patrouille-de-France-HNFC.webm', 'China - CCTV Sign-on Rendition.ogg', '2020-07-18 tdf-Lure.webm', 'So funktionieren Geysire (CC BY 4.0) redub EO.webm', 'Long Leg Cast Application - by GHO 2015-04-13.webm', \"My Country 'Tis Of Thee.ogg\", 'Or.ଉଇକିପିଡ଼ିଆ-ଭିଡିଓୱିକି-ମ୍ୟାଲେରିଆ.webm', 'Dr Jerome Adams - How to Make Your Own Face Covering.webm', 'US Social Media Giants Pledge to Combat Foreign Disinformation 2017.webm', 'Uređivanje Vikipedije - Kako komunicirati sa korisnicima.webm', '12 Angry Men (1957) - Trailer.webm', 'Fr-mandale.ogg', 'Die Weltkarte von Mercator redub EO.webm', '«Давайте снова сделаем выборы праздником!» Светлана Тихановская в Бобруйске.webm', 'The U.S. Air Force, 1998.ogg', 'NEFFEX - Cold ️(Copyright Free).webm', 'دخان انفجار بيروت انتشر في كل سماء لبنان.webm', 'Food for Thought - Delivering meals during a global pandemic - Seattle Public Schools TV.webm', 'Kiel sahara polvo nutras la amazonan arbaron.webm', 'WhatsApp Ptt 2020-08-06 at 18.56.24.opus', 'WhatsApp Ptt 2020-08-06 at 18.56.24.ogg', 'Manchukuo National Anthem 1942.ogg', 'Sv.Wikipedia-VideoWiki-Wikipedia-Veckans tävling-Videosprint 2.webm', 'En.Wikipedia-VideoWiki-Sandbox.webm', 'Who did that poo.webm', \"2012-04-07 President Obama's Weekly Address.ogv\", 'Introduction to Special Investigate.webm', '13565 Bennu Nightingale MASTER.webm', 'Trajo.webm', 'La origino de la oro.webm', 'Euskal Wikilarien hezkuntza programa- hiru urte.webm', 'Brian Dunning voice.ogg', 'Pala-blua-punkto-scivolemo.webm', 'Kishony lab-The Evolution of Bacteria on a Mega-Plate.webm', 'COVID-19 burials on Hart Island.webm', 'Eta porketo.webm', 'Indonesia declaration of independence 1945.ogg', 'Klima-Archiv Eislabor (ZDF, Terra X) 720p HD 50FPS cy.webm', 'Klimafaktor Sonne (ZDF, Terra X) 720p HD 50FPS cy.webm', '三亞灣日落.眺望鳳凰島.webm', '維基語音新聞-新聞簡訊-2020-08-14-普通話.ogg', 'Lezard by David Revoy.ogv', 'Wikimania 2017 Women in Red presentation.webm', \"Tyndalls's bar breaker experiment.mpg\", 'Planning an Academic Edit-a-thon (2).webm', '\"Home Means Nevada\" - Regional anthem of Nevada.ogg', 'Planning Academic Edit-a-thons.webm', 'Barack Obama Town Hall in Costa Mesa CA on 18 March 2009.webm', 'Wikipedia – Bli med du også (WMNO).ogv', 'Life cycle of sea lamprey (Petromyzon marinus).webm', 'Ru-пиздец.ogg', '維基語音新聞-新聞簡訊-2020-08-14-粵語.ogg', 'Linus-linux.ogg', '9 16 20 President Trump Holds a News Conference.webm', '9 18 20 President Trump Holds a News Conference.webm', \"Fantômas - À l'ombre de la guillotine (1913).webm\", '9 23 20 President Trump Holds a News Conference.webm', 'Luc tuymans33424762.ogv', 'Nixon Resign.ogg', 'Phabricator - Basics and Environment.webm', 'Phabricator - Individual Productivity.webm', 'Phabricator - Projects and Workboards.webm', 'Phabricator - Searching and Listing Tasks.webm', 'Phabricator - Tasks.webm', 'Petra De Sutter - GEF - The EP Goes Green.webm', 'National Anthem of Guyana.ogg', 'About Lulu and Nana- Twin Girls Born Healthy After Gene Surgery As Single-Cell Embryos.webm', 'De-Baden Württemberg.ogg', 'Altnazajantilopoj-scivolemo-zdf.webm', 'Vojagi al la suno mirinde malfacilas-scivolemo-nasa.webm', 'Scivolemo - Bluaj truoj en la Bahamoj.webm', 'Kio estas plantozigo - Scivolemo - NOAA.webm', 'Kial la vento blovas - Scivolemo - NOAA.webm', 'Kiel oni hejmigis katojn - Scivolemo.webm', 'Videoauswahl Trogen 20201002 4320p24 mit Ton.webm', 'Itinera mapo de romia epoko - La Mapo de Peutinger - scivolemo - zdf.webm', 'Surinamese national anthem, performed by the U.S. Navy Band.ogg', 'WADP Intro.webm', 'WADP Search Tool.webm', 'WADP Submit Activities Report.webm', 'Sv-Ingvar Kamprad.ogg', 'WADP Submit Financial Report.webm', 'WADP View & update existing data.webm', 'WIKITONGUES- Eva speaking Dutch.webm', 'How to protect yourself against COVID-19 (1080p 25fps AV1-128kbit AAC).webm', 'Ru-Pushkin.ogg', 'Novel coronavirus (2019-nCoV).webm', 'Pluvgutoj-scivolemo-zdf.webm', 'Als ich tot war (1916).webm', 'Visualisierung der Liste der Berge nach Dominanz Stand Oktober 2020.webm', 'Fart.ogg', 'WIKITONGUES- Mirela speaking Bosnian.webm', 'WIKITONGUES- Gereon speaking German.webm', 'Seniorské WikiMěsto Prachatice 2020.webm', 'Expedition 63 Change of Command Ceremony.webm', 'Flug durch die Menger-Schwamm-Welt in VR (360 Grad) und 8K OHNE TON 4320p50.webm', 'French parliament votes for same-sex marriage.ogv', 'OSIRIS-REx Animation.webm', 'Tour of Asteroid Bennu.webm', 'Voiced alveolar sibilant affricate.oga', 'How to break the chains of transmission (1080p 25fps H264-128kbit AAC).webm', 'How to wear a fabric mask safely (1080p 25fps H264-128kbit AAC).webm', 'En.Wikipedia-VideoWiki-Amphitheatre of El Jem.webm', 'Stela speaking the Esperanto language.webm', 'Stromatolitoj - Scivolemo -ZDF.webm', 'Pop Goes the Weasel.ogg', 'Cook County, Illinois v. Chad F. Wolf 2020-02-26.webm', 'Ajay Jadeja.ogg', 'TheLittleShopOfHorrors1960.webmhd.webm', 'Douwe Draaisma - FY voice.ogg', 'Typing - Model M 1986.ogg', 'Supercalifragilisticexpialidocious.ogg', 'How to make a wikilink.webm', 'Ouverture du procès de Nuremberg.webm', 'Wikidata-objekt-svenska.webm', 'En-au-Canberra-ACT.ogg', 'Donald Trump Drinks Disinfectant.webm', 'Kopplingssprint.webm', 'Ru-мёд.ogg', 'Series of Tubes - Senator Ted Stevens.ogg', 'Зарядка для детей под музыку. Солнышко лучистое.webm', 'Ru-мать.ogg', 'Ru-волк.ogg', 'Медведь (шрек).webm', 'Шалтай-Болтай (Потомство человечества).webm', 'Ru-эстонский.ogg', 'LL-Q150 (fra)-LoquaxFR-pfft.wav', 'LL-Q150 (fra)-Jules78120-pfft.wav', 'А.С.Пушкин - Я Вас любил, любовь ещё быть может.ogg', 'WIKITONGUES- Bryan speaking French and English.webm', 'WIKITONGUES- Candy speaking Malagasy.webm', 'Zaeem speaking Pashto.MTS.webm', 'WIKITONGUES- Azim speaking Kyrgyz.webm', \"IFLA's Wikicite - Jason Evans and Simon Cobb.webm\", \"IFLA's Wikicite - Wikidata and Digital Transformation in Libraries with Jason Evans and Simon Cobb.webm\", 'Bridge Above - 20 Years of the International Space Station.webm', 'Chuck Jones - Merrie Melodies - Fox Pop (1942) (restored version).webm', 'JTF-Sulu Operation against ASG Boat - Nov. 4, 2020.webm', 'WIKITONGUES- Daniel speaking Farsi.webm', 'WIKITONGUES- Michael speaking Khmer.webm', 'Give Me Women, Wine and Snuff.ogg', 'Crew-1 for All.webm', 'SpaceX Crew-1 Launch.webm', 'Movement Strategy Global Conversations.webm', 'Movement Strategy Global Conversations', 'WikiJournal PDF formatting.webm', 'Ignore all rules.ogg', 'Spartacus (1960) - Trailer.webm', 'Vdubtestrgbcube4secs ifps12fr12 q10.ogv', 'Athanasios Lafazanidis and zero-project - Omega report (HD 1080).webm', 'MarcoPolo.flac', 'Tamo Daleko.ogg', 'Karin Nilsson, ArkDes, om kollektiv intelligens och vikten av Wikidata.webm', 'Frankfurter Paulskirche.webm', 'Yabaniy es-sahara SADR anthem.ogg', 'Remarks from Kaarel Vaidla, 21-11-2020.webm', 'Remarks from Katherine Maher, 22-11-2020 a.webm', 'Ru-жизнь.ogg', 'WIKITONGUES Charles speaking Linhainese 吴语临海方言.webm', 'WIKITONGUES- Ivy speaking Shanghainese.webm', 'ABC Black Box.ogv', 'Kio estas grega imuneco- scivolemo-zdf.webm', 'Parolkapablo de la neandertala homo-scivolemo-zdf.webm', 'Palenke Majaa ruina urbo-scivolemo-zdf.webm', 'Ru-гитара 2.ogg', 'Pl-łza.ogg', 'Ru-крот.ogg', 'W morse code.ogg', 'WIKITONGUES- Changjiu and Chaofen speaking Guiyangese.webm', 'LL-Q150 (fra)-Jules78120-de facto.wav', 'Ekesto de la Alpoj - zdf - scivolemo.webm', 'MEP Schaake Speaks for LGBTIQ Rights for Iran.webm', 'Consonants mnw.webm', 'Nad Tatrou sa blýska Tanpa Nyanyian.ogg', 'Kde domov můj dan Nad Tatrou sa blýska orkestra.ogg', 'Cymbały huculskie.webm', 'Science Summary for October 2020.webm', 'WIKITONGUES- Matt speaking Yiddish.webm', 'The Magic Cloak of Oz (1914).webm', 'Почта Деда Мороза. 21.12.18.ogv', 'Polish letter U.ogg', 'सङ्घीय लोकतान्त्रिक गणतन्त्र नेपाल.ogg', 'Mnw-ကောန်ၚာ်တြုံ.oga', 'Grc-Iliad 1.1.wav', 'Mnw-ဗျဉ်.oga', 'Ru-пиздобол.ogg', 'Kiel spuri sunajn ciklojn.webm', 'Introduction to templates on Wikipedia.webm', 'Expositie Heracles in het Stadsmuseum.webm', 'Fr-Paris--relais électromécanique.ogg', 'It-Antonio Vivaldi.ogg', 'পথের পাঁচালী - বাংলা চলচ্চিত্র (১৯৫৫).webm', 'Collegium Vocale - Adeste fideles.ogg', 'Greta Thunberg- World Economic Forum (Davos).webm', \"IFLA's Wikicite - Wikidata and Wikisource with Nicolas Vigneron.webm\", \"IFLA's Wikicite - An introduction to Wikibase and Wikidata with Barbara Fischer and Sarah Hartmann.webm\", \"IFLA's Wikicite - Mind the Gap! How Wikidata complements and completes metadata work with Ahava Cohen.webm\", \"IFLA's Wikicite - Critical Issues in Knowledge Equity with Stacy Allison-Cassin and Karim Tharani.webm\", \"IFLA's Wikicite - Scholarly Profiles, Wikidata and Academic Libraries with Meg Wacha.webm\", 'En-us-diasporal.mp3', 'Z is for zebra.ogg', 'Wikimedia & Educação 2020 - Oficina II (Wiki Movimento Brasil).webm', 'Wikimedia & Educação 2020 - Oficina V (Wiki Movimento Brasil).webm', 'SSA impersonation scam robocall example 2.wav', 'LL-Q150 (fra)-Fabricio Cardenas (Culex)-Emmanuel Macron.wav', 'Science Summary for November 2020.webm', 'Jailhouse Rock (1957) Trailer.ogg', 'Ru-она.ogg', 'Ru-он.ogg', 'Badanie wlasciwosci bialek.webm', 'Elektryzowanie cial przez tarcie i dotyk.webm', '\"Socialism\" vs \"Communism\" - Etymosemanticology.webm', 'The Linguistics of AAVE ( African-American Vernacular English ).webm', 'Are Languages Getting Simpler-.webm', 'What Even Is a Language-.webm', 'Untranslatability and Japanese Pragmatics.webm', 'Proto-Indo-European Culture.webm', 'Why People Make Their Own Languages.webm', 'Manolo Sanchez and Richard Nixon.ogg', 'Rownania z dodawaniem.webm', 'Rozwiazywanie rownan z dodawaniem.webm', 'Rownania z odejmowaniem.webm', 'Rozwiazywanie prostych rownan.webm', 'Rozwiazywanie prostych rownan zadania z trescia.webm', 'Dozens of Individuals Indicted in Multimillion-Dollar Indian Call Center Scam Targeting U.S. Victims.webm', 'Wikimedia & Educação 2020 - Oficina VI (Wiki Movimento Brasil).webm', 'Himnusz 1920s.ogg', 'Wikimedia & Educação 2020 - Oficina III (Wiki Movimento Brasil).webm', 'Wikimedia & Educação 2020 - Oficina IV (Wiki Movimento Brasil).webm', 'Wikimedia & Educação 2020 - Oficina VII (Wiki Movimento Brasil).webm', 'Lagu Negeri Sarawak - Ibu Pertiwiku (Instrumental).ogg', 'Ru-один.ogg', 'Costa Magica, Funchal 16 de Agosto 2016.webm', 'Lagu Negeri Sabah - Sabah Tanah Airku (Instrumental).ogg', 'Wie funktioniert das politische System im Iran.webm', 'Why Hijab in Islam - Mufti Menk.webm', \"Please don't leave Islam.webm\", 'How to Convert to ISLAM and How to Become MUSLIM-.webm', 'Google Declares New Caliph of Islam .webm', 'Islam is the true religion (proof).webm', '0134 - Calheta.webm', 'Perlis State Anthem.ogg', 'Melaka Maju Jaya.oga', 'Wikimedia & Educação 2020 - Oficina I (Wiki Movimento Brasil).webm', 'Lagu Negeri Perak - Allah Lanjutkan Usia Sultan (Instrumental).ogg', 'Allah Selamatkan Sultan Mahkota instrumental.ogg', 'Lagu Negeri Kelantan - Selamat Sultan (Instrumental).ogg', 'Lagu Negeri Pulau Pinang - Untuk Negeri Kita (Instrumental).ogg', 'Lagu Wilayah Persekutuan - Maju dan Sejahtera ( Instrumental ).ogg', 'Lagu Negeri Terengganu - Selamat Sultan (Instrumental).ogg', 'LL-Q150 (fra)-LoquaxFR-couque au chocolat.wav', 'USS Warp Ship Tour & Introduction.webm', 'Sailor in the Spotlight.webm', '-1 Selling everything and moving onto a sail boat (like Wicked salty) - Our Story - Sailing Sisu.webm', '-17t Spares for a sailboat trip to Circumnavigate - Sailing Sisu catamaran in Cape Town South Africa.webm', 'Jailhouse Rock (1957) Trailer.ogv', 'Superman 2 Mechanical Monsters 1941.ogv', 'MacinTalk 1 demo.flac', 'Phone fraud Fake Sberbank representatives 2020.ogg', 'MacinTalk 2 demo.flac', 'Construindo uma cama de pregos-bed of nails Zelf een Spijkerbed maken!.webm', 'Ru-сказка.ogg', 'Trump Reluctance To Accept Election Results Campaign Rally.webm', 'Trump remarks on Capitol storming, January 6 2021 0417PM EST.webm', 'Trump speech 1-6-2021.webm', 'Jaipur MW.ogg', 'US Senate goes into recess after protestors breach the Capitol.webm', 'Free Knowledge – Nuovo Teatro Sanità teaser.mpg', 'A Message from President Donald J. Trump Jan 7 2021.webm', 'GOP rep Adam Kinzinger calling for Trump to be removed via 25th amendment.webm', '1 7 21 Press Secretary Kayleigh McEnany Holds a Press Briefing.webm', 'President Trump Gives a Statement on the Infrastructure Discussion.webm', 'A Message from President Donald J. Trump.webm', 'Rally simple.mid', 'Mnw-ညးဖျဵုဂှ် ဒှ်ညးထေဲ.oga', 'Mnw-ညးဖျဵုဂှ် ဒှ်ညးစိုတ်ဂၠေံ.oga', 'Meet Artemis Team Member Kate Rubins.webm', 'Meet Artemis Team Member Raja Chari.webm', 'Meet Artemis Team Member Christina Koch.webm', 'Meet Artemis Team Member Jonny Kim.webm', 'Meet Artemis Team Member Jessica Watkins.webm', 'Meet Artemis Team Member Nicole Mann.webm', 'Meet Artemis Team Member Scott Tingle.webm', 'Meet Artemis Team Member Stephanie Wilson.webm', 'Meet the Artemis Team.webm', 'Meet Artemis Team Member Jasmin Moghbeli.webm', 'Meet Artemis Team Member Matthew Dominick.webm', 'Meet Artemis Team Member Frank Rubio.webm', 'Meet Artemis Team Member Victor Glover.webm', 'Meet Artemis Team Member Kjell Lindgren.webm', 'Meet Artemis Team Member Kayla Barron.webm', 'Meet Artemis Team Member Woody Hoburg.webm', 'Meet Artemis Team Member Jessica Meir.webm', 'Meet Artemis Team Member Joe Acaba.webm', 'Ru-ножницы.ogg', 'KM Deutsch WP20 bday message.webm', 'KM WP20 Deutsch - best wishes.webm', 'KM WP20 bday message Russian.webm', 'KM WP20 bday message francais.webm', 'KM WP20 bday message espanol.webm', 'KM WP20 bday message Chinese.webm', 'KM WP20 bday message Arabic.webm', 'Dag-Zilima.ogg', 'LL-Q9217 (tha)-Patsagorn Y.-อิเล็กตรอน.wav', \"Katherine Maher's message on the occasion of Wikipedia 20.webm\", 'Wikipedia 20 marks in Mon.webm', 'Avslutning - SMV - SVA BB 5309 17.wav', 'FREYA-The-power-of-PIDs-V05-1.webm', 'Jane Hutt ASau Y Dirprwy Weinidog a’r Prif Chwip Jane Hutt MS Deputy Minister and Chief Whip.webm', \"Cynhadledd i'r Wasg Press Conference - 16.11.20.webm\", 'En-us-Asia.ogg', 'Processo alla rete – Teatro delle formiche teaser.mpg', 'Happy 20th birthday, Wikipedia! (English subtitles).webm', 'Welsh Government video - Rhod Gilbert - CaruCymruCaruBlas - LoveWalesLoveTaste.webm', \"Cynhadledd i'r wasg gyda'r Prif Weinidog Mark Drakeford - Press conference with the First Minister.webm\", 'Who Owns The Content.webm', \"First Minister of Wales' statement on coronavirus lockdown extension.webm\", 'Mark Drakeford, First Minister of Wales on new coronavirus measures - 23 Mar 2020.webm', 'Es-Primera Transmición Radial en Argentina.ogg', 'Operation Warp Speed Leaders Hold Briefing on Vaccine.webm', 'Lcd-engineerguy.ogv', 'Bulonjaprelego.ogg', 'Ending physical punishment in Wales - English version.webm', 'Rhoi terfyn ar gosbi corfforol yng Nghymru.webm', '5 December Global Conversations lightning talks - Improve Uploader for Alt-Texts.webm', 'NASA Holds Briefing to Discuss Status of the Hot Fire Green Run Test.webm', 'Regional anthem of Mari El Mari.oga', 'Nl-Nederland.ogg', 'Science Summary for December 2020.webm', 'Why diversity is important in local government.webm', 'En.Wikipedia-VideoWiki-Diarrhea.webm', 'Inno Nazionale della Repubblica.ogg', 'Yankee Doodle (choral).ogg', 'WIKITONGUES- Opoka speaking Acholi.webm', 'Natural Resource Management in Wales - 5 May 2015.webm', 'WIKITONGUES- La speaking Lao.webm', 'Gareth Bale - Teilyngwr y Wobr Dewi Sant am Chwaraeon St David Award Finalist for Sport.webm', 'The Lobster Pot - a shellfish company from Wales - 2016.webm', 'Welsh Government video - Apprenticeships - Saima, 2016.webm', 'Welsh Government First Minister Carwyn Jones Aberfan Statement 2016.webm', 'The One-Year Crew returns on This Week @NASA – March 4, 2016.webm', 'Trade & Invest Wales - Aston Martin Case Study.webm', 'De-Referenzaktes.ogg', 'GT United Kingdom of Great Britain and Northern Ireland.ogg', 'Vaughan Gething AM addresses the Kidney Research UK Annual Fellows day.webm', '2021-01-30 gafamazone-Fontaine-404p.webm', 'Wikipedia Edukacja Emis Fin.webm', 'Nieuws uit Suriname, Emancipatiedag Weeknummer 63-29 - Open Beelden - 58608.ogv', 'House Session, Part 1 (January 13, 2021).webm', 'Coming Out As Trans - A Little Public Statement.webm', 'Senate Impeachment Trial, Swearing-in and Rules.webm', 'WikiversityReports1.ogg', 'Press Briefing by Press Secretary Jen Psaki, 2021-01-27-21 re Gamestop short squeeze.webm', 'Introduccion ICCAL.webm', 'Senate Session (January 25, 2021).webm', 'Katrin Langensiepen - GEF - The EP Goes Green.webm', 'Hannah Neumann - GEF - The EP Goes Green.webm', \"Entrevue de l'expédition Tapiskwan sipi 2019 - 02.webm\", \"President Clinton's Remarks on Death of Princess Diana (1997).webm\", 'European response to the coronavirus pandemic.webm', 'WikiversityReports1.ogv', 'Cadet Rousselle.ogg', 'Wikipedia Znasz Emis.webm', 'Wikipedia Edytuj Emis Fin.webm', 'Wikipedia Ocean Multimediow Emis.webm', 'Wikipedia Oaza Emis.webm', 'RAF Sinks Tirpitz.ogg', 'RAF Sinks Tirpitz.ogv', 'US Spacewalk 70 Animation.webm', 'US Spacewalk 69 Animation.webm', 'Educación y Movimiento Wikimedia en América Latina.webm', 'Video Educacion Regional (WMAR).webm', 'Wikipedia User Name.webm', 'AFSK 1200 baud.ogg', 'Ru-солнце.ogg', '1938 recording of \"Die Volkslied van Transvaal\" by the ASAF Choir.oga', 'De kie venas la sanmasko - scivolemo - zdf.webm', 'Leviĝantaj Akvoj Malekvilibritaj glaciaj tavoloj - scivolemo - nasa.webm', 'Ĉu latinidaj lingvoj iĝas pli genroneŭtralaj - scivolemo.webm', 'Flugantaj akrobatoj - scivolemo.webm', 'Socia distancado nek nova nek nurhoma - scivolemo.webm', 'La grandeco de la sunsistemo scivolemo - zdf.webm', 'Kiel unikaj neĝeroj povas havi ĝemelojn - scivolemo.webm', 'Ĉiamfrosta grundo - scivolemo - zdf.webm', 'Kiel atingi Marson - scivolemo - nasa.webm', 'Danestan.ogg', 'Aidoso kaj HIV - scivolemo - simpleshow foundation.webm', 'Merville, Parañaque.wav', 'Wikipedia basics - Talk pages.ogv', 'Straßenbahn Halberstadt komplett.webm', 'Mentyvamenvocal.ogg', '291st-remagen.webm', 'Operation Wandering Soul Vietnam War (Ghost Tape Number 10) - Record by US military.ogg', 'Create a Wikipedia article using Visual Editor.webm', 'Chuck Jones - Merrie Melodies - Fox Pop (1942) (restored HD version).webm', 'Popeye the Sailor Meets Sindbad the Sailor.webm', 'Wolfgang Amadeus Mozart (1756-1791) - Quaerite primum regnum Dei à4, K.86 73v (1770).ogg', 'Ru-новый.ogg', 'Projekt hbtqi – så gör vi Wikipedia och världen bättre tillsammans.webm', 'Hate Hurts Wales - an advisory video from the Welsh Government - English version.webm', 'How Animated Cartoons Are Made (1919).webm', 'Salut de la Wikipédia alémanique (mars 2021).webm', 'Tri-M Loyalty Song.mid', 'Star Spangled Banner.ogg', 'WikiGap 2021 Czech Republic promovideo.webm', 'The National Forest for Wales with Tilhill Forestry.webm', 'President Biden Encourages People to Wear a Mask.webm', 'Details of the New Parliament Building AOzpFXocKI.webm', 'WIKITONGUES- Abderrahman speaking Tachelhit (vertical original).webm', '\"The Star-Spangled Banner\" - Choral with band accompaniment - United States Army Field Band.oga', 'D66 Campagnespot 2021.webm', 'Teachtaireacht na Nollag agus na hAthbhliana ó Uachtarán na hÉireann Micheál D. Ó hUigínn-BY2NF-lawPQ.webm', 'Le Chant du Départ Chant patriotique Georges THILL Musique de la Garde Républicaine.ogg', 'Voce di Luigi Pirandello (1926).ogg', 'Hate Hurts Wales - Portrayal of Transgender Hate Crime.webm', 'Wagner Tristan opening (orchestral).ogg', 'Ru-жена.ogg', 'Hate Hurts Wales - Portrayal of Sexual Orientation Hate Crime.webm', 'Fées contre faits - De la lecture au théâtre.webm', \"I'm a Member of the Midnight Crew.ogg\", 'The Man with the Golden Arm (1955) .webm', 'Hate Hurts Wales - Portrayal of Religious Hate Crime.webm', 'Inevitability.webm', 'The Wikipedia Content Translation Tool reaches 350,000 translations.webm', 'Teachtaireacht Lá Fhéile Pádraig 2021 ón Uachtarán Micheál D. Ó hUigínn-VRg-a0qSGa8.webm', 'Bilingualism boosts grades at Treorchy Comprehensive.webm', 'Through the Years.wav', 'Ru-катить.ogg', 'What Is the Smart Grid-.webm', \"Prime Minister Trudeau's message on Nowruz 2021.webm\", 'Making Manuscripts- Quills.webm', 'Making Manuscripts- Making Miniatures.webm', 'Tying off onto the middle of a rope.webm', 'Code of practice on provision of autism services.webm', 'Live Fear Free - Domestic Abuse - Welsh Government video.webm', 'Рабочая Марсельеза.ogg', 'Message to All Career Staff.webm', 'Surgical cricicothyroidotomy with Kelly.webm', 'Surgical cricicothyroidotomy with finger.webm', 'Needle cricothyroidotomy using Yamahi technique.webm', 'Needle cricothyroidotomy technique.webm', 'Intraosseous infusion needle insertion into anterior tibia.webm', 'Vertical matress suture technique.webm', 'Corner stitch suture technique.webm', 'Simple interrupted stitch suture technique.webm', 'Buried knot suture technique.webm', 'Square knot suture technique with instruments.webm', 'Square knot suture technique with one hand.webm', 'Square knot suture technique with two hands.webm', 'Slip knot suture technique with instruments.webm', 'Suture and suture needle holding technique.webm', \"Albert Farrington - It's a Long Long Way to Tipperary - 1915.oga\", 'Open central unrounded vowel.ogg', 'De-Weiß.ogg', 'Informa - Vacina da UFPR se mostra eficaz contra Covid-19.webm', 'O grafiteiro Pato fala sobre O Estrangeiro.webm', 'Close-mid front unrounded vowel.ogg', 'Minha Casa Minha Vida reduz em 47% o deficit habitacional em Roraima.webm', 'Enfant de putain.ogg', '1956-08-06 Suez Crisis.ogv', '1956-11-12 Near East Crisis.ogv', \"Don't Be a Sucker (high resolution 35mm transfer).webm\", 'Teachers Unions Protect Their Monopoly as Parents Flee Traditional Schools.webm', 'Science Summary for February 2021.webm', 'Ali A. Rizvi voice - en.ogg', 'Gaudeamus omnes - Graduale Aboense.ogg', 'Loquetur Dominus.ogg', 'De profundis.ogg', 'Hava nagila.ogg', 'Războiul de-o zi româno-maghiar. Cum au fost „cinstiți” eroii de la Valea Uzului. FILMUL COMPLET.webm', 'Maschinengewehr 42.ogv', '260 Utrecht.ogg', \"2011-12-17 President Obama's Weekly Address.ogv\", 'BR 319- Bem-vindo a Realidade.webm', 'Кезэрень ёвкскэ.webm', 'WyomingStateSong arranged by Jack Ryan Morris.ogg', 'Mnw-ညးဗြဴဖျိန်ပုၚ်.oga', 'Das Leben in Frankfurt am Main (Terra X) - Latine.webm', 'Catullus 31 Latine.webm', 'Temer- As medidas que tomamos visam ao futuro.webm', 'Canção da Engenharia.ogg', '12051 Forest Dynamics UHD.webm', 'What is Peertube.webm', 'Michael Christie on Indigenous Ontologies and Digital Humanities Databases.webm', 'Jessica Marie Johnson on the connections between the slave trade and digital humanities today.webm', 'Paul Schacht on Digital Humanities and Distant Reading.webm', 'Artificial intelligence explained in 2 minutes - What exactly is AI?.webm', 'Video Institucional - Facultad de Ciencias de la Salud.webm', 'UFPR 108 anos - Institucional.webm', 'O arquiteto Ricardo Ohtake fala sobre o Hotel Unique.webm', 'Ricardo Alfonso Cerna committing suicide in California, December 2003.ogv', 'Governo discute medidas para reduzir criminalidade no Rio.webm', 'Самолёты. Парад 9 Мая.webm', 'Copyright and Creative Work- How Can Open Licences Empower Cultural and Creative Workers- Part 2.webm', 'Copyright and Creative Work- How Can Open Licences Empower Cultural and Creative Workers-.webm', 'NASA Picks SpaceX for Artemis Human Lunar Lander Development.webm', 'Exoplanet Types- Worlds Beyond Our Solar System.webm', 'What Is an Exoplanet-.webm', 'Himno Nacional de España.ogg', 'Kyrgyzstan National Anthem.ogg', 'Die Gaskammern in Auschwitz-Birkenau.webm', \"Ned's Declassified - Funniest Moments.webm\", 'Wilhelmus koor.oga', 'Nguyen.ogg', 'Greta Thunberg.ogg', 'O tempo das comidas.webm', 'Longines Chronicles with Leslie Knox Munro 1954 ARC-96009.ogv', '2014 IL-13 Congressional district debate - Illinois Public Media.webm', 'En.Video-Burr hole.webm', 'Lecture 9. The New Negroes.webm', 'Science Summary for March 2021.webm', '042 Vakcinoj - scivolemo - zdf.webm', 'Lifelong Republican- Trump Proved He Is A Racist.webm', 'Want a president who isn\\'t \"stone cold racist-\" Listen to John explain why he\\'s not voting for Trump.webm', 'Florida Republican knows Donald Trump is embarrassing the nation.webm', 'The Life of an African American Muslim Woman in Brooklyn - Ramadan in NYC.webm', 'Cadet Rousselle.mid', 'En.Video-Neurofibromatosis.webm', 'Big Guns - PKM Machine Gun Meltdown.webm', 'The Reawakening of the Black Gun-Rights Movement.webm', 'The Complicated Truth About the Boogaloo Movement.webm', '2 minuty s wikipedistou - Roman Vyšanský (S1E1) - Wikimedia Česká republika.webm', 'De-Albert Einstein.oga', 'Happy 20th birthday, Wikipedia! – International (subtitled) version.webm', 'Tom Brokaw - Introduction.webm', 'En-us-Pomona.ogg', 'En.Video-Marburg virus disease.webm', 'En.Video-COVID-19.webm', '1934-10-17 King Alexander Assassination.ogv', 'Abstract Wikipedia and wiki of functions.webm', 'WIKITONGUES- Maxime speaking Québecois French.webm', 'Gyani Maiya Sen Kusunda - how Mihaq (Kusunda) language should be brought to life.wav', 'Gyani Maiya Sen Kusunda - how Mihaq (Kusunda) language should be brought to life.webm', \"Does Israel have the right to kick out the 'Human Rights Activists' of anti-Israel BDS.webm\", 'PM Mario Draghi delivered an opening address at the press conference G20 Tourism ministerial meeting.webm', 'Excerpt- MP886 Detroit Riots.webm', 'Using Wikipedia to accelerate climate knowledge. Africa’s first edit-a-thon on climate change.webm', 'Sweden is Now Recycling 99 Percent of its Trash. Here’s how (1).webm', 'National anthem of Mauritania (instrumental).ogg', 'Malian national anthem, performed by the United States Navy Band.oga', 'En.Video-Pneumonia.webm', 'Kaameya - Kangri Folksong - Sheela Devi.webm', 'Global Warming.webm', 'عروسکه قشنگ.S85103.ogg', 'Palestinians celebrated September 11 attacks.webm', 'Interstate 10 in Los Angeles time-lapse.webm', 'California Route 2 time-lapse.webm', 'Science Summary for April 2021.webm', 'En.Video-Hepatitis E.webm', 'Holger Ellgaard till Wikipedias 20-årsfirande.webm', 'Happy 20th birthday, Wikipedia! – without subtitles.webm', 'En.Wikipedia-VideoWiki-Asus ZenFone 6.webm', 'Fight to Repair.webm', 'The University of Costumed Heroes.webm', 'Pronunciamento de Roberto Alvim.webm', 'Internetmuseum wikipedia20.webm', '043 - Ĉu homoj bezonas manĝi viandon -scivolemo - zdf.webm', '044 - Kiel oni hejmigis hundojn - scivolemo.webm', '045 - Kial riveroj serpentumas - scivolemo - zdf.webm', '046 - Kiel la lasta glaciepoko komenciĝis - scivolemo - zdf.webm', '047 - Kio kaŭzas tajdojn - scivolemo - noaa.webm', '048 - Kio estas virusoj - scivolemo - zdf.webm', '049 - Ĉu la universo estas senfina - scivolemo - zdf.webm', '050 - duŝado - scivolemo.webm', 'Introducing Wikipedia for KaiOS.webm', 'PIA23195-AsteroidApophis-ClosestApproachToEarth-20190429.webm', 'Intervju med Linus Tolke, 2021-05-10.webm', 'Pig grunt - Erdie.ogg', 'Ion Arretxe - Mikel Zabalza.webm', 'Standing sexual intercourse.webm', 'Nl-spoor.ogg', 'Ru-экономия.ogg', 'En.Video-Dyslexia.webm', 'Tram 1 timelapse -- Ring, Volkstheater - Paulanergasse.ogv', 'Burundi Refugee in Hong Kong Runs to Build Better Life.webm', '99 bottles of beer.ogg', 'Alveolar ejective fricative.ogg', 'Mohammad Reza Pahlavi voice (english - on energy in Iran).ogg', 'Private Snafu - Spies.ogv', 'Shantakumaran Sreesanth.ogg', 'Meaghan Benfeito - What does an Olympic diver eat.webm', 'Bernina Sings.webm', 'Fighting Tools.ogv', 'Multibrot.ogv', 'Atlantic Puffin (Fratercula arctica) (W1CDR0001416 BD3).ogg', 'Riddle song.ogg', 'Tumbalalaika.ogg', 'Now, our operation is small.webm', 'OpenSpeaks-overview.webm', \"2011-10-22 President Obama's Weekly Address.ogv\", 'National Anthem of the Democratic Christian Republic of 11B.ogg', 'Deutschlandlied (first stanza).oga', 'National Anthem of Abkhazia - Аиааира.ogg', 'WIKITONGUES- Nila speaking Indonesian.webm', 'En-uk-salute.ogg', 'Erklärvideo Wikipedia-Rollen.webm', 'Dag-0001 Din Yoori-Suurili.ogg', 'En-us-marco polo.ogg', 'Nanplanedoj-scivolemo-nasa.webm', 'Flag Lowering Version of the National Anthem of the Democratic Christian Republic of 11B.wav', 'Flag Raising Version of the National Anthem of the Democratic Christian Republic of 11B.wav', 'En.Video-Western African Ebola virus epidemic.webm', 'China Heroically Stands in the Universe.ogg', 'Song Mangab - Jingukmyeongsan.ogg', 'Cyrillic-Б.ogg', 'Video for 4o4 at 60 bpm.ogv', 'The most beautiful garden in the world, in LATIN Giardini di Ninfa (cum Stefano Vittori).webm', 'Science Summary for May 2021.webm', 'Carpe Diem, Horatius, with Sheep in Norma, Italy.webm', 'Former Ethiopian national anthem (1975–1992).ogg', \"Ityopp'ya Hoy dess yibelish.ogg\", 'March of the Volunteers.ogg', 'Voice of Turkey Interval Signal.ogg', 'Tchaikovsky - Concerto in D Major for Violin and Orchestra, Op. 35 - I. Allegro moderato.ogg', \"L'Odissea (Milano Films, 1911) .webm\", 'Tutoriel Lingua Libre.webm', 'Cicero - First speech against Catilina LATIN (Quo usque tandem abutere, Catilina..).webm', 'Mokha Laagi Beti.webm', 'The Army Song - Band and Chorus - United States Army Band.mp3', 'Doran-e-Fath.webm', \"My Country 'Tis of Thee (abridged) - Concert Band - United States Air Force Heritage of America Band.mp3\", 'Nimiya Ke Daari.webm', 'Haldi song.webm', 'Rimi Jhimi Paniya.webm', 'Chuni Chuni Chunawa.webm', 'Hiccupsound.ogg', 'Euskararen kontrako neurriak.webm', 'Meow of a Siamese cat - freemaster2.wav', 'Freely Tomorrow.ogg', 'Dariusz Jemielniak - 2021 WMF board candidacy statement (with subtitle soft translation).webm', 'Kyrgyzstan (instrumental).ogg', 'En-us-cot.ogg', '2 Weeks In Italy - A Cinematic Travel Film.webm', 'Vladimir Putin warning Americans on election interference and increasing political divide.webm', 'Heil Dir Im Siegerkranz (old recording).ogg', 'WMF Board elections 2021 - Lorenzo Losa - statement.webm', 'WMF board candidacy statement.webm', 'Indonesia Raya instrumental.ogg', \"Ralenti réalisation d'un Noeud de Chaise.webm\", 'Whats Inside of Blood.webm', 'Carter Panama Canal speech.ogg', 'Legal Department Highlights from the Wikimedia Foundation 2021-2022 Annual Plan.webm', 'Technology Department Highlights from the Wikimedia Foundation 2021-2022 Annual Plan.webm', 'Talent and Culture Department Highlights from the Wikimedia Foundation 2021-2022 Annual Plan.webm', 'Product Department Highlights from the Wikimedia Foundation 2021-2022 Annual Plan.webm', 'Finance and Administration Department Highlights from the Wikimedia Foundation 2021-2022 Annual Plan.webm', 'Advancement Department Highlights from the Wikimedia Foundation 2021-2022 Annual Plan.webm', 'Communications Department Highlights from the Wikimedia Foundation 2021-2022 Annual Plan.webm', 'Veni, Veni Emmanuel - Voice and cello - Peter Zagar.opus', 'Dariusz Jemielniak - 2021 WMF board candidacy short statement.webm', 'Wikimedia Foundation Funds Strategy.webm', 'Emilio Aguinaldo Speech in Spanish (1929).webm', 'Psittacus erithacus speaking.oga', 'Who will be the Wikimedian of the Year 2021 - forkable version .webm', 'Who will be the Wikimedian of the Year 2021-.webm', 'Who will be the Wikimedian of the Year 2021--.webm', 'Train from Xingtai to Zhengzhou after the flood 2021-07-21.webm', 'Henan floods 2021-07-20 CNS.webm', 'Zhengzhou streets during the flood 2021-07-20.webm', 'Ivan Martinez - 2021 WMF board elections candidacy statement (English).webm', 'Spooky Month.ogg', \"Stealing some of Wikimedia's Principles to Democratize Programming.webm\", 'Nsk Metro voice message in train 07-2016 sample.ogg', 'WIKITONGUES- Sandra speaking Welsh.webm', 'Space to Ground - Cool Flames.webm', 'Ak52 10x.ogg', 'WIKITONGUES- Castelline speaking Haitian Creole.webm', 'Dariusz Jemielniak - 2021 WMF board candidacy statement (with subtitle soft translation)-BROKEN.webm', 'Curso de Introdução ao Jornalismo Científico.webm', 'Somali national anthem, performed by the United States Navy Band.oga', 'Bobby Womack BBC Radio4 Front Row 26 Dec 2012 b01pg54v.flac', 'Brasil Hoje n. 95 (1975) - Reportagem da Agência Nacional sobre o turismo em Teresina, Piauí.webm', 'Wikimedia Foundation Board of Trustees.webm', 'Neecha Nagar (1946).webm', 'Bavarian (Wikitongues).ogg', 'Si-Mahanuwara.ogg', 'Common loon tremolo.ogg', 'Voiceless dental fricative.ogg', 'Wikimania 2021 Abstract Wikipedia and Wikifunctions Introduction.webm', 'Lobes of the Lung ogg.mov (1).ogv', 'Yulimar Rojas arriving at Maiquetia after Birmingham win.webm', 'TygerTyger.ogg', 'Stand, Columbia.ogg', '1957-10-07 New Moon.ogv', 'Bezoek ds Martin Luther King-selectionclip.ogv', \"Cynhadledd i'r Wasg Press Conference - 20.11.20.webm\", 'Interview with Western Sahara advocate Tecber Ahmed Saleh.webm', 'Живое исполнение Мари Краймбрери «Он тоже любит дым».wav', 'Fidelity Chess Challenger Voice speech output.flac', 'Shortcutting the Identify topics for impact.webm', 'Phleng Chat Thai (Fine Art Department Orchestra) - Rabbit Gramophone record N.123.ogg', 'Phleng Chat Siam 1934-1939 (Vocal by Miss Pratum) - Rabbit Gramophone record HA 6003.ogg', 'Phleng Chat Siam (Chan Khamvilai lyrics).ogg', 'Phleng Chat Siam (Khun Wichitmatra lyrics).ogg', 'Phleng Chat Thai (intro+vocal) - 1st Military Circle Band.ogg', 'Maha Chai (Vocal by Dussadee Boontawee) - Fine Art Department Orchestra.ogg', 'Sansoen Phra Barami (vocal) - 1st Military Circle Band.ogg', 'Sansoen Phra Barami (Abridged) Pibul period, 1940-1944.ogg', 'Sansoen Phra Barami and Kraow Ram (Episode of Prommas) - ancient drama.ogg', 'Sansoen Phra Barami (male and female choir) B.E. 2445.ogg', 'Sansoen Phra Barami (Student Lyric 1902) by Mr. John.ogg', 'Sansoen Phra Barami (vocal).ogg', 'Sansoen Phra Barami (ancient drama) - Wang Ban Mo ancient drama.ogg', 'Sansoen Sueapa (Tiger Corps Hymn) - Vocal.ogg', 'Sansoen Sueapa (Tiger Corps Hymn) - Instrumental.ogg', 'Twitter’s Dangerous Game - Rahul Gandhi - Twitter is interfering in our political process.webm', 'Hablando sobre el son jarocho en la wikipedia.webm', 'Revisiting the AfroCROWD Juneteenth Wiki Civil Rights Conference of 2020.webm', 'Purple Cow.ogg', 'Thistle-down johnson blb.ogg', 'Lenin - What Is Soviet Power.ogg', '0872 Angels Flight 05 32 34 00.webm', 'IntheSub1957.webm', 'Physical1953.webm', 'They grow up so fast.webm', '0810 Unid Soundie Its Got to Be This or That Juvenile Jubilee 04 27 30 00.webm', 'Wastageo1947.webm', '0351 Spills and Thrills The Sport Parade 05 26 16 00.webm', '0101 Synthetic Fibers Nylon and Rayon 13 22 43 00.webm', '0396 Aristocrats of Fashion 10 22 40 00.webm', '0230 New Horizons 01 00 38 00-0036.webm', '0145 Wonderful World of Wash n Wear The M04181 06 19 05 00.webm', 'Townandt1950.webm', '0547 Fashions Favorite 20 30 59 03 3mb.webm', 'WhiteWon1958.webm', '6021 Science and Superstition 00 45 46 21.webm', '0044 Library Organization 20 11 04 00.webm', 'GoingPla1948.webm', 'ThirdAve1950.webm', 'Coachfor1936.webm', 'Out of this world.webm', 'If your Nerve, deny you.ogg', 'Yeats-the-second-coming.ogg', 'Landing Of The Pilgrims Poem.ogg', 'Thalie Envolée - Arthur Rimbaud - Voyelles.oga', 'Larynx-HiFi-GAN speech sample.wav', 'She walks in beauty.ogg', 'Where Once Poe Walked.wav', 'Texas Instruments TI-99 4A speech demo.flac', 'Play fight between cats.webmhd.webm', 'Derek-Walcott-names.ogg', '01 Her Hands Poem.ogg', \"Life's Mystery (Lovecraft).wav\", 'Crowd sourcing Welsh language data in the Covid era (Arctic Knot Conference 2021).webm', 'The Inari Saami Wikipedia (Arctic Knot Conference 2021).webm', 'Daisy Bell sung by DECtalk.flac', 'Adil Ray voice.flac', 'Nl-Wilfred Genee-article.ogg', 'How Stands the Glass Around.mid', 'Welcome to the Very Large Array.webm', 'Ro-Nicolae Ceaușescu.ogg', 'National Anthem of Vatican City.ogg', 'Motivational V3-FINAL.webm', 'Instructional V4-FINAL.webm', 'Boys Will Be Bugs by Cavetown.webm', 'Cavetown - Green.webm', 'Andreo Cseh kurso 19 jun 1933.ogg', 'Jenny Kissed Me Leigh Hunt.ogg', 'Ru-залупа 2.ogg', 'National Anthem Of Vietnam.ogg', 'CPC6128 loading Turbo Esprit from floppy disk.flac', 'Liberal Democrat Party (Turkey) Anthem.ogg', 'Esperanto.webm', 'Amiga 2000 loading Lotus Turbo Challenge 2 from floppy disk.flac', 'Voyager 2 Launches.webm', 'Voyager 1 Launches.webm', 'Neustadt (Dosse)–Pritzwalk.webm', 'NASAs The Quiet Crew - Steven King.webm', 'Pritzwalk–Krakow am See.webm', 'Infrared Astronomical Satellite Launches.webm', 'Shuttle Imaging Radar A Launches aboard STS-2.webm', 'Shuttle Imaging Radar B Launches aboard STS-41-G.webm', 'Krakow am See–Pritzwalk.webm', 'Regnava nel silenzio. 1910 record of Eugenie Bronskaja.ogg', 'En-us-no highway cowboys.ogg', 'Angle Grinder cutting a steel chain - Video.webm', \"U.S. President George W. Bush's address to the nation on the day's terrorist attacks (September 11, 2001).ogv\", 'How to save lives with CPR.webm', 'Pritzwalk–Krakow am See (2).webm', 'Neustadt (Dosse)–Pritzwalk (2).webm', 'Han kom til et Spania under Franco (skeivt arkiv).webm', 'Det var en tøff beskjed (skeivt arkiv).webm', 'Det finnes ikke homofile i Nord-Korea (skeivt arkiv).webm', 'Da opplevde han sjalusi for første gang (skeivt arkiv).webm', 'Hvor skulle de gått om ikke til oss (skeivt arkiv).webm', 'Han forlot AKP-ml etter «Fråsegna» (skeivt arkiv).webm', 'Flytte eller bli (skeivt arkiv).webm', 'Gudmund Vindland (skeivt arkiv).webm', 'Passet ikke helt inn blant homsene (skeivt arkiv).webm', 'Peter Andreas Kjeldsberg kort (skeivt arkiv).webm', 'Slik startet transarbeidet (skeivt arkiv).webm', 'Kan vi kalle det et talent (skeivt arkiv).webm', 'Så ser han meg holde hånd med en gutt (skeivt arkiv).webm', 'Det var som om all uro ble skrudd av (skeivt arkiv).webm', 'Hadde du våget å kle deg slik (skeivt arkiv).webm', 'Leif Pareli forteller (skeivt arkiv).webm', 'Drøbaksmøtene (skeivt arkiv).webm', 'Kari G Folvik og Lesber i dagslys (skeivt arkiv).webm', 'Med mor på Venstres hus (skeivt arkiv).webm', 'Menighetsrådene gruet seg (skeivt arkiv).webm', 'Outsider begge steder (skeivt arkiv).webm', 'Det handlet om mer enn utsiden (skeivt arkiv).webm', 'Du holder på en mann (skeivt arkiv).webm', 'Mor så lesbisk film i solidaritet (skeivt arkiv).webm', 'Må dere ha sex med barn (skeivt arkiv).webm', '45% av den samiske befolkningen opplever seksualisert vold (skeivt arkiv).webm', 'Abortkamp og pornobål (skeivt arkiv).webm', 'Bryllup tre dager til ende (skeivt arkiv).webm', 'Det ble helt stille (skeivt arkiv).webm', 'Jeg fikk høre skrekkhistorier (skeivt arkiv).webm', 'Media fokuserer på de som skruller (skeivt arkiv).webm', 'Siri Sunde forteller Kirken eller kjærligheten (skeivt arkiv).webm', 'Der satt det ganske livredde mennesker rundt et bord (skeivt arkiv).webm', 'Det kom en bråte brev (skeivt arkiv).webm', 'Det mest fantastiske som skjedde (skeivt arkiv).webm', 'Jeg skulle være et eksempel for homse-elevene (skeivt arkiv).webm', 'Jeg sneik meg inn (skeivt arkiv).webm', 'Man har gjemt på noe i lang tid (skeivt arkiv).webm', 'Når jeg tenker på det i dag så virker det helt absurd (skeivt arkiv).webm', 'Privat ring av sæddonorer (skeivt arkiv).webm', 'Sydde seg gjennom militærtjenesten (skeivt arkiv).webm', 'Ølpengene på Femø (skeivt arkiv).webm', 'National Anthem of Germany.ogg', '45 av den samiske befolkningen opplever seksualisert vold (skeivt arkiv).webm', 'Anders Rogg (skeivt arkiv).webm', 'Blodet sprutet (skeivt arkiv).webm', 'Da homser og lesber overtok danskebåten (skeivt arkiv).webm', 'Da åpen kirkegruppe måtte holde utendørs gudstjeneste (skeivt arkiv).webm', 'Alle fikk jentenavn (skeivt arkiv).webm', 'De ba meg ringe Lesbisk bevegelse (skeivt arkiv).webm', 'De ble overrasket (skeivt arkiv).webm', 'Det blåste friskt i homobevegelsen på 70-tallet (skeivt arkiv).webm', 'Det er ikke umulig at jeg kanskje er homofil (skeivt arkiv).webm', 'Det gjelder å komme fram til hvem man er (skeivt arkiv).webm', 'Det har skjedd så mye på bare få år (skeivt arkiv).webm', 'Det kom i avisen at lesbiske var gravide (skeivt arkiv).webm', 'Det var en øyeåpner for meg (skeivt arkiv).webm', 'Det var ikke derfor jeg ble politiker (skeivt arkiv).webm', 'Det var ikke greit å si man var bifil (skeivt arkiv).webm', 'Det var ikke til å bære (skeivt arkiv).webm', 'Det var sving på sakene i Bergen men det visste ikke jeg (skeivt arkiv).webm', 'Dette burde jeg ikke si men (skeivt arkiv).webm', 'Dette kom ikke på 70-tallet (skeivt arkiv).webm', 'Drømmer om å bli overflødig (skeivt arkiv).webm', 'Du la ikke opp til det selv da (skeivt arkiv).webm', 'En trodde det skulle gå over (skeivt arkiv).webm', 'Enveisbillett til Istanbul (skeivt arkiv).webm', 'For et svik (skeivt arkiv).webm', 'Forbønnsgudstjenesten (skeivt arkiv).webm', 'Frykten redselen hysteriet (skeivt arkiv).webm', 'Fråsegna om homoseksualitet (skeivt arkiv).webm', 'Fy flate så nervøs jeg var (skeivt arkiv).webm', 'Gerd Brantenberg forteller (skeivt arkiv).webm', 'Gjorde narr av politisk korrekthet (skeivt arkiv).webm', 'GP-stunt som gikk i vasken (skeivt arkiv).webm', 'Han ble tatt i mot som en svigersønn (skeivt arkiv).webm', 'Han eller hen (skeivt arkiv).webm', 'Han forlot AKPml etter Fråsegna (skeivt arkiv).webm', 'Han gikk rundt huset fire ganger (skeivt arkiv).webm', 'Han glemmer aldri møtet med Kim (skeivt arkiv).webm', 'Han skaffet kjendisene (skeivt arkiv).webm', 'Han ventet på oss (skeivt arkiv).webm', 'Har aldri fått slengt noe etter oss (skeivt arkiv).webm', 'Heteroseksualitet var også en diagnose (skeivt arkiv).webm', 'Homo er moro (skeivt arkiv).webm', 'Homo på Utsira? No problem (skeivt arkiv).webm', 'Homofilt partnerskap var mer moderne (skeivt arkiv).webm', 'Hun kastet bøkene i veggen og dro til sjøs (skeivt arkiv).webm', 'Hun var fæl altså (skeivt arkiv).webm', 'Hva sa hun etter kirkemøtet (skeivt arkiv).webm', 'Inger Myhre Hansen forteller (skeivt arkiv).webm', 'Jan Dalchow (skeivt arkiv).webm', 'Jeg får tårer i øynene når jeg ser Pride i dag (skeivt arkiv).webm', 'Jeg skulle være et eksempel for homseelevene (skeivt arkiv).webm', 'Kjell Erik Øie Partnerskapsloven (skeivt arkiv).webm', 'Kjønn og seksualitet en sosial konstruksjon (skeivt arkiv).webm', 'Kom ut under prologen (skeivt arkiv).webm', 'Majestetsfornærmelsen (skeivt arkiv).webm', 'Mangt skulle vært usagt (skeivt arkiv).webm', 'Med himmelen full av stjerner (skeivt arkiv).webm', 'Men det er jo så forferdelig (skeivt arkiv).webm', 'Men så giftet de seg (skeivt arkiv).webm', 'Merethe ville ikke til psykiater (skeivt arkiv).webm', 'Minoritets stress (skeivt arkiv).webm', 'Om å leve (skeivt arkiv).webm', 'Polititerror mot homser i Tromsø (skeivt arkiv).webm', 'På homosafari med studentene (skeivt arkiv).webm', 'Sissel Hansen forteller (skeivt arkiv).webm', 'Sure dørvakter men viktig treffsted (skeivt arkiv).webm', 'Sykepleieren takket ved dødsleiet (skeivt arkiv).webm', 'Tause telefoner (skeivt arkiv).webm', 'Tom Ovlien var journalist og aktivist i Blikk (skeivt arkiv).webm', 'Torstein Dahle om eksklusjonsstriden og HBB (skeivt arkiv).webm', 'Ulf Tveten (skeivt arkiv).webm', 'Ute om natten for ikke å bli sett (skeivt arkiv).webm', 'Vera Danielsen (skeivt arkiv).webm', 'Vi ble brutalt slått ned (skeivt arkiv).webm', 'Vi ble veldig redde (skeivt arkiv).webm', 'Vi møttes minst en gang i uken (skeivt arkiv).webm', 'Homo på Utsira No problem (skeivt arkiv).webm', '\"Let Us Continue\" speech audio trimmed.ogg', 'Ru-ревновать.ogg', 'Veni.creator.spiritus.ogg', 'Corona vaccination mechanism.webm', 'Coronavaccinationsmekanisme.webm', 'FridaysForFuture Hannover 2019-07-05 3.webm', 'Handel - messiah - 44 hallelujah.ogg', '250 meter pride (skeivt arkiv).webm', 'Bokgruppen i AHF (skeivt arkiv).webm', 'De trodde vi hadde aids på fingrene (skeivt arkiv).webm', 'Det samiske samfunnet er et bygdesamfunn (skeivt arkiv).webm', 'Det var bare biskopens sønn de var ute etter (skeivt arkiv).webm', 'Det var skremmende (skeivt arkiv).webm', 'Gamle holdninger lever fremdeles (skeivt arkiv).webm', 'Hun outet meg (skeivt arkiv).webm', 'Hva svarte Islamsk råd (skeivt arkiv).webm', 'Hva var god homolitteratur (skeivt arkiv).webm', 'Hvordan skal vi forholde oss til kirken (skeivt arkiv).webm', 'Jeg lar ikke en jævla sykepleier fortelle meg hvordan jeg skal knulle (skeivt arkiv).webm', 'Noen ble blinde noen ble lamme (skeivt arkiv).webm', 'Nå går det til helsike med valget (skeivt arkiv).webm', 'Når minoriteter brukes mot hverandre (skeivt arkiv).webm', 'Samboeren var butleren (skeivt arkiv).webm', 'Smittefrykten var enorm (skeivt arkiv).webm', 'Vi måtte forandre loven (skeivt arkiv).webm', 'Pritzwalk–Neustadt (Dosse).webm', 'Pritzwalk–Krakow am See (3).webm', 'Silence.ogg', 'Krakow am See–Pritzwalk (2).webm', 'Como adicionar transcrições a vídeos no Wikimedia Commons.webm', 'Ru-Holy Roman Empire (intro).ogg', 'Twin of NASA’s Perseverance Mars Rover Moves Into New Home.webm', 'Twin of NASA’s Perseverance Mars Rover Now on the Move.webm', 'De-Wasser3.ogg', 'Georgian national anthem performed by the United States Navy Band.mp3', 'Le pétomane du Moulin Rouge (1900).webm', 'Viae romanae.webm', 'Carthago.webm', 'WIKITONGUES- Suri speaking Yiddish.webm', 'Alyona Lanskaya - Solayoh presentation (Беларуская).ogv', 'Alyona Lanskaya - Solayoh presentation (русский).ogv', 'Alyona Lanskaya - Solayoh presentation (English).ogv', 'Dina Garipova - What if presentation (русский).ogv', 'Dina Garipova - What if presentation (English).ogv', 'Shenandoah (2017) - Singing Sergeants - United States Air Force Band.mp3', 'Выступление на церемонии открытия Дня России на Всемирной выставке «ЭКСПО-2010».ogv', \"'Twas in the Moon of Wintertime - Men's Chorus - United States Air Force Band.mp3\", 'This Land Is Your Land - Singing Sergeants - United States Air Force Band.mp3', 'Alexei Leonov- First Person to Spacewalk.webm', 'Kling, Glöckchen, Kling! - Chamber Winds - United States Air Forces in Europe Band.mp3', 'Amazing Grace US Marine Band.ogg', 'Philippine National Anthem, the Lupang Hinirang, Himno Nacional Filipino Unknown Artist.ogg', 'Щедрик100challenge-хор-Соломія-ВГПК.ogv', '1-17-12- White House Press Briefing.webm', '1-17-13- White House Press Briefing.webm', '1-23-13- White House Press Briefing.webm', 'JFK inaugural address.ogg', 'Karow (Meckl)–Pritzwalk.webm', 'Vita Romae.webm', 'America the Beautiful (male vocalist) - United States Navy Band.opus', 'Children, Go Where I Send Thee - Singing Sergeants - United States Air Force Band.mp3', 'Down by the Salley Gardens - Celtic Aire - United States Air Force Band.mp3', 'Black Velvet Band - Celtic Aire - United States Air Force Band.mp3', 'Easy spoken Latin for beginners with subtitles.webm', 'Chadra shekar Azad.ogg', 'Blacksmith - Celtic Aire - United States Air Force Band.mp3', 'Cockles and Mussels - Celtic Aire - United States Air Force Band.mp3', 'Gesu Bambino - Concert Band - United States Air Force Band of Mid-America.mp3', 'I Tell Me Ma - Celtic Aire - United States Air Force Band.mp3', 'Irish Rover - Celtic Aire - United States Air Force Band.mp3', 'Lift Every Voice and Sing - United States Navy Band.opus', 'The Dreidel Song - Singing Sergeants - United States Air Force Band.mp3', 'Loch Lomond - Southern Aire - United States Air Force Reserve Band.mp3', 'Francia.ogg', 'Writing Wikipedia Articles course 2017.webm', 'Ocho Kandelikas - Singing Sergeants - United States Air Force Band.mp3', \"S'vivon - Singing Sergeants - United States Air Force Band.mp3\", 'Routenplaner aus der Römerzeit – die Tabula Peutingeriana.webm', 'Danny Boy - Celtic Aire - United States Air Force Band.mp3', '1-20-12- White House Press Briefing.webm', '1-22-13- White House Press Briefing.webm', '1-22-14- White House Press Briefing.webm', '1-23-12- White House Press Briefing.webm', '1-23-14- White House Press Briefing.webm', '1-23-15- White House Press Briefing.webm', '1-24-14- White House Press Briefing.webm', '1-25-13- White House Press Briefing.webm', '1-27-14- White House Press Briefing.webm', '1-28-13- White House Press Briefing.webm', '1-3-12- White House Press Briefing.webm', '1-30-13- White House Press Briefing.webm', '1-31-13- White House Press Briefing.webm', '1-31-14- White House Press Briefing.webm', '1-5-12- White House Press Briefing.webm', '2-6-14- White House Press Briefing.webm', '1-7-13- White House Press Briefing.webm', '1-7-14- White House Press Briefing.webm', '1-6-14- White House Press Briefing.webm', '1-8-14- White House Press Briefing.webm', '1-8-13- White House Press Briefing.webm', '1-9-13- White House Press Briefing.webm', '1-9-14- White House Press Briefing.webm', '10-01-14- White House Press Briefing.webm', '10-10-12- White House Press Briefing.webm', '10-12-12- White House Press Briefing.webm', '10-14-14- White House Press Briefing.webm', '10-15-14- White House Press Briefing.webm', '10-16-14- White House Press Briefing.webm', '10-17-14- White House Press Briefing.webm', '10-17-16- White House Press Briefing.webm', '10-19-16- White House Press Briefing.webm', '10-21-14- White House Press Briefing.webm', '10-21-16- White House Press Briefing.webm', '10-23-14- White House Press Briefing.webm', '10-26-16- White House Press Briefing.webm', '10-29-14- White House Press Briefing.webm', '10-6-14- White House Press Briefing.webm', '10-8-14- White House Press Briefing.webm', 'Raisins and Almonds - Singing Sergeants - United States Air Force Band.mp3', 'ಮೈಸೂರು ದಸರಾ (Mysore Dasara) 2019 (2).webm', '11-10-16- White House Press Briefing.webm', '11-13-12- White House Press Briefing.webm', '11-15-13- White House Press Briefing.webm', '11-18-13- White House Press Briefing.webm', '11-19-13- White House Press Briefing.webm', '11-22-13- White House Press Briefing.webm', '11-22-16- White House Press Briefing.webm', '11-26-12- White House Press Briefing.webm', '11-27-12- White House Press Briefing.webm', '11-28-11- White House Press Briefing.webm', '11-28-12- White House Press Briefing.webm', '11-29-11- White House Press Briefing.webm', '11-29-12- White House Press Briefing.webm', '11-30-16- White House Press Briefing.webm', '11-4-14- White House Press Briefing.webm', '12-01-16- White House Press Briefing.webm', '12-02-16- White House Press Briefing.webm', '12-1-11- White House Press Briefing.webm', '12-11-12- White House Press Briefing.webm', '12-12-12- White House Press Briefing.webm', '12-12-13- White House Press Briefing.webm', '12-12-16- White House Press Briefing.webm', '12-13-11- White House Press Briefing.webm', '12-13-12- White House Press Briefing.webm', 'King Champagne - Singing Sergeants - United States Air Force Band.mp3', '12-13-13- White House Press Briefing.webm', '12-13-16- White House Press Briefing.webm', '12-14-09- White House Press Briefing.webm', '12-14-16- White House Press Briefing.webm', '12-15-11- White House Press Briefing.webm', '12-15-16- White House Press Briefing.webm', '12-16-11- White House Press Briefing.webm', '12-16-13- White House Press Briefing.webm', '12-16-14- White House Press Briefing.webm', '12-17-12- White House Press Briefing.webm', '12-17-13- White House Press Briefing.webm', '12-18-12- White House Press Briefing.webm', '12-18-13- White House Press Briefing.webm', 'Wie kam griechisches und arabisches Wissen nach Europa?.webm', 'Persepolis.webm', '12-19-11- White House Press Briefing.webm', '12-19-13- White House Press Briefing.webm', '12-2-11- White House Press Briefing.webm', '12-2-13- White House Press Briefing.webm', '12-20-11- White House Press Briefing.webm', 'Sorude Melliye Jomhuriye Eslâmiye Irân (Instrumental).wav', '12-20-12- White House Press Briefing.webm', '12-21-11- White House Press Briefing.webm', '12-3-12- White House Press Briefing.webm', '12-4-12- White House Press Briefing.webm', '12-5-11- White House Press Briefing.webm', '12-5-12- White House Press Briefing.webm', '12-5-13- White House Press Briefing.webm', '12-5-16- White House Press Briefing.webm', '12-6-12- White House Press Briefing.webm', '12-6-13- White House Press Briefing.webm', '12-7-16- White House Press Briefing.webm', '12-8-11- White House Press Briefing.webm', '12-8-16- White House Press Briefing.webm', '12-9-11- White House Press Briefing.webm', '12-9-16- White House Press Briefing.webm', '2-1-13- White House Press Briefing.webm', '2-10-14- White House Press Briefing.webm', '2-11-13- White House Press Briefing.webm', '2-12-14- White House Press Briefing.webm', '2-13-12- White House Press Briefing.webm', '2-14-12- White House Press Briefing.webm', '2-14-14- White House Press Briefing.webm', '2-18-14- White House Press Briefing.webm', '2-19-13- White House Press Briefing.webm', '2-20-13- White House Press Briefing.webm', '2-20-14- White House Press Briefing.webm', '2-20-15- White House Press Briefing.webm', '2-21-12- White House Press Briefing.webm', '2-21-13- White House Press Briefing.webm', '2-21-14- White House Press Briefing.webm', '2-22-12- White House Press Briefing.webm', '2-22-13- White House Press Briefing.webm', '2-24-14- White House Press Briefing.webm', '2-25-14- White House Press Briefing.webm', '2-27-13- White House Press Briefing.webm', '2-27-14- White House Press Briefing.webm', '2-27-15- White House Press Briefing.webm', '2-28-13- White House Press Briefing.webm', '2-28-14- White House Press Briefing.webm', '2-3-14- White House Press Briefing.webm', '2-4-14- White House Press Briefing.webm', '2-5-13- White House Press Briefing.webm', '2-5-14- White House Press Briefing.webm', '2-5-15- White House Press Briefing.webm', '2-6-13- White House Press Briefing.webm', '2-7-12- White House Press Briefing.webm', '2-8-12- White House Press Briefing.webm', \"2009-04-18 President Obama's Weekly Address.ogv\", '3-10-14- White House Press Briefing.webm', \"2016-03-26 President Obama's Weekly Address.webm\", '20160914 Press Briefing HD.webm', '20160916 Press Briefing HD.webm', '20160922 Press Briefing HD.webm', '20160927 Press Briefing HD.webm', '20161114 POTUS Press Conference HD.webm', '20161117 POTUS Press Conference with Chancellor Merkel-3 HD.webm', '7-11-14- White House Press Briefing.webm', '7-11-12- White House Press Briefing.webm', '7-10-15- White House Press Briefing.webm', '7-1-14- White House Press Briefing.webm', '6-9-15- White House Press Briefing.webm', '6-9-14- White House Press Briefing.webm', '6-5-13- White House Press Briefing.webm', '6-5-12- White House Press Briefing.webm', '6-4-12- White House Press Briefing.webm', '6-30-14- White House Press Briefing.webm', '6-3-13- White House Press Briefing.webm', '6-27-12- White House Press Briefing.webm', '6-25-14- White House Press Briefing.webm', '6-24-14- White House Press Briefing.webm', '6-23-14- White House Press Briefing.webm', '6-21-12- White House Press Briefing.webm', '6-20-14- White House Press Briefing.webm', '6-2-14- White House Press Briefing.webm', '6-18-14- White House Press Briefing.webm', '6-15-12- White House Press Briefing.webm', '6-13-12- White House Press Briefing.webm', '6-12-14- White House Press Briefing.webm', '6-11-15- White House Press Briefing.webm', '6-11-12- White House Press Briefing.webm', '6-10-14- White House Press Briefing.webm', '6-1-15- White House Press Briefing.webm', '2013-03-08- Press Briefing by Deputy Press Secretary Josh Earnest.webm', '2014 State Of The Union Address Enhanced.webm', '2015-09-16 White House Press Briefing on student Ahmed Mohamed.webm', '3 short clips of Michael Sheen presenting the St David Award 2015.webm', '3-11-13- White House Press Briefing.webm', '3-11-14- White House Press Briefing.webm', '3-11-15- White House Press Briefing.webm', '3-12-12- White House Press Briefing.webm', '3-12-13- White House Press Briefing.webm', '3-12-14- White House Press Briefing.webm', '3-13-12- White House Press Briefing.webm', '3-13-13- White House Press Briefing.webm', '3-13-14- White House Press Briefing.webm', '3-14-13- White House Press Briefing.webm', '3-14-14- White House Press Briefing.webm', '3-17-15- White House Press Briefing.webm', '3-19-13- White House Press Briefing.webm', '2012 State Of The Union Address (720p).ogv', '2012 State Of The Union Address Enhanced (720p).ogv', 'Flaschenrüttler VID 20170606.ogv', '3-19-14- White House Press Briefing.webm', '3-20-15- White House Press Briefing.webm', '3-21-14- White House Press Briefing.webm', '3-23-12- White House Press Briefing.webm', '3-25-13- Press Briefing by Deputy Press Secretary Josh Earnest.webm', '3-26-13- White House Press Briefing.webm', '3-27-13- Press Briefing by Deputy Press Secretary Josh Earnest.webm', '3-28-13- Press Briefing by Deputy Press Secretary Josh Earnest.webm', '3-29-12- White House Press Briefing.webm', '3-3-15- White House Press Briefing.webm', '3-31-14- White House Press Briefing.webm', '3-4-13- White House Press Briefing.webm', '3-4-15- White House Press Briefing.webm', '3-5-13- White House Press Briefing.webm', '3-6-14- White House Press Briefing.webm', '3-7-13- White House Press Briefing.webm', '3-8-12- White House Press Briefing.webm', '3-9-15- White House Press Briefing.webm', '4-1-13- White House Press Briefing.webm', '4-1-15- White House Press Briefing.webm', '4-11-12- White House Press Briefing.webm', '4-11-13- White House Press Briefing.webm', '4-11-14- White House Press Briefing.webm', '4-12-12- White House Press Briefing.webm', '4-12-13- White House Press Briefing.webm', '4-14-14- White House Press Briefing.webm', '4-15-14- White House Press Briefing.webm', '4-17-12- White House Press Briefing.webm', '4-17-13- White House Press Briefing.webm', '4-18-14- White House Press Briefing.webm', '4-19-12- White House Press Briefing.webm', '4-2-13- White House Press Briefing.webm', '4-20-12- White House Press Briefing.webm', '4-21-14- White House Press Briefing.webm', '4-22-13- White House Press Briefing.webm', '4-23-12- White House Press Briefing.webm', '4-23-13- White House Press Briefing.webm', '4-24-13- White House Press Briefing.webm', '4-24-15- White House Press Briefing.webm', '4-26-12- White House Press Briefing.webm', '4-29-13- White House Press Briefing.webm', '4-3-14- White House Press Briefing.webm', '4-30-14- White House Press Briefing.webm', '4-4-14- White House Press Briefing.webm', '4-5-12- White House Press Briefing.webm', '4-6-15- White House Press Briefing.webm', '4-7-14- White House Press Briefing.webm', '4-8-13- White House Press Briefing.webm', '4-8-14- White House Press Briefing.webm', '4-8-15- White House Press Briefing.webm', '4-9-13- White House Press Briefing.webm', '5-1-13- White House Press Briefing.webm', '5-1-14- White House Press Briefing.webm', '5-12-14- White House Press Briefing.webm', '5-13-14- White House Press Briefing.webm', '5-13-15- White House Press Briefing.webm', '5-14-13- White House Press Briefing.webm', '5-14-14- White House Press Briefing.webm', '5-16-12- White House Press Briefing.webm', '5-16-14- White House Press Briefing.webm', '5-17-12- White House Press Briefing.webm', '5-19-14- White House Press Briefing.webm', '5-20-13- White House Press Briefing.webm', '5-20-14- White House Press Briefing.webm', '5-21-14- White House Press Briefing.webm', '5-22-12- White House Press Briefing.webm', '5-22-13- White House Press Briefing.webm', '5-26-15- White House Press Briefing.webm', 'Angkor Wat.webm', '5-29-12- White House Press Briefing.webm', '5-29-13- White House Press Briefing.webm', '5-29-14- White House Press Briefing.webm', '5-3-12- White House Press Briefing.webm', '5-30-12- White House Press Briefing.webm', '5-30-14- White House Press Briefing.webm', '5-31-12- White House Press Briefing.webm', '5-5-14- White House Press Briefing.webm', '5-6-14- White House Press Briefing.webm', '5-6-15- White House Press Briefing.webm', '5-7-12- White House Press Briefing.webm', '7-12-12- White House Press Briefing.webm', '7-14-14- White House Press Briefing.webm', '7-15-14- White House Press Briefing.webm', '7-16-14- White House Press Briefing.webm', '7-17-15- White House Press Briefing.webm', '7-18-12- White House Press Briefing.webm', '7-2-14- White House Press Briefing.webm', '7-21-14- White House Press Briefing.webm', '7-22-14- White House Press Briefing.webm', '7-22-15- White House Press Briefing.webm', '7-23-15- White House Press Briefing.webm', '7-25-14- White House Press Briefing.webm', '7-26-12- White House Press Briefing.webm', '7-27-12- White House Press Briefing.webm', '7-28-14- White House Press Briefing.webm', '7-29-14- White House Press Briefing.webm', '7-3-14- White House Press Briefing.webm', '7-31-12- White House Press Briefing.webm', '7-31-14- White House Press Briefing.webm', '7-31-15- White House Press Briefing.webm', '7-7-14- White House Press Briefing.webm', '7-7-15- White House Press Briefing.webm', '7-8-14- White House Press Briefing.webm', '7-9-12- White House Press Briefing.webm', '8-10-12- White House Press Briefing.webm', '8-16-12- White House Press Briefing.webm', '8-17-12- Press Briefing by Deputy Press Secretary Josh Earnest.webm', '8-20-12- White House Press Briefing.webm', '8-23-12- White House Press Briefing.webm', '8-24-15- White House Press Briefing.webm', '8-27-14- White House Press Briefing.webm', '8-3-15- White House Press Briefing.webm', '8-30-12- White House Press Briefing.webm', '8-4-14- White House Press Briefing.webm', '8-5-14- White House Press Briefing.webm', '8-6-12- White House Press Briefing.webm', '8-6-15- White House Press Briefing.webm', '8-7-12- White House Press Briefing.webm', '8-7-14- White House Press Briefing.webm', '8-7-15- White House Press Briefing.webm', '8-8-14- White House Press Briefing.webm', '9-10-15- White House Press Briefing.webm', '9-11-14- White House Press Briefing.webm', '9-11-15- White House Press Briefing.webm', '9-12-14- White House Press Briefing.webm', '9-14-12- White House Press Briefing.webm', '9-15-14- White House Press Briefing.webm', '9-15-15- White House Press Briefing.webm', '9-18-12- White House Press Briefing.webm', '9-17-15- White House Press Briefing.webm', '9-18-14- White House Press Briefing.webm', '9-18-15- White House Press Briefing.webm', '9-19-12- White House Press Briefing.webm', '9-19-14- White House Press Briefing.webm', '9-2-14- White House Press Briefing.webm', '9-22-14- White House Press Briefing.webm', '9-24-12- White House Press Briefing.webm', '9-26-14- White House Press Briefing.webm', '9-29-14- White House Press Briefing.webm', '9-29-16- White House Press Briefing.webm', '9-30-14- White House Press Briefing.webm', '9-8-14- White House Press Briefing.webm', '9-8-15- White House Press Briefing.webm', '9-9-14- White House Press Briefing.webm', 'Barack Obama Speech \"Volcker Rule\" 2010-01-21.ogv', \"2013-01-26 President Obama's Weekly Address.ogv\", \"2013-02-02 President Obama's Weekly Address.ogv\", 'Press Briefing by Deputy Press Secretary Josh Earnest.webm', \"President Obama's Bilateral Meeting with Prime Minister Yatsenyuk of Ukraine.webm\", 'President Obama Speaks to the Press.webm', 'President Obama speaks on U.S. intelligence programs 2014-01-17.webm', 'President Obama Speaks on the Situation in Iraq.webm', 'President Obama Makes a Statement on Iraq - 080714.ogv', 'President Obama delivers a statement on Ukraine on 2014-03-17.webm', 'President Obama delivers a statement on Ukraine on 2014-02-28.webm', 'President Obama Announces Josh Earnest Will Replace Jay Carney.webm', \"2009-04-25 President Obama's Weekly Address.ogv\", \"2009-05-09 President Obama's Weekly Address.ogv\", \"2009-05-16 President Obama's Weekly Address.ogv\", \"2009-05-23 President Obama's Weekly Address.ogv\", \"2009-05-30 President Obama's Weekly Address.ogv\", \"2009-06-13 President Obama's Weekly Address.ogv\", \"2009-06-20 President Obama's Weekly Address.ogv\", \"2009-06-27 President Obama's Weekly Address.ogv\", \"2009-07-04 President Obama's Weekly Address.ogv\", \"2009-07-11 President Obama's Weekly Address.ogv\", \"2009-07-18 President Obama's Weekly Address.ogv\", \"2009-07-25 President Obama's Weekly Address.ogv\", \"2009-08-01 President Obama's Weekly Address.ogv\", \"2009-08-08 President Obama's Weekly Address.ogv\", \"2009-08-15 President Obama's Weekly Address.ogv\", \"2009-08-22 President Obama's Weekly Address.ogv\", 'How the Maroon ancestors hid rice grains in their hair.webm', \"2009-08-29 President Obama's Weekly Address.ogv\", \"2009-09-05 President Obama's Weekly Address.ogv\", \"2009-09-12 President Obama's Weekly Address.ogv\", \"2009-10-31 President Obama's Weekly Address.ogv\", \"2012-01-07 President Obama's Weekly Address.ogv\", \"2011-12-31 President Obama's Weekly Address.ogv\", \"2011-12-24 President Obama's Weekly Address.ogv\", 'President Obama Addresses the Nation on Syria on 2013-09-10.webm', \"2009-09-19 President Obama's Weekly Address.ogv\", \"2009-09-26 President Obama's Weekly Address.ogv\", \"2009-10-03 President Obama's Weekly Address.ogv\", \"2009-10-17 President Obama's Weekly Address.ogv\", \"2009-10-24 President Obama's Weekly Address.ogv\", \"2009-11-07 President Obama's Weekly Address.ogv\", \"2009-11-14 President Obama's Weekly Address.ogv\", \"2009-11-21 President Obama's Weekly Address.ogv\", \"2009-11-28 President Obama's Weekly Address.ogv\", \"2009-12-05 President Obama's Weekly Address.ogv\", '1-18-12- White House Press Briefing.webm', \"2009-12-12 President Obama's Weekly Address.ogv\", \"2009-12-24 President Obama's Weekly Address.ogv\", 'Limes.webm', 'Lift Every Voice and Sing - United States Navy Band.webm', \"2011-04-16 President Obama's Weekly Address.ogv\", \"2011-04-23 President Obama's Weekly Address.ogv\", \"2011-04-30 President Obama's Weekly Address.ogv\", \"2011-05-07 President Obama's Weekly Address.ogv\", \"2011-08-27 President Obama's Weekly Address.ogv\", \"2015-12-12 President Obama's Weekly Address.webm\", \"2015-12-19 President Obama's Weekly Address.webm\", \"2015-12-25 President Obama's Weekly Address.webm\", \"2016-01-01 President Obama's Weekly Address.webm\", \"2016-01-09 President Obama's Weekly Address.webm\", \"2016-01-16 President Obama's Weekly Address.webm\", \"2016-01-23 President Obama's Weekly Address.webm\", \"2017-01-14 President Obama's Weekly Address.webm\", 'Demonstration of MiRo at The University of Sheffield.webm', 'Uncorking and first pour of Wild Turkey 101 bottle - 2021-10-15 - Andy Mabbett.mp3', \"2011-09-03 President Obama's Weekly Address.ogv\", \"2016-01-30 President Obama's Weekly Address.webm\", \"2016-02-06 President Obama's Weekly Address.webm\", \"2016-02-13 President Obama's Weekly Address.webm\", \"2016-02-20 President Obama's Weekly Address.webm\", \"2016-02-27 President Obama's Weekly Address.webm\", \"2016-03-05 President Obama's Weekly Address.webm\", \"2016-03-12 President Obama's Weekly Address.webm\", \"2016-03-19 President Obama's Weekly Address.webm\", \"2016-04-02 President Obama's Weekly Address.webm\", \"2016-04-09 President Obama's Weekly Address.webm\", \"2016-04-16 President Obama's Weekly Address.webm\", \"2016-04-23 President Obama's Weekly Address.webm\", \"2016-04-30 President Obama's Weekly Address.webm\", \"2016-05-07 President Obama's Weekly Address.webm\", \"2016-05-14 President Obama's Weekly Address.webm\", \"2016-05-21 President Obama's Weekly Address.webm\", 'Vita Romae (Latina ecclesiastica).webm', \"2016-05-28 President Obama's Weekly Address.webm\", \"2016-06-04 President Obama's Weekly Address.webm\", \"2016-06-11 President Obama's Weekly Address.webm\", \"2016-06-25 President Obama's Weekly Address.webm\", \"2011-09-10 President Obama's Weekly Address.ogv\", \"2011-09-17 President Obama's Weekly Address.ogv\", \"2011-09-24 President Obama's Weekly Address.ogv\", \"2011-10-01 President Obama's Weekly Address.ogv\", \"2011-10-08 President Obama's Weekly Address.ogv\", \"2011-10-15 President Obama's Weekly Address.ogv\", \"2011-10-29 President Obama's Weekly Address.ogv\", \"2011-01-01 President Obama's Weekly Address.ogv\", \"2011-01-08 President Obama's Weekly Address.ogv\", \"2011-01-15 President Obama's Weekly Address.ogv\", \"2011-01-22 President Obama's Weekly Address.ogv\", \"2011-02-05 President Obama's Weekly Address.ogv\", \"2011-01-29 President Obama's Weekly Address.ogv\", \"2011-02-12 President Obama's Weekly Address.ogv\", \"2011-02-19 President Obama's Weekly Address.ogv\", \"2011-02-26 President Obama's Weekly Address.ogv\", \"2011-03-05 President Obama's Weekly Address.ogv\", \"2011-03-12 President Obama's Weekly Address.ogv\", \"2011-03-26 President Obama's Weekly Address.ogv\", \"2011-04-02 President Obama's Weekly Address.ogv\", \"2011-04-09 President Obama's Weekly Address.ogv\", \"2011-05-14 President Obama's Weekly Address.ogv\", \"2011-05-21 President Obama's Weekly Address.ogv\", \"2011-05-28 President Obama's Weekly Address.ogv\", \"2011-06-04 President Obama's Weekly Address.ogv\", \"2011-06-11 President Obama's Weekly Address.ogv\", \"2011-06-18 President Obama's Weekly Address.ogv\", \"2011-06-25 President Obama's Weekly Address.ogv\", \"2011-07-02 President Obama's Weekly Address.ogv\", \"2011-07-09 President Obama's Weekly Address.ogv\", \"2011-07-16 President Obama's Weekly Address.ogv\", \"2011-07-23 President Obama's Weekly Address.ogv\", \"2011-07-30 President Obama's Weekly Address.ogv\", \"2011-08-06 President Obama's Weekly Address.ogv\", \"2011-11-05 President Obama's Weekly Address (Joe Biden).ogv\", \"2011-11-19 President Obama's Weekly Address.ogv\", \"2011-11-24 President Obama's Weekly Address.ogv\", \"Oi hodut' son - Ой ходить сон, коло вікон - Kate Orange.webm\", 'Ru-разум.ogg', \"2012-01-14 President Obama's Weekly Address.ogv\", \"2012-01-21 President Obama's Weekly Address.ogv\", \"2012-01-28 President Obama's Weekly Address.ogv\", \"2012-02-04 President Obama's Weekly Address.ogv\", \"2012-02-11 President Obama's Weekly Address.ogv\", \"2012-02-18 President Obama's Weekly Address.ogv\", \"2012-02-25 President Obama's Weekly Address.ogv\", \"2012-03-03 President Obama's Weekly Address.ogv\", \"2012-03-10 President Obama's Weekly Address.ogv\", \"2012-03-17 President Obama's Weekly Address.ogv\", \"2012-03-24 President Obama's Weekly Address.ogv\", \"2012-03-31 President Obama's Weekly Address.ogv\", \"2012-04-14 President Obama's Weekly Address.ogv\", \"2012-04-21 President Obama's Weekly Address.ogv\", \"2012-04-28 President Obama's Weekly Address.ogv\", \"2012-05-05 President Obama's Weekly Address.ogv\", \"2012-05-12 President Obama's Weekly Address.ogv\", \"2012-05-19 President Obama's Weekly Address.ogv\", \"2012-05-26 President Obama's Weekly Address.ogv\", \"2012-06-02 President Obama's Weekly Address.ogv\", \"2012-06-09 President Obama's Weekly Address.ogv\", \"2012-06-16 President Obama's Weekly Address.ogv\", \"2012-06-23 President Obama's Weekly Address.ogv\", \"2012-06-30 President Obama's Weekly Address.ogv\", \"2012-07-07 President Obama's Weekly Address.ogv\", \"2012-07-14 President Obama's Weekly Address.ogv\", \"2012-07-28 President Obama's Weekly Address.ogv\", 'State Anthem of the Soviet Union (1984).wav', \"2012-08-04 President Obama's Weekly Address.ogv\", \"2012-08-11 President Obama's Weekly Address.ogv\", \"2012-08-18 President Obama's Weekly Address.ogv\", \"2012-08-25 President Obama's Weekly Address.ogv\", \"2012-09-01 President Obama's Weekly Address.ogv\", \"2012-09-08 President Obama's Weekly Address.ogv\", \"2012-09-15 President Obama's Weekly Address.ogv\", \"2012-09-22 President Obama's Weekly Address.ogv\", \"2012-09-29 President Obama's Weekly Address.ogv\", \"2012-10-06 President Obama's Weekly Address.ogv\", \"2012-10-13 President Obama's Weekly Address.ogv\", \"2012-10-20 President Obama's Weekly Address.ogv\", \"2012-10-27 President Obama's Weekly Address.ogv\", \"2012-11-03 President Obama's Weekly Address.ogv\", \"2012-11-10 President Obama's Weekly Address.ogv\", \"2012-11-17 President Obama's Weekly Address.ogv\", \"2012-11-22 President Obama's Weekly Address.ogv\", \"2012-12-08 President Obama's Weekly Address.ogv\", \"2012-12-15 President Obama's Weekly Address.ogv\", \"2012-12-22 President Obama's Weekly Address.ogv\", \"2012-12-29 President Obama's Weekly Address.ogv\", \"2013-01-05 President Obama's Weekly Address.ogv\", \"2013-01-12 President Obama's Weekly Address.ogv\", \"2013-01-19 President Obama's Weekly Address.ogv\", \"2013-02-09 President Obama's Weekly Address.ogv\", \"2013-02-16 President Obama's Weekly Address.ogv\", \"2013-02-23 President Obama's Weekly Address.ogv\", \"2013-03-02 President Obama's Weekly Address.ogv\", \"2013-03-09 President Obama's Weekly Address.ogv\", \"2013-03-16 President Obama's Weekly Address.ogv\", \"2013-03-23 President Obama's Weekly Address.ogv\", \"2013-03-30 President Obama's Weekly Address.ogv\", \"2013-04-06 President Obama's Weekly Address.ogv\", \"2013-04-13 President Obama's Weekly Address.ogv\", \"2013-04-20 President Obama's Weekly Address.ogv\", \"2013-04-27 President Obama's Weekly Address.ogv\", \"2013-05-04 President Obama's Weekly Address.ogv\", \"2013-05-11 President Obama's Weekly Address.ogv\", \"2013-05-18 President Obama's Weekly Address.ogv\", \"2013-05-25 President Obama's Weekly Address.ogv\", \"2013-05-25 President Obama's Weekly Address.webm\", \"2013-01-21 President Obama's Inaugural Address.ogv\", 'Boris Yeltsin - 1999-12-31.ogv', 'How to use Cat-a-lot.webm', \"2013-06-01 President Obama's Weekly Address.ogv\", \"2013-06-08 President Obama's Weekly Address.ogv\", \"2013-06-15 President Obama's Weekly Address.ogv\", \"2013-06-22 President Obama's Weekly Address.ogv\", \"2013-06-29 President Obama's Weekly Address.ogv\", \"2013-07-04 President Obama's Weekly Address.ogv\", \"2013-07-13 President Obama's Weekly Address.ogv\", \"2013-07-20 President Obama's Weekly Address.webm\", \"2013-07-27 President Obama's Weekly Address.webm\", \"2013-08-03 President Obama's Weekly Address.ogv\", \"2013-08-03 President Obama's Weekly Address.webm\", \"2013-08-10 President Obama's Weekly Address.webm\", \"2013-08-17 President Obama's Weekly Address.webm\", \"2013-08-31 President Obama's Weekly Address.webm\", \"2013-09-07 President Obama's Weekly Address.webm\", \"2013-09-14 President Obama's Weekly Address.webm\", \"2013-09-21 President Obama's Weekly Address.webm\", \"2013-10-05 President Obama's Weekly Address.webm\", \"2013-10-19 President Obama's Weekly Address.webm\", \"2013-10-26 President Obama's Weekly Address.webm\", \"2013-11-02 President Obama's Weekly Address.webm\", \"2013-11-09 President Obama's Weekly Address.webm\", \"2013-11-16 President Obama's Weekly Address.webm\", \"2013-11-23 President Obama's Weekly Address.webm\", \"2013-11-28 President Obama's Weekly Address.webm\", \"2013-12-07 President Obama's Weekly Address.webm\", \"2013-12-21 President Obama's Weekly Address.webm\", \"2013-12-25 President Obama's Weekly Address.webm\", \"2013-10-12 President Obama's Weekly Address.webm\", '2013 State of the Union Address.ogv', \"Les douze travaux d'Hercule (1910).webm\", 'An Eastern Westerner (1920).webm', '2LO Calling - 1922.mp3', 'Lenin in October (film) 1937.webm', '20090131 Weekly Address.ogv', 'Weekly Address (2009-01-24), small.ogv', '20090117 WeeklyAddress changegov.ogv', '20090117 democratic tradition.ogv', '082810 WeeklyAddress OBAMA.webm', \"2010-01-02 President Obama's Weekly Address.ogv\", \"2010-01-09 President Obama's Weekly Address.ogv\", \"2010-01-16 President Obama's Weekly Address.ogv\", \"2010-01-23 President Obama's Weekly Address.ogv\", \"2010-01-30 President Obama's Weekly Address.ogv\", \"2010-02-06 President Obama's Weekly Address.ogv\", \"2010-02-13 President Obama's Weekly Address.ogv\", \"2010-02-20 President Obama's Weekly Address.ogv\", \"2010-02-27 President Obama's Weekly Address.ogv\", \"2010-03-06 President Obama's Weekly Address.ogv\", \"2010-03-13 President Obama's Weekly Address.ogv\", \"2010-03-20 President Obama's Weekly Address.ogv\", \"2010-03-27 President Obama's Weekly Address.ogv\", \"2010-04-03 President Obama's Weekly Address.ogv\", \"2010-04-10 President Obama's Weekly Address.ogv\", \"2010-04-17 President Obama's Weekly Address.ogv\", \"2010-04-24 President Obama's Weekly Address.ogv\", \"2010-05-01 President Obama's Weekly Address.ogv\", \"2010-05-08 President Obama's Weekly Address.ogv\", \"2010-05-15 President Obama's Weekly Address.ogv\", \"2010-05-22 President Obama's Weekly Address.ogv\", \"2010-05-29 President Obama's Weekly Address.ogv\", \"2010-06-12 President Obama's Weekly Address.ogv\", \"2010-06-19 President Obama's Weekly Address.ogv\", \"2010-06-26 President Obama's Weekly Address.ogv\", \"2010-07-03 President Obama's Weekly Address.ogv\", \"2010-07-10 President Obama's Weekly Address.ogv\", \"2010-07-17 President Obama's Weekly Address.ogv\", 'Introduction to Maryana Iskander (extended).webm', \"2010-07-24 President Obama's Weekly Address.ogv\", 'Introduction to Maryana Iskander.webm', \"2010-08-07 President Obama's Weekly Address.ogv\", \"2010-08-14 President Obama's Weekly Address.ogv\", \"2010-08-21 President Obama's Weekly Address.ogv\", \"2010-08-28 President Obama's Weekly Address.ogv\", \"2010-09-04 President Obama's Weekly Address.ogv\", \"2010-09-11 President Obama's Weekly Address.ogv\", \"2010-09-18 President Obama's Weekly Address.ogv\", \"2010-09-25 President Obama's Weekly Address.ogv\", \"2010-10-02 President Obama's Weekly Address.ogv\", \"2010-10-09 President Obama's Weekly Address.ogv\", \"2010-10-16 President Obama's Weekly Address.ogv\", \"2010-10-23 President Obama's Weekly Address.ogv\", \"2010-10-30 President Obama's Weekly Address.ogv\", \"2010-11-06 President Obama's Weekly Address.ogv\", \"2010-11-13 President Obama's Weekly Address.ogv\", \"2010-11-20 President Obama's Weekly Address.ogv\", \"2010-11-25 President Obama's Weekly Address.ogv\", \"2010-12-04 President Obama's Weekly Address.ogv\", \"2010-12-11 President Obama's Weekly Address.ogv\", \"2010-12-18 President Obama's Weekly Address.ogv\", \"2010-12-25 President Obama's Weekly Address.ogv\", \"2014-01-11 President Obama's Weekly Address.webm\", \"2014-03-15 President Obama's Weekly Address.webm\", \"2014-03-22 President Obama's Weekly Address.webm\", \"2014-03-29 President Obama's Weekly Address.webm\", \"2014-04-05 President Obama's Weekly Address.webm\", \"2014-04-12 President Obama's Weekly Address.webm\", \"2014-04-19 President Obama's Weekly Address.webm\", \"2014-04-26 President Obama's Weekly Address.webm\", \"2014-10-11 President Obama's Weekly Address.webm\", \"2014-10-18 President Obama's Weekly Address.webm\", \"2014-11-01 President Obama's Weekly Address.webm\", \"2014-11-08 President Obama's Weekly Address.webm\", \"2014-11-15 President Obama's Weekly Address.webm\", \"2014-11-22 President Obama's Weekly Address.webm\", \"2014-11-27 President Obama's Weekly Address.webm\", \"2014-12-06 President Obama's Weekly Address.webm\", \"2015-01-10 President Obama's Weekly Address.webm\", \"2015-01-31 President Obama's Weekly Address.webm\", \"2015-02-07 President Obama's Weekly Address.webm\", \"2015-02-14 President Obama's Weekly Address.webm\", \"2015-02-21 President Obama's Weekly Address.webm\", \"2015-02-28 President Obama's Weekly Address.webm\", \"2015-03-07 President Obama's Weekly Address.webm\", \"2015-03-21 President Obama's Weekly Address.webm\", 'Ba-Ишембай.oga', \"2015-04-04 President Obama's Weekly Address.webm\", \"2015-04-11 President Obama's Weekly Address.webm\", \"2015-04-18 President Obama's Weekly Address.webm\", \"2015-04-25 President Obama's Weekly Address.webm\", \"2015-05-02 President Obama's Weekly Address.webm\", \"2015-05-08 President Obama's Weekly Address.webm\", \"2015-05-16 President Obama's Weekly Address.webm\", \"2015-05-23 President Obama's Weekly Address.webm\", \"2015-05-30 President Obama's Weekly Address.webm\", \"2015-06-06 President Obama's Weekly Address.webm\", \"2015-06-13 President Obama's Weekly Address.webm\", \"2015-06-20 President Obama's Weekly Address.webm\", \"2015-06-27 President Obama's Weekly Address.webm\", \"2015-07-04 President Obama's Weekly Address.webm\", \"2015-07-11 President Obama's Weekly Address.webm\", \"2015-07-18 President Obama's Weekly Address.webm\", \"2015-07-25 President Obama's Weekly Address.webm\", \"2015-08-01 President Obama's Weekly Address.webm\", \"2015-08-08 President Obama's Weekly Address.webm\", \"2015-08-15 President Obama's Weekly Address.webm\", \"2015-08-22 President Obama's Weekly Address.webm\", \"2015-08-29 President Obama's Weekly Address.webm\", \"2015-09-05 President Obama's Weekly Address.webm\", \"2015-09-12 President Obama's Weekly Address.webm\", \"2015-09-19 President Obama's Weekly Address.webm\", \"2015-09-26 President Obama's Weekly Address.webm\", \"2015-10-03 President Obama's Weekly Address.webm\", \"2015-10-10 President Obama's Weekly Address.webm\", \"2015-10-17 President Obama's Weekly Address.webm\", \"2015-10-24 President Obama's Weekly Address.webm\", \"2015-10-31 President Obama's Weekly Address.webm\", \"2015-11-07 President Obama's Weekly Address.webm\", \"2015-11-14 President Obama's Weekly Address.webm\", \"2015-11-21 President Obama's Weekly Address.webm\", \"2015-11-26 President Obama's Weekly Address.webm\", \"2015-12-05 President Obama's Weekly Address.webm\", \"President Obama's Remarks on Iran (with Persian subtitles).webm\", \"President Obama's Remarks on Iran at His Press Conference (with Arabic Subtitles).webm\", 'Press Briefing by Press Secretary Josh Earnest.webm', '8-29-14- White House Press Briefing.webm', '8-25-14- White House Press Briefing.webm', '7-7-10- White House Press Briefing.webm', '7-21-09- White House Press Briefing.webm', '3-23-15- White House Press Briefing.webm', 'On the phone- Russell Gage.ogg', \"Aleksej Naval'nyij voice.oga\", 'Leonid Volkov at the Rally-concert in support of Alexey Navalny (6 September 2013).webm', 'Strictly Personal (1945).webm', 'Wiki Lubi Zabytki.webm', 'Wikimedia Italia - WikiGuida 1 - Wikipedia - Parte 1.ogv', 'Barack Obama 2011 Tucson, Arizona memorial speech.webm', 'Elephants Dream 1024.avi.212to221.2w784vbr900soft-targetabr112.ogv', 'Vaccine distribution.webm', 'Transposing the EU Copyright Reform in 28plus countries.webm', 'Section Translation-New Ways to Contribute on Mobile Devices.webm', 'Mapping the present and future of the Wiki philosophy challenges and opportunities.webm', '100 years of Weather Observations from the Meteorological Service of Canada in Wikimedia Commons.webm', 'Lithuania pronunciation RP.ogg', 'MediaWiki Translate Extenstion Tutorial 1.webm', 'En-ne-wine whine.ogg', 'President Obama Speaks at BET’s “Love and Happiness - A Musical Experience\".webm', 'He-EhyehAsherEhyeh.ogg', 'West Wing Week- 06-03-16 or, “Hello Elkhart”.webm', 'West Wing Week 4-22-16 or, “13 Hours, 15 Minutes”.webm', 'President Obama and Ang San Suu Kyi Hold a Press Conference.webm', '2021 FOIA request guide.webm', '¿Qué es Wikimedia Commons?.webm', 'Hatikva vocal.ogg', 'First Lady Michelle Obama Delivers Commencement Address at MLK, JR. Magnet High School Commencement.webm', 'Happy Holidays from The White House.webm', 'West Wing Week 09-04-15 or, “Let’s Go to Alaska!”.webm', 'West Wing Week- 07-03-15 or, “Amazing Grace”.webm', 'To translate or not to translate by the machine is the question.webm', 'West Wing Week 3-18-16 or, “I’ve Made My Decision”.webm', 'West Wing Week 3-25-16 or, “¡Hola, Cuba!”.webm', 'West Wing Week 3-11-16 or, “You’d Choose Today”.webm', 'West Wing Week 3-7-14 or, \"Look Who\\'s In Our Room\".webm', \"West Wing Week 3-18-16 or, 'I've Made My Decision'.webm\", 'West Wing Week- 05-01-2015 or, “I Think That Works!”.webm', 'The President in Prague.webm', 'West Wing Week- 05-15-2015 or, “The 50th State!”.webm', 'President Obama Delivers Remarks With Prime Minister Abe.webm', 'President Obama Speaks on Jobs in America’s Solar Energy.webm', 'President Obama and President Peña Nieto Hold a Joint Press Conference.webm', 'President Obama Speaks to Troops at Marine Corps Base Hawaii.webm', 'Jennifer Doudna Nobel Prize medal presentation.webm', 'Listening in Strasbourg, France HD.webm', 'MandelbulbPower 00000-10501 Quality0 VP9 4500p60 20210918.webm', 'The First Lady announces the “Better Make Room” Initiative.webm', '1-15-15- White House Press Briefing.webm', '1-12-17- White House Press Briefing.webm', 'Vice President Biden Hosts a Luncheon for President Xi of the People’s Republic of China.webm', \"The Final Minutes of President Obama's Farewell Address- Yes, we can..webm\", 'The Record- President Obama on Climate and Energy.webm', '20170106 FLOTUS Reach Higher Counselor Year HD.webm', 'The Pleasure of Kissing - School Of Life.webm', 'MandelbulbRot 00000-10501 VP9 slow lossless.webm', 'The Dover Boys at Pimento University.webm', 'State Ceremonial Music - God Save the Queen.ogg', 'The Dover Boys at Pimento University 1080p.webm', 'STS-125 Space Shuttle Atlantis Landing and Turnaround.webm', 'STS-1 File Footage for 40th Anniversary.webm', 'W. A. Mozart - Requiem, K. 626 (Bruno Walter, Wiener Philharmoniker, Wiener Staatsopernchor, 1956) - 08. Lacrimosa.ogg', 'BurningShip Wiki x264 CRF4 20210820 4500p60 002.webm', 'President Biden Participates Virtually in the Annual U.S.- ASEAN Summit.webm', 'President Biden Hosts a Meeting with Business Leaders and CEOs on Addressing the Debt Limit.webm', 'President Biden Delivers Remarks on the September Jobs Report.webm', 'President Biden Delivers Remarks on Efforts to Address Global Transportation Supply Chain Bottleneck.webm', 'Vice President Harris Meets with Mia Amor Mottley, Prime Minister of Barbados.webm', 'President Biden Delivers Remarks on the Build Back Better Agenda & Bipartisan Infrastructure Deal.webm', 'President Biden Delivers Remarks About the Path Forward for his Economic Agenda.webm', 'President Biden Provides an Update on the COVID-19 Response and the Vaccination Program.webm', 'M morse code.ogg', 'President Obama Hosts a St. Patrick’s Day Reception.webm', 'The President and First Lady Launch the “Let Girls Learn” Initiative.webm', '“It’s a prototype!” Tune in for President Obama’s Last Science Fair, April 13th.webm', 'Launch of Delta 319 with STEREO (KSC-06-S-00220).webm', 'The Ludwig Wittgenstein Project - Introduzione.ogg', 'From Encyclopedia to Big Data Past, present and future of Wikipedia data as a research source.webm', 'Steamboat Bill Jr. (1928).webm', 'A Sixth Part of the World (1926).webm', 'Interview with Ton Roosendaal introducing Project Gooseberry.ogv', 'Sprite Fright - Blender Open Movie-full movie.webm', 'The Power of Iceland.webm', '112.AlIkhlas-MisharyRashedAlafasy.ogg', 'Kinonedelja No. 4 (1918).webm', 'A variety of approaches to teaching students in Wikimedia projects.webm', 'The Afrocine Project Learnings from organizing a Pan-African Campaign.webm', 'Building a Succesful Wikimedia Community of African Students.webm', 'Co-creating pedagogical strategies with teachers- Wikimedia Chile’s Education program experience during Covid-19 pandemic.webm', 'Gender inequalities in the Catalan Wikipedia.webm', 'An overview of the COVID-19-related content of Wikimedia projects.webm', 'Creating a Wiki Time Capsule and the first 24 hour Global Edit-a-thon.webm', 'After the lifting of the block Case study of Turkey.webm', 'Wikipedia is Gamified- Prove me wrong.webm', 'Wikispore and Innovating Free Knowledge.webm', 'Can we rid Wikipedia of its content gender gap Views from Women in Red.webm', \"English as a lingua franca of the Wikimedia movement how do we ensure people's inclusion.webm\", 'How can I help Reviving a wiki of which I do not speak the language.webm', 'Internet Archive and Wikimedia a virtuous collaboration.webm', 'Makumbusho a powerful tool to mobilize local communities and facilitate partnerships with Museums.webm', 'Documenting social movements through the Wikimedia Projects.webm', 'Contribution Gamification in Wikimedia Projects - The Chinese Wikipedia Experience.webm', 'Come on, It’s Wikipedia, not Westeros.webm', 'We write Wikipedia. Participation of women in the free and collaborative encyclopedia.webm', \"Gawa the new tool for centralizing biographies to be created and improved in Côte d'Ivoire.webm\", 'Movement Strategy 2021 Crash Course.webm', 'Integrating Wikidata into the Wikimedia projects.webm', 'Москва.ogg', 'Raising the voices of indigenous communities from Latin America through Wikimedia Projects.webm', 'Altgriechisch2.ogg', \"The 2016 Kids' State Dinner.webm\", 'Yeager supersonic flight 1947.ogg', 'Wiki loves monuments.ogg', 'Nationals Government went back to Nanjing.ogg', 'NASA 2019 - Keeping the Promisse.webm', 'West Wing Week- 2-25-11 or \"Don\\'t Bump My Atoms\".webm', 'West Wing Week- 5-19-11 or \"The Commencement at Booker T\".webm', 'West Wing Week- 4-29-11 or \"Final Adjustments\".webm', 'West Wing Week 07-1-11 or \"Magic Mountains and Volcanoes\".webm', 'West Wing Week 05-22-15 or, “@POTUS”.webm', 'West Wing Week- 09-11-2015 or, “Heads Up America”.webm', 'West Wing Week- 04-17-2015 or, “The Quintessential Sounds”.webm', 'West Wing Week- 06-26-15 or, “This Is Healthcare In America”.webm', 'West Wing Week- 10-23-2015 or, “I Love Astronomy Night!”.webm', 'West Wing Week 08-15-14 or, “Mikey Goes to Washington\".webm', 'West Wing Week- 8-26-16 or, “You’re Not Alone”.webm', 'West Wing Week- 07-08-16 or, “This is an American Issue”.webm', 'West Wing Week- 9-25-15 or, “Our Common Home”.webm', 'West Wing Week- 02-05-2016 or, “Will They Call- Or Text-”.webm', 'West Wing Week- 10-16-2015 or, “The American Soundtrack”.webm', 'West Wing Week 11-18-16 or, “Our Place In The World”.webm', 'West Wing Week 10-30-15 or, “The Presidential Wave”.webm', 'West Wing Week- 02-26-2015 or, “’Where Are My Hawaiians-’”.webm', 'West Wing Week- 07-31-15 or, “Jambo Kenya”.webm', 'West Wing Week 1-15-16 or, “Science the Heck Out of This”.webm', 'West Wing Week- 02-12-2016 or, “I\\'m Gonna Put Some Mustard on This One\".webm', 'West Wing Week- 3-30-2012 or \"I\\'ve Got Seoul\".webm', 'West Wing Week- 07-06-12 or \"The Freedom Everybody is Looking for\".webm', 'West Wing Week- 06-15-12 or \"The Fatherhood Buzz\".webm', 'West Wing Week 01-25-13 or- \"Behind the Scenes- Inauguration 2013\".webm', 'West Wing Week- 04-05-13 or \"The Scientist-in-Chief\".webm', 'West Wing Week 02-07-14 or \"POTUS Cam!\".webm', 'West Wing Week 2-14-14 or, \"The Red, White, and Blue -- and the Blue, White, and Red\".webm', 'West Wing Week 2-28-14 or, \"I Am My Brother\\'s Keeper\".webm', 'West Wing Week 05-23-14 or, \"Straight A\\'s- Woah!\".webm', 'West Wing Week 6-27-14 or, \"POTUS Replies\".webm', 'West Wing Week 07-11-14 or, \"Responding to Your Letter...In Person!\".webm', 'West Wing Week 07-18-14 or, \"Where Are You Going to Go Build Your Widgets-\".webm', 'West Wing Week 11-07-14 or, \"I\\'m Uncle Barack\".webm', 'West Wing Week- 01-30-15 or, “Namaste Obama”.webm', 'West Wing Week- 03-06-2015 or, “Just a Souvenir!”.webm', 'West Wing Week- 02-20-15 or, “Hello, ‘Chiberia!’”.webm', 'West Wing Week- 02-13-15 or, “Just Say the Word”.webm', 'West Wing Week- 04-10-15 or, \"A Good Deal\".webm', 'Happy 5th Birthday, West Wing Week!.webm', 'West Wing Week- 03-20-2015 or, “See ya, Sparkle!”.webm', 'West Wing Week- 03-27-2015 or, “The Magic Page”.webm', 'West Wing Week- 03-13-2015 or, “The Single Most Powerful Word”.webm', 'West Wing Week- 08-28-15 or, \"From the Telegraph to the Smartphone\".webm', 'West Wing Week- 06-05-15 or, \"Two Rules\".webm', 'West Wing Week- 11-13-2015 or, \"There\\'s a Fox Somewhere on the Grounds\".webm', 'West Wing Week- 1-1-2016 or, “U.S. Mission Manila”.webm', 'West Wing Week 2-26-16 or, \"Let’s Go Ahead and Get This Thing Done”.webm', 'West Wing Week- 01-22-2016 or, “Say Spinach, Say Kale\".webm', 'West Wing Week 5-6-16 or, “But Is It-”.webm', \"West Wing Week 4-29-16 or, “Let's Have a Conversation”.webm\", 'West Wing Week 4-15-16 or, “I Understand We Have a Live Chicken!\".webm', 'West Wing Week 4-8-16 or, “Also Known as Lefkós Oíkos\".webm', 'West Wing Week 07-01-2016 or, “Pop and His People”.webm', 'West Wing Week 6-24-16 or, \"How Cool Is This-”.webm', 'West Wing Week 6-17-16 or, \"We Will Stand with Orlando”.webm', 'West Wing Week 6-10-16 or, \"Where’s My Music-”.webm', 'West Wing Week- 09-23-16 or “We’ll Photoshop ‘Em In”.webm', 'West Wing Week- 9-16-16 or, “This is Barack Obama”.webm', 'West Wing Week- 09-09-16 or \"Whose coconut is this-\".webm', 'West Wing Week 8-05-16 or, “Little Red Dot”.webm', 'West Wing Week- 12-02-16 or, \"Push a Button and it\\'s Electrified!\".webm', 'West Wing Week- 12-09-16 or, “How Joe Walsh Cleans Up”.webm', 'West Wing Week- 12-16-16 or, \"We\\'ll Meet You on the Other Side.\".webm', 'Hurricane Connie 1955.ogg', 'Operation Upshot test.ogg', 'Met koeiensprongen het voorjaar in Weeknummer 59-19 - Open Beelden - 11568.ogv', 'This is scoring.OGG', 'This is wicket-keeping.OGG', 'Execution of Mussolini (1945).ogg', 'Algier1954.ogg', \"OYME - Tyushtya's song.webm\", 'Quaternion4D20211111 W-Wachstum VP9 medium 240MBit 0000-4000.webm', 'LL-Q1860 (eng)-Vealhurl-honeydew.wav', 'Quaternion4DCUT20211115 W-Wachstum x265 medium lossless 0000-4000.webm', 'Video on Regional and Thematic Hubs, by Asaf Bartov, November 2021.webm', 'Winding the mechanism that powers Big Ben.webm', 'Wikimedia Foundation - Open the Knowledge - November 2021.webm', 'President Trump visits the National Archives for Constitution Day.webm', 'President Biden Meets with His Excellency Xi Jinping, President of the People’s Republic of China.webm', 'President Trump Honors Bay of Pigs Veterans.webm', 'President Trump Delivers Remarks on Environmental Accomplishments for the People of Florida.webm', 'President Trump Protects the Environment while the Radical Left Does Nothing.webm', 'President Trump and the First Lady Participate in the 2018 National Christmas Tree Lighting Ceremony.webm', 'President Trump and the First Lady Participate in the National Christmas Tree Lighting Ceremony.webm', 'President Trump Participates in a Working Lunch September 15 2020.webm', 'President Trump Presents the Medal of Freedom to Lou Holtz.webm', 'President Trump Presents the Presidential Medal of Freedom to Dan Gable.webm', '11 24 20 President Trump Delivers Remarks.webm', 'President Trump presents Lou Holtz the Medal of Freedom.webm', 'Dan Gable Receives the Presidential Medal of Freedom.webm', 'Life is Winning - Celebrating 4 Years of Pro-Life Accomplishments.webm', \"The President & First Lady's 2017 Christmas Message.webm\", 'President Trump Delivers Remarks on Judicial Appointments.webm', 'President Trump Participates in a Bilateral Meeting with United Arab Emirates.webm', 'Ukrainian Wikipedia 15th birthday - Greetings from Katherine.webm', 'Wikimania 2006 opening plenary Wikiversity.ogg', 'У Дніпрі відкриють сучасний музейний комплекс присвячений лоцманам.webm', 'An Introduction to the James Webb Space Telescope Mission 6VqG3Jazrfs.webm', 'President Biden Pardons the National Thanksgiving Turkey.webm', \"President Biden Hosts the North American Leaders' Summit.webm\", 'President Biden Participates in a Bilateral Meeting with Justin Trudeau, Prime Minister of Canada.webm', 'My Motherland.ogv', 'So wichtig ist tiefes Atmen.webm', 'Anatomie des Herzens.webm', 'Wo sind Grindwale sesshaft?.webm', 'Wie ist ein Elefantenstoßzahn aufgebaut?.webm', 'Begriffserklärung Xenophobie.webm', 'Sokrates über Wissen und Nichtwissen.webm', 'Was macht ein Roboterforscher?.webm', 'Abklingphase einer Entzündung.webm', 'Altarabische Gottheiten.webm', 'Anatomie der Klitoris.webm', 'Anatomie und Funktion des Penis.webm', 'Die Postenkette in Auschwitz-Birkenau.webm', 'Anatomie von Vulva und Vagina.webm', 'Die Entstehung der Anden.webm', 'Die Ausbreitung der Ur-Germanen.webm', 'Der Nord-Ostsee-Kanal der Wikinger.webm', 'Der natürliche Wasserkreislauf.webm', 'Der Deutsche Wetterdienst.webm', 'Faschismus - Verbreitung in Europa.webm', 'Eisschmelze in Grönland.webm', 'Einfluss von UV-Strahlung auf Hautfarben.webm', 'Die Immunzellen des menschlichen Körpers.webm', 'Die ersten Zahlungsmittel (CC BY 4.0).webm', 'Was sind Biomarker?.webm', 'Creating a tool that lets people listening to Wikipedia.webm', 'Providing alternative uncluttered text version of articles Building3 Day3.webm', 'Do Something Doctrine - looking back on the Terrorist Content Regulation in EU Building3 Day4.webm', 'NOAA Radio Station in Robinson, TX (November 23, 2021).wav', 'President Biden and The First Lady Celebrate Friendsgiving with Service Members & Military Families.webm', 'Sound Logo for Wikimedia.webm', 'Wikipedian in residence in the battle for cultural heritage.webm', 'Wikilearn pilot results and open questions on a new online learning platform for the movement.webm', 'Creative Commons license stewardship 20 years and beyond.webm', 'Building a Wikimedia Community an example of Wikimedians of DRCongo User Group.webm', 'Wikimedia Poland- Building a Holistic Support Infrastructure.webm', 'Organizing Wiki Education Program as a Non credited Work Motivation is the Pillar.webm', 'Bhotiya language and culture.webm', 'Antriebseffekte beim Segeln.webm', 'Angriff von Retroviren.webm', 'Histórias do Brasil - Dois impeachments em apenas dez dias.webm', 'Yun Sim-Deok - In Praise of Death.ogg', 'Peer-support networks - a working model for the support of targets of harassment.ogv', 'Bridging content gaps through large-scale campaignsWikiGap.webm', 'The experience of Emirati User group projects.webm', 'COSMopolIT - Diversity and Inclusion within OpenStreetMap Italy.webm', 'Celebrating the Wikipedia Education Program.webm', 'Artensterben im Wandel der Zeit.webm', 'Aufbau und Funktion eines Giraffenhalses.webm', 'Bedrohte Löwenpopulationen.webm', '2021-11-27 lancement-illum-Belfort-sans-spect.webm', 'The Catalan Challenge.webm', 'Adelina Sotnikova voice.oga', 'Aleks Exler voice.oga', 'Aleksandr Baunov voice.oga', 'Launch of the Soyuz-2.1b launch vehicle at the Plesetsk cosmodrome (25-11-2021).webm', 'Soyuz-2.1a launch from the Plesetsk cosmodrome.webm', 'Maple Leaf Forever.flac', 'Changing the self censoring tradition One librarian at the time.webm', 'Indicators for the Wikimedia Projects.ogv', 'Ausdehnung des römischen Reiches.webm', 'Geschichte des Berliner Reichstagsgebäudes.webm', 'Braucht der Mensch Fleisch?.webm', 'Das Jagdgeheimnis der Florfliege.webm', 'Die Entstehung der Alpen.webm', '2 Милов - За Россию без произвола и коррупции.ogv', 'Das KZ Auschwitz-Birkenau.webm', 'Die Anasazi - Hochkultur im Chaco.webm', 'Die britische Corona-Mutante und ihre Auswirkungen.webm', 'President Biden Delivers Remarks to Provide an Update on the Omicron Variant.webm', 'Die Fotosynthese der Bäume.webm', 'Die Sinne des Wolfs.webm', 'Почему России не нужны новые электростанции.webm', 'Boris Nemtsov voice.oga', 'Lunacharskiy voice.ogg', 'Sergej Mitrohin voice.oga', 'March on Strastnoy boulevard, Moscow, at the protest on the 2021, 23rd of January.webm', 'Protesters chanted in support of Azat Miftakhov.ogv', 'Quat4DJuliaX 0000-4000 VP9 medium 260MBits 20211130.webm', 'Moscow rally against censorship and Crimea secession 28.webm', 'Moscow rally against censorship and Crimea secession 27.webm', 'Transbordados - Resumo.webm', '3 Немцов - За Россию без произвола и коррупции.ogv', 'Importance of reliable sources citing dictionaries, glossaries and atlas as an example.webm', 'Die Geschichte des Impfens.webm', 'Einfluss von Lebensmitteln auf unser Klima.webm', 'Feinstaubbelastung und die Folgen.webm', 'Lichtabsorption im Wasser.webm', 'Towards a more environmentally sustainable Wikimedia Movement.webm', 'Pritzwalk–Krakow am See (4).webm', 'Karow (Meckl)–Pritzwalk Hainholz.webm', 'Eingeschränkter Lebensraum der Wildtiere.webm', 'Entstehungsphase einer Entzündung.webm', 'Rosie Stephenson-Goodknight voice en.flac', '中國雄立宇宙間 (China Heroically Stands in the Universe).flac', 'CocknBallTorture.ogg', 'Pritzwalk–Putlitz.webm', 'Putlitz–Pritzwalk.webm', 'Putlitz–Pritzwalk (2).webm', \"Mariage pour tous - AIDES montre l'exemple.webm\", 'Geschichte der Klimakonferenz.webm', 'Geschichtliche Entwicklung der Xenophobie.webm', 'Giraffenarten und -verbreitung.webm', 'Herdenimmunität.webm', 'Hunde im antiken Rom.webm', 'Impfreihenfolge bei Corona.webm', 'Impfstoffvarianten.webm', 'Infraschall - Wie Elefanten kommunizieren.webm', 'Mit der DNA-Sequenzierung zur Erbgut-Entschlüsselung.webm', 'Nachhaltigkeitssiegel in der Textilindustrie.webm', 'Alaska Airlines Flight 261 crash ATC recording.ogg', '57è Concurs Viñas - Natalia Kutateladze.webm', 'Magnetic orders.webm', 'Wasserversorgung in Namibia.webm', 'Pflanzenschutzmittel in Deutschland.webm', 'Selektion in Auschwitz.webm', 'Die Lebensräume der Löwen.webm', 'Battle Hymn of the Republic US Army.webm', 'QAnon und Verschwörungsmythen.webm', 'Pferde als Kriegswaffe.webm', 'HiggsSound.ogg', 'Kulturgeschichte des Herzens.webm', '\"La donna è mobile\" - \\'Rigoletto\\' (Antonino Siragusa) (2016-17).webm', '\"La donna è mobile\" - Rigoletto (2016-17).webm', 'Mozart - Melba - Voi che sapete cosa é amor (Les Noces de Figaro).ogg', 'Mozart,Cherubinos`s aria in Ukrainian.ogg', 'Mozart - Le Nozze di Figaro (Fricsay) - Act 2 - 24. Voi che sapete.ogg', 'Patricia JANEČKOVÁ - Voi che sapete - Wolfgang Amadeus Mozart.webm', 'Protestwahl.webm', 'Regionale Unterschiede beim Meeresspiegelanstieg.webm', 'WIKITONGUES- T.A., Iqbal, and Kalam speaking Acehnese.webm', 'Riesenpflanzen auf Madeira.webm', 'Sachsenburg Werla.webm', 'Schwarze Katzen und Aberglaube.webm', 'Seit wann gibt es Rassismus?.webm', 'Umweltbelastung durch Kreuzfahrtschiffe.webm', 'So entsteht ein Schlagloch.webm', 'CarusoRossini-Crucifixus.ogg', 'Patricia Janečková - G. Rossini - Petite Messe Solenelle - Crucifixus.webm', 'Patricia Janečková La Danza (Rossini).webm', 'So entsteht Bienenhonig.webm', 'Verursacher der Luftverschmutzung.webm', 'Vorgeschichte - Die Entdeckung Amerikas.webm', 'CarusoRossini-DomineDeus.ogg', '\"Gualtier Maldè! Caro nome” - Rigoletto (2016-17) HD.webm', 'My Right to Ride - GO BIKE.webm', 'Láadan la feminisma lingvo.webm', 'Wikipedia guidelines and policies.webm', 'Verdi - Melba - Caro Nome (Rigoletto).ogg', 'Voyager 2 und die Größe des Sonnensystems.webm', 'Vulkanismus in den Anden.webm', 'Wann wachsen Bäume?.webm', 'Abheri.wav', 'Warum Europäer ursprünglich schwarz waren.webm', 'Warum gibt es keine Coronaimpfung für Kinder?.webm', 'Warum ist Permafrost wichtig?.webm', 'Warum schmilzt das Schelfeis?.webm', 'Warum mäandern Flüsse?.webm', 'Warum sind Wahlen in einer Demokratie wichtig?.webm', 'How video games can boost your mental health.webm', 'Wie entsteht Mineralwasser?.webm', 'Die Bedeutung von Pfingsten.webm', 'Was bedeutet Nachhaltigkeit?.webm', 'Was bedeutet politische Immunität?.webm', 'Was ist die Wallace-Linie?.webm', 'Was ist ein Permafrostboden?.webm', 'Was ist eine Demokratie?.webm', 'Ru-моча.ogg', 'Meow.ogg', 'Was ist eine Briefwahl?.webm', 'Was ist Geoengineering?.webm', 'Was kostet der Klimawandel?.webm', 'Wie kam die Katze zum Menschen?.webm', 'Vietnam National Anthem Instrumental.ogg', '2021-12-10 Summit for Democracy — Affirming Democratic Values with Technology (original).webm', 'Latvian National Anthem.ogg', 'GLAM WIKI 2018 - A Gentle Introduction to Wikidata for Absolute Beginners - Asaf Bartov.webm', 'Die Gotteshäuser der Religionen.webm', 'Warum feiern wir Weihnachten?.webm', 'Was machen Kommunalpolitiker*innen?.webm', 'Was macht ein*e Bundeskanzler*in?.webm', 'Was sind Bitcoins?.webm', 'EnregistrementFace-De-Pet-Accent-Arabe.wav', 'Was macht RNA-Viren so gefährlich?.webm', 'Chennai-tewiki-pron.ogg', 'ਪੰਜਾਬੀ ਲੋਕ ਗੀਤ (ਪਿੰਡ ਦੁਗਾਲ ਕਲ੍ਹਾਂ).webm', 'Was sind CO2-Verursacher?.webm', 'Cuba National Anthem Instrumental.ogg', 'Was sind Viren und wie greifen sie an?.webm', 'Was unterscheidet Sars-CoV-2 von seinem Vorgänger?.webm', 'Welche Form hat das Universum?.webm', 'Wem gehört der deutsche Wald?.webm', 'Wie entsteht eine Wetterprognose?.webm', 'Wie entsteht Humus?.webm', 'GT Mind the gap London Underground mock version.ogg', 'ਕੋਠੇ ਚੜ੍ਹ ਕੇ ਵੇਖਦੀ ਪੰਜਾਬੀ ਲੋਕ ਗੀਤ ਸੁਹਾਗ.webm', 'Wie funktioniert autonomes Fahren?.webm', 'Wie funktioniert eine Feststoffbatterie?.webm', 'Wie funktioniert eine Lithium-Schwefel-Batterie?.webm', 'Woher kommt Angst?.webm', 'Überschießende Immunreaktion.webm', 'Y-Chromosom und der Stammbaum des Menschen.webm', 'Y-Chromosom und Wanderwege des Menschen.webm', 'Wie entsteht Wind?.webm', 'Wie funktioniert eine Lithium-Ionen-Batterie?.webm', 'Wie funktioniert der PCR-Test?.webm', 'Wie schützt man sich vor Geschlechtskrankheiten?.webm', 'Woher kommt die Gesichtsmaske?.webm', 'Purple noise.ogg', 'Terugkijken- Speech Femke Halsema bij Keti Koti - Amsterdam maakt excuses voor slavernijverleden.ogg', 'So wichtig ist Insulin für unseren Zuckerhaushalt (CC BY 4.0).webm', \"Himne de l'Exposició.ogg\", 'Iter Latinum, Learn grammar with easy Latin. Baden-Baden, Caracalla-Thermen, Subtitles.webm', 'Das erste Handbuch zur Geburtshilfe.webm', 'Der Milankovic-Zyklus – Neigung der Erdachse (CC BY 4.0) .webm', 'Gebärstühle als Geburtshilfen.webm', 'Griechische Stadtstaaten in der Antike.webm', 'Haus auf Stelzen – die erste Durchgangspassage.webm', 'Heilpflanzen als Medizin.webm', 'Schwerkraft als Krümmung des Raumes (CC BY 4.0).webm', 'Wie entsteht die Rotverschiebung (CC BY 4.0).webm', 'Б.Л. Вишневский исключает члена партии Яблоко за подписание открытых писем.webm', 'Urbs Hierosolyma.webm', 'Catalhoyuk.webm', 'Kyoto women conversation in 1964.ogg', 'Was besagt Darwins Evolutionstheorie?.webm', 'Der Umgang mit dem Tod in den Religionen.webm', 'Почта России трудоустроит безработных смолян.webm', 'VMEO-300k-artikoloj.webm', 'Miryang Arirang.wav', 'Gyeonggi Arirang.wav', 'Gangwondo Arirang.wav', 'Jindo Arirang.wav', 'Old Arirang.wav', 'Doraji Taryeong.wav', 'Gunbam Taryeong.wav', 'LL-Q188 (deu)-PetiteTrolline-Löwenstraße.wav', 'LL-Q188 (deu)-PetiteTrolline-Lönsstraße.wav', 'LL-Q188 (deu)-PetiteTrolline-Kleefelder Straße.wav', 'LL-Q188 (deu)-PetiteTrolline-Hindenburgstraße.wav', 'LL-Q188 (deu)-PetiteTrolline-Friedenstraße.wav', \"'Do Bama' Song.ogg\", 'Elephants Dream (2006) 1080p24.webm', 'Creative Commons-Clips zur freien Nutzung – einfach erklärt (Terra X, ZDF).webm', 'Where is all the plastic in the ocean video.webm', 'Wie das letzte Eiszeitalter begann CC BY 4.0 Terra X plus.webm', 'Are female action heroes truly empowering.webm', 'How (and when) did humans first make fire.webm', 'How are hair dryers and headphones killing your ears.webm', 'How can I eat my way to a better world.webm', 'How can we detect undetected victims of human trafficking.webm', 'How can we explore planets beyond our solar system.webm', 'How can we keep robots under control.webm', 'How does propaganda change our beliefs.webm', 'How does Tinder change dating.webm', 'What happens when you are allergic.webm', 'Why are Western people wrong about how the ‘global poor’ use the internet.webm', 'Why do anorexia patients feel fat.webm', 'Why do we need to fix the humanitarian aid system.webm', 'Why is it so hard to stay focused.webm', 'Why is time money.webm', 'Why won’t antibiotics cure us anymore.webm', 'Will robots outsmart us.webm', 'Warum Flüsse in Kurven fließen CC BY 4.0 Terra X plus.webm', 'Would you eat lab-grown meat.webm', 'Turkmen diacritics.wav', 'Interview with actor producer Robin Nicolle.mpg', 'Baennorae.wav', 'Boris Nemtsov - Winter Olympics in the Subtropics (2014-01-30).webm', 'Fane Lozman arrest.webm', 'Felsen als Wasserspeicher für Pflanzen.webm', 'Demo Video Tutorial.webm', 'La Bayamesa.ogv', 'Sound-of-dog.ogg', 'Kazakhstan (instrumental 2).ogg', 'Wikipedia Content Translation Tool Tutorial.webm', 'Шевчук на Пушкинской площади.webm', 'WDQS Tutorial for Beginners.webm', 'Flight 1549 FAA New York TRACON audio extract.ogg', 'Gimn rf t1.ogg', 'Lebanese national anthem.ogg', 'Wie arbeitet eine Fusionsanlage?.webm', 'Göteborg Book Fair 2015 - Dorthe Nors da.webm', 'Gaumii salaam.ogg', 'Linus-linux (swedish).ogg', \"Trump's Remarks on Violence in at White Supremacist Rally in Virginia.webm\", 'Entnazifizierung nach dem Krieg.webm', 'Quarry Tutorial for beginners.webm', 'LL-Q188 (deu)-PetiteTrolline-Misburg-Anderten.wav', 'Auferstanden aus Ruinen.wav', 'Die Flucht der Juden vor den Nationalsozialisten.webm', 'Die Ermordung der Juden im Nationalsozialismus.webm', 'President Trump and Administration Officials Deliver Remarks and Hold a Press Briefing on Testing.webm', 'COVID Dashboard Leadership.webm', 'Meet Shannon Walker, Crew-1 Mission Specialist.webm', 'Verfolgung der Juden im Nationalsozialismus.webm', 'Function of the thymus - Inside the Thymus.webm', 'Митинг за Свободную Россию! Краснодар 23.01.2021 Крупнейший в истории города morozov victor.webm', 'Handling translatewiki support requests.webm', 'President Biden Meets with the President’s Council of Advisors on Science and Technology.webm', 'Philippine-National-Anthem.ogg', 'Vladimir Putin speech to IOC in Guatemala City.ogv', '93-an-nur.ogg', 'So entstand das letzte Eiszeitalter.webm', 'Teaser für Umfrage Technische Wünsche 2022.webm', 'Teaser Umfrage Technische Wünsche 2022.webm', 'Red Fox (Vulpes vulpes) (W1CDR0001529 BD12).ogg', 'U.S. Navy Band - God Save the Queen.oga', 'Die Anden als Klimascheide.webm', 'Warum hat ein Zebra Streifen?.webm', 'PAWS Tutorial for Beginners.webm', 'Зачем в городе трава.webm', 'Quarry Tool Tutorial for Beginners.webm', 'Batukeshwar Datta.ogg', '1952 Eisenhower Political Ad - I Like Ike - Presidential Campaign Ad.webm', 'Катедральний собор у Тернополі.webm', 'Indígenas e quilombolas brasileiros contam sua história - Quilombo Praia Grande - parte 01.webm', 'Indígenas e quilombolas brasileiros contam sua história - Quilombo Praia Grande - parte 02.webm', 'Indígenas e quilombolas brasileiros contam sua história - Quilombo Praia Grande - parte 03.webm', 'Indígenas e quilombolas brasileiros contam sua história - Quilombo Praia Grande - parte 04.webm', 'Indígenas e quilombolas brasileiros contam sua história - Quilombo Praia Grande - parte 05.webm', 'Indígenas e quilombolas brasileiros contam sua história - Quilombo Praia Grande - parte 06.webm', 'Indígenas e quilombolas brasileiros contam sua história - Quilombo Praia Grande - parte 07.webm', 'Indígenas e quilombolas brasileiros contam sua história - Quilombo Praia Grande - parte 08.webm', 'Indígenas e quilombolas brasileiros contam sua história - Quilombo Praia Grande - parte 09.webm', 'Indígenas e quilombolas brasileiros contam sua história - Quilombo Praia Grande - parte 10.webm', 'Indígenas e quilombolas brasileiros contam sua história - Quilombo Praia Grande - parte 11.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 01.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 02.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 03.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 04.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 05.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 06.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 07.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 08.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 09.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 10.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 11.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 12.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 13.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 14.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 15.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 16.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 17.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 18.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 19.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 20.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 21.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 22.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 23.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 24.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 25.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 26.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 27.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 28.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 29.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 30.webm', 'Indígenas e quilombolas brasileiros contam sua história - Povo Gavião - parte 31.webm', 'Tutte le funtanelle.ogg', 'Voiceless bilabial fricative.ogg', 'Regional anthem of Komi vocal.oga', 'Welche Rolle spielt der Geruchssinn bei der Partnerwahl?.webm', 'Dinosaurierspuren in Deutschland.webm', 'En.Video-RVSV-ZEBOV vaccine.webm', 'Auswertung per Instant Run-Off Voting Beispiel.webm', 'Wikidata What happened Where are we going.webm', 'Wikimania 2021 - Wikifunctions and Abstract Wikipedia.webm', 'Wikimania 2021 Wikimedia Movement and the Paradox of Open.webm', 'Alternative text to images as cohesively structured data on Commons.webm', 'Supporting a gentle discussion - Can we raise awareness through research results to bring about change.webm', 'Благоустройство Канавинского сквера.webm', 'Woher kommt das Gold?.webm', 'Wie wirkt Cannabidiol aus Hanfpflanzen (CC BY 4.0).webm', 'Wie Neuseeland entstanden ist.webm', 'Wie funktioniert ein Windrad?.webm', 'Wie entstehen Wendekreiswüsten?.webm', 'Wie bilden sich Regentropfen?.webm', 'Was hilft gegen Viren? (CC BY 4.0).webm', 'Warum wir sprechen können.webm', 'Warum das Hormon Leptin uns satt macht (CC BY 4.0).webm', 'Tropfsteine als Indikatoren für den Klimawandel.webm', 'Speyer und sein Dom.webm', 'Fr.Wikipédia-VideoWiki-Musée national du Bardo.webm', 'Fr.Utilisateur-Doc James-Sandbox.webm', 'President Biden Delivers Remarks on a Successful Counterterrorism Operation (Mtw D4dltLQ).webm', 'President Biden Signs an Executive Order.webm', 'Himno de Navarra.ogg', 'Sonnen- und Mondjahr.webm', 'Was ist ein Stromatolith (CC BY 4.0) (720p).webm', 'Blue Holes auf den Bahamas (CC BY 4.0).webm', 'Die Germanen aus der Sicht von Tacitus und Caesar.webm', 'Fasten und Ketone.webm', 'Wie ist ein Auge aufgebaut (CC BY 4.0) .webm', 'Die Herrschaftsstruktur im arabischen Reich.webm', 'Die Rüsselnasen der Saiga-Antilopen.webm', 'Drei wichtige Hormone für den Stoffwechsel (CC BY 4.0).webm', 'Drei wichtige Hormone für den Stoffwechsel Terra X.webm', 'Einzigartige Lebensbedingungen auf der Erde.webm', 'Gladiatoren im antiken Rom.webm', 'Citation Hunt Tool Tutorial.webm', 'Haarmode bei den Germanen.webm', 'Folgen der Erderwärmung.webm', 'Kloster Disibodenberg.webm', 'Langstreckenrekord im Vogelflug (CC BY 4.0).webm', 'Magdeburg und der Dom.webm', 'Olympioniken der Antike - berühmt und berüchtigt (CC BY 4.0).webm', 'So beeinflussen uns Cannabinoide (CC BY 4.0).webm', 'So entstehen Diamanten (CC BY 4.0).webm', 'So wohnten die Berliner in der Kaiserzeit (CC BY 4.0).webm', 'Was sind Viren (CC BY 4.0) (720p).webm', 'Het Wilhelmus (first recording 1899).ogg', 'Wie aus Flusswasser Trinkwasser wird.webm', 'Woher kommt unser Trinkwasser (CC BY 4.0).webm', 'Die Götterwelt der Griechen.webm', 'Die Temperamenten Lehre.webm', 'Germanische Führungseliten.webm', 'Entstehung der Alpen CC BY 4.0 Terra X plus.webm', 'Gefährliche Winde bei Kap Hoorn.webm', 'Der Humboldtstrom.webm', 'La Bayamesa 1940.oga', 'Grigorij Yavlinskij voice.oga', \"Mihail Gel'fand voice.oga\", 'En.Video-Post-Ebola virus syndrome.webm', 'Aleksandr Domogarov voice.oga', 'Aleksandr Gafin voice.oga', 'Aleksandr Gradskij voice.oga', 'Lagu Rasmi Terengganu - Selamat Sultan.ogg', 'Aleksandr Kabakov voice.oga', 'Aleksandr Kirillin voice.oga', 'Aleksandr Kutikov voice.oga', 'Aleksandr Lazutkin voice.oga', '«Трактат» Быкова.ogv', 'Dmitrij Byikov voice.oga', 'Drone video of Estonia 2021.webm', 'National Anthem of Vietnam.ogg', 'Aleksandr Lebedev voice.oga', 'Aleksandr Livshits voice.oga', 'Aleksandr Lyubimov voice.oga', 'Aleksandr Markov voice.oga', 'Booker T. Washington, Speech, 1895.ogg', 'La Marseillaise (1907).oga', 'Pageviews Analysis Tutorial for Beginners.webm', 'Aleksandr Minkin voice.oga', 'Aleksandr Pochinok voice.oga', 'Aleksandr Prohanov voice.oga', 'Aleksandr Rodnyanskij voice.oga', 'Aleksandr Rutskoj voice.oga', 'Aleksandr Shirvindt voice.oga', 'Aleksandr Shohin voice.oga', \"Natal'ya Sindeeva voice.oga\", 'First Inaugural (January 20, 1993) Bill Clinton.ogg', \"Anatolij Luk'yanov voice.oga\", 'President Obama Hosts Chancellor Merkel at the White House.webm', 'ANDI HRD Feat Jimiandrie - Nikmati Rindu.ogg', 'Nimish Gautam explains design changes to the Wikipedia puzzle globe in 2012.webm', 'Aleksandr Tsipko voice.oga', 'Aleksandr Varin voice.oga', 'Aleksej Miller voice.oga', 'Aleksej Mitrofanov voice.oga', 'Aleksej Nemov voice.oga', 'Aleksej Volin voice.oga', 'En.Video-Kivu Ebola epidemic.webm', 'The True Story of Lili Marlene (1944).webm', 'Wikimedia Foundation Offices in San Francisco.webm', 'La Donna e mobile.oga', 'John F. Kennedy Inauguration Speech.ogv', 'Alenka Star Be voice recording (2022-01-30).wav', 'Die klimatische Funktion des Regenwaldes.webm', 'Bedrohtes Ökosystem Fluss.webm', 'How could your holiday help the reefs.webm', 'How is our sick planet making us sick.webm', 'Anastasiya Volochkova voice.oga', 'Anatoli Malkin voice.oga', 'Anatolij Adamishin voice.oga', 'Anatolij Ermolin voice.oga', 'Anatolij Karpov voice.oga', 'Anatolij Kucherena voice.oga', 'Anatolij Kulikov voice.oga', 'Veronika Dolina voice.oga', \"DAVAO REGION HYMN COMPOSER'S VERSION.ogg\", 'Anatolij Lyisenko voice.oga', 'Anatolij Vasserman voice.oga', 'Anatolij Zasov voice.oga', \"Andrej Bil'zho voice.oga\", 'Andrej Bogdanov voice.oga', 'Andrej Dellos voice.oga', 'Bookbits - 2011-07-14 Tessa McWatt-VItal Signs.vorb.oga', 'Q Song-M04 Zabek.oga', 'Tragedy of Liberation- A History of the Chinese Revolution 1945-1957.webm', 'V Daniel01 AryeShemesh.oga', 'LL-Q188 (deu)-PetiteTrolline-Kinderkrankenhaus auf der Bult.wav', 'Phleng Chat Thai (vocal) - 1st Military Circle Band.ogg', 'Andrej Fursenko voice.oga', 'Andrej Illarionov voice.oga', 'Andrej Karaulov voice.oga', 'Andrej Kolesnikov voice.oga', 'Andrej Konchalovskij voice.oga', 'Andrej Korkunov voice.oga', 'LL-Q188 (deu)-PetiteTrolline-Südstadt-Bult.wav', 'LL-Q188 (deu)-PetiteTrolline-Langenhagen-Angerstraße.wav', 'LL-Q188 (deu)-PetiteTrolline-Berliner Platz.wav', 'LL-Q188 (deu)-PetiteTrolline-Langenhagen-Langenforther Platz.wav', 'LL-Q188 (deu)-PetiteTrolline-Langenhagen.wav', 'LL-Q188 (deu)-PetiteTrolline-Langenhagen-Kurt-Schumacher-Allee.wav', 'LL-Q188 (deu)-PetiteTrolline-Langenhagen-Zentrum.wav', 'LL-Q188 (deu)-PetiteTrolline-Altwarmbüchen.wav', 'LL-Q188 (deu)-PetiteTrolline-Altwarmbüchen-Zentrum.wav', 'LL-Q188 (deu)-PetiteTrolline-Gleidingen-Am Leinkamp.wav', 'LL-Q188 (deu)-PetiteTrolline-Empelde.wav', 'LL-Q188 (deu)-PetiteTrolline-Laatzen.wav', 'LL-Q188 (deu)-PetiteTrolline-Laatzen-Birkenstraße.wav', 'LL-Q188 (deu)-PetiteTrolline-Laatzen-Eichstraße.wav', 'LL-Q188 (deu)-PetiteTrolline-Laatzen-Krankenhaus.wav', 'LL-Q188 (deu)-PetiteTrolline-Laatzen-Park der Sinne.wav', 'LL-Q188 (deu)-PetiteTrolline-Laatzen-Zentrum.wav', 'LL-Q188 (deu)-PetiteTrolline-Rethen-Bahnhof.wav', 'LL-Q188 (deu)-PetiteTrolline-Rethen-Nord.wav', 'LL-Q188 (deu)-PetiteTrolline-Sarstedt-Am Boksberg.wav', \"'Racism is evil,' Trump says.webm\", 'Andrej Kozyirev voice.oga', 'Andrej Kuraev voice.oga', 'Andrej Makarevich voice.oga', 'Andrej Makarov voice.oga', \"Andrej Mal'gin voice.oga\", 'Andrej Nechaev voice.oga', 'LL-Q188 (deu)-PetiteTrolline-Kronsberg.wav', 'LL-Q188 (deu)-PetiteTrolline-August-Madsack-Straße.wav', 'LL-Q188 (deu)-PetiteTrolline-Wissenschaftspark Marienwerder.wav', 'Battle Hymn of the Republic, Frank C. Stanley, Elise Stevenson.ogg', 'Battle Hymn of the Republic, Frank C. Stanley, Elise Stevenson (unrestored).ogg', 'Battle Hymn of the Republic (USAFB).ogg', 'LL-Q188 (deu)-PetiteTrolline-Tempelhofweg.wav', 'LL-Q188 (deu)-PetiteTrolline-Bahnstrift.wav', 'LL-Q188 (deu)-PetiteTrolline-Alte Heide.wav', 'LL-Q188 (deu)-PetiteTrolline-Großer Kolonnenweg.wav', 'LL-Q188 (deu)-PetiteTrolline-Vahrenheider Markt.wav', 'LL-Q188 (deu)-PetiteTrolline-Niedersachsenring.wav', 'LL-Q188 (deu)-PetiteTrolline-Noltemeyerbrücke.wav', 'LL-Q188 (deu)-PetiteTrolline-Bothfelder Kirchweg.wav', 'LL-Q188 (deu)-PetiteTrolline-Bothfeld (Hannover).wav', 'LL-Q188 (deu)-PetiteTrolline-Kurze-Kamp-Straße.wav', 'LL-Q188 (deu)-PetiteTrolline-Stadtfriedhof Bothfeld.wav', 'LL-Q188 (deu)-PetiteTrolline-Fasanenkrug.wav', 'LL-Q188 (deu)-PetiteTrolline-In den Sieben Stücken.wav', 'LL-Q188 (deu)-PetiteTrolline-Paracelsusweg.wav', 'LL-Q188 (deu)-PetiteTrolline-Stadtfriedhof Lahe.wav', 'ICBSA Verdi - Rigoletto, La-rà, la-rà, la-rà.ogg', 'LL-Q188 (deu)-PetiteTrolline-Oldenburger Allee.wav', 'ICBSA Verdi - Rigoletto, Caro nome.ogg', 'En.Video-Severe acute respiratory syndrome coronavirus 2.webm', 'Maryana Iskander self-narrated biography.ogg', 'Chanson populaire bretonne, enreg. par Léon Azoulay.mp3', 'LL-Q188 (deu)-PetiteTrolline-Zellerfelder Allee.wav', 'LL-Q188 (deu)-PetiteTrolline-Gutsweg.wav', 'LL-Q188 (deu)-PetiteTrolline-Schierholzstraße.wav', 'LL-Q188 (deu)-PetiteTrolline-Kafkastraße.wav', 'LL-Q188 (deu)-PetiteTrolline-Am Forstkamp.wav', 'LL-Q188 (deu)-PetiteTrolline-Misburg.wav', 'LL-Q188 (deu)-PetiteTrolline-Königsberger Ring.wav', 'LL-Q188 (deu)-PetiteTrolline-Anderten (Hannover).wav', 'ABC Garnaut Asia.ogv', 'Sv.Wikipedia-VideoWiki-Hälsingland.webm', 'Will we all be forced to share houses in the future.webm', 'Ngâm thơ Truyện Kiều - Kiều ở lầu Ngưng Bích.mp3', 'Outreach Dashboard Tutorial.webm', 'How to upload images for Wiki Loves Wikimedia UK.webm', 'LL-Q188 (deu)-PetiteTrolline-Zuschlagstraße.wav', 'QuickStatements - adding mass edits to Wikidata (HD 1080 - WEB (H264 4000)).webm', 'LL-Q188 (deu)-PetiteTrolline-Seelhorster Allee.wav', 'LL-Q188 (deu)-PetiteTrolline-Emslandstraße.wav', 'LL-Q188 (deu)-PetiteTrolline-Feldbuschwende.wav', 'LL-Q188 (deu)-PetiteTrolline-Krügerskamp.wav', 'LL-Q188 (deu)-PetiteTrolline-Stockholmer Allee.wav', 'Tentara Pembela - Verdedigingsleger.webm', 'So entsteht ein Hurrikan.webm', 'Wunderwerk Hai-Gebiss.webm', 'LL-Q188 (deu)-PetiteTrolline-Freundallee.wav', 'LL-Q188 (deu)-PetiteTrolline-Kerstingstraße.wav', 'LL-Q188 (deu)-PetiteTrolline-Brabeckstraße.wav', 'LL-Q188 (deu)-PetiteTrolline-Aegidientorplatz.wav', 'LL-Q188 (deu)-PetiteTrolline-Schlägerstraße.wav', 'LL-Q188 (deu)-PetiteTrolline-Geibelstraße.wav', 'LL-Q188 (deu)-PetiteTrolline-Altenbekener Damm.wav', 'ICBSA Verdi - Rigoletto, Cortigiani vil razza.ogg', 'Mismatch Finder intro.webm', 'ICBSA Verdi - Rigoletto, Parmi veder le lacrime.ogg', 'Обращение Президента Российской Федерации 2022-02-21.webm', 'ICBSA Verdi - Rigoletto, Pari siamo.ogg', 'Andrej Piontkovskij voice.oga', 'Andrej Razin voice.oga', \"Andrej Vasil'ev voice.oga\", 'Andrej Zhitinkin voice.oga', 'Andris Liepa voice.oga', 'Anfisa Chehova voice.oga', 'Anton Krasovskij voice.oga', 'ICBSA Verdi - Rigoletto, Questa o quella.ogg', 'LL-Q188 (deu)-PetiteTrolline-Marienstraße.wav', 'LL-Q188 (deu)-PetiteTrolline-Braunschweiger Platz.wav', 'LL-Q188 (deu)-PetiteTrolline-Clausewitzstraße.wav', 'LL-Q188 (deu)-PetiteTrolline-Zoo (Hannover).wav', 'LL-Q188 (deu)-PetiteTrolline-Hannover Congress Centrum.wav', 'Antigua and Barbuda National Anthem.ogg', 'LL-Q188 (deu)-PetiteTrolline-Kröpcke.wav', 'LL-Q188 (deu)-PetiteTrolline-Markthalle-Landtag.wav', 'LL-Q188 (deu)-PetiteTrolline-Waterloo.wav', 'John bishop bbc radio4 desert island discs 24 06 2012.flac', 'Anton Nosik voice.oga', 'Ara Abramyan voice.oga', 'Aras Agalarov voice.oga', \"Ariel' Sharon voice.oga\", 'Подписание документов о признании Донецкой и Луганской народных республик.webm', 'Arina Sharapova voice.oga', 'Arkadij Arkanov voice.oga', 'Armen Dzhigarhanyan voice.oga', 'Artemij Troitskij voice.oga', \"Avangard Leont'ev voice.oga\", 'Bari Alibasov voice.oga', 'Boris Bim-Bad voice.oga', 'Boris Burda voice.oga', 'Como navegar pelo histórico de edições.webm', 'Como utilizar a ferramenta de tradução.webm', 'Como encontrar mídias em licenças livres.webm', 'Como participar do Wiki Loves Monuments Brasil.webm', 'Como criar uma página de GLAM-Wiki.webm', 'D-caron and T-caron.wav', '新疆旅行, 新藏线11,,,新疆风景,西藏风景,chinese scenery,抖音热门,性感旅人,AnyoneTraveler,china landscape.webm', 'Гимн Чеченской Республики.ogg', 'En.Video-Zaire ebolavirus.webm', 'En-uk-Wikipedia.ogg', 'Boris Kagarlitskij voice.oga', \"Boris L'vovich voice.oga\", 'Boris Notkin voice.oga', 'Boris Reznik voice.oga', 'Daniil Koretskij voice.oga', 'Duck and Cover 1440 x 1080 01836081.webm', 'Mixed Feelings on the Russian Side of the Ukraine Border Over Potential War.webmhd.webm', \"Dar'ya Dontsova voice.oga\", 'David Tuhmanov voice.oga', 'Dmitrij Dibrov voice.oga', 'Dmitrij Gudkov voice.oga', 'Dmitrij Livanov voice.oga', 'Overview of changes in the VisualEditor template dialog by WMDE Technical Wishes.webm', '1962-10-25 The Cuban Crisis.ogg', 'Santos-Dumont discursando.webm', 'President Biden on 2022 Russia invasion.webm', 'Solemn Kyiv Copes with Bombs Gunfire.webm', 'En.Video-Tuberculosis.webm', 'Kyiv Tense as Russian Forces Advance.webm', 'En.Video-Appendicitis.webm', 'En.Video-Breastfeeding.webm', 'En.Video-Cholera.webm', 'So entstanden Höhlen in der Karibik.webm', 'Geologisches Pulverfass Karibik.webm', 'Dmitrij Malikov voice.oga', 'Dmitrij Oreshkin voice.oga', 'Dmitrij Shparo voice.oga', 'Dmitrij Zimin voice.oga', 'Eduard Limonov voice.oga', 'Edvard Radzinskij voice.oga', 'Putin khuilo at NSC Olimpiyskiy.webm', 'Pano (Snippet).wav', 'En.Video-Cystic fibrosis.webm', 'En.Video-Dengue fever.webm', 'En.Video-Diarrhea.webm', 'Luxembourg National Anthem.ogg', 'En.Video-Hepatitis C.webm', 'Ukrainian national anthem 1916.ogg', 'En.Video-HIV-AIDS.webm', 'En.Video-Hypertension.webm', '2022 President Bidens State of the Union address at the Capitol.webm', 'En.Video-Influenza.webm', 'Trip to Afsuitdijk and abck (Feb 2022).webm', 'Como carregar lotes de imagens no Wikimedia Commons usando Pattypan.webm', 'Wikimedia Coolest Tool Award 2021 Ceremony.webm', 'Como adicionar predefinições.webm', 'En.Video-Malaria.webm', 'En.Video-Major depressive disorder.webm', 'Como adicionar referências em um artigo na Wikipédia.webm', 'Como carregar imagens no Wikimedia Commons.webm', 'Como contribuir com o Structured Data on Commons.webm', 'Como criar um item no Wikidata.webm', 'Como criar uma conta Wiki - v2.webm', 'Como criar uma conta Wiki.webm', 'Como criar uma licença de parceria GLAM-Wiki no Wikimedia Commons.webm', 'Como usar a página de testes.webm', 'Como utilizar as imagens do Wikimedia Commons na Wikipédia.webm', 'Ayyavazhi.ogg', 'Efim Shifrin voice.oga', 'Eggert Konstantin fon voice.oga', 'Elena Buyanova (Vodorezova) voice.oga', 'Elena Hanga voice.oga', 'Elena Kamburova voice.oga', 'Elena Kondulajnen voice.oga', 'En.Video-Periodontal disease.webm', 'En.Video-Urinary tract infection.webm', 'En.Video-Typhoid fever.webm', 'En.Video-Sepsis.webm', 'En.Video-Schizophrenia.webm', 'En.Video-Cancer.webm', 'Обращение Президента Российской Федерации 2022-02-24.webm', \"Elena Luk'yanova voice.oga\", 'Elena Malyisheva voice.oga', 'Elena Masyuk voice.oga', 'Elena Myasnikova voice.oga', 'Elizaveta Osetinskaya voice.oga', 'Evgenij Bunimovich voice.oga', 'Man Belongs to the Earth.webm', 'Was passiert in unserem Gehirn bei Angst?.webm', 'En.Video-Viral hemorrhagic fever.webm', 'Sita Sings the Blues.webm', 'La leggenda del Piave.ogg', 'Evgenij Evtushenko voice.oga', 'Evgenij Gontmaher voice.oga', 'Evgenij Rojzman voice.oga', \"Evgenij Savost'yanov voice.oga\", 'Evgenij Velihov voice.oga', 'Faina Kirshenbaum voice.oga', 'Ми тут. Ми в Києві. Ми захищаємо Україну.webm', 'President Biden Announces Actions to Continue to Hold Russia Accountable.webm', 'ABC Dollar Float.ogv', \"Fedor Luk'yanov voice.oga\", 'Sv-The North Wind and the Sun.ogg', 'En.Video-Sandbox.webm', 'Filipp Kirkorov voice.oga', 'Garri Bardin voice.oga', 'Garri Kasparov voice.oga', 'Gennadij Burbulis voice.oga', 'Gennadij Gudkov voice.oga', 'Gennadij Hazanov voice.oga', 'Gennadij Onischenko voice.oga', 'Genri Reznik voice.oga', 'Genrih Borovik voice.oga', 'Genrih Padva voice.oga', 'Die Katastrophe von Fukushima.webm', 'President Trump Participates in the NATO Unveiling.webm', 'WIKITONGUES- Artur speaking Catalan.webm', 'President Trump Participates in a Bilateral Breakfast with the Secretary General of NATO.webm', 'Cs-žák.ogg', 'Was passiert bei Angst im Körper?.webm', 'Georgij Grechko voice.oga', \"Georgij Vasil'ev voice.oga\", 'German Klimenko voice.oga', 'German Sterligov voice.oga', 'Grigorij Oster voice.oga', 'Grigorij Revzin voice.oga', 'Amazon edited.ogv', 'Tony Robinson BBC Radio4 Desert Island Discs 3 Jul 2011 b0128hsb.flac', 'Sörmlands museum & Biblioteksutveckling Sörmland- Sörmlands första Wikimedian-in-Residence.webm', 'LL-Q150 (fra)-Lepticed7-équiter.wav', 'Gran Marcia Trionfale (Vittorino Hallmayr).ogg', 'Scotland the Brave (1995) - Pipe Band - United States Air Force Reserve Band.mp3', 'Starship SN8 launch render.webm', 'Совещание о мерах социально-экономической поддержки регионов.webm', \"World's Longest Skyway Gives Minneapolis Residents a Break From Harsh Winter.webm\", 'Hochfeste der Religionen.webm', 'Die Geschichte des Kolonialismus.webm', 'So werden Mikrochips hergestellt.webm', 'Odia phonology.webm', 'พระราชดำรัสรัชกาลที่ 9 อำลาประชาชนก่อนเสด็จพระราชดำเนินเยือนสาธารณรัฐเวียดนาม 17-12-2502.ogg', 'Vuvuzela single note.ogg', '厨师长教你川菜麻婆豆腐的正宗做法.webm', 'En.Video-Rift Valley fever.webm', 'LL-Q1860 (eng)-Back ache-espresso.wav', 'Espresso video.ogv', 'Gesta Francorum - Liber VI (Battle outside Antioch).webm', 'Saga Afaan Oromoo A-.wav', '\"Heil dir im Siegerkranz\" 5 Bait Penuh.ogg', 'Emergency Alert System Attention Signal 20s.ogg', 'Wikitongues- Safal speaking Nepali.webm', 'Synodaler Weg.webm', 'President Biden Delivers Remarks on the United Efforts to Support the People of Ukraine DOD 108880068.webmhd.webm', 'En-us-arrant.ogg', 'Propaganda Jepang Indonesia Raya Nippon Eigasha 2605.webm', 'Hej sloveni vocal.ogg', 'En.Video-Crimean–Congo hemorrhagic fever.webm', 'Gesta Francorum et aliorum Hierosolimitanorum - Liber I (The First Crusade).webm', 'Gesta Francorum - Liber II (Siege of Nicaea).webm', 'Reagan Radio Traffic.ogg', 'United States Navy Band - Chant de Ralliement.ogg', 'National anthem of the Republic of the Congo.oga', 'Mark Carney - Today - 8 Aug 2013.flac', 'Chuck Jones - Merrie Melodies - Fox Pop (1942) (restored HD version) (2).webm', 'Els Segadors (Instrumental).ogg', 'Uruk (latine).webm', 'Voiced alveolar lateral fricative.ogg', 'House Democrats Sit-In.ogv', \"Volodomyr Zelensky's speech on the Russian massacre of Bucha, c. April 2022.ogg\", '\"The Internationale\" audio, sung at the Socialism 2013 Conference in Chicago.ogg', 'En.Wikipedia-VideoWiki-Union (United States coin).webm', 'En.Video-Pelvic binder.webm', 'Marking 20 Years of Humans Aboard the Space Station on This Week @NASA – November 6, 2020.webm', 'Shedding Light on Black Holes (NASA ScienceCasts).ogv', '-NASAs Giant Leaps Past and Future Saluting Apollo Heroes and Looking Forward to Artemis Missions.webm', 'Mindannyian-vagyunk.webm', 'Maroon 5 ft.Wiz Khalifa - Payphone.webm', 'Verbesserungen im Vorlagendialog des VisualEditors durch das Technische Wünsche Team.webm', 'Pseudacris-crucifer-002.ogg', 'Ar-داخل.ogg', 'Metro NN Announcement (ver. 2017).ogg', 'Age Of Empires II- Definitive Edition - Dynasties Of India Trailer.webm', 'WWVH recording - 20150316.ogg', 'Pharrell Williams - speaking on stage - summer sonic2015.ogv', 'Звернення Президента Володимира Зеленського за підсумками 52-го дня війни.webm', 'Медведчук звернувся до президентів України та рф.webm', 'Звернення Президента України Володимира Зеленського за підсумками 53-го дня війни.webm', 'Выдвижение Алексея Навального в СПб.webm', 'Gotthard Base Tunnel.ogg', 'Episode 1- Driving The Telescope (Hubble – Eye in the Sky miniseries) WuVYVXdV0vQ.webm', 'Kennedy Space Center 2012 and Beyond XMCr04GXQeM.webm', \"NASA - Measuring Mars' Ancient Ocean WH8kHncLZwM.webm\", 'En.Video-West Nile fever.webm', 'У Львові рятувальники ліквідували пожежу на СТО, що сталася після ворожого обстрілу окупантів.webm', 'Como recortar imagens no Wikimedia Commons.webm', 'LL-Q150 (fra)-DSwissK-duper.wav', 'National-Anthem-of-Spain- 1931-1939 -Himno-de-Riego.ogg', 'Presidente Alvarado sobre ciberataque.webm', 'Ejaculation.ogv', 'LL-Q33965 (sat)-Rocky 734-ᱚᱞ ᱪᱤᱠᱤ.wav', 'Kotohikihama singing sand.webm', 'Die Bedeutung von Ostern für Christen und Christinnen.webm', 'Welche Bedeutung hat das Osterlamm?.webm', 'Welche Bedeutung hat die Osterkerze?.webm', 'Wie funktioniert induktives Laden?.webm', 'Common Toad (Bufo bufo) (W BUFO BUFO R3 C2).ogg', 'Jake Helgesen, Caloundra captain 2022-04-23.ogg', 'How NASA Will Protect Astronauts From Space Radiation vpNa4u997xA.webm', 'Hubble’s Servicing Mission 4 Celebrates its Ten-Year Anniversary qKyluwzCuDY.webm', 'Kalani O’Neill, Brothers Sunshine Coast senior second rower 2022-04-29.ogg', 'Dprknationalanthem.ogg', 'جوجه طلایی.S85105.ogg', 'Warum sind Insekten wichtig?.webm', 'So funktioniert die Atmung.webm', 'Gedankenexperiment Schrödingers Katze.webm', \"Natal'ya Zubarevich voice.oga\", 'United States Navy Band - Yumi, Yumi, Yumi.ogg', 'Die Entstehung des Lebens.webm', 'Experiment zur Relativitätstheorie.webm', 'Юрий Левитан - Освобождение города Яхрома.ogg', 'Responding to a Massive Measles Epidemic in DR Congo.webm', 'Marcha Real-Royal March by US Navy Band.ogg', 'Beispielvideo einfache Kartographerkarten mit dem VisualEditor erstellen.webm', 'Meow domestic cat.ogg', 'Beispielvideo Kartographerkarten mit Geoline über Wikidata in Wikitext 01.webm', 'Bose-Einstein Condensation.ogv', 'Bulgarian national anthem (abridged), performed by the United States Navy Band.mp3', 'BROLL A Senior Airman becomes a popular pizza guy with his ‘combat kitchen’ in the sky DOD 105342628.webm', 'Solidarity message to ex-Muslims - Lawrence Krauss.webm', 'The Star-Spangled Banner (2001) - Concert Band - United States Air Force Heritage of America Band.mp3', 'Bylaw Resource Video.webm', 'LL-Q150 (fra)-LoquaxFR-au sortir de.wav', 'Namibias Nationalparks.webm', 'Der Löwe - ein Symboltier.webm', 'Yuki+No+Shingun.ogg', 'Address by the President of Russia at the military parade on May 9, 2022.webm', 'Sousa - \"Washington Post March,\" m. 1-7.mid', 'Sukarno and Japan, ABC 1966.webm', 'Roei No Uta.ogg', 'En.Video-Influenza A virus.webm', 'En-au-ten a penny.ogg', 'En.Video-Lassafever.webm', 'Lil Savage S.W.T Super Gremlin Freestyle 2 by Lil Savage S.W.T.wav', 'Anthem of Georgia in Abkhazian.ogg', 'Shoot Out.wav', \"MJL - Why Wikipedia Works - Episode 4 - Qatar's block.webm\", 'Partant Pour La Syrie.ogg', 'Truyện Kiều Recited.wav', 'Weimar Republic Anthem.ogg', '\"Semper Paratus\", performed by the United States Navy Band.oga', 'LL-Q1860 (eng)-Vealhurl-suss.wav', 'Board of Trustees Why get involved?.webm', 'Role of the Board of Trustees.webm', 'Zes jaar na de stormvloed.ogv', 'Advice on Returning to Earth for Astronaut Christina Koch from Scott Kelly.webm', 'Updated BP Texas City Animation on the 15th Anniversary of the Explosion.ogg', \"McDonald's commercial (1963).webm\", 'E morse code.ogg', 'Beispielvideo komplexe Kartographerkarten erstellen mit VisualEditor und Wikitext.webm', 'Quaker Corn Bran scarecrow commercial 2 (1981).webm', 'Vote in the Board of Trustees election.webm', 'Board of Trustees informational video.webm', 'Der Planet Mars.webm', 'So trinken Bäume.webm', 'En.Video-Influenza A virus subtype H5N1.webm', 'Kk-kazakhstan.ogg', 'Opvouwbare fiets.ogv', 'Interview mit Holocaust-Überlebender Margot Friedländer.webm', 'Ru-Mari Kraimbrery (intro).wav', 'We Win As One - 2019 Southeast Asian Games Theme Song.ogg', 'Ikusgela - Hannah Arendt.webm', 'Ikusgela – Simone de Beauvoir.webm', 'Klimazonen in Vietnam.webm', 'The ASEAN Way (Instrumental).ogg', 'En-us-farmer.ogg', 'Interview mit dem Virologen Prof. Stephan Becker zur Corona-Pandemie.webm', 'Herausforderung Wasserversorgung aus Karstgrundwasser.webm', 'Bn-বরানগর রামকৃষ্ণ মিশন আশ্রম উচ্চ বিদ্যালয়.oga', 'Wie können Bäume die Stadt kühlen?.webm', 'Hubble, Swift Detect First-ever Changes in an Exoplanet Atmosphere.ogv', 'Joe Biden takes the presidential oath of office.webm', 'Blowing a raspberry.ogv', 'Age Of Empires III- Definitive Edition - Knights of the Mediterranean - AVAILABLE NOW.webm', 'Ceremony of Handover of Hong Kong 1997- 香港回归仪式.ogg', 'President-Biden-Delivers-Remarks-on-the-Horrific-Elementary-School-Shooting-in-Uvalde -Texas.webm', 'Звернення Президента України Володимира Зеленського увечері 92-го дня повномасштабної війни.webm', 'Sae taryung.wav', 'Mamma1234.webm', 'Enable Registration for Event page.webm', 'PWR nuclear power plant animation', 'Vlootschouw van de Luchtmacht-517877.ogv', 'RajReddy Transitions.ogg', 'Wikimedia Sound Logo meeting 1.webm', 'Monza fans vs Pisa, 2022.webm', 'En.Video-Salmonellosis.webm', 'En.Video-Abdominal thrusts.webm', 'Como fotografar um monumento.webm', 'How can we collect more solar energy on a cloudy day.webm', 'Kartensaison Teaser.webm', 'Are criminals born or made.webm', 'Are scientific discoveries merely lucky shots.webm', 'What is religion.webm', 'Why are women beautiful and men intelligent.webm', 'How does your memory work.webm', 'Ru-Beslan school hostage crisis (intro).ogg', 'A Drier Future Sets the Stage for More Wildfires q6FlcuBMVWU.webm', \"Greenland's Extreme Melt, 1 Year Later FSEQfgYBzKk.webm\", 'COVID-19 Earth Observation Dashboard Tutorial 3jjaJcSl9GI.webm', 'Как защититься от нападения собаки.webm', 'STS-107, final moments in cabin (Space Shuttle Columbia disaster).webm', 'Inside Hurricane Maria in 360° A7MIVsE2oMM.webm', 'Liftoff of Orion 6Hn8qnsucwo.webm', 'Anthem of Democratic Kampuchea.ogg', 'Clement Masson - Bye Bye Birdy (2017).webm', 'SNCF Dampflok CH Steam 241A65 241P17.ogv', 'Wiesen Viaduct, aerial video.webm', 'Patricia Janečková - Frühlingsstimmen - Johann Strauss II - Obecní dům Smetana Hall Prague 20191227.webm', 'Confession of british spy malayalam.flac', 'En.Video-Leishmaniasis.webm', 'NASA - DNA Building Blocks Can Be Made in Space 1g7AKVZ3HC4.webm', '11 Years Charting Edge of Solar System ZY8D71NW1wM.webm', 'Hubble Observes Atmospheres of TRAPPIST-1 Exoplanets in the Habitable Zone kgHKXjuuE40.webm', 'Oben am jungen Rhein.ogg', 'LL-Q150 (fra)-Nicroc-sphénopalatineganglioneuralgie.wav', 'LL-Q150 (fra)-Louloupalatine-sphénopalatineganglioneuralgie.wav', 'LL-Q150 (fra)-VictorDtmtc-sphénopalatineganglioneuralgie.wav', 'LL-Q150 (fra)-Maroxib-sphénopalatineganglioneuralgie.wav', 'LL-Q150 (fra)-Willylexomil-sphénopalatineganglioneuralgie.wav', 'LL-Q150 (fra)-VictorDtmtc-lycanthropique.wav', 'Song of the Departure (Chant du Depart).ogg', 'Maryana Iskander message for Juntas En Internet 2022.webm', 'Sentinels of the Heliosphere.ogv', 'Counting Comets JpMo4lhEvEs.webm', 'Doomed Neutron Stars Create Blast of Light and Gravitational Waves x Akn8fUBeQ.webm', 'Alaska’s Bubbling Lakes 5CV2bz g3u8.webm', 'SUIT UP! A Very Fancy Reunion Video (Pizzamas Day 8).webm', 'Joy & Heron - Animated CGI Spot by Passion Pictures.webm', 'Create an Event page through Search.webm', 'Ronald Reagan makes racist remark in phone call with Richard Nixon, October 1971.ogg', 'Lagu Rasmi Sabah - Sabah Tanah Airku.ogg', \"Results of the '77 election sample in Israel.webm\", 'Cercopithecus lomamiensis booms - journal.pone.0044271.s016.ogg', 'SamoaAnthem.ogg', 'Is er oneindig veel zand.webm', 'Complex-numbers--inevitability-russian.opus', 'A Tasty Drop.mpg', 'Bamboo.mpg', 'Brao Folksinger Recalls the Past.mpg', 'Brao Men Weaving Traditional Angkeus Basket.mpg', 'Burial Land.mpg', 'Choch-UNESCO.mpg', 'Fabric-UNESCO.mpg', 'Jarai Traditional String Instrument.mpg', 'Missing.mpg', 'Mr Ha Yerntang.mpg', 'My Daily Food-UNESCO.mpg', 'My wish.mpg', 'Protector-UNESCO.mpg', 'Rice Wine.mpg', 'Sanoung-UNESCO.mpg', 'Six nights-UNESCO.mpg', 'Tampuan man cut the bamboo.mpg', 'Tampuan Soup.mpg', 'The last fortune teller-UNESCO.mpg', 'TRAPS-Brao people.mpg', 'Tro Khlok Maker.mpg', 'Hoe duurzaam is de elektrische auto nou echt.webm', 'Hoe is het conflict tussen Israëliërs en Palestijnen ontstaan.webm', 'Hoe ontstaat dyslexie.webm', 'Is intermittent fasting goed voor je.webm', 'Is suiker echt zo slecht voor je.webm', 'Waarom kan de één wel stoppen met gokken en de ander niet.webm', 'Waarom mag je niet drinken als je zwanger bent.webm', 'Waarom moeten we af van diagnoses als depressie.webm', 'Wat moet je doen bij een kernramp.webm', 'Zo lossen we de files op.webm', 'জয়শ্রীরাম সরকার.wav', 'Maksim Kats voice.oga', 'Karl Pajak - Spirit Chaser (2016).webm', 'Bro gozh ma zado -O Breizh ma Bro- (Version orchestre).ogg', \"Chinese Women's Feet by Scientific American - read by Availle for LibriVox's Short Nonfiction Collection Vol. 023 (2011).ogg\", 'Entrevista a participantes de la Marcha LGTB.webm', 'Heavy rythmic pattern audio.ogg', 'WIKITONGUES- Raphael speaking Twi.webm', 'En.User-Tim-moody-sandbox.webm', '2014-11-09 Freifunk.webm', 'Himno de Andalucía.ogg', 'Intro to Maya- Lesson 1 - 10 - Basic Skills.webm', '20220224-090000-VEN119-program - VOA News (24 February 2022).oga', 'Song to the Auspicious Cloud - Second Version.ogg', 'Viewport Navigation - Blender 2.80 Fundamentals.webm', 'Der glykämische Index.webm', 'Die Erfindung der Batterie.webm', 'Die vier Spannungsebenen im Stromnetz.webm', 'En.Video-Anthrax.webm', \"Asteroid Bennu's Surprising Surface Revealed by OSIRIS-REx.webm\", \"Asteroid Bennu's Surprising Surface Revealed by OSIRIS-REx (long form).webm\", 'Der nördliche Polarkreis.webm', 'Einfluss von Fetten und Proteinen auf den Blutzuckerspiegel.webm', 'Gefahr durch chronische Entzündungskrankheiten.webm', 'Glukoseaufnahme über den Dünndarm.webm', 'Warum schauen Sonnenblumen in eine Richtung?.webm', 'Wie wirkt Werbung auf unser Gehirn?.webm', 'SNiPs und ihr Einfluss auf das Körpergewicht.webm', 'God-Save-The-King.oga', 'Royal anthem Canada.ogg', 'WildschweineImSchnee.ogv', 'WIKITONGUES- Orsolya speaking Hungarian.webm', 'Brisbane Lions club song.ogg', 'Update on the European Language Equality Project.webm', 'Story of Kashmiri Wikipedia.webm', 'The Wiki-Bhutan project.webm', 'Making Wiki work for Wales.webm', 'Scribe- Wikidata powered keyboard app for second language learners.webm', 'Building Capacity for Indigenous Youth and Establishing Indigenous Audiovisual Archives.webm', 'Lingua Libre facing diversity and tech challenges.webm', 'WikiWomen- an Erasmus- Programme for minority languages.webm', 'Update from the Language Diversity Hub.webm', 'Dagbani community reaching new Wikipedia editors on prime-time television.webm', 'Update from Wikimedia Community Malta.webm', 'An update from Scots Wikipedia, from Wikimedia UK.webm', 'Introduction of the Development of Paiwan Wikimedians User Group.webm', 'Fitzroy Lions club song.ogg', 'En.Video-Listeriosis.webm', 'Designing Futures of Participation in the Wikimedia Movement – White Paper presentation.webm', 'Piz Ela, aerial video.webm', 'West Coast Eagles club song.ogg', 'LL-Q9610 (ben)-Titodutta-ওঁ.wav', 'Der Menstruationszyklus.webm', 'Landkarte des menschlichen Mikrobioms.webm', 'National anthem of Nigeria.oga', 'Интервью телекомпании РТР в связи с трагедией на атомной подводной лодке \"Kursk\".ogv', 'En-ca-Filipino.oga', 'WikiCon Brasil 2022 - Apresentação.webm', 'WikiCon Brasil 2022 - Apresentação (Legendado).webm', 'WikiCon Brasil 2022 - Bastidores.webm', 'Video of Terri Sewell, John Lewis and Judy Chu.ogv', 'Muhyideenmalaarabi.ogg', 'Paparoa Track, New Zealand.webm', 'Piz Linard, aerial video.webm', 'Histórias do Brasil - Santos Dumont.webm', 'NON É ASMR MA TI FARÀ RIDERE.webm', 'Death Mills (1945).webm', 'En.Video-Brucellosis.webm', 'Tianjin Blast Aftermath Resembles War Zone.webm', 'Small Missouri Town Is a Big Draw for Solar Eclipse.webm', 'Video Codecs 101.webm', 'Вперед, к технологиям!.webm', 'NASA Administrator Jim Bridenstine - A Look Back-iZ3pNJlozLY.webm', 'The Thin Man trailer (1934).webm', \"NASA - Highlights from SOHO's 20 Years in Space LJAcrorHx8I.webm\", 'Duetschslandlied(oldrecording).ogg', 'NASA - Missions Take an Unparalleled Look into Superstar Eta Carinae 0rJQi6oaZf0.webm', 'Cavite Hymn.ogg', 'Aegukka.ogg', 'Lupang Hinirang.ogg', 'What Smoking Does to Your Lungs - The Cold Hard Facts - The Real Cost.webm', 'Lupang Hinirang band rendition.ogg', 'Himno ng Tanza.ogg', 'Anthrax and Antibiotics - Anthrax is Deadly, Antibiotics Could Save Your Life.webm', 'Indonesia Raya Simfoni dan Vokal 1 Bait.ogg', 'Apollo 11 Landing - first steps on the moon.ogv', 'WebM- A Video Codec for the Web.webm', 'What is WebM-.webm', 'President Biden Delivers Remarks on a Successful Counterterrorism Operation (NL1p70RsbnU).webm', 'Wikimedia Start Republika Srpska 2022 Lessons learned.webm', 'Warum färben sich im Herbst die Blätter?.webm', 'Die Schichten der Erdatmosphäre.webm', 'En.Video-Bubonic plague.webm', 'Senate Candidate Josh Hawley- Kavanaugh Core Issue for Midterms - THE CIRCUS - SHOWTIME.webm', 'President Tsai responds to the live-fire military exercises China has initiated around Taiwan.webm', '斑鴿咧叫的聲.ogg', 'Fasi fakafonua.mid', 'Solomonislandsanthem.ogg', 'Fiji National Anthem.ogg', 'Gesta Francorum - Liber X (Capture of Jerusalem and Battle of Ascalon).webm', 'Piz Sesvenna, aerial video.webm', 'Piz Plazèr, aerial video.webm', 'Smoke-engineerguy.ogv', 'Star Spangled Banner instrumental', 'Министр обороны- Будет всё мирно, дипломатично! Всё станет на свои места! Думаю, в ближайшее время!.webm', 'Vaush voice.ogg', 'Podcasting about Wikimedia in your language.webm', 'La Concorde.ogg', 'Clara Butt - Land Of Hope And Glory.ogg', 'ਤਿਉਹਾਰ ਬਾਰੇ ਦੱਸਦਾ ਹੋਇਆ ਬੱਚਾ.webm', 'National Anthem of Palestine (Vocal).ogg', \"En.Video-Legionnaires' disease.webm\", 'Fluxgate Magnetometers.ogv', 'Barisan Nasional.ogg', 'ALS Ice Bucket Challenge.webm', 'Meet the Movement Charter Drafting Committee.webm', '19160300 Nigger Love A Watermelon-Harry C Browne.ogg', 'So wurde die Berliner Mauer gebaut (CC BY 4.0)', 'Little Albert experiment (1920).webm', 'Question 1 - BOT 2022 Candidate Videos.webm', 'Question 2 - BOT 2022 Candidate Videos.webm', 'Question 3 - BOT 2022 Candidate Videos.webm', 'Question 4 - BOT 2022 Candidate Videos.webm', 'Question 5 - BOT 2022 Candidate Videos.webm', 'Question 6 - BOT 2022 Candidate Videos.webm', 'Jibek.ogg', 'Ellada.ogg', 'How to add links on kashmiri wikipedia.webm', '1949. Лев и Заяц.webm', 'Δήλωση του Πρωθυπουργού, Αλέξη Τσίπρα, για τις πυρκαγιές στην Αττική 24 Ιουλίου 2018.webm', 'Ryan Giggs Welsh Government and NHS Wales.webm', 'Snow White (1933).webm', \"O'zbekiston Sovet Davlat Madhiyasi (Instrumental).ogg\", 'Quels sont les principes du droit international humanitaire.webm', 'En-us-en passant.mp3', 'LL-Q9610 (ben)-Aishik Rehman (Hirok Raja)-কক্সবাজার.wav', 'United States Navy Band - Marcha Nacional del Perú (abridged).ogg', 'Piz Cavardiras, aerial video.webm', 'Dschimels, aerial video.webm', 'Millie Bobby Brown Pandora 2020.webm', 'How Highways Almost Destroyed Amsterdam - Plan Jokinen.webm', 'Traffic Calming is Everywhere in the Netherlands.webm', '2021年1月29日 外交部:中方不再承认所谓BNO护照为有效证件.webm', 'Himno Nacional Argentino instrumental (abridged).ogg', \"Eric Harris and Dylan Klebold's voices (from the Columbine Basement Tapes).ogg\", 'Ho Chi Minh reading the Proclamation of Independence of the Democratic Republic of Vietnam on 2 September 1945.wav', '國立八中校歌.ogg', 'Walla Zaman Ya Selahy.ogg', 'Chūkon giretsu Jitsuroku Chūshingura (1928).webm', 'PseudoSkull voicemail 2010-09-14 326pm.wav', '4-sep-1944 Gerbrandy Radio Oranje.ogg', 'Lagu Rasmi Selangor - Duli Yang Maha Mulia.ogg', 'Lagu Rasmi Perak - Allah Lanjutkan Usia Sultan.ogg', 'Abhinav from Dharmshala, Himachal Pradesh speaking about Dhauladhar, Cultural differences in Himachal Pradesh.webm', 'LL-Q150 (fra)-Lepticed7-gonzo.wav', 'Super idol.webm', 'U.S. Navy Band - God Save the King.oga', 'Monologue with 93 year old white male, Tangier Island, Virginia.ogg', 'En-us-Guinea.ogg', 'Front loading garbage truck loading a dumpster.webm', 'God Save the King - Alan Turner.mp3', 'LL-Q150 (fra)-Fabricio Cardenas (BiblioCanet66)-Rue des Remparts.wav', '399603 dustin-davis typing.wav', 'Resting-Associated-Vocalization-Emitted-by-Captive-Asian-House-Shrews-(Suncus-murinus)-Acoustic-pone.0111571.s002.oga', 'Why We Fight- The Nazis Strike.webm', 'Angika Ubtan song.webm', 'Oi, Tudo Bem- EP 01.webm', 'Interview of Neelam Khania Dhramshala citizen.webm', '\"Sugbo\", Hymn of Cebu Province.ogg', 'Rafael Baronesi e Pri Helena convidam para a peça Nerium Park.webm', 'Oi, Tudo bem- EP 02.webm', 'Eu não aguento mais esse COVID !.webm', 'Ikusgela – Platon.webm', 'Geoffrey Rush bbc radio4 front row 01 05 2013.flac', 'Libervox-the-first-corn-native-american-pawnee-legend.ogg', 'Обращение Президента Российской Федерации 21 сентября 2022.webmhd.webm', \"Voice of People 'de Facto' Time signal.wav\", 'Gan,jicha,Yongxin Dialect,维基百科,自由的百科全书.wav', 'Town.mid', 'A Meeting of the Limkiln Club.ogg', 'St. Maartensviering Weeknummer, 61-47 - Open Beelden - 27281.ogv', 'Spring - Blender Open Movie.webm', 'Campana clásica de bicicleta (sonido) 02.wav', 'NBS Štāba orķestris - Dievs, svētī Latviju!.ogg', 'Swadlincote.ogg', '200437 bigben12345 petersglocke.oga', 'Brownnoise.ogg', 'De-Tostedt.ogg', 'De-Tostedt-2.ogg', 'Waltzing Matilda.ogg', 'U.S. Navy Band, Advance Australia Fair (abridged).oga', 'Tuvalu mo te Atua.ogg'])" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "database.keys()" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "4598f934", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'webm': 1770,\n", + " 'ogg': 545,\n", + " 'ogv': 388,\n", + " 'oga': 44,\n", + " 'flac': 17,\n", + " 'wav': 8,\n", + " 'WebM': 2,\n", + " 'opus': 2,\n", + " 'OGG': 1}" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "{k: v for k, v in sorted(language_count.items(), key=lambda item: item[1],reverse=True)}" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "id": "29f0a6b6", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 2.05 ms, sys: 10.1 ms, total: 12.1 ms\n", + "Wall time: 8.73 s\n" + ] + }, + { + "data": { + "text/plain": [ + "CompletedProcess(args='ffmpeg -vn -sn -i \"20170110 President Obama Farewell Speech HD.webm\" test_big_size.flac', returncode=0)" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "import subprocess\n", + "subprocess.run(f'ffmpeg -vn -sn -i \"2012 State Of The Union Address (720p).ogv\" test_big_size.flac',shell=True)\n" + ] + }, + { + "cell_type": "markdown", + "id": "7cd49135", + "metadata": {}, + "source": [ + "video name 1-6-17- White House Press Briefing.webm\n", + "source size = 564 mb\n", + "\n", + "webm to flac 1h 24min 6s\n", + "flac size = 389 mb\n", + "convertion rate 0.11mb/s\n", + "\n", + "webm to mp3 2min 40s\n", + "flac size = 72.8 mb\n", + "convertion rate 3.5mb/s\n", + "\n", + "wav\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "e2040699", + "metadata": {}, + "outputs": [], + "source": [ + "from google.cloud import storage\n", + "import os\n", + "\n", + "#env variables \n", + "project_id = 'the-peoples-speech'\n", + "bucket_name = 'wikimedia_commons'\n", + "bucket_file = 'test/error.txt'\n", + "local_file = 'error.txt'\n", + "os.environ[\"GOOGLE_APPLICATION_CREDENTIALS\"] = \"the-peoples-speech-ee8163e65ace.json\"\n", + "client = storage.Client(project_id)\n", + "bucket = client.get_bucket(bucket_name)\n", + "blob = bucket.blob(bucket_file)\n", + "client = storage.Client(project_id)\n", + "\n", + "# get files in bucket\n", + "files_list = [blob for blob in client.list_blobs('wikimedia_commons', prefix='raw_videos')]" + ] + }, + { + "cell_type": "markdown", + "id": "08198ef9", + "metadata": {}, + "source": [ + "# Upload audios changing format to flac" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "0f79285c", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 1%| | 74/9360 [25:03<187:09:11, 72.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "'Principle and Pragmatism in Developing Private Law'- 2019 Cambridge Freshfields Lecture.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%| | 75/9360 [26:07<180:03:39, 69.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "'Racism is evil,' Trump says.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 1%| | 85/9360 [30:38<32:59:18, 12.80s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(뉴스인스타) 180623 KBS '해피투게더3' 흥행 돌풍 대세녀 박경림, 제시 출근길 직캠.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%| | 86/9360 [30:41<25:29:48, 9.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(코보티비) '눈시울 붉힌' 서재덕의 시즌 첫 승 인터뷰.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 1%|▏ | 121/9360 [1:08:25<161:50:11, 63.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0230 New Horizons 01 00 38 00-0036.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%|▏ | 122/9360 [1:09:32<164:31:22, 64.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0231 House in the Middle The 02 41 13 20-0040.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%|▏ | 123/9360 [1:10:36<164:39:20, 64.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "03 - The Post-Soviet Years 1989 - Present 2008 (DARPA history).ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%|▏ | 124/9360 [1:11:39<163:54:11, 63.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "03 Decision to join the partisan forces (Ciril Zlobec).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%|▏ | 125/9360 [1:12:42<162:37:10, 63.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "03 Father did not agree with her decision (Alenka Gerlovic).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%|▏ | 126/9360 [1:13:44<162:09:30, 63.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "03 First contact with the Soviet resistance (Ivo Srcnik).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%|▏ | 127/9360 [1:14:47<161:15:12, 62.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "03 Hidden in an earth cellar (Romana Verdel).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%|▏ | 128/9360 [1:15:48<160:33:31, 62.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "03 Life in fear (Ana Zablatnik).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%|▏ | 129/9360 [1:16:50<160:01:03, 62.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "03 Who supported the partisans- (Lipej Kolenik).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 4%|▎ | 328/9360 [7:12:38<202:06:46, 80.56s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "102-Road Bus, Fanhe 20190410 161336000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▎ | 329/9360 [7:13:27<178:38:47, 71.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "102-Road Bus, Fanhe 20190411 162853000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▎ | 330/9360 [7:14:16<161:15:08, 64.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "102-Road Bus, Fanhe 20190411 163348000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▎ | 331/9360 [7:16:02<192:46:37, 76.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "102-Road Bus, Fanhe 20190505 154815 00.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▎ | 332/9360 [7:17:45<212:18:25, 84.66s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "102-Road Bus, Fanhe 20190505 161633 00.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▎ | 333/9360 [7:18:01<160:44:12, 64.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "102-Road Bus, Fanhe 20190508 161443.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▎ | 334/9360 [7:19:38<185:34:33, 74.02s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "102-Road Bus, Fanhe 20190513 162643 00.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▎ | 335/9360 [7:21:23<208:33:51, 83.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "102-Road, Fanhe 20190506 162321 00.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 5%|▌ | 469/9360 [12:48:18<64:26:17, 26.09s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1927. Октябрь (Эйзенштейн).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 6%|▌ | 528/9360 [12:59:39<30:01:45, 12.24s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2 Weeks In Italy - A Cinematic Travel Film.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 8%|▊ | 780/9360 [17:19:06<163:59:16, 68.81s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2012-06 Dessau Hbf→Wörlitz.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 8%|▊ | 784/9360 [17:22:42<131:33:56, 55.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2012-06 Wörlitz→Dessau Hbf.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 12%|█▏ | 1083/9360 [20:39:40<55:33:51, 24.17s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2017-10-01 09-07-00 transterritoire-vtt-belfort.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 12%|█▏ | 1107/9360 [21:08:33<74:29:40, 32.49s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2019-03-03 GOES 16 Lee County Alabama Tornado.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 12%|█▏ | 1124/9360 [21:49:39<210:43:12, 92.11s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2022 President Bidens State of the Union address at the Capitol.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 12%|█▏ | 1130/9360 [21:57:34<193:13:09, 84.52s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "225-Road Bus, Shenyang 181855000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 12%|█▏ | 1132/9360 [21:57:59<111:59:01, 49.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190427 120922.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 1133/9360 [22:00:10<168:09:50, 73.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190427 120947000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 1134/9360 [22:00:23<126:10:09, 55.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190427 121416.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 1135/9360 [22:00:30<93:19:07, 40.84s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190427 121849.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 1136/9360 [22:02:56<165:31:30, 72.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190427 121906000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 1137/9360 [22:05:15<211:08:38, 92.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190427 122232000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 1138/9360 [22:07:29<239:15:37, 104.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190427 122908000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 1139/9360 [22:09:55<267:27:25, 117.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190428 174510000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 1140/9360 [22:12:28<292:10:44, 127.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190428 175425000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 1141/9360 [22:15:06<312:39:25, 136.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190428 211655000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 12%|█▏ | 1146/9360 [22:16:30<80:19:08, 35.20s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "291st-remagen.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 12%|█▏ | 1161/9360 [22:55:12<399:02:55, 175.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3-11-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 1162/9360 [22:59:56<473:25:03, 207.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3-11-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 1163/9360 [23:01:29<395:13:53, 173.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3-11-19- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 12%|█▏ | 1165/9360 [23:07:53<411:29:36, 180.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3-12-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 12%|█▏ | 1167/9360 [23:17:14<517:21:37, 227.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3-12-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 13%|█▎ | 1179/9360 [24:03:43<378:55:36, 166.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3-16-11- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 13%|█▎ | 1184/9360 [24:24:56<524:17:16, 230.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3-18-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 1185/9360 [24:27:25<468:40:07, 206.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3-19-13- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 1186/9360 [24:29:35<416:42:17, 183.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3-19-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 13%|█▎ | 1200/9360 [25:18:40<378:25:09, 166.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3-25-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 1201/9360 [25:21:14<369:40:51, 163.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3-25-13- Press Briefing by Deputy Press Secretary Josh Earnest.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 1202/9360 [25:23:28<349:38:58, 154.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3-26-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 13%|█▎ | 1243/9360 [28:31:20<2308:15:09, 1023.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4 4 20 Members of the Coronavirus Task Force Hold a Press Briefing.webmhd.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 1244/9360 [28:33:52<1718:26:59, 762.25s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4 5 20 Members of the Coronavirus Task Force Hold a Press Briefing.webmhd.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 13%|█▎ | 1259/9360 [29:25:44<489:04:13, 217.34s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4-14-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 14%|█▍ | 1295/9360 [31:52:15<486:59:06, 217.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4-30-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 14%|█▍ | 1298/9360 [32:05:05<522:09:05, 233.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4-4-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 14%|█▍ | 1303/9360 [32:27:30<547:45:14, 244.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4-8-13- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▍ | 1304/9360 [32:30:03<486:09:35, 217.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4-8-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 14%|█▍ | 1306/9360 [32:35:54<420:17:22, 187.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4-9-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 14%|█▍ | 1310/9360 [32:44:24<271:55:03, 121.60s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4. Dimension einer Mandelbrot-Menge aus Quaternionen 20191213 5K.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 14%|█▍ | 1337/9360 [33:42:50<547:15:52, 245.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5-12-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▍ | 1338/9360 [33:44:51<463:48:58, 208.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5-13-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▍ | 1339/9360 [33:46:57<408:37:09, 183.40s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5-13-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▍ | 1340/9360 [33:50:52<443:20:25, 199.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5-13-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 14%|█▍ | 1342/9360 [34:00:32<541:37:24, 243.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5-14-13- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 15%|█▌ | 1424/9360 [39:10:46<457:58:20, 207.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-17-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 15%|█▌ | 1427/9360 [39:19:45<415:46:21, 188.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-18-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 1428/9360 [39:23:49<452:26:44, 205.35s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-18-18- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 1429/9360 [39:26:30<423:00:01, 192.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-19-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 1430/9360 [39:28:43<384:21:58, 174.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-2-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 1431/9360 [39:30:58<357:49:10, 162.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-2-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 1432/9360 [39:35:06<414:05:54, 188.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-2-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 1433/9360 [39:37:48<397:00:19, 180.30s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-20-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 1434/9360 [39:39:31<346:12:32, 157.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-21-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 1435/9360 [39:41:45<330:18:26, 150.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-22-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 1436/9360 [39:43:16<291:30:11, 132.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-22-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 1437/9360 [39:46:18<324:33:42, 147.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-22-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 1438/9360 [39:48:08<299:18:24, 136.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-22-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 1439/9360 [39:50:12<291:34:34, 132.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-23-09- White House Press Briefing with President Obama.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 1440/9360 [39:52:36<299:15:16, 136.02s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-23-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 15%|█▌ | 1447/9360 [40:26:39<605:42:53, 275.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-25-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 1448/9360 [40:28:14<486:07:32, 221.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-26-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 16%|█▌ | 1451/9360 [40:41:25<522:03:59, 237.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-28-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1452/9360 [40:42:47<419:25:17, 190.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-29-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 16%|█▌ | 1460/9360 [46:59:55<14061:19:07, 6407.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-4-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 16%|█▌ | 1469/9360 [48:17:44<2556:57:37, 1166.53s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-9-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1470/9360 [48:19:17<1850:17:19, 844.24s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-9-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1471/9360 [48:21:50<1395:58:39, 637.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-9-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1472/9360 [48:25:52<1135:44:08, 518.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-9-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1473/9360 [48:28:42<906:39:34, 413.84s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6-9-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1474/9360 [48:30:06<689:43:40, 314.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6. Responsabilidade Objetiva e Direito de Regresso.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1475/9360 [48:31:09<524:12:44, 239.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6.002x-S6V2-MIT-edX-Nonlinear-Element-Video.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1476/9360 [48:32:22<415:06:22, 189.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6021 Science and Superstition 00 45 46 21.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1477/9360 [48:33:40<341:54:55, 156.15s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6037 Atomic Alert Elementary version 00 38 27 15.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1478/9360 [48:34:57<289:40:49, 132.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7 - 1 - Lecture 5.1 Loops and Iteration (21 12).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1479/9360 [48:36:13<252:31:35, 115.35s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7 - 2 - Lecture 5.2 Loop Idioms (15 05).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1480/9360 [48:37:18<219:57:46, 100.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7 - 3 - Lecture 5.3 Largest and Smallest (10 16).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1481/9360 [48:38:23<196:20:22, 89.71s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7 - 4 - Worked Exercise 5.1 (14 39).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1482/9360 [48:40:17<212:18:32, 97.02s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-1-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1483/9360 [48:41:56<213:29:28, 97.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-1-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1484/9360 [48:44:28<249:24:27, 114.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-1-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1485/9360 [48:47:03<276:00:58, 126.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-1-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1486/9360 [48:50:40<335:36:29, 153.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-10-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1487/9360 [48:52:09<292:59:39, 133.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-11-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1488/9360 [48:54:46<308:28:23, 141.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-11-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1489/9360 [48:57:28<321:48:14, 147.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-11-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1490/9360 [48:59:03<287:51:35, 131.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-12-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1491/9360 [49:00:46<268:54:53, 123.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-12-11- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1492/9360 [49:02:21<250:45:49, 114.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-12-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1493/9360 [49:05:37<303:50:14, 139.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-12-13- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1494/9360 [49:07:59<305:31:56, 139.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-13-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1495/9360 [49:09:32<274:43:37, 125.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-13-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1496/9360 [49:11:17<261:38:22, 119.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-13-11- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1497/9360 [49:14:50<322:06:48, 147.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-13-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1498/9360 [49:17:56<347:31:46, 159.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-13-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1499/9360 [49:19:35<308:01:29, 141.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-14-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1500/9360 [49:21:16<281:49:20, 129.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-14-11- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1501/9360 [49:23:42<293:05:26, 134.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-14-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1502/9360 [49:26:34<317:25:32, 145.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-14-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1503/9360 [49:29:00<317:40:50, 145.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-15-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1504/9360 [49:31:28<319:14:27, 146.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-15-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1505/9360 [49:34:40<349:35:27, 160.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-16-13- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1506/9360 [49:37:02<337:17:58, 154.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-16-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1507/9360 [49:40:10<359:18:22, 164.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-17-13- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1508/9360 [49:44:09<408:03:59, 187.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-17-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1509/9360 [49:45:49<350:44:11, 160.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-18-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1510/9360 [49:48:30<350:43:41, 160.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-18-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1511/9360 [49:50:11<311:36:16, 142.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-19-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1512/9360 [49:52:24<305:03:33, 139.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-19-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1513/9360 [49:54:18<287:57:01, 132.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-2-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1514/9360 [49:56:32<289:23:25, 132.78s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-2-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1515/9360 [49:58:39<285:24:58, 130.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-20-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1516/9360 [50:01:40<317:50:54, 145.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-20-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1517/9360 [50:04:11<321:30:55, 147.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-20-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1518/9360 [50:06:08<301:39:13, 138.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-21-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1519/9360 [50:07:54<280:11:32, 128.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-21-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 1520/9360 [50:10:38<303:30:39, 139.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-21-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1521/9360 [50:13:10<311:09:56, 142.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-21-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1522/9360 [50:14:46<280:52:53, 129.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-22-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1523/9360 [50:18:04<325:55:39, 149.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-22-13- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1524/9360 [50:20:09<309:34:58, 142.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-22-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1525/9360 [50:25:26<423:47:54, 194.73s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-22-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1526/9360 [50:28:36<420:51:57, 193.40s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-23-13- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1527/9360 [50:32:47<458:22:49, 210.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-23-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1528/9360 [50:34:59<406:42:25, 186.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-24-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1529/9360 [50:37:41<390:06:24, 179.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-25-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1530/9360 [50:40:27<381:33:21, 175.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-25-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1531/9360 [50:42:12<335:48:21, 154.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-26-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1532/9360 [50:43:55<301:48:44, 138.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-26-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1533/9360 [50:46:13<301:31:04, 138.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-26-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1534/9360 [50:48:24<296:25:51, 136.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-27-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1535/9360 [50:50:02<271:08:39, 124.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-27-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1536/9360 [50:51:36<251:20:09, 115.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-27-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1537/9360 [50:53:41<257:34:07, 118.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-28-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1538/9360 [50:55:54<266:41:57, 122.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-28-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1539/9360 [50:58:12<276:57:30, 127.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-28-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1540/9360 [51:00:09<269:35:23, 124.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-29-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1541/9360 [51:02:21<274:51:23, 126.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-29-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1542/9360 [51:06:01<335:46:03, 154.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-29-15- White House Press Briefing by Deputy Press Secretary Eric Schultz.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1543/9360 [51:08:28<330:51:18, 152.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-29-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 1544/9360 [51:11:18<341:58:40, 157.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-3-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1545/9360 [51:13:45<335:34:32, 154.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-30-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1546/9360 [51:15:24<298:46:06, 137.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-31-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1547/9360 [51:18:37<334:54:33, 154.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-31-13- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1548/9360 [51:20:50<321:18:37, 148.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-31-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1549/9360 [51:25:39<413:08:44, 190.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-31-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1550/9360 [51:27:11<348:38:51, 160.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-5-11- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1551/9360 [51:31:11<400:27:41, 184.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-6-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1552/9360 [51:34:03<392:01:13, 180.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-6-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1553/9360 [51:35:41<338:13:38, 155.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-7-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1554/9360 [51:37:39<313:16:08, 144.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-7-11- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1555/9360 [51:40:20<324:12:32, 149.54s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-7-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1556/9360 [51:45:05<411:56:57, 190.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-7-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1557/9360 [51:46:43<352:29:03, 162.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-8-11- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1558/9360 [51:49:12<343:39:01, 158.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-8-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1559/9360 [51:53:13<396:39:34, 183.05s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-8-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1560/9360 [51:54:58<345:57:43, 159.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-9-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1561/9360 [51:59:12<407:30:52, 188.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-9-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1562/9360 [52:00:35<339:19:21, 156.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8 - 1 - Chapter 6 - Strings (27 57).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1563/9360 [52:02:31<312:49:51, 144.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-1-11- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1564/9360 [52:04:49<308:36:58, 142.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-1-18- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1565/9360 [52:06:32<282:21:48, 130.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-10-11- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1566/9360 [52:08:28<273:33:49, 126.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-10-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1567/9360 [52:10:40<276:33:30, 127.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-11-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1568/9360 [52:13:13<292:58:05, 135.35s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-12-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1569/9360 [52:15:14<283:59:31, 131.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-13-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1570/9360 [52:17:02<268:57:17, 124.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-13-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1571/9360 [52:19:22<278:46:24, 128.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-14-18- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1572/9360 [52:21:10<265:10:23, 122.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-15-18- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1573/9360 [52:22:53<252:52:38, 116.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-16-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1574/9360 [52:24:28<238:29:08, 110.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-17-12- Press Briefing by Deputy Press Secretary Josh Earnest.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1575/9360 [52:26:45<255:30:51, 118.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-18-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1576/9360 [52:29:18<277:59:25, 128.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-19-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1577/9360 [52:31:01<261:54:24, 121.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-2-11- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1578/9360 [52:34:41<325:30:09, 150.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-2-18- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1579/9360 [52:36:43<306:56:24, 142.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-20-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1580/9360 [52:39:47<334:20:56, 154.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-20-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1581/9360 [52:42:04<323:07:07, 149.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-21-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1582/9360 [52:44:53<335:05:29, 155.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-22-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1583/9360 [52:46:42<305:08:07, 141.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-23-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1584/9360 [52:50:40<368:06:14, 170.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-24-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1585/9360 [52:53:31<368:11:27, 170.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-24-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1586/9360 [52:56:16<365:01:33, 169.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-25-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1587/9360 [52:59:14<370:54:11, 171.78s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-25-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1588/9360 [53:01:33<349:07:54, 161.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-25-17- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1589/9360 [53:04:37<363:40:57, 168.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-26-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1590/9360 [53:06:58<346:05:13, 160.35s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-27-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1591/9360 [53:10:47<390:19:58, 180.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-28-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1592/9360 [53:13:23<373:53:29, 173.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-29-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1593/9360 [53:16:17<374:37:53, 173.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-29-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1594/9360 [53:18:30<347:57:33, 161.30s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-3-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1595/9360 [53:20:12<309:32:37, 143.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-3-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1596/9360 [53:22:04<289:11:12, 134.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-3-11- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1597/9360 [53:26:24<370:35:41, 171.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-3-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1598/9360 [53:29:43<388:13:13, 180.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-3-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1599/9360 [53:31:26<338:21:19, 156.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-30-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1600/9360 [53:33:17<308:42:00, 143.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-30-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1601/9360 [53:35:49<314:21:49, 145.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-30-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1602/9360 [53:37:52<299:15:46, 138.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-31-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1603/9360 [53:39:29<272:36:08, 126.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-31-11- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1604/9360 [53:41:33<270:51:12, 125.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-4-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1605/9360 [53:43:39<271:06:20, 125.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-4-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1606/9360 [53:45:26<258:33:45, 120.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-4-11- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1607/9360 [53:47:40<267:27:37, 124.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-4-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1608/9360 [53:51:23<331:23:49, 153.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-4-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1609/9360 [53:53:51<327:44:15, 152.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-5-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1610/9360 [53:56:15<321:56:54, 149.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-6-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1611/9360 [53:57:54<289:35:53, 134.54s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-6-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1612/9360 [54:02:01<362:17:52, 168.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-6-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1613/9360 [54:04:28<348:17:00, 161.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-7-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1614/9360 [54:06:04<305:40:44, 142.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-7-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1615/9360 [54:08:33<310:00:42, 144.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-7-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1616/9360 [54:13:12<397:20:57, 184.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-7-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1617/9360 [54:16:18<398:12:38, 185.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-8-13- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1618/9360 [54:19:46<412:50:14, 191.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8-8-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1619/9360 [54:21:37<360:03:57, 167.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8.02x - Lect 10 - Batteries, Power, Kirchhoff's Rules, Circuits, Kelvin Water Dropper.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1620/9360 [54:23:31<326:01:29, 151.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8.02x - Lect 11 - Magnetic Fields, Lorentz Force, Torques, Electric Motors (DC).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1621/9360 [54:25:33<306:30:59, 142.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8.02x - Lect 16 - Electromagnetic Induction, Faraday's Law, Lenz Law, SUPER DEMO.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1622/9360 [54:27:26<287:16:54, 133.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8.02x - Lect 20 - Inductance, RL Circuits, Magnetic Field Energy.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1623/9360 [54:29:24<277:30:08, 129.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8.02x - Lect 3 - Electric Flux, Gauss' Law, Examples.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1624/9360 [54:30:30<236:33:00, 110.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8th Congressional District Candidate Michelle Lee Visits Bemidji.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1625/9360 [54:31:42<212:23:24, 98.85s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9 - 1 - Chapter 7 - Files (24 38).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1626/9360 [54:34:28<255:28:05, 118.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9 16 20 President Trump Holds a News Conference.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1627/9360 [54:36:23<252:59:43, 117.78s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9 18 20 President Trump Holds a News Conference.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1628/9360 [54:38:36<262:30:33, 122.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9 23 20 President Trump Holds a News Conference.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1629/9360 [54:40:11<244:47:46, 113.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-1-11- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1630/9360 [54:42:34<263:58:18, 122.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-10-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1631/9360 [54:44:18<251:34:06, 117.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-10-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1632/9360 [54:48:30<338:28:56, 157.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-10-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1633/9360 [54:51:18<345:03:33, 160.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-10-18- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1634/9360 [54:52:29<287:10:48, 133.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-11 Research - Factors Associated with Poor Control of 9 11-Related Asthma 10 Years Post-Disaster.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1635/9360 [54:53:34<242:48:36, 113.15s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-11 Research - How Do We Plan to Study 9 11 Exposures and Resulting Cancer Risk to WTC Workers.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1636/9360 [54:54:39<211:37:01, 98.63s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-11 Research - What Do Trace Elements in Autopsy Tissues of WTC Decedents Tell Us.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 1637/9360 [54:55:45<190:37:50, 88.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-11 Research - What Role Does Airway Inflammation Play in Obstructive Airway Disease.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1638/9360 [54:56:50<175:25:52, 81.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-11 Research - What are the Three Types of Cancer Found to Increase in WTC Exposed Populations.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1639/9360 [54:57:55<164:12:57, 76.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-11 Research - What are we Finding Related to Airway Injury to Patients Exposed to WTC Dust.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1640/9360 [54:59:00<156:55:49, 73.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-11 Research - What is the Impact of Differential Levels of WTC Exposure and Binge Drinking.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1641/9360 [55:00:12<155:58:10, 72.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-11 Research - What is the Relationship between WTC Injuries and Chronic Health effects.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1642/9360 [55:01:23<154:53:17, 72.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-11 Research - What is the Risk of WTC Responders Developing PTSD as a Result of 9 11 Exposures.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1643/9360 [55:04:55<244:42:32, 114.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-11-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1644/9360 [55:09:37<352:30:04, 164.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-11-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1645/9360 [55:11:26<317:10:15, 148.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-12-11- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1646/9360 [55:13:57<319:06:34, 148.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-12-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1647/9360 [55:15:29<282:14:11, 131.73s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-14-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1648/9360 [55:19:41<359:24:32, 167.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-14-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1649/9360 [55:22:15<350:54:39, 163.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-15-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1650/9360 [55:26:31<409:51:21, 191.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-15-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1651/9360 [55:28:41<370:07:14, 172.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-16-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1652/9360 [55:32:32<407:59:59, 190.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-16-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1653/9360 [55:35:35<402:57:18, 188.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-16-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1654/9360 [55:38:32<395:31:37, 184.78s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-17-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1655/9360 [55:42:48<440:58:42, 206.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-17-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1656/9360 [55:45:28<411:28:48, 192.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-18-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1657/9360 [55:47:05<350:31:25, 163.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-18-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1658/9360 [55:49:48<350:01:01, 163.60s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-18-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1659/9360 [55:53:47<398:26:33, 186.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-18-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1660/9360 [55:55:22<339:50:46, 158.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-19-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1661/9360 [55:57:57<337:08:41, 157.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-19-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1662/9360 [55:59:28<294:28:25, 137.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-2-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1663/9360 [56:02:12<310:50:28, 145.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-2-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1664/9360 [56:04:56<323:09:32, 151.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-20-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1665/9360 [56:07:42<332:08:17, 155.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-22-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1666/9360 [56:10:30<340:21:02, 159.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-22-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1667/9360 [56:13:05<337:27:36, 157.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-23-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1668/9360 [56:14:46<301:16:28, 141.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-24-12- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1669/9360 [56:18:33<356:22:11, 166.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-25-13- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1670/9360 [56:22:07<386:29:43, 180.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-26-13- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1671/9360 [56:24:41<369:25:07, 172.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-26-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1672/9360 [56:27:22<361:08:22, 169.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-26-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1673/9360 [56:30:17<365:19:11, 171.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-27-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1674/9360 [56:32:19<333:36:54, 156.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-28-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1675/9360 [56:34:00<297:56:10, 139.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-29-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1676/9360 [56:36:21<298:59:23, 140.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-29-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1677/9360 [56:39:23<325:56:10, 152.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-29-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1678/9360 [56:43:12<374:29:33, 175.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-3-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1679/9360 [56:45:14<340:19:16, 159.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-30-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1680/9360 [56:48:44<372:52:18, 174.78s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-30-13- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1681/9360 [56:51:10<354:12:30, 166.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-30-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1682/9360 [56:52:41<305:55:44, 143.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-7-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1683/9360 [56:54:24<280:24:17, 131.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-7-11- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1684/9360 [56:56:22<271:44:41, 127.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-8-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1685/9360 [56:59:09<297:01:58, 139.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-8-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1686/9360 [57:04:10<400:27:09, 187.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-8-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1687/9360 [57:05:40<337:49:48, 158.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-9-10- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1688/9360 [57:08:39<350:29:11, 164.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9-9-14- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1689/9360 [57:09:40<284:35:04, 133.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "93-an-nur.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1690/9360 [57:10:42<238:47:42, 112.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "938-AAG-Trimmed.wav\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1691/9360 [57:11:44<206:32:55, 96.96s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "99 bottles of beer.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1692/9360 [57:13:02<194:44:45, 91.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Black Hole’s Dinner is Fast Approaching - Part 2.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1693/9360 [57:14:19<185:10:29, 86.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Brief History of Geodesy.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1694/9360 [57:15:46<185:05:48, 86.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Conversation with President Obama and The Wire Creator David Simon.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1695/9360 [57:16:54<173:10:02, 81.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Day in the Chamber (UK).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1696/9360 [57:18:01<163:50:06, 76.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Drier Future Sets the Stage for More Wildfires q6FlcuBMVWU.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1697/9360 [57:19:43<179:54:05, 84.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Fourth of July Celebration at the White House with the President and First Lady.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1698/9360 [57:20:48<167:40:02, 78.78s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Gem from the Archive- Happy Birthday, POTUS! (August 3, 2009).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1699/9360 [57:23:35<224:00:37, 105.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Gentle Introduction to Wikidata for Absolute Beginners (including non-techies!).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1700/9360 [57:25:25<226:38:09, 106.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Is for Atom 1953.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1701/9360 [57:26:37<204:30:19, 96.12s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Look Inside the First Family's Residence.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1702/9360 [57:27:58<194:46:50, 91.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Mark of Wholesome Meat (1964).ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1703/9360 [57:29:08<181:03:43, 85.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Meeting of the Limkiln Club.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1704/9360 [57:30:13<168:23:40, 79.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Message from President Donald J. Trump Jan 7 2021.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1705/9360 [57:31:17<158:41:06, 74.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Message from President Donald J. Trump.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1706/9360 [57:32:27<155:22:26, 73.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Moment with Jack Fischer.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1707/9360 [57:33:34<151:44:47, 71.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Moment with Jeff Williams.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1708/9360 [57:34:40<148:20:25, 69.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Moment with Kate Rubins.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1709/9360 [57:35:45<145:08:00, 68.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Moment with Mikhail Kornienko.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1710/9360 [57:36:49<142:08:55, 66.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Moment with Scott Kelly.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1711/9360 [57:38:03<146:52:40, 69.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Particle is a Particle.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1712/9360 [57:39:20<151:50:23, 71.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Path Toward Citizenship - Bernie Sanders.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1713/9360 [57:40:22<145:53:31, 68.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Portuguesa.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1714/9360 [57:42:54<198:43:36, 93.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A President Resigns- Richard Nixon and the End of an Era.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1715/9360 [57:45:17<230:40:50, 108.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Sixth Part of the World (1926).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1716/9360 [57:47:49<258:20:38, 121.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Star Is Born (1937).ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1717/9360 [57:49:02<227:14:50, 107.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Surprise Call From The First Lady.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1718/9360 [57:50:10<202:13:51, 95.27s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Surprise Victory.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1719/9360 [57:51:16<183:21:15, 86.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Swift Tour of M31.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1720/9360 [57:58:01<386:12:31, 181.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Tale of Two Kitties 190612 LTPC.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1721/9360 [57:59:13<316:31:09, 149.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Talk about NIOSH Field Studies and Partnership - CO and Houseboats.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1722/9360 [58:08:58<593:32:19, 279.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Tasty Drop.mpg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1723/9360 [58:10:11<461:47:30, 217.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Time for Choosing by Ronald Reagan.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1724/9360 [58:11:18<365:44:12, 172.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Time for Freedom- Why I'm Running for United States Senate (Japheth Campbell).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1725/9360 [58:12:57<319:15:15, 150.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Trap for Santa Claus (1909) .webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1726/9360 [58:15:17<312:31:24, 147.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Year In The Life Of Earth's CO2 11719-1920-MASTER.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1727/9360 [58:16:26<262:18:21, 123.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A chat with Katherine Maher - Executive Director of the Wikimedia Foundation (no subtitles).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1728/9360 [58:17:42<232:24:41, 109.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A construction framer talks about protecting his crew from falls.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1729/9360 [58:20:56<286:04:50, 134.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A glimpse of Kaiyuan 2019-05-01 01.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1730/9360 [58:25:53<389:01:25, 183.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A glimpse of Kaiyuan 2019-05-01 105200000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 1731/9360 [58:27:00<314:55:14, 148.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A is for apple.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 1732/9360 [58:28:09<263:44:28, 124.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A las barricadas.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 1733/9360 [58:29:24<232:15:32, 109.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A new field-based approach to silica monitoring for mines.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 1734/9360 [58:30:26<202:19:39, 95.51s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A quick update from Governor Tom Wolf on the status of budget negotiations.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 19%|█▊ | 1740/9360 [58:34:12<79:47:19, 37.70s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A train arrives at Tielingxi Railway Station.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 1741/9360 [58:36:46<153:11:27, 72.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A variety of approaches to teaching students in Wikimedia projects.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 1742/9360 [58:38:06<158:12:12, 74.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A year without Turkey.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 1743/9360 [58:39:14<153:51:25, 72.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A-Conversation-with-President-Obama-and-The-Wire-Creator-David-Simon.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 1744/9360 [58:40:16<147:09:25, 69.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A-closer-look-into-the-α-helix-basin-srep38341-s5.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 1745/9360 [58:41:48<161:03:13, 76.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A-level Physics Core Practical- Finding a value for g using a free fall method.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 1746/9360 [58:42:50<152:22:51, 72.05s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A11v 1092338.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 1747/9360 [58:44:19<163:14:46, 77.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A379, Spooky Gulch, Grand Staircase-Escalante National Monument, Utah, USA, 2016.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 1748/9360 [58:45:22<153:58:17, 72.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "AAR214-KSFO-Crash.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 1749/9360 [58:46:28<149:49:20, 70.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ABC ATMs.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 1750/9360 [58:47:41<151:21:08, 71.60s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ABC Black Box.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 1751/9360 [58:48:45<146:19:03, 69.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ABC Clarke predicts internet and PC.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 1752/9360 [58:49:53<145:24:11, 68.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ABC Decimal Currency.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 1753/9360 [58:50:57<142:33:06, 67.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ABC Dollar Float.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 1754/9360 [58:52:02<140:41:50, 66.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ABC Garnaut Asia.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1755/9360 [58:53:10<141:33:04, 67.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "AC Cobra (1964).ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1756/9360 [58:54:20<143:48:16, 68.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ACA Allertor 125 video.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1757/9360 [58:55:36<148:15:17, 70.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ADA-Video Mach mit bei Wikipedia.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1758/9360 [58:56:37<142:43:22, 67.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "AFSK 1200 baud.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1759/9360 [58:57:40<139:47:17, 66.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ALS Ice Bucket Challenge.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1760/9360 [58:58:44<138:28:12, 65.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ANDI HRD Feat Jimiandrie - Nikmati Rindu.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1761/9360 [58:59:56<142:13:27, 67.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "AP11 FINAL APPROACH.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1762/9360 [59:01:05<143:20:58, 67.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "APEC ABC.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1763/9360 [59:02:07<139:42:27, 66.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "AR-Videowiki-ملعب.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1764/9360 [59:03:09<136:52:10, 64.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "AR-Wikipedia-VideoWiki-Sandbox.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1765/9360 [59:05:16<176:13:32, 83.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ARTISANAL FUNNEL FISH-TRAP - ENGLISH SUBTITLES.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1766/9360 [59:06:31<171:05:41, 81.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ASEAN explained in 5 minutes.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1767/9360 [59:07:33<158:50:41, 75.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ASVA - Concorde.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1768/9360 [59:08:41<153:53:02, 72.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ASVA - Saint-Michel.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1769/9360 [59:09:58<156:35:28, 74.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "AV Block video.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1770/9360 [59:11:07<153:28:14, 72.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "AWB İle Toplu Kategori Ekleme.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1771/9360 [59:12:16<150:56:47, 71.60s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aaduthu Paaduthu pani chestunte (Audio) Todi Kodallu.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1772/9360 [59:13:26<149:59:08, 71.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aaduthu Paaduthu pani chestunte Todi Kodallu.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1773/9360 [59:14:39<150:53:59, 71.60s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aardappelvijand nr 1 de coloradokever-526506.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1774/9360 [59:15:47<148:41:55, 70.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aaron Halfaker.voice recording.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1775/9360 [59:17:01<150:32:42, 71.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aaron Swartz - The Network Transformation.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1776/9360 [59:18:11<149:59:42, 71.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aash Al Maleek instrumental.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1777/9360 [59:19:26<152:17:14, 72.30s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Abajo el patriarcado se va a caer, arriba el feminismo que va a vencer.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1778/9360 [59:20:35<150:11:15, 71.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "AbdurRahman Al Sudais 002.256.wav\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1779/9360 [59:22:57<195:02:39, 92.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "AbelRamirezInterview.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1780/9360 [59:23:59<175:39:24, 83.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Abheri.wav\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1781/9360 [59:25:07<165:37:41, 78.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Abhinav from Dharmshala, Himachal Pradesh speaking about Dhauladhar, Cultural differences in Himachal Pradesh.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1782/9360 [59:26:16<159:32:21, 75.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Abklingphase einer Entzündung.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1783/9360 [59:27:25<155:00:56, 73.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Abortkamp og pornobål (skeivt arkiv).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1784/9360 [59:29:11<175:46:28, 83.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "About Fallout (1963).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1785/9360 [59:32:25<245:27:17, 116.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "About Lulu and Nana- Twin Girls Born Healthy After Gene Surgery As Single-Cell Embryos.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1786/9360 [59:33:41<219:27:48, 104.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "About Parliament- A New Parliament updated January 2018.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1787/9360 [59:34:52<198:32:51, 94.38s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "About Parliament- Making a Law updated January 2018.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1788/9360 [59:36:07<186:19:48, 88.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "About Parliament- Parliamentary Committees updated January 2018.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1789/9360 [59:37:19<176:06:07, 83.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "About Parliament- The House of Representatives updated January 2018.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1790/9360 [59:38:40<174:02:26, 82.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "About Parliament- The Senate updated January 2018.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1791/9360 [59:39:50<166:08:57, 79.02s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "About Parliament- What is Parliament updated January 2018.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1792/9360 [59:42:32<218:21:49, 103.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Abscesses.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1793/9360 [59:43:42<196:59:23, 93.72s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Absentee Voting To Be Offered For Brainerd Schools Special Election.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1794/9360 [59:44:45<177:31:55, 84.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Abstract Wikipedia and wiki of functions.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1795/9360 [59:46:22<185:05:33, 88.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Abu Dhabi 2011 - The Global Agenda Ahead.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1796/9360 [59:47:43<180:57:04, 86.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Academics expose corruption in Grievance Studies.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1797/9360 [59:49:17<185:40:29, 88.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Accesibilidad con OpenStreetMap en Perú.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1798/9360 [59:51:01<195:27:18, 93.05s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Accessori indispensabili per la nostra Action Camera - test SD cinese.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1799/9360 [59:52:12<181:51:32, 86.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Achondroplasia.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1800/9360 [59:53:18<168:59:02, 80.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Acoso sexual - Protéjase en el trabajo.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1801/9360 [59:54:21<157:38:11, 75.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Action of soap on oil.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1802/9360 [59:55:31<154:30:02, 73.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Activist Winona LaDuke Applies To Public Utilities Commission Seat.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1803/9360 [59:56:37<149:59:55, 71.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Actuele cijfers meisjesbesnijdenis in Nederland - Pharos.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1804/9360 [59:58:57<192:32:11, 91.73s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Acupuntura Urbana- Os Cavaletes de Lina Bo Bardi do MASP - Teatro Oficina.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1805/9360 [60:00:21<188:16:15, 89.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Acute Pancreatitis.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1806/9360 [60:01:36<178:29:06, 85.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Acute cholecystitis.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1807/9360 [60:02:49<171:12:57, 81.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Acute leukemia.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1808/9360 [60:03:56<161:55:33, 77.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Acute pyelonephritis.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1809/9360 [60:05:00<153:20:42, 73.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Acute vision loss video article 25 feb 2019.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1810/9360 [60:06:12<152:51:00, 72.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ada Colau i Alexandria Ocasio-Cortez a Nova York.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1811/9360 [60:07:26<153:16:10, 73.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ada Lovelace (As Told By U.S. Chief Technology Officer Megan Smith).mp3\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1812/9360 [60:08:28<146:41:57, 69.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Adam 2015-01 Warning Heroin sold als Cocain.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1813/9360 [60:11:45<226:04:23, 107.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Adam Hochschild, Co-Founder, Mother Jones.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1814/9360 [60:13:00<205:32:03, 98.06s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Adaptive Sports- Life Changing and Lifesaving for Athletes.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1815/9360 [60:14:06<185:15:19, 88.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Add a sitemap for more than 50,000 URLs - SEO Snippets.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1816/9360 [60:15:43<191:07:29, 91.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Address by the President of Russia at the military parade on May 9, 2022.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1817/9360 [60:17:06<185:32:08, 88.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Address to the Nation by President George W. Bush on September 11, 2001.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1818/9360 [60:18:15<173:08:05, 82.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Addressing the Turkish Parliament.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1819/9360 [60:20:23<201:50:09, 96.35s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Adele Vrana and Siko Bouterse, Whose Knowledge, Community Keynote at CC Summit 2019.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1820/9360 [60:21:40<189:31:06, 90.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Adelina Sotnikova voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 19%|█▉ | 1824/9360 [60:24:34<131:08:23, 62.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Advances in the Screening and Treatment for WTC Responders and Survivors - WD2813.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 1825/9360 [60:25:58<144:39:57, 69.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Advancing 21st Century Policing Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1826/9360 [60:27:00<140:09:34, 66.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Advertising Record.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1827/9360 [60:28:12<143:18:32, 68.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Advice on Returning to Earth for Astronaut Christina Koch from Scott Kelly.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1828/9360 [60:29:21<143:52:44, 68.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aerial firefighting operations in Oregon.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1829/9360 [60:30:57<160:47:09, 76.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Afscheid Elbert Dijkgraaf.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1830/9360 [60:32:29<169:54:16, 81.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "After the lifting of the block Case study of Turkey.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1831/9360 [60:33:41<164:10:15, 78.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aging, Exercise and Injury Prevention - A Molecular Physiology Approach.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1832/9360 [60:34:52<159:42:02, 76.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Agnes Mulder- Commissie voor Infrastructuur en Waterstaat.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1833/9360 [60:36:04<156:58:03, 75.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Agneta Börjesson en.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1834/9360 [60:37:41<170:43:43, 81.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Agroecology for Local Food Security (Fifth Plenary Showreel).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1835/9360 [60:38:45<159:08:45, 76.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aidoso kaj HIV - scivolemo - simpleshow foundation.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1836/9360 [60:39:52<153:27:32, 73.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aikoku Koshinkyoku (Columbia).ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1837/9360 [60:41:04<152:48:25, 73.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aikoku Koshinkyoku (Polydor).ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1838/9360 [60:42:19<153:49:35, 73.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Air Force Report Stargate.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1839/9360 [60:43:29<151:31:05, 72.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Airplane evacuation.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1840/9360 [60:45:04<165:53:41, 79.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Airway, Digestive, and Mental Health Comorbidities in WTC Responders and Survivors - WD2809.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1841/9360 [60:46:15<160:07:27, 76.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aix sponsa - Wood Duck XC63109.mp3\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1842/9360 [60:47:16<150:35:43, 72.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ajay Jadeja.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1843/9360 [60:48:18<143:56:06, 68.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ak52 10x.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1844/9360 [60:49:19<139:33:11, 66.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Akita-inu playing - Tokyo area - April 2017.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1845/9360 [60:50:23<137:21:57, 65.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Akte van Belening van Loon op Zand 1269.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1846/9360 [60:51:56<154:19:14, 73.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aktion Standesamt 2018 Abschlusskundgebung vor dem Kanzleramt in Berlin 02.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1847/9360 [60:53:10<154:26:22, 74.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aktion Standesamt 2018 Abschlusskundgebung vor dem Kanzleramt in Berlin 03.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1848/9360 [60:54:12<146:52:14, 70.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alan Melikdjanian voice.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1849/9360 [60:55:14<141:47:48, 67.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alaska Airlines Flight 261 crash ATC recording.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1850/9360 [60:56:28<145:17:30, 69.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alaska’s Bubbling Lakes 5CV2bz g3u8.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1851/9360 [60:57:29<140:17:13, 67.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alberic Faretai Tepoeurumanu Riveta.opus\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1852/9360 [60:58:32<137:09:32, 65.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Albert Farrington - It's a Long Long Way to Tipperary - 1915.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1853/9360 [60:59:47<143:02:22, 68.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alcohol related liver disease.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1854/9360 [61:01:05<148:39:59, 71.30s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alcoholism.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1855/9360 [61:02:08<143:33:16, 68.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aldi - Indonesian language - Bible Verse John 3-16.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1856/9360 [61:03:11<139:51:23, 67.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alebrijes wikilearning.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1857/9360 [61:04:13<136:34:22, 65.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleks Exler voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1858/9360 [61:05:15<134:19:11, 64.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Baunov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1859/9360 [61:06:16<132:37:25, 63.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Domogarov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1860/9360 [61:07:18<131:23:02, 63.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Gafin voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1861/9360 [61:08:20<130:36:55, 62.70s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Gradskij voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1862/9360 [61:09:27<133:15:17, 63.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Kabakov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1863/9360 [61:10:35<136:06:44, 65.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Kirillin voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1864/9360 [61:11:37<134:02:19, 64.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Kutikov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1865/9360 [61:12:39<132:27:54, 63.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Lazutkin voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1866/9360 [61:13:41<131:26:28, 63.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Lebedev voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1867/9360 [61:14:43<130:40:51, 62.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Livshits voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1868/9360 [61:15:52<134:05:51, 64.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Lyubimov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1869/9360 [61:17:00<136:23:46, 65.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Markov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1870/9360 [61:18:07<137:39:51, 66.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Minkin voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 1871/9360 [61:19:15<138:18:58, 66.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Pochinok voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1872/9360 [61:20:23<139:25:34, 67.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Prohanov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1873/9360 [61:21:31<140:07:58, 67.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Rodnyanskij voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1874/9360 [61:22:41<141:47:03, 68.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Rutskoj voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1875/9360 [61:23:49<141:47:22, 68.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Shirvindt voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1876/9360 [61:24:56<141:02:35, 67.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Shohin voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1877/9360 [61:26:03<140:30:28, 67.60s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Tsipko voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1878/9360 [61:27:05<137:00:07, 65.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksandr Varin voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1879/9360 [61:28:07<134:25:45, 64.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksej Miller voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1880/9360 [61:29:15<136:32:35, 65.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksej Mitrofanov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1881/9360 [61:30:24<138:09:22, 66.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksej Naval'nyij voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1882/9360 [61:31:25<135:09:33, 65.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksej Nemov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1883/9360 [61:32:27<133:11:31, 64.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aleksej Volin voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1884/9360 [61:33:33<134:03:48, 64.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alenka Star Be voice recording (2022-01-30).wav\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1885/9360 [61:34:36<132:57:29, 64.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alex Meets the President.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1886/9360 [61:35:41<133:48:01, 64.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alex's WTC Story.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1887/9360 [61:36:43<132:08:14, 63.66s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alexander Graham Bell speaking.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1888/9360 [61:37:48<132:50:55, 64.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alexander Graham Bell's Voice.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1889/9360 [61:38:59<137:10:42, 66.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alexandre Dias apresenta o Instituto Piano Brasileiro.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1890/9360 [61:40:02<135:31:43, 65.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alexandria Ocasio-Cortez - 2019-01-16 Speech about an immigrant constituent.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 1891/9360 [61:41:04<133:29:48, 64.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alexei Leonov- First Person to Spacewalk.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 20%|██ | 1917/9360 [61:50:06<76:02:08, 36.78s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Als ich tot war (1916).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 21%|██ | 1920/9360 [61:53:03<110:43:26, 53.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alternative text to images as cohesively structured data on Commons.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1921/9360 [61:54:04<115:46:14, 56.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Altgriechisch2.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1922/9360 [61:55:09<120:50:02, 58.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Altnazajantilopoj-scivolemo-zdf.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1923/9360 [61:56:10<122:40:57, 59.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alveolar ejective fricative.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1924/9360 [61:57:14<125:25:29, 60.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alyona Lanskaya - Solayoh presentation (English).ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1925/9360 [61:58:19<127:49:03, 61.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alyona Lanskaya - Solayoh presentation (Беларуская).ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1926/9360 [61:59:23<129:25:42, 62.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alyona Lanskaya - Solayoh presentation (русский).ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1927/9360 [62:00:44<140:52:39, 68.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Alzheimer disease video.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1928/9360 [62:01:58<143:57:35, 69.73s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Amandine Bourgeois - L'enfer et moi presentation (Français).ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1929/9360 [62:03:11<146:30:15, 70.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Amapola- Los campesinos no son criminales..webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1930/9360 [62:04:20<144:50:59, 70.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Amar Shonar Bangla instrumental.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1931/9360 [62:05:27<143:05:34, 69.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Amazing Grace US Marine Band.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1932/9360 [62:07:42<183:30:48, 88.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Amazon Canopy Comes to Life through Laser Data.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1933/9360 [62:08:48<169:11:34, 82.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Amazon edited.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1934/9360 [62:09:53<158:38:28, 76.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Amazonas Indigenous State anthem.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1935/9360 [62:11:14<161:32:19, 78.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "America First, Japan Second (Official).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1936/9360 [62:12:22<155:12:21, 75.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "America the Beautiful (male vocalist) - United States Navy Band.opus\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1937/9360 [62:13:42<157:57:41, 76.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "America's Poverty is Among the World's Worst - Bernie Sanders.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1938/9360 [62:14:55<155:21:47, 75.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "American Indian Leaders, Students Participate in Indigenous Peoples Movement March.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 21%|██ | 1945/9360 [62:17:36<71:38:54, 34.79s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Amyloidosis.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1946/9360 [62:18:46<93:17:14, 45.30s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "América Latina será toda feminista.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1947/9360 [62:20:52<143:30:15, 69.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "An Eastern Westerner (1920).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1948/9360 [62:22:04<144:54:14, 70.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "An Introduction to the James Webb Space Telescope Mission 6VqG3Jazrfs.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1949/9360 [62:23:16<145:52:38, 70.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "An introduction to UK Parliament.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1950/9360 [62:24:45<156:56:54, 76.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "An overview of the COVID-19-related content of Wikimedia projects.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1951/9360 [62:25:54<152:33:39, 74.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "An update from Scots Wikipedia, from Wikimedia UK.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1952/9360 [62:27:00<147:11:44, 71.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "AnDasDeutscheVolkWilhelm1914.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1953/9360 [62:28:06<143:45:58, 69.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ana 1.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1954/9360 [62:29:13<142:21:15, 69.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ana 2.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1955/9360 [62:30:16<138:33:41, 67.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ana 3.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1956/9360 [62:31:19<135:34:29, 65.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ana 4.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1957/9360 [62:32:23<134:18:02, 65.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ana 5.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1958/9360 [62:33:33<137:36:20, 66.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ana 6.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1959/9360 [62:34:40<137:05:03, 66.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ana 7.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1960/9360 [62:35:47<137:41:42, 66.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ana 8.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1961/9360 [62:36:51<135:21:35, 65.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ana 9.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1962/9360 [62:37:54<133:44:17, 65.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ana-1.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1963/9360 [62:39:05<137:34:40, 66.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ana-2.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1964/9360 [62:40:16<139:47:40, 68.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ana-3.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1965/9360 [62:41:19<136:49:39, 66.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ana-4.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1966/9360 [62:42:30<139:37:57, 67.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ana-5.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1967/9360 [62:43:33<136:31:59, 66.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Analysis of eggshell sample by back titration.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1968/9360 [62:49:04<299:05:38, 145.66s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Analysis of presentation situation, Movement Strategy Track, Wikimedia Conference 2017 in Berlin (shortened).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1969/9360 [62:51:34<301:51:26, 147.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Analysis of presentation situation, Movement Strategy Track, Wikimedia Conference 2017 in Berlin.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1970/9360 [62:52:42<253:05:18, 123.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anas platyrhynchos - Mallard - XC62258.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1971/9360 [62:53:46<216:55:27, 105.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anastasiya Volochkova voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1972/9360 [62:54:48<189:53:15, 92.53s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anatoli Malkin voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1973/9360 [62:55:50<171:09:00, 83.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anatolij Adamishin voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1974/9360 [62:56:52<157:49:18, 76.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anatolij Ermolin voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1975/9360 [62:57:54<148:30:38, 72.40s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anatolij Karpov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1976/9360 [62:58:56<142:05:11, 69.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anatolij Kucherena voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1977/9360 [62:59:58<137:42:11, 67.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anatolij Kulikov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1978/9360 [63:01:06<138:18:59, 67.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anatolij Luk'yanov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1979/9360 [63:02:13<138:04:45, 67.35s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anatolij Lyisenko voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1980/9360 [63:03:22<138:42:52, 67.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anatolij Vasserman voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1981/9360 [63:04:29<138:22:07, 67.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anatolij Zasov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1982/9360 [63:05:35<137:36:02, 67.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anatomie der Klitoris.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1983/9360 [63:06:50<142:25:28, 69.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anatomie des Herzens.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1984/9360 [63:08:11<149:27:07, 72.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anatomie und Funktion des Penis.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1985/9360 [63:09:23<148:29:28, 72.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anatomie von Vulva und Vagina.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1986/9360 [63:10:42<152:53:35, 74.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anatomy and physiology of the renal system.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1987/9360 [63:11:56<152:02:52, 74.24s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anatomy of the respiratory system.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 1988/9360 [63:13:04<148:44:18, 72.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anchors Aweigh (January 20, 2009).oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 1989/9360 [63:14:17<148:26:24, 72.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anders Rogg (skeivt arkiv).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 1990/9360 [63:15:26<146:22:19, 71.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andre Kuipers, 2 ruimtereizen.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 1991/9360 [63:16:28<140:28:02, 68.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Bil'zho voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 1992/9360 [63:17:36<140:08:24, 68.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Bogdanov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 1993/9360 [63:18:38<136:13:38, 66.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Dellos voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 1994/9360 [63:19:40<133:18:16, 65.15s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Fursenko voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 1995/9360 [63:20:48<135:04:31, 66.02s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Illarionov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 1996/9360 [63:21:55<135:46:01, 66.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Karaulov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 1997/9360 [63:23:04<137:07:16, 67.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Kolesnikov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 1998/9360 [63:24:12<138:02:57, 67.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Konchalovskij voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 1999/9360 [63:25:14<134:29:04, 65.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Korkunov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 2000/9360 [63:26:16<132:03:14, 64.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Kozyirev voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 2001/9360 [63:27:18<130:28:58, 63.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Kuraev voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 2002/9360 [63:28:20<129:12:23, 63.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Makarevich voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 2003/9360 [63:29:21<128:19:47, 62.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Makarov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 2004/9360 [63:30:23<127:44:00, 62.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Mal'gin voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 2005/9360 [63:31:25<127:23:55, 62.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Nechaev voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 2006/9360 [63:32:27<127:02:07, 62.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Piontkovskij voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 2007/9360 [63:33:37<131:52:42, 64.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Razin voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 2008/9360 [63:34:39<130:07:15, 63.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Vasil'ev voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 2009/9360 [63:35:41<128:57:41, 63.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrej Zhitinkin voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 2010/9360 [63:36:44<129:15:24, 63.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andreo Cseh kurso 19 jun 1933.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 2011/9360 [63:38:04<139:01:17, 68.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrew Copson defining humanism, skepticism, religion.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 2012/9360 [63:39:09<137:00:53, 67.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrew Dessler.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2013/9360 [63:40:29<145:23:14, 71.24s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andrew Puzder Workers' Forum with Carl's Jr Employee Lupe Guzman.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2014/9360 [63:41:32<140:09:30, 68.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andris Liepa voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2015/9360 [63:42:34<136:04:15, 66.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "András Kállay-Saunders - Running presentation (English).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2016/9360 [63:43:36<133:13:53, 65.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "András Kállay-Saunders - Running presentation (Magyar).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2017/9360 [63:44:38<130:56:41, 64.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Andy Mabbett voice.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2018/9360 [63:45:52<137:04:07, 67.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aneurysms.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2019/9360 [63:47:00<137:33:23, 67.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anfisa Chehova voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2020/9360 [63:48:20<145:00:21, 71.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Angika Ubtan song.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2021/9360 [63:49:34<146:50:14, 72.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Angina video.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2022/9360 [63:50:48<147:46:13, 72.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Angiomyolipoma.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2023/9360 [63:52:02<148:42:44, 72.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Angkor - Zentrum des Königreichs der Khmer (CC BY-SA 4.0).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2024/9360 [63:53:16<149:31:20, 73.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Angkor Wat.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2025/9360 [63:54:26<147:32:46, 72.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Angle Grinder cutting a steel chain - Video.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2026/9360 [63:55:39<147:33:36, 72.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Angriff von Retroviren.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2027/9360 [63:56:51<147:28:24, 72.40s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "AngélicaCarrascoFinal creditos.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2028/9360 [63:57:56<142:46:33, 70.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Animacion CutOut clip.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2029/9360 [63:59:05<142:26:56, 69.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Animacion2d Wikiservicio.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2030/9360 [64:00:28<150:23:19, 73.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Animals in Gdansk.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2031/9360 [64:01:32<144:09:31, 70.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Animation of `Oumuamua passing through the Solar System.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2032/9360 [64:02:41<143:18:43, 70.40s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anna 10.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2033/9360 [64:03:59<147:36:59, 72.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anna Drijver legt dividendbelasting uit (The Big Short).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2034/9360 [64:05:05<143:26:29, 70.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anna Koval talks about the Wikipedia Education Program pilot at the Second Chance Schools in Corfu.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2035/9360 [64:06:11<140:49:49, 69.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anna Koval talks about the Wikipedia Education Program pilot in Republic of Srpska.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2036/9360 [64:07:19<140:13:24, 68.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Annabel Lee.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2037/9360 [64:09:01<160:20:30, 78.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anne Brasseur It is not about countries, it is about protecting citizens!.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2038/9360 [64:10:03<149:49:39, 73.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Annonce Gare Bry Marne RER.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2039/9360 [64:11:08<144:44:03, 71.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Announcing the Katahdin Woods and Waters National Monument.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2040/9360 [64:12:21<146:02:56, 71.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Announcing the Stonewall National Monument.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2041/9360 [64:13:33<145:50:41, 71.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anorexia nervosa.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2042/9360 [64:14:38<141:44:06, 69.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Another talk with the German Chancellor, Herr Hitler.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2043/9360 [64:15:39<136:38:38, 67.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ansage Elbe-Saale-Bahn Salzburg, 1.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2044/9360 [64:16:42<133:45:53, 65.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem Ukrainian SSR.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2045/9360 [64:17:44<131:34:43, 64.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of Bashkortostan.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2046/9360 [64:18:55<135:28:48, 66.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of Basque Country Vocal.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2047/9360 [64:20:03<136:18:35, 67.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of Blue Lake Fine Arts Camp - From Canterbury Lane.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2048/9360 [64:21:06<133:27:49, 65.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of Buryatia (Buryat and Russian version).oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2049/9360 [64:22:13<134:19:34, 66.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of Democratic Kampuchea.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2050/9360 [64:23:24<136:59:02, 67.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of Ecuador.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2051/9360 [64:24:26<134:00:31, 66.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of Europe (US Navy instrumental long version).ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2052/9360 [64:25:28<131:36:30, 64.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of Europe (US Navy instrumental short version).ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2053/9360 [64:26:31<130:07:24, 64.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of Georgia in Abkhazian.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2054/9360 [64:27:41<133:57:35, 66.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of Ingushetia - ГIалгIайчен гимн.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2055/9360 [64:28:45<132:31:34, 65.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of Kazakhstan 1991-2006.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2056/9360 [64:29:47<130:22:43, 64.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of Ukraine instrumental.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2057/9360 [64:30:49<129:00:17, 63.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of the Moldavian Soviet Socialist Republic (instrumental).ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2058/9360 [64:31:57<131:53:57, 65.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of the Moldavian Soviet Socialist Republic (vocal).ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2059/9360 [64:33:06<134:18:07, 66.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of the Republic of Adygea.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2060/9360 [64:34:08<131:48:05, 65.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of the Republic of Karelia.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2061/9360 [64:35:11<130:23:24, 64.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of the Sakha Republic.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2062/9360 [64:36:18<132:03:15, 65.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of the Tajikistan SSR - Гимни РСС Тоҷикистон.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2063/9360 [64:37:25<133:18:26, 65.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem of the Yugoslav Peoples' Army - Попури ЈНА.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2064/9360 [64:38:34<135:04:51, 66.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem-of-Ukraine Chorus Veryovka.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2065/9360 [64:39:36<132:20:54, 65.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthem-of-uzbekistan-1992.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2066/9360 [64:40:50<137:38:43, 67.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthrax and Antibiotics - Anthrax is Deadly, Antibiotics Could Save Your Life.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2067/9360 [64:42:14<147:10:32, 72.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthrax surface sampling - How to sample with cellulose sponge on nonporous surfaces.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2068/9360 [64:43:36<153:01:37, 75.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anthrax surface sampling- How to sample with macrofoam swab on nonporous surfaces.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2069/9360 [64:44:39<145:04:31, 71.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Antigua and Barbuda National Anthem.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2070/9360 [64:45:41<139:18:47, 68.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anton Krasovskij voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2071/9360 [64:46:50<139:36:09, 68.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anton Nosik voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2072/9360 [64:46:51<98:17:40, 48.55s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Antriebseffekte beim Segeln.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2073/9360 [64:46:51<69:04:50, 34.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Användarsidan och diskussionssidan på Wikipedia.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2074/9360 [64:46:52<48:31:11, 23.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anyang 25ton blacksmith hydraulic press.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2075/9360 [64:46:52<34:05:14, 16.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Anyone Can Become Addicted to Drugs.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2076/9360 [64:46:55<25:25:10, 12.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aortic coarctation.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2077/9360 [69:13:27<9723:54:10, 4806.54s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aortic dissection.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2078/9360 [72:52:03<14764:52:54, 7299.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aortic valve disease video.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2079/9360 [72:53:14<10376:58:03, 5130.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ap17 schmitt falls.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2080/9360 [72:54:21<7303:41:47, 3611.72s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aphthous Ulcers.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2081/9360 [72:55:25<5150:34:54, 2547.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Apis on Adonidia flowers.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2082/9360 [72:56:27<3642:47:44, 1801.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Apollo 11 Landing - first steps on the moon.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2083/9360 [72:57:38<2592:36:57, 1282.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Apollo 15 feather and hammer drop.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2084/9360 [72:58:40<1852:04:32, 916.37s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Apollo 8 genesis reading.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2085/9360 [72:59:48<1337:39:56, 661.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Apollo One Recording.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2086/9360 [73:00:55<977:02:01, 483.55s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Apollo13-wehaveaproblem.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2087/9360 [73:02:03<724:51:54, 358.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Apollo13problem.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2088/9360 [73:03:10<547:37:34, 271.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Appendicitis.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2089/9360 [73:04:12<420:50:35, 208.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Applause.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2090/9360 [73:06:01<361:00:20, 178.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Applicant Orientation Guide Video.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2091/9360 [73:07:03<290:07:24, 143.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ar-User-Hassan.m.amin-sandbox.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2092/9360 [73:08:11<244:05:35, 120.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ar-al Gumhuriyah al Iraqiya.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2093/9360 [73:09:19<211:54:13, 104.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ar-أجرى.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2094/9360 [73:10:27<189:24:09, 93.84s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ar-داخل.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2095/9360 [73:11:28<169:50:15, 84.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ar-شُكْرًا.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2096/9360 [73:12:47<166:39:16, 82.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ArCJ SAC 19760412 Séance inaugurale du 12 avril 1976 SAC01.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2097/9360 [73:13:57<158:58:36, 78.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ara Abramyan voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2098/9360 [73:15:05<152:06:27, 75.40s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arabic Swadesh list 1-100.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2099/9360 [73:16:14<148:18:11, 73.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aras Agalarov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2100/9360 [73:17:55<165:22:48, 82.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arbetssättet i Välkommen till min plats.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2101/9360 [73:19:33<174:59:32, 86.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arc Flash Awareness.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2102/9360 [73:20:44<165:13:11, 81.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Are Languages Getting Simpler-.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2103/9360 [73:22:44<188:03:49, 93.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Are female action heroes truly empowering.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2104/9360 [73:23:51<172:10:45, 85.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Are you with me-Nicola Sturgeon.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 2105/9360 [73:24:58<161:16:39, 80.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arecibo message DTMF.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▎ | 2106/9360 [73:26:07<154:16:20, 76.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Argentina.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2107/9360 [73:27:17<150:16:07, 74.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arianespace - VV15 - Mission Presentaton.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2108/9360 [73:28:25<146:38:45, 72.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arianespace TV - VA252 Launch Sequence.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2109/9360 [73:29:28<140:31:22, 69.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arianespace TV Customer - VV15 with FalconEye1.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2110/9360 [73:30:37<139:40:51, 69.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ariel' Sharon voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2111/9360 [73:31:38<135:05:37, 67.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arina Sharapova voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2112/9360 [73:32:40<132:03:21, 65.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arirang (USAS).ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2113/9360 [73:33:51<135:02:13, 67.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arirang.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2114/9360 [73:34:58<134:55:57, 67.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arkadij Arkanov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2115/9360 [73:36:37<153:59:47, 76.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arlbergtunnel nach Vorarlberg.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2116/9360 [73:40:18<241:13:56, 119.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Armed Forces Full Honor Review Farewell Ceremony.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2117/9360 [73:41:20<206:27:50, 102.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Armen Dzhigarhanyan voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2118/9360 [73:42:31<187:15:24, 93.09s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Army Combat Fitness Test- 3 Repetition Maximum Deadlift (MDL) (Event 1).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2119/9360 [73:43:38<171:36:22, 85.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Army Combat Fitness Test- Leg Tuck (LTK) (Event 5).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2120/9360 [73:44:45<160:33:06, 79.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Army Combat Fitness Test- Sprint-Drag-Carry (SDC) (Event 4).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2121/9360 [73:45:49<151:15:45, 75.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Army Combat Fitness Test- Standing Power Throw (SPT) (Event 2).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2122/9360 [73:46:52<143:25:21, 71.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Army Combat Fitness Test- Two-Mile Run (2MR) (Event 6).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2123/9360 [73:48:02<142:59:10, 71.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Army Combat Fitness Test.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2124/9360 [73:49:04<137:17:11, 68.30s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Army goes rolling along.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2125/9360 [73:50:06<133:17:27, 66.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arnab Goswami voice sample in Hindi.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2126/9360 [73:51:09<131:11:43, 65.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arne Jarrick avkodningsbart.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2127/9360 [73:52:23<136:45:26, 68.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Around the Corner (1937) 24fps selection.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2128/9360 [73:55:17<200:37:59, 99.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arrival Ceremony for PM Lee Hsien Loong.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2129/9360 [73:56:19<177:51:23, 88.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arrivée et départ d'une rame MF 67.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2130/9360 [73:57:21<161:43:57, 80.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arsenij Yatsenyuk voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2131/9360 [73:58:39<160:00:16, 79.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Art and Feminism Wikipedia Edit-a-thon, February 1, 2014.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2132/9360 [73:59:47<152:58:19, 76.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Artefact comparison ToS f04428.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2133/9360 [74:00:54<147:24:46, 73.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Artefact comparison ToS f11811.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2134/9360 [74:02:01<143:35:38, 71.54s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Artefact comparison ToS f15509.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2135/9360 [74:03:09<141:33:05, 70.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Artemij Troitskij voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2136/9360 [74:04:19<141:08:16, 70.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Artemis I (Mission Trajectory).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2137/9360 [74:05:59<158:41:15, 79.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Artensterben im Wandel der Zeit.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2138/9360 [74:07:11<154:17:51, 76.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arteriovenous malformation video.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2139/9360 [74:08:13<145:22:48, 72.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arthur Collins, Hello Ma Baby.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2140/9360 [74:09:15<138:59:46, 69.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Arthur Sullivan - wax cylinder recording.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2141/9360 [74:10:29<141:45:28, 70.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Article-Feedback-Video-Tour-07-08.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2142/9360 [74:11:31<137:06:32, 68.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Artificial intelligence explained in 2 minutes - What exactly is AI?.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2143/9360 [74:12:40<137:07:55, 68.40s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Artist's impression of the evolution of a hot high-mass binary star.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 23%|██▎ | 2150/9360 [74:16:45<106:07:01, 52.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Asia Bibi Lawyer Saif Ul Malook, Asia Bibi's Fight for Justice.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2151/9360 [74:17:53<115:05:19, 57.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Asim Basu voice.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2152/9360 [74:19:13<128:56:39, 64.40s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "AsironLaburpenaTXIKI.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2153/9360 [74:20:34<138:48:55, 69.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "AsironLaburpenaTXIKI.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2154/9360 [74:21:36<134:09:14, 67.02s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Assam.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2155/9360 [74:22:53<140:08:56, 70.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Assembleia inaugural da Associação Pietro Roveri.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2156/9360 [74:26:07<214:21:51, 107.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Asteroid Bennu's Surprising Surface Revealed by OSIRIS-REx (long form).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2157/9360 [74:27:35<203:01:37, 101.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Asteroid Bennu's Surprising Surface Revealed by OSIRIS-REx.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2158/9360 [74:28:45<184:16:10, 92.11s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Asthma.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2159/9360 [74:29:52<169:05:01, 84.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Astronauts Koch and Meir React to International Space Station Mission Updates.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2160/9360 [74:31:07<163:02:33, 81.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "At the White House with the Google Global Science Fair Winners.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2161/9360 [74:32:12<153:08:05, 76.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "At the potter's workshop.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2162/9360 [74:33:37<158:33:51, 79.30s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ata Ratu \"Dana Peku Palanja Nggau-I'm not ready to leave you\".webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2163/9360 [74:36:15<205:50:48, 102.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Athanasios Lafazanidis and zero-project - Omega report (HD 1080).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2164/9360 [74:37:22<184:16:54, 92.19s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Atlantic Puffin (Fratercula arctica) (W1CDR0001416 BD3).ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2165/9360 [74:38:26<167:14:35, 83.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Atomic orbitals and periodic table construction.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2166/9360 [74:39:35<158:30:02, 79.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Atrial fibrillation video.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2167/9360 [74:40:48<154:35:40, 77.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Atrial flutter.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2168/9360 [74:42:00<151:19:27, 75.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Atrial septal defect video.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2169/9360 [74:43:20<153:24:51, 76.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Att skriva på Wikipedia – Olivia Wittberg.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2170/9360 [74:44:36<153:19:17, 76.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Attention deficit hyperactivity disorder video.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2171/9360 [74:45:51<151:57:31, 76.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Attje Kuiken - Commissie voor Landbouw, Natuur en Voedselkwaliteit.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2172/9360 [74:46:57<146:10:03, 73.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Attorney General Candidate Debra Hilstrom Makes Stop In Bemidji.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2173/9360 [74:48:15<148:59:42, 74.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Attorney General Sessions Statement on Recusal.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2174/9360 [74:49:34<151:47:36, 76.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Au sommet du Panthéon - Des Racines et des Ailes - YouTube.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2175/9360 [74:50:42<146:46:14, 73.54s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Audacity click track one per second for eight seconds mono88khz32bitfloat.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2176/9360 [74:51:49<142:43:35, 71.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Audio - Tyrannus dominicensis.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2177/9360 [74:52:52<137:30:30, 68.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Audio James Randi Long Version.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2178/9360 [74:53:54<133:32:02, 66.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Audio James Randi.wav\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2179/9360 [74:54:57<131:02:52, 65.70s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Audio Kevin Folta.wav\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2180/9360 [74:56:04<131:57:51, 66.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Audio Richard Dawkins.wav\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2181/9360 [74:57:25<140:45:32, 70.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aufbau und Funktion eines Giraffenhalses.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2182/9360 [74:58:30<137:23:25, 68.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Auferstanden aus Ruinen.wav\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2183/9360 [74:59:50<143:50:23, 72.15s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aukje de Vries - defensie.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2184/9360 [75:00:58<141:41:30, 71.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Auld Lang Syne - U.S. Navy Band.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2185/9360 [75:02:00<136:14:56, 68.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Auld Lang Syne.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2186/9360 [75:03:17<141:18:40, 70.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Aunde Jande Rahi Puchde - Suhag (Punjabi Folksong).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2187/9360 [75:04:32<143:50:36, 72.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "AuroraReyesFinal creditos.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2188/9360 [75:05:45<143:58:34, 72.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ausdehnung des römischen Reiches.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2189/9360 [75:06:49<139:01:36, 69.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Austria.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2190/9360 [75:07:52<134:49:21, 67.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Auswertung per Instant Run-Off Voting Beispiel.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2191/9360 [75:09:04<137:43:03, 69.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Autism spectrum disorder video.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2192/9360 [75:10:52<160:53:59, 80.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Auto-Lite on Parade.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2193/9360 [75:12:00<152:52:03, 76.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Autoimmune hepatitis.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2194/9360 [75:13:02<144:09:11, 72.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Auvi-Q Injection.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2195/9360 [75:14:10<141:31:21, 71.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Avadeboncoeur.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2196/9360 [75:15:18<139:48:13, 70.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Avangard Leont'ev voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2197/9360 [75:16:22<136:07:35, 68.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Avslutning - SMV - SVA BB 5309 17.wav\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2198/9360 [75:19:03<191:12:32, 96.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Awadagin Pratt Performs at the White House- 2 of 8.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 2199/9360 [75:20:13<175:26:25, 88.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ayatul Kursi by AbdurRahman Al Sudais.wav\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2200/9360 [75:21:18<161:31:23, 81.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ayyavazhi.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2201/9360 [75:22:26<153:35:02, 77.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Azerbaijan national anthem (vocal version).ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2202/9360 [75:23:35<148:46:22, 74.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Azuki Bean phototropism.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2203/9360 [75:24:43<144:28:23, 72.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Azərbaycan SSR Himni (1977 Vocal).oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2204/9360 [75:25:50<141:09:14, 71.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Azərbaycan marşı instrumental.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2205/9360 [75:26:51<135:37:08, 68.24s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Açaí.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2206/9360 [75:27:54<132:03:18, 66.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B-2 Spirit.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2207/9360 [75:28:56<129:34:45, 65.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B-36 bomber.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2208/9360 [75:30:03<130:47:01, 65.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BCLM gin trap demo - 2018-08-13 - Andy Mabbett.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2209/9360 [75:31:12<132:28:32, 66.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BILBAO MENDI FILM FESTIVAL 2018 - TOMMY CALDWELL - THE DAWN WALL.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2210/9360 [75:32:34<141:19:13, 71.15s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BR 319- Bem-vindo a Realidade.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2211/9360 [75:33:53<146:25:59, 73.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BROLL A Senior Airman becomes a popular pizza guy with his ‘combat kitchen’ in the sky DOD 105342628.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2212/9360 [75:35:12<149:09:04, 75.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Basketball Getting Ready For Conference Play.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2213/9360 [75:36:29<150:28:21, 75.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Celebrates Hockey Cheerleading Milestone.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2214/9360 [75:37:43<149:26:40, 75.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Men's Hockey Beats Air Force In Game 1 Of Series.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2215/9360 [75:38:53<146:19:05, 73.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Men's Hockey Defenseman Whitecloud Signs With Golden Knights.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2216/9360 [75:40:08<146:41:17, 73.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Men's Hockey Putting SCSU Losses Behind Them.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2217/9360 [75:41:24<148:20:34, 74.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Men's Hockey Ready For Playoff Atmosphere This Weekend.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2218/9360 [75:42:39<148:12:27, 74.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Men's Hockey Set To Take On Rival Chargers.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2219/9360 [75:44:16<161:41:48, 81.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Men's Hockey Shuts Out (20) Michigan Tech.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2220/9360 [75:45:25<153:47:46, 77.54s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Men's Hockey Takes Win Over Alabama-Huntsville.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2221/9360 [75:46:35<149:21:34, 75.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Men's Hockey To Play In 2019 Mariucci Classic.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 2222/9360 [75:47:41<144:05:37, 72.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Men's Hockey, Northern Michigan End Match In OT.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2223/9360 [75:48:54<144:06:43, 72.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Women's Hockey Falls To St. Cloud State In Hall Of Fame Game.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2224/9360 [75:50:06<143:32:09, 72.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Women's Hockey Looking To Break Scoring Slump.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2225/9360 [75:51:14<141:06:49, 71.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Women's Hockey Prepares For Bulldogs In Postseason Play.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2226/9360 [75:52:35<146:42:07, 74.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Women's Hockey Returns Experienced But Youthful Group.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2227/9360 [75:53:48<146:16:53, 73.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Women's Hockey Takes Win Over Ohio State.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2228/9360 [75:55:00<144:51:46, 73.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Women's Hockey Takes Win Over St. Cloud State.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2229/9360 [75:56:18<148:12:32, 74.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Women's Hockey Taking Advantage of Bye Week.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2230/9360 [75:57:33<148:23:12, 74.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Women's Hockey Team Carrying Momentum into Mercyhurst Matchup.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2231/9360 [75:58:49<148:59:20, 75.24s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU Women's Hockey's DeGeorge To Play On US U-22 Select Team.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2232/9360 [76:00:00<145:57:36, 73.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BSU's Gerry Fitzgerald Invited To Wild's Camp.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2233/9360 [76:01:02<138:55:37, 70.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ba-Ишембай.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2234/9360 [76:02:03<133:49:39, 67.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Baba Ramdev.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2235/9360 [76:03:15<136:26:06, 68.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bach 330 Sei Lob und Preis Magna Voce.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2236/9360 [76:04:31<140:19:16, 70.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Badanie wlasciwosci bialek.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2237/9360 [76:05:42<140:30:00, 71.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Baennorae.wav\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2238/9360 [76:06:56<142:21:54, 71.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bagley-Fosston Boys Hockey Wins Over Park Rapids In OT.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2239/9360 [76:10:37<230:43:12, 116.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bahen, 1941.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2240/9360 [76:11:53<206:25:15, 104.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bahnbrechende Entdeckungen der Antike (CC BY 4.0).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2241/9360 [76:13:01<184:47:17, 93.45s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bahraini Anthem.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2242/9360 [76:14:12<171:53:44, 86.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bak Hyang Rim Kim Hae Song jeonhwa ilgi.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2243/9360 [76:15:46<175:50:21, 88.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bake itunak-Peace Treaties wikimaratoia.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2244/9360 [76:24:30<433:37:36, 219.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bamboo.mpg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2245/9360 [76:25:45<348:14:57, 176.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bananenoogst.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2246/9360 [76:27:04<290:09:53, 146.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bangladesh building collapse - WN.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2247/9360 [76:28:17<246:20:25, 124.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bangladesh building collapse - WN.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2248/9360 [76:29:39<221:13:53, 111.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Barack Obama 2011 Tucson memorial speech.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2249/9360 [76:31:16<212:34:30, 107.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Barack Obama 2011 Tucson, Arizona memorial speech.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2250/9360 [76:32:31<192:49:18, 97.63s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Barack Obama Speech \"Volcker Rule\" 2010-01-21.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2251/9360 [76:40:59<435:58:24, 220.78s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Barack Obama Town Hall in Costa Mesa CA on 18 March 2009.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2252/9360 [76:44:03<414:26:28, 209.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Barack Obama inaugural address.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2253/9360 [76:45:18<334:01:05, 169.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Barbara Jordan Oral History Interview I, 3-28-84..webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2254/9360 [76:46:26<274:04:54, 138.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Barcelona, a capital that inspires.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2255/9360 [76:47:27<228:26:54, 115.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bari Alibasov voice.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2256/9360 [76:48:30<196:36:59, 99.64s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Barisan Nasional.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2257/9360 [76:49:55<188:13:02, 95.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Barum (Landkreis Uelzen) Video 2014.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2258/9360 [76:51:05<173:18:16, 87.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Basi Basistha Jabali Bamadeba.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2259/9360 [76:52:20<165:23:04, 83.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Basics of photography – how you learn to shoot better photos.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2260/9360 [76:54:26<190:22:28, 96.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bastiaan builds a closet after vaping weed - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2261/9360 [76:56:20<200:46:25, 101.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bastiaan can't eat after using Ecstasy - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2262/9360 [76:58:49<228:36:45, 115.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bastiaan drinks alcohol and drives a car - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2263/9360 [77:00:41<226:28:50, 114.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bastiaan eats spacecake (cannabis - THC) - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2264/9360 [77:04:07<280:18:08, 142.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bastiaan eats truffles on a boat in Amsterdam - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2265/9360 [77:06:03<264:39:11, 134.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bastiaan gets baked - Weed (THC) - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2266/9360 [77:07:54<250:39:54, 127.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bastiaan goes on an inner journey under the influence of San Pedro (Mescaline) - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2267/9360 [77:09:48<242:51:57, 123.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bastiaan has a bad trip after drinking DXM - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2268/9360 [77:12:29<265:23:06, 134.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bastiaan is knocked out by Temazepam - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2269/9360 [77:14:54<271:21:07, 137.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bastiaan parties for 12 hours straight after using 6-APB - Benzo Fury - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2270/9360 [77:17:24<278:21:37, 141.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bastiaan philosophizes and enjoys the nature thanks to kanna (mesembrine) - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2271/9360 [77:19:46<278:53:02, 141.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bastiaan says cheers with alcohol - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2272/9360 [77:22:12<281:15:04, 142.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bastiaan sniffs ketamine (special K) - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2273/9360 [77:26:37<353:14:37, 179.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bastiaan takes MDA in the forest - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2274/9360 [77:29:10<337:50:27, 171.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bastiaan trips balls on LSD (Acid) - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2275/9360 [77:31:20<313:11:37, 159.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bastiaan use Kratom and goes up and down (Mitragyna) - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2276/9360 [77:32:34<262:45:26, 133.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Batman for U.S. Savings Bonds, ca. 1966.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2277/9360 [77:33:44<225:01:15, 114.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Batman, ca. 1973.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2278/9360 [77:34:51<197:06:12, 100.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Battle Hymn of the Republic (USAFB).ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2279/9360 [77:36:05<181:53:35, 92.48s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Battle Hymn of the Republic US Army.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2280/9360 [77:37:12<166:45:07, 84.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Battle Hymn of the Republic, Frank C. Stanley, Elise Stevenson (unrestored).ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2281/9360 [77:38:23<158:30:58, 80.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Battle Hymn of the Republic, Frank C. Stanley, Elise Stevenson.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2282/9360 [77:44:41<334:01:44, 169.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Battleship Potemkin.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2283/9360 [77:45:46<272:02:44, 138.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Batukeshwar Datta.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2284/9360 [77:46:52<229:07:43, 116.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bavarian (Wikitongues).ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2285/9360 [77:49:28<252:20:25, 128.40s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Beating the Odds Summit.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2286/9360 [77:51:19<242:01:00, 123.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Beautiful Japan (1918).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2287/9360 [77:53:30<246:56:36, 125.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bebaskan Pengetahuan.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2288/9360 [77:55:03<227:44:48, 115.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bedrohte Löwenpopulationen.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2289/9360 [77:56:48<221:23:02, 112.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bedrohtes Ökosystem Fluss.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2290/9360 [77:58:40<220:50:50, 112.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Bee Keeping.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2291/9360 [77:59:53<197:17:34, 100.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Begriffserklärung Xenophobie.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2292/9360 [78:01:04<179:50:38, 91.60s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Behcet disease.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 2293/9360 [78:49:57<1853:36:08, 944.24s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Behind The Scenes- In Performance at The White House- Country Music.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 26%|██▌ | 2450/9360 [80:28:02<214:24:23, 111.70s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Box of infinities – A Mandelbox film 4K UHD 20190907.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 27%|██▋ | 2500/9360 [81:06:30<49:43:17, 26.09s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Burg Belfort Flugaufnahme.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 27%|██▋ | 2505/9360 [81:14:25<192:37:26, 101.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BurningShip Wiki x264 CRF4 20210820 4500p60 002.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 27%|██▋ | 2541/9360 [81:29:49<19:01:49, 10.05s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Cal64x48check vdfr1to25len2.avi.q10fr25.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 27%|██▋ | 2542/9360 [81:30:26<34:38:02, 18.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "California Route 2 time-lapse.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 28%|██▊ | 2589/9360 [82:02:23<25:21:59, 13.49s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Cat.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 28%|██▊ | 2626/9360 [82:17:09<130:14:33, 69.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Changqingyuan Community, Yinzhou, Tieling 110352000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 28%|██▊ | 2627/9360 [82:19:20<165:02:56, 88.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Changqingyuan Community, Yinzhou, Tieling 110910000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 28%|██▊ | 2654/9360 [82:37:12<82:03:53, 44.06s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Chocolate cake.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 29%|██▊ | 2678/9360 [82:51:04<103:00:13, 55.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Chūkon giretsu Jitsuroku Chūshingura (1928).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 31%|███ | 2865/9360 [85:25:07<15:06:45, 8.38s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "DGS Weihnachten-Geschenke Beispielsatz.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 31%|███ | 2890/9360 [86:11:14<34:40:56, 19.30s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Dan Quinn at 2017 NFL Combine.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 31%|███ | 2891/9360 [86:11:18<26:14:11, 14.60s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Dan Quinn welcomes team back for offseason training (footage).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 32%|███▏ | 2979/9360 [87:20:43<63:56:21, 36.07s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Den hvide slavehandel (1910).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 32%|███▏ | 3007/9360 [87:37:49<127:36:17, 72.31s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Dessau Hbf → Wörlitz 2016-09.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 32%|███▏ | 3040/9360 [87:47:29<22:44:16, 12.95s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Diaporama salles informatiques Togo YovoTogo JUMPLabOrione Emmabuntus 2018.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 33%|███▎ | 3048/9360 [87:49:39<39:44:11, 22.66s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Die Bergkatze (1921).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 33%|███▎ | 3060/9360 [87:55:18<79:21:03, 45.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Die Gespensternstunde (1917).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 33%|███▎ | 3069/9360 [87:58:26<58:02:52, 33.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Die Portale der Mandelbox 5K 20191227 - YouTube.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 33%|███▎ | 3073/9360 [87:59:43<43:14:33, 24.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Die Seele der Mandelbox 4K4K - YouTube.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 35%|███▌ | 3283/9360 [89:39:30<21:07:38, 12.52s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ejaculation.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 39%|███▉ | 3637/9360 [91:35:39<24:41:33, 15.53s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Falkirk Wheel Timelapse, Scotland - Diliff.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 39%|███▉ | 3643/9360 [91:38:54<59:12:59, 37.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Fantômas - À l'ombre de la guillotine (1913).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 39%|███▉ | 3656/9360 [91:45:19<21:13:33, 13.40s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "FelixTheCat-1919-FelineFollies silent.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 39%|███▉ | 3661/9360 [91:48:36<64:11:54, 40.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ferropolis → Oranienbaum (Anh) 2016-09.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 39%|███▉ | 3662/9360 [91:48:37<45:39:01, 28.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Fetal yawning 4D ultrasound ecografia 4D Dr. Wolfgang Moroder.theora.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 39%|███▉ | 3675/9360 [91:51:50<23:33:26, 14.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Firefogg screencast.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 40%|███▉ | 3716/9360 [92:29:34<115:31:41, 73.69s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Flug durch die Menger-Schwamm-Welt in VR (360 Grad) und 8K OHNE TON 4320p50.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 41%|████ | 3833/9360 [92:54:10<49:28:24, 32.22s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "From Preda to Bergün with Rhaetian Railway, aerial video.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 41%|████ | 3850/9360 [92:59:40<35:22:58, 23.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G1266 from Tielingxi to Shenyangbei 20190427 113848.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 3851/9360 [93:01:51<84:55:06, 55.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G1266 from Tielingxi to Shenyangbei 20190427 113913.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 3852/9360 [93:04:06<121:29:49, 79.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G1266 from Tielingxi to Shenyangbei 20190427 114124000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 3853/9360 [93:06:23<147:32:53, 96.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G1266 from Tielingxi to Shenyangbei 20190427 115023000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 3854/9360 [93:08:51<171:30:18, 112.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G8020 from Tielingxi to Shenyang 20190429 173402000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 3855/9360 [93:10:23<162:12:17, 106.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G8020 from Tielingxi to Shenyang 20190429 173806.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 3856/9360 [93:12:11<162:45:48, 106.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G8020 from Tielingxi to Shenyang 20190429 174012.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 3857/9360 [93:14:25<175:26:42, 114.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G8020 from Tielingxi to Shenyang 20190429 174715000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 3858/9360 [93:16:44<186:52:33, 122.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G8020 from Tielingxi to Shenyang 20190429 174925000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 41%|████▏ | 3882/9360 [93:32:27<13:26:09, 8.83s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Galaxy Collision Animation- James Webb Space Telescope Science.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 42%|████▏ | 3897/9360 [93:36:00<13:06:18, 8.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Gartenheim.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 42%|████▏ | 3957/9360 [94:06:46<49:23:26, 32.91s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ghimbav - Istoric al așezării.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 43%|████▎ | 4004/9360 [94:20:32<75:42:46, 50.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Goethe-Sprachlernzentrum, Shenyang 20190427 125113000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 43%|████▎ | 4005/9360 [94:20:52<61:58:36, 41.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Goethe-Sprachlernzentrum, Shenyang 20190427 125829.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 43%|████▎ | 4006/9360 [94:22:49<95:43:18, 64.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Goethe-Sprachlernzentrum, Shenyang 20190427 125904.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 45%|████▍ | 4187/9360 [95:32:32<19:21:19, 13.47s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hemidactylus platyurus performing a high-speed inversion on a ramp - Journal.pone.0038003.s004.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 46%|████▌ | 4286/9360 [96:14:32<37:55:26, 26.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "How Animated Cartoons Are Made (1919).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 46%|████▋ | 4340/9360 [96:40:25<27:00:59, 19.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "How to upload images at Wiki Loves Earth Moldova.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 48%|████▊ | 4479/9360 [97:58:50<55:57:42, 41.27s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "In Changqingyuan Community in Yinzhou District, Tieling 02.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 49%|████▉ | 4581/9360 [98:56:15<32:54:56, 24.80s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Interstate 10 in Los Angeles time-lapse.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 49%|████▉ | 4599/9360 [99:11:10<66:50:10, 50.54s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Intolerance (1916).ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 50%|████▉ | 4667/9360 [99:36:49<13:28:36, 10.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "JOSM 9900 en validator message \"Overlapping ways\" with shortcuts.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 51%|█████ | 4764/9360 [100:23:01<13:24:59, 10.51s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Juve contre Fantômas (1913).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 52%|█████▏ | 4839/9360 [100:54:05<20:43:47, 16.51s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Kinonedelja No. 4 (1918).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 52%|█████▏ | 4867/9360 [101:11:59<194:46:34, 156.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "KochZyklus 3840p60 20200401 color CRF06 GANZ OHNE TON.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 52%|█████▏ | 4883/9360 [101:21:37<107:00:10, 86.04s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Krakow am See–Pritzwalk.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 4884/9360 [101:21:40<75:48:13, 60.97s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Krazy Kat Bugolist 1916 silent.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 4885/9360 [101:21:42<53:57:01, 43.40s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Krazy Kat Bugologist 1916 silent.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 4886/9360 [101:21:45<38:47:20, 31.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Krazy Kat and Ignatz Mouse at the circus .webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 52%|█████▏ | 4900/9360 [101:23:45<9:46:39, 7.89s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "L'Odissea (Milano Films, 1911) .webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 4901/9360 [101:23:52<9:39:53, 7.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "L'heure du thé.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 54%|█████▎ | 5023/9360 [101:34:48<9:38:02, 8.00s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "La fessée à l'école.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 54%|█████▍ | 5074/9360 [101:46:36<23:56:56, 20.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Le Mort qui tue (1913).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 54%|█████▍ | 5093/9360 [101:58:41<63:10:07, 53.29s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Les douze travaux d'Hercule (1910).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 55%|█████▍ | 5132/9360 [102:15:57<58:00:54, 49.40s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Limite (1931).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 55%|█████▍ | 5143/9360 [102:21:09<30:21:17, 25.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Little Albert experiment (1920).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 55%|█████▌ | 5152/9360 [102:25:12<22:13:11, 19.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Lockheed U-2.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 56%|█████▌ | 5253/9360 [102:56:22<66:34:13, 58.35s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Man With A Movie Camera (Dziga Vertov, 1929).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 56%|█████▌ | 5259/9360 [103:02:06<97:35:29, 85.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mandelboxflug \"Raumschifflager\" 20200201 5K color.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▌ | 5260/9360 [103:08:35<201:01:47, 176.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "MandelbulbPower 00000-10501 Quality0 VP9 4500p60 20210918.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▌ | 5261/9360 [103:14:41<265:42:11, 233.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "MandelbulbRot 00000-10501 VP9 slow lossless.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 57%|█████▋ | 5339/9360 [103:39:11<4:19:50, 3.88s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "May Irwin Kiss.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 58%|█████▊ | 5435/9360 [104:26:45<9:24:11, 8.62s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Micro-CT Rope HighRes 3D.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 58%|█████▊ | 5454/9360 [104:35:31<16:34:04, 15.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Millie Alexandra - Sign Me Up!.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5455/9360 [104:35:34<12:32:54, 11.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Millie Bobby Brown Pandora 2020.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5456/9360 [104:35:36<9:18:31, 8.58s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Millikan experiment.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 59%|█████▊ | 5494/9360 [104:51:43<13:25:38, 12.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mod lyset (1919).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 59%|█████▉ | 5541/9360 [105:15:32<54:19:32, 51.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mud and Sand-508toendnok.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 59%|█████▉ | 5542/9360 [105:15:37<39:26:06, 37.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mud and Sand-silent 0to508.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 59%|█████▉ | 5545/9360 [105:15:59<18:02:48, 17.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Multibrot.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 60%|█████▉ | 5593/9360 [105:55:35<43:37:44, 41.69s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "NASA Models the Complex Chemistry of Earth's Atmosphere.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 60%|██████ | 5648/9360 [106:22:32<11:06:01, 10.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Na vrhu brda, Pelišac.915.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 62%|██████▏ | 5780/9360 [107:19:49<102:54:12, 103.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Neustadt (Dosse)–Pritzwalk.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 64%|██████▎ | 5957/9360 [108:37:31<14:32:23, 15.38s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Osterfest 2019 Goethe-Sprachlernzentrum, Shenyang 20190427 174604.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 64%|██████▎ | 5958/9360 [108:38:08<20:38:09, 21.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Osterfest 2019 Goethe-Sprachlernzentrum, Shenyang 20190427 180013.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 64%|██████▍ | 5972/9360 [108:42:15<9:29:57, 10.09s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "PIA23195-AsteroidApophis-ClosestApproachToEarth-20190429.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 65%|██████▍ | 6040/9360 [109:19:11<50:37:03, 54.89s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Per amore di Jenny (1915).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 65%|██████▌ | 6129/9360 [109:58:26<42:06:31, 46.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Plastic Reconstruction of Face (1918).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 68%|██████▊ | 6355/9360 [113:58:40<74:22:16, 89.10s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "President Obama Speaks at the 2015 National Prayer Breakfast.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 72%|███████▏ | 6738/9360 [122:32:32<147:28:37, 202.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Pritzwalk–Krakow am See.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 72%|███████▏ | 6743/9360 [122:38:40<52:29:26, 72.21s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Pro patria (1915).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 72%|███████▏ | 6771/9360 [122:54:49<48:31:36, 67.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Protest of the Transylvanian National Council in Kolozsvar 22 December 1918.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 72%|███████▏ | 6774/9360 [122:55:01<18:29:00, 25.73s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Proteus 3D model.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 73%|███████▎ | 6818/9360 [123:25:32<72:56:49, 103.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Quat4DJuliaX 0000-4000 VP9 medium 260MBits 20211130.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 73%|███████▎ | 6819/9360 [123:29:37<103:01:29, 145.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Quaternion4D20211111 W-Wachstum VP9 medium 240MBit 0000-4000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 73%|███████▎ | 6820/9360 [123:35:17<143:55:40, 203.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Quaternion4DCUT20211115 W-Wachstum x265 medium lossless 0000-4000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 73%|███████▎ | 6831/9360 [123:43:11<51:16:45, 73.00s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Quo vadis (1913).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 74%|███████▍ | 6952/9360 [124:57:28<38:12:59, 57.13s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Revolutionsbryllup (1914).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 75%|███████▍ | 6978/9360 [125:12:52<30:29:01, 46.07s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Robin Hood (1922).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 75%|███████▍ | 6982/9360 [125:13:32<12:40:33, 19.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Robot running at high-speed performing rapid inversion - Journal.pone.0038003.s006.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 76%|███████▋ | 7155/9360 [126:08:13<50:52:16, 83.06s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Saturday night (1922).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 77%|███████▋ | 7238/9360 [127:05:03<71:59:41, 122.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Senate Session (January 25, 2021).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 77%|███████▋ | 7240/9360 [127:05:03<35:18:43, 59.96s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Senator Elizabeth Warren Celebrates the Career of Emily Winterson.webm\n", + "Senator Elizabeth Warren at Boston Logan Airport for -NoBanNoWall Protest.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 77%|███████▋ | 7242/9360 [127:05:04<17:19:43, 29.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Senator Elizabeth Warren at Copley Square Muslim Ban Protest.webm\n", + "Senator Elizabeth Warren floor speech on Rex Tillerson.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 77%|███████▋ | 7244/9360 [127:05:04<8:31:40, 14.51s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Senator Elizabeth Warren on the Republicans' government shutdown threats.webm\n", + "Senator Elizabeth Warren questions Tom Price about Medicare and Medicaid Cuts.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 77%|███████▋ | 7246/9360 [127:05:04<4:12:46, 7.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Senator Elizabeth Warren questions Wells Fargo CEO John Stumpf at Banking Committee Hearing.webm\n", + "Senator Elizabeth Warren's Floor Speech on Commerce Secretary Nominee Wilbur Ross.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 77%|███████▋ | 7248/9360 [127:05:04<2:05:44, 3.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Senator Elizabeth Warren- Floor speech on 21st Century Cures Act.webm\n", + "Senator Elizabeth Warren- Opening Statement on Andrew Puzder at Workers Forum.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 77%|███████▋ | 7250/9360 [127:05:05<1:03:35, 1.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Senator Elizabeth Warren- President-Elect Trump Already Broke Promise to \"Drain the Swamp\".webm\n", + "Senator Elizabeth Warren- floor speech on 21st Century Cures.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 77%|███████▋ | 7252/9360 [127:05:05<33:07, 1.06it/s] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Senator Klobuchar Meets With Multi-Agency Wellness Court.webm\n", + "Senator Markey Discusses Republican Giveaways to Oil, Coal, Mining Companies - 2-2-17.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7254/9360 [127:05:05<18:09, 1.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Senator Markey Questions ExxonMobil CEO Rex Tillerson at Confirmation Hearing - Full - 1-11-17.webm\n", + "Senator Markey Speaks in Opposition to Nomination of Tom Price for Sec. of HHS - 2-9-17.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7256/9360 [127:05:05<10:52, 3.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Senator Tina Smith's Staff Visit Bemidji To Discuss Farm Bill.webm\n", + "Senior DOD Official Holds News Conference feb 3 2020 DOD 107640372-1280x720-2765k-5e6fb7fa80e93.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7258/9360 [127:05:05<07:24, 4.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Seniorské WikiMěsto Prachatice 2020.webm\n", + "Sentinels of the Heliosphere.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7260/9360 [127:05:06<05:38, 6.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sequence-Wikipedia Great Feeling Wikimedia Hungary.ogv\n", + "Serbian National Anthem instrumental.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7262/9360 [127:05:06<04:43, 7.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Serbian National Anthem, instrumental.oga\n", + "Serbian national anthem, instrumental.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7264/9360 [127:05:06<04:28, 7.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sergej Mitrohin voice.oga\n", + "Sergey Lagodinsky - GEF - The EP Goes Green.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7266/9360 [127:05:06<04:12, 8.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Series of Tubes - Senator Ted Stevens.ogg\n", + "Service Dogs- More than Man's Best Friend for Team Navy Athletes.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7268/9360 [127:05:07<04:01, 8.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sesame Street at the Storytime Stage of the 2016 Easter Egg Roll.webm\n", + "Sesame Street- Grand Canyon Families.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7270/9360 [127:05:07<04:00, 8.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Setup Mozilla Thunderbird for WMDE volunteer mail address.webm\n", + "Seven Candidates To Vie For Bemidji City Council Ward 4 Special Election.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7272/9360 [127:05:07<04:06, 8.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sex Trafficking and the New Abolitionists- A Panel Discussion at Brooklyn Museum.webm\n", + "Sextortionagent interview.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7274/9360 [127:05:07<04:02, 8.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Shahadah.ogg\n", + "Shame On You Rush Limbaugh.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7276/9360 [127:05:07<03:55, 8.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Shantakumaran Sreesanth.ogg\n", + "Share Your Knowledge 1 Why glamwiki.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7278/9360 [127:05:08<03:59, 8.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Share Your Knowledge 2 How glamwiki.ogv\n", + "Share the Knowledge (no subtitles).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7280/9360 [127:05:08<04:18, 8.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Share-a-Fact on the Official Wikipedia Android app.webm\n", + "Share-a-Fact on the Official Wikipedia iPhone app.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7282/9360 [127:05:08<04:15, 8.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sharkula Freestyle.webm\n", + "Sharon Isbin Performs at the White House- 1 of 8.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7284/9360 [127:05:08<04:02, 8.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "She walks in beauty.ogg\n", + "Shedding Light on Black Holes (NASA ScienceCasts).ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7286/9360 [127:05:09<04:00, 8.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Shenandoah (2017) - Singing Sergeants - United States Air Force Band.mp3\n", + "Sherlock Holmes and the Secret Weapon(1943).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7288/9360 [127:05:09<03:52, 8.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Shifting Cultivation.webm\n", + "Shock video.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7290/9360 [127:05:09<03:55, 8.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Shoppers Looks For Gifts In Last-Minute Christmas Rush.webm\n", + "Short clip of Philippine president Rodrigo Roa Duterte saying, among other things, \"Putang ina mo\".webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7292/9360 [127:05:09<03:50, 8.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Shortcutting the Identify topics for impact.webm\n", + "Shotinformativoelcampo-conceptoradialshotinformativo-ivoox3155319.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7294/9360 [127:05:10<03:48, 9.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Shotinformativoledzeppelin-conceptoradialshotinformativo-ivoox3566815.ogg\n", + "Shotinformativolosjovenesmusica-conceptoradialshotinformativo-ivoox3566719.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7296/9360 [127:05:10<03:46, 9.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Shotinformativotribusurbanas-conceptoradialshotinformativo-ivoox3564222.ogg\n", + "Should We Leave Islam - Armin Navabi.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7298/9360 [127:05:10<03:52, 8.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Shuttle Columbia sound barrier.ogg\n", + "Shuttle Imaging Radar A Launches aboard STS-2.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7300/9360 [127:05:10<04:05, 8.41it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Shuttle Imaging Radar B Launches aboard STS-41-G.webm\n", + "Si-Mahanuwara.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7302/9360 [127:05:11<04:30, 7.61it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sidda Veso, Pursere Kattuna.webm\n", + "Sierra Leone Intro.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7304/9360 [127:05:11<04:09, 8.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sights- Super Bowl LI.webm\n", + "Signing of New START Nuclear Arms Treaty with Russia.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7306/9360 [127:05:11<03:57, 8.65it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Signing the Healthy, Hunger-Free Kids Act.webm\n", + "Signing the Tribal Law and Order Act.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7308/9360 [127:05:11<03:48, 8.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Silbo.ogg\n", + "Silence.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7310/9360 [127:05:11<03:44, 9.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Silent Night (choral).ogg\n", + "Simple Steps for Creating an Organizational Culture of Health.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7312/9360 [127:05:12<03:42, 9.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Simple interrupted stitch suture technique.webm\n", + "Sindhi Wikipedia Sindhi people editthon tutorial.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7314/9360 [127:05:12<03:45, 9.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sino-Vietnamese-Nam quốc sơn hà.ogg\n", + "Sintel movie 4K.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7316/9360 [127:05:12<04:10, 8.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sintel movie 720x306.ogv\n", + "Sir David Attenborough BBC Radio4 Desert Island Discs 29 Jan 2012 b01b8yy0.flac\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7318/9360 [127:05:12<04:21, 7.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Siri Sunde forteller Kirken eller kjærligheten (skeivt arkiv).webm\n", + "Sissel Hansen forteller (skeivt arkiv).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7320/9360 [127:05:13<04:12, 8.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sit-in Against Racial Injustice, Downtown Indianapolis (2020-06-06).webm\n", + "Sita Sings the Blues.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7322/9360 [127:05:13<03:57, 8.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Siti Nurhaliza - Siti Nurhaliza Komen Desas-Desus Kehamilan.webm\n", + "Six minutes pour la mer rouge.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7324/9360 [127:05:13<03:51, 8.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Six nights-UNESCO.mpg\n", + "Six o' clock closing ABC.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7326/9360 [127:05:13<03:47, 8.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sk-Bratislava.ogg\n", + "Sk-Milan Rastislav Stefanik.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7328/9360 [127:05:14<03:48, 8.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Skapa ett objekt i Wikidata.webm\n", + "Skapa konto på translatewiki.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7330/9360 [127:05:14<03:53, 8.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Skeptic Intro - Derek Colanduno.ogg\n", + "Skipping Drugs She Can't Afford.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7332/9360 [127:05:14<03:59, 8.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sleep-Related-Declarative-Memory-Consolidation-and-Verbal-Replay-during-Sleep-Talking-in-Patients-pone.0083352.s004.ogv\n", + "Slik startet transarbeidet (skeivt arkiv).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7334/9360 [127:05:14<04:03, 8.33it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Slip knot suture technique with instruments.webm\n", + "Slovenia's national anthem, performed by the United States Navy Band.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7336/9360 [127:05:14<03:52, 8.69it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Slut Walk München 2019.webm\n", + "Small Missouri Town Is a Big Draw for Solar Eclipse.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7338/9360 [127:05:15<03:46, 8.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Smart vibrator changes conversation about sex.webm\n", + "Smittefrykten var enorm (skeivt arkiv).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7340/9360 [127:05:15<03:46, 8.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Smoke Ban ABC.ogv\n", + "Smoke-engineerguy.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7342/9360 [127:05:15<03:43, 9.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Smokey Robinson Performs at the White House- 10 of 11.webm\n", + "Smoking Anus.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7344/9360 [127:05:15<03:49, 8.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Snapshots- Get Involved updated January 2018.webm\n", + "Snapshots- Passing a Bill updated January 2018.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|███████▊ | 7346/9360 [127:05:16<03:54, 8.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Snapshots- Question Time updated January 2018.webm\n", + "Sneak Preview - Wikipedia VisualEditor.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▊ | 7348/9360 [127:05:16<03:47, 8.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Snore man 50 years 160 kg.ogg\n", + "Snow White and the Seven Dwarfs (Original Theatrical Trailer 2) 1937 (La Blancaneu).ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▊ | 7350/9360 [127:05:16<03:45, 8.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "So beeinflussen uns Cannabinoide (CC BY 4.0).webm\n", + "So entstand das letzte Eiszeitalter.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▊ | 7352/9360 [127:05:16<03:42, 9.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "So entstanden Höhlen in der Karibik.webm\n", + "So entstehen Diamanten (CC BY 4.0).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▊ | 7354/9360 [127:05:16<03:38, 9.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "So entsteht Bienenhonig.webm\n", + "So entsteht ein Hurrikan.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▊ | 7356/9360 [127:05:17<03:36, 9.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "So entsteht ein Schlagloch.webm\n", + "So funktionieren Geysire (CC BY 4.0) redub EO.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▊ | 7358/9360 [127:05:17<03:37, 9.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "So funktionieren Geysire (CC BY 4.0).webm\n", + "So funktionieren Klimamodelle (ZDF, Terra X) 720p HD 50FPS.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▊ | 7360/9360 [127:05:17<03:39, 9.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "So funktioniert die Atmung.webm\n", + "So trinken Bäume.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▊ | 7362/9360 [127:05:17<04:02, 8.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "So werden Mikrochips hergestellt.webm\n", + "So wichtig ist Insulin für unseren Zuckerhaushalt (CC BY 4.0).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▊ | 7364/9360 [127:05:18<03:59, 8.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "So wichtig ist tiefes Atmen.webm\n", + "So wohnten die Berliner in der Kaiserzeit (CC BY 4.0).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▊ | 7366/9360 [127:05:18<03:51, 8.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "So wohnten die Menschen im antiken Rom (CC BY 4.0).webm\n", + "So wurde das KZ Auschwitz gebaut (CC BY 4.0).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▊ | 7368/9360 [127:05:18<03:45, 8.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "So wurde die Berliner Mauer gebaut (CC BY 4.0).webm\n", + "Sobre la gobernanza en internet.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▊ | 7370/9360 [127:05:18<03:41, 8.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Socia distancado nek nova nek nurhoma - scivolemo.webm\n", + "Sohliang Seed.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7372/9360 [127:05:19<03:36, 9.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sokrates über Wissen und Nichtwissen.webm\n", + "Solar System explained by simpleshow foundation.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7374/9360 [127:05:19<03:35, 9.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Solemn Kyiv Copes with Bombs Gunfire.webm\n", + "Solidaridad sin Fronteras -- Luz Meza.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7376/9360 [127:05:19<03:34, 9.23it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Solidarity message to ex-Muslims - Lawrence Krauss.webm\n", + "Solis Viaduct, Schinschlucht and Solis dam, aerial video.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7378/9360 [127:05:19<03:42, 8.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Solomon Islands- Committed to conserving rainforests.webm\n", + "Solomonislandsanthem.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7380/9360 [127:05:19<03:40, 8.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Somali national anthem, performed by the United States Navy Band.oga\n", + "Some Differences Between Governor Walker and Myself - Bernie Sanders.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7382/9360 [127:05:20<03:38, 9.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Somos Wikimedia México.webm\n", + "Song Mangab - Jingukmyeongsan.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7384/9360 [127:05:20<03:35, 9.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Song of Five Races Under One Union.opus\n", + "Song of the Departure (Chant du Depart).ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7386/9360 [127:05:20<03:35, 9.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Song to the Auspicious Cloud - Second Version.ogg\n", + "Sonnen- und Mondjahr.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7388/9360 [127:05:20<04:10, 7.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sorud-e Mellí-e Yomhurí-e Eslamí-e Irán (instrumental).oga\n", + "Sorude Melliye Jomhuriye Eslâmiye Irân (Instrumental).wav\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7390/9360 [127:05:21<03:57, 8.29it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sound Effect - Door Bell.ogg\n", + "Sound Logo for Wikimedia.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7392/9360 [127:05:21<03:46, 8.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sound-of-dog.ogg\n", + "Sous vide overview by Nomiku with VO.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7394/9360 [127:05:21<03:48, 8.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sous vide overview by Nomiku.webm\n", + "Sousa - \"Washington Post March,\" m. 1-7.mid\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7396/9360 [127:05:21<03:38, 9.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "South Africa National Anthem.ogg\n", + "South African national anthem.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7398/9360 [127:05:21<03:41, 8.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "South Korean national anthem.wav\n", + "South Shore Site Selected For 2019 Hockey Day Minnesota.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7400/9360 [127:05:22<03:36, 9.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Soviet Anthem Instrumental 1955.ogg\n", + "Soviet Anthem Piano Instrumental (3 verses).ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7402/9360 [127:05:22<03:31, 9.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Soviet Union national anthem (instrumental), 1977.oga\n", + "Soviet Union national anthem instrumental 1977.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7404/9360 [127:05:22<03:44, 8.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Soy Wikipedista.webm\n", + "Soyuz MS-10 Launch Abort.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7406/9360 [127:05:22<03:39, 8.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Soyuz-2.1a launch from the Plesetsk cosmodrome.webm\n", + "Space Station Crew Holds an Out of this World Audience with the Pope.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7408/9360 [127:05:23<03:34, 9.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Space Station Live - Cultivating Plant Growth in Space.webm\n", + "Space Station Stories - The One Year Mission.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7410/9360 [127:05:23<04:08, 7.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Space pioneer Rick Tumlinson on colonizing space-VPRO-The Mind of the Universe.ogv\n", + "Space to Ground - Cool Flames.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7412/9360 [127:05:23<04:40, 6.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SpaceX CRS-12 Launches to the International Space Station.webm\n", + "SpaceX Crew-1 Launch.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7414/9360 [127:05:23<04:06, 7.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SpaceX Tests Crew Dragon Parachutes.webm\n", + "SpaceX-Dragon CRS-12 Prelaunch News Conference.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7416/9360 [127:05:24<03:54, 8.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SpaceX-Dragon CRS-12 What's on Board Science Briefing.webm\n", + "Spacecake (cannabis - THC) - Do's and don'ts - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7418/9360 [127:05:24<03:57, 8.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Spaced repetition.webm\n", + "SpanishPod newbie lesson A0006 line 3.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7420/9360 [127:05:24<03:46, 8.57it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Spartacus (1960) - Trailer.webm\n", + "Special Counsel Robert S. Mueller III Makes Statement on Investigation into Russian Interference...webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7422/9360 [127:05:24<03:37, 8.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Speech van Voorzitter Khadija Arib op de laatste vergaderdag van 2017.webm\n", + "Speed - Do's and don'ts - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7424/9360 [127:05:25<03:42, 8.70it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Speed makes Nellie aggressive (amphetamine) - Drugslab.webm\n", + "Speere - älteste Waffen der Menschen (CC BY 4.0) .webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7426/9360 [127:05:25<03:36, 8.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Speyer und sein Dom.webm\n", + "Spike Sorting, Christophe Pouzat, NeuroMat.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7428/9360 [127:05:25<03:33, 9.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Spooky Month.ogg\n", + "Spot \"Soy Wikipedista\" WMAR.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7430/9360 [127:05:25<03:33, 9.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Spring - Blender Open Movie.webm\n", + "Springfield- Where It Began.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7432/9360 [127:05:25<03:30, 9.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sprite Fright - Blender Open Movie-full movie.webm\n", + "Sputnik beep.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7434/9360 [127:05:26<03:31, 9.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Square knot suture technique with instruments.webm\n", + "Square knot suture technique with one hand.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7436/9360 [127:05:26<03:29, 9.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Square knot suture technique with two hands.webm\n", + "Sri Lankan national anthem, performed by the United States Navy Band.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7438/9360 [127:05:26<03:29, 9.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "St. Lambertus (Immerather Dom) 2016.webm\n", + "St. Lucia Irma Waves.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 79%|███████▉ | 7440/9360 [127:05:26<03:28, 9.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "St. Maartensviering Weeknummer, 61-47 - Open Beelden - 27281.ogv\n", + "Staan er in 2070 palmbomen op de purperen heide.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7442/9360 [127:05:26<03:29, 9.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Staat al van voor je geboorte vast hoe oud je wordt.webm\n", + "Stages of Labor - Kaiser Permanente.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7444/9360 [127:05:27<03:24, 9.38it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Stalinjeet speaking about Punjab Edit-a-thon 2016.webm\n", + "Stammen de mensen af van de apen.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7446/9360 [127:05:27<03:26, 9.27it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Stand, Columbia.ogg\n", + "Standing sexual intercourse.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7448/9360 [127:05:27<03:23, 9.37it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Star Spangled Banner instrumental.ogg\n", + "Star Spangled Banner.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7450/9360 [127:05:27<03:27, 9.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Star-spangled banner 002.ogg\n", + "Star-spangled banner.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7452/9360 [127:05:28<03:36, 8.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Starship SN8 launch render.webm\n", + "Start 4 projecten langs A12 tussen Lunetten en Veenendaal.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7454/9360 [127:05:28<03:38, 8.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Start verkoop Pinkpop-kaartjes 2016 Sittard-Geleen.webm\n", + "State Arrival Ceremony for Prime Minister Renzi.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7456/9360 [127:05:28<03:56, 8.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "State Dinner for German Chancellor Merkel.webm\n", + "State Dinner for Prime Minister Cameron.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7458/9360 [127:05:28<03:56, 8.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "State Dinner with President Hu of China.webm\n", + "State Visit Working Lunch at the State Department.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7460/9360 [127:05:29<04:07, 7.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Statement by HM LPR Major Marochko AB November 28, 2016 Mr..webm\n", + "Statement by HM LPR Major Marochko And in December 6, 2016 g.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7462/9360 [127:05:29<04:04, 7.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "StationLIFE - Nutrition (January 2016).webm\n", + "Stealing some of Wikimedia's Principles to Democratize Programming.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7464/9360 [127:05:29<03:50, 8.22it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Steamboat Bill Jr. (1928).webm\n", + "Stefan Caplan.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7466/9360 [127:05:29<03:43, 8.48it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Steg för steg för översättning i translatewiki.webm\n", + "Stela speaking the Esperanto language.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7468/9360 [127:05:30<03:36, 8.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Steph Davis, Fearless Flyer - HUMAN Limits.webm\n", + "Stephen Amell about flashbacks of Arrow at NerdHQ 2014.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7470/9360 [127:05:30<03:35, 8.75it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Stephen Fry voice.flac\n", + "Stephen Hawking discusses the origin of the universe, UC Berkeley, 2007.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7472/9360 [127:05:30<03:29, 9.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sternzeit Vocoder.ogg\n", + "Steven Novella Voice.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7474/9360 [127:05:30<03:30, 8.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Steven Spielberg's \"Obama\".webm\n", + "Stevenson-Moore-Adelina Patti-The last rose of summer-(1906).ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7476/9360 [127:05:30<03:29, 9.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Still White Danube - Тих Бял Дунав се вълнува.flac\n", + "Story Panchachuli.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7478/9360 [127:05:31<03:26, 9.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Story about FLASHDISK..Stop motion animation...webm\n", + "Story of Kashmiri Wikipedia.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7480/9360 [127:05:31<03:26, 9.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "StrangeOnesFullRez.ogv\n", + "Strategic National Stockpile A Look Back at the Last 20 Years.webmhd.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7482/9360 [127:05:31<03:25, 9.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Straßenbahn Halberstadt komplett.webm\n", + "Strength Training Circuit- Overhead Push Press.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7484/9360 [127:05:31<03:25, 9.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Strictly Personal (1945).webm\n", + "Strike (1925).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|███████▉ | 7486/9360 [127:05:32<03:35, 8.68it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Stromatolitoj - Scivolemo -ZDF.webm\n", + "StructuredDataSearchAndBatchAddDemo.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7488/9360 [127:05:32<03:32, 8.81it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Struggling on CRAZY roots in Kranjska Gora- Vlog 10- 2018.webm\n", + "Strukturerad data på Wikimedia Commons.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7490/9360 [127:05:32<03:27, 8.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Subdomain or subfolder, which is better for SEO-.webm\n", + "Sudan.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7492/9360 [127:05:32<03:25, 9.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sudanese national anthem, performed by the U.S. Navy Band (instrumental).oga\n", + "Sudanese national anthem, performed by the U.S. Navy Band.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7494/9360 [127:05:32<03:23, 9.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Suddenly (1954).webm\n", + "Suez nationalization.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7496/9360 [127:05:33<03:22, 9.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Suggested edits module.webm\n", + "Sukarno and Japan, ABC 1966.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7498/9360 [127:05:33<03:21, 9.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sumana-Harihareswara-wikicon-2014-keynote.webm\n", + "Sumanah-wcusa-2014-keynote.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7500/9360 [127:05:33<03:23, 9.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Summer 1995 Music scene at beach in Vega Baja, Puerto Rico - Snoop Dogg cameo.ogv\n", + "Summit Camp Greenland, aerial video.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7502/9360 [127:05:33<03:35, 8.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Super Mario Odyssey - The Story of Yoshiaki Koizumi.webm\n", + "Supercalifragilisticexpialidocious.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7504/9360 [127:05:34<03:34, 8.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Supercomputer Simulation Reveals Supermassive Black Holes.webm\n", + "Supermoon Lunar Eclipse.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7506/9360 [127:05:34<03:30, 8.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Supernova.ogv\n", + "Supporting a gentle discussion - Can we raise awareness through research results to bring about change.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7508/9360 [127:05:34<03:27, 8.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sur sa mission en France Face B.ogg\n", + "Surah Al fatiha104.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7510/9360 [127:05:34<03:23, 9.10it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sure dørvakter men viktig treffsted (skeivt arkiv).webm\n", + "Surgical cricicothyroidotomy with Kelly.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7512/9360 [127:05:34<03:22, 9.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Surgical cricicothyroidotomy with finger.webm\n", + "Surinamese national anthem, performed by the U.S. Navy Band.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7514/9360 [127:05:35<03:20, 9.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Surrender of BS Part 2 wiki.webm\n", + "Survival1951.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7516/9360 [127:05:35<03:21, 9.15it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Susan Gerbic Voice.ogg\n", + "Suture and suture needle holding technique.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7518/9360 [127:05:35<03:20, 9.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Suzy - Quero ser tua presentation (Português).webm\n", + "Sv-Carl von Linné.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7520/9360 [127:05:35<03:20, 9.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sv-Ingvar Kamprad.ogg\n", + "Sv-Lund.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7522/9360 [127:05:36<03:31, 8.67it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sv-The North Wind and the Sun.ogg\n", + "Sv-alphabet.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7524/9360 [127:05:36<03:42, 8.25it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sv-svenska.ogg\n", + "Sv.Wikipedia-VideoWiki-Bollnäs kommun.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7526/9360 [127:05:36<03:57, 7.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sv.Wikipedia-VideoWiki-Covid-19.webm\n", + "Sv.Wikipedia-VideoWiki-Hälsingland.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7528/9360 [127:05:36<03:37, 8.42it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sv.Wikipedia-VideoWiki-Selma Lagerlöf.webm\n", + "Sv.Wikipedia-VideoWiki-Wikipedia-Veckans tävling-Videosprint 2.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7530/9360 [127:05:37<03:33, 8.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sven Koopmans - Commissie voor de Verzoekschriften en de Burgerinitiatieven.webm\n", + "Swadlincote.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7532/9360 [127:05:37<03:26, 8.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Swami Vivekananda.ogg\n", + "Swanson and Nolan Campaign Visits Brainerd.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 80%|████████ | 7534/9360 [127:05:37<03:22, 9.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Swearing-In Ceremony of the Secretary of Treasury.webm\n", + "Swearing-In of The Secretary of Transportation.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7536/9360 [127:05:37<03:22, 9.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Swearing-in for the Administrator of CMS.webm\n", + "Sweden is Now Recycling 99 Percent of its Trash. Here’s how (1).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7538/9360 [127:05:37<03:22, 8.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Swiss Psalm.ogg\n", + "Sydde seg gjennom militærtjenesten (skeivt arkiv).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7540/9360 [127:05:38<03:22, 8.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sykepleieren takket ved dødsleiet (skeivt arkiv).webm\n", + "Symptoms in Schizophrenia (Silent) (Pennsylvania State College, 1938).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7542/9360 [127:05:38<03:24, 8.88it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Synapsis.theora.ogv\n", + "Syndrome of inappropriate antidiuretic hormone.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7544/9360 [127:05:38<03:22, 8.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Systerprojekten till Wikipedia.webm\n", + "Så ser han meg holde hånd med en gutt (skeivt arkiv).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7546/9360 [127:05:38<03:20, 9.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TA-மகாபற்பன்.ogg\n", + "TA-மகாப்பிரத்தானம்.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7548/9360 [127:05:39<03:22, 8.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TEDxSydney - Richard Gill - The Value of Music Education.webm\n", + "TJ Oshie Brings The Stanley Cup To Warroad.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7550/9360 [127:05:39<03:23, 8.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TNA332toShanghai.ogg\n", + "TRAPS-Brao people.mpg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7552/9360 [127:05:39<03:19, 9.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TS Olivia Update 5am Wednesday.webm\n", + "TSA- How It Works.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7554/9360 [127:05:39<03:16, 9.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TU Delft OpenCourseWare.webm\n", + "Ta letter.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7556/9360 [127:05:39<03:16, 9.18it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Taj Mahal - Mausoleum der Liebe (CC BY-SA 4.0).webm\n", + "Tajikistan anthem.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7558/9360 [127:05:40<03:17, 9.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Take a tour of the House of Lords.webm\n", + "Taking Care of 18 Acres- The National Park Service at the White House.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7560/9360 [127:05:40<03:25, 8.77it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Taking the X out of X-Rays (Dr. William Coolidge, 1940).webm\n", + "Talent and Culture Department Highlights from the Wikimedia Foundation 2021-2022 Annual Plan.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7562/9360 [127:05:40<03:39, 8.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Talkpages.ogg\n", + "Talkpages.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7564/9360 [127:05:40<03:39, 8.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tamo Daleko.ogg\n", + "Tampuan Soup.mpg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7566/9360 [127:05:41<03:32, 8.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tampuan man cut the bamboo.mpg\n", + "Tango Dancing at the Ambassadors Reception.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7568/9360 [127:05:41<03:27, 8.62it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tantum Ergo I Gregorian.ogg\n", + "Tanzanian national anthem, performed by the United States Navy Band.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7570/9360 [127:05:41<03:27, 8.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tasmania's swift parrot set to follow the dodo.webm\n", + "Tause telefoner (skeivt arkiv).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7572/9360 [127:05:41<03:19, 8.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tautiška giesme instumental.ogg\n", + "Tavisupleba instrumental.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7574/9360 [127:05:41<03:18, 9.02it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tavisupleba vocal.ogg\n", + "Tawakkol Karman (English).ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7576/9360 [127:05:42<03:18, 8.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tchaikovsky - Concerto in D Major for Violin and Orchestra, Op. 35 - I. Allegro moderato.ogg\n", + "Tea with an MP - Alan Mak.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7578/9360 [127:05:42<03:33, 8.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Teaching Wikipedia in Egypt - May Hachem.webm\n", + "Teachtaireacht Lá Fhéile Pádraig 2021 ón Uachtarán Micheál D. Ó hUigínn-VRg-a0qSGa8.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7580/9360 [127:05:42<03:30, 8.44it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Teachtaireacht na Nollag agus na hAthbhliana ó Uachtarán na hÉireann Micheál D. Ó hUigínn-BY2NF-lawPQ.webm\n", + "Tear down this wall.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7582/9360 [127:05:43<04:14, 6.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tears of Steel 1080p.webm\n", + "Tears of Steel in 4k - Official Blender Foundation release.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7584/9360 [127:05:43<04:02, 7.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Teaser Isen - a documentary film about Wikimania Esino Lario.webm\n", + "Teaser Umfrage Technische Wünsche 2022.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7586/9360 [127:05:43<03:48, 7.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Teaser für Umfrage Technische Wünsche 2022.webm\n", + "Tec-de-monterrey-student-activities-in-wikimedia.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7588/9360 [127:05:43<03:36, 8.20it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Technology Department Highlights from the Wikimedia Foundation 2021-2022 Annual Plan.webm\n", + "Temazepam - Do's and don'ts - Drugslab.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7590/9360 [127:05:43<03:24, 8.63it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Temer- As medidas que tomamos visam ao futuro.webm\n", + "Temperature Effect on Chemical Equilibrium (NO and NO2).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7592/9360 [127:05:44<03:18, 8.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tentara Pembela - Verdedigingsleger.webm\n", + "Tentoonstelling Nineveh.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7594/9360 [127:05:44<03:22, 8.73it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Teoria da História na Wikipédia 2018.1.webm\n", + "TeotihuacanPronunciation.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7596/9360 [127:05:44<03:17, 8.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Terence Eden voice sample.wav\n", + "Territorial anthem of the Northern Mariana Islands, performed by the United States Navy Band.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7598/9360 [127:05:44<03:40, 8.00it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Territorial anthem of the United States Virgin Islands.oga\n", + "Territorial anthem of the United States Virgin Islands.wav\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7600/9360 [127:05:45<03:35, 8.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Terrorism Will Not Strike Fear in American Hearts - Bernie Sanders.webm\n", + "Terugkijken- Speech Femke Halsema bij Keti Koti - Amsterdam maakt excuses voor slavernijverleden.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7602/9360 [127:05:45<03:24, 8.60it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Test formWizard gadget exemple.webm\n", + "Test mp3 opus 16kbps.wav\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████ | 7604/9360 [127:05:45<03:19, 8.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Test video upload.webm\n", + "Testimonial Sismo 1985 2.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████▏ | 7606/9360 [127:05:45<03:17, 8.90it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tetralogy of fallot video.webm\n", + "Texas Instruments TI-99 4A speech demo.flac\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████▏ | 7608/9360 [127:05:46<03:22, 8.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Th-Bangkok ceremonial name.ogg\n", + "Thai National Anthem - US Navy Band.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████▏ | 7610/9360 [127:05:46<03:16, 8.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Thai Royal Anthem - US Navy Band.ogg\n", + "Thalie Envolée - Arthur Rimbaud - Le Dormeur du val.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████▏ | 7612/9360 [127:05:46<03:15, 8.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Thalie Envolée - Arthur Rimbaud - Voyelles.oga\n", + "Thank You for Not Endorsing me, Rahm Emanuel.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████▏ | 7614/9360 [127:05:46<03:13, 9.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Thank You from the Children of OLPC.ogg\n", + "Thank you to Esino Lario for hosting Wikimania 2016 from Wikimania 2017 - message from Katherine Maher.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████▏ | 7616/9360 [127:05:46<03:11, 9.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The 2011 State of the Union Address- Enhanced Version.webm\n", + "The 2011 State of the Union Address.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████▏ | 7618/9360 [127:05:47<03:12, 9.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The 2013 State of the Union Address (Enhanced Version).webm\n", + "The 2014 NBA Champion San Antonio Spurs Visit the White House.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████▏ | 7620/9360 [127:05:47<03:15, 8.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The ASEAN Way (Instrumental).ogg\n", + "The Afrocine Project Learnings from organizing a Pan-African Campaign.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████▏ | 7622/9360 [127:05:47<03:12, 9.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Army Song - Band and Chorus - United States Army Band.mp3\n", + "The Battle of Midway (1942).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████▏ | 7624/9360 [127:05:47<03:13, 8.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Blind Boys of Alabama Perform at the White House- 11 of 11.webm\n", + "The Booze Hangs High 190611 LTGC.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████▏ | 7626/9360 [127:05:48<03:15, 8.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Brabanconne.ogg\n", + "The Brabançonne.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 81%|████████▏ | 7628/9360 [127:05:48<03:16, 8.83it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Brain That Wouldn't Die (webm version).webm\n", + "The Catalan Challenge.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7630/9360 [127:05:48<03:12, 8.99it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Chaos.flac\n", + "The College Scorecard.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7632/9360 [127:05:48<03:10, 9.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Crab Nebula NASA.ogv\n", + "The Decision to Move Forward- First Lady Michelle Obama Meets Paralympian Lt. Brad Snyder.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7634/9360 [127:05:48<03:09, 9.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Dickson Baseball Dictionary -LOC-.webm\n", + "The Djiboutian anthem.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7636/9360 [127:05:49<03:12, 8.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Dover Boys at Pimento University 1080p.webm\n", + "The Dover Boys at Pimento University.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7638/9360 [127:05:49<03:10, 9.06it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Dreidel Song - Singing Sergeants - United States Air Force Band.mp3\n", + "The Ducktators 190611 LTGC.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7640/9360 [127:05:49<03:10, 9.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Eagle Has Landed, The Flight of Apollo 11, 1969 (excerpt).webm\n", + "The Eagle Has Landed, The Flight of Apollo 11, 1969.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7642/9360 [127:05:49<03:07, 9.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Engineering of a Disposable Diaper.webm\n", + "The Engineering of the Drinking Bird.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7644/9360 [127:05:50<03:06, 9.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Faint Young Star Paradox - Solar Storms May Have Been Key to Life on Earth.webm\n", + "The Final Minutes of President Obama's Farewell Address- Yes, we can..webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7646/9360 [127:05:50<03:06, 9.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The First Family Takes in a Baseball Game in Havana, Cuba.webm\n", + "The First Lady Delivers Remarks at \"Hamilton at the White House\" Workshop.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7648/9360 [127:05:50<03:07, 9.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The First Lady Honors the 2016 School Counselors of the Year The White House.webm\n", + "The First Lady Hosts a Screening of \"Muppets Most Wanted\".webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7650/9360 [127:05:50<03:08, 9.09it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The First Lady Participates in a Conversation on Let Girls Learn.webm\n", + "The First Lady Presents the School Counselor of the Year Award.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7652/9360 [127:05:50<03:20, 8.53it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The First Lady Previews White House Holiday Decorations - 2010.webm\n", + "The First Lady Speaks at Naturalization Ceremony.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7654/9360 [127:05:51<03:18, 8.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The First Lady Speaks at USAG Vicenza Family Day.webm\n", + "The First Lady Speaks in London on the Let Girls Learn Initiative.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7656/9360 [127:05:51<03:29, 8.12it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The First Lady Speaks on Career and Technical Education (CTE).webm\n", + "The First Lady Speaks on the Film We Will Rise.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7658/9360 [127:05:51<03:28, 8.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The First Lady announces the “Better Make Room” Initiative.webm\n", + "The First Lady on the Fourth Anniversary of Let's Move!.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7660/9360 [127:05:51<03:24, 8.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The First Lady on the Importance of Studying Abroad.webm\n", + "The First Lady's First Tweet.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7662/9360 [127:05:52<03:17, 8.59it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The First Lady, Elmo, and Rosita Partner to Encourage Healthy Food Choices for Kids.webm\n", + "The Freedom Singers Perform at the White House- 8 of 11.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7664/9360 [127:05:52<03:33, 7.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Frozen North (1922).webm\n", + "The Future of Science is Open.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7666/9360 [127:05:52<04:00, 7.04it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The GLAM-Wiki Revolution.webm\n", + "The GOP Welcomes Candidates To Bemidji For A Grand Old Party.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7668/9360 [127:05:53<04:03, 6.95it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The General (1926).webm\n", + "The Genocide Word by Raphael Lemkin.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7670/9360 [127:05:53<04:03, 6.94it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Gingerbread White House.webm\n", + "The Girl with a Hatbox (1927).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7672/9360 [127:05:53<03:36, 7.79it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Gladiator Diet How Vegetarian Athletes Stack Up.webm\n", + "The Goldbrick.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7674/9360 [127:05:53<03:20, 8.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Great Train Robbery (1903) - yt.webm\n", + "The Greatest Gift in the Entire Universe.oga\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7676/9360 [127:05:53<03:12, 8.76it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Haaf Fishing Station at Fethaland, Shetland.webm\n", + "The Hidden Cost of War - Bernie Sanders.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7678/9360 [127:05:54<03:11, 8.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Hunchback of Notre Dame (1923).webm\n", + "The Impact Of Wikipedia.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7680/9360 [127:05:54<03:07, 8.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Impact of Wikipedia - Alejandro Linares García.webm\n", + "The Impact of Wikipedia - Andrea Zanni.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7682/9360 [127:05:54<03:06, 8.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Impact of Wikipedia - Benoit Rochon.webm\n", + "The Impact of Wikipedia - David Shankbone.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7684/9360 [127:05:54<03:08, 8.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Impact of Wikipedia - Ganesh Paudel.webm\n", + "The Impact of Wikipedia - Jimmy Wales.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7686/9360 [127:05:55<03:15, 8.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Impact of Wikipedia - Mei Jiun Kwek.webm\n", + "The Impact of Wikipedia - Mike Cline.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7688/9360 [127:05:55<03:07, 8.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Impact of Wikipedia - Q Miceli.webm\n", + "The Impact of Wikipedia - Sami Al-Mubarak and Mina Nagy Takla.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7690/9360 [127:05:55<03:04, 9.05it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Impact of Wikipedia - Srikeit Tadepalli and Noopur Raval.webm\n", + "The Impact of Wikipedia Adrianne Wadewitz.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7692/9360 [127:05:55<03:02, 9.16it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Impact of Wikipedia Dumisani Ndubane.webm\n", + "The Impact of Wikipedia Erlan Vega.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7694/9360 [127:05:55<03:02, 9.11it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Impact of Wikipedia Gereon Kalkuhl.webm\n", + "The Impact of Wikipedia Gideon Digby.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7696/9360 [127:05:56<03:06, 8.91it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Impact of Wikipedia Howard Morland.webm\n", + "The Impact of Wikipedia Peter Coti.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7698/9360 [127:05:56<03:03, 9.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Impact of Wikipedia Poongothai Balasubramanian.webm\n", + "The Impact of Wikipedia Ravan Jaafar Altaie.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7700/9360 [127:05:56<03:02, 9.07it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Importance of Education Reform.webm\n", + "The Inari Saami Wikipedia (Arctic Knot Conference 2021).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7702/9360 [127:05:56<03:00, 9.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Inauguration of the 45th President of the United States.webm\n", + "The Ingenious Design of the Aluminum Beverage Can.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7704/9360 [127:05:57<03:00, 9.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Joint Session of Congress.webm\n", + "The Jungle Book (1942).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7706/9360 [127:05:57<02:58, 9.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Kosher Kitchen.webm\n", + "The Linguistics of AAVE ( African-American Vernacular English ).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7708/9360 [127:05:57<02:58, 9.24it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Little Minister (1921).webm\n", + "The Lobster Pot - a shellfish company from Wales - 2016.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7710/9360 [127:05:57<02:57, 9.31it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Lone Ranger Peace Patrol (1958).webm\n", + "The Ludwig Wittgenstein Project - Introduzione.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7712/9360 [127:05:57<02:57, 9.30it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Magic Cloak of Oz (1914).webm\n", + "The Man with the Golden Arm (1955) .webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7714/9360 [127:05:58<02:57, 9.28it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Maple Leaf Forever.ogg\n", + "The March (1964 film).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7716/9360 [127:05:58<02:58, 9.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Memorial Stadium Earthquake Retrofit.webm\n", + "The Menorah for the White House Hanukkah Ceremony.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7718/9360 [127:05:58<02:58, 9.21it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Mercury 13 (As Told By U.S. Chief Technology Officer Megan Smith).ogg\n", + "The Million Ryo Pot (1935).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▏ | 7720/9360 [127:05:58<03:13, 8.46it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Most Dangerous Game (1932).webm\n", + "The National Anthem of the Republic of Korea.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 82%|████████▎ | 7722/9360 [127:05:59<03:34, 7.64it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The National Forest for Wales with Tilhill Forestry.webm\n", + "The Obamas' New Dog.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████▎ | 7724/9360 [127:05:59<03:12, 8.49it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Ocean - a driving force for Weather and Climate.ogv\n", + "The One-Year Crew returns on This Week @NASA – March 4, 2016.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████▎ | 7726/9360 [127:05:59<03:02, 8.93it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Patriotic Song.ogv\n", + "The People Who Own This Country Don't Want You to Vote - Bernie Sanders.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████▎ | 7728/9360 [127:05:59<03:04, 8.84it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Phantom of the Opera (1925).webm\n", + "The Planet Around Beta Pictoris Makes Waves.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████▎ | 7730/9360 [127:05:59<03:07, 8.71it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Pleasure of Kissing - School Of Life.webm\n", + "The Polar Vortex Explained in 2 Minutes.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████▎ | 7732/9360 [127:06:00<03:03, 8.87it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Power of Iceland.webm\n", + "The PrEP Project (All Episodes).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████▎ | 7734/9360 [127:06:00<03:01, 8.98it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The President Addresses the 70th United Nations General Assembly.webm\n", + "The President Announces a Historic Nuclear Deal with Iran.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████▎ | 7736/9360 [127:06:00<02:59, 9.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The President Awards the Medal of Honor to Corporal William \"Kyle\" Carpenter.webm\n", + "The President Celebrates the 2015 National Teacher of the Year.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████▎ | 7738/9360 [127:06:00<03:01, 8.92it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The President Delivers Remarks at Independence Day Celebration.webm\n", + "The President Delivers a Eulogy in Honor of Beau Biden.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████▎ | 7740/9360 [127:06:01<03:02, 8.89it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The President Gets Laughs at the White House Correspondents' Dinner.webm\n", + "The President Holds a Bilateral Meeting with the President of Indonesia.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████▎ | 7742/9360 [127:06:01<03:02, 8.86it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The President Holds a Bilateral Meeting with the President of Italy.webm\n", + "The President Holds a Bilateral Meeting with the Prime Minister of Australia.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████▎ | 7744/9360 [127:06:01<03:00, 8.97it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The President Holds a Press Conference in Brisbane.webm\n", + "The President Holds a Press Conference in Turkey.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████▎ | 7746/9360 [127:06:01<02:56, 9.13it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The President Holds his 2015 End-of-Year Press Conference.webm\n", + "The President Honors the 2015 College Football Playoff National Champion Ohio State Buckeyes.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████▎ | 7748/9360 [127:06:01<02:58, 9.01it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The President Honors the 2015 NFL Super Bowl Champions- The New England Patriots.webm\n", + "The President Honors the MLS Cup Champions.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████▎ | 7750/9360 [127:06:02<02:58, 9.03it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The President Hosts a Reception in Honor of LGBT Pride Month.webm\n", + "The President Kicks off the Official 2016 Easter Egg Roll.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████▎ | 7752/9360 [127:06:02<02:59, 8.96it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The President Marks Five Years of the ACA.webm\n", + "The President Meets with Embassy Staff in Cuba.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████▎ | 7754/9360 [127:06:02<02:56, 9.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The President Meets with His Royal Highness Prince Harry of the United Kingdom.webm\n", + "The President Meets with the King of Spain.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████▎ | 7756/9360 [127:06:02<03:02, 8.80it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The President Meets with the King of the Netherlands.webm\n", + "The President Meets with the President of Nigeria.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 84%|████████▍ | 7839/9360 [128:48:38<20:18:14, 48.06s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The lure of drink (1915).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 84%|████████▍ | 7876/9360 [129:10:35<3:23:32, 8.23s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tielingxi Railway Station Ticket Gate waiting hall 01.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 84%|████████▍ | 7877/9360 [129:12:08<13:52:34, 33.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tielingxi Railway Station Ticket Gate waiting hall 02.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 84%|████████▍ | 7880/9360 [129:12:24<6:09:32, 14.98s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Time-lapse Earth Flyover from NASA Astronaut in Space.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 85%|████████▍ | 7915/9360 [129:30:50<7:27:18, 18.57s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tram 1 timelapse -- Ring, Volkstheater - Paulanergasse.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 85%|████████▌ | 7978/9360 [130:05:38<4:36:20, 12.00s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tyndalls's bar breaker experiment.mpg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 85%|████████▌ | 7979/9360 [130:05:40<3:25:02, 8.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Type in Telugu on Telugu Wikimedia projects.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 85%|████████▌ | 7980/9360 [130:05:42<2:34:29, 6.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Type in Telugu on Telugu Wikipedia.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 86%|████████▋ | 8088/9360 [130:43:51<3:21:49, 9.52s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Using suggested edits module.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 87%|████████▋ | 8110/9360 [130:50:49<2:53:36, 8.33s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Van Allen Belts.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 87%|████████▋ | 8118/9360 [130:53:27<3:40:07, 10.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Vdubtestrgbcube4secs ifps12fr12 q10.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 88%|████████▊ | 8200/9360 [131:29:08<18:14:22, 56.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Visit of the Mengerbulb I Evolution 20200211 2880p50 color.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 88%|████████▊ | 8207/9360 [131:30:54<6:20:08, 19.78s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Visualisierung der Liste der Berge nach Dominanz Stand Oktober 2020.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 89%|████████▉ | 8331/9360 [131:57:38<4:05:52, 14.34s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPCleaner - Installation Win10.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 95%|█████████▍| 8876/9360 [134:45:15<1:14:49, 9.28s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WikiJournal PDF formatting.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 95%|█████████▌| 8935/9360 [135:20:19<1:15:55, 10.72s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Wikipassport - how to fold it.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 98%|█████████▊| 9128/9360 [136:46:17<49:27, 12.79s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Worth It Or Not- Fall Collection 4.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 98%|█████████▊| 9133/9360 [138:11:56<96:11:11, 1525.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Wunderwerk Hai-Gebiss.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 98%|█████████▊| 9134/9360 [167:02:12<2022:14:24, 32212.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Wynton Marsalis' 2013 UVM Commencement Speech.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 98%|█████████▊| 9136/9360 [167:03:23<983:22:33, 15804.26s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Wörlitz → Dessau Hbf 2016-09.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 98%|█████████▊| 9137/9360 [167:03:25<685:19:02, 11063.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Y-Chromosom und Wanderwege des Menschen.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 98%|█████████▊| 9138/9360 [167:03:26<477:35:24, 7744.70s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Y-Chromosom und der Stammbaum des Menschen.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|█████████▉| 9356/9360 [168:33:55<00:43, 11.00s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "航拍对比武汉火神山医院施工3天进度.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|██████████| 9360/9360 [168:34:26<00:00, 64.84s/it]\n" + ] + } + ], + "source": [ + "import pathlib\n", + "import subprocess\n", + "import os\n", + "from tqdm import tqdm\n", + "from datetime import timedelta\n", + "\n", + "\n", + "def download_blob(bucket_name, source_blob_name, destination_file_name):\n", + " \"\"\"Downloads a blob from the bucket.\"\"\"\n", + "\n", + " storage_client = storage.Client()\n", + " bucket = storage_client.bucket(bucket_name)\n", + " blob = bucket.blob(source_blob_name)\n", + " downloads_folder = pathlib.Path.cwd()\n", + " file = downloads_folder.joinpath(destination_file_name)\n", + "\n", + " blob.download_to_filename(file)\n", + "\n", + "def change_format(file_name):\n", + " subprocess.run(f'ffmpeg -vn -sn -i {file_name} temp.flac',shell=True)\n", + " \n", + "def split_with_last_dot(string):\n", + " for character in range(len(string)-1,0,-1):\n", + " if string[character]==\".\":\n", + " left = string[:character]\n", + " right = string[character+1:]\n", + " return [left,right]\n", + " \n", + "def upload_file_gcp(file_name, file_type): \n", + " # Initiate names\n", + " project_id = 'the-peoples-speech' # Your Project ID\n", + " bucket_name = 'wikimedia_commons' # Name of bucket\n", + " bucket_file = f'{file_type}/{file_name}' # Location of the file on Bucket\n", + " local_file = f'temp.flac' # Location of downloaded file on your PC\n", + "\n", + " # Set Credential\n", + " os.environ[\"GOOGLE_APPLICATION_CREDENTIALS\"] = \"the-peoples-speech-ee8163e65ace.json\"\n", + " client = storage.Client(project_id)\n", + " bucket = client.get_bucket(bucket_name)\n", + " blob = bucket.blob(bucket_file)\n", + " blob.upload_from_filename(local_file)\n", + " signed_url = blob.generate_signed_url(\n", + " version=\"v4\",\n", + " expiration=timedelta(seconds=60),\n", + " method=\"GET\")\n", + "\n", + "for file in tqdm(files_list):\n", + " file_name ,ext = split_with_last_dot(file.name)\n", + " try:\n", + " download_blob(\"wikimedia_commons\", file.name, f\"temp.{ext}\")\n", + " if ext != \"flac\":\n", + " change_format(f\"'temp.{ext}'\")\n", + " upload_file_gcp(f\"{file_name[11:]}.flac\", \"reformat\")\n", + " if ext != \"flac\":\n", + " os.remove(f'temp.{ext}')\n", + " os.remove(f'temp.flac')\n", + " f = open(\"reformat.txt\", \"a\")\n", + " f.write(f\"{file_name[11:]}.flac\\n\")\n", + " f.close()\n", + " except:\n", + " f = open(\"fail_reformat.txt\", \"a\")\n", + " f.write(f\"{file.name[11:]}.flac\\n\")\n", + " f.close()\n", + " print(file.name[11:])" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "5519cb54", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total no reformated: 1506\n" + ] + } + ], + "source": [ + "with open(r\"fail_reformat.txt\", 'r') as fp:\n", + " x = len(fp.readlines())\n", + " print('Total no reformated:', x) # 8" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "id": "9670c130", + "metadata": {}, + "outputs": [], + "source": [ + "file = files_list[1684]\n", + "file_name ,ext = split_with_last_dot(file.name)\n", + "download_blob(\"wikimedia_commons\", file.name, f\"temp.{ext}\")\n", + "if ext != \"flac\":\n", + " change_format(f\"'temp.{ext}'\")\n", + "upload_file_gcp(f\"{file_name[11:]}.flac\", \"reformat\")\n", + "if ext != \"flac\":\n", + " os.remove(f'temp.{ext}')\n", + "os.remove(f'temp.flac')\n", + "f = open(\"new_reformat.txt\", \"a\")\n", + "f.write(f\"{file_name[11:]}.flac\\n\")\n", + "f.close()\n", + "\n", + "# f = open(\"new_fail_reformat.txt\", \"a\")\n", + "# f.write(f\"{file.name[11:]}.flac\\n\")\n", + "# f.close()\n", + "# print(file.name[11:])" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "379e02c5", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 0%| | 1/1505 [02:03<51:31:27, 123.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 0%| | 2/1505 [02:09<22:37:11, 54.18s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 0%| | 3/1505 [02:15<13:30:43, 32.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(뉴스인스타) 180623 KBS '해피투게더3' 흥행 돌풍 대세녀 박경림, 제시 출근길 직캠.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 0%| | 4/1505 [02:18<8:44:00, 20.95s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(코보티비) '눈시울 붉힌' 서재덕의 시즌 첫 승 인터뷰.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 0%| | 5/1505 [03:10<13:19:49, 31.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 0%| | 6/1505 [03:47<14:00:42, 33.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 0%| | 7/1505 [04:22<14:08:29, 33.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%| | 8/1505 [04:37<11:38:38, 28.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%| | 9/1505 [04:45<9:00:50, 21.69s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%| | 10/1505 [04:56<7:44:48, 18.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%| | 11/1505 [05:05<6:24:05, 15.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%| | 12/1505 [05:09<5:01:48, 12.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%| | 13/1505 [05:13<3:58:34, 9.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%| | 14/1505 [06:07<9:35:42, 23.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "102-Road Bus, Fanhe 20190410 161336000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%| | 15/1505 [06:59<13:04:57, 31.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "102-Road Bus, Fanhe 20190411 162853000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%| | 16/1505 [07:49<15:21:27, 37.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "102-Road Bus, Fanhe 20190411 163348000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%| | 17/1505 [09:35<24:01:04, 58.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "102-Road Bus, Fanhe 20190505 154815 00.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%| | 18/1505 [11:23<30:10:40, 73.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "102-Road Bus, Fanhe 20190505 161633 00.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%|▏ | 19/1505 [11:41<23:16:39, 56.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "102-Road Bus, Fanhe 20190508 161443.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%|▏ | 20/1505 [13:31<29:51:59, 72.40s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "102-Road Bus, Fanhe 20190513 162643 00.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%|▏ | 21/1505 [15:21<34:32:36, 83.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "102-Road, Fanhe 20190506 162321 00.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 1%|▏ | 22/1505 [16:03<29:19:43, 71.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1927. Октябрь (Эйзенштейн).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 2%|▏ | 23/1505 [16:21<22:42:43, 55.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2 Weeks In Italy - A Cinematic Travel Film.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 2%|▏ | 24/1505 [16:31<17:07:46, 41.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2012-06 Dessau Hbf→Wörlitz.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 2%|▏ | 25/1505 [16:42<13:21:06, 32.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2012-06 Wörlitz→Dessau Hbf.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 2%|▏ | 26/1505 [16:45<9:47:18, 23.83s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2017-10-01 09-07-00 transterritoire-vtt-belfort.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 2%|▏ | 27/1505 [16:47<7:02:34, 17.15s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2019-03-03 GOES 16 Lee County Alabama Tornado.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 2%|▏ | 28/1505 [19:29<24:53:20, 60.66s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 2%|▏ | 29/1505 [20:13<22:46:18, 55.54s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "225-Road Bus, Shenyang 181855000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 2%|▏ | 30/1505 [20:21<16:55:43, 41.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190427 120922.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 2%|▏ | 31/1505 [21:15<18:30:51, 45.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190427 120947000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 2%|▏ | 32/1505 [21:22<13:46:40, 33.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190427 121416.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 2%|▏ | 33/1505 [21:26<10:10:00, 24.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190427 121849.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 2%|▏ | 34/1505 [22:19<13:35:09, 33.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190427 121906000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 2%|▏ | 35/1505 [23:15<16:19:39, 39.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190427 122232000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 2%|▏ | 36/1505 [24:04<17:30:28, 42.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190427 122908000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 2%|▏ | 37/1505 [24:59<18:58:38, 46.54s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190428 174510000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 3%|▎ | 38/1505 [25:56<20:08:18, 49.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190428 175425000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 3%|▎ | 39/1505 [26:53<21:05:45, 51.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "244-Road Bus, Shenyang 20190428 211655000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 3%|▎ | 40/1505 [26:57<15:11:43, 37.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "291st-remagen.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 3%|▎ | 41/1505 [29:55<32:20:31, 79.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 3%|▎ | 42/1505 [35:11<61:14:04, 150.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 3%|▎ | 43/1505 [36:27<52:00:41, 128.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 3%|▎ | 44/1505 [39:40<59:55:10, 147.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 3%|▎ | 45/1505 [43:57<73:09:56, 180.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 3%|▎ | 46/1505 [47:11<74:48:29, 184.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 3%|▎ | 47/1505 [49:31<69:20:16, 171.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 3%|▎ | 48/1505 [52:07<67:28:29, 166.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 3%|▎ | 49/1505 [55:09<69:13:37, 171.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 3%|▎ | 50/1505 [56:43<59:52:31, 148.15s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 3%|▎ | 51/1505 [59:35<62:41:14, 155.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 3%|▎ | 52/1505 [1:01:04<54:40:58, 135.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▎ | 53/1505 [1:05:51<72:57:47, 180.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▎ | 54/1505 [1:09:25<76:50:44, 190.66s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▎ | 55/1505 [1:11:05<65:55:00, 163.66s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▎ | 56/1505 [1:14:36<71:29:46, 177.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▍ | 57/1505 [1:17:49<73:17:12, 182.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▍ | 58/1505 [1:20:21<69:35:58, 173.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▍ | 59/1505 [1:23:14<69:37:08, 173.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▍ | 60/1505 [1:24:56<60:58:34, 151.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▍ | 61/1505 [1:25:20<45:33:48, 113.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4. Dimension einer Mandelbrot-Menge aus Quaternionen 20191213 5K.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▍ | 62/1505 [1:29:43<63:26:29, 158.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▍ | 63/1505 [1:31:16<55:32:06, 138.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▍ | 64/1505 [1:34:22<61:11:57, 152.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▍ | 65/1505 [1:39:50<82:14:01, 205.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▍ | 66/1505 [1:43:36<84:32:01, 211.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 4%|▍ | 67/1505 [1:45:05<69:47:11, 174.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 5%|▍ | 68/1505 [1:48:50<75:48:35, 189.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 5%|▍ | 69/1505 [1:50:51<67:27:52, 169.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 5%|▍ | 70/1505 [1:52:46<61:00:53, 153.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 5%|▍ | 71/1505 [1:54:25<54:25:46, 136.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 5%|▍ | 72/1505 [1:57:13<58:14:49, 146.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 5%|▍ | 73/1505 [2:01:53<74:07:52, 186.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 5%|▍ | 74/1505 [2:05:29<77:37:59, 195.30s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 5%|▍ | 75/1505 [2:08:54<78:40:27, 198.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 5%|▌ | 76/1505 [2:10:48<68:36:29, 172.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 5%|▌ | 77/1505 [2:13:45<69:04:56, 174.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 5%|▌ | 78/1505 [2:19:08<86:43:08, 218.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 5%|▌ | 79/1505 [2:21:42<78:54:33, 199.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 5%|▌ | 80/1505 [2:23:47<70:05:06, 177.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 5%|▌ | 81/1505 [2:27:20<74:16:08, 187.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 5%|▌ | 82/1505 [2:32:50<91:05:11, 230.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 6%|▌ | 83/1505 [2:34:07<72:51:12, 184.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 6%|▌ | 84/1505 [2:37:02<71:38:59, 181.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 6%|▌ | 85/1505 [2:39:51<70:11:29, 177.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 6%|▌ | 86/1505 [2:43:33<75:22:41, 191.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 6%|▌ | 87/1505 [2:45:44<68:11:25, 173.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 6%|▌ | 88/1505 [2:48:19<66:00:24, 167.70s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 6%|▌ | 89/1505 [2:51:55<71:35:57, 182.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 6%|▌ | 90/1505 [2:56:48<84:42:27, 215.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 6%|▌ | 91/1505 [2:59:58<81:33:23, 207.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 6%|▌ | 92/1505 [3:00:22<59:58:07, 152.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 6%|▌ | 93/1505 [3:00:35<43:24:27, 110.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 6%|▌ | 94/1505 [3:01:00<33:20:10, 85.05s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 6%|▋ | 95/1505 [3:01:30<26:47:36, 68.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 6%|▋ | 96/1505 [3:02:20<24:40:26, 63.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 6%|▋ | 97/1505 [3:02:53<21:08:13, 54.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 7%|▋ | 98/1505 [3:03:18<17:39:18, 45.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 7%|▋ | 99/1505 [3:03:39<14:50:26, 38.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 7%|▋ | 100/1505 [3:05:17<21:51:02, 55.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 7%|▋ | 101/1505 [3:08:22<36:55:26, 94.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 7%|▋ | 102/1505 [3:13:05<58:56:46, 151.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 7%|▋ | 103/1505 [3:16:34<65:36:59, 168.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 7%|▋ | 104/1505 [3:22:21<86:27:36, 222.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 7%|▋ | 105/1505 [3:25:40<83:39:37, 215.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 7%|▋ | 106/1505 [3:30:52<94:55:48, 244.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 7%|▋ | 107/1505 [3:36:48<107:51:45, 277.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 7%|▋ | 108/1505 [3:40:00<97:46:16, 251.95s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 7%|▋ | 109/1505 [3:43:58<96:08:54, 247.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 7%|▋ | 110/1505 [3:47:31<91:57:19, 237.30s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 7%|▋ | 111/1505 [3:51:29<92:00:56, 237.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 7%|▋ | 112/1505 [3:54:05<82:29:22, 213.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 8%|▊ | 113/1505 [3:57:48<83:28:28, 215.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 8%|▊ | 114/1505 [4:01:48<86:18:02, 223.35s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 8%|▊ | 115/1505 [4:06:05<90:02:19, 233.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 8%|▊ | 116/1505 [4:09:31<86:54:49, 225.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 8%|▊ | 117/1505 [4:12:40<82:37:43, 214.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 8%|▊ | 118/1505 [4:15:52<79:57:23, 207.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 8%|▊ | 119/1505 [4:19:39<82:10:51, 213.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 8%|▊ | 120/1505 [4:23:19<82:53:05, 215.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 8%|▊ | 121/1505 [4:26:53<82:36:26, 214.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 8%|▊ | 122/1505 [4:30:03<79:45:02, 207.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 8%|▊ | 123/1505 [4:34:10<84:09:33, 219.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 8%|▊ | 124/1505 [4:38:31<88:57:03, 231.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 8%|▊ | 125/1505 [4:42:09<87:19:45, 227.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 8%|▊ | 126/1505 [4:46:33<91:24:54, 238.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 8%|▊ | 127/1505 [4:50:13<89:09:03, 232.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 9%|▊ | 128/1505 [4:53:24<84:18:24, 220.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 9%|▊ | 129/1505 [4:56:27<79:57:51, 209.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 9%|▊ | 130/1505 [4:58:56<72:57:30, 191.02s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 9%|▊ | 131/1505 [5:00:04<58:52:39, 154.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 9%|▉ | 132/1505 [5:04:18<70:10:39, 184.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 9%|▉ | 133/1505 [5:05:56<60:19:53, 158.30s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-20-09- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 9%|▉ | 134/1505 [5:08:05<56:53:31, 149.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-20-15- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 9%|▉ | 135/1505 [5:10:05<53:34:12, 140.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7-20-16- White House Press Briefing.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 9%|▉ | 136/1505 [5:12:03<50:56:05, 133.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 9%|▉ | 137/1505 [5:15:18<57:52:04, 152.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 9%|▉ | 138/1505 [5:19:32<69:22:03, 182.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 9%|▉ | 139/1505 [5:22:11<66:39:28, 175.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 9%|▉ | 140/1505 [5:25:09<66:53:42, 176.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 9%|▉ | 141/1505 [5:28:44<71:13:03, 187.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 9%|▉ | 142/1505 [5:31:42<70:01:44, 184.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 10%|▉ | 143/1505 [5:39:01<98:43:10, 260.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 10%|▉ | 144/1505 [5:42:19<91:32:12, 242.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 10%|▉ | 145/1505 [5:47:26<98:52:11, 261.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 10%|▉ | 146/1505 [5:49:02<80:00:17, 211.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 10%|▉ | 147/1505 [5:53:36<87:00:55, 230.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 10%|▉ | 148/1505 [5:56:43<81:59:04, 217.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 10%|▉ | 149/1505 [6:00:07<80:24:33, 213.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 10%|▉ | 150/1505 [6:03:21<78:10:22, 207.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 10%|█ | 151/1505 [6:05:29<69:07:31, 183.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 10%|█ | 152/1505 [6:06:57<58:16:09, 155.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 10%|█ | 153/1505 [6:09:47<59:51:46, 159.40s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 10%|█ | 154/1505 [6:12:53<62:52:16, 167.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 10%|█ | 155/1505 [6:14:10<52:36:01, 140.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 10%|█ | 156/1505 [6:17:03<56:16:58, 150.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 10%|█ | 157/1505 [6:19:30<55:49:35, 149.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 10%|█ | 158/1505 [6:23:50<68:13:53, 182.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 11%|█ | 159/1505 [6:27:05<69:38:47, 186.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 11%|█ | 160/1505 [6:31:00<74:57:34, 200.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 11%|█ | 161/1505 [6:33:27<68:58:46, 184.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 11%|█ | 162/1505 [6:37:23<74:36:54, 200.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 11%|█ | 163/1505 [6:39:08<63:55:40, 171.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 11%|█ | 164/1505 [6:41:38<61:28:50, 165.05s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 11%|█ | 165/1505 [6:44:46<63:57:51, 171.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 11%|█ | 166/1505 [6:47:28<62:55:38, 169.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 11%|█ | 167/1505 [6:53:41<85:33:04, 230.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 11%|█ | 168/1505 [6:55:55<74:44:14, 201.24s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 11%|█ | 169/1505 [7:00:24<82:14:40, 221.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 11%|█▏ | 170/1505 [7:02:54<74:14:41, 200.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 11%|█▏ | 171/1505 [7:05:57<72:15:06, 194.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 11%|█▏ | 172/1505 [7:09:03<71:12:18, 192.30s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 11%|█▏ | 173/1505 [7:12:55<75:36:31, 204.35s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 174/1505 [7:17:57<86:20:47, 233.54s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 175/1505 [7:20:40<78:26:03, 212.30s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 176/1505 [7:23:44<75:15:02, 203.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 177/1505 [7:28:03<81:21:15, 220.54s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 178/1505 [7:31:22<78:48:55, 213.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 179/1505 [7:35:13<80:40:10, 219.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 180/1505 [7:36:04<62:06:30, 168.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 181/1505 [7:39:07<63:34:48, 172.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 182/1505 [7:40:11<51:31:40, 140.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 183/1505 [7:42:50<53:33:33, 145.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 184/1505 [7:45:43<56:33:07, 154.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 185/1505 [7:49:08<62:07:07, 169.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 186/1505 [7:50:39<53:26:44, 145.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 187/1505 [7:52:16<48:04:40, 131.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 12%|█▏ | 188/1505 [7:56:24<60:48:15, 166.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 189/1505 [7:57:56<52:33:55, 143.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 190/1505 [7:58:41<41:47:30, 114.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 191/1505 [8:01:40<48:49:25, 133.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 192/1505 [8:04:28<52:31:12, 144.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 193/1505 [8:06:09<47:43:15, 130.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 194/1505 [8:07:59<45:28:00, 124.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 195/1505 [8:11:20<53:43:22, 147.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 196/1505 [8:13:26<51:20:53, 141.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 197/1505 [8:14:53<45:23:59, 124.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 198/1505 [8:17:09<46:28:22, 128.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 199/1505 [8:18:31<41:29:09, 114.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 200/1505 [8:21:20<47:26:36, 130.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 201/1505 [8:23:31<47:20:20, 130.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 202/1505 [8:28:00<62:19:01, 172.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 13%|█▎ | 203/1505 [8:30:31<60:02:00, 165.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▎ | 204/1505 [8:33:49<63:24:25, 175.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▎ | 205/1505 [8:36:32<62:03:01, 171.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▎ | 206/1505 [8:38:23<55:21:41, 153.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▍ | 207/1505 [8:41:35<59:28:47, 164.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▍ | 208/1505 [8:45:05<64:21:52, 178.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▍ | 209/1505 [8:49:40<74:40:17, 207.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▍ | 210/1505 [8:53:08<74:40:49, 207.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▍ | 211/1505 [8:56:07<71:31:15, 198.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▍ | 212/1505 [8:57:28<58:47:51, 163.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▍ | 213/1505 [9:00:19<59:32:18, 165.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▍ | 214/1505 [9:03:05<59:32:56, 166.05s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▍ | 215/1505 [9:07:45<71:42:36, 200.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▍ | 216/1505 [9:11:12<72:23:51, 202.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▍ | 217/1505 [9:14:11<69:51:14, 195.24s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 14%|█▍ | 218/1505 [9:17:40<71:16:17, 199.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▍ | 219/1505 [9:20:12<66:11:21, 185.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▍ | 220/1505 [9:21:30<54:36:35, 152.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▍ | 221/1505 [9:23:55<53:40:53, 150.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▍ | 222/1505 [9:25:11<45:38:58, 128.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▍ | 223/1505 [9:29:54<62:13:50, 174.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▍ | 224/1505 [9:32:10<58:03:41, 163.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▍ | 225/1505 [9:34:46<57:09:27, 160.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 226/1505 [9:38:39<64:50:56, 182.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 227/1505 [9:41:12<61:38:02, 173.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 228/1505 [9:42:41<52:35:49, 148.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 229/1505 [9:45:20<53:43:30, 151.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 230/1505 [9:50:14<68:50:33, 194.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 231/1505 [9:51:50<58:18:21, 164.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 232/1505 [9:54:36<58:24:53, 165.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 15%|█▌ | 233/1505 [9:57:49<61:18:35, 173.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 234/1505 [10:02:59<75:43:56, 214.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 235/1505 [10:05:36<69:30:18, 197.02s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 236/1505 [10:09:47<75:12:28, 213.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 237/1505 [10:12:16<68:20:46, 194.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 238/1505 [10:14:44<63:29:18, 180.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 239/1505 [10:17:21<60:52:55, 173.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 240/1505 [10:20:09<60:22:43, 171.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 241/1505 [10:22:48<58:52:43, 167.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 242/1505 [10:22:53<41:44:18, 118.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 243/1505 [10:23:41<34:17:56, 97.84s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▌ | 244/1505 [10:26:14<40:00:43, 114.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 245/1505 [10:27:39<36:54:49, 105.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 246/1505 [10:29:03<34:40:58, 99.17s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 247/1505 [10:30:34<33:42:51, 96.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 16%|█▋ | 248/1505 [10:32:41<36:59:09, 105.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 249/1505 [10:35:33<43:50:28, 125.66s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 250/1505 [10:40:24<61:03:31, 175.15s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 251/1505 [10:42:08<53:35:36, 153.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 252/1505 [10:42:18<38:29:36, 110.60s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 253/1505 [10:42:22<27:23:06, 78.74s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 254/1505 [10:42:27<19:40:29, 56.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 255/1505 [10:42:33<14:20:50, 41.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 256/1505 [10:42:38<10:35:26, 30.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 257/1505 [10:42:43<7:58:15, 22.99s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 258/1505 [10:42:49<6:11:47, 17.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 259/1505 [10:42:55<4:52:36, 14.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 260/1505 [10:43:01<4:04:09, 11.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 261/1505 [10:47:23<29:59:24, 86.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 262/1505 [10:51:37<47:15:53, 136.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 17%|█▋ | 263/1505 [10:54:25<50:29:45, 146.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 264/1505 [10:58:13<58:55:15, 170.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 265/1505 [11:01:18<60:17:27, 175.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 266/1505 [11:04:41<63:07:58, 183.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 267/1505 [11:08:22<66:59:12, 194.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 268/1505 [11:13:18<77:19:47, 225.05s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 269/1505 [11:14:53<63:55:29, 186.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 270/1505 [11:19:27<72:51:30, 212.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 271/1505 [11:22:48<71:35:08, 208.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 272/1505 [11:25:04<64:04:09, 187.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 273/1505 [11:29:12<70:15:44, 205.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 274/1505 [11:31:24<62:44:06, 183.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 275/1505 [11:34:02<60:04:42, 175.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 276/1505 [11:37:20<62:19:16, 182.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 277/1505 [11:41:38<69:58:24, 205.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 18%|█▊ | 278/1505 [11:44:48<68:20:24, 200.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 279/1505 [11:48:43<71:51:28, 211.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 280/1505 [11:51:07<64:54:30, 190.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 281/1505 [11:54:52<68:20:08, 200.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▊ | 282/1505 [11:57:01<60:55:17, 179.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 283/1505 [12:00:17<62:37:05, 184.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 284/1505 [12:03:08<61:12:33, 180.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 285/1505 [12:05:39<58:06:16, 171.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 286/1505 [12:08:08<55:47:06, 164.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 287/1505 [12:11:42<60:44:03, 179.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 288/1505 [12:14:44<61:00:15, 180.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 289/1505 [12:17:51<61:33:21, 182.24s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 290/1505 [12:20:19<58:03:52, 172.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 291/1505 [12:22:57<56:33:58, 167.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 292/1505 [12:24:01<46:06:07, 136.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 19%|█▉ | 293/1505 [12:25:11<39:15:25, 116.60s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 294/1505 [12:28:36<48:11:17, 143.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 295/1505 [12:31:43<52:32:26, 156.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 296/1505 [12:36:09<63:34:32, 189.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 297/1505 [12:37:47<54:19:35, 161.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 298/1505 [12:39:45<49:51:28, 148.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 299/1505 [12:43:02<54:41:26, 163.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|█▉ | 300/1505 [12:45:18<51:49:22, 154.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 301/1505 [12:48:02<52:46:17, 157.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 302/1505 [12:49:16<44:20:49, 132.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 303/1505 [12:53:11<54:30:52, 163.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 304/1505 [12:55:35<52:31:50, 157.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 305/1505 [12:59:22<59:28:26, 178.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 306/1505 [12:59:24<41:46:54, 125.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 307/1505 [12:59:28<29:33:51, 88.84s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 20%|██ | 308/1505 [12:59:30<20:56:13, 62.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 309/1505 [12:59:47<16:16:41, 49.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 310/1505 [12:59:59<12:39:38, 38.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 311/1505 [13:00:26<11:30:02, 34.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 312/1505 [13:00:40<9:25:25, 28.44s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 313/1505 [13:00:55<8:04:11, 24.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 314/1505 [13:01:11<7:12:58, 21.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 315/1505 [13:01:16<5:32:51, 16.78s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 316/1505 [13:05:55<31:32:36, 95.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 317/1505 [13:06:29<25:26:19, 77.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 318/1505 [13:06:48<19:41:01, 59.70s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██ | 319/1505 [13:07:20<16:56:35, 51.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 320/1505 [13:07:26<12:26:31, 37.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 321/1505 [13:07:35<9:36:13, 29.20s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 322/1505 [13:07:44<7:33:22, 22.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 21%|██▏ | 323/1505 [13:07:54<6:17:50, 19.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 324/1505 [13:08:03<5:17:04, 16.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 325/1505 [13:08:11<4:28:12, 13.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 326/1505 [13:08:21<4:07:23, 12.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 327/1505 [13:08:31<3:54:05, 11.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 328/1505 [13:08:43<3:52:38, 11.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 329/1505 [13:08:56<3:55:54, 12.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 330/1505 [13:09:03<3:26:28, 10.54s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 331/1505 [13:11:37<17:31:02, 53.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 332/1505 [13:11:52<13:40:08, 41.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Sixth Part of the World (1926).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 333/1505 [13:16:50<38:41:57, 118.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 334/1505 [13:17:06<28:40:26, 88.15s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 335/1505 [13:17:18<21:12:27, 65.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 336/1505 [13:17:32<16:08:33, 49.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 337/1505 [13:18:46<18:34:19, 57.24s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 22%|██▏ | 338/1505 [13:19:09<15:12:41, 46.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 339/1505 [13:21:21<23:24:18, 72.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 340/1505 [13:22:33<23:21:00, 72.15s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 341/1505 [13:23:02<19:13:14, 59.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 342/1505 [13:23:11<14:14:31, 44.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A Trap for Santa Claus (1909) .webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 343/1505 [13:23:40<12:50:35, 39.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 344/1505 [13:23:48<9:40:36, 30.01s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 345/1505 [13:24:02<8:07:26, 25.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 346/1505 [13:24:31<8:31:23, 26.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A glimpse of Kaiyuan 2019-05-01 01.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 347/1505 [13:25:12<9:55:11, 30.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A glimpse of Kaiyuan 2019-05-01 105200000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 348/1505 [13:25:14<7:06:15, 22.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 349/1505 [13:25:17<5:18:15, 16.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 350/1505 [13:25:29<4:53:10, 15.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 351/1505 [13:25:33<3:43:44, 11.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 352/1505 [13:25:37<3:02:47, 9.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A train arrives at Tielingxi Railway Station.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 23%|██▎ | 353/1505 [13:27:15<11:31:54, 36.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 354/1505 [13:27:26<9:04:48, 28.40s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 355/1505 [13:27:46<8:18:17, 26.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 356/1505 [13:27:48<5:58:32, 18.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A-closer-look-into-the-α-helix-basin-srep38341-s5.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▎ | 357/1505 [13:28:16<6:51:54, 21.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 358/1505 [13:28:22<5:23:00, 16.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 359/1505 [13:28:30<4:31:10, 14.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 360/1505 [13:28:34<3:31:52, 11.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 361/1505 [13:28:51<4:05:56, 12.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 362/1505 [13:29:07<4:25:52, 13.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 363/1505 [13:29:16<3:57:04, 12.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 364/1505 [13:29:29<3:56:58, 12.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 365/1505 [13:29:39<3:44:24, 11.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 366/1505 [13:29:47<3:20:15, 10.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 367/1505 [13:29:50<2:36:42, 8.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 24%|██▍ | 368/1505 [13:30:07<3:28:45, 11.02s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 25%|██▍ | 369/1505 [13:30:17<3:24:36, 10.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 25%|██▍ | 370/1505 [13:30:19<2:33:32, 8.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 25%|██▍ | 371/1505 [13:30:26<2:22:48, 7.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 25%|██▍ | 372/1505 [13:30:53<4:15:50, 13.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 25%|██▍ | 373/1505 [13:31:00<3:39:19, 11.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 25%|██▍ | 374/1505 [13:31:07<3:13:43, 10.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 25%|██▍ | 375/1505 [13:31:10<2:29:29, 7.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 25%|██▍ | 376/1505 [13:31:12<1:59:13, 6.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 25%|██▌ | 377/1505 [13:32:08<6:37:26, 21.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 25%|██▌ | 378/1505 [13:32:32<6:54:32, 22.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 25%|██▌ | 379/1505 [13:32:35<5:05:53, 16.30s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 25%|██▌ | 380/1505 [13:32:38<3:47:24, 12.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 25%|██▌ | 381/1505 [13:32:51<3:56:42, 12.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 25%|██▌ | 382/1505 [13:33:00<3:31:58, 11.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 25%|██▌ | 383/1505 [13:33:20<4:23:17, 14.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 26%|██▌ | 384/1505 [13:33:41<5:03:36, 16.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 26%|██▌ | 385/1505 [13:33:49<4:14:31, 13.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 26%|██▌ | 386/1505 [13:33:51<3:11:43, 10.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 26%|██▌ | 387/1505 [13:34:12<4:06:28, 13.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 26%|██▌ | 388/1505 [13:34:16<3:16:49, 10.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 26%|██▌ | 389/1505 [13:34:22<2:49:16, 9.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 26%|██▌ | 390/1505 [13:34:24<2:12:41, 7.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 26%|██▌ | 391/1505 [13:35:17<6:27:48, 20.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 26%|██▌ | 392/1505 [13:35:19<4:43:24, 15.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 26%|██▌ | 393/1505 [13:35:31<4:22:53, 14.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 26%|██▌ | 394/1505 [13:35:37<3:34:50, 11.60s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 26%|██▌ | 395/1505 [13:35:48<3:32:55, 11.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 26%|██▋ | 396/1505 [13:36:38<7:07:48, 23.15s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 26%|██▋ | 397/1505 [13:37:12<8:06:15, 26.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 26%|██▋ | 398/1505 [13:37:27<7:01:45, 22.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 27%|██▋ | 399/1505 [13:37:38<5:58:55, 19.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 27%|██▋ | 400/1505 [13:37:48<5:03:35, 16.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 27%|██▋ | 401/1505 [13:37:58<4:30:34, 14.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 27%|██▋ | 402/1505 [13:38:08<4:01:34, 13.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 27%|██▋ | 403/1505 [13:38:15<3:26:58, 11.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 27%|██▋ | 404/1505 [13:38:43<4:59:06, 16.30s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 27%|██▋ | 405/1505 [13:38:52<4:17:38, 14.05s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 27%|██▋ | 406/1505 [13:38:54<3:15:15, 10.66s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 27%|██▋ | 407/1505 [13:40:59<13:40:46, 44.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 27%|██▋ | 408/1505 [13:41:28<12:12:50, 40.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 27%|██▋ | 409/1505 [13:42:01<11:31:56, 37.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 27%|██▋ | 410/1505 [13:42:48<12:22:35, 40.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 27%|██▋ | 411/1505 [13:43:05<10:13:36, 33.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 27%|██▋ | 412/1505 [13:43:13<7:53:38, 26.00s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 27%|██▋ | 413/1505 [13:43:15<5:41:04, 18.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Action of soap on oil.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 28%|██▊ | 414/1505 [13:43:22<4:34:18, 15.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 28%|██▊ | 415/1505 [13:43:39<4:45:15, 15.70s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 28%|██▊ | 416/1505 [13:44:21<7:11:40, 23.78s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 28%|██▊ | 417/1505 [13:44:50<7:39:28, 25.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 28%|██▊ | 418/1505 [13:45:14<7:27:33, 24.70s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 28%|██▊ | 419/1505 [13:45:39<7:30:40, 24.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 28%|██▊ | 420/1505 [13:45:55<6:44:16, 22.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 28%|██▊ | 421/1505 [13:46:00<5:06:38, 16.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 28%|██▊ | 422/1505 [13:46:06<4:06:31, 13.66s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 28%|██▊ | 423/1505 [13:46:10<3:14:55, 10.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 28%|██▊ | 424/1505 [13:46:13<2:31:12, 8.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 28%|██▊ | 425/1505 [13:48:20<13:11:20, 43.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 28%|██▊ | 426/1505 [13:48:31<10:14:58, 34.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 28%|██▊ | 427/1505 [13:48:39<7:55:26, 26.46s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 28%|██▊ | 428/1505 [13:49:12<8:29:25, 28.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 29%|██▊ | 429/1505 [13:49:25<7:06:12, 23.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 29%|██▊ | 430/1505 [13:50:00<8:06:59, 27.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 29%|██▊ | 431/1505 [13:52:21<18:13:48, 61.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 29%|██▊ | 432/1505 [13:52:24<13:00:50, 43.66s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 29%|██▉ | 433/1505 [13:53:05<12:46:50, 42.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 29%|██▉ | 434/1505 [13:53:31<11:14:58, 37.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 29%|██▉ | 435/1505 [13:53:39<8:38:01, 29.05s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 29%|██▉ | 436/1505 [13:53:52<7:09:41, 24.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 29%|██▉ | 437/1505 [13:53:58<5:34:58, 18.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 29%|██▉ | 438/1505 [13:54:25<6:14:14, 21.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 29%|██▉ | 439/1505 [13:55:10<8:25:21, 28.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 29%|██▉ | 440/1505 [13:55:18<6:32:08, 22.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 29%|██▉ | 441/1505 [13:55:28<5:29:26, 18.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 29%|██▉ | 442/1505 [13:55:37<4:37:22, 15.66s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 29%|██▉ | 443/1505 [13:55:59<5:12:45, 17.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 30%|██▉ | 444/1505 [13:56:08<4:23:55, 14.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 30%|██▉ | 445/1505 [13:56:16<3:47:32, 12.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 30%|██▉ | 446/1505 [13:56:25<3:26:45, 11.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 30%|██▉ | 447/1505 [13:56:38<3:33:45, 12.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 30%|██▉ | 448/1505 [13:56:41<2:48:14, 9.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 30%|██▉ | 449/1505 [13:57:40<7:08:54, 24.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 30%|██▉ | 450/1505 [13:57:43<5:16:13, 17.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 30%|██▉ | 451/1505 [13:57:45<3:50:39, 13.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 30%|███ | 452/1505 [13:57:47<2:50:02, 9.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 30%|███ | 453/1505 [13:57:48<2:07:02, 7.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Akita-inu playing - Tokyo area - April 2017.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 30%|███ | 454/1505 [13:57:54<1:59:00, 6.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 30%|███ | 455/1505 [13:58:41<5:29:10, 18.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 30%|███ | 456/1505 [13:59:01<5:37:18, 19.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 30%|███ | 457/1505 [13:59:06<4:17:31, 14.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 30%|███ | 458/1505 [13:59:11<3:31:06, 12.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 30%|███ | 459/1505 [13:59:21<3:17:33, 11.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 31%|███ | 460/1505 [13:59:23<2:28:08, 8.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 31%|███ | 461/1505 [13:59:40<3:12:04, 11.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 31%|███ | 462/1505 [13:59:54<3:29:03, 12.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 31%|███ | 463/1505 [14:00:33<5:47:39, 20.02s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 31%|███ | 464/1505 [14:00:35<4:16:13, 14.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 31%|███ | 465/1505 [14:00:43<3:41:15, 12.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 31%|███ | 466/1505 [14:00:48<2:56:19, 10.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 31%|███ | 467/1505 [14:00:53<2:32:24, 8.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 31%|███ | 468/1505 [14:00:58<2:09:14, 7.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 31%|███ | 469/1505 [14:01:01<1:48:51, 6.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 31%|███ | 470/1505 [14:01:04<1:31:04, 5.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 31%|███▏ | 471/1505 [14:01:08<1:24:54, 4.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 31%|███▏ | 472/1505 [14:01:11<1:15:42, 4.40s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 31%|███▏ | 473/1505 [14:01:16<1:15:09, 4.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 31%|███▏ | 474/1505 [14:01:19<1:11:24, 4.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 32%|███▏ | 475/1505 [14:01:23<1:08:34, 3.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 32%|███▏ | 476/1505 [14:01:28<1:12:30, 4.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 32%|███▏ | 477/1505 [14:01:32<1:12:58, 4.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 32%|███▏ | 478/1505 [14:01:40<1:30:56, 5.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 32%|███▏ | 479/1505 [14:01:45<1:29:24, 5.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 32%|███▏ | 480/1505 [14:01:49<1:21:54, 4.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 32%|███▏ | 481/1505 [14:01:53<1:19:21, 4.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 32%|███▏ | 482/1505 [14:01:58<1:20:48, 4.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 32%|███▏ | 483/1505 [14:02:02<1:17:56, 4.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 32%|███▏ | 484/1505 [14:02:08<1:25:39, 5.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 32%|███▏ | 485/1505 [14:02:12<1:20:50, 4.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 32%|███▏ | 486/1505 [14:02:19<1:30:38, 5.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 32%|███▏ | 487/1505 [14:02:23<1:26:23, 5.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 32%|███▏ | 488/1505 [14:02:26<1:14:12, 4.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 32%|███▏ | 489/1505 [14:02:30<1:09:15, 4.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 33%|███▎ | 490/1505 [14:02:33<1:05:51, 3.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 33%|███▎ | 491/1505 [14:02:38<1:10:03, 4.15s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 33%|███▎ | 492/1505 [14:02:43<1:13:50, 4.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 33%|███▎ | 493/1505 [14:02:45<1:04:22, 3.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 33%|███▎ | 494/1505 [14:02:49<1:05:20, 3.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 33%|███▎ | 495/1505 [14:02:55<1:13:41, 4.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 33%|███▎ | 496/1505 [14:02:58<1:09:32, 4.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 33%|███▎ | 497/1505 [14:03:01<1:00:49, 3.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 33%|███▎ | 498/1505 [14:03:08<1:19:56, 4.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 33%|███▎ | 499/1505 [14:03:17<1:37:54, 5.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 33%|███▎ | 500/1505 [14:03:21<1:30:38, 5.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 33%|███▎ | 501/1505 [14:03:31<1:56:06, 6.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Als ich tot war (1916).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 33%|███▎ | 502/1505 [14:04:16<5:06:09, 18.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 33%|███▎ | 503/1505 [14:04:19<3:45:07, 13.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 33%|███▎ | 504/1505 [14:04:25<3:09:18, 11.35s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 34%|███▎ | 505/1505 [14:04:27<2:21:31, 8.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 34%|███▎ | 506/1505 [14:04:30<1:52:59, 6.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 34%|███▎ | 507/1505 [14:04:33<1:34:42, 5.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 34%|███▍ | 508/1505 [14:04:36<1:21:23, 4.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 34%|███▍ | 509/1505 [14:04:56<2:37:40, 9.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 34%|███▍ | 510/1505 [14:05:00<2:08:42, 7.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 34%|███▍ | 511/1505 [14:05:09<2:18:46, 8.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 34%|███▍ | 512/1505 [14:05:20<2:29:51, 9.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 34%|███▍ | 513/1505 [14:05:34<2:51:21, 10.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 34%|███▍ | 514/1505 [14:05:56<3:49:34, 13.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 34%|███▍ | 515/1505 [14:06:00<3:01:02, 10.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 34%|███▍ | 516/1505 [14:06:05<2:34:20, 9.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 34%|███▍ | 517/1505 [14:06:31<3:54:22, 14.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 34%|███▍ | 518/1505 [14:06:51<4:22:18, 15.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 34%|███▍ | 519/1505 [14:07:01<3:51:40, 14.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 35%|███▍ | 520/1505 [14:07:07<3:10:45, 11.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 35%|███▍ | 521/1505 [14:07:36<4:39:17, 17.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 35%|███▍ | 522/1505 [14:07:41<3:36:57, 13.24s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 35%|███▍ | 523/1505 [14:07:54<3:35:24, 13.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "An Eastern Westerner (1920).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 35%|███▍ | 524/1505 [14:08:13<4:04:12, 14.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 35%|███▍ | 525/1505 [14:08:50<5:53:37, 21.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 35%|███▍ | 526/1505 [14:09:36<7:53:02, 28.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 35%|███▌ | 527/1505 [14:09:44<6:11:20, 22.78s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 35%|███▌ | 528/1505 [14:09:53<5:00:35, 18.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 35%|███▌ | 529/1505 [14:09:55<3:42:42, 13.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 35%|███▌ | 530/1505 [14:09:58<2:48:31, 10.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 35%|███▌ | 531/1505 [14:10:01<2:13:22, 8.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 35%|███▌ | 532/1505 [14:10:04<1:45:12, 6.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 35%|███▌ | 533/1505 [14:10:08<1:35:57, 5.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 35%|███▌ | 534/1505 [14:10:11<1:22:38, 5.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 36%|███▌ | 535/1505 [14:10:15<1:14:46, 4.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 36%|███▌ | 536/1505 [14:10:18<1:05:39, 4.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 36%|███▌ | 537/1505 [14:10:21<59:30, 3.69s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 36%|███▌ | 538/1505 [14:10:23<55:10, 3.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 36%|███▌ | 539/1505 [14:10:26<51:45, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 36%|███▌ | 540/1505 [14:10:30<53:36, 3.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 36%|███▌ | 541/1505 [14:10:32<50:27, 3.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 36%|███▌ | 542/1505 [14:10:36<54:51, 3.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 36%|███▌ | 543/1505 [14:10:46<1:25:50, 5.35s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 36%|███▌ | 544/1505 [14:12:47<10:42:19, 40.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 36%|███▌ | 545/1505 [14:14:15<14:31:03, 54.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 36%|███▋ | 546/1505 [14:14:17<10:18:35, 38.70s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 36%|███▋ | 547/1505 [14:14:21<7:32:26, 28.34s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 36%|███▋ | 548/1505 [14:14:25<5:34:29, 20.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 36%|███▋ | 549/1505 [14:14:30<4:14:38, 15.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 37%|███▋ | 550/1505 [14:14:33<3:11:59, 12.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 37%|███▋ | 551/1505 [14:14:37<2:35:50, 9.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 37%|███▋ | 552/1505 [14:14:42<2:10:58, 8.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 37%|███▋ | 553/1505 [14:14:44<1:44:40, 6.60s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 37%|███▋ | 554/1505 [14:14:50<1:37:52, 6.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 37%|███▋ | 555/1505 [14:14:53<1:25:22, 5.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 37%|███▋ | 556/1505 [14:14:59<1:26:31, 5.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 37%|███▋ | 557/1505 [14:15:03<1:18:05, 4.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 37%|███▋ | 558/1505 [14:15:06<1:13:02, 4.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 37%|███▋ | 559/1505 [14:15:11<1:14:01, 4.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 37%|███▋ | 560/1505 [14:15:18<1:24:32, 5.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 37%|███▋ | 561/1505 [14:15:22<1:18:55, 5.02s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 37%|███▋ | 562/1505 [14:15:55<3:30:22, 13.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 37%|███▋ | 563/1505 [14:16:25<4:45:27, 18.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 37%|███▋ | 564/1505 [14:16:34<4:03:17, 15.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 38%|███▊ | 565/1505 [14:16:49<4:01:30, 15.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 38%|███▊ | 566/1505 [14:17:12<4:35:50, 17.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 38%|███▊ | 567/1505 [14:17:17<3:34:14, 13.70s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 38%|███▊ | 568/1505 [14:17:20<2:48:27, 10.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 38%|███▊ | 569/1505 [14:17:25<2:17:21, 8.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 38%|███▊ | 570/1505 [14:17:27<1:48:57, 6.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 38%|███▊ | 571/1505 [14:17:31<1:32:51, 5.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 38%|███▊ | 572/1505 [14:17:34<1:19:10, 5.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 38%|███▊ | 573/1505 [14:17:40<1:23:52, 5.40s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 38%|███▊ | 574/1505 [14:17:45<1:19:05, 5.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 38%|███▊ | 575/1505 [14:17:48<1:12:36, 4.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 38%|███▊ | 576/1505 [14:17:53<1:12:45, 4.70s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 38%|███▊ | 577/1505 [14:17:56<1:05:42, 4.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 38%|███▊ | 578/1505 [14:18:00<1:01:35, 3.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 38%|███▊ | 579/1505 [14:18:03<1:00:42, 3.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 39%|███▊ | 580/1505 [14:18:08<1:02:20, 4.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 39%|███▊ | 581/1505 [14:18:12<1:05:23, 4.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 39%|███▊ | 582/1505 [14:18:18<1:11:46, 4.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 39%|███▊ | 583/1505 [14:18:23<1:14:10, 4.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 39%|███▉ | 584/1505 [14:18:28<1:15:02, 4.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 39%|███▉ | 585/1505 [14:18:33<1:13:32, 4.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 39%|███▉ | 586/1505 [14:18:39<1:20:51, 5.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 39%|███▉ | 587/1505 [14:18:58<2:23:46, 9.40s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 39%|███▉ | 588/1505 [14:19:01<1:50:55, 7.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 39%|███▉ | 589/1505 [14:19:24<3:02:39, 11.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 39%|███▉ | 590/1505 [14:19:28<2:30:29, 9.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 39%|███▉ | 591/1505 [14:19:31<1:55:22, 7.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 39%|███▉ | 592/1505 [14:19:33<1:32:29, 6.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 39%|███▉ | 593/1505 [14:19:36<1:18:44, 5.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 39%|███▉ | 594/1505 [14:20:11<3:31:51, 13.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 40%|███▉ | 595/1505 [14:20:15<2:45:17, 10.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 40%|███▉ | 596/1505 [14:20:27<2:52:35, 11.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 40%|███▉ | 597/1505 [14:20:43<3:12:04, 12.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 40%|███▉ | 598/1505 [14:20:54<3:06:09, 12.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 40%|███▉ | 599/1505 [14:21:01<2:41:20, 10.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 40%|███▉ | 600/1505 [14:21:08<2:25:21, 9.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 40%|███▉ | 601/1505 [14:21:12<1:59:34, 7.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 40%|████ | 602/1505 [14:21:20<1:56:12, 7.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 40%|████ | 603/1505 [14:21:41<2:56:20, 11.73s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 40%|████ | 604/1505 [14:21:48<2:37:21, 10.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 40%|████ | 605/1505 [14:21:57<2:28:00, 9.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 40%|████ | 606/1505 [14:22:09<2:40:55, 10.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 40%|████ | 607/1505 [14:22:20<2:37:59, 10.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 40%|████ | 608/1505 [14:22:23<2:04:13, 8.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 40%|████ | 609/1505 [14:22:31<2:02:47, 8.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 610/1505 [14:22:39<2:01:38, 8.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 611/1505 [14:22:47<2:01:05, 8.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 612/1505 [14:22:52<1:48:44, 7.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 613/1505 [14:23:10<2:36:09, 10.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 614/1505 [14:23:12<1:59:07, 8.02s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 615/1505 [14:23:18<1:49:02, 7.35s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 616/1505 [14:23:31<2:13:57, 9.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 617/1505 [14:23:49<2:52:38, 11.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 618/1505 [14:23:52<2:14:18, 9.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 619/1505 [14:23:54<1:41:48, 6.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████ | 620/1505 [14:24:09<2:20:24, 9.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████▏ | 621/1505 [14:24:21<2:29:48, 10.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████▏ | 622/1505 [14:24:30<2:24:29, 9.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████▏ | 623/1505 [14:24:34<1:57:27, 7.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 41%|████▏ | 624/1505 [14:24:41<1:54:54, 7.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 42%|████▏ | 625/1505 [14:24:49<1:53:43, 7.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 42%|████▏ | 626/1505 [14:25:02<2:15:43, 9.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 42%|████▏ | 627/1505 [14:25:10<2:11:51, 9.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 42%|████▏ | 628/1505 [14:25:15<1:56:24, 7.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 42%|████▏ | 629/1505 [14:25:23<1:53:57, 7.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 42%|████▏ | 630/1505 [14:25:32<1:58:19, 8.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 42%|████▏ | 631/1505 [14:25:48<2:35:17, 10.66s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 42%|████▏ | 632/1505 [14:25:53<2:09:12, 8.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 42%|████▏ | 633/1505 [14:26:01<2:06:49, 8.73s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 42%|████▏ | 634/1505 [14:26:09<2:02:27, 8.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 42%|████▏ | 635/1505 [14:26:25<2:33:56, 10.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 42%|████▏ | 636/1505 [14:26:40<2:55:11, 12.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 42%|████▏ | 637/1505 [14:26:55<3:06:47, 12.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 42%|████▏ | 638/1505 [14:27:03<2:45:08, 11.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 42%|████▏ | 639/1505 [14:27:11<2:28:05, 10.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 43%|████▎ | 640/1505 [14:27:19<2:18:30, 9.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 43%|████▎ | 641/1505 [14:27:29<2:20:15, 9.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 43%|████▎ | 642/1505 [14:27:41<2:28:13, 10.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 43%|████▎ | 643/1505 [14:28:01<3:13:40, 13.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 43%|████▎ | 644/1505 [14:28:21<3:38:02, 15.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 43%|████▎ | 645/1505 [14:28:27<3:01:32, 12.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 43%|████▎ | 646/1505 [14:28:30<2:18:21, 9.66s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 43%|████▎ | 647/1505 [14:28:33<1:51:22, 7.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 43%|████▎ | 648/1505 [14:28:43<1:56:45, 8.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 43%|████▎ | 649/1505 [14:28:50<1:54:23, 8.02s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 43%|████▎ | 650/1505 [14:28:58<1:52:25, 7.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 43%|████▎ | 651/1505 [14:29:02<1:37:48, 6.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 43%|████▎ | 652/1505 [14:29:18<2:15:21, 9.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 43%|████▎ | 653/1505 [14:29:38<2:57:57, 12.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 43%|████▎ | 654/1505 [14:29:53<3:12:19, 13.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 44%|████▎ | 655/1505 [14:29:56<2:23:45, 10.15s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 44%|████▎ | 656/1505 [14:30:11<2:45:29, 11.70s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 44%|████▎ | 657/1505 [14:30:14<2:08:17, 9.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 44%|████▎ | 658/1505 [14:30:18<1:45:53, 7.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 44%|████▍ | 659/1505 [14:30:25<1:46:25, 7.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 44%|████▍ | 660/1505 [14:30:29<1:27:44, 6.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 44%|████▍ | 661/1505 [14:30:37<1:37:20, 6.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 44%|████▍ | 662/1505 [14:30:52<2:11:33, 9.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 44%|████▍ | 663/1505 [14:30:54<1:39:08, 7.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 44%|████▍ | 664/1505 [14:31:05<1:57:14, 8.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 44%|████▍ | 665/1505 [14:31:10<1:42:55, 7.35s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 44%|████▍ | 666/1505 [14:32:29<6:42:51, 28.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 44%|████▍ | 667/1505 [14:32:33<4:56:07, 21.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 44%|████▍ | 668/1505 [14:32:34<3:34:26, 15.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 44%|████▍ | 669/1505 [14:32:36<2:37:56, 11.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 45%|████▍ | 670/1505 [14:32:38<1:58:33, 8.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 45%|████▍ | 671/1505 [14:32:40<1:30:09, 6.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 45%|████▍ | 672/1505 [14:35:02<10:55:17, 47.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 45%|████▍ | 673/1505 [14:35:07<7:58:21, 34.50s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 45%|████▍ | 674/1505 [14:35:14<6:01:39, 26.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 45%|████▍ | 675/1505 [14:35:17<4:26:29, 19.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 45%|████▍ | 676/1505 [14:35:42<4:49:55, 20.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 45%|████▍ | 677/1505 [14:36:37<7:10:19, 31.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 45%|████▌ | 678/1505 [14:37:16<7:41:03, 33.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 45%|████▌ | 679/1505 [14:38:13<9:18:00, 40.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 45%|████▌ | 680/1505 [14:38:25<7:20:37, 32.05s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 45%|████▌ | 681/1505 [14:38:40<6:09:45, 26.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 45%|████▌ | 682/1505 [14:38:49<4:55:58, 21.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 45%|████▌ | 683/1505 [14:38:56<3:57:35, 17.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 45%|████▌ | 684/1505 [14:39:04<3:16:28, 14.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 46%|████▌ | 685/1505 [14:39:09<2:37:32, 11.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 46%|████▌ | 686/1505 [14:39:18<2:29:41, 10.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 46%|████▌ | 687/1505 [14:39:22<1:59:27, 8.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 46%|████▌ | 688/1505 [14:39:31<1:59:30, 8.78s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 46%|████▌ | 689/1505 [14:39:38<1:52:43, 8.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 46%|████▌ | 690/1505 [14:39:42<1:36:37, 7.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 46%|████▌ | 691/1505 [14:40:10<3:01:02, 13.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 46%|████▌ | 692/1505 [14:43:22<15:04:08, 66.73s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 46%|████▌ | 693/1505 [14:43:26<10:52:01, 48.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 46%|████▌ | 694/1505 [14:43:33<8:03:20, 35.76s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 46%|████▌ | 695/1505 [14:43:39<6:02:18, 26.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 46%|████▌ | 696/1505 [14:43:47<4:44:55, 21.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 46%|████▋ | 697/1505 [14:43:52<3:38:45, 16.24s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 46%|████▋ | 698/1505 [14:43:54<2:42:28, 12.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 46%|████▋ | 699/1505 [14:44:11<3:02:06, 13.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 47%|████▋ | 700/1505 [14:44:18<2:33:15, 11.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 47%|████▋ | 701/1505 [14:44:24<2:11:22, 9.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 47%|████▋ | 702/1505 [14:44:28<1:50:03, 8.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 47%|████▋ | 703/1505 [14:44:49<2:39:35, 11.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 47%|████▋ | 704/1505 [14:46:06<6:58:54, 31.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 47%|████▋ | 705/1505 [14:46:15<5:29:31, 24.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 47%|████▋ | 706/1505 [14:46:17<3:59:40, 18.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 47%|████▋ | 707/1505 [14:46:31<3:43:23, 16.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 47%|████▋ | 708/1505 [14:46:33<2:42:08, 12.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Artefact comparison ToS f04428.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 47%|████▋ | 709/1505 [14:46:34<1:59:18, 8.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Artefact comparison ToS f11811.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 47%|████▋ | 710/1505 [14:46:36<1:30:05, 6.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Artefact comparison ToS f15509.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 47%|████▋ | 711/1505 [14:46:44<1:33:51, 7.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 47%|████▋ | 712/1505 [14:46:48<1:23:29, 6.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 47%|████▋ | 713/1505 [14:47:10<2:25:12, 11.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 47%|████▋ | 714/1505 [14:47:26<2:43:01, 12.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 48%|████▊ | 715/1505 [14:47:34<2:27:21, 11.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 48%|████▊ | 716/1505 [14:47:38<2:00:25, 9.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 48%|████▊ | 717/1505 [14:47:49<2:07:19, 9.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 48%|████▊ | 718/1505 [14:48:00<2:10:21, 9.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 48%|████▊ | 719/1505 [14:48:02<1:40:47, 7.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 48%|████▊ | 720/1505 [14:48:52<4:24:12, 20.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 48%|████▊ | 721/1505 [14:48:54<3:14:57, 14.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 48%|████▊ | 722/1505 [14:49:08<3:08:51, 14.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 48%|████▊ | 723/1505 [14:49:21<3:03:44, 14.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 48%|████▊ | 724/1505 [14:49:23<2:15:39, 10.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 48%|████▊ | 725/1505 [14:49:50<3:21:30, 15.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 48%|████▊ | 726/1505 [14:50:12<3:47:22, 17.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Asteroid Bennu's Surprising Surface Revealed by OSIRIS-REx (long form).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 48%|████▊ | 727/1505 [14:50:18<3:02:44, 14.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Asteroid Bennu's Surprising Surface Revealed by OSIRIS-REx.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 48%|████▊ | 728/1505 [14:50:45<3:50:34, 17.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 48%|████▊ | 729/1505 [14:50:52<3:10:32, 14.73s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 49%|████▊ | 730/1505 [14:51:08<3:12:00, 14.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 49%|████▊ | 731/1505 [14:51:14<2:37:58, 12.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 49%|████▊ | 732/1505 [14:51:36<3:18:08, 15.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 49%|████▊ | 733/1505 [14:52:41<6:27:14, 30.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 49%|████▉ | 734/1505 [14:52:46<4:48:31, 22.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 49%|████▉ | 735/1505 [14:52:53<3:51:58, 18.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 49%|████▉ | 736/1505 [14:53:13<3:57:54, 18.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 49%|████▉ | 737/1505 [14:53:42<4:36:26, 21.60s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 49%|████▉ | 738/1505 [14:54:00<4:24:17, 20.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 49%|████▉ | 739/1505 [14:54:27<4:47:03, 22.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 49%|████▉ | 740/1505 [14:54:41<4:15:50, 20.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 49%|████▉ | 741/1505 [14:54:49<3:27:10, 16.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 49%|████▉ | 742/1505 [14:54:55<2:47:52, 13.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 49%|████▉ | 743/1505 [14:55:25<3:50:58, 18.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 49%|████▉ | 744/1505 [14:55:41<3:45:09, 17.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 50%|████▉ | 745/1505 [14:55:43<2:43:18, 12.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 50%|████▉ | 746/1505 [14:55:45<2:00:33, 9.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 50%|████▉ | 747/1505 [14:55:54<2:00:47, 9.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 50%|████▉ | 748/1505 [14:55:57<1:35:04, 7.54s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 50%|████▉ | 749/1505 [14:56:01<1:22:03, 6.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 50%|████▉ | 750/1505 [14:56:04<1:06:37, 5.30s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 50%|████▉ | 751/1505 [14:56:13<1:20:32, 6.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 50%|████▉ | 752/1505 [14:56:16<1:10:30, 5.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 50%|█████ | 753/1505 [14:56:24<1:18:45, 6.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 50%|█████ | 754/1505 [14:56:30<1:18:13, 6.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 50%|█████ | 755/1505 [14:56:43<1:41:58, 8.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 50%|█████ | 756/1505 [14:56:54<1:50:30, 8.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 50%|█████ | 757/1505 [14:57:18<2:47:10, 13.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 50%|█████ | 758/1505 [14:57:22<2:11:46, 10.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 50%|█████ | 759/1505 [14:57:26<1:50:21, 8.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 50%|█████ | 760/1505 [14:57:29<1:27:01, 7.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 51%|█████ | 761/1505 [14:57:47<2:07:33, 10.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 51%|█████ | 762/1505 [14:58:41<4:51:15, 23.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 51%|█████ | 763/1505 [14:58:58<4:24:22, 21.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 51%|█████ | 764/1505 [14:59:01<3:15:22, 15.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 51%|█████ | 765/1505 [14:59:02<2:23:06, 11.60s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 51%|█████ | 766/1505 [14:59:07<1:57:50, 9.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 51%|█████ | 767/1505 [14:59:11<1:35:11, 7.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 51%|█████ | 768/1505 [14:59:40<2:56:06, 14.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 51%|█████ | 769/1505 [14:59:44<2:16:19, 11.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 51%|█████ | 770/1505 [14:59:46<1:41:29, 8.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 51%|█████ | 771/1505 [14:59:50<1:28:05, 7.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 51%|█████▏ | 772/1505 [14:59:53<1:10:34, 5.78s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 51%|█████▏ | 773/1505 [15:00:07<1:42:44, 8.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 51%|█████▏ | 774/1505 [15:00:17<1:46:18, 8.73s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 51%|█████▏ | 775/1505 [15:00:19<1:20:41, 6.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 776/1505 [15:00:21<1:03:44, 5.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "B-2 Spirit.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 777/1505 [15:00:29<1:13:35, 6.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 778/1505 [15:00:33<1:07:15, 5.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 779/1505 [15:00:42<1:18:51, 6.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 780/1505 [15:01:05<2:20:48, 11.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 781/1505 [15:01:23<2:41:33, 13.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 782/1505 [15:01:33<2:30:30, 12.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 783/1505 [15:01:45<2:26:37, 12.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 784/1505 [15:01:51<2:03:37, 10.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 785/1505 [15:01:57<1:48:42, 9.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 786/1505 [15:02:05<1:44:39, 8.73s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 787/1505 [15:02:12<1:39:22, 8.30s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 788/1505 [15:02:17<1:27:35, 7.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 789/1505 [15:02:28<1:41:13, 8.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 52%|█████▏ | 790/1505 [15:02:34<1:29:39, 7.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 53%|█████▎ | 791/1505 [15:02:38<1:17:09, 6.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 53%|█████▎ | 792/1505 [15:02:43<1:14:16, 6.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 53%|█████▎ | 793/1505 [15:02:48<1:08:41, 5.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 53%|█████▎ | 794/1505 [15:02:53<1:04:28, 5.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 53%|█████▎ | 795/1505 [15:02:58<1:04:09, 5.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 53%|█████▎ | 796/1505 [15:03:08<1:20:33, 6.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 53%|█████▎ | 797/1505 [15:03:12<1:10:35, 5.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 53%|█████▎ | 798/1505 [15:03:18<1:09:31, 5.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 53%|█████▎ | 799/1505 [15:03:25<1:14:26, 6.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 53%|█████▎ | 800/1505 [15:03:35<1:26:09, 7.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 53%|█████▎ | 801/1505 [15:03:40<1:16:36, 6.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 53%|█████▎ | 802/1505 [15:03:44<1:10:11, 5.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 53%|█████▎ | 803/1505 [15:03:46<54:46, 4.68s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 53%|█████▎ | 804/1505 [15:03:47<43:59, 3.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 53%|█████▎ | 805/1505 [15:04:08<1:43:11, 8.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 54%|█████▎ | 806/1505 [15:04:35<2:45:18, 14.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 54%|█████▎ | 807/1505 [15:04:46<2:32:50, 13.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 54%|█████▎ | 808/1505 [15:04:51<2:04:48, 10.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 54%|█████▍ | 809/1505 [15:12:22<27:38:13, 142.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 54%|█████▍ | 810/1505 [15:12:27<19:36:22, 101.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 54%|█████▍ | 811/1505 [15:12:32<14:00:51, 72.70s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 54%|█████▍ | 812/1505 [15:12:43<10:25:20, 54.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 54%|█████▍ | 813/1505 [15:13:07<8:40:12, 45.10s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 54%|█████▍ | 814/1505 [15:14:22<10:20:11, 53.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 54%|█████▍ | 815/1505 [15:14:32<7:47:51, 40.68s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 54%|█████▍ | 816/1505 [15:14:36<5:42:49, 29.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 54%|█████▍ | 817/1505 [15:14:42<4:18:53, 22.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 54%|█████▍ | 818/1505 [15:15:55<7:10:57, 37.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 54%|█████▍ | 819/1505 [15:17:08<9:14:11, 48.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 54%|█████▍ | 820/1505 [15:17:28<7:35:41, 39.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 55%|█████▍ | 821/1505 [15:21:50<20:13:28, 106.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 55%|█████▍ | 822/1505 [15:22:33<16:33:57, 87.32s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 55%|█████▍ | 823/1505 [15:23:59<16:29:12, 87.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 55%|█████▍ | 824/1505 [15:24:06<11:53:51, 62.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 55%|█████▍ | 825/1505 [15:24:10<8:32:46, 45.25s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 55%|█████▍ | 826/1505 [15:24:20<6:33:18, 34.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 55%|█████▍ | 827/1505 [15:24:40<5:42:38, 30.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 55%|█████▌ | 828/1505 [15:24:46<4:19:34, 23.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 55%|█████▌ | 829/1505 [15:25:02<3:56:06, 20.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 55%|█████▌ | 830/1505 [15:25:50<5:28:07, 29.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 55%|█████▌ | 831/1505 [15:26:27<5:52:52, 31.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 55%|█████▌ | 832/1505 [15:27:25<7:21:16, 39.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 55%|█████▌ | 833/1505 [15:28:18<8:06:51, 43.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 55%|█████▌ | 834/1505 [15:29:11<8:39:38, 46.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 55%|█████▌ | 835/1505 [15:29:57<8:36:44, 46.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▌ | 836/1505 [15:30:35<8:08:56, 43.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▌ | 837/1505 [15:31:28<8:37:30, 46.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▌ | 838/1505 [15:32:27<9:20:12, 50.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▌ | 839/1505 [15:33:24<9:38:22, 52.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▌ | 840/1505 [15:34:10<9:17:04, 50.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▌ | 841/1505 [15:35:04<9:29:14, 51.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▌ | 842/1505 [15:35:52<9:17:28, 50.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▌ | 843/1505 [15:36:57<10:04:14, 54.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▌ | 844/1505 [15:37:40<9:24:07, 51.21s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▌ | 845/1505 [15:38:18<8:41:50, 47.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▌ | 846/1505 [15:38:26<6:30:02, 35.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 847/1505 [15:38:30<4:46:56, 26.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 848/1505 [15:38:51<4:29:05, 24.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 849/1505 [15:39:00<3:37:37, 19.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 850/1505 [15:39:16<3:24:09, 18.70s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 851/1505 [15:39:31<3:12:12, 17.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 852/1505 [15:40:14<4:32:53, 25.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Battleship Potemkin.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 853/1505 [15:40:15<3:16:33, 18.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 854/1505 [15:40:19<2:30:02, 13.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 855/1505 [15:41:24<5:13:55, 28.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 856/1505 [15:41:33<4:10:05, 23.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Beautiful Japan (1918).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 857/1505 [15:42:17<5:16:03, 29.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 858/1505 [15:42:28<4:16:48, 23.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 859/1505 [15:42:40<3:39:10, 20.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 860/1505 [15:43:12<4:17:03, 23.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 861/1505 [15:43:16<3:11:57, 17.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 862/1505 [15:43:31<3:03:13, 17.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 863/1505 [15:43:44<2:49:58, 15.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 864/1505 [15:45:18<6:58:06, 39.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Box of infinities – A Mandelbox film 4K UHD 20190907.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 865/1505 [15:45:27<5:22:51, 30.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Burg Belfort Flugaufnahme.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 866/1505 [15:46:27<6:56:36, 39.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BurningShip Wiki x264 CRF4 20210820 4500p60 002.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 867/1505 [15:46:28<4:54:39, 27.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Cal64x48check vdfr1to25len2.avi.q10fr25.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 868/1505 [15:46:48<4:30:15, 25.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "California Route 2 time-lapse.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 869/1505 [15:46:50<3:13:37, 18.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Cat.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 870/1505 [15:47:33<4:30:46, 25.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Changqingyuan Community, Yinzhou, Tieling 110352000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 871/1505 [15:48:17<5:30:20, 31.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Changqingyuan Community, Yinzhou, Tieling 110910000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 872/1505 [15:48:22<4:05:17, 23.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Chocolate cake.ogg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 873/1505 [15:48:41<3:51:02, 21.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Chūkon giretsu Jitsuroku Chūshingura (1928).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 874/1505 [15:48:42<2:47:38, 15.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "DGS Weihnachten-Geschenke Beispielsatz.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 875/1505 [15:48:47<2:11:10, 12.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Dan Quinn at 2017 NFL Combine.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 876/1505 [15:48:49<1:38:51, 9.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Dan Quinn welcomes team back for offseason training (footage).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 877/1505 [15:48:56<1:31:31, 8.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Den hvide slavehandel (1910).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 878/1505 [15:49:43<3:29:59, 20.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Dessau Hbf → Wörlitz 2016-09.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 879/1505 [15:49:48<2:42:56, 15.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Diaporama salles informatiques Togo YovoTogo JUMPLabOrione Emmabuntus 2018.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 880/1505 [15:50:02<2:36:34, 15.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Die Bergkatze (1921).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 59%|█████▊ | 881/1505 [15:50:33<3:26:39, 19.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Die Gespensternstunde (1917).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 59%|█████▊ | 882/1505 [15:50:51<3:20:38, 19.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Die Portale der Mandelbox 5K 20191227 - YouTube.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 59%|█████▊ | 883/1505 [15:50:58<2:42:55, 15.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Die Seele der Mandelbox 4K4K - YouTube.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 59%|█████▊ | 884/1505 [15:51:01<2:01:30, 11.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ejaculation.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 59%|█████▉ | 885/1505 [15:51:04<1:34:19, 9.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Falkirk Wheel Timelapse, Scotland - Diliff.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 59%|█████▉ | 886/1505 [15:51:08<1:18:15, 7.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Fantômas - À l'ombre de la guillotine (1913).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 59%|█████▉ | 887/1505 [15:51:12<1:07:50, 6.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "FelixTheCat-1919-FelineFollies silent.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 59%|█████▉ | 888/1505 [15:51:47<2:35:54, 15.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ferropolis → Oranienbaum (Anh) 2016-09.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 59%|█████▉ | 889/1505 [15:51:49<1:53:43, 11.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Fetal yawning 4D ultrasound ecografia 4D Dr. Wolfgang Moroder.theora.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 59%|█████▉ | 890/1505 [15:51:50<1:23:37, 8.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Firefogg screencast.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 59%|█████▉ | 891/1505 [15:52:52<4:07:35, 24.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Flug durch die Menger-Schwamm-Welt in VR (360 Grad) und 8K OHNE TON 4320p50.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 59%|█████▉ | 892/1505 [15:53:12<3:55:40, 23.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "From Preda to Bergün with Rhaetian Railway, aerial video.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 59%|█████▉ | 893/1505 [15:53:16<2:56:39, 17.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G1266 from Tielingxi to Shenyangbei 20190427 113848.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 59%|█████▉ | 894/1505 [15:53:48<3:42:15, 21.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G1266 from Tielingxi to Shenyangbei 20190427 113913.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 59%|█████▉ | 895/1505 [15:54:27<4:34:05, 26.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G1266 from Tielingxi to Shenyangbei 20190427 114124000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 60%|█████▉ | 896/1505 [15:55:08<5:14:50, 31.02s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G1266 from Tielingxi to Shenyangbei 20190427 115023000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 60%|█████▉ | 897/1505 [15:55:48<5:42:02, 33.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G8020 from Tielingxi to Shenyang 20190429 173402000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 60%|█████▉ | 898/1505 [15:56:15<5:22:37, 31.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G8020 from Tielingxi to Shenyang 20190429 173806.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 60%|█████▉ | 899/1505 [15:56:52<5:35:18, 33.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G8020 from Tielingxi to Shenyang 20190429 174012.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 60%|█████▉ | 900/1505 [15:57:31<5:53:11, 35.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G8020 from Tielingxi to Shenyang 20190429 174715000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 60%|█████▉ | 901/1505 [15:58:11<6:08:48, 36.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G8020 from Tielingxi to Shenyang 20190429 174925000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 60%|█████▉ | 902/1505 [15:58:15<4:28:10, 26.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Galaxy Collision Animation- James Webb Space Telescope Science.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 60%|██████ | 903/1505 [15:58:21<3:25:01, 20.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Gartenheim.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 60%|██████ | 904/1505 [15:58:36<3:08:14, 18.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ghimbav - Istoric al așezării.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 60%|██████ | 905/1505 [15:59:17<4:15:01, 25.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Goethe-Sprachlernzentrum, Shenyang 20190427 125113000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 60%|██████ | 906/1505 [15:59:27<3:27:50, 20.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Goethe-Sprachlernzentrum, Shenyang 20190427 125829.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 60%|██████ | 907/1505 [16:00:03<4:13:00, 25.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Goethe-Sprachlernzentrum, Shenyang 20190427 125904.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 60%|██████ | 908/1505 [16:00:05<3:04:14, 18.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hemidactylus platyurus performing a high-speed inversion on a ramp - Journal.pone.0038003.s004.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 60%|██████ | 909/1505 [16:00:10<2:21:40, 14.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "How Animated Cartoons Are Made (1919).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 60%|██████ | 910/1505 [16:00:12<1:44:54, 10.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "How to upload images at Wiki Loves Earth Moldova.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 61%|██████ | 911/1505 [16:00:43<2:45:20, 16.70s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "In Changqingyuan Community in Yinzhou District, Tieling 02.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 61%|██████ | 912/1505 [16:00:48<2:11:48, 13.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Interstate 10 in Los Angeles time-lapse.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 61%|██████ | 913/1505 [16:01:10<2:37:07, 15.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Intolerance (1916).ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 61%|██████ | 914/1505 [16:01:15<2:03:19, 12.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "JOSM 9900 en validator message \"Overlapping ways\" with shortcuts.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 61%|██████ | 915/1505 [16:01:19<1:39:25, 10.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Juve contre Fantômas (1913).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 61%|██████ | 916/1505 [16:01:23<1:19:33, 8.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Kinonedelja No. 4 (1918).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 61%|██████ | 917/1505 [16:03:22<6:46:16, 41.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "KochZyklus 3840p60 20200401 color CRF06 GANZ OHNE TON.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 61%|██████ | 918/1505 [16:03:31<5:11:59, 31.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Krakow am See–Pritzwalk.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 61%|██████ | 919/1505 [16:03:33<3:43:57, 22.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Krazy Kat Bugolist 1916 silent.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 61%|██████ | 920/1505 [16:03:36<2:43:40, 16.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Krazy Kat Bugologist 1916 silent.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 61%|██████ | 921/1505 [16:03:38<2:01:41, 12.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Krazy Kat and Ignatz Mouse at the circus .webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 61%|██████▏ | 922/1505 [16:03:43<1:39:16, 10.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "L'Odissea (Milano Films, 1911) .webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 61%|██████▏ | 923/1505 [16:03:48<1:22:39, 8.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "L'heure du thé.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 61%|██████▏ | 924/1505 [16:03:51<1:07:08, 6.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "La fessée à l'école.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 61%|██████▏ | 925/1505 [16:04:00<1:11:30, 7.40s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Le Mort qui tue (1913).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 62%|██████▏ | 926/1505 [16:04:13<1:27:48, 9.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Les douze travaux d'Hercule (1910).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 62%|██████▏ | 927/1505 [16:04:51<2:51:08, 17.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Limite (1931).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 62%|██████▏ | 928/1505 [16:04:53<2:05:35, 13.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Little Albert experiment (1920).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 62%|██████▏ | 929/1505 [16:04:55<1:35:04, 9.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Lockheed U-2.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 62%|██████▏ | 930/1505 [16:05:18<2:12:30, 13.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Man With A Movie Camera (Dziga Vertov, 1929).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 62%|██████▏ | 931/1505 [16:06:22<4:34:37, 28.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mandelboxflug \"Raumschifflager\" 20200201 5K color.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 62%|██████▏ | 932/1505 [16:08:39<9:45:37, 61.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "MandelbulbPower 00000-10501 Quality0 VP9 4500p60 20210918.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 62%|██████▏ | 933/1505 [16:10:48<12:57:18, 81.54s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "MandelbulbRot 00000-10501 VP9 slow lossless.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 62%|██████▏ | 934/1505 [16:10:50<9:09:04, 57.70s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "May Irwin Kiss.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 62%|██████▏ | 935/1505 [16:10:54<6:36:48, 41.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Micro-CT Rope HighRes 3D.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 62%|██████▏ | 936/1505 [16:10:57<4:44:45, 30.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Millie Alexandra - Sign Me Up!.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 62%|██████▏ | 937/1505 [16:10:59<3:25:02, 21.66s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Millie Bobby Brown Pandora 2020.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 62%|██████▏ | 938/1505 [16:11:01<2:27:44, 15.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Millikan experiment.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 62%|██████▏ | 939/1505 [16:11:13<2:18:06, 14.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mod lyset (1919).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 62%|██████▏ | 940/1505 [16:11:18<1:49:23, 11.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mud and Sand-508toendnok.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 63%|██████▎ | 941/1505 [16:11:21<1:24:57, 9.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mud and Sand-silent 0to508.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 63%|██████▎ | 942/1505 [16:11:22<1:04:26, 6.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Multibrot.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 63%|██████▎ | 943/1505 [16:11:27<57:09, 6.10s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "NASA Models the Complex Chemistry of Earth's Atmosphere.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 63%|██████▎ | 944/1505 [16:11:29<46:32, 4.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Na vrhu brda, Pelišac.915.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 63%|██████▎ | 945/1505 [16:11:40<1:03:35, 6.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Neustadt (Dosse)–Pritzwalk.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 63%|██████▎ | 946/1505 [16:11:48<1:06:06, 7.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Osterfest 2019 Goethe-Sprachlernzentrum, Shenyang 20190427 174604.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 63%|██████▎ | 947/1505 [16:12:01<1:21:17, 8.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Osterfest 2019 Goethe-Sprachlernzentrum, Shenyang 20190427 180013.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 63%|██████▎ | 948/1505 [16:12:03<1:02:22, 6.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "PIA23195-AsteroidApophis-ClosestApproachToEarth-20190429.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 63%|██████▎ | 949/1505 [16:12:07<57:18, 6.18s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Per amore di Jenny (1915).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 63%|██████▎ | 950/1505 [16:12:10<46:00, 4.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Plastic Reconstruction of Face (1918).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 63%|██████▎ | 951/1505 [16:13:27<4:07:21, 26.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 63%|██████▎ | 952/1505 [16:13:41<3:31:58, 23.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Pritzwalk–Krakow am See.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 63%|██████▎ | 953/1505 [16:13:51<2:53:31, 18.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Pro patria (1915).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 63%|██████▎ | 954/1505 [16:13:55<2:12:10, 14.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Protest of the Transylvanian National Council in Kolozsvar 22 December 1918.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 63%|██████▎ | 955/1505 [16:13:56<1:36:13, 10.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Proteus 3D model.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 64%|██████▎ | 956/1505 [16:15:19<4:53:35, 32.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Quat4DJuliaX 0000-4000 VP9 medium 260MBits 20211130.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 64%|██████▎ | 957/1505 [16:16:50<7:35:11, 49.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Quaternion4D20211111 W-Wachstum VP9 medium 240MBit 0000-4000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 64%|██████▎ | 958/1505 [16:18:44<10:31:41, 69.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Quaternion4DCUT20211115 W-Wachstum x265 medium lossless 0000-4000.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 64%|██████▎ | 959/1505 [16:19:39<9:49:52, 64.82s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Quo vadis (1913).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 64%|██████▍ | 960/1505 [16:19:58<7:43:44, 51.05s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Revolutionsbryllup (1914).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 64%|██████▍ | 961/1505 [16:20:19<6:21:17, 42.05s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Robin Hood (1922).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 64%|██████▍ | 962/1505 [16:20:20<4:30:24, 29.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Robot running at high-speed performing rapid inversion - Journal.pone.0038003.s006.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 64%|██████▍ | 963/1505 [16:21:04<5:08:30, 34.15s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Saturday night (1922).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 64%|██████▍ | 964/1505 [16:34:04<38:44:57, 257.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 64%|██████▍ | 965/1505 [16:34:21<27:50:31, 185.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 64%|██████▍ | 966/1505 [16:34:32<19:56:42, 133.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 64%|██████▍ | 967/1505 [16:34:48<14:37:46, 97.89s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 64%|██████▍ | 968/1505 [16:35:21<11:41:18, 78.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 64%|██████▍ | 969/1505 [16:35:47<9:20:37, 62.76s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 64%|██████▍ | 970/1505 [16:35:58<7:02:22, 47.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 65%|██████▍ | 971/1505 [16:36:52<7:18:00, 49.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 65%|██████▍ | 972/1505 [16:37:19<6:17:08, 42.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 65%|██████▍ | 973/1505 [16:37:51<5:50:49, 39.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 65%|██████▍ | 974/1505 [16:38:05<4:41:30, 31.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 65%|██████▍ | 975/1505 [16:38:24<4:07:57, 28.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 65%|██████▍ | 976/1505 [16:38:44<3:46:03, 25.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 65%|██████▍ | 977/1505 [16:38:54<3:02:32, 20.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 65%|██████▍ | 978/1505 [16:39:37<4:01:18, 27.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 65%|██████▌ | 979/1505 [16:40:07<4:07:54, 28.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 65%|██████▌ | 980/1505 [16:41:03<5:20:10, 36.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 65%|██████▌ | 981/1505 [16:41:10<4:02:14, 27.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 65%|██████▌ | 982/1505 [16:42:08<5:19:31, 36.66s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 65%|██████▌ | 983/1505 [16:42:29<4:40:11, 32.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 65%|██████▌ | 984/1505 [16:42:41<3:45:11, 25.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 65%|██████▌ | 985/1505 [16:42:48<2:57:01, 20.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 66%|██████▌ | 986/1505 [16:42:59<2:32:04, 17.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 66%|██████▌ | 987/1505 [16:43:09<2:11:54, 15.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 66%|██████▌ | 988/1505 [16:43:20<1:59:09, 13.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 66%|██████▌ | 989/1505 [16:43:23<1:32:56, 10.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 66%|██████▌ | 990/1505 [16:43:37<1:40:23, 11.70s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 66%|██████▌ | 991/1505 [16:43:39<1:15:31, 8.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 66%|██████▌ | 992/1505 [16:43:55<1:32:48, 10.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 66%|██████▌ | 993/1505 [16:44:30<2:35:16, 18.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 66%|██████▌ | 994/1505 [16:44:56<2:54:58, 20.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 66%|██████▌ | 995/1505 [16:44:59<2:10:23, 15.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Setup Mozilla Thunderbird for WMDE volunteer mail address.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 66%|██████▌ | 996/1505 [16:45:04<1:43:04, 12.15s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 66%|██████▌ | 997/1505 [16:50:17<14:27:58, 102.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 66%|██████▋ | 998/1505 [16:50:41<11:07:16, 78.97s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 66%|██████▋ | 999/1505 [16:50:44<7:53:00, 56.09s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 66%|██████▋ | 1000/1505 [16:50:48<5:39:24, 40.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 67%|██████▋ | 1001/1505 [16:50:49<4:01:31, 28.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 67%|██████▋ | 1002/1505 [16:51:02<3:20:08, 23.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 67%|██████▋ | 1003/1505 [16:51:18<3:00:31, 21.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 67%|██████▋ | 1004/1505 [16:51:23<2:19:14, 16.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 67%|██████▋ | 1005/1505 [16:51:28<1:47:37, 12.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 67%|██████▋ | 1006/1505 [16:51:33<1:28:33, 10.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 67%|██████▋ | 1007/1505 [16:51:37<1:11:44, 8.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 67%|██████▋ | 1008/1505 [16:52:03<1:55:29, 13.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 67%|██████▋ | 1009/1505 [16:52:07<1:29:01, 10.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 67%|██████▋ | 1010/1505 [16:52:19<1:33:07, 11.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 67%|██████▋ | 1011/1505 [16:52:31<1:34:41, 11.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 67%|██████▋ | 1012/1505 [16:55:46<9:07:26, 66.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 67%|██████▋ | 1013/1505 [16:56:34<8:19:43, 60.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 67%|██████▋ | 1014/1505 [16:56:56<6:42:54, 49.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 67%|██████▋ | 1015/1505 [16:57:04<5:00:51, 36.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 68%|██████▊ | 1016/1505 [16:57:07<3:38:38, 26.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 68%|██████▊ | 1017/1505 [16:57:30<3:28:28, 25.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 68%|██████▊ | 1018/1505 [16:57:39<2:46:14, 20.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 68%|██████▊ | 1019/1505 [16:57:57<2:41:08, 19.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 68%|██████▊ | 1020/1505 [16:58:19<2:45:54, 20.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 68%|██████▊ | 1021/1505 [16:58:35<2:35:15, 19.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 68%|██████▊ | 1022/1505 [16:58:53<2:30:00, 18.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 68%|██████▊ | 1023/1505 [16:58:55<1:51:08, 13.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 68%|██████▊ | 1024/1505 [16:59:05<1:42:05, 12.73s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 68%|██████▊ | 1025/1505 [16:59:14<1:31:10, 11.40s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 68%|██████▊ | 1026/1505 [16:59:15<1:07:51, 8.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 68%|██████▊ | 1027/1505 [16:59:31<1:25:42, 10.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 68%|██████▊ | 1028/1505 [16:59:41<1:23:30, 10.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 68%|██████▊ | 1029/1505 [16:59:45<1:06:33, 8.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sights- Super Bowl LI.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 68%|██████▊ | 1030/1505 [17:01:37<5:13:14, 39.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 69%|██████▊ | 1031/1505 [17:02:20<5:21:03, 40.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 69%|██████▊ | 1032/1505 [17:02:54<5:04:31, 38.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 69%|██████▊ | 1033/1505 [17:02:59<3:44:15, 28.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 69%|██████▊ | 1034/1505 [17:03:01<2:40:11, 20.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 69%|██████▉ | 1035/1505 [17:03:12<2:19:55, 17.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 69%|██████▉ | 1036/1505 [17:03:23<2:02:50, 15.71s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 69%|██████▉ | 1037/1505 [17:03:35<1:53:04, 14.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 69%|██████▉ | 1038/1505 [17:04:21<3:07:37, 24.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 69%|██████▉ | 1039/1505 [17:04:23<2:15:55, 17.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 69%|██████▉ | 1040/1505 [17:08:32<11:12:59, 86.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 69%|██████▉ | 1041/1505 [17:09:31<10:07:38, 78.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 69%|██████▉ | 1042/1505 [17:09:35<7:12:15, 56.02s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 69%|██████▉ | 1043/1505 [17:09:55<5:48:27, 45.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 69%|██████▉ | 1044/1505 [17:10:08<4:33:34, 35.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 69%|██████▉ | 1045/1505 [17:10:11<3:19:09, 25.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 70%|██████▉ | 1046/1505 [17:15:42<14:57:09, 117.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 70%|██████▉ | 1047/1505 [17:15:51<10:46:38, 84.71s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 70%|██████▉ | 1048/1505 [17:16:21<8:41:51, 68.52s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 70%|██████▉ | 1049/1505 [17:17:38<9:00:09, 71.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 70%|██████▉ | 1050/1505 [17:17:47<6:37:47, 52.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 70%|██████▉ | 1051/1505 [17:17:49<4:42:15, 37.30s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 70%|██████▉ | 1052/1505 [17:17:51<3:21:05, 26.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 70%|██████▉ | 1053/1505 [17:18:10<3:02:41, 24.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 70%|███████ | 1054/1505 [17:18:17<2:23:12, 19.05s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 70%|███████ | 1055/1505 [17:18:22<1:51:36, 14.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 70%|███████ | 1056/1505 [17:18:33<1:43:38, 13.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 70%|███████ | 1057/1505 [17:18:38<1:23:33, 11.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 70%|███████ | 1058/1505 [17:18:57<1:39:40, 13.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 70%|███████ | 1059/1505 [17:19:06<1:29:44, 12.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 70%|███████ | 1060/1505 [17:19:11<1:14:39, 10.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 70%|███████ | 1061/1505 [17:19:38<1:51:48, 15.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 71%|███████ | 1062/1505 [17:19:53<1:51:30, 15.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 71%|███████ | 1063/1505 [17:20:13<2:01:06, 16.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 71%|███████ | 1064/1505 [17:20:26<1:54:58, 15.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 71%|███████ | 1065/1505 [17:20:41<1:53:23, 15.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 71%|███████ | 1066/1505 [17:20:57<1:53:21, 15.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 71%|███████ | 1067/1505 [17:21:10<1:46:47, 14.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 71%|███████ | 1068/1505 [17:21:17<1:30:57, 12.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 71%|███████ | 1069/1505 [17:21:38<1:49:17, 15.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 71%|███████ | 1070/1505 [17:22:07<2:19:44, 19.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 71%|███████ | 1071/1505 [17:22:20<2:05:27, 17.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 71%|███████ | 1072/1505 [17:22:28<1:44:59, 14.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 71%|███████▏ | 1073/1505 [17:22:31<1:19:56, 11.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 71%|███████▏ | 1074/1505 [17:22:35<1:03:50, 8.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 71%|███████▏ | 1075/1505 [17:22:41<57:44, 8.06s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 71%|███████▏ | 1076/1505 [17:22:56<1:13:20, 10.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 72%|███████▏ | 1077/1505 [17:23:09<1:17:44, 10.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 72%|███████▏ | 1078/1505 [17:23:13<1:04:13, 9.02s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 72%|███████▏ | 1079/1505 [17:23:24<1:06:18, 9.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 72%|███████▏ | 1080/1505 [17:23:28<56:08, 7.93s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 72%|███████▏ | 1081/1505 [17:23:33<50:18, 7.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 72%|███████▏ | 1082/1505 [17:23:45<58:38, 8.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 72%|███████▏ | 1083/1505 [17:23:53<58:54, 8.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 72%|███████▏ | 1084/1505 [17:24:12<1:21:16, 11.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 72%|███████▏ | 1085/1505 [17:24:25<1:23:50, 11.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 72%|███████▏ | 1086/1505 [17:24:55<2:01:19, 17.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 72%|███████▏ | 1087/1505 [17:25:04<1:43:39, 14.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 72%|███████▏ | 1088/1505 [17:25:09<1:23:01, 11.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 72%|███████▏ | 1089/1505 [17:25:22<1:24:54, 12.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 72%|███████▏ | 1090/1505 [17:25:26<1:07:52, 9.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 72%|███████▏ | 1091/1505 [17:25:34<1:02:41, 9.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 73%|███████▎ | 1092/1505 [17:25:39<55:00, 7.99s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 73%|███████▎ | 1093/1505 [17:25:46<52:42, 7.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 73%|███████▎ | 1094/1505 [17:26:07<1:19:36, 11.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 73%|███████▎ | 1095/1505 [17:26:20<1:22:02, 12.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 73%|███████▎ | 1096/1505 [17:26:50<1:58:22, 17.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 73%|███████▎ | 1097/1505 [17:27:03<1:50:06, 16.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 73%|███████▎ | 1098/1505 [17:27:17<1:45:35, 15.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 73%|███████▎ | 1099/1505 [17:27:25<1:29:44, 13.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 73%|███████▎ | 1100/1505 [17:27:30<1:13:21, 10.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 73%|███████▎ | 1101/1505 [17:27:34<57:43, 8.57s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 73%|███████▎ | 1102/1505 [17:27:58<1:29:25, 13.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 73%|███████▎ | 1103/1505 [17:28:20<1:47:36, 16.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 73%|███████▎ | 1104/1505 [17:28:27<1:28:47, 13.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 73%|███████▎ | 1105/1505 [17:28:34<1:15:03, 11.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 73%|███████▎ | 1106/1505 [17:28:52<1:28:38, 13.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 74%|███████▎ | 1107/1505 [17:29:13<1:43:07, 15.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 74%|███████▎ | 1108/1505 [17:29:26<1:38:33, 14.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 74%|███████▎ | 1109/1505 [17:29:29<1:14:49, 11.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 74%|███████▍ | 1110/1505 [17:29:39<1:11:18, 10.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 74%|███████▍ | 1111/1505 [17:29:42<56:47, 8.65s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 74%|███████▍ | 1112/1505 [17:29:46<47:25, 7.24s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 74%|███████▍ | 1113/1505 [17:29:51<43:04, 6.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 74%|███████▍ | 1114/1505 [17:29:54<36:14, 5.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 74%|███████▍ | 1115/1505 [17:29:56<28:48, 4.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 74%|███████▍ | 1116/1505 [17:30:07<40:17, 6.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 74%|███████▍ | 1117/1505 [17:30:08<31:08, 4.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 74%|███████▍ | 1118/1505 [17:30:15<35:16, 5.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 74%|███████▍ | 1119/1505 [17:30:18<29:54, 4.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 74%|███████▍ | 1120/1505 [17:30:20<24:37, 3.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 74%|███████▍ | 1121/1505 [17:30:29<35:32, 5.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 75%|███████▍ | 1122/1505 [17:30:39<44:01, 6.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 75%|███████▍ | 1123/1505 [17:30:47<44:48, 7.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 75%|███████▍ | 1124/1505 [17:30:58<52:56, 8.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 75%|███████▍ | 1125/1505 [17:31:06<51:34, 8.14s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 75%|███████▍ | 1126/1505 [17:31:18<59:41, 9.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 75%|███████▍ | 1127/1505 [17:31:34<1:10:32, 11.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 75%|███████▍ | 1128/1505 [17:31:47<1:14:56, 11.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 75%|███████▌ | 1129/1505 [17:32:23<1:59:47, 19.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 75%|███████▌ | 1130/1505 [17:32:27<1:30:05, 14.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 75%|███████▌ | 1131/1505 [17:32:32<1:13:17, 11.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 75%|███████▌ | 1132/1505 [17:33:45<3:08:00, 30.24s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 75%|███████▌ | 1133/1505 [17:34:00<2:38:44, 25.60s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 75%|███████▌ | 1134/1505 [17:34:25<2:37:13, 25.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 75%|███████▌ | 1135/1505 [17:37:29<7:29:39, 72.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 75%|███████▌ | 1136/1505 [17:37:43<5:40:09, 55.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 76%|███████▌ | 1137/1505 [17:37:50<4:10:44, 40.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 76%|███████▌ | 1138/1505 [17:38:36<4:18:13, 42.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 76%|███████▌ | 1139/1505 [17:38:43<3:14:17, 31.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 76%|███████▌ | 1140/1505 [17:41:44<7:44:49, 76.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 76%|███████▌ | 1141/1505 [17:46:04<13:17:24, 131.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 76%|███████▌ | 1142/1505 [17:46:12<9:32:39, 94.65s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 76%|███████▌ | 1143/1505 [17:46:24<7:01:03, 69.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 76%|███████▌ | 1144/1505 [17:46:26<4:57:25, 49.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 76%|███████▌ | 1145/1505 [17:46:36<3:45:48, 37.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 76%|███████▌ | 1146/1505 [17:47:17<3:49:56, 38.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 76%|███████▌ | 1147/1505 [17:47:58<3:55:17, 39.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 76%|███████▋ | 1148/1505 [17:48:08<3:01:14, 30.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 76%|███████▋ | 1149/1505 [17:49:00<3:39:50, 37.05s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 76%|███████▋ | 1150/1505 [17:49:09<2:48:29, 28.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 76%|███████▋ | 1151/1505 [17:49:16<2:10:18, 22.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 77%|███████▋ | 1152/1505 [17:49:52<2:33:54, 26.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 77%|███████▋ | 1153/1505 [17:49:53<1:50:23, 18.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 77%|███████▋ | 1154/1505 [17:50:00<1:27:58, 15.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 77%|███████▋ | 1155/1505 [17:50:35<2:03:42, 21.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 77%|███████▋ | 1156/1505 [17:50:44<1:41:07, 17.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 77%|███████▋ | 1157/1505 [17:51:34<2:39:03, 27.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 77%|███████▋ | 1158/1505 [17:51:36<1:54:22, 19.78s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 77%|███████▋ | 1159/1505 [17:51:43<1:31:38, 15.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 77%|███████▋ | 1160/1505 [17:51:56<1:25:55, 14.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 77%|███████▋ | 1161/1505 [17:52:01<1:09:06, 12.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 77%|███████▋ | 1162/1505 [17:52:21<1:21:57, 14.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 77%|███████▋ | 1163/1505 [17:52:45<1:39:14, 17.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 77%|███████▋ | 1164/1505 [17:52:55<1:25:28, 15.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 77%|███████▋ | 1165/1505 [17:53:02<1:12:08, 12.73s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 77%|███████▋ | 1166/1505 [17:53:58<2:24:00, 25.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 78%|███████▊ | 1167/1505 [17:54:40<2:51:58, 30.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 78%|███████▊ | 1168/1505 [17:54:52<2:19:56, 24.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 78%|███████▊ | 1169/1505 [17:55:00<1:51:49, 19.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 78%|███████▊ | 1170/1505 [17:55:42<2:28:46, 26.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 78%|███████▊ | 1171/1505 [17:55:49<1:55:45, 20.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 78%|███████▊ | 1172/1505 [17:56:02<1:41:41, 18.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 78%|███████▊ | 1173/1505 [17:56:10<1:24:14, 15.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 78%|███████▊ | 1174/1505 [17:56:19<1:13:25, 13.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 78%|███████▊ | 1175/1505 [17:56:22<56:07, 10.20s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 78%|███████▊ | 1176/1505 [17:56:29<50:48, 9.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 78%|███████▊ | 1177/1505 [17:56:40<53:23, 9.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 78%|███████▊ | 1178/1505 [17:56:45<45:50, 8.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 78%|███████▊ | 1179/1505 [17:57:13<1:16:46, 14.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 78%|███████▊ | 1180/1505 [17:58:23<2:48:30, 31.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 78%|███████▊ | 1181/1505 [17:59:16<3:22:44, 37.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 79%|███████▊ | 1182/1505 [18:00:11<3:51:11, 42.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 79%|███████▊ | 1183/1505 [18:00:43<3:31:30, 39.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 79%|███████▊ | 1184/1505 [18:01:38<3:56:45, 44.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 79%|███████▊ | 1185/1505 [18:02:04<3:27:04, 38.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 79%|███████▉ | 1186/1505 [18:02:21<2:51:09, 32.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 79%|███████▉ | 1187/1505 [18:03:57<4:32:08, 51.35s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 79%|███████▉ | 1188/1505 [18:07:44<9:08:52, 103.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 79%|███████▉ | 1189/1505 [18:08:02<6:51:51, 78.20s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Steamboat Bill Jr. (1928).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 79%|███████▉ | 1190/1505 [18:08:05<4:52:32, 55.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 79%|███████▉ | 1191/1505 [18:08:20<3:48:12, 43.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 79%|███████▉ | 1192/1505 [18:08:26<2:48:05, 32.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 79%|███████▉ | 1193/1505 [18:08:52<2:37:55, 30.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 79%|███████▉ | 1194/1505 [18:08:57<1:57:20, 22.64s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 79%|███████▉ | 1195/1505 [18:08:59<1:24:50, 16.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 79%|███████▉ | 1196/1505 [18:13:15<7:35:04, 88.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 80%|███████▉ | 1197/1505 [18:13:17<5:21:08, 62.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 80%|███████▉ | 1198/1505 [18:13:23<3:53:01, 45.54s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 80%|███████▉ | 1199/1505 [18:13:32<2:56:12, 34.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 80%|███████▉ | 1200/1505 [18:13:41<2:17:30, 27.05s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 80%|███████▉ | 1201/1505 [18:13:49<1:48:04, 21.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 80%|███████▉ | 1202/1505 [18:13:52<1:19:24, 15.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 80%|███████▉ | 1203/1505 [18:14:01<1:08:14, 13.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 80%|████████ | 1204/1505 [18:14:20<1:16:05, 15.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 80%|████████ | 1205/1505 [18:14:48<1:36:22, 19.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 80%|████████ | 1206/1505 [18:15:07<1:34:32, 18.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 80%|████████ | 1207/1505 [18:20:23<8:57:26, 108.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 80%|████████ | 1208/1505 [18:20:28<6:21:39, 77.10s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 80%|████████ | 1209/1505 [18:23:02<8:14:30, 100.24s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 80%|████████ | 1210/1505 [18:23:24<6:17:14, 76.73s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Strike (1925).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 80%|████████ | 1211/1505 [18:23:31<4:34:22, 56.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 81%|████████ | 1212/1505 [18:23:46<3:32:49, 43.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 81%|████████ | 1213/1505 [18:23:50<2:34:09, 31.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Struggling on CRAZY roots in Kranjska Gora- Vlog 10- 2018.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 81%|████████ | 1214/1505 [18:24:03<2:06:12, 26.02s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 81%|████████ | 1215/1505 [18:24:11<1:40:16, 20.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 81%|████████ | 1216/1505 [18:24:17<1:18:28, 16.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 81%|████████ | 1217/1505 [18:24:23<1:03:30, 13.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 81%|████████ | 1218/1505 [18:24:29<52:42, 11.02s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 81%|████████ | 1219/1505 [18:28:14<5:59:02, 75.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 81%|████████ | 1220/1505 [18:28:27<4:28:15, 56.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 81%|████████ | 1221/1505 [18:28:29<3:10:16, 40.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Suggested edits module.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 81%|████████ | 1222/1505 [18:28:34<2:20:18, 29.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 81%|████████▏ | 1223/1505 [18:30:12<3:55:30, 50.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 81%|████████▏ | 1224/1505 [18:31:49<4:59:56, 64.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 81%|████████▏ | 1225/1505 [18:31:59<3:43:37, 47.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 81%|████████▏ | 1226/1505 [18:32:02<2:39:44, 34.35s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 82%|████████▏ | 1227/1505 [18:32:37<2:41:05, 34.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 82%|████████▏ | 1228/1505 [18:32:39<1:54:53, 24.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 82%|████████▏ | 1229/1505 [18:32:49<1:33:24, 20.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 82%|████████▏ | 1230/1505 [18:32:56<1:15:17, 16.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 82%|████████▏ | 1231/1505 [18:33:04<1:02:42, 13.73s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 82%|████████▏ | 1232/1505 [18:34:42<2:57:30, 39.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 82%|████████▏ | 1233/1505 [18:34:46<2:09:28, 28.56s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 82%|████████▏ | 1234/1505 [18:34:50<1:36:09, 21.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 82%|████████▏ | 1235/1505 [18:34:58<1:18:05, 17.35s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 82%|████████▏ | 1236/1505 [18:35:04<1:01:33, 13.73s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 82%|████████▏ | 1237/1505 [18:35:08<49:32, 11.09s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 82%|████████▏ | 1238/1505 [18:35:13<41:00, 9.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 82%|████████▏ | 1239/1505 [18:35:17<33:19, 7.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 82%|████████▏ | 1240/1505 [18:35:33<44:35, 10.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 82%|████████▏ | 1241/1505 [18:35:38<37:14, 8.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 83%|████████▎ | 1242/1505 [18:35:43<33:42, 7.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 83%|████████▎ | 1243/1505 [18:35:46<26:53, 6.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 83%|████████▎ | 1244/1505 [18:35:48<21:05, 4.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 83%|████████▎ | 1245/1505 [18:35:50<17:00, 3.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 83%|████████▎ | 1246/1505 [18:35:51<14:07, 3.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 83%|████████▎ | 1247/1505 [18:35:54<13:49, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 83%|████████▎ | 1248/1505 [18:35:58<13:51, 3.23s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 83%|████████▎ | 1249/1505 [18:35:59<11:39, 2.73s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 83%|████████▎ | 1250/1505 [18:36:03<12:53, 3.03s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 83%|████████▎ | 1251/1505 [18:36:09<16:57, 4.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 83%|████████▎ | 1252/1505 [18:36:16<20:52, 4.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 83%|████████▎ | 1253/1505 [18:36:20<19:05, 4.54s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 83%|████████▎ | 1254/1505 [18:36:23<16:35, 3.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 83%|████████▎ | 1255/1505 [18:36:32<22:40, 5.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 83%|████████▎ | 1256/1505 [18:36:33<18:00, 4.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 84%|████████▎ | 1257/1505 [18:36:35<14:54, 3.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 84%|████████▎ | 1258/1505 [18:36:42<18:17, 4.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 84%|████████▎ | 1259/1505 [18:37:02<37:20, 9.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 84%|████████▎ | 1260/1505 [18:37:16<44:02, 10.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 84%|████████▍ | 1261/1505 [18:37:40<1:00:04, 14.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 84%|████████▍ | 1262/1505 [18:37:55<59:39, 14.73s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 84%|████████▍ | 1263/1505 [18:38:02<50:04, 12.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 84%|████████▍ | 1264/1505 [18:38:19<54:57, 13.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 84%|████████▍ | 1265/1505 [18:38:25<45:47, 11.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 84%|████████▍ | 1266/1505 [18:38:28<35:43, 8.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Symptoms in Schizophrenia (Silent) (Pennsylvania State College, 1938).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 84%|████████▍ | 1267/1505 [18:38:32<29:28, 7.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 84%|████████▍ | 1268/1505 [18:38:50<42:03, 10.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 84%|████████▍ | 1269/1505 [18:39:00<40:38, 10.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 84%|████████▍ | 1270/1505 [18:39:09<39:34, 10.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 84%|████████▍ | 1271/1505 [18:39:11<29:39, 7.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 85%|████████▍ | 1272/1505 [18:39:13<22:42, 5.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 85%|████████▍ | 1273/1505 [18:39:37<43:56, 11.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 85%|████████▍ | 1274/1505 [18:39:43<37:12, 9.66s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 85%|████████▍ | 1275/1505 [18:39:44<27:49, 7.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 85%|████████▍ | 1276/1505 [18:41:05<1:51:40, 29.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 85%|████████▍ | 1277/1505 [18:41:13<1:26:55, 22.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 85%|████████▍ | 1278/1505 [18:41:23<1:11:56, 19.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 85%|████████▍ | 1279/1505 [18:41:46<1:16:38, 20.35s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 85%|████████▌ | 1280/1505 [18:41:52<59:59, 16.00s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 85%|████████▌ | 1281/1505 [18:42:08<58:55, 15.78s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 85%|████████▌ | 1282/1505 [18:42:18<52:29, 14.12s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 85%|████████▌ | 1283/1505 [18:42:46<1:08:11, 18.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 85%|████████▌ | 1284/1505 [18:43:04<1:07:07, 18.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 85%|████████▌ | 1285/1505 [18:43:26<1:10:48, 19.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 85%|████████▌ | 1286/1505 [18:43:54<1:20:16, 21.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 86%|████████▌ | 1287/1505 [18:44:03<1:06:02, 18.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 86%|████████▌ | 1288/1505 [18:44:14<57:19, 15.85s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 86%|████████▌ | 1289/1505 [18:44:20<46:43, 12.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 86%|████████▌ | 1290/1505 [18:45:24<1:41:30, 28.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 86%|████████▌ | 1291/1505 [18:46:55<2:47:37, 47.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 86%|████████▌ | 1292/1505 [18:47:09<2:12:16, 37.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 86%|████████▌ | 1293/1505 [18:47:13<1:36:28, 27.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 86%|████████▌ | 1294/1505 [18:47:19<1:13:24, 20.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 86%|████████▌ | 1295/1505 [18:47:36<1:09:04, 19.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 86%|████████▌ | 1296/1505 [18:47:50<1:02:24, 17.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 86%|████████▌ | 1297/1505 [18:48:00<53:44, 15.50s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 86%|████████▌ | 1298/1505 [18:48:08<45:39, 13.24s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 86%|████████▋ | 1299/1505 [18:48:17<40:56, 11.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 86%|████████▋ | 1300/1505 [18:48:24<36:29, 10.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 86%|████████▋ | 1301/1505 [18:49:24<1:25:41, 25.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 87%|████████▋ | 1302/1505 [18:49:37<1:13:02, 21.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 87%|████████▋ | 1303/1505 [18:49:49<1:03:29, 18.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 87%|████████▋ | 1304/1505 [18:50:10<1:04:36, 19.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 87%|████████▋ | 1305/1505 [18:50:26<1:01:16, 18.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 87%|████████▋ | 1306/1505 [18:51:23<1:39:16, 29.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 87%|████████▋ | 1307/1505 [18:52:43<2:28:12, 44.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 87%|████████▋ | 1308/1505 [18:54:10<3:09:41, 57.78s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 87%|████████▋ | 1309/1505 [18:54:18<2:19:37, 42.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 87%|████████▋ | 1310/1505 [18:54:35<1:54:09, 35.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 87%|████████▋ | 1311/1505 [18:54:53<1:36:13, 29.76s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 87%|████████▋ | 1312/1505 [18:55:29<1:42:28, 31.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 87%|████████▋ | 1313/1505 [18:56:08<1:48:36, 33.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 87%|████████▋ | 1314/1505 [18:56:15<1:22:33, 25.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 87%|████████▋ | 1315/1505 [18:56:19<1:01:18, 19.36s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 87%|████████▋ | 1316/1505 [18:56:25<48:07, 15.28s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 88%|████████▊ | 1317/1505 [18:57:07<1:12:50, 23.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 88%|████████▊ | 1318/1505 [18:57:12<55:40, 17.87s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 88%|████████▊ | 1319/1505 [18:57:45<1:09:11, 22.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 88%|████████▊ | 1320/1505 [18:57:47<49:48, 16.15s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 88%|████████▊ | 1321/1505 [18:57:49<36:39, 11.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 88%|████████▊ | 1322/1505 [18:57:56<31:55, 10.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 88%|████████▊ | 1323/1505 [18:58:09<34:32, 11.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 88%|████████▊ | 1324/1505 [18:58:23<36:18, 12.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 88%|████████▊ | 1325/1505 [18:58:53<52:21, 17.45s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 88%|████████▊ | 1326/1505 [18:59:21<1:00:58, 20.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 88%|████████▊ | 1327/1505 [18:59:24<45:17, 15.27s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 88%|████████▊ | 1328/1505 [18:59:26<33:54, 11.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 88%|████████▊ | 1329/1505 [18:59:48<42:18, 14.43s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 88%|████████▊ | 1330/1505 [18:59:58<38:45, 13.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 88%|████████▊ | 1331/1505 [19:00:13<39:48, 13.72s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 89%|████████▊ | 1332/1505 [19:00:15<29:18, 10.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 89%|████████▊ | 1333/1505 [19:00:17<22:19, 7.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 89%|████████▊ | 1334/1505 [19:00:25<22:39, 7.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 89%|████████▊ | 1335/1505 [19:00:32<20:56, 7.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 89%|████████▉ | 1336/1505 [19:00:35<17:36, 6.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 89%|████████▉ | 1337/1505 [19:00:39<15:25, 5.51s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 89%|████████▉ | 1338/1505 [19:00:44<15:12, 5.46s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 89%|████████▉ | 1339/1505 [19:00:49<14:39, 5.30s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 89%|████████▉ | 1340/1505 [19:00:54<14:02, 5.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 89%|████████▉ | 1341/1505 [19:04:06<2:47:16, 61.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 89%|████████▉ | 1342/1505 [19:06:36<3:58:40, 87.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 89%|████████▉ | 1343/1505 [19:08:44<4:29:23, 99.78s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 89%|████████▉ | 1344/1505 [19:09:35<3:48:25, 85.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 89%|████████▉ | 1345/1505 [19:09:42<2:44:49, 61.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 89%|████████▉ | 1346/1505 [19:11:36<3:25:07, 77.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 90%|████████▉ | 1347/1505 [19:11:42<2:27:44, 56.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 90%|████████▉ | 1348/1505 [19:13:04<2:46:38, 63.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 90%|████████▉ | 1349/1505 [19:13:16<2:05:32, 48.28s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 90%|████████▉ | 1350/1505 [19:13:33<1:40:46, 39.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 90%|████████▉ | 1351/1505 [19:13:41<1:15:45, 29.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 90%|████████▉ | 1352/1505 [19:13:47<57:32, 22.57s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 90%|████████▉ | 1353/1505 [19:15:59<2:20:09, 55.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 90%|████████▉ | 1354/1505 [19:16:53<2:18:44, 55.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 90%|█████████ | 1355/1505 [19:17:10<1:49:07, 43.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 90%|█████████ | 1356/1505 [19:17:15<1:19:27, 32.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 90%|█████████ | 1357/1505 [19:17:29<1:05:40, 26.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 90%|█████████ | 1358/1505 [19:17:43<55:56, 22.83s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 90%|█████████ | 1359/1505 [19:19:25<1:53:22, 46.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 90%|█████████ | 1360/1505 [19:19:30<1:22:25, 34.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 90%|█████████ | 1361/1505 [19:19:52<1:12:52, 30.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 90%|█████████ | 1362/1505 [19:20:12<1:05:28, 27.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 91%|█████████ | 1363/1505 [19:20:19<50:26, 21.32s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 91%|█████████ | 1364/1505 [19:20:37<47:14, 20.11s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 91%|█████████ | 1365/1505 [19:20:46<39:12, 16.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 91%|█████████ | 1366/1505 [19:22:53<1:55:32, 49.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 91%|█████████ | 1367/1505 [19:23:22<1:40:07, 43.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 91%|█████████ | 1368/1505 [19:23:50<1:29:08, 39.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 91%|█████████ | 1369/1505 [19:23:59<1:08:06, 30.05s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 91%|█████████ | 1370/1505 [19:24:05<51:00, 22.67s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 91%|█████████ | 1371/1505 [19:24:18<44:18, 19.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 91%|█████████ | 1372/1505 [19:25:58<1:37:29, 43.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 91%|█████████ | 1373/1505 [19:28:10<2:34:54, 70.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 91%|█████████▏| 1374/1505 [19:28:41<2:07:36, 58.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 91%|█████████▏| 1375/1505 [19:30:07<2:24:47, 66.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 91%|█████████▏| 1376/1505 [19:32:05<2:56:49, 82.24s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 91%|█████████▏| 1377/1505 [19:32:42<2:26:19, 68.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 92%|█████████▏| 1378/1505 [19:33:03<1:55:07, 54.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 92%|█████████▏| 1379/1505 [19:33:36<1:40:32, 47.88s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 92%|█████████▏| 1380/1505 [19:34:23<1:38:55, 47.49s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 92%|█████████▏| 1381/1505 [19:35:22<1:45:33, 51.07s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 92%|█████████▏| 1382/1505 [19:36:41<2:01:58, 59.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 92%|█████████▏| 1383/1505 [19:39:06<2:52:43, 84.95s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 92%|█████████▏| 1384/1505 [19:39:49<2:26:20, 72.57s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 92%|█████████▏| 1385/1505 [19:40:27<2:04:24, 62.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 92%|█████████▏| 1386/1505 [19:40:31<1:28:43, 44.73s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 92%|█████████▏| 1387/1505 [19:41:14<1:26:55, 44.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 92%|█████████▏| 1388/1505 [19:41:27<1:07:39, 34.69s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 92%|█████████▏| 1389/1505 [19:42:00<1:05:59, 34.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Frozen North (1922).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 92%|█████████▏| 1390/1505 [19:42:39<1:08:37, 35.81s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 92%|█████████▏| 1391/1505 [19:44:02<1:34:55, 49.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 92%|█████████▏| 1392/1505 [19:44:12<1:11:33, 38.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 93%|█████████▎| 1393/1505 [19:44:53<1:12:41, 38.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The General (1926).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 93%|█████████▎| 1394/1505 [19:44:58<52:39, 28.47s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 93%|█████████▎| 1395/1505 [19:45:11<43:52, 23.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 93%|█████████▎| 1396/1505 [19:45:19<34:41, 19.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Girl with a Hatbox (1927).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 93%|█████████▎| 1397/1505 [19:45:38<34:26, 19.13s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 93%|█████████▎| 1398/1505 [19:45:50<30:12, 16.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 93%|█████████▎| 1399/1505 [19:45:52<22:18, 12.63s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Great Train Robbery (1903) - yt.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 93%|█████████▎| 1400/1505 [19:46:30<35:06, 20.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 93%|█████████▎| 1401/1505 [19:46:46<33:02, 19.06s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 93%|█████████▎| 1402/1505 [19:46:58<28:52, 16.82s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 93%|█████████▎| 1403/1505 [19:47:43<43:02, 25.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Hunchback of Notre Dame (1923).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 93%|█████████▎| 1404/1505 [19:47:56<36:22, 21.61s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 93%|█████████▎| 1405/1505 [19:48:06<29:54, 17.94s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 93%|█████████▎| 1406/1505 [19:48:14<25:04, 15.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 93%|█████████▎| 1407/1505 [19:48:22<21:10, 12.97s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 94%|█████████▎| 1408/1505 [19:48:30<18:45, 11.60s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 94%|█████████▎| 1409/1505 [19:48:36<15:53, 9.93s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 94%|█████████▎| 1410/1505 [19:48:43<13:56, 8.80s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 94%|█████████▍| 1411/1505 [19:48:52<13:51, 8.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 94%|█████████▍| 1412/1505 [19:49:01<13:55, 8.99s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 94%|█████████▍| 1413/1505 [19:49:12<14:36, 9.53s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 94%|█████████▍| 1414/1505 [19:49:25<16:11, 10.67s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 94%|█████████▍| 1415/1505 [19:49:34<15:03, 10.04s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 94%|█████████▍| 1416/1505 [19:49:41<13:54, 9.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 94%|█████████▍| 1417/1505 [19:49:53<14:30, 9.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 94%|█████████▍| 1418/1505 [19:50:01<13:54, 9.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 94%|█████████▍| 1419/1505 [19:50:15<15:16, 10.66s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 94%|█████████▍| 1420/1505 [19:50:28<16:08, 11.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 94%|█████████▍| 1421/1505 [19:50:39<15:52, 11.34s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 94%|█████████▍| 1422/1505 [19:50:46<13:57, 10.09s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 95%|█████████▍| 1423/1505 [19:50:54<12:49, 9.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 95%|█████████▍| 1424/1505 [19:51:03<12:42, 9.41s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 95%|█████████▍| 1425/1505 [19:52:40<47:26, 35.58s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 95%|█████████▍| 1426/1505 [19:53:06<43:15, 32.85s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 95%|█████████▍| 1427/1505 [19:55:13<1:19:07, 60.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 95%|█████████▍| 1428/1505 [19:55:52<1:09:42, 54.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 95%|█████████▍| 1429/1505 [19:58:16<1:42:59, 81.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 95%|█████████▌| 1430/1505 [20:02:25<2:44:26, 131.55s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 95%|█████████▌| 1431/1505 [20:02:33<1:56:26, 94.42s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 95%|█████████▌| 1432/1505 [20:03:03<1:31:27, 75.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 95%|█████████▌| 1433/1505 [20:03:11<1:06:12, 55.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Little Minister (1921).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 95%|█████████▌| 1434/1505 [20:03:26<50:47, 42.92s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 95%|█████████▌| 1435/1505 [20:03:44<41:33, 35.62s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 95%|█████████▌| 1436/1505 [20:04:09<37:14, 32.38s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 95%|█████████▌| 1437/1505 [20:04:18<28:34, 25.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Magic Cloak of Oz (1914).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 96%|█████████▌| 1438/1505 [20:10:26<2:23:15, 128.29s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 96%|█████████▌| 1439/1505 [20:10:32<1:40:34, 91.44s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 96%|█████████▌| 1440/1505 [20:12:10<1:41:10, 93.39s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 96%|█████████▌| 1441/1505 [20:12:21<1:13:15, 68.68s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 96%|█████████▌| 1442/1505 [20:12:27<52:23, 49.89s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 96%|█████████▌| 1443/1505 [20:12:32<37:38, 36.42s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 96%|█████████▌| 1444/1505 [20:17:01<1:48:00, 106.24s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 96%|█████████▌| 1445/1505 [20:20:09<2:10:54, 130.91s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 96%|█████████▌| 1446/1505 [20:20:16<1:31:54, 93.46s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 96%|█████████▌| 1447/1505 [20:20:23<1:05:23, 67.65s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 96%|█████████▌| 1448/1505 [20:20:32<47:35, 50.10s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 96%|█████████▋| 1449/1505 [20:20:58<39:51, 42.70s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 96%|█████████▋| 1450/1505 [20:21:17<32:50, 35.83s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 96%|█████████▋| 1451/1505 [20:21:24<24:23, 27.10s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 96%|█████████▋| 1452/1505 [20:21:30<18:19, 20.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 97%|█████████▋| 1453/1505 [20:21:44<16:14, 18.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Phantom of the Opera (1925).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 97%|█████████▋| 1454/1505 [20:22:08<17:12, 20.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 97%|█████████▋| 1455/1505 [20:22:20<14:54, 17.89s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 97%|█████████▋| 1456/1505 [20:22:29<12:25, 15.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 97%|█████████▋| 1457/1505 [20:22:51<13:43, 17.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 97%|█████████▋| 1458/1505 [20:24:02<26:03, 33.26s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 97%|█████████▋| 1459/1505 [20:26:30<51:55, 67.74s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 97%|█████████▋| 1460/1505 [20:27:26<48:07, 64.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 97%|█████████▋| 1461/1505 [20:28:47<50:44, 69.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 97%|█████████▋| 1462/1505 [20:30:00<50:31, 70.50s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 97%|█████████▋| 1463/1505 [20:30:30<40:54, 58.44s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 97%|█████████▋| 1464/1505 [20:31:54<45:02, 65.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 97%|█████████▋| 1465/1505 [20:32:24<36:46, 55.16s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 97%|█████████▋| 1466/1505 [20:33:23<36:38, 56.37s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 97%|█████████▋| 1467/1505 [20:34:24<36:38, 57.86s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 98%|█████████▊| 1468/1505 [20:35:16<34:31, 55.98s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 98%|█████████▊| 1469/1505 [20:37:11<44:09, 73.59s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 98%|█████████▊| 1470/1505 [20:40:11<1:01:33, 105.54s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 98%|█████████▊| 1471/1505 [20:43:31<1:15:58, 134.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 98%|█████████▊| 1472/1505 [20:44:14<58:35, 106.52s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 98%|█████████▊| 1473/1505 [20:45:08<48:22, 90.72s/it] " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 98%|█████████▊| 1474/1505 [20:45:37<37:22, 72.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 98%|█████████▊| 1475/1505 [20:46:41<34:51, 69.70s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 98%|█████████▊| 1476/1505 [20:46:51<25:05, 51.90s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 98%|█████████▊| 1477/1505 [20:47:49<25:07, 53.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 98%|█████████▊| 1478/1505 [20:48:11<19:56, 44.33s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 98%|█████████▊| 1479/1505 [20:48:24<15:03, 34.77s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 98%|█████████▊| 1480/1505 [20:50:09<23:19, 55.96s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 98%|█████████▊| 1481/1505 [20:50:53<20:54, 52.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 98%|█████████▊| 1482/1505 [20:51:25<17:39, 46.08s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 99%|█████████▊| 1483/1505 [20:51:40<13:32, 36.92s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The lure of drink (1915).webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 99%|█████████▊| 1484/1505 [20:51:49<09:58, 28.52s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tielingxi Railway Station Ticket Gate waiting hall 01.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 99%|█████████▊| 1485/1505 [20:52:40<11:45, 35.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tielingxi Railway Station Ticket Gate waiting hall 02.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 99%|█████████▊| 1486/1505 [20:52:44<08:11, 25.87s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Time-lapse Earth Flyover from NASA Astronaut in Space.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 99%|█████████▉| 1487/1505 [20:52:57<06:36, 22.01s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tram 1 timelapse -- Ring, Volkstheater - Paulanergasse.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 99%|█████████▉| 1488/1505 [20:53:00<04:36, 16.27s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tyndalls's bar breaker experiment.mpg\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 99%|█████████▉| 1489/1505 [20:53:01<03:09, 11.84s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Type in Telugu on Telugu Wikimedia projects.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 99%|█████████▉| 1490/1505 [20:53:03<02:11, 8.75s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Type in Telugu on Telugu Wikipedia.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 99%|█████████▉| 1491/1505 [20:53:05<01:35, 6.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Using suggested edits module.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 99%|█████████▉| 1492/1505 [20:53:09<01:18, 6.00s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Van Allen Belts.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 99%|█████████▉| 1493/1505 [20:53:11<00:55, 4.60s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Vdubtestrgbcube4secs ifps12fr12 q10.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 99%|█████████▉| 1494/1505 [20:54:21<04:27, 24.31s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Visit of the Mengerbulb I Evolution 20200211 2880p50 color.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 99%|█████████▉| 1495/1505 [20:54:39<03:44, 22.48s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Visualisierung der Liste der Berge nach Dominanz Stand Oktober 2020.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 99%|█████████▉| 1496/1505 [20:54:41<02:26, 16.32s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WPCleaner - Installation Win10.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 99%|█████████▉| 1497/1505 [20:54:45<01:39, 12.47s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WikiJournal PDF formatting.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "100%|█████████▉| 1498/1505 [20:54:46<01:04, 9.25s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Wikipassport - how to fold it.ogv\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "100%|█████████▉| 1499/1505 [20:54:52<00:49, 8.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Worth It Or Not- Fall Collection 4.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "100%|█████████▉| 1500/1505 [20:54:57<00:36, 7.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "100%|█████████▉| 1501/1505 [20:55:38<01:08, 17.22s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "100%|█████████▉| 1502/1505 [20:58:20<03:02, 60.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "100%|█████████▉| 1503/1505 [20:58:24<01:27, 43.79s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + "100%|█████████▉| 1504/1505 [20:58:28<00:31, 31.73s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "success\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|██████████| 1505/1505 [20:58:29<00:00, 50.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "航拍对比武汉火神山医院施工3天进度.webm\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\n" + ] + } + ], + "source": [ + "import pathlib\n", + "import subprocess\n", + "import os\n", + "from tqdm import tqdm\n", + "from datetime import timedelta\n", + "\n", + "def download_blob(bucket_name, source_blob_name, destination_file_name):\n", + " \"\"\"Downloads a blob from the bucket.\"\"\"\n", + "\n", + " storage_client = storage.Client()\n", + " bucket = storage_client.bucket(bucket_name)\n", + " blob = bucket.blob(source_blob_name)\n", + " downloads_folder = pathlib.Path.cwd()\n", + " file = downloads_folder.joinpath(destination_file_name)\n", + "\n", + " blob.download_to_filename(file)\n", + "\n", + "def change_format(file_name):\n", + " subprocess.run(f'ffmpeg -vn -sn -i {file_name} temp.flac',shell=True)\n", + " \n", + "def split_with_last_dot(string):\n", + " for character in range(len(string)-1,0,-1):\n", + " if string[character]==\".\":\n", + " left = string[:character]\n", + " right = string[character+1:]\n", + " return [left,right]\n", + " \n", + "def upload_file_gcp(file_name, file_type): \n", + " # Initiate names\n", + " project_id = 'the-peoples-speech' # Your Project ID\n", + " bucket_name = 'wikimedia_commons' # Name of bucket\n", + " bucket_file = f'{file_type}/{file_name}' # Location of the file on Bucket\n", + " local_file = f'temp.flac' # Location of downloaded file on your PC\n", + "\n", + " # Set Credential\n", + " os.environ[\"GOOGLE_APPLICATION_CREDENTIALS\"] = \"the-peoples-speech-ee8163e65ace.json\"\n", + " client = storage.Client(project_id)\n", + " bucket = client.get_bucket(bucket_name)\n", + " blob = bucket.blob(bucket_file)\n", + " blob.upload_from_filename(local_file)\n", + " signed_url = blob.generate_signed_url(\n", + " version=\"v4\",\n", + " expiration=timedelta(seconds=200),\n", + " method=\"GET\")\n", + "\n", + "with open(r\"fail_reformat.txt\", 'r') as fp:\n", + " x = fp.readlines()\n", + " \n", + "actual_video = 70 \n", + "for missing_file in tqdm(x):\n", + " missing_file_converted = f\"raw_videos/{missing_file}\"[:-6]\n", + " for i in range(70,len(files_list)):\n", + " if files_list[i].name==missing_file_converted:\n", + " file = files_list[i]\n", + " file_name ,ext = split_with_last_dot(file.name)\n", + " actual_video = i\n", + " try:\n", + " download_blob(\"wikimedia_commons\", file.name, f\"temp.{ext}\")\n", + " if ext != \"flac\":\n", + " change_format(f\"'temp.{ext}'\")\n", + " upload_file_gcp(f\"{file_name[11:]}.flac\", \"reformat\")\n", + " if ext != \"flac\":\n", + " os.remove(f'temp.{ext}')\n", + " os.remove(f'temp.flac')\n", + " f = open(\"new_reformat.txt\", \"a\")\n", + " f.write(f\"{file_name[11:]}.flac\\n\")\n", + " f.close()\n", + " print(\"success\")\n", + " except:\n", + " f = open(\"new_fail_reformat.txt\", \"a\")\n", + " f.write(f\"{file.name[11:]}.flac\\n\")\n", + " f.close()\n", + " print(file.name[11:])\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 69, + "id": "97f9535d", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "True\n", + "raw_videos/'Principle and Pragmatism in Developing Private Law'- 2019 Cambridge Freshfields Lecture.webm\n" + ] + } + ], + "source": [ + "print(f\"raw_videos/{x[0]}\"[:-6]==files_list[73].name)\n", + "print(files_list[73].name)" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "id": "52f69efd", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "raw_videos/'Principle and Pragmatism in Developing Private Law'- 2019 Cambridge Freshfields Lecture.webm\n", + "raw_videos/'Principle and Pragmatism in Developing Private Law'- 2019 Cambridge Freshfields Lecture.webm\n" + ] + } + ], + "source": [ + "print(files_list[73].name)\n", + "print(f\"raw_videos/{x[0]}\"[:-6])" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "e88e56b7", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total no reformated: 182\n" + ] + } + ], + "source": [ + "with open(r\"new_fail_reformat.txt\", 'r') as fp:\n", + " x = len(fp.readlines())\n", + " print('Total no reformated:', x) # 8" + ] + }, + { + "cell_type": "markdown", + "id": "a8862569", + "metadata": {}, + "source": [ + "# Fix bytes" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "0f6d45ef", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'✔ No problems'" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import ftfy\n", + "ftfy.fix_text('✔ No problems')" + ] + }, + { + "cell_type": "markdown", + "id": "b58f1486", + "metadata": {}, + "source": [ + "# Get sorce lenguaje " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "996daf6a", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "f055f3bc", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'da'" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from langdetect import detect, DetectorFactory\n", + "DetectorFactory.seed = 0\n", + "detect('dfvsdfvgfv')" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "ed5bf295", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "('da', -15.09029245376587)" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import langid\n", + "langid.classify(\"sdfvsdfvfv fd vwrfvwef ef dssf fg fgd\")\n", + "# ('en', -54.41310358047485)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "id": "31dd6d7e", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "key =[]\n", + "text=[]\n", + "for i in previous_json:\n", + " if \"text\" in i.keys() and \"page\" in i.keys():\n", + " if \"title\" in i[\"page\"]:\n", + " key.append(i[\"page\"][\"title\"])\n", + " text.append(ftfy.fix_text(i[\"text\"]))\n", + " \n", + "df = pd.DataFrame()\n", + "df[\"key\"]=key\n", + "df[\"text\"]=text\n" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "id": "890733de", + "metadata": {}, + "outputs": [], + "source": [ + "df.to_csv(\"deduplication.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "1d638e28", + "metadata": {}, + "outputs": [], + "source": [ + "diferentes = []\n", + "for i in range(len(text)):\n", + " if ftfy.fix_text(text[i])!=text[i]:\n", + " diferentes.append(i)" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "id": "023ef0fe", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "28" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "############# ESTE ES PARA TRANSCRIPCIONES ###############\n", + "\n", + "import ftfy\n", + "from pyWikiCommons import pyWikiCommons\n", + "import requests\n", + "import os\n", + "from google.cloud import storage\n", + "from datetime import timedelta\n", + "import os\n", + "from tqdm import tqdm\n", + "\n", + "\n", + "# Esto solo sirve para .webm\n", + "def change_format(file_name):\n", + " import subprocess\n", + " changed_filename = os.rename(file_name, \"temp.webm\")\n", + " subprocess.run(f'ffmpeg -i \"temp.webm\" {file_name}.mp3',shell=True)\n", + " \n", + "def download_file(url,file_name):\n", + " headers = {'User-Agent': 'CoolBot/0.0 (https://example.org/coolbot/; coolbot@example.org)'}\n", + " with requests.get(url, stream=True, headers=headers) as r:\n", + " r.raise_for_status()\n", + " with open(file_name, 'wb') as f:\n", + " for chunk in r.iter_content(chunk_size=8192): \n", + " f.write(chunk)\n", + " return file_name\n", + "\n", + "def split_with_last_dot(string):\n", + " for character in range(len(string)-1,0,-1):\n", + " if string[character]==\".\":\n", + " left = string[:character]\n", + " right = string[character+1:]\n", + " return [left,right]\n", + "\n", + "def upload_file_gcp(file_name, file_type): \n", + " # Initiate names\n", + " project_id = 'the-peoples-speech' # Your Project ID\n", + " bucket_name = 'wikimedia_commons' # Name of bucket\n", + " bucket_file = f'{file_type}/{file_name}' # Location of the file on Bucket\n", + " local_file = f'{file_name}' # Location of downloaded file on your PC\n", + "\n", + " # Set Credential\n", + " os.environ[\"GOOGLE_APPLICATION_CREDENTIALS\"] = \"the-peoples-speech-ee8163e65ace.json\"\n", + " client = storage.Client(project_id)\n", + " bucket = client.get_bucket(bucket_name)\n", + " blob = bucket.blob(bucket_file)\n", + " blob.upload_from_filename(local_file)\n", + " signed_url = blob.generate_signed_url(\n", + " version=\"v4\",\n", + " expiration=timedelta(seconds=60),\n", + " method=\"GET\")\n", + "\n", + "\n", + " \n", + "counter = 0\n", + "database = {}\n", + "for i in tqdm(range(len(previous_json))):\n", + " link = previous_json[i][\"page\"][\"title\"]\n", + " dots = 0\n", + " try:\n", + " if len(link.split(\".\"))>2:\n", + " left,_ = split_with_last_dot(link)\n", + " true_link, _ = split_with_last_dot(left)\n", + "\n", + "\n", + " with open(link, 'w') as f:\n", + " f.write(ftfy.fix_text(previous_json[i][\"text\"]))\n", + " upload_file_gcp(link, \"transcription\")\n", + " os.remove(link) \n", + "\n", + " if true_link in database.keys():\n", + " database[true_link].append(link)\n", + " else:\n", + " database[true_link] = [link]\n", + " try:\n", + " f = open(\"uploaded.txt\", \"a\")\n", + " f.write(f\"{i},{true_link}\\n\")\n", + " f.close()\n", + " except:\n", + " f = open(\"error.txt\", \"a\")\n", + " f.write(f\"{i},{true_link}\\n\")\n", + " f.close()\n", + " else:\n", + " print(i)\n", + " except:\n", + " print(i)" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "id": "d2943de2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'1\\n00:00:15,042 --> 00:00:18,042\\nAqui, à esquerda podemos ver\\x85\\n\\n2\\n00:00:18,792 --> 00:00:20,333\\nÀ direita, podemos ver o \\x85\\n\\n3\\n00:00:20,417 --> 00:00:21,958\\n\\x85 o decaptador.\\n\\n4\\n00:00:22,000 --> 00:00:24,667\\nEstá tudo seguro.\\nPerfeitamente seguro.\\n\\n5\\n00:00:24,667 --> 00:00:25,667\\nEmo...\\n\\n6\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n7\\n00:00:28,917 --> 00:00:30,250\\nCuidado!\\n\\n8\\n00:00:46,750 --> 00:00:47,875\\nVocê se machucou?\\n\\n9\\n00:00:51,958 --> 00:00:53,958\\nAcho que não... e você?\\n\\n10\\n00:00:55,667 --> 00:00:57,125\\nEstou bem.\\n\\n11\\n00:00:57,625 --> 00:01:01,708\\nLevante-se, Emo,\\nnão é seguro ficarmos aqui.\\n\\n12\\n00:01:02,208 --> 00:01:03,708\\nVamos lá.\\n\\n13\\n00:01:03,792 --> 00:01:05,792\\nE agora?\\n\\n14\\n00:01:06,083 --> 00:01:08,875\\nVocê verá...\\nVocê verá.\\n\\n15\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nPor Aqui.\\n\\n16\\n00:01:34,333 --> 00:01:35,625\\nSiga-me!\\n\\n17\\n00:02:11,625 --> 00:02:12,833\\nRápido, Emo.\\n\\n18\\n00:02:48,375 --> 00:02:50,083\\nVocê não está prestando atenção!\\n\\n19\\n00:02:50,792 --> 00:02:54,542\\nEu só quero atender o...\\n...telefone\\n\\n20\\n00:02:55,000 --> 00:02:58,208\\nEmo, olhe...\\n...quero dizer - ouça\\n\\n21\\n00:02:59,792 --> 00:03:02,292\\nVocê tem que aprender a ouvir.\\n\\n22\\n00:03:03,667 --> 00:03:05,125\\nIsto não é um jogo qualquer.\\n\\n23\\n00:03:06,167 --> 00:03:08,792\\nVocê... quero dizer... nós\\npoderíamos facilmente morrer aqui.\\n\\n24\\n00:03:10,208 --> 00:03:14,125\\nOuça.\\nOuça o som das máquinas.\\n\\n25\\n00:03:18,333 --> 00:03:20,417\\nOuça seu respirar\\n\\n26\\n00:04:27,208 --> 00:04:29,250\\nVocê não se cansa disso?\\n\\n27\\n00:04:29,625 --> 00:04:31,083\\nCansar?!?\\n\\n28\\n00:04:31,792 --> 00:04:34,708\\nA máquina é como as\\nengrenagens de um relógio.\\n\\n29\\n00:04:35,542 --> 00:04:37,750\\nUm movimento fora de lugar e...\\n\\n30\\n00:04:37,875 --> 00:04:39,833\\n...você é reduzido a pó.\\n\\n31\\n00:04:41,042 --> 00:04:42,375\\nMas isso não -\\n\\n32\\n00:04:42,417 --> 00:04:46,583\\nPó, Emo!\\nÉ isso que você quer? Pó?\\n\\n33\\n00:04:47,208 --> 00:04:50,000\\nEmo, é esse seu propósito na vida?\\n\\n34\\n00:04:50,625 --> 00:04:52,250\\nPó!\\n\\n35\\n00:05:41,375 --> 00:05:43,458\\nEmo, feche os seus olhos.\\n\\n36\\n00:05:44,667 --> 00:05:46,625\\nPor quê?\\n- Agora!\\n\\n37\\n00:05:53,792 --> 00:05:56,042\\nÓtimo.\\n\\n38\\n00:05:59,583 --> 00:06:02,833\\nO que você vê do seu lado esquerdo, Emo?\\n\\n39\\n00:06:04,125 --> 00:06:06,000\\nNada.\\n- Mesmo?\\n\\n40\\n00:06:06,333 --> 00:06:07,958\\nNada mesmo.\\n\\n41\\n00:06:08,042 --> 00:06:12,417\\nE à sua direita,\\nO que você vê à sua direita, Emo?\\n\\n42\\n00:06:13,917 --> 00:06:16,958\\nA mesma coisa Proog,\\nexatamente a mesma coisa...\\n\\n43\\n00:06:16,917 --> 00:06:18,417\\nNada!\\n\\n44\\n00:06:18,625 --> 00:06:19,375\\nÓtimo.\\n\\n45\\n00:06:40,667 --> 00:06:43,000\\nOuça Proog!\\nConsegue ouvir isso?\\n\\n46\\n00:06:43,667 --> 00:06:45,042\\nPodemos ir ali?\\n\\n47\\n00:06:45,208 --> 00:06:48,042\\nLá?\\nNão é seguro, Emo.\\n\\n48\\n00:06:49,958 --> 00:06:52,542\\nMas...\\n- Confie em mim, não é.\\n\\n49\\n00:06:53,292 --> 00:06:54,833\\nBem, e se Eu...\\n\\n50\\n00:06:54,875 --> 00:06:56,333\\nNão.\\n\\n51\\n00:06:57,458 --> 00:06:57,875\\nMas...\\n\\n52\\n00:06:57,708 --> 00:07:00,167\\nNÃO!\\n\\n53\\n00:07:00,917 --> 00:07:03,792\\nMais alguma pergunta, Emo?\\n\\n54\\n00:07:04,250 --> 00:07:05,958\\nNão.\\n\\n55\\n00:07:09,458 --> 00:07:10,875\\nEmo?\\n\\n56\\n00:07:11,917 --> 00:07:13,583\\nEmo, Por quê...\\n\\n57\\n00:07:13,625 --> 00:07:14,458\\nEmo...\\n\\n58\\n00:07:14,542 --> 00:07:18,542\\n...por quê você não consegue ver\\na beleza deste lugar?\\n\\n59\\n00:07:18,875 --> 00:07:20,792\\nA forma como ele funciona.\\n\\n60\\n00:07:20,917 --> 00:07:24,000\\nComo ele é perfeito.\\n\\n61\\n00:07:24,083 --> 00:07:27,417\\nNão, Proog, \\nEu não vejo!\\n\\n62\\n00:07:27,583 --> 00:07:30,333\\nEu não vejo porquê\\nnão tem nada aqui.\\n\\n63\\n00:07:31,542 --> 00:07:35,333\\nE porquê eu confiaria a minha vida\\na algo que nem está aqui?\\n\\n64\\n00:07:35,625 --> 00:07:37,125\\nConsegue responder?\\n\\n65\\n00:07:37,542 --> 00:07:39,167\\nResponda!\\n\\n66\\n00:07:43,208 --> 00:07:44,625\\nProog...\\n\\n67\\n00:07:45,542 --> 00:07:47,333\\nVocê é doente, cara!\\n\\n68\\n00:07:47,375 --> 00:07:49,208\\nFique longe de mim.\\n\\n69\\n00:07:52,625 --> 00:07:55,083\\nNão!! Emo! É uma armadilha!\\n\\n70\\n00:07:55,875 --> 00:07:57,167\\nÉ uma armadilha!\\n\\n71\\n00:07:57,208 --> 00:08:01,792\\nÀ sua esquerda você pode ver...\\nOs jardins suspensos da Babilônia!\\n\\n72\\n00:08:02,250 --> 00:08:04,292\\nQue tal isso como uma armadilha?\\n\\n73\\n00:08:05,458 --> 00:08:07,125\\nNão, Emo.\\n\\n74\\n00:08:09,417 --> 00:08:12,833\\nÀ sua direita, você pode ver...\\nadivinhe só!\\n\\n75\\n00:08:13,000 --> 00:08:14,792\\nO colosso de Rhodes!\\n\\n76\\n00:08:15,875 --> 00:08:16,750\\nNão!\\n\\n77\\n00:08:16,792 --> 00:08:22,167\\nO colosso de Rhodes e\\nestá aqui só para você, Proog.\\n\\n78\\n00:08:51,333 --> 00:08:53,167\\nEstá aqui!\\n\\n79\\n00:08:53,208 --> 00:08:55,542\\nEstou dizendo,\\nEmo...\\n\\n80\\n00:08:57,333 --> 00:09:00,000\\n...está.'" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "text[28]" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "id": "dd2a54cb", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'1\\n00:00:15,042 --> 00:00:18,042\\nAqui, à esquerda podemos ver…\\n\\n2\\n00:00:18,792 --> 00:00:20,333\\nÀ direita, podemos ver o …\\n\\n3\\n00:00:20,417 --> 00:00:21,958\\n… o decaptador.\\n\\n4\\n00:00:22,000 --> 00:00:24,667\\nEstá tudo seguro.\\nPerfeitamente seguro.\\n\\n5\\n00:00:24,667 --> 00:00:25,667\\nEmo...\\n\\n6\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n7\\n00:00:28,917 --> 00:00:30,250\\nCuidado!\\n\\n8\\n00:00:46,750 --> 00:00:47,875\\nVocê se machucou?\\n\\n9\\n00:00:51,958 --> 00:00:53,958\\nAcho que não... e você?\\n\\n10\\n00:00:55,667 --> 00:00:57,125\\nEstou bem.\\n\\n11\\n00:00:57,625 --> 00:01:01,708\\nLevante-se, Emo,\\nnão é seguro ficarmos aqui.\\n\\n12\\n00:01:02,208 --> 00:01:03,708\\nVamos lá.\\n\\n13\\n00:01:03,792 --> 00:01:05,792\\nE agora?\\n\\n14\\n00:01:06,083 --> 00:01:08,875\\nVocê verá...\\nVocê verá.\\n\\n15\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nPor Aqui.\\n\\n16\\n00:01:34,333 --> 00:01:35,625\\nSiga-me!\\n\\n17\\n00:02:11,625 --> 00:02:12,833\\nRápido, Emo.\\n\\n18\\n00:02:48,375 --> 00:02:50,083\\nVocê não está prestando atenção!\\n\\n19\\n00:02:50,792 --> 00:02:54,542\\nEu só quero atender o...\\n...telefone\\n\\n20\\n00:02:55,000 --> 00:02:58,208\\nEmo, olhe...\\n...quero dizer - ouça\\n\\n21\\n00:02:59,792 --> 00:03:02,292\\nVocê tem que aprender a ouvir.\\n\\n22\\n00:03:03,667 --> 00:03:05,125\\nIsto não é um jogo qualquer.\\n\\n23\\n00:03:06,167 --> 00:03:08,792\\nVocê... quero dizer... nós\\npoderíamos facilmente morrer aqui.\\n\\n24\\n00:03:10,208 --> 00:03:14,125\\nOuça.\\nOuça o som das máquinas.\\n\\n25\\n00:03:18,333 --> 00:03:20,417\\nOuça seu respirar\\n\\n26\\n00:04:27,208 --> 00:04:29,250\\nVocê não se cansa disso?\\n\\n27\\n00:04:29,625 --> 00:04:31,083\\nCansar?!?\\n\\n28\\n00:04:31,792 --> 00:04:34,708\\nA máquina é como as\\nengrenagens de um relógio.\\n\\n29\\n00:04:35,542 --> 00:04:37,750\\nUm movimento fora de lugar e...\\n\\n30\\n00:04:37,875 --> 00:04:39,833\\n...você é reduzido a pó.\\n\\n31\\n00:04:41,042 --> 00:04:42,375\\nMas isso não -\\n\\n32\\n00:04:42,417 --> 00:04:46,583\\nPó, Emo!\\nÉ isso que você quer? Pó?\\n\\n33\\n00:04:47,208 --> 00:04:50,000\\nEmo, é esse seu propósito na vida?\\n\\n34\\n00:04:50,625 --> 00:04:52,250\\nPó!\\n\\n35\\n00:05:41,375 --> 00:05:43,458\\nEmo, feche os seus olhos.\\n\\n36\\n00:05:44,667 --> 00:05:46,625\\nPor quê?\\n- Agora!\\n\\n37\\n00:05:53,792 --> 00:05:56,042\\nÓtimo.\\n\\n38\\n00:05:59,583 --> 00:06:02,833\\nO que você vê do seu lado esquerdo, Emo?\\n\\n39\\n00:06:04,125 --> 00:06:06,000\\nNada.\\n- Mesmo?\\n\\n40\\n00:06:06,333 --> 00:06:07,958\\nNada mesmo.\\n\\n41\\n00:06:08,042 --> 00:06:12,417\\nE à sua direita,\\nO que você vê à sua direita, Emo?\\n\\n42\\n00:06:13,917 --> 00:06:16,958\\nA mesma coisa Proog,\\nexatamente a mesma coisa...\\n\\n43\\n00:06:16,917 --> 00:06:18,417\\nNada!\\n\\n44\\n00:06:18,625 --> 00:06:19,375\\nÓtimo.\\n\\n45\\n00:06:40,667 --> 00:06:43,000\\nOuça Proog!\\nConsegue ouvir isso?\\n\\n46\\n00:06:43,667 --> 00:06:45,042\\nPodemos ir ali?\\n\\n47\\n00:06:45,208 --> 00:06:48,042\\nLá?\\nNão é seguro, Emo.\\n\\n48\\n00:06:49,958 --> 00:06:52,542\\nMas...\\n- Confie em mim, não é.\\n\\n49\\n00:06:53,292 --> 00:06:54,833\\nBem, e se Eu...\\n\\n50\\n00:06:54,875 --> 00:06:56,333\\nNão.\\n\\n51\\n00:06:57,458 --> 00:06:57,875\\nMas...\\n\\n52\\n00:06:57,708 --> 00:07:00,167\\nNÃO!\\n\\n53\\n00:07:00,917 --> 00:07:03,792\\nMais alguma pergunta, Emo?\\n\\n54\\n00:07:04,250 --> 00:07:05,958\\nNão.\\n\\n55\\n00:07:09,458 --> 00:07:10,875\\nEmo?\\n\\n56\\n00:07:11,917 --> 00:07:13,583\\nEmo, Por quê...\\n\\n57\\n00:07:13,625 --> 00:07:14,458\\nEmo...\\n\\n58\\n00:07:14,542 --> 00:07:18,542\\n...por quê você não consegue ver\\na beleza deste lugar?\\n\\n59\\n00:07:18,875 --> 00:07:20,792\\nA forma como ele funciona.\\n\\n60\\n00:07:20,917 --> 00:07:24,000\\nComo ele é perfeito.\\n\\n61\\n00:07:24,083 --> 00:07:27,417\\nNão, Proog, \\nEu não vejo!\\n\\n62\\n00:07:27,583 --> 00:07:30,333\\nEu não vejo porquê\\nnão tem nada aqui.\\n\\n63\\n00:07:31,542 --> 00:07:35,333\\nE porquê eu confiaria a minha vida\\na algo que nem está aqui?\\n\\n64\\n00:07:35,625 --> 00:07:37,125\\nConsegue responder?\\n\\n65\\n00:07:37,542 --> 00:07:39,167\\nResponda!\\n\\n66\\n00:07:43,208 --> 00:07:44,625\\nProog...\\n\\n67\\n00:07:45,542 --> 00:07:47,333\\nVocê é doente, cara!\\n\\n68\\n00:07:47,375 --> 00:07:49,208\\nFique longe de mim.\\n\\n69\\n00:07:52,625 --> 00:07:55,083\\nNão!! Emo! É uma armadilha!\\n\\n70\\n00:07:55,875 --> 00:07:57,167\\nÉ uma armadilha!\\n\\n71\\n00:07:57,208 --> 00:08:01,792\\nÀ sua esquerda você pode ver...\\nOs jardins suspensos da Babilônia!\\n\\n72\\n00:08:02,250 --> 00:08:04,292\\nQue tal isso como uma armadilha?\\n\\n73\\n00:08:05,458 --> 00:08:07,125\\nNão, Emo.\\n\\n74\\n00:08:09,417 --> 00:08:12,833\\nÀ sua direita, você pode ver...\\nadivinhe só!\\n\\n75\\n00:08:13,000 --> 00:08:14,792\\nO colosso de Rhodes!\\n\\n76\\n00:08:15,875 --> 00:08:16,750\\nNão!\\n\\n77\\n00:08:16,792 --> 00:08:22,167\\nO colosso de Rhodes e\\nestá aqui só para você, Proog.\\n\\n78\\n00:08:51,333 --> 00:08:53,167\\nEstá aqui!\\n\\n79\\n00:08:53,208 --> 00:08:55,542\\nEstou dizendo,\\nEmo...\\n\\n80\\n00:08:57,333 --> 00:09:00,000\\n...está.'" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ftfy.fix_text(text[28])" + ] + }, + { + "cell_type": "markdown", + "id": "e5389834", + "metadata": {}, + "source": [ + "# list files in a bucket" + ] + }, + { + "cell_type": "code", + "execution_count": 122, + "id": "6843e560", + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "from google.cloud import storage\n", + "\n", + "def transform_name(name):\n", + " w,_ = split_with_last_dot(name)\n", + " x,_ = split_with_last_dot(w)\n", + " y,_ = split_with_last_dot(x)\n", + " true_link = y+\".flac\"\n", + " return true_link\n", + "\n", + "project_id = 'the-peoples-speech' # Your Project ID\n", + "bucket_name = 'wikimedia_commons' # Name of bucket\n", + "\n", + "\n", + "# Set Credential\n", + "os.environ[\"GOOGLE_APPLICATION_CREDENTIALS\"] = \"the-peoples-speech-ee8163e65ace.json\"\n", + "client = storage.Client(project_id)\n", + "\n", + "from google.cloud import storage\n", + "blobs = client.list_blobs('wikimedia_commons')\n", + "videos = {}\n", + "transcriptions = []\n", + "for blob in blobs:\n", + " if blob.name.startswith(\"reformat/\"):\n", + " videos[blob.name[9:]]=[]\n", + " elif blob.name.startswith(\"transcription/\"):\n", + " transcriptions.append(blob.name[14:])\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 123, + "id": "1a51ebf7", + "metadata": {}, + "outputs": [], + "source": [ + "def split_with_last_dot(string):\n", + " for character in range(len(string)-1,0,-1):\n", + " if string[character]==\".\":\n", + " left = string[:character]\n", + " right = string[character+1:]\n", + " return [left,right]\n", + " \n", + "def transform_name(name):\n", + " w,_ = split_with_last_dot(name)\n", + " x,_ = split_with_last_dot(w)\n", + " y,_ = split_with_last_dot(x)\n", + " true_link = y+\".flac\"\n", + " return true_link\n", + "\n", + "for transcription in transcriptions:\n", + " if len(transcription.split(\".\"))>3:\n", + " video_name = transform_name(transcription)\n", + " if video_name in videos.keys():\n", + " videos[video_name].append(transcription)\n", + "with open(\"correspondence.json\" , 'w') as file:\n", + " json.dump(videos, file)" + ] + }, + { + "cell_type": "code", + "execution_count": 124, + "id": "3f4fcf68", + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAX0AAAD4CAYAAAAAczaOAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAP5ElEQVR4nO3da6xlZX3H8e+vM4IVlQGZEDrQnrFObcYmLWSCNF5eiOGmdWirBmPq1JJMmmCrvcRCTYpRSaQXqSaKoQ52NFSgqGFSbZUitukLRoeL3EacIxeZyQAjg2hrvYz++2I/QzeTc+acA2fWPs7z/SQne61nPWuv/3r2mt9ee+3LpKqQJPXh5yZdgCRpOIa+JHXE0Jekjhj6ktQRQ1+SOrJ80gUczHHHHVdTU1OTLkOSfqbccsst366qlTMtW9KhPzU1xbZt2yZdhiT9TEny4GzLvLwjSR0x9CWpI4a+JHXE0Jekjhj6ktQRQ1+SOmLoS1JHDH1J6oihL0kdWdLfyH2mpi783ES2+8D7XzOR7UrSXDzTl6SOGPqS1BFDX5I6YuhLUkcMfUnqiKEvSR0x9CWpI4a+JHXE0Jekjhj6ktQRQ1+SOmLoS1JHDH1J6oihL0kdMfQlqSOGviR1xNCXpI4Y+pLUEUNfkjpi6EtSR+YV+kn+JMndSe5K8qkkz06yOsnWJNNJrklyROt7ZJufbsunxu7notZ+b5IzD9E+SZJmMWfoJ1kF/DGwrqp+DVgGnAdcClxWVS8CHgfOb6ucDzze2i9r/Uiytq33EuAs4CNJli3u7kiSDma+l3eWAz+fZDnwHGA38CrgurZ8M3Bum17f5mnLT0+S1n51Vf2wqu4HpoFTn/EeSJLmbc7Qr6pdwN8C32IU9k8AtwDfqap9rdtOYFWbXgU81Nbd1/q/YLx9hnWelGRjkm1Jtu3Zs+fp7JMkaRbzubxzDKOz9NXALwBHMbo8c0hU1RVVta6q1q1cufJQbUaSujSfyzuvBu6vqj1V9WPgM8DLgBXtcg/AicCuNr0LOAmgLT8aeGy8fYZ1JEkDmE/ofws4Lclz2rX504F7gJuA17c+G4Dr2/SWNk9b/qWqqtZ+Xvt0z2pgDfCVxdkNSdJ8LJ+rQ1VtTXIdcCuwD7gNuAL4HHB1kve1tk1tlU3AJ5NMA3sZfWKHqro7ybWMnjD2ARdU1U8WeX8kSQcxZ+gDVNXFwMUHNN/HDJ++qaofAG+Y5X4uAS5ZYI2SpEXiN3IlqSOGviR1xNCXpI4Y+pLUEUNfkjpi6EtSRwx9SeqIoS9JHTH0Jakjhr4kdcTQl6SOGPqS1BFDX5I6YuhLUkcMfUnqiKEvSR0x9CWpI4a+JHXE0Jekjhj6ktQRQ1+SOmLoS1JHDH1J6oihL0kdMfQlqSOGviR1xNCXpI4Y+pLUEUNfkjpi6EtSRwx9SeqIoS9JHTH0Jakjhr4kdcTQl6SOGPqS1JF5hX6SFUmuS/L1JNuT/GaSY5PckGRHuz2m9U2SDyWZTnJHklPG7mdD678jyYZDtVOSpJnN90z/g8C/VdWvAr8ObAcuBG6sqjXAjW0e4GxgTfvbCFwOkORY4GLgpcCpwMX7nygkScOYM/STHA28EtgEUFU/qqrvAOuBza3bZuDcNr0e+ESN3AysSHICcCZwQ1XtrarHgRuAsxZxXyRJc5jPmf5qYA/w8SS3JflYkqOA46tqd+vzMHB8m14FPDS2/s7WNlu7JGkg8wn95cApwOVVdTLwP/z/pRwAqqqAWoyCkmxMsi3Jtj179izGXUqSmvmE/k5gZ1VtbfPXMXoSeKRdtqHdPtqW7wJOGlv/xNY2W/tTVNUVVbWuqtatXLlyIfsiSZrDnKFfVQ8DDyV5cWs6HbgH2ALs/wTOBuD6Nr0FeEv7FM9pwBPtMtAXgDOSHNPewD2jtUmSBrJ8nv3+CLgqyRHAfcBbGT1hXJvkfOBB4I2t7+eBc4Bp4PutL1W1N8l7ga+2fu+pqr2LsheSpHmZV+hX1e3AuhkWnT5D3wIumOV+rgSuXEB9kqRF5DdyJakjhr4kdcTQl6SOGPqS1BFDX5I6YuhLUkcMfUnqiKEvSR0x9CWpI4a+JHXE0Jekjhj6ktQRQ1+SOmLoS1JHDH1J6oihL0kdMfQlqSOGviR1xNCXpI4Y+pLUEUNfkjpi6EtSRwx9SeqIoS9JHTH0Jakjhr4kdcTQl6SOGPqS1BFDX5I6YuhLUkcMfUnqiKEvSR0x9CWpI4a+JHXE0Jekjhj6ktQRQ1+SOjLv0E+yLMltSf6lza9OsjXJdJJrkhzR2o9s89Nt+dTYfVzU2u9Ncuai740k6aAWcqb/dmD72PylwGVV9SLgceD81n4+8Hhrv6z1I8la4DzgJcBZwEeSLHtm5UuSFmJeoZ/kROA1wMfafIBXAde1LpuBc9v0+jZPW356678euLqqflhV9wPTwKmLsA+SpHma75n+3wPvBH7a5l8AfKeq9rX5ncCqNr0KeAigLX+i9X+yfYZ1npRkY5JtSbbt2bNn/nsiSZrTnKGf5LXAo1V1ywD1UFVXVNW6qlq3cuXKITYpSd1YPo8+LwNel+Qc4NnA84EPAiuSLG9n8ycCu1r/XcBJwM4ky4GjgcfG2vcbX0eSNIA5z/Sr6qKqOrGqphi9EfulqnozcBPw+tZtA3B9m97S5mnLv1RV1drPa5/uWQ2sAb6yaHsiSZrTfM70Z/MXwNVJ3gfcBmxq7ZuATyaZBvYyeqKgqu5Oci1wD7APuKCqfvIMti9JWqAFhX5VfRn4cpu+jxk+fVNVPwDeMMv6lwCXLLRISdLi8Bu5ktQRQ1+SOmLoS1JHDH1J6oihL0kdMfQlqSOGviR1xNCXpI4Y+pLUEUNfkjpi6EtSRwx9SeqIoS9JHTH0Jakjhr4kdcTQl6SOGPqS1BFDX5I6YuhLUkcMfUnqiKEvSR0x9CWpI4a+JHXE0Jekjhj6ktQRQ1+SOmLoS1JHDH1J6oihL0kdMfQlqSOGviR1xNCXpI4Y+pLUEUNfkjpi6EtSRwx9SeqIoS9JHZkz9JOclOSmJPckuTvJ21v7sUluSLKj3R7T2pPkQ0mmk9yR5JSx+9rQ+u9IsuHQ7ZYkaSbzOdPfB/xZVa0FTgMuSLIWuBC4sarWADe2eYCzgTXtbyNwOYyeJICLgZcCpwIX73+ikCQNY87Qr6rdVXVrm/4esB1YBawHNrdum4Fz2/R64BM1cjOwIskJwJnADVW1t6oeB24AzlrMnZEkHdyCruknmQJOBrYCx1fV7rboYeD4Nr0KeGhstZ2tbbb2A7exMcm2JNv27NmzkPIkSXOYd+gneS7waeAdVfXd8WVVVUAtRkFVdUVVrauqdStXrlyMu5QkNfMK/STPYhT4V1XVZ1rzI+2yDe320da+CzhpbPUTW9ts7ZKkgczn0zsBNgHbq+oDY4u2APs/gbMBuH6s/S3tUzynAU+0y0BfAM5Ickx7A/eM1iZJGsjyefR5GfB7wJ1Jbm9tfwm8H7g2yfnAg8Ab27LPA+cA08D3gbcCVNXeJO8Fvtr6vaeq9i7GTkiS5mfO0K+q/wIyy+LTZ+hfwAWz3NeVwJULKVCStHj8Rq4kdcTQl6SOGPqS1BFDX5I6YuhLUkcMfUnqiKEvSR0x9CWpI4a+JHXE0Jekjhj6ktQRQ1+SOmLoS1JHDH1J6oihL0kdMfQlqSOGviR1xNCXpI4Y+pLUEUNfkjpi6EtSRwx9SeqIoS9JHTH0Jakjhr4kdcTQl6SOGPqS1BFDX5I6YuhLUkcMfUnqiKEvSR0x9CWpI4a+JHXE0Jekjhj6ktQRQ1+SOmLoS1JHBg/9JGcluTfJdJILh96+JPVs0NBPsgz4MHA2sBZ4U5K1Q9YgST1bPvD2TgWmq+o+gCRXA+uBewau45CauvBzE9nuA+9/zUS2K+lnx9Chvwp4aGx+J/DS8Q5JNgIb2+x/J7n3aWznOODbT6vCQ+uQ1pVLn9ZqXY7VM7AU61qKNYF1LcRi1/RLsy0YOvTnVFVXAFc8k/tIsq2q1i1SSYtmKda1FGsC61qIpVgTWNdCDFnT0G/k7gJOGps/sbVJkgYwdOh/FViTZHWSI4DzgC0D1yBJ3Rr08k5V7UvyNuALwDLgyqq6+xBs6hldHjqElmJdS7EmsK6FWIo1gXUtxGA1paqG2pYkacL8Rq4kdcTQl6SOHHahvxR+5iHJSUluSnJPkruTvL21vzvJriS3t79zJlDbA0nubNvf1tqOTXJDkh3t9pgB63nx2HjcnuS7Sd4xibFKcmWSR5PcNdY249hk5EPtOLsjySkD1/U3Sb7etv3ZJCta+1SS/x0bt48OXNesj1uSi9p43ZvkzAFrumasngeS3N7ahxyr2TJh+OOrqg6bP0ZvDn8TeCFwBPA1YO0E6jgBOKVNPw/4BqOfnXg38OcTHqMHgOMOaPtr4MI2fSFw6QQfv4cZfbFk8LECXgmcAtw119gA5wD/CgQ4Ddg6cF1nAMvb9KVjdU2N95vAeM34uLXj/2vAkcDq9u902RA1HbD874C/msBYzZYJgx9fh9uZ/pM/81BVPwL2/8zDoKpqd1Xd2qa/B2xn9G3kpWo9sLlNbwbOnVAdpwPfrKoHJ7HxqvpPYO8BzbONzXrgEzVyM7AiyQlD1VVVX6yqfW32ZkbfeRnULOM1m/XA1VX1w6q6H5hm9O91sJqSBHgj8KnF3u5cDpIJgx9fh1voz/QzDxMN2yRTwMnA1tb0tvZy7cohL6OMKeCLSW7J6CcvAI6vqt1t+mHg+AnUBaPvbYz/g5z0WMHsY7OUjrU/YHRWuN/qJLcl+Y8kr5hAPTM9bkthvF4BPFJVO8baBh+rAzJh8OPrcAv9JSXJc4FPA++oqu8ClwO/DPwGsJvRS82hvbyqTmH0S6cXJHnl+MIavbYc/HO8GX1Z73XAP7empTBWTzGpsTmYJO8C9gFXtabdwC9W1cnAnwL/lOT5A5a05B63MW/iqScVg4/VDJnwpKGOr8Mt9JfMzzwkeRajB/eqqvoMQFU9UlU/qaqfAv/AIXh5O5eq2tVuHwU+22p4ZP9Lx3b76NB1MXoSurWqHmn1TXysmtnGZuLHWpLfB14LvLkFBu3yyWNt+hZG185/ZaiaDvK4TXS8kiwHfge4ZqzWQcdqpkxgAsfX4Rb6S+JnHtq1w03A9qr6wFj7+DW53wbuOnDdQ1zXUUmet3+a0ZuBdzEaow2t2wbg+iHrap5yFjbpsRoz29hsAd7SPmVxGvDE2Mv0Qy7JWcA7gddV1ffH2ldm9P9WkOSFwBrgvgHrmu1x2wKcl+TIJKtbXV8Zqi7g1cDXq2rn/oYhx2q2TGASx9cQ71wP+cfoXe9vMHrWfteEang5o5dpdwC3t79zgE8Cd7b2LcAJA9f1QkafoPgacPf+8QFeANwI7AD+HTh24LqOAh4Djh5rG3ysGD3p7AZ+zOga6vmzjQ2jT1V8uB1ndwLrBq5rmtE13/3H10db399tj+3twK3Abw1c16yPG/CuNl73AmcPVVNr/0fgDw/oO+RYzZYJgx9f/gyDJHXkcLu8I0k6CENfkjpi6EtSRwx9SeqIoS9JHTH0Jakjhr4kdeT/AHrGiv7TDcXRAAAAAElFTkSuQmCC\n", + "text/plain": [ + "<Figure size 432x288 with 1 Axes>" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "<div>\n", + "<style scoped>\n", + " .dataframe tbody tr th:only-of-type {\n", + " vertical-align: middle;\n", + " }\n", + "\n", + " .dataframe tbody tr th {\n", + " vertical-align: top;\n", + " }\n", + "\n", + " .dataframe thead th {\n", + " text-align: right;\n", + " }\n", + "</style>\n", + "<table border=\"1\" class=\"dataframe\">\n", + " <thead>\n", + " <tr style=\"text-align: right;\">\n", + " <th></th>\n", + " <th>Transcriptions_amount</th>\n", + " <th>Videos_amount</th>\n", + " </tr>\n", + " </thead>\n", + " <tbody>\n", + " <tr>\n", + " <th>0</th>\n", + " <td>1</td>\n", + " <td>6784</td>\n", + " </tr>\n", + " <tr>\n", + " <th>1</th>\n", + " <td>2</td>\n", + " <td>1255</td>\n", + " </tr>\n", + " <tr>\n", + " <th>2</th>\n", + " <td>3</td>\n", + " <td>336</td>\n", + " </tr>\n", + " <tr>\n", + " <th>4</th>\n", + " <td>4</td>\n", + " <td>162</td>\n", + " </tr>\n", + " <tr>\n", + " <th>3</th>\n", + " <td>5</td>\n", + " <td>103</td>\n", + " </tr>\n", + " <tr>\n", + " <th>6</th>\n", + " <td>6</td>\n", + " <td>87</td>\n", + " </tr>\n", + " <tr>\n", + " <th>5</th>\n", + " <td>7</td>\n", + " <td>88</td>\n", + " </tr>\n", + " <tr>\n", + " <th>8</th>\n", + " <td>8</td>\n", + " <td>64</td>\n", + " </tr>\n", + " <tr>\n", + " <th>10</th>\n", + " <td>9</td>\n", + " <td>41</td>\n", + " </tr>\n", + " <tr>\n", + " <th>15</th>\n", + " <td>10</td>\n", + " <td>26</td>\n", + " </tr>\n", + " <tr>\n", + " <th>16</th>\n", + " <td>11</td>\n", + " <td>22</td>\n", + " </tr>\n", + " <tr>\n", + " <th>21</th>\n", + " <td>12</td>\n", + " <td>12</td>\n", + " </tr>\n", + " <tr>\n", + " <th>9</th>\n", + " <td>13</td>\n", + " <td>19</td>\n", + " </tr>\n", + " <tr>\n", + " <th>12</th>\n", + " <td>14</td>\n", + " <td>16</td>\n", + " </tr>\n", + " <tr>\n", + " <th>7</th>\n", + " <td>15</td>\n", + " <td>9</td>\n", + " </tr>\n", + " <tr>\n", + " <th>14</th>\n", + " <td>16</td>\n", + " <td>5</td>\n", + " </tr>\n", + " <tr>\n", + " <th>20</th>\n", + " <td>17</td>\n", + " <td>4</td>\n", + " </tr>\n", + " <tr>\n", + " <th>13</th>\n", + " <td>18</td>\n", + " <td>6</td>\n", + " </tr>\n", + " <tr>\n", + " <th>31</th>\n", + " <td>19</td>\n", + " <td>4</td>\n", + " </tr>\n", + " <tr>\n", + " <th>26</th>\n", + " <td>20</td>\n", + " <td>3</td>\n", + " </tr>\n", + " <tr>\n", + " <th>25</th>\n", + " <td>21</td>\n", + " <td>6</td>\n", + " </tr>\n", + " <tr>\n", + " <th>24</th>\n", + " <td>22</td>\n", + " <td>5</td>\n", + " </tr>\n", + " <tr>\n", + " <th>27</th>\n", + " <td>23</td>\n", + " <td>3</td>\n", + " </tr>\n", + " <tr>\n", + " <th>22</th>\n", + " <td>24</td>\n", + " <td>5</td>\n", + " </tr>\n", + " <tr>\n", + " <th>28</th>\n", + " <td>25</td>\n", + " <td>4</td>\n", + " </tr>\n", + " <tr>\n", + " <th>34</th>\n", + " <td>26</td>\n", + " <td>1</td>\n", + " </tr>\n", + " <tr>\n", + " <th>19</th>\n", + " <td>27</td>\n", + " <td>2</td>\n", + " </tr>\n", + " <tr>\n", + " <th>11</th>\n", + " <td>28</td>\n", + " <td>4</td>\n", + " </tr>\n", + " <tr>\n", + " <th>33</th>\n", + " <td>29</td>\n", + " <td>2</td>\n", + " </tr>\n", + " <tr>\n", + " <th>23</th>\n", + " <td>30</td>\n", + " <td>1</td>\n", + " </tr>\n", + " <tr>\n", + " <th>37</th>\n", + " <td>31</td>\n", + " <td>1</td>\n", + " </tr>\n", + " <tr>\n", + " <th>38</th>\n", + " <td>32</td>\n", + " <td>1</td>\n", + " </tr>\n", + " <tr>\n", + " <th>30</th>\n", + " <td>35</td>\n", + " <td>1</td>\n", + " </tr>\n", + " <tr>\n", + " <th>17</th>\n", + " <td>39</td>\n", + " <td>1</td>\n", + " </tr>\n", + " <tr>\n", + " <th>32</th>\n", + " <td>41</td>\n", + " <td>1</td>\n", + " </tr>\n", + " <tr>\n", + " <th>36</th>\n", + " <td>43</td>\n", + " <td>1</td>\n", + " </tr>\n", + " <tr>\n", + " <th>18</th>\n", + " <td>71</td>\n", + " <td>1</td>\n", + " </tr>\n", + " <tr>\n", + " <th>29</th>\n", + " <td>75</td>\n", + " <td>1</td>\n", + " </tr>\n", + " <tr>\n", + " <th>35</th>\n", + " <td>203</td>\n", + " <td>1</td>\n", + " </tr>\n", + " </tbody>\n", + "</table>\n", + "</div>" + ], + "text/plain": [ + " Transcriptions_amount Videos_amount\n", + "0 1 6784\n", + "1 2 1255\n", + "2 3 336\n", + "4 4 162\n", + "3 5 103\n", + "6 6 87\n", + "5 7 88\n", + "8 8 64\n", + "10 9 41\n", + "15 10 26\n", + "16 11 22\n", + "21 12 12\n", + "9 13 19\n", + "12 14 16\n", + "7 15 9\n", + "14 16 5\n", + "20 17 4\n", + "13 18 6\n", + "31 19 4\n", + "26 20 3\n", + "25 21 6\n", + "24 22 5\n", + "27 23 3\n", + "22 24 5\n", + "28 25 4\n", + "34 26 1\n", + "19 27 2\n", + "11 28 4\n", + "33 29 2\n", + "23 30 1\n", + "37 31 1\n", + "38 32 1\n", + "30 35 1\n", + "17 39 1\n", + "32 41 1\n", + "36 43 1\n", + "18 71 1\n", + "29 75 1\n", + "35 203 1" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from matplotlib import pyplot as plt\n", + "from collections import Counter\n", + "import pandas as pd\n", + "\n", + "\n", + "histogram_prep=[len(videos[i]) for i in videos.keys()]\n", + "histogram_prep\n", + "c = Counter(histogram_prep)\n", + "plt.hist(histogram_prep)\n", + "plt.show() \n", + "df = pd.DataFrame(c.items(), columns=['Transcriptions_amount', 'Videos_amount']).sort_values(\"Transcriptions_amount\")\n", + "display(df)" + ] + }, + { + "cell_type": "markdown", + "id": "97baf506", + "metadata": {}, + "source": [ + "# Hours one transcription " + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "ffe8f206", + "metadata": {}, + "outputs": [], + "source": [ + "import json\n", + "with open(\"wikimedia.json\" , 'r') as file:\n", + " previous_json = json.load(file)\n", + "\n", + "with open(\"correspondence.json\" , 'r') as file:\n", + " videos = json.load(file)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "56d038a3", + "metadata": {}, + "outputs": [], + "source": [ + "import re\n", + "\n", + "def split_with_last_dot(string):\n", + " for character in range(len(string)-1,0,-1):\n", + " if string[character]==\".\":\n", + " left = string[:character]\n", + " right = string[character+1:]\n", + " return [left,right]\n", + " \n", + "one_transcription = []\n", + "lang_one_transcription = {}\n", + "for video in videos.keys():\n", + " #if len(videos[video])==1:\n", + " one_transcription.append(videos[video][0])\n", + " x,_ = split_with_last_dot(videos[video][0])\n", + " _,lang = split_with_last_dot(x)\n", + " if lang not in lang_one_transcription.keys():\n", + " lang_one_transcription[lang] = {\"hour\":0,\n", + " \"minutes\":0,\n", + " \"secounds\":0}\n", + "one_transcription=set(one_transcription)\n", + " \n", + "hour = 0\n", + "minutes = 0\n", + "secounds = 0\n", + "no_text = []\n", + "\n", + "for register in range(len(previous_json)):\n", + " if previous_json[register][\"page\"][\"title\"] in one_transcription:\n", + " try:\n", + " x,_ = split_with_last_dot(previous_json[register][\"page\"][\"title\"])\n", + " _,y = split_with_last_dot(x)\n", + " time = re.findall(\"(?:([01]?\\d|2[0-3]):([0-5]?\\d):)?([0-5]?\\d)\", previous_json[register][\"text\"])\n", + " for i in reversed(time):\n", + " if i[0]!=\"\" and i[1]!=\"\" and i[2]!=\"\":\n", + " lang_one_transcription[y][\"hour\"]=lang_one_transcription[y][\"hour\"]+int(i[0])\n", + " lang_one_transcription[y][\"minutes\"]=lang_one_transcription[y][\"minutes\"]+int(i[1])\n", + " lang_one_transcription[y][\"secounds\"]=lang_one_transcription[y][\"secounds\"]+int(i[2])\n", + " #hour += int(i[0])\n", + " #minutes += int(i[1])\n", + " #secounds += int(i[2])\n", + " break\n", + " except:\n", + " no_text.append(register)\n", + " \n", + "for i in lang_one_transcription.keys():\n", + " temp_minutes = lang_one_transcription[i][\"minutes\"] + lang_one_transcription[i][\"secounds\"]//60\n", + " reformated_secounds = lang_one_transcription[i][\"secounds\"]%60\n", + " reformated_hour = lang_one_transcription[i][\"hour\"] + temp_minutes//60\n", + " reformated_minutes = lang_one_transcription[i][\"minutes\"] % 60\n", + " \n", + " lang_one_transcription[i][\"minutes\"]=reformated_minutes\n", + " lang_one_transcription[i][\"secounds\"]=reformated_secounds\n", + " lang_one_transcription[i][\"hour\"]=reformated_hour" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "e23f140d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'en': {'hour': 1995, 'minutes': 42, 'secounds': 59},\n", + " 'fr': {'hour': 17, 'minutes': 31, 'secounds': 24},\n", + " 'ar': {'hour': 23, 'minutes': 7, 'secounds': 24},\n", + " 'it': {'hour': 4, 'minutes': 10, 'secounds': 36},\n", + " 'nn': {'hour': 0, 'minutes': 28, 'secounds': 48},\n", + " 'hu': {'hour': 1, 'minutes': 38, 'secounds': 36},\n", + " 'ru': {'hour': 20, 'minutes': 2, 'secounds': 26},\n", + " 'ro': {'hour': 0, 'minutes': 7, 'secounds': 51},\n", + " 'de': {'hour': 61, 'minutes': 40, 'secounds': 54},\n", + " 'es': {'hour': 26, 'minutes': 27, 'secounds': 0},\n", + " 'pt': {'hour': 2, 'minutes': 16, 'secounds': 22},\n", + " 'hr': {'hour': 0, 'minutes': 6, 'secounds': 42},\n", + " 'undefined': {'hour': 0, 'minutes': 11, 'secounds': 41},\n", + " 'sv': {'hour': 3, 'minutes': 17, 'secounds': 42},\n", + " 'zh-hant': {'hour': 0, 'minutes': 28, 'secounds': 40},\n", + " 'pl': {'hour': 9, 'minutes': 56, 'secounds': 42},\n", + " 'is': {'hour': 0, 'minutes': 11, 'secounds': 5},\n", + " 'la': {'hour': 1, 'minutes': 16, 'secounds': 32},\n", + " 'pt-br': {'hour': 22, 'minutes': 25, 'secounds': 29},\n", + " 'ea': {'hour': 0, 'minutes': 0, 'secounds': 40},\n", + " 'ba': {'hour': 0, 'minutes': 2, 'secounds': 43},\n", + " 'ml': {'hour': 0, 'minutes': 2, 'secounds': 48},\n", + " 'ger': {'hour': 0, 'minutes': 2, 'secounds': 12},\n", + " 'tr': {'hour': 0, 'minutes': 43, 'secounds': 1},\n", + " 'nl': {'hour': 29, 'minutes': 6, 'secounds': 25},\n", + " 'be-tarask': {'hour': 0, 'minutes': 3, 'secounds': 54},\n", + " 'fa': {'hour': 0, 'minutes': 22, 'secounds': 58},\n", + " 'zh-tw': {'hour': 0, 'minutes': 8, 'secounds': 58},\n", + " 'de-at': {'hour': 0, 'minutes': 1, 'secounds': 0},\n", + " 'ko': {'hour': 1, 'minutes': 20, 'secounds': 49},\n", + " 'ja': {'hour': 1, 'minutes': 35, 'secounds': 18},\n", + " 'km': {'hour': 0, 'minutes': 1, 'secounds': 27},\n", + " 'en-ca': {'hour': 0, 'minutes': 14, 'secounds': 24},\n", + " 'ms': {'hour': 0, 'minutes': 8, 'secounds': 26},\n", + " 'th': {'hour': 1, 'minutes': 25, 'secounds': 20},\n", + " 'hi': {'hour': 20, 'minutes': 22, 'secounds': 31},\n", + " 'fi': {'hour': 0, 'minutes': 8, 'secounds': 51},\n", + " 'he': {'hour': 0, 'minutes': 17, 'secounds': 25},\n", + " 'az': {'hour': 0, 'minutes': 2, 'secounds': 11},\n", + " 'te': {'hour': 0, 'minutes': 6, 'secounds': 7},\n", + " 'id': {'hour': 0, 'minutes': 28, 'secounds': 16},\n", + " 'bn': {'hour': 2, 'minutes': 6, 'secounds': 47},\n", + " 'xh': {'hour': 0, 'minutes': 0, 'secounds': 15},\n", + " 'zh-cn': {'hour': 1, 'minutes': 57, 'secounds': 44},\n", + " 'sah': {'hour': 0, 'minutes': 3, 'secounds': 24},\n", + " 'zh-hans': {'hour': 0, 'minutes': 25, 'secounds': 4},\n", + " 'sl': {'hour': 0, 'minutes': 22, 'secounds': 15},\n", + " 'lt': {'hour': 0, 'minutes': 1, 'secounds': 44},\n", + " 'gn': {'hour': 0, 'minutes': 3, 'secounds': 2},\n", + " 'grc': {'hour': 0, 'minutes': 16, 'secounds': 58},\n", + " 'cs': {'hour': 1, 'minutes': 4, 'secounds': 43},\n", + " 'sr-ec': {'hour': 0, 'minutes': 3, 'secounds': 15},\n", + " 'sq': {'hour': 0, 'minutes': 5, 'secounds': 36},\n", + " 'bg': {'hour': 0, 'minutes': 5, 'secounds': 43},\n", + " 'et': {'hour': 0, 'minutes': 1, 'secounds': 20},\n", + " 'ky': {'hour': 0, 'minutes': 3, 'secounds': 53},\n", + " 'tl': {'hour': 0, 'minutes': 2, 'secounds': 54},\n", + " 'kk-kz': {'hour': 0, 'minutes': 1, 'secounds': 51},\n", + " 'sk': {'hour': 1, 'minutes': 49, 'secounds': 14},\n", + " 'da': {'hour': 0, 'minutes': 9, 'secounds': 4},\n", + " 'gag': {'hour': 0, 'minutes': 0, 'secounds': 58},\n", + " 'arz': {'hour': 0, 'minutes': 1, 'secounds': 23},\n", + " 'mr': {'hour': 0, 'minutes': 1, 'secounds': 38},\n", + " 'hy': {'hour': 0, 'minutes': 1, 'secounds': 58},\n", + " 'uk': {'hour': 1, 'minutes': 4, 'secounds': 16},\n", + " 'el': {'hour': 0, 'minutes': 29, 'secounds': 35},\n", + " 'de-ch': {'hour': 0, 'minutes': 26, 'secounds': 53},\n", + " 'eo': {'hour': 3, 'minutes': 36, 'secounds': 56},\n", + " 'sh': {'hour': 0, 'minutes': 9, 'secounds': 28},\n", + " 'sr-el': {'hour': 0, 'minutes': 4, 'secounds': 51},\n", + " 'af': {'hour': 0, 'minutes': 0, 'secounds': 59},\n", + " 'lo': {'hour': 0, 'minutes': 0, 'secounds': 50},\n", + " 'vi': {'hour': 0, 'minutes': 12, 'secounds': 18},\n", + " 'zh': {'hour': 0, 'minutes': 32, 'secounds': 53},\n", + " 'csb': {'hour': 0, 'minutes': 0, 'secounds': 24},\n", + " 'cps': {'hour': 0, 'minutes': 0, 'secounds': 27},\n", + " 'ku': {'hour': 0, 'minutes': 0, 'secounds': 4},\n", + " 'kk': {'hour': 0, 'minutes': 4, 'secounds': 52},\n", + " 'ur': {'hour': 0, 'minutes': 1, 'secounds': 21},\n", + " 'tg': {'hour': 0, 'minutes': 2, 'secounds': 40},\n", + " 'nap': {'hour': 0, 'minutes': 4, 'secounds': 43},\n", + " 'frc': {'hour': 0, 'minutes': 1, 'secounds': 24},\n", + " 'dv': {'hour': 0, 'minutes': 0, 'secounds': 24},\n", + " 'en-gb': {'hour': 1, 'minutes': 31, 'secounds': 59},\n", + " 'bar': {'hour': 0, 'minutes': 0, 'secounds': 14},\n", + " 'so': {'hour': 0, 'minutes': 1, 'secounds': 20},\n", + " 'mt': {'hour': 0, 'minutes': 1, 'secounds': 5},\n", + " 'eu': {'hour': 1, 'minutes': 7, 'secounds': 15},\n", + " 'ca': {'hour': 0, 'minutes': 12, 'secounds': 51},\n", + " 'mk': {'hour': 0, 'minutes': 3, 'secounds': 7},\n", + " 'pa': {'hour': 0, 'minutes': 9, 'secounds': 11},\n", + " 'ab': {'hour': 0, 'minutes': 5, 'secounds': 54},\n", + " 'or': {'hour': 1, 'minutes': 37, 'secounds': 52},\n", + " 'sd': {'hour': 0, 'minutes': 0, 'secounds': 0},\n", + " 'ang': {'hour': 0, 'minutes': 0, 'secounds': 38},\n", + " 'gsw': {'hour': 0, 'minutes': 0, 'secounds': 10},\n", + " 'ti': {'hour': 0, 'minutes': 2, 'secounds': 10},\n", + " 'sr': {'hour': 0, 'minutes': 3, 'secounds': 20},\n", + " 'no': {'hour': 0, 'minutes': 0, 'secounds': 39},\n", + " 'vep': {'hour': 0, 'minutes': 0, 'secounds': 13},\n", + " 'ko-kp': {'hour': 0, 'minutes': 0, 'secounds': 36},\n", + " 'cdo': {'hour': 0, 'minutes': 5, 'secounds': 53},\n", + " 'aeb-arab': {'hour': 0, 'minutes': 4, 'secounds': 8},\n", + " 'bs': {'hour': 0, 'minutes': 14, 'secounds': 28},\n", + " 'gl': {'hour': 0, 'minutes': 0, 'secounds': 16},\n", + " 'cy': {'hour': 0, 'minutes': 5, 'secounds': 39},\n", + " 'io': {'hour': 0, 'minutes': 1, 'secounds': 31},\n", + " 'zh-yue': {'hour': 0, 'minutes': 0, 'secounds': 5},\n", + " 'es-419': {'hour': 1, 'minutes': 44, 'secounds': 46},\n", + " 'mhn': {'hour': 0, 'minutes': 0, 'secounds': 8},\n", + " 'tt-cyrl': {'hour': 0, 'minutes': 0, 'secounds': 0},\n", + " 'zh-my': {'hour': 0, 'minutes': 2, 'secounds': 38},\n", + " 'be': {'hour': 0, 'minutes': 3, 'secounds': 46},\n", + " 'ka': {'hour': 0, 'minutes': 0, 'secounds': 59},\n", + " 'ta': {'hour': 0, 'minutes': 3, 'secounds': 57},\n", + " 'zh-hk': {'hour': 0, 'minutes': 2, 'secounds': 12},\n", + " 'ks': {'hour': 0, 'minutes': 2, 'secounds': 7},\n", + " 'sc': {'hour': 0, 'minutes': 2, 'secounds': 5},\n", + " 'krl': {'hour': 0, 'minutes': 2, 'secounds': 59},\n", + " 'tcy': {'hour': 0, 'minutes': 0, 'secounds': 0},\n", + " 'inh': {'hour': 0, 'minutes': 0, 'secounds': 51},\n", + " 'gu': {'hour': 0, 'minutes': 4, 'secounds': 21},\n", + " 'kr': {'hour': 0, 'minutes': 1, 'secounds': 38},\n", + " 'kn': {'hour': 0, 'minutes': 1, 'secounds': 52},\n", + " 'zh-classical': {'hour': 0, 'minutes': 0, 'secounds': 50},\n", + " 'hu-formal': {'hour': 0, 'minutes': 2, 'secounds': 29},\n", + " 'bxr': {'hour': 0, 'minutes': 1, 'secounds': 37},\n", + " 'ary': {'hour': 0, 'minutes': 2, 'secounds': 6},\n", + " 'en-us': {'hour': 0, 'minutes': 9, 'secounds': 29},\n", + " 'nl-be': {'hour': 1, 'minutes': 59, 'secounds': 10},\n", + " 'ss': {'hour': 0, 'minutes': 1, 'secounds': 7},\n", + " 'sa': {'hour': 0, 'minutes': 4, 'secounds': 10},\n", + " 'sat': {'hour': 0, 'minutes': 2, 'secounds': 31},\n", + " 'tyv': {'hour': 0, 'minutes': 6, 'secounds': 23},\n", + " 'yue': {'hour': 0, 'minutes': 0, 'secounds': 29},\n", + " 'nb': {'hour': 7, 'minutes': 16, 'secounds': 15},\n", + " 'mg': {'hour': 0, 'minutes': 1, 'secounds': 28},\n", + " 'lv': {'hour': 0, 'minutes': 2, 'secounds': 4},\n", + " 'pt-pt': {'hour': 0, 'minutes': 7, 'secounds': 26},\n", + " 'mhr': {'hour': 0, 'minutes': 3, 'secounds': 6},\n", + " 'ckb': {'hour': 0, 'minutes': 0, 'secounds': 38},\n", + " 'ga': {'hour': 0, 'minutes': 12, 'secounds': 25},\n", + " 'myv': {'hour': 0, 'minutes': 5, 'secounds': 14},\n", + " 'yi': {'hour': 0, 'minutes': 3, 'secounds': 26},\n", + " 'de-formal': {'hour': 0, 'minutes': 0, 'secounds': 52},\n", + " 'dag': {'hour': 0, 'minutes': 0, 'secounds': 0},\n", + " 'si': {'hour': 0, 'minutes': 0, 'secounds': 1},\n", + " 'lad': {'hour': 0, 'minutes': 2, 'secounds': 38},\n", + " 'ace': {'hour': 0, 'minutes': 4, 'secounds': 23},\n", + " 'my': {'hour': 0, 'minutes': 6, 'secounds': 33},\n", + " 'kk-latn': {'hour': 0, 'minutes': 1, 'secounds': 32},\n", + " 'kv': {'hour': 0, 'minutes': 2, 'secounds': 40},\n", + " 'ceb': {'hour': 0, 'minutes': 3, 'secounds': 14},\n", + " 'br': {'hour': 0, 'minutes': 3, 'secounds': 46},\n", + " 'om': {'hour': 0, 'minutes': 0, 'secounds': 0},\n", + " 'to': {'hour': 0, 'minutes': 0, 'secounds': 56},\n", + " 'webm': {'hour': 0, 'minutes': 0, 'secounds': 52},\n", + " 'kk-cyrl': {'hour': 0, 'minutes': 0, 'secounds': 0},\n", + " 'ks-arab': {'hour': 0, 'minutes': 0, 'secounds': 11},\n", + " 'gan': {'hour': 0, 'minutes': 0, 'secounds': 4},\n", + " 'tvl': {'hour': 0, 'minutes': 0, 'secounds': 42}}" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lang_one_transcription" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "1e863dcc", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "<div>\n", + "<style scoped>\n", + " .dataframe tbody tr th:only-of-type {\n", + " vertical-align: middle;\n", + " }\n", + "\n", + " .dataframe tbody tr th {\n", + " vertical-align: top;\n", + " }\n", + "\n", + " .dataframe thead th {\n", + " text-align: right;\n", + " }\n", + "</style>\n", + "<table border=\"1\" class=\"dataframe\">\n", + " <thead>\n", + " <tr style=\"text-align: right;\">\n", + " <th></th>\n", + " <th>hour</th>\n", + " <th>minutes</th>\n", + " <th>secounds</th>\n", + " </tr>\n", + " </thead>\n", + " <tbody>\n", + " <tr>\n", + " <th>en</th>\n", + " <td>1995</td>\n", + " <td>42</td>\n", + " <td>59</td>\n", + " </tr>\n", + " <tr>\n", + " <th>de</th>\n", + " <td>61</td>\n", + " <td>40</td>\n", + " <td>54</td>\n", + " </tr>\n", + " <tr>\n", + " <th>nl</th>\n", + " <td>29</td>\n", + " <td>6</td>\n", + " <td>25</td>\n", + " </tr>\n", + " <tr>\n", + " <th>es</th>\n", + " <td>26</td>\n", + " <td>27</td>\n", + " <td>0</td>\n", + " </tr>\n", + " <tr>\n", + " <th>ar</th>\n", + " <td>23</td>\n", + " <td>7</td>\n", + " <td>24</td>\n", + " </tr>\n", + " <tr>\n", + " <th>pt-br</th>\n", + " <td>22</td>\n", + " <td>25</td>\n", + " <td>29</td>\n", + " </tr>\n", + " <tr>\n", + " <th>hi</th>\n", + " <td>20</td>\n", + " <td>22</td>\n", + " <td>31</td>\n", + " </tr>\n", + " <tr>\n", + " <th>ru</th>\n", + " <td>20</td>\n", + " <td>2</td>\n", + " <td>26</td>\n", + " </tr>\n", + " <tr>\n", + " <th>fr</th>\n", + " <td>17</td>\n", + " <td>31</td>\n", + " <td>24</td>\n", + " </tr>\n", + " <tr>\n", + " <th>pl</th>\n", + " <td>9</td>\n", + " <td>56</td>\n", + " <td>42</td>\n", + " </tr>\n", + " <tr>\n", + " <th>nb</th>\n", + " <td>7</td>\n", + " <td>16</td>\n", + " <td>15</td>\n", + " </tr>\n", + " <tr>\n", + " <th>it</th>\n", + " <td>4</td>\n", + " <td>10</td>\n", + " <td>36</td>\n", + " </tr>\n", + " <tr>\n", + " <th>eo</th>\n", + " <td>3</td>\n", + " <td>36</td>\n", + " <td>56</td>\n", + " </tr>\n", + " <tr>\n", + " <th>sv</th>\n", + " <td>3</td>\n", + " <td>17</td>\n", + " <td>42</td>\n", + " </tr>\n", + " <tr>\n", + " <th>pt</th>\n", + " <td>2</td>\n", + " <td>16</td>\n", + " <td>22</td>\n", + " </tr>\n", + " <tr>\n", + " <th>bn</th>\n", + " <td>2</td>\n", + " <td>6</td>\n", + " <td>47</td>\n", + " </tr>\n", + " <tr>\n", + " <th>nl-be</th>\n", + " <td>1</td>\n", + " <td>59</td>\n", + " <td>10</td>\n", + " </tr>\n", + " <tr>\n", + " <th>zh-cn</th>\n", + " <td>1</td>\n", + " <td>57</td>\n", + " <td>44</td>\n", + " </tr>\n", + " <tr>\n", + " <th>sk</th>\n", + " <td>1</td>\n", + " <td>49</td>\n", + " <td>14</td>\n", + " </tr>\n", + " <tr>\n", + " <th>es-419</th>\n", + " <td>1</td>\n", + " <td>44</td>\n", + " <td>46</td>\n", + " </tr>\n", + " </tbody>\n", + "</table>\n", + "</div>" + ], + "text/plain": [ + " hour minutes secounds\n", + "en 1995 42 59\n", + "de 61 40 54\n", + "nl 29 6 25\n", + "es 26 27 0\n", + "ar 23 7 24\n", + "pt-br 22 25 29\n", + "hi 20 22 31\n", + "ru 20 2 26\n", + "fr 17 31 24\n", + "pl 9 56 42\n", + "nb 7 16 15\n", + "it 4 10 36\n", + "eo 3 36 56\n", + "sv 3 17 42\n", + "pt 2 16 22\n", + "bn 2 6 47\n", + "nl-be 1 59 10\n", + "zh-cn 1 57 44\n", + "sk 1 49 14\n", + "es-419 1 44 46" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#Este es uno\n", + "import pandas as pd\n", + "df = pd.DataFrame.from_dict(lang_one_transcription, orient=\"index\").sort_values([\"hour\",\"minutes\",\"secounds\"],ascending=False).head(20)\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "5a913258", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "hour 2247\n", + "minutes 568\n", + "secounds 646\n", + "dtype: int64" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.sum(axis =0)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "32a5375d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "18" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "678%60" + ] + }, + { + "cell_type": "code", + "execution_count": 131, + "id": "7ba4ef9f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'en': {'hour': 450, 'minutes': 55977, 'secounds': 136212},\n", + " 'it': {'hour': 0, 'minutes': 75, 'secounds': 649},\n", + " 'id': {'hour': 0, 'minutes': 21, 'secounds': 352},\n", + " 'ceb': {'hour': 0, 'minutes': 2, 'secounds': 17},\n", + " 'nap': {'hour': 0, 'minutes': 4, 'secounds': 43},\n", + " 'nl': {'hour': 0, 'minutes': 1293, 'secounds': 6035},\n", + " 'my': {'hour': 0, 'minutes': 6, 'secounds': 33},\n", + " 'en-gb': {'hour': 0, 'minutes': 67, 'secounds': 362},\n", + " 'fr': {'hour': 1, 'minutes': 259, 'secounds': 1818},\n", + " 'ja': {'hour': 0, 'minutes': 37, 'secounds': 610},\n", + " 'pl': {'hour': 1, 'minutes': 340, 'secounds': 919},\n", + " 'pt-pt': {'hour': 0, 'minutes': 7, 'secounds': 26},\n", + " 'sv': {'hour': 0, 'minutes': 133, 'secounds': 1279},\n", + " 'eo': {'hour': 0, 'minutes': 96, 'secounds': 1199},\n", + " 'ru': {'hour': 1, 'minutes': 116, 'secounds': 5686},\n", + " 'pt': {'hour': 0, 'minutes': 94, 'secounds': 578},\n", + " 'de': {'hour': 17, 'minutes': 1212, 'secounds': 10148},\n", + " 'eu': {'hour': 0, 'minutes': 20, 'secounds': 122},\n", + " 'ar': {'hour': 1, 'minutes': 1113, 'secounds': 5083},\n", + " 'bg': {'hour': 0, 'minutes': 4, 'secounds': 138},\n", + " 'fa': {'hour': 0, 'minutes': 19, 'secounds': 143},\n", + " 'ko': {'hour': 0, 'minutes': 49, 'secounds': 568},\n", + " 'or': {'hour': 0, 'minutes': 92, 'secounds': 911},\n", + " 'tr': {'hour': 0, 'minutes': 35, 'secounds': 695},\n", + " 'pt-br': {'hour': 0, 'minutes': 188, 'secounds': 2044},\n", + " 'te': {'hour': 0, 'minutes': 6, 'secounds': 119},\n", + " 'es': {'hour': 3, 'minutes': 337, 'secounds': 2676},\n", + " 'nb': {'hour': 0, 'minutes': 19, 'secounds': 152},\n", + " 'be': {'hour': 0, 'minutes': 2, 'secounds': 44},\n", + " 'ca': {'hour': 0, 'minutes': 1, 'secounds': 486},\n", + " 'hu': {'hour': 0, 'minutes': 18, 'secounds': 190},\n", + " 'hi': {'hour': 18, 'minutes': 135, 'secounds': 478},\n", + " 'en-ca': {'hour': 0, 'minutes': 14, 'secounds': 267},\n", + " 'ab': {'hour': 0, 'minutes': 1, 'secounds': 19},\n", + " 'inh': {'hour': 0, 'minutes': 0, 'secounds': 51},\n", + " 'sh': {'hour': 0, 'minutes': 3, 'secounds': 2},\n", + " 'grc': {'hour': 0, 'minutes': 16, 'secounds': 74},\n", + " 'ro': {'hour': 0, 'minutes': 0, 'secounds': 48},\n", + " 'pa': {'hour': 0, 'minutes': 4, 'secounds': 79},\n", + " 'cs': {'hour': 0, 'minutes': 6, 'secounds': 140},\n", + " 'zh-hans': {'hour': 0, 'minutes': 6, 'secounds': 151},\n", + " 'sk': {'hour': 0, 'minutes': 0, 'secounds': 37},\n", + " 'bn': {'hour': 1, 'minutes': 57, 'secounds': 132},\n", + " 'br': {'hour': 0, 'minutes': 3, 'secounds': 46},\n", + " 'la': {'hour': 0, 'minutes': 25, 'secounds': 264},\n", + " 'undefined': {'hour': 0, 'minutes': 11, 'secounds': 41},\n", + " 'cdo': {'hour': 0, 'minutes': 4, 'secounds': 125},\n", + " 'zh-cn': {'hour': 0, 'minutes': 23, 'secounds': 280},\n", + " 'he': {'hour': 0, 'minutes': 8, 'secounds': 126},\n", + " 'zh-tw': {'hour': 0, 'minutes': 7, 'secounds': 99},\n", + " 'zh-yue': {'hour': 0, 'minutes': 0, 'secounds': 5},\n", + " 'da': {'hour': 0, 'minutes': 5, 'secounds': 44},\n", + " 'dag': {'hour': 0, 'minutes': 0, 'secounds': 0},\n", + " 'cps': {'hour': 0, 'minutes': 0, 'secounds': 27},\n", + " 'mr': {'hour': 0, 'minutes': 1, 'secounds': 57},\n", + " 'kr': {'hour': 0, 'minutes': 1, 'secounds': 38},\n", + " 'gu': {'hour': 0, 'minutes': 4, 'secounds': 81},\n", + " 'ka': {'hour': 0, 'minutes': 0, 'secounds': 59},\n", + " 'en-us': {'hour': 0, 'minutes': 8, 'secounds': 121},\n", + " 'uk': {'hour': 0, 'minutes': 27, 'secounds': 144},\n", + " 'sl': {'hour': 0, 'minutes': 22, 'secounds': 205},\n", + " 'vep': {'hour': 0, 'minutes': 0, 'secounds': 13},\n", + " 'fi': {'hour': 0, 'minutes': 2, 'secounds': 11},\n", + " 'gan': {'hour': 0, 'minutes': 0, 'secounds': 4},\n", + " 'zh-hant': {'hour': 0, 'minutes': 0, 'secounds': 60},\n", + " 'vi': {'hour': 0, 'minutes': 4, 'secounds': 193},\n", + " 'nl-be': {'hour': 0, 'minutes': 59, 'secounds': 130},\n", + " 'ks-arab': {'hour': 0, 'minutes': 0, 'secounds': 11},\n", + " 'zh': {'hour': 0, 'minutes': 6, 'secounds': 170},\n", + " 'is': {'hour': 0, 'minutes': 0, 'secounds': 37},\n", + " 'io': {'hour': 0, 'minutes': 1, 'secounds': 91},\n", + " 'kk-cyrl': {'hour': 0, 'minutes': 0, 'secounds': 0},\n", + " 'cy': {'hour': 0, 'minutes': 4, 'secounds': 20},\n", + " 'ku': {'hour': 0, 'minutes': 0, 'secounds': 4},\n", + " 'sat': {'hour': 0, 'minutes': 2, 'secounds': 91},\n", + " 'th': {'hour': 0, 'minutes': 67, 'secounds': 300},\n", + " 'ks': {'hour': 0, 'minutes': 0, 'secounds': 0},\n", + " 'ms': {'hour': 0, 'minutes': 1, 'secounds': 118},\n", + " 'ml': {'hour': 0, 'minutes': 1, 'secounds': 19},\n", + " 'hr': {'hour': 0, 'minutes': 0, 'secounds': 25},\n", + " 'mhn': {'hour': 0, 'minutes': 0, 'secounds': 8},\n", + " 'lv': {'hour': 0, 'minutes': 2, 'secounds': 4},\n", + " 'ss': {'hour': 0, 'minutes': 1, 'secounds': 7},\n", + " 'frc': {'hour': 0, 'minutes': 1, 'secounds': 24},\n", + " 'lad': {'hour': 0, 'minutes': 2, 'secounds': 38},\n", + " 'csb': {'hour': 0, 'minutes': 0, 'secounds': 24},\n", + " 'el': {'hour': 0, 'minutes': 15, 'secounds': 174},\n", + " 'tl': {'hour': 0, 'minutes': 0, 'secounds': 59},\n", + " 'tg': {'hour': 0, 'minutes': 0, 'secounds': 0},\n", + " 'om': {'hour': 0, 'minutes': 0, 'secounds': 0},\n", + " 'gsw': {'hour': 0, 'minutes': 0, 'secounds': 10},\n", + " 'sr-el': {'hour': 0, 'minutes': 4, 'secounds': 51},\n", + " 'si': {'hour': 0, 'minutes': 0, 'secounds': 1},\n", + " 'tcy': {'hour': 0, 'minutes': 0, 'secounds': 0},\n", + " 'sd': {'hour': 0, 'minutes': 0, 'secounds': 0},\n", + " 'zh-classical': {'hour': 0, 'minutes': 0, 'secounds': 50},\n", + " 'ta': {'hour': 0, 'minutes': 3, 'secounds': 57},\n", + " 'ga': {'hour': 0, 'minutes': 12, 'secounds': 25},\n", + " 'es-419': {'hour': 1, 'minutes': 44, 'secounds': 46},\n", + " 'ti': {'hour': 0, 'minutes': 1, 'secounds': 19},\n", + " 'yi': {'hour': 0, 'minutes': 3, 'secounds': 26},\n", + " 'tvl': {'hour': 0, 'minutes': 0, 'secounds': 42},\n", + " 'sr-ec': {'hour': 0, 'minutes': 2, 'secounds': 34},\n", + " 'kn': {'hour': 0, 'minutes': 1, 'secounds': 52},\n", + " 'ace': {'hour': 0, 'minutes': 4, 'secounds': 23},\n", + " 'et': {'hour': 0, 'minutes': 1, 'secounds': 37},\n", + " 'zh-hk': {'hour': 0, 'minutes': 0, 'secounds': 3},\n", + " 'gl': {'hour': 0, 'minutes': 0, 'secounds': 16},\n", + " 'mk': {'hour': 0, 'minutes': 3, 'secounds': 7},\n", + " 'yue': {'hour': 0, 'minutes': 0, 'secounds': 10}}" + ] + }, + "execution_count": 131, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "temp_minutes = minutes + secounds//60\n", + "reformated_secounds = secounds%60\n", + "reformated_hour = hour + temp_minutes//60\n", + "reformated_minuts = minutes % 60" + ] + }, + { + "cell_type": "code", + "execution_count": 106, + "id": "fd0abacd", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[{'id': 96449667,\n", + " 'timestamp': '2013-05-18T13:43:46Z',\n", + " 'user': {'id': 2010648, 'text': 'TsamiW'},\n", + " 'page': {'id': 8368107,\n", + " 'title': 'Yochai Benkler - On Autonomy, Control and Cultural Experience.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:05,000\\nInterview with [[w:Yochai Benkler|Yochai Benkler]]\\n\\n1\\n00:00:06,080 --> 00:00:08,040\\nWhen I say user autonomy, what I\\'m talking about,\\n\\n2\\n00:00:08,040 --> 00:00:15,920\\nis at the simplest level the ability \\nof people to do more for themselves,\\n\\n3\\n00:00:15,920 --> 00:00:19,920\\nby themselves, \\nwithout having to ask anyone\\'s permission\\n\\n4\\n00:00:19,920 --> 00:00:27,800\\nand without having to submit to anyone\\'s\\n\\n5\\n00:00:27,800 --> 00:00:29,840\\ncontrol over what it is they are doing. \\n\\n6\\n00:00:30,280 --> 00:00:39,480\\nWhat happened in the [[w:Industrial_information_economy|industrial \\ninformation and cultural economy]]\\n\\n7\\n00:00:39,480 --> 00:00:49,480\\nwas that people shifted from being \\nrelatively free to use a limited range\\n\\n8\\n00:00:49,480 --> 00:00:55,440\\nof materials that they had in social settings \\nthat were open for conversation.\\n\\n9\\n00:00:55,440 --> 00:01:01,280\\nFamily friends, \\nrelatively small localities for the majority of people.\\n\\n10\\n00:01:01,480 --> 00:01:05,800\\nTo an industrial model of cultural production\\n\\n11\\n00:01:05,840 --> 00:01:08,480\\nwhere the materials were produced by \\n\\n12\\n00:01:08,480 --> 00:01:15,400\\nsome set of commercial [[w:Producer|professional producers]], \\nwho then control the experience \\n\\n13\\n00:01:15,400 --> 00:01:22,400\\nand located individuals at the passive \\nreceiving end of the cultural conversation\\n\\n14\\n00:01:22,600 --> 00:01:29,600\\nso that efforts to take these materials and remake them, \\n\\n15\\n00:01:29,600 --> 00:01:32,480\\nor efforts to participate as a cultural speaker,\\n\\n16\\n00:01:32,520 --> 00:01:37,640\\nby and large required permission.\\n\\n17\\n00:01:38,000 --> 00:01:45,200\\nWhat we\\'re seeing now is that \\nthrough a combination of technology,\\n\\n18\\n00:01:45,120 --> 00:01:52,040\\nboth digital processing and computation technology \\nand networking technology,\\n\\n19\\n00:01:52,520 --> 00:01:56,080\\npeople can take more of their cultural environment, \\n\\n20\\n00:01:56,520 --> 00:02:01,520\\nmore of the information environment, \\nmake it their own,\\n\\n21\\n00:02:01,520 --> 00:02:04,760\\nuse it as found materials \\nto put together their own expressions,\\n\\n22\\n00:02:04,760 --> 00:02:07,800\\ndo their own research, \\ncreate their own communications, \\n\\n23\\n00:02:07,800 --> 00:02:11,320\\ncreate their own communities, \\nwhen they need collaboration with others.\\n\\n24\\n00:02:11,520 --> 00:02:16,480\\nRather than relying on a \\nlimited set of existing institutions.\\n\\n25\\n00:02:17,000 --> 00:02:20,840\\nOr on a set of materials \\nthat they are [[w:Copyright|not allowed to use]]\\n\\n26\\n00:02:20,920 --> 00:02:25,760\\nwithout going and asking \\n\"please may I use this?\\n\\n27\\n00:02:25,760 --> 00:02:27,080\\nPlease may I create?\"\\n\\n28\\n00:02:27,200 --> 00:02:30,800\\nWhat happens when people can do more for and \\n\\n29\\n00:02:30,800 --> 00:02:35,040\\nby themselves is that the set of actors;\\n\\n30\\n00:02:35,600 --> 00:02:38,240\\nprimarily companies, \\nand in some places governments\\n\\n31\\n00:02:38,840 --> 00:02:44,880\\nthat control the experience - \\nthose whose permission was required, \\n\\n32\\n00:02:45,200 --> 00:02:47,440\\nare resisting this transistion because \\n\\n33\\n00:02:47,440 --> 00:02:49,720\\ncontrol is a good thing to get \\nif you can get it. \\n\\n34\\n00:02:49,800 --> 00:02:52,760\\nOr at least control is a good thing to have \\nif you can get it.\\n\\n35\\n00:02:54,360 --> 00:03:01,080\\nAnd what we\\'re seeing today \\nis a series of different kinds of campaigns,\\n\\n36\\n00:03:01,160 --> 00:03:04,240\\nSome of them quite self conscious,\\n\\n37\\n00:03:04,360 --> 00:03:08,480\\nI think for example, \\n[[w:Hollywood|Hollywood\\'s]] campaign to expand\\n\\n38\\n00:03:08,560 --> 00:03:13,640\\ntechnological constraint\\non use of cultural materials\\n\\n39\\n00:03:13,680 --> 00:03:16,400\\n[[w:Digital rights management|digital rights management]], [[w:Trusted_computing|trusted systems]],\\n\\n40\\n00:03:16,440 --> 00:03:18,840\\nis a self conscious campaign.\\n\\n41\\n00:03:18,880 --> 00:03:27,440\\nSome of it much less conscious \\nmuch more based on anxieties,\\n\\n42\\n00:03:27,440 --> 00:03:30,800\\nand speaking out anxieties. \\nSo for example \\n\\n43\\n00:03:30,800 --> 00:03:35,600\\nwhen you hear the persistent concerns \\nover Internet security,\\n\\n44\\n00:03:35,760 --> 00:03:39,560\\nand what will happen if people crack your system\\n\\n45\\n00:03:39,560 --> 00:03:43,120\\nwhen you hear the constant concerns about quality\\n\\n46\\n00:03:43,080 --> 00:03:44,760\\nand where will good quality come from?\\n\\n47\\n00:03:44,760 --> 00:03:51,120\\nand the error rate in [[w:wikipedia|wikipedia]], \\nthese are all much more subconscious expressions\\n\\n48\\n00:03:51,200 --> 00:03:55,320\\nof a fear that ends up being used as justification,\\n\\n49\\n00:03:55,520 --> 00:04:00,520\\nfor embracing the control system \\nthat is being displaced\\n\\n50\\n00:04:00,520 --> 00:04:04,320\\nbecause of the technological and social actions,\\n\\n51\\n00:04:04,520 --> 00:04:11,120\\nbecause of the technological characteristics \\nand the social practices, \\n\\n52\\n00:04:11,400 --> 00:04:17,160\\nthat are being adopted in widespread \\ncooperative networked practices. \\n\\n53\\n00:04:17,680 --> 00:04:25,040\\nSo we\\'re seeing sometimes legal moves to change,\\n\\n54\\n00:04:25,280 --> 00:04:30,640\\nand require legal control where \\npractically it\\'s no longer necessary. \\n\\n55\\n00:04:30,680 --> 00:04:36,640\\nSometimes we see... I wouldn\\'t call them propaganda,\\n\\n56\\n00:04:36,680 --> 00:04:41,600\\nbut I\\'d call them public debate and public enactment \\n\\n57\\n00:04:41,600 --> 00:04:47,400\\nof anxiety, in order to increase the perceived importance,\\n\\n58\\n00:04:47,400 --> 00:04:51,480\\nof the traditional controllers. \\nThe most important place where you see this is,\\n\\n59\\n00:04:51,480 --> 00:04:55,080\\nteachers tell students not to use Wikipedia.\\n\\n60\\n00:04:55,720 --> 00:05:02,040\\nBecause that use shakes up the sense that I\\'m a teacher,\\n\\n61\\n00:05:02,200 --> 00:05:06,120\\nI know exactly what the set of materials are \\nthat I have approved\\n\\n62\\n00:05:06,120 --> 00:05:07,720\\nand are capable of being approved.\\n\\n63\\n00:05:07,800 --> 00:05:13,160\\nI am used to seeing Kids, \\nappealing to authority\\n\\n64\\n00:05:13,200 --> 00:05:16,120\\nrather that cross referencing multiple resources.\\n\\n65\\n00:05:16,360 --> 00:05:20,280\\nI don\\'t want to teach them \\nthat they should see this as a source,\\n\\n66\\n00:05:20,680 --> 00:05:24,400\\nBut not as a source of authority, a source of insight,\\n\\n67\\n00:05:24,400 --> 00:05:28,920\\na potential move in a research that\\'s always sceptical. \\n\\n68\\n00:05:29,000 --> 00:05:34,400\\nOne of the things that has to happen \\nin the context of the radically decentralised system\\n\\n69\\n00:05:34,440 --> 00:05:38,480\\nIs that we all have to become [[w:Sceptical|sceptical]] readers, \\nall the time.\\n\\n70\\n00:05:38,480 --> 00:05:43,200\\nWhich is a fundamental change from \\nthe traditional cultural system \\n\\n71\\n00:05:43,200 --> 00:05:46,840\\nWhere we would talk. \\n\\'How do I know if it\\'s true? Well you\\'ve said it.\\'\\n\\n72\\n00:05:46,840 --> 00:05:50,960\\nWhere did they publish it? \\nAnd looking for indicia of authority\\n\\n73\\n00:05:51,000 --> 00:05:53,520\\nthat will tell me this is authority.\\n\\n74\\n00:05:53,880 --> 00:05:58,920\\nInstead I have to begin to develop new capabilities \\n\\n75\\n00:05:59,200 --> 00:06:04,720\\nof looking at five sources, \\nassigning them different levels of weight\\n\\n76\\n00:06:04,720 --> 00:06:08,920\\nand saying I have reasonable confidence \\nthat the correct answer is\\n\\n77\\n00:06:08,920 --> 00:06:15,400\\nx rather than y without really assigning \\nfull authority to any single site.\\n\\n78\\n00:06:15,400 --> 00:06:19,800\\nSo that\\'s another locus of control trying to,\\n\\n79\\n00:06:19,800 --> 00:06:24,720\\nget people to continue to hang on \\nto to this sense that you need\\n\\n80\\n00:06:24,720 --> 00:06:29,080\\nthe expert authority, \\nyou need the person whose is in charge,\\n\\n81\\n00:06:29,080 --> 00:06:33,600\\nto tell you what is good and what is not good. \\nwhat is high quality, what is low quality.\\n\\n82\\n00:06:33,600 --> 00:06:38,280\\nWhat is reliable information, \\nwhat is not reliable information.\\n\\n83\\n00:06:38,280 --> 00:06:42,240\\nAnd that\\'s another domain \\nwhere we see the controllers,\\n\\n84\\n00:06:42,280 --> 00:06:49,200\\nin this case I think less strategically,\\n\\n85\\n00:06:49,200 --> 00:06:53,400\\nthan in the context of the way that for example, \\nHollywood backs digital rights management. \\n\\n86\\n00:06:53,560 --> 00:07:02,760\\nI think it\\'s a cousin in terms of self preservation.\\n\\n87\\n00:07:03,200 --> 00:07:08,080\\nBut I think it\\'s also a public enactment \\nof deeply held beliefs\\n\\n88\\n00:07:08,080 --> 00:07:12,520\\nabout why it is, that the particular people, \\nthat play a particular role\\n\\n89\\n00:07:12,520 --> 00:07:16,280\\nof authoritative speakers, \\nin the older system\\n\\n90\\n00:07:16,280 --> 00:07:20,840\\ncontinue to believe in the values \\nthat made them authoritative, \\n\\n91\\n00:07:20,840 --> 00:07:25,120\\nand made their authority important. \\nAnd so that\\'s much more cultural resistance,\\n\\n92\\n00:07:25,120 --> 00:07:31,600\\nthan it is practical, \\nlegal or technical design resistance.\\n\\n93\\n00:07:31,680 --> 00:07:37,080\\nBut were seeing resistance from \\ndifferent kind of actors who played the role, \\n\\n94\\n00:07:37,080 --> 00:07:42,800\\nof controllers in the older models, \\ntrying to preserve \\n\\n95\\n00:07:42,800 --> 00:07:45,880\\ntheir relatively privileged position as controllers,\\n\\n96\\n00:07:45,920 --> 00:07:48,120\\nthrough different systems of constraint',\n", + " 'bytes': 9181,\n", + " 'sha1': '53h2nyr26yv2j21bxu4bt78vss8otxa',\n", + " 'parent_id': 84426100,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 613396739,\n", + " 'timestamp': '2021-12-12T08:54:36Z',\n", + " 'user': {'id': 2366229, 'text': 'Achim55'},\n", + " 'page': {'id': 8381413,\n", + " 'title': 'Elephants Dream.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/2601:3C5:100:2780:803B:DFF0:DCF5:69A5|2601:3C5:100:2780:803B:DFF0:DCF5:69A5]] ([[User talk:2601:3C5:100:2780:803B:DFF0:DCF5:69A5|talk]]) to last revision by Krinkle',\n", + " 'text': \"1\\n00:00:15,000 --> 00:00:17,951\\nAt the left we can see...\\n\\n2\\n00:00:18,166 --> 00:00:20,083\\nAt the right we can see the...\\n\\n3\\n00:00:20,119 --> 00:00:21,962\\n...the head-snarlers\\n\\n4\\n00:00:21,999 --> 00:00:24,368\\nEverything is safe.\\nPerfectly safe.\\n\\n5\\n00:00:24,582 --> 00:00:27,035\\nEmo?\\n\\n6\\n00:00:28,206 --> 00:00:29,996\\nWatch out!\\n\\n7\\n00:00:47,037 --> 00:00:48,494\\nAre you hurt?\\n\\n8\\n00:00:51,994 --> 00:00:53,949\\nI don't think so.\\nYou?\\n\\n9\\n00:00:55,160 --> 00:00:56,985\\nI'm Ok.\\n\\n10\\n00:00:57,118 --> 00:01:01,111\\nGet up.\\nEmo, it's not safe here.\\n\\n11\\n00:01:02,034 --> 00:01:03,573\\nLet's go.\\n\\n12\\n00:01:03,610 --> 00:01:05,114\\nWhat's next?\\n\\n13\\n00:01:05,200 --> 00:01:09,146\\nYou'll see!\\n\\n14\\n00:01:16,032 --> 00:01:18,022\\nEmo.\\nThis way.\\n\\n15\\n00:01:34,237 --> 00:01:35,481\\nFollow me!\\n\\n16\\n00:02:11,106 --> 00:02:12,480\\nHurry Emo!\\n\\n17\\n00:02:48,059 --> 00:02:49,930\\nYou're not paying attention!\\n\\n18\\n00:02:50,142 --> 00:02:54,052\\nI just want to answer the...\\n...phone.\\n\\n19\\n00:02:54,974 --> 00:02:57,972\\nEmo, look,\\nI mean listen.\\n\\n20\\n00:02:59,140 --> 00:03:02,008\\nYou have to learn to listen.\\n\\n21\\n00:03:03,140 --> 00:03:04,965\\nThis is not some game.\\n\\n22\\n00:03:05,056 --> 00:03:09,345\\nYou, I mean we,\\nwe could easily die out here.\\n\\n23\\n00:03:10,014 --> 00:03:13,959\\nListen,\\nlisten to the sounds of the machine.\\n\\n24\\n00:03:18,054 --> 00:03:20,009\\nListen to your breathing.\\n\\n25\\n00:04:27,001 --> 00:04:28,956\\nWell, don't you ever get tired of this?\\n\\n26\\n00:04:29,084 --> 00:04:30,909\\nTired?!?\\n\\n27\\n00:04:31,126 --> 00:04:34,491\\nEmo, the machine is like clockwork.\\n\\n28\\n00:04:35,083 --> 00:04:37,074\\nOne move out of place...\\n\\n29\\n00:04:37,166 --> 00:04:39,121\\n...and you're ground to a pulp.\\n\\n30\\n00:04:40,958 --> 00:04:42,004\\nBut isn't it -\\n\\n31\\n00:04:42,041 --> 00:04:46,034\\nPulp, Emo!\\nIs that what you want, pulp?\\n\\n32\\n00:04:47,040 --> 00:04:48,995\\nEmo, your goal in life...\\n\\n33\\n00:04:50,081 --> 00:04:51,953\\n...pulp?\\n\\n34\\n00:05:41,156 --> 00:05:43,028\\nEmo, close your eyes.\\n\\n35\\n00:05:44,156 --> 00:05:46,027\\nWhy?\\n- Now!\\n\\n36\\n00:05:51,155 --> 00:05:52,102\\nOk.\\n\\n37\\n00:05:53,113 --> 00:05:54,688\\nGood.\\n\\n38\\n00:05:59,070 --> 00:06:02,103\\nWhat do you see at your left side, Emo?\\n\\n39\\n00:06:04,028 --> 00:06:05,899\\nNothing.\\n- Really?\\n\\n40\\n00:06:06,027 --> 00:06:07,105\\nNo, nothing at all.\\n\\n41\\n00:06:07,944 --> 00:06:11,984\\nAnd at your right,\\nwhat do you see at your right side, Emo?\\n\\n42\\n00:06:13,151 --> 00:06:16,102\\nThe same Proog, exactly the same...\\n\\n43\\n00:06:16,942 --> 00:06:19,098\\n...nothing!\\n- Great.\\n\\n44\\n00:06:40,105 --> 00:06:42,724\\nListen Proog! Do you hear that!\\n\\n45\\n00:06:43,105 --> 00:06:44,894\\nCan we go here?\\n\\n46\\n00:06:44,979 --> 00:06:47,894\\nThere?\\nIt isn't safe, Emo.\\n\\n47\\n00:06:49,145 --> 00:06:52,013\\nBut...\\n- Trust me, it's not.\\n\\n48\\n00:06:53,020 --> 00:06:54,145\\nMaybe I could...\\n\\n49\\n00:06:54,181 --> 00:06:55,969\\nNo.\\n\\n50\\n00:06:57,102 --> 00:06:59,934\\nNO!\\n\\n51\\n00:07:00,144 --> 00:07:03,058\\nAny further questions, Emo?\\n\\n52\\n00:07:03,976 --> 00:07:05,090\\nNo.\\n\\n53\\n00:07:09,059 --> 00:07:10,089\\nEmo?\\n\\n54\\n00:07:11,142 --> 00:07:13,058\\nEmo, why...\\n\\n55\\n00:07:13,095 --> 00:07:14,022\\nEmo...\\n\\n56\\n00:07:14,058 --> 00:07:18,003\\n...why can't you see\\nthe beauty of this place?\\n\\n57\\n00:07:18,141 --> 00:07:20,048\\nThe way it works.\\n\\n58\\n00:07:20,140 --> 00:07:23,895\\nHow perfect it is.\\n\\n59\\n00:07:23,932 --> 00:07:26,964\\nNo, Proog, I don't see.\\n\\n60\\n00:07:27,056 --> 00:07:29,970\\nI don't see because there's nothing there.\\n\\n61\\n00:07:31,055 --> 00:07:34,965\\nAnd why should I trust my\\nlife to something that isn't there?\\n\\n62\\n00:07:35,055 --> 00:07:36,926\\nWell can you tell me that?\\n\\n63\\n00:07:37,054 --> 00:07:38,926\\nAnswer me!\\n\\n64\\n00:07:42,970 --> 00:07:44,000\\nProog...\\n\\n65\\n00:07:45,053 --> 00:07:46,985\\n...you're a sick man!\\n\\n66\\n00:07:47,022 --> 00:07:48,918\\nStay away from me!\\n\\n67\\n00:07:52,052 --> 00:07:54,884\\nNo! Emo! It's a trap!\\n\\n68\\n00:07:55,135 --> 00:07:56,931\\nHah, it's a trap.\\n\\n69\\n00:07:56,968 --> 00:08:01,043\\nAt the left side you can see\\nthe hanging gardens of Babylon!\\n\\n70\\n00:08:01,967 --> 00:08:03,957\\nHow's that for a trap?\\n\\n71\\n00:08:05,050 --> 00:08:06,922\\nNo, Emo.\\n\\n72\\n00:08:09,008 --> 00:08:12,088\\nAt the right side you can see...\\n...well guess what...\\n\\n73\\n00:08:12,924 --> 00:08:14,665\\n...the colossus of Rhodes!\\n\\n74\\n00:08:15,132 --> 00:08:16,053\\nNo!\\n\\n75\\n00:08:16,090 --> 00:08:21,919\\nThe colossus of Rhodes\\nand it is here just for you Proog.\\n\\n76\\n00:08:51,001 --> 00:08:52,923\\nIt is there...\\n\\n77\\n00:08:52,959 --> 00:08:56,040\\nI'm telling you,\\nEmo...\\n\\n78\\n00:08:57,000 --> 00:08:59,867\\n...it is.\",\n", + " 'bytes': 4468,\n", + " 'sha1': 'm32glzvsdh4e2w8sahg5xcnonwtpcmb',\n", + " 'parent_id': 613314558,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357442,\n", + " 'timestamp': '2021-11-09T10:08:57Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8381428,\n", + " 'title': 'Elephants Dream.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.pt.srt]] to [[TimedText:Elephants Dream.ogv.pt.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:10,000 --> 00:00:13,125\\nElefantes Sonham\\n\\n2\\n00:00:15,000 --> 00:00:18,000\\nÀ esquerda podemos ver...\\n\\n3\\n00:00:18,042 --> 00:00:20,000\\nÀ direita podemos ver o...\\n\\n4\\n00:00:20,042 --> 00:00:21,083\\n...o decapitador.\\n\\n5\\n00:00:22,000 --> 00:00:24,042\\nEstá tudo seguro...\\nMuito seguro...\\n\\n6\\n00:00:24,627 --> 00:00:25,627\\nEmo...\\n\\n7\\n00:00:26,000 --> 00:00:27,000\\nEmo?\\n\\n8\\n00:00:28,083 --> 00:00:30,000\\nCuidado!\\n\\n9\\n00:00:47,000 --> 00:00:48,000\\nmagoaste-te?\\n\\n10\\n00:00:51,083 --> 00:00:53,083\\nAcho que não...\\nE Tu?\\n\\n11\\n00:00:55,042 --> 00:00:57,000\\nEu estou bem.\\n\\n12\\n00:00:57,042 --> 00:01:01,042\\nLevanta-te, Emo.\\nNão estamos seguros, aqui.\\n\\n13\\n00:01:02,000 --> 00:01:03,042\\nAnda.\\n\\n14\\n00:01:03,042 --> 00:01:05,042\\nOnde vamos?\\n\\n15\\n00:01:05,083 --> 00:01:09,000\\nJá vais ver! Já vais ver!\\n\\n16\\n00:01:16,000 --> 00:01:18,000\\nEmo. Por aqui...\\n\\n17\\n00:01:34,083 --> 00:01:35,042\\nSegue-me!\\n\\n18\\n00:02:11,042 --> 00:02:12,042\\nAnda! Despacha-te Emo!\\n\\n19\\n00:02:48,000 --> 00:02:50,000\\nNão estás a prestar atenção!\\n\\n20\\n00:02:50,042 --> 00:02:54,042\\nSó quero, atender...\\n...o telefone.\\n\\n21\\n00:02:55,000 --> 00:02:58,000\\nEmo, olha! \\n...quer dizer, escuta!\\n\\n22\\n00:02:59,042 --> 00:03:02,000\\nTens que aprender a escutar.\\n\\n23\\n00:03:03,042 --> 00:03:05,000\\nIsto não é um jogo.\\n\\n24\\n00:03:06,000 --> 00:03:08,042\\nTu... isto é... nós, podemos facilmente morrer aqui.\\n\\n25\\n00:03:10,000 --> 00:03:14,000\\nEscuta, os sons da máquina.\\n\\n26\\n00:03:18,000 --> 00:03:20,042\\nEscuta a tua respiração.\\n\\n27\\n00:04:27,000 --> 00:04:29,000\\nNão estás farto disto?\\n\\n28\\n00:04:29,042 --> 00:04:31,000\\nFarto?!\\n\\n29\\n00:04:31,042 --> 00:04:34,042\\nEmo, a máquina é como as engrenagens de um relógio\\n\\n30\\n00:04:35,042 --> 00:04:37,042\\nQualquer movimento em falso e...\\n\\n31\\n00:04:37,083 --> 00:04:39,042\\n...ficará reduzido a pó.\\n\\n32\\n00:04:41,000 --> 00:04:42,000\\nMas não é...\\n\\n33\\n00:04:42,042 --> 00:04:46,042\\nPó, Emo! É isso que você quer, pó?\\n\\n34\\n00:04:48,000 --> 00:04:50,000\\nÉ esse o teu objetivo na vida?\\n\\n35\\n00:04:50,042 --> 00:04:52,000\\nPó?!\\n\\n36\\n00:05:41,083 --> 00:05:43,042\\nEmo, fecha os olhos.\\n\\n37\\n00:05:44,083 --> 00:05:46,042\\nPorquê?\\n- Agora!\\n\\n38\\n00:05:53,042 --> 00:05:56,000\\nBem.\\n\\n39\\n00:05:59,042 --> 00:06:02,042\\nO que vês à tua esquerda Emo?\\n\\n40\\n00:06:04,042 --> 00:06:06,000\\nNada.\\n- Nada?\\n\\n41\\n00:06:06,000 --> 00:06:07,083\\nMesmo nada...\\n\\n42\\n00:06:08,000 --> 00:06:12,042\\nE à tua direita?\\no que vês à tua direita Emo?\\n\\n43\\n00:06:13,083 --> 00:06:16,083\\nO mesmo Proog, exactamente o mesmo...\\n\\n44\\n00:06:17,000 --> 00:06:18,042\\nNada!\\n\\n45\\n00:06:40,042 --> 00:06:42,083\\nEscuta Proog! Ouve isto!\\n\\n46\\n00:06:43,042 --> 00:06:45,000\\nPodemos entrar ali?\\n\\n47\\n00:06:45,000 --> 00:06:48,000\\nAli? Não é seguro.\\n\\n48\\n00:06:49,083 --> 00:06:52,042\\nMas...\\n- Confia em mim, não é seguro.\\n\\n49\\n00:06:53,000 --> 00:06:54,042\\nTalvez eu pudesse...\\n\\n50\\n00:06:54,083 --> 00:06:56,000\\nNão.\\n\\n51\\n00:06:57,000 --> 00:06:58,000\\nMas...\\n\\n52\\n00:06:58,002 --> 00:07:00,000\\nNÃO!\\n\\n53\\n00:07:00,083 --> 00:07:03,042\\nMais alguma pergunta Emo?\\n\\n54\\n00:07:04,000 --> 00:07:05,083\\nNão.\\n\\n55\\n00:07:09,042 --> 00:07:10,083\\nEmo?\\n\\n56\\n00:07:11,083 --> 00:07:13,042\\nEmo, porquê...\\n\\n57\\n00:07:13,042 --> 00:07:14,042\\nEmo...\\n\\n58\\n00:07:14,042 --> 00:07:18,042\\n...porque é que não vês a beleza disto tudo?\\n\\n59\\n00:07:18,083 --> 00:07:20,042\\nA maneira como funciona.\\n\\n60\\n00:07:20,083 --> 00:07:24,000\\nComo é perfeito.\\n\\n61\\n00:07:24,000 --> 00:07:27,042\\nNão, Proog, não vejo.\\n\\n62\\n00:07:27,042 --> 00:07:30,000\\nNão vejo porque não existe.\\n\\n63\\n00:07:31,042 --> 00:07:35,000\\nE porque devo confiar a minha vida a algo que não existe?\\n\\n64\\n00:07:35,042 --> 00:07:37,000\\nPodes-me dizer porquê?!\\n\\n65\\n00:07:37,042 --> 00:07:39,000\\nResponde!\\n\\n66\\n00:07:43,000 --> 00:07:44,042\\nProog...\\n\\n67\\n00:07:45,042 --> 00:07:47,000\\nEstás doente!\\n\\n68\\n00:07:47,000 --> 00:07:49,000\\nFica bem longe de mim.\\n\\n69\\n00:07:52,042 --> 00:07:55,000\\nNão! Emo! É uma armadilha!\\n\\n70\\n00:07:55,083 --> 00:07:57,000\\nÉ uma armadilha...!\\n\\n71\\n00:07:57,000 --> 00:08:01,042\\nÀ esquerda podes ver os jardins suspensos da Babilónia!\\n\\n72\\n00:08:02,000 --> 00:08:04,000\\nQue tal isto como armadilha?\\n\\n73\\n00:08:05,042 --> 00:08:07,000\\nNão, Emo.\\n\\n74\\n00:08:09,042 --> 00:08:12,042\\nA direita podes ver...\\n...adivinha...\\n\\n75\\n00:08:13,000 --> 00:08:14,042\\n...o Colosso de Rhodes!\\n\\n76\\n00:08:15,083 --> 00:08:16,042\\nNão!\\n\\n77\\n00:08:16,042 --> 00:08:22,000\\nO Colosso de Rhodes...\\ne está aqui só para ti Proog!\\n\\n78\\n00:08:51,000 --> 00:08:53,000\\nEstá aqui...\\n\\n79\\n00:08:53,000 --> 00:08:55,042\\nEstou-te a dizer, Emo...\\n\\n80\\n00:08:57,000 --> 00:09:00,000\\n...está.',\n", + " 'bytes': 4563,\n", + " 'sha1': 'krrrra6jf4nshqpbvgofpwcpcvqj52r',\n", + " 'parent_id': 48223851,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357634,\n", + " 'timestamp': '2021-11-09T10:10:14Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8381449,\n", + " 'title': 'Elephants Dream.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.sv.srt]] to [[TimedText:Elephants Dream.ogv.sv.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,250\\nTill vänster kan vi se...\\nSer vi...\\n\\n2\\n00:00:18,708 --> 00:00:20,333\\nTill höger ser vi...\\n\\n3\\n00:00:20,417 --> 00:00:21,958\\n...huvudkaparna.\\n\\n4\\n00:00:22,000 --> 00:00:24,792\\nAllt är säkert,\\nalldeles ofarligt.\\n\\n5\\n00:00:24,917 --> 00:00:26,833\\nEmo?\\n\\n6\\n00:00:28,750 --> 00:00:30,167\\nSe upp!\\n\\n7\\n00:00:46,708 --> 00:00:48,750\\nÄr du skadad?\\n\\n8\\n00:00:51,875 --> 00:00:54,458\\nJag tror inte det...\\nÄr du?\\n\\n9\\n00:00:55,292 --> 00:00:57,333\\nJag är ok.\\n\\n10\\n00:00:57,542 --> 00:01:01,625\\nRes dig upp Emo.\\nDet är inte säkert här.\\n\\n11\\n00:01:02,208 --> 00:01:03,625\\nKom så går vi.\\n\\n12\\n00:01:03,708 --> 00:01:05,708\\nVad nu då?\\n\\n13\\n00:01:05,833 --> 00:01:07,833\\nDu får se...\\n\\n14\\n00:01:08,042 --> 00:01:10,417\\nDu får se.\\n\\n15\\n00:01:15,958 --> 00:01:18,375\\nEmo, den här vägen.\\n\\n16\\n00:01:34,417 --> 00:01:36,750\\nFölj efter mig!\\n\\n17\\n00:02:11,250 --> 00:02:13,250\\nSkynda dig, Emo!\\n\\n18\\n00:02:48,375 --> 00:02:50,583\\nDu är inte uppmärksam!\\n\\n19\\n00:02:50,708 --> 00:02:54,500\\nJag vill bara svara...\\n... i telefonen.\\n\\n20\\n00:02:54,500 --> 00:02:58,208\\nEmo, se här...\\nLyssna menar jag.\\n\\n21\\n00:02:59,708 --> 00:03:02,292\\nDu måste lära dig att lyssna.\\n\\n22\\n00:03:03,292 --> 00:03:05,208\\nDet här är ingen lek.\\n\\n23\\n00:03:05,250 --> 00:03:08,917\\nDu... Jag menar vi,\\nvi skulle kunna dö här ute.\\n\\n24\\n00:03:09,917 --> 00:03:11,417\\nLyssna...\\n\\n25\\n00:03:11,708 --> 00:03:14,833\\nLyssna på ljuden från maskinen.\\n\\n26\\n00:03:18,125 --> 00:03:21,417\\nLyssna på dina andetag.\\n\\n27\\n00:04:26,625 --> 00:04:29,250\\nTröttnar du aldrig på det här?\\n\\n28\\n00:04:29,542 --> 00:04:31,083\\nTröttnar!?\\n\\n29\\n00:04:31,208 --> 00:04:33,458\\nEmo, maskinen är som...\\n\\n30\\n00:04:33,458 --> 00:04:35,333\\nSom ett urverk.\\n\\n31\\n00:04:35,417 --> 00:04:37,167\\nEtt felsteg...\\n\\n32\\n00:04:37,208 --> 00:04:39,750\\n...och du blir krossad.\\n\\n33\\n00:04:41,042 --> 00:04:42,292\\nMen är det inte -\\n\\n34\\n00:04:42,292 --> 00:04:47,000\\nKrossad, Emo!\\nÄr det vad du vill bli? Krossad till mos?\\n\\n35\\n00:04:47,500 --> 00:04:50,542\\nEmo, är det ditt mål i livet?\\n\\n36\\n00:04:50,667 --> 00:04:53,250\\nAtt bli mos!?\\n\\n37\\n00:05:41,375 --> 00:05:43,458\\nEmo, blunda.\\n\\n38\\n00:05:44,375 --> 00:05:46,542\\nVarför då?\\n- Blunda!\\n\\n39\\n00:05:51,292 --> 00:05:55,042\\nOk.\\n- Bra.\\n\\n40\\n00:05:59,500 --> 00:06:02,750\\nVad ser du till vänster om dig Emo?\\n\\n41\\n00:06:04,125 --> 00:06:06,292\\nIngenting.\\n- Säker?\\n\\n42\\n00:06:06,333 --> 00:06:07,958\\nIngenting alls.\\n\\n43\\n00:06:08,042 --> 00:06:12,625\\nJaså, och till höger om dig...\\nVad ser du där, Emo?\\n\\n44\\n00:06:13,750 --> 00:06:15,583\\nSamma där Proog...\\n\\n45\\n00:06:15,583 --> 00:06:18,083\\nExakt samma där, ingenting!\\n\\n46\\n00:06:18,083 --> 00:06:19,667\\nPerfekt.\\n\\n47\\n00:06:40,500 --> 00:06:42,917\\nLyssna Proog! Hör du?\\n\\n48\\n00:06:43,500 --> 00:06:45,125\\nKan vi gå dit?\\n\\n49\\n00:06:45,208 --> 00:06:48,125\\nGå dit?\\nDet är inte tryggt.\\n\\n50\\n00:06:49,583 --> 00:06:52,583\\nMen, men...\\n- Tro mig, det inte säkert.\\n\\n51\\n00:06:53,000 --> 00:06:54,292\\nMen kanske om jag -\\n\\n52\\n00:06:54,292 --> 00:06:56,333\\nNej.\\n\\n53\\n00:06:57,208 --> 00:07:00,167\\nMen -\\n- Nej, NEJ!\\n\\n54\\n00:07:00,917 --> 00:07:03,792\\nNågra fler frågor Emo?\\n\\n55\\n00:07:04,250 --> 00:07:05,875\\nNej.\\n\\n56\\n00:07:09,542 --> 00:07:11,375\\nEmo?\\n- Ja?\\n\\n57\\n00:07:11,542 --> 00:07:15,667\\nEmo, varför...\\n\\n58\\n00:07:15,792 --> 00:07:18,583\\nVarför kan du inte se skönheten i det här?\\n\\n59\\n00:07:18,792 --> 00:07:21,708\\nHur det fungerar.\\n\\n60\\n00:07:21,833 --> 00:07:24,000\\nHur perfekt det är.\\n\\n61\\n00:07:24,083 --> 00:07:27,333\\nNej Proog, jag kan inte se det.\\n\\n62\\n00:07:27,333 --> 00:07:30,333\\nJag ser det inte, för det finns inget där.\\n\\n63\\n00:07:31,292 --> 00:07:35,333\\nOch varför skulle jag lägga mitt liv\\ni händerna på något som inte finns?\\n\\n64\\n00:07:35,333 --> 00:07:37,083\\nKan du berätta det för mig?\\n- Emo...\\n\\n65\\n00:07:37,083 --> 00:07:39,167\\nSvara mig!\\n\\n66\\n00:07:43,500 --> 00:07:45,208\\nProog...\\n\\n67\\n00:07:45,208 --> 00:07:47,083\\nDu är inte frisk!\\n\\n68\\n00:07:47,167 --> 00:07:49,292\\nHåll dig borta från mig!\\n\\n69\\n00:07:52,292 --> 00:07:55,083\\nNej! Emo!\\nDet är en fälla!\\n\\n70\\n00:07:55,375 --> 00:07:57,208\\nHeh, det är en fälla.\\n\\n71\\n00:07:57,208 --> 00:08:01,708\\nPå vänster sida ser vi...\\nBabylons hängande trädgårdar!\\n\\n72\\n00:08:01,958 --> 00:08:04,000\\nVad sägs om den fällan?\\n\\n73\\n00:08:05,458 --> 00:08:07,333\\nNej, Emo.\\n\\n74\\n00:08:08,917 --> 00:08:12,667\\nTill höger ser vi...\\nGissa!\\n\\n75\\n00:08:12,750 --> 00:08:15,125\\nRhodos koloss!\\n\\n76\\n00:08:15,375 --> 00:08:16,500\\nNej!\\n\\n77\\n00:08:16,500 --> 00:08:20,250\\nKolossen på Rhodos!\\nOch den är här för din skull, Proog...\\n\\n78\\n00:08:20,250 --> 00:08:23,250\\nBara för din skull.\\n\\n79\\n00:08:50,917 --> 00:08:53,250\\nDen är där...\\n\\n80\\n00:08:53,625 --> 00:08:56,417\\nTro mig.\\nEmo...\\n\\n81\\n00:08:57,000 --> 00:09:00,000\\nDet är den.\\nDet är den...',\n", + " 'bytes': 4734,\n", + " 'sha1': 're6ev9mnaupiajbeg6cf2vf1ytcrins',\n", + " 'parent_id': 45478459,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 259871584,\n", + " 'timestamp': '2017-09-26T09:15:04Z',\n", + " 'user': {'id': 2330002, 'text': 'KiwiNeko14'},\n", + " 'page': {'id': 8466366,\n", + " 'title': 'Folgers.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"0\\n00:00:01,707 --> 00:00:04,154\\nHarold is the coffee alright?\\n\\n1\\n00:00:04,169 --> 00:00:05,185\\nuh-uhmmm\\n\\n2\\n00:00:05,005 --> 00:00:07,785\\nYou mean it's as bad as yesterday?\\n\\n3\\n00:00:07,785 --> 00:00:08,962\\nuh-huh\\n\\n4\\n00:00:09 --> 00:00:10,169\\nNo improvement at all?\\n\\n5\\n00:00:10,446 --> 00:00:11,823\\nuh-uh\\n\\n6\\n00:00:12,002 --> 00:00:13,700\\nHarold don't just shake your head,\\n\\n7\\n00:00:13,702 --> 00:00:17\\nyou have to tell me what's wrong with the coffee\\n\\n8\\n00:00:17,538 --> 00:00:19\\nBad taste\\n\\n9\\n00:00:19,477 --> 00:00:21,002\\nNow what am I going to do?\\n\\n10\\n00:00:21,623 --> 00:00:23,005\\nSo Mary, Hi\\n\\n11\\n00:00:23,007 --> 00:00:25\\nHello Jane\\n\\n12\\n00:00:25,038 --> 00:00:29,246\\nHelp me out will ya, Harold hates my coffee. What kind do you use?\\n\\n13\\n00:00:30 --> 00:00:31\\nInstant Folgers\\n\\n14\\n00:00:31 --> 00:00:32\\nInstant Folgers?\\n\\n15\\n00:00:32,002 --> 00:00:34\\nTastes good as fresh perked\\n\\n16\\n00:00:34,002 --> 00:00:37,008\\nGood as fresh perked. I'll try it.\\n\\n17\\n00:00:38,725 --> 00:00:42,008\\nJane this coffee is delicious, you know that?\\n\\n18\\n00:00:42,002 --> 00:00:42,084\\num-hmmm\\n\\n19\\n00:00:43,464 --> 00:00:46\\nIts not the same kind we have been using is it?\\n\\n20\\n00:00:46,002 --> 00:00:46,502\\num-uhmmm\\n\\n21\\n00:00:47,148 --> 00:00:51,433\\nDon't just shake your head, Explain why the coffee is so good.\\n\\n22\\n00:00:52,664 --> 00:00:54,005\\nGood taste\\n\\n23\\n00:00:55,006 --> 00:00:59\\nTastes good as fresh-perked, Instant Folgers\",\n", + " 'bytes': 1407,\n", + " 'sha1': 'gdlpshcepiswn6xkbippkyu6zuont64',\n", + " 'parent_id': 203829051,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 300912672,\n", + " 'timestamp': '2018-05-13T07:58:44Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8701591,\n", + " 'title': 'Krazy Kat Bugologist 1916 silent.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '84user moved page [[TimedText:Krazy Kat Bugolist 1916 silent.ogv.en.srt]] to [[TimedText:Krazy Kat Bugologist 1916 silent.ogv.en.srt]]: media file was renamed and timed text file name must match to function',\n", + " 'text': \"1\\n00:00:22,000 --> 00:00:27,000\\nI'll teach thee Bugology, Ignatzes\\n\\n2 \\n00:00:40,000 --> 00:00:43,000 \\nSomething tells me\\n\\n3 \\n00:00:58,000 --> 00:01:04,000 \\nLook, Ignatz, a sleeping bee\\n\\n4\\n00:01:04,000 --> 00:01:08,000 \\nA dead bee y'mean\\n\\n5\\n00:01:10,000 --> 00:01:14,000 \\nHe must be cold\\n\\n6\\n00:01:22,000 --> 00:01:25,000 \\nPoor l'il bee\\n\\n7\\n00:01:25,000 --> 00:01:31,000 \\nAh, he's happy, he's in bee heaven\\n\\n8\\n00:01:51,000 --> 00:01:56,000 \\nY'see Ignatz, y'was wrong\\n\\n9\\n00:01:58,000 --> 00:02:01,000 \\nI WAS.\\n\\n10\\n00:02:45,000 --> 00:02:49,000 \\nLeave it to me\",\n", + " 'bytes': 554,\n", + " 'sha1': 'kiepnuj4cjzni30q4k42fhede6znewb',\n", + " 'parent_id': 32876259,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 300913469,\n", + " 'timestamp': '2018-05-13T08:05:33Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8704057,\n", + " 'title': 'Krazy Kat Bugologist 1916 silent.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '84user moved page [[TimedText:Krazy Kat Bugolist 1916 silent.ogv.de.srt]] to [[TimedText:Krazy Kat Bugologist 1916 silent.ogv.de.srt]]: wegen Media File Umbenennung',\n", + " 'text': '1\\n00:00:22,000 --> 00:00:27,000\\nIgnatzes, ich werde Dich Bugology unterrichten\\n\\n2 \\n00:00:40,000 --> 00:00:43,000 \\nEtwas scheint\\n\\n3 \\n00:00:58,000 --> 00:01:04,000 \\nGuck mal Ignatz, eine schlafende Biene\\n\\n4\\n00:01:04,000 --> 00:01:08,000 \\nEine tote Biene meinst Du\\n\\n5\\n00:01:10,000 --> 00:01:14,000 \\nEr muss sich kalt fühlen\\n\\n6\\n00:01:22,000 --> 00:01:25,000 \\nArme kleine Biene\\n\\n7\\n00:01:25,000 --> 00:01:31,000 \\nÄh, er ist glücklich, er steht im Bienehimmel\\n\\n8\\n00:01:51,000 --> 00:01:56,000 \\nNa Ignatz, Du hast sich geirrt\\n\\n9\\n00:01:58,000 --> 00:02:01,000 \\nICH HATTE\\n\\n10\\n00:02:45,000 --> 00:02:49,000 \\nLaß mich nur machen',\n", + " 'bytes': 620,\n", + " 'sha1': 'b8v62kg7st71ah4kzwez45qr9mdkl9t',\n", + " 'parent_id': 32888107,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33072972,\n", + " 'timestamp': '2009-12-15T03:18:01Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8750780,\n", + " 'title': 'Elephants Dream 1024.avi.to63.5w720vbr1760soft-targetabr112.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Elephants Dream 1024.avi.to63.5w720vbr1760soft-targetabr112.ogv]] English subtitles',\n", + " 'text': \"1\\n00:00:15,000 --> 00:00:17,951\\nAt the left we can see...\\n\\n2\\n00:00:18,166 --> 00:00:20,083\\nAt the right we can see the...\\n\\n3\\n00:00:20,119 --> 00:00:21,962\\n...the head-snarlers\\n\\n4\\n00:00:21,999 --> 00:00:24,368\\nEverything is safe.\\nPerfectly safe.\\n\\n5\\n00:00:24,582 --> 00:00:27,035\\nEmo?\\n\\n6\\n00:00:28,206 --> 00:00:29,996\\nWatch out!\\n\\n7\\n00:00:47,037 --> 00:00:48,494\\nAre you hurt?\\n\\n8\\n00:00:51,994 --> 00:00:53,949\\nI don't think so.\\nYou?\\n\\n9\\n00:00:55,160 --> 00:00:56,985\\nI'm Ok.\\n\\n10\\n00:00:57,118 --> 00:01:01,111\\nGet up.\\nEmo, it's not safe here.\\n\\n11\\n00:01:02,034 --> 00:01:03,573\\nLet's go.\\n\\n12\\n00:01:03,610 --> 00:01:05,114\\nWhat's next?\",\n", + " 'bytes': 628,\n", + " 'sha1': 'j0tkzxu0okjbngteehrfz5zp7x94zf8',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33073038,\n", + " 'timestamp': '2009-12-15T03:22:53Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8750804,\n", + " 'title': 'Elephants Dream 1024.avi.to63.5w720vbr1760soft-targetabr112.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Elephants Dream 1024.avi.to63.5w720vbr1760soft-targetabr112.ogv]] Svenska undertext',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,250\\nTill vänster kan vi se...|Ser vi...\\n\\n2\\n00:00:18,708 --> 00:00:20,333\\nTill höger ser vi...\\n\\n3\\n00:00:20,417 --> 00:00:21,958\\n...huvudkaparna.\\n\\n4\\n00:00:22,000 --> 00:00:24,792\\nAllt är säkert,|alldeles ofarligt.\\n\\n5\\n00:00:24,917 --> 00:00:26,833\\nEmo?\\n\\n6\\n00:00:28,750 --> 00:00:30,167\\nSe upp!\\n\\n7\\n00:00:46,708 --> 00:00:48,750\\nÄr du skadad?\\n\\n8\\n00:00:51,875 --> 00:00:54,458\\nJag tror inte det...|Är du?\\n\\n9\\n00:00:55,292 --> 00:00:57,333\\nJag är ok.\\n\\n10\\n00:00:57,542 --> 00:01:01,625\\nRes dig upp Emo.|Det är inte säkert här.\\n\\n11\\n00:01:02,208 --> 00:01:03,625\\nKom så går vi.\\n\\n12\\n00:01:03,708 --> 00:01:05,708\\nVad nu då?\\n\\n13\\n00:01:05,833 --> 00:01:07,833\\nDu får se...',\n", + " 'bytes': 700,\n", + " 'sha1': '42rhm6ajjrmymgqezrewswjbwn9lpeh',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33073523,\n", + " 'timestamp': '2009-12-15T04:01:33Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8750948,\n", + " 'title': 'Elephants Dream 1024.avi.w400vbr180abr48c2two-pass.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Elephants Dream 1024.avi.w400vbr180abr48c2two-pass.ogv]] English subtitles',\n", + " 'text': \"1\\n00:00:15,000 --> 00:00:17,951\\nAt the left we can see...\\n\\n2\\n00:00:18,166 --> 00:00:20,083\\nAt the right we can see the...\\n\\n3\\n00:00:20,119 --> 00:00:21,962\\n...the head-snarlers\\n\\n4\\n00:00:21,999 --> 00:00:24,368\\nEverything is safe.\\nPerfectly safe.\\n\\n5\\n00:00:24,582 --> 00:00:27,035\\nEmo?\\n\\n6\\n00:00:28,206 --> 00:00:29,996\\nWatch out!\\n\\n7\\n00:00:47,037 --> 00:00:48,494\\nAre you hurt?\\n\\n8\\n00:00:51,994 --> 00:00:53,949\\nI don't think so.\\nYou?\\n\\n9\\n00:00:55,160 --> 00:00:56,985\\nI'm Ok.\\n\\n10\\n00:00:57,118 --> 00:01:01,111\\nGet up.\\nEmo, it's not safe here.\\n\\n11\\n00:01:02,034 --> 00:01:03,573\\nLet's go.\\n\\n12\\n00:01:03,610 --> 00:01:05,114\\nWhat's next?\\n\\n13\\n00:01:05,200 --> 00:01:09,146\\nYou'll see!\\n\\n14\\n00:01:16,032 --> 00:01:18,022\\nEmo.\\nThis way.\\n\\n15\\n00:01:34,237 --> 00:01:35,481\\nFollow me!\\n\\n16\\n00:02:11,106 --> 00:02:12,480\\nHurry Emo!\\n\\n17\\n00:02:48,059 --> 00:02:49,930\\nYou're not paying attention!\\n\\n18\\n00:02:50,142 --> 00:02:54,052\\nI just want to answer the...\\n...phone.\\n\\n19\\n00:02:54,974 --> 00:02:57,972\\nEmo, look,\\nI mean listen.\\n\\n20\\n00:02:59,140 --> 00:03:02,008\\nYou have to learn to listen.\\n\\n21\\n00:03:03,140 --> 00:03:04,965\\nThis is not some game.\\n\\n22\\n00:03:05,056 --> 00:03:09,345\\nYou, I mean we,\\nwe could easily die out here.\\n\\n23\\n00:03:10,014 --> 00:03:13,959\\nListen,\\nlisten to the sounds of the machine.\\n\\n24\\n00:03:18,054 --> 00:03:20,009\\nListen to your breathing.\\n\\n25\\n00:04:27,001 --> 00:04:28,956\\nWell, don't you ever get tired of this?\\n\\n26\\n00:04:29,084 --> 00:04:30,909\\nTired?!?\\n\\n27\\n00:04:31,126 --> 00:04:34,491\\nEmo, the machine is like clockwork.\\n\\n28\\n00:04:35,083 --> 00:04:37,074\\nOne move out of place...\\n\\n29\\n00:04:37,166 --> 00:04:39,121\\n...and you're ground to a pulp.\\n\\n30\\n00:04:40,958 --> 00:04:42,004\\nBut isn't it -\\n\\n31\\n00:04:42,041 --> 00:04:46,034\\nPulp, Emo!\\nIs that what you want, pulp?\\n\\n32\\n00:04:47,040 --> 00:04:48,995\\nEmo, your goal in life...\\n\\n33\\n00:04:50,081 --> 00:04:51,953\\n...pulp?\\n\\n34\\n00:05:41,156 --> 00:05:43,028\\nEmo, close your eyes.\\n\\n35\\n00:05:44,156 --> 00:05:46,027\\nWhy?\\n- Now!\\n\\n36\\n00:05:51,155 --> 00:05:52,102\\nOk.\\n\\n37\\n00:05:53,113 --> 00:05:54,688\\nGood.\\n\\n38\\n00:05:59,070 --> 00:06:02,103\\nWhat do you see at your left side, Emo?\\n\\n39\\n00:06:04,028 --> 00:06:05,899\\nNothing.\\n- Really?\\n\\n40\\n00:06:06,027 --> 00:06:07,105\\nNo, nothing at all.\\n\\n41\\n00:06:07,944 --> 00:06:11,984\\nAnd at your right,\\nwhat do you see at your right side, Emo?\\n\\n42\\n00:06:13,151 --> 00:06:16,102\\nThe same Proog, exactly the same...\\n\\n43\\n00:06:16,942 --> 00:06:19,098\\n...nothing!\\n- Great.\\n\\n44\\n00:06:40,105 --> 00:06:42,724\\nListen Proog! Do you hear that!\\n\\n45\\n00:06:43,105 --> 00:06:44,894\\nCan we go here?\\n\\n46\\n00:06:44,979 --> 00:06:47,894\\nThere?\\nIt isn't safe, Emo.\\n\\n47\\n00:06:49,145 --> 00:06:52,013\\nBut...\\n- Trust me, it's not.\\n\\n48\\n00:06:53,020 --> 00:06:54,145\\nMaybe I could...\\n\\n49\\n00:06:54,181 --> 00:06:55,969\\nNo.\\n\\n50\\n00:06:57,102 --> 00:06:59,934\\nNO!\\n\\n51\\n00:07:00,144 --> 00:07:03,058\\nAny further questions, Emo?\\n\\n52\\n00:07:03,976 --> 00:07:05,090\\nNo.\\n\\n53\\n00:07:09,059 --> 00:07:10,089\\nEmo?\\n\\n54\\n00:07:11,142 --> 00:07:13,058\\nEmo, why...\\n\\n55\\n00:07:13,095 --> 00:07:14,022\\nEmo...\\n\\n56\\n00:07:14,058 --> 00:07:18,003\\n...why can't you see\\nthe beauty of this place?\\n\\n57\\n00:07:18,141 --> 00:07:20,048\\nThe way it works.\\n\\n58\\n00:07:20,140 --> 00:07:23,895\\nHow perfect it is.\\n\\n59\\n00:07:23,932 --> 00:07:26,964\\nNo, Proog, I don't see.\\n\\n60\\n00:07:27,056 --> 00:07:29,970\\nI don't see because there's nothing there.\\n\\n61\\n00:07:31,055 --> 00:07:34,965\\nAnd why should I trust my\\nlife to something that isn't there?\\n\\n62\\n00:07:35,055 --> 00:07:36,926\\nWell can you tell me that?\\n\\n63\\n00:07:37,054 --> 00:07:38,926\\nAnswer me!\\n\\n64\\n00:07:42,970 --> 00:07:44,000\\nProog...\\n\\n65\\n00:07:45,053 --> 00:07:46,985\\n...you're a sick man!\\n\\n66\\n00:07:47,022 --> 00:07:48,918\\nStay away from me!\\n\\n67\\n00:07:52,052 --> 00:07:54,884\\nNo! Emo! It's a trap!\\n\\n68\\n00:07:55,135 --> 00:07:56,931\\nHah, it's a trap.\\n\\n69\\n00:07:56,968 --> 00:08:01,043\\nAt the left side you can see\\nthe hanging gardens of Babylon!\\n\\n70\\n00:08:01,967 --> 00:08:03,957\\nHow's that for a trap?\\n\\n71\\n00:08:05,050 --> 00:08:06,922\\nNo, Emo.\\n\\n72\\n00:08:09,008 --> 00:08:12,088\\nAt the right side you can see...\\n...well guess what...\\n\\n73\\n00:08:12,924 --> 00:08:14,665\\n...the colossus of Rhodes!\\n\\n74\\n00:08:15,132 --> 00:08:16,053\\nNo!\\n\\n75\\n00:08:16,090 --> 00:08:21,919\\nThe colossus of Rhodes\\nand it is here just for you Proog.\\n\\n76\\n00:08:51,001 --> 00:08:52,923\\nIt is there...\\n\\n77\\n00:08:52,959 --> 00:08:56,040\\nI'm telling you,\\nEmo...\\n\\n78\\n00:08:57,000 --> 00:08:59,867\\n...it is.\",\n", + " 'bytes': 4468,\n", + " 'sha1': 'm32glzvsdh4e2w8sahg5xcnonwtpcmb',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33073537,\n", + " 'timestamp': '2009-12-15T04:02:58Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8750956,\n", + " 'title': 'Elephants Dream 1024.avi.w400vbr180abr48c2two-pass.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Elephants Dream 1024.avi.w400vbr180abr48c2two-pass.ogv]] Svenska undertext',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,250\\nTill vänster kan vi se...|Ser vi...\\n\\n2\\n00:00:18,708 --> 00:00:20,333\\nTill höger ser vi...\\n\\n3\\n00:00:20,417 --> 00:00:21,958\\n...huvudkaparna.\\n\\n4\\n00:00:22,000 --> 00:00:24,792\\nAllt är säkert,|alldeles ofarligt.\\n\\n5\\n00:00:24,917 --> 00:00:26,833\\nEmo?\\n\\n6\\n00:00:28,750 --> 00:00:30,167\\nSe upp!\\n\\n7\\n00:00:46,708 --> 00:00:48,750\\nÄr du skadad?\\n\\n8\\n00:00:51,875 --> 00:00:54,458\\nJag tror inte det...|Är du?\\n\\n9\\n00:00:55,292 --> 00:00:57,333\\nJag är ok.\\n\\n10\\n00:00:57,542 --> 00:01:01,625\\nRes dig upp Emo.|Det är inte säkert här.\\n\\n11\\n00:01:02,208 --> 00:01:03,625\\nKom så går vi.\\n\\n12\\n00:01:03,708 --> 00:01:05,708\\nVad nu då?\\n\\n13\\n00:01:05,833 --> 00:01:07,833\\nDu får se...\\n\\n14\\n00:01:08,042 --> 00:01:10,417\\nDu får se.\\n\\n15\\n00:01:15,958 --> 00:01:18,375\\nEmo, den här vägen.\\n\\n16\\n00:01:34,417 --> 00:01:36,750\\nFölj efter mig!\\n\\n17\\n00:02:11,250 --> 00:02:13,250\\nSkynda dig, Emo!\\n\\n18\\n00:02:48,375 --> 00:02:50,583\\nDu är inte uppmärksam!\\n\\n19\\n00:02:50,708 --> 00:02:54,500\\nJag vill bara svara...|... i telefonen.\\n\\n20\\n00:02:54,500 --> 00:02:58,208\\nEmo, se här...|Lyssna menar jag.\\n\\n21\\n00:02:59,708 --> 00:03:02,292\\nDu måste lära dig att lyssna.\\n\\n22\\n00:03:03,292 --> 00:03:05,208\\nDet här är ingen lek.\\n\\n23\\n00:03:05,250 --> 00:03:08,917\\nDu... Jag menar vi,|vi skulle kunna dö här ute.\\n\\n24\\n00:03:09,917 --> 00:03:11,417\\nLyssna...\\n\\n25\\n00:03:11,708 --> 00:03:14,833\\nLyssna på ljuden från maskinen.\\n\\n26\\n00:03:18,125 --> 00:03:21,417\\nLyssna på dina andetag.\\n\\n27\\n00:04:26,625 --> 00:04:29,250\\nTröttnar du aldrig på det här?\\n\\n28\\n00:04:29,542 --> 00:04:31,083\\nTröttnar!?\\n\\n29\\n00:04:31,208 --> 00:04:33,458\\nEmo, maskinen är som...\\n\\n30\\n00:04:33,458 --> 00:04:35,333\\nSom ett urverk.\\n\\n31\\n00:04:35,417 --> 00:04:37,167\\nEtt felsteg...\\n\\n32\\n00:04:37,208 --> 00:04:39,750\\n...och du blir krossad.\\n\\n33\\n00:04:41,042 --> 00:04:42,292\\nMen är det inte -\\n\\n34\\n00:04:42,292 --> 00:04:47,000\\nKrossad, Emo!|Är det vad du vill bli? Krossad till mos?\\n\\n35\\n00:04:47,500 --> 00:04:50,542\\nEmo, är det ditt mål i livet?\\n\\n36\\n00:04:50,667 --> 00:04:53,250\\nAtt bli mos!?\\n\\n37\\n00:05:41,375 --> 00:05:43,458\\nEmo, blunda.\\n\\n38\\n00:05:44,375 --> 00:05:46,542\\nVarför då?|- Blunda!\\n\\n39\\n00:05:51,292 --> 00:05:55,042\\nOk.|- Bra.\\n\\n40\\n00:05:59,500 --> 00:06:02,750\\nVad ser du till vänster om dig Emo?\\n\\n41\\n00:06:04,125 --> 00:06:06,292\\nIngenting.|- Säker?\\n\\n42\\n00:06:06,333 --> 00:06:07,958\\nIngenting alls.\\n\\n43\\n00:06:08,042 --> 00:06:12,625\\nJaså, och till höger om dig...|Vad ser du där, Emo?\\n\\n44\\n00:06:13,750 --> 00:06:15,583\\nSamma där Proog...\\n\\n45\\n00:06:15,583 --> 00:06:18,083\\nExakt samma där, ingenting!\\n\\n46\\n00:06:18,083 --> 00:06:19,667\\nPerfekt.\\n\\n47\\n00:06:40,500 --> 00:06:42,917\\nLyssna Proog! Hör du?\\n\\n48\\n00:06:43,500 --> 00:06:45,125\\nKan vi gå dit?\\n\\n49\\n00:06:45,208 --> 00:06:48,125\\nGå dit?|Det är inte tryggt.\\n\\n50\\n00:06:49,583 --> 00:06:52,583\\nMen, men...|- Tro mig, det inte säkert.\\n\\n51\\n00:06:53,000 --> 00:06:54,292\\nMen kanske om jag -\\n\\n52\\n00:06:54,292 --> 00:06:56,333\\nNej.\\n\\n53\\n00:06:57,208 --> 00:07:00,167\\nMen -|- Nej, NEJ!\\n\\n54\\n00:07:00,917 --> 00:07:03,792\\nNågra fler frågor Emo?\\n\\n55\\n00:07:04,250 --> 00:07:05,875\\nNej.\\n\\n56\\n00:07:09,542 --> 00:07:11,375\\nEmo?|- Ja?\\n\\n57\\n00:07:11,542 --> 00:07:15,667\\nEmo, varför...\\n\\n58\\n00:07:15,792 --> 00:07:18,583\\nVarför kan du inte se skönheten i det här?\\n\\n59\\n00:07:18,792 --> 00:07:21,708\\nHur det fungerar.\\n\\n60\\n00:07:21,833 --> 00:07:24,000\\nHur perfekt det är.\\n\\n61\\n00:07:24,083 --> 00:07:27,333\\nNej Proog, jag kan inte se det.\\n\\n62\\n00:07:27,333 --> 00:07:30,333\\nJag ser det inte, för det finns inget där.\\n\\n63\\n00:07:31,292 --> 00:07:35,333\\nOch varför skulle jag lägga mitt liv|i händerna på något som inte finns?\\n\\n64\\n00:07:35,333 --> 00:07:37,083\\nKan du berätta det för mig?|- Emo...\\n\\n65\\n00:07:37,083 --> 00:07:39,167\\nSvara mig!\\n\\n66\\n00:07:43,500 --> 00:07:45,208\\nProog...\\n\\n67\\n00:07:45,208 --> 00:07:47,083\\nDu är inte frisk!\\n\\n68\\n00:07:47,167 --> 00:07:49,292\\nHåll dig borta från mig!\\n\\n69\\n00:07:52,292 --> 00:07:55,083\\nNej! Emo!|Det är en fälla!\\n\\n70\\n00:07:55,375 --> 00:07:57,208\\nHeh, det är en fälla.\\n\\n71\\n00:07:57,208 --> 00:08:01,708\\nPå vänster sida ser vi...|Babylons hängande trädgårdar!\\n\\n72\\n00:08:01,958 --> 00:08:04,000\\nVad sägs om den fällan?\\n\\n73\\n00:08:05,458 --> 00:08:07,333\\nNej, Emo.\\n\\n74\\n00:08:08,917 --> 00:08:12,667\\nTill höger ser vi...|Gissa!\\n\\n75\\n00:08:12,750 --> 00:08:15,125\\nRhodos koloss!\\n\\n76\\n00:08:15,375 --> 00:08:16,500\\nNej!\\n\\n77\\n00:08:16,500 --> 00:08:20,250\\nKolossen på Rhodos!|Och den är här för din skull, Proog...\\n\\n78\\n00:08:20,250 --> 00:08:23,250\\nBara för din skull.\\n\\n79\\n00:08:50,917 --> 00:08:53,250\\nDen är där...\\n\\n80\\n00:08:53,625 --> 00:08:56,417\\nTro mig.|Emo...\\n\\n81\\n00:08:57,000 --> 00:09:00,000\\nDet är den.|Det är den...',\n", + " 'bytes': 4734,\n", + " 'sha1': 'lczi2oh9kz9pt5mchxv0jnm24ednq6t',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33073606,\n", + " 'timestamp': '2009-12-15T04:07:28Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8750970,\n", + " 'title': 'Elephants Dream 1024.avi.w400vbr180abr48c2two-pass.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Elephants Dream 1024.avi.w400vbr180abr48c2two-pass.ogv]] Português legenda',\n", + " 'text': '1\\n00:00:10,000 --> 00:00:13,125\\nElefantes Sonham\\n\\n2\\n00:00:15,000 --> 00:00:18,000\\nÀ esquerda podemos ver...\\n\\n3\\n00:00:18,042 --> 00:00:20,000\\nÀ direita podemos ver o...\\n\\n4\\n00:00:20,042 --> 00:00:21,083\\n...o decapitador.\\n\\n5\\n00:00:22,000 --> 00:00:24,042\\nEstá tudo seguro...\\nMuito seguro...\\n\\n6\\n00:00:24,627 --> 00:00:25,627\\nEmo...\\n\\n7\\n00:00:26,000 --> 00:00:27,000\\nEmo?\\n\\n8\\n00:00:28,083 --> 00:00:30,000\\nCuidado!\\n\\n9\\n00:00:47,000 --> 00:00:48,000\\nmagoaste-te?\\n\\n10\\n00:00:51,083 --> 00:00:53,083\\nAcho que não...\\nE Tu?\\n\\n11\\n00:00:55,042 --> 00:00:57,000\\nEu estou bem.\\n\\n12\\n00:00:57,042 --> 00:01:01,042\\nLevanta-te, Emo.\\nNão estamos seguros, aqui.\\n\\n13\\n00:01:02,000 --> 00:01:03,042\\nAnda.\\n\\n14\\n00:01:03,042 --> 00:01:05,042\\nOnde vamos?\\n\\n15\\n00:01:05,083 --> 00:01:09,000\\nJá vais ver! Já vais ver!\\n\\n16\\n00:01:16,000 --> 00:01:18,000\\nEmo. Por aqui...\\n\\n17\\n00:01:34,083 --> 00:01:35,042\\nSegue-me!\\n\\n18\\n00:02:11,042 --> 00:02:12,042\\nAnda! Despa-te Emo!\\n\\n19\\n00:02:48,000 --> 00:02:50,000\\nNão estás a prestar atenção!\\n\\n20\\n00:02:50,042 --> 00:02:54,042\\nSó quero, atender...\\n...o telefone.\\n\\n21\\n00:02:55,000 --> 00:02:58,000\\nEmo, olha! \\n...quer dizer, escuta!\\n\\n22\\n00:02:59,042 --> 00:03:02,000\\nTens que aprender a escutar.\\n\\n23\\n00:03:03,042 --> 00:03:05,000\\nIsto não é um jogo.\\n\\n24\\n00:03:06,000 --> 00:03:08,042\\nTu... isto é... nós, podemos facilmente morrer aqui.\\n\\n25\\n00:03:10,000 --> 00:03:14,000\\nEscuta, os sons da máquina.\\n\\n26\\n00:03:18,000 --> 00:03:20,042\\nEscuta a tua respiração.\\n\\n27\\n00:04:27,000 --> 00:04:29,000\\nNão estás farto disto?\\n\\n28\\n00:04:29,042 --> 00:04:31,000\\nFarto?!\\n\\n29\\n00:04:31,042 --> 00:04:34,042\\nEmo, a máquina é como as engrenagens de um relógio\\n\\n30\\n00:04:35,042 --> 00:04:37,042\\nQualquer movimento em falso e...\\n\\n31\\n00:04:37,083 --> 00:04:39,042\\n...ficará reduzido a pó.\\n\\n32\\n00:04:41,000 --> 00:04:42,000\\nMas não é...\\n\\n33\\n00:04:42,042 --> 00:04:46,042\\nPó, Emo! É isso que você quer, pó?\\n\\n34\\n00:04:48,000 --> 00:04:50,000\\nÉ esse o teu objetivo na vida?\\n\\n35\\n00:04:50,042 --> 00:04:52,000\\nPó?!\\n\\n36\\n00:05:41,083 --> 00:05:43,042\\nEmo, fecha os olhos.\\n\\n37\\n00:05:44,083 --> 00:05:46,042\\nPorquê?\\n- Agora!\\n\\n38\\n00:05:53,042 --> 00:05:56,000\\nBem.\\n\\n39\\n00:05:59,042 --> 00:06:02,042\\nO que vês à tua esquerda Emo?\\n\\n40\\n00:06:04,042 --> 00:06:06,000\\nNada.\\n- Nada?\\n\\n41\\n00:06:06,000 --> 00:06:07,083\\nMesmo nada...\\n\\n42\\n00:06:08,000 --> 00:06:12,042\\nE à tua direita?\\no que vês à tua direita Emo?\\n\\n43\\n00:06:13,083 --> 00:06:16,083\\nO mesmo Proog, exactamente o mesmo...\\n\\n44\\n00:06:17,000 --> 00:06:18,042\\nNada!\\n\\n45\\n00:06:40,042 --> 00:06:42,083\\nEscuta Proog! Ouve isto!\\n\\n46\\n00:06:43,042 --> 00:06:45,000\\nPodemos entrar ali?\\n\\n47\\n00:06:45,000 --> 00:06:48,000\\nAli? Não é seguro.\\n\\n48\\n00:06:49,083 --> 00:06:52,042\\nMas...\\n- Confia em mim, não é seguro.\\n\\n49\\n00:06:53,000 --> 00:06:54,042\\nTalvez eu pudesse...\\n\\n50\\n00:06:54,083 --> 00:06:56,000\\nNão.\\n\\n51\\n00:06:57,000 --> 00:06:58,000\\nMas...\\n\\n52\\n00:06:58,002 --> 00:07:00,000\\nNÃO!\\n\\n53\\n00:07:00,083 --> 00:07:03,042\\nMais alguma pergunta Emo?\\n\\n54\\n00:07:04,000 --> 00:07:05,083\\nNão.\\n\\n55\\n00:07:09,042 --> 00:07:10,083\\nEmo?\\n\\n56\\n00:07:11,083 --> 00:07:13,042\\nEmo, porquê...\\n\\n57\\n00:07:13,042 --> 00:07:14,042\\nEmo...\\n\\n58\\n00:07:14,042 --> 00:07:18,042\\n...porque é que não vês a beleza disto tudo?\\n\\n59\\n00:07:18,083 --> 00:07:20,042\\nA maneira como funciona.\\n\\n60\\n00:07:20,083 --> 00:07:24,000\\nComo é perfeito.\\n\\n61\\n00:07:24,000 --> 00:07:27,042\\nNão, Proog, não vejo.\\n\\n62\\n00:07:27,042 --> 00:07:30,000\\nNão vejo porque não existe.\\n\\n63\\n00:07:31,042 --> 00:07:35,000\\nE porque devo confiar a minha vida a algo que não existe?\\n\\n64\\n00:07:35,042 --> 00:07:37,000\\nPodes-me dizer porquê?!\\n\\n65\\n00:07:37,042 --> 00:07:39,000\\nResponde!\\n\\n66\\n00:07:43,000 --> 00:07:44,042\\nProog...\\n\\n67\\n00:07:45,042 --> 00:07:47,000\\nEstás doente!\\n\\n68\\n00:07:47,000 --> 00:07:49,000\\nFica bem longe de mim.\\n\\n69\\n00:07:52,042 --> 00:07:55,000\\nNão! Emo! É uma armadilha!\\n\\n70\\n00:07:55,083 --> 00:07:57,000\\nÉ uma armadilha...!\\n\\n71\\n00:07:57,000 --> 00:08:01,042\\nÀ esquerda podes ver os jardins suspensos da Babilónia!\\n\\n72\\n00:08:02,000 --> 00:08:04,000\\nQue tal isto como armadilha?\\n\\n73\\n00:08:05,042 --> 00:08:07,000\\nNão, Emo.\\n\\n74\\n00:08:09,042 --> 00:08:12,042\\nA direita podes ver...\\n...adivinha...\\n\\n75\\n00:08:13,000 --> 00:08:14,042\\n...o Colosso de Rhodes!\\n\\n76\\n00:08:15,083 --> 00:08:16,042\\nNão!\\n\\n77\\n00:08:16,042 --> 00:08:22,000\\nO Colosso de Rhodes...\\ne está aqui só para ti Proog!\\n\\n78\\n00:08:51,000 --> 00:08:53,000\\nEstá aqui...\\n\\n79\\n00:08:53,000 --> 00:08:55,042\\nEstou-te a dizer, Emo...\\n\\n80\\n00:08:57,000 --> 00:09:00,000\\n...está.\\n\\n81\\n00:09:25,000 --> 00:09:45,000\\n.: Tradução de pt-br para pt-pt :.\\n.: correcção :.\\n|Tiago Pinto|',\n", + " 'bytes': 4663,\n", + " 'sha1': '2py3l7ipqnps19b2ugeiru0ibqf7vmq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 607642954,\n", + " 'timestamp': '2021-11-16T20:20:54Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8752369,\n", + " 'title': 'Mayer and Bettle 2 - Creative Commons.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall subtitles update',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,788\\nMayer and Bettle and now... Flik\\n\\n2\\n00:00:01,832 --> 00:00:05,226\\nM: So explain to me again\\nwhy, after knowing you for so long,\\n\\n3\\n00:00:05,260 --> 00:00:09,997\\nI had to book a month in advance\\njust to catch up for a coffee...\\n\\n4\\n00:00:10,287 --> 00:00:13,108\\nB: Going out in public\\nis so hard these days.\\n\\n5\\n00:00:13,200 --> 00:00:14,869\\nM: What?! Why?\\n\\n6\\n00:00:14,927 --> 00:00:17,238\\nB: Because I’m famous now!\\n\\n7\\n00:00:17,278 --> 00:00:20,083\\nI’m like fully a celebrity and everything.\\n\\n8\\n00:00:20,126 --> 00:00:21,470\\nI have fans!\\n\\n9\\n00:00:21,523 --> 00:00:23,270\\nThey love me!\\n\\n10\\n00:00:23,318 --> 00:00:27,244\\nI can probably get us a free lunch\\n‘cause I’m so famous!\\n\\n11\\n00:00:27,286 --> 00:00:28,520\\nM: You are not famous.\\n\\n12\\n00:00:28,556 --> 00:00:29,666\\nB: Uh-huh?\\n\\n13\\n00:00:29,698 --> 00:00:34,217\\nMy first album,\\n‘The Best Album in the World,’\\n\\n14\\n00:00:34,252 --> 00:00:38,242\\nhas been in the Jamendo\\npopular albums for weeks!\\n\\n15\\n00:00:38,787 --> 00:00:40,605\\nM: Jamendo?\\n\\n16\\n00:00:41,000 --> 00:00:43,572\\nB: You never were cool, were you?\\n\\n17\\n00:00:43,934 --> 00:00:45,544\\nIt’s a music download site\\n\\n18\\n00:00:45,569 --> 00:00:49,175\\nthat lets musicians put their songs out\\nunder Creative Commons licences\\n\\n19\\n00:00:49,199 --> 00:00:51,172\\nso people can share them.\\n\\n20\\n00:00:51,500 --> 00:00:53,564\\nWhich means more people download it.\\n\\n21\\n00:00:53,596 --> 00:00:55,679\\nSo more people hear it!\\n\\n22\\n00:00:55,700 --> 00:00:57,825\\nSo more fans for me!!\\n\\n23\\n00:00:58,111 --> 00:01:00,199\\nIf that’s even possible.\\n\\n24\\n00:01:00,232 --> 00:01:04,065\\nBy the way, if you give me 50 bucks,\\nI’ll autograph your face.\\n\\n25\\n00:01:04,793 --> 00:01:06,468\\nM: Um...\\n\\n26\\n00:01:06,524 --> 00:01:07,560\\nthanks.\\n\\n27\\n00:01:07,714 --> 00:01:11,148\\nSo does Jamendo use\\nthe new extended metadata protocols\\n\\n28\\n00:01:11,167 --> 00:01:14,000\\nimplemented through\\nthe Creative Commons license generator?\\n\\n29\\n00:01:14,192 --> 00:01:16,159\\nB: Extenda-what-in-there?!\\n\\n30\\n00:01:16,215 --> 00:01:19,361\\nM: Huh... Why don’t I just show you?..\\n\\n31\\n00:01:21,000 --> 00:01:23,043\\nB: Where have you taken me Mayer!?\\n\\n32\\n00:01:23,089 --> 00:01:26,329\\n(gasping and whispering)\\nI hope there are no paparazzi.\\n\\n33\\n00:01:26,346 --> 00:01:29,000\\nI’m not wearing my sunglasses!\\n\\n34\\n00:01:29,273 --> 00:01:33,166\\nM: We’re inside the Creative Commons.\\nEverything here, people can share:\\n\\n35\\n00:01:33,210 --> 00:01:36,216\\nstories, photos, websites,\\nmovies, and sounds.\\n\\n36\\n00:01:36,272 --> 00:01:40,148\\nYou can tell; they all have\\nthe CC license symbols.\\n\\n37\\n00:01:40,472 --> 00:01:42,896\\nB: O-o-oo-oo! Pretty!\\n\\n38\\n00:01:43,057 --> 00:01:44,672\\nM: But you’re still in control.\\n\\n39\\n00:01:44,719 --> 00:01:48,197\\nSee, you can let people use your stuff\\nfor non-commercial purposes,\\n\\n40\\n00:01:48,253 --> 00:01:51,707\\nor only if they don’t change it,\\nor only if they share with others.\\n\\n41\\n00:01:51,738 --> 00:01:54,278\\nAnd they always have to credit you.\\n\\n42\\n00:01:54,693 --> 00:01:58,504\\nThe CC website helps you work out\\nwhich license is best for you.\\n\\n43\\n00:01:58,709 --> 00:02:02,117\\nAnd it lets you add information\\nabout the thing you are licensing,\\n\\n44\\n00:02:02,166 --> 00:02:05,259\\nso that information goes\\nwherever your work goes.\\n\\n45\\n00:02:05,399 --> 00:02:09,445\\nSee you can add stuff like your name\\nand how to get in contact with you\\n\\n46\\n00:02:09,474 --> 00:02:12,262\\nif they want to do stuff\\nthat the license doesn’t allow.\\n\\n47\\n00:02:12,515 --> 00:02:16,791\\nB: So my name goes wherever my album does.\\n\\n48\\n00:02:16,925 --> 00:02:19,498\\nNo matter how many times it’s downloaded?\\n\\n49\\n00:02:19,553 --> 00:02:20,729\\nM: Yep.\\n\\n50\\n00:02:20,775 --> 00:02:23,736\\nB: That means that everyone\\nwill know my name.\\n\\n51\\n00:02:23,961 --> 00:02:25,722\\nEveryone will know my songs!!\\n\\n52\\n00:02:25,773 --> 00:02:26,674\\n(Gasps)\\n\\n53\\n00:02:26,722 --> 00:02:30,167\\nI will achieve world domination!!!\\n\\n54\\n00:02:30,231 --> 00:02:34,157\\n(Evil laugher)\\n\\n55\\n00:02:36,501 --> 00:02:39,265\\nI should probably get a crown.\\nOooh! And a corgi!\\n\\n56\\n00:02:39,290 --> 00:02:40,171\\n(Boom)\\n\\n57\\n00:02:40,182 --> 00:02:41,560\\nHuh what?!\\n\\n58\\n00:02:42,544 --> 00:02:43,495\\nF: Bettle?!\\n\\n59\\n00:02:43,732 --> 00:02:45,729\\nB: Flik! What are you doing here?\\n\\n60\\n00:02:45,870 --> 00:02:47,752\\nF: I’ve almost finished our new film.\\n\\n61\\n00:02:47,793 --> 00:02:50,809\\nI just came to find\\na few final photos from Flickr.\\n\\n62\\n00:02:52,075 --> 00:02:55,309\\nM: Hmm, hey! hey? Who’s this?\\n\\n63\\n00:02:56,000 --> 00:02:59,328\\nB: This is Flik, my fan and collaborator.\\n\\n64\\n00:03:00,000 --> 00:03:01,036\\nF: A few months back\\n\\n65\\n00:03:01,076 --> 00:03:04,042\\nI was looking on Jamendo for songs\\nfor my school film project.\\n\\n66\\n00:03:04,076 --> 00:03:06,781\\nI came across one of Bettle’s\\nwhich was perfect!\\n\\n67\\n00:03:07,165 --> 00:03:10,452\\nSo I emailed Bettle\\nand she liked my film so much\\n\\n68\\n00:03:10,493 --> 00:03:12,328\\nthat we started working together.\\n\\n69\\n00:03:12,706 --> 00:03:15,280\\nB: Flik’s just finished our new one.\\n\\n70\\n00:03:15,326 --> 00:03:20,308\\nWe’re gonna premier it on Revver.\\nAnd we’re gonna make lots of money!!\\n\\n71\\n00:03:20,592 --> 00:03:23,370\\nM: But don’t you give\\nyour stuff away for free?\\n\\n72\\n00:03:23,444 --> 00:03:25,520\\nHow you gonna make money off it?\\n\\n73\\n00:03:25,920 --> 00:03:28,267\\nB: Just because we’re letting\\npeople use our stuff\\n\\n74\\n00:03:28,312 --> 00:03:30,781\\ndoesn’t mean we can’t make money off it.\\n\\n75\\n00:03:31,000 --> 00:03:32,216\\nF: Like on Revver!\\n\\n76\\n00:03:32,236 --> 00:03:34,954\\nIt’s a video-sharing site\\nthat puts ads into your video\\n\\n77\\n00:03:35,008 --> 00:03:37,236\\nand you get some of the money.\\n\\n78\\n00:03:37,281 --> 00:03:40,452\\nSo the more people that watch it,\\nthe more money we get.\\n\\n79\\n00:03:41,077 --> 00:03:44,139\\nB: And that’s why my album is on Jamendo.\\n\\n80\\n00:03:44,271 --> 00:03:48,203\\nPeople can share my music for free\\nunder the CC license,\\n\\n81\\n00:03:48,260 --> 00:03:54,200\\nbut if they want to use it to make money,\\nsay on TV or radio, they need to pay.\\n\\n82\\n00:03:54,533 --> 00:03:56,250\\nThe site lets them do that.\\n\\n83\\n00:03:56,280 --> 00:04:00,212\\nF: And there are lots of other sites\\nthat let you make money off your CC works.\\n\\n84\\n00:04:00,244 --> 00:04:03,273\\nB: Pretty soon,\\neveryone will use our stuff.\\n\\n85\\n00:04:03,298 --> 00:04:04,501\\nEvery film!\\n\\n86\\n00:04:04,547 --> 00:04:05,832\\nEvery advertisement!!\\n\\n87\\n00:04:05,889 --> 00:04:07,800\\nEvery home DVD!!!\\n\\n88\\n00:04:07,826 --> 00:04:09,237\\nI will be rich!\\n\\n89\\n00:04:09,268 --> 00:04:10,849\\nThey’ll all scream my name!\\n\\n90\\n00:04:10,880 --> 00:04:12,459\\nThe world will be mine!!\\n\\n91\\n00:04:12,521 --> 00:04:13,732\\nMINE!!!\\n\\n92\\n00:04:13,755 --> 00:04:14,995\\n(Hard breathing)\\n\\n93\\n00:04:15,035 --> 00:04:18,275\\nF: How about we just take it\\none step at a time, hey?\\n\\n94\\n00:04:18,447 --> 00:04:20,465\\nB: Oh, I completely agree, Flik.\\n\\n95\\n00:04:20,498 --> 00:04:21,546\\nHey, Mayer…\\n\\n96\\n00:04:22,000 --> 00:04:23,375\\nM: Yes, Bettle?\\n\\n97\\n00:04:23,748 --> 00:04:25,188\\n(Scratching)\\n\\n98\\n00:04:26,186 --> 00:04:28,286\\nB: You owe me 50 bucks!',\n", + " 'bytes': 7055,\n", + " 'sha1': 'ojnibhotbsehtyxfpar2v9namdcfiyb',\n", + " 'parent_id': 33083708,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357577,\n", + " 'timestamp': '2021-11-09T10:09:54Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8752610,\n", + " 'title': 'Elephants Dream.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.ru.srt]] to [[TimedText:Elephants Dream.ogv.ru.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:14,958 --> 00:00:17,833\\nСлева мы видим...\\n\\n2\\n00:00:18,458 --> 00:00:20,208\\nсправа мы видим...\\n\\n3\\n00:00:20,333 --> 00:00:21,875\\n...голово-клацов.\\n\\n4\\n00:00:22,000 --> 00:00:24,583\\nвсё в порядке.\\nв полном порядке.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nИмо?\\n\\n6\\n00:00:28,833 --> 00:00:30,250\\nОсторожно!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nТы не ранен?\\n\\n8\\n00:00:51,875 --> 00:00:53,875\\nВроде нет...\\nа ты?\\n\\n9\\n00:00:55,583 --> 00:00:57,125\\nЯ в порядке.\\n\\n10\\n00:00:57,542 --> 00:01:01,625\\nВставай.\\nИмо, здесь не безопасно.\\n\\n11\\n00:01:02,208 --> 00:01:03,625\\nПойдём.\\n\\n12\\n00:01:03,708 --> 00:01:05,708\\nЧто дальше?\\n\\n13\\n00:01:05,833 --> 00:01:07,833\\nТы увидишь!\\n\\n14\\n00:01:08,000 --> 00:01:08,833\\nТы увидишь...\\n\\n15\\n00:01:16,167 --> 00:01:18,375\\nИмо, сюда.\\n\\n16\\n00:01:34,917 --> 00:01:35,750\\nЗа мной!\\n\\n17\\n00:02:11,542 --> 00:02:12,750\\nИмо, быстрее!\\n\\n18\\n00:02:48,375 --> 00:02:50,083\\nТы не обращаешь внимания!\\n\\n19\\n00:02:50,708 --> 00:02:54,500\\nЯ только хотел ответить на ...\\n...звонок.\\n\\n20\\n00:02:55,000 --> 00:02:58,208\\nИмо, смотри,\\nто есть слушай...\\n\\n21\\n00:02:59,708 --> 00:03:02,292\\nТы должен учиться слушать.\\n\\n22\\n00:03:03,250 --> 00:03:05,333\\nЭто не какая-нибудь игра.\\n\\n23\\n00:03:06,000 --> 00:03:08,833\\nТы, вернее мы, легко можем погибнуть здесь.\\n\\n24\\n00:03:10,000 --> 00:03:11,167\\nСлушай...\\n\\n25\\n00:03:11,667 --> 00:03:14,125\\nслушай звуки машины.\\n\\n26\\n00:03:18,333 --> 00:03:20,417\\nСлушай своё дыхание.\\n\\n27\\n00:04:27,208 --> 00:04:29,250\\nИ не надоест тебе это?\\n\\n28\\n00:04:29,542 --> 00:04:31,083\\nНадоест?!?\\n\\n29\\n00:04:31,708 --> 00:04:34,625\\nИмо! Машина -\\nона как часовой механизм.\\n\\n30\\n00:04:35,500 --> 00:04:37,667\\nОдно движение не туда...\\n\\n31\\n00:04:37,792 --> 00:04:39,750\\n...и тебя размелют в месиво!\\n\\n32\\n00:04:41,042 --> 00:04:42,375\\nА разве это не -\\n\\n33\\n00:04:42,417 --> 00:04:46,500\\nМесиво, Имо!\\nты этого хочешь? месиво?\\n\\n34\\n00:04:48,083 --> 00:04:50,000\\nИмо, твоя цель в жизни?\\n\\n35\\n00:04:50,542 --> 00:04:52,250\\nМесиво!\\n\\n36\\n00:05:41,792 --> 00:05:43,458\\nИмо, закрой глаза.\\n\\n37\\n00:05:44,875 --> 00:05:46,542\\nЗачем?\\n- Ну же!\\n\\n38\\n00:05:51,500 --> 00:05:52,333\\nЛадно.\\n\\n39\\n00:05:53,708 --> 00:05:56,042\\nХорошо.\\n\\n40\\n00:05:59,500 --> 00:06:02,750\\nЧто ты видишь слева от себя, Имо?\\n\\n41\\n00:06:04,417 --> 00:06:06,000\\nНичего.\\n- Точно?\\n\\n42\\n00:06:06,333 --> 00:06:07,875\\nда, совсем ничего.\\n\\n43\\n00:06:08,042 --> 00:06:12,708\\nА справа от себя,\\nчто ты видишь справа от себя, Имо?\\n\\n44\\n00:06:13,833 --> 00:06:16,875\\nДа то же Пруг, в точности то же...\\n\\n45\\n00:06:17,042 --> 00:06:18,500\\nНичего!\\n\\n46\\n00:06:18,667 --> 00:06:19,500\\nПрекрасно...\\n\\n47\\n00:06:40,583 --> 00:06:42,917\\nПрислушайся, Пруг! Ты слышишь это?\\n\\n48\\n00:06:43,583 --> 00:06:45,042\\nМожет, мы пойдём туда?\\n\\n49\\n00:06:45,208 --> 00:06:48,042\\nТуда?\\nЭто не безопасно, Имо.\\n\\n50\\n00:06:49,875 --> 00:06:52,500\\nНо...\\n- Поверь мне, это так.\\n\\n51\\n00:06:53,292 --> 00:06:54,750\\nМожет я бы ...\\n\\n52\\n00:06:54,792 --> 00:06:56,333\\nНет.\\n\\n53\\n00:06:57,625 --> 00:06:59,583\\n- Но...\\n- НЕТ!\\n\\n54\\n00:06:59,708 --> 00:07:00,833\\nНет!\\n\\n55\\n00:07:00,833 --> 00:07:03,708\\nЕщё вопросы, Имо?\\n\\n56\\n00:07:04,250 --> 00:07:05,875\\nНет.\\n\\n57\\n00:07:09,458 --> 00:07:10,792\\nИмо?\\n\\n58\\n00:07:11,833 --> 00:07:13,500\\nИмо, почему...\\n\\n59\\n00:07:13,542 --> 00:07:14,458\\nИмо...\\n\\n60\\n00:07:14,500 --> 00:07:18,500\\n...почему? почему ты не видишь\\nкрасоты этого места?\\n\\n61\\n00:07:18,792 --> 00:07:20,708\\nТо как оно работает.\\n\\n62\\n00:07:20,833 --> 00:07:24,000\\nКак совершенно оно.\\n\\n63\\n00:07:24,083 --> 00:07:27,417\\nНет, Пруг, я не вижу.\\n\\n64\\n00:07:27,500 --> 00:07:30,333\\nЯ не вижу, потому что здесь ничего нет.\\n\\n65\\n00:07:31,375 --> 00:07:35,333\\nИ почему я должен доверять свою жизнь\\nчему-то, чего здесь нет?\\n\\n66\\n00:07:35,542 --> 00:07:37,125\\nэто ты мне можешь сказать?\\n\\n67\\n00:07:37,500 --> 00:07:39,167\\nОтветь мне!\\n\\n68\\n00:07:43,208 --> 00:07:44,542\\nПруг...\\n\\n69\\n00:07:45,500 --> 00:07:47,333\\nТы просто больной!\\n\\n70\\n00:07:47,375 --> 00:07:48,500\\nОтстань от меня.\\n\\n71\\n00:07:48,625 --> 00:07:49,917\\nИмо...\\n\\n72\\n00:07:52,542 --> 00:07:55,083\\nНет! Имо! Это ловушка!\\n\\n73\\n00:07:55,792 --> 00:07:57,167\\nЭто ловушка!\\n\\n74\\n00:07:57,208 --> 00:08:01,708\\nСлева от себя вы можете увидеть\\nВисящие сады Семирамиды!\\n\\n75\\n00:08:02,250 --> 00:08:04,292\\nСойдёт за ловушку?\\n\\n76\\n00:08:05,458 --> 00:08:07,125\\nНет, Имо.\\n\\n77\\n00:08:09,417 --> 00:08:12,750\\nСправа от себя вы можете увидеть...\\n...угадай кого...\\n\\n78\\n00:08:13,000 --> 00:08:14,708\\n...Колосса Родосского!\\n\\n79\\n00:08:15,500 --> 00:08:16,625\\nНет!\\n\\n80\\n00:08:16,667 --> 00:08:21,125\\nКолосс Родосский!\\nИ он здесь специально для тебя, Пруг.\\n\\n81\\n00:08:21,167 --> 00:08:22,208\\nСпециально для тебя...\\n\\n82\\n00:08:51,333 --> 00:08:53,167\\nОна здесь есть!\\n\\n83\\n00:08:53,208 --> 00:08:55,500\\nГоворю тебе,\\nИмо...\\n\\n84\\n00:08:57,333 --> 00:09:00,000\\n...она есть... есть...',\n", + " 'bytes': 5951,\n", + " 'sha1': 'tt1pf9p2zlc2ccu76v3kcqiwcosvxuk',\n", + " 'parent_id': 45478392,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 244654675,\n", + " 'timestamp': '2017-05-19T15:32:49Z',\n", + " 'user': {'id': 1070943, 'text': 'AvicBot'},\n", + " 'page': {'id': 8755775,\n", + " 'title': 'Elephants Dream (high quality).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:Elephants Dream.ogv.en.srt',\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Bot: Fixing double redirect to [[TimedText:Elephants Dream.ogv.en.srt]]',\n", + " 'text': '#REDIRECT [[TimedText:Elephants Dream.ogv.en.srt]]',\n", + " 'bytes': 50,\n", + " 'sha1': 'kwid9eaxpnn8ypovh4ekylxih1elo5i',\n", + " 'parent_id': 33092466,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 607620231,\n", + " 'timestamp': '2021-11-16T18:27:20Z',\n", + " 'user': {'id': 4032121, 'text': 'Revibot'},\n", + " 'page': {'id': 8755789,\n", + " 'title': 'Elephants Dream (high quality).ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:Elephants Dream.ogv.sv.srt',\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Bot: Fixing double redirect to [[TimedText:Elephants Dream.ogv.sv.srt]]',\n", + " 'text': '#REDIRECT [[TimedText:Elephants Dream.ogv.sv.srt]]',\n", + " 'bytes': 50,\n", + " 'sha1': 'n1w9mqmb3tqczfxkn6si6hp4ouqlenw',\n", + " 'parent_id': 33092565,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 607620189,\n", + " 'timestamp': '2021-11-16T18:27:10Z',\n", + " 'user': {'id': 4032121, 'text': 'Revibot'},\n", + " 'page': {'id': 8755792,\n", + " 'title': 'Elephants Dream (high quality).ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:Elephants Dream.ogv.pt.srt',\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Bot: Fixing double redirect to [[TimedText:Elephants Dream.ogv.pt.srt]]',\n", + " 'text': '#REDIRECT [[TimedText:Elephants Dream.ogv.pt.srt]]',\n", + " 'bytes': 50,\n", + " 'sha1': 'j96crfnu8mkwxot0qlumgt3859fi63y',\n", + " 'parent_id': 33092590,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33337604,\n", + " 'timestamp': '2009-12-22T07:00:17Z',\n", + " 'user': {'id': 28, 'text': 'Eloquence'},\n", + " 'page': {'id': 8758697,\n", + " 'title': 'Reticulum Rex with subtitles - Creative Commons.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'small accuracy fixes',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:03,000\\nReticulum Rex\\n\\n2\\n00:00:03,000 --> 00:00:06,000\\nRemix Culture: A year in the life of Creative Commons\\n\\n3\\n00:00:06,000 --> 00:00:11,000\\nIn our last episode you met Creative Commons, a young project with big plans\\n\\n4\\n00:00:11,000 --> 00:00:14,000\\nplans to bring some sense to the copyright debate\\n\\n5\\n00:00:14,000 --> 00:00:20,000\\nplans to partner with the big C, to clarify the rules of creativity.\\n\\n6\\n00:00:20,000 --> 00:00:25,000\\nTo help authors and artists build a body of free culture they can draw from in return.\\n\\n7\\n00:00:28,000 --> 00:00:31,000\\nSo where have Creative Commons' adventures led?\\n\\n8\\n00:00:31,000 --> 00:00:40,000\\nIt all began with our copyright licenses, tools that help you mark your work as free to share or build upon with only some rights reserved.\\n\\n9\\n00:00:40,000 --> 00:00:45,000\\nAnd you did just that, with an enthusiasm that surprised even us.\\n\\n10\\n00:00:45,000 --> 00:00:49,000\\nFirst came the early adopters: writers, like Campbell Award winning Cory Doctorow,\\n\\n11\\n00:00:49,000 --> 00:00:55,000\\nwho offered fans his first novel for free download, and for sale in hard copy\\n\\n12\\n00:00:55,000 --> 00:01:03,000\\neducators, like MIT and Rice University, who made their courseware available online, for free, to the world\\n\\n13\\n00:01:03,000 --> 00:01:12,000\\nalso, community builders like Sal Randolph of Opsound, who collects hundreds of licensed songs for people to remix and share\\n\\n14\\n00:01:12,000 --> 00:01:19,000\\nand there are thousands of modern day Thomas Paines, the grassroots journalists known as webloggers\\n\\n15\\n00:01:19,000 --> 00:01:23,000\\nplus photographers, illustrators, filmmakers, and more\\n\\n16\\n00:01:23,000 --> 00:01:30,000\\nOnly a couple of months into Creative Commons' life, and more than 100,000 pioneers like these had joined the movement\\n\\n17\\n00:01:30,000 --> 00:01:33,000\\nAnd then things got really interesting.\\n\\n18\\n00:01:33,000 --> 00:01:41,000\\nBecause before long, YOU put this commons into practice, just as we had dreamed but could never have done alone\\n\\n19\\n00:01:42,000 --> 00:01:46,000\\nGuitarist Colin Mutchler contributed a track to Opsound\\n\\n20\\n00:01:46,000 --> 00:01:52,000\\nand a young violinist named Cora Beth recorded a duet with him without ever meeting him\\n\\n21\\n00:01:52,000 --> 00:01:58,000\\nAn academic program in Vietnam began translating and teaching MIT's course materials\\n\\n22\\n00:01:58,000 --> 00:02:04,000\\nCory Doctorow's novel sold a whole print run. It saw hundreds of thousands of downloads.\\n\\n23\\n00:02:04,000 --> 00:02:09,000\\nEven Jeff Bezos, CEO of Amazon.com recommended it to his customers.\\n\\n24\\n00:02:10,000 --> 00:02:19,000\\nAll of this, across the net, with no middleman, no legal doubt, no friction, just free culture created in real-time. \\n\\n25\\n00:02:21,000 --> 00:02:26,000\\nAll the while you built the commons out in whole new directions, in ways we never anticipated\\n\\n26\\n00:02:26,000 --> 00:02:30,000\\nHigh-tech publisher Tim O'Reilly helped us create the Founder's Copyright\\n\\n27\\n00:02:30,000 --> 00:02:35,000\\nthat's fourteen years in the care of Big C, and then works move onto public pastures\\n\\n28\\n00:02:37,000 --> 00:02:42,000\\nSoftware developers began to incorporate our tools, helping people free their works at the point of creation\\n\\n29\\n00:02:44,000 --> 00:02:50,000\\nCommon Content and the Internet Archive began to register and host Creative Commons works, for free\\n\\n30\\n00:02:51,000 --> 00:02:56,000\\nThe iCommons opened, and experts around the world began porting our licenses to many legal systems, \\n\\n31\\n00:02:56,000 --> 00:03:00,000\\nso that your expression can travel freely across borders.\\n\\n32\\n00:03:01,000 --> 00:03:05,000\\nAnd suddenly, what had been only an idea eight months earlier\\n\\n33\\n00:03:05,000 --> 00:03:10,000\\nwas a global movement, more than 700,000 licensed works strong\\n\\n34\\n00:03:10,000 --> 00:03:14,000\\nand still you helped us realize that more could be done\\n\\n35\\n00:03:15,000 --> 00:03:21,000\\nThe legendary musician Gilberto Gil, along with the digital collage artists Negativland\\n\\n36\\n00:03:21,000 --> 00:03:25,000\\ninspired us to build Creative Commons' latest and most exciting tool\\n\\n37\\n00:03:26,000 --> 00:03:29,000\\none that encourages a kind of creativity that children with scissors and glue\\n\\n38\\n00:03:29,000 --> 00:03:33,000\\nand scientists who cure with genes, and lawyers who cite precedent\\n\\n39\\n00:03:33,000 --> 00:03:36,000\\nunderstand as second nature\\n\\n40\\n00:03:36,000 --> 00:03:44,000\\nto take a bit and make it new. Some from here, some from there, to make a mosaic from the old, but not to copy\\n\\n41\\n00:03:45,000 --> 00:03:47,000\\nto remix culture.\\n\\n42\\n00:03:48,000 --> 00:03:52,000\\nIntroducing: the Creative Commons Sampling Licenses\\n\\n43\\n00:03:52,000 --> 00:04:00,000\\nNew tools to help you invite others to get creative with a part of your work, even for profit, but not to copy the whole thing\\n\\n44\\n00:04:00,000 --> 00:04:06,000\\nThe legendary Mr. Gil will introduce the first wave of sample friendly tunes from Brazil\\n\\n45\\n00:04:06,000 --> 00:04:11,000\\nleaving you free to jam with him across the net, with more artists soon to follow.\\n\\n46\\n00:04:14,000 --> 00:04:18,000\\nAnd so, Creative Commons carries on, twelve months since hitting the scene\\n\\n47\\n00:04:18,000 --> 00:04:24,000\\nmore than one million licensed works, one million artifacts of culture, free to reuse\\n\\n48\\n00:04:24,000 --> 00:04:30,000\\nAnd we've got bigger plans still: plans to help authors republish books out of print\\n\\n49\\n00:04:30,000 --> 00:04:33,000\\nplans to explore a science commons\\n\\n50\\n00:04:33,000 --> 00:04:36,000\\nplans to weave our philosophy and our tools into the fabric of the net\\n\\n51\\n00:04:36,000 --> 00:04:39,000\\nplans to knock down the walls between reader and author\\n\\n52\\n00:04:39,000 --> 00:04:47,000\\nor listener and composer, between audience and artists, between community and citizen, or culture and creator\\n\\n53\\n00:04:47,000 --> 00:04:51,000\\nplans to bring creativity back to its senses\\n\\n54\\n00:04:51,000 --> 00:04:55,000\\nand with your help, to keep growing, just as big as the old Big C\\n\\n55\\n00:04:55,000 --> 00:05:02,000\\nCreative Commons: the rules have changed, and it's just the beginning\",\n", + " 'bytes': 6099,\n", + " 'sha1': 'i2q3uu4dig1av7t63mpt4blmjdi4m26',\n", + " 'parent_id': 33104472,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33104483,\n", + " 'timestamp': '2009-12-16T07:31:42Z',\n", + " 'user': {'id': 246032, 'text': 'RuASG'},\n", + " 'page': {'id': 8758703,\n", + " 'title': 'Reticulum Rex with subtitles - Creative Commons.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:03,000 Reticulum Rex 2 00:00:03,000 --> 00:00:06,000 Remix Culture - творческий ремикс: 1 год жизни Creative Comm...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,000\\nReticulum Rex\\n\\n2\\n00:00:03,000 --> 00:00:06,000\\nRemix Culture - творческий ремикс: 1 год жизни Creative Commons\\n\\n3\\n00:00:06,000 --> 00:00:11,000\\nВ предыдущей серии вы встретились с Creative Commons, молодым проектом с большими планами\\n\\n4\\n00:00:11,000 --> 00:00:14,000\\nпланами внести долю здравого смысла в спор об авторском праве\\n\\n5\\n00:00:14,000 --> 00:00:20,000\\nпланами стать партнером большого © и разобраться - по каким правилам следует творить\\n\\n6\\n00:00:20,000 --> 00:00:25,000\\nПомочь авторам создать пространство свободной культуры, откуда они можно впоследствии черпать вдохновение.\\n\\n7\\n00:00:28,000 --> 00:00:31,000\\nТак каким же был путь становления Creative Commons?\\n\\n8\\n00:00:31,000 --> 00:00:40,000\\nВсе началось с наших лицензий, которые позволили вам обозначить, что ваши произведения доступны для копирования или изменения - \"Некоторые права защищены\".\\n\\n9\\n00:00:40,000 --> 00:00:45,000\\nИ вы этой возможностью воспользовались, да так, что удивили даже нас.\\n\\n10\\n00:00:45,000 --> 00:00:49,000\\nСначала первые \"ласточки\": писатели, например обладатель премии Кэмпбелла Кори Доктороу,\\n\\n11\\n00:00:49,000 --> 00:00:55,000\\nпредложивший скачать свой первый роман из сети бесплатно, а платить за книгу в магазине;\\n\\n12\\n00:00:55,000 --> 00:01:03,000\\nдеятели образования, - в МИТ и в Университете Райса, выложившие свои курсы онлайн для свободного скачавания\\n\\n13\\n00:01:03,000 --> 00:01:12,000\\nи такие как Сэл Рэндольф (проект Opsound), который собрал сотни лицензированных песен, чтобы кто угодно мог их изменять и петь\\n\\n14\\n00:01:12,000 --> 00:01:19,000\\nи тысячи современных Томасов Пэйнов, независимых журналистов нашего времени - блоггеров\\n\\n15\\n00:01:19,000 --> 00:01:23,000\\nа также фотографов, иллюстраторов, режиссеров и др.\\n\\n16\\n00:01:23,000 --> 00:01:30,000\\nВсего пара месяцев с начала пути Creative Commonsnly, - и вот уже 100 000 пионеров присоединились к движению\\n\\n17\\n00:01:30,000 --> 00:01:33,000\\nА потом началось самое интересное.\\n\\n18\\n00:01:33,000 --> 00:01:41,000\\nПотому что очень скоро ВЫ начали использовать commons, дав жизнь нашим мечтам, что мы никогда не смогли бы сделать сами.\\n\\n19\\n00:01:42,000 --> 00:01:46,000\\nГитарист Colin Mutchler загрузил свой трек на Opsound\\n\\n20\\n00:01:46,000 --> 00:01:52,000\\nи молодая скрипачка Cora Beth записала с ним дуэт, ни разу не встретившись с ним\\n\\n21\\n00:01:52,000 --> 00:01:58,000\\nВо Вьетнаме началась программа по переводу и преподаванию курса Массач. Института\\n\\n22\\n00:01:58,000 --> 00:02:04,000\\nКори Доктороу распродал все первое издание книги. Роман скачали сотни тысяч раз.\\n\\n23\\n00:02:04,000 --> 00:02:09,000\\nДаже Jeff Bezos, директор Amazon.com посоветовал его своим клиентам.\\n\\n24\\n00:02:10,000 --> 00:02:19,000\\nИ все это было сделано по сети, без посредников, без проблем, - изобилие творчества в реальном времени.\\n\\n25\\n00:02:21,000 --> 00:02:26,000\\nА вы все расширяли рамки СС, так, как мы никогда даже не помышляли.\\n\\n26\\n00:02:26,000 --> 00:02:30,000\\n\"Хай-тек\" издатель Tim O\\'Reilly помог нам создать Founder\\'s Copyright\\n\\n27\\n00:02:30,000 --> 00:02:35,000\\n14 лет в когтях обычного ©, а потом на свободу, на радость публике.\\n\\n28\\n00:02:37,000 --> 00:02:42,000\\nПрограммисты стали внедрять наши лицензии, позволяя людям создавать произведения свободными\\n\\n29\\n00:02:44,000 --> 00:02:50,000\\nCommon Content и Internet Archive стали регистрировать и бесплатно размещать работы в СС\\n\\n30\\n00:02:51,000 --> 00:02:56,000\\nОткрылся портал iCommons, и эксперты со всего мира стали внедрять СС в свои системы права,\\n\\n31\\n00:02:56,000 --> 00:03:00,000\\nчтобы ваши творения могли путешествовать без границ.\\n\\n32\\n00:03:01,000 --> 00:03:05,000\\nИ то, что 8 месяцев назад было лишь замыслом\\n\\n33\\n00:03:05,000 --> 00:03:10,000\\nстало всемирным движением с 700 000 лицензированных работ\\n\\n34\\n00:03:10,000 --> 00:03:14,000\\nи вы дали нам понять, что это далеко не конец\\n\\n35\\n00:03:15,000 --> 00:03:21,000\\nЛегендарный музыкант Gilberto Gil вместе с ребятами из группы Negativland\\n\\n36\\n00:03:21,000 --> 00:03:25,000\\nподали нам идею создать новый захватывающий инструмент\\n\\n37\\n00:03:26,000 --> 00:03:29,000\\nвдохновляющий к творчеству, которое для детей с ножницами и бумагой\\n\\n38\\n00:03:29,000 --> 00:03:33,000\\nдля ученых, переставляющих гены, для юристов, цитирующих судебные прецеденты\\n\\n39\\n00:03:33,000 --> 00:03:36,000\\nвторая натура:\\n\\n40\\n00:03:36,000 --> 00:03:44,000\\nвзять часть, изменить и создать новое. Немного отсюда, оттуда, сделать мозаику из старого; не копировать,\\n\\n41\\n00:03:45,000 --> 00:03:47,000\\nа сделать творческий ремикс.\\n\\n42\\n00:03:48,000 --> 00:03:52,000\\nПредставляем: Creative Commons Sampling Licenses\\n\\n43\\n00:03:52,000 --> 00:04:00,000\\nМожно создать что-то свое из части вашей работы, даже на продажу, но нельзя копировать целиком\\n\\n44\\n00:04:00,000 --> 00:04:06,000\\nЛегендарный Мистер Gil представит первые композиции из Бразилии\\n\\n45\\n00:04:06,000 --> 00:04:11,000\\nс которыми можно поэкспериментировать, и скоро будут другие.\\n\\n46\\n00:04:14,000 --> 00:04:18,000\\nТак, Creative Commons продолжает свое победное шествие, уже год в пути\\n\\n47\\n00:04:18,000 --> 00:04:24,000\\nи уже более миллиона работ, миллион артифактов культуры, - свободны\\n\\n48\\n00:04:24,000 --> 00:04:30,000\\nИ еще планы: помогать авторам публиковать не переиздающиеся книги\\n\\n49\\n00:04:30,000 --> 00:04:33,000\\nисследовать научную область\\n\\n50\\n00:04:33,000 --> 00:04:36,000\\nвстроить нашу философию и лицензии в структуру сети\\n\\n51\\n00:04:36,000 --> 00:04:39,000\\nразрушить преграду между читателем и автором,\\n\\n52\\n00:04:39,000 --> 00:04:47,000\\nмежду слушателем и композитором, аудиторией и исполнителем, культурой и творцом;\\n\\n53\\n00:04:47,000 --> 00:04:51,000\\nвозродить творчество\\n\\n54\\n00:04:51,000 --> 00:04:55,000\\nи с вашей помощью стать нормой Авторского Права.\\n\\n55\\n00:04:55,000 --> 00:05:02,000\\nCreative Commons: правила изменились, и это только начало',\n", + " 'bytes': 8682,\n", + " 'sha1': 'bpq7xatjacj88p9a44gwtkolxzkvt9h',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33104502,\n", + " 'timestamp': '2009-12-16T07:33:18Z',\n", + " 'user': {'id': 246032, 'text': 'RuASG'},\n", + " 'page': {'id': 8758708,\n", + " 'title': 'Reticulum Rex with subtitles - Creative Commons.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:03,000 Reticulum Rex 2 00:00:03,000 --> 00:00:06,000 Remix Kultur: Ein Jahr im Leben von Creative Commons 3 00:00:06,000 --> 00:00:11,00...'\",\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:03,000\\nReticulum Rex\\n\\n2\\n00:00:03,000 --> 00:00:06,000\\nRemix Kultur: Ein Jahr im Leben von Creative Commons\\n\\n3\\n00:00:06,000 --> 00:00:11,000\\nIn unserer letzten Folge habt ihr Creative Commons kennengelernt, ein junges Projekt mit großen Plänen\\n\\n4\\n00:00:11,000 --> 00:00:14,000\\nPlänen, die der Urheberrechtsdebatte einen Sinn geben sollen\\n\\n5\\n00:00:14,000 --> 00:00:20,000\\nPlänen, die mit dem großen C in Einklang stehen und die Regeln der Kreativität klarstellen\\n\\n6\\n00:00:20,000 --> 00:00:25,000\\num Autoren und Künstlern zu helfen ein Angebot freier Kultur zu schaffen, von welchem sie wiederum profitieren können.\\n\\n7\\n00:00:28,000 --> 00:00:31,000\\nAlso wohin haben Creative Commons Abenteuer geführt?\\n\\n8\\n00:00:31,000 --> 00:00:40,000\\nAlles began mit unseren Urheberrechtslizensen: Werkzeugen, die euch helfen eure Arbeit als frei zum Teilen und darauf Aufbauen, mit nur einigen Rechten vorbehalten zu markieren.\\n\\n9\\n00:00:40,000 --> 00:00:45,000\\nUnd genau das habt ihr getan, mit überwältigendem Enthusiasmus.\\n\\n10\\n00:00:45,000 --> 00:00:49,000\\nAls erstes kamen die frühen Anhänger: Schriftsteller, wie Campell Preis Gewinner Cory Doctorow,\\n\\n11\\n00:00:49,000 --> 00:00:55,000\\nder seinen Fans seinen ersten Roman zum freien Download und zum Kauf in gebundener Ausgabe anbot\\n\\n12\\n00:00:55,000 --> 00:01:03,000\\nBildungsanstalten, wie MIT und Rice University, die ihre Kursangebote online zur Verfügung stellen, um sonst and für die ganze Welt\\n\\n13\\n00:01:03,000 --> 00:01:12,000\\nsowie Menschen wie Sal Randololph von Opsound, der hunderte von lizensierten Lieder sammelte, damit Menschen sie remixen und teilen können\\n\\n14\\n00:01:12,000 --> 00:01:19,000\\nund dann die tausenden moderenen Thomas Paines, die bodenständigen Jounalisten, als Webblogger bekannt\\n\\n15\\n00:01:19,000 --> 00:01:23,000\\nwie auch Fotographen, Illustratoren, Filmemacher und mehr\\n\\n16\\n00:01:23,000 --> 00:01:30,000\\nNur einige Monate nach dem Enstehen von Creative Commons sind schon 100,000 Prioniere der Bewegung beigetreten \\n\\n17\\n00:01:30,000 --> 00:01:33,000\\nUnd die Dinge wurden richtig interessant. \\n\\n18\\n00:01:33,000 --> 00:01:41,000\\nDenn binnen kurzem, habt IHR die Commons-Idee in die Tat umgesetzt, genau wie wir es uns erträumt haben, aber niemals allein geschafft hätten.\\n\\n19\\n00:01:42,000 --> 00:01:46,000\\nDer Gitarrist Colin Mutchler steuerte einen Song zu Opsound bei\\n\\n20\\n00:01:46,000 --> 00:01:52,000\\nund eine junge Violinisten names Cora Beth nahm ein Duett mit ihm auf ohne ihn jemals vorher getroffen zu haben\\n\\n21\\n00:01:52,000 --> 00:01:58,000\\nEin akademisches Programm in Vietnam begann die Kursmaterialien der MIT zu übersetzten und mit ihnen zu lehren\\n\\n22\\n00:01:58,000 --> 00:02:04,000\\nCory Doctorow's Roman verkaufte einen ganze Druckauflage. Und wurde hunderttausende male heruntergeladen.\\n\\n23\\n00:02:04,000 --> 00:02:09,000\\nSogar Jeff Bezos, Vorstandsvorsitzender von Amazon.com empfahl es seinen Kunden.\\n\\n24\\n00:02:10,000 --> 00:02:19,000\\nAll dies geschah über das Internet, ohne Mittelsmann, keine rechtlichen Zweifel, keine Auseinandersetzungen, einfach freie Kultur in Echtzeit kreiert.\\n\\n25\\n00:02:21,000 --> 00:02:26,000\\nUnd all das während ihr die Commons in ganz neue Richtungen ausgebaut habt, in Wegen, die wir nie erwartet hätten\\n\\n26\\n00:02:26,000 --> 00:02:30,000\\nHigh-tech Herausgeber Tim O'Reilly half uns das Gründer Urheberrecht zu erschaffen\\n\\n27\\n00:02:30,000 --> 00:02:35,000\\n14 Jahre unter dem Großen C, dann gehen die Arbeiten ins Gemeingut über\\n\\n28\\n00:02:37,000 --> 00:02:42,000\\nSoftware Hersteller begannen unsere Werkzeuge einzubauen, um Menschen zu helfen ihre Werke schon zum Zeitpunkt der Erschaffung zugänglich zu machen\\n\\n29\\n00:02:44,000 --> 00:02:50,000\\nCommon Content und das Internet Archiv begannen Creative Commons Arbeiten umsonst zu registrieren und anzubieten.\\n\\n30\\n00:02:51,000 --> 00:02:56,000\\niCommons eröffnete und Experten der ganzen Welt begannen ihre Lizenzen in viele Rechtssysteme zu portieren,\\n\\n31\\n00:02:56,000 --> 00:03:00,000\\nso dass deine Ideen sich frei über Grenzen hinweg verbreiten können.\\n\\n32\\n00:03:01,000 --> 00:03:05,000\\nUnd plötzlich wurde, was acht Monate früher noch nur eine Idee war,\\n\\n33\\n00:03:05,000 --> 00:03:10,000\\neine globale Bewegung, mit mehr als 700,000 lizensierten Werken\\n\\n34\\n00:03:10,000 --> 00:03:14,000\\nund ihr halft uns zu realisieren dass noch mehr möglich war\\n\\n35\\n00:03:15,000 --> 00:03:21,000\\nDer legendäre Musiker Gilberto Gil und der digital Collagen Künstler Negativland\\n\\n36\\n00:03:21,000 --> 00:03:25,000\\ninspirierten und dazu Crative Commons neuestes und aufregendstes Werkzeug zu schaffen\\n\\n37\\n00:03:26,000 --> 00:03:29,000\\neines, welches eine Art von Kreativität, die Kinder mit Scheren und Kleber\\n\\n38\\n00:03:29,000 --> 00:03:33,000\\nund Wissenschaftler, die an Genen forschen und Anwälten, die Präzedenzfälle setzen\\n\\n39\\n00:03:33,000 --> 00:03:36,000\\nals zweite Natur verstehen\\n\\n40\\n00:03:36,000 --> 00:03:44,000\\netwas kleines zu nehmen und es neu zu kreieren. Etwas von hier, etwas von dort, ein Mosaik aus altem zu erstellen, aber nicht zu kopieren\\n\\n41\\n00:03:45,000 --> 00:03:47,000\\nsonder Kultur zu remixen.\\n\\n42\\n00:03:48,000 --> 00:03:52,000\\nWir stellen vor: Die Creative Commons Sampling Lizenzen\\n\\n43\\n00:03:52,000 --> 00:04:00,000\\nNeue Mittel helfen euch andere einzuladen Kreatives mit deiner Arbeit zu erstellen, sogar für Profit, aber nicht um das ganze Werk zu kopieren\\n\\n44\\n00:04:00,000 --> 00:04:06,000\\nDer legändäre Mr. Gil wird die erste Welle der sample freundlichen Melodien aus Brasilien vorstellen\\n\\n45\\n00:04:06,000 --> 00:04:11,000\\nund euch das Improvisieren mit ihm überall im Internet ermöglichen, mit weiteren Künstlern die bald folgen werden.\\n\\n46\\n00:04:14,000 --> 00:04:18,000\\nSo also entwickelt sich Creative Commons weiter, zwölf Monate nach unserem ersten Auftritt\\n\\n47\\n00:04:18,000 --> 00:04:24,000\\nmehr als eine Million lizensierter Werke, eine Million Artifakten der Kultur, frei zur Weiterverwendung\\n\\n48\\n00:04:24,000 --> 00:04:30,000\\nUnd wir haben immer noch größere Pläne: Pläne die Autoren helfen vergriffene Bücher wieder neu drucken zu lassen\\n\\n49\\n00:04:30,000 --> 00:04:33,000\\nPläne Science Commons zu entdecken\\n\\n50\\n00:04:33,000 --> 00:04:36,000\\nPläne unsere Philosophie und Mittel in den Stoff des Internets einzuweben\\n\\n51\\n00:04:36,000 --> 00:04:39,000\\nPläne die Wand zwischen Leser und Autor \\n\\n52\\n00:04:39,000 --> 00:04:47,000\\noder Zuhörer und Komponisten, Publikum und Künstler, Gemeinschaft und Bürger oder Kultur und Schöpfer niederzuschlagen.\\n\\n53\\n00:04:47,000 --> 00:04:51,000\\nPläne die Kreativität wieder zu Sinnen zu bringen\\n\\n54\\n00:04:51,000 --> 00:04:55,000\\nund mit eurer Hilfe weiter zu wachsen, genau wie das große, alte C\\n\\n55\\n00:04:55,000 --> 00:05:02,000\\nCreative Commons: die Regeln haben sich verändert und das ist erst der Anfang\",\n", + " 'bytes': 6809,\n", + " 'sha1': 'je1u1u8835ex3e5fokmpfoi27ugzz8k',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33390459,\n", + " 'timestamp': '2009-12-23T16:18:37Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8814864,\n", + " 'title': 'Audacity click track one per second for eight seconds mono88khz32bitfloat.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Audacity click track one per second for eight seconds mono88khz32bitfloat.ogg]] number text for each second',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nzero\\n\\n2 \\n00:00:01,000 --> 00:00:02,000\\none\\n\\n3 \\n00:00:02,000 --> 00:00:03,000 \\ntwo\\n\\n4\\n00:00:03,000 --> 00:00:04,000 \\nthree\\n\\n5\\n00:00:04,000 --> 00:00:05,000 \\nfour\\n\\n6\\n00:00:05,000 --> 00:00:06,000 \\nfive\\n\\n7\\n00:00:06,000 --> 00:00:07,000 \\nsix\\n\\n8\\n00:00:07,000 --> 00:00:08,000 \\nseven',\n", + " 'bytes': 309,\n", + " 'sha1': 'o97mvdej21i2t8h5nycucxfph36n1gl',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33390591,\n", + " 'timestamp': '2009-12-23T16:25:16Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8814922,\n", + " 'title': 'Audacity click track one per second for eight seconds mono88khz32bitfloat.ogg.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Audacity click track one per second for eight seconds mono88khz32bitfloat.ogg]] deutsche Untertiteln - Nummern',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nNull\\n\\n2 \\n00:00:01,000 --> 00:00:02,000\\nEins\\n\\n3 \\n00:00:02,000 --> 00:00:03,000 \\nZwei\\n\\n4\\n00:00:03,000 --> 00:00:04,000 \\nDrei\\n\\n5\\n00:00:04,000 --> 00:00:05,000 \\nVier\\n\\n6\\n00:00:05,000 --> 00:00:06,000 \\nFünf\\n\\n7\\n00:00:06,000 --> 00:00:07,000 \\nSechs\\n\\n8\\n00:00:07,000 --> 00:00:08,000 \\nSieben',\n", + " 'bytes': 314,\n", + " 'sha1': 'j0ebev0f7sq1mbfisw3cbiyc25bn2wq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33390658,\n", + " 'timestamp': '2009-12-23T16:29:04Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8814947,\n", + " 'title': 'Audacity click track one per second for eight seconds mono88khz32bitfloat.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Audacity click track one per second for eight seconds mono88khz32bitfloat.ogg]] française 0 1 2 3 4 5 6 7',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nZéro\\n\\n2 \\n00:00:01,000 --> 00:00:02,000\\nUn\\n\\n3 \\n00:00:02,000 --> 00:00:03,000 \\nDeux\\n\\n4\\n00:00:03,000 --> 00:00:04,000 \\nTrois\\n\\n5\\n00:00:04,000 --> 00:00:05,000 \\nQuatre\\n\\n6\\n00:00:05,000 --> 00:00:06,000 \\nCinq\\n\\n7\\n00:00:06,000 --> 00:00:07,000 \\nSix\\n\\n8\\n00:00:07,000 --> 00:00:08,000 \\nSept',\n", + " 'bytes': 311,\n", + " 'sha1': 'g4gwssywq76ypdbahxm7pdb1z36itg8',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33390966,\n", + " 'timestamp': '2009-12-23T16:43:39Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8815032,\n", + " 'title': 'Cal 2flip2click8khzvbr vlc.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'REDIRECT does not work with TimedText. [[File:Cal 2flip2click8khzvbr vlc.ogv]] française 0 1 2 3 4 5 6 7',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nZéro\\n\\n2 \\n00:00:01,000 --> 00:00:02,000\\nUn\\n\\n3 \\n00:00:02,000 --> 00:00:03,000 \\nDeux\\n\\n4\\n00:00:03,000 --> 00:00:04,000 \\nTrois\\n\\n5\\n00:00:04,000 --> 00:00:05,000 \\nQuatre\\n\\n6\\n00:00:05,000 --> 00:00:06,000 \\nCinq\\n\\n7\\n00:00:06,000 --> 00:00:07,000 \\nSix\\n\\n8\\n00:00:07,000 --> 00:00:08,000 \\nSept',\n", + " 'bytes': 311,\n", + " 'sha1': 'g4gwssywq76ypdbahxm7pdb1z36itg8',\n", + " 'parent_id': 33390890,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33516666,\n", + " 'timestamp': '2009-12-28T08:33:22Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8815079,\n", + " 'title': 'Cal 2flip2click8khzvbr vlc.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': \"revert: Null is German for Zero; it marks the zero'th second, see also the french and english files\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nNull\\n\\n2 \\n00:00:01,000 --> 00:00:02,000\\nEins\\n\\n3 \\n00:00:02,000 --> 00:00:03,000 \\nZwei\\n\\n4\\n00:00:03,000 --> 00:00:04,000 \\nDrei\\n\\n5\\n00:00:04,000 --> 00:00:05,000 \\nVier\\n\\n6\\n00:00:05,000 --> 00:00:06,000 \\nFünf\\n\\n7\\n00:00:06,000 --> 00:00:07,000 \\nSechs\\n\\n8\\n00:00:07,000 --> 00:00:08,000 \\nSieben',\n", + " 'bytes': 314,\n", + " 'sha1': 'j0ebev0f7sq1mbfisw3cbiyc25bn2wq',\n", + " 'parent_id': 33515047,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357351,\n", + " 'timestamp': '2021-11-09T10:08:00Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8819701,\n", + " 'title': 'Elephants Dream.ogg.ar.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:Elephants Dream.ogv.ar.srt',\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[Special:MyLanguage/COM:AES|←]]Redirected page to [[TimedText:Elephants Dream.ogv.ar.srt]]',\n", + " 'text': '#REDIRECT[[TimedText:Elephants Dream.ogv.ar.srt]]',\n", + " 'bytes': 49,\n", + " 'sha1': '31petmjbixxb5muxxyir05obzv9rph6',\n", + " 'parent_id': 45478344,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 244653168,\n", + " 'timestamp': '2017-05-19T15:14:50Z',\n", + " 'user': {'id': 607047, 'text': 'Krinkle'},\n", + " 'page': {'id': 8819759,\n", + " 'title': 'Elephants Dream.ogv.af.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Krinkle moved page [[TimedText:Elephants Dream.ogg.af.srt]] to [[TimedText:Elephants Dream.ogv.af.srt]]',\n", + " 'text': '1\\n00:00:15,000 --> 00:00:18,000\\nHierso aan, aan die linkerkant sien ons...\\n\\n2\\n00:00:18,292 --> 00:00:20,167\\nAan die regterkant sien ons...\\n\\n3\\n00:00:20,292 --> 00:00:21,583\\n...die kopknippers\\n\\n4\\n00:00:22,000 --> 00:00:24,375\\nAlles is veilig\\nheeltemaal veilig...\\n\\n5\\n00:00:24,833 --> 00:00:25,333\\nEmo?\\n\\n6\\n00:00:26,125 --> 00:00:27,125\\nEmo.\\n\\n7\\n00:00:28,750 --> 00:00:30,125\\nOppas!\\n\\n8\\n00:00:46,917 --> 00:00:48,083\\nHet jy seergekry?\\n\\n9\\n00:00:51,833 --> 00:00:54,167\\nEk dink nie so nie..\\nen jy?\\n\\n10\\n00:00:55,250 --> 00:00:57,042\\nAls reg.\\n\\n11\\n00:00:57,250 --> 00:01:01,250\\nStaan op.\\nEmo, dit is nie veilig nie\\n\\n12\\n00:01:02,083 --> 00:01:03,250\\nKom ons gaan.\\n\\n13\\n00:01:03,542 --> 00:01:05,292\\nWat\\'s volgende?\\n\\n14\\n00:01:05,333 --> 00:01:08,542\\n(Jy sal) Jy sal sien! Jy sal sien...\\n\\n15\\n00:01:16,083 --> 00:01:18,167\\nEmo.\\nHiernatoe.\\n\\n16\\n00:01:34,375 --> 00:01:35,333\\nVolg my!\\n\\n17\\n00:02:11,250 --> 00:02:12,333\\nMaak gou Emo!\\n\\n18\\n00:02:48,542 --> 00:02:50,042\\nJy let nie op nie!\\n\\n19\\n00:02:50,292 --> 00:02:54,208\\nEk wil dit maar net antwoord... \\n...die foon\\n\\n20\\n00:02:55,000 --> 00:02:58,083\\nEmo, kyk -\\nEk bedoel luister.\\n\\n21\\n00:02:59,292 --> 00:03:02,125\\nJy moet leer om te luister\\n\\n22\\n00:03:03,250 --> 00:03:05,042\\nDis nie sommer net \\'n speletjie nie.\\n\\n23\\n00:03:05,208 --> 00:03:09,375\\nJy, ek bedoel, ons kan maklik hier sterf\\n\\n24\\n00:03:10,000 --> 00:03:10,833\\nLuister...\\n\\n25\\n00:03:11,458 --> 00:03:14,167\\nLuister na die klanke van die masjien.\\n\\n26\\n00:03:18,125 --> 00:03:20,167\\nLuister na jou eie asemhaling\\n\\n27\\n00:04:27,083 --> 00:04:29,083\\nWord jy nooit moeg hiervoor nie?\\n\\n28\\n00:04:29,250 --> 00:04:31,042\\nMoeg?!?\\n\\n29\\n00:04:31,292 --> 00:04:34,250\\nEmo, die masjien is soos....soos klokwerk\\n\\n30\\n00:04:35,208 --> 00:04:37,292\\nEen verkeerde skuif en...\\n\\n31\\n00:04:37,333 --> 00:04:39,333\\n...en jy word verbrysel tot \\'n pappery!\\n\\n32\\n00:04:41,000 --> 00:04:42,167\\nMaar is dit nie -\\n\\n33\\n00:04:42,167 --> 00:04:46,208\\n\\'n Pappery Emo!\\nIs dit wat jy wil he? \\'n Pappery?\\n\\n34\\n00:04:47,708 --> 00:04:50,250\\nEmo, wat is jou doel in die lewe?\\n\\n35\\n00:04:50,583 --> 00:04:52,083\\nPappery!?\\n\\n36\\n00:05:41,333 --> 00:05:43,167\\nEmo, maak toe jou oë\\n\\n37\\n00:05:44,375 --> 00:05:46,250\\nHoekom\\nNou!\\n\\n38\\n00:05:51,250 --> 00:05:52,333\\nOK...\\n\\n39\\n00:05:53,292 --> 00:05:56,000\\nGoed.\\n\\n40\\n00:05:59,208 --> 00:06:02,333\\nWat sien jy aan jou linkerkant Emo? Wat?\\n\\n41\\n00:06:04,167 --> 00:06:06,000\\nNiks.\\n- Regtig?\\n\\n42\\n00:06:06,125 --> 00:06:07,375\\nNee, absoluut niks.\\n\\n43\\n00:06:08,000 --> 00:06:12,167\\nRegtig...en aan jou regterkant?\\nWat sien jy aan jou regterkant Emo?\\n\\n44\\n00:06:13,333 --> 00:06:16,375\\nDieselfde Proog, presies dieselfde...\\n\\n45\\n00:06:17,042 --> 00:06:18,250\\nNiks!\\n\\n46\\n00:06:18,250 --> 00:06:19,250\\nWonderlik...\\n\\n47\\n00:06:40,250 --> 00:06:42,375\\nLuister Proog! Hoor jy dit!\\n\\n48\\n00:06:43,250 --> 00:06:45,000\\nKan ons soontoe gaan?\\n\\n49\\n00:06:45,083 --> 00:06:48,000\\nDaar? \\nDis nie veilig nie.\\n\\n50\\n00:06:49,375 --> 00:06:52,208\\nMaar...\\n- Vertrou my, dit nie veilig nie.\\n\\n51\\n00:06:53,125 --> 00:06:54,333\\nMiskien kan ek...\\n\\n52\\n00:06:54,333 --> 00:06:56,125\\nNee.\\n\\n53\\n00:06:57,292 --> 00:06:57,500\\nmaar..\\n\\n54\\n00:06:57,917 --> 00:06:58,333\\nNEE!\\n\\n55\\n00:06:59,167 --> 00:06:59,792\\nNEE!!!\\n\\n56\\n00:07:00,833 --> 00:07:03,292\\nEnige verdere vrae Emo?\\n\\n57\\n00:07:04,083 --> 00:07:05,375\\nNee?\\n\\n58\\n00:07:09,167 --> 00:07:10,333\\nEmo?\\n\\n59\\n00:07:10,625 --> 00:07:11,333\\nJa?\\n\\n60\\n00:07:11,333 --> 00:07:13,208\\nEmo, waarom?...\\n\\n61\\n00:07:13,250 --> 00:07:14,167\\nEmo...\\n\\n62\\n00:07:14,208 --> 00:07:18,208\\n...waarom sien jy nie \\ndie skoonheid van die plek nie?\\n\\n63\\n00:07:18,333 --> 00:07:20,292\\nHoe dit alles werk...\\n\\n64\\n00:07:20,000 --> 00:07:24,000\\nhoe...hoe perfek dit is nie?\\n\\n65\\n00:07:24,042 --> 00:07:27,167\\nNee Proog,...ek sien dit nie!\\n\\n66\\n00:07:27,208 --> 00:07:30,125\\nEk sien dit nie want daar is niks om te sien nie...\\n\\n67\\n00:07:31,208 --> 00:07:35,125\\nEn hoekom sal ek my lewe toevertrou \\naan iets wat nie daar is nie?\\n\\n68\\n00:07:35,250 --> 00:07:37,042\\nWel, kan jy dit verduidelik?\\n\\n69\\n00:07:37,208 --> 00:07:39,083\\nAntwoord my!\\n\\n70\\n00:07:43,083 --> 00:07:44,250\\nProog...\\n\\n71\\n00:07:45,208 --> 00:07:47,125\\nJy\\'s \\'n siek man!\\n\\n72\\n00:07:47,167 --> 00:07:49,083\\nBly weg van my af!\\n\\n73\\n00:07:52,250 --> 00:07:55,042\\nNee! Emo! Dis \\'n lokval!\\n\\n74\\n00:07:55,333 --> 00:07:57,083\\nHa, \"Dis \\'n lokval\" - ha\\n\\n75\\n00:07:57,083 --> 00:08:01,292\\nAan jou linkerkant sien jy...\\ndie hangende tuine van Babilon\\n\\n76\\n00:08:02,083 --> 00:08:04,125\\nHoe\\'s daai vir \\'n lokval?\\n\\n77\\n00:08:05,167 --> 00:08:07,042\\nNee, Emo.\\n\\n78\\n00:08:09,167 --> 00:08:12,333\\nAan jou regterkant sien jy...\\n...raai wat!\\n\\n79\\n00:08:13,000 --> 00:08:14,292\\n...die kolos van Rhodus!\\n\\n80\\n00:08:15,333 --> 00:08:16,292\\nNee!\\n\\n81\\n00:08:16,292 --> 00:08:22,083\\nDie kolos van Rhodus\\nen dis hier net vir jou, Proog.\\n\\n82\\n00:08:51,125 --> 00:08:53,083\\nDit is daar...\\n\\n83\\n00:08:53,083 --> 00:08:55,208\\nGlo my,\\nEmo...\\n\\n84\\n00:08:57,125 --> 00:09:00,000\\n...dit is.\\n...dit is.',\n", + " 'bytes': 4869,\n", + " 'sha1': 'tsf79g55xm0708tee8fs9sb3ktymhxh',\n", + " 'parent_id': 45478279,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356585,\n", + " 'timestamp': '2021-11-09T09:59:55Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8819764,\n", + " 'title': 'Elephants Dream.ogv.bn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.bn.srt]] to [[TimedText:Elephants Dream.ogv.bn.srt]]: rename of the original file',\n", + " 'text': '1\\n\\n00:00:15,042 --> 00:00:18,042\\n\\nবামে... বামদিকে দেখি...\\n\\n\\n\\n2\\n\\n00:00:18,750 --> 00:00:20,333\\n\\nডানদিকে দেখি...\\n\\n\\n\\n3\\n\\n00:00:20,417 --> 00:00:21,917\\n\\n...মুন্ডু-খেকো\\n\\n\\n\\n4\\n\\n00:00:22,000 --> 00:00:24,625\\n\\nএখানে সব নিরাপদ\\nএকদম নিরাপদ\\n\\n\\n\\n5\\n\\n00:00:26,333 --> 00:00:27,333\\n\\nইমো?\\n\\n\\n\\n6\\n\\n00:00:28,875 --> 00:00:30,250\\n\\nইমো, সাবধান!\\n\\n\\n\\n7\\n\\n00:00:47,125 --> 00:00:48,250\\n\\nব্যাথা পেলে নাকি?\\n\\n\\n\\n8\\n\\n00:00:51,917 --> 00:00:53,917\\n\\nনা না, ঠিক আছি\\nআপনি?\\n\\n\\n\\n9\\n\\n00:00:55,625 --> 00:00:57,125\\n\\nআমি ঠিক আছি\\n\\n\\n\\n10\\n\\n00:00:57,583 --> 00:01:01,667\\n\\nউঠে পড় ইমো\\nজায়গাটা ভাল ঠেকছে না\\n\\n\\n\\n11\\n\\n00:01:02,208 --> 00:01:03,667\\n\\nচলো কেটে পড়ি\\n\\n\\n\\n12\\n\\n00:01:03,750 --> 00:01:05,750\\n\\nএখন কি করব?\\n\\n\\n\\n13\\n\\n00:01:05,875 --> 00:01:07,875\\n\\nআসো, দেখতে পাবে\\n\\n\\n\\n14\\n\\n00:01:16,167 --> 00:01:18,375\\n\\nইমো\\nএইদিকে\\n\\n\\n\\n15\\n\\n00:01:34,958 --> 00:01:35,792\\n\\nআমার সঙ্গে আসো\\n\\n\\n\\n16\\n\\n00:02:11,583 --> 00:02:12,792\\n\\nতাড়াতাড়ি ইমো!\\n\\n\\n\\n17\\n\\n00:02:48,375 --> 00:02:50,083\\n\\nতুমি আমার কথা শুনছ না\\n\\n\\n\\n18\\n\\n00:02:50,750 --> 00:02:54,500\\n\\nআমি... আমি শুধু...\\n...ফোনটা ধরতে চাই\\n\\n\\n\\n19\\n\\n00:02:55,000 --> 00:02:58,208\\n\\nইমো, দেখ...\\nমানে... শুনো\\n\\n\\n\\n20\\n\\n00:02:59,750 --> 00:03:02,292\\n\\nতোমাকে নির্দেশ মানা শিখতে হবে\\n\\n\\n\\n21\\n\\n00:03:03,625 --> 00:03:05,125\\n\\nএটা ছেলেখেলা নয়\\n\\n\\n\\n22\\n\\n00:03:06,167 --> 00:03:08,750\\n\\nআমারা যে কেউ খুব সহজেই\\nএখানে মারা পরতে পারি\\n\\n\\n\\n23\\n\\n00:03:10,208 --> 00:03:14,125\\n\\nশুনো...\\nযন্ত্রের আওয়াজ শুনো\\n\\n\\n\\n24\\n\\n00:03:18,333 --> 00:03:20,417\\n\\nতোমার নিঃশ্বাসের শব্দ শুনো\\n\\n\\n\\n25\\n\\n00:04:27,208 --> 00:04:29,250\\n\\nএসব কি কখনোই আপনাকে ক্লান্ত করে না?\\n\\n\\n\\n26\\n\\n00:04:29,583 --> 00:04:31,083\\n\\nক্লান্তি?!?\\n\\n\\n\\n27\\n\\n00:04:31,750 --> 00:04:34,667\\n\\nইমো; এই যন্ত্রের কাজকর্ম ঘড়ির মত নিখুঁত\\n\\n\\n\\n28\\n\\n00:04:35,500 --> 00:04:37,708\\n\\nএকটা কিছু এদিক ওদিক করলেই...\\n\\n\\n\\n29\\n\\n00:04:37,833 --> 00:04:39,792\\n\\nতুমি ছাতু হয়ে যাবে\\n\\n\\n\\n30\\n\\n00:04:41,042 --> 00:04:42,375\\n\\nকিন্তু এটা কি...\\n\\n\\n\\n31\\n\\n00:04:42,417 --> 00:04:46,542\\n\\nছাতু, ইমো!\\nতাই কি তুমি চাও, ছাতু?\\n\\n\\n\\n32\\n\\n00:04:48,083 --> 00:04:50,000\\n\\nইমো তোমার জীবনের লক্ষ্য কি...\\n\\n\\n\\n33\\n\\n00:04:50,583 --> 00:04:52,250\\n\\nছাতু?\\n\\n\\n\\n34\\n\\n00:05:41,833 --> 00:05:43,458\\n\\nইমো, চোখ বন্ধ কর\\n\\n\\n\\n35\\n\\n00:05:44,917 --> 00:05:46,583\\n\\nকেন?\\n- এখনই!\\n\\n\\n\\n36\\n\\n00:05:53,750 --> 00:05:56,042\\n\\nএই তো চাই\\n\\n\\n\\n37\\n\\n00:05:59,542 --> 00:06:02,792\\n\\nবামে কি দেখতে পাও ইমো?\\n\\n\\n\\n38\\n\\n00:06:04,417 --> 00:06:06,000\\n\\nকিচ্ছু না\\n- তাই নাকি?\\n\\n\\n\\n39\\n\\n00:06:06,333 --> 00:06:07,917\\n\\nনাহ, কোনকিছুই না\\n\\n\\n\\n40\\n\\n00:06:08,042 --> 00:06:12,417\\n\\nআচ্ছা... আর তোমার ডান দিকে\\nডানে কি দেখতে পাও ইমো?\\n\\n\\n\\n41\\n\\n00:06:13,875 --> 00:06:16,917\\n\\nএকই জিনিস, একেবারে একই জিনিস\\n\\n\\n\\n42\\n\\n00:06:17,083 --> 00:06:18,583\\n\\nকোনকিছুই না!\\n\\n\\n\\n43\\n\\n00:06:40,625 --> 00:06:42,958\\n\\nশুনুন! শুনতে পান ওটা!\\n\\n\\n\\n44\\n\\n00:06:43,625 --> 00:06:45,042\\n\\nআমরা কি ওইখানে যেতে পারি?\\n\\n\\n\\n45\\n\\n00:06:45,208 --> 00:06:48,042\\n\\nওখানে?\\nজায়গাটা নিরাপদ না ইমো\\n\\n\\n\\n46\\n\\n00:06:49,917 --> 00:06:52,500\\n\\nকিন্তু...\\n- বিশ্বাস কর; জায়গাটা নিরাপদ না\\n\\n\\n\\n47\\n\\n00:06:53,292 --> 00:06:54,792\\n\\nহয়তো আমি...\\n\\n\\n\\n48\\n\\n00:06:54,833 --> 00:06:56,333\\n\\nনা\\n\\n\\n\\n49\\n\\n00:06:57,667 --> 00:07:00,167\\n\\nনা!\\n\\n\\n\\n50\\n\\n00:07:00,875 --> 00:07:03,750\\n\\nআর কিছু বলার আছে ইমো?\\n\\n\\n\\n51\\n\\n00:07:04,250 --> 00:07:05,917\\n\\nনা?\\n\\n\\n\\n52\\n\\n00:07:09,458 --> 00:07:10,833\\n\\nইমো?\\n\\n\\n\\n53\\n\\n00:07:11,875 --> 00:07:13,542\\n\\nইমো, কেন...\\n\\n\\n\\n54\\n\\n00:07:13,583 --> 00:07:14,458\\n\\nইমো...\\n\\n\\n\\n55\\n\\n00:07:14,500 --> 00:07:18,500\\n\\nইমো কেন... কেন তুমি এ\\nজায়গাটার সৌন্দর্য দেখতে পাও না\\n\\n\\n\\n56\\n\\n00:07:18,833 --> 00:07:20,750\\n\\nযেভাবে এটা কাজ করছে...\\n\\n\\n\\n57\\n\\n00:07:20,875 --> 00:07:24,000\\n\\nকত সুন্দর এটা\\n\\n\\n\\n58\\n\\n00:07:24,083 --> 00:07:27,417\\n\\nনা... আমি দেখতে পাই না প্রুগ!\\n\\n\\n\\n59\\n\\n00:07:27,542 --> 00:07:30,333\\n\\nআমি দেখতে পাই না কারন এখানে দেখার কিছু নাই\\n\\n\\n\\n60\\n\\n00:07:31,500 --> 00:07:35,333\\n\\n...আর অস্তিত্ববিহীন কোন কিছুর কাছে\\nকেন আমি জীবন সোপর্দ করব?\\n\\n\\n\\n61\\n\\n00:07:35,583 --> 00:07:37,125\\n\\nতা আমাকে বলতে পারবেন আপনি?\\n\\n\\n\\n62\\n\\n00:07:37,500 --> 00:07:39,167\\n\\nউত্তর দিন!\\n\\n\\n\\n63\\n\\n00:07:43,208 --> 00:07:44,583\\n\\nপ্রুগ...\\n\\n\\n\\n64\\n\\n00:07:45,500 --> 00:07:47,333\\n\\nআপনি অসুস্থ!\\n\\n\\n\\n65\\n\\n00:07:47,375 --> 00:07:49,208\\n\\nদূরে থাকুন\\n\\n\\n\\n66\\n\\n00:07:52,583 --> 00:07:55,083\\n\\nনা! ইমো! এটা একটা ফাঁদ!\\n\\n\\n\\n67\\n\\n00:07:55,833 --> 00:07:57,167\\n\\nহুহ... এটা একটা ফাঁদ!\\n\\n\\n\\n68\\n\\n00:07:57,208 --> 00:08:01,750\\n\\nআমাদের বামদিকে দেখা যাচ্ছে\\nব্যাবিলনের শূন্যোদ্যান!\\n\\n\\n\\n69\\n\\n00:08:02,250 --> 00:08:04,292\\n\\nএই ফাঁদটা কেমন হল?\\n\\n\\n\\n70\\n\\n00:08:05,458 --> 00:08:07,125\\n\\nনা ইমো\\n\\n\\n\\n71\\n\\n00:08:09,417 --> 00:08:12,792\\n\\nআমাদের ডানদিকে দেখা যাচ্ছে\\n...আরে!\\n\\n\\n\\n72\\n\\n00:08:13,000 --> 00:08:14,750\\n\\n...রোহডস এর মূর্তি!\\n\\n\\n\\n73\\n\\n00:08:15,833 --> 00:08:16,708\\n\\nনা!\\n\\n\\n\\n74\\n\\n00:08:16,750 --> 00:08:22,167\\n\\nরোহডস এর মূর্তি শুধু আপনার\\nকাছেই দেখা দেয়\\n\\n\\n\\n75\\n\\n00:08:51,333 --> 00:08:53,167\\n\\nসবই আছে\\n\\n\\n\\n76\\n\\n00:08:53,208 --> 00:08:55,500\\n\\nআমি বলছি ইমো\\n\\n\\n\\n77\\n\\n00:08:57,333 --> 00:09:00,000\\n\\n...সবই আছে',\n", + " 'bytes': 7024,\n", + " 'sha1': 'sddbb4qptvryy3r1lrno4y663ghbyvd',\n", + " 'parent_id': 45478215,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357462,\n", + " 'timestamp': '2021-11-09T10:09:06Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8819771,\n", + " 'title': 'Elephants Dream.ogv.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.pt-br.srt]] to [[TimedText:Elephants Dream.ogv.pt-br.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nAqui, à esquerda podemos ver\\x85\\n\\n2\\n00:00:18,792 --> 00:00:20,333\\nÀ direita, podemos ver o \\x85\\n\\n3\\n00:00:20,417 --> 00:00:21,958\\n\\x85 o decaptador.\\n\\n4\\n00:00:22,000 --> 00:00:24,667\\nEstá tudo seguro.\\nPerfeitamente seguro.\\n\\n5\\n00:00:24,667 --> 00:00:25,667\\nEmo...\\n\\n6\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n7\\n00:00:28,917 --> 00:00:30,250\\nCuidado!\\n\\n8\\n00:00:46,750 --> 00:00:47,875\\nVocê se machucou?\\n\\n9\\n00:00:51,958 --> 00:00:53,958\\nAcho que não... e você?\\n\\n10\\n00:00:55,667 --> 00:00:57,125\\nEstou bem.\\n\\n11\\n00:00:57,625 --> 00:01:01,708\\nLevante-se, Emo,\\nnão é seguro ficarmos aqui.\\n\\n12\\n00:01:02,208 --> 00:01:03,708\\nVamos lá.\\n\\n13\\n00:01:03,792 --> 00:01:05,792\\nE agora?\\n\\n14\\n00:01:06,083 --> 00:01:08,875\\nVocê verá...\\nVocê verá.\\n\\n15\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nPor Aqui.\\n\\n16\\n00:01:34,333 --> 00:01:35,625\\nSiga-me!\\n\\n17\\n00:02:11,625 --> 00:02:12,833\\nRápido, Emo.\\n\\n18\\n00:02:48,375 --> 00:02:50,083\\nVocê não está prestando atenção!\\n\\n19\\n00:02:50,792 --> 00:02:54,542\\nEu só quero atender o...\\n...telefone\\n\\n20\\n00:02:55,000 --> 00:02:58,208\\nEmo, olhe...\\n...quero dizer - ouça\\n\\n21\\n00:02:59,792 --> 00:03:02,292\\nVocê tem que aprender a ouvir.\\n\\n22\\n00:03:03,667 --> 00:03:05,125\\nIsto não é um jogo qualquer.\\n\\n23\\n00:03:06,167 --> 00:03:08,792\\nVocê... quero dizer... nós\\npoderíamos facilmente morrer aqui.\\n\\n24\\n00:03:10,208 --> 00:03:14,125\\nOuça.\\nOuça o som das máquinas.\\n\\n25\\n00:03:18,333 --> 00:03:20,417\\nOuça seu respirar\\n\\n26\\n00:04:27,208 --> 00:04:29,250\\nVocê não se cansa disso?\\n\\n27\\n00:04:29,625 --> 00:04:31,083\\nCansar?!?\\n\\n28\\n00:04:31,792 --> 00:04:34,708\\nA máquina é como as\\nengrenagens de um relógio.\\n\\n29\\n00:04:35,542 --> 00:04:37,750\\nUm movimento fora de lugar e...\\n\\n30\\n00:04:37,875 --> 00:04:39,833\\n...você é reduzido a pó.\\n\\n31\\n00:04:41,042 --> 00:04:42,375\\nMas isso não -\\n\\n32\\n00:04:42,417 --> 00:04:46,583\\nPó, Emo!\\nÉ isso que você quer? Pó?\\n\\n33\\n00:04:47,208 --> 00:04:50,000\\nEmo, é esse seu propósito na vida?\\n\\n34\\n00:04:50,625 --> 00:04:52,250\\nPó!\\n\\n35\\n00:05:41,375 --> 00:05:43,458\\nEmo, feche os seus olhos.\\n\\n36\\n00:05:44,667 --> 00:05:46,625\\nPor quê?\\n- Agora!\\n\\n37\\n00:05:53,792 --> 00:05:56,042\\nÓtimo.\\n\\n38\\n00:05:59,583 --> 00:06:02,833\\nO que você vê do seu lado esquerdo, Emo?\\n\\n39\\n00:06:04,125 --> 00:06:06,000\\nNada.\\n- Mesmo?\\n\\n40\\n00:06:06,333 --> 00:06:07,958\\nNada mesmo.\\n\\n41\\n00:06:08,042 --> 00:06:12,417\\nE à sua direita,\\nO que você vê à sua direita, Emo?\\n\\n42\\n00:06:13,917 --> 00:06:16,958\\nA mesma coisa Proog,\\nexatamente a mesma coisa...\\n\\n43\\n00:06:16,917 --> 00:06:18,417\\nNada!\\n\\n44\\n00:06:18,625 --> 00:06:19,375\\nÓtimo.\\n\\n45\\n00:06:40,667 --> 00:06:43,000\\nOuça Proog!\\nConsegue ouvir isso?\\n\\n46\\n00:06:43,667 --> 00:06:45,042\\nPodemos ir ali?\\n\\n47\\n00:06:45,208 --> 00:06:48,042\\nLá?\\nNão é seguro, Emo.\\n\\n48\\n00:06:49,958 --> 00:06:52,542\\nMas...\\n- Confie em mim, não é.\\n\\n49\\n00:06:53,292 --> 00:06:54,833\\nBem, e se Eu...\\n\\n50\\n00:06:54,875 --> 00:06:56,333\\nNão.\\n\\n51\\n00:06:57,458 --> 00:06:57,875\\nMas...\\n\\n52\\n00:06:57,708 --> 00:07:00,167\\nNÃO!\\n\\n53\\n00:07:00,917 --> 00:07:03,792\\nMais alguma pergunta, Emo?\\n\\n54\\n00:07:04,250 --> 00:07:05,958\\nNão.\\n\\n55\\n00:07:09,458 --> 00:07:10,875\\nEmo?\\n\\n56\\n00:07:11,917 --> 00:07:13,583\\nEmo, Por quê...\\n\\n57\\n00:07:13,625 --> 00:07:14,458\\nEmo...\\n\\n58\\n00:07:14,542 --> 00:07:18,542\\n...por quê você não consegue ver\\na beleza deste lugar?\\n\\n59\\n00:07:18,875 --> 00:07:20,792\\nA forma como ele funciona.\\n\\n60\\n00:07:20,917 --> 00:07:24,000\\nComo ele é perfeito.\\n\\n61\\n00:07:24,083 --> 00:07:27,417\\nNão, Proog, \\nEu não vejo!\\n\\n62\\n00:07:27,583 --> 00:07:30,333\\nEu não vejo porquê\\nnão tem nada aqui.\\n\\n63\\n00:07:31,542 --> 00:07:35,333\\nE porquê eu confiaria a minha vida\\na algo que nem está aqui?\\n\\n64\\n00:07:35,625 --> 00:07:37,125\\nConsegue responder?\\n\\n65\\n00:07:37,542 --> 00:07:39,167\\nResponda!\\n\\n66\\n00:07:43,208 --> 00:07:44,625\\nProog...\\n\\n67\\n00:07:45,542 --> 00:07:47,333\\nVocê é doente, cara!\\n\\n68\\n00:07:47,375 --> 00:07:49,208\\nFique longe de mim.\\n\\n69\\n00:07:52,625 --> 00:07:55,083\\nNão!! Emo! É uma armadilha!\\n\\n70\\n00:07:55,875 --> 00:07:57,167\\nÉ uma armadilha!\\n\\n71\\n00:07:57,208 --> 00:08:01,792\\nÀ sua esquerda você pode ver...\\nOs jardins suspensos da Babilônia!\\n\\n72\\n00:08:02,250 --> 00:08:04,292\\nQue tal isso como uma armadilha?\\n\\n73\\n00:08:05,458 --> 00:08:07,125\\nNão, Emo.\\n\\n74\\n00:08:09,417 --> 00:08:12,833\\nÀ sua direita, você pode ver...\\nadivinhe só!\\n\\n75\\n00:08:13,000 --> 00:08:14,792\\nO colosso de Rhodes!\\n\\n76\\n00:08:15,875 --> 00:08:16,750\\nNão!\\n\\n77\\n00:08:16,792 --> 00:08:22,167\\nO colosso de Rhodes e\\nestá aqui só para você, Proog.\\n\\n78\\n00:08:51,333 --> 00:08:53,167\\nEstá aqui!\\n\\n79\\n00:08:53,208 --> 00:08:55,542\\nEstou dizendo,\\nEmo...\\n\\n80\\n00:08:57,333 --> 00:09:00,000\\n...está.',\n", + " 'bytes': 4681,\n", + " 'sha1': 'kxdn2dlr5f2o5e752ah1kn5v22kakau',\n", + " 'parent_id': 45478452,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356958,\n", + " 'timestamp': '2021-11-09T10:02:53Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8826055,\n", + " 'title': 'Elephants Dream.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.es.srt]] to [[TimedText:Elephants Dream.ogv.es.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nA la izquierda podemos ver...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nA la derecha podemos ver las...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...las corta cabezas.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nTodo es seguro.\\nPerfectamente seguro.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\n¿Emo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\n¡Cuidado!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\n¿Te lastimaste?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nCreo que no...\\n¿y tú?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nEstoy bien.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nLevántate.\\nEmo, no es seguro aquí.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nVámonos.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\n¿Ahora qué?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\n¡Ya verás!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\n¡Por aquí!\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\n¡Sígueme!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\n¡Corre Emo!\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\n¡No estás poniendo atención!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nSolo quiero contestar el...\\n...teléfono.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, mira,\\ndigo, escucha.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nTienes que aprender a escuchar.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nEsto no es un juego.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nTú, nosotros,\\npodemos morir fácilmente aquí afuera.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nEscucha...\\nlos sonidos de la máquina.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nEscucha tu respiración.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\n¿Y nunca te aburres de esto?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\n¿¡¿Aburrirme?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nLa máquina es como un reloj.\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nUn movimiento fuera de lugar...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...y quedarás hecho polvo.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\n¿Pero no es -\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\n¡Polvo, Emo!\\n¿Es eso lo que quieres? ¿Polvo?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\n¿Tu propósito en la vida?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nPolvo.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, cierra tus ojos.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\n¿Porqué?\\n- ¡Ahora!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nBien.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\n¿Que es lo que ves a tu izquierda Emo?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nNada.\\n- ¿De veras?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nNo hay nada.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nY a tu derecha,\\n¿qué es lo que ves a tu derecha Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nLo mismo Proog, exactamente lo mismo...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\n¡Nada!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\n¡Escucha Proog! ¡Escuchas eso!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\n¿Podemos ir aquí?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\n¿Allí? \\nNo es seguro.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nPero...\\n- Créeme, no lo es.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nTalvez yo podría...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNo.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNO!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\n¿Alguna otra pregunta Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNo.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\n¿Emo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, ¿porqué...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...¿porqué no puedes ver\\nla belleza de este lugar?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nComo funciona.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nQué tan perfecto es.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNo, Proog, no lo veo.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nNo lo veo porque no hay nada allí.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\n¿Y porqué debo confiar mi\\nvida a algo que no esta allí?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nBueno ¿puedes decirme eso?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nContéstame.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nEstás enfermo, hombre.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nAléjate de mí.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\n¡No! ¡Emo! ¡Es una trampa!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nEs una trampa.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nA tu izquierda puedes ver...\\n¡Los jardines colgantes de Babilonia!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\n¿Cómo te parece para una trampa?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNo, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nA tu derecha puedes ver...\\n...¿Adivina qué? ...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...¡El coloso de Rodas!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\n¡No!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nEl coloso de Rodas\\ny esta aquí solo para ti Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nSí esta allí...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nTe estoy diciendo,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...lo es.',\n", + " 'bytes': 4493,\n", + " 'sha1': 'klt7u1sse8euig8rqkkb2owr2og0ky3',\n", + " 'parent_id': 45478317,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356599,\n", + " 'timestamp': '2021-11-09T10:00:04Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8827387,\n", + " 'title': 'Elephants Dream.ogv.br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.br.srt]] to [[TimedText:Elephants Dream.ogv.br.srt]]: rename of the original file',\n", + " 'text': \"1\\n00:00:15,042 --> 00:00:18,042\\nWar an tu kleiz\\ne c'hallomp gwelout...\\n\\n2\\n00:00:18,583 --> 00:00:20,250\\nWar an tu dehou\\ne c'hallomp gwelout...\\n\\n3\\n00:00:20,333 --> 00:00:21,750\\n... Ar gwimeled-pennoù\\n\\n4\\n00:00:22,000 --> 00:00:24,500\\nTout zo dizañjer,\\nDizañjer tout !\\n\\n5\\n00:00:26,250 --> 00:00:27,250\\nEmo ?\\n\\n6\\n00:00:28,708 --> 00:00:30,208\\nDiwall !\\n\\n7\\n00:00:47,083 --> 00:00:48,208\\nMat eo ?\\n\\n8\\n00:00:51,750 --> 00:00:53,750\\nD'am soñj...\\nha c'hwi ?\\n\\n9\\n00:00:55,500 --> 00:00:57,083\\nMont a ra.\\n\\n10\\n00:00:57,458 --> 00:01:01,542\\nSav, Emo,\\nn'eo ket salv amañ.\\n\\n11\\n00:01:02,167 --> 00:01:03,542\\nDeomp dezhi !\\n\\n12\\n00:01:03,583 --> 00:01:05,583\\nHa goude ?\\n\\n13\\n00:01:05,708 --> 00:01:07,708\\nGwelout a ri !...\\n\\n14\\n00:01:16,125 --> 00:01:18,292\\nDre amañ !\\n\\n15\\n00:01:34,750 --> 00:01:35,625\\nDeus !\\n\\n16\\n00:02:11,458 --> 00:02:12,625\\nBuan, Emo !\\n\\n17\\n00:02:48,292 --> 00:02:50,083\\nN'out ket evezhus !\\n\\n18\\n00:02:50,583 --> 00:02:54,417\\nC'hoant 'meus nemet da respont da...\\n... d'ar bellgomz\\n\\n19\\n00:02:55,000 --> 00:02:58,167\\nEmo, sell... kentoc'h : selaou.\\n\\n20\\n00:02:59,583 --> 00:03:02,250\\nRet eo dit deskiñ selaou.\\n\\n21\\n00:03:03,500 --> 00:03:05,083\\nSe n'eo ket ur c'hoari.\\n\\n22\\n00:03:06,125 --> 00:03:08,583\\nTe, kentoc'h : ni a c'hallje\\neas mervel amañ.\\n\\n23\\n00:03:10,167 --> 00:03:14,083\\nSelaou trouzoù\\nar mekanik\\n\\n24\\n00:03:18,250 --> 00:03:20,333\\nSelaou da anal\\n\\n25\\n00:04:27,167 --> 00:04:29,208\\nBon, n'out ket skuizh ?\\n\\n26\\n00:04:29,458 --> 00:04:31,083\\nSkuizh ?!?\\n\\n27\\n00:04:31,583 --> 00:04:34,542\\nAr mekanik zo heñvel...\\nun orolaj !\\n\\n28\\n00:04:35,417 --> 00:04:37,583\\nUr fallvarch ha...\\n\\n29\\n00:04:37,667 --> 00:04:39,625\\nHa kaset out da frigas !\\n\\n30\\n00:04:41,042 --> 00:04:42,292\\nMet n'eo ket...\\n\\n31\\n00:04:42,333 --> 00:04:46,417\\nFrigas, Emo!\\nSe eo 'peus c'hoant da vezañ ?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nDa bal eo er vuhez ?\\n\\n33\\n00:04:50,458 --> 00:04:52,208\\nFrigas !\\n\\n34\\n00:05:41,667 --> 00:05:43,375\\nEmo, serr da zaoulagad !\\n\\n35\\n00:05:44,750 --> 00:05:46,458\\nPerak ?\\n— Bremañ !\\n\\n36\\n00:05:53,583 --> 00:05:56,042\\nMa !\\n\\n37\\n00:05:59,417 --> 00:06:02,625\\nPetra a welez a-gleiz, Emo ?\\n\\n38\\n00:06:04,333 --> 00:06:06,000\\nNetra.\\n— Evit gwir ?\\n\\n39\\n00:06:06,250 --> 00:06:07,750\\nNe welan tra ebet.\\n\\n40\\n00:06:08,042 --> 00:06:12,333\\nHag a-zehou,\\npetra a welez a-zehou, Emo?\\n\\n41\\n00:06:13,708 --> 00:06:16,750\\nMemes tra...\\nheñvel vi eo, Proog\\n\\n42\\n00:06:17,083 --> 00:06:18,458\\nNetra !\\n\\n43\\n00:06:40,500 --> 00:06:42,750\\nSelaouit, Proog !\\nKlevout a rit se ?\\n\\n44\\n00:06:43,500 --> 00:06:45,042\\nGallout a reomp\\nmont e-barzh ?\\n\\n45\\n00:06:45,167 --> 00:06:48,042\\nAze ?...\\nN'eo ket salv !\\n\\n46\\n00:06:49,750 --> 00:06:52,417\\nMet...\\n— Kred ac'hanon, n'eo ket.\\n\\n47\\n00:06:53,250 --> 00:06:54,625\\nHa ma, marteze...\\n\\n48\\n00:06:54,667 --> 00:06:56,250\\nKet.\\n\\n49\\n00:06:57,542 --> 00:07:00,125\\nKET !\\n\\n50\\n00:07:00,708 --> 00:07:03,583\\nGoulennoù all, Emo ?\\n\\n51\\n00:07:04,208 --> 00:07:05,750\\nKet.\\n\\n52\\n00:07:09,375 --> 00:07:10,667\\nEmo ?\\n\\n53\\n00:07:11,708 --> 00:07:13,417\\nEmo, perak...\\n\\n54\\n00:07:13,458 --> 00:07:14,375\\nEmo...\\n\\n55\\n00:07:14,417 --> 00:07:18,417\\n... perak ne c'hallez ket gwellout\\nkaerder al lec'h-mañ ?\\n\\n56\\n00:07:18,667 --> 00:07:20,583\\nE vont en-dro...\\n\\n57\\n00:07:20,708 --> 00:07:24,000\\nPegent peurvad !\\n\\n58\\n00:07:24,083 --> 00:07:27,333\\nKet, Proog... ne welan ket !\\n\\n59\\n00:07:27,417 --> 00:07:30,250\\nNe welan ket peogwir 'neus netra amañ...\\n\\n60\\n00:07:31,417 --> 00:07:35,250\\nHa perak fiziañ va buhez en un dra\\nn'emañ ket amañ ?\\n\\n61\\n00:07:35,458 --> 00:07:37,083\\nGallout a rez respont da se ?\\n\\n62\\n00:07:37,417 --> 00:07:39,125\\nRespont din.\\n\\n63\\n00:07:43,167 --> 00:07:44,458\\nProog...\\n\\n64\\n00:07:45,417 --> 00:07:47,250\\nTe zo klañv, paotr !\\n\\n65\\n00:07:47,292 --> 00:07:49,167\\nChom pell eus ac'hanon.\\n\\n66\\n00:07:52,458 --> 00:07:55,083\\nKet ! Emo ! Un toull trap eo !\\n\\n67\\n00:07:55,667 --> 00:07:57,125\\nUn toull trap eo\\n\\n68\\n00:07:57,167 --> 00:08:01,583\\nWar an tu kleiz e c'hallit gwelout\\nliorzhoù skourret Babilon !\\n\\n69\\n00:08:02,208 --> 00:08:04,250\\nPlij a ra dit evit\\nun toull trap ?\\n\\n70\\n00:08:05,375 --> 00:08:07,083\\nKet, Emo.\\n\\n71\\n00:08:09,333 --> 00:08:12,625\\nWar an tu dehou, e c'hallit gwelout...\\nBiskoazh !!\\n\\n72\\n00:08:13,000 --> 00:08:14,583\\n... Prell Rhodes eo !\\n\\n73\\n00:08:15,667 --> 00:08:16,583\\nKet !\\n\\n74\\n00:08:16,583 --> 00:08:22,125\\nPrell Rhodes eo !\\nHag amañ emañ nemet evidout, Proog !\\n\\n75\\n00:08:51,250 --> 00:08:53,125\\nBez emañ amañ !...\\n\\n76\\n00:08:53,167 --> 00:08:55,417\\nLavarout a ran dit,\\nEmo !...\\n\\n77\\n00:08:57,250 --> 00:09:00,000\\n... Amañ emañ.\",\n", + " 'bytes': 4460,\n", + " 'sha1': 'eaajgr6l3uecsxwd4zxwmh10njmiva6',\n", + " 'parent_id': 54661188,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356571,\n", + " 'timestamp': '2021-11-09T09:59:43Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8827394,\n", + " 'title': 'Elephants Dream.ogv.bg.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.bg.srt]] to [[TimedText:Elephants Dream.ogv.bg.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nОтляво можем да видим...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nОтдясно можем да видим...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...главорезачките.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nВсичко е безопасно.\\nНапълно безопасно.\\n\\n5\\n00:00:25,125 --> 00:00:26,125\\nЕмо?\\n\\n6\\n00:00:26,333 --> 00:00:27,333\\nЕмо?\\n\\n7\\n00:00:28,875 --> 00:00:30,250\\nПази се!\\n\\n8\\n00:00:47,125 --> 00:00:48,250\\nДобре ли си?\\n\\n9\\n00:00:51,917 --> 00:00:53,917\\nДа...\\nа ти?\\n\\n10\\n00:00:55,625 --> 00:00:57,125\\nДобре съм.\\n\\n11\\n00:00:57,583 --> 00:01:01,667\\nСтавай.\\nЕмо, тук не е безопасно.\\n\\n12\\n00:01:02,208 --> 00:01:03,667\\nДа тръгваме.\\n\\n13\\n00:01:03,750 --> 00:01:05,750\\nА сега какво?\\n\\n14\\n00:01:05,875 --> 00:01:07,875\\nЩе видиш!\\n\\n15\\n00:01:16,167 --> 00:01:18,375\\nЕмо.\\nОттук.\\n\\n16\\n00:01:34,958 --> 00:01:35,792\\nСлед мен!\\n\\n17\\n00:02:11,583 --> 00:02:12,792\\nПобързай, Емо.\\n\\n18\\n00:02:48,375 --> 00:02:50,083\\nНе внимаваш!\\n\\n19\\n00:02:50,750 --> 00:02:54,500\\nСамо искам да вдигна...\\n...телефона.\\n\\n20\\n00:02:55,000 --> 00:02:58,208\\nЕмо, виж,\\nискам да кажа слушай.\\n\\n21\\n00:02:59,750 --> 00:03:02,292\\nТрябва да се научиш да слушаш.\\n\\n22\\n00:03:03,625 --> 00:03:05,125\\nТова не ти е някаква игра.\\n\\n23\\n00:03:06,167 --> 00:03:08,750\\nТи, ние, можем лесно да умрем тук.\\n\\n24\\n00:03:10,208 --> 00:03:14,125\\nЧуй\\nзвуците на машината.\\n\\n25\\n00:03:18,333 --> 00:03:20,417\\nЧуй твоето дишане.\\n\\n26\\n00:04:27,208 --> 00:04:29,250\\nЕ, не ти ли омръзва това?\\n\\n27\\n00:04:29,583 --> 00:04:31,083\\nДа ми омръзва?!?\\n\\n28\\n00:04:31,750 --> 00:04:34,667\\nЕмо,\\nмашината е като часовников механизъм.\\n\\n29\\n00:04:35,500 --> 00:04:37,708\\nЕдно погрешно движение...\\n\\n30\\n00:04:37,833 --> 00:04:39,792\\n...и ще станеш на пихтия.\\n\\n31\\n00:04:41,042 --> 00:04:42,375\\nНо това не е ли...\\n\\n32\\n00:04:42,417 --> 00:04:46,542\\nПихтия, Емо!\\nТова ли искаш... пихтия?\\n\\n33\\n00:04:48,083 --> 00:04:50,000\\nЕмо,\\nтова ли е твоята цел в живота?\\n\\n34\\n00:04:50,583 --> 00:04:52,250\\nПихтия!\\n\\n35\\n00:05:41,833 --> 00:05:43,458\\nЕмо, затвори си очите.\\n\\n36\\n00:05:44,917 --> 00:05:46,583\\nЗащо?\\n- Сега!\\n\\n37\\n00:05:51,167 --> 00:05:52,333\\nДобре.\\n\\n38\\n00:05:53,750 --> 00:05:55,042\\nХубаво.\\n\\n39\\n00:05:59,542 --> 00:06:02,792\\nКакво виждаш отляво, Емо?\\n\\n40\\n00:06:04,417 --> 00:06:06,000\\nНищо.\\n- Наистина ли?\\n\\n41\\n00:06:06,333 --> 00:06:07,917\\nАбсолютно нищо.\\n\\n42\\n00:06:08,042 --> 00:06:12,417\\nНаистина ли? А отдясно,\\nкакво виждаш отдясно, Емо?\\n\\n43\\n00:06:13,875 --> 00:06:16,917\\nСъщото, Пруг, точно същото...\\n\\n44\\n00:06:17,083 --> 00:06:18,583\\nНищо!\\n\\n45\\n00:06:18,708 --> 00:06:20,208\\nЧудесно.\\n\\n46\\n00:06:40,625 --> 00:06:42,958\\nСлушай, Пруг! Чуваш ли това?\\n\\n47\\n00:06:43,625 --> 00:06:45,042\\nМоже ли да влезем тук?\\n\\n48\\n00:06:45,208 --> 00:06:48,042\\nТам? - Ами да.\\nНе е безопасно.\\n\\n49\\n00:06:49,917 --> 00:06:52,500\\nНо...\\n- Довери ми се, не е.\\n\\n50\\n00:06:53,292 --> 00:06:54,792\\nНо аз бих могъл...\\n\\n51\\n00:06:54,833 --> 00:06:56,333\\nНе.\\n\\n52\\n00:06:57,083 --> 00:06:57,667\\nНо...\\n\\n53\\n00:06:57,667 --> 00:07:00,167\\nНЕ!\\n\\n54\\n00:07:00,875 --> 00:07:03,750\\nНякакви други въпроси, Емо?\\n\\n55\\n00:07:04,250 --> 00:07:05,917\\nНе.\\n\\n56\\n00:07:09,458 --> 00:07:10,833\\nЕмо?\\n\\n57\\n00:07:10,958 --> 00:07:11,875\\nДа?\\n\\n58\\n00:07:11,875 --> 00:07:13,542\\nЕмо, защо...\\n\\n59\\n00:07:13,583 --> 00:07:14,458\\nЕмо...\\n\\n60\\n00:07:14,500 --> 00:07:18,500\\n...защо не можеш да видиш\\nколко е красиво това място?\\n\\n61\\n00:07:18,833 --> 00:07:20,750\\nКак действа.\\n\\n62\\n00:07:20,875 --> 00:07:24,000\\nКолко е съвършено.\\n\\n63\\n00:07:24,083 --> 00:07:27,417\\nНе, Пруг, не виждам.\\n\\n64\\n00:07:27,542 --> 00:07:30,333\\nНе виждам, защото там няма нищо.\\n\\n65\\n00:07:31,500 --> 00:07:35,333\\nИ защо трябва да поверя\\nживота си на нещо, което го няма?\\n\\n66\\n00:07:35,583 --> 00:07:37,125\\nЕ, можеш ли да ми кажеш?\\n\\n67\\n00:07:37,125 --> 00:07:39,167\\nЕмо...\\n- Отговори ми.\\n\\n68\\n00:07:43,208 --> 00:07:44,583\\nПруг...\\n\\n69\\n00:07:45,500 --> 00:07:47,333\\nТи си болен, човече.\\n\\n70\\n00:07:47,375 --> 00:07:49,208\\nСтой далеч от мен.\\n\\n71\\n00:07:52,583 --> 00:07:55,083\\nНе! Емо! Това е капан!\\n\\n72\\n00:07:55,833 --> 00:07:57,167\\nТова е капан.\\n\\n73\\n00:07:57,208 --> 00:08:01,750\\nОтляво можеш да видиш\\nвавилонските висящи градини!\\n\\n74\\n00:08:02,250 --> 00:08:04,292\\nКакъв капан, а?\\n\\n75\\n00:08:05,458 --> 00:08:07,125\\nНе, Емо.\\n\\n76\\n00:08:09,417 --> 00:08:12,792\\nОтдясно можеш да видиш...\\n...познай...\\n\\n77\\n00:08:13,000 --> 00:08:14,750\\n...Родоския колос!\\n\\n78\\n00:08:15,833 --> 00:08:16,708\\nНе!\\n\\n79\\n00:08:16,750 --> 00:08:22,167\\nРодоският колос\\nи той е тук само за теб, Пруг.\\n\\n80\\n00:08:51,333 --> 00:08:53,167\\nТо е там...\\n\\n81\\n00:08:53,208 --> 00:08:55,500\\nКазвам ти,\\nЕмо...\\n\\n82\\n00:08:57,333 --> 00:09:00,000\\n...там е.',\n", + " 'bytes': 5678,\n", + " 'sha1': 'oh7qte2x6e4lgjgtsp8eynwtkowhfe3',\n", + " 'parent_id': 54662560,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356703,\n", + " 'timestamp': '2021-11-09T10:01:25Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8827396,\n", + " 'title': 'Elephants Dream.ogv.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.ca.srt]] to [[TimedText:Elephants Dream.ogv.ca.srt]]: rename of the original file',\n", + " 'text': \"1\\n00:00:15,042 --> 00:00:18,042\\na l'esquerra podem veure...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nA la dreta podem veure...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...els escapça-caps.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nTot és segur,\\nperfectament segur.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nVigila!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nEstàs ferit?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nDiria que no...\\ni tu?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nEstic bé.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nAixeca't.\\nEmo, aquest lloc no és segur.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nAnem.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nQuè més?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nJa veuràs, ja veuràs!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nPer aquí.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nSegueix-me!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nAfanya't, Emo.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nNo pares atenció!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nNomés vull contestar al...\\n...telèfon.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, mira,\\nvull dir escolta.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nHas d'aprendre a escoltar.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nAixò no és un joc.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nTu, vull dir nosaltres,\\npodríem morir fàcilment aquí fora.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nEscolta,\\nels sons de la màquina.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nEscolta la teva respiració.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nNo te'n canses mai, d'això?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nCansar-me'n?!\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nLa màquina és com un\\nmecanisme de rellotgeria.\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nUn moviment en fals...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...i quedes reduït a pols.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nPerò no és...\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nPols, Emo!\\nÉs això el que vols, pols?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nEl teu objectiu a la vida?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nPols.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, Tanca els ulls.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nPer què?\\n- Ara!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nBé.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nQuè hi veus, a la teva esquerra, Emo?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nRes.\\n- De debò?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nRes de res.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nI a la dreta,\\nquè hi veus, a la dreta, Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nEl mateix Proog, exactament el mateix...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nRes! FALTA GREAT DL PROOG\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nEscolta Proog! Ho sents, això!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nPodem anar aquí?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nAllí? \\nNo és pas segur.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nPerò...\\n- Creu-me, no ho és.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nPotser puc...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNo. FALTA Però d'EMO\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNO!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nCap més pregunta, Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNo.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, Per què...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...Per què no pots veure...\\nla bellesa d'aquest lloc?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nLa manera com funciona.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nCom és de perfecte.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNo, Proog, no ho veig.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nNo ho veig perquè no hi ha res.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nPer què coi hauria de\\ncreure-m'ho si no hi és?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nM'ho pots explicar, això?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nContesta'm.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nEstàs malalt.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nAllunya't de mi.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nNo! Emo! És una trampa!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nÉs una trampa...\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nA la seva esquerra poden veure\\nels Jardins penjants de Babilònia!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nQuè et sembla això com a trampa?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNo, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nA la seva dreta poden veure Endevina-ho...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...el Colós de Rodes!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNo!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nEl Colós de Rodes.\\nÉs aquí només per a tu, Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nHi és...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\net dic que,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...hi és.\",\n", + " 'bytes': 4427,\n", + " 'sha1': 'kvfrozsrkfpopdndn1zwj3hzc11vpwm',\n", + " 'parent_id': 54662088,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95190605,\n", + " 'timestamp': '2013-04-27T08:02:00Z',\n", + " 'user': {'id': 55568, 'text': 'Littletung'},\n", + " 'page': {'id': 8827398,\n", + " 'title': 'Elephants Dream (high quality).ogv.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Littletung moved page [[TimedText:Elephants Dream.ogg.zh.srt]] to [[TimedText:Elephants Dream (high quality).ogv.zh.srt]]',\n", + " 'text': '1\\n00:00:15,000 --> 00:00:17,951\\n站在左边我们可以看到……\\n\\n2\\n00:00:18,166 --> 00:00:20,083\\n站在右边我们可以看到……\\n\\n3\\n00:00:20,119 --> 00:00:21,962\\n……那个怪物的头\\n\\n4\\n00:00:21,999 --> 00:00:24,368\\n所有的事情都很安全了\\n完全安全了\\n\\n5\\n00:00:24,582 --> 00:00:27,035\\nEmo?\\n\\n6\\n00:00:28,206 --> 00:00:29,996\\n当心!\\n\\n7\\n00:00:47,037 --> 00:00:48,494\\n你受伤了吗?\\n\\n8\\n00:00:51,994 --> 00:00:53,949\\n我觉得没有,你呢?\\n\\n9\\n00:00:55,160 --> 00:00:56,985\\n我很好\\n\\n10\\n00:00:57,118 --> 00:01:01,111\\n起来吧,这里不太安全\\n\\n11\\n00:01:02,034 --> 00:01:03,573\\n一起走吧\\n\\n12\\n00:01:03,610 --> 00:01:05,114\\n下一个是什么?\\n\\n13\\n00:01:05,200 --> 00:01:09,146\\n你会看到的!\\n\\n14\\n00:01:16,032 --> 00:01:18,022\\nEmo,\\n走这边!\\n\\n15\\n00:01:34,237 --> 00:01:35,481\\n跟着我!\\n\\n16\\n00:02:11,106 --> 00:02:12,480\\n快!\\n\\n17\\n00:02:48,059 --> 00:02:49,930\\n你怎么没有集中注意力!\\n\\n18\\n00:02:50,142 --> 00:02:54,052\\n我只是想接个……\\n……个电话\\n\\n19\\n00:02:54,974 --> 00:02:57,972\\nemo,看,听!\\n\\n20\\n00:02:59,140 --> 00:03:02,008\\n你需要来学习一下该怎么听\\n\\n21\\n00:03:03,140 --> 00:03:04,965\\n这不是游戏\\n\\n22\\n00:03:05,056 --> 00:03:09,345\\n你,我们,可能很容易死在这里\\n\\n23\\n00:03:10,014 --> 00:03:13,959\\n听,\\n听机器的声音\\n\\n24\\n00:03:18,054 --> 00:03:20,009\\n听你的呼吸\\n\\n25\\n00:04:27,001 --> 00:04:28,956\\n那么,你对这个难道就不厌倦吗?\\n\\n26\\n00:04:29,084 --> 00:04:30,909\\n厌倦?!?\\n\\n27\\n00:04:31,126 --> 00:04:34,491\\nEmo,这个机器就象一个精确的时钟\\n\\n28\\n00:04:35,083 --> 00:04:37,074\\n如果一步错了……\\n\\n29\\n00:04:37,166 --> 00:04:39,121\\n……你就会被碾成碎末\\n\\n30\\n00:04:40,958 --> 00:04:42,004\\n但难道……\\n\\n31\\n00:04:42,041 --> 00:04:46,034\\n碎末,emo!\\n这是你想要的结果吗,碎末?\\n\\n32\\n00:04:47,040 --> 00:04:48,995\\n你生活的的目标难道就是……\\n\\n33\\n00:04:50,081 --> 00:04:51,953\\n……碎末?\\n\\n34\\n00:05:41,156 --> 00:05:43,028\\nEmo,闭上你的眼睛\\n\\n35\\n00:05:44,156 --> 00:05:46,027\\n为什么\\n- 闭上!\\n\\n36\\n00:05:51,155 --> 00:05:52,102\\n好吧\\n\\n37\\n00:05:53,113 --> 00:05:54,688\\n很好\\n\\n38\\n00:05:59,070 --> 00:06:02,103\\n你在你的左边看到了什么,Emo?\\n\\n39\\n00:06:04,028 --> 00:06:05,899\\n没有东西\\n- 是吗?\\n\\n40\\n00:06:06,027 --> 00:06:07,105\\n完全没有东西\\n\\n41\\n00:06:07,944 --> 00:06:11,984\\n那么在你的右边,\\n在你的右边能看到什么,Emo?\\n\\n42\\n00:06:13,151 --> 00:06:16,102\\n还是一样的,proog,完全一样……\\n\\n43\\n00:06:16,942 --> 00:06:19,098\\n……没有东西!\\n- 非常好\\n\\n44\\n00:06:40,105 --> 00:06:42,724\\n听,proog!你听到那个声音了吗!\\n\\n45\\n00:06:43,105 --> 00:06:44,894\\n我们能去这里吗?\\n\\n46\\n00:06:44,979 --> 00:06:47,894\\n那里?那里不安全,Emo。\\n\\n47\\n00:06:49,145 --> 00:06:52,013\\n但是……\\n- 相信我,别去\\n\\n48\\n00:06:53,020 --> 00:06:54,145\\n也许,我能……\\n\\n49\\n00:06:54,181 --> 00:06:55,969\\n不行\\n\\n50\\n00:06:57,102 --> 00:06:59,934\\n不行!\\n\\n51\\n00:07:00,144 --> 00:07:03,058\\n还有其他问题吗,Emo?\\n\\n52\\n00:07:03,976 --> 00:07:05,090\\n没有了\\n\\n53\\n00:07:09,059 --> 00:07:10,089\\nEmo?\\n\\n54\\n00:07:11,142 --> 00:07:13,058\\nEmo,为什么……\\n\\n55\\n00:07:13,095 --> 00:07:14,022\\nEmo……\\n\\n56\\n00:07:14,058 --> 00:07:18,003\\n……为什么你不能看见\\n这里\\n\\n57\\n00:07:18,141 --> 00:07:20,048\\n这条路走对了\\n\\n58\\n00:07:20,140 --> 00:07:23,895\\n多么完美啊\\n\\n59\\n00:07:23,932 --> 00:07:26,964\\n对,Proog,我没有看见\\n\\n60\\n00:07:27,056 --> 00:07:29,970\\n我没有看见是因为那里空无一物\\n\\n61\\n00:07:31,055 --> 00:07:34,965\\n那为什么我要把我的性命托付给根本不存在的东西?\\n\\n62\\n00:07:35,055 --> 00:07:36,926\\n你能告诉我为什么吗?\\n\\n63\\n00:07:37,054 --> 00:07:38,926\\n回答我!\\n\\n64\\n00:07:42,970 --> 00:07:44,000\\nProog……\\n\\n65\\n00:07:45,053 --> 00:07:46,985\\n……你个有病的人!\\n\\n66\\n00:07:47,022 --> 00:07:48,918\\n别靠近我!\\n\\n67\\n00:07:52,052 --> 00:07:54,884\\n不!Emo!那是陷阱!\\n\\n68\\n00:07:55,135 --> 00:07:56,931\\n啊,那是陷阱\\n\\n69\\n00:07:56,968 --> 00:08:01,043\\n站在左边你能看到\\n漂浮的巴比伦花园!\\n\\n70\\n00:08:01,967 --> 00:08:03,957\\n那怎么会是陷阱\\n\\n71\\n00:08:05,050 --> 00:08:06,922\\n不,Emo\\n\\n72\\n00:08:09,008 --> 00:08:12,088\\n站在右边你能看到……\\n……嗯猜猜看……\\n\\n73\\n00:08:12,924 --> 00:08:14,665\\n……罗德岛巨像!\\n\\n74\\n00:08:15,132 --> 00:08:16,053\\n不!\\n\\n75\\n00:08:16,090 --> 00:08:21,919\\n罗德岛巨像\\n它在那等你呢,Proog.\\n\\n76\\n00:08:51,001 --> 00:08:52,923\\n它在那……\\n\\n77\\n00:08:52,959 --> 00:08:56,040\\n我给你说了,Emo……\\n\\n78\\n00:08:57,000 --> 00:08:59,867\\n……那是……',\n", + " 'bytes': 4702,\n", + " 'sha1': 'l6suepcgma187o3rxo4eaeuls6p05qc',\n", + " 'parent_id': 35131272,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356688,\n", + " 'timestamp': '2021-11-09T10:01:17Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8827399,\n", + " 'title': 'Elephants Dream.ogv.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.cs.srt]] to [[TimedText:Elephants Dream.ogv.cs.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nNalevo, nalevo vidíme...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nNapravo vidíme...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...Mor ...Mordy.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nJe to tu bezpeèný.\\nNaprosto bezpeèný.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmone?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nEmone, pozor!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nJsi zranìnej?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nNe, asi ne...\\na ty?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nJá jsem v pohodì.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nVstaò\\nEmone, není to tu bezpeèný.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nJdeme.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nA co dál?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nUvidíš! Uvidíš!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmone, tudy!\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nPojï za mnou!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nRychle, Emone.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nEmone, ty si nedáváš pozor!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nJenom chci zvednout ten...\\n...ten telefon.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmone, podívej,\\nposlouchej mì.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nMusíš se nauèit poslouchat.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nTohle není žádná hra.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nMùžeš, teda vlastnì mùžeme, tu klidnì umøít.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nPoslouchej!\\nPoslouchej zvuky toho stroje.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nPoslouchej svùj dech.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nCopak z toho už nejsi unavenej?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nUnavenej?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nEmone, ten stroj je jako...\\njako hodiny.\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nJeden krok vedle a...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...a jsi napadr\\x9d.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nAle pøece...\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nNapadr\\x9d, Emone!\\nTo bys chtìl být, napadr\\x9d?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nTo je tvým životním cílem, Emone?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nNapadr\\x9d!\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmone, zavøi oèi.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nProè?\\nTeï!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nDobøe.\\nFajn.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nEmone, vidíš nìco nalevo? No?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nNe, nic.\\n- Fakt nic?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nNe, vùbec nic.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nVážnì,...a napravo,\\nco vidíš napravo, Emone?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nHmmm, to samý, Progu, pøesnì to samý...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nNic!\\nSkvìlý.\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nProgu, poslouchej! Slyšíš to!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nJdeme tam?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nTam?\\nTo není bezpeèný, Emone.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nAle...\\n- Vìø mi, není.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nAle, možná bych mohl...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNe.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNE!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nNìjaký další otázky, Emone?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNe.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmone?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmone, jak to...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmone...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...jak to, že nevidíš, jak je to tu krásný?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nJak to všechno funguje.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nJak je to dokonalý.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNe, Progu, nevidim.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nNevidím, protože tu nic není.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nA proè bych mìl svìøit svùj\\nživot nìèemu, co neexistuje?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nMùžeš mi to øíct?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nOdpovìz.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nHele Progu...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\n...ty jsi vážnì nemocnej.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nNepøibližuj se ke mnì.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nNe! Emone! Je to past!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nJe to past.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nNalevo vidíš\\nvisuté zahrady babylonské!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nCo je tohle za past?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNe, Emone.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nNapravo vidíš...\\n...Hádej co!\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...Rhodský kolos!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNe!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nRhodský kolos\\na je tu jen pro tebe, Progu.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nJe to tam...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nØíkám ti,\\nEmone...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...je.',\n", + " 'bytes': 4426,\n", + " 'sha1': 'gq33v4lthj65zil5mje29xq5d2f3m2h',\n", + " 'parent_id': 54661005,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356657,\n", + " 'timestamp': '2021-11-09T10:00:47Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8827402,\n", + " 'title': 'Elephants Dream.ogv.da.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.da.srt]] to [[TimedText:Elephants Dream.ogv.da.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nTil venstre ser vi ...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nTil højre ser vi...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...hovedsnerlene.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nAlt er trygt.\\nhelt trygt.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nPas på!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nEr du kommet noget til?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nDet tror jeg ikke -\\ndig?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nJeg er okay.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nOp med dig Emo, det er ikke sikkert her.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nKom så.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nHvad så nu?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nDu får se!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nDu får se.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nFølg mig!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nSkynd dig Emo.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nDu er ikke opmærksom!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nJeg vil bare tage -\\n- telefonen.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo se,\\njeg mener hør.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nDu bliver nødt til at lære at lytte.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nDet her er ikke en leg.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nDu - vi - kunne let dø her\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nLyt\\ntil maskinens lyde.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nLyt til dit åndedrag.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nBliver du aldrig træt af dette?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nTræt?!\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nEmo, maskinen er som urværk\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nEn forkert bevægelse og -\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n- du bliver kværnet til mos.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nMen er det ikke -\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nMos, Emo!\\nEr det hvad du ønsker? Mos?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nEmo, hvad vil du med dit liv?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nMos!\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, luk øjnene.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nHvorfor?\\n- Nu!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nGodt.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nHvad ser du til venstre?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nIntet.\\n- Virkelig?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nNej, slet ingenting.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nOg til højre,\\nhvad ser du til højre?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nDet samme Proog, præcis det samme -\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\n- Intet!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nHør Proog! Kan du høre det!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nKan vi gå derind?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nDerinde? \\nDet er ikke sikkert.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nMen...\\n- Stol på mig, det er det ikke.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nMåske kunne jeg -\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNej.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNEJ!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nAndre spørgsmål Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNej.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, hvorfor -\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\n- Emo -\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n- hvorfor ser du ikke\\nskønheden i det?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nMåden det fungerer på.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nhvor fuldendt det er?\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNej Proog, Det ser jeg ikke -\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\n- fordi der er ikke noget at se.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nOg hvorfor skulle jeg risikere mit liv \\nfor noget som ikke findes?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nKan du sige mig det?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nSvar mig!.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nDu er syg, mand!\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nHold dig væk\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nNej! Emo! Det er en fælde!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nDet er en fælde\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nTil venstre kan du se \\nde hængende haver i Babylon!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nDet var noget af en fælde.\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNej Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nTil højre kan du se -\\n- Gæt en gang -\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n- kolossen på Rhodos!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNej!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nKolossen på Rhodos\\nspecielt for dig, Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nDen er der...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nJeg siger dig Emo -\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n- Den er.',\n", + " 'bytes': 4301,\n", + " 'sha1': 'biw2paf5pk9hce0vzabgetqeougo947',\n", + " 'parent_id': 54661341,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 244653186,\n", + " 'timestamp': '2017-05-19T15:15:00Z',\n", + " 'user': {'id': 607047, 'text': 'Krinkle'},\n", + " 'page': {'id': 8827404,\n", + " 'title': 'Elephants Dream.ogv.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Krinkle moved page [[TimedText:Elephants Dream.ogg.nl.srt]] to [[TimedText:Elephants Dream.ogv.nl.srt]]',\n", + " 'text': '1\\n00:00:15,000 --> 00:00:18,000\\nAan de linkerzijde zien we...\\n\\n2\\n00:00:18,167 --> 00:00:20,083\\nAan de rechterzijde zien we...\\n\\n3\\n00:00:20,083 --> 00:00:22,000\\n...de kopknippers.\\n\\n4\\n00:00:22,000 --> 00:00:24,417\\nAlles is veilig,\\nvolkomen veilig.\\n\\n5\\n00:00:24,583 --> 00:00:27,083\\nEmo?\\n\\n6\\n00:00:28,208 --> 00:00:30,042\\nPas op!\\n\\n7\\n00:00:47,042 --> 00:00:48,542\\nBen je gewond?\\n\\n8\\n00:00:52,000 --> 00:00:54,000\\nIk denk het niet.\\nJij?\\n\\n9\\n00:00:55,167 --> 00:00:57,042\\nIk ben ok.\\n\\n10\\n00:00:57,125 --> 00:01:01,167\\nOpstaan.\\nEmo, het is niet veilig hier.\\n\\n11\\n00:01:02,042 --> 00:01:03,167\\nKom, we gaan.\\n\\n12\\n00:01:03,167 --> 00:01:05,167\\nEn wat nu?\\n\\n13\\n00:01:05,208 --> 00:01:07,208\\nDaar kom je wel achter!\\n\\n14\\n00:01:16,042 --> 00:01:18,083\\nEmo,\\ndeze kant.\\n\\n15\\n00:01:34,250 --> 00:01:35,542\\nVolg mij!\\n\\n16\\n00:02:11,125 --> 00:02:12,542\\nSchiet op Emo!\\n\\n17\\n00:02:48,083 --> 00:02:50,000\\nJe let niet op!\\n\\n18\\n00:02:50,167 --> 00:02:54,125\\nIk wil alleen maar...\\n...de telefoon opnemen.\\n\\n19\\n00:02:55,000 --> 00:02:58,042\\nEmo, kijk,\\nik bedoel luister.\\n\\n20\\n00:02:59,167 --> 00:03:02,083\\nJe moet leren luisteren.\\n\\n21\\n00:03:03,167 --> 00:03:05,042\\nDit is geen spelletje.\\n\\n22\\n00:03:05,083 --> 00:03:09,417\\nJij, ik bedoel wij,\\nzouden hier kunnen omkomen.\\n\\n23\\n00:03:10,042 --> 00:03:14,042\\nLuister naar de geluiden van de machine.\\n\\n24\\n00:03:18,083 --> 00:03:20,083\\nLuister naar je ademhaling.\\n\\n25\\n00:04:27,042 --> 00:04:29,042\\nGaat je dit nou nooit vervelen?\\n\\n26\\n00:04:29,125 --> 00:04:31,000\\nVervelen?\\n\\n27\\n00:04:31,167 --> 00:04:34,583\\nEmo, de machine is als een uurwerk.\\n\\n28\\n00:04:35,125 --> 00:04:37,167\\nEen verkeerde stap...\\n\\n29\\n00:04:37,208 --> 00:04:39,208\\n...en je wordt tot pulp vermalen.\\n\\n30\\n00:04:41,000 --> 00:04:42,083\\nMaar is het niet -\\n\\n31\\n00:04:42,083 --> 00:04:46,125\\nPulp, Emo!\\nIs dat wat je wilt, pulp?\\n\\n32\\n00:04:47,083 --> 00:04:49,083\\nEmo, jouw levensdoel...\\n\\n33\\n00:04:50,125 --> 00:04:52,042\\n...pulp?\\n\\n34\\n00:05:41,208 --> 00:05:43,125\\nEmo, doe je ogen dicht.\\n\\n35\\n00:05:44,208 --> 00:05:46,125\\nHoezo?\\n- Nu meteen!\\n\\n36\\n00:05:51,208 --> 00:05:52,208\\nOk.\\n\\n37\\n00:05:53,167 --> 00:05:54,792\\nGoed zo.\\n\\n38\\n00:05:59,125 --> 00:06:02,208\\nWat zie je aan je linkerzijde, Emo?\\n\\n39\\n00:06:04,083 --> 00:06:06,000\\nNiets.\\n- Echt?\\n\\n40\\n00:06:06,083 --> 00:06:07,208\\nNee, helemaal niets.\\n\\n41\\n00:06:08,000 --> 00:06:12,083\\nEn rechts van je?\\nWat zie je aan je rechterzijde, Emo?\\n\\n42\\n00:06:13,208 --> 00:06:16,208\\nHetzelfde Proog, precies hetzelfde...\\n\\n43\\n00:06:17,000 --> 00:06:19,208\\n...niets!\\n- Mooi.\\n\\n44\\n00:06:40,167 --> 00:06:42,833\\nLuister Proog!\\nHoor je dat?\\n\\n45\\n00:06:43,167 --> 00:06:45,000\\nKunnen we hierheen?\\n\\n46\\n00:06:45,042 --> 00:06:48,000\\nDaar?\\nHet is onveilig, Emo.\\n\\n47\\n00:06:49,208 --> 00:06:52,125\\nMaar...\\n- Geloof me, het is niet veilig.\\n\\n48\\n00:06:53,083 --> 00:06:54,208\\nMaar misschien kan ik...\\n\\n49\\n00:06:54,208 --> 00:06:56,083\\nNee.\\n\\n50\\n00:06:57,167 --> 00:07:00,042\\nNEE!\\n\\n51\\n00:07:00,208 --> 00:07:03,167\\nHeb je nog meer vragen Emo?\\n\\n52\\n00:07:04,042 --> 00:07:05,208\\nNee.\\n\\n53\\n00:07:09,125 --> 00:07:10,208\\nEmo?\\n\\n54\\n00:07:11,208 --> 00:07:13,125\\nEmo, waarom...\\n\\n55\\n00:07:13,125 --> 00:07:14,125\\nEmo...\\n\\n56\\n00:07:14,125 --> 00:07:18,125\\n...waarom zie je niet hoe mooi\\nhet hier is?\\n\\n57\\n00:07:18,208 --> 00:07:20,167\\nHoe het werkt.\\n\\n58\\n00:07:20,208 --> 00:07:24,000\\nHoe perfect het is.\\n\\n59\\n00:07:24,000 --> 00:07:27,083\\nNee, Proog, ik zie het niet.\\n\\n60\\n00:07:27,125 --> 00:07:30,083\\nIk zie het niet omdat er niets is.\\n\\n61\\n00:07:31,125 --> 00:07:35,083\\nEn waarom zou ik mijn leven\\ntoevertrouwen aan iets dat er niet is?\\n\\n62\\n00:07:35,125 --> 00:07:37,042\\nKun je me dat uitleggen?\\n\\n63\\n00:07:37,125 --> 00:07:39,042\\nGeef antwoord!\\n\\n64\\n00:07:43,042 --> 00:07:44,125\\nProog...\\n\\n65\\n00:07:45,125 --> 00:07:47,083\\n...je bent gestoord!\\n\\n66\\n00:07:47,083 --> 00:07:49,042\\nBlijf uit mijn buurt!\\n\\n67\\n00:07:52,125 --> 00:07:55,000\\nNee, Emo! Het is een valstrik!\\n\\n68\\n00:07:55,208 --> 00:07:57,042\\nOh, het is een valstrik?\\n\\n69\\n00:07:57,042 --> 00:08:01,167\\nAan de linkerzijde zien we\\nde hangende tuinen van Babylon!\\n\\n70\\n00:08:02,042 --> 00:08:04,083\\nIs dat geen mooie valstrik?\\n\\n71\\n00:08:05,125 --> 00:08:07,042\\nNee, Emo.\\n\\n72\\n00:08:09,083 --> 00:08:12,208\\nAan de rechterzijde zien we,\\nraad eens?...\\n\\n73\\n00:08:13,000 --> 00:08:14,792\\n...de kolossus van Rhodos!\\n\\n74\\n00:08:15,208 --> 00:08:16,167\\nNee!\\n\\n75\\n00:08:16,167 --> 00:08:22,042\\nDe kolossos van Rhodos.\\nHier speciaal voor jou, Proog.\\n\\n76\\n00:08:51,083 --> 00:08:53,042\\nHet is er wel...\\n\\n77\\n00:08:53,042 --> 00:08:56,167\\nIk verzeker je,\\nEmo...\\n\\n78\\n00:08:57,083 --> 00:09:00,000\\n...het is er.',\n", + " 'bytes': 4517,\n", + " 'sha1': 'e9emm06c3hy2ic150akgc1duu24typ0',\n", + " 'parent_id': 45478388,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356916,\n", + " 'timestamp': '2021-11-09T10:02:43Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8827405,\n", + " 'title': 'Elephants Dream.ogv.et.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.et.srt]] to [[TimedText:Elephants Dream.ogv.et.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nJa… Ja vasakul võime näha...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nParemal võime näha...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...peade-tükeldajaid.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nKõik on ohutu.\\nTäiesti ohutu.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nVaata ette!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nKas said viga?\\n\\n8\\n00:00:51,917 --> 00:00:54,083\\nMa arvan et mitte...\\naga sina?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nMinuga on kõik korras.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nTõuse püsti.\\nEmo, siin ei ole ohutu.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nLähme.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nMis järgmiseks?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nKüll näed!\\n\\n14\\n00:01:17,250 --> 00:01:19,042\\nEmo.\\nSiiapoole.\\n\\n15\\n00:01:34,792 --> 00:01:35,792\\nJärgne mulle!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nKiirusta Emo.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nSa ei pane tähele!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nMa tahan lihtsalt vastata...\\n...telefonile.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, vaata,\\ntähendab kuula.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nSa pead õppima kuulama.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nSee ei ole mingi mäng.\\n\\n22\\n00:03:06,167 --> 00:03:10,417\\nSina, meie, võime siin kergesti surma saada.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nKuula,\\nkuula masina hääli.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nKuula oma hingamist.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nKas sa sellest kunagi ära ei tüdine?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nTüdine?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nSee masin on kui kellavärk\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nVäike nihe paigast ära ja...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...ja sa oled lihtsalt lihahunnik põrandal.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nAga kas see pole -\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nLihahunnik, Emo!\\nKas see on see mida sa tahad, lihahunnik?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nSinu elu saavutus?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nLihahunnik.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, sulge oma silmad.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nMiks?\\n- Nüüd!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nHea.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nMida sa näed endast vasakul?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nMitte midagi.\\n- Kas tõesti?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nMitte kui midagi\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nJa endast paremal,\\nmida sa näed endast paremal?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nSeda sama Proog, täpselt seda sama...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nMitte kui midagi!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nKuula Proog! Kas sa kuuled seda!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nKas me siit võime minna?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nSealt? \\nSee ei ole ohutu.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nAga...\\n- Usalda mind, see pole ohutu.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nVõibolla ma võiksin...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nEi.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nEI!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nOn veel küsimusi, Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nEi.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, miks...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...miks sa ei näe\\nselle koha ilu?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nSee kuidas kõik töötab.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nKui täiuslik see on.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nEi, Proog, ma ei näe.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nMa ei näe, sest siin ei ole midagi.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nJa miks peaksin oma elu usaldama\\nmillegile mida ei ole olemas?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nKas oskad mulle seda öelda?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nVasta mulle.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nSa oled haige, mees.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nHoia minust eemale.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nEi! Emo! See on lõks!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nSee on lõks.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nVasakul pool võid näha\\nBabyloni rippaedu!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nKuidas on see lõks?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nEi, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nParemal pool võid näha...\\n...arva mida...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...Rhodese kolossi!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nEi!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nRhodese koloss\\nja see on siin ainult sulle Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nSee on seal..\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nMa ütlen sulle,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...see on.',\n", + " 'bytes': 4441,\n", + " 'sha1': 't6ox0pg15mv13ffyd8n0f7k0ktz65qz',\n", + " 'parent_id': 54661956,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356905,\n", + " 'timestamp': '2021-11-09T10:02:34Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8827407,\n", + " 'title': 'Elephants Dream.ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.fi.srt]] to [[TimedText:Elephants Dream.ogv.fi.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nVasemmalla voimme nähdä...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nOikealla voimme nähdä...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...päähirmut.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nOn turvallista.\\nTäysin turvallista.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nVaro!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nSatutitko itsesi?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nEnpä tainnut...\\nEntä sinä?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nOlen kunnossa.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nNouse ylös.\\nEmo, täällä ei ole turvallista.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nMennään.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nMitä seuraavaksi?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nTulet näkemään!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nTätä tietä.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nSeuraa minua!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nNopeasti Emo.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nEt kiinnitä huomiota!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nHalusin vain vastata...\\n...puhelimeen.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, katso,\\ntarkoitan kuuntele.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nSinun täytyy oppia kuuntelemaan.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nTämä ei ole vain jokin leikki.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nSinä, me, voisimme kuolla täällä helposti.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nKuuntele,\\nkuuntele koneen ääniä.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nKuuntele hengitystäsi.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nEtkö sinä ikinä väsy tähän?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nVäsy?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nKone on kuten seinäkello.\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nTarpeeton liike...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...ja olet mennyttä.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nMutta eikö se -\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nMennyttä, Emo!\\nSitäkö haluat?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nElämäsi tavoite?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nOlla mennyttä.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, sulje silmäsi.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nMiksi?\\n- Nyt!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nHyvä.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nMitä näet vasemmalla Emo?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nEn mitään.\\n- Todellako?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nEn yhtään mitään.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nJa oikealla,\\nmitä näet oikealla Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nEn mitään Proog, en yhtään mitään...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nEn mitään!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nKuuntele Proog! Kuuletko tuon!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nVoimmeko mennä tuonne?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nTuonne? \\nSe ei ole turvallista.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nMutta...\\n- Luota minuun, se ei ole.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nKenties voisin...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nEi.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nEI!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nEnempiä kysymyksiä Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nEi.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, miksi...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...miksi et voi nähdä\\ntämän paikan kauneutta?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nSitä kuinka se toimii.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nKuinka täydellinen se on.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nEi, Proog, en näe.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nEn näe, koska täällä ei ole mitään.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nJa miksi minun tulisi luottaa\\nhenkeni jollekin jota ei ole?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nVoitko kertoa minulle sen?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nVastaa minulle.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nSinä olet sairas.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nPysy kaukana minusta.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nEi! Emo! Se on ansa!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nSe on ansa.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nVasemmalla voit nähdä\\nBabylonin riippuvat puutarhat!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nVaikuttaako tuo ansalta?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nEi, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nOikealla voit nähdä...\\n...arvaa mitä...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...Rhodoksen kolossin!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nEi!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nRhodoksen kolossi\\nja vain sinua varten Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nSe on tuolla...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nIhan oikeasti,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...se on.',\n", + " 'bytes': 4419,\n", + " 'sha1': 'fb8b2mqntes3o6cnzy0tzw3wjjr3s2x',\n", + " 'parent_id': 54662170,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356748,\n", + " 'timestamp': '2021-11-09T10:02:16Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8827408,\n", + " 'title': 'Elephants Dream.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.fr.srt]] to [[TimedText:Elephants Dream.ogv.fr.srt]]: rename of the original file',\n", + " 'text': \"1\\n00:00:15,000 --> 00:00:18,000\\nÀ votre gauche vous pouvez voir…\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nÀ votre droite vous pouvez voir les…\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n… les étêteurs.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nTout est sans danger. Parfaitement sans danger.\\n\\n5\\n00:00:26,000 --> 00:00:27,000\\nEmo ?\\n\\n6\\n00:00:28,625 --> 00:00:30,000\\nAttention !\\n\\n7\\n00:00:46,917 --> 00:00:48,000\\nTu n’as rien ?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nJe crois pas… et vous ?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nÇa va.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nLève-toi. Emo, ce n’est pas sûr ici.\\n\\n11\\n00:01:02,000 --> 00:01:03,208\\nAllons-y.\\n\\n12\\n00:01:03,833 --> 00:01:05,083\\nEt après ?\\n\\n13\\n00:01:05,875 --> 00:01:08,000\\nTu verras !\\n\\n14\\n00:01:16,167 --> 00:01:18,167\\nEmo. Par ici.\\n\\n15\\n00:01:34,875 --> 00:01:35,875\\nSuis-moi !\\n\\n16\\n00:02:11,417 --> 00:02:12,625\\nCours, Emo !\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nTu n’es pas attentif !\\n\\n18\\n00:02:51,000 --> 00:02:54,333\\nJe veux juste répondre au… téléphone.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, regarde, je veux dire : écoute.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nTu dois apprendre à écouter.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nCe n’est pas un jeu.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nTu… Nous pourrions facilement mourir ici.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nÉcoute, les sons de la machine.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nÉcoute ta respiration.\\n\\n25\\n00:04:26,917 --> 00:04:29,208\\nÇa ne vous lasse pas, à force ?\\n\\n26\\n00:04:29,583 --> 00:04:30,833\\nMe lasser ?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nLa machine est comme un mécanisme d'horlogerie.\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nUn faux pas…\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n… et tu es écrabouillé.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nMais n’est-ce pas…\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nÉcrabouillé, Emo ! C’est ce que tu veux, être écrabouillé ?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nC’est ton but dans la vie ?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nÉcrabouillé.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, ferme les yeux.\\n\\n35\\n00:05:44,750 --> 00:05:46,333\\n- Pourquoi ?\\n- Maintenant !\\n\\n36\\n00:05:53,750 --> 00:05:55,667\\nBien.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nQue vois-tu à ta gauche, Emo ?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\n- Rien.\\n- Vraiment ?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nRien du tout.\\n\\n40\\n00:06:08,250 --> 00:06:12,417\\nEt à ta droite, que vois-tu à ta droite, Emo ?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nLa même chose Proog, la même chose…\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nRien !\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nÉcoutez Proog ! Vous entendez ça ?\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nOn peut y aller ?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nLà ? Ce n’est pas prudent.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\n- Mais…\\n- Crois-moi, ça ne l’est pas.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nEt si, peut-être je…\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNon.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNON !\\n\\n50\\n00:07:00,875 --> 00:07:03,292\\nD’autres questions Emo ?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNon.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo ?\\n\\n53\\n00:07:11,875 --> 00:07:13,333\\nEmo, pourquoi…\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo…\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n… pourquoi ne peux-tu pas voir la beauté de cet endroit ?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nSon fonctionnement.\\n\\n57\\n00:07:21,875 --> 00:07:23,792\\nSa perfection.\\n\\n58\\n00:07:24,083 --> 00:07:27,167\\nNon, Proog, je ne vois pas.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nJe ne vois pas parce qu’il n’y a rien ici.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nPourquoi je confierais ma vie à quelque chose qui n’est pas là ?\\n\\n61\\n00:07:35,417 --> 00:07:36,833\\nTu peux répondre à ça ?\\n\\n62\\n00:07:37,417 --> 00:07:38,833\\nRéponds-moi.\\n\\n63\\n00:07:43,000 --> 00:07:44,000\\nProog…\\n\\n64\\n00:07:45,458 --> 00:07:46,958\\nT’es un malade !\\n\\n65\\n00:07:47,250 --> 00:07:49,000\\nNe m’approche pas !\\n\\n66\\n00:07:52,500 --> 00:07:55,000\\nNon ! Emo ! C’est un piège !\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nC’est un piège !\\n\\n68\\n00:07:57,208 --> 00:08:01,417\\nÀ votre gauche vous pouvez voir les jardins suspendus de Babylone !\\n\\n69\\n00:08:02,250 --> 00:08:03,875\\nÇa te plaît comme piège ?\\n\\n70\\n00:08:05,458 --> 00:08:07,000\\nNon, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nÀ votre droite vous pouvez voir… ça alors…\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n… le colosse de Rhodes !\\n\\n73\\n00:08:15,750 --> 00:08:16,500\\nNon !\\n\\n74\\n00:08:16,750 --> 00:08:21,750\\nLe colosse de Rhodes, et il n'est là que pour toi Proog.\\n\\n75\\n00:08:51,333 --> 00:08:52,833\\nMais c’est là…\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nJe te le jure, Emo…\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n… c’est là.\",\n", + " 'bytes': 4602,\n", + " 'sha1': 'rgefgmsh903ngl4dyqlrxre60lflp5y',\n", + " 'parent_id': 42630916,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33433784,\n", + " 'timestamp': '2009-12-25T10:43:01Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8828201,\n", + " 'title': 'Cal64x48check vdfr1to25len2.avi.q10fr25.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Cal64x48check vdfr1to25len2.avi.q10fr25.ogv]] english',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nZero\\n\\n2 \\n00:00:01,000 --> 00:00:02,000\\nOne',\n", + " 'bytes': 74,\n", + " 'sha1': '2zy1vcvpw6nco01g61w3iilvm2sstxr',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33433799,\n", + " 'timestamp': '2009-12-25T10:43:55Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8828204,\n", + " 'title': 'Cal64x48check vdfr1to25len2.avi.q10fr25.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Cal64x48check vdfr1to25len2.avi.q10fr25.ogv]] deutsch',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nNull\\n\\n2 \\n00:00:01,000 --> 00:00:02,000\\nEins',\n", + " 'bytes': 75,\n", + " 'sha1': 'ak5phiyjft8q5y09hntq0xqiq5r9iwa',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606399020,\n", + " 'timestamp': '2021-11-09T17:00:57Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8923472,\n", + " 'title': 'Wanna Work Together? with subtitles - Creative Commons.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall update',\n", + " 'text': \"1\\n00:00:04,774 --> 00:00:08,105\\nWanna Work Together?\\n\\n2\\n00:00:10,000 --> 00:00:12,324\\nWhen you share your creativity,\\n\\n3\\n00:00:12,342 --> 00:00:14,593\\nyou are enabling people anywhere,\\n\\n4\\n00:00:14,710 --> 00:00:16,835\\nto use it, learn from it,\\n\\n5\\n00:00:16,855 --> 00:00:19,000\\nand be inspired by it\\n\\n6\\n00:00:19,193 --> 00:00:20,403\\nTake the teacher,\\n\\n7\\n00:00:20,463 --> 00:00:24,536\\nwho shapes young minds with work\\nand wisdom from around the globe,\\n\\n8\\n00:00:24,577 --> 00:00:29,463\\nand the artist who builds beauty\\nout of bits and pieces, she finds online.\\n\\n9\\n00:00:29,873 --> 00:00:33,416\\nand the writer, whose stories\\nuse ideas and images\\n\\n10\\n00:00:33,436 --> 00:00:36,173\\ncrafted by people he's never even met.\\n\\n11\\n00:00:36,489 --> 00:00:39,139\\nThese people know\\nwhen you share your creative wealth,\\n\\n12\\n00:00:39,183 --> 00:00:41,208\\nyou can accomplish great things.\\n\\n13\\n00:00:41,244 --> 00:00:45,300\\nThey and millions of other people\\nall around the planet,\\n\\n14\\n00:00:45,333 --> 00:00:49,774\\nare working together to build\\na richer, better, more vibrant culture,\\n\\n15\\n00:00:49,806 --> 00:00:52,195\\nusing Creative Commons.\\n\\n16\\n00:00:53,606 --> 00:00:55,472\\nTo understand Creative Commons,\\n\\n17\\n00:00:55,495 --> 00:00:58,126\\nyou need to know a little bit\\nabout how Copyright works.\\n\\n18\\n00:00:58,134 --> 00:01:00,766\\nDid you know that when you create\\nsomething – anything,\\n\\n19\\n00:01:00,766 --> 00:01:06,486\\nfrom a photograph, to a song,\\nto a drawing, to a film, to a story,\\n\\n20\\n00:01:06,506 --> 00:01:10,677\\nyou automatically own an 'All Rights\\nReserved' copyright to that creativity.\\n\\n21\\n00:01:10,742 --> 00:01:11,910\\nIt's true!\\n\\n22\\n00:01:11,960 --> 00:01:15,492\\nCopyright protects your creativity\\nagainst uses, you don't consent to.\\n\\n23\\n00:01:15,509 --> 00:01:16,750\\n(*except fair use)\\n\\n24\\n00:01:16,770 --> 00:01:19,870\\nBut sometimes\\nfull Copyright is too restrictive.\\n\\n25\\n00:01:19,900 --> 00:01:23,501\\nWhat about when you want all those\\nmillions of millions of people out there\\n\\n26\\n00:01:23,508 --> 00:01:27,166\\nto use your work without the hassle\\nof coming to you for permission?\\n\\n27\\n00:01:27,233 --> 00:01:29,649\\nWhat if you want your work\\nto be freely shared,\\n\\n28\\n00:01:29,660 --> 00:01:32,464\\nreused and built upon by\\nthe rest of the world?\\n\\n29\\n00:01:33,000 --> 00:01:34,552\\nLuckily there is an answer:\\n\\n30\\n00:01:34,712 --> 00:01:36,522\\nCreative Commons.\\n\\n31\\n00:01:36,765 --> 00:01:41,047\\nWe provide free copyright licenses,\\nyou can use to tell people exactly\\n\\n32\\n00:01:41,055 --> 00:01:44,162\\nwhich parts of your copyright\\nyou are happy to give to the public.\\n\\n33\\n00:01:44,235 --> 00:01:48,051\\nIt's easy, it only takes a minute,\\nand its totally free.\\n\\n34\\n00:01:48,280 --> 00:01:51,369\\nJust come to our website\\nand answer a few quick questions like:\\n\\n35\\n00:01:51,409 --> 00:01:53,795\\n'Would you allow\\ncommercial uses of your work?'\\n\\n36\\n00:01:53,835 --> 00:01:56,243\\nand 'Would you allow\\nyour work to be modified?'\\n\\n37\\n00:01:56,365 --> 00:01:59,866\\nBased on your answers, we'll give you\\na license that clearly communicates\\n\\n38\\n00:01:59,890 --> 00:02:02,717\\nwhat people can\\nand can't do with your creativity.\\n\\n39\\n00:02:03,000 --> 00:02:07,765\\nYou don't give up your Copyright,\\nyou refine it so it works better for you.\\n\\n40\\n00:02:08,450 --> 00:02:11,798\\nWelcome to a new world\\nwhere collaboration rules!\\n\\n41\\n00:02:12,000 --> 00:02:14,929\\nIt didn't even exist just a few years ago.\\n\\n42\\n00:02:15,000 --> 00:02:19,437\\nBut now there are millions of millions\\nof songs, pictures, videos,\\n\\n43\\n00:02:19,475 --> 00:02:25,594\\nand written works available to share,\\nreuse and remix – all for free.\\n\\n44\\n00:02:26,197 --> 00:02:27,945\\nWanna work together?\\n\\n45\\n00:02:27,998 --> 00:02:29,707\\nthen join the Commons –\\n\\n46\\n00:02:29,734 --> 00:02:31,557\\nCreative Commons.\\n\\n47\\n00:02:34,547 --> 00:02:36,028\\nThe End\\n\\n48\\n00:02:36,238 --> 00:02:38,270\\nAnimation + Design\\nRyan Junell, junell.net\\n\\n49\\n00:02:38,310 --> 00:02:40,430\\nMusic + Sound Design\\nLesser, LSR1.com\\n\\n50\\n00:02:40,470 --> 00:02:42,370\\nNarrator: Sara Kraft\\nkraftpurver.com\\n\\n51\\n00:02:42,400 --> 00:02:44,328\\nScript: Eric Steuer\\ncreativecommons.org\\n\\n52\\n00:02:44,381 --> 00:02:45,625\\nVERY SPECIAL THANKS\\n\\n53\\n00:02:45,665 --> 00:02:47,830\\nThe John D. and Catherine T.\\nMacArthur Foundation, macfound.org\\n\\n54\\n00:02:47,870 --> 00:02:49,900\\nThe William and Flora Hewlett\\nFoundation, hewlett.org\\n\\n55\\n00:02:49,960 --> 00:02:51,270\\nRed Hat, redhat.com\\n\\n56\\n00:02:51,330 --> 00:02:52,740\\nOmidyar Network, omidyar.net\\n\\n57\\n00:02:52,770 --> 00:02:54,530\\nStanford Law School, law.stanford.edu\\n\\n58\\n00:02:54,580 --> 00:02:57,440\\nCenter for the Study \\nof the Public Domain, law.duke.edu/cfpd\\n\\n59\\n00:02:57,600 --> 00:03:02,000\\nAnd all Creative Commons\\nsupporters, large and small\",\n", + " 'bytes': 4706,\n", + " 'sha1': 'hk9yuakn9ahuqzlq713a3s4mndytj2l',\n", + " 'parent_id': 39197916,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 69051567,\n", + " 'timestamp': '2012-03-30T07:36:16Z',\n", + " 'user': {'id': 160035, 'text': 'Rave'},\n", + " 'page': {'id': 8924033,\n", + " 'title': 'Wanna Work Together? with subtitles - Creative Commons.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:07,000\\nХочешь работать вместе?\\n\\n2\\n00:00:07,000 --> 00:00:10,000\\nКогда вы делитесь своим творчеством,\\n\\n3\\n00:00:10,000 --> 00:00:16,000\\nвы открываете другим возможность использовать его, учиться на его основе, быть вдохновлёнными им\\n\\n4\\n00:00:16,000 --> 00:00:18,000\\nВозьмём к примеру учителя,\\n\\n5\\n00:00:18,000 --> 00:00:22,000\\nкоторый помогает формироваться юному интеллекту с помощью произведений и знаний, собранных по всему миру\\n\\n6\\n00:00:22,000 --> 00:00:28,000\\nили художника, который создаёт прекрасное из фрагментов других произведений, найденных в сети\\n\\n7\\n00:00:28,000 --> 00:00:34,000\\nили писателя, который использует в своём рассказе идеи и образы, созданные людьми, которых он никогда в жизни не видел.\\n\\n8\\n00:00:34,000 --> 00:00:39,000\\nЭти люди понимают, что когда они делятся своим творчеством, они помогают прекрасной идее.\\n\\n9\\n00:00:39,000 --> 00:00:43,000\\nОни и миллионы других людей по всей планете,\\n\\n10\\n00:00:43,000 --> 00:00:47,000\\nвместе работают над созданием более богатой, глубокой, пластичной культуры\\n\\n11\\n00:00:47,000 --> 00:00:50,000\\nс помощью лицензий Creative Commons.\\n\\n12\\n00:00:51,000 --> 00:00:56,000\\nДля понимания Creative Commons вам нужно немного узнать о том как работает авторское право.\\n\\n13\\n00:00:56,000 --> 00:01:04,000\\nЗнаете ли вы, что когда вы что-нибудь создаёте – что угодно, от фотографии, песни, до рисунка, фильма, рассказа\\n\\n14\\n00:01:04,000 --> 00:01:09,000\\nвы автоматически становитесь обладателем авторских прав \"Все права сохранены\" на это произведение. Это действительно так!\\n\\n15\\n00:01:09,000 --> 00:01:14,000\\nАвторское право защищает ваше произведение от несогласованного с вами использования. (*кроме \"добросовестного использования\")\\n\\n16\\n00:01:14,000 --> 00:01:17,000\\nНо иногда полное авторское право запрещает слишком многое.\\n\\n17\\n00:01:17,000 --> 00:01:22,000\\nА что если вы хотите, чтобы миллионы миллионов людей по всему миру использовали ваше произведение?\\n\\n18\\n00:01:22,000 --> 00:01:25,000\\nбез суеты, связанной с получением вашего разрешения?\\n\\n19\\n00:01:25,000 --> 00:01:30,000\\nчто если вы хотите, чтобы ваше произведение свободно распространялось, повторно использовалось и становилось основой для создания чего-то нового по всему миру?\\n\\n20\\n00:01:30,000 --> 00:01:34,000\\nК счастью, есть ответ: Creative Commons.\\n\\n21\\n00:01:34,000 --> 00:01:39,000\\nМы предоставляем бесплатные лицензии по авторскому праву, вы можете использовать их для того, чтобы сообщить людям какие именно части вашего авторского права\\n\\n22\\n00:01:39,000 --> 00:01:42,000\\nвы рады отдать общественности.\\n\\n23\\n00:01:42,000 --> 00:01:45,000\\nЭто просто, это займёт минуту и это полностью бесплатно.\\n\\n24\\n00:01:45,000 --> 00:01:48,000\\nПросто зайдите на наш веб-сайт и ответьте на несколько простых вопросов вроде:\\n\\n25\\n00:01:48,000 --> 00:01:51,000\\n\\'Позволяете ли вы коммерческие использования вашего произведения?\\'\\n\\n26\\n00:01:51,000 --> 00:01:54,000\\nи \\'Позволяете ли вы модифицировать ваше произведения?\\'\\n\\n27\\n00:01:54,000 --> 00:01:57,000\\nНа основе ваших ответов, мы дадим вам лицензию, которая чётко сообщает\\n\\n28\\n00:01:57,000 --> 00:02:00,000\\nчто люди могут и что не могут делать с вашим произведением.\\n\\n29\\n00:02:00,000 --> 00:02:05,000\\nВы не утрачиваете авторское право, вы заставляете его работать так как вам удобно.\\n\\n30\\n00:02:05,000 --> 00:02:09,000\\nДобро пожаловать в новый мир, где господствует сотрудничество.\\n\\n31\\n00:02:09,000 --> 00:02:12,000\\nВсего несколько лет назад он не существовал.\\n\\n32\\n00:02:12,000 --> 00:02:18,000\\nНо сейчас здесь есть миллионы миллионов песен, картинок, видео и письменных работ\\n\\n33\\n00:02:18,000 --> 00:02:23,000\\nдоступны для распространения, повторного использования и редактирования – всё бесплатно.\\n\\n34\\n00:02:23,000 --> 00:02:26,000\\nВы хотите работать вместе?\\n\\n35\\n00:02:26,000 --> 00:02:30,000\\nтогда присоединятесь к сообществу – Creative Commons.\\n\\n36\\n00:02:31,000 --> 00:02:32,000\\nКонец\\n\\n37\\n00:02:32,000 --> 00:02:35,000\\nАнимация и дизайн Ryan Junell junell.net\\n\\n38\\n00:02:35,000 --> 00:02:37,000\\nМузыкальное и звуковое оформление Lesser LSR1.com\\n\\n39\\n00:02:37,000 --> 00:02:40,000\\nТекст читала Sara Kraft kraftpurver.com\\n\\n40\\n00:02:40,000 --> 00:02:42,000\\nТекст Eric Steuer creativecommons.org\\n\\n41\\n00:02:42,000 --> 00:02:44,000\\nОсобое спасибо The John D. and Catherine T. MacArthur Foundation macfound.org\\n\\n42\\n00:02:44,000 --> 00:02:46,000\\nОсобое спасибо Фонду Уильяма и Флоры Хьюлетт hewlett.org\\n\\n43\\n00:02:46,000 --> 00:02:48,000\\nОсобое спасибо Red Hat redhat.com\\n\\n44\\n00:02:48,000 --> 00:02:50,000\\nОсобое спасибо Omidyar Network omidyar.net\\n\\n45\\n00:02:50,000 --> 00:02:52,000\\nОсобое спасибо Стэнфордской школе права law.stanford.edu\\n\\n46\\n00:02:52,000 --> 00:02:55,000\\nОсобое спасибо Центру изучения общественного достояния law.duke.edu/cfpd\\n\\n47\\n00:02:55,000 --> 00:02:59,000\\nИ всем сторонникам Creative Commons, большим и маленьким',\n", + " 'bytes': 7227,\n", + " 'sha1': 'h9uykhq17r69dazstojpj2atmbc6fq7',\n", + " 'parent_id': 33856016,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33880430,\n", + " 'timestamp': '2010-01-07T04:11:17Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 8927373,\n", + " 'title': 'Welcome to globallives 2.0.ogv.ar.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'fixed utf-8 encoding',\n", + " 'text': '\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫هيب هوب برازيلية في الخلفية♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nهدف Global Lives Project هو تصوير 24 ساعة من الحياة اليومية لعشرة اشخاص من حول العالم\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nنحن الان في ساو باولو - البرازيل لتنفيذ التصور الثاني للمشروع\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nفريقنا يتكون من مصورين, فنانين, مهندس معمارين, مبرمجين\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\nو اشخاص عاديين من حول العالم\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nسننتهي ب240 ساعة من التصوير و سنجمعهم لانتاج افلام للمعرض النهائي\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nزوار المعرض سيشاهدون الافلام في عشرغرف مختلفة\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\nكل غرفة ستعرض المشاهد الغير مقطوعة من تصوير العشر اشخاص\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nالفكرة من المعرض والمشروع هي ان تعزل الزوار من حياتهم اليومية ليختبروا حياة اخرى\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\nلاشخاص مختلفين من كل انحاء العام\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nأول تصوير لمشروع Global Lives كان في سان فرانسيسكو - كاليفورنية مع سائق عربة قطار هوئية يسمى James Bullock\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nنحن الآن نصور في دول أخرى\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\nالافلام التي سنجمعها في النهاية سينضمون الى مكتبة فيديو لتدوين الخبرات الحياتية للإنسان\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\nالمكتبة مفتوحة أيضا للمشاركة من قبل الجميع\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nمن خلال إختبار هذه اللحظات القصيرة, ولكن المتوعة من حياة الإنسان\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\nستجعل المشاهدين يفكرون عن حياتهم و علاقتهم مع باقي أشخاص العالم\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\nزوروا موقعنا الإكتروني GlobalLives.org لتتعلموا كيف من إمكانكم أن تشاركون مشروع Global Lives Projects\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.',\n", + " 'bytes': 2497,\n", + " 'sha1': 'lcw51sv3thpz52b1vcxcbr7ko9ggnnn',\n", + " 'parent_id': 33874048,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33880605,\n", + " 'timestamp': '2010-01-07T04:25:43Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 8928536,\n", + " 'title': 'Welcome to globallives 2.0.ogv.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:Welcome to globallives 2.0.ogv.zh-chs.srt]] to [[TimedText:Welcome to globallives 2.0.ogv.zh.srt]]: moved to valid Chinese lang key ( might need to be moved again)',\n", + " 'text': '\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫背景音乐为巴西说唱乐♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nGlobal Lives Project将拍摄记录来自世界不同地方的10个普通人的24小时日常生活\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\n现在我们在巴西圣保罗进行该计划的第二场拍摄\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\n我们的团队中有电影制作人,艺术家,设计师,程序员\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\n以及来自世界各地的普通人\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\n我们将总共完成240小时的拍摄,并将所有拍摄内容公开展出\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\n参观展览者可以走进10个不同的房间\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\n每个房间都将放映一位主人公未加剪辑的24小时生活影像\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\n这样可以将参观者带出自己的生活圈子,并将他们引入世界其他地区\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\n人们真实的世界中去\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nGlobal Lives的第一场拍摄在美国加州的旧金山完成,主人公是电车司机James Bullock\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\n其余拍摄正在不同国家、地区进行着\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\n我们的所有影片都将成为供大家分享的人类生活体验电影库中的一部分\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\n完全免费开放并接受公众的捐助\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\n通过深入这些微小但丰富的人们日常生活的例子\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\n观众将会重新审视自己的生活,并看到自己与世界各地的联系\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\n访问我们的网站,Globallives.org,了解如何参与到Global Lives Project中来½\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.',\n", + " 'bytes': 1838,\n", + " 'sha1': 'eslxxv38kf077wx28nszwbbzymymifm',\n", + " 'parent_id': 33880458,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33880508,\n", + " 'timestamp': '2010-01-07T04:15:31Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 8928540,\n", + " 'title': 'Welcome to globallives 2.0.ogv.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:Welcome to globallives 2.0.ogv.pt-br.srt]] to [[TimedText:Welcome to globallives 2.0.ogv.nl.srt]]: wrong language',\n", + " 'text': \"\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫ Braziliaanse hiphopmuziek op de achtergrond ♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nHet doel van het Wereldlevens project is om 24 uur op te nemen van het dagelijkse leven van 10 mensen van over de hele wereld.\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nWe zijn nu in São Paulo, Brazilië tijdens onze tweede opnames voor het project.\\n\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nWij zijn een groep van tientallen filmmakers, artiesten, architecten, programmeurs \\n\\n5\\n00:00:34,000 --> 00:00:38,000\\nen gewone mensen van over de hele planeet.\\n\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nUiteindelijk zullen we 240 uur film hebben, en de bedoeling is om daarmee een video-installatie te maken.\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nDe bezoekers van deze installatie zullen door tien verschillende kamers kunnen wandelen\\n\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\nEn in elke kamer loopt de onbewerkte film over elk van onze hoofdpersonen.\\n\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nWe willen mensen echt uit hun eigen dagelijkse leven halen en in de realiteit brengen van allerlei mensen\\n\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\nvan over de hele wereld.\\n\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nDe eerste Wereldlevens opname vond plaats in San Francisco, Californië, met trambestuurder James Bullock.\\n\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nBijkomende opnames vinden al plaats in andere landen.\\n\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\nAl onze video's zullen opgenomen worden in een filmbibliotheek over hoe mensen hun leven beleven\\n\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\ndie gratis is en open voor bijdragen van het publiek.\\n\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nDoor hen onder te dompelen in deze kleine maar verscheiden staalname van het dagelijks bestaan \\n\\n16\\n00:02:38,000 --> 00:02:44,000\\nzullen kijkers uitgedaagd worden hun eigen leven en hun banden met de rest van de wereld te overdenken.\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\nKijk op onze website GlobalLives.org om te zien hoe je kan meewerken aan het Wereldlevens project.\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.\",\n", + " 'bytes': 2087,\n", + " 'sha1': 'dd1snqqkts6i46fe1wre8qqz60fw961',\n", + " 'parent_id': 33880478,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33880584,\n", + " 'timestamp': '2010-01-07T04:23:13Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 8928546,\n", + " 'title': 'Welcome to globallives 2.0.ogv.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫ Música de hip hop no fundo ♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nO objetivo do Projeto Global Lives é gravar um vídeo de 24 horas na vida de 10 pessoas ao redor do mundo.\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nAgora estamos em São Paulo, Brasil, fazendo a segunda gravação do projeto.\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nSomos um grupo com dezenas de cineastas, artistas, arquitetos, programadores\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\ne pessoas comuns de todo o planeta.\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nNo final do projeto teremos 240 horas de gravacao e a idéia é usar tudo isso para criar uma vídeo instalação. \\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nO visitante poderá circular por dez salas diferentes \\n\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\ne assistir o vídeo não editado de cada um dos participantes. \\n\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nA finalidade é a de tirar as pessoas do seu cotidiano trazê-las para dentro da realidade de pessoas \\n\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\nde todas as camadas sociais em todo o mundo.\\n\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nA primeira filmagem do Global Lives foi realizada em São Francisco, Califórnia com o motorneiro James Bullock.\\n\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nOutras gravações já estão sendo produzidas em outros países.\\n\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\nTodos os nossos vídeos vão fazer parte de uma videoteca participatória de vida humana,\\n\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\ngrátis e aberta pela internet para contribuições do público geral.\\n\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nAtravés da imersão nessa pequena, mas diversificada amostra do cotidiano humano,\\n\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\nos visitantes terão como desafio repensar suas próprias vidas e como elas se conectam com o resto do mundo.\\n\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\nVisite o nosso site www.GlobalLives.org para saber como participar do Projeto Global Lives.\\n\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.',\n", + " 'bytes': 2034,\n", + " 'sha1': 'owray2t8q23vyf3a66x9a191tbuzdqq',\n", + " 'parent_id': 33880509,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45236475,\n", + " 'timestamp': '2010-10-19T21:17:05Z',\n", + " 'user': {'id': 44809, 'text': 'LtPowers'},\n", + " 'page': {'id': 8928547,\n", + " 'title': 'Welcome to globallives 2.0.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'missing comma using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': \"0\\n00:00:00 --> 00:00:04,062\\n♫ Brazilian hip hop music in background ♫\\n\\n1\\n00:00:16,154 --> 00:00:23\\nThe goal of the Global lives Project is to videotape 24 hours in the daily lives of 10 people from all over the world.\\n\\n2\\n00:00:23 --> 00:00:27\\nRight now we're here in São Paulo, Brazil, doing our second shoot for the project.\\n\\n3\\n00:00:30 --> 00:00:34\\nWe are a collective of dozens of filmakers, artists, architects, programmers\\n\\n4\\n00:00:34 --> 00:00:38\\nand everyday people from all around the planet.\\n\\n5\\n00:00:39 --> 00:00:46\\nWe're going to end up with 240 hours of footage, and the idea is to take all this footage and create a video installation\\n\\n6\\n00:00:46 --> 00:00:49\\nThe visitor to this installation will be able to walk through ten different rooms\\n\\n7\\n00:00:49 --> 00:00:55\\nAnd each of the rooms will have the unedited footage of each of our subjects\\n\\n8\\n00:00:56 --> 00:01:02\\nThe point of this is to really take people out of their own daily lives and bring them into the realities of people from all walks of life\\n\\n9\\n00:01:02 --> 00:01:04\\nfrom all over the world.\\n\\n10\\n00:01:07 --> 00:01:14\\nThe first Global Lives shoot took place in San Francisco, California, with cable car driver James Bullock.\\n\\n11\\n00:01:25 --> 00:01:29\\nAdditional shoots are already taking place in other countries.\\n\\n12\\n00:01:52 --> 00:01:59\\nAll our videos will become part of a participatory video library of human life experience\\n\\n13\\n00:01:59 --> 00:02:03\\nfree and open for contributions from the public.\\n\\n14\\n00:02:34 --> 00:02:38\\nThrough immersion in this small but diverse sampling of daily human existence\\n\\n15\\n00:02:38 --> 00:02:44\\nviewers will be challenged to rethink both their own lives and their connections with the rest of the world.\\n\\n16\\n00:02:52 --> 00:02:58\\nCheck out our website at GlobalLives.org to find out how to get involved in the Global Lives Project.\\n\\n17\\n00:05:05 --> 00:05:06\\n.\\n\\n18\\n00:05:06 --> 00:05:07\\n.\\n\\n19\\n00:05:07 --> 00:05:08\\n.\",\n", + " 'bytes': 1939,\n", + " 'sha1': 'mvcdn1ukp4w6k3oz4jjya0ugo4qa5mz',\n", + " 'parent_id': 45070293,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 256389851,\n", + " 'timestamp': '2017-08-26T11:00:08Z',\n", + " 'user': {'id': 3717, 'text': 'VIGNERON'},\n", + " 'page': {'id': 8928558,\n", + " 'title': 'Welcome to globallives 2.0.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '+',\n", + " 'text': \"\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫ Hip-hop brésilien en arrière plan ♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nLe but de Global Lives est d'enregistrer 24 heures dans les vies de 10 gens de partout le monde.\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nMaintenant nous sommes à [[w:fr:Sao Paulo|Sao Paulo]], Brésil. Où nous tournons la deuxième scène pour le projet.\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nNous sommes une collective des dizaines de réalisateurs, artistes, architectes et programmeurs\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\nEt des gens ordinaires de partout la planète.\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nÀ la fin, nous aurons 240 heures de film. L’idée est de prendre ce film et créer une exposition de vidéo.\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nUn visiteur à cette exposition pourra passer par 10 salles différentes.\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\nEt chaque salle aura des images de chacun personne.\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nLe but de ceci est de mettre ces gens dans les réalités des gens de tous les milieux\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\nde partout dans le monde.\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nLe premier film était dans San Francisco, Californie, avec James Bullock, un conducteur de téléphérique.\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nDes autres films ont lieu dans les autres pays aussi.\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\nToutes les vidéos feront partie d'une vidéo-bibliothèque participative de l'expérience de la vie humaine\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\nLibre et ouvert pour les contributions du public.\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nEn immergeant dans ce petit échantillonnage divers de l'expérience de la vie quotidienne\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\nLes spectateurs seront contestés de repenser leurs vies et leurs rapports avec le reste du monde.\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\nVoyez-vous le site à GlobalLives.org pour découvrir comment vous pouvez participer dans le projet de Global Lives.\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.\",\n", + " 'bytes': 2062,\n", + " 'sha1': 'b8n4ka0d2lp4mm9y8rx7313a49gljlm',\n", + " 'parent_id': 42947214,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 39257520,\n", + " 'timestamp': '2010-05-14T15:32:18Z',\n", + " 'user': {'id': 6282, 'text': 'Longbow4u'},\n", + " 'page': {'id': 8928560,\n", + " 'title': 'Welcome to globallives 2.0.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'text grammatically and orthographically corrected',\n", + " 'text': '\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫ Brasilianische HipHop Musik im Hintergrund ♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nDas Ziel des Global lives Projekt ist es, das tägliche Leben von 10 Personen von überall auf der Welt auf Video festzuhalten.\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nGerade jetzt sind wir in São Paulo, Brasilien, bei unserem zweiten Dreh für das Projekt.\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nWir sind eine Gruppe von einigen dutzend Filmemachern, Künstlern, Architekten, Programmierern\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\nund ganz normale Leute von überall aus der Welt.\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nWir werden am Ende 240 Stunden Filmmaterial haben und die Idee ist es, dieses ganze Filmmaterial dafür zu nutzen, um daraus eine Videoinstalltion zu machen\\n\\n\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nDer Besucher dieser Installation wird dann in der Lage sein, durch 10 verschieden Räume zu laufen.\\n\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\nUnd jeder Raum wird das ungeschnittene/editierte Filmmaterial von jeden Thema beinhalten\\n\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nDer Sinn dahinter ist, das die Leute aus ihren eigenen wirklichen Leben herausgerissen werden, und Sie in die Leben von Menschen mit diversen Hintergründen\\n\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\nvon überall aus der Welt eintauchen. \\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nDer erste Global-Lives-Dreh fand in San Fransisco, Kalifornien statt, mit dem Straßenbahnfahrer James Bullock.\\n\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nWeitere Drehs in anderen Ländern sind bereits in Arbeit.\\n\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\nAll unsere Videos werden ein Teil einer kollaborativen Videobibliothek für menschliche Lebenserfahrungen werden\\n\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\nkostenlos und frei für die Verbreitung in der Öffentlichkeit\\n\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nDurch das Eintauchen in diese kleinen aber diversen Ausschnitte von menschlicher Existenz\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\nwerden die Zuschauer herausgefordert ihr eigenes Leben und ihre Beziehungen zum Rest der Welt zu überdenken.\\n\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\nBesuchen Sie unsere Internetseite auf GlobalLives.org und finden Sie heraus wie du selbst im Global-Lives-Projekt aktiv werden kannst.\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.',\n", + " 'bytes': 2327,\n", + " 'sha1': 'cm32lrqturncm5mysudpv7pu5sdt7s0',\n", + " 'parent_id': 33880560,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33880570,\n", + " 'timestamp': '2010-01-07T04:20:42Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 8928566,\n", + " 'title': 'Welcome to globallives 2.0.ogv.hi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:00,000 --> 00:00:04,000 ♫ ब्राज़ीली हिप-होप का संगीत पृष्ठभूमि में है ♫ 2 0...'\",\n", + " 'text': '\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫ ब्राज़ीली हिप-होप का संगीत पृष्ठभूमि में है ♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nविश्व जीवनिए योजना का लक्षय 10 लोग का 24 घंटे अपने दैनिक जीवन में \"to videotape\" हैं। वे लोग दुनिया के तरफ़ से हैं।\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nअब हम याहा साओव पालो, ब्राज़ील में रेहते हैं। हमारा दूसरा फ़िल्मी योजना के लिये कुर रहे हैं।\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nहम फ़िल्म बनानेवाले, कलाकारे, बास्तुका और क्रमादेशक का दल में हैं।\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\nऔर जनता दुनिया के तरफ़ से हैं।\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nहम 240 घंटे के लिये विदिओ के ख़त्म होगा। हम यह विदीओ के साथ एक विदीओ का घर बनेंगे।\\n\\n7\\n00:01:02,000 --> 00:01:04,000\\nदुनिया के तरफ़ से.\\n\\n8\\n00:05:06,000 --> 00:05:07,000\\n???',\n", + " 'bytes': 1406,\n", + " 'sha1': '3ilb1lqqg18qplw3g0z7p1y7qn5tqdm',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33880572,\n", + " 'timestamp': '2010-01-07T04:21:25Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 8928567,\n", + " 'title': 'Welcome to globallives 2.0.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:00,000 --> 00:00:04,000 Hip-hop musica ♫ ♫ BGM Brasile 2 00:00:15,000 --> 00:00:23,000 L'obiettivo generale del progetto è quello di registrare la...'\",\n", + " 'text': \"\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\nHip-hop musica ♫ ♫ BGM Brasile\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nL'obiettivo generale del progetto è quello di registrare la vita di 10 persone diverse scelti da tutto il mondo per 24 ore.\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nQui siamo in Sao Paulo Brasile facendo del nostro secondo fliming per il progetto.\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nCi sono un certo numero di registi, artisti, architetti, programmatori, e persone e organizzazioni in tutta la terra\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\ne persone e organizzazioni in tutta la terra\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nAlla fine del progetto avranno un totale di 240 ore di video e di creare un video per l'installazione tutte queste immagini - l'idea di base del progetto\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nQuesto permetterà ai visitatori di camminare in tutte le 10 camere\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\nIn ogni camera è possibile vedere i video del soggetto senza alcuna modifica.\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nL'obiettivo è quello di consentire alle persone di vedere\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\ne in situazioni diverse da quelle \\n\\ndel mondo\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\ne in situazioni diverse da quelle del mondo in cui vivono e possono\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nL'obiettivo è quello di consentire alle persone di vedere \\n\\nse stessi in un altro mondo\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\ne in situazioni diverse da quelle del mondo in cui vivono e possono\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\nessere visualizzate online gratuitamente con i contributi da parte del pubblico\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nSe si desidera partecipare al piano globale di vita,\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\nQuando le persone sono sottoposte alla vita quotidiana \\n\\ndiverso dal loro modo di vita e sono collegati \\n\\ncollegato a resto del mondo.\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\n si prega di andare sul nostro sito web, Globallives.org.\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.\",\n", + " 'bytes': 2040,\n", + " 'sha1': '1r5sjdtsxs2lnko7qr73nzv2z2q2d2c',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33880580,\n", + " 'timestamp': '2010-01-07T04:21:59Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 8928570,\n", + " 'title': 'Welcome to globallives 2.0.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:00,000 --> 00:00:04,000 ♫BGM ブラジルのヒップホップ音楽♫ 2 00:00:15,000 --> 00:00:23,000 グローバル\\u3000ライブズ\\u3000プロジェ...'\",\n", + " 'text': '\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫BGM ブラジルのヒップホップ音楽♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nグローバル\\u3000ライブズ\\u3000プロジェクトの目標は世界中から選ばれた10人の日常生活を24時間録画することです。\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\n今私たちはここブラジル、サンパウロで二つ目の撮影を行っているところです。\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nわたしたちは映画製作者、アーティスト、建築家、プログラマー、そして\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\n世界各国から人々が集結してできた団体です。\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\n我々は計240時間という録画をすることになります。その映像すべてを使ってビデオによるインスタレーションアート(装置芸術)を創るというのがそもそものアイデアです。\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nこのインスタレーションは10個の部屋を通り抜けることができる仕組みになっており\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\nそれぞれの部屋では選ばれた被写体の無編集の映像をみることができます。\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nそこで観る人が自分自身の日常から抜け出し、世界中のあらゆる違った現実に\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\n入り込んで体験してもらおうというわけです。\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nグローバル\\u3000ライブズ\\u3000プロジェクトの最初の撮影は、カリフォルニア州サンフランシスコで行われ、ケーブルカー運転手のジェームズ\\u3000ブロックさんを撮ることから始まりました。\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nそれに続く撮影はすでにいろいろな国で行われています。\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\nすべての映像は、多くの人たちの助力によってつくられたビデオライブラリーにおさめられており\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\n無料オンラインで見ることができます\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nつかの間ながら様々な人々の日常に浸かってみることによって\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\n自分自身の人生について問い直し、また自分が他の世界とどうつながっているのかをあらためて考えさせられるでしょう。\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\nグローバル\\u3000ライブズ\\u3000プロジェクトへ参加ご希望の方は私たちのウェブサイト、Globallives.org\\u3000をご覧ください。\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.',\n", + " 'bytes': 2706,\n", + " 'sha1': '6f18svqidp07z76z21edqk4z6tvyy81',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33880589,\n", + " 'timestamp': '2010-01-07T04:23:40Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 8928574,\n", + " 'title': 'Welcome to globallives 2.0.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:00,000 --> 00:00:04,000 ♫ Música Brasileña hip hop en el trasfondo ♫ 2 00:00:15,000 --> 00:00:23,000 El objetivo del Global Lives Project es vide...'\",\n", + " 'text': '\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫ Música Brasileña hip hop en el trasfondo ♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nEl objetivo del Global Lives Project es video-grabar 24 horas sobre las vidas diarias de 10 personas alrededor del mundo.\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nEn este momento estamos en São Paulo, Brasil, haciendo nuestro segundo rodaje para el proyecto.\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nSomos un grupo de docenas de directores cinematográficos, artistas, arquitectos, programadores\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\ny gente común y corriente de alrededor del planeta.\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nVamos a conseguir 240 horas de material, y la idea es tomar todo este material y crear una instalación de video.\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nLos visitantes de esta instalación podrán atravesar diez salas diferentes.\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\nY cada uno de estas salas tendrán el material no modificado de cada uno de nuestros protagonistas.\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nEl objetivo es alejar a la gente de su vida cotidiana y mostrarles las experiencias de otros tipos de personas\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\nque viven alrededor del mundo.\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nEl primer rodaje de Global Lives se realizó en San Francisco, California, sobre la vida del conductor de tranvías, James Bullock.\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nOtros rodajes adicionales se están realizando en otros países.\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\nTodos nuestros videos formarán parte de una video-biblioteca participativa sobre las experiencias de los seres humanos\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\ncon entrada gratuita y una invitación al público a hacer donaciones.\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nA través de la inmersión en estos pequeños, pero a la vez diversos, ejemplos de la existencia humana diaria\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\nlos espectadores serán desafiados a reconsiderar sus vidas y sus conexiones con el resto del mundo.\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\nVaya a nuestro sitio web en GlobalLives.org para averiguar cómo involucrarse en el Global Lives Project.\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.',\n", + " 'bytes': 2236,\n", + " 'sha1': 'ikznnvk05nglvb9oaxezlhnz0quav49',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33880594,\n", + " 'timestamp': '2010-01-07T04:24:24Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 8928579,\n", + " 'title': 'Welcome to globallives 2.0.ogv.vi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:00,000 --> 00:00:04,000 ♫ Nhạc hip hop xứ Ba Tây hậu cảnh ♫ 2 00:00:15,000 --> 00:00:23,000 Mục đích của Đề Án Đời Sống To...'\",\n", + " 'text': '\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫ Nhạc hip hop xứ Ba Tây hậu cảnh ♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nMục đích của Đề Án Đời Sống Toàn Cầu là quay phim trông 24 giờ về cuộc sống hàng ngày của 10 người từ khắp nơi trên thế giới.\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nBây giờ, chúng ta đang ở Sao Paulo, Brazil để làm phim thứ hai cho cái dự đề án.\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nChúng tôi la một nhóm hàng chục người gồm các nhà làm phim, nghệ sĩ, kiến trúc sư và thảo chương viên.\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\nvà những người bình thường đến từ khắp nơi trên hành tinh này.\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nChúng ta sẽ kết thúc với 240 giờ phim, và ý định là lấy hết những phim này để sáng tạo một hoạt cảnh.\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nkhách thăm hoạt cảnh này có thể đi dạo ngang quay 10 phòng khác nhau\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\nvà mỗi phòng sẽ có những thước phim chưa trình chiếu của mỗi nhân vật.\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nÝ tưởng thực sự là mang mọi người ra khỏi đời sống riêng của họ và hoà nhập họ vào đời sống thực của những người khác\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\ntrên toàn thế giới\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nCảnh quay đầu tiên của Đời Sống Toàn Cầu đã thực hiện ở San Francisco, California, với người lái xe dây cáp, James Bullock.\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nNhững cảnh quay thêm cũng đang được thực hiện ở mấy nước khác.\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\nTất cả phim của chúng ta sẽ trở thành một phần phim của thư viện về kinh nghiệm đời sống con người\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\nMiễn phí và mở rộng cho những sự đóng góp phần từ quần chúng.\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nQua sự hoà nhập vào cái mảnh đời sống hàng ngày nhỏ bé nhưng đa dạng này\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\nngười xem sẽ được thách đố để nghĩ lại về đời sống riêng của họ v à những mối quan hệ với phần còn lại của thế giới.\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\nHãy xem trang mang của chung ta ở GlobalLives.org để tìm hiểu làm thế nào thâm gia góp phần cho Đề Án Đời Sống Toàn Cầu.\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.',\n", + " 'bytes': 2596,\n", + " 'sha1': 'd5wkzwcs3kzbyi2bkqzd1b2x07pvl4k',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357625,\n", + " 'timestamp': '2021-11-09T10:10:06Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 9638224,\n", + " 'title': 'Elephants Dream.ogv.zh-cn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.zh-cn.srt]] to [[TimedText:Elephants Dream.ogv.zh-cn.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,000 --> 00:00:17,951\\n我们可以看到左边有...\\n\\n2\\n00:00:18,166 --> 00:00:20,083\\n我们可以看到右边有...\\n\\n3\\n00:00:20,119 --> 00:00:21,962\\n...the head-snarlers\\n\\n4\\n00:00:21,999 --> 00:00:24,368\\n一切都是安全的。\\n完全安全。\\n\\n5\\n00:00:24,582 --> 00:00:27,035\\nEmo?\\n\\n6\\n00:00:28,206 --> 00:00:29,996\\n当心!\\n\\n7\\n00:00:47,037 --> 00:00:48,494\\n你受伤没有?\\n\\n8\\n00:00:51,994 --> 00:00:53,949\\n我想没有。\\n你呢?\\n\\n9\\n00:00:55,160 --> 00:00:56,985\\n我很好。\\n\\n10\\n00:00:57,118 --> 00:01:01,111\\n站起来。\\nEmo,这里不安全。\\n\\n11\\n00:01:02,034 --> 00:01:03,573\\n我们走吧。\\n\\n12\\n00:01:03,610 --> 00:01:05,114\\n接下来呢?\\n\\n13\\n00:01:05,200 --> 00:01:09,146\\n你会看到的!\\n\\n14\\n00:01:16,032 --> 00:01:18,022\\nEmo.\\n这边走。\\n\\n15\\n00:01:34,237 --> 00:01:35,481\\n跟我走!\\n\\n16\\n00:02:11,106 --> 00:02:12,480\\nEmo,快点!\\n\\n17\\n00:02:48,059 --> 00:02:49,930\\n你一点都不专心!\\n\\n18\\n00:02:50,142 --> 00:02:54,052\\n我只是想接...\\n...电话。\\n\\n19\\n00:02:54,974 --> 00:02:57,972\\nEmo,你看,\\n我的意思是听。\\n\\n20\\n00:02:59,140 --> 00:03:02,008\\n你必须学会听。\\n\\n21\\n00:03:03,140 --> 00:03:04,965\\n这不是什么游戏。\\n\\n22\\n00:03:05,056 --> 00:03:09,345\\n你,我的意思是我们,\\n我们很容易从这里消失。\\n\\n23\\n00:03:10,014 --> 00:03:13,959\\n听着,\\n听机器的声音。\\n\\n24\\n00:03:18,054 --> 00:03:20,009\\n听听你自己的呼吸。\\n\\n25\\n00:04:27,001 --> 00:04:28,956\\n好了,你一点都不累吗?\\n\\n26\\n00:04:29,084 --> 00:04:30,909\\n累?!?\\n\\n27\\n00:04:31,126 --> 00:04:34,491\\nEmo,这个机器就好像时钟的发条。\\n\\n28\\n00:04:35,083 --> 00:04:37,074\\n在这里只要走错一步...\\n\\n29\\n00:04:37,166 --> 00:04:39,121\\n...你就会摔成肉泥\\n\\n30\\n00:04:40,958 --> 00:04:42,004\\n但这不是 -\\n\\n31\\n00:04:42,041 --> 00:04:46,034\\n肉泥,Emo!\\n这就是你想要的,肉泥?\\n\\n32\\n00:04:47,040 --> 00:04:48,995\\nEmo,你的人生目标...\\n\\n33\\n00:04:50,081 --> 00:04:51,953\\n...肉泥?\\n\\n34\\n00:05:41,156 --> 00:05:43,028\\nEmo,闭上眼睛。\\n\\n35\\n00:05:44,156 --> 00:05:46,027\\n为什么?\\n- 马上!\\n\\n36\\n00:05:51,155 --> 00:05:52,102\\n好吧。\\n\\n37\\n00:05:53,113 --> 00:05:54,688\\n很好。\\n\\n38\\n00:05:59,070 --> 00:06:02,103\\n你在左边看到什么了,Emo?\\n\\n39\\n00:06:04,028 --> 00:06:05,899\\n什么都没有。\\n- 真的?\\n\\n40\\n00:06:06,027 --> 00:06:07,105\\n不,根本没有什么。\\n\\n41\\n00:06:07,944 --> 00:06:11,984\\n那你的右边呢,\\n你有没有在你的右边看到什么,Emo?\\n\\n42\\n00:06:13,151 --> 00:06:16,102\\n一样的,Proog。完全一样...\\n\\n43\\n00:06:16,942 --> 00:06:19,098\\n...什么都没有!\\n- 非常好。\\n\\n44\\n00:06:40,105 --> 00:06:42,724\\n听,Proog!你听到没有!\\n\\n45\\n00:06:43,105 --> 00:06:44,894\\n我们可以到这里吗?\\n\\n46\\n00:06:44,979 --> 00:06:47,894\\n那里?\\n那里不安全,Emo。\\n\\n47\\n00:06:49,145 --> 00:06:52,013\\n但是...\\n- 相信我,那里不安全。\\n\\n48\\n00:06:53,020 --> 00:06:54,145\\n也许我可以...\\n\\n49\\n00:06:54,181 --> 00:06:55,969\\n不。\\n\\n50\\n00:06:57,102 --> 00:06:59,934\\n不!\\n\\n51\\n00:07:00,144 --> 00:07:03,058\\n还有什么问题吗,Emo?\\n\\n52\\n00:07:03,976 --> 00:07:05,090\\n不。\\n\\n53\\n00:07:09,059 --> 00:07:10,089\\nEmo?\\n\\n54\\n00:07:11,142 --> 00:07:13,058\\nEmo,为什么...\\n\\n55\\n00:07:13,095 --> 00:07:14,022\\nEmo...\\n\\n56\\n00:07:14,058 --> 00:07:18,003\\n...为什么你看不到\\n这个地方的美丽之处?\\n\\n57\\n00:07:18,141 --> 00:07:20,048\\n它的运作之道。\\n\\n58\\n00:07:20,140 --> 00:07:23,895\\n它是多么完美。\\n\\n59\\n00:07:23,932 --> 00:07:26,964\\n不,Proog,我看不到。\\n\\n60\\n00:07:27,056 --> 00:07:29,970\\n我看不到,因为它什么都没有。\\n\\n61\\n00:07:31,055 --> 00:07:34,965\\n而我为什么要用我的生命\\n来相信一个不存在的事物?\\n\\n62\\n00:07:35,055 --> 00:07:36,926\\n好了,你可以告诉我吗?\\n\\n63\\n00:07:37,054 --> 00:07:38,926\\n回答我。\\n\\n64\\n00:07:42,970 --> 00:07:44,000\\nProog...\\n\\n65\\n00:07:45,053 --> 00:07:46,985\\n...你这个变态!\\n\\n66\\n00:07:47,022 --> 00:07:48,918\\n离我远点。\\n\\n67\\n00:07:52,052 --> 00:07:54,884\\n不!Emo!那是陷阱!\\n\\n68\\n00:07:55,135 --> 00:07:56,931\\n啊,这是陷阱!\\n\\n69\\n00:07:56,968 --> 00:08:01,043\\n在左边你可以看到\\n巴比伦空中花园!\\n\\n70\\n00:08:01,967 --> 00:08:03,957\\n这怎么会是个陷阱?\\n\\n71\\n00:08:05,050 --> 00:08:06,922\\n不,Emo。\\n\\n72\\n00:08:09,008 --> 00:08:12,088\\n在右边你可以看到...\\n...猜猜是什么...\\n\\n73\\n00:08:12,924 --> 00:08:14,665\\n...罗德岛太阳神铜像!\\n\\n74\\n00:08:15,132 --> 00:08:16,053\\n不!\\n\\n75\\n00:08:16,090 --> 00:08:21,919\\n罗德岛太阳神铜像\\n它在这里等你,Proog。\\n\\n76\\n00:08:51,001 --> 00:08:52,923\\n它在这里...\\n\\n77\\n00:08:52,959 --> 00:08:56,040\\n我告诉你吧,\\nEmo...\\n\\n78\\n00:08:57,000 --> 00:08:59,867\\n...它在。',\n", + " 'bytes': 4723,\n", + " 'sha1': 'c009e0n13uct16do2qgjkikv7l4hx13',\n", + " 'parent_id': 36097918,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 427472089,\n", + " 'timestamp': '2020-06-19T07:51:56Z',\n", + " 'user': {'id': 22648, 'text': 'Koavf'},\n", + " 'page': {'id': 9765432,\n", + " 'title': 'Eben Moglen - From the birth of printing to industrial culture; the root of copyright.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:05,000\\nInterview with [[w:Eben Moglen|Eben Moglen]]\\n\\n1\\n00:00:06,000 --> 00:00:09,600\\nWell I think I would begin\\nby putting it this way\\n\\n2\\n00:00:10,240 --> 00:00:14,520\\nThe book, which is the first \\nmass-produced article in Western culture,\\n\\n3\\n00:00:15,000 --> 00:00:21,800\\nis really the beginning of \\nthe process of industrialization of information.\\n\\n4\\n00:00:24,000 --> 00:00:31,160\\nThe medieval artisan producing or consuming information, \\ntraveling long distances,\\n\\n5\\n00:00:32,000 --> 00:00:37,640\\nconfronted with the difficulty of searching out\\npeople possessing specialised knowledge,\\n\\n6\\n00:00:38,120 --> 00:00:42,400\\nbecomes in the space of two generations only,\\n\\n7\\n00:00:43,280 --> 00:00:49,920\\nthe western european world of books, \\nof printed mass produced artefacts,\\n\\n8\\n00:00:50,360 --> 00:00:52,120\\nthat spread knowledge widely,\\n\\n9\\n00:00:53,000 --> 00:00:59,720\\nand make the process of accumulating\\nspecialised knowledge about the world\\n\\n10\\n00:01:00,000 --> 00:01:03,200\\na process of memory \\nrather than a process of travel.\\n\\n11\\n00:01:04,680 --> 00:01:10,400\\nFrom that world we move,\\nover the course of the edisonian revolution,\\n\\n12\\n00:01:10,680 --> 00:01:14,600\\nfrom the third quarter of the 19th Century\\nto the end of the Twentieth,\\n\\n13\\n00:01:15,520 --> 00:01:23,440\\ninto a world in which memory becomes instead\\nthe omnipresent analogue articles of culture. \\n\\n14\\n00:01:24,360 --> 00:01:31,920\\nSo the book an article present in a library,\\nconsultable by a skilled audience,\\n\\n15\\n00:01:32,680 --> 00:01:37,400\\nis largely replaced by the moving picture,\\nthe sound recording,\\n\\n16\\n00:01:38,120 --> 00:01:43,480\\nthe available vernacular culture \\nwhich puts an immense amount of information \\n\\n17\\n00:01:44,160 --> 00:01:48,760\\nnot at the disposal of the skilled \\nbut at the doorstep of everyone. \\n\\n18\\n00:01:49,160 --> 00:01:56,240\\nNow this was intended for a purpose, \\nit was intended, or at any rate it grew up right alongside\\n\\n19\\n00:01:56,520 --> 00:02:03,400\\nHenry Ford\\'s conscription of the workers of the world \\ninto the new army consumers. \\n\\n20\\n00:02:03,800 --> 00:02:09,280\\npeople who saved capitalism from its rough spots \\nby consuming its production\\n\\n21\\n00:02:09,760 --> 00:02:18,280\\nwho ended its crisis of overproduction \\nby becoming a disciplined army of consumers.\\n\\n22\\n00:02:19,120 --> 00:02:21,320\\nAnd to become a disciplined army of consumers\\n\\n23\\n00:02:21,680 --> 00:02:26,120\\nthe world\\'s workers had to be provided a culture \\nwhich explained consumption, \\n\\n24\\n00:02:26,560 --> 00:02:28,880\\nmade them want,\\ntold them what to want,\\n\\n25\\n00:02:32,440 --> 00:02:32,480\\ngave them aspirations and concerns\\n\\n26\\n00:02:33,280 --> 00:02:38,560\\nthat were not the authentic product \\nof their experience\\n\\n27\\n00:02:39,040 --> 00:02:42,800\\nbut were the transferred product \\nof vicarious experience. \\n\\n28\\n00:02:44,720 --> 00:02:48,040\\nAnd as analogue forms this culture\\n\\n29\\n00:02:48,440 --> 00:02:52,720\\nwhich required industrial processes to make,\\nto produce records,\\n\\n30\\n00:02:53,600 --> 00:02:56,400\\nto produce celluloid, \\nwith the little holes cut in it,\\n\\n31\\n00:02:58,040 --> 00:03:05,560\\nI was watching an old Mel Brookes interview, \\nconducted by Dick Cavitt,\\n\\n32\\n00:03:06,080 --> 00:03:14,400\\nnow being presented by the New York Times \\nas an act of museum conservateurship in film,\\n\\n33\\n00:03:15,360 --> 00:03:17,040\\nin which Cavitt asks Mel Brookes:\\n\\n34\\n00:03:17,160 --> 00:03:19,280\\n\"What\\'s the hardest part \\nof making a motion picture?\"\\n\\n35\\n00:03:19,680 --> 00:03:23,400\\nAnd he says \"oh...punching the little holes \\nin the edges of the celluloid.\"\\n\\n36\\n00:03:24,040 --> 00:03:25,720\\nWell if you think about it in a way that\\'s correct,\\n\\n37\\n00:03:26,080 --> 00:03:28,200\\nthat is the hardest part \\nof making a motion picture\\n\\n38\\n00:03:28,680 --> 00:03:32,080\\nwhich is why in the world of digital computers \\nit is so easy to make films,\\n\\n39\\n00:03:32,760 --> 00:03:35,520\\nbecause you don\\'t need to punch \\nall the little holes in the celluloid any more.\\n\\n40\\n00:03:36,000 --> 00:03:38,640\\nIn other words culture \\ncontained in analogue artefacts,\\n\\n41\\n00:03:39,080 --> 00:03:44,440\\nwas culture whose control resulted from the difficulty \\nof making it, moving it and selling it.\\n\\n42\\n00:03:45,040 --> 00:03:50,040\\nControl came naturally as part of the process \\nof the existence of the medium itself. \\n\\n43\\n00:03:50,520 --> 00:03:54,640\\nWhat happened when we moved, \\nat the end of the twentieth century, to digital media\\n\\n44\\n00:03:55,000 --> 00:03:58,200\\nwas that the process by which memory became experience\\n\\n45\\n00:03:58,360 --> 00:04:01,880\\nover the long history from the book \\nto the edison motion picture\\n\\n46\\n00:04:02,680 --> 00:04:09,160\\nbecame memory is now immediacy, it\\'s the things we make ourselves, \\ninstead of remembering.\\n\\n47\\n00:04:09,360 --> 00:04:14,320\\nWe\\'re sitting in a bar with our friends\\nand we have a camera in every cell phone\\n\\n48\\n00:04:14,680 --> 00:04:16,040\\na movie camera in every cell phone\\n\\n49\\n00:04:16,480 --> 00:04:19,880\\nand everything we take \\ngoes straight to flickr and youtube\\n\\n50\\n00:04:20,000 --> 00:04:24,200\\nand in fact memory is becoming \\nthe attribute of the network now.\\n\\n51\\n00:04:24,760 --> 00:04:28,760\\nAnd experience is becoming \\nan attribute of the network now.\\n\\n52\\n00:04:30,000 --> 00:04:36,480\\nAnd the control, that used to reside in the \\nvery making of the artefact, is up for grabs.\\n\\n53\\n00:04:37,000 --> 00:04:43,560\\nand that\\'s what I think moves us\\n\\n54\\n00:04:40,200 --> 00:04:43,480\\nfrom a world of the catholic church\\'s \\ncontrol over ideas,\\n\\n55\\n00:04:44,000 --> 00:04:47,080\\nthreatened by the protestant artefact of the book\\n\\n56\\n00:04:47,600 --> 00:04:52,720\\nto a world in which the Edisonian companies \\nbenefited from control,\\n\\n57\\n00:04:52,760 --> 00:04:54,040\\nnot over the book but over celluloid \\nand how to punch the little holes,\\n\\n58\\n00:04:56,680 --> 00:05:01,040\\nto a world in which the network made control, like production, \\n\\n59\\n00:05:01,440 --> 00:05:05,640\\nas easy as consumption and disciplined behaviour\\n\\n60\\n00:05:06,000 --> 00:05:12,520\\nand that\\'s the enormous threat, promise and wisdom \\nof the technology for our time,\\n\\n61\\n00:05:13,000 --> 00:05:16,640\\nthat it challenges the very bases of control.\\n\\n62\\n00:05:20,360 --> 00:05:23,040\\nWell both the copyright and patent laws,\\n\\n63\\n00:05:23,280 --> 00:05:28,400\\nthese principles of government\\nthat control over information flow\\n\\n64\\n00:05:28,760 --> 00:05:31,600\\nthey are - as law often is -\\n\\n65\\n00:05:31,920 --> 00:05:37,040\\npieces of technology \\nmade in a period of material stratum A\\n\\n66\\n00:05:37,040 --> 00:05:40,080\\nsurviving into material Stratum B.\\n\\n67\\n00:05:40,360 --> 00:05:45,880\\nSo they mix a peculiar set of \\nincentives and phenomena\\n\\n68\\n00:05:46,680 --> 00:05:55,040\\nThe patent laws and copyright laws are \\nbasically about 17th and 18th century conditions,\\n\\n69\\n00:05:55,400 --> 00:05:58,040\\nimplemented in 19th Century ways\\n\\n70\\n00:05:58,680 --> 00:06:04,600\\nand then redeployed in 20th Century \\nto meet 21st Century problems. \\n\\n71\\n00:06:05,000 --> 00:06:10,520\\nThe basic difficulty that presents itself, \\nthat the law of copyright is meant to deal with,\\n\\n72\\n00:06:10,880 --> 00:06:13,800\\nis that, as you say, \\nit\\'s expensive to make a printing press\\n\\n73\\n00:06:14,200 --> 00:06:16,040\\nbut once you\\'ve made it,\\n\\n74\\n00:06:17,240 --> 00:06:22,520\\nyou have to find a way to decide what to use it on\\n\\n75\\n00:06:23,000 --> 00:06:27,240\\nand the real question is \\nwhat should the printer spend his time printing.\\n\\n76\\n00:06:27,840 --> 00:06:33,280\\nSo you have to give the printer an incentive\\nto print the particular thing.\\n\\n77\\n00:06:33,760 --> 00:06:38,640\\nIt isn\\'t, as has sometimes been suggested by the owners of culture \\nin the late twentieth century,\\n\\n78\\n00:06:39,080 --> 00:06:41,920\\nthat if there weren\\'t incentives \\nthey wouldn\\'t print anything at all\\n\\n79\\n00:06:42,400 --> 00:06:44,880\\nthey are of course going to run the press,\\n\\n80\\n00:06:45,360 --> 00:06:48,920\\nand the man builds a press \\nbecause he can make money printing something\\n\\n81\\n00:06:49,160 --> 00:06:52,840\\nthe question is whether what he ought to print \\nis somebody\\'s business cards,\\n\\n82\\n00:06:53,000 --> 00:06:56,040\\nsomebody\\'s wedding invitations,\\nor somebody\\'s novel.\\n\\n83\\n00:06:56,360 --> 00:07:00,920\\nIn other words the question is \\nhow to determine what it is that gets made\\n\\n84\\n00:07:01,400 --> 00:07:04,840\\nwith the scarce industrial processes of making.\\n\\n85\\n00:07:05,560 --> 00:07:11,400\\nCulture is profitable, \\nif you can buy it cheap, and sell it dear.\\n\\n86\\n00:07:12,000 --> 00:07:18,600\\nand it is to that extent profitable because \\nit\\'s special, different or unique.\\n\\n87\\n00:07:19,200 --> 00:07:20,880\\nWhat floods into France,\\n\\n88\\n00:07:21,160 --> 00:07:24,720\\nas Robert Darnton showed in thinking about \\neighteenth century french culture,\\n\\n89\\n00:07:24,800 --> 00:07:27,400\\nWhat flows into france from the presses of Amsterdam\\n\\n90\\n00:07:27,560 --> 00:07:30,040\\nis what the french aren\\'t allowed to make for themselves,\\n\\n91\\n00:07:30,680 --> 00:07:37,080\\nwhich is why pornography and politics are the stuff of \\nprinting for export in the 18th century.\\n\\n92\\n00:07:37,440 --> 00:07:39,160\\nBut what that does,\\n\\n93\\n00:07:40,000 --> 00:07:47,840\\nthat process of making for the market \\nby making what is least obtainable does,\\n\\n94\\n00:07:48,040 --> 00:07:51,600\\nis to threaten that you\\'ll wind up \\nwith a press consisting entirely \\n\\n95\\n00:07:52,120 --> 00:07:54,560\\nof government periodicals and pornography\\n\\n96\\n00:07:55,160 --> 00:07:57,160\\nWhat are you going to do to prevent that?\\n\\n97\\n00:07:57,560 --> 00:08:02,640\\nYou\\'re going to try and give printers \\na stake in the progress of literature.\\n\\n98\\n00:08:03,240 --> 00:08:08,440\\n- which is what the copyright law really is,\\nit\\'s a grand jeffersonian sort of an idea.\\n\\n99\\n00:08:09,000 --> 00:08:15,400\\nThat we will turn democracy into a way \\nfor encouraging virtue among printers\\n\\n100\\n00:08:15,720 --> 00:08:20,120\\nAnd we\\'ll get everything to work \\nin such a way as to speed \\n\\n101\\n00:08:20,360 --> 00:08:22,640\\nthe diffusion of knowledge and the useful arts.\\n\\n102\\n00:08:24,160 --> 00:08:28,960\\nSo in that sense,\\ncopyright law takes a rise\\n\\n103\\n00:08:29,160 --> 00:08:33,680\\nfrom a noble experiment\\nintended to meet\\n\\n104\\n00:08:33,840 --> 00:08:38,160\\nan appropriate 18th or \\nearly 19th century problem,\\n\\n105\\n00:08:38,680 --> 00:08:42,080\\nand it by the edisonian period has evolved\\n\\n106\\n00:08:42,560 --> 00:08:47,600\\nwhat is the necessary concomitant for its time,\\nwhich is the \\'work for hire\\' doctrine.\\n\\n107\\n00:08:47,960 --> 00:08:53,320\\nit has to become possible to use that\\nsystem for encouraging virtue amongst printers\\n\\n108\\n00:08:53,640 --> 00:08:59,240\\nactually to encourage the success of \\nlarger commercial publishing enterprises.\\n\\n109\\n00:08:59,520 --> 00:09:04,360\\nWhere Manhattan is thought of as \\nthe centre of printing in the 19th century,\\n\\n110\\n00:09:04,680 --> 00:09:08,400\\nit will be thought of as \\nthe centre of publishing in the twentieth century,\\n\\n111\\n00:09:08,600 --> 00:09:10,760\\nand that\\'s a very different meaning,\\n\\n112\\n00:09:11,000 --> 00:09:16,920\\nit\\'s not about the light industrial process \\nof printing something on pieces of paper\\n\\n113\\n00:09:17,080 --> 00:09:22,880\\nit\\'s about the control of a large vertically\\nintegrated system of cultural production\\n\\n114\\n00:09:23,160 --> 00:09:25,920\\nand for that you need the \\'work for hire\\' doctrine.\\n\\n115\\n00:09:26,000 --> 00:09:29,640\\nAs 18th century booksellers in London\\nneeded Grub Street. \\n\\n116\\n00:09:30,000 --> 00:09:32,040\\nthat is some content producer\\n\\n117\\n00:09:32,400 --> 00:09:36,720\\nto meet the demand \\nof the wide pipe of printing\\n\\n118\\n00:09:37,000 --> 00:09:41,480\\nthat their concentration of the machinery \\nof printing and binding has set up.\\n\\n119\\n00:09:42,000 --> 00:09:46,440\\nThe Edisonian institutions \\nneeded content behind them,\\n\\n120\\n00:09:46,640 --> 00:09:49,840\\nAnd they needed content \\nthey could claim to own.\\n\\n121\\n00:09:50,160 --> 00:09:54,080\\nSo in that sense copyright law comes, \\nthrough the work for hire doctrine,\\n\\n122\\n00:09:54,600 --> 00:09:56,920\\nand its relationship to the law of employment,\\n\\n123\\n00:09:57,240 --> 00:10:02,320\\ncopyright becomes the organizational \\norganic document\\n\\n124\\n00:10:02,320 --> 00:10:05,920\\nfor these immense media enterprises.\\n\\n125\\n00:10:06,240 --> 00:10:06,280\\nOnce media enterprises \\nhave come into existence,\\n\\n126\\n00:10:09,640 --> 00:10:14,200\\nonce New York city is a \\ncentre of publishing rather than printing,\\n\\n127\\n00:10:15,040 --> 00:10:18,760\\nThen any medium that comes along \\nhas to be co-opted in the same way.\\n\\n128\\n00:10:18,880 --> 00:10:22,480\\nThe principle of vertical integration \\nhas to be maintained.\\n\\n129\\n00:10:22,600 --> 00:10:27,520\\nAnd as you move from publishing on paper \\nto radio broadcasting,\\n\\n130\\n00:10:27,920 --> 00:10:34,400\\ntelevision broadcasting, news dissemination,\\nfinancial information dissemination,\\n\\n131\\n00:10:35,000 --> 00:10:38,200\\nyou apply the same model to it:\\nsomebody makes it,\\n\\n132\\n00:10:38,560 --> 00:10:38,600\\nthat creates a property interest,\\n\\n133\\n00:10:41,120 --> 00:10:44,920\\nthat property interest is transferred \\nthrough an employment contract,\\n\\n134\\n00:10:45,160 --> 00:10:49,960\\nand becomes a disposable piece of property\\nin a market economy.\\n\\n135\\n00:10:50,280 --> 00:10:56,480\\nThat seems to meet the need \\nfor the industrial organizations of the time.\\n\\n136\\n00:10:56,880 --> 00:11:00,040\\nNow if the technology makes another change,\\n\\n137\\n00:11:00,480 --> 00:11:06,880\\nand control no longer inherently resides \\nin the object of information itself,\\n\\n138\\n00:11:07,360 --> 00:11:10,440\\nThen copyright has to become \\na law about control\\n\\n139\\n00:11:10,680 --> 00:11:14,440\\nNot a law about these organizational dispositions\\n\\n140\\n00:11:14,920 --> 00:11:21,560\\nand you begin to get, as in the DMCA, \\nor the European Union copyright directive,\\n\\n141\\n00:11:22,040 --> 00:11:24,440\\nyou begin to get para-copyright law,\\n\\n142\\n00:11:24,560 --> 00:11:29,040\\nlaw which is about control over use, \\nnot control over production,\\n\\n143\\n00:11:29,240 --> 00:11:32,040\\nbecause that jointure between the user,\\n\\n144\\n00:11:32,480 --> 00:11:37,160\\nthe consumer, the producer and the distributor,\\nhas become too tight.\\n\\n145\\n00:11:37,640 --> 00:11:42,640\\nAnd the law has to get in there \\nand force a differentiation of roles again.\\n\\n146\\n00:11:42,920 --> 00:11:45,400\\nBut that\\'s nothing to do with \\nwhere copyright started,\\n\\n147\\n00:11:45,680 --> 00:11:48,640\\nit\\'s nothing to do with \\nwhat made copyright law effective \\n\\n148\\n00:11:49,080 --> 00:11:52,320\\nin the organization media of in the first place.',\n", + " 'bytes': 14501,\n", + " 'sha1': 'ht5tki0tjc28y2v0a43aezrx4gndf6a',\n", + " 'parent_id': 36563685,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90799759,\n", + " 'timestamp': '2013-02-16T14:46:30Z',\n", + " 'user': {'id': 822627, 'text': 'Dieudo'},\n", + " 'page': {'id': 9770402,\n", + " 'title': 'Eben Moglen - From the birth of printing to industrial culture; the root of copyright.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'test de mise en forme',\n", + " 'text': '0 00:00:00,000 --> 00:00:05,000 Entretien avec [[w:fr:Eben Moglen|Eben Moglen]]\\n\\n1 00:00:06,000 --> 00:00:09,600 Eh bien, je crois que je vais commencer par mettre les choses de cette façon \\n\\n2 00:00:10,240 --> 00:00:14,520 Le livre, qui est le premier article produit en masse dans la culture occidentale, \\n\\n3 00:00:15,000 --> 00:00:21,800 est vraiment le début du processus d\\'industrialisation de l\\'information. \\n\\n4\\n00:00:24,000 --> 00:00:31,160\\nla production ou la consommation artisanale médiévale de l\\'information,\\nparcourant de longues distances, \\n\\n5 00:00:32,000 --> 00:00:37,640 confronté à la difficulté de rechercher des personnes possédant des connaissances spécialisées, \\n\\n6 00:00:38,120 --> 00:00:42,400 devient en l\\'espace de deux générations seulement, \\n\\n7 00:00:43,280 --> 00:00:49,920 le monde de l\\'Europe occidentale de livres, de la masse imprimés produits artefacts, \\n\\n8 00:00:50,360 --> 00:00:52,120 que les connaissances largement répandu, \\n\\n9 00:00:53,000 --> 00:00:59,720 et rendre le processus d\\'accumulation de connaissances spécialisées sur le monde \\n\\n10 00:01:00,000 --> 00:01:03,200 un processus de mémoire plutôt que d\\'un processus de Voyage. \\n\\n11 00:01:04,680 --> 00:01:10,400 À partir de ce monde, nous déplacer, au cours de la révolution edisonian, \\n\\n12 00:01:10,680 --> 00:01:14,600 du troisième quart du 19e siècle à la fin du XXe siècle, \\n\\n13 00:01:15,520 --> 00:01:23,440 dans un monde où la mémoire devient plutôt les articles analogique omniprésente de la culture. \\n\\n14 00:01:24,360 --> 00:01:31,920 Alors, le livre d\\'un article présent dans une bibliothèque, consultable par un public qualifié, \\n\\n15 00:01:32,680 --> 00:01:37,400 est en grande partie remplacé par l\\'image en mouvement, l\\'enregistrement sonore, \\n\\n16 00:01:38,120 --> 00:01:43,480 la culture vernaculaire disposition qui met une énorme quantité d\\'informations \\n\\n17 00:01:44,160 --> 00:01:48,760 pas à la disposition des travailleurs qualifiés, mais à la porte de tous. \\n\\n18 00:01:49,160 --> 00:01:56,240 Maintenant, cela était destiné à une fin, il était destiné, ou tout au moins il a grandi à vos côtés \\n\\n19 00:01:56,520 --> 00:02:03,400 la conscription de Henry Ford, des travailleurs du monde entre les consommateurs nouvelle armée. \\n\\n20 00:02:03,800 --> 00:02:09,280 les gens qui ont sauvé le capitalisme de ses taches rugueuses en consommant sa production \\n\\n21 00:02:09,760 --> 00:02:18,280 qui a terminé sa crise de surproduction en devenant une armée disciplinée des consommateurs. \\n\\n22 00:02:19,120 --> 00:02:21,320 Et pour devenir une armée disciplinée des consommateurs \\n\\n23 00:02:21,680 --> 00:02:26,120 dans le monde les travailleurs doivent être fournis d\\'une culture qui a expliqué la consommation, \\n\\n24 00:02:26,560 --> 00:02:28,880 fait les veulent, je leur ai dit que vouloir, \\n\\n25 00:02:32,440 --> 00:02:32,480 leur a donné des aspirations et des préoccupations \\n\\n26 00:02:33,280 --> 00:02:38,560 qui ne sont pas le produit authentique de leur expérience \\n\\n27 00:02:39,040 --> 00:02:42,800 mais sont le produit transféré de l\\'expérience d\\'autrui. \\n\\n28 00:02:44,720 --> 00:02:48,040 Et comme des formes analogiques de cette culture \\n\\n29 00:02:48,440 --> 00:02:52,720 qui a nécessité des procédés industriels à faire, de produire des documents, \\n\\n30 00:02:53,600 --> 00:02:56,400 pour produire de celluloïd, avec les petits trous coupés en elle,\\n\\n31 00:02:58,040 --> 00:03:05,560 Je regardais un vieux Mel Brookes interview, menée par Dick Cavitt, \\n\\n32 00:03:06,080 --> 00:03:14,400 maintenant présentés par le New York Times comme un acte de conservateurship musée du cinéma, \\n\\n33 00:03:15,360 --> 00:03:17,040 dans laquelle Cavitt demande Mel Brookes: \\n\\n34 00:03:17,160 --> 00:03:19,280 \"Quelle est la partie la plus difficile de faire un film? \\n\\n35 00:03:19,680 --> 00:03:23,400 Et il dit: \"oh ... poinçonnage les petits trous dans les bords de la pellicule. \\n\\n36 00:03:24,040 --> 00:03:25,720 Eh bien, si vous pensez cela d\\'une façon qui est correcte, \\n\\n37 00:03:26,080 --> 00:03:28,200 qui est la partie la plus difficile de faire un film \\n\\n38 00:03:28,680 --> 00:03:32,080 c\\'est pourquoi, dans le monde des ordinateurs numériques, il est si facile de faire des films, \\n\\n39 00:03:32,760 --> 00:03:35,520 parce que vous n\\'avez pas besoin de frapper tous les petits trous dans la pellicule plus. \\n\\n40 00:03:36,000 --> 00:03:38,640 Dans la culture d\\'autres termes contenus dans des objets analogues, \\n\\n41 00:03:39,080 --> 00:03:44,440 la culture dont le contrôle a été entraîné par la difficulté de le faire, le déplacer et de le vendre. \\n\\n42 00:03:45,040 --> 00:03:50,040 contrôle est venu naturellement dans le cadre du processus de l\\'existence même du médium. \\n\\n43 00:03:50,520 --> 00:03:54,640 Qu\\'est-il arrivé quand nous avons déménagé à la fin du XXe siècle, aux médias numériques \\n\\n44 00:03:55,000 --> 00:03:58,200 c\\'est que le processus par lequel la mémoire est devenue l\\'expérience \\n\\n45 00:03:58,360 --> 00:04:01,880 au cours de la longue histoire du livre pour le cinéma Edison \\n\\n46 00:04:02,680 --> 00:04:09,160 est devenue la mémoire est désormais l\\'immédiateté, ce sont les choses que nous fabriquons nous-mêmes, au lieu de se souvenir. \\n\\n47 00:04:09,360 --> 00:04:14,320 Nous sommes assis dans un bar avec nos amis et nous avons une caméra dans chaque téléphone cellulaire \\n\\n48 00:04:14,680 --> 00:04:16,040 une caméra dans chaque téléphone cellulaire \\n\\n49 00:04:16,480 --> 00:04:19,880 et tout ce que nous prenons va directement à Flickr et YouTube \\n\\n50 00:04:20,000 --> 00:04:24,200 et dans la mémoire devient de fait est l\\'attribut du réseau maintenant. \\n\\n51 00:04:24,760 --> 00:04:28,760 Et l\\'expérience devient un attribut du réseau maintenant. \\n\\n52 00:04:30,000 --> 00:04:36,480 Et le contrôle, qui résidaient dans la fabrication même de l\\'artefact, est bonne à prendre. \\n\\n53 00:04:37,000 --> 00:04:43,560 et c\\'est ce que je pense que nous émeut \\n\\n54 00:04:40,200 --> 00:04:43,480 d\\'un monde de contrôle de l\\'Église catholique sur des idées, \\n\\n55 00:04:44,000 --> 00:04:47,080 menacés par l\\'artefact protestante du livre \\n\\n56 00:04:47,600 --> 00:04:52,720 à un monde dans lequel les sociétés Edisonian bénéficié de contrôle, \\n\\n57 00:04:52,760 --> 00:04:54,040 pas fini le livre, mais de plus en celluloïd et comment composter »les petits trous, \\n\\n58 00:04:56,680 --> 00:05:01,040 à un monde dans lequel le réseau fait de la lutte, comme la production, \\n\\n59 00:05:01,440 --> 00:05:05,640 aussi facile que le comportement de consommation et disciplinée \\n\\n60 00:05:06,000 --> 00:05:12,520 et c\\'est l\\'énorme menace, la promesse et la sagesse de la technologie pour notre temps, \\n\\n61 00:05:13,000 --> 00:05:16,640 qu\\'il défie les bases mêmes du contrôle. \\n\\n62 00:05:20,360 --> 00:05:23,040 Eh bien à la fois le droit d\\'auteur et brevets, \\n\\n63 00:05:23,280 --> 00:05:28,400 ces principes de gouvernement que le contrôle des flux d\\'information \\n\\n64 00:05:28,760 --> 00:05:31,600 qu\\'ils sont - que le droit est souvent -- \\n\\n65 00:05:31,920 --> 00:05:37,040 morceaux de technologie effectué dans une période de la strate matériau A \\n\\n66 00:05:37,040 --> 00:05:40,080 survivant dans le matériel Stratum B. \\n\\n67 00:05:40,360 --> 00:05:45,880 Alors, ils mélangent un ensemble particulier de mesures d\\'incitation et des phénomènes \\n\\n68 00:05:46,680 --> 00:05:55,040 Les lois sur les brevets et droits d\\'auteur sont essentiellement à propos des 17e et 18e siècle, les conditions, \\n\\n69 00:05:55,400 --> 00:05:58,040 réalisée par les moyens du 19e siècle \\n\\n70 00:05:58,680 --> 00:06:04,600 et puis redéployer au 20e siècle pour répondre aux problèmes du 21ème siècle. \\n\\n71 00:06:05,000 --> 00:06:10,520 La principale difficulté qui se présente, que la loi du droit d\\'auteur est destinée à traiter, \\n\\n72 00:06:10,880 --> 00:06:13,800 est que, comme vous le dites, c\\'est cher de faire une presse à imprimer \\n\\n73 00:06:14,200 --> 00:06:16,040 mais une fois qu\\'on l\\'a faite, \\n\\n74 00:06:17,240 --> 00:06:22,520 vous devez trouver un moyen de décider ce qu\\'il faut l\\'utiliser sur \\n\\n75 00:06:23,000 --> 00:06:27,240 et la vraie question est ce que l\\'imprimante doit passer son temps d\\'impression. \\n\\n76 00:06:27,840 --> 00:06:33,280 Vous devez donc donner à l\\'imprimante une incitation à imprimer la chose en particulier. \\n\\n77 00:06:33,760 --> 00:06:38,640 Ce n\\'est pas, comme cela a parfois été suggéré par les propriétaires de la culture dans la fin du XXe siècle, \\n\\n78 00:06:39,080 --> 00:06:41,920 que s\\'il n\\'y avait pas d\\'incitations qu\\'ils ne seraient pas imprimer n\\'importe quoi \\n\\n79 00:06:42,400 --> 00:06:44,880 ils sont bien entendu va exécuter la presse, \\n\\n80 00:06:45,360 --> 00:06:48,920 et l\\'homme construit une presse car il peut faire quelque chose d\\'impression de l\\'argent \\n\\n81 00:06:49,160 --> 00:06:52,840 La question est de savoir si ce qu\\'il doit à imprimer est des cartes de visite de quelqu\\'un, \\n\\n82 00:06:53,000 --> 00:06:56,040 quelqu\\'un invitations de mariage, ou d\\'un roman de quelqu\\'un. \\n\\n83 00:06:56,360 --> 00:07:00,920 En d\\'autres termes la question est de savoir comment déterminer ce qu\\'il est que vire à la \\n\\n84 00:07:01,400 --> 00:07:04,840 avec les processus industriels de rares décisions. \\n\\n85 00:07:05,560 --> 00:07:11,400 La culture est rentable, si vous pouvez l\\'acheter bon marché, et de le vendre cher. \\n\\n86 00:07:12,000 --> 00:07:18,600 et c\\'est dans cette mesure rentable parce que c\\'est spécial, différent ou unique. \\n\\n87 00:07:19,200 --> 00:07:20,880 Qu\\'est-ce inondations en France, \\n\\n88 00:07:21,160 --> 00:07:24,720 comme Robert Darnton a montré dans la réflexion sur la culture du XVIIIe siècle français, \\n\\n89 00:07:24,800 --> 00:07:27,400 Que se jette dans la France des presses d\\'Amsterdam \\n\\n90 00:07:27,560 --> 00:07:30,040 C\\'est ce que les Français ne sont pas autorisés à faire pour eux-mêmes, \\n\\n91 00:07:30,680 --> 00:07:37,080 ce qui explique pourquoi la pornographie et la politique sont l\\'étoffe d\\'impression pour l\\'exportation dans le 18ème siècle. \\n\\n92 00:07:37,440 --> 00:07:39,160 Mais qu\\'est-ce qui fait, \\n\\n93 00:07:40,000 --> 00:07:47,840 que le processus de fabrication pour le marché en faisant ce qui est moins à obtenir le fait, \\n\\n94 00:07:48,040 --> 00:07:51,600 est de menacer de vous retrouver avec une presse entièrement composé \\n\\n95 00:07:52,120 --> 00:07:54,560 des périodiques du gouvernement et de la pornographie \\n\\n96 00:07:55,160 --> 00:07:57,160 Que vas-tu faire pour éviter cela? \\n\\n97 00:07:57,560 --> 00:08:02,640 Tu vas essayer de donner des imprimantes un intérêt dans le progrès de la littérature. \\n\\n98 00:08:03,240 --> 00:08:08,440 - qui est ce que le droit d\\'auteur est vraiment, c\\'est une sorte de Jefferson grand d\\'une idée. \\n\\n99 00:08:09,000 --> 00:08:15,400 que nous tenterons de la démocratie en une voie à encourager la vertu parmi les imprimantes \\n\\n100 00:08:15,720 --> 00:08:20,120 Et nous allons avoir tout à travailler de telle manière à accélérer \\n\\n101 00:08:20,360 --> 00:08:22,640 la diffusion des connaissances et des arts utiles. \\n\\n102 00:08:24,160 --> 00:08:28,960 Donc, dans ce sens, le droit d\\'auteur prend une hausse \\n\\n103 00:08:29,160 --> 00:08:33,680 d\\'une noble expérience vise à répondre \\n\\n104 00:08:33,840 --> 00:08:38,160 une appropriées 18e ou au début problème du 19ème siècle, \\n\\n105 00:08:38,680 --> 00:08:42,080 et c\\'est par la période edisonian a évolué \\n\\n106 00:08:42,560 --> 00:08:47,600 Quel est le pendant nécessaire pour son époque, qui est le «travail pour la doctrine de location». \\n\\n107 00:08:47,960 --> 00:08:53,320 il doit devenir possible d\\'utiliser ce système pour encourager la vertu parmi les imprimantes \\n\\n108 00:08:53,640 --> 00:08:59,240 effectivement à encourager la réussite des entreprises de presse commerciales plus importantes. \\n\\n109 00:08:59,520 --> 00:09:04,360 Où Manhattan est considéré comme le centre de l\\'imprimerie au 19e siècle, \\n\\n110 00:09:04,680 --> 00:09:08,400 il sera considéré comme le centre de l\\'édition au XXe siècle, \\n\\n111 00:09:08,600 --> 00:09:10,760 et c\\'est un sens très différent, \\n\\n112 00:09:11,000 --> 00:09:16,920 ce n\\'est pas sur le processus d\\'industrie légère de quelque chose de l\\'impression sur des morceaux de papier \\n\\n113 00:09:17,080 --> 00:09:22,880 il s\\'agit du contrôle d\\'un grand système d\\'intégration verticale de la production culturelle \\n\\n114 00:09:23,160 --> 00:09:25,920 et pour cela vous avez besoin du «travail pour la doctrine de location». \\n\\n115 00:09:26,000 --> 00:09:29,640 Comme les libraires du 18ème siècle à Londres nécessaires Grub Street. \\n\\n116 00:09:30,000 --> 00:09:32,040 qui est certain producteur de contenu \\n\\n117 00:09:32,400 --> 00:09:36,720 pour satisfaire la demande de la conduite de systèmes d\\'impression \\n\\n118 00:09:37,000 --> 00:09:41,480 que leur concentration de la machine d\\'impression et de reliure a mis en place. \\n\\n119 00:09:42,000 --> 00:09:46,440 Les institutions nécessaires Edisonian contenu derrière eux, \\n\\n120 00:09:46,640 --> 00:09:49,840 Et ils avaient besoin de contenu ils peuvent prétendre en être propriétaires. \\n\\n121 00:09:50,160 --> 00:09:54,080 Donc, dans ce sens est le droit d\\'auteur, grâce aux travaux de la doctrine de la location, \\n\\n122 00:09:54,600 --> 00:09:56,920 et sa relation à la loi de l\\'emploi, \\n\\n123 00:09:57,240 --> 00:10:02,320 droit d\\'auteur devient le document de l\\'organisation biologique\\n\\n124 00:10:02,320 --> 00:10:05,920 pour ces entreprises de médias immense. \\n\\n125 00:10:06,240 --> 00:10:06,280 Une fois que les entreprises de médias sont venus à l\\'existence, \\n\\n126 00:10:09,640 --> 00:10:14,200 une fois la ville de New York est un centre d\\'édition plutôt que d\\'imprimer, \\n\\n127 00:10:15,040 --> 00:10:18,760 Ensuite, n\\'importe quel support qui se présente doit être co-optés de la même manière. \\n\\n128 00:10:18,880 --> 00:10:22,480 Le principe de l\\'intégration verticale doit être maintenue. \\n\\n129 00:10:22,600 --> 00:10:27,520 Et comme vous passez de l\\'édition sur papier à la radiodiffusion par radio, \\n\\n130 00:10:27,920 --> 00:10:34,400 la radiodiffusion télévisuelle, la diffusion des nouvelles, diffusion d\\'informations financières, \\n\\n131 00:10:35,000 --> 00:10:38,200 vous avez appliqué le même modèle pour elle: quelqu\\'un le fait, \\n\\n132 00:10:38,560 --> 00:10:38,600 qui crée un intérêt de propriété, \\n\\n133 00:10:41,120 --> 00:10:44,920 que l\\'intérêt de la propriété est transférée à travers un contrat de travail, \\n\\n134 00:10:45,160 --> 00:10:49,960 et devient une pièce à usage de biens dans une économie de marché. \\n\\n135 00:10:50,280 --> 00:10:56,480 Cela semble répondre à la nécessité pour les organisations industrielles de l\\'époque. \\n\\n136 00:10:56,880 --> 00:11:00,040 Maintenant, si la technologie permet une autre modification, \\n\\n137 00:11:00,480 --> 00:11:06,880 et de contrôle ne réside plus fondamentalement dans l\\'objet de l\\'information elle-même, \\n\\n138 00:11:07,360 --> 00:11:10,440 Ensuite, le droit d\\'auteur doit devenir une loi sur le contrôle \\n\\n139 00:11:10,680 --> 00:11:14,440 Pas une loi sur ces dispositions organisationnelles \\n\\n140 00:11:14,920 --> 00:11:21,560 et vous commencez à obtenir, comme dans le DMCA, ou la directive européenne sur le droit d\\'auteur, \\n\\n141 00:11:22,040 --> 00:11:24,440 vous commencez à obtenir par le droit d\\'auteur, \\n\\n142 00:11:24,560 --> 00:11:29,040 loi qui est sur le point de contrôle sur l\\'utilisation, pas de contrôle sur la production, \\n\\n143 00:11:29,240 --> 00:11:32,040 parce que cette jointure entre l\\'utilisateur, \\n\\n144 00:11:32,480 --> 00:11:37,160 le consommateur, le producteur et le distributeur, est devenu trop serré. \\n\\n145 00:11:37,640 --> 00:11:42,640 Et la loi doit entrer en vigueur là-bas et une différenciation des rôles de nouveau. \\n\\n146 00:11:42,920 --> 00:11:45,400 Mais ce n\\'est rien à voir avec le cas du droit d\\'auteur a commencé, \\n\\n147 00:11:45,680 --> 00:11:48,640 Ça n\\'a rien à voir avec ce que fait le droit d\\'auteur efficaces \\n\\n148 00:11:49,080 --> 00:11:52,320 dans les médias dans l\\'organisation de la première place.',\n", + " 'bytes': 16205,\n", + " 'sha1': 'fzhcgim7cwadmuc8nki6eiazja4ebha',\n", + " 'parent_id': 36592852,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 335581436,\n", + " 'timestamp': '2019-01-20T14:12:57Z',\n", + " 'user': {'id': 5104363, 'text': 'NicoScribe'},\n", + " 'page': {'id': 9932968,\n", + " 'title': 'Wikipedia ridotto.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Undo revision 331886500 by [[Special:Contributions/عوووض المالكي|عوووض المالكي]] ([[User talk:عوووض المالكي|talk]]) ?',\n", + " 'text': '1\\n00:00:07,686 --> 00:00:11,934\\nWikipedia nasce nel 2001 e si sviluppa con l\\'idea di creare\\n\\n2\\n00:00:11,973 --> 00:00:15,443\\nla più grande enciclopedia a contenuto aperto della storia.\\n\\n3\\n00:00:15,710 --> 00:00:19,598\\nWikipedia è redatta grazie al contributo di tantissimi volontari.\\n\\n4\\n00:00:19,751 --> 00:00:22,465\\nChiunque può collaborare. Vediamo come.\\n\\n5\\n00:00:23,854 --> 00:00:27,300\\nQuasi tutte le pagine di Wikipedia presentano in alto\\n\\n6\\n00:00:27,335 --> 00:00:30,492\\nuna linguetta con la scritta modifica, che consente di fare\\n\\n7\\n00:00:30,536 --> 00:00:34,428\\nesattamente quello che dice: modificare la pagina che si sta leggendo.\\n\\n8\\n00:00:35,043 --> 00:00:39,465\\nIn Wikipedia infatti non esiste una redazione: qualsiasi utente\\n\\n9\\n00:00:39,540 --> 00:00:42,990\\npuò accedere ai contenuti di tutte le pagine dell\\'enciclopedia\\n\\n10\\n00:00:43,019 --> 00:00:45,932\\ne modificarli, senza necessità di registrarsi.\\n\\n11\\n00:00:46,151 --> 00:00:49,719\\nLa formattazione del testo segue delle regole particolari,\\n\\n12\\n00:00:49,728 --> 00:00:53,638\\nma si tratta di un linguaggio abbastanza semplice, facile da imparare.\\n\\n13\\n00:00:53,989 --> 00:00:57,078\\nSalvando la modifica si accetta di rilasciare\\n\\n14\\n00:00:57,112 --> 00:00:59,573\\nil proprio contributo con una licenza libera.\\n\\n15\\n00:00:59,652 --> 00:01:03,546\\nChiunque potrà consultare, utilizzare e riadattare il testo,\\n\\n16\\n00:01:03,561 --> 00:01:07,693\\nanche per scopi commerciali, a condizione di citare gli autori della voce\\n\\n17\\n00:01:07,721 --> 00:01:11,200\\ne di riapplicare la stessa licenza a tutte le opere derivate.\\n\\n18\\n00:01:11,561 --> 00:01:16,019\\nÈ inoltre importante ricordare che ogni utente, anche non registrato,\\n\\n19\\n00:01:16,073 --> 00:01:19,998\\nresta sempre responsabile personalmente dei propri inserimenti.\\n\\n20\\n00:01:20,542 --> 00:01:24,743\\nA questo punto la modifica è immediatamente visibile a tutti!\\n\\n21\\n00:01:25,715 --> 00:01:29,795\\nWikipedia non è una raccolta indiscriminata di informazioni,\\n\\n22\\n00:01:29,820 --> 00:01:34,142\\nma un\\'enciclopedia, una raccolta sistematica del sapere umano.\\n\\n23\\n00:01:34,361 --> 00:01:36,797\\nSu Wikipedia infatti non vanno inserite\\n\\n24\\n00:01:36,816 --> 00:01:40,559\\ndefinizioni da vocabolario e neanche ricerche originali.\\n\\n25\\n00:01:41,748 --> 00:01:44,853\\nOgni pagina ha una sua cronologia, che elenca\\n\\n26\\n00:01:44,878 --> 00:01:48,311\\ntutte le versioni realizzate dal momento della sua creazione.\\n\\n27\\n00:01:48,562 --> 00:01:51,551\\nOltre all\\'ora, la data e l\\'oggetto della modifica,\\n\\n28\\n00:01:51,566 --> 00:01:54,416\\nil software registra anche chi l\\'ha effettuata.\\n\\n29\\n00:01:54,638 --> 00:01:57,534\\nNel caso di un utente anonimo, viene rilevato\\n\\n30\\n00:01:57,541 --> 00:02:00,116\\nl\\'indirizzo IP da cui è stata eseguita.\\n\\n31\\n00:02:00,679 --> 00:02:03,639\\nLa cronologia consente anche di confrontare\\n\\n32\\n00:02:03,679 --> 00:02:06,777\\ndue diverse versioni per evidenziarne le differenze.\\n\\n33\\n00:02:07,467 --> 00:02:11,381\\nSu Wikipedia niente va perso, ma per i primi tentativi di scrittura\\n\\n34\\n00:02:11,397 --> 00:02:14,586\\nè bene usare la pagina delle prove, detta anche sandbox,\\n\\n35\\n00:02:14,610 --> 00:02:16,755\\nche può essere modificata a piacimento.\\n\\n36\\n00:02:16,803 --> 00:02:20,736\\nPer lavorare con più calma, un utente registrato può anche crearsi\\n\\n37\\n00:02:20,801 --> 00:02:24,334\\nuna sandbox personale nella propria pagina utente.\\n\\n38\\n00:02:24,924 --> 00:02:28,020\\nPer generare una nuova pagina basta creare un link,\\n\\n39\\n00:02:28,109 --> 00:02:30,844\\noppure cliccare su un \"link rosso\" già esistente.\\n\\n40\\n00:02:30,929 --> 00:02:33,148\\nÈ comunque buona prassi verificare prima\\n\\n41\\n00:02:33,209 --> 00:02:35,461\\nse la pagina non sia già presente.\\n\\n42\\n00:02:36,025 --> 00:02:38,838\\nPer garantire un buon funzionamento del progetto,\\n\\n43\\n00:02:38,841 --> 00:02:42,074\\nla comunità ha elaborato delle \"linee guida\" che tutti gli utenti\\n\\n44\\n00:02:42,114 --> 00:02:44,811\\nsono invitati a rispettare e a far rispettare.\\n\\n45\\n00:02:45,253 --> 00:02:47,615\\nUno dei principali canoni di Wikipedia\\n\\n46\\n00:02:47,687 --> 00:02:50,075\\nè l’organizzazione dei contenuti per modelli.\\n\\n47\\n00:02:50,147 --> 00:02:53,071\\nVediamo la struttura generale di una voce.\\n\\n48\\n00:02:53,977 --> 00:02:58,354\\nLa sezione iniziale deve riassumere brevemente e con parole semplici\\n\\n49\\n00:02:58,370 --> 00:03:00,824\\ni principali punti affrontati dalla voce.\\n\\n50\\n00:03:00,989 --> 00:03:03,828\\nLa pagina si sviluppa in sezioni (o capoversi),\\n\\n51\\n00:03:03,879 --> 00:03:06,856\\nche automaticamente vengono riassunti in un indice.\\n\\n52\\n00:03:07,138 --> 00:03:10,739\\nSu Wikipedia possono essere inserite immagini, fotografie\\n\\n53\\n00:03:10,759 --> 00:03:14,142\\ne anche video, ma è assolutamente necessario accertarsi\\n\\n54\\n00:03:14,188 --> 00:03:17,207\\nche il materiale caricato sia liberamente utilizzabile,\\n\\n55\\n00:03:17,221 --> 00:03:19,994\\nossia rilasciato con una licenza libera!\\n\\n56\\n00:03:20,434 --> 00:03:23,597\\nTutte le informazioni contenute nelle voci devono essere\\n\\n57\\n00:03:23,604 --> 00:03:26,765\\nattendibili e verificabili, per questo è necessario\\n\\n58\\n00:03:26,805 --> 00:03:29,158\\ncitare sempre le fonti da cui sono tratte,\\n\\n59\\n00:03:29,167 --> 00:03:32,283\\nche devono essere largamente riconosciute e accettate.\\n\\n60\\n00:03:32,497 --> 00:03:35,339\\nAlla fine di ogni voce, dopo il testo vero e proprio,\\n\\n61\\n00:03:35,353 --> 00:03:37,648\\nsono presenti vari paragrafi «accessori»,\\n\\n62\\n00:03:37,665 --> 00:03:40,095\\nche rinviano ad ulteriori approfondimenti.\\n\\n63\\n00:03:40,302 --> 00:03:43,422\\nPer alcuni progetti tematici, esistono convenzioni\\n\\n64\\n00:03:43,405 --> 00:03:47,109\\ne linee guida specifiche che aiutano nella stesura delle voci.\\n\\n65\\n00:03:48,500 --> 00:03:50,930\\nUn principio inderogabile di Wikipedia\\n\\n66\\n00:03:50,964 --> 00:03:53,335\\nè l\\'uso di un punto di vista neutrale.\\n\\n67\\n00:03:53,361 --> 00:03:55,981\\nLe voci non devono contenere giudizi di merito,\\n\\n68\\n00:03:56,011 --> 00:03:59,739\\nma si devono limitare a presentare tutti i punti di vista di rilievo\\n\\n69\\n00:03:59,754 --> 00:04:03,297\\nin maniera equa, proporzionata e senza pregiudizi.\\n\\n70\\n00:04:04,289 --> 00:04:08,548\\nOgni voce di Wikipedia è affiancata da una pagina di discussione,\\n\\n71\\n00:04:08,627 --> 00:04:11,086\\nin cui gli utenti possono confrontarsi\\n\\n72\\n00:04:11,114 --> 00:04:14,184\\ne concordare una versione il più possibile adeguata e condivisa.\\n\\n73\\n00:04:14,395 --> 00:04:17,464\\nA differenza delle pagine delle voci, qui gli interventi\\n\\n74\\n00:04:17,493 --> 00:04:20,784\\nvanno sempre firmati, ma è bene ricordare che Wikipedia\\n\\n75\\n00:04:20,823 --> 00:04:24,667\\nnon è un posto in cui esprimere punti di vista personali o parziali.\\n\\n76\\n00:04:25,117 --> 00:04:27,117\\nQuando un utente ha necessità\\n\\n77\\n00:04:27,147 --> 00:04:29,753\\ndi rivolgersi a più persone contemporaneamente,\\n\\n78\\n00:04:29,823 --> 00:04:33,631\\nper un problema di interesse generale o relativo a uno specifico settore,\\n\\n79\\n00:04:33,655 --> 00:04:37,510\\npuò utilizzare il Bar oppure i rispettivi bar tematici.\\n\\n80\\n00:04:37,995 --> 00:04:41,242\\nOgni utente registrato dispone di una pagina personale,\\n\\n81\\n00:04:41,273 --> 00:04:44,115\\nin cui può inserire qualche informazione su di sé.\\n\\n82\\n00:04:44,226 --> 00:04:47,802\\nAnche a questa pagina è affiancata una pagina di discussione,\\n\\n83\\n00:04:47,827 --> 00:04:51,693\\nche viene utilizzata come se fosse una casella di posta personale.\\n\\n84\\n00:04:51,983 --> 00:04:55,753\\nPer questioni tecniche si può chiedere aiuto agli utenti più esperti,\\n\\n85\\n00:04:55,815 --> 00:04:58,338\\nad esempio attraverso lo Sportello Informazioni.\\n\\n86\\n00:04:58,353 --> 00:05:02,030\\nSui contenuti invece si può consultare l\\'Oracolo.\\n\\n87\\n00:05:02,924 --> 00:05:06,262\\nIn caso di evidenti abusi o atti di vandalismo,\\n\\n88\\n00:05:06,294 --> 00:05:09,319\\nalcuni utenti registrati, detti \"amministratori\",\\n\\n89\\n00:05:09,386 --> 00:05:12,083\\npossono intervenire con specifiche operazioni,\\n\\n90\\n00:05:12,109 --> 00:05:15,486\\ncome bloccare un utente o cancellare o bloccare una pagina.\\n\\n91\\n00:05:15,664 --> 00:05:18,384\\nGli amministratori sono volontari che hanno acquisito\\n\\n92\\n00:05:18,384 --> 00:05:22,048\\nla fiducia della comunità e sono stati scelti attraverso un\\'elezione.\\n\\n93\\n00:05:22,218 --> 00:05:25,355\\nSvolgono operazioni tecniche delicate e garantiscono\\n\\n94\\n00:05:25,357 --> 00:05:27,646\\nil rispetto delle linee guida del progetto,\\n\\n95\\n00:05:27,664 --> 00:05:30,453\\nma non sono i responsabili di Wikipedia.\\n\\n96\\n00:05:31,311 --> 00:05:34,532\\nWikipedia è gestita dalla Wikimedia Foundation,\\n\\n97\\n00:05:34,542 --> 00:05:37,960\\nuna fondazione senza fini di lucro con sede a San Francisco,\\n\\n98\\n00:05:37,958 --> 00:05:41,090\\nche garantisce le risorse per lo sviluppo del progetto.\\n\\n99\\n00:05:41,281 --> 00:05:44,554\\nLa fondazione, istituita nel 2003, vive grazie\\n\\n100\\n00:05:44,559 --> 00:05:47,233\\na sovvenzioni da parte di enti pubblici e privati,\\n\\n101\\n00:05:47,235 --> 00:05:51,571\\nma soprattutto grazie a moltissime micro-donazioni di singole persone.\\n\\n102\\n00:05:51,853 --> 00:05:54,959\\nPer mantenere assoluta indipendenza e coinvolgere\\n\\n103\\n00:05:54,991 --> 00:05:59,277\\ntanti contributori volontari, su Wikipedia infatti non c\\'è pubblicità.\\n\\n104\\n00:05:59,979 --> 00:06:04,125\\nNel frattempo in tutto il mondo sono nate diverse associazioni di volontari\\n\\n105\\n00:06:04,181 --> 00:06:07,761\\nche promuovono localmente Wikipedia e i progetti fratelli.\\n\\n106\\n00:06:08,105 --> 00:06:11,624\\nIn Italia dal 2005 esiste Wikimedia Italia,\\n\\n107\\n00:06:11,671 --> 00:06:15,961\\nche oltre ai progetti della Wikimedia Foundation, promuove altre iniziative\\n\\n108\\n00:06:15,973 --> 00:06:19,662\\nlegate alla diffusione libera della cultura e della conoscenza.\\n\\n109\\n00:06:19,898 --> 00:06:23,992\\nEd è a Wikimedia Italia che possono rivolgersi la stampa, le aziende\\n\\n110\\n00:06:24,029 --> 00:06:28,130\\ne le scuole per avere maggiori informazioni in italiano su Wikipedia.\\n\\n111\\n00:06:28,981 --> 00:06:31,905\\nTantissimi volontari gratuitamente accumulano,\\n\\n112\\n00:06:31,913 --> 00:06:35,649\\nordinano e strutturano le conoscenze condivise del nostro tempo\\n\\n113\\n00:06:35,701 --> 00:06:39,149\\nper renderle liberamente disponibili. E voi?\\n\\n114\\n00:06:39,352 --> 00:06:42,605\\nSiate coraggiosi: Wikipedia è aperta a tutti!\\n\\n115\\n00:06:54,000 --> 00:06:56,000\\n\\n116\\n00:06:57,000 --> 00:06:59,000',\n", + " 'bytes': 10233,\n", + " 'sha1': 'aa3clguyoe5fgoy3mp40nopl4yh0paa',\n", + " 'parent_id': 331886500,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 41873960,\n", + " 'timestamp': '2010-07-28T11:07:26Z',\n", + " 'user': {'text': '93.145.80.160'},\n", + " 'page': {'id': 9932976,\n", + " 'title': 'Wikipedia ridotto.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'useless lines',\n", + " 'text': '1\\n00:00:07,686 --> 00:00:11,934\\nWikipedia was born in 2001. The goal was to create\\n\\n2\\n00:00:11,973 --> 00:00:15,443\\nthe biggest open-content encyclopedia in history.\\n\\n3\\n00:00:15,710 --> 00:00:19,598\\nWikipedia is written by many volunteer contributors.\\n\\n4\\n00:00:19,751 --> 00:00:22,465\\nEveryone can contribute. Let\\'s see how.\\n\\n5\\n00:00:23,854 --> 00:00:27,300\\nAlmost every article on Wikipedia has a tab on the top\\n\\n6\\n00:00:27,335 --> 00:00:30,492\\nsaying \"edit\" (\"modifica\"). It allows you to do\\n\\n7\\n00:00:30,536 --> 00:00:34,428\\nexactly what it says: to edit the page that you are reading.\\n\\n8\\n00:00:35,043 --> 00:00:39,465\\nWikipedia doesn\\'t have an editorial staff. Every reader\\n\\n9\\n00:00:39,540 --> 00:00:42,990\\ncan access the content of all the pages of the encyclopedia\\n\\n10\\n00:00:43,019 --> 00:00:45,932\\nand edit them, even without creating an account.\\n\\n11\\n00:00:46,151 --> 00:00:49,719\\nThe text formatting involves some special code,\\n\\n12\\n00:00:49,728 --> 00:00:53,638\\nbut it\\'s a rather simple language, easy to learn.\\n\\n13\\n00:00:53,989 --> 00:00:57,078\\nBy saving your edits, you agree to release\\n\\n14\\n00:00:57,112 --> 00:00:59,573\\nyour contribution under a free license.\\n\\n15\\n00:00:59,652 --> 00:01:03,546\\nEveryone will be free to read, use and modify the text,\\n\\n16\\n00:01:03,561 --> 00:01:07,693\\neven for commercial purpose, as long as they credit the article\\'s authors\\n\\n17\\n00:01:07,721 --> 00:01:11,200\\nand release any derivative works under the same license.\\n\\n18\\n00:01:11,561 --> 00:01:16,019\\nIt\\'s also important to remember that every user, even if not registered,\\n\\n19\\n00:01:16,073 --> 00:01:19,998\\nis solely responsible for his or her contributions.\\n\\n20\\n00:01:20,542 --> 00:01:24,743\\nOnce saved, the change is immediately visible to everyone!\\n\\n21\\n00:01:25,715 --> 00:01:29,795\\nWikipedia is not a random collection of information,\\n\\n22\\n00:01:29,820 --> 00:01:34,142\\nbut an encyclopedia. It is a systematic collection of the human knowledge.\\n\\n23\\n00:01:34,361 --> 00:01:36,797\\nSome kinds of contributions, like\\n\\n24\\n00:01:36,816 --> 00:01:40,559\\nsimple definitions and original research, are not allowed.\\n\\n25\\n00:01:41,748 --> 00:01:44,853\\nEvery page has its own history, that shows\\n\\n26\\n00:01:44,878 --> 00:01:48,311\\nall the versions of the page since its creation.\\n\\n27\\n00:01:48,562 --> 00:01:51,551\\nIn addition to the time, the date, and the summary of each modification,\\n\\n28\\n00:01:51,566 --> 00:01:54,416\\nthe software also records who did it.\\n\\n29\\n00:01:54,638 --> 00:01:57,534\\nIf the contributor does not use an account, the IP address\\n\\n30\\n00:01:57,541 --> 00:02:00,116\\nof his or her computer network is also included in the page history.\\n\\n31\\n00:02:00,679 --> 00:02:03,639\\nThe history allows any reader to compare\\n\\n32\\n00:02:03,679 --> 00:02:06,777\\nany two different versions, highlighting the differences between them.\\n\\n33\\n00:02:07,467 --> 00:02:11,381\\nEvery change on Wikipedia is recorded; so when you start out,\\n\\n34\\n00:02:11,397 --> 00:02:14,586\\nit\\'s best to use the test page, called the \"sandbox\",\\n\\n35\\n00:02:14,610 --> 00:02:16,755\\nwhich can be modified freely.\\n\\n36\\n00:02:16,803 --> 00:02:20,736\\nRegistered users can also create\\n\\n37\\n00:02:20,801 --> 00:02:24,334\\npersonal sandbox pages under their user page.\\n\\n38\\n00:02:24,924 --> 00:02:28,020\\nTo create a new page, just create a link to your chosen page title,\\n\\n39\\n00:02:28,109 --> 00:02:30,844\\nor click on an existing \"red link.\"\\n\\n40\\n00:02:30,929 --> 00:02:33,148\\nIt\\'s best to check first\\n\\n41\\n00:02:33,209 --> 00:02:35,461\\nwhether the page already exists.\\n\\n42\\n00:02:36,025 --> 00:02:38,838\\nIn order to ensure productive collaboration,\\n\\n43\\n00:02:38,841 --> 00:02:42,074\\nthe community has developed some guidelines that all contributors\\n\\n44\\n00:02:42,114 --> 00:02:44,811\\nare invited to follow and to enforce.\\n\\n45\\n00:02:45,253 --> 00:02:47,615\\nOne of the main guidelines on Wikipedia\\n\\n46\\n00:02:47,687 --> 00:02:50,075\\nconcerns how an article\\'s content is organized.\\n\\n47\\n00:02:50,147 --> 00:02:53,071\\nLet\\'s look at the general structure of an article.\\n\\n48\\n00:02:53,977 --> 00:02:58,354\\nThe \"lead section\" should summarize the main topics of the article\\n\\n49\\n00:02:58,370 --> 00:03:00,824\\nwith concise and simple language.\\n\\n50\\n00:03:00,989 --> 00:03:03,828\\nThe article is developed in sections;\\n\\n51\\n00:03:03,879 --> 00:03:06,856\\na table of contents is generated automatically.\\n\\n52\\n00:03:07,138 --> 00:03:10,739\\nOn Wikipedia, you can include photos, diagrams,\\n\\n53\\n00:03:10,759 --> 00:03:14,142\\nor videos, but it\\'s essential that you verify\\n\\n54\\n00:03:14,188 --> 00:03:17,207\\nthat the material you want to upload is freely usable;\\n\\n55\\n00:03:17,221 --> 00:03:19,994\\nthat is, released under a free license!\\n\\n56\\n00:03:20,434 --> 00:03:23,597\\nAll the informaton that an article contains must be\\n\\n57\\n00:03:23,604 --> 00:03:26,765\\nreliable and verifiable, so it\\'s necessary\\n\\n58\\n00:03:26,805 --> 00:03:29,158\\nalways to cite the external sources;\\n\\n59\\n00:03:29,167 --> 00:03:32,283\\nthese sources must be widely recognized for their accuracy.\\n\\n60\\n00:03:32,497 --> 00:03:35,339\\nAt the end of each article, after the text,\\n\\n61\\n00:03:35,353 --> 00:03:37,648\\nthere are some \"technical\" sections,\\n\\n62\\n00:03:37,665 --> 00:03:40,095\\nthat provide further resources relating to the topic.\\n\\n63\\n00:03:40,302 --> 00:03:43,422\\nIn some specific topic areas, there are conventions\\n\\n64\\n00:03:43,405 --> 00:03:47,109\\nand specific guidelines for writing an article.\\n\\n65\\n00:03:48,500 --> 00:03:50,930\\nAn imperative principle of Wikipedia\\n\\n66\\n00:03:50,964 --> 00:03:53,335\\nis the neutral point of view.\\n\\n67\\n00:03:53,361 --> 00:03:55,981\\nArticles must not contain personal opinions and judgements,\\n\\n68\\n00:03:56,011 --> 00:03:59,739\\nbut have to explain all the main points of view\\n\\n69\\n00:03:59,754 --> 00:04:03,297\\nin a neutral and balanced way, without prejudice.\\n\\n70\\n00:04:04,289 --> 00:04:08,548\\nEvery Wikipedia article has its own discussion page,\\n\\n71\\n00:04:08,627 --> 00:04:11,086\\nwhere writers and editors can discuss and develop\\n\\n72\\n00:04:11,114 --> 00:04:14,184\\nan article that reflects diverse points of view.\\n\\n73\\n00:04:14,395 --> 00:04:17,464\\nUnlike the article page, individual contributors\\n\\n74\\n00:04:17,493 --> 00:04:20,784\\nsign their comments here. But remember that the discussion\\n\\n75\\n00:04:20,823 --> 00:04:24,667\\nmust support the improvement of the article, and is not a place for extended arguments.\\n\\n76\\n00:04:25,117 --> 00:04:27,117\\nWhen contributors need\\n\\n77\\n00:04:27,147 --> 00:04:29,753\\nto address many people at the same time,\\n\\n78\\n00:04:29,823 --> 00:04:33,631\\nto discuss a general problem, or a topic that concerns several articles,\\n\\n79\\n00:04:33,655 --> 00:04:37,510\\nthey can use the \"Village Pump\" (\"Bar\") or the appropriate topical project\\'s pages.\\n\\n80\\n00:04:37,995 --> 00:04:41,242\\nEvery registered user has their own personal page,\\n\\n81\\n00:04:41,273 --> 00:04:44,115\\nwhere he or she can share some information about themselves.\\n\\n82\\n00:04:44,226 --> 00:04:47,802\\nThis page too has a corresponding discussion page,\\n\\n83\\n00:04:47,827 --> 00:04:51,693\\nwhich is used like a personal mailbox.\\n\\n84\\n00:04:51,983 --> 00:04:55,753\\nYou may want to seek out an expert user for technical help;\\n\\n85\\n00:04:55,815 --> 00:04:58,338\\nfor example, at the \"Help desk\" (\"Sportello Informazioni\").\\n\\n86\\n00:04:58,353 --> 00:05:02,030\\nYou can ask the Oracle (\"l\\'Oracolo\") about the content.\\n\\n87\\n00:05:02,924 --> 00:05:06,262\\nIn case of vandalism or overly aggressive behavior,\\n\\n88\\n00:05:06,294 --> 00:05:09,319\\nsome registered users, called \"administrators,\"\\n\\n89\\n00:05:09,386 --> 00:05:12,083\\ncan intervene and perform certain tasks,\\n\\n90\\n00:05:12,109 --> 00:05:15,486\\nsuch as blocking a user, or deleting or protecting a page from editing.\\n\\n91\\n00:05:15,664 --> 00:05:18,384\\nThe administrators are volunteers who have gained\\n\\n92\\n00:05:18,384 --> 00:05:22,048\\nthe trust of the community and have been appointed by an election.\\n\\n93\\n00:05:22,218 --> 00:05:25,355\\nThey excute critical technical operations and enforce\\n\\n94\\n00:05:25,357 --> 00:05:27,646\\nthe project\\'s policies and guidelines,\\n\\n95\\n00:05:27,664 --> 00:05:30,453\\nbut they are not ultimately responsible for Wikipedia.\\n\\n96\\n00:05:31,311 --> 00:05:34,532\\nWikipedia is operated by the Wikimedia Foundation,\\n\\n97\\n00:05:34,542 --> 00:05:37,960\\na non-profit foundation based in San Francisco,\\n\\n98\\n00:05:37,958 --> 00:05:41,090\\nwhich provides the resources for developing the project.\\n\\n99\\n00:05:41,281 --> 00:05:44,554\\nThe foundation, created in 2003, relies on\\n\\n100\\n00:05:44,559 --> 00:05:47,233\\ndonations from public and private entities,\\n\\n101\\n00:05:47,235 --> 00:05:51,571\\nand especially from many, many small donations from individuals.\\n\\n102\\n00:05:51,853 --> 00:05:54,959\\nIn order to remain absolutely independent and to involve\\n\\n103\\n00:05:54,991 --> 00:05:59,277\\nmany volunteer editors, Wikipedia does not display advertisements.\\n\\n104\\n00:05:59,979 --> 00:06:04,125\\nAlso, a number of organizations around the world\\n\\n105\\n00:06:04,181 --> 00:06:07,761\\npromote Wikipedia and its sister projects in specific countries or regions.\\n\\n106\\n00:06:08,105 --> 00:06:11,624\\nIn Italy, Wikimedia Italia was founded in 2005.\\n\\n107\\n00:06:11,671 --> 00:06:15,961\\nAlongside Wikimedia Foundation projects, Wikimedia Italia promotes other initiatives\\n\\n108\\n00:06:15,973 --> 00:06:19,662\\nrelated to the diffusion of free culture and free knowledge.\\n\\n109\\n00:06:19,898 --> 00:06:23,992\\nPress, firms and schools can contact Wikimedia Italia\\n\\n110\\n00:06:24,029 --> 00:06:28,130\\nin order to have more information in Italian about Wikipedia.\\n\\n111\\n00:06:28,981 --> 00:06:31,905\\nMany volunteers collect, sort, and organize\\n\\n112\\n00:06:31,913 --> 00:06:35,649\\nthe shared knowledge of our time\\n\\n113\\n00:06:35,701 --> 00:06:39,149\\nto make it freely available. What about you?\\n\\n114\\n00:06:39,352 --> 00:06:42,605\\nBe bold! Wikipedia is open to everybody!',\n", + " 'bytes': 9777,\n", + " 'sha1': 'is511m1sj25xdymplnla43wvqqowxwp',\n", + " 'parent_id': 37304365,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 37304382,\n", + " 'timestamp': '2010-04-05T13:46:11Z',\n", + " 'user': {'id': 50587, 'text': 'Nemo bis'},\n", + " 'page': {'id': 9932980,\n", + " 'title': 'Wikipedia ridotto.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'from http://www.wikimedia.it/index.php/WikiGuida_Wikipedia/Sottotitoli_FR',\n", + " 'text': '1\\n00:00:07,686 --> 00:00:11,934\\nWikipédia est née en 2001 avec l\\'objectif de créer\\n\\n2\\n00:00:11,973 --> 00:00:15,443\\nla plus grande encyclopédie libre de l\\'histoire.\\n\\n3\\n00:00:15,710 --> 00:00:19,598\\nWikipédia est écrite par de nombreux contributeurs volontaires.\\n\\n4\\n00:00:19,751 --> 00:00:22,465\\nChacun peut contribuer. Voyons comment.\\n\\n5\\n00:00:23,854 --> 00:00:27,300\\nPresque toutes les pages de Wikipédia ont un onglet en haut\\n\\n6\\n00:00:27,335 --> 00:00:30,492\\ndisant « Modifier » (edit) ; cela permet de faire\\n\\n7\\n00:00:30,536 --> 00:00:34,428\\nexactement ce que cela dit : de modifier la page que vous lisez.\\n\\n8\\n00:00:35,043 --> 00:00:39,465\\nWikipédia n\\'a pas de comité éditorial. Chaque utilisateur\\n\\n9\\n00:00:39,540 --> 00:00:42,990\\npeut accéder au contenu de toutes les pages de l\\'encyclopédie\\n\\n10\\n00:00:43,019 --> 00:00:45,932\\net les éditer, sans même avoir à s\\'enregistrer.\\n\\n11\\n00:00:46,151 --> 00:00:49,719\\nLa mise en forme du texte obéit à quelques règles spéciales,\\n\\n12\\n00:00:49,728 --> 00:00:53,638\\nmais c\\'est un langage assez simple, facile à apprendre.\\n\\n13\\n00:00:53,989 --> 00:00:57,078\\nEn enregistrant la modification, vous acceptez de publier\\n\\n14\\n00:00:57,112 --> 00:00:59,573\\nvotre contribution sous une licence libre.\\n\\n15\\n00:00:59,652 --> 00:01:03,546\\nChacun sera libre de lire, d\\'utiliser et de modifier le texte,\\n\\n16\\n00:01:03,561 --> 00:01:07,693\\nmême à des fins commerciales, à condition de créditer les auteurs de l\\'article\\n\\n17\\n00:01:07,721 --> 00:01:11,200\\net de publier tous les travaux dérivés sous la même licence.\\n\\n18\\n00:01:11,561 --> 00:01:16,019\\nIl est aussi important de se rappeler que chaque utilisateur, même non enregistré,\\n\\n19\\n00:01:16,073 --> 00:01:19,998\\nest seul responsable de ses contributions.\\n\\n20\\n00:01:20,542 --> 00:01:24,743\\nUne fois sauvée, la modification est immédiatement visible pour tout le monde !\\n\\n21\\n00:01:25,715 --> 00:01:29,795\\nWikipédia n\\'est pas une collection chaotique d\\'information,\\n\\n22\\n00:01:29,820 --> 00:01:34,142\\nmais une encyclopédie, c\\'est-à-dire un recueil systématique de la connaissance humaine.\\n\\n23\\n00:01:34,361 --> 00:01:36,797\\nEn fait, sur Wikipédia, des choses comme\\n\\n24\\n00:01:36,816 --> 00:01:40,559\\ndes définitions de dictionnaire ou des recherches originales ne doivent pas être publiées.\\n\\n25\\n00:01:41,748 --> 00:01:44,853\\nChaque page a son historique propre, qui liste\\n\\n26\\n00:01:44,878 --> 00:01:48,311\\ntoutes les versions de la page depuis sa création.\\n\\n27\\n00:01:48,562 --> 00:01:51,551\\nEn plus de l\\'heure, de la date et du résumé de chaque modification,\\n\\n28\\n00:01:51,566 --> 00:01:54,416\\nle logiciel enregistre aussi qui l\\'a faite.\\n\\n29\\n00:01:54,638 --> 00:01:57,534\\nDans le cas d\\'un utilisateur non-enregistré, l\\'adresse IP\\n\\n30\\n00:01:57,541 --> 00:02:00,116\\ndepuis laquelle la modification est faite, est enregistrée.\\n\\n31\\n00:02:00,679 --> 00:02:03,639\\nL\\'historique permet aussi de comparer\\n\\n32\\n00:02:03,679 --> 00:02:06,777\\ndeux versions distinctes, pour mettre en évidence leurs différences.\\n\\n33\\n00:02:07,467 --> 00:02:11,381\\nRien ne se perd sur Wikipédia ; donc pour vos premières tentatives d\\'écriture\\n\\n34\\n00:02:11,397 --> 00:02:14,586\\nmieux vaut utiliser la page de test, appelée \"Bac à sable\",\\n\\n35\\n00:02:14,610 --> 00:02:16,755\\net que vous pouvez modifier librement.\\n\\n36\\n00:02:16,803 --> 00:02:20,736\\nEn cas de besoin, un utilisateur enregistré peut aussi créer\\n\\n37\\n00:02:20,801 --> 00:02:24,334\\nun bac à sable personnel dans sa page utilisateur.\\n\\n38\\n00:02:24,924 --> 00:02:28,020\\nPour générer une nouvelle page, créez juste un lien vers elle,\\n\\n39\\n00:02:28,109 --> 00:02:30,844\\nou cliquez sur un « lien rouge » déjà existant.\\n\\n40\\n00:02:30,929 --> 00:02:33,148\\nIl est de toutes façons préférable de vérifier d\\'avance\\n\\n41\\n00:02:33,209 --> 00:02:35,461\\nsi la page existe déjà.\\n\\n42\\n00:02:36,025 --> 00:02:38,838\\nPour garantir un bon fonctionnement du projet,\\n\\n43\\n00:02:38,841 --> 00:02:42,074\\nla communauté a développé des « recommandations » que tous les utilisateurs\\n\\n44\\n00:02:42,114 --> 00:02:44,811\\nsont invités à suivre et à faire respecter.\\n\\n45\\n00:02:45,253 --> 00:02:47,615\\nL\\'une des normes principales de Wikipédia\\n\\n46\\n00:02:47,687 --> 00:02:50,075\\nest la structuration du contenu par un modèle.\\n\\n47\\n00:02:50,147 --> 00:02:53,071\\nVoyons la structure générale d\\'un article.\\n\\n48\\n00:02:53,977 --> 00:02:58,354\\nLa section initiale doit résumer les thèmes principaux de l\\'article\\n\\n49\\n00:02:58,370 --> 00:03:00,824\\ndans un langage simple et rapide.\\n\\n50\\n00:03:00,989 --> 00:03:03,828\\nL\\'article est développé en sections (ou paragraphes),\\n\\n51\\n00:03:03,879 --> 00:03:06,856\\ndont l\\'index est généré automatiquement.\\n\\n52\\n00:03:07,138 --> 00:03:10,739\\nSur Wikipédia, vous pouvez insérer des images, des photos,\\n\\n53\\n00:03:10,759 --> 00:03:14,142\\net aussi des vidéos, mais il est absolument nécessaire de vérifier\\n\\n54\\n00:03:14,188 --> 00:03:17,207\\nque le contenu que vous voulez téléverser est librement utilisable,\\n\\n55\\n00:03:17,221 --> 00:03:19,994\\nc\\'est-à-dire, publié sous une licence libre !\\n\\n56\\n00:03:20,434 --> 00:03:23,597\\nToutes les informations qu\\'un article contient doivent être\\n\\n57\\n00:03:23,604 --> 00:03:26,765\\nfiables et vérifiables, c\\'est pourquoi il est nécessaire\\n\\n58\\n00:03:26,805 --> 00:03:29,158\\nde toujours citer leurs sources ;\\n\\n59\\n00:03:29,167 --> 00:03:32,283\\nces sources doivent être largement reconnues et acceptées.\\n\\n60\\n00:03:32,497 --> 00:03:35,339\\nÀ la fin de chaque article, à la fin du texte,\\n\\n61\\n00:03:35,353 --> 00:03:37,648\\nil y a quelques sections « techniques »\\n\\n62\\n00:03:37,665 --> 00:03:40,095\\nqui proposent des liens pour approfondir le sujet.\\n\\n63\\n00:03:40,302 --> 00:03:43,422\\nPour quelques projets thématiques, il y a des règles\\n\\n64\\n00:03:43,405 --> 00:03:47,109\\net des recommandations spécifiques pour aider à l\\'écriture d\\'un article.\\n\\n65\\n00:03:48,500 --> 00:03:50,930\\nUn principe impératif de Wikipédia\\n\\n66\\n00:03:50,964 --> 00:03:53,335\\nest la neutralité de point de vue.\\n\\n67\\n00:03:53,361 --> 00:03:55,981\\nLes articles ne doivent pas contenir d\\'opinions personnelles ou de jugements,\\n\\n68\\n00:03:56,011 --> 00:03:59,739\\nmais doivent expliquer les points de vue principaux\\n\\n69\\n00:03:59,754 --> 00:04:03,297\\nde façon équilibrée et proportionnelle, sans leur porter préjudice.\\n\\n70\\n00:04:04,289 --> 00:04:08,548\\nChaque article de Wikipédia a sa propre page de discussion sur le côté,\\n\\n71\\n00:04:08,627 --> 00:04:11,086\\noù les utilisateurs peuvent débattre\\n\\n72\\n00:04:11,114 --> 00:04:14,184\\net trouver une version aussi adéquate et consensuelle que possible.\\n\\n73\\n00:04:14,395 --> 00:04:17,464\\nÀ la différence de la page d\\'article, ici les opinions\\n\\n74\\n00:04:17,493 --> 00:04:20,784\\ndoivent être affichées et signées, mais considérez toujours que Wikipédia\\n\\n75\\n00:04:20,823 --> 00:04:24,667\\nn\\'est pas un lieu pour l\\'expression personnelle ou partiale des points de vue.\\n\\n76\\n00:04:25,117 --> 00:04:27,117\\nQuand les utilisateurs ont besoin\\n\\n77\\n00:04:27,147 --> 00:04:29,753\\nde s\\'adresser à plusieurs personnes d\\'un coup,\\n\\n78\\n00:04:29,823 --> 00:04:33,631\\npour un problème d\\'intérêt général, ou sur un thème précis,\\n\\n79\\n00:04:33,655 --> 00:04:37,510\\nils peuvent utiliser le « Bistro » ou le bistro propre aux projets thématiques.\\n\\n80\\n00:04:37,995 --> 00:04:41,242\\nChaque utilisateur enregistré a sa page personnelle,\\n\\n81\\n00:04:41,273 --> 00:04:44,115\\ndans laquelle il peut donner des informations sur lui-même.\\n\\n82\\n00:04:44,226 --> 00:04:47,802\\nCette page aussi a une page de discussion correspondante,\\n\\n83\\n00:04:47,827 --> 00:04:51,693\\nlaquelle est utilisée comme une messagerie personnelle.\\n\\n84\\n00:04:51,983 --> 00:04:55,753\\nLes utilisateurs experts peuvent être sollicités pour de l\\'aide technique,\\n\\n85\\n00:04:55,815 --> 00:04:58,338\\npar exemple, sur la « Guilde des Guides ».\\n\\n86\\n00:04:58,353 --> 00:05:02,030\\nAu sujet du contenu, vous pouvez interroger l\\'Oracle.\\n\\n87\\n00:05:02,924 --> 00:05:06,262\\nEn cas évident d\\'abus ou de vandalisme,\\n\\n88\\n00:05:06,294 --> 00:05:09,319\\nquelques utilisateurs enregistrés, nommés \"administrateurs\",\\n\\n89\\n00:05:09,386 --> 00:05:12,083\\npeuvent intervenir et effectuer des opérations spécifiques,\\n\\n90\\n00:05:12,109 --> 00:05:15,486\\ntelles que bloquer un utilisateur, effacer ou bloquer une page.\\n\\n91\\n00:05:15,664 --> 00:05:18,384\\nLes administrateurs sont des volontaires qui ont gagné\\n\\n92\\n00:05:18,384 --> 00:05:22,048\\nla confiance de la communauté et ont été élus.\\n\\n93\\n00:05:22,218 --> 00:05:25,355\\nIls effectuent des opérations techniques cruciales et garantissent\\n\\n94\\n00:05:25,357 --> 00:05:27,646\\nle respect des recommandations du projet,\\n\\n95\\n00:05:27,664 --> 00:05:30,453\\nmais ils ne sont pas responsables de Wikipédia.\\n\\n96\\n00:05:31,311 --> 00:05:34,532\\nWikipédia est maintenu par la Wikimedia Foundation,\\n\\n97\\n00:05:34,542 --> 00:05:37,960\\nune fondation à but non-lucratif basée à San Francisco,\\n\\n98\\n00:05:37,958 --> 00:05:41,090\\nqui fournit les ressources pour le développement du projet.\\n\\n99\\n00:05:41,281 --> 00:05:44,554\\nLa fondation, créée en 2003, repose sur\\n\\n100\\n00:05:44,559 --> 00:05:47,233\\ndes dons publics et privés,\\n\\n101\\n00:05:47,235 --> 00:05:51,571\\net surtout sur de très très nombreuses donations de particuliers.\\n\\n102\\n00:05:51,853 --> 00:05:54,959\\nAfin de rester absolument indépendante et d\\'impliquer\\n\\n103\\n00:05:54,991 --> 00:05:59,277\\nde nombreux contributeurs volontaires, Wikipédia a choisi de ne pas afficher de publicité.\\n\\n104\\n00:05:59,979 --> 00:06:04,125\\nDepuis, de nombreuses associations volontaires ont été fondées à travers le monde\\n\\n105\\n00:06:04,181 --> 00:06:07,761\\nqui promeuvent localement Wikipédia et ses projets soeurs.\\n\\n106\\n00:06:08,105 --> 00:06:11,624\\nEn Italie, Wikimedia Italia existe depuis 2005,\\n\\n107\\n00:06:11,671 --> 00:06:15,961\\nqui, en plus des projets de la Wikimedia Foundation, promeut d\\'autres initiatives\\n\\n108\\n00:06:15,973 --> 00:06:19,662\\nliées à la diffusion de la culture et de la connaissance libres.\\n\\n109\\n00:06:19,898 --> 00:06:23,992\\nLa presse, les entreprises et les écoles peuvent contacter Wikimedia Italia\\n\\n110\\n00:06:24,029 --> 00:06:28,130\\npour avoir plus d\\'information sur Wikipédia en Italie.\\n\\n111\\n00:06:28,981 --> 00:06:31,905\\nDe nombreux volontaires sont bénévoles pour agrèger, trier et\\n\\n112\\n00:06:31,913 --> 00:06:35,649\\norganiser la connaissance partagée de notre temps\\n\\n113\\n00:06:35,701 --> 00:06:39,149\\npour la rendre librement disponible. Et vous ?\\n\\n114\\n00:06:39,352 --> 00:06:42,605\\nSoyeux audacieux ! Wikipédia est ouverte à tous !\\n\\n115\\n00:06:54,000 --> 00:06:56,000\\n\\n\\n116\\n00:06:57,000 --> 00:06:59,000',\n", + " 'bytes': 10599,\n", + " 'sha1': 'gdcuq7f1li522nazor6dtpo93wjnz0w',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 37304412,\n", + " 'timestamp': '2010-04-05T13:46:45Z',\n", + " 'user': {'id': 50587, 'text': 'Nemo bis'},\n", + " 'page': {'id': 9932990,\n", + " 'title': 'Wikipedia ridotto.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'from http://www.wikimedia.it/index.php/WikiGuida_Wikipedia/Sottotitoli_ES',\n", + " 'text': '1\\n00:00:07,686 --> 00:00:11,934\\nWikipedia nace en 2001 y se desarrolla con la idea de crear\\n\\n2\\n00:00:11,973 --> 00:00:15,443\\nla más grande enciclopedia de contenido abierto en la historia.\\n\\n3\\n00:00:15,710 --> 00:00:19,598\\nWikipedia está redactada gracias a la contribución de muchísimos voluntarios.\\n\\n4\\n00:00:19,751 --> 00:00:22,465\\nCualquiera puede colaborar. Vamos a ver cómo.\\n\\n5\\n00:00:23,854 --> 00:00:27,300\\nCasi todas las páginas de Wikipedia presentan encima\\n\\n6\\n00:00:27,335 --> 00:00:30,492\\nuna ficha con escrito \"editar\", que permite hacer\\n\\n7\\n00:00:30,536 --> 00:00:34,428\\nexactamente lo que dice: editar la página que se está leyendo.\\n\\n8\\n00:00:35,043 --> 00:00:39,465\\nIn Wikipedia, es más, no existe una redacción: cualquier usuario\\n\\n9\\n00:00:39,540 --> 00:00:42,990\\npuede acceder a los contenidos de todas las páginas de la enciclopedia\\n\\n10\\n00:00:43,019 --> 00:00:45,932\\ny editarlos, sin necesidad de registrarse.\\n\\n11\\n00:00:46,151 --> 00:00:49,719\\nEl formato del texto sigue reglas particulares,\\n\\n12\\n00:00:49,728 --> 00:00:53,638\\npero se trata de un lenguaje bastante sencillo, fácil de aprender.\\n\\n13\\n00:00:53,989 --> 00:00:57,078\\nGrabando la edicción se acepta de disponer\\n\\n14\\n00:00:57,112 --> 00:00:59,573\\nde la propia contribución bajo una licencia libre.\\n\\n15\\n00:00:59,652 --> 00:01:03,546\\nCualquiera podrá consultar, utilizar y readaptar el texto,\\n\\n16\\n00:01:03,561 --> 00:01:07,693\\ntambién para finalidades comerciales, bajo condición de citar los autores de los artículos\\n\\n17\\n00:01:07,721 --> 00:01:11,200\\ny de reaplicar la misma licencia a todas las obras derivadas.\\n\\n18\\n00:01:11,561 --> 00:01:16,019\\nAdemás, es importante recordar que cada usuario, incluyendo lo no registrados,\\n\\n19\\n00:01:16,073 --> 00:01:19,998\\nsiempre queda responsable de sus propias inserciones.\\n\\n20\\n00:01:20,542 --> 00:01:24,743\\n¡En este momento la edición es inmediatamente visible para todos!\\n\\n21\\n00:01:25,715 --> 00:01:29,795\\nWikipedia no es una colección de información sin criterio,\\n\\n22\\n00:01:29,820 --> 00:01:34,142\\nsino una enciclopedia, una colección sistemática del conocimiento humano.\\n\\n23\\n00:01:34,361 --> 00:01:36,797\\nEn Wikipedia desde luego no hay que inserir\\n\\n24\\n00:01:36,816 --> 00:01:40,559\\ndefiniciones de diccionario y támpoco investigaciones originales.\\n\\n25\\n00:01:41,748 --> 00:01:44,853\\nCada página tiene su historial, que lista\\n\\n26\\n00:01:44,878 --> 00:01:48,311\\ntodas las versiones realizadas desde el instante de su creación.\\n\\n27\\n00:01:48,562 --> 00:01:51,551\\nAdemás de la hora, la fecha y el resumen de edición,\\n\\n28\\n00:01:51,566 --> 00:01:54,416\\nel programa registra también quién la hizo.\\n\\n29\\n00:01:54,638 --> 00:01:57,534\\nEn el caso de un usuario anónimo, se detecta\\n\\n30\\n00:01:57,541 --> 00:02:00,116\\nla dirección IP desde la cual se hizo.\\n\\n31\\n00:02:00,679 --> 00:02:03,639\\nEl historial igualmente permite comparar\\n\\n32\\n00:02:03,679 --> 00:02:06,777\\ndos versiones diferentes para evidenciar las diferencias.\\n\\n33\\n00:02:07,467 --> 00:02:11,381\\nEn Wikipedia nada se pierde, pero para los primeros intentos de escritura\\n\\n34\\n00:02:11,397 --> 00:02:14,586\\nestá bien utilizar la zona de pruebas, llamada también sandbox,\\n\\n35\\n00:02:14,610 --> 00:02:16,755\\nque se puede editar a gusto.\\n\\n36\\n00:02:16,803 --> 00:02:20,736\\nPara trabajar con más calma, un usuario registrado puede también crear para si\\n\\n37\\n00:02:20,801 --> 00:02:24,334\\nuna zona de pruebas personal dentro de la propia página de usuario.\\n\\n38\\n00:02:24,924 --> 00:02:28,020\\nPara generar una nueva página es suficiente crear un enlace,\\n\\n39\\n00:02:28,109 --> 00:02:30,844\\no pinchar un \"enlace rojo\" ya existente.\\n\\n40\\n00:02:30,929 --> 00:02:33,148\\nDe todas formas es buena práctica comprobar antes\\n\\n41\\n00:02:33,209 --> 00:02:35,461\\nsi la página ya está presente.\\n\\n42\\n00:02:36,025 --> 00:02:38,838\\nPara garantizar la buena operación del proyecto,\\n\\n43\\n00:02:38,841 --> 00:02:42,074\\nla comunidad ha elaborado unas políticas que todos los usuarios\\n\\n44\\n00:02:42,114 --> 00:02:44,811\\ntienen que respetar y hacer respetar.\\n\\n45\\n00:02:45,253 --> 00:02:47,615\\nUno de los principales cánones de Wikipedia\\n\\n46\\n00:02:47,687 --> 00:02:50,075\\nes la organización de los contenidos en modelos.\\n\\n47\\n00:02:50,147 --> 00:02:53,071\\nVamos a ver la estructura general de un artículo.\\n\\n48\\n00:02:53,977 --> 00:02:58,354\\nLa sección inicial tiene que resumir brevemente y con palabras sencillas\\n\\n49\\n00:02:58,370 --> 00:03:00,824\\nlos principales temas tratados en el artículo.\\n\\n50\\n00:03:00,989 --> 00:03:03,828\\nLa página se desarrolla en secciones (o párrafos),\\n\\n51\\n00:03:03,879 --> 00:03:06,856\\nque automaticamente están resumidos en un índice.\\n\\n52\\n00:03:07,138 --> 00:03:10,739\\nEn Wikipedia se pueden insertar imágenes, fotografías\\n\\n53\\n00:03:10,759 --> 00:03:14,142\\ny también vídeos, pero queda absolutamente necesario comprobar\\n\\n54\\n00:03:14,188 --> 00:03:17,207\\nque el material subido sea libremente utilizable,\\n\\n55\\n00:03:17,221 --> 00:03:19,994\\nes decir ¡ser disponible bajo una licencia libre!\\n\\n56\\n00:03:20,434 --> 00:03:23,597\\nTodas las informaciones contenidas en los artículos tienen que ser\\n\\n57\\n00:03:23,604 --> 00:03:26,765\\nfiables y verificables, por eso es necesario\\n\\n58\\n00:03:26,805 --> 00:03:29,158\\ncitar siempre las fuentes desde que están sacadas,\\n\\n59\\n00:03:29,167 --> 00:03:32,283\\nque tienen que ser en gran medida reconocidas y aceptadas.\\n\\n60\\n00:03:32,497 --> 00:03:35,339\\nAl final de cada artículo, después del texto propiamente dicho,\\n\\n61\\n00:03:35,353 --> 00:03:37,648\\nse encuentran varios párrafos \"incidentales\",\\n\\n62\\n00:03:37,665 --> 00:03:40,095\\nque reenvían a ulteriores reanudaciones.\\n\\n63\\n00:03:40,302 --> 00:03:43,422\\nEn unos proyectos temáticos, hay convenciones\\n\\n64\\n00:03:43,405 --> 00:03:47,109\\ny políticas específicas que ayudan en la redacción de los artículos.\\n\\n65\\n00:03:48,500 --> 00:03:50,930\\nUn principio imperativo de Wikipedia\\n\\n66\\n00:03:50,964 --> 00:03:53,335\\nes el utilizo de un punto de vista neutral.\\n\\n67\\n00:03:53,361 --> 00:03:55,981\\nLos artículos no tienen que contener juicios de mérito,\\n\\n68\\n00:03:56,011 --> 00:03:59,739\\nsino tienen que limitarse a presentar todos los puntos de vista relevantes\\n\\n69\\n00:03:59,754 --> 00:04:03,297\\nde manera justa, proporcionada y sin prejuicios.\\n\\n70\\n00:04:04,289 --> 00:04:08,548\\nCada artículo de Wikipedia está complementado por una página de discusión,\\n\\n71\\n00:04:08,627 --> 00:04:11,086\\ndonde los usuarios pueden confrontarse\\n\\n72\\n00:04:11,114 --> 00:04:14,184\\ny concordar una versión lo más posible adecuada y compartida.\\n\\n73\\n00:04:14,395 --> 00:04:17,464\\nA diferencia de las páginas de los artículos, aquí las intervenciones\\n\\n74\\n00:04:17,493 --> 00:04:20,784\\nsiempre se firman, pero hay que recordar que Wikipedia\\n\\n75\\n00:04:20,823 --> 00:04:24,667\\nno es el sitio donde expresar puntos de vista personales o parciales.\\n\\n76\\n00:04:25,117 --> 00:04:27,117\\nCuando un usuario tiene necesidad\\n\\n77\\n00:04:27,147 --> 00:04:29,753\\nde interpelar a más personas al mismo tiempo,\\n\\n78\\n00:04:29,823 --> 00:04:33,631\\npara un problema de interés general o relativo a un sector específico,\\n\\n79\\n00:04:33,655 --> 00:04:37,510\\npuede utilizar el Café o los respectivos cafés temáticos.\\n\\n80\\n00:04:37,995 --> 00:04:41,242\\nCada usuario tiene una página personal,\\n\\n81\\n00:04:41,273 --> 00:04:44,115\\ndonde puede insertar unas informaciones acerca de si mismo.\\n\\n82\\n00:04:44,226 --> 00:04:47,802\\nTambién esta página está complementada por una página de discusión,\\n\\n83\\n00:04:47,827 --> 00:04:51,693\\nque se utiliza como si fuera una casilla postal personal.\\n\\n84\\n00:04:51,983 --> 00:04:55,753\\nPara preguntas técnicas se puede pedir ayuda a los usuarios más expertos,\\n\\n85\\n00:04:55,815 --> 00:04:58,338\\npor ejemplo a través de la sección de ayuda del café.\\n\\n86\\n00:04:58,353 --> 00:05:02,030\\nAcerca de los contenidos sin embargo se puede preguntar a Consultas.\\n\\n87\\n00:05:02,924 --> 00:05:06,262\\nEn caso de evidentes abusos o actos vandálicos,\\n\\n88\\n00:05:06,294 --> 00:05:09,319\\nunos usuarios registrados, llamados \"bibliotecarios\",\\n\\n89\\n00:05:09,386 --> 00:05:12,083\\npueden intervenir con operaciones específicas,\\n\\n90\\n00:05:12,109 --> 00:05:15,486\\ncomo bloquear un usuario o borrar una página.\\n\\n91\\n00:05:15,664 --> 00:05:18,384\\nLos bibliotecarios son voluntarios que han adquirido\\n\\n92\\n00:05:18,384 --> 00:05:22,048\\nla confianza de la comunidad y han sido seleccionados por medio de una elección.\\n\\n93\\n00:05:22,218 --> 00:05:25,355\\nDesarrollan operaciones técnicas delicadas y garantizan\\n\\n94\\n00:05:25,357 --> 00:05:27,646\\nel respeto de las políticas del proyecto,\\n\\n95\\n00:05:27,664 --> 00:05:30,453\\npero no son los responsables de Wikipedia.\\n\\n96\\n00:05:31,311 --> 00:05:34,532\\nWikipedia está dirigida por la Fundación Wikimedia,\\n\\n97\\n00:05:34,542 --> 00:05:37,960\\nuna fundación sin ánimo de lucro con sede en San Francisco,\\n\\n98\\n00:05:37,958 --> 00:05:41,090\\nque garantiza los recursos para el desarrollo del proyecto.\\n\\n99\\n00:05:41,281 --> 00:05:44,554\\nLa fundación, instituida en 2003, vive gracias\\n\\n100\\n00:05:44,559 --> 00:05:47,233\\na subvenciones por parte de agencias públicas y privadas,\\n\\n101\\n00:05:47,235 --> 00:05:51,571\\ny sobre todo gracias a muchísimas micro-donaciones de particulares.\\n\\n102\\n00:05:51,853 --> 00:05:54,959\\nPara preservar la independencia absoluta e implicar\\n\\n103\\n00:05:54,991 --> 00:05:59,277\\na muchos contribudores voluntarios, en Wikipedia en efecto no hay publicidad.\\n\\n104\\n00:05:59,979 --> 00:06:04,125\\nMientras tanto en todo el mundo han nacido varias asociaciones de voluntarios\\n\\n105\\n00:06:04,181 --> 00:06:07,761\\nque animan localmente a Wikipedia y a los proyectos hermanos.\\n\\n106\\n00:06:08,105 --> 00:06:11,624\\nEn Italia desde 2005 existe Wikimedia Italia,\\n\\n107\\n00:06:11,671 --> 00:06:15,961\\nque además de los proyectos de la Fundación Wikimedia, anima otras iniciativas\\n\\n108\\n00:06:15,973 --> 00:06:19,662\\nvinculadas a la difusión libre de la cultura y del conocimiento.\\n\\n109\\n00:06:19,898 --> 00:06:23,992\\nY es a Wikimedia Italia que se pueden dirigir la prensa, las empresas\\n\\n110\\n00:06:24,029 --> 00:06:28,130\\ny las escuelas para sacar más informaciones en italiano acerca de Wikipedia.\\n\\n111\\n00:06:28,981 --> 00:06:31,905\\nMuchísimos voluntarios gratuitamente acumulan,\\n\\n112\\n00:06:31,913 --> 00:06:35,649\\nordenan y estructuran los conocimientos compartidos de nuestro tiempo\\n\\n113\\n00:06:35,701 --> 00:06:39,149\\npara hacerlos libremente disponibles. ¿Y vosotros?\\n\\n114\\n00:06:39,352 --> 00:06:42,605\\n¡Seáis valientes: Wikipedia está abierta para todos!\\n\\n115\\n00:06:54,000 --> 00:06:56,000\\n\\n\\n116\\n00:06:57,000 --> 00:06:59,000',\n", + " 'bytes': 10538,\n", + " 'sha1': '9qwjsfkbss2xki9nt498cz4f8lw27af',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606605041,\n", + " 'timestamp': '2021-11-11T08:19:29Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 10320791,\n", + " 'title': 'Wanna Work Together? with subtitles - Creative Commons.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall update (text devisions, precising timings etc.)',\n", + " 'text': \"1\\n00:00:04,774 --> 00:00:08,105\\nQuer trabalhar conosco?\\n\\n2\\n00:00:10,000 --> 00:00:12,324\\nQuando você compartilha sua criatividade,\\n\\n3\\n00:00:12,342 --> 00:00:14,593\\nestá permitindo pessoas em qualquer lugar,\\n\\n4\\n00:00:14,710 --> 00:00:16,835\\na usá-la, aprender dela\\n\\n5\\n00:00:16,855 --> 00:00:19,000\\ne se inspirar nela\\n\\n6\\n00:00:19,193 --> 00:00:20,403\\nVeja o professor,\\n\\n7\\n00:00:20,463 --> 00:00:24,536\\nque molda mentes jovens com o trabalho\\ne a sabedoria do mundo todo,\\n\\n8\\n00:00:24,577 --> 00:00:29,463\\ne a artista constrói beleza de pequenos\\npedaços que ela encontra online.\\n\\n9\\n00:00:29,873 --> 00:00:33,416\\ne o escritor, cujas histórias\\nusam ideias e imagens\\n\\n10\\n00:00:33,436 --> 00:00:36,173\\ncriadas por pessoas\\nque ele nunca conheceu.\\n\\n11\\n00:00:36,339 --> 00:00:39,279\\nEssas pessoas sabem que quando\\nvocê compartilha sua riqueza criativa,\\n\\n12\\n00:00:39,293 --> 00:00:41,208\\nvocê realiza grandes coisas.\\n\\n13\\n00:00:41,244 --> 00:00:45,300\\nEles e milhões de outras\\npessoas ao redor do planeta,\\n\\n14\\n00:00:45,333 --> 00:00:47,219\\nestão trabalhando juntos para construir\\n\\n15\\n00:00:47,269 --> 00:00:49,774\\numa cultura mais rica,\\nmelhor e mais vibrante,\\n\\n16\\n00:00:49,806 --> 00:00:52,195\\nusando Creative Commons.\\n\\n17\\n00:00:53,467 --> 00:00:55,149\\nPara entender o Creative Commons,\\n\\n18\\n00:00:55,149 --> 00:00:58,204\\nvocê precisa saber um pouco sobre\\ncomo os direitos autorais funcionam.\\n\\n19\\n00:00:58,221 --> 00:01:00,766\\nVocê sabia que quando\\nvocê cria algo – qualquer coisa,\\n\\n20\\n00:01:00,796 --> 00:01:06,188\\ndesde uma fotografia, uma canção,\\num desenho, um filme, uma história,\\n\\n21\\n00:01:06,188 --> 00:01:09,416\\nvocê automaticamente possui um direito\\nautoral de 'Todos os Direitos Reservados'\\n\\n22\\n00:01:09,416 --> 00:01:10,902\\nem erlação àquela criatividade.\\n\\n23\\n00:01:10,902 --> 00:01:11,960\\nÉ verdade!\\n\\n24\\n00:01:11,960 --> 00:01:15,719\\nOs direitos autorais protegem a sua criatividade\\ncontra usos que você não consente.\\n\\n25\\n00:01:15,719 --> 00:01:16,750\\n(*exceto o fair use)\\n\\n26\\n00:01:16,770 --> 00:01:19,870\\nMas às vezes, os direitos autorais\\npodem ser muito restritivos.\\n\\n27\\n00:01:19,900 --> 00:01:23,501\\nE quando você quer todas aquelas\\nmilhões e milhões de pessoas lá\\n\\n28\\n00:01:23,508 --> 00:01:24,815\\nfora usando o seu trabalho\\n\\n29\\n00:01:24,835 --> 00:01:27,246\\nsem a inconveniência\\nde ter que te pedir permissão?\\n\\n30\\n00:01:27,246 --> 00:01:29,660\\nE se você quiser sua obra\\ncompartilhada livremente,\\n\\n31\\n00:01:29,660 --> 00:01:32,464\\nreusada e recriada pelo resto do mundo?\\n\\n32\\n00:01:32,880 --> 00:01:34,712\\nAfortunadamente, existe uma resposta:\\n\\n33\\n00:01:34,772 --> 00:01:36,582\\nCreative Commons.\\n\\n34\\n00:01:36,696 --> 00:01:38,906\\nNós oferecemos licenças\\nde direitos autorais livres,\\n\\n35\\n00:01:38,906 --> 00:01:41,258\\nas quais você pode usar\\npara dizer para as pessoas exatamente\\n\\n36\\n00:01:41,258 --> 00:01:44,455\\nque partes dos seus direitos autorais\\nvocê quer conceder ao público.\\n\\n37\\n00:01:44,455 --> 00:01:48,051\\nÉ fácil, leva só um minuto,\\ne é totalmente grátis.\\n\\n38\\n00:01:48,280 --> 00:01:51,369\\nVisite nosso website\\ne responda algumas perguntas como:\\n\\n39\\n00:01:51,409 --> 00:01:53,795\\n'Você permitiria usos\\ncomerciais da sua obra?'\\n\\n40\\n00:01:53,835 --> 00:01:56,243\\ne 'Você permitiria\\nsua obra ser modificada?'\\n\\n41\\n00:01:56,335 --> 00:01:59,866\\nBaseando-se em suas respostas, te daremos\\na licença que claramente comunica\\n\\n42\\n00:01:59,890 --> 00:02:02,917\\no que as pessoas podem e não podem\\nfazer com sua criatividade.\\n\\n43\\n00:02:03,000 --> 00:02:05,203\\nVocê não abre mão\\nde seus direitos autorais,\\n\\n44\\n00:02:05,233 --> 00:02:07,765\\napenas os refina\\npara que funcionem melhor para você.\\n\\n45\\n00:02:08,450 --> 00:02:11,798\\nBem-vindo a um novo mundo\\nonde a colaboração reina!\\n\\n46\\n00:02:12,000 --> 00:02:14,929\\nIsso nem existia há alguns anos atrás.\\n\\n47\\n00:02:15,000 --> 00:02:19,437\\nMas agora existem milhões e milhões\\nde canções, imagens, vídeos,\\n\\n48\\n00:02:19,475 --> 00:02:24,292\\ne obras escritas disponíveis para serem\\ncompartilhadas, reusadas e remixadas –\\n\\n49\\n00:02:24,380 --> 00:02:25,594\\ntudo de graça!\\n\\n50\\n00:02:26,197 --> 00:02:27,945\\nQuer trabalhar conosco?\\n\\n51\\n00:02:27,998 --> 00:02:29,707\\nentão una-se aos Comuns –\\n\\n52\\n00:02:29,734 --> 00:02:31,557\\nCreative Commons.\\n\\n53\\n00:02:34,547 --> 00:02:36,028\\nFim\\n\\n54\\n00:02:36,189 --> 00:02:38,270\\nAnimação e Design\\npor Ryan Junell - junell.net\\n\\n55\\n00:02:38,310 --> 00:02:40,430\\nMúsica e Design Sonoro\\nLesser - LSR1.com\\n\\n56\\n00:02:40,470 --> 00:02:42,370\\nNarradora: Sara Kraft -\\nkraftpurver.com\\n\\n57\\n00:02:42,400 --> 00:02:44,328\\nRoteiro: Eric Steuer -\\ncreativecommons.org\\n\\n58\\n00:02:44,381 --> 00:02:45,625\\nAgradecimento especial\\n\\n59\\n00:02:45,665 --> 00:02:47,830\\nThe John D. and Catherine T. MacArthur\\nFoundation - macfound.org\\n\\n60\\n00:02:47,870 --> 00:02:49,900\\nThe William and Flora Hewlett\\nFoundation - hewlett.org\\n\\n61\\n00:02:49,960 --> 00:02:51,270\\nRed Hat - redhat.com\\n\\n62\\n00:02:51,330 --> 00:02:52,740\\nOmidyar Network - omidyar.net\\n\\n63\\n00:02:52,770 --> 00:02:54,530\\nFaculdade de Direito de Stanford -\\nlaw.stanford.edu\\n\\n64\\n00:02:54,580 --> 00:02:57,440\\nCenter for the Study\\nof the Public Domain - law.duke.edu/cfpd\\n\\n65\\n00:02:57,600 --> 00:03:02,000\\nE todos os partidários\\ndo Creative Commons, grandes ou pequenos\",\n", + " 'bytes': 5243,\n", + " 'sha1': 'st0em5pdn8uee7gnqkv3m6hmj70pyv8',\n", + " 'parent_id': 39197609,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 607774895,\n", + " 'timestamp': '2021-11-17T08:46:48Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 10333568,\n", + " 'title': 'Mayer and Bettle 2 - Creative Commons.ogv.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall subtitles update',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,788\\nМајер и Бетл. А сега... Флик\\n\\n2\\n00:00:01,832 --> 00:00:05,226\\nМ: Епа ајде пак објасни ми\\nзошто, иако толку долго те знам,\\n\\n3\\n00:00:05,260 --> 00:00:09,997\\nморав да резервирам цел месец\\nоднапред, чисто да се видиме на кафе…\\n\\n4\\n00:00:10,287 --> 00:00:13,108\\nБ: Тешко е денес да\\nсе појави човек во јавност.\\n\\n5\\n00:00:13,200 --> 00:00:14,869\\nМ: Што?! Зошто?\\n\\n6\\n00:00:14,927 --> 00:00:17,238\\nБ: Зошто сега сум славна!\\n\\n7\\n00:00:17,278 --> 00:00:20,083\\nМислам, сега сум вистинска\\nславна личност и сето тоа.\\n\\n8\\n00:00:20,126 --> 00:00:21,470\\nИмам обожаватели!\\n\\n9\\n00:00:21,523 --> 00:00:23,270\\nМе обожаваат!\\n\\n10\\n00:00:23,318 --> 00:00:27,244\\nВеројатно можеме да добиеме и ручек\\nбеспари бидејќи сум толку славна.\\n\\n11\\n00:00:27,286 --> 00:00:28,520\\nМ: Не си славна.\\n\\n12\\n00:00:28,556 --> 00:00:29,666\\nБ: Ех-ех?\\n\\n13\\n00:00:29,698 --> 00:00:34,217\\nМојот прв албум,\\n„Најдобриот албум на светот“,\\n\\n14\\n00:00:34,252 --> 00:00:38,242\\nсо недели е меѓу популарните\\nалбуми на Jamendo!\\n\\n15\\n00:00:38,787 --> 00:00:40,605\\nМ: Jamendo?\\n\\n16\\n00:00:41,000 --> 00:00:43,572\\nБ: Е ти никогаш не си ни бил кул?\\n\\n17\\n00:00:43,934 --> 00:00:45,544\\nТоа ти е веб-страница\\n\\n18\\n00:00:45,569 --> 00:00:49,175\\nкајшто музичари можат да си ги ставаат\\nпесните под Криејтив Комонс лиценци\\n\\n19\\n00:00:49,199 --> 00:00:51,172\\nза луѓето да можат да ги споделуваат.\\n\\n20\\n00:00:51,500 --> 00:00:53,564\\nШто значи дека повеќе луѓе ги симнуваат.\\n\\n21\\n00:00:53,596 --> 00:00:55,679\\nЗначи повеќе луѓе ги слушаат!\\n\\n22\\n00:00:55,700 --> 00:00:57,825\\nЗначи повеќе обожаватели за мене!!\\n\\n23\\n00:00:58,111 --> 00:01:00,199\\nАко тоа воопшто може да биде.\\n\\n24\\n00:01:00,232 --> 00:01:04,065\\nПатем, ако ми дадеш 50 банки,\\nќе ти пишам автограм на лицето.\\n\\n25\\n00:01:04,793 --> 00:01:06,468\\nМ: Амм...\\n\\n26\\n00:01:06,524 --> 00:01:07,560\\nфала ти.\\n\\n27\\n00:01:07,714 --> 00:01:11,148\\nМ: Значи дали Jamendo новите протоколи\\nза проширени метаподатоци\\n\\n28\\n00:01:11,167 --> 00:01:14,000\\nприменети преку создавачот\\nна Криејтив Комонс лиценци?\\n\\n29\\n00:01:14,192 --> 00:01:16,159\\nБ: Мета-проширени-што?!\\n\\n30\\n00:01:16,215 --> 00:01:19,361\\nМ: Хэх... Чекај сега ќе ти покажам.\\n\\n31\\n00:01:21,000 --> 00:01:23,043\\nБ: Каде ме однесе Мајер!?\\n\\n32\\n00:01:23,089 --> 00:01:26,329\\n(здивнува и шепоти)\\nСе надевам нема папараци.\\n\\n33\\n00:01:26,346 --> 00:01:29,000\\nНе носам темни очила!\\n\\n34\\n00:01:29,273 --> 00:01:33,166\\nМ: Сега сме внатре во Криејтив Комонс.\\nСe што гледаш тука се споделува:\\n\\n35\\n00:01:33,210 --> 00:01:36,216\\nприказни, фотографии, веб-страници,\\nфилмови, аудиоснимки.\\n\\n36\\n00:01:36,272 --> 00:01:40,148\\nСе познаваат по симболите\\nза CC лиценца.\\n\\n37\\n00:01:40,472 --> 00:01:42,793\\nБ: Ооооо! Фино!\\n\\n38\\n00:01:42,870 --> 00:01:44,672\\nМ: Но како автор сепак имаш контрола.\\n\\n39\\n00:01:44,719 --> 00:01:48,197\\nГледаш, можеш да дозволиш да ти\\nсе користат за некомерцијални цели,\\n\\n40\\n00:01:48,253 --> 00:01:51,707\\nили само ако не ги менуваат,\\nили само ако ги споделуваат со други.\\n\\n41\\n00:01:51,738 --> 00:01:54,278\\nИ секогаш мора да те наведуваат тебе.\\n\\n42\\n00:01:54,693 --> 00:01:58,504\\nСтраницата на СС ти помага да видиш\\nкоја лиценца највеќе ти одговара.\\n\\n43\\n00:01:58,709 --> 00:02:02,117\\nИ ти дава да ставаш информации\\nза она што го споделуваш,\\n\\n44\\n00:02:02,166 --> 00:02:05,259\\nи тие информации одат\\nсекаде кајшто оди делото.\\n\\n45\\n00:02:05,399 --> 00:02:09,445\\nГледаш, можеш да додаваш податоци како\\nтвоето име и како може да те контактираат\\n\\n46\\n00:02:09,474 --> 00:02:12,262\\nако сакаат да прават работи\\nшто не ги допушта лиценцата.\\n\\n47\\n00:02:12,515 --> 00:02:16,791\\nБ: Значи моето име секогаш\\nфигурира заедно со албумот.\\n\\n48\\n00:02:16,925 --> 00:02:19,498\\nБез разлика колку пати ќе го преземат?\\n\\n49\\n00:02:19,553 --> 00:02:20,729\\nМ: Да.\\n\\n50\\n00:02:20,775 --> 00:02:23,736\\nБ: Тоа значи дека сите ќе ме знаат.\\n\\n51\\n00:02:23,961 --> 00:02:25,722\\nСите ќе ми ги знаат песните!!\\n\\n52\\n00:02:25,773 --> 00:02:26,674\\n(Издишува)\\n\\n53\\n00:02:26,722 --> 00:02:30,167\\nЌе доминирам во светот!!!\\n\\n54\\n00:02:30,231 --> 00:02:34,157\\n(Злобна смеа)\\n\\n55\\n00:02:36,501 --> 00:02:39,265\\nВеројатно треба да си набавам\\nкруна. Ах! И корги!\\n\\n56\\n00:02:39,290 --> 00:02:40,171\\n(Бум)\\n\\n57\\n00:02:40,182 --> 00:02:41,560\\nАх, што?!\\n\\n58\\n00:02:42,544 --> 00:02:43,495\\nФ: Бетл?!\\n\\n59\\n00:02:43,732 --> 00:02:45,729\\nБ: Флик! Што правиш ти тука?\\n\\n60\\n00:02:45,870 --> 00:02:47,752\\nФ: При крај сум со нашиот нов филм.\\n\\n61\\n00:02:47,793 --> 00:02:50,809\\nСамо дојдов да најдам\\nнекои конечни фотки од Flickr.\\n\\n62\\n00:02:51,744 --> 00:02:55,309\\nМ: Хмм, хеј! хеј? Кој е овој?\\n\\n63\\n00:02:56,000 --> 00:02:59,328\\nБ: Ова е Флик,\\nмој обожавател и соработник.\\n\\n64\\n00:02:59,879 --> 00:03:01,036\\nФ: Пред неколку месеци\\n\\n65\\n00:03:01,076 --> 00:03:04,042\\nбарав песни на Jamendo\\nза филмскиот проект на школо.\\n\\n66\\n00:03:04,076 --> 00:03:06,781\\nИ наидов на една од Бетл,\\nшто сосем ми одговараше.\\n\\n67\\n00:03:07,165 --> 00:03:10,452\\nПотоа и испратив е-пошта\\nи толку и се допадна мојов филм,\\n\\n68\\n00:03:10,493 --> 00:03:12,328\\nшто почнавме да работиме заедно.\\n\\n69\\n00:03:12,706 --> 00:03:15,280\\nБ: Флик штотуку го заврши нашиот нов филм.\\n\\n70\\n00:03:15,326 --> 00:03:20,308\\nЌе го промовираме со премиера на Revver.\\nИ ќе направиме дебела пара!!\\n\\n71\\n00:03:20,592 --> 00:03:23,370\\nМ: Ама нели ги раздавате бесплатно?\\n\\n72\\n00:03:23,444 --> 00:03:25,520\\nКако ќе заработите пари од тоа?\\n\\n73\\n00:03:25,920 --> 00:03:28,267\\nБ: Ако им даваме на луѓето да ги користат\\n\\n74\\n00:03:28,312 --> 00:03:30,781\\nне значи дека не можеме\\nда заработиме на нив.\\n\\n75\\n00:03:30,845 --> 00:03:31,987\\nФ: Како на Revver!\\n\\n76\\n00:03:32,008 --> 00:03:35,363\\nТоа ти е веб-страница за споделување\\nвидеа што става реклами во видеото\\n\\n77\\n00:03:35,373 --> 00:03:37,236\\nи ти добиваш дел од парите.\\n\\n78\\n00:03:37,281 --> 00:03:40,452\\nШто повеќе луѓе ги гледаат видеата,\\nтоа повеќе пари добиваме.\\n\\n79\\n00:03:41,077 --> 00:03:44,139\\nБ: И затоа мојот албум е на Jamendo.\\n\\n80\\n00:03:44,271 --> 00:03:48,203\\nЛуѓето можат да ја споделуваат мојата\\nмузика бесплатно под CC лиценца,\\n\\n81\\n00:03:48,260 --> 00:03:54,200\\nно ако сакаат да ја користат за заработка,\\nкако на ТВ и радио, ќе треба да платат.\\n\\n82\\n00:03:54,423 --> 00:03:56,144\\nВеб-страницата им го овозможува тоа.\\n\\n83\\n00:03:56,164 --> 00:03:58,846\\nФ: А има и многу други страници\\nкајшто можеш да заработиш\\n\\n84\\n00:03:58,906 --> 00:04:00,344\\nод свои дела со CC лиценца.\\n\\n85\\n00:04:00,374 --> 00:04:03,273\\nБ: За кратко време сите\\nќе ги користат нашите дела.\\n\\n86\\n00:04:03,298 --> 00:04:04,501\\nСекој филм!\\n\\n87\\n00:04:04,547 --> 00:04:05,832\\nСекоја реклама!!\\n\\n88\\n00:04:05,889 --> 00:04:07,800\\nСекое домашно ДВД!!!\\n\\n89\\n00:04:07,826 --> 00:04:09,237\\nЌе станам богата!\\n\\n90\\n00:04:09,268 --> 00:04:10,849\\nСите ќе лудуваат по мене!\\n\\n91\\n00:04:10,880 --> 00:04:12,459\\nСветот ќе биде мој!!\\n\\n92\\n00:04:12,521 --> 00:04:13,732\\nМОЈ!!!\\n\\n93\\n00:04:13,755 --> 00:04:14,995\\n(Тешко дишење)\\n\\n94\\n00:04:15,035 --> 00:04:18,275\\nФ: А што викаш да одиме чекор по чекор, а?\\n\\n95\\n00:04:18,447 --> 00:04:20,465\\nБ: Сосема се согласувам, Флик.\\n\\n96\\n00:04:20,498 --> 00:04:21,546\\nЕј Мајер!\\n\\n97\\n00:04:22,000 --> 00:04:23,375\\nМ: Кажи Бетл?\\n\\n98\\n00:04:23,748 --> 00:04:25,188\\n(Гребење)\\n\\n99\\n00:04:26,186 --> 00:04:28,286\\nБ: Ми должиш 50 банки!',\n", + " 'bytes': 9834,\n", + " 'sha1': '3kst1agf8mrzbwho65j5a4757al884g',\n", + " 'parent_id': 168623627,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606351115,\n", + " 'timestamp': '2021-11-09T09:24:58Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 10404772,\n", + " 'title': 'Yeager supersonic flight 1947.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Yeager supersonic flight 1947.ogg.en.srt]] to [[TimedText:Yeager supersonic flight 1947.ogv.en.srt]]: rename of the original file',\n", + " 'text': \"0 \\n00:00:00,000 --> 00:00:05,500\\nIn October 1947 at Muroc Desert Test Center in California\\n\\n1\\n00:00:06,000 --> 00:00:09,500 \\nhistory is made by this aircraft, the XS-1\\n\\n2 \\n00:00:10,000 --> 00:00:13,500 \\nand its pilot, Captain Charles E. Yeager. \\n\\n3 \\n00:00:14,000 --> 00:00:18,500 \\nThis airplane and this pilot are about to be the first ever to fly \\n\\n4 \\n00:00:19,000 --> 00:00:22,000 \\nfaster than the speed of sound in level flight. \\n\\n5 \\n00:00:25,000 --> 00:00:26,900 \\nA B-29 will take the XS-1 aloft\\n\\n6 \\n00:00:27,000 --> 00:00:32,000 \\nand launch her at an altitude of about 35,000 ft. \\n\\n7 \\n00:00:33,000 --> 00:00:34,500 \\nThe XS-1 is not a military aircraft \\n\\n8 \\n00:00:35,000 --> 00:00:37,500 \\nbut a flying research laboratory,\\n \\n9 \\n00:00:38,000 --> 00:00:40,500 \\ndesigned to test the effects of supersonic flight upon airplanes. \\n\\n10 \\n00:00:42,000 --> 00:00:44,500 \\nIt is powered by four rocket engines\\n\\n11 \\n00:00:45,000 --> 00:00:48,500 \\nits weight empty is less than 5,000 pounds\\n\\n12 \\n00:00:49,000 --> 00:00:53,000 \\nbut it carries 8,000 pounds of fuel. \\n\\n13 \\n00:00:54,000 --> 00:00:56,500 \\nB-29s have done a lot of memorable things\\n\\n14 \\n00:00:57,000 --> 00:01:01,500 \\nbut none of them ever before had a mission quite like this one\\n\\n15 \\n00:01:02,000 --> 00:01:06,000 \\nand no airplane ever did what the XS-1 is about to do. \\n\\n16 \\n00:01:16,000 --> 00:01:17,500 \\nBreaking the sound barrier in level flight\\n\\n17 \\n00:01:18,000 --> 00:01:20,500 \\nwill be more than a spectacular feat \\n\\n18 \\n00:01:21,000 --> 00:01:27,000 \\nIt will also give the Airforce valuable knowledge of \\nthe resources of new propulsion systems.\\n\\n19 \\n00:01:28,000 --> 00:01:29,500 \\nCaptain Yeager gets aboard the XS-1\\n\\n20 \\n00:01:30,000 --> 00:01:33,000 \\nit can't be a long flight he is going to have in the little aircraft \\n\\n21 \\n00:01:34,000 --> 00:01:37,500 \\nAt full power the flight can't last more than two and a half minutes\\n\\n22 \\n00:01:38,000 --> 00:01:41,000 \\nbut it's going to be a fast one.\\n\\n23 \\n00:01:59,000 --> 00:02:01,000 \\nReady! \\n\\n24 \\n00:02:01,000 --> 00:02:02,500 \\nThe radar crews are ready, too, \\n\\n25 \\n00:02:03,000 --> 00:02:05,500 \\nto do the timing, the only possible method \\n\\n26 \\n00:02:06,000 --> 00:02:09,000 \\nfor timing aircraft at extremely high altitudes.\\n\\n27 \\n00:02:14,000 --> 00:02:14,500 \\nThere she goes!\\n\\n28 \\n00:02:15,000 --> 00:02:19,000 \\nA big moment in a history-making flight.\\n\\n29 \\n00:02:24,000 --> 00:02:25,500 \\nNow she is approaching the barrier. \\n\\n30 \\n00:02:26,000 --> 00:02:32,000 \\nThe speed of sound at 35,000 ft is 660 MPH. \\n\\n31 \\n00:02:33,000 --> 00:02:36,500 \\nThe really big moment. Through the sound barrier. \\n\\n32 \\n00:02:37,000 --> 00:02:39,500 \\nThe first time ever in level flight. \\n\\n33 \\n00:02:40,000 --> 00:02:48,500 \\nFor the first time, except in dive, a man has flown an airplane faster than the speed of sound.\\n\\n34 \\n00:02:49,000 --> 00:02:53,500 \\nIt earned Captain Yeager many honors, and the historic plane, the XS-1 \\n\\n35 \\n00:02:54,000 --> 00:02:59,000 \\nearned the resting place in the Smithsonian Institution.\",\n", + " 'bytes': 3016,\n", + " 'sha1': '9pgvdy0nikqihg53s310n2ay1a136qi',\n", + " 'parent_id': 189218771,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606351006,\n", + " 'timestamp': '2021-11-09T09:24:20Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 10405379,\n", + " 'title': 'Yeager supersonic flight 1947.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Yeager supersonic flight 1947.ogg.de.srt]] to [[TimedText:Yeager supersonic flight 1947.ogv.de.srt]]: rename of the original file',\n", + " 'text': '0 \\n00:00:00,000 --> 00:00:05,500\\nIm Oktober 1947 wurde im Muroc Wüstentestzentrum in Kalifornien\\n\\n1\\n00:00:06,000 --> 00:00:09,500 \\nmit diesem Flugzeug, der XS-1\\n\\n2 \\n00:00:10,000 --> 00:00:13,500 \\nund seinem Piloten, Hauptmann Charles E. Yeager, Geschichte geschrieben.\\n\\n3 \\n00:00:14,000 --> 00:00:18,500 \\nDieses Flugzeug und sein Pilot sind im Begriff, als erste schneller\\n\\n4 \\n00:00:19,000 --> 00:00:22,000 \\nals mit Schallgeschwindigkeit in der Horizontalen zu fliegen.\\n\\n5 \\n00:00:25,000 --> 00:00:26,900 \\nEine B-29 wird die XS-1 in die Höhe transportieren\\n\\n6 \\n00:00:27,000 --> 00:00:32,000 \\nund sie auf einer Höhe von 35.000 Fuß (10.668m) abwerfen. \\n\\n7 \\n00:00:33,000 --> 00:00:34,500 \\nDie XS-1 ist kein militärisches Flugzeug\\n\\n8 \\n00:00:35,000 --> 00:00:37,500 \\nsondern ein fliegendes Forschungslabor,\\n \\n9 \\n00:00:38,000 --> 00:00:40,500 \\nentworfen, um die Effekte des Überschallflugs auf Flugzeuge zu testen.\\n\\n10 \\n00:00:42,000 --> 00:00:44,500 \\nEs wird von vier Raketentriebwerken angetrieben\\n\\n11 \\n00:00:45,000 --> 00:00:48,500 \\nsein Leergewicht beträgt weniger als 5.000 Pfund (2.268 kg)\\n\\n12 \\n00:00:49,000 --> 00:00:53,000 \\ndoch trägt es mehr als 8.000 Pfund (3.628 kg) Treibstoff. \\n\\n13 \\n00:00:54,000 --> 00:00:56,500 \\nB-29 haben viele denkwürdige Dinge getan\\n\\n14 \\n00:00:57,000 --> 00:01:01,500 \\ndoch keine von ihnen hatte vorher einen Auftrag so wie diesen\\n\\n15 \\n00:01:02,000 --> 00:01:06,000 \\nund kein Flugzeug machte zuvor, was die XS-1 gleich machen wird.\\n\\n16 \\n00:01:16,000 --> 00:01:17,500 \\nDie Schallmauer im Horizontalflug zu durchbrechen\\n\\n17 \\n00:01:18,000 --> 00:01:20,500 \\nwird eine mehr als spektakuläre Tat sein\\n\\n18 \\n00:01:21,000 --> 00:01:27,000 \\nDies wird der Airforce auch wertvolle Erkenntnisse \\nüber die Möglichkeiten neuer Antriebssysteme einbringen\\n\\n19 \\n00:01:28,000 --> 00:01:29,500 \\nHauptmann Yeager steigt an Bord der XS-1\\n\\n20 \\n00:01:30,000 --> 00:01:33,000 \\nes kann kein langer Flug werden in dem kleinen Flugzeug\\n\\n21 \\n00:01:34,000 --> 00:01:37,500 \\nBei Höchstgeschwindigkeit kann der Flug nicht länger als zweieinhalb Minuten dauern\\n\\n22 \\n00:01:38,000 --> 00:01:41,000 \\naber es wird ein schneller Flug sein.\\n\\n23 \\n00:01:59,000 --> 00:02:01,000 \\nFertig! \\n\\n24 \\n00:02:01,000 --> 00:02:02,500 \\nDie Radarbesatzungen sind auch bereit\\n\\n25 \\n00:02:03,000 --> 00:02:05,500 \\ndie Zeit zu stoppen, da dies die einzige Möglichkeit ist\\n\\n26 \\n00:02:06,000 --> 00:02:09,000 \\num die Geschwindigkeit eines Flugzeugs in extremen Höhen zu messen\\n\\n27 \\n00:02:14,000 --> 00:02:14,500 \\nDa fliegt sie!\\n\\n28 \\n00:02:15,000 --> 00:02:19,000 \\nEin großer Moment eines geschichtemachenden Fluges.\\n\\n29 \\n00:02:24,000 --> 00:02:25,500 \\nNun nähert sie sich der Schallmauer.\\n\\n30 \\n00:02:26,000 --> 00:02:32,000 \\nDie Schallgeschwindigkeit auf 35.000 Fuß Höhe beträgt 660 Meilen pro Stunde\\n\\n31 \\n00:02:33,000 --> 00:02:36,500 \\nDer wirklich große Augenblick. Durch die Schallmauer.\\n\\n32 \\n00:02:37,000 --> 00:02:39,500 \\nDas erste Mal im Horizontalflug.\\n\\n33 \\n00:02:40,000 --> 00:02:48,500 \\nZum ersten Mal ist ein Mann mit einem Flugeug schneller als Schallgeschwindigkeit geflogen.\\n\\n34 \\n00:02:49,000 --> 00:02:53,500 \\nDies brachte Hauptmann Yeager viele Ehrungen ein, und das geschichtemachende Flugzeug, die XS-1\\n\\n35 \\n00:02:54,000 --> 00:02:59,000 \\nverdiente sich einen Ruheplatz im Smithsonian-Institut.',\n", + " 'bytes': 3299,\n", + " 'sha1': 'jrukttwikb99suh71e6oogcu0fqsf0q',\n", + " 'parent_id': 46136212,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 41036100,\n", + " 'timestamp': '2010-07-03T12:34:35Z',\n", + " 'user': {'id': 5795, 'text': 'Eirik'},\n", + " 'page': {'id': 10789159,\n", + " 'title': 'The Crab Nebula NASA.ogv.nn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,500 --> 00:00:03,250\\nKva skjer i november?\\n\\n2\\n00:00:03,500 --> 00:00:05,000\\nKrabbetåka.\\n\\n3\\n00:00:05,500 --> 00:00:07,500\\nHei og velkomen.|\\nEg heiter Jane Houston-Jones –\\n\\n4\\n00:00:07,600 --> 00:00:12,500\\n– og arbeider på NASA Jet Propulsion Laboratory\\ni Pasadena i California.\\n\\n5\\n00:00:12,600 --> 00:00:18,000\\n2009 er det internasjonale astronomiåret,|\\nog denne månaden ser vi på Krabbetåka, –\\n\\n5\\n00:00:18,500 --> 00:00:24,000\\n– den einaste supernovaresten|\\nein enkelt kan sjå med eit halvgodt teleskop.\\n\\n6\\n00:00:24,100 --> 00:00:29,000\\nI 1758 leita Charles Messier etter|\\nHalleykometen på himmelen.\\n\\n7\\n00:00:29,500 --> 00:00:35,000\\nHan la merke til eit kvitt lys, forma som\\nflammen på eit stearinlys, i stjernebiletet Tyren.\\n\\n8\\n00:00:35,100 --> 00:00:41,000\\nDet flytta seg ikkje i høve til stjernene|\\ni bakgrunnen, så det kunne ikkje vere kometen.\\n\\n9\\n00:00:42,000 --> 00:00:49,000\\nM1 vart den fyrste oppføringa i|\\nkatalogen hans over 110 kometliknande objekt.',\n", + " 'bytes': 990,\n", + " 'sha1': '0uo2os13x6feqnxbvy2u1xa6wdwjtxm',\n", + " 'parent_id': 41036047,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 506394351,\n", + " 'timestamp': '2020-10-29T13:26:55Z',\n", + " 'user': {'id': 5623759, 'text': 'Poslovitch'},\n", + " 'page': {'id': 11292470,\n", + " 'title': 'Tutoriel-wikt.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'updated subtitles',\n", + " 'text': '1\\n00:00:01,285 --> 00:00:03,062\\nPour créer un article sur le Wiktionnaire,\\n\\n2\\n00:00:03,087 --> 00:00:04,880\\nil y a plusieurs possibilités.\\n\\n3\\n00:00:05,119 --> 00:00:07,421\\nIl existe une page «\\u202fAide:Création rapide\\u202f»\\n\\n4\\n00:00:07,446 --> 00:00:10,515\\nqui comprend actuellement des patrons préremplis\\n\\n5\\n00:00:10,540 --> 00:00:12,958\\npour le français, l’anglais et le grec.\\n\\n6\\n00:00:13,284 --> 00:00:16,776\\nAdmettons que je veuille créer un nouveau nom anglais.\\n\\n7\\n00:00:17,651 --> 00:00:19,001\\nJe tape ici,\\n\\n8\\n00:00:19,327 --> 00:00:20,366\\nen l’ajoutant.\\n\\n9\\n00:00:21,300 --> 00:00:24,379\\nSi l’article est vide, le patron prérempli se charge.\\n\\n10\\n00:00:24,776 --> 00:00:25,823\\nS’il n’est pas vide,\\n\\n11\\n00:00:25,848 --> 00:00:27,426\\non voit son contenu apparaître.\\n\\n12\\n00:00:27,800 --> 00:00:30,125\\nJe vais prendre un mot fictif pour l’exemple.\\n\\n13\\n00:00:31,101 --> 00:00:34,815\\nDonc, le patron appelle un modèle qui\\n\\n14\\n00:00:34,847 --> 00:00:37,038\\ns’ajoute immédiatement.\\n\\n15\\n00:00:37,507 --> 00:00:40,824\\nSi je souhaite créer d’autres sections par la suite,\\n\\n16\\n00:00:41,261 --> 00:00:44,348\\nj’ai aussi un gadget qui permet\\n\\n17\\n00:00:44,373 --> 00:00:46,801\\nd’appeler un autre patron, en JavaScript,\\n\\n18\\n00:00:47,071 --> 00:00:49,667\\nqui va permettre d’ajouter autant de sections que nécessaire.',\n", + " 'bytes': 1335,\n", + " 'sha1': 'qkqg6q6rcmocaj7wv3xlscaidmuhtbt',\n", + " 'parent_id': 43214770,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 43214652,\n", + " 'timestamp': '2010-08-27T13:11:02Z',\n", + " 'user': {'id': 318677, 'text': 'JackPotte'},\n", + " 'page': {'id': 11306123,\n", + " 'title': 'Tutoriel-wikt.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:1,000 --> 00:00:10,000\\n[[Wiktionnaire]] [[tutorial]]\\n\\n2\\n00:00:11,000 --> 00:00:20,000\\nYou can paste the boilerplates with two different kinds of buttons\\n\\n3\\n00:00:21,000 --> 00:00:30,000\\nOne in [[Aide:Création rapide]] and one as [[MediaWiki:Gadget-Barre_de_luxe.js|an icon]] in the edition bar.\\n\\n4\\n00:00:31,000 --> 00:00:40,000\\n<font color=red size=5>Enjoy ;)</font>',\n", + " 'bytes': 375,\n", + " 'sha1': '2grxa2usevlfab42t3k2a4ydm42n91m',\n", + " 'parent_id': 43214543,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601707185,\n", + " 'timestamp': '2021-10-24T14:04:20Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11563152,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'small additional changes',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,621\\nMon nom d’utilisateur\\nest Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nMon nom d’utilisateur\\nest Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein, c’est\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\nun petit ver de livres en allemand\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nC’est Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nnotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\nvous savez : « pas un poisson »\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,325 --> 00:00:23,815\\nMon nom d’utilisateur est Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nMon nom d’utilisateur est Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, c’est un anagramme\\nde mon vrai nom Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nMon nom d’utilisateur est Steven Walling,\\nce qui est mon vrai nom\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\nMon nom d’utilisateur est Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nMon nom d’utilisateur est Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nMon nom est Jdforrester\\net je contribue à Wikipédia',\n", + " 'bytes': 1575,\n", + " 'sha1': 'nip5yj7s9zbx1nj1oed3llg9l0hj3t3',\n", + " 'parent_id': 601589955,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601705322,\n", + " 'timestamp': '2021-10-24T13:56:16Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11564947,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'small additional changes',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\nMy username is Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nMy username is Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein this is\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\na small book worm in German\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nIt’s Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\nyou know, «not a fish»\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,585 --> 00:00:23,785\\nMy username is Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nMy username is Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, it’s an anagram\\nof my real name Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nMy username is Steven Walling,\\nwhich is my real name\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\nMy username is Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nMy username is Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nMy name is Jdforrester\\nand I edit Wikipedia',\n", + " 'bytes': 1451,\n", + " 'sha1': 'c3jsh6cbnbucpftfitldbx9zkrx4191',\n", + " 'parent_id': 601585817,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601702813,\n", + " 'timestamp': '2021-10-24T13:49:07Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11567030,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and partyally the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\nMein Benutzername ist Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nMein Benutzername ist Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein, das ist\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\nein kleiner Bücherwurm auf Deutsch\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nDas ist Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,367\\nNotafish\\n\\n13\\n00:00:19,404 --> 00:00:21,130\\nSie wissen, «not a fish»\\n(kein Fisch)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,293 --> 00:00:23,785\\nMein Benutzername ist Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nMein Benutzername ist Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama; es ist ein Anagramm\\nmeines echten Namens Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nMein Benutzername ist Steven Walling,\\nund das ist mein echter Name\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\nMein Benutzername ist Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nMein Benutzername ist Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nMein Name ist Jdforrester\\nund ich bearbeite Wikipedia.',\n", + " 'bytes': 1550,\n", + " 'sha1': 'qkddsgfvb2cwrdetk227r7fk6g2cbd4',\n", + " 'parent_id': 44427777,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44726100,\n", + " 'timestamp': '2010-10-05T17:27:31Z',\n", + " 'user': {'id': 5602, 'text': 'Geraki'},\n", + " 'page': {'id': 11571582,\n", + " 'title': 'Nice People MEDIUM.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Undo revision 44726082 by [[Special:Contributions/Geraki|Geraki]] ([[User talk:Geraki|talk]])',\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 If you have knowledge, why you must keep it by yourself?\\n\\n2 00:00:04,249 --> 00:00:07,174 You must share it! I think.\\n\\n3 00:00:07,174 --> 00:00:10,031 I like that the purpose of this website\\n\\n4 00:00:10,031 --> 00:00:15,325 didn’t say \"website\", didn’t say \"Wiki\", didn’t say \"Internet\",\\n\\n5 00:00:15,325 --> 00:00:17,113 it just said \"Free knowledge,\\n\\n6 00:00:17,113 --> 00:00:19,411 for everyone, in their own language\".\\n\\n7 00:00:19,411 --> 00:00:21,548 When a community is open,\\n\\n8 00:00:21,548 --> 00:00:23,428 it’s really made of those\\n\\n9 00:00:23,428 --> 00:00:25,936 who dare take the invitation.\\n\\n10 00:00:25,936 --> 00:00:27,956 And this an invitation.\\n\\n11 00:00:27,956 --> 00:00:29,535 Of course you do not have to take the invitation,\\n\\n12 00:00:29,535 --> 00:00:31,439 but there is an invitation out there\\n\\n13 00:00:31,439 --> 00:00:32,879 in an \"Edit\" button to say\\n\\n14 00:00:32,879 --> 00:00:37,709 \"Come, be part, what you know is as important as what we know\".\\n\\n15 00:00:37,709 --> 00:00:40,472 You know you are giving education to people,\\n\\n16 00:00:40,472 --> 00:00:43,026 and not just any people but the whole world.\\n\\n17 00:00:43,026 --> 00:00:47,113 So I feel great by contributing to an encyclopaedia\\n\\n18 00:00:47,113 --> 00:00:51,455 that is accessible to virtually everyone in the whole world.\\n\\n19 00:00:51,455 --> 00:00:55,286 It’s just making yourself happy by helping others, that’s it.\\n\\n20 00:00:55,286 --> 00:00:57,283 Because I want to be happy, I help others.\\n\\n21 00:00:57,283 --> 00:01:00,650 You’re working together with so many different people\\n\\n22 00:01:00,650 --> 00:01:04,156 from so many different cultures, and it’s just amazing.\\n\\n23 00:01:04,156 --> 00:01:06,501 The thing about it, for me, what it’s really about,\\n\\n24 00:01:06,501 --> 00:01:08,754 it’s just really sweet people.\\n\\n25 00:01:08,754 --> 00:01:10,890 You know, we got all those really sweet people\\n\\n26 00:01:10,890 --> 00:01:14,466 who are just [taking] online and they’re typing,\\n\\n27 00:01:14,466 --> 00:01:16,231 and instead of yelling at each other\\n\\n28 00:01:16,231 --> 00:01:18,437 or just having a conversation\\n\\n29 00:01:18,437 --> 00:01:20,875 or reading about gossip or whatever,\\n\\n30 00:01:20,875 --> 00:01:22,198 they’re trying to build something\\n\\n31 00:01:22,198 --> 00:01:23,707 that everybody else will find useful.\\n\\n32 00:01:23,707 --> 00:01:26,029 I just think it’s really sweet, really nice people.',\n", + " 'bytes': 2469,\n", + " 'sha1': 'mvplph3ar5zqqug3gfygoug3w0gisfo',\n", + " 'parent_id': 44726082,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44509310,\n", + " 'timestamp': '2010-09-30T03:57:02Z',\n", + " 'user': {'id': 26548, 'text': 'Coyau'},\n", + " 'page': {'id': 11571946,\n", + " 'title': 'Nice People MEDIUM.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:01,000 --> 00:00:04,000 Si vous avez des connaissances, pourquoi devriez-vous les garder pour vous ?\\n\\n2 00:00:04,000 --> 00:00:07,000 Vous devez les partager ! Je pense.\\n\\n3 00:00:07,000 --> 00:00:10,000 J’aime que le but de ce site web\\n\\n4 00:00:10,000 --> 00:00:15,000 ne dise pas « site web », ne dise pas « Wiki », ne dise pas « Internet »,\\n\\n5 00:00:15,000 --> 00:00:17,000 il dit juste « La connaissance libre,\\n\\n6 00:00:17,000 --> 00:00:19,000 pour tout le monde, dans sa langue. »\\n\\n7 00:00:19,000 --> 00:00:21,000 Lorsqu’une communauté est ouverte,\\n\\n8 00:00:21,000 --> 00:00:23,000 elle est composée de ceux\\n\\n9 00:00:23,000 --> 00:00:25,000 qui ont osé prendre une invitation.\\n\\n10 00:00:25,000 --> 00:00:27,000 Et c’est une invitation.\\n\\n11 00:00:27,000 --> 00:00:29,000 Bien entendu, vous n’êtes pas obligé de prendre l’invitation,\\n\\n12 00:00:29,000 --> 00:00:31,000 mais il y a une invitation\\n\\n13 00:00:31,000 --> 00:00:32,000 dans le bouton « Modifier » pour dire\\n\\n14 00:00:32,000 --> 00:00:37,000 « Venez, participez, ce que vous savez est aussi important que ce que nous savons ».\\n\\n15 00:00:37,000 --> 00:00:40,000 Vous savez que vous instruisez des personnes,\\n\\n16 00:00:40,000 --> 00:00:43,000 et pas n’importe-quelle personne, mais le monde entier.\\n\\n17 00:00:43,000 --> 00:00:47,000 Donc ça me plaît de contribuer à une encyclopédie\\n\\n18 00:00:47,000 --> 00:00:51,000 qui est potentiellement accessible par tout le monde, dans le monde entier.\\n\\n19 00:00:51,000 --> 00:00:55,000 Il s’agit juste de vous rendre heureux en aidant les autres, tout simplement.\\n\\n20 00:00:55,000 --> 00:00:57,000 Parce-que je veux être heureux, j’aide les autres.\\n\\n21 00:00:57,000 --> 00:01:00,000 Vous travaillez avec tant de personnes différentes\\n\\n22 00:01:00,000 --> 00:01:04,000 de tant de cultures différentes, et c’est simplement génial.\\n\\n23 00:01:04,000 --> 00:01:06,000 Ce dont il s’agit, à mon sens,\\n\\n24 00:01:06,000 --> 00:01:08,000 c’est simplement des gens vraiment sympa.\\n\\n25 00:01:08,000 --> 00:01:10,000 Nous avons tous ces gens sympa\\n\\n26 00:01:10,000 --> 00:01:14,000 qui vont sur internet, et tapent au clavier,\\n\\n27 00:01:14,000 --> 00:01:16,000 et au lieu de se disputer,\\n\\n28 00:01:16,000 --> 00:01:18,000 ou de simplement discuter\\n\\n29 00:01:18,000 --> 00:01:20,000 ou d’aller lire les ragots, ou autre,\\n\\n30 00:01:20,000 --> 00:01:22,000 ils essayent de construire quelque-chose\\n\\n31 00:01:22,000 --> 00:01:23,000 que tout le monde trouvera utile.\\n\\n32 00:01:23,000 --> 00:01:26,000 Je trouve simplement cela très gentil, des gens vraiment sympa.',\n", + " 'bytes': 2606,\n", + " 'sha1': 'bumnji2pvcpf333w23mukzf1at3o8u6',\n", + " 'parent_id': 44257454,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 652373664,\n", + " 'timestamp': '2022-04-27T23:52:56Z',\n", + " 'user': {'text': '41.220.151.111'},\n", + " 'page': {'id': 11576180,\n", + " 'title': 'Edit Button.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nThere’s an \"edit\" button\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nJust click on it,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nfind the place where the text is, and edit\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nand then click \"Save\". It’s that easy.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nThe cool thing about Wikipedia,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nis that you can change things.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nYou don’t need anybody’s permission\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nand it’s not hard.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nIt looks a little bit daunting at first,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nbut it’s really not hard\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nPeople don’t realise, as though it’s some sort of blindness.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nPeople read articles and they don’t see the \"edit\" button.\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nClick on that button, and see what happens.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Edit.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nWhen you open yourself to something,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nand you go and start editing,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nall kinds of other things can happen,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nand that’s really beautiful.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nLike, it can be just a starting point,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nit’s an invitation for more life, somehow.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nWhenever we start an article, we don’t like it,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nbecause you find it ugly.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nBut wait just... hours\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nand see how it will be developed to a great article.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nThe \"edit\" button: click it, and change something,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nsave page, you have made a difference to the whole world.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Save\". merci',\n", + " 'bytes': 1901,\n", + " 'sha1': 'ft9k0zl4s2ne85r0pzwijl5julf80xz',\n", + " 'parent_id': 651420682,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 362462907,\n", + " 'timestamp': '2019-08-18T09:51:43Z',\n", + " 'user': {'id': 2073340, 'text': 'Jdx'},\n", + " 'page': {'id': 11576291,\n", + " 'title': 'Edit Button.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/2A02:A03F:6941:5200:392E:146D:D799:2F4D|2A02:A03F:6941:5200:392E:146D:D799:2F4D]] ([[User talk:2A02:A03F:6941:5200:392E:146D:D799:2F4D|talk]]) to last revision by Maurilbert',\n", + " 'text': '\\ufeff1\\n00:00:01,114 --> 00:00:02,414\\nIl y a un bouton « modifier ».\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nIl suffit de cliquer dessus,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nde trouver l’emplacement du texte, de le modifier,\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\net ensuite de cliquer « Publier ». C’est aussi simple que ça.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nLe truc super avec Wikipédia,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nc’est qu’on peut le modifier.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nPas besoin de demander l’autorisation à quelqu’un,\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\net ce n’est pas difficile.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nÇa semble un peu intimidant au début,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nmais ce n’est vraiment pas difficile.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nLes gens ne se rendent pas compte, comme s’ils avaient des œillères.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nIls lisent les articles et ne voient pas le bouton « modifier » .\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nCliquez sur le bouton, et voyez ce qui se passe !\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n« Modifier. »\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nQuand on s’ouvre comme ça sur le monde,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\net qu’on commence à modifier une page,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nc’est le début d’une aventure,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\net c’est ça qui est vraiment formidable.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nComme si ce n’était qu’un premier pas,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nc’est une invitation à vivre plus, d’une certaine manière.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nÀ chaque fois qu’on crée un article, on n’est pas satisfait,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nparce qu’on le trouve moche.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nMais il suffit d’attendre\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\net voyez comment il se transforme en un super article.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nLe bouton « modifier » : cliquez, changez quelque chose,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\npubliez la page, et vous avez apporté une contribution au monde entier.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n« Publier ».',\n", + " 'bytes': 2131,\n", + " 'sha1': 'sckh0alh2gy787671abjqczbj0545yj',\n", + " 'parent_id': 358734312,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44298190,\n", + " 'timestamp': '2010-09-24T19:31:32Z',\n", + " 'user': {'id': 62367, 'text': 'Spiritia'},\n", + " 'page': {'id': 11583031,\n", + " 'title': 'Nice People MEDIUM.ogv.bg.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 Ако разполагате със знания, защо трябва да ги държите само за себе си?\\n\\n2 00:00:04,249 --> 00:00:07,174 Трябва да ги споделяте! Така смятам.\\n\\n3 00:00:07,174 --> 00:00:10,031 Харесва ми, че целта на този уебсайт\\n\\n4 00:00:10,031 --> 00:00:15,325 не е да се нарича \"уебсайт\", нито \"уики\", нито \"интернет\",\\n\\n5 00:00:15,325 --> 00:00:17,113 той просто казва \"Свободно знание,\\n\\n6 00:00:17,113 --> 00:00:19,411 за всеки човек, на собствения му език\".\\n\\n7 00:00:19,411 --> 00:00:21,548 Когато една общност е отворена,\\n\\n8 00:00:21,548 --> 00:00:23,428 тя наистина се състои от тези,\\n\\n9 00:00:23,428 --> 00:00:25,936 които се осмелят да приемат поканата.\\n\\n10 00:00:25,936 --> 00:00:27,956 А Уикипедия е покана.\\n\\n11 00:00:27,956 --> 00:00:29,535 Естествено, не сте длъжни да приемате поканата,\\n\\n12 00:00:29,535 --> 00:00:31,439 но поканата е отправена към вас\\n\\n13 00:00:31,439 --> 00:00:32,879 с бутона \"Редактиране\", който казва\\n\\n14 00:00:32,879 --> 00:00:37,709 \"Елате, присъединете се. Това, което вие знаете, е също толкова важно като това, което знаем ние\".\\n\\n15 00:00:37,709 --> 00:00:40,472 Да знаеш, че даваш образование на хората,\\n\\n16 00:00:40,472 --> 00:00:43,026 и не просто на някакви хора, а на целия свят.\\n\\n17 00:00:43,026 --> 00:00:47,113 Чувствам се страхотно, че допринасям към една енциклопедия,\\n\\n18 00:00:47,113 --> 00:00:51,455 която е достъпна за практически всеки човек на света.\\n\\n19 00:00:51,455 --> 00:00:55,286 Да си даряваш щастие, докато помагаш на другите, това е то.\\n\\n20 00:00:55,286 --> 00:00:57,283 И защото аз искам да бъда щастлив, помагам на другите.\\n\\n21 00:00:57,283 --> 00:01:00,650 Да работиш заедно с толкова много различни хора,\\n\\n22 00:01:00,650 --> 00:01:04,156 хора от толкова много различни култури - това е просто изумително.\\n\\n23 00:01:04,156 --> 00:01:06,501 Това, което има значение според мен, това, което наистина има значение,\\n\\n24 00:01:06,501 --> 00:01:08,754 са всички тези страхотни хора.\\n\\n25 00:01:08,754 --> 00:01:10,890 Знаете ли, имаме толкова много наистина готини хора\\n\\n26 00:01:10,890 --> 00:01:14,466 които просто са онлайн и пишат\\n\\n27 00:01:14,466 --> 00:01:16,231 и които вместо да си крещят един другиму\\n\\n28 00:01:16,231 --> 00:01:18,437 или просто да си говорят\\n\\n29 00:01:18,437 --> 00:01:20,875 или да четат клюки или каквото и да било друго,\\n\\n30 00:01:20,875 --> 00:01:22,198 те се опитват да изградят нещо,\\n\\n31 00:01:22,198 --> 00:01:23,707 което всеки друг да намери за полезно.\\n\\n32 00:01:23,707 --> 00:01:26,029 Мисля, че това са наистина сладки, наистина чудесни хора.',\n", + " 'bytes': 3720,\n", + " 'sha1': 'r3aezfogoog04v1h3x8qk78r6mls27v',\n", + " 'parent_id': 44298165,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601722350,\n", + " 'timestamp': '2021-10-24T14:58:06Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11583189,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and probably the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,639\\nMoja nazwa użytkownika \\no Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,313 --> 00:00:10,291\\nMoja nazwa użytkownika to Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,503\\nBücherwürmlein to\\n\\n8\\n00:00:11,553 --> 00:00:13,999\\nw języku niemieckim zdrobnienie\\nod mola książkowego\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nTo Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\npo prostu: «not-a-fish»\\n(«nie ryba»)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,293 --> 00:00:23,785\\nMoja nazwa użytkownika to Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nMoja nazwa użytkownika to Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,441\\nwittylama, to anagram mojego\\nprawdziwego mienia i nazwiska Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,240\\nRajeshPandey\\n\\n22\\n00:00:33,290 --> 00:00:36,891\\nMoja nazwa użytkownika to Steven Walling,\\nczyli moje prawdziwe imię i nazwisko\\n\\n23\\n00:00:36,911 --> 00:00:38,531\\nMoja nazwa użytkownika to Waldir\\n\\n24\\n00:00:38,551 --> 00:00:40,897\\nMoja nazwa użytkownika to Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nNazywam się Jdforrester\\ni edytuję Wikipedię',\n", + " 'bytes': 1602,\n", + " 'sha1': 'q33azf8nvue815qh5bdm01t9dcxl6y3',\n", + " 'parent_id': 44326653,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44301598,\n", + " 'timestamp': '2010-09-24T21:34:24Z',\n", + " 'user': {'id': 45724, 'text': 'Leinad'},\n", + " 'page': {'id': 11584012,\n", + " 'title': 'Edit Button.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nIstnieje przycisk \"edytuj\"\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nPo prostu kliknij go,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nznajdź miejsce gdzie jest tekst i zacznij go modyfikować,\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\na następnie kliknij \"Zapisz\". To jest łatwe.\\n\\n5\\n00:00:09,752 --> 00:00:12,236\\nNajlepszą rzeczą w Wikipedii jest to, że można coś zmienić.\\n\\n6\\n00:00:12,236 --> 00:00:15,325\\nNie potrzebujesz nikogo zgody i nie jest to trudne.\\n\\n7\\n00:00:15,325 --> 00:00:19,829\\nNa początku wygląda to na trochę trudne, ale tak naprawdę nie jest trudne.\\n\\n8\\n00:00:19,829 --> 00:00:23,777\\nLudzie nie zdają sobie sprawy, to jest tak jakby swego rodzaju ślepota.\\n\\n9\\n00:00:23,777 --> 00:00:27,585\\nLudzie czytają artykuły i nie widzą przycisku \"edytuj\".\\n\\n10\\n00:00:27,585 --> 00:00:29,721\\nKliknij na ten przycisk i zobacz co się stanie.\\n\\n11\\n00:00:29,721 --> 00:00:31,625\\n[edytuj]\\n\\n12\\n00:00:31,625 --> 00:00:34,040\\nWhen you open yourself to something,\\n\\n13\\n00:00:34,040 --> 00:00:35,433\\nand you go and start editing,\\n\\n14\\n00:00:35,433 --> 00:00:38,289\\nall kinds of other things can happen,\\n\\n15\\n00:00:38,289 --> 00:00:40,124\\nand that’s really beautiful.\\n\\n16\\n00:00:40,124 --> 00:00:41,679\\nLike, it can be just a starting point,\\n\\n17\\n00:00:41,679 --> 00:00:45,139\\nit’s an invitation for more life, somehow.\\n\\n18\\n00:00:45,139 --> 00:00:48,018\\nGdy zaczynamy pisać nowy artykuł, nie lubimy tego,\\n\\n19\\n00:00:48,018 --> 00:00:49,597\\nponieważ na początku wygląda niedoskonale.\\n\\n20\\n00:00:49,597 --> 00:00:53,614\\nAle po prostu poczekaj... godziny\\n\\n21\\n00:00:53,614 --> 00:00:56,842\\ni zobaczysz jak będzie powstawać doskonały artykuł.\\n\\n22\\n00:00:56,842 --> 00:00:59,396\\nPrzycisk \"edytuj\": kliknij go i zmień coś,\\n\\n23\\n00:00:59,396 --> 00:01:02,043\\nzapisz stronę. Dokonałeś edycji, którą może zobaczyć cały świat.\\n\\n24\\n00:01:02,043 --> 00:01:04,203\\n\"Zapisz\"',\n", + " 'bytes': 1886,\n", + " 'sha1': 'kwht5rqjpd752hw45n5szxei19t8rtt',\n", + " 'parent_id': 44301531,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 191049348,\n", + " 'timestamp': '2016-03-23T11:36:01Z',\n", + " 'user': {'id': 62513, 'text': 'Túrelio'},\n", + " 'page': {'id': 11585089,\n", + " 'title': 'Great Feeling.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/119.160.116.156|119.160.116.156]] ([[User talk:119.160.116.156|talk]]) to last revision by Eloquence',\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nErr, no, I don\\'t have superpowers.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nAt all. No.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nYou can totally do it.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nI pushed the button,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nand saved the text,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWooooo!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nIt was... exciting.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nYou just changed Wikipedia,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nyou just added your own contribution to Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nI read an article in the \"Guardian\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nabout this online encyclopedia\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nwhich everybody can contribute to\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nand I said, \"Wow!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Maybe I can contribute as well!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nI edited the first time\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nand I think I got addicted to it.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nI don\\'t get paid anything\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nI just do it for, you know,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nsomething to do in my free time, that\\'s it.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nYou may start doing it for an idea,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nbecause you believe in it,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nbut you end up with friends,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nyou end up with lovers,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nyou end up with wonderful discussions,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nyou end up with new ideas,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nyou end up with new books you\\'re gonna write...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nYou\\'re not writing the article alone.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nYou write a piece,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nand somebody else goes like:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hey, I have more!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nand together you can create\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\narticles that are pages long,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nwhich you can\\'t by yourself.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nThen you have success.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nYou always see, \"Ok, what I\\'ve done was successful.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nand this is wonderful.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nThis is great,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nbecause, editing is a great feeling.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nEvery time you do it.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nI have to say,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nwhen I read about Wikipedia,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nI decided\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"This is maybe where I would fit in\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nAnd I did.',\n", + " 'bytes': 2711,\n", + " 'sha1': 'hv8gw2w2b0swnc0q0g4rue2ih3nq39g',\n", + " 'parent_id': 191049178,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44406158,\n", + " 'timestamp': '2010-09-27T13:35:44Z',\n", + " 'user': {'id': 45724, 'text': 'Leinad'},\n", + " 'page': {'id': 11586910,\n", + " 'title': 'Great Feeling.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nYyy, nie, nie posiadam żadnej super mocy.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nW żadnym wypadku. Nie.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nMożesz to wszystko zrobić.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nNacisnęłam przycisk\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\ni zapisałam tekst.\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWooooo!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nTo było... ekscytujące.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nWłaśnie zmodyfikowałeś Wikipedię,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nwłaśnie dodałeś swój wkład do Wikipedii.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nPrzeczytałam artykuł w \"Guardianie\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nna temat encyklopedii online,\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nktórą każdy może edytować\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\ni powiedziałam, \"Wow!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Może ja także mogę edytować!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nWykonałem po raz pierwszy edycję\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\ni myślę sobie, że uzależniłem się od tego.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nNikt mi za to nie płaci.\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nPo prostu robię to,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nżeby zająć się czymś w wolnym czasie.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nMożesz zacząć robić to dla idei,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nponieważ wierzysz w to,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nale w wyniku tego zyskasz przyjaciół,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nzyskasz wielbicieli,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nbędziesz uczestniczyć we wspaniałych dyskusjach,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nzyskasz nowe pomysły,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nzaowocuje to nowymi książkami, które zamierzasz napiasć...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nNie piszesz samemu artykułu.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nTy piszesz część,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\na ktoś inny zauważa:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hej, ja mogę napisać więcej!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\ni w taki sposób wspólnie możecie stworzyć artykuł\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nzajmujący wiele stron,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nktórego nie udałoby się stworzyć Tobie samodzielnie.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nWtedy osiągasz sukces.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nZawsze widzisz: \"Ok, to co zrobiłem, powiodło się.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\ni to jest cudowne.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nTo jest super,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nponieważ edytowanie jest wspaniałym uczuciem.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nZa każdym razem kiedy to robisz.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nMuszę powiedzieć,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nże kiedy czytałam na temat Wikipedii,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nto postanowiłam\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"To może być miejsce, do którego chciałbym dołączyć.\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nTak też się stało.',\n", + " 'bytes': 2935,\n", + " 'sha1': 'mzsq1znczd5kijooefs8du025gk2f19',\n", + " 'parent_id': 44309742,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601705966,\n", + " 'timestamp': '2021-10-24T13:58:53Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11588246,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'small additional changes',\n", + " 'text': '1\\n00:00:00,738 --> 00:00:02,617\\nMi nombre de usuario\\nes Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,019 --> 00:00:05,160\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,192\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nMi nombre de usuario es Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein es\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\nratón de biblioteca en alemán\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nEs Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\ntú sabes: « not a fish »\\n[no un pez]\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,391 --> 00:00:23,785\\nMi nombre de usuario es Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nMi nombre de usuario es Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,213\\nwittylama, es un anagrama\\nde mi nombre real Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nMi nombre de usuario es Steven Walling,\\nese es mi nombre real\\n\\n23\\n00:00:36,874 --> 00:00:38,393\\nMi nombre de usuario es Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nMi nombre de usuario es Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nMi nombre es Jdforrester y edito Wikipedia',\n", + " 'bytes': 1522,\n", + " 'sha1': 'jja8wtlwlckhzqojl9gf2r2aolrnpre',\n", + " 'parent_id': 601592848,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 200319881,\n", + " 'timestamp': '2016-06-30T10:28:07Z',\n", + " 'user': {'id': 62416, 'text': 'Máté'},\n", + " 'page': {'id': 11589314,\n", + " 'title': 'Great Feeling.ogv.hu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nÖö, nem, nincsenek emberfeletti képességeim.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nEgyáltalán nincsenek.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nTe is simán megteheted.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nMegnyomtam a gombot\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nés elmentettem a szöveget\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nHúúúúú!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nEz... izgalmas volt.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nTe épp megváltoztattad a Wikipédiát.\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nhozzáadtad a saját közreműködésed a Wikipédiához.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nOlvastam egy cikket a Guardianben\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nerről az online enciklopédiáról\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\namit bárki szerkeszthet\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nés azt mondtam, „Hű!”\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n„Talán én is szerkeszthetném!”\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nElőször szerkesztettem\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nés azt hiszem függő lettem.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nNem kapok érte pénzt\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nCsak azért csinálom, hogy\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\ntegyek valamit a szabadidőmben.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nLehet, hogy egy eszméért kezded el,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nmert hiszel benne,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nde barátokra lelsz,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nszeretőket találsz,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\ncsodás beszélgetésekben veszel részt,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\núj gondolatokra ébredsz,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nmegírandó új könyvötleteid születnek...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nNem egyedül írod a cikket.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nMegírsz egy részt\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nmire valaki más azt mondja:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n„Hé, én többet tudok!”\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nés közösen létrehozhattok\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\ntöbboldalas szócikkeket,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\namilyeneket egyedül nem tudnál.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nÉs akkor sikerült.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nMindig látod, hogy „Rendben, sikeres voltam!”\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nés ez csodás.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nEz óriási,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nmert szerkeszteni nagyszerű érzés.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nMinden egyes alkalommal.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nAzt kell mondjam,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\namikor a Wikipédiáról olvastam\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nelhatároztam,\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n„Talán ide illek én is”\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nÉs valóban.',\n", + " 'bytes': 2754,\n", + " 'sha1': 'rx4rh23s17pd5h1nkswj4w4rdvho1cd',\n", + " 'parent_id': 44504696,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44325168,\n", + " 'timestamp': '2010-09-25T12:12:43Z',\n", + " 'user': {'id': 192538, 'text': 'Itzike'},\n", + " 'page': {'id': 11589662,\n", + " 'title': 'Edit Button.ogv.he.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\ufeff1\\n00:00:01,114 --> 00:00:02,414\\nיש כפתור \"עריכה\" \\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nרק תלחצו עליו\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nתמצאו את המקום בו הטקסט מופיע, תערכו\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nולאחר מכן לחצו על \"שמירה\". זה כל כך פשוט.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nהדבר המגניב בוויקיפדיה,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nהוא שאתה יכול לשנות דברים.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nאתה לא צריך אישור מאף אחד.\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nוזה לא קשה.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nזה נראה קצת מרתיע בהתחלה,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nאבל זה באמת לא קשה.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nאנשים לא מבינים, או לפעמים לא שמים לב\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nאנשים קוראים את הערכים ולא רואים את כפתור ה\"עריכה\"\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nתלחצו עליו, ותראו מה קורה\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"עריכה.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nכשאתה פותח את עצמך למשהו\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nוהולך ומתחיל לערוך\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nכל מיני דברים יכולים לקרות\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nוזה באמת מדהים.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nLike, it can be just a starting point,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nit’s an invitation for more life, somehow.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nכל פעם שאנחנו מתחילים ערך חדש, אנחנו לא אוהבים אותו\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nבגלל שאתה יכול למצוא אותו מכוער.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nאבל פשוט... חכו כמה שעות\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nוראו איך הוא מתפתח למאמר גדול\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nכפתור ה\"עריכה\", לחצו עליו, ושנו משהו\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nשמרו את הדף, וראו איך עשיתם שינוי שישפיע על העולם כולו.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"שמור\".',\n", + " 'bytes': 2223,\n", + " 'sha1': 'kfi3mrpduk1ep8dpnumj2j9vgc9tkgk',\n", + " 'parent_id': 44325060,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44327279,\n", + " 'timestamp': '2010-09-25T13:10:53Z',\n", + " 'user': {'id': 858245, 'text': 'Indiralena'},\n", + " 'page': {'id': 11590178,\n", + " 'title': 'Nice People MEDIUM.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,300 --> 00:00:04,249 Si posees conocimientos, ¿Por qué quedártelos sólo para tí? 2 00:00:04,249 --> 00:00:07,174 ¡Deberías compartirlo! Eso es l...'\",\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 Si posees conocimientos, ¿Por qué quedártelos sólo para tí?\\n\\n2 00:00:04,249 --> 00:00:07,174 ¡Deberías compartirlo! Eso es lo que yo creo.\\n\\n3 00:00:07,174 --> 00:00:10,031 Me gusta que el propósito de este sitio web\\n\\n4 00:00:10,031 --> 00:00:15,325 no sea \"sitio web\". no sea \"Wiki\", no sea \"Internet\".\\n\\n5 00:00:15,325 --> 00:00:17,113 Es simplemente \"Conocimiento libre,\\n\\n6 00:00:17,113 --> 00:00:19,411 para todos, en su propio idioma\".\\n\\n7 00:00:19,411 --> 00:00:21,548 Cuando se abre una comunidad,\\n\\n8 00:00:21,548 --> 00:00:23,428 realmente se compone de aquellos\\n\\n9 00:00:23,428 --> 00:00:25,936 que se atreven a aceptar la invitación.\\n\\n10 00:00:25,936 --> 00:00:27,956 Y esta es una invitación.\\n\\n11 00:00:27,956 --> 00:00:29,535 Por supuesto, no tiene que aceptar esta invitación,\\n\\n12 00:00:29,535 --> 00:00:31,439 pero allá afuera hay una invitación\\n\\n13 00:00:31,439 --> 00:00:32,879 es un botón \"Editar\" que te dice\\n\\n14 00:00:32,879 --> 00:00:37,709 \"Ven, sé parte de esto. Lo que sabes importa tanto como lo que sabemos nosotros\".\\n\\n15 00:00:37,709 --> 00:00:40,472 Sabes que estás dando educación a la gente,\\n\\n16 00:00:40,472 --> 00:00:43,026 y no a cualquier gente, sino al mundo entero.\\n\\n17 00:00:43,026 --> 00:00:47,113 Así, yo me siento fantásticamente al contribuir con una enciclopedia\\n\\n18 00:00:47,113 --> 00:00:51,455 que es accesible a prácticamente todo el mundo.\\n\\n19 00:00:51,455 --> 00:00:55,286 Es simplemente ser feliz al ayudar a otros. Eso es todo.\\n\\n20 00:00:55,286 --> 00:00:57,283 Como quiero ser feliz, ayudo a otros.\\n\\n21 00:00:57,283 --> 00:01:00,650 Estás trabajando con tanta gente diferente\\n\\n22 00:01:00,650 --> 00:01:04,156 de tantas culturas diferentes... y eso es simplemente increíble.\\n\\n23 00:01:04,156 --> 00:01:06,501 Lo que tiene esto, para mí, de lo que se trata realmente,\\n\\n24 00:01:06,501 --> 00:01:08,754 es de que es sólo gente fantástica.\\n\\n25 00:01:08,754 --> 00:01:10,890 ¿Sabes? Tenemos a toda esta gente fantástica\\n\\n26 00:01:10,890 --> 00:01:14,466 quienes están conectados, en línea, tecleando\\n\\n27 00:01:14,466 --> 00:01:16,231 y en vez de estar gritándose entre ellos,\\n\\n28 00:01:16,231 --> 00:01:18,437 o simplemente conversando\\n\\n29 00:01:18,437 --> 00:01:20,875 o leyendo banalidades o lo que sea,\\n\\n30 00:01:20,875 --> 00:01:22,198 están intentando construir algo\\n\\n31 00:01:22,198 --> 00:01:23,707 que todos los demás encontrarán útil.\\n\\n32 00:01:23,707 --> 00:01:26,029 Creo que es gente fantástica. Realmente buena.',\n", + " 'bytes': 2534,\n", + " 'sha1': '932ltfnjyig2n40i4t9diomyw3hcctd',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45137177,\n", + " 'timestamp': '2010-10-16T22:51:07Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 11590256,\n", + " 'title': 'Edit Button.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'added new lines ( srt compatible formating )',\n", + " 'text': '\\ufeff1\\n00:00:01,114 --> 00:00:02,414 \\nHay un botón \"editar\".\\n\\n2\\n00:00:02,530 --> 00:00:03,830 \\nSimplemente haz clic sobre él,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nencuentra el texto, edítalo\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\ny luego haz clic en \"Guardar\". Es así de fácil.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nLo bueno de Wikipedia\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nes que puedes cambiar cosas.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nNo necesitas permiso de nadie\\n\\n8\\n00:00:14,066 --> 00:00:15,32\\ny es muy fácil.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nAl principio puede parecer un poco intimidante,\\n\\n10\\n00:00:17,809 --> 00:00:19,82\\npero es realmente fácil.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nLa gente no lo nota. Es como si fuera una especie de ceguera.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nLa gente lee artículos y no ve el botón de \"editar\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nHaz clic sobre ese botón y mira qué ocurre.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Editar.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nCuando te abres a algo nuevo\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\ny empiezas a editar,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\npueden ocurrir cosas de todo tipo\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\ny es una experiencia realmente bonita.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nEs como, más que un simple inicio\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nde alguna manera, es una invitación a más vida.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nCada vez que empezamos un artículo, no nos gusta\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nporque lo encontramos feo.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nPero espera... unas horas\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\ny lo verás convertirse en un gran artículo.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nEl botón \"editar\": Haz clic sobre él, cambia algo,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nguarda la página, y habrás hecho diferencia en el mundo.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Guardar\".',\n", + " 'bytes': 1870,\n", + " 'sha1': '8wz32286gvq3p5016tn2b9x6vgp6na1',\n", + " 'parent_id': 44709917,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 180571856,\n", + " 'timestamp': '2015-11-29T15:34:00Z',\n", + " 'user': {'text': '119.30.39.160'},\n", + " 'page': {'id': 11593546,\n", + " 'title': 'Edit Button.ogv.br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\ufeff1\\n00:00:01,114 --> 00:00:02,414\\nUr bouton \"kemmañ\" zo.\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nTrawalc\\'h eo klikañ warnañ,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nkavout lec\\'h an destenn ha degas kemmoù enni,\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\ngoude-se klikañ war \"Embann\". Ken aes ha tra ez eo.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nAr pezh zo dispar gant Wikipedia,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\neo e c\\'hall bezañ cheñchet ganeomp.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nN\\'eo ket dav goulenn an aotre digant den ebet,\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nha diaes n\\'eo ket.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nE penn-kentañ e seblant bezañ un tammig luziet,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nmet e gwirionez n\\'eo ket tamm ebet.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nAn dud n\\'en em rentont ket kont, evel pa vefent dall.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nLenn a reont ar pennadoù ha ne welont ket ar bouton \"kemmañ\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nKlikit war ar bouton ha gwelit ar pezh a c\\'hoarvez !\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Kemmañ\".\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nP\\'en em zigorer war ar bed evel-se,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nha pa groger da zegas kemmoù en ur bajenn,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nemeur e penn-kentañ un avantur vras,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nha setu aze dres ar pezh zo dedennus.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nE-giz pa vefe ur c\\'hammed kentañ,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nur bedadenn da vevañ kreñvoc\\'h, en ur mod all.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nBep tro ma saver ur pennad e vezer dipitet,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\ndivalav e kaver anezhañ.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nMet trawalc\\'h gortoz ur frapadig\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nha sellit penaos en em dro da vezañ ur pezh pennad dedennus.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nAr bouton \"kemmañ\" : klikit ha kemmit un dra bennak,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nEnrollit ar bajenn, ha deggjdvsytaset hoc\\'h eus un dra bennak d\\'ar bed a-bezh.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Enrollañ\".',\n", + " 'bytes': 2022,\n", + " 'sha1': 's1yyux15bb439oripha06u8216o8q0z',\n", + " 'parent_id': 44717671,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44361618,\n", + " 'timestamp': '2010-09-26T13:05:23Z',\n", + " 'user': {'id': 71200, 'text': 'Lloffiwr'},\n", + " 'page': {'id': 11600086,\n", + " 'title': 'Edit Button.ogv.sw.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'change pace',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nKipo kitufe cha \"hariri\".\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nBonyeza kitufe tu,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\ntafuta mahali panapopatikana maandishi, uyabadilishe,\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nhalafu bonyeza \"Hafadhi ukurasa\". Ni rahisi tu.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nUzuri wa Wikipedia ni kwamba\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nunaweza kubadilisha yaliyomo.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nHakuna haja ya kuomba ruhusa\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nna si ngumu.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nInaweza kuonekana kwamba ni ngumu,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nlakini si ngumu kwa kweli.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nWengine hawajagundua hiyo.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nWanasoma makala lakini hawaoni kitufe cha \"hariri\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nBonyeza tu kitufe kile, na angalia itakavyotokea.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Hariri.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nUtakapokuwa tayari kuthubutu kitu kipya,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nna unaanza kuhariri,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nmambo mengine mazuri yanaweza kufuatana nayo.\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nYaani, kuanza kuhariri\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nkunaweza kuwa\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nkianzio cha kupanua maisha yako.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nMakala inapoanzwa, mara\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nnyingi haipendezi.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nLakini ukisubiri tu, utaona kwamba\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nitazidi kuwa makala nzuri.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nBonyeza kitufe cha \"hariri\", na utabadilisha mambo,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nhifadhi ukurasa ule, na umefanya kitu cha manufaa ya wote.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Hifadhi\".',\n", + " 'bytes': 1761,\n", + " 'sha1': '16jue4jneoi3hcptcs8em31pg255n6i',\n", + " 'parent_id': 44360788,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 637510228,\n", + " 'timestamp': '2022-03-11T09:00:39Z',\n", + " 'user': {'id': 2366229, 'text': 'Achim55'},\n", + " 'page': {'id': 11606979,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.nds.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/136.158.51.27|136.158.51.27]] ([[User talk:136.158.51.27|talk]]) to last revision by Pacha Tchernof',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\nMien Brukernaam is Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nMien Brukernaam is Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein, dat is\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\nop Düütsch en lütt Bökerworm\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nDat is Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,286\\nNotafish\\n\\n13\\n00:00:19,286 --> 00:00:21,180\\nversteihst du: „not a fish“\\n(keen Fisch)\\n\\n14\\n00:00:21,198 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,473 --> 00:00:23,785\\nMien Brukernaam is Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nMien Brukernaam is Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, dat is en Anagramm\\nvon mien echten Naam Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nMien Brukernaam is Steven Walling,\\nwat mien echten Naam is\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\nMien Brukernaam is Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nMien Brukernaam is Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nMien Naam is Jdforrester\\nun ik schriev bi Wikipedia mit',\n", + " 'bytes': 1524,\n", + " 'sha1': 'ct3vnqi5exm618j1alb3nvvqmp34foa',\n", + " 'parent_id': 637504850,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 299710275,\n", + " 'timestamp': '2018-05-04T22:26:41Z',\n", + " 'user': {'id': 789588, 'text': 'Pallerti'},\n", + " 'page': {'id': 11607178,\n", + " 'title': 'Sequence-Wikipedia Great Feeling Wikimedia Hungary.ogv.hu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nÖö, nem, nincsenek emberfeletti képességeim.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nEgyáltalán nincsenek.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nTe is simán megteheted.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nMegnyomtam a gombot\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nés elmentettem a szöveget\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nHúúúúú!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nEz... izgalmas volt.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nTe épp megváltoztattad a Wikipédiát.\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nhozzáadtad a saját közreműködésed a Wikipédiához.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nOlvastam egy cikket a Guardianben\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nerről az online enciklopédiáról\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\namit bárki szerkeszthet\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nés azt mondtam, „Hű!”\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n„Talán én is szerkeszthetném!”\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nElőször szerkesztettem\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nés azt hiszem függő lettem.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nNem kapok érte pénzt\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nCsak azért csinálom, hogy\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\ntegyek valamit a szabadidőmben.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nLehet, hogy egy eszméért kezded el,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nmert hiszel benne,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nde barátokra lelsz,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nszeretőket találsz,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\ncsodás beszélgetésekben veszel részt,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\núj gondolatokra ébredsz,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nmegírandó új könyvötleteid születnek...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nNem egyedül írod a cikket.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nMegírsz egy részt\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nmire valaki más azt mondja:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n„Hé, én többet tudok!”\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nés közösen létrehozhattok\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\ntöbboldalas szócikkeket,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\namilyeneket egyedül nem tudnál.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nÉs akkor sikerült.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nMindig látod, hogy „Rendben, sikeres voltam!”\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nés ez csodás.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nEz óriási,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nmert szerkeszteni nagyszerű érzés.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nMinden egyes alkalommal.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nAzt kell mondjam,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\namikor a Wikipédiáról olvastam\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nelhatároztam,\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n„Talán ide illek én is”\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nÉs valóban.',\n", + " 'bytes': 2754,\n", + " 'sha1': 'rx4rh23s17pd5h1nkswj4w4rdvho1cd',\n", + " 'parent_id': 44384273,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44384352,\n", + " 'timestamp': '2010-09-26T22:39:23Z',\n", + " 'user': {'id': 770, 'text': 'Slomox'},\n", + " 'page': {'id': 11607204,\n", + " 'title': 'Nice People MEDIUM.ogv.nds.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,300 --> 00:00:04,249 Wenn du wat weetst, worüm schullst du dat för di behollen? 2 00:00:04,249 --> 00:00:07,174 Du musst dat mit annere delen, dücht...'\",\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 Wenn du wat weetst, worüm schullst du dat för di behollen?\\n\\n2 00:00:04,249 --> 00:00:07,174 Du musst dat mit annere delen, dücht mi!\\n\\n3 00:00:07,174 --> 00:00:10,031 Ik mag de Idee achter disse Websteed\\n\\n4 00:00:10,031 --> 00:00:15,325 dat weer nich „Websteed“, nich „Wiki“, nich „Internett“,\\n\\n5 00:00:15,325 --> 00:00:17,113 dat weer blot „Free Weten,\\n\\n6 00:00:17,113 --> 00:00:19,411 för elkeen in sien egen Moderspraak“.\\n\\n7 00:00:19,411 --> 00:00:21,548 Wenn en Gemeenschop apen is,\\n\\n8 00:00:21,548 --> 00:00:23,428 denn tellt de,\\n\\n9 00:00:23,428 --> 00:00:25,936 de Inladen annehmt.\\n\\n10 00:00:25,936 --> 00:00:27,956 Un dit is en Inladen.\\n\\n11 00:00:27,956 --> 00:00:29,535 Nüms bruukt de Inladen antonehmen,\\n\\n12 00:00:29,535 --> 00:00:31,439 aver de Inladen is dor, kannst seggen,\\n\\n13 00:00:31,439 --> 00:00:32,879 as en Knoop, op den „Ännern“ steiht\\n\\n14 00:00:32,879 --> 00:00:37,709 „Kumm, wees dorbi, wat du weetst is jüstso veel weert as wat wi weet“.\\n\\n15 00:00:37,709 --> 00:00:40,472 Du bringst Weten an de Lüüd ran,\\n\\n16 00:00:40,472 --> 00:00:43,026 Lüüd op de ganze Welt!\\n\\n17 00:00:43,026 --> 00:00:47,113 Dat is en wunnerbor Geföhl, dat du bidriggst to en Nakieksel\\n\\n18 00:00:47,113 --> 00:00:51,455 dat so temlich elkeen op de Welt lesen kann.\\n\\n19 00:00:51,455 --> 00:00:55,286 Dat höögt een, to weten, dat een annere helpen kann.\\n\\n20 00:00:55,286 --> 00:00:57,283 Dat föhlt sik good an, dorüm help ik annere.\\n\\n21 00:00:57,283 --> 00:01:00,650 Du warkst mit so veel verschillen Lüüd tohoop\\n\\n22 00:01:00,650 --> 00:01:04,156 ut so veel verschillen Kulturn, un dat is en dulle Saak.\\n\\n23 00:01:04,156 --> 00:01:06,501 Dat besünnere för mi, wat würklich besünners is,\\n\\n24 00:01:06,501 --> 00:01:08,754 dat sünd de goden Lüüd.\\n\\n25 00:01:08,754 --> 00:01:10,890 Dor sünd all disse Lüüd\\n\\n26 00:01:10,890 --> 00:01:14,466 de online gaht un schrievt,\\n\\n27 00:01:14,466 --> 00:01:16,231 un sik nich angröhlt oder\\n\\n28 00:01:16,231 --> 00:01:18,437 blot Klöönsnack hebbt\\n\\n29 00:01:18,437 --> 00:01:20,875 oder över annere sludert,\\n\\n30 00:01:20,875 --> 00:01:22,198 de tohoop wat opboot,\\n\\n31 00:01:22,198 --> 00:01:23,707 wat annere Lüüd helpt.\\n\\n32 00:01:23,707 --> 00:01:26,029 Mi dücht, dat besünnere, dat sünd de goden un netten Lüüd.',\n", + " 'bytes': 2332,\n", + " 'sha1': 'mhsiki7gdm1tewnl8e5b5one4v3xgoh',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44385339,\n", + " 'timestamp': '2010-09-26T23:22:25Z',\n", + " 'user': {'id': 770, 'text': 'Slomox'},\n", + " 'page': {'id': 11607422,\n", + " 'title': 'Great Feeling.ogv.nds.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nNee, ik heff keen Superkräft.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nGorkeen. Nix.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nDu kannst dat ok doon.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nIk heff op den Knoop drückt,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nun den Text afspiekert,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWuuuh!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nDat weer... opregend.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nDu hest Wikipedia jüst verännert,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\ndu hest dien egen Bidrag to Wikipedia daan.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nIk heff en Artikel in’t Daagbladd leest\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\növer dit Online-Nakieksel\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nto dat elkeen sülvs bidragen kann\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nun ik heff „Wow!“ seggt\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n„Villicht kann ik dor ok wat bidragen!“\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nIk heff denn dat eerste Maal en Sied ännert\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nun ik denk, ik bün denn süchtig worrn.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nIk krieg nix betahlt\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nIk maak dat blot, weetst du,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nin mien Freetied, dat is allens.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nAnfangen deist du för en Idee,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nan de du glöövst,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\naver denn lehrst du Frünn kennen,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\ndu finnst Lüüd, de de Saak, de se doot, fördull geern maakt,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\ndu finnst wunnerbore Diskuschonen,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\ndu lehrst ne’e Ideen kennen,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\ndu kummst bi un schriffst ne’e Böker...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\ndu schriffst de Artikels nich alleen.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nDu schriffst en Stück,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nun en annern kummt dor denn langs un seggt:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n„Süh, dor weet ik ok wat to!“\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nun tohoop stellt ji den Artikels op de Been\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nde siedenlang sünd,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nwat du alleen gornich schaffen kunnst.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nUn denn geiht dat stüttig.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nDu süst denn, „Okay, wat ik daan heff, dor heff ik Spood mit hatt.“\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nun dat is en wunnerbore Saak.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nDat is wunnerbor,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\ndenn Artikels schrieven is en good Geföhl.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nElk Maal wedder.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nIk mutt seggen,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nas ik von Wikipedia leest heff,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nheff ik mi seggt\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n„Villicht passt dat ok för mi“\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nUn so weer dat ok.',\n", + " 'bytes': 2896,\n", + " 'sha1': '63q7vyxnf6l2x8dmzl6qp947o203g3k',\n", + " 'parent_id': 44385297,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44385627,\n", + " 'timestamp': '2010-09-26T23:36:47Z',\n", + " 'user': {'id': 770, 'text': 'Slomox'},\n", + " 'page': {'id': 11607475,\n", + " 'title': 'Edit Button.ogv.nds.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:01,114 --> 00:00:02,414 Dat gifft en Knoop „Ännern“ 2 00:00:02,530 --> 00:00:03,830 Dor klickst du op, 3 00:00:03,830 --> 00:00:06,664 geihst na ...'\",\n", + " 'text': '\\ufeff1\\n00:00:01,114 --> 00:00:02,414\\nDat gifft en Knoop „Ännern“\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nDor klickst du op,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\ngeihst na de Steed, wo de Text is, ännerst em\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nun klickst denn „Spiekern“. So eenfach.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nDat is de feine Saak bi Wikipedia,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\ndat du allens ännern kannst.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nDu bruukst von nüms Verlööv\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nun dat is ok nich swoor.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nToeerst lett dat en beten, dat een meist verschuchtert warrn kann,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\naver dat is würklich nich swoor\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nDe Lüüd hebbt dat gornich in’n Sinn, as wenn se’t nich sehn kunnen.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nDe Lüüd leest Artikels un seht den Knoop mit „Ännern“ nich.\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nKlick op den Knoop un kiek, wat denn kummt.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n„Ännern“.\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nWenn du eers sowied büst,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nun du fangst an un schriffst,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\ndenn kummt bilütten een to’n annern,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nun dat is en wunnerbore Saak.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nWenn dat man blot en lütten Anfang is,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\ndat is en Inladen för mehr, en Inladen för Leven.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nWenn wi en Artikel anfangt, denn sünd wi nich tofreden,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nhe is kort un nich smuck.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nMan tööv eerst... en poor Stünnen\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nun du süst wo de Artikel sik utwickelt to en feinen Artikel.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nDe „Ännern“-Knoop: klick em un änner wat,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nspieker de Sied. Un de hest de Welt en Stück verännert.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n„Spiekern“.',\n", + " 'bytes': 1997,\n", + " 'sha1': '6brar3mecrhfu2tmrlvb4j1yvbnq0e2',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44434139,\n", + " 'timestamp': '2010-09-28T06:50:00Z',\n", + " 'user': {'id': 35584, 'text': 'Bellayet'},\n", + " 'page': {'id': 11618705,\n", + " 'title': 'Edit Button.ogv.bn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'edit',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nসেখানে একটি \"সম্পাদনা\" বোতাম রয়েছে\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nতাতে ক্লিক করুন,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nখুঁজে দেখুন কোথায় লেখাগুলো রয়েছে, এবং তা সম্পাদনা করুন\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nএবং তারপর \"সংরক্ষণ\" ক্লিক করুন। এটা খুবই সহজ।\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nউইকিপিডিয়ার সবচেয়ে মজার যে বিষয়টি হল,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nআপনি তা পরিবর্তন করতে পারেন।\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nএর জন্য আপনাকে কারও অনুমতির প্রয়োজন হবে না\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nএবং এটি কোন কঠিন কিছু নয়।\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nপ্রথমে হয়তো এটি দেখতে কিছুটা ভীতিকর মনে হতে পারে,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nকিন্তু এটি সত্যিই কঠিন কিছু নয়\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nলোকজন বুঝতে পারে না, এটি এক প্রকার অন্ধত্ব।\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nলোকজন নিবন্ধ পড়ে অথচ তারা \"সম্পাদনা\" বোতামটি দেখে না।\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nএই বোতামে ক্লিক করুন, দেখুন কি ঘটে।\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"সম্পাদনা।\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nআপনি যখন নিজেকে কিছুতে উন্মুক্ত করবেন,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nএবং আপনি গেলেন এবং সম্পাদনা করা শুরু করলেন,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nঅন্য সবরকমের ঘটনা এখানে ঘটতে পারে,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nএবং এটি সত্যিই সুন্দর।\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nযেমন, এটা কোন কিছুর শুরু বলা যেতে পারে,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nএটি জীবনে আরও কিছুর জন্য একটি আহ্বান।\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nযখন আমরা একটি নিবন্ধ শুরু করি, আমরা তা পছন্দ করি না,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nকারণ এটি তখন দেখতে কুৎসিত মনে হয়।\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nকিন্তু মাত্র কয়েক...ঘন্টা অপেক্ষা করুন\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nএবং দেখুন কিভাবে এটি একটি সুন্দর নিবন্ধের দিকে এগিয়ে যায়।\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\n\"সম্পাদনা\" বোতাম: ক্লিক করুন, এবং কিছু পরিবর্তন করুন,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nপাতা সংরক্ষণ করুন, আপনি পুরো বিশ্বে পরিবর্তন আনলেন।\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"সংরক্ষণ\"।',\n", + " 'bytes': 3638,\n", + " 'sha1': 'rvc52h2o0ik6bnpx4rwo5fi6gzcojn3',\n", + " 'parent_id': 44433968,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44437910,\n", + " 'timestamp': '2010-09-28T09:18:52Z',\n", + " 'user': {'id': 35584, 'text': 'Bellayet'},\n", + " 'page': {'id': 11619114,\n", + " 'title': 'Nice People MEDIUM.ogv.bn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 আপনার কাছে যদি জ্ঞান থাকে, কেন তা আপনার মধ্যেই সীমাবদ্ধ রাখবেন?\\n\\n2 00:00:04,249 --> 00:00:07,174 আমার মনে হয়, আপনার অবশ্যই তা বন্টন করা উচিত!\\n\\n3 00:00:07,174 --> 00:00:10,031 এই ওয়েবসাইটের উদ্দেশ্য, আমার খুব পছন্দ\\n\\n4 00:00:10,031 --> 00:00:15,325 এটা বলে না এটা কোন \"ওয়েবসাইট\", বলে না এটা কোন \"উইকি\", বলে না এটা \"ইন্টারনেট\",\\n\\n5 00:00:15,325 --> 00:00:17,113 এটা বলে \"উন্মুক্ত জ্ঞান,\\n\\n6 00:00:17,113 --> 00:00:19,411 সকলের জন্য, তাদের নিজের ভাষায়\"।\\n\\n7 00:00:19,411 --> 00:00:21,548 যখন কোন কমিউনিটি শুরু হয়,\\n\\n8 00:00:21,548 --> 00:00:23,428 তা তাদেরকে নিয়েই তৈরি হয়\\n\\n9 00:00:23,428 --> 00:00:25,936 যারা এর আমন্ত্রণ গ্রহণ করে।\\n\\n10 00:00:25,936 --> 00:00:27,956 এবং এটি একটি আমন্ত্রণ।\\n\\n11 00:00:27,956 --> 00:00:29,535 অবশ্যই আপনাকে এই আমন্ত্রণ গ্রহণ করতে হবে এমনটা নয়,\\n\\n12 00:00:29,535 --> 00:00:31,439 তারপরেও এই আমন্ত্রণ যেখানে\\n\\n13 00:00:31,439 --> 00:00:32,879 একটি \"সম্পাদনা\" বোতাম আপনাকে বলছে\\n\\n14 00:00:32,879 --> 00:00:37,709 \"আসুন, অংশ নিন, আপনি যা জানেন, তা আমরা যা জানি তার মতই গুরুত্বপূর্ণ\"।\\n\\n15 00:00:37,709 --> 00:00:40,472 আপনি জেনে রাখবেন আপনি মানুষকে শিক্ষা দিচ্ছেন,\\n\\n16 00:00:40,472 --> 00:00:43,026 এবং তা শুধু কোন ব্যক্তিকে নয়, পুরো বিশ্বকে।\\n\\n17 00:00:43,026 --> 00:00:47,113 তাই একটি বিশ্বকোষে অবদান রাখতে পেরে আমার খুব ভাল লাগে\\n\\n18 00:00:47,113 --> 00:00:51,455 যা ফলতঃ বিশ্বের প্রত্যেকটি মানুষ ব্যবহার করতে পারে।\\n\\n19 00:00:51,455 --> 00:00:55,286 অন্যকে সাহায্য করে নিজে সুখি হওয়া, এটাই।\\n\\n20 00:00:55,286 --> 00:00:57,283 কারণ আমি নিজে সুখি হতে চাই, তাই আমি অন্যকে সাহায্য করি।\\n\\n21 00:00:57,283 --> 00:01:00,650 আপনি বিভিন্ন ধরনের মানুষের সাথে মিলেমিশে কাজ করছেন\\n\\n22 00:01:00,650 --> 00:01:04,156 তারা বিভিন্ন সংস্কৃতির মানুষ, এটা পরম বিস্ময়কর।\\n\\n23 00:01:04,156 --> 00:01:06,501 ব্যাপারটি হল, আমি যা মনে করি,\\n\\n24 00:01:06,501 --> 00:01:08,754 সত্যিই এরা খুব মিষ্টি প্রকৃতির লোকজন।\\n\\n25 00:01:08,754 --> 00:01:10,890 আপনি জেনে থাকবেন, আমরা এমন সব মিষ্টি প্রকৃতির লোকজন পেয়েছি\\n\\n26 00:01:10,890 --> 00:01:14,466 যারা নিজেদের অনলাইনে [আনে] এবং টাইপ করে,\\n\\n27 00:01:14,466 --> 00:01:16,231 একজন আরেকজনের সাথে ঝগড়া বিবাদ করার বদলে\\n\\n28 00:01:16,231 --> 00:01:18,437 তারা হয়তো হালকা আলোচনা করে\\n\\n29 00:01:18,437 --> 00:01:20,875 অথবা কিছু গল্পগুজব অথবা অন্য যা কিছু,\\n\\n30 00:01:20,875 --> 00:01:22,198 তারা এমন কিছু তৈরি করার চেষ্টায় ব্যস্ত\\n\\n31 00:01:22,198 --> 00:01:23,707 যা সকলেই খুব উপকারী মনে করে।\\n\\n32 00:01:23,707 --> 00:01:26,029 আমি মনে করি, এরা সত্যিই মিষ্টি, সত্যিই ভাল মানুষ।',\n", + " 'bytes': 4618,\n", + " 'sha1': 'fnvwb7sw5kdbhqv731ph90p9mhz5n58',\n", + " 'parent_id': 44437374,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44437797,\n", + " 'timestamp': '2010-09-28T09:15:32Z',\n", + " 'user': {'id': 62367, 'text': 'Spiritia'},\n", + " 'page': {'id': 11619279,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.bg.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:01,000 --> 00:00:02,000 Моето потребителско име е Бюхервюрмлайн (Bücherwürmlein)\\n\\n2 00:00:02,000 --> 00:00:03,000 Лиля Роха (Lila roja)\\n\\n3 00:00:04,000 --> 00:00:05,000 Уай-Ю-Уай-Ю (yuyu)\\n\\n4 00:00:05,000 --> 00:00:07,000 СиБраун1023 (Cbrown1023)\\n\\n5 00:00:07,000 --> 00:00:08,000 22Картика (22Kartika)\\n\\n6 00:00:08,000 --> 00:00:10,000 Моето потребителско име е Чърч ъф Имакс (Church of emacs)\\n\\n7 00:00:10,000 --> 00:00:14,000 Бюхервюрмлайн (Bücherwürmlein) на немски е \"малко книжно червейче\"\\n\\n8 00:00:14,000 --> 00:00:16,000 Дю (Dew)\\n\\n9 00:00:16,000 --> 00:00:17,000 Чомски1 (Chomsky1)\\n\\n10 00:00:17,000 --> 00:00:18,000 Насир8891 (nasir8891)\\n\\n11 00:00:18,000 --> 00:00:21,000 Нотафиш (notafish), все едно: «не е риба»\\n\\n12 00:00:21,000 --> 00:00:22,000 Тео10011 (Theo10011)\\n\\n13 00:00:22,000 --> 00:00:24,000 Моето потребителско име е Хена (Henna)\\n\\n14 00:00:24,000 --> 00:00:25,000 Мису (Misou)\\n\\n15 00:00:25,000 --> 00:00:26,000 Моето потребителско име е Лизи (Lyzzy)\\n\\n16 00:00:26,000 --> 00:00:30,000 Уитилама (wittylama), това е анаграма на истинското ми име Лиъм Уайът\\n\\n17 00:00:30,000 --> 00:00:31,000 Дерек Чан (Deryck Chan)\\n\\n18 00:00:31,000 --> 00:00:32,000 Вуупиту (Vulpeto)\\n\\n19 00:00:32,000 --> 00:00:33,000 Раджиш Панди (RajeshPandey)\\n\\n20 00:00:33,000 --> 00:00:37,000 Моето потребителско име е Стивън Уолинг (Steven Walling), което е и истинското ми име\\n\\n21 00:00:37,000 --> 00:00:38,000 Моето потребителско име е Уолдир (Waldir)\\n\\n22 00:00:38,000 --> 00:00:41,000 Моето потребителско име е Мстиславл (Mstislavl)\\n\\n23 00:00:41,000 --> 00:00:44,000 Абас Джуриър (Abbasjnr)\\n\\n24 00:00:44,000 --> 00:00:49,000 Моето потребителско име е Джей Ди Форестър (Jdforrester) и аз редактирам Уикипедия',\n", + " 'bytes': 2197,\n", + " 'sha1': 'fj59mwtwurd36acm4t2t8zzb3qvzsz5',\n", + " 'parent_id': 44437731,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44468815,\n", + " 'timestamp': '2010-09-29T06:00:29Z',\n", + " 'user': {'id': 35584, 'text': 'Bellayet'},\n", + " 'page': {'id': 11628428,\n", + " 'title': 'Great Feeling.ogv.bn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nআ..., না, আমার সুপারপাওয়ার নেই।\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nনা। একদমই না।\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nআপনি সবকিছুই করতে পারবেন।\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nআমি বোতামটি চাপ দেই,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nএবং লেখাগুলো সংরক্ষিত হয়ে যায়,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nউউউউউ!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nএটা... দারুণ।\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nআপনি উইকিপিডিয়া যেকোন পরিবর্তন করলেই,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nআপনি নিজের অবদান উইকিপিডিয়াতে যুক্ত করলেন।\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nআমি \"গার্ডিয়ান\" এ একটি প্রবন্ধ পড়েছিলাম\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nএই অনলাইন বিশ্বকোষ সম্পর্কে\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nযেখানে প্রত্যেকে অবদান রাখতে পারে\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nএবং পড়ে আমি বলেছিলাম, \"ওয়াও!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"হয়তো আমিও এতে অবদান রাখতে পারবো!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nআমি প্রথমবারের মত সম্পদনা করি\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nএবং মনে হল আমি এতে আসক্ত হয়ে পড়েছি।\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nআমি এতে কোন টাকা পাইনি\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nআমি শুধুমাত্র করেছি এই জন্য, আপনি জানেন,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nআমার অবসর সময়ে কিছু করা যায়, এই জন্যেই।\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nআপনি হয়তো শুরু করেছেন কোন ধারণা থেকে,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nকারণ আপনি এটায় বিশ্বাস রাখেন,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nকিন্তু শেষ হবে বন্ধুদের সাথে,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nশেষ হবে প্রিয় মানুষের সাথে,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nশেষ হবে চমৎকার আলোচনার মাধ্যমে,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nশেষ হবে নতুন ধারণা নিয়ে,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nশেষ হবে নতুন বই নিয়ে যা আপনি লিখতে যাচ্ছেন...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nআপনি নিবন্ধ এখানে একাই লিখছেন না।\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nআপনি একটি অংশ লিখলেন,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nএবং অন্য যেকেউ এতে গিয়ে মনে করলো:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"হে, আমার কাছে আরও আছে!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nএবং তার সাথে মিলে আপনি তৈরি করলেন\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nনিবন্ধ যা কয়েক পাতা লম্বা,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nযা আপনি একা পারতেন না।\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nএটাই আপনার সফলতা।\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nআপনি সবসময় দেখবেন, \"ঠিক আছে, আমি যা করলাম তা সফল।\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nএবং এটা অদ্ভুত।\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nএটা চমৎকার,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nকারণ, এখানে সম্পাদনা করা আমাকে দারুণ অনুভূতি দেয়।\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nপ্রত্যেকবার আপনি যখন এটা করবেন।\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nআপনি বলবেন,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nযখন আমি উইকিপিডিয়া সম্পর্কে পড়ি,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nআমি সিদ্ধান্ত নেই\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"এটা হয়তো আমার জন্য সবচেয়ে উপযুক্ত জায়গা\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nএবং আমি শুরু করি।',\n", + " 'bytes': 4896,\n", + " 'sha1': 'h985lxjmwe1c21gt4ytcin0nf0hh131',\n", + " 'parent_id': 44468649,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45495318,\n", + " 'timestamp': '2010-10-27T09:32:30Z',\n", + " 'user': {'id': 1005962, 'text': 'Deniel'},\n", + " 'page': {'id': 11631194,\n", + " 'title': 'Edit Button.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nC\\'è un pulsante di \"modifica\"\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nbasta cliccarci sopra,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\ntrovare il posto nel quale si trova il testo, modificare\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\ne poi cliccare su \"salva\". E\\' così facile.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nUna cosa forte di Wikipedia\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nè che tu puoi cambiare le cose.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nNon hai bisogno del permesso di nessuno\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\ne non è difficile.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nSembra un po\\' scoraggiante in un primo momento,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nma in realtà non è difficile.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nLe persone non si rendono conto, come se fosse una sorta di cecità.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nLeggono gli articoli e non vedono il pulsante \"modifica\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nClicca su quel pulsante, e vedi cosa succede.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Modifica\".\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nQuanto ti apri verso qualcosa\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\ne vai e inizi a modificarla\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\ntutti i generi di altre cose possono accadere,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\ned è molto bello.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nCome può esserlo solo un punto di partenza,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nè un invito per sfruttare maggiormente la vita, in qualche modo.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nOgni volta che iniziamo un articolo, non ci piace,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nperché lo trovi brutto.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nMa aspetta solo ... ore\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\ne guarda come è diventato un articolo grandioso.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nIl pulsante di \"modifica\": Cliccaci, e cambia qualcosa,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nsalva la pagina, tu hai fatto la differenza in tutto il mondo.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Salva\".',\n", + " 'bytes': 1961,\n", + " 'sha1': 'rztgfefzwdsxroh4eolt0qsav93lo65',\n", + " 'parent_id': 45495140,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44715415,\n", + " 'timestamp': '2010-10-05T12:33:34Z',\n", + " 'user': {'id': 274, 'text': 'Kaganer'},\n", + " 'page': {'id': 11631463,\n", + " 'title': 'Nice People MEDIUM.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'поистине',\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 Если у вас есть знания, почему вы должны хранить их при себе?\\n\\n2 00:00:04,249 --> 00:00:07,174 Вы должны поделиться ими! Я считаю.\\n\\n3 00:00:07,174 --> 00:00:10,031 Мне нравится цель этого сайта:\\n\\n4 00:00:10,031 --> 00:00:15,325 в ней не говорится о «сайте», не говорится о «вики», не говорится об «интернете»,\\n\\n5 00:00:15,325 --> 00:00:17,113 там говорится: «Свободные знания,\\n\\n6 00:00:17,113 --> 00:00:19,411 для каждого, на его собственном языке».\\n\\n7 00:00:19,411 --> 00:00:21,548 Когда сообщество открыто,\\n\\n8 00:00:21,548 --> 00:00:23,428 оно действительно создаётся теми,\\n\\n9 00:00:23,428 --> 00:00:25,936 кто осмелился принять приглашение.\\n\\n10 00:00:25,936 --> 00:00:27,956 И это приглашение…\\n\\n11 00:00:27,956 --> 00:00:29,535 Конечно, вы не получаете приглашение,\\n\\n12 00:00:29,535 --> 00:00:31,439 но оно там есть,\\n\\n13 00:00:31,439 --> 00:00:32,879 в кнопке «править», говорящей:\\n\\n14 00:00:32,879 --> 00:00:37,709 «Иди, стань частью, то, что ты знаешь, важно, как и то, что мы знаем».\\n\\n15 00:00:37,709 --> 00:00:40,472 Ты знаешь, что даёшь образование людям,\\n\\n16 00:00:40,472 --> 00:00:43,026 и не отдельным людям, а всему миру.\\n\\n17 00:00:43,026 --> 00:00:47,113 Так что я чувствую себя классно, внося вклад в энциклопедию,\\n\\n18 00:00:47,113 --> 00:00:51,455 доступную поистине всем во всём мире.\\n\\n19 00:00:51,455 --> 00:00:55,286 Делать счастливым себя, помогая другим, вот что это.\\n\\n20 00:00:55,286 --> 00:00:57,283 Я помогаю другим, потому что хочу быть счастлив.\\n\\n21 00:00:57,283 --> 00:01:00,650 Ты работаешь вместе со стольким количеством разных людей\\n\\n22 00:01:00,650 --> 00:01:04,156 принадлежащих к стольки различным культурам, и это волшебно.\\n\\n23 00:01:04,156 --> 00:01:06,501 Подумайте об этом, для меня так это про всё…\\n\\n24 00:01:06,501 --> 00:01:08,754 это всё про по-настоящему отличных людей.\\n\\n25 00:01:08,754 --> 00:01:10,890 Вы знаете, у нас есть все эти отличные люди,\\n\\n26 00:01:10,890 --> 00:01:14,466 сидящие онлайн и печатающие,\\n\\n27 00:01:14,466 --> 00:01:16,231 и вместо того, чтобы орать друг на друга,\\n\\n28 00:01:16,231 --> 00:01:18,437 или всего лишь трепаться,\\n\\n29 00:01:18,437 --> 00:01:20,875 или читать сплетни или что-то такое,\\n\\n30 00:01:20,875 --> 00:01:22,198 они пытаются построить нечто,\\n\\n31 00:01:22,198 --> 00:01:23,707 что ещё кто-нибудь сочтёт полезным.\\n\\n32 00:01:23,707 --> 00:01:26,029 Я просто думаю, что это реально отличные, прекрасные люди.',\n", + " 'bytes': 3492,\n", + " 'sha1': 't5i28hhn14abplk0s24bfl8eg2c2hir',\n", + " 'parent_id': 44478833,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601723036,\n", + " 'timestamp': '2021-10-24T15:04:21Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11631533,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'small additional changes',\n", + " 'text': '1\\n00:00:00,863 --> 00:00:02,537\\nМой ник — Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,096 --> 00:00:05,086\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,192\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nМой ник — Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein —\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\nэто на немецком «маленький книжный червь»\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nChomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,148\\nnasir8891\\n\\n12\\n00:00:18,245 --> 00:00:19,360\\nnotafish\\n\\n13\\n00:00:19,393 --> 00:00:21,152\\nну, знаете, «not a fish» [«не рыба»]\\n\\n14\\n00:00:21,252 --> 00:00:22,315\\nTheo10011\\n\\n15\\n00:00:22,450 --> 00:00:23,635\\nМой ник — Henna\\n\\n16\\n00:00:23,719 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nМой ник — Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,213\\nwittylama — это анаграмма\\nот моего настоящего имени Liam Wyatt\\n\\n19\\n00:00:29,474 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,667\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,248\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,547\\nМой ник — Steven Walling,\\nи это моё настоящее имя\\n\\n23\\n00:00:36,748 --> 00:00:38,393\\nМой ник — Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,812\\nМой ник — Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nМеня зовут Jdforrester\\nи я редактирую Википедию',\n", + " 'bytes': 1639,\n", + " 'sha1': 'qc0nz2ghk5yh9vm87cc9uhg5jtjkv6v',\n", + " 'parent_id': 601586061,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44483740,\n", + " 'timestamp': '2010-09-29T16:08:13Z',\n", + " 'user': {'id': 211597, 'text': 'Lvova'},\n", + " 'page': {'id': 11633129,\n", + " 'title': 'Edit Button.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,114 --> 00:00:02,414 Это — кнопка «править» 2 00:00:02,530 --> 00:00:03,830 Просто нажмите на неё, 3 00:00:03,83...'\",\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nЭто — кнопка «править»\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nПросто нажмите на неё,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nнайдите место, в котором расположен текст, и правьте\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nа затем нажмите «сохранить». Это так легко.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nКлёвый факт о Википедии — то,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nчто вы можете менять факты.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nВам не нужно ничьё разрешение,\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nи это несложно.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nЭто поначалу немного пугает,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nно это и в самом деле несложно.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nЛюди не понимают, это какой-то вид слепоты.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nОни читают статьи и реально не видят кнопку «править».\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nНажмите на эту кнопку, и посмотрите, что произойдёт.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n«Править.»\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nКогда вы что-то для себя открываете,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nи идёте и начинаете редактировать,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nможет произойти что угодно,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nи это прекрасно.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nНу, это может быть лишь отправной точкой,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nприглашение для получения большей жизни, как-то так.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nВсякий раз, когда мы начинаем статью, она нам не нравится,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nнаходим её ужасной.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nНо подождите… пару часов\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nи посмотрите, как она дорабатывается до замечательной статьи.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nКнопка «править»: нажми, и измени что-нибудь,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nсохрани страницу; ты внёс изменение в целый мир.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n«Сохранить».',\n", + " 'bytes': 2634,\n", + " 'sha1': 'a821eeuestyjahn942buvbbaq6axo7k',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44709452,\n", + " 'timestamp': '2010-10-05T09:03:12Z',\n", + " 'user': {'id': 211597, 'text': 'Lvova'},\n", + " 'page': {'id': 11633286,\n", + " 'title': 'Great Feeling.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'updated',\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nБррр, нет, у меня нет суперсилы.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nСовсем. Нет.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nАбсолютно точно вы можете сделать это.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nЯ нажимаю на кнопку\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nи сохраняю текст.\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nУууу!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nЭто было… волнующе.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nВы лишь правите Википедию,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nвы лишь вносите свой вклад в Википедию.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nЯ прочла статью в «Guardian»\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nоб этой онлайн-энциклопедии\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nв которую может внести свой вклад каждый\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nи сказала: «Вау!»\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n«Может, и я смогу хорошо редактировать!»\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nЯ впервые стал редактировать\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nи, думаю, впал от этого в зависимость.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nЯ ничего не получаю,\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nЯ просто делаю это, знаете,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nчто-то делаю в своё свободное время, вот что.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nВы можете начать делать это за идею,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nпотому что верите в это,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nно в итоге вы получаете друзей,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nвы можете найти любовь,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nвы участвуете в прекрасных обсуждениях,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nк вам приходят новые идеи,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nвы собираетесь написать новые книги…\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nВы не пишете статьи в одиночку.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nВы пишете какую-то часть,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nи кто-то другой приходит и думает:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n«Эй, я могу написать про это кое-что ещё!» \\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nи вместе вы сможете создать\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nстатьи, которые гораздо объёмнее,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nчем вы могли бы создать самостоятельно.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nИ это — успех.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nВы всегда смотрите на результат и думаете: «Здорово! То, что я делал, способствовало успху.» \\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nи это прекрасно.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nЭто очень здорово,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nпотому что редактирование — это масса эмоций.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nИ вы занимаетесь этим постоянно.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nЯ хочу сказать вот что:\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nкогда я прочла о Википедии,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nя решила\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n«Это может быть такое дело, кудя я хотела бы вписаться»\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nИ вписалась.',\n", + " 'bytes': 3901,\n", + " 'sha1': 'jp2d4lttr0pw32apu5s0t6i3363rtf1',\n", + " 'parent_id': 44484903,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 124202839,\n", + " 'timestamp': '2014-05-17T14:05:49Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 11651675,\n", + " 'title': 'Sintel movie 720x306.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '-pre',\n", + " 'text': '1\\n00:01:47,250 --> 00:01:50,500\\nУ этого клинка тёмное прошлое.\\n\\n2\\n00:01:51,800 --> 00:01:55,800\\nОн пролил много невинной крови.\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nВы были глупы, путешествуя в одиночку, неподготовленной.\\n\\n4\\n00:02:01,750 --> 00:02:04,800\\nТебе повезло, что ты еще жива.\\n\\n5\\n00:02:05,250 --> 00:02:06,300\\nСпасибо.\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nИтак...\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\nЧто привело тебя на землю привратников?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\nЯ ищу кое-кого.\\n\\n9\\n00:02:18,000 --> 00:02:22,200\\nКого-то очень дорогого?\\nРодственную душу?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nДракона.\\n\\n11\\n00:02:28,850 --> 00:02:31,750\\nОпасное занятие для одиночки.\\n\\n12\\n00:02:32,950 --> 00:02:35,870\\nЯ была одна сколько себя помню.\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nМы почти закончили. Шшш...\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nЕй, не дергайся.\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nСпокойной ночи, Scales.\\n\\n16\\n00:04:10,350 --> 00:04:13,850\\nФас, Чешуйчик! Давай!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nЧешуйчик?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nДа! Давай!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nЧешуйчик!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nЯ не смогла.\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\nТы не смогла увидеть...\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\nЭто земли драконов, Синтел.\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nТы ближе, чем ты думала.\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nЧешуйчик!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nЧешуйчик?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nЧешуйчик...\\n\\n27\\n00:10:30,200 --> 00:10:40,800\\nПереведено Drakmail.',\n", + " 'bytes': 1958,\n", + " 'sha1': 'jailgvi5x3n2fqcx5xz291qycsq3q83',\n", + " 'parent_id': 124202794,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44557653,\n", + " 'timestamp': '2010-10-01T18:12:14Z',\n", + " 'user': {'id': 26548, 'text': 'Coyau'},\n", + " 'page': {'id': 11652760,\n", + " 'title': 'As8 genesis1a.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:01:02,800 --> 00:01:06,850 We are now approaching lunar sunrise… 2 00:01:06,850 --> 00:01:10,700 and, for all the people back on Earth, 3 00:01:10,700 -->...'\",\n", + " 'text': '1\\n00:01:02,800 --> 00:01:06,850\\nWe are now approaching lunar sunrise…\\n\\n2\\n00:01:06,850 --> 00:01:10,700\\nand, for all the people back on Earth,\\n\\n3\\n00:01:10,700 --> 00:01:13,500\\nthe crew of Apollo 8 has a message…\\n\\n4\\n00:01:13,500 --> 00:01:15,300\\nthat we would like to send to you.\\n\\n5\\n00:01:18,000 --> 00:01:21,900\\n<i>In the beginning<br/>God created the heaven and the earth.\\n\\n6\\n00:01:21,900 --> 00:01:25,300\\n<i>And the earth was without form, and void;\\n\\n7\\n00:01:25,500 --> 00:01:28,500\\n<i>and darkness was upon the face of the deep.\\n\\n8\\n00:01:28,700 --> 00:01:32,500\\n<i>And the Spirit of God moved upon the face of the waters.\\n\\n9\\n00:01:32,800 --> 00:01:38,000\\n<i>And God said, Let there be light:<br/>and there was light.\\n\\n10\\n00:01:38,400 --> 00:01:41,800\\n<i>And God saw the light,<br/>that it was good:\\n\\n11\\n00:01:42,000 --> 00:01:44,000\\n<i>and God divided the light from the darkness.\\n\\n12\\n00:01:50,500 --> 00:01:54,700\\n<i>And God called the light Day,<br/>and the darkness he called Night.\\n\\n13\\n00:01:55,500 --> 00:01:58,300\\n<i>And the evening and the morning were the first day.\\n\\n14\\n00:01:58,800 --> 00:02:02,200\\n<i>And God said,<br/>Let there be a firmament in the midst of the waters,\\n\\n15\\n00:02:02,700 --> 00:02:05,500\\n<i>and let it divide the waters from the waters.\\n\\n16\\n00:02:06,000 --> 00:02:08,600\\n<i>And God made the firmament, \\n\\n17\\n00:02:08,800 --> 00:02:11,000\\n<i>and divided the waters which were under the firmament…\\n\\n18\\n00:02:11,000 --> 00:02:13,700\\n<i>from the waters which were above the firmament:\\n\\n19\\n00:02:13,700 --> 00:02:14,900\\n<i>and it was so.\\n\\n20\\n00:02:15,500 --> 00:02:17,500\\n<i>And God called the firmament Heaven.\\n\\n21\\n00:02:17,600 --> 00:02:21,000\\n<i>And the evening and the morning were the second day\\n\\n22\\n00:02:29,000 --> 00:02:34,000\\n<i>And God said,<br/>Let the waters under the heavens be gathered together unto one place,\\n\\n23\\n00:02:34,000 --> 00:02:36,800\\n<i>and let the dry land appear:<br/>and it was so.\\n\\n24\\n00:02:36,800 --> 00:02:39,900\\n<i>And God called the dry land Earth;\\n\\n25\\n00:02:40,300 --> 00:02:44,330\\n<i>and the gathering together of the waters<br/>called he Seas:\\n\\n26\\n00:02:45,000 --> 00:02:47,200\\n<i>and God saw that it was good.\\n\\n27\\n00:02:48,000 --> 00:02:52,600\\nAnd from the crew of Apollo 8,<br/>we close with good night,\\n\\n28\\n00:02:52,600 --> 00:02:58,000\\ngood luck, a Merry Christmas,<br/>and God bless all of you,\\n\\n29\\n00:02:58,000 --> 00:03:00,000\\nall of you on the good Earth.',\n", + " 'bytes': 2432,\n", + " 'sha1': 'o33jwl7u4dz8en580odcpgdrhgs1qj5',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 156519695,\n", + " 'timestamp': '2015-04-09T15:18:46Z',\n", + " 'user': {'text': '5.12.93.6'},\n", + " 'page': {'id': 11653921,\n", + " 'title': 'Sintel movie 720x306.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00: 01: 47,250 -> 00: 01: 50,500\\nAceasta lama are un trecut întunecat.\\n\\n2\\n00: 01: 51,800 -> 00: 01: 55,800\\nEa a vărsat mult sânge nevinovat.\\n\\n3\\n00: 01: 58,000 -> 00: 02: 01,450\\nEști un prost pentru ca circuli singur,\\natât de complet nepregătit.\\n\\n4\\n00: 02: 01,750 -> 00: 02: 04,800\\nAi noroc inca iti curge sangele.\\n\\n5\\n00: 02: 05,250 -> 00: 02: 06,300\\nMultumesc.\\n\\n6\\n00: 02: 07,500 -> 00: 02: 09,000\\nDeci ...\\n\\n7\\n00: 02: 09,400 -> 00: 02: 13,800\\nCe te aduce in\\nTara Paznicilor?\\n\\n8\\n00: 02: 15.000 -> 00: 02: 17.500\\nCaut pe cineva.\\n\\n9\\n00: 02: 18.000 -> 00: 02: 22,200\\nCineva foarte drag?\\nUn spirit înrudit?\\n\\n10\\n00: 02: 23,400 -> 00: 02: 25.000\\nUn dragon.\\n\\n11\\n00: 02: 28,850 -> 00: 02: 31,750\\nO căutare periculoasa pentru un vânător singuratic.\\n\\n12\\n00: 02: 32,950 -> 00: 02: 35,870\\nAm fost singur\\natâta timp cât îmi amintesc.\\n\\n13\\n00: 03: 27,250 -> 00: 03: 30,500\\nSuntem aproape gata. Shhh ...\\n\\n14\\n00: 03: 30,750 -> 00: 03: 33,500\\nHei, stai liniștit.\\n\\n15\\n00: 03: 48,250 -> 00: 03: 52,250\\nNoapte bună, Suier.\\n\\n16\\n00: 04: 10,350 -> 00: 04: 13,850\\nIa-l, Suier! Haide!\\n\\n17\\n00: 04: 25,250 -> 00: 04: 28,250\\nSuier?\\n\\n18\\n00: 05: 04,000 -> 00: 05: 07,500\\nDa! Haide!\\n\\n19\\n00: 05: 38,750 -> 00: 05: 42.000\\nSuier!\\n\\n20\\n00: 07: 25,850 -> 00: 07: 27.500\\nAm esuat.\\n\\n21\\n00: 07: 32,800 -> 00: 07: 36,500\\nAi esuat doar pentru a vedea ...\\n\\n22\\n00: 07: 37,800 -> 00: 07: 40,500\\nAcestea sunt Taramurile Dragonului, Sintel.\\n\\n23\\n00: 07: 40,850 -> 00: 07: 44.000\\nEsti mai aproape decât crezi.\\n\\n24\\n00: 09: 17,600 -> 00: 09: 19.500\\nSuier!\\n\\n25\\n00: 10: 21,600 -> 00: 10: 24.000\\nSuier?\\n\\n26\\n00: 10: 26,200 -> 00: 10: 29,800\\nSuier ...',\n", + " 'bytes': 1610,\n", + " 'sha1': 'f5gdq1b2040fua56r5aqhepaokp0ruf',\n", + " 'parent_id': 156515651,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44562627,\n", + " 'timestamp': '2010-10-01T20:43:39Z',\n", + " 'user': {'id': 6282, 'text': 'Longbow4u'},\n", + " 'page': {'id': 11654092,\n", + " 'title': 'Sintel movie 720x306.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '(c) copyright Blender Foundation | durian.blender.org under CC-BY-3.0',\n", + " 'text': '1\\n00:01:47,250 --> 00:01:50,500\\nDiese Klinge birgt eine finstere\\nVergangenheit.\\n\\n2\\n00:01:51,800 --> 00:01:55,800\\nDurch sie wurde viel unschuldiges Blut\\nvergossen.\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nEs ist töricht, so ganz allein und\\nunvorbereitet zu reisen!\\n\\n4\\n00:02:01,750 --> 00:02:04,800\\nDu kannst von Glück sagen, dass dein\\nBlut noch in deinen Adern fließt.\\n\\n5\\n00:02:05,250 --> 00:02:06,300\\nDanke.\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nAlso...\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\n...was führt dich in die Lande der\\nTorwaechter?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\nIch suche jemanden.\\n\\n9\\n00:02:18,000 --> 00:02:22,200\\nEin teurer Freund?\\nEine verwandte Seele?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nEin Drache.\\n\\n11\\n00:02:28,850 --> 00:02:31,750\\nEin gefährliches Unterfangen für eine\\neinsame Jägerin.\\n\\n12\\n00:02:32,950 --> 00:02:35,870\\nIch bin einsam, solange ich mich\\nerinnern kann.\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nWir sind fast fertig. Ruhig...\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nHe, halt still.\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nGute Nacht, Scales.\\n\\n16\\n00:04:10,350 --> 00:04:13,850\\nLos, hol ihn dir, Scales! Komm schon!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nScales?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nJa! Vorwärts!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nScales!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nIch habe versagt.\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\nDu hast es nur nicht vermocht, genauer\\nhinzusehen.\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\nDies ist das Reich der Drachen, Sintel.\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nDu bist näher, als du ahnst.\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nScales!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nScales?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nScales...',\n", + " 'bytes': 1649,\n", + " 'sha1': 'q81u0qrgqwt5dzp5j9wyasf2jksunmo',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44563633,\n", + " 'timestamp': '2010-10-01T21:29:47Z',\n", + " 'user': {'id': 770, 'text': 'Slomox'},\n", + " 'page': {'id': 11654402,\n", + " 'title': 'Sintel movie 720x306.ogv.nds.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:01:47,250 --> 00:01:50,500 Disse Kling bargt en düüster Verleden. 2 00:01:51,800 --> 00:01:55,800 Se hett veel unschüllig Blood fleten laten. 3 00:01:58,...'\",\n", + " 'text': '1\\n00:01:47,250 --> 00:01:50,500\\nDisse Kling bargt en düüster Verleden.\\n\\n2\\n00:01:51,800 --> 00:01:55,800\\nSe hett veel unschüllig Blood fleten laten.\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nDu büst en Narr, dat du ganz alleen un unvörbereidt reist!\\n\\n4\\n00:02:01,750 --> 00:02:04,800\\nDu hest man Glück, dat noch Blood dör dien Adern flütt.\\n\\n5\\n00:02:05,250 --> 00:02:06,300\\nWees bedankt.\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nNu...\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\n...wat leidt dich na de Lannen von de Doorwächters?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\nIk bün op de Söök na een.\\n\\n9\\n00:02:18,000 --> 00:02:22,200\\nEn goden Maat?\\nEn frünnt Seel?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nEn Draak.\\n\\n11\\n00:02:28,850 --> 00:02:31,750\\nEn gefährlich Ünnernehmen för en eensam Jäger.\\n\\n12\\n00:02:32,950 --> 00:02:35,870\\nIk bün eensam, solang as ik mi trüchbesinnen kann.\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nWi sünd meist trech. Tööv...\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nHe, holl still.\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nGode Nacht, Flooms.\\n\\n16\\n00:04:10,350 --> 00:04:13,850\\nLos, krieg em, Flooms! Man to!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nFlooms?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nJo! Vörwards!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nFlooms!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nIk bün miss gahn.\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\nDu hest man blot miss keken.\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\nDit is dat Riek von de Draken, Sintel.\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nDu büst neger, as di ahnt.\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nFlooms!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nFlooms?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nFlooms...',\n", + " 'bytes': 1598,\n", + " 'sha1': '16clebpt58jufi6toqi3o8y0nc0ldwz',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44656313,\n", + " 'timestamp': '2010-10-03T20:18:27Z',\n", + " 'user': {'id': 578190, 'text': 'Palu'},\n", + " 'page': {'id': 11675578,\n", + " 'title': 'Sintel movie 720x306.ogv.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Translated by: HikaruCZ / Marek Zeman, source: http://tracker.cztorrent.net/torrent/sintel/120024, license of the translate: CC-BY-SA 3.0, author of original text: Blender foundation, uploader: Palu',\n", + " 'text': '1\\n00:01:47,250 --> 00:01:50,500\\nTato čepel má temnou minulost.\\n\\n2\\n00:01:51,800 --> 00:01:55,800\\nVrhá mnoho nevinné krve.\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nJsi blázen, cestovat o samotě,\\ntak naprosto nepřipravená.\\n\\n4\\n00:02:01,750 --> 00:02:04,800\\nMáš štěstí, že ti ještě koluje krev v těle.\\n\\n5\\n00:02:05,250 --> 00:02:06,300\\nDěkuji.\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nTakže...\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\nCo tě přimělo\\nk cestě do této země?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\nNěkoho hledám.\\n\\n9\\n00:02:18,000 --> 00:02:22,200\\nNěkoho drahého?\\nSpřízněnou duši?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nDraka.\\n\\n11\\n00:02:28,850 --> 00:02:31,750\\nNebezpečný úkol pro samotného lovce.\\n\\n12\\n00:02:32,950 --> 00:02:35,870\\nByla jsem sama tak dlouho,\\njak si jen pamatuji.\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nJsme téměř hotovi. Psst...\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nHej, zůstaň v klidu.\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nDobrou noc, Scalesi.\\n\\n16\\n00:04:10,350 --> 00:04:13,850\\nJdi po něm, Scalesi!\\nNo tak, jdi po něm!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nScalesi?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nJo! Jdi po něm!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nScalesi!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nSelhala jsem.\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\nJen jsi přehlédla, že...\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\ntohle je dračí země, Sintel.\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nJsi blíž, než si myslíš.\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nScalesi!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nScalesi?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nScalesi...\\n\\n<!-- Translated by: HikaruCZ / Marek Zeman, source: http://tracker.cztorrent.net/torrent/sintel/120024, license of the translate: CC-BY-SA 3.0, author of original text: Blender foundation, uploader: Palu -->',\n", + " 'bytes': 1755,\n", + " 'sha1': '945to8l8mlffqugnttd7q6lvevtnsx0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44696448,\n", + " 'timestamp': '2010-10-04T20:25:22Z',\n", + " 'user': {'id': 1057, 'text': 'Arwel Parry'},\n", + " 'page': {'id': 11691918,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.cy.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,000 --> 00:00:02,000 Bücherwürmlein yw fy enw defnyddiwr 2 00:00:02,000 --> 00:00:03,000 Lila roja 3 00:00:04,000 --> 00:00:05,000 yuyu 4 00:00:05,...'\",\n", + " 'text': '1 00:00:01,000 --> 00:00:02,000 Bücherwürmlein yw fy enw defnyddiwr\\n\\n2 00:00:02,000 --> 00:00:03,000 Lila roja\\n\\n3 00:00:04,000 --> 00:00:05,000 yuyu\\n\\n4 00:00:05,000 --> 00:00:07,000 Cbrown1023\\n\\n5 00:00:07,000 --> 00:00:08,000 22Kartika\\n\\n6 00:00:08,000 --> 00:00:10,000 Church of emacs (\"Eglwys emacs\") yw fy enw defnyddiwr\\n\\n7 00:00:10,000 --> 00:00:14,000 Bücherwürmlein - sef abwydyn llyfrau bach yn Almaeneg\\n\\n8 00:00:14,000 --> 00:00:16,000 Dew\\n\\n9 00:00:16,000 --> 00:00:17,000 Chomsky1\\n\\n10 00:00:17,000 --> 00:00:18,000 nasir8891\\n\\n11 00:00:18,000 --> 00:00:21,000 notafish, chi\\'n gwybod : « nid pysgodyn »\\n\\n12 00:00:21,000 --> 00:00:22,000 Theo10011\\n\\n13 00:00:22,000 --> 00:00:24,000 Henna yw fy enw defnyddiwr\\n\\n14 00:00:24,000 --> 00:00:25,000 Misou\\n\\n15 00:00:25,000 --> 00:00:26,000 Lyzzy yw fy enw defnyddiwr\\n\\n16 00:00:26,000 --> 00:00:30,000 wittylama, sef anagram o f\\'enw gwir, Liam Wyatt\\n\\n17 00:00:30,000 --> 00:00:31,000 Deryck Chan\\n\\n18 00:00:31,000 --> 00:00:32,000 Vulpeto\\n\\n19 00:00:32,000 --> 00:00:33,000 RajeshPandey\\n\\n20 00:00:33,000 --> 00:00:37,000 Steven Walling yw fy enw defnyddiwr, sef fy enw gwir\\n\\n21 00:00:37,000 --> 00:00:38,000 Waldir yw fy enw defnyddiwr\\n\\n22 00:00:38,000 --> 00:00:41,000 Mstislavl yw fy enw defnyddiwr\\n\\n23 00:00:41,000 --> 00:00:44,000 Abbasjnr, a-dwbwl b-a-s-j-n-r\\n\\n24 00:00:44,000 --> 00:00:49,000 Jdforrester yw fy enw i, ac dw i\\'n olygu Wicipedia',\n", + " 'bytes': 1400,\n", + " 'sha1': '3izkdzlutyxgr0zip9ygg4iss0tsk53',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44696799,\n", + " 'timestamp': '2010-10-04T20:39:19Z',\n", + " 'user': {'id': 745875, 'text': 'Eng.Adel'},\n", + " 'page': {'id': 11692016,\n", + " 'title': 'Edit Button.ogv.ar.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Creation: Arabic translation',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nيوجد زر \"عدل\"\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nفقط انقر عليه\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nابحث عن مكان النص وقم بتحريره\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nثم انقر \"أرسل التغييرات\". بهذه السهولة.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nالشئ الرائع بخصوص ويكيبيديا\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nأنه يمكنك تغيير الأشياء.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nلا تحتاج اﻷذن من أي شخص\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nوذلك ليس صعباً.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nقد يبدو ذلك مرعباً في البداية،\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nلكنه في الحقيقة ليس صعباً.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nالناس لا يدركون ، كما لو انها نوع من العمى.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nيقرأ الناس المقالات ولا يرون زر \"عدل\"،\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nانقر على ذلك الزر، وانظر ماذا يحدث.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"عدل\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nعندما تفتح نفسك على شئ ما\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nوتبدأ بتعديله،\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nيمكن لجميع اﻷشياء اﻷخرى أن تحدث لك\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nوهذا جميل فعلاً.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nمثلاً يمكن أن تكون فقط نقطة انطلاق،\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nانها دعوة لمزيد من الحياة ، بطريقة أو بأخرى\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nكلما بدأنا مقالاً، فنحن لا نحبه\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nلأنك تجده بشعاً.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nلكن أنتظر فقط... لساعات\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nوأنظر كيف سيتم تطويره إلى مقال رائع.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nزر \"عدل\": أنقر عليه، وغير شيئاً،\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nأرسل التغييرات، لقد قمت بتشيكل فارق للعالم أجمع.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"أرسل التغييرات\".',\n", + " 'bytes': 2255,\n", + " 'sha1': 'hq05tg4ojpcwo6r8lj4ry9lbzls83d7',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44715372,\n", + " 'timestamp': '2010-10-05T12:32:28Z',\n", + " 'user': {'id': 652302, 'text': 'Timk70'},\n", + " 'page': {'id': 11692384,\n", + " 'title': 'Great Feeling.ogv.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'aanpassingen',\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nEh, nee, ik heb geen superkrachten.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nHelemaal niet. Nee.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nJij kunt het ook.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nIk drukte op de knop,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nen sloeg de tekst op,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWoeh!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nHet was... spannend.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nJe hebt net Wikipedia veranderd,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nje hebt een eigen bijdrage geleverd aan Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nIk las een artikel in de \"Guardian\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nover deze online-encyclopedie\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nwaaraan iedereen kan bijdragen\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nen ik zei, \"Woow!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Misschien kan ik ook bijdragen!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nIk bewerkte voor de eerste keer\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nen ik raakte er verslaafd aan, volgens mij.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nIk krijg er niet voor betaald\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nik doe het gewoon voor, weet je wel,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\niets te doen in mijn vrije tijd, dat is het.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nJe kunt ermee beginnen vanuit een overtuiging,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nomdat je erin gelooft,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\ndaarna maak je vrienden,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nmensen beginnen van je te houden,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nje belandt in mooie discussies,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nje krijgt weer nieuwe ideeën,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nje krijgt ideeën voor nieuwe boeken...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nJe schrijft het artikel niet alleen.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nJij schrijft een deel,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nen iemand anders denkt:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hé, daarover weet ik nog meer!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nen samen maak je dan\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\npagina\\'s lange artikelen,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nwat je niet alleen kunt.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nDan zit je op de goede weg.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nJe zult altijd zien: \"Oké, wat ik heb gedaan, was succesvol.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nen dit is prachtig.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nDit is geweldig,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nomdat bewerken je een goed gevoel geeft.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nTelkens weer.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nIk moet zeggen,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\ntoen ik over Wikipedia las,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nbesloot ik\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Dit is misschien wel wat voor mij\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nEn dat bleek.',\n", + " 'bytes': 2762,\n", + " 'sha1': 'jsq2vhwqdyxxa43jwkl9m19l421zg9x',\n", + " 'parent_id': 44698404,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96835355,\n", + " 'timestamp': '2013-05-24T05:31:06Z',\n", + " 'user': {'id': 322046, 'text': 'Llywelyn2000'},\n", + " 'page': {'id': 11692405,\n", + " 'title': 'Edit Button.ogv.cy.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'iaith',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nMae \\'na fotwm \"golygu\"\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nCliciwch arno,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nDewch o hyd i destun, a golygwch\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\na wedyn cliciwch \"cadw\\'r dudalen\". Mae mor hawdd!\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nY peth da am Wicipedia\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nyw y gallwch chi newid pethau.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nDoes dim angen cael caniatâd rhywun\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\na dydy hi ddim yn anodd.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nMaen\\'n edrych reit frawychus ar y ddechrau,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nond yn wir dydy hi ddim yn anodd!\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nDydy pobol ddim yn sylweddoli, fel pe bai nam ar eu golwg.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nMae pobol yn darllen erthyglau a dydyn nhw ddim yn gweld y botwm \"golygu\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nCliciwch ar y botwm, ac edrychwch beth sy\\'n digwydd!\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Golygu.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nPan rydych yn agor eich calon,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nac yn dechrau golygu,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nellith pob math o pethau ddigwydd,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nac mae hwn yn brydferth iawn.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nGall fod yn ddechrau rhywbeth mawr,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nmae\\'n fath o wahoddiad am mwy o fywyd.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nPryd bynnag rydym ni\\'n dechrau erthygl newydd, dydyn ni ddim yn ei hoffi,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nachos rydych yn meddwl ei fod yn hyll.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nOnd arhoswch dim ond am... ychydig oriau\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\na sylwch sut mae hi\\'n datblygu i fod yn erthygl dda.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nY botwm \"golygu\": cliciwch arno, a newidwch rywbeth,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nsafiwch y dudalen, ac rydych wedi gwneud gwahaniaeth i\\'r byd cyfan.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Cadw\\'r dudalen\".',\n", + " 'bytes': 1958,\n", + " 'sha1': 'nnsdosfaliwd7ylv358j3rwmw5rsdi9',\n", + " 'parent_id': 44697855,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601721937,\n", + " 'timestamp': '2021-10-24T14:54:47Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11692569,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and partyally the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\nMijn gebruikersnaam is Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nMijn gebruikersnaam is Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein, dat is\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\neen kleine boekenwurm in het Duits\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nDat is Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\nsnap je: «not a fish» («geen vis»)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,293 --> 00:00:23,785\\nMijn gebruikersnaam is Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nMijn gebruikersnaam is Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,213\\nwittylama, het is een anagram\\nvan mijn echte naam Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nMijn gebruikersnaam is Steven Walling,\\ndat is mijn echte naam\\n\\n23\\n00:00:36,748 --> 00:00:38,393\\nMijn gebruikersnaam is Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nMijn gebruikersnaam is Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nMijn naam is Jdforrester\\nen ik bewerk Wikipedia.',\n", + " 'bytes': 1539,\n", + " 'sha1': 'p3qllkkvzu55m3onhtka817qnfq1iqe',\n", + " 'parent_id': 44698381,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601723319,\n", + " 'timestamp': '2021-10-24T15:06:52Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11693601,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.vi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and (probably) partially the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,651\\nTên người dùng của tôi là Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,372 --> 00:00:10,338\\nTên người dùng của tôi là Church of emacs\\n\\n7\\n00:00:10,389 --> 00:00:11,564\\nBücherwürmlein\\n\\n8\\n00:00:11,607 --> 00:00:13,999\\nnghĩa là \"con mọt sách nhỏ\"\\ntrong tiếng Đức\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nNó là Chomsky\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,217\\nNotafish\\n\\n13\\n00:00:19,248 --> 00:00:21,130\\nnghĩa là: \"not a fish\"\\n(không phải cá)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,321 --> 00:00:23,805\\nTên người dùng của tôi là Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nTên người dùng của tôi là Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, được đảo lại\\ntừ tên thật của tôi Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nTên người dùng của tôi là\\nSteven Walling, đó cũng là tên thật\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\nTên người dùng của tôi là Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nTên người dùng của tôi là Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nTên tôi là Jdforrester\\nvà tôi tham gia sửa đổi Wikipedia',\n", + " 'bytes': 1675,\n", + " 'sha1': '3t65kfp4d4g2uu0r03xjb75zks90nvr',\n", + " 'parent_id': 44702152,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44702608,\n", + " 'timestamp': '2010-10-05T01:43:18Z',\n", + " 'user': {'id': 161974, 'text': 'Vinhtantran'},\n", + " 'page': {'id': 11693640,\n", + " 'title': 'Edit Button.ogv.vi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:01,114 --> 00:00:02,414 Có một nút \"sửa đổi\" 2 00:00:02,530 --> 00:00:03,830 Chỉ cần nhấn chuột vào đó, 3 00:00:03,830 --> 00:00:06,6...\\'',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nCó một nút \"sửa đổi\"\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nChỉ cần nhấn chuột vào đó,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\ntìm nơi chứa văn bản, và sửa đổi\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nrồi nhấn nút \"Lưu trang\". Dễ vậy đó.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nĐiều tuyệt vời của Wikipedia,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nlà bạn có thể thay đổi các thứ.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nBạn không cần ai cho phép\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nvà làm điều đó không khó chút nào.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nBan đầu có thể nó cho bạn cảm giác hơn nản,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nnhưng thật ra không khó\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nMọi người không nhận ra, như thể bị mù vậy.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nMọi người đọc bài viết mà họ không nhìn thấy nút \"sửa đổi\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nHãy nhấn vào đó, và xem chuyện gì sẽ xảy ra.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Sửa đổi.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nKhi bạn mở lòng với một điều gì đó,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nbạn đến và bắt đầu sửa đổi,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nmọi thứ khác đều có thể xảy ra,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nvà thật sự nó rất đẹp.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nNó giống như một điểm khởi đầu,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nlà một lời mời để sống thú vị hơn.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nBất cứ khi nào chúng ta khởi đầu một bài viết, ta đều không thích nó,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nvì bạn sẽ thấy nó xấu xí.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nNhưng chỉ cần đợi... vài giờ\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nrồi xem nó được phát triển thành một bài viết tốt như thế nào.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nNút \"sửa đổi\": nhấn vào nó, và thay đổi các thứ,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nlưu trang, và bạn đã tạo ra sự khác biệt cho cả thế giới.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Lưu trang\".',\n", + " 'bytes': 2220,\n", + " 'sha1': 'rgn85an68l5ndukjqn9dbx7fkmbpjqv',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601723886,\n", + " 'timestamp': '2021-10-24T15:12:11Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11694686,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and (probably) partially the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\n我的用户名是Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\n我的用户名是Church of emacs\\n\\n7\\n00:00:10,329 --> 00:00:11,459\\nBücherwürmlein\\n\\n8\\n00:00:11,515 --> 00:00:13,999\\n意思是德文的“小书虫”\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\n這是Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\n顾名思义,\\n«not a fish»(不是一条鱼)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,513 --> 00:00:23,785\\n我的用户名是Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\n我的用户名是Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, 是我真名\\nLiam Wyatt的昵称\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\n我的用户名是Steven Walling,\\n这也是我的真名\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\n我的用户名是Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\n我的用户名是Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\n我的名字是Jdforrester,\\n我是维基百科的编辑者',\n", + " 'bytes': 1501,\n", + " 'sha1': 'c6xt88otmk4pkwqba1h2r36y50tqhdt',\n", + " 'parent_id': 59842283,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44707555,\n", + " 'timestamp': '2010-10-05T07:26:31Z',\n", + " 'user': {'id': 639212, 'text': 'Olli'},\n", + " 'page': {'id': 11694751,\n", + " 'title': 'Edit Button.ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'ready',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nSivulta löytyy muokkauspainike\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nNapsauta sitä,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\netsi kohta, josta teksti löytyy. Tee muutokset\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nja napsauta \"Tallenna\". Niin helppoa se on.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nWikipediassa on se hyvä puoli, että\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nvoit muuttaa asioita.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nEt tarvitse kenenkään lupaa\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nja se ei ole hankalaa.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nMuokkaaminen saattaa tuntua aluksi ehkä vähän pelottavalta,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nmutta oikeasti se ei ole vaikeaa.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nIhmiset eivät ymmärrä, ihan kuin se olisi jonkinlaista haluttomuutta.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nIhmiset lukevat artikkeleita, mutta eivät näke muokkaa-painiketta.\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nNapsauta painiketta, ja katso mitä tapahtuu.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Muokkaa.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nKun avaat itsesi jollekin,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nmenet, ja aloitat muokkaamisen,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nkaikenlaisia asioita voi tapahtua,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nja tämä on todella ihanaa.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nSe voi olla esimerkiksi aloituspiste,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nuseammalle elämälle.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nKun aloitamme artikkelin, emme pidä siitä,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nkoska se on mielestäsi ärsyttävä.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nMutta odota... tunteja\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nja katso, kuinka siitä kehitetään hyvä artikkeli.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nMuokkaa-painike: napsauta sitä ja muuta jotakin,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\ntallenna sivu, ja olet muuttanut maailmaa.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Tallenna\".',\n", + " 'bytes': 1905,\n", + " 'sha1': 'lppxopy9sv3b4tiohpyx5vtndk1cl4p',\n", + " 'parent_id': 44707419,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44707540,\n", + " 'timestamp': '2010-10-05T07:25:13Z',\n", + " 'user': {'id': 35584, 'text': 'Bellayet'},\n", + " 'page': {'id': 11694783,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.bn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'bn+',\n", + " 'text': '1 00:00:01,000 --> 00:00:02,000 আমার ইউজার নেম হল Bücherwürmlein\\n\\n2 00:00:02,000 --> 00:00:03,000 Lila roja\\n\\n3 00:00:04,000 --> 00:00:05,000 yuyu\\n\\n4 00:00:05,000 --> 00:00:07,000 Cbrown1023\\n\\n5 00:00:07,000 --> 00:00:08,000 22Kartika\\n\\n6 00:00:08,000 --> 00:00:10,000 আমার ইউজার নেম হল Church of emacs\\n\\n7 00:00:10,000 --> 00:00:14,000 Bücherwürmlein হল জার্মানের একধরনের ছোট বইয়ের পোকা\\n\\n8 00:00:14,000 --> 00:00:16,000 Dew\\n\\n9 00:00:16,000 --> 00:00:17,000 Chomsky1\\n\\n10 00:00:17,000 --> 00:00:18,000 nasir8891\\n\\n11 00:00:18,000 --> 00:00:21,000 notafish, জানেন : « not a fish »\\n\\n12 00:00:21,000 --> 00:00:22,000 Theo10011\\n\\n13 00:00:22,000 --> 00:00:24,000 আমার ইউজার নেম হল Henna\\n\\n14 00:00:24,000 --> 00:00:25,000 Misou\\n\\n15 00:00:25,000 --> 00:00:26,000 আমার ইউজার নেম হল Lyzzy\\n\\n16 00:00:26,000 --> 00:00:30,000 wittylama, এটা আমার আসল নাম Liam Wyatt এর একটি অ্যানগ্রাম\\n\\n17 00:00:30,000 --> 00:00:31,000 Deryck Chan\\n\\n18 00:00:31,000 --> 00:00:32,000 Vulpeto\\n\\n19 00:00:32,000 --> 00:00:33,000 RajeshPandey\\n\\n20 00:00:33,000 --> 00:00:37,000 আমার ইউজার নেম হল Steven Walling, এটা আমার আসল নাম\\n\\n21 00:00:37,000 --> 00:00:38,000 আমার ইউজার নেম হল Waldir\\n\\n22 00:00:38,000 --> 00:00:41,000 আমার ইউজার নেম হল Mstislavl\\n\\n23 00:00:41,000 --> 00:00:44,000 Abbasjnr, a-double b-a-s-j-n-r\\n\\n24 00:00:44,000 --> 00:00:49,000 আমার ইউজার নেম হল Jdforrester এবং আমি উইকিপিডিয়া সম্পাদনা করি',\n", + " 'bytes': 1812,\n", + " 'sha1': 'tlih4cmsgurmc6br2px1j96mz88l5pa',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44707547,\n", + " 'timestamp': '2010-10-05T07:26:00Z',\n", + " 'user': {'id': 8448, 'text': 'Fulup'},\n", + " 'page': {'id': 11694786,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,000 --> 00:00:02,000 Bücherwürmlein eo ma anv implijer 2 00:00:02,000 --> 00:00:03,000 Lila roja 3 00:00:04,000 --> 00:00:05,000 yuyu 4 00:00:05,00...'\",\n", + " 'text': \"1 00:00:01,000 --> 00:00:02,000 Bücherwürmlein eo ma anv implijer\\n\\n2 00:00:02,000 --> 00:00:03,000 Lila roja\\n\\n3 00:00:04,000 --> 00:00:05,000 yuyu\\n\\n4 00:00:05,000 --> 00:00:07,000 Cbrown1023\\n\\n5 00:00:07,000 --> 00:00:08,000 22Kartika\\n\\n6 00:00:08,000 --> 00:00:10,000 Church of emacs eo ma anv implijer\\n\\n7 00:00:10,000 --> 00:00:14,000 Bücherwürmlein, se zo anv ur preñv bihan a grign levrioù, en alamaneg\\n\\n8 00:00:14,000 --> 00:00:16,000 Dew\\n\\n9 00:00:16,000 --> 00:00:17,000 Chomsky1\\n\\n10 00:00:17,000 --> 00:00:18,000 nasir8891\\n\\n11 00:00:18,000 --> 00:00:21,000 notafish, c'hwi 'oar : « not a fish »\\n\\n12 00:00:21,000 --> 00:00:22,000 Theo10011\\n\\n13 00:00:22,000 --> 00:00:24,000 Henna eo ma anv implijer\\n\\n14 00:00:24,000 --> 00:00:25,000 Misou\\n\\n15 00:00:25,000 --> 00:00:26,000 Lyzzy eo ma anv implijer\\n\\n16 00:00:26,000 --> 00:00:30,000 wittylama, un anagram eo diwar ma anv gwir Liam Wyatt\\n\\n17 00:00:30,000 --> 00:00:31,000 Deryck Chan\\n\\n18 00:00:31,000 --> 00:00:32,000 Vulpeto\\n\\n19 00:00:32,000 --> 00:00:33,000 RajeshPandey\\n\\n20 00:00:33,000 --> 00:00:37,000 Steven Walling eo ma anv implijer, ar pezh zo ma anv gwir\\n\\n21 00:00:37,000 --> 00:00:38,000 Waldir eo ma anv implijer\\n\\n22 00:00:38,000 --> 00:00:41,000 Mstislavl eo ma anv implijer\\n\\n23 00:00:41,000 --> 00:00:44,000 Abbasjnr, ur b-a-s-j-n-r doubl\\n\\n24 00:00:44,000 --> 00:00:49,000 Jdforrester eo ma anv ha perzh a gemeran e Wikipedia\",\n", + " 'bytes': 1399,\n", + " 'sha1': 'byutdvwija4qa4l2l32faymgagxd9lv',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44707770,\n", + " 'timestamp': '2010-10-05T07:39:57Z',\n", + " 'user': {'id': 348860, 'text': 'Diagramma Della Verita'},\n", + " 'page': {'id': 11694789,\n", + " 'title': 'Edit Button.ogv.ms.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:Edit Button.ogv.ms.srt/]] to [[TimedText:Edit Button.ogv.ms.srt]]: title wrong..',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nTerdapat tab \"sunting\"\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nHanya dengan menekannya,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\ncari bahagian teks dan sunting\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nkemudian tekan \"simpan\". Memang mudah.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nPerkara yang hebat tentang Wikipedia,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nialah anda boleh mengubah apa sahaja.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nAnda tidak memerlukan kebenaran sesiapa\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\ndan menyunting sememangnya senang. \\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nSuntingan anda mungkin kelihatan tidak menyeluruh pada permulaannya,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\ntetapi menyunting tidaklah susah. \\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nOrang ramai yang tidak sedar, bagaikan keliru dan buta.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nRamai orang yang membaca artikel tanpa menyedari tab \"sunting\"\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nTekan tab \"sunting\" dan lihatlah. \\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Sunting\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nApabila anda membuka ruang anda kepada sesuatu baru,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\ndan mula mencuba menyunting,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nbanyak perkara yang boleh berlaku,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\ndan kesannya amat menakjubkan.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nIni bagaikan titik permulaan,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nsuatu undangan untuk kehidupan.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nSetiap kali kami menulis suatu artikal baru, kami tidak berpuas hati,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nkerana artikal tidak bermutu \\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nTetapi, tunggu beberapa jam\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\ndan lihatlah bagaimana artikal tersebut berkembang menjadi lebih baik.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nTab \"sunting\": tekannya, dan menyunting sesuata\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nsimpan laman tersebut, anda telah melakukan sesuatu yang bermakna kepada seluruh dunia.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Simpan\".',\n", + " 'bytes': 2001,\n", + " 'sha1': '2v2wvr6yvs5nry1c7hm6c19ni1wmxhk',\n", + " 'parent_id': 44707570,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601706332,\n", + " 'timestamp': '2021-10-24T14:00:57Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11694803,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and partyally the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\nKäyttäjätunnukseni on Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nKäyttäjätunnukseni on Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\non pieni kirjamato Saksasa\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nChomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\ntiedäthän : «not a fish»\\n(«ei kala»)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,293 --> 00:00:23,785\\nKäyttäjätunnukseni on Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nKäyttäjätunnukseni on Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, se on anagrammi\\noikeasta nimestäni Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nKäyttäjätunnukseni on Steven Walling,\\njoka on oikea nimeni\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\nKäyttäjätunnukseni on Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nKäyttäjätunnukseni on Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nNimeni on Jdforrester \\na muokkaan Wikipediaa',\n", + " 'bytes': 1525,\n", + " 'sha1': 'n6c9s738gt6colkvqwt3xune40koszb',\n", + " 'parent_id': 44707668,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44715961,\n", + " 'timestamp': '2010-10-05T12:50:08Z',\n", + " 'user': {'id': 775084, 'text': 'Juhko'},\n", + " 'page': {'id': 11694836,\n", + " 'title': 'Nice People MEDIUM.ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 Jos tiedät paljon jostakin asiasta,\\n\\n2 00:00:04,249 --> 00:00:07,174 sinun kannattaisi jakaa tietosi! Mielestäni.\\n\\n3 00:00:07,174 --> 00:00:10,031 Pidän tämän sivuston tarkoituksesta\\n\\n4 00:00:10,031 --> 00:00:15,325 en sanonut \"sivusto\", enkä \"Wiki\", enkä myöskään \"Internet\",\\n\\n5 00:00:15,325 --> 00:00:17,113 sanoin \"Ilmaista tietoa,\\n\\n6 00:00:17,113 --> 00:00:19,411 kaikille, heidän omalla kielellään\".\\n\\n7 00:00:19,411 --> 00:00:21,548 Kun yhteisö on avoin,\\n\\n8 00:00:21,548 --> 00:00:23,428 se on todellakin avoin kaikille,\\n\\n9 00:00:23,428 --> 00:00:25,936 jotka uskaltavat ottaa kutsun vastaan.\\n\\n10 00:00:25,936 --> 00:00:27,956 Ja tämä kutsu.\\n\\n11 00:00:27,956 --> 00:00:29,535 Tietenkään sinun ei ole pakko hyväksyä kutsua,\\n\\n12 00:00:29,535 --> 00:00:31,439 mutta kutsu on avoin\\n\\n13 00:00:31,439 --> 00:00:32,879 muokkaa-painikkeessa, kuten sanotaan\\n\\n14 00:00:32,879 --> 00:00:37,709 \"Tule, osaksi meitä, sillä sinun tietosi ovat yhtä tärkeitä kuin meidänkin tietomme\".\\n\\n15 00:00:37,709 --> 00:00:40,472 Tiedät, että annat ihmisille tietoa,\\n\\n16 00:00:40,472 --> 00:00:43,026 et vain yhdelle, vaan koko maailman ihmisille.\\n\\n17 00:00:43,026 --> 00:00:47,113 Joten minusta on mukavaa osallistua tietosanakirjan tekoon,\\n\\n18 00:00:47,113 --> 00:00:51,455 jota kuka tahansa maailmassa voi käyttää.\\n\\n19 00:00:51,455 --> 00:00:55,286 Teet itsesi iloiseksi auttamalla muita, tätä se on.\\n\\n20 00:00:55,286 --> 00:00:57,283 Koska haluan olla iloinen, autan muita.\\n\\n21 00:00:57,283 --> 00:01:00,650 Työskentelet yhdessä niin monien ihmisten kanssa\\n\\n22 00:01:00,650 --> 00:01:04,156 niin monista eri kulttuureista, ja tämä on niin mahtavaa.\\n\\n23 00:01:04,156 --> 00:01:06,501 Minulle asia on juuri sitä, että saa \\n\\n24 00:01:06,501 --> 00:01:08,754 olla tekemisissä erilaisten ihmisten kanssa.\\n\\n25 00:01:08,754 --> 00:01:10,890 Saamme kaikki nämä mahtavat ihmiset, jotka\\n\\n26 00:01:10,890 --> 00:01:14,466 ovat tulossa verkkoon ja kirjoittamaan,\\n\\n27 00:01:14,466 --> 00:01:16,231 sen sijaan, että toisille huudettaisiin\\n\\n28 00:01:16,231 --> 00:01:18,437 tai keskusteltaisiin\\n\\n29 00:01:18,437 --> 00:01:20,875 tai luettaisiin juoruja tai mitä vain muutakaan,\\n\\n30 00:01:20,875 --> 00:01:22,198 he yrittävät rakentaa jotakin,\\n\\n31 00:01:22,198 --> 00:01:23,707 joka on hyödyllistä kenen tahansa muun mielestä.\\n\\n32 00:01:23,707 --> 00:01:26,029 Mielestäni juuri tämä on erittäin hyvä juttu Wikipediassa.',\n", + " 'bytes': 2471,\n", + " 'sha1': 'dx3jfzv17xupsuzw5i0a78din9yaurp',\n", + " 'parent_id': 44714281,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44710967,\n", + " 'timestamp': '2010-10-05T09:57:32Z',\n", + " 'user': {'id': 50587, 'text': 'Nemo bis'},\n", + " 'page': {'id': 11694977,\n", + " 'title': 'Wikimedia Italia - WikiGuida 2 - Commons.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:Commons h264 MVC theora.ogv.it.srt]] to [[TimedText:Wikimedia Italia - WikiGuida 2 - Commons.ogv.it.srt]]',\n", + " 'text': '1\\n00:00:11,086 --> 00:00:14,676\\nWikimedia Commons (chiamato anche semplicemente Commons)\\n\\n2\\n00:00:14,740 --> 00:00:17,986\\nè un archivio che raccoglie immagini, audio, video\\n\\n3\\n00:00:18,010 --> 00:00:22,196\\ne altre risorse multimediali a carattere illustrativo o educativo.\\n\\n4\\n00:00:22,174 --> 00:00:26,249\\nI materiali contenuti in Commons possono essere utilizzati liberamente,\\n\\n5\\n00:00:26,305 --> 00:00:31,028\\nanche per fini commerciali, a patto di rispettarne le condizioni d\\'uso.\\n\\n6\\n00:00:31,821 --> 00:00:35,200\\nFratello di Wikipedia, Commons è nato nel 2004\\n\\n7\\n00:00:35,236 --> 00:00:38,888\\ncome deposito comune per i vari progetti della Wikimedia Foundation,\\n\\n8\\n00:00:38,934 --> 00:00:42,153\\ne si è poi evoluto in un progetto con linee guida proprie.\\n\\n9\\n00:00:42,320 --> 00:00:46,469\\nIn Commons è possibile trovare fotografie di luoghi e monumenti.\\n\\n10\\n00:00:46,919 --> 00:00:49,281\\nAnimali, piante, minerali.\\n\\n11\\n00:00:49,726 --> 00:00:53,281\\nFoto di personaggi, di oggetti comuni e di opere d\\'arte.\\n\\n12\\n00:00:53,470 --> 00:00:58,183\\nE poi immagini e registrazioni storiche e scannerizzazioni di libri antichi.\\n\\n13\\n00:00:58,483 --> 00:01:01,021\\nSchemi, diagrammi, grafici e mappe.\\n\\n14\\n00:01:01,335 --> 00:01:06,275\\nVideo e registrazioni audio... e molto altro ancora.\\n\\n15\\n00:01:06,664 --> 00:01:10,650\\nIn alcuni casi i materiali non sono più protetti da diritto d\\'autore,\\n\\n16\\n00:01:10,774 --> 00:01:15,110\\nin altri gli autori o i detentori dei diritti hanno concesso il permesso\\n\\n17\\n00:01:15,123 --> 00:01:19,634\\ndi utilizzare i loro lavori a patto di rispettare semplici condizioni,\\n\\n18\\n00:01:19,630 --> 00:01:24,442\\ncome l\\'attribuzione o l\\'uso della stessa licenza per eventuali opere derivate.\\n\\n19\\n00:01:24,745 --> 00:01:28,870\\nOltre sette milioni le risorse in Commons, liberamente scaricabili\\n\\n20\\n00:01:28,908 --> 00:01:34,731\\ne utilizzabili per ricerche, siti web, manifesti, pubblicità, opere d\\'arte...\\n\\n21\\n00:01:35,761 --> 00:01:39,050\\nLe risorse di Commons possono essere inserite direttamente\\n\\n22\\n00:01:39,055 --> 00:01:43,766\\nsulle pagine dell\\'enciclopedia Wikipedia e in tutti gli altri progetti Wikimedia,\\n\\n23\\n00:01:43,777 --> 00:01:47,438\\nchiaramente nel rispetto delle linee guida dello specifico progetto,\\n\\n24\\n00:01:47,476 --> 00:01:49,767\\ndella comunità linguistica di riferimento\\n\\n25\\n00:01:49,777 --> 00:01:52,983\\ne della legislazione del paese di provenienza.\\n\\n26\\n00:01:53,723 --> 00:01:57,300\\nOgni file in Commons ha una propria pagina wiki.\\n\\n27\\n00:01:57,567 --> 00:02:00,235\\nDopo il titolo segue la risorsa multimediale\\n\\n28\\n00:02:00,223 --> 00:02:03,729\\no una sua anteprima, come nel caso di foto molto grandi.\\n\\n29\\n00:02:04,007 --> 00:02:07,821\\nSono poi inserite una descrizione (spesso in più lingue)\\n\\n30\\n00:02:07,825 --> 00:02:12,856\\ne tutte le informazioni disponibili, come fonte, autore, data, termini d\\'uso.\\n\\n31\\n00:02:13,083 --> 00:02:17,044\\nLa cronologia del file elenca tutte le sue eventuali rielaborazioni.\\n\\n32\\n00:02:17,058 --> 00:02:21,408\\nÈ infatti possibile correggere e migliorare i file caricati da altri utenti.\\n\\n33\\n00:02:21,795 --> 00:02:24,567\\nÈ inoltre presente l\\'elenco delle pagine di Commons\\n\\n34\\n00:02:24,568 --> 00:02:26,995\\ne degli altri progetti della Wikimedia Foundation\\n\\n35\\n00:02:27,004 --> 00:02:29,996\\nche hanno collegato o richiamato la risorsa.\\n\\n36\\n00:02:30,275 --> 00:02:32,752\\nIn fondo ci sono le categorie di appartenenza,\\n\\n37\\n00:02:32,790 --> 00:02:35,502\\ncon le quali la risorsa è stata catalogata.\\n\\n38\\n00:02:35,544 --> 00:02:38,209\\nLe categorie sono standardizzate in inglese,\\n\\n39\\n00:02:38,213 --> 00:02:41,927\\nma per usarle è sufficiente una conoscenza approssimativa della lingua.\\n\\n40\\n00:02:42,863 --> 00:02:45,245\\nCome contribuire a Commons?\\n\\n41\\n00:02:45,278 --> 00:02:48,559\\nUn amante della fotografia può inserire le sue immagini,\\n\\n42\\n00:02:48,659 --> 00:02:52,055\\nun bravo disegnatore può aggiungere diagrammi e animazioni,\\n\\n43\\n00:02:52,054 --> 00:02:54,924\\nun musicista la registrazione di opere libere.\\n\\n44\\n00:02:55,133 --> 00:02:58,899\\nPossono essere inseriti anche film e registrazioni di opere teatrali,\\n\\n45\\n00:02:58,926 --> 00:03:01,581\\npurché non siano coperte da copyright.\\n\\n46\\n00:03:02,452 --> 00:03:07,264\\nPer poter caricare dei file su Commons, bisogna essere utenti registrati.\\n\\n47\\n00:03:07,277 --> 00:03:11,832\\nLa registrazione, gratuita, si effettua velocemente, e non è necessaria\\n\\n48\\n00:03:11,887 --> 00:03:15,581\\nse si è già registrati in un altro progetto della Wikimedia Foundation.\\n\\n49\\n00:03:15,974 --> 00:03:19,324\\nÈ possibile caricare risorse solo in un formato libero.\\n\\n50\\n00:03:19,366 --> 00:03:23,448\\nAd esempio per i video è ammesso solo il formato Ogg Theora.\\n\\n51\\n00:03:23,529 --> 00:03:26,682\\nEsistono comunque vari convertitori open source\\n\\n52\\n00:03:26,622 --> 00:03:29,877\\nche si possono scaricare e utilizzare gratuitamente.\\n\\n53\\n00:03:30,249 --> 00:03:34,390\\nOgni file caricato deve rispettare: la legge degli Stati Uniti,\\n\\n54\\n00:03:34,385 --> 00:03:37,322\\ndove risiede legalmente la Wikimedia Foundation;\\n\\n55\\n00:03:37,322 --> 00:03:40,229\\nle leggi delle nazioni da cui deriva la risorsa;\\n\\n56\\n00:03:40,283 --> 00:03:45,626\\nle leggi del paese dell’utente, che rimane responsabile dei contenuti inseriti.\\n\\n57\\n00:03:46,104 --> 00:03:49,031\\nBisogna poi controllare che non si stiano infrangendo\\n\\n58\\n00:03:49,050 --> 00:03:52,175\\nle norme sulla privacy o sui marchi registrati\\n\\n59\\n00:03:52,195 --> 00:03:56,026\\no le restrizioni sull\\'uso delle opere d\\'arte di alcuni musei.\\n\\n60\\n00:03:56,557 --> 00:04:00,399\\nNel caso di opere già pubblicate altrove senza una licenza libera,\\n\\n61\\n00:04:00,448 --> 00:04:04,311\\nl\\'autore o i detentori dei diritti devono inviare una mail\\n\\n62\\n00:04:04,364 --> 00:04:07,380\\nin cui si identificano e dichiarano di acconsentire\\n\\n63\\n00:04:07,416 --> 00:04:11,201\\nalla pubblicazione della risorsa con una licenza libera.\\n\\n64\\n00:04:12,002 --> 00:04:16,003\\nCome Wikipedia, Commons è un wiki, un sito aperto a tutti\\n\\n65\\n00:04:16,006 --> 00:04:18,714\\ned è gestito da volontari da ogni parte del mondo\\n\\n66\\n00:04:18,767 --> 00:04:22,079\\nche si impegnano a identificare e categorizzare il materiale,\\n\\n67\\n00:04:22,123 --> 00:04:24,549\\ncompletare o tradurre le descrizioni,\\n\\n68\\n00:04:24,561 --> 00:04:27,484\\ncreare le gallerie e le pagine specifiche per tema,\\n\\n69\\n00:04:27,484 --> 00:04:31,936\\nindividuare e cancellare le risorse con licenze o fonti incomplete.\\n\\n70\\n00:04:32,872 --> 00:04:35,303\\nIl progetto Commons è multilingue:\\n\\n71\\n00:04:35,364 --> 00:04:37,898\\nun sito unico contiene tutte le traduzioni\\n\\n72\\n00:04:37,909 --> 00:04:41,307\\ne le comunità linguistiche convivono in uno stesso spazio.\\n\\n73\\n00:04:41,581 --> 00:04:45,686\\nPer facilitare la ricerca di determinati materiali all\\'interno di Commons,\\n\\n74\\n00:04:45,684 --> 00:04:49,139\\noltre che nelle categorie, è possibile cercare nelle gallerie,\\n\\n75\\n00:04:49,190 --> 00:04:51,584\\nche sono delle pagine appositamente create\\n\\n76\\n00:04:51,590 --> 00:04:54,682\\nper raccogliere materiale su un soggetto specifico.\\n\\n77\\n00:04:54,964 --> 00:04:58,377\\nLe discussioni su un determinato contenuto avvengono\\n\\n78\\n00:04:58,408 --> 00:05:01,966\\nnella pagina di discussione che affianca ogni risorsa di Commons,\\n\\n79\\n00:05:02,016 --> 00:05:05,889\\nmentre le discussioni generali in una pagina specifica.\\n\\n80\\n00:05:06,024 --> 00:05:08,918\\nLe comunicazioni sono principalmente in inglese,\\n\\n81\\n00:05:08,966 --> 00:05:12,569\\nma esistono anche pagine dedicate al confronto in altre lingue.\\n\\n82\\n00:05:12,853 --> 00:05:16,496\\nPer problemi tecnici ci sono a disposizione l\\'help desk\\n\\n83\\n00:05:16,535 --> 00:05:20,048\\ne numerose pagine di aiuto, tradotte in varie lingue.\\n\\n84\\n00:05:20,222 --> 00:05:23,240\\nPer questioni specifiche o particolarmente complesse,\\n\\n85\\n00:05:23,240 --> 00:05:26,739\\nci si può rivolgere agli amministratori, che sono dei volontari\\n\\n86\\n00:05:26,783 --> 00:05:29,486\\nche hanno guadagnato nel tempo la fiducia della comunità\\n\\n87\\n00:05:29,508 --> 00:05:33,164\\nper la loro conoscenza del progetto e che sono gli unici autorizzati\\n\\n88\\n00:05:33,201 --> 00:05:35,647\\nad eseguire alcune operazioni delicate,\\n\\n89\\n00:05:35,648 --> 00:05:38,603\\ncome ad esempio la cancellazione di una risorsa.\\n\\n90\\n00:05:39,690 --> 00:05:43,318\\nChi utilizza una risorsa di Commons deve assicurarsi sempre\\n\\n91\\n00:05:43,312 --> 00:05:46,334\\ndi rispettare le leggi del proprio paese di appartenenza.\\n\\n92\\n00:05:46,476 --> 00:05:48,614\\nCommons non può garantire la liceità\\n\\n93\\n00:05:48,683 --> 00:05:51,355\\ndell’uso di una risorsa in qualsiasi contesto,\\n\\n94\\n00:05:51,362 --> 00:05:54,260\\nné la sua assoluta accuratezza e affidabilità.\\n\\n95\\n00:05:54,307 --> 00:05:58,402\\nMa è incredibile quanto materiale valido e utilizzabile è stato inserito.\\n\\n96\\n00:05:59,339 --> 00:06:03,755\\nSempre più archivi di stato, musei, biblioteche, collezioni private\\n\\n97\\n00:06:03,774 --> 00:06:07,015\\neffettuano piccole o grandi \"donazioni\" di materiali\\n\\n98\\n00:06:07,063 --> 00:06:10,003\\nche diventano così utile patrimonio di tutti.\\n\\n99\\n00:06:10,655 --> 00:06:14,854\\nDiversi fotografi professionisti pubblicano le loro opere su Commons,\\n\\n100\\n00:06:14,871 --> 00:06:18,240\\norgogliosi di vedere il loro lavoro ripreso in mezzo mondo.\\n\\n101\\n00:06:18,413 --> 00:06:22,119\\nViene dato spazio anche a illustratori che hanno donato a Commons\\n\\n102\\n00:06:22,123 --> 00:06:26,151\\nschemi o diagrammi particolarmente efficaci ed eleganti.\\n\\n103\\n00:06:26,496 --> 00:06:30,857\\nPer il riconoscimento dei lavori di qualità esistono vari meccanismi:\\n\\n104\\n00:06:30,867 --> 00:06:35,316\\nad esempio annualmente si tiene un concorso per premiare la foto dell\\'anno.\\n\\n105\\n00:06:35,618 --> 00:06:38,555\\nUn\\'altra selezione sceglie le immagini più belle\\n\\n106\\n00:06:38,559 --> 00:06:40,828\\nrealizzate dagli utenti di Commons\\n\\n107\\n00:06:40,841 --> 00:06:45,220\\ne un\\'altra ancora invece premia le immagini più efficaci nel loro genere.\\n\\n108\\n00:06:45,462 --> 00:06:49,511\\nQuotidianamente viene scelta un\\'immagine particolarmente interessante\\n\\n109\\n00:06:49,532 --> 00:06:53,676\\ne la stessa prassi è usata anche per le risorse multimediali.\\n\\n110\\n00:06:54,345 --> 00:06:56,682\\nPer sostenere finanziamente Commons\\n\\n111\\n00:06:56,766 --> 00:06:59,570\\nsi può fare una donazione alla Wikimedia Foundation,\\n\\n112\\n00:06:59,599 --> 00:07:03,338\\noppure si può scegliere di sostenere (anche tramite il 5x1000)\\n\\n113\\n00:07:03,359 --> 00:07:06,715\\nWikimedia Italia, un’associazione senza scopo di lucro\\n\\n114\\n00:07:06,743 --> 00:07:08,757\\nche si occupa di promuovere in Italia\\n\\n115\\n00:07:08,792 --> 00:07:11,826\\nCommons e gli altri progetti della Wikimedia Foundation.',\n", + " 'bytes': 10583,\n", + " 'sha1': 'atnywqy2q7u5lykeio86y3w2vi2br7n',\n", + " 'parent_id': 44708790,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44741700,\n", + " 'timestamp': '2010-10-06T01:19:01Z',\n", + " 'user': {'id': 28, 'text': 'Eloquence'},\n", + " 'page': {'id': 11694983,\n", + " 'title': 'Wikimedia Italia - WikiGuida 2 - Commons.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'language/grammar tweaks',\n", + " 'text': '1\\n00:00:11,086 --> 00:00:14,676\\nWikimedia Commons (also known simply as Commons)\\n\\n2\\n00:00:14,740 --> 00:00:17,986\\nis a project that collects images, sounds, videos\\n\\n3\\n00:00:18,010 --> 00:00:22,196\\nand other educational and explanatory multimedia resources.\\n\\n4\\n00:00:22,174 --> 00:00:26,249\\nThe files hosted in Commons can be used freely,\\n\\n5\\n00:00:26,305 --> 00:00:31,028\\nalso for commercial purposes, if the terms of use are respected.\\n\\n6\\n00:00:31,821 --> 00:00:35,200\\nA sister project of Wikipedia, Commons was born in 2004\\n\\n7\\n00:00:35,236 --> 00:00:38,888\\nas a common repository for the several projects of the Wikimedia Foundation,\\n\\n8\\n00:00:38,934 --> 00:00:42,153\\nand then evolved as an independent project with its own guidelines.\\n\\n9\\n00:00:42,320 --> 00:00:46,469\\nIn Commons you can find pictures of places and landmarks.\\n\\n10\\n00:00:46,919 --> 00:00:49,281\\nAnimals, plants, minerals.\\n\\n11\\n00:00:49,726 --> 00:00:53,281\\nPictures of people, everyday objects, artworks.\\n\\n12\\n00:00:53,470 --> 00:00:58,183\\nAnd again historical pictures and recordings, and scans of ancient books.\\n\\n13\\n00:00:58,483 --> 00:01:01,021\\nSchemes, diagrams, graphs and maps,\\n\\n14\\n00:01:01,335 --> 00:01:06,275\\nVideo and audio recordings... and much more.\\n\\n15\\n00:01:06,664 --> 00:01:10,650\\nIn some cases the files are no longer protected by copyright,\\n\\n16\\n00:01:10,774 --> 00:01:15,110\\nin other cases, the authors or the copyright holders gave the permission\\n\\n17\\n00:01:15,123 --> 00:01:19,634\\nto use their materials under some simple conditions,\\n\\n18\\n00:01:19,630 --> 00:01:24,442\\nsuch as attribution, or the release of derivative works under the same license.\\n\\n19\\n00:01:24,745 --> 00:01:28,870\\nThere are more than 7 million resources in Commons, freely downloadable\\n\\n20\\n00:01:28,908 --> 00:01:34,731\\nthat can be used for papers, web sites, posters, advertising, art works...\\n\\n21\\n00:01:35,761 --> 00:01:39,050\\nThe resources from Commons can be directly included\\n\\n22\\n00:01:39,055 --> 00:01:43,766\\nin the pages of Wikipedia and any other Wikimedia project,\\n\\n23\\n00:01:43,777 --> 00:01:47,438\\nconsistent with the specific project guidelines,\\n\\n24\\n00:01:47,476 --> 00:01:49,767\\nthe expectations of the language community the use is aimed at,\\n\\n25\\n00:01:49,777 --> 00:01:52,983\\nand the applicable law in the country of origin.\\n\\n26\\n00:01:53,723 --> 00:01:57,300\\nEvery file in Commons has its own wiki page.\\n\\n27\\n00:01:57,567 --> 00:02:00,235\\nFirst comes the title, then the multimedia resource\\n\\n28\\n00:02:00,223 --> 00:02:03,729\\nor its preview, as it happens for very big photographs.\\n\\n29\\n00:02:04,007 --> 00:02:07,821\\nThen a description follows (often multilingual)\\n\\n30\\n00:02:07,825 --> 00:02:12,856\\nand all the available information such as the source, the author, the date, the terms of use.\\n\\n31\\n00:02:13,083 --> 00:02:17,044\\nThe history of the file lists all the existing modifications.\\n\\n32\\n00:02:17,058 --> 00:02:21,408\\nIn fact, it\\'s possible to modify and improve the files uploaded by other users.\\n\\n33\\n00:02:21,795 --> 00:02:24,567\\nThere\\'s also a list of the pages in Commons\\n\\n34\\n00:02:24,568 --> 00:02:26,995\\nand in the other projects of Wikimedia Foundation\\n\\n35\\n00:02:27,004 --> 00:02:29,996\\nthat link to or embed the resource.\\n\\n36\\n00:02:30,275 --> 00:02:32,752\\nAt the bottom, there are the categories\\n\\n37\\n00:02:32,790 --> 00:02:35,502\\nunder which the resource has been cataloged.\\n\\n38\\n00:02:35,544 --> 00:02:38,209\\nThe categories are standardized in English,\\n\\n39\\n00:02:38,213 --> 00:02:41,927\\nbut an approximate knowledge of the language is enough to handle them.\\n\\n40\\n00:02:42,863 --> 00:02:45,245\\nHow can you contribute to Commons?\\n\\n41\\n00:02:45,278 --> 00:02:48,559\\nThose very fond of photography can upload their pictures,\\n\\n42\\n00:02:48,659 --> 00:02:52,055\\na good illustrator can add diagrams and animations,\\n\\n43\\n00:02:52,054 --> 00:02:54,924\\na musician can upload recordings of free music.\\n\\n44\\n00:02:55,133 --> 00:02:58,899\\nEven movies and recordings of theatre plays can be uploaded,\\n\\n45\\n00:02:58,926 --> 00:03:01,581\\nas long as they are free from copyright restrictions.\\n\\n46\\n00:03:02,452 --> 00:03:07,264\\nIn order to upload files on Commons, you have to be a registered user.\\n\\n47\\n00:03:07,277 --> 00:03:11,832\\nThe registration is for free, quick and unnecessary if...\\n\\n48\\n00:03:11,887 --> 00:03:15,581\\n...you are already a registered user of another Wikimedia Foundation project.\\n\\n49\\n00:03:15,974 --> 00:03:19,324\\nIt\\'s allowed to upload only resources having a free format.\\n\\n50\\n00:03:19,366 --> 00:03:23,448\\nAs an example, the only allowed format for video is Ogg Theora.\\n\\n51\\n00:03:23,529 --> 00:03:26,682\\nSeveral open-source format converters are available\\n\\n52\\n00:03:26,622 --> 00:03:29,877\\nthan can be freely downloaded and used.\\n\\n53\\n00:03:30,249 --> 00:03:34,390\\nEvery uploaded file must comply with: the law of the United States,\\n\\n54\\n00:03:34,385 --> 00:03:37,322\\nwhere the Wikimedia Foundation legally resides;\\n\\n55\\n00:03:37,322 --> 00:03:40,229\\nthe law of the nation where the resource comes from;\\n\\n56\\n00:03:40,283 --> 00:03:45,626\\nthe law of the nation of the user, that is held responsible for the uploaded content.\\n\\n57\\n00:03:46,104 --> 00:03:49,031\\nThen you have to check that you\\'re not infringing\\n\\n58\\n00:03:49,050 --> 00:03:52,175\\nlaws about privacy and trademarks\\n\\n59\\n00:03:52,195 --> 00:03:56,026\\nor the restrictions posed by some museums about the use of the art works.\\n\\n60\\n00:03:56,557 --> 00:04:00,399\\nIn case of material already published somewhere else under a non-free license,\\n\\n61\\n00:04:00,448 --> 00:04:04,311\\nthe authors or the copyright holders have to send an e-mail\\n\\n62\\n00:04:04,364 --> 00:04:07,380\\nin which they identify themselves and declare their consent\\n\\n63\\n00:04:07,416 --> 00:04:11,201\\nto the publication of their material under a free license.\\n\\n64\\n00:04:12,002 --> 00:04:16,003\\nLike Wikipedia, Commons is a wiki, a site open to everybody\\n\\n65\\n00:04:16,006 --> 00:04:18,714\\nand is managed by volunteer users from every corner of the world\\n\\n66\\n00:04:18,767 --> 00:04:22,079\\nthat work to identify and categorize the material,\\n\\n67\\n00:04:22,123 --> 00:04:24,549\\ncomplete or translate the descriptions,\\n\\n68\\n00:04:24,561 --> 00:04:27,484\\ncreate galleries and theme-specific pages,\\n\\n69\\n00:04:27,484 --> 00:04:31,936\\nfind and delete the resources having unsuitable sources or licences.\\n\\n70\\n00:04:32,872 --> 00:04:35,303\\nCommons is a multilingual project:\\n\\n71\\n00:04:35,364 --> 00:04:37,898\\na single site hosts all the translated versions\\n\\n72\\n00:04:37,909 --> 00:04:41,307\\nand the various linguistic communities share the same space.\\n\\n73\\n00:04:41,581 --> 00:04:45,686\\nFor an easier search of materials in Commons,\\n\\n74\\n00:04:45,684 --> 00:04:49,139\\nother than categories, you can look at galleries,\\n\\n75\\n00:04:49,190 --> 00:04:51,584\\nwhich are pages purposefully created\\n\\n76\\n00:04:51,590 --> 00:04:54,682\\nto collect materials about a given topic.\\n\\n77\\n00:04:54,964 --> 00:04:58,377\\nThe discussions about content take place\\n\\n78\\n00:04:58,408 --> 00:05:01,966\\nin the discussion page that every resource has,\\n\\n79\\n00:05:02,016 --> 00:05:05,889\\nwhile general discussions about Commons take place in a dedicated page.\\n\\n80\\n00:05:06,024 --> 00:05:08,918\\nThe communication is mainly in English,\\n\\n81\\n00:05:08,966 --> 00:05:12,569\\nbut discussion pages in other languages are available as well.\\n\\n82\\n00:05:12,853 --> 00:05:16,496\\nShould you have problems, there\\'s a help desk\\n\\n83\\n00:05:16,535 --> 00:05:20,048\\nand many help pages, available in several languages.\\n\\n84\\n00:05:20,222 --> 00:05:23,240\\nFor specific or particularly complex issues,\\n\\n85\\n00:05:23,240 --> 00:05:26,739\\nyou can ask the administrators, who are volunteers\\n\\n86\\n00:05:26,783 --> 00:05:29,486\\nthat earned in time the trust of the community\\n\\n87\\n00:05:29,508 --> 00:05:33,164\\nfor their knowledge of the project, and are the only ones allowed\\n\\n88\\n00:05:33,201 --> 00:05:35,647\\nto perform some delicate operations,\\n\\n89\\n00:05:35,648 --> 00:05:38,603\\nsuch as the deletion of a resource.\\n\\n90\\n00:05:39,690 --> 00:05:43,318\\nIf you want to use a resource from Commons, always make sure\\n\\n91\\n00:05:43,312 --> 00:05:46,334\\nto comply with the law of your own country.\\n\\n92\\n00:05:46,476 --> 00:05:48,614\\nCommons cannot guarantee the lawfulness\\n\\n93\\n00:05:48,683 --> 00:05:51,355\\nof the use of a resource in any context,\\n\\n94\\n00:05:51,362 --> 00:05:54,260\\nnor its absolute accuracy and reliability.\\n\\n95\\n00:05:54,307 --> 00:05:58,402\\nBut it\\'s incredible to see how much valid and useful material has been uploaded.\\n\\n96\\n00:05:59,339 --> 00:06:03,755\\nMore and more public archives, museums, libraries, private collections\\n\\n97\\n00:06:03,774 --> 00:06:07,015\\nmake small and big \"donations\" of materials\\n\\n98\\n00:06:07,063 --> 00:06:10,003\\nthat become a public good.\\n\\n99\\n00:06:10,655 --> 00:06:14,854\\nSeveral professional photographers publish their work on Commons,\\n\\n100\\n00:06:14,871 --> 00:06:18,240\\nproud of seeing their work being spread around the world.\\n\\n101\\n00:06:18,413 --> 00:06:22,119\\nThe same for illustrators that gave to Commons\\n\\n102\\n00:06:22,123 --> 00:06:26,151\\nparticularly effective and elegant schemes and diagrams.\\n\\n103\\n00:06:26,496 --> 00:06:30,857\\nThe community has several ways to acknowledge quality works:\\n\\n104\\n00:06:30,867 --> 00:06:35,316\\nthere\\'s a contest to award the photograph of the year.\\n\\n105\\n00:06:35,618 --> 00:06:38,555\\nAnother selection picks the best pictures\\n\\n106\\n00:06:38,559 --> 00:06:40,828\\nproduced by Commons\\' users\\n\\n107\\n00:06:40,841 --> 00:06:45,220\\nand another one awards the most effective pictures for a genre.\\n\\n108\\n00:06:45,462 --> 00:06:49,511\\nA particularly interesting picture is chosen daily\\n\\n109\\n00:06:49,532 --> 00:06:53,676\\nand the same happens for the other multimedia resources.\\n\\n110\\n00:06:54,345 --> 00:06:56,682\\nYou can support Commons in substance\\n\\n111\\n00:06:56,766 --> 00:06:59,570\\nby making a donation to the Wikimedia Foundation,\\n\\n112\\n00:06:59,599 --> 00:07:03,338\\nor you can choose to support (also with your 5x1000 [applicable in Italy])\\n\\n113\\n00:07:03,359 --> 00:07:06,715\\nWikimedia Italia, a non-profit association\\n\\n114\\n00:07:06,743 --> 00:07:08,757\\nthat promotes in Italy\\n\\n115\\n00:07:08,792 --> 00:07:11,826\\nCommons and the other projects of the Wikimedia Foundation.',\n", + " 'bytes': 10150,\n", + " 'sha1': 'c26eyerqsiu50mxtawb4qszob99gvfo',\n", + " 'parent_id': 44710970,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44710975,\n", + " 'timestamp': '2010-10-05T09:57:44Z',\n", + " 'user': {'id': 50587, 'text': 'Nemo bis'},\n", + " 'page': {'id': 11694989,\n", + " 'title': 'Wikimedia Italia - WikiGuida 2 - Commons.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:Commons h264 MVC theora.ogv.es.srt]] to [[TimedText:Wikimedia Italia - WikiGuida 2 - Commons.ogv.es.srt]]',\n", + " 'text': '1\\n00:00:11,086 --> 00:00:14,676\\nWikimedia Commons (también llamado sencillamente Commons)\\n\\n2\\n00:00:14,740 --> 00:00:17,986\\nes un archivo que colecciona imágenes, sonidos, videos\\n\\n3\\n00:00:18,010 --> 00:00:22,196\\ny otros recursos multimediales con carácter explicativo o educacional.\\n\\n4\\n00:00:22,174 --> 00:00:26,249\\nLos materiales contenidos en Commons se pueden utilizar libremente,\\n\\n5\\n00:00:26,305 --> 00:00:31,028\\ntambién para fines comerciales, con tal que se respeten los términos de uso.\\n\\n6\\n00:00:31,821 --> 00:00:35,200\\nHermano de Wikipedia, Commons nació en 2004\\n\\n7\\n00:00:35,236 --> 00:00:38,888\\ncomo depósito común para los diferentes proyectos de la Wikimedia Foundation,\\n\\n8\\n00:00:38,934 --> 00:00:42,153\\ny a continuación evolucionó en un proyecto con sus propias líneas guía.\\n\\n9\\n00:00:42,320 --> 00:00:46,469\\nEn Commons es posible encontrar fotografías de sitios y monumentos.\\n\\n10\\n00:00:46,919 --> 00:00:49,281\\nAnimales, plantas, minerales.\\n\\n11\\n00:00:49,726 --> 00:00:53,281\\nFotos de personajes, de objetos diarios y de obras de arte.\\n\\n12\\n00:00:53,470 --> 00:00:58,183\\nY también imágenes y grabaciones históricas y escansiones de libros antiguos.\\n\\n13\\n00:00:58,483 --> 00:01:01,021\\nEsquemas, diagramas, graficas y mapas.\\n\\n14\\n00:01:01,335 --> 00:01:06,275\\nVideos y grabados audio... y mucho más aún.\\n\\n15\\n00:01:06,664 --> 00:01:10,650\\nEn ciertas circumstancias los materiales ya no están cubiertos por el derecho de autor,\\n\\n16\\n00:01:10,774 --> 00:01:15,110\\nen otras los autores o los titulares de los derechos han permitido\\n\\n17\\n00:01:15,123 --> 00:01:19,634\\nutilizar sus trabajos con tal que se respeten condiciones sencillas,\\n\\n18\\n00:01:19,630 --> 00:01:24,442\\ncomo la atribución o el utilizo de la misma licencia para obras derivadas.\\n\\n19\\n00:01:24,745 --> 00:01:28,870\\nMás de siete millones de recursos en Commons, libremente descargables\\n\\n20\\n00:01:28,908 --> 00:01:34,731\\ny utilizables para búsquedas, sitios web, carteles, publicidad, obras de arte...\\n\\n21\\n00:01:35,761 --> 00:01:39,050\\nLos recursos de Commons se pueden insertar directamente\\n\\n22\\n00:01:39,055 --> 00:01:43,766\\nen las páginas de Wikipedia y en todos los demás proyectos Wikimedia,\\n\\n23\\n00:01:43,777 --> 00:01:47,438\\nclaramente respetando las líneas guía del proyecto específico,\\n\\n24\\n00:01:47,476 --> 00:01:49,767\\nde la comunidad lingüistica a la que se refieren\\n\\n25\\n00:01:49,777 --> 00:01:52,983\\ny de la legislación del país de procedencia.\\n\\n26\\n00:01:53,723 --> 00:01:57,300\\nCada archivo en Commons tiene su propia página wiki.\\n\\n27\\n00:01:57,567 --> 00:02:00,235\\nDespués del título sigue el recurso multimedial\\n\\n28\\n00:02:00,223 --> 00:02:03,729\\no una vista previa, como en el caso de fotos muy grandes.\\n\\n29\\n00:02:04,007 --> 00:02:07,821\\nA continuación se encuentra una desripción (muchas veces en varios idiomas)\\n\\n30\\n00:02:07,825 --> 00:02:12,856\\ny toda la información disponible, como fuente, autor, fecha, términos de uso.\\n\\n31\\n00:02:13,083 --> 00:02:17,044\\nEl historial del archivo lista todas las eventuales reelaboraciones.\\n\\n32\\n00:02:17,058 --> 00:02:21,408\\nEn efecto es posible corregir y mejorar los archivos subidos por otros usuarios.\\n\\n33\\n00:02:21,795 --> 00:02:24,567\\nTambién es presente la lista de las páginas de Commons\\n\\n34\\n00:02:24,568 --> 00:02:26,995\\ny de los demás proyectos de Wikimedia Foundation\\n\\n35\\n00:02:27,004 --> 00:02:29,996\\nque enlazan o contienen el recurso.\\n\\n36\\n00:02:30,275 --> 00:02:32,752\\nEn la parte inferior hay las categorías de pertenencia,\\n\\n37\\n00:02:32,790 --> 00:02:35,502\\nen las cuales el recurso ha sido listado.\\n\\n38\\n00:02:35,544 --> 00:02:38,209\\nLas categorías están estandarizadas en inglés,\\n\\n39\\n00:02:38,213 --> 00:02:41,927\\npero para utilizarlas sólo se necesita un conocimiento básico del idioma.\\n\\n40\\n00:02:42,863 --> 00:02:45,245\\nComo contribuir a Commons?\\n\\n41\\n00:02:45,278 --> 00:02:48,559\\nUn aficionado de fotografía puede subir sus imágenes,\\n\\n42\\n00:02:48,659 --> 00:02:52,055\\nun buen dibujante puede añadir diagramas y animaciones,\\n\\n43\\n00:02:52,054 --> 00:02:54,924\\nun músico la grabación de obras libres.\\n\\n44\\n00:02:55,133 --> 00:02:58,899\\nTambién se pueden subir películas y grabaciones de obras de teatro,\\n\\n45\\n00:02:58,926 --> 00:03:01,581\\ncon lo que no séan protegidas por el derecho de autor.\\n\\n46\\n00:03:02,452 --> 00:03:07,264\\nPara poder subir archivos a Commons, se precisa estar registrados.\\n\\n47\\n00:03:07,277 --> 00:03:11,832\\nEl registro, gratúito, se hace enseguida, y no es necesario\\n\\n48\\n00:03:11,887 --> 00:03:15,581\\nsi ya se está registrados en otro proyecto de Wikimedia Foundation.\\n\\n49\\n00:03:15,974 --> 00:03:19,324\\nEs posible subir recursos sólo bajo formato libre.\\n\\n50\\n00:03:19,366 --> 00:03:23,448\\nPor ejemplo, para los videos solo se admite el formato Ogg Theora.\\n\\n51\\n00:03:23,529 --> 00:03:26,682\\nDe todas formas hay muchos coventidores open source\\n\\n52\\n00:03:26,622 --> 00:03:29,877\\nque se pueden bajar y utilizar gratúitamente.\\n\\n53\\n00:03:30,249 --> 00:03:34,390\\nCada archivo subido debe respetar: la ley de EE. UU.,\\n\\n54\\n00:03:34,385 --> 00:03:37,322\\ndonde reside legalmente la Wikimedia Foundation;\\n\\n55\\n00:03:37,322 --> 00:03:40,229\\nlas leyes de las naciones de donde procede el recurso;\\n\\n56\\n00:03:40,283 --> 00:03:45,626\\nlas leyes del país del usuario, que sigue siendo responsable de los contenidos subidos.\\n\\n57\\n00:03:46,104 --> 00:03:49,031\\nA continuación se debe comprobar que no se estea infringiendo\\n\\n58\\n00:03:49,050 --> 00:03:52,175\\nla ley de privacidad o de marcas registradas\\n\\n59\\n00:03:52,195 --> 00:03:56,026\\no las limitaciones sobre el utilizo de las obras de arte de unos museos.\\n\\n60\\n00:03:56,557 --> 00:04:00,399\\nEn el caso de obras ya publicadas en otro sitio sin licencia libre,\\n\\n61\\n00:04:00,448 --> 00:04:04,311\\nel autor o los detentores de los derechos tienen que enviar un correo\\n\\n62\\n00:04:04,364 --> 00:04:07,380\\ndonde se identifican y declaran consentir\\n\\n63\\n00:04:07,416 --> 00:04:11,201\\ncon la publicación del recurso bajo licencia libre.\\n\\n64\\n00:04:12,002 --> 00:04:16,003\\nAl igual que Wikipedia, Commons es un wiki, un sitio abierto a todos\\n\\n65\\n00:04:16,006 --> 00:04:18,714\\ny está gestionado por voluntarios desde cada rincón del mundo\\n\\n66\\n00:04:18,767 --> 00:04:22,079\\nque se compromiten a identificar y categorizar el material,\\n\\n67\\n00:04:22,123 --> 00:04:24,549\\ncompletar o traducir la descripción,\\n\\n68\\n00:04:24,561 --> 00:04:27,484\\ncrear las galerías y las páginas específicas por tema,\\n\\n69\\n00:04:27,484 --> 00:04:31,936\\nidentificar y borrar los recursos con licencia o fuente incompleta.\\n\\n70\\n00:04:32,872 --> 00:04:35,303\\nEl proyecto Commons es multilingüe:\\n\\n71\\n00:04:35,364 --> 00:04:37,898\\nun solo sitio contiene todas las traducciones\\n\\n72\\n00:04:37,909 --> 00:04:41,307\\ny las comunidades lingüisticas conviven en el mismo espacio.\\n\\n73\\n00:04:41,581 --> 00:04:45,686\\nPara facilitar la búsqueda de ciertos materiales dentro de Commons,\\n\\n74\\n00:04:45,684 --> 00:04:49,139\\nademás que en las categorías, es posible buscar en las galerías,\\n\\n75\\n00:04:49,190 --> 00:04:51,584\\nque son páginas creadas específicamente\\n\\n76\\n00:04:51,590 --> 00:04:54,682\\npara recolectar material sobre un tema específico.\\n\\n77\\n00:04:54,964 --> 00:04:58,377\\nLas discusiones sobre un determinado contenido se hallan\\n\\n78\\n00:04:58,408 --> 00:05:01,966\\nen la página de discusión que flanquea cada recurso de Commons,\\n\\n79\\n00:05:02,016 --> 00:05:05,889\\nmientras las discusiones generales en una página específica.\\n\\n80\\n00:05:06,024 --> 00:05:08,918\\nLa comunicación es sobre todo en inglés,\\n\\n81\\n00:05:08,966 --> 00:05:12,569\\npero también existen páginas dedicadas a la confrontación en otros idiomas.\\n\\n82\\n00:05:12,853 --> 00:05:16,496\\nPara los problemas técnicos está disponible el help desk\\n\\n83\\n00:05:16,535 --> 00:05:20,048\\ny una moltitud de páginas de ayuda, traducidas a varios idiomas.\\n\\n84\\n00:05:20,222 --> 00:05:23,240\\nPara asuntos específicos o muy complejos,\\n\\n85\\n00:05:23,240 --> 00:05:26,739\\nse puede preguntar a los administradores, que son unos voluntarios\\n\\n86\\n00:05:26,783 --> 00:05:29,486\\nque en el tiempo se han ganado la confianza de la comunidad\\n\\n87\\n00:05:29,508 --> 00:05:33,164\\npor su conocimiento del proyecto y que son los únicos autorizados\\n\\n88\\n00:05:33,201 --> 00:05:35,647\\na hacer unas operaciones sensibles,\\n\\n89\\n00:05:35,648 --> 00:05:38,603\\ncomo por ejemplo borrar un recurso.\\n\\n90\\n00:05:39,690 --> 00:05:43,318\\nQuién utiliza un recurso de Commons siempre tiene que asegurarse\\n\\n91\\n00:05:43,312 --> 00:05:46,334\\nde respetar las leyes de su propio país de pertenencia.\\n\\n92\\n00:05:46,476 --> 00:05:48,614\\nCommons no puede garantizar la legalidad\\n\\n93\\n00:05:48,683 --> 00:05:51,355\\ndel utilizo de un recurso en un contexto cualquiera,\\n\\n94\\n00:05:51,362 --> 00:05:54,260\\ntampoco su absoluta exactitud y fiabilidad.\\n\\n95\\n00:05:54,307 --> 00:05:58,402\\nPero es increíble cuanto material bueno y utilizable se ha subido.\\n\\n96\\n00:05:59,339 --> 00:06:03,755\\nMás y más archivos de estado, museos, bibliotecas, colecciones privadas\\n\\n97\\n00:06:03,774 --> 00:06:07,015\\nhacen pequeños o grandes \"donativos\" de materiales\\n\\n98\\n00:06:07,063 --> 00:06:10,003\\nque así se convierten en patrimonio de todos.\\n\\n99\\n00:06:10,655 --> 00:06:14,854\\nVarios fotógrafos profesionales publican sus trabajos en Commons,\\n\\n100\\n00:06:14,871 --> 00:06:18,240\\norgullosos de ver su trabajo reutilizado en todo el mundo.\\n\\n101\\n00:06:18,413 --> 00:06:22,119\\nTambién se ofrece espacio a ilustradores que han donado a Commons\\n\\n102\\n00:06:22,123 --> 00:06:26,151\\nesquemas o diagramas particularmente efectivos y elegantes.\\n\\n103\\n00:06:26,496 --> 00:06:30,857\\nPara la apreciación de los trabajos de calidad existen varios mecanismos:\\n\\n104\\n00:06:30,867 --> 00:06:35,316\\npor ejemplo anualmente hay un concurso para premiar la foto del año.\\n\\n105\\n00:06:35,618 --> 00:06:38,555\\nOtra selección elige las imágenes más bellas\\n\\n106\\n00:06:38,559 --> 00:06:40,828\\nrealizadas por los usuarios de Commons\\n\\n107\\n00:06:40,841 --> 00:06:45,220\\ny otra más en cambio premia las imágenes más efectívas en su género.\\n\\n108\\n00:06:45,462 --> 00:06:49,511\\nDiariamente se elige una imágen particularmente interesante\\n\\n109\\n00:06:49,532 --> 00:06:53,676\\ny la misma práctica se utiliza también para los recursos multimediales.\\n\\n110\\n00:06:54,345 --> 00:06:56,682\\nPara apoyar economicamente Commons\\n\\n111\\n00:06:56,766 --> 00:06:59,570\\nse puede hacer un donativo a Wikimedia Foundation,\\n\\n112\\n00:06:59,599 --> 00:07:03,338\\no se puede elegir de apoyar (también a través del 5x1000)\\n\\n113\\n00:07:03,359 --> 00:07:06,715\\nWikimedia Italia, una asociación sin ánimo de lucro\\n\\n114\\n00:07:06,743 --> 00:07:08,757\\nque se ocupa de promover en Italia\\n\\n115\\n00:07:08,792 --> 00:07:11,826\\nCommons y los demás proyectos de Wikimedia Foundation.',\n", + " 'bytes': 10704,\n", + " 'sha1': '5gcqkorwnzp5mvwc6qyl0sh6d8qhvyv',\n", + " 'parent_id': 44708841,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601721497,\n", + " 'timestamp': '2021-10-24T14:50:57Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11695802,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.ms.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and partyally the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,611\\nNama pengguna saya ialah Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nNama pengguna saya ialah Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein Ini ialah\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\nulat buku kecil dalam Bahasa German\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nIni ialah Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,243\\nNotafish\\n\\n13\\n00:00:19,243 --> 00:00:21,256\\nkamu tahu: «not a fish»\\n(bukan seekor ikan)\\n\\n14\\n00:00:21,256 --> 00:00:22,343\\nTheo10011\\n\\n15\\n00:00:22,343 --> 00:00:23,785\\nNama pengguna saya ialah Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nNama pengguna saya ialah Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, kata terbalik\\nnama asli saya Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nNama pengguna saya ialah\\nSteven Walling, ia juga nama asli saya\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\nNama pengguna saya ialah Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nNama pengguna saya ialah Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,557 --> 00:00:47,570\\nNama pengguna saya ialah\\nJdforrester dan saya sunting Wikipedia',\n", + " 'bytes': 1571,\n", + " 'sha1': '5mm2enxo1xx93vplnbio8n775o7t5uj',\n", + " 'parent_id': 44711059,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44715240,\n", + " 'timestamp': '2010-10-05T12:29:00Z',\n", + " 'user': {'id': 639212, 'text': 'Olli'},\n", + " 'page': {'id': 11697694,\n", + " 'title': 'Great Feeling.ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,905 --> 00:00:03,204 Heh, ei, ei minulla ole supervoimia. 2 00:00:03,204 --> 00:00:05,990 Ei. Ei ollenkaan. 3 00:00:05,990 --> 00:00:08,034 Voit varma...'\",\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nHeh, ei, ei minulla ole supervoimia.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nEi. Ei ollenkaan.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nVoit varmasti tehdä sen.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nPainoin nappia,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nja tallensin tekstin,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWooooo!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nSe oli... jännittävää.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nMuutit juuri Wikipediaa,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nlisäsit oman muokkauksesi Wikipediaan.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nLuin artikkelin \"Guardian\"-lehdestä, se käsitteli\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\ntätä verkkotietosanakirjaa,\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\njota kuka tahansa voi muokata\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nja sanoin, \"Vau!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Ehkä minäkin voisin muokata!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nTein siis ensimmäisen muokkaukseni\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nja olen tainnut tulla riippuvaiseksi siitä.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nMinulle ei makseta siitä mitään,\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nteen sitä niin kuin tekisin mitä\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\ntahansa muutakin asiaa vapaa-ajallani, sitä se on.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nVoit aloittaa sen tekemisen ajatuksen avulla,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nkoska uskot siihen,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nkoska päädyt ystävien luokse,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nkoska päädyt rakastajien luokse,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nkoska päädyt erinomaisiin keskusteluihin,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nkoska päädyt uusiin ajatuksiin,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\npäädyt uusiin kirjoihin, joita kirjoitat...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nEt kirjoita artikkelia yksin.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nKirjoitat siitä vähän,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nja joku toinen jatkaa:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hei, tiedän lisää!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nja yhdessä voitte luoda\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nartikkeleita, jotka ovat sivujen pituisia,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\njota et voisi tehdä itse.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nSitten olet onnistunut.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\n\"Ok, hyvähän tästä tuli.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nja tämä on loistavaa.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nTämä on mahtavaa,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nkoska muokkaaminen on niin mahtava tunne.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nJoka ikinen kerta, kun teet sen.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nMinun täytyy sanoa, että\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nkun luin Wikipediasta ensimmäistä kertaa,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\npäätin\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Tähän luultavasti sopisin mukaan\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nJa niin kävi.',\n", + " 'bytes': 2832,\n", + " 'sha1': '84yfgy79ibion4kj65q2d2cbbb8urrr',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44715579,\n", + " 'timestamp': '2010-10-05T12:37:47Z',\n", + " 'user': {'id': 757330, 'text': 'Kuailong'},\n", + " 'page': {'id': 11697834,\n", + " 'title': 'Nice People MEDIUM.ogv.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 如果你拥有知识,为什么只将它留给自己独享?\\n\\n2 00:00:04,249 --> 00:00:07,174 在我看来,你应该分享它!\\n\\n3 00:00:07,174 --> 00:00:10,031 我喜欢这个网站,在于其宗旨中\\n\\n4 00:00:10,031 --> 00:00:15,325 并没有说“网站”,没有说“维基”,也没有说“因特网”,\\n\\n5 00:00:15,325 --> 00:00:17,113 而只是说“自由的知识\\n\\n6 00:00:17,113 --> 00:00:19,411 留给全人类,用他们自己的语言撰写”。\\n\\n7 00:00:19,411 --> 00:00:21,548 一个开放的社群,\\n\\n8 00:00:21,548 --> 00:00:23,428 是由那些\\n\\n9 00:00:23,428 --> 00:00:25,936 敢于接受邀请者组成的。\\n\\n10 00:00:25,936 --> 00:00:27,956 现在,这就是一份邀请。\\n\\n11 00:00:27,956 --> 00:00:29,535 当然你不必接受它,\\n\\n12 00:00:29,535 --> 00:00:31,439 但是有这样一份邀请\\n\\n13 00:00:31,439 --> 00:00:32,879 它以一个“编辑”按钮形式存在,召唤着你:\\n\\n14 00:00:32,879 --> 00:00:37,709 “快来,参与进来,你所知道的同我们所知道的同等重要”。\\n\\n15 00:00:37,709 --> 00:00:40,472 你知道你在教育他人,\\n\\n16 00:00:40,472 --> 00:00:43,026 而且不仅仅是几个人,而是全世界。\\n\\n17 00:00:43,026 --> 00:00:47,113 所以我很高兴能够为这样一个百科全书做贡献,\\n\\n18 00:00:47,113 --> 00:00:51,455 它对于全世界的任何人都是触手可及的。\\n\\n19 00:00:51,455 --> 00:00:55,286 就是在帮助他人的时候让自己也开心,仅此而已。.\\n\\n20 00:00:55,286 --> 00:00:57,283 因为我希望得到快乐,因此我选择帮助他人。\\n\\n21 00:00:57,283 --> 00:01:00,650 你在和众多人一同合作,\\n\\n22 00:01:00,650 --> 00:01:04,156 他们有许多不同的文化,这是在是太令人惊奇了。\\n\\n23 00:01:04,156 --> 00:01:06,501 对于此,就我而言,最重要的是,\\n\\n24 00:01:06,501 --> 00:01:08,754 他们都是十分可爱的人。\\n\\n25 00:01:08,754 --> 00:01:10,890 你知道,我们有这些十分可爱的人,\\n\\n26 00:01:10,890 --> 00:01:14,466 他们上线,开始打字,\\n\\n27 00:01:14,466 --> 00:01:16,231 不是在互相大嚷大叫,\\n\\n28 00:01:16,231 --> 00:01:18,437 或者仅仅是在交谈,\\n\\n29 00:01:18,437 --> 00:01:20,875 抑或是阅读花边新闻或其他东西,\\n\\n30 00:01:20,875 --> 00:01:22,198 他们是在努力创建一个\\n\\n31 00:01:22,198 --> 00:01:23,707 对其他人益处良多的东西。\\n\\n32 00:01:23,707 --> 00:01:26,029 我认为他们是十分可爱,十分和善的人。',\n", + " 'bytes': 2511,\n", + " 'sha1': 'anhjg7wc75ndfdjlppi32itycrcrq27',\n", + " 'parent_id': 44715491,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44715639,\n", + " 'timestamp': '2010-10-05T12:39:29Z',\n", + " 'user': {'id': 757330, 'text': 'Kuailong'},\n", + " 'page': {'id': 11697867,\n", + " 'title': 'Nice People MEDIUM.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 如果你拥有知识,为什么只将它留给自己独享?\\n\\n2 00:00:04,249 --> 00:00:07,174 在我看来,你应该分享它!\\n\\n3 00:00:07,174 --> 00:00:10,031 我喜欢这个网站的宗旨,\\n\\n4 00:00:10,031 --> 00:00:15,325 其中并没有说“网站”,没有说“维基”,也没有说“因特网”,\\n\\n5 00:00:15,325 --> 00:00:17,113 而只是说“自由的知识\\n\\n6 00:00:17,113 --> 00:00:19,411 留给全人类,用他们自己的语言撰写而成”。\\n\\n7 00:00:19,411 --> 00:00:21,548 一个开放的社群,\\n\\n8 00:00:21,548 --> 00:00:23,428 是由那些\\n\\n9 00:00:23,428 --> 00:00:25,936 敢于接受邀请者组成的。\\n\\n10 00:00:25,936 --> 00:00:27,956 现在,这就是一份邀请。\\n\\n11 00:00:27,956 --> 00:00:29,535 当然你不必接受它,\\n\\n12 00:00:29,535 --> 00:00:31,439 但是有这样一份邀请\\n\\n13 00:00:31,439 --> 00:00:32,879 它以一个“编辑”按钮形式存在,召唤着你:\\n\\n14 00:00:32,879 --> 00:00:37,709 “快来,参与进来,你所知道的同我们所知道的同等重要”。\\n\\n15 00:00:37,709 --> 00:00:40,472 你知道你在教育他人,\\n\\n16 00:00:40,472 --> 00:00:43,026 而且不仅仅是几个人,而是全世界。\\n\\n17 00:00:43,026 --> 00:00:47,113 所以我很高兴能够为这样一个百科全书做贡献,\\n\\n18 00:00:47,113 --> 00:00:51,455 它对于全世界的任何人都是触手可及的。\\n\\n19 00:00:51,455 --> 00:00:55,286 就是在帮助他人的时候让自己也开心,仅此而已。.\\n\\n20 00:00:55,286 --> 00:00:57,283 因为我希望得到快乐,因此我选择帮助他人。\\n\\n21 00:00:57,283 --> 00:01:00,650 你在和众多人一同合作,\\n\\n22 00:01:00,650 --> 00:01:04,156 他们有许多不同的文化,这是在是太令人惊奇了。\\n\\n23 00:01:04,156 --> 00:01:06,501 对于此,就我而言,最重要的是,\\n\\n24 00:01:06,501 --> 00:01:08,754 他们都是十分可爱的人。\\n\\n25 00:01:08,754 --> 00:01:10,890 你知道,我们有这些十分可爱的人,\\n\\n26 00:01:10,890 --> 00:01:14,466 他们上线,开始打字,\\n\\n27 00:01:14,466 --> 00:01:16,231 不是在互相大嚷大叫,\\n\\n28 00:01:16,231 --> 00:01:18,437 或者仅仅是在交谈,\\n\\n29 00:01:18,437 --> 00:01:20,875 抑或是阅读花边新闻或其他东西,\\n\\n30 00:01:20,875 --> 00:01:22,198 他们是在努力创建一个\\n\\n31 00:01:22,198 --> 00:01:23,707 对其他人益处良多的东西。\\n\\n32 00:01:23,707 --> 00:01:26,029 我认为他们是十分可爱,十分和善的人。',\n", + " 'bytes': 2514,\n", + " 'sha1': 'qrwttrvepveqpkfg43t9erpe4vl0765',\n", + " 'parent_id': 44715549,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44715731,\n", + " 'timestamp': '2010-10-05T12:42:25Z',\n", + " 'user': {'id': 757330, 'text': 'Kuailong'},\n", + " 'page': {'id': 11697965,\n", + " 'title': 'Nice People MEDIUM.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,300 --> 00:00:04,249 如果你擁有知識,為什麼只將它留給自己獨享? 2 00:00:04,249 --> 00:00:07,174 在我看來,你應該分享它...'\",\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 如果你擁有知識,為什麼只將它留給自己獨享?\\n\\n2 00:00:04,249 --> 00:00:07,174 在我看來,你應該分享它!\\n\\n3 00:00:07,174 --> 00:00:10,031 我喜歡這個網站的宗旨,\\n\\n4 00:00:10,031 --> 00:00:15,325 其中並沒有說「網站」,沒有說「維基」,也沒有說「網際網路」,\\n\\n5 00:00:15,325 --> 00:00:17,113 而只是說「自由的知識\\n\\n6 00:00:17,113 --> 00:00:19,411 留給全人類,用他們自己的語言撰寫而成」。\\n\\n7 00:00:19,411 --> 00:00:21,548 一個開放的社群,\\n\\n8 00:00:21,548 --> 00:00:23,428 是由那些\\n\\n9 00:00:23,428 --> 00:00:25,936 敢於接受邀請者組成的。\\n\\n10 00:00:25,936 --> 00:00:27,956 現在,這就是一份邀請。\\n\\n11 00:00:27,956 --> 00:00:29,535 當然你不必接受它,\\n\\n12 00:00:29,535 --> 00:00:31,439 但是有這樣一份邀請\\n\\n13 00:00:31,439 --> 00:00:32,879 它以一個「編輯」按鈕形式存在,召喚著你:\\n\\n14 00:00:32,879 --> 00:00:37,709 「快來,參與進來,你所知道的同我們所知道的同等重要」。\\n\\n15 00:00:37,709 --> 00:00:40,472 你知道你在教育他人,\\n\\n16 00:00:40,472 --> 00:00:43,026 而且不僅僅是幾個人,而是全世界。\\n\\n17 00:00:43,026 --> 00:00:47,113 所以我很高興能夠為這樣一個百科全書做貢獻,\\n\\n18 00:00:47,113 --> 00:00:51,455 它對於全世界的任何人都是觸手可及的。\\n\\n19 00:00:51,455 --> 00:00:55,286 就是在幫助他人的時候讓自己也開心,僅此而已。\\n\\n20 00:00:55,286 --> 00:00:57,283 因為我希望得到快樂,因此我選擇幫助他人。\\n\\n21 00:00:57,283 --> 00:01:00,650 你在和眾多人一同合作,\\n\\n22 00:01:00,650 --> 00:01:04,156 他們有許多不同的文化,這是在是太令人驚奇了。\\n\\n23 00:01:04,156 --> 00:01:06,501 對於此,就我而言,最重要的是,\\n\\n24 00:01:06,501 --> 00:01:08,754 他們都是十分可愛的人。\\n\\n25 00:01:08,754 --> 00:01:10,890 你知道,我們有這些十分可愛的人,\\n\\n26 00:01:10,890 --> 00:01:14,466 他們上線,開始打字,\\n\\n27 00:01:14,466 --> 00:01:16,231 不是在互相大嚷大叫,\\n\\n28 00:01:16,231 --> 00:01:18,437 或者僅僅是在交談,\\n\\n29 00:01:18,437 --> 00:01:20,875 抑或是閱讀花邊新聞或其他東西,\\n\\n30 00:01:20,875 --> 00:01:22,198 他們是在努力創建一個\\n\\n31 00:01:22,198 --> 00:01:23,707 對其他人益處良多的東西。\\n\\n32 00:01:23,707 --> 00:01:26,029 我認為他們是十分可愛,十分和善的人。',\n", + " 'bytes': 2516,\n", + " 'sha1': '782wkpxua7vw55ehbxt0qbu3llh5t10',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44716365,\n", + " 'timestamp': '2010-10-05T13:03:03Z',\n", + " 'user': {'id': 652302, 'text': 'Timk70'},\n", + " 'page': {'id': 11698245,\n", + " 'title': 'Edit Button.ogv.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'vertaling',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nEr is een bewerkknop.\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nKlik daarop,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nga naar de tekst, bewerk\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nen klik op \"opslaan\". Zo simpel is het.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nHet leuke aan Wikipedia,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nis dat je dingen kunt veranderen.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nJe hebt andermans toestemming niet nodig\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nen het is niet moeilijk.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nIn het begin lijkt het een beetje ontmoedigend,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nmaar het is echt niet moeilijk.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nMensen hebben het niet in de gaten, alsof ze het niet zien.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nMensen lezen artikelen, maar zien de bewerkknop niet.\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nKlik op die knop en kijk wat er gebeurd.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Bewerken.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nAls je er klaar voor bent,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nen je begint met schrijven,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nkunnen er andere dingen gebeuren,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nen dat is erg mooi.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nHet kan een begin zijn van iets moois.\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nEen uitnodiging voor meer leven, op een of andere manier.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nWanneer we een artikel beginnen, vinden we het niet goed,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nomdat je het bijvoorbeeld kort vindt.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nAls je een paar... uur wacht,\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nzul je zien dat het een goed artikel is geworden.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nDe bewerkknop: klik erop, verander iets,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nen sla de pagina op. Je hebt de hele wereld veranderd.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Opslaan\".',\n", + " 'bytes': 1868,\n", + " 'sha1': '8859ellrbshgu3osibvqrqrakbz5bde',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44716406,\n", + " 'timestamp': '2010-10-05T13:04:07Z',\n", + " 'user': {'id': 757330, 'text': 'Kuailong'},\n", + " 'page': {'id': 11698259,\n", + " 'title': 'Great Feeling.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,905 --> 00:00:03,204 呃,不,我没有超能力。 2 00:00:03,204 --> 00:00:05,990 一点都没有。没有。 3 00:00:05,990 --> 00:00:08,034 你...'\",\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\n呃,不,我没有超能力。\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\n一点都没有。没有。\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\n你完全可以做到。\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\n我点了一下按钮,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\n保存了文字,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\n喔!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\n这真的是……太令人兴奋了\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\n你刚刚修改了维基百科,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\n你可以为维基百科作出自己的贡献。\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\n我在《卫报》上阅读了一篇文章,\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\n介绍这个在线百科全书,\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\n人人均可编辑,\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\n我当时就说,“喔!”\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n“或许我也可以做点贡献”\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\n我做了第一次编辑之后\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\n就觉得自己不可自拔。\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\n我并没有得到任何报酬,\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\n你知道,我这样做只是\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\n为了在闲暇时光有些事做,仅此而已。\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\n你可能是因为一个信念开始编辑百科,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\n因为你笃信它,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\n但是你最终会得以熟识朋友,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\n最终会得以结交恋人,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\n最终会开始参与美妙的讨论,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\n最终会得到新的想法,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\n你最终会开始撰写新书……\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\n你并不是一个人在撰写条目,\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\n你先写了一部分,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\n其他人会说:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n“嘿,我知道更多!”\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\n你们一道,可以创造出\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\n数页长的条目,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\n仅以你一人之力是无法做到的。\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\n接着你获得了成功。\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\n你总会看到,“好吧,我所做的十分成功。”\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\n这实在太美妙了。\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\n这很棒,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\n因为,编辑条目是很棒的感受。\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\n每次你编辑时都能感觉到。\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\n我必须承认,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\n当我读到有关维基百科的文章时,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\n我下定决心,\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n“这或许是适合我的地方”\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\n而事实也正是这样。',\n", + " 'bytes': 2912,\n", + " 'sha1': 'qawfh3bmn64olajees7x58xjnltifdg',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44716662,\n", + " 'timestamp': '2010-10-05T13:10:03Z',\n", + " 'user': {'id': 757330, 'text': 'Kuailong'},\n", + " 'page': {'id': 11698298,\n", + " 'title': 'Great Feeling.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,905 --> 00:00:03,204 呃,不,我沒有超能力。 2 00:00:03,204 --> 00:00:05,990 一點都沒有。沒有。 3 00:00:05,990 --> 00:00:08,034 你...'\",\n", + " 'text': '1 00:00:00,905 --> 00:00:03,204 呃,不,我沒有超能力。\\n\\n2 00:00:03,204 --> 00:00:05,990 一點都沒有。沒有。\\n\\n3 00:00:05,990 --> 00:00:08,034 你完全可以做到。\\n\\n4 00:00:08,359 --> 00:00:10,216 我點了一下按鈕,\\n\\n5 00:00:10,216 --> 00:00:12,654 保存了文字,\\n\\n6 00:00:12,654 --> 00:00:14,048 喔!\\n\\n7 00:00:14,048 --> 00:00:16,509 這真的是……太令人興奮了\\n\\n8 00:00:16,509 --> 00:00:18,041 你剛剛修改了維基百科,\\n\\n9 00:00:18,041 --> 00:00:20,990 你可以為維基百科作出自己的貢獻。\\n\\n10 00:00:20,990 --> 00:00:23,150 我在《衛報》上閱讀了一篇文章,\\n\\n11 00:00:23,150 --> 00:00:25,704 介紹這個在線百科全書,\\n\\n12 00:00:25,704 --> 00:00:27,538 人人均可編輯,\\n\\n13 00:00:27,538 --> 00:00:28,955 我當時就說,「喔!」\\n\\n14 00:00:28,955 --> 00:00:31,277 「或許我也可以做點貢獻」\\n\\n15 00:00:31,277 --> 00:00:32,693 我做了第一次編輯之後\\n\\n16 00:00:32,693 --> 00:00:34,388 就覺得自己不可自拔。\\n\\n17 00:00:34,388 --> 00:00:36,153 我並沒有得到任何報酬,\\n\\n18 00:00:36,153 --> 00:00:37,593 你知道,我這樣做只是\\n\\n19 00:00:37,593 --> 00:00:39,543 為了在閒暇時光有些事做,僅此而已。\\n\\n20 00:00:39,543 --> 00:00:42,004 你可能是因為一個信念開始編輯百科,\\n\\n21 00:00:42,004 --> 00:00:43,235 因為你篤信它,\\n\\n22 00:00:43,235 --> 00:00:45,069 但是你最終會得以熟識朋友,\\n\\n23 00:00:45,069 --> 00:00:46,834 最終會得以結交戀人,\\n\\n24 00:00:46,834 --> 00:00:49,528 最終會開始參與美妙的討論,\\n\\n25 00:00:49,528 --> 00:00:50,642 最終會得到新的想法,\\n\\n26 00:00:50,642 --> 00:00:52,616 你最終會開始撰寫新書……\\n\\n27 00:00:52,616 --> 00:00:54,404 你並不是一個人在撰寫條目,\\n\\n28 00:00:54,404 --> 00:00:55,843 你先寫了一部分,\\n\\n29 00:00:55,843 --> 00:00:56,772 其他人會說:\\n\\n30 00:00:56,772 --> 00:00:57,817 「嘿,我知道更多!」\\n\\n31 00:00:57,817 --> 00:00:58,955 你們一道,可以創造出\\n\\n32 00:00:58,955 --> 00:01:01,068 數頁長的條目,\\n\\n33 00:01:01,068 --> 00:01:02,322 僅以你一人之力是無法做到的。\\n\\n34 00:01:02,322 --> 00:01:03,808 接著你獲得了成功。\\n\\n35 00:01:03,808 --> 00:01:06,618 你總會看到,「好吧,我所做的十分成功。」\\n\\n36 00:01:06,618 --> 00:01:08,220 這實在太美妙了。\\n\\n37 00:01:08,220 --> 00:01:08,893 這很棒,\\n\\n38 00:01:08,893 --> 00:01:11,447 因為,編輯條目是很棒的感受。\\n\\n39 00:01:11,447 --> 00:01:12,655 每次你編輯時都能感覺到。\\n\\n40 00:01:12,655 --> 00:01:13,676 我必須承認,\\n\\n41 00:01:13,676 --> 00:01:14,954 當我讀到有關維基百科的文章時,\\n\\n42 00:01:14,954 --> 00:01:15,557 我下定決心,\\n\\n43 00:01:15,557 --> 00:01:17,926 「這或許是適合我的地方」\\n\\n44 00:01:17,926 --> 00:01:19,365 而事實也正是這樣。',\n", + " 'bytes': 2912,\n", + " 'sha1': 'p60wzvelxwq5kfrjbi0c5gnjzpim6c0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44717015,\n", + " 'timestamp': '2010-10-05T13:26:53Z',\n", + " 'user': {'id': 757330, 'text': 'Kuailong'},\n", + " 'page': {'id': 11698394,\n", + " 'title': 'Edit Button.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,114 --> 00:00:02,414 页面上有一个“编辑”按钮 2 00:00:02,530 --> 00:00:03,830 只需点击它, 3 00:00:03,830 --> 00:00:06,664 找到文...'\",\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\n页面上有一个“编辑”按钮\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\n只需点击它,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\n找到文本部分,编辑它\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\n接着点“保存”。就是这么简单。\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\n维基百科最酷的一点在于,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\n你可以做修改。\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\n你不需要任何人的许可\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\n并且这一点都不困难。\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\n最开始可能有点让人望而却步,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\n但它真的并不困难。\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\n人们并没有意识到,就仿佛这是某种选择性失明。\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\n人们阅读条目,但是他们都看不到“编辑”按钮。\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\n点击一下那个按钮,看看会发生什么。\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n“编辑。”\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\n当你对某一事情放开自我,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\n你开始行动,进行编辑,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\n其他各种事情都可能发生,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\n那是在是太美妙了。\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\n比如,这可能只是一个起点,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\n某种程度上,是经历更丰富的生活的邀请。\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\n当你开始撰写条目时,我们都不会喜欢它,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\n因为你会发现它十分丑陋。\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\n但是请等待……数个小时\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\n看看它将如何转变为一个精美的条目。\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\n“编辑”按钮:点击它,做些改变,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\n保存页面,你可以影响全世界。\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n“保存”。',\n", + " 'bytes': 1957,\n", + " 'sha1': '616csehca0y6eqmkqdu1pgiur4cz3p0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 172916918,\n", + " 'timestamp': '2015-09-22T15:53:34Z',\n", + " 'user': {'id': 996385, 'text': 'KOKUYO'},\n", + " 'page': {'id': 11698402,\n", + " 'title': 'Edit Button.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:01,114 --> 00:00:02,414 頁面上有一個「編輯」按鈕\\n\\n2 00:00:02,530 --> 00:00:03,830 只需點擊它\\n\\n3 00:00:03,830 --> 00:00:06,664 找到文本部分,編輯它\\n\\n4 00:00:06,664 --> 00:00:09,110 接著點「保存」。就是這麼簡單\\n\\n5 00:00:09,752 --> 00:00:10,913 維基百科最酷的一點在於\\n\\n6 00:00:11,163 --> 00:00:12,236 你可以做修改\\n\\n7 00:00:12,236 --> 00:00:14,066 你不需要任何人的許可\\n\\n8 00:00:14,066 --> 00:00:15,325 並且這一點都不困難\\n\\n9 00:00:15,325 --> 00:00:17,809 最開始可能有點讓人望而卻步\\n\\n10 00:00:17,809 --> 00:00:19,829 但它真的並不困難\\n\\n11 00:00:19,829 --> 00:00:23,777 人們並沒有意識到,就彷彿這是某種選擇性失明\\n\\n12 00:00:23,777 --> 00:00:27,585 人們閱讀條目,但是他們都看不到「編輯」按鈕\\n\\n13 00:00:27,585 --> 00:00:29,721 點擊一下那個按鈕,看看會發生什麼\\n\\n14 00:00:29,721 --> 00:00:31,625 「編輯。」\\n\\n15 00:00:31,625 --> 00:00:34,040 當你對某一事情放開自我\\n\\n16 00:00:34,040 --> 00:00:35,433 你開始行動,進行編輯\\n\\n17 00:00:35,433 --> 00:00:38,289 其他各種事情都可能發生\\n\\n18 00:00:38,289 --> 00:00:40,124 那是在是太美妙了\\n\\n19 00:00:40,124 --> 00:00:41,679 比如,這可能只是一個起點\\n\\n20 00:00:41,679 --> 00:00:45,139 某種程度上,是經歷更豐富的生活的邀請\\n\\n21 00:00:45,139 --> 00:00:48,018 當你開始撰寫條目時,我們都不會喜歡它\\n\\n22 00:00:48,018 --> 00:00:49,597 因為你會發現它十分醜陋\\n\\n23 00:00:49,597 --> 00:00:53,614 但是請等待……數個小時\\n\\n24 00:00:53,614 --> 00:00:56,842 看看它將如何轉變為一個精美的條目\\n\\n25 00:00:56,842 --> 00:00:59,396 「編輯」按鈕:點擊它,做些改變\\n\\n26 00:00:59,396 --> 00:01:02,043 保存頁面,你可以影響全世界\\n\\n27 00:01:02,043 --> 00:01:04,203 「保存」',\n", + " 'bytes': 1891,\n", + " 'sha1': 'qo04sebb6v68baejtutyur2y5rherwr',\n", + " 'parent_id': 44717043,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44717319,\n", + " 'timestamp': '2010-10-05T13:42:02Z',\n", + " 'user': {'id': 652302, 'text': 'Timk70'},\n", + " 'page': {'id': 11698502,\n", + " 'title': 'Nice People MEDIUM.ogv.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'vertaling',\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 Als je iets weet, waarom zou je het voor jezelf houden?\\n\\n2 00:00:04,249 --> 00:00:07,174 Je moet het met anderen delen! Denk ik.\\n\\n3 00:00:07,174 --> 00:00:10,031 Ik vind het doel van deze website geweldig.\\n\\n4 00:00:10,031 --> 00:00:15,325 Niet \"website\", niet \"wiki\", niet \"internet\",\\n\\n5 00:00:15,325 --> 00:00:17,113 het doel is \"vrije kennis,\\n\\n6 00:00:17,113 --> 00:00:19,411 voor iedereen in zijn eigen moedertaal\".\\n\\n7 00:00:19,411 --> 00:00:21,548 Een open gemeenschap\\n\\n8 00:00:21,548 --> 00:00:23,428 bestaat uit diegene,\\n\\n9 00:00:23,428 --> 00:00:25,936 die de uitnodiging durven te accepteren.\\n\\n10 00:00:25,936 --> 00:00:27,956 En dit is een uitnodiging.\\n\\n11 00:00:27,956 --> 00:00:29,535 Je hoeft de uitnodiging natuurlijk niet aan te nemen,\\n\\n12 00:00:29,535 --> 00:00:31,439 maar er is een uitnodiging\\n\\n13 00:00:31,439 --> 00:00:32,879 in de bewerkknop, die zegt\\n\\n14 00:00:32,879 --> 00:00:37,709 \"Kom op, doe mee, wat jij weet is even belangrijk als wat wij weten\".\\n\\n15 00:00:37,709 --> 00:00:40,472 Je geeft jouw kennis aan de mensen,\\n\\n16 00:00:40,472 --> 00:00:43,026 en niet zomaar mensen, maar aan de hele wereld.\\n\\n17 00:00:43,026 --> 00:00:47,113 Daarom voel ik me goed bij het bijdragen aan een encyclopedie,\\n\\n18 00:00:47,113 --> 00:00:51,455 die door vrijwel iedereen op de wereld beschikbaar is.\\n\\n19 00:00:51,455 --> 00:00:55,286 Je maakt jezelf gelukkig door anderen te helpen, zo werkt het.\\n\\n20 00:00:55,286 --> 00:00:57,283 Ik wil gelukkig zijn, dus ik help anderen.\\n\\n21 00:00:57,283 --> 00:01:00,650 Je werkt met zoveel verschillende mensen samen\\n\\n22 00:01:00,650 --> 00:01:04,156 met zoveel verschillende culturen. Het is wonderbaarlijk.\\n\\n23 00:01:04,156 --> 00:01:06,501 Het bijzondere voor mij, waar het echt omgaat,\\n\\n24 00:01:06,501 --> 00:01:08,754 dat zijn de erg lieve mensen.\\n\\n25 00:01:08,754 --> 00:01:10,890 Dat zijn de mensen, \\n\\n26 00:01:10,890 --> 00:01:14,466 die online zijn en typen,\\n\\n27 00:01:14,466 --> 00:01:16,231 in plaats van roepen naar elkaar\\n\\n28 00:01:16,231 --> 00:01:18,437 of gewoon een gesprek voeren\\n\\n29 00:01:18,437 --> 00:01:20,875 of lezen over roddels of wat dan ook.\\n\\n30 00:01:20,875 --> 00:01:22,198 Deze mensen proberen iets op te bouwen,\\n\\n31 00:01:22,198 --> 00:01:23,707 wat andere mensen nuttig vinden.\\n\\n32 00:01:23,707 --> 00:01:26,029 Ik denk dat het heel lief is, erg aardige mensen.',\n", + " 'bytes': 2379,\n", + " 'sha1': 'mn8a4lqos72bznsmx5khxp1irfq6eri',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601724123,\n", + " 'timestamp': '2021-10-24T15:14:12Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11698613,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and (probably) partially the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\n我的用戶名是Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\n我的用戶名是Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein是\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\n一名德國的小書蟲\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\n这是Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\n你知道:\\n«not a fish»(不是一條魚)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,499 --> 00:00:23,785\\n我的用戶名是Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\n我的用戶名是Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, 這是我的真名\\nLiam Wyatt的一個字謎\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\n我的用戶名是Steven Walling,\\n也是我的真名\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\n我的用戶名是Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\n我的用戶名是Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\n我的名字是Jdforrester,\\n我編輯維基百科',\n", + " 'bytes': 1488,\n", + " 'sha1': 'e8gmvz3iolgxrvwowtt2qvq784qktn3',\n", + " 'parent_id': 44790805,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601723576,\n", + " 'timestamp': '2021-10-24T15:09:28Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11698629,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.yue.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and (probably) partially the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\n我嘅用戶名係Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\n我嘅用戶名係Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\n係一個德國嘅小書蟲\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\n這是Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\n你知道:\\n«not a fish»(唔係一條魚)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,293 --> 00:00:23,785\\n我嘅用戶名係Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\n我嘅用戶名係Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, 呢個係我嘅真名\\nLiam Wyatt嘅一個字謎\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\n我嘅用戶名係Steven Walling,\\n亦都係我嘅真名\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\n我嘅用戶名係Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\n我嘅用戶名係Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\n我嘅用戶名係Jdforrester,\\n我編輯維基百科',\n", + " 'bytes': 1501,\n", + " 'sha1': 'ro4wr4p6hq2s9ekzo2nle1cewg9jvkp',\n", + " 'parent_id': 44717714,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45359936,\n", + " 'timestamp': '2010-10-23T09:44:41Z',\n", + " 'user': {'id': 25480, 'text': 'Ainali'},\n", + " 'page': {'id': 11698694,\n", + " 'title': 'Wikimedia Italia - WikiGuida 2 - Commons.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'a few typos',\n", + " 'text': '1\\n00:00:11,086 --> 00:00:14,676\\nWikimedia Commons (också känt som bara Commons)\\n\\n2\\n00:00:14,740 --> 00:00:17,986\\när ett projekt som samlar bilder ljud och video\\n\\n3\\n00:00:18,010 --> 00:00:22,196\\noch annan utbildande och förklarande multimedia.\\n\\n4\\n00:00:22,174 --> 00:00:26,249\\nFilerna lagras på Commons och kan användas fritt,\\n\\n5\\n00:00:26,305 --> 00:00:31,028\\näven för kommersiella ändamål, så länge licensen respekteras.\\n\\n6\\n00:00:31,821 --> 00:00:35,200\\nBror till Wikipedia, föddes Commons 2004\\n\\n7\\n00:00:35,236 --> 00:00:38,888\\nsom en gemensam lagringsplats för flera av Wikimedia Foundations projekt,\\n\\n8\\n00:00:38,934 --> 00:00:42,153\\noch har sedan utvecklats som ett eget självständigt projekt med egna riktlinjer.\\n\\n9\\n00:00:42,320 --> 00:00:46,469\\nPå Commons kan du hitta bilder av platser och landmärken.\\n\\n10\\n00:00:46,919 --> 00:00:49,281\\nDjur, växter och mineraler.\\n\\n11\\n00:00:49,726 --> 00:00:53,281\\nBilder av personer, vardagliga saker, konstföremål.\\n\\n12\\n00:00:53,470 --> 00:00:58,183\\nOch återigen historiska bilder och inspelningar och inscannade antika böcker.\\n\\n13\\n00:00:58,483 --> 00:01:01,021\\nFörklaringar, diagram, grafer och kartor.\\n\\n14\\n00:01:01,335 --> 00:01:06,275\\nVideo- och ljudinspelningar... och mycket mer.\\n\\n15\\n00:01:06,664 --> 00:01:10,650\\nI vissa fall är filerna inte längre skyddade av upphovsrätten,\\n\\n16\\n00:01:10,774 --> 00:01:15,110\\ni andra fall har upphovsmännen gett sitt tillstånd\\n\\n17\\n00:01:15,123 --> 00:01:19,634\\nför materialet att användas enligt några enkla villkor,\\n\\n18\\n00:01:19,630 --> 00:01:24,442\\nsåsom attribution, eller att släppa modifierade verk under samma licens.\\n\\n19\\n00:01:24,745 --> 00:01:28,870\\nDet finns mer än 7 miljoner filer på Commons, fria att ladda ner\\n\\n20\\n00:01:28,908 --> 00:01:34,731\\nsom kan användas till tidningar, webbplatser, affischer, reklam, konst...\\n\\n21\\n00:01:35,761 --> 00:01:39,050\\nFiler från Commons kan användas direkt\\n\\n22\\n00:01:39,055 --> 00:01:43,766\\npå en Wikipediasida eller något annat Wikimediaprojekt,\\n\\n23\\n00:01:43,777 --> 00:01:47,438\\nmed hänsyn taget till det specifika projektets riktlinjer\\n\\n24\\n00:01:47,476 --> 00:01:49,767\\nsom det språkets gemenskap är riktat mot\\n\\n25\\n00:01:49,777 --> 00:01:52,983\\noch lagarna som gäller i verkets ursprungsland.\\n\\n26\\n00:01:53,723 --> 00:01:57,300\\nVarje fil på Commons har sin egen wikisida.\\n\\n27\\n00:01:57,567 --> 00:02:00,235\\nFörst kommer titeln, sedan själva multimediat\\n\\n28\\n00:02:00,223 --> 00:02:03,729\\neller dess förhandsgranskning, som till exempel för stora fotografier.\\n\\n29\\n00:02:04,007 --> 00:02:07,821\\nSedan kommer en beskrivning (ofta på flera språk)\\n\\n30\\n00:02:07,825 --> 00:02:12,856\\noch all tillgänglig information såsom källa, skapare, datum, regler för användning.\\n\\n31\\n00:02:13,083 --> 00:02:17,044\\nFilhistoriken visar alla modifieringar av filen.\\n\\n32\\n00:02:17,058 --> 00:02:21,408\\nDet är faktiskt möjligt att modifiera och förbättra filer som har laddats upp av andra användare.\\n\\n33\\n00:02:21,795 --> 00:02:24,567\\nDet finns också en lista över alla sidor på Commons\\n\\n34\\n00:02:24,568 --> 00:02:26,995\\noch de andra Wikimediaprojekten\\n\\n35\\n00:02:27,004 --> 00:02:29,996\\nsom länkar till eller använder filen.\\n\\n36\\n00:02:30,275 --> 00:02:32,752\\nLängst ner finns kategorier\\n\\n37\\n00:02:32,790 --> 00:02:35,502\\nsom filen har placerats i.\\n\\n38\\n00:02:35,544 --> 00:02:38,209\\nKategorierna är standardiserade på engelska,\\n\\n39\\n00:02:38,213 --> 00:02:41,927\\nmen det räcker med en ungefärlig förståelse för att kunna hantera dem.\\n\\n40\\n00:02:42,863 --> 00:02:45,245\\nHur kan du bidra till Commons?\\n\\n41\\n00:02:45,278 --> 00:02:48,559\\nDe som gillar att fotografera kan ladda upp sina bilder,\\n\\n42\\n00:02:48,659 --> 00:02:52,055\\nen god illustratör kan lägga till diagram och animationer,\\n\\n43\\n00:02:52,054 --> 00:02:54,924\\nen musiker kan ladda upp inspelningar av fri musik.\\n\\n44\\n00:02:55,133 --> 00:02:58,899\\nÄven filmer och inspelningar av teatrar kan laddas upp,\\n\\n45\\n00:02:58,926 --> 00:03:01,581\\nså länge de inte är skyddade av upphovsrätt.\\n\\n46\\n00:03:02,452 --> 00:03:07,264\\nFör att kunna ladda upp filer måste du registrera en användare.\\n\\n47\\n00:03:07,277 --> 00:03:11,832\\nRegistreringen är gratis och enkel, och behövs inte...\\n\\n48\\n00:03:11,887 --> 00:03:15,581\\n...om du redan är en registrerad användare på något annat av Wikimedia Foundations projekt.\\n\\n49\\n00:03:15,974 --> 00:03:19,324\\nDet är bara tillåtet att ladda upp filer som har ett fritt format.\\n\\n50\\n00:03:19,366 --> 00:03:23,448\\nTill exempel, det enda tillåtna formatet för video är Ogg Theora.\\n\\n51\\n00:03:23,529 --> 00:03:26,682\\nFlera öppen källkodsformatkomverterare finns\\n\\n52\\n00:03:26,622 --> 00:03:29,877\\nsom kan laddas ner och användas.\\n\\n53\\n00:03:30,249 --> 00:03:34,390\\nAlla uppladdade filer måste uppfylla följande: USAs lagar,\\n\\n54\\n00:03:34,385 --> 00:03:37,322\\ndär Wikimedia Foundations juridiska hemvist är;\\n\\n55\\n00:03:37,322 --> 00:03:40,229\\nlagarna i landet filen kommer ifrån;\\n\\n56\\n00:03:40,283 --> 00:03:45,626\\nlagarna i landet som användaren som är ansvarig för uppladdningen finns i.\\n\\n57\\n00:03:46,104 --> 00:03:49,031\\nSedan måste du vara säker på att du inte inkräktar\\n\\n58\\n00:03:49,050 --> 00:03:52,175\\npå lagar om integritet och varumärken\\n\\n59\\n00:03:52,195 --> 00:03:56,026\\neller restriktioner som vissa museer ställer för användandet av deras konstföremål.\\n\\n60\\n00:03:56,557 --> 00:04:00,399\\nOm material redan är publicerat någon annanstans under en fri licens,\\n\\n61\\n00:04:00,448 --> 00:04:04,311\\nmåste skaparna eller upphovsrättsinnehavarna skicka epost\\n\\n62\\n00:04:04,364 --> 00:04:07,380\\ndär de identifierar sig och uttalar deras medgivande\\n\\n63\\n00:04:07,416 --> 00:04:11,201\\natt publicera deras material under en fri licens.\\n\\n64\\n00:04:12,002 --> 00:04:16,003\\nLiksom Wikipedia är Commons en wiki, en webbplats öppen för alla\\n\\n65\\n00:04:16,006 --> 00:04:18,714\\noch som sköts av frivilliga från alla jordens hörn\\n\\n66\\n00:04:18,767 --> 00:04:22,079\\nsom arbetar med att identifiera och kategorisera materialet,\\n\\n67\\n00:04:22,123 --> 00:04:24,549\\nkomplettera och översätta beskrivningarna,\\n\\n68\\n00:04:24,561 --> 00:04:27,484\\nskapa gallerier och tematiska sidor,\\n\\n69\\n00:04:27,484 --> 00:04:31,936\\nhitta och radera filer som inte har en passande licens.\\n\\n70\\n00:04:32,872 --> 00:04:35,303\\nCommons är ett flerspråkigt projekt:\\n\\n71\\n00:04:35,364 --> 00:04:37,898\\nen enda webbplats som lagrar alla översatta versioner\\n\\n72\\n00:04:37,909 --> 00:04:41,307\\noch de olika språkgemenskaperna delar samma utrymme.\\n\\n73\\n00:04:41,581 --> 00:04:45,686\\nFör att lättare hitta material,\\n\\n74\\n00:04:45,684 --> 00:04:49,139\\npå annat sätt än i kategorier, kan du titta i gallerier,\\n\\n75\\n00:04:49,190 --> 00:04:51,584\\nsom är sidor som har skapats just\\n\\n76\\n00:04:51,590 --> 00:04:54,682\\nför att samla material om ett givet ämne.\\n\\n77\\n00:04:54,964 --> 00:04:58,377\\nDiskussionerna om innehållet äger rum\\n\\n78\\n00:04:58,408 --> 00:05:01,966\\npå diskussionssidorna som varje fil har,\\n\\n79\\n00:05:02,016 --> 00:05:05,889\\nmedan generella diskussioner om Commons hålls på en särskild sida.\\n\\n80\\n00:05:06,024 --> 00:05:08,918\\nKommunikationen är mest på engelska,\\n\\n81\\n00:05:08,966 --> 00:05:12,569\\nmen det finns diskussionssidor även på andra språk.\\n\\n82\\n00:05:12,853 --> 00:05:16,496\\nOm du får problem finns det frågesida\\n\\n83\\n00:05:16,535 --> 00:05:20,048\\noch många hjälpsidor på många olika språk.\\n\\n84\\n00:05:20,222 --> 00:05:23,240\\nFör specifika eller svårhanterade ärenden,\\n\\n85\\n00:05:23,240 --> 00:05:26,739\\nkan du fråga administratörerna, som är frivilliga\\n\\n86\\n00:05:26,783 --> 00:05:29,486\\nsom har fått förtroende av gemenskapen\\n\\n87\\n00:05:29,508 --> 00:05:33,164\\ngenom sin kunskap om projektet, och de är de enda som kan\\n\\n88\\n00:05:33,201 --> 00:05:35,647\\nutföra vissa operationer\\n\\n89\\n00:05:35,648 --> 00:05:38,603\\nsåsom att radera en fil.\\n\\n90\\n00:05:39,690 --> 00:05:43,318\\nOm du vill använda en fil utanför Commons, se till att alltid\\n\\n91\\n00:05:43,312 --> 00:05:46,334\\nfölja lagarna i ditt eget land.\\n\\n92\\n00:05:46,476 --> 00:05:48,614\\nCommons kan inte garantera legaliteten\\n\\n93\\n00:05:48,683 --> 00:05:51,355\\natt användandet av filerna i alla sammanhang,\\n\\n94\\n00:05:51,362 --> 00:05:54,260\\noch inte heller är det absolut korrekt och pålitligt.\\n\\n95\\n00:05:54,307 --> 00:05:58,402\\nMen det är fantastiskt att se hur mycket tillåtet och användbart material som har laddats upp.\\n\\n96\\n00:05:59,339 --> 00:06:03,755\\nFler och fler offentliga arkiv, museum, bibliotek, privata samlingar\\n\\n97\\n00:06:03,774 --> 00:06:07,015\\ngör stora och små \"donationer\" med material\\n\\n98\\n00:06:07,063 --> 00:06:10,003\\nsom blir en värdefull källa, tillgängligt för alla.\\n\\n99\\n00:06:10,655 --> 00:06:14,854\\nMånga professionella fotografer publicerar sina verk på Commons,\\n\\n100\\n00:06:14,871 --> 00:06:18,240\\nstolta över att se deras verk bli spridda runt hela världen.\\n\\n101\\n00:06:18,413 --> 00:06:22,119\\nDet samma gäller för de illustratörer som har gett Commons\\n\\n102\\n00:06:22,123 --> 00:06:26,151\\nsärskilt effektiva och eleganta skisser och diagram.\\n\\n103\\n00:06:26,496 --> 00:06:30,857\\nGemenskapen har flera sätt att uppmärksamma högkvalitativa verk:\\n\\n104\\n00:06:30,867 --> 00:06:35,316\\ndet finns en tävling för att utse årets bild.\\n\\n105\\n00:06:35,618 --> 00:06:38,555\\nEtt annat urval görs av de bästa bilderna\\n\\n106\\n00:06:38,559 --> 00:06:40,828\\nsom har gjorts av Commons användare\\n\\n107\\n00:06:40,841 --> 00:06:45,220\\noch ännu en annan belönar den mest värdefulla bilden i en genre.\\n\\n108\\n00:06:45,462 --> 00:06:49,511\\nEn särskilt intressant bild väljs varje dag\\n\\n109\\n00:06:49,532 --> 00:06:53,676\\noch desamma görs för andra multimedia.\\n\\n110\\n00:06:54,345 --> 00:06:56,682\\nDu kan stödja Commons speciellt\\n\\n111\\n00:06:56,766 --> 00:06:59,570\\ngenom att skänka pengar till Wikimedia Foundation,\\n\\n112\\n00:06:59,599 --> 00:07:03,338\\neller så kan du välja att stödja\\n\\n113\\n00:07:03,359 --> 00:07:06,715\\nWikimedia Sverige, en allmännyttig ideell förening\\n\\n114\\n00:07:06,743 --> 00:07:08,757\\nsom i Sverige sprider kunskap om\\n\\n115\\n00:07:08,792 --> 00:07:11,826\\nCommons och andra av Wikimedia Foundations projekt.\\n-->',\n", + " 'bytes': 10097,\n", + " 'sha1': 'gmtu41zg7pnr280b3morp7871tapvq7',\n", + " 'parent_id': 44723192,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601700395,\n", + " 'timestamp': '2021-10-24T13:40:29Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11700352,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles and partyally translation. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\n私のユーザー名は Bücherwürmlein です\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\n私のユーザー名は Church of emacs です\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\n独語で「小さな本の虫」\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nChomsky1です\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\nほら, «not a fish»,「魚じゃない」\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,293 --> 00:00:23,785\\n私のユーザー名は Henna です\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\n私のユーザー名は Lyzzy です\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama Liam Wyatt\\nって本名のアナグラム\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\n私のユーザー名は Steven\\nWalling です, 本名です\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\n私のユーザー名は Waldir です\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\n私のユーザー名は Mstislavl です\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nJdforrester\\nウィキペディアを編集してます',\n", + " 'bytes': 1585,\n", + " 'sha1': 'tes11xqz46nhlss2xxees8z4bmz8yvb',\n", + " 'parent_id': 45004544,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44756595,\n", + " 'timestamp': '2010-10-06T11:30:43Z',\n", + " 'user': {'id': 1005962, 'text': 'Deniel'},\n", + " 'page': {'id': 11700592,\n", + " 'title': 'Great Feeling.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nNo, non ho superpoteri.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nAffatto. No.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nPuoi assolutamente farlo anche tu.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nHo spinto il pulsante,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\ne salvato il testo,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWooooo!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nE\\' stato... eccitante.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nHai appena cambiato Wikipedia\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nhai appena aggiunto il tuo contributo a Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nHo letto un articolo sul \"Guardiano\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nsu questa enciclopedia online\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\ndove tutti quanti possono contribuire\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\ne ho detto \"Wow!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Forse posso contribuire anche io!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nHo modificato per la prima volta\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\ne ho pensato mi ci sono abituato.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nNon devo pagare niente\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nSai, devo solo fare\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nqualcosa nel mio tempo libero, è tutto.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nMagari puoi iniziare a farlo per un idea,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nperchè ci credi,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nma alla fine avrai amici,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nfinirai per fidanzarti,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nfinirai con discussioni magnifiche,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nfinirai con nuove idee,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nfinirai con nuovi libri da scrivere...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nNon stai scrivendo l\\'articolo da solo,\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\ntu ne scrivi un pezzo,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\ne qualcun altro farà lo stesso\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hey, so qualcos\\'altro!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\ne insieme potete creare\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\narticoli con lunghe pagine\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nche non avresti mai potuto scrivere da solo.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nPoi finisci con successo.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nVedi sempre: \"Ok, cosa ho fatto con successo.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\ne questo è bellissimo.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nE\\' fantastico,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nperchè è una grande sensazione\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nOgni volta che lo farai,\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nIo lo leggerò,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nquando leggo qualcosa su Wikipedia\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nho deciso\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Questo forse è dove accederò\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nE l\\'ho fatto.',\n", + " 'bytes': 2724,\n", + " 'sha1': 's88ymz53u6ydurrutv5gy8g4509eujb',\n", + " 'parent_id': 44756438,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44723044,\n", + " 'timestamp': '2010-10-05T16:00:10Z',\n", + " 'user': {'id': 304334, 'text': 'Haytham abulela'},\n", + " 'page': {'id': 11700606,\n", + " 'title': 'Great Feeling.ogv.ar.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Arabic text added',\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nهمم، لا، أنا لا أملك قوى خارقة.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nإطلاقا. لا.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nيمكنك أن تفعلها تماما.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nلقد قمت بالضغط على الزر،\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nو قمت بحفظ النص،\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nرائع!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nلقد كان الأمر ... ممتعا.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nلقد قمت بتغيير ويكيبيديا،\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nلقد قمت الآن بإضافة مساهمتك الخاصة إلى ويكيبيديا.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nقرأت مقال في صحيفة الجارديان\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nعن هذه الموسوعة الشبكية\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nو التي يمكن لأي شخص أن يساهم فيها\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nو قلت، \"رائع!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"ربما يمكنني أن أشارك أيضا\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nقمت بالتحرير للمرة الأولى\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nو أعتقد أنني أدمنت هذا الأمر\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nلا أتلقى أي مقابل مادي على الإطلاق\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nأنا أفعل ذلك لأجل، أنتم تعلمون،\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nشيء أفعله في وقت فراغي، هذا هو كل شيء.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nيمكنك أن تبدأ بذلك لأجل فكرة،\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nلأن تؤمن بها،\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nإلا أنك في نهاية المطاف يصبح لديك أصدقاء،\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nو أحباء،\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nو مناقشات رائعة،\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nو أفكار جديدة،\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nو كتب جديدة سوف تكتبها ...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nأنت لا تكتب المقال وحدك.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nأنت تكتب جزء،\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nو يأتي شخص آخر و يقول:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"مهلا، لدي المزيد!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nو معا يمكننا أن ننشئ\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nمقالات قد يصل طولها إلى صفحات عدة،\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nو التي قد لا يمكنك أن تكتبها بنفسك.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nثم يكون لديك النجاح.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nقد ترى دائما، \"حسنا، ما قمت به كان ناجحا.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nهذاالأمر رائع.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nهذا الأمر عظيم،\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nلأن التحرير يمنحك شعور رائع.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nفي كل مرة تقوم به.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nيتوجب علي أن أقول،\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nحينما قرأت عن ويكيبيديا،\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nقررت\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"ربما يكون هذا هو المكان الملائم لي\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nAnd I did.\\nو هذا ما حدث بالفعل.',\n", + " 'bytes': 3417,\n", + " 'sha1': 'j6y4nqy29xu08g5trha57alhk2zgg6t',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44723456,\n", + " 'timestamp': '2010-10-05T16:08:20Z',\n", + " 'user': {'id': 59618, 'text': 'Bdamokos'},\n", + " 'page': {'id': 11700748,\n", + " 'title': 'Edit Button.ogv.hu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,114 --> 00:00:02,414 Ott a „szerkesztés” gomb 2 00:00:02,530 --> 00:00:03,830 Csak kattints rá, 3 00:00:03,830 --> 00:00:06,664 keresd meg a hel...'\",\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nOtt a „szerkesztés” gomb\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nCsak kattints rá,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nkeresd meg a helyet, ahol a szöveg van és szerkeszd,\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nmajd kattints a „mentés”-re. Ennyire egyszerű.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nA Wikipédiában az a menő,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nhogy megváltoztathatsz dolgokat.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nNincs szükséged senki engedélyére\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nés nem is nehéz.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nElsőre kicsit riasztónak tűnik,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nde valójában nem nehéz.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nAz emberek nem veszik észre, mintha ez valamiféle vakság lenne.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nOlvassák a cikkeket és nem látják a „szerkesztés” gombot.\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nKattints a gombra és nézd meg mi történik.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n„Szerkesztés.”\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nAmikor nyitottá válsz valamire\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nés elkezdesz szerkeszteni,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nmindenféle egyéb dolog is történhet,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nés ez valóban nagyszerű.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nLehet egy kezdőpont,\\nLike, it can be just a starting point,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nami valahogy meghívás további életre.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nMindig amikor elkezdünk egy cikket, nem tetszik nekünk,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nmert rondának találjuk.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nDe várj csupán… pár órát\\n\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nés figyeld hogyan fejlődik nagyszerű cikké.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nA „szerkesztés” gomb: kattints rá és változtass meg valamit,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nmentsd el a lapot és az egész világot jobbá tetted.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n„Mentés”.',\n", + " 'bytes': 1985,\n", + " 'sha1': '1nt0pkj46fo4gwkohedzber15k2hxb9',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44756709,\n", + " 'timestamp': '2010-10-06T11:37:59Z',\n", + " 'user': {'id': 33974, 'text': 'Takot'},\n", + " 'page': {'id': 11701085,\n", + " 'title': 'Nice People MEDIUM.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 知識を自分だけのものにしておくの?\\n\\n2 00:00:04,249 --> 00:00:07,174 シェアしなきゃ そう思います\\n\\n3 00:00:07,174 --> 00:00:10,031 目的がいいよね\\n\\n4 00:00:10,031 --> 00:00:15,325 “ウェブサイト”“ウィキ”“ネット”とは言わない\\n\\n5 00:00:15,325 --> 00:00:17,113 ただ“自由な知識を―”\\n\\n6 00:00:17,113 --> 00:00:19,411 “すべての人に 自分たちの言語で”\\n\\n7 00:00:19,411 --> 00:00:21,548 オープンなコミュニティで\\n\\n8 00:00:21,548 --> 00:00:23,428 招待状をつかみとる\\n\\n9 00:00:23,428 --> 00:00:25,936 人たちが作ってる\\n\\n10 00:00:25,936 --> 00:00:27,956 招待状だから―\\n\\n11 00:00:27,956 --> 00:00:29,535 取らなくてもいい\\n\\n12 00:00:29,535 --> 00:00:31,439 でも そこにある\\n\\n13 00:00:31,439 --> 00:00:32,879 「編集」ボタンのところに\\n\\n14 00:00:32,879 --> 00:00:37,709 「加わって あなたの知ってることは私たちのと同じぐらい大事」と\\n\\n15 00:00:37,709 --> 00:00:40,472 教育をしてるのと同じこと\\n\\n16 00:00:40,472 --> 00:00:43,026 でも「誰か」にじゃない 「全世界」に\\n\\n17 00:00:43,026 --> 00:00:47,113 だから世界中のほぼ誰もが見られる\\n\\n18 00:00:47,113 --> 00:00:51,455 百科事典に貢献できて誇らしい\\n\\n19 00:00:51,455 --> 00:00:55,286 誰かを助けて自分が幸せ それだけ\\n\\n20 00:00:55,286 --> 00:00:57,283 幸せになりたいから助ける\\n\\n21 00:00:57,283 --> 00:01:00,650 たくさんの異なる文化の異なる人たちと\\n\\n22 00:01:00,650 --> 00:01:04,156 共同作業 それだけですごいでしょ\\n\\n23 00:01:04,156 --> 00:01:06,501 なんて言うのか つまり\\n\\n24 00:01:06,501 --> 00:01:08,754 みんな優しいんですよ\\n\\n25 00:01:08,754 --> 00:01:10,890 素晴らしい人たちがいて\\n\\n26 00:01:10,890 --> 00:01:14,466 オンラインでタイプしてるだけで\\n\\n27 00:01:14,466 --> 00:01:16,231 怒鳴りあってるんでもなく\\n\\n28 00:01:16,231 --> 00:01:18,437 馬鹿話してるでもなく\\n\\n29 00:01:18,437 --> 00:01:20,875 ゴシップ読むわけでもなく\\n\\n30 00:01:20,875 --> 00:01:22,198 他のみんなが便利だと思う\\n\\n31 00:01:22,198 --> 00:01:23,707 何かを作ろうとしてる\\n\\n32 00:01:23,707 --> 00:01:26,029 それだけでも本当にすごい 優しい人たち',\n", + " 'bytes': 2376,\n", + " 'sha1': 't463ohsw7ew2awlii1w6rfi7uw3c2ex',\n", + " 'parent_id': 44724825,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 63436367,\n", + " 'timestamp': '2011-12-05T14:19:47Z',\n", + " 'user': {'id': 671093, 'text': 'Ggia'},\n", + " 'page': {'id': 11701237,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 \\n00:00:01,000 --> 00:00:02,000 \\nΤο όνομα χρήστη μου είναι Bücherwürmlein\\n\\n2 \\n00:00:02,000 --> 00:00:03,000 \\nLila roja\\n\\n3 \\n00:00:04,000 --> 00:00:05,000 \\nyuyu\\n\\n4 \\n00:00:05,000 --> 00:00:07,000 \\nCbrown1023\\n\\n5 \\n00:00:07,000 --> 00:00:08,000 \\n22Kartika\\n\\n6 \\n00:00:08,000 --> 00:00:10,000\\nΤο όνομα χρήστη μου είναι Church of emacs\\n\\n7 \\n00:00:10,000 --> 00:00:14,000 \\nBücherwürmlein είναι ένας μικρός βιβλιοσκώληκας στην Γερμανία\\n\\n8 \\n00:00:14,000 --> 00:00:16,000 \\nDew\\n\\n9 \\n00:00:16,000 --> 00:00:17,000 \\nChomsky1\\n\\n10 \\n00:00:17,000 --> 00:00:18,000 \\nnasir8891\\n\\n11 \\n00:00:18,000 --> 00:00:21,000 \\nnotafish, ξέρεις : « δεν είμαι ψάρι »\\n\\n12 \\n00:00:21,000 --> 00:00:22,000 \\nTheo10011\\n\\n13 \\n00:00:22,000 --> 00:00:24,000 \\nΤο όνομα χρήστη μου είναι Henna\\n\\n14 \\n00:00:24,000 --> 00:00:25,000 \\nMisou\\n\\n15 \\n00:00:25,000 --> 00:00:26,000 \\nΤο όνομα χρήστη μου είναι Lyzzy\\n\\n16 \\n00:00:26,000 --> 00:00:30,000 \\nwittylama, είναι αναγραμματισμός του πραγματικού μου ονόματος Liam Wyatt\\n\\n17 \\n00:00:30,000 --> 00:00:31,000 \\nDeryck Chan\\n\\n18 \\n00:00:31,000 --> 00:00:32,000 \\nVulpeto\\n\\n19 \\n00:00:32,000 --> 00:00:33,000 \\nRajeshPandey\\n\\n20 \\n00:00:33,000 --> 00:00:37,000 \\nΤο όνομα χρήστη μου είναι Steven Walling, που είναι το πραγματικό μου όνομα\\n\\n21 \\n00:00:37,000 --> 00:00:38,000 \\nΤο όνομα χρήστη μου είναι Waldir\\n\\n22 \\n00:00:38,000 --> 00:00:41,000 \\nΤο όνομα χρήστη μου είναι Mstislavl\\n\\n23 \\n00:00:41,000 --> 00:00:44,000 \\nAbbasjnr, a-διπλό b-a-s-j-n-r\\n\\n24 \\n00:00:44,000 --> 00:00:49,000 \\nΤο όνομά μου είναι Jdforrester και συνεισφέρω στην Wikipedia',\n", + " 'bytes': 1838,\n", + " 'sha1': 'bunnwl8sqqrrmb5ly7g9bioxs1lxbwr',\n", + " 'parent_id': 44725317,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601719770,\n", + " 'timestamp': '2021-10-24T14:40:03Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11701318,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and partyally the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\nIl mio username è Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nIl mio username è Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein, è\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\nun piccolo vermetto in un libro tedesco\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nÈ Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\nsai: «not a fish»\\n(«non un pesce»)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,408 --> 00:00:23,785\\nIl mio username è Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nIl mio username è Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, è un anagramma\\ndel mio vero nome Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nIl mio username è Steven Walling,\\nche è il mio vero nome\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\nIl mio username è Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nIl mio username è Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nIl mio nome è Jdforrester\\ne modifico Wikipedia',\n", + " 'bytes': 1503,\n", + " 'sha1': 'rapw7nsjpx973kq1jvxwd9ig3wcigyy',\n", + " 'parent_id': 44725666,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44725670,\n", + " 'timestamp': '2010-10-05T17:12:25Z',\n", + " 'user': {'id': 5602, 'text': 'Geraki'},\n", + " 'page': {'id': 11701331,\n", + " 'title': 'Edit Button.ogv.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:01,114 --> 00:00:02,414 Υπάρχει ένα κουμπί \"επεξεργασία\" 2 00:00:02,530 --> 00:00:03,830 Απλώς πατήστε το, 3 00:...\\'',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nΥπάρχει ένα κουμπί \"επεξεργασία\"\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nΑπλώς πατήστε το,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nβρείτε το μέρος όπου είναι το κείμενο, και επεξεργαστείτε το \\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nκαι μετά πατήστε \"αποθήκευση\". Είναι τόσο εύκολο.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nΤο καταπληκτικό με την Wikipedia,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nείναι ότι μπορείς να αλλάζεις πράγματα.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nΔεν χρειάζεσαι κανενός την άδεια\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nκαι δεν είναι δύσκολο.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nΦαίνεται λιγάκι τρομαχτικό στην αρχή, \\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nαλλά δεν είναι αληθινά δύσκολο.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nΟι άνθρωποι δεν το αντιλαμβάνονται, σαν να είναι ένα είδος τύφλωσης. \\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nΆνθρωποι διαβάζουν άρθρα και δεν βλέπουν το κουμπί \"επεξεργασία\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nΠάτησε σε αυτό το κουμπί, και δες τι συμβαίνει. \\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Επεξεργασία.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nΌταν ανοίγεις τον εαυτό σου σε κάτι, \\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nκαι πας και αρχίζεις την επεξεργασία,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nόλα τα είδη άλλων πραγμάτων μπορεί να συμβούν,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nκαι αυτό είναι αληθινά όμορφο.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nΌπως, μπορεί να είναι απλώς μια εκκίνηση,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nείναι μια πρόσκληση για μια νέα ζωή, κάπως.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nΌποτε ξεκινούμε ένα άρθρο, δεν μας αρέσει,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nεπειδή το βρίσκετε άσχημο.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nΑλλά περιμένετε απλώς... ώρες\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nκαι δείτε πως θα αναπτυχθεί σε ένα σπουδαίο άρθρο.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nΤο κουμπί \"επεξεργασία\": πατήστε το και αλλάξτε κάτι, \\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nαποθηκεύστε την σελίδα, έχετε κάνει μια διαφορά σε όλο τον κόσμο. \\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Αποθήκευση\".',\n", + " 'bytes': 2857,\n", + " 'sha1': '05dlv291yqo87q5ie05a40yo9yes7tr',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45495669,\n", + " 'timestamp': '2010-10-27T09:52:42Z',\n", + " 'user': {'id': 1005962, 'text': 'Deniel'},\n", + " 'page': {'id': 11701411,\n", + " 'title': 'Nice People MEDIUM.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 Se hai conoscenze, perchè te le devi tenere per te stesso?\\n\\n2 00:00:04,249 --> 00:00:07,174 Io penso che le devi condividere!\\n\\n3 00:00:07,174 --> 00:00:10,031 Mi piace che lo scopo di questo sito\\n\\n4 00:00:10,031 --> 00:00:15,325 non dice \"sito internet\",non dice \"Wiki\",non dice \"internet\",\\n\\n5 00:00:15,325 --> 00:00:17,113 dice solo \"conoscenza libera,\\n\\n6 00:00:17,113 --> 00:00:19,411 per tutti, nella propria lingua\".\\n\\n7 00:00:19,411 --> 00:00:21,548 Quando una comunità è aperta\\n\\n8 00:00:21,548 --> 00:00:23,428 è veramente fatta di quelli\\n\\n9 00:00:23,428 --> 00:00:25,936 che osano accettare l\\'invito.\\n\\n10 00:00:25,936 --> 00:00:27,956 E questo è un invito.\\n\\n11 00:00:27,956 --> 00:00:29,535 Ovviamente non dovete accettare l\\'invito per forza\\n\\n12 00:00:29,535 --> 00:00:31,439 ma c\\'è un invito qui fuori\\n\\n13 00:00:31,439 --> 00:00:32,879 in un pulsante di modifica e dice:\\n\\n14 00:00:32,879 --> 00:00:37,709 \"Vieni, partecipa, ciò che si sa è importante quanto ciò che conosciamo\".\\n\\n15 00:00:37,709 --> 00:00:40,472 Sai che stai dando un\\'educazione alle persone,\\n\\n16 00:00:40,472 --> 00:00:43,026 e non solo a qualche persona, ma al mondo intero.\\n\\n17 00:00:43,026 --> 00:00:47,113 Così mi sento bene pensando che sto contribuendo a un enciclopedia\\n\\n18 00:00:47,113 --> 00:00:51,455 che è virtualmente accessibile a chiunque nel mondo intero.\\n\\n19 00:00:51,455 --> 00:00:55,286 E\\' solo diventare felice, aiutando gli altri. Solo questo\\n\\n20 00:00:55,286 --> 00:00:57,283 Perchè se voglio essere felice, aiuto altri.\\n\\n21 00:00:57,283 --> 00:01:00,650 Stai lavorando insieme a persone molto diverse\\n\\n22 00:01:00,650 --> 00:01:04,156 da culture diverse, è questo è fantastico.\\n\\n23 00:01:04,156 --> 00:01:06,501 Queste persone, per me, che è veramente così\\n\\n24 00:01:06,501 --> 00:01:08,754 sono persone veramente dolci.\\n\\n25 00:01:08,754 --> 00:01:10,890 Sai, abbiamo ottenuto tutte quelle persone veramente dolci\\n\\n26 00:01:10,890 --> 00:01:14,466 che stanno già [accettando] online e stanno digitando,\\n\\n27 00:01:14,466 --> 00:01:16,231 e invece di gridare l\\'un l\\'altro\\n\\n28 00:01:16,231 --> 00:01:18,437 o semplicemente avere una conversazione\\n\\n29 00:01:18,437 --> 00:01:20,875 o leggendo qualcosa su gossip o altro\\n\\n30 00:01:20,875 --> 00:01:22,198 stanno provando a costruire qualcosa\\n\\n31 00:01:22,198 --> 00:01:23,707 che qualcun altro troverà utile.\\n\\n32 00:01:23,707 --> 00:01:26,029 Io penso che siano davvero, davvero persone fantastiche.',\n", + " 'bytes': 2491,\n", + " 'sha1': '3cdonqn3445m0njp7m3pg84t3l58o95',\n", + " 'parent_id': 45495574,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44866155,\n", + " 'timestamp': '2010-10-09T14:47:42Z',\n", + " 'user': {'id': 5602, 'text': 'Geraki'},\n", + " 'page': {'id': 11701440,\n", + " 'title': 'Nice People MEDIUM.ogv.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 Αν έχεις γνώση, γιατί πρέπει να την κρατήσεις για σένα;\\n\\n2 00:00:04,249 --> 00:00:07,174 Πρέπει να την μοιραστείς! Νομίζω.\\n\\n3 00:00:07,174 --> 00:00:10,031 Μου αρέσει που ο σκοπός αυτού του ιστότοπου\\n\\n4 00:00:10,031 --> 00:00:15,325 δεν έλεγε \"ιστότοπος\", δεν έλεγε \"wiki\", δεν έλεγε \"internet\",\\n\\n5 00:00:15,325 --> 00:00:17,113 έλεγε μόνο \"Ελεύθερη γνώση,\\n\\n6 00:00:17,113 --> 00:00:19,411 για καθένα, στην δική του γλώσσα\".\\n\\n7 00:00:19,411 --> 00:00:21,548 Όταν μια κοινότητα είναι ανοιχτή,\\n\\n8 00:00:21,548 --> 00:00:23,428 είναι αληθινά φτιαγμένη από αυτούς\\n\\n9 00:00:23,428 --> 00:00:25,936 που τόλμησαν να ανταποκριθούν στην πρόσκληση.\\n\\n10 00:00:25,936 --> 00:00:27,956 Και αυτή είναι μια πρόσκληση.\\n\\n11 00:00:27,956 --> 00:00:29,535 Φυσικά δεν είσαι υποχρεωμένος να ανταποκριθείς στην πρόσκληση,\\n\\n12 00:00:29,535 --> 00:00:31,439 αλλά υπάρχει μια πρόσκληση εκεί έξω \\n\\n13 00:00:31,439 --> 00:00:32,879 σε ένα κουμπί \"Επεξεργασία\" για να λέει\\n\\n14 00:00:32,879 --> 00:00:37,709 \"Έλα, γίνε μέρος, ότι γνωρίζεις είναι τόσο σημαντικό όσο ότι γνωρίζουμε\".\\n\\n15 00:00:37,709 --> 00:00:40,472 Ξέρεις ότι δίνεις εκπαίδευση στον κόσμο,\\n\\n16 00:00:40,472 --> 00:00:43,026 και όχι απλώς σε κάποιους ανθρώπους αλλά σε ολόκληρο τον κόσμο.\\n\\n17 00:00:43,026 --> 00:00:47,113 Έτσι νιώθω υπέροχα συνεισφέροντας σε μια εγκυκλοπαίδεια\\n\\n18 00:00:47,113 --> 00:00:51,455 που είναι διαθέσιμη εικονικά στον καθένα σε ολόκληρο τον κόσμο.\\n\\n19 00:00:51,455 --> 00:00:55,286 Είναι απλώς το να κάνεις τον εαυτό σου χαρούμενο βοηθώντας άλλους, αυτό είναι.\\n\\n20 00:00:55,286 --> 00:00:57,283 Επειδή θέλω να είμαι χαρούμενος, βοηθώ άλλους.\\n\\n21 00:00:57,283 --> 00:01:00,650 Δουλεύεις μαζί με τόσους πολλούς διαφορετικούς ανθρώπους\\n\\n22 00:01:00,650 --> 00:01:04,156 από τόσες διαφορετικές κουλτούρες, και είναι καταπληκτικό.\\n\\n23 00:01:04,156 --> 00:01:06,501 Το θέμα με αυτό, για μένα, ότι είναι στ\\' αλήθεια,\\n\\n24 00:01:06,501 --> 00:01:08,754 είναι απλώς αληθινά γλυκοί άνθρωποι.\\n\\n25 00:01:08,754 --> 00:01:10,890 Ξέρεις, έχουμε όλους αυτούς τους αληθινά γλυκούς ανθρώπους\\n\\n26 00:01:10,890 --> 00:01:14,466 που είναι απλώς συνδεδεμένοι και πληκτρολογούν,\\n\\n27 00:01:14,466 --> 00:01:16,231 και αντί να φωνάζουν ο ένας στον άλλο\\n\\n28 00:01:16,231 --> 00:01:18,437 ή απλώς να συζητούν \\n\\n29 00:01:18,437 --> 00:01:20,875 ή να διαβάζουν κουτσομπολιά ή οτιδήποτε άλλο,\\n\\n30 00:01:20,875 --> 00:01:22,198 προσπαθούν να φτιάξουν κάτι\\n\\n31 00:01:22,198 --> 00:01:23,707 που όλοι οι άλλοι θα βρουν χρήσιμο.\\n\\n32 00:01:23,707 --> 00:01:26,029 Πιστεύω απλά ότι είναι αληθινά γλυκοί, αληθινά καλοί άνθρωποι.',\n", + " 'bytes': 3807,\n", + " 'sha1': 'ckqio05zkb2v23wkm99ax3fol47o2h4',\n", + " 'parent_id': 44726125,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44767274,\n", + " 'timestamp': '2010-10-06T17:13:33Z',\n", + " 'user': {'id': 82, 'text': 'Kzhr'},\n", + " 'page': {'id': 11712802,\n", + " 'title': 'Edit Button.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\n「編集」ってボタンがあるでしょ\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nクリック。\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nテキストをみつけて編集\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\n「ページを保存」をクリック 簡単でしょ\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nウィキペディアがすごいのは\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\n「自分で変えられる」\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\n許可は要らない\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\n難しくもない\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\n最初はちょっと難しく見えるけど\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nそんなことはない\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nみんな気づいてないんです 盲点みたいなもので\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\n記事は読んでも「編集」ボタンに気づかない\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nクリックすると何が起こるか\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n「編集」\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\n何かと正面から向き合い\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\n編集を始めたとき\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nそれまでとは全く違う何かが起きる\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nそれは本当に美しい\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nただの出発点にすぎず\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\n新たな人生の始まり\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\n書いてすぐは気に入らない\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nみっともないから\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nでもたった数時間待てば\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nすごい記事にどう成長するか分かる\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\n「編集」ボタンで 何かを変えよう\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\n保存して 世界が変わる\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n「ページを保存」',\n", + " 'bytes': 1865,\n", + " 'sha1': 'o6bct63y6424re2woem80kwqw7knl0p',\n", + " 'parent_id': 44767150,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45005159,\n", + " 'timestamp': '2010-10-13T13:35:17Z',\n", + " 'user': {'id': 33974, 'text': 'Takot'},\n", + " 'page': {'id': 11722604,\n", + " 'title': 'Great Feeling.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'get shorter',\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\n特別な力は何もない\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nまったく 全然\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\n本当に何でもできる\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nボタン押して\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\n保存して\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\n<!-- 字幕無し -->\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\n興奮しました\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\n編集イコール\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\n貢献したってこと\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nこの百科事典について\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\n「ガーディアン」で読んで\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\n誰でも投稿できるって\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\n思わず「すごい!」って\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n自分もできるかも!\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\n初めて編集したとき\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\n惹かれてくのが分かった\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nお金をもらったことはない\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\n自分のヒマな時間で\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\n何かやってる それだけ\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\n思うところがあって\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\n始めるのかもしれないけど\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\n友達になったり\\n<!-- but you end up with friends, -->\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\n恋人になったり\\n<!-- you end up with lovers, -->\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nわくわくする議論になったり\\n<!-- you end up with wonderful discussions, -->\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\n新しい考えが出たり\\n<!-- you end up with new ideas, -->\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\n新しい本を書いたり\\n<!-- you end up with new books you\\'re gonna write... -->\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\n独りじゃない\\n<!-- You\\'re not writing the article alone. -->\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\n一部を書くと\\n<!-- You write a piece, -->\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\n誰か来て\\n<!-- and somebody else goes like: -->\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n「もっと知ってる!」\\n<!-- \"Hey, I have more!\" -->\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nそうして長い\\n<!-- and together you can create -->\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\n一人じゃできない\\n<!-- articles that are pages long, -->\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nページができる\\n<!-- which you can\\'t by yourself. -->\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nそしたら成功\\n<!-- Then you have success. -->\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\n毎回「やった」と思える\\n<!-- You always see, \"Ok, what I\\'ve done was successful.\" -->\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nこれがたまらない\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\n編集が\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\n快感ってのがすごい\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nいつでも\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\n告白すると\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nウィキペディアは\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\n「ここが―\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\nいるべき場所かも」と\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\n本当に そうだった',\n", + " 'bytes': 3156,\n", + " 'sha1': 'mgkqt4tliol99g0h97wjl9zy2t89aos',\n", + " 'parent_id': 45004907,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44813258,\n", + " 'timestamp': '2010-10-08T02:43:31Z',\n", + " 'user': {'id': 161974, 'text': 'Vinhtantran'},\n", + " 'page': {'id': 11726852,\n", + " 'title': 'Great Feeling.ogv.vi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,905 --> 00:00:03,204 À, không. Tôi chẳng có chút năng lực siêu phàm 2 00:00:03,204 --> 00:00:05,990 nào cả. Không. 3 00:00:05,990 --> ...'\",\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nÀ, không. Tôi chẳng có chút năng lực siêu phàm\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nnào cả. Không.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nBạn hoàn toàn có thể làm được.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nTôi nhấn vào nút,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nvà lưu nội dung,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nHuuuuu!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nNó thật là... phấn khích.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nBạn vừa mới sửa Wikipedia,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nbạn vừa mới tự mình đóng góp cho Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nTôi đọc một bài báo trên \"Guardian\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nvề trang bách khoa toàn thư trực tuyến này\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nnơi mọi người ai cũng đóng góp được\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nvà tôi thốt lên, \"Wow!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Có thể mình cũng đóng góp được chăng!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nTôi sửa bài lần đầu tiên\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nvà tôi thấy mình đã nghiện nó mất rồi.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nTôi không nhận được xu nào cả,\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nTôi chỉ làm vì, bạn biết đấy,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nlàm cái gì đó vào lúc rảnh, chỉ có vậy thôi.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nBạn có thể bắt đầu chỉ vì một ý kiến,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nmà bạn tin là nó đúng,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nnhưng rồi bạn sẽ tìm thấy bạn bè,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\ntìm thấy người yêu,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\ntìm thấy những cuộc thảo luận tuyệt vời,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\ntìm thấy những ý tưởng mới,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nrồi cuối cùng là những cuốn sách do chính bạn sẽ viết nên...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nBạn không đơn độc khi viết bài.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nBạn viết một đoạn,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nrồi người khác sẽ tiếp tục theo kiểu:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Nè, tôi có thông tin thêm đây!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nvà cùng nhau bạn có thể tạo nên\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nnhững bài viết dài nhiều trang,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nmà một mình bạn không thể viết nổi.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nVà rồi bạn đã thành công.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nBạn luôn cảm thấy, \"Ok, tôi đã hoàn thiện được một thứ.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nvà nó thật là tuyệt vời.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nThật là tuyệt,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nvì, sửa bài là một cảm giác khó tả.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nMỗi khi bạn làm điều đó.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nTôi phải nói rằng,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nkhi tôi đọc những gì người ta nói về Wikipedia,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\ntôi quyết định rằng\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Đây có thể là nơi phù hợp với minh\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nVà tôi đã tham gia.',\n", + " 'bytes': 3311,\n", + " 'sha1': 'p8xkgzd3cgqb8u3jgp4to758skuh1dl',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 127788912,\n", + " 'timestamp': '2014-06-29T20:56:02Z',\n", + " 'user': {'id': 1341983, 'text': 'AlleinStein'},\n", + " 'page': {'id': 11726898,\n", + " 'title': 'Nice People MEDIUM.ogv.vi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'srt format',\n", + " 'text': '1\\n00:00:01,300 --> 00:00:04,249\\nNếu bạn có kiến thức, tại sao bạn phải giữ nó cho riêng mình?\\n\\n2\\n00:00:04,249 --> 00:00:07,174\\nBạn phải chia sẻ nó! Tôi cho là vậy.\\n\\n3\\n00:00:07,174 --> 00:00:10,031\\nTôi thích mục đích của website này\\n\\n4\\n00:00:10,031 --> 00:00:15,325\\nnó không nói đến \"website\", không nói đến \"Wiki\", không phải \"Internet\",\\n\\n5\\n00:00:15,325 --> 00:00:17,113\\nnó chỉ nói \"Kiến thức tự do,\\n\\n6\\n00:00:17,113 --> 00:00:19,411\\ndành cho mọi người, bằng chính thứ tiếng của họ\".\\n\\n7\\n00:00:19,411 --> 00:00:21,548\\nKhi một cộng đồng được tạo nên,\\n\\n8\\n00:00:21,548 --> 00:00:23,428\\nnó bao gồm những ai\\n\\n9\\n00:00:23,428 --> 00:00:25,936\\ndám nhận lời mời.\\n\\n10\\n00:00:25,936 --> 00:00:27,956\\nVà đây là một lời mời.\\n\\n11\\n00:00:27,956 --> 00:00:29,535\\nDĩ nhiên bạn không bắt buộc phải nhận lời,\\n\\n12\\n00:00:29,535 --> 00:00:31,439\\nnhưng đâu đó ngoài kia vẫn có một lời mời\\n\\n13\\n00:00:31,439 --> 00:00:32,879\\ntrong nút \"Sửa đổi\", nói rằng\\n\\n14\\n00:00:32,879 --> 00:00:37,709\\n\"Hãy đến đây, hãy tham gia, những gì bạn biết cũng quan trọng như những gì chúng tôi biết\".\\n\\n15\\n00:00:37,709 --> 00:00:40,472\\nBạn nhận thấy là bạn đang trao cho mọi người sự giáo dục,\\n\\n16\\n00:00:40,472 --> 00:00:43,026\\nvà không phải bất cứ ai cụ thể mà là cả thế giới.\\n\\n17\\n00:00:43,026 --> 00:00:47,113\\nVì thế tôi cảm thấy tốt hơn khi đóng góp vào một bách khoa toàn thư\\n\\n18\\n00:00:47,113 --> 00:00:51,455\\nmà hầu như bất ai trên thế giới đều có thể xem được.\\n\\n19\\n00:00:51,455 --> 00:00:55,286\\nĐơn giản là nó làm bạn hạnh phúc vì giúp được người khác, chỉ vậy thôi.\\n\\n20\\n00:00:55,286 --> 00:00:57,283\\nVì tôi muốn được hạnh phúc, nên tôi giúp đỡ người khác.\\n\\n21\\n00:00:57,283 --> 00:01:00,650\\nBạn đang làm việc cùng với nhiều người khác nhau\\n\\n22\\n00:01:00,650 --> 00:01:04,156\\ntừ nhiều nền văn hóa khác nhau, nó thật tuyệt vời.\\n\\n23\\n00:01:04,156 --> 00:01:06,501\\nĐể nói về nó, đối với tôi, điều quan trọng nhất,\\n\\n24\\n00:01:06,501 --> 00:01:08,754\\nđó là những người tốt.\\n\\n25\\n00:01:08,754 --> 00:01:10,890\\nBạn biết đấy, chúng tôi có những người thật sự tốt đẹp như vậy\\n\\n26\\n00:01:10,890 --> 00:01:14,466\\nnhững người chỉ [nói chuyện] trên mạng và họ gõ bàn phím,\\n\\n27\\n00:01:14,466 --> 00:01:16,231\\nthay vì mắng nhiếc nhau\\n\\n28\\n00:01:16,231 --> 00:01:18,437\\ntán gẫu với nhau\\n\\n29\\n00:01:18,437 --> 00:01:20,875\\nđọc các câu chuyện phiếm hay bất cứ thứ gì khác,\\n\\n30\\n00:01:20,875 --> 00:01:22,198\\nhọ đang cố gắng xây dựng một điều gì đó\\n\\n31\\n00:01:22,198 --> 00:01:23,707\\nhữu ích với tất cả mọi người khác.\\n\\n32\\n00:01:23,707 --> 00:01:26,029\\nTôi nghĩ điều đó thật tuyệt, những con người thật tốt đẹp.',\n", + " 'bytes': 3037,\n", + " 'sha1': 'kt3nlnxkbrfp1pya1pqejceynvazf0c',\n", + " 'parent_id': 44813400,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45200029,\n", + " 'timestamp': '2010-10-18T20:11:28Z',\n", + " 'user': {'id': 245453, 'text': 'Otourly'},\n", + " 'page': {'id': 11727752,\n", + " 'title': 'Wikimedia Italia - WikiGuida 2 - Commons.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:11,086 --> 00:00:14,676\\nWikimedia Commons (aussi appelé tout simplement \"Commons\")\\n\\n2\\n00:00:14,740 --> 00:00:17,986\\nest un site internet qui héberge des images, de l\\'audio et de la vidéo\\n\\n3\\n00:00:18,010 --> 00:00:22,196\\nainsi que d\\'autres ressources multimédia dont le but est d\\'illustrer ou d\\'éduquer\\n\\n4\\n00:00:22,174 --> 00:00:26,249\\nLes contenus de Commons peuvent être utilisées librement\\n\\n5\\n00:00:26,305 --> 00:00:31,028\\net l\\'utilisation commerciale est permise, tant que les conditions de la licence sont respectées.\\n\\n6\\n00:00:31,821 --> 00:00:35,200\\nFrère de Wikipédia, Commons a vu le jour en 2004\\n\\n7\\n00:00:35,236 --> 00:00:38,888\\ncomme dépôt commun pour les différents projets de la Wikimedia Foundation,\\n\\n8\\n00:00:38,934 --> 00:00:42,153\\nCommons a ensuite évolué en un projet avec ses propres règles.\\n\\n9\\n00:00:42,320 --> 00:00:46,469\\nSur Commons il est possible de trouver des photos de lieux et de monuments.\\n\\n10\\n00:00:46,919 --> 00:00:49,281\\nd\\'animaux, de plantes, de minéraux.\\n\\n11\\n00:00:49,726 --> 00:00:53,281\\nDes photos de personnalités, d\\'objets communs et d\\'œuvres d\\'art.\\n\\n12\\n00:00:53,470 --> 00:00:58,183\\nAinsi que des enregistrements historiques et des versions numériques de livres anciens.\\n\\n13\\n00:00:58,483 --> 00:01:01,021\\nDes schémas, des diagrammes, des graphiques et des cartes.\\n\\n14\\n00:01:01,335 --> 00:01:06,275\\nDes vidéos et des enregistrements audio... et bien d\\'autres choses.\\n\\n15\\n00:01:06,664 --> 00:01:10,650\\nDans certains cas les ressources ne sont plus couvertes par le droit d\\'auteur,\\n\\n16\\n00:01:10,774 --> 00:01:15,110\\ndans d\\'autres cas, les auteurs ou les ayant-droits ont accordé une permission\\n\\n17\\n00:01:15,123 --> 00:01:19,634\\npour que les œuvres soient utilisables en respectant de simples conditions,\\n\\n18\\n00:01:19,630 --> 00:01:24,442\\ncomme l\\'attribution ou l\\'utilisation de la même licence pour les éventuelles œuvres dérivées.\\n\\n19\\n00:01:24,745 --> 00:01:28,870\\nPlus de sept millions de ressources sur Commons, librement téléchargeables\\n\\n20\\n00:01:28,908 --> 00:01:34,731\\net utilisables pour la recherche, les sites web, les manifestes, la publicité, les œuvres d\\'art...\\n\\n21\\n00:01:35,761 --> 00:01:39,050\\nLes ressources de Commons peuvent être insérées directement\\n\\n22\\n00:01:39,055 --> 00:01:43,766\\nsur les pages de l\\'encyclopédie Wikipédia et sur tous les autres projets Wikimédia,\\n\\n23\\n00:01:43,777 --> 00:01:47,438\\nbien sûr en respectant les règles du projet spécifique,\\n\\n24\\n00:01:47,476 --> 00:01:49,767\\nde la communauté linguistique de référence\\n\\n25\\n00:01:49,777 --> 00:01:52,983\\net de la législation du pays de provenance.\\n\\n26\\n00:01:53,723 --> 00:01:57,300\\nChaque fichier sur Commons a sa propre page wiki.\\n\\n27\\n00:01:57,567 --> 00:02:00,235\\nAprès le titre, on trouve la ressource multimédia\\n\\n28\\n00:02:00,223 --> 00:02:03,729\\nou une version réduite, comme dans le cas de photos très grandes.\\n\\n29\\n00:02:04,007 --> 00:02:07,821\\nUne description (souvent traduite en plusieurs langues) est insérée\\n\\n30\\n00:02:07,825 --> 00:02:12,856\\nainsi que toutes les informations disponibles, comme la source, l\\'auteur, la date et les termes d\\'utilisation.\\n\\n31\\n00:02:13,083 --> 00:02:17,044\\nL\\'histoire du fichier liste toutes les éventuelles modifications.\\n\\n32\\n00:02:17,058 --> 00:02:21,408\\nCar il est en effet possible de corriger et d\\'améliorer les fichiers téléversés par d\\'autres utilisateurs.\\n\\n33\\n00:02:21,795 --> 00:02:24,567\\nPar ailleurs sont listées les pages de Commons\\n\\n34\\n00:02:24,568 --> 00:02:26,995\\net des autres projets de la Wikimedia Foundation\\n\\n35\\n00:02:27,004 --> 00:02:29,996\\nqui ont lié et utilisé la ressource.\\n\\n36\\n00:02:30,275 --> 00:02:32,752\\nEn bas de la page on trouve des catégories,\\n\\n37\\n00:02:32,790 --> 00:02:35,502\\npar le biais desquelles la ressource est cataloguée.\\n\\n38\\n00:02:35,544 --> 00:02:38,209\\nLes catégories sont standardisés en anglais,\\n\\n39\\n00:02:38,213 --> 00:02:41,927\\nmais pour les utiliser il est suffisant d\\'avoir une connaissance approximative de la langue.\\n\\n40\\n00:02:42,863 --> 00:02:45,245\\nComment pouvez-vous contribuer à Commons ?\\n\\n41\\n00:02:45,278 --> 00:02:48,559\\nUn amoureux de la photographie peut téléverser ses photos,\\n\\n42\\n00:02:48,659 --> 00:02:52,055\\nun bon dessinateur peut ajouter des diagrammes et des animations,\\n\\n43\\n00:02:52,054 --> 00:02:54,924\\nun musicien l\\'enregistrement d\\'œuvres libres.\\n\\n44\\n00:02:55,133 --> 00:02:58,899\\nDes enregistrements de films et pièces théâtrales peuvent être insérés,\\n\\n45\\n00:02:58,926 --> 00:03:01,581\\nà condition qu\\'il ne soient pas couverts par des droits d\\'auteur.\\n\\n46\\n00:03:02,452 --> 00:03:07,264\\nAfin de pouvoir téléverser un fichier sur Commons, il faut s\\'être préalablement enregistré.\\n\\n47\\n00:03:07,277 --> 00:03:11,832\\nLa création d\\'un compte, gratuite, est rapide et n\\'est pas nécessaire\\n\\n48\\n00:03:11,887 --> 00:03:15,581\\nsi on a déjà un compte sur un autre projet de la Wikimedia Foundation.\\n\\n49\\n00:03:15,974 --> 00:03:19,324\\nIl est seulement possible de téléverser des ressources en format libre.\\n\\n50\\n00:03:19,366 --> 00:03:23,448\\nPas exemple, pour les vidéos seul le format Ogg Theora est admis.\\n\\n51\\n00:03:23,529 --> 00:03:26,682\\nIl existe de nombreux convertisseurs open source\\n\\n52\\n00:03:26,622 --> 00:03:29,877\\nqui peuvent être téléchargés et utilisées gratuitement.\\n\\n53\\n00:03:30,249 --> 00:03:34,390\\nTous les fichiers téléversés doivent respecter : la loi des États-Unis,\\n\\n54\\n00:03:34,385 --> 00:03:37,322\\noù est légalement implantée la Wikimedia Foundation ;\\n\\n55\\n00:03:37,322 --> 00:03:40,229\\nles lois des pays dont est issue la ressource ;\\n\\n56\\n00:03:40,283 --> 00:03:45,626\\nles lois du pays de l\\'utilisateur, qui reste responsable des contenus insérés.\\n\\n57\\n00:03:46,104 --> 00:03:49,031\\nIl faut contrôler qu\\'on n\\'enfreint pas\\n\\n58\\n00:03:49,050 --> 00:03:52,175\\nles lois sur la vie privée ou sur les marques déposées\\n\\n59\\n00:03:52,195 --> 00:03:56,026\\nou les restrictions d\\'utilisation des œuvres d\\'art de la part de certains musées.\\n\\n60\\n00:03:56,557 --> 00:04:00,399\\nDans le cas d\\'œuvres déjà publiées ailleurs sans licence libre,\\n\\n61\\n00:04:00,448 --> 00:04:04,311\\nl\\'auteur ou les ayant-droits doivent envoyer un courriel électronique\\n\\n62\\n00:04:04,364 --> 00:04:07,380\\ndans lequel ils s\\'identifient en déclarant qu\\'ils permettent\\n\\n63\\n00:04:07,416 --> 00:04:11,201\\nla publication de la ressource sous une licence libre.\\n\\n64\\n00:04:12,002 --> 00:04:16,003\\nComme Wikipédia, Commons est un wiki, un site ouvert à tout le monde\\n\\n65\\n00:04:16,006 --> 00:04:18,714\\nil est géré par des bénévoles du monde entier\\n\\n66\\n00:04:18,767 --> 00:04:22,079\\nqui s\\'engagent à identifier et catégoriser les ressources,\\n\\n67\\n00:04:22,123 --> 00:04:24,549\\nà compléter ou traduire les descriptions,\\n\\n68\\n00:04:24,561 --> 00:04:27,484\\nà créer les galeries et les pages spécifiques selon le thème,\\n\\n69\\n00:04:27,484 --> 00:04:31,936\\nà identifier et supprimer les ressources avec des licences ou des sources incomplètes.\\n\\n70\\n00:04:32,872 --> 00:04:35,303\\nCommons est un projet multilingue :\\n\\n71\\n00:04:35,364 --> 00:04:37,898\\nun site unique qui contient toutes les traductions\\n\\n72\\n00:04:37,909 --> 00:04:41,307\\net les différentes communautés linguistique cohabitent dans le même espace.\\n\\n73\\n00:04:41,581 --> 00:04:45,686\\nPour faciliter la recherche des ressources au sein de Commons,\\n\\n74\\n00:04:45,684 --> 00:04:49,139\\nainsi que dans les catégories, est possible chercher dans les galeries,\\n\\n75\\n00:04:49,190 --> 00:04:51,584\\nqui sont des pages spécifiquement créées\\n\\n76\\n00:04:51,590 --> 00:04:54,682\\npour accueillir des ressources sur un sujet particulier.\\n\\n77\\n00:04:54,964 --> 00:04:58,377\\nLes discussions à propos d\\'un contenu spécifique ont lieu\\n\\n78\\n00:04:58,408 --> 00:05:01,966\\nsur la page de discussion dédiée à côté de chaque ressource de Commons,\\n\\n79\\n00:05:02,016 --> 00:05:05,889\\ntandis que les discussions générales ont lieu sur une page spécifique.\\n\\n80\\n00:05:06,024 --> 00:05:08,918\\nLes communications sont faites principalement en anglais,\\n\\n81\\n00:05:08,966 --> 00:05:12,569\\nmais des pages dédiées existent qui permettent d\\'échanger dans d\\'autre langues.\\n\\n82\\n00:05:12,853 --> 00:05:16,496\\nPour les problèmes à caractère technique on trouve un \"bureau d\\'information\"\\n\\n83\\n00:05:16,535 --> 00:05:20,048\\net de nombreuses pages d\\'aide, traduites en différentes langues.\\n\\n84\\n00:05:20,222 --> 00:05:23,240\\nPour des questions spécifiques ou particulièrement complexes,\\n\\n85\\n00:05:23,240 --> 00:05:26,739\\non peut demander aux administrateurs, qui sont des bénévoles\\n\\n86\\n00:05:26,783 --> 00:05:29,486\\nqui ont gagné avec le temps la confiance de la communauté\\n\\n87\\n00:05:29,508 --> 00:05:33,164\\ngrâce à leur connaissance du projet. Eux seuls sont autorisés\\n\\n88\\n00:05:33,201 --> 00:05:35,647\\nà exécuter certaines opérations délicates,\\n\\n89\\n00:05:35,648 --> 00:05:38,603\\ncomme par exemple la suppression d\\'une ressource.\\n\\n90\\n00:05:39,690 --> 00:05:43,318\\nL\\'utilisateur d\\'une ressource de Commons doit toujours s\\'assurer que\\n\\n91\\n00:05:43,312 --> 00:05:46,334\\nles lois de son propre pays de provenance sont respectées.\\n\\n92\\n00:05:46,476 --> 00:05:48,614\\nCommons ne peut garantir la légalité\\n\\n93\\n00:05:48,683 --> 00:05:51,355\\nde l\\'utilisation d\\'une ressource dans tous les contextes possibles,\\n\\n94\\n00:05:51,362 --> 00:05:54,260\\nni sa fiabilité ou son exactitude.\\n\\n95\\n00:05:54,307 --> 00:05:58,402\\nmais il est incroyable de voir combien de ressources valables et utilisables ont été téléversées.\\n\\n96\\n00:05:59,339 --> 00:06:03,755\\nDe plus en plus d\\'archives d\\'état, de musées, de bibliothèques, de collections privées\\n\\n97\\n00:06:03,774 --> 00:06:07,015\\neffectuent des dons de ressources, petits ou grands\\n\\n98\\n00:06:07,063 --> 00:06:10,003\\nqui deviennent ainsi un patrimoine utilisable par tous.\\n\\n99\\n00:06:10,655 --> 00:06:14,854\\nPlusieurs photographes professionnels publient leurs œuvres sur Commons,\\n\\n100\\n00:06:14,871 --> 00:06:18,240\\nfiers de voir leur travail repris d\\'un bout à l\\'autre du monde\\n\\n101\\n00:06:18,413 --> 00:06:22,119\\nIl arrive aussi que des illustrateurs publient sur Commons\\n\\n102\\n00:06:22,123 --> 00:06:26,151\\ndes schémas ou des diagrammes particulièrement efficaces et élégants.\\n\\n103\\n00:06:26,496 --> 00:06:30,857\\nIl existe plusieurs mécanismes permettant de reconnaître les ressources de qualité :\\n\\n104\\n00:06:30,867 --> 00:06:35,316\\nPar exemple, chaque année se tient un concours destiné à choisir la \"photo de l\\'année\"\\n\\n105\\n00:06:35,618 --> 00:06:38,555\\nUne autre sélection choisit les images les plus belles\\n\\n106\\n00:06:38,559 --> 00:06:40,828\\ncréées par les utilisateurs de Commons\\n\\n107\\n00:06:40,841 --> 00:06:45,220\\net une autre encore prime les images les plus efficaces dans leur catégorie.\\n\\n108\\n00:06:45,462 --> 00:06:49,511\\nTous les jours, une image \"particulièrement intéressante\" est sélectionnée\\n\\n109\\n00:06:49,532 --> 00:06:53,676\\net cette pratique existe aussi pour les autres ressources multimédia.\\n\\n110\\n00:06:54,345 --> 00:06:56,682\\nPour soutenir Commons financièrement\\n\\n111\\n00:06:56,766 --> 00:06:59,570\\nvous pouvez faire un don à la Wikimedia Foundation\\n\\n112\\n00:06:59,599 --> 00:07:03,338\\nou vous pouvez choisir de soutenir (aussi avec les 0,5% [applicable en Italie])\\n\\n113\\n00:07:03,359 --> 00:07:06,715\\nWikimedia Italia, une association à but non lucratif\\n\\n114\\n00:07:06,743 --> 00:07:08,757\\nqui s\\'occupe de promouvoir, en Italie,\\n\\n115\\n00:07:08,792 --> 00:07:11,826\\nCommons et les autres projets de la Wikimedia Foundation.',\n", + " 'bytes': 11455,\n", + " 'sha1': 'o4m7zb1n4bxpu0bbjz3ro0cvzufre7k',\n", + " 'parent_id': 45195257,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44842340,\n", + " 'timestamp': '2010-10-08T20:47:47Z',\n", + " 'user': {'text': '80.174.212.29'},\n", + " 'page': {'id': 11733127,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,000 --> 00:00:02,000 El meu nom d'usuari és Bücherwürmlein 2 00:00:02,000 --> 00:00:03,000 Lila roja 3 00:00:04,000 --> 00:00:05,000 yuyu 4 00:00:...'\",\n", + " 'text': \"1 00:00:01,000 --> 00:00:02,000 El meu nom d'usuari és Bücherwürmlein\\n\\n2 00:00:02,000 --> 00:00:03,000 Lila roja\\n\\n3 00:00:04,000 --> 00:00:05,000 yuyu\\n\\n4 00:00:05,000 --> 00:00:07,000 Cbrown1023\\n\\n5 00:00:07,000 --> 00:00:08,000 22Kartika\\n\\n6 00:00:08,000 --> 00:00:10,000 El meu nom d'usuari és Church of emacs\\n\\n7 00:00:10,000 --> 00:00:14,000 Bücherwürmlein que és un ratolí de biblioteca en Alemany\\n\\n8 00:00:14,000 --> 00:00:16,000 Dew\\n\\n9 00:00:16,000 --> 00:00:17,000 Chomsky1\\n\\n10 00:00:17,000 --> 00:00:18,000 nasir8891\\n\\n11 00:00:18,000 --> 00:00:21,000 notafish, ja saps : « not a fish »\\n\\n12 00:00:21,000 --> 00:00:22,000 Theo10011\\n\\n13 00:00:22,000 --> 00:00:24,000 El meu nom d'usuari és Henna\\n\\n14 00:00:24,000 --> 00:00:25,000 Misou\\n\\n15 00:00:25,000 --> 00:00:26,000 El meu nom d'usuari és Lyzzy\\n\\n16 00:00:26,000 --> 00:00:30,000 wittylama, és un anagrama del meu veritable nom Liam Wyatt\\n\\n17 00:00:30,000 --> 00:00:31,000 Deryck Chan\\n\\n18 00:00:31,000 --> 00:00:32,000 Vulpeto\\n\\n19 00:00:32,000 --> 00:00:33,000 RajeshPandey\\n\\n20 00:00:33,000 --> 00:00:37,000 El meu nom d'usuari és Steven Walling, que és el meu nom real\\n\\n21 00:00:37,000 --> 00:00:38,000 El meu nom d'usuari és Waldir\\n\\n22 00:00:38,000 --> 00:00:41,000 El meu nom d'usuari és Mstislavl\\n\\n23 00:00:41,000 --> 00:00:44,000 Abbasjnr, a-doble b-a-s-j-n-r\\n\\n24 00:00:44,000 --> 00:00:49,000 El meu nom és Jdforrester i edito a la Wikipedia\",\n", + " 'bytes': 1421,\n", + " 'sha1': 'o8d0nu24agmvk1bbpd8adfok71oh3m6',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45015277,\n", + " 'timestamp': '2010-10-13T17:18:34Z',\n", + " 'user': {'id': 1314255, 'text': 'Jed-pcf'},\n", + " 'page': {'id': 11775232,\n", + " 'title': 'Miropcf-universal-subs-tutorial-step3.ogv.nn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Edited subtitles using [[Commons:UniversalSubtitles|UniversalSubs]]',\n", + " 'text': '0\\n00:00:07,04 --> 00:00:13,52\\nSchönes, wildes Lofoten - in Norwegen, Geburtsort der Giganten.\\n\\n1\\n00:00:16,2 --> 00:00:23,2\\nWir nehmen die Fähre von Reine und schlängeln uns zwischen gipfel vorwärts, -\\n\\n2\\n00:00:23,32 --> 00:00:29,36\\n- der eine Gigant steiler, stattlicher und prächtiger als der andere.\\n\\n3\\n00:00:34 --> 00:00:39,2\\nWir stehen in demütiger Verwunderung über die Freundlichkeit und die Wildheit, -\\n\\n4\\n00:00:39,32 --> 00:00:44,28\\n-während die Fähre uns vorwärts führt in den Innerseten Fjordarm, -\\n\\n5\\n00:00:44,4 --> 00:00:51,16\\n- zu den kleinen verlassenen Heimen am ende des Fjordes.\\n\\n6\\n00:01:01,64 --> 00:01:06,88\\nWir sind im Kirkefjord, auf dem südlichsten Punkt der Moskenesinsel.\\n\\n7\\n00:01:07 --> 00:01:13,72\\nWir werden den Einziger treffen der noch hier ist wo es früher so viele gab.\\n\\n8\\n00:01:14,32 --> 00:01:19,48\\n-Guten Tag. Bist du Oddvar? -Ja, Oddvar Berntsen. Wilkommen.\\n\\n9\\n00:01:19,6 --> 00:01:26\\nDer Einzelsiedler, der hier wohnt, in einer der meist fantastischen Landschaften, die ich gesehen habe.\\n\\n10\\n00:01:26,12 --> 00:01:32,16\\n-Viele andere finden das auch. -Stell dir vor das niemand sonst hier wohnen möchte?\\n\\n11\\n00:01:32,28 --> 00:01:38,64\\nHier ist die Post des Tages. Es ist wichtig mit der Zeit mitzuhalten.\\n\\n12\\n00:01:38,8 --> 00:01:43,08\\nOddvar Berntsen HeiÃ\\x9ft der Einsiedler im Kirkefjord.\\n\\n13\\n00:01:43,2 --> 00:01:47,76\\nAls er hier groÃ\\x9f wurde, hatte er über 300 Nachbarn um sich.\\n\\n14\\n00:01:47,92 --> 00:01:52,36\\nJetzt brennt das Licht nur in einem Haus, und der Kontakt zur AuÃ\\x9fenwelt -\\n\\n15\\n00:01:52,48 --> 00:01:55,88\\n- wird durch Zeitungen aufrecht erhalten.\\n\\n16\\n00:01:56,04 --> 00:02:01,2\\nEr liest, dass die Mädels dabei sind die Fischereiflotte zu erobern.\\n\\n17\\n00:02:01,36 --> 00:02:06,64\\nAber selbst wurde sein Herz nie erobert, und andere Herzen hat er auch nicht erobert.\\n\\n18\\n00:02:06,76 --> 00:02:11,76\\nNach dem Krieg verlasen die Frauen den Ort, es gab keine Arbeitsplätze.\\n\\n19\\n00:02:11,88 --> 00:02:16,52\\nDie die es noch gab, waren sehr umstritten.\\n\\n20\\n00:02:16,64 --> 00:02:23,2\\nIch habe meinen Kopf nicht vorgestreckt. Die dem am Topf am nächsten waren, haben gewonnen.\\n\\n21\\n00:02:23,36 --> 00:02:28,68\\nJetzt kann man die Schuld darauf legen, wenn man nicht fertigbringt.\\n\\n22\\n00:02:28,8 --> 00:02:34,72\\nWurden es viele einsame und traurige Stunden?\\n\\n23\\n00:02:34,84 --> 00:02:40,68\\nIch weiÃ\\x9f nicht. Als ich noch arbeitstätig war, war es nicht einsam.\\n\\n24\\n00:02:40,8 --> 00:02:45,12\\n-Und jetzt? -Ja, ja ...\\n\\n25\\n00:02:45,24 --> 00:02:52,6\\nIch bin im Grunde darauf eingestellt ein ruhiges Leben und einen ruhigen Ruhestand zu verbringen.\\n\\n26\\n00:02:54,24 --> 00:03:01,92\\nHier gehst du alleine in den langen, dunklen Winterabenden.\\n\\n27\\n00:03:02,04 --> 00:03:07,48\\n-Was machst du mit der Zeit? -Nicht so viel.\\n\\n28\\n00:03:07,6 --> 00:03:13,28\\nIch mache das, was im Haus nötig ist -Kleider waschen und kochen.\\n\\n29\\n00:03:14,88 --> 00:03:18,28\\nUnd am Abend dann?\\n\\n30\\n00:03:18,4 --> 00:03:24,08\\nDann gucke ich Fernsehen, bis ich genug gesehen habe und schlafen gehe.\\n\\n31\\n00:03:24,24 --> 00:03:30\\nDu sitzt hier, nicht nur mit Zeitungen, aber auch mit einem wohlbekannten Buch ...\\n\\n32\\n00:03:30,12 --> 00:03:37,08\\n-Was bedeutet das Buch für dich? -Ich glaube an das, was in der Bibel steht.\\n\\n33\\n00:03:39,16 --> 00:03:44,12\\nIch bin in einem christlichen Zuhause Geboren und aufgewachsen.\\n\\n34\\n00:03:48,76 --> 00:03:53,56\\nDer Schnee kam mit der Nacht, und wir erwachen zu Regenschauern zwischen den Bergen -\\n\\n35\\n00:03:53,68 --> 00:03:58,2\\n- und ein Wetter zum Fischen in Weiss gekleidet.\\n\\n36\\n00:04:01,96 --> 00:04:07,04\\nDie Stille liegt über die verlassenen Häuser.\\n\\n37\\n00:04:10,84 --> 00:04:16,52\\nRaues Geschrei kommt von den hungrigen Möven und das Rauschen des Südwestwinds -\\n\\n38\\n00:04:16,64 --> 00:04:21,04\\n- sind die einziger Geräusche des Lebens, -\\n\\n39\\n00:04:21,16 --> 00:04:26,76\\n- bis Oddvar Berntsen auf den Beinen ist.\\n\\n40\\n00:04:35,6 --> 00:04:40,72\\nFür den Einsiedler bedeutet der Schnee Arbeit.\\n\\n41\\n00:04:42,68 --> 00:04:48,8\\nDer Weg muss offen gehalten werden, damit er zur Anlegestelle kann -\\n\\n42\\n00:04:48,92 --> 00:04:53,4\\n- und seine tägliche Wanderung entlang den Wegen machen kann.\\n\\n43\\n00:04:53,52 --> 00:04:58,8\\nUnd jetzt hat er nur sich selbst an den er sich wenden kann.\\n\\n44\\n00:05:05,36 --> 00:05:10,16\\nDas Wetter wird klar als Oddvar sich auf seinen nachmittags Spaziergang begibt, -\\n\\n45\\n00:05:10,28 --> 00:05:14,76\\n- vorbei an den leblosen Fischerhäusern und die leeren Trocknungsstative.\\n\\n46\\n00:05:14,88 --> 00:05:19,08\\nIn der Zeit, als es noch hier vor Leben sprudelte. Es war schade -\\n\\n47\\n00:05:19,24 --> 00:05:24,52\\n- dass die Verhältnisse sich änderten damit die Leute von hier weg mussten.\\n\\n48\\n00:05:24,64 --> 00:05:30,64\\nEs gab hier eine Schule und ein Laden. Die die hier waren, waren Fischerbauern.\\n\\n49\\n00:05:30,76 --> 00:05:38,24\\nSie haben gefischt, und im Sommer haben sie das Heu unter Dach gebracht.\\n\\n50\\n00:05:38,4 --> 00:05:44,28\\n-Wie kam es, dass alle hier weg mussten? -Das kann man sich fragen ...\\n\\n51\\n00:05:44,4 --> 00:05:50,6\\nGibt es kein Weg, und die Jungen davon reisen, dann endet es.\\n\\n52\\n00:05:50,72 --> 00:05:58,28\\nFamilien reisten auch ab. Wenn es erst mal los geht, dann braucht es nicht viel-\\n\\n53\\n00:05:58,4 --> 00:06:02,84\\n- bis es so endet.\\n\\n54\\n00:06:03 --> 00:06:09,64\\n-Glaubst du die Leute, währen geblieben, hätte es einen Weg gegeben? -Das glaube ich.\\n\\n55\\n00:06:09,76 --> 00:06:15,16\\nSie könnten so gut hier wohnen wie in Reine.\\n\\n56\\n00:06:15,28 --> 00:06:20,52\\n-Bist du von der Kommune enttäuscht? -entteuscht und enttäuscht ...\\n\\n57\\n00:06:20,68 --> 00:06:24,96\\nDas kann man eine Weile sein.\\n\\n58\\n00:06:25,08 --> 00:06:30,04\\nAber wir waren gute Steuerbezahler.\\n\\n59\\n00:06:30,24 --> 00:06:36,28\\nDi Kommune hat viele Millionen bekommen, aber wir haben wenig zurück bekommen.\\n\\n60\\n00:06:37,96 --> 00:06:42,56\\nAuf den Weg durch das Wetter treffen wir einen anderen Menschen.\\n\\n61\\n00:06:42,68 --> 00:06:48,36\\nSie kommt, um sich um ein Haus zu kümmern. Sie kommt aus der Ukraine und heiÃ\\x9ft Nataliya Hansen -\\n\\n62\\n00:06:48,48 --> 00:06:53,36\\n- und ist mit einem Mann verheiratet der einer der letzten waren die von hier fort gingen.\\n\\n63\\n00:06:53,48 --> 00:07:00,2\\nSie haben das Fischerdorf verlassen nach dem Nataliya hier ein Jahr lang lebte.\\n\\n64\\n00:07:00,32 --> 00:07:05,32\\n-Wie war das Jahr? -Ein glückliches Jahr.\\n\\n65\\n00:07:05,44 --> 00:07:09,88\\nWir haben ein Sprichwort:\\n\\n66\\n00:07:10 --> 00:07:17\\nMit denen man liebt, kann man in ein Zelt wohnen, und glücklich sein.\\n\\n67\\n00:07:17,12 --> 00:07:22,32\\nEs war also der Mann und nicht der Ort der dich glücklich machte?\\n\\n68\\n00:07:22,44 --> 00:07:27,88\\nBeides, aber ersten meinen Mann.\\n\\n69\\n00:07:28,56 --> 00:07:35,12\\nUm im Land bleiben zu können brauchte sie Arbeit. Es gab hier keine.\\n\\n70\\n00:07:35,28 --> 00:07:40,16\\nDeshalb musste sie und ihr Mann umziehen.\\n\\n71\\n00:07:40,96 --> 00:07:44,44\\nWas war so gut am Kirkefjord?\\n\\n72\\n00:07:44,56 --> 00:07:49,2\\nDass es so still ist, und die schöne Natur.\\n\\n73\\n00:07:49,32 --> 00:07:55,28\\nWir können zusammen wandern und das Leben genieÃ\\x9fen.\\n\\n74\\n00:07:55,4 --> 00:08:01,72\\nDer Kirkefjord ist der schönste Ort der Welt.\\n\\n75\\n00:08:14,16 --> 00:08:19,68\\nOddvar hat seinen eigenen Sjark, mit dem er ab und zu eine Fahrt macht, -\\n\\n76\\n00:08:19,8 --> 00:08:25,64\\n- obwohl es nicht viele Fische gibt, und er alleine an Bord ist.\\n\\n77\\n00:08:25,8 --> 00:08:29,96\\nMit Notleine und Rettungsweste fühlt er sich sicher.\\n\\n78\\n00:08:30,12 --> 00:08:34,6\\nEr hat davor keine Angst, alleine zu sein, auf dem Wasser oder zu Lande.\\n\\n79\\n00:08:34,72 --> 00:08:39,92\\nIch habe keine Angst davor Krank zu werden.\\n\\n80\\n00:08:40,04 --> 00:08:45,8\\nÃ\\x9cberall wo man ist... Geschieht dir etwas, dann geschieht dir etwas.\\n\\n81\\n00:08:48,84 --> 00:08:55,6\\nEine Frau hier drüben sagte: \"Den der der Herr bewahren will, ist auÃ\\x9fer Gefahr.\"\\n\\n82\\n00:08:59,76 --> 00:09:05,44\\nEs geht in hellere Zeiten Die Sonne erreicht schon die ersten Häuser\\n\\n83\\n00:09:06,76 --> 00:09:12,24\\nUnd dann kommen die Touristen wieder, und es gibt wider auf dem Fjord Leben.\\n\\n84\\n00:09:12,36 --> 00:09:17,28\\n-Freust du dich darauf? -Ja, das ist klar.\\n\\n85\\n00:09:17,4 --> 00:09:21,16\\nAlle mögen das Licht.\\n\\n86\\n00:09:57,6 --> 00:10:03,12\\nDie Sonne und das Licht sind zurück, und einige von denen die in der dunklen Zeit verreisten, -\\n\\n87\\n00:10:03,24 --> 00:10:08,28\\n- sind zurückgekehrt. Ragnhild Berntsen ist die Erste, die kommt.\\n\\n88\\n00:10:08,4 --> 00:10:13,8\\nSie kümmert sich um alle, die am Kirkefjord leben möchten.\\n\\n89\\n00:10:18,84 --> 00:10:23,96\\n-Kümmerst du dich um die Möven? -Ja, das tue ich.\\n\\n90\\n00:10:24,12 --> 00:10:29,16\\nIch habe meine zwei Möven. Zwei bestimmte.\\n\\n91\\n00:10:29,28 --> 00:10:36,4\\nJoffen og Kamilla. Sie kommen jedes Jahr. Sie gehören dazu.\\n\\n92\\n00:10:36,52 --> 00:10:41,84\\n-Haben sie hier ein Nest? -Ja. Sie kommen mit ihren Kindern.\\n\\n93\\n00:10:42 --> 00:10:46,72\\n-Dann bekommen sie Haberflocken. -Hast du andere Tiere?\\n\\n94\\n00:10:46,84 --> 00:10:51,4\\nGestern sprangen drei Kaninchen hier drauÃ\\x9fen.\\n\\n95\\n00:10:51,56 --> 00:10:58,28\\nSie mögen Blumen, deshalb nehme ich sie jeden Abend rein.\\n\\n96\\n00:10:59,56 --> 00:11:03,8\\nJetzt haben sie die mit der Türmatte angefangen ...\\n\\n97\\n00:11:05,16 --> 00:11:11,88\\n-Meinen sie die glauben das ist Gras? -Ich weiÃ\\x9f nicht, was sie glauben.\\n\\n98\\n00:11:12 --> 00:11:17\\nHier haben sie heute Nacht geknabbert.\\n\\n99\\n00:11:20,72 --> 00:11:25,72\\nBerny Rusvik hat auch den weg zurück in die Heimat gefunden.\\n\\n100\\n00:11:25,84 --> 00:11:29,36\\nSie ist die Schwester von Oddvar und wohnt in Gravdal.\\n\\n101\\n00:11:29,48 --> 00:11:36,64\\nSie ist eine Freundin von Ragnhild, und es kommt zu ein paar Besuchen.\\n\\n102\\n00:11:38,6 --> 00:11:43,56\\n-Ich komme mit der Fähre. -Wie kommst du zurück?\\n\\n103\\n00:11:43,68 --> 00:11:49,44\\nEs ist schön, das ist der schönste Ort auf der Welt.\\n\\n104\\n00:11:49,56 --> 00:11:54,84\\n-Und trotz dem bis du gegangen? WeiÃ\\x9ft du warum?\\n\\n105\\n00:11:55 --> 00:12:01,84\\nDie Menschen fingen an zu verschwinden. Wir wollten hier ein neues Haus bauen.\\n\\n106\\n00:12:02 --> 00:12:08,88\\nAber vielleicht blieben keine Leute mehr. Deshalb sind wir Ostwärtz gezogen.\\n\\n107\\n00:12:09,04 --> 00:12:14,08\\n-Bereust du es? -Nein. Ich mag es dort auch.\\n\\n108\\n00:12:14,24 --> 00:12:20,96\\nAber es ist schön wider den Fjord zu besuchen.\\n\\n109\\n00:12:21,08 --> 00:12:26,2\\n-Nicht wahr, es ist schön? -Ja. Und es ist ja unser Zuhause.\\n\\n110\\n00:12:26,36 --> 00:12:29,44\\nDu Ragnhild möchtest nicht umziehen?\\n\\n111\\n00:12:29,56 --> 00:12:34,24\\nIch wollte gerne hier bleiben Solange ich es schaffte.\\n\\n112\\n00:12:34,4 --> 00:12:40,88\\nAber die letzten beiden Winter musstest du aufgeben. Erzähl.\\n\\n113\\n00:12:42,88 --> 00:12:49,08\\nIch durfte nicht hier bleiben. Die Kinder wollten nicht, dass ich hier alleine wohne.\\n\\n114\\n00:12:49,84 --> 00:12:55,52\\nWas ist hier so schön im Winter?\\n\\n115\\n00:12:55,64 --> 00:13:00,88\\n-Glaubst du es, ist schöner in Reine? -Da muss man hin?\\n\\n116\\n00:13:01,08 --> 00:13:06,84\\n-Da habe ich ne schöne Wohnung. -Was machst du da im Winter?\\n\\n117\\n00:13:06,96 --> 00:13:12,84\\n-Man sitzt da in der Wohnung. -Wartet auf den Abend und die Bettzeit.\\n\\n118\\n00:13:13 --> 00:13:17\\nWartet auf den Sommer, damit man hier her kann.\\n\\n119\\n00:13:17,12 --> 00:13:21,84\\n-Du magst es nicht da? -Ja.\\n\\n120\\n00:13:22 --> 00:13:28,76\\nIch bin oft hier. Ich reise wenn ich möchte. Der Fjord ist so schön.\\n\\n121\\n00:13:28,88 --> 00:13:35,68\\nMan braucht Luft ... Hier drinnen ist es so schön.\\n\\n122\\n00:13:36,76 --> 00:13:41,08\\nIch finde du solltest zurückziehen ...\\n\\n123\\n00:13:42,12 --> 00:13:47,04\\nJa, und mit Oddvar zusammen sein. Dann wäre ich auch hier.\\n\\n124\\n00:13:47,16 --> 00:13:52,8\\n-Ist das ein Versprechen? -Das wäre nicht unmöglich.\\n\\n125\\n00:13:52,92 --> 00:13:58,12\\nIch habe ein Haus, wo ich wohnen kann.\\n\\n126\\n00:14:15,12 --> 00:14:20,6\\nDie meisten gaben auf, aber Oddvar schleift seine Sense und möchte weiter machen.\\n\\n127\\n00:14:20,76 --> 00:14:25,56\\nDas Feld, das sein Vater und sein GroÃ\\x9fvater räumten, müssen gepflegt werden.\\n\\n128\\n00:14:25,68 --> 00:14:30,28\\nVon hier weg ist undiskutabel.\\n\\n129\\n00:14:30,76 --> 00:14:36,72\\nEr hält hier nicht nur die Stellung. Auf einem Nes weiter drauÃ\\x9fen, auf Rostad, -\\n\\n130\\n00:14:36,84 --> 00:14:41,92\\n- wohnen ein paar Nachbarn. Wir fahren, um sie zu begrüÃ\\x9fen.\\n\\n131\\n00:14:43,36 --> 00:14:49,44\\n-Was machst du hier, Oddvar? -Ich mag es dich zu besuchen.\\n\\n132\\n00:14:49,6 --> 00:14:53,68\\n-Wie geht es? -Gut.\\n\\n133\\n00:14:55,52 --> 00:14:59,52\\n-Du magst es hier? -Ja, sehr.\\n\\n134\\n00:14:59,64 --> 00:15:03,48\\nWas hältst du von denen die den Ort verlasen?\\n\\n135\\n00:15:03,6 --> 00:15:09,84\\nIch verstehe sie. Es ist kein Ort für Leute mit Arbeit.\\n\\n136\\n00:15:09,96 --> 00:15:15,16\\n-Warum bist du geblieben? -Ich habe es hier gut.\\n\\n137\\n00:15:15,28 --> 00:15:19,56\\nUnd ich musste auf meine Eltern aufpassen, bis sie von uns gingen.\\n\\n138\\n00:15:19,68 --> 00:15:24,88\\nEs ist nur 5-6 Jahre her als meine Mutter starb.\\n\\n139\\n00:15:25 --> 00:15:28,6\\nUnd hat man sich hier einmal angesiedelt ...\\n\\n140\\n00:15:28,76 --> 00:15:34,4\\n-Hier bleibe ich, solange es geht? -Solange meine FüÃ\\x9fe mich tragen.\\n\\n141\\n00:15:34,52 --> 00:15:40\\nHört die Fähre auf zu segeln, nehmen wir das Boot um Zeitungen und Milch zu kaufen.\\n\\n142\\n00:15:40,16 --> 00:15:43,36\\nKönnte das geschehen?\\n\\n143\\n00:15:43,48 --> 00:15:47,16\\nErstmals fährt sie noch fünf Jahre.\\n\\n144\\n00:15:47,32 --> 00:15:53,92\\n-Wo hast du deinen Mann? -Er schläft. Er war eine Nacht auf dem Meer.\\n\\n145\\n00:15:54,04 --> 00:15:59,6\\nIch habe eine Kiste mit Seelachs die ich\\n\\n146\\n00:15:59,72 --> 00:16:03,72\\nWir müssen zum Friedhof. Der nächste Nachbar.\\n\\n147\\n00:16:03,84 --> 00:16:07,36\\nEs ist fast symbolisch.\\n\\n148\\n00:16:07,52 --> 00:16:13,12\\nIhr habt auch ein paar Schafe. Sie blöken ... Es ist Leben.\\n\\n149\\n00:16:13,28 --> 00:16:18,96\\nSolange etwas auf den Feldern geht, gibt es auf dem Hof Leben.\\n\\n150\\n00:16:22,68 --> 00:16:28,12\\n-Thora Amalie Berntsen ... -Das war meine Mutter.\\n\\n151\\n00:16:28,96 --> 00:16:35,16\\nDer Friedhof wird nicht so gut gepflegt.\\n\\n152\\n00:16:35,88 --> 00:16:43,88\\nHier wie im Bunesfjord kriegen sie wenige Mittel um sie zu pflegen.\\n\\n153\\n00:16:44 --> 00:16:49,32\\nEs ist schade, dass man nicht die alte Kultur pflegt\\n\\n154\\n00:16:49,44 --> 00:16:53,76\\n- Die Kommune hat die Verantwortung? -Ja, das glaube ich.\\n\\n155\\n00:16:53,92 --> 00:16:59,44\\nDie Vögel mögen es, dass das Grass nicht geschnitten wird. Haben sie Neste?\\n\\n156\\n00:16:59,56 --> 00:17:03,32\\nJa.\\n\\n157\\n00:17:10,88 --> 00:17:15,16\\nAuch Rostad wird davon geprägt, dass die Zeit verschwunden ist.\\n\\n158\\n00:17:15,28 --> 00:17:20,08\\nDas ist von dem Laden noch übrig.\\n\\n159\\n00:17:21,56 --> 00:17:26,84\\nWir gehen zu dem was noch von dem Zuhause von Torgunn übrig ist.\\n\\n160\\n00:17:27 --> 00:17:34,44\\nIn 50-Jahren kam eine Lawine und nahm das Haus von den Mauern mit 9 Menschen, -\\n\\n161\\n00:17:34,56 --> 00:17:38,72\\n- darunter eine schwangere Mutter.\\n\\n162\\n00:17:38,84 --> 00:17:44,6\\nTorgunn und die Schwester Doris, die jetzt in den Ferien ist, waren dabei.\\n\\n163\\n00:17:45,6 --> 00:17:53,32\\nWir landeten unten beim Wasser. Wir lagen zwischen Holz, Mauer und Schnee ...\\n\\n164\\n00:17:53,48 --> 00:17:58,48\\nEs war so viel Schnee das wir nicht raus konnten.\\n\\n165\\n00:17:58,64 --> 00:18:02,88\\n-Einge mussten raus geschnitten werden ... -Mit der Säge.\\n\\n166\\n00:18:03 --> 00:18:07,12\\nEinige hatten den Schornstein über sich bekommen, sie konnten fast nicht Luft holen.\\n\\n167\\n00:18:07,28 --> 00:18:11,32\\nWas geschah mit der Frau die schwanger war?\\n\\n168\\n00:18:11,48 --> 00:18:16,52\\nSie war über die ganze Seite blau.\\n\\n169\\n00:18:17,48 --> 00:18:22,52\\nAls der Junge geboren wurde, war er auf der gleichen Seite blau.\\n\\n170\\n00:18:22,64 --> 00:18:27,24\\n-Er lebte nicht lange ... -Er war eine Totengeburt.\\n\\n171\\n00:18:27,36 --> 00:18:33,52\\n-Aufgrund der Lawine? -Ja, es war für alle Hardt.\\n\\n172\\n00:18:34,28 --> 00:18:39,28\\nIm gleichen Winter wurde ein Haus vom Wind zerrissen und das Boot zerstört.\\n\\n173\\n00:18:39,4 --> 00:18:44,36\\nAber der Vater hat es wider aufgebaut und einen Schutz gegen die Lawine gebaut, -\\n\\n174\\n00:18:44,52 --> 00:18:50,64\\n- im Falle es gäbe eine neue. Die Leute wollten da bleiben.\\n\\n175\\n00:18:50,76 --> 00:18:57,76\\nWenn man ein Spaziergang am Abend macht, braucht man nicht weit gehen, -\\n\\n176\\n00:18:57,88 --> 00:19:02\\n- und sich hin setzt ...\\n\\n177\\n00:19:02,12 --> 00:19:09,36\\nEs gibt so viele Geräusche die man nirgends sonnst hört.\\n\\n178\\n00:19:09,52 --> 00:19:14,64\\nVögel ... Es wäre als kommt ein Geräusch aus dem Boden.\\n\\n179\\n00:19:14,76 --> 00:19:20,2\\nDie Ruhe senkt sich über einen und man kann sich allem stellen.\\n\\n180\\n00:19:23,44 --> 00:19:29,56\\nDie Fähre von Reine kommt zwei Mal am Tag in den Kirkefjord.\\n\\n181\\n00:19:29,68 --> 00:19:33,68\\nIm Sommer gibt es oft keinen Platz mehr.\\n\\n182\\n00:19:33,8 --> 00:19:37,6\\nEinige sind Einwohner und kommen um ihr Haus und ihr Garten in standzuhalten.-\\n\\n183\\n00:19:37,76 --> 00:19:41,72\\n- oder Ferien machen. Die meisten sind Touristen-\\n\\n184\\n00:19:41,84 --> 00:19:47,8\\n- die den Weg hier hergefunden haben, die hohen Berge und das Fjordreich.\\n\\n185\\n00:19:55,92 --> 00:20:00,64\\nDer Kontrast zwischen Sommer und Winter könnte auf dem Fjord nicht gröÃ\\x9fer sein.\\n\\n186\\n00:20:00,76 --> 00:20:06,28\\nJa, es ist aber gemütlich wenn es hier ein wenig Leben gibt.\\n\\n187\\n00:20:06,4 --> 00:20:10,8\\nEs sind zwei verschiedene Welten.\\n\\n188\\n00:20:10,92 --> 00:20:16,72\\nErzähl mal über die Reisenden hier in der dunklen Zeit.\\n\\n189\\n00:20:16,84 --> 00:20:21,56\\nWie ist es hier Kapitän zu sein?\\n\\n190\\n00:20:23,52 --> 00:20:30,64\\nIn den 60-Jahren war hier dickes Eis, und die Fähre hatte Probleme.\\n\\n191\\n00:20:30,8 --> 00:20:37,04\\nIn den letzen Jahren gab es keine Probleme mit dem eis, aber mit dem Wind.\\n\\n192\\n00:20:37,2 --> 00:20:43,32\\nDie Winde bauen sich zwischen den Bergen auf.\\n\\n193\\n00:20:47,84 --> 00:20:54,6\\nEin Mal kam ein Haus das von Rostad, genommen wurde.\\n\\n194\\n00:20:54,72 --> 00:21:00,24\\nGelichzeitig kehrte sich die Fähre und Fuhr in die andere Richtung.\\n\\n195\\n00:21:00,36 --> 00:21:04,4\\nAber damals unterbrach ich die Rute und returnierte nach Reine.\\n\\n196\\n00:21:04,52 --> 00:21:08,04\\nDas war wohl am sichersten.\\n\\n197\\n00:21:09,48 --> 00:21:13,56\\nParallel mit dem Kirkefjord liegt der Bunesfjord.\\n\\n198\\n00:21:13,68 --> 00:21:20,16\\nDie Einfahrt ist nicht Tief genug, die Leute müssen in Vindstad an Land gehen.\\n\\n199\\n00:21:20,28 --> 00:21:27,32\\nAuch hier lebt ein Mensch. Aber die Häuser werden gepflegt\\n\\n200\\n00:21:27,76 --> 00:21:33,48\\nDie Schule wird ein Haus für die Touristen.\\n\\n201\\n00:21:35,68 --> 00:21:40,96\\nDie Touristen gehen den Weg entlang den Bunesfjord einwärts -\\n\\n202\\n00:21:41,08 --> 00:21:47,48\\n- und gehen an der Landenge innerhalb des Fjordendes. Sie haben ein Zeil ...\\n\\n203\\n00:22:19,08 --> 00:22:24,44\\nBunessand heiÃ\\x9ft dieser imponierende Strand.\\n\\n204\\n00:22:24,56 --> 00:22:30,16\\nAuf einem Nes am GroÃ\\x9fmeer liget der Hof Bunes.\\n\\n205\\n00:22:34,04 --> 00:22:40,12\\nIngrid Blomquist ist hier aufgewachsen. Sie lebt im Zentrum von Göteborg, -\\n\\n206\\n00:22:40,28 --> 00:22:46,28\\n- aber jeden Sommer muss sie zurück in ihr Haus am Meer.\\n\\n207\\n00:22:50,32 --> 00:22:55,52\\nHier holt sie Wasser von einer Quelle einen kleinen Kilometer entfernt.\\n\\n208\\n00:22:55,64 --> 00:23:00,88\\nHier wohnt sie ohne Strom oder Telefon. Hier lebt sie Wochen lang -\\n\\n209\\n00:23:01 --> 00:23:06,84\\n- mit den Erinnerungen an die Zeit als zwei Familien hier Wand and Wand lebten.\\n\\n210\\n00:23:08,32 --> 00:23:14\\nSie lebten von der Erde und dem Meer, bis ein Tag im letzten Kriegswinter-\\n\\n211\\n00:23:14,12 --> 00:23:18,28\\n- ihr Leben auf den Kopf stellte.\\n\\n212\\n00:23:18,4 --> 00:23:24,72\\nEine Mine explodierte vor eins der Häuser.\\n\\n213\\n00:23:24,84 --> 00:23:29,64\\nEs war eine Hornmine. Die Explosion war sehr Laut.\\n\\n214\\n00:23:29,8 --> 00:23:35,8\\nDie Lampen und Fenster wurden zerstört.\\n\\n215\\n00:23:35,92 --> 00:23:40,92\\nTassen und Platten fielen runter.\\n\\n216\\n00:23:41,08 --> 00:23:46,08\\nEs war schlimmer im Nachbarhaus, wo der Onkel und die Tante wohnten.\\n\\n217\\n00:23:46,2 --> 00:23:50,08\\nMein Onkel starb.\\n\\n218\\n00:23:50,2 --> 00:23:55,92\\nDas Haus wurde schlimm angerichtet, schlimmer als unser.\\n\\n219\\n00:23:57,32 --> 00:24:05,16\\nEs wurde nie wieder aufgebaut. Boden und Wände waren schief.\\n\\n220\\n00:24:09,08 --> 00:24:14,08\\nDie Erwachsenen gingen mit den Kühen und den Schafen -\\n\\n221\\n00:24:14,24 --> 00:24:19,72\\n- über den Feldern da drüben, und haben sie da fest gemacht.\\n\\n222\\n00:24:22,52 --> 00:24:27,92\\n-Wie war der Umzugstag? -Schrecklich.\\n\\n223\\n00:24:33,72 --> 00:24:39,48\\nMan trauerte über das Haus und über den Onkel der starb, -\\n\\n224\\n00:24:39,6 --> 00:24:46,36\\n- und meine Tante war Witwe. Es war schrecklich.\\n\\n225\\n00:24:48 --> 00:24:55,96\\nIngrids GroÃ\\x9feltern verloren zwei Töchter an Tuberkulose, zwei Söhne -\\n\\n226\\n00:24:56,08 --> 00:25:03,12\\n- ans Meer, und ein fiel auf dem Eis und schlug den Kopf auf den Fels.\\n\\n227\\n00:25:03,24 --> 00:25:11,08\\nSie haben schlimm daran gearbeitet einen damit sie eine Herde halten konnten.\\n\\n228\\n00:25:11,2 --> 00:25:17,52\\nSo gar auf einer kleinen Insel fanden sie sogar ein paar Gräser.\\n\\n229\\n00:25:17,64 --> 00:25:23,4\\nUnd die Fische, die sie fingen, trugen sie den langen Weg nach Vindstad.\\n\\n230\\n00:25:23,56 --> 00:25:27,88\\nHier kletterten auch die Schulkinder\\n\\n231\\n00:25:28 --> 00:25:34,48\\nSie mussten sich an einem Seil halten, dass an den steilsten Stracken befestigt waren.\\n\\n232\\n00:25:34,6 --> 00:25:40,32\\nTrotz dem das sie 80 ist, und der Weg schwierig und lang ist, -\\n\\n233\\n00:25:40,44 --> 00:25:45,64\\n- muss die Frau von der GroÃ\\x9fstadt jeden Sommer zurückkommen.\\n\\n234\\n00:25:45,8 --> 00:25:51,68\\nIch weiÃ\\x9f nicht. Es muss der Ort sein, der schön ist.\\n\\n235\\n00:25:52,24 --> 00:25:58,8\\nEs tut einen gut. Dann siet man wie man heute lebt.\\n\\n236\\n00:25:58,92 --> 00:26:04\\nTrozt dem beklagt man sich immer.\\n\\n237\\n00:26:10,32 --> 00:26:14,52\\nIm Kirkefjord legt Oddvar Berntsen mit seinem Boot ab.\\n\\n238\\n00:26:14,64 --> 00:26:20,64\\nEr ist schon 60 Jahre lang ein Fischer und steht auf dem Deck mit der Fischleine.\\n\\n239\\n00:26:20,76 --> 00:26:25,2\\nNormalerweise fischte er im Vestfjort oder auf der AuÃ\\x9fenseite der Lofoten.\\n\\n240\\n00:26:25,32 --> 00:26:31,72\\nAber heute fischt er nach Fisch für das Mittagessen.\\n\\n241\\n00:26:33 --> 00:26:36,96\\nWie oft isst du Fisch?\\n\\n242\\n00:26:37,08 --> 00:26:41,16\\nWenn ich alleine bin, wird es sechs Mal die Woche.\\n\\n243\\n00:26:41,28 --> 00:26:44,64\\nSonntags Fleisch.\\n\\n244\\n00:26:44,84 --> 00:26:49\\nUnd Kabeljau wurde es ...?\\n\\n245\\n00:26:49,8 --> 00:26:56,44\\nIch hatte ein reiches Leben. Ich bin frei.\\n\\n246\\n00:27:00,48 --> 00:27:07\\nUnd muss mit niemandem streiten oder streiken.\\n\\n247\\n00:27:09,12 --> 00:27:14,96\\nIch habe schöne Natur gesehen und das, was im Meer lebt, -\\n\\n248\\n00:27:15,08 --> 00:27:21\\n- aber genau so Veil das zwischen Himmel und Erde fliegt und den Kampf zwischen ihnen.\\n\\n249\\n00:28:04,16 --> 00:28:09,2\\nIch weiÃ\\x9f nicht, wie viel Zeit mir noch bleibt.\\n\\n250\\n00:28:09,32 --> 00:28:14,76\\nIch bin so alt das es bald geschafft ist.\\n\\n251\\n00:28:14,88 --> 00:28:21,28\\n-Du bleibst hier so lange wie möglich? -Ja, solange ich gesund bin.\\n\\n252\\n00:28:22,2 --> 00:28:28,36\\nAber du vermisst nicht mit Leuten zusammen zu sein?\\n\\n253\\n00:28:29,12 --> 00:28:36,64\\nIn meiner Kommune ... Glaube ich nicht, dass die Leute einander viel besuchen.\\n\\n254\\n00:28:38,12 --> 00:28:42,4\\nAlle mit ihrem Leben beschäftigt.\\n\\n255\\n00:28:56,04 --> 00:28:59,64',\n", + " 'bytes': 23522,\n", + " 'sha1': 'cnnd3y9clsdw2ld1b692x19cl9rc3ow',\n", + " 'parent_id': 45014387,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45014476,\n", + " 'timestamp': '2010-10-13T16:59:22Z',\n", + " 'user': {'text': '78.1.118.162'},\n", + " 'page': {'id': 11775258,\n", + " 'title': 'Miropcf-universal-subs-tutorial-step3.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:11,73 --> 00:00:15,77 Film wypeÅ\\x82nia lukÄ\\x99 pomiÄ\\x99dzy tymi, którzy ocaleli a widzem 2 00:00:15,77 --> 00:00:18,98 pomiÄ\\x99dzy patrzeniem a wprowad...'\",\n", + " 'text': '1\\n00:00:11,73 --> 00:00:15,77\\nFilm wypeÅ\\x82nia lukÄ\\x99 pomiÄ\\x99dzy tymi, którzy ocaleli a widzem\\n\\n2\\n00:00:15,77 --> 00:00:18,98\\npomiÄ\\x99dzy patrzeniem a wprowadzaniem zmian,\\n\\n3\\n00:00:18,98 --> 00:00:22,77\\nCelem filmów w WITNESS jest opowiedzenie historii\\n\\n4\\n00:00:22,77 --> 00:00:26,04\\n\\n\\n5\\n00:00:26,73 --> 00:00:31,48\\nWITNESS przywraca wÅ\\x82adzÄ\\x99 kobietom już od 17 lat\\n\\n6\\n00:00:31,48 --> 00:00:37,54\\nwspóÅ\\x82pracuje z różnymi organizacjami i podejmuje dziaÅ\\x82ania dotyczÄ\\x85ce \\n\\n7\\n00:00:39,18 --> 00:00:42,34\\npoczÄ\\x85wszy od handlu kobietami w Europie Wschodniej\\n\\n8\\n00:00:42,34 --> 00:00:45,95\\npoprzez \\n\\n9\\n00:00:45,95 --> 00:00:50,28\\naż po ochronÄ\\x99 osób starszych przed wykorzystywaniem tu w Stanach Zjednoczonych...\\n\\n10\\n00:00:50,28 --> 00:00:52,62\\nWITNESS odmienia życia\\n\\n11\\n00:00:53,66 --> 00:00:57,34\\nKobiety, których prawa czÅ\\x82owieka zostaÅ\\x82y wykorzystane a którym udaÅ\\x82o siÄ\\x99 przeżyÄ\\x87 gÅ\\x82oÅ\\x9bno mówiÄ\\x85\\n\\n12\\n00:00:57,34 --> 00:01:00,63\\ntak aby \\n\\n13\\n00:01:18,78 --> 00:01:21,58\\nPrzemoc wobec kobiet w Zimbabwe ma na celu\\n\\n14\\n00:01:21,58 --> 00:01:25,45\\nkobiety majÄ\\x85 coraz wiÄ\\x99kszy wpÅ\\x82yw na politykÄ\\x99\\n\\n15\\n00:01:25,45 --> 00:01:29,48\\nzatrzymaÄ\\x87 ich wpÅ\\x82yw i zaangażowanie w politykÄ\\x99\\n\\n16\\n00:01:29,48 --> 00:01:32,17\\nsÄ\\x85 one bite i wykorzystywane sexualnie\\n\\n17\\n00:01:32,17 --> 00:01:35,57\\nRAU zdecydowaÅ\\x82o siÄ\\x99 na wspóÅ\\x82pracÄ\\x99 z WITNESS\\n\\n18\\n00:01:35,57 --> 00:01:38,95\\nponieważ daje to ludziom szansÄ\\x99 obejrzenia filmów\\n\\n19\\n00:01:38,95 --> 00:01:41,77\\ni zobaczenia na wÅ\\x82asne oczy co siÄ\\x99 dzieje w Zimbabwe\\n\\n20\\n00:01:43,56 --> 00:01:47,02\\nW Jemenie WITNESS wspóÅ\\x82pracuje z Sisters Arab Forum\\n\\n21\\n00:01:47,02 --> 00:01:50,20\\naby broniÄ\\x87 praw kobiet z mniejszoÅ\\x9bci \"Akhdam\"\\n\\n22\\n00:01:59,85 --> 00:02:01,94\\nFilm zostaÅ\\x82 wyÅ\\x9bwietlony w Jemenie dla czÅ\\x82onków\\n\\n23\\n00:02:01,94 --> 00:02:05,01\\nParlamentu, dziennikarzy oraz spoÅ\\x82ecznoÅ\\x9bci lokalnej\\n\\n24\\n00:02:05,01 --> 00:02:08,34\\ni niestety jego wyÅ\\x9bwietlanie zostaÅ\\x82o zakazane\\n\\n25\\n00:02:08,58 --> 00:02:11,04\\nWITNESS pracuje nad zniesieniem owego zakazu\\n\\n26\\n00:02:12,21 --> 00:02:17,66\\nW Meksyku DUAL INJUSTICE przedstawia historiÄ\\x99 19letniej Neyry\\n\\n27\\n00:02:17,66 --> 00:02:21,70\\nktóra zaginÄ\\x99Å\\x82a w drodze do domu ze szkoÅ\\x82y w 2003r.\\n\\n28\\n00:02:27,58 --> 00:02:32,23\\nWITNESS spotkaÅ\\x82o siÄ\\x99 niedawno z prezydentem Meksyku i wybranymi przedstawicielami rzÄ\\x85du\\n\\n29\\n00:02:32,83 --> 00:02:34,94\\nOdkÄ\\x85d powataÅ\\x82Ä\\x85 specjalna grupa pracujÄ\\x85ca\\n\\n30\\n00:02:34,94 --> 00:02:37,04\\nnad zatrzymaniem przypadków zaginiÄ\\x99Ä\\x87 i morderstw\\n\\n31\\n00:02:37,04 --> 00:02:41,71\\nofiarami zostaÅ\\x82o ponad 450 dziewczÄ\\x85t i mÅ\\x82odych kobiet.\\n\\n32\\n00:02:43,10 --> 00:02:45,90\\nW Macedonii partner WITNESS \\n\\n33\\n00:02:45,90 --> 00:02:48,64\\nstara siÄ\\x99 zatrzymaÄ\\x87 dyskryminacjÄ\\x99 oraz przemoc wobec kobiet\\n\\n34\\n00:02:48,64 --> 00:02:50,65\\nÅ\\x82Ä\\x85cznie z problemem prostytucji\\n\\n35\\n00:03:05,71 --> 00:03:08,90\\nPrzemoc i dyskryminacja przeciwko kobietom i dziewczÄ\\x99tom\\n\\n36\\n00:03:08,90 --> 00:03:13,15\\njest przypadkiem najczÄ\\x99Å\\x9bciej Å\\x82amanych praw czÅ\\x82owieka\\n\\n37\\n00:03:13,15 --> 00:03:16,52\\nWITNESS daje wÅ\\x82adzÄ\\x99 tym, którzy ujmujÄ\\x85 siÄ\\x99 za szanowaniem praw kobiet\\n\\n38\\n00:03:16,52 --> 00:03:20,32\\naby niesprawiedliwoÅ\\x9bÄ\\x87 ujrzaÅ\\x82a Å\\x9bwiatÅ\\x82o dzienne, opowiada ich historie\\n\\n39\\n00:03:20,32 --> 00:03:22,89\\ni wprowadza trwaÅ\\x82e zmiany.',\n", + " 'bytes': 3434,\n", + " 'sha1': 'a8x7fir1r5oxbcc7yuokdxwn5i4kse5',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 643679315,\n", + " 'timestamp': '2022-03-24T14:41:14Z',\n", + " 'user': {'id': 9923202, 'text': 'DraftSaturn15'},\n", + " 'page': {'id': 11775302,\n", + " 'title': 'Miropcf-universal-subs-tutorial-step1.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Fixed typos',\n", + " 'text': \"1\\n00:00:01,125 --> 00:00:03,743\\nThis video will show you how universal subtitles works\\n\\n2\\n00:00:04,658 --> 00:00:06,274\\nits a three step proccess\\n\\n3\\n00:00:06,387 --> 00:00:08,187\\nso I will cover the first one here\\n\\n4\\n00:00:09,141 --> 00:00:10,848\\nto begin press play\\n\\n5\\n00:00:11,587 --> 00:00:14,264\\nyour job is to type out the words you hear\\n\\n6\\n00:00:14,887 --> 00:00:17,141\\ndont worry about typos or perfect accuracy\\n\\n7\\n00:00:17,441 --> 00:00:20,148\\nyou can fix those during the review step\\n\\n8\\n00:00:20,433 --> 00:00:23,366\\ntype everything you hear and press enter to start a new line\\n\\n9\\n00:00:24,12 --> 00:00:26,289\\nlet me explain speed modes real quick\\n\\n10\\n00:00:26,981 --> 00:00:31,443\\nit will pause automatically after 8 seconds so you can catch up\\n\\n11\\n00:00:32,133 --> 00:00:34,799\\njust press play once you have caught up\\n\\n12\\n00:00:34,799 --> 00:00:39,966\\ndon't forget that the tab key is your keyboard shortcut for playing and pausing\\n\\n13\\n00:00:39,966 --> 00:00:43,233\\nwhen you get the hang of that \\n\\n14\\n00:00:43,233 --> 00:00:45,366\\nwe recommend trying the second speed mode\\n\\n15\\n00:00:45,366 --> 00:00:47,566\\nauto pause, its really awesome \\n\\n16\\n00:00:47,566 --> 00:00:50,533\\nif you typing continuously it will pause and wait for you to catch up\\n\\n17\\n00:00:50,533 --> 00:00:54,066\\nonce your caught up it will unpause again\\n\\n18\\n00:00:54,066 --> 00:00:58,733\\njust continually type the words you hear and let auto pause \\n\\n19\\n00:00:58,733 --> 00:01:00,599\\nstart and stop the video for you\\n\\n20\\n00:01:00,599 --> 00:01:04,566\\nonce you have typed all the lines in the video its time to hit the done, next step button\",\n", + " 'bytes': 1615,\n", + " 'sha1': 'kaonoiiwtg66ksmpnw6s2rq5fkqmpd4',\n", + " 'parent_id': 121355781,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 394267936,\n", + " 'timestamp': '2020-02-13T21:39:39Z',\n", + " 'user': {'id': 2073340, 'text': 'Jdx'},\n", + " 'page': {'id': 11775363,\n", + " 'title': 'Miropcf-universal-subs-tutorial-step3.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/194.81.239.142|194.81.239.142]] ([[User talk:194.81.239.142|talk]]) to last revision by Wylve',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:01,900\\nJust one more step.\\n\\n2\\n00:00:01,900 --> 00:00:03,900\\nNow that you've synced all the lines,\\n\\n3\\n00:00:03,900 --> 00:00:06,420\\nit's time to watch the whole video straight through,\\n\\n4\\n00:00:06,420 --> 00:00:08,720\\ncorrecting any problems that you see.\\n\\n5\\n00:00:08,720 --> 00:00:11,800\\nIf there's a spelling error or problem with the text,\\n\\n6\\n00:00:11,800 --> 00:00:18,060\\nsimply click on it to edit, make your fix, and then press enter to finalize your change.\\n\\n7\\n00:00:18,060 --> 00:00:21,440\\nThe timeline allows you to adjust things very quickly.\\n\\n8\\n00:00:21,440 --> 00:00:26,740\\nIf you want to add blank space, just grab the edge of a text bubble and shrink it down.\\n\\n9\\n00:00:26,740 --> 00:00:30,820\\nYou can navigate the timeline by clicking and holding the number line.\\n\\n10\\n00:00:30,820 --> 00:00:34,960\\nWe recommend you watch the video one last time before you finish.\\n\\n11\\n00:00:34,960 --> 00:00:37,900\\nSit back and enjoy a job well done.\\n\\n12\\n00:00:37,900 --> 00:00:43,280\\nWhen you're happy with the subtitles, just click the submit button on the lower right to proceed.\\n\\n13\\n00:00:43,280 --> 00:00:46,020\\nIf you haven't logged in yet, you'll need to do this.\\n\\n14\\n00:00:46,020 --> 00:00:48,700\\nAt this point, congratulations.\\n\\n15\\n00:00:48,700 --> 00:00:53,420\\nYou've created a complete set of subtitles using Universal Subtitles!\",\n", + " 'bytes': 1361,\n", + " 'sha1': '7c29knde29dz8lestkv57eyflng470j',\n", + " 'parent_id': 387498462,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45021296,\n", + " 'timestamp': '2010-10-13T19:33:08Z',\n", + " 'user': {'id': 1314255, 'text': 'Jed-pcf'},\n", + " 'page': {'id': 11776508,\n", + " 'title': 'Miropcf-universal-subs-tutorial-step2.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'created new subtitles (test content) using [[Commons:UniversalSubtitles|UniversalSubs]]',\n", + " 'text': '1\\n00:00:00 --> 00:00:01,861\\nlike a video game\\n\\n2\\n00:00:02,276 --> 00:00:04,866\\nwhen I first hear someone speaking, I click this button\\n\\n3\\n00:00:04,866 --> 00:00:06,999\\nor i can use the down arrow on my keyboarda dn I c\\n\\n4\\n00:00:06,999 --> 00:00:08,433\\na;lsdkjf; as',\n", + " 'bytes': 264,\n", + " 'sha1': '6ezpzpfqpdy6jz6q2qmn6j8k2zgr0so',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 654905007,\n", + " 'timestamp': '2022-05-09T10:29:22Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11785444,\n", + " 'title': 'Miropcf About Universal Subtitles.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Overall subtitles update: reading speed, adjustments for layout on mobile devices, adjustments in sync etc.',\n", + " 'text': \"1\\n00:00:00,050 --> 00:00:03,190\\nWe started Universal Subtitles\\nbecause we believe\\n\\n2\\n00:00:03,190 --> 00:00:06,700\\nevery video on the web\\nshould be subtitle-able.\\n\\n3\\n00:00:06,700 --> 00:00:08,800\\nMillions of deaf\\nand hard-of-hearing viewers\\n\\n4\\n00:00:08,800 --> 00:00:11,050\\nrequire subtitles to access video.\\n\\n5\\n00:00:11,170 --> 00:00:15,410\\nVideomakers and websites should\\nreally care about this stuff too.\\n\\n6\\n00:00:15,410 --> 00:00:18,230\\nSubtitles give them access\\nto a wider audience\\n\\n7\\n00:00:18,240 --> 00:00:20,780\\nand they also get\\nbetter search rankings.\\n\\n8\\n00:00:20,780 --> 00:00:23,550\\nUniversal Subtitles\\nmakes it incredibly easy\\n\\n9\\n00:00:23,550 --> 00:00:26,940\\nto add subtitles to almost any video.\\n\\n10\\n00:00:26,940 --> 00:00:32,290\\nTake an existing video on the web,\\nsubmit the URL to our website\\n\\n11\\n00:00:32,310 --> 00:00:36,480\\nand then type along with the\\ndialog to create the subtitles.\\n\\n12\\n00:00:38,760 --> 00:00:43,650\\nAfter that, tap on your keyboard\\nto sync them with the video.\\n\\n13\\n00:00:44,220 --> 00:00:46,720\\nThen you're done\\n— we give you an embed code\\n\\n14\\n00:00:46,720 --> 00:00:49,620\\nfor the video that you\\ncan put on any website\\n\\n15\\n00:00:49,620 --> 00:00:52,560\\nat that point, viewers are able\\nto use the subtitles\\n\\n16\\n00:00:52,560 --> 00:00:55,680\\nand can also\\ncontribute to translations.\\n\\n17\\n00:00:55,770 --> 00:01:01,410\\nWe support videos on YouTube,\\nBlip.TV, Ustream, and many more.\\n\\n18\\n00:01:01,420 --> 00:01:04,610\\nPlus we're adding\\nmore services all the time.\\n\\n19\\n00:01:05,110 --> 00:01:09,050\\nUniversal Subtitles works\\nwith many popular video formats,\\n\\n20\\n00:01:09,050 --> 00:01:14,310\\nsuch as MP4, theora,\\nwebM and over HTML 5.\\n\\n21\\n00:01:14,310 --> 00:01:18,050\\nOur goal is for every video\\non the web to be subtitle-able\\n\\n22\\n00:01:18,060 --> 00:01:20,320\\nso that anyone who cares\\nabout the video\\n\\n23\\n00:01:20,320 --> 00:01:22,523\\ncan help make it more accessible.\\n1\\n00:00:00,07 --> 00:00:03,12\\nWe started Universal Subtitles because we believe\\n\\n2\\n00:00:03,17 --> 00:00:06,51\\nevery video on the web should be subtitle-able.\\n\\n3\\n00:00:06,60 --> 00:00:11,42\\nMillions of deaf and hard of hearing viewers require subtitles to access video.\\n\\n4\\n00:00:11,51 --> 00:00:15,21\\nVideomakers and websites should really care about this stuff too.\\n\\n5\\n00:00:15,30 --> 00:00:20,50\\nSubtitles give them access to a wider audience and they also get better search rankings.\\n\\n6\\n00:00:20,59 --> 00:00:26,72\\nUniversal Subtitles makes it incredibly easy to add subtitles to almost any video.\\n\\n7\\n00:00:27,01 --> 00:00:32,23\\nTake an existing video on the web, submit the URL to our website, \\n\\n8\\n00:00:32,23 --> 00:00:36,22\\nand then type along with the dialog to create the subtitles.\\n\\n9\\n00:00:38,98 --> 00:00:43,00\\nAfter that, tap on your keyboard to sync them with the video.\\n\\n10\\n00:00:44,30 --> 00:00:47,11\\nThen you're done-- we give you an embed code for the video\\n\\n11\\n00:00:47,11 --> 00:00:49,43\\nthat you can put on any website.\\n\\n12\\n00:00:49,43 --> 00:00:53,30\\nAt that point, viewers are able to use the subtitles and can also\\n\\n13\\n00:00:53,30 --> 00:00:55,67\\ncontribute to translations.\\n\\n14\\n00:00:55,73 --> 00:01:01,12\\nWe support videos on YouTube, Blip.TV, Ustream, and many more.\\n\\n15\\n00:01:01,20 --> 00:01:04,64\\nPlus, we're adding more services all the time.\\n\\n16\\n00:01:04,83 --> 00:01:08,80\\nUniversal Subtitles works with many popular video formats,\\n\\n17\\n00:01:08,80 --> 00:01:14,32\\nsuch as MP4, Theora, WebM and over HTML5.\\n\\n18\\n00:01:14,32 --> 00:01:19,25\\nOur goal is for every video on the web to be subtitle-able so that anyone who cares about\\n\\n19\\n00:01:19,25 --> 00:01:22,21\\nthe video can help make it more accessible.\",\n", + " 'bytes': 3642,\n", + " 'sha1': '2hlsste5g0cl9noumbzp93nfiejdzvo',\n", + " 'parent_id': 45070461,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 654910807,\n", + " 'timestamp': '2022-05-09T11:13:04Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11785445,\n", + " 'title': 'Miropcf About Universal Subtitles.ogv.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Overall subtitles update: reading speed, adjustments for layout on mobile devices, adjustments in sync etc. and just added right symbols',\n", + " 'text': '1\\n00:00:00,050 --> 00:00:03,190\\nΞεκινήσαμε τους Παγκόσμιους\\nΥπότιτλους γιατί πιστεύουμε\\n\\n2\\n00:00:03,190 --> 00:00:06,521\\nκάθε βίντεο στο διαδίκτυο\\nπρέπει να είναι υποτιτλίσιμο.\\n\\n3\\n00:00:06,688 --> 00:00:08,550\\nΕκατομμύρια θεατές με κώφωση ή βαρηκοΐα\\n\\n4\\n00:00:08,550 --> 00:00:11,050\\nαπαιτούν υπότιτλους\\nγια την πρόσβαση τους στα βίντεο.\\n\\n5\\n00:00:11,284 --> 00:00:13,062\\nΙστοσελίδες και όσοι φτιάχνουν βίντεο\\n\\n6\\n00:00:13,062 --> 00:00:15,450\\nθα έπρεπε επίσης να νοιάζονται\\nπραγματικά για αυτό.\\n\\n7\\n00:00:15,460 --> 00:00:17,954\\nΟι υπότιτλοι τούς δίνουν\\nπρόσβαση σε μεγαλύτερο κοινό\\n\\n8\\n00:00:17,954 --> 00:00:20,896\\nκαι επίσης εμφανίζονται ψηλότερα\\nστις κατατάξεις του ίντερνετ.\\n\\n9\\n00:00:20,896 --> 00:00:24,313\\nΗ Universal Subtitles το κάνει\\nαπίστευτα εύκολο να προσθέσει κανείς\\n\\n10\\n00:00:24,313 --> 00:00:26,940\\nυπότιτλους σε σχεδόν οποιοδήποτε βίντεο.\\n\\n11\\n00:00:26,940 --> 00:00:29,415\\nΠάρτε ένα ήδη υπάρχον\\nβίντεο από το ίντερνετ,\\n\\n12\\n00:00:29,415 --> 00:00:32,271\\nεισάγετε την ιντερνετική\\nδιεύθυνση (url) στην ιστοσελίδα μας\\n\\n13\\n00:00:32,271 --> 00:00:34,485\\nκαι μετά πληκτρολογήστε\\nπαράλληλα με το διάλογο\\n\\n14\\n00:00:34,485 --> 00:00:36,280\\nγια να δημιουργήσετε τους υπότιτλους.\\n\\n15\\n00:00:38,760 --> 00:00:43,650\\nΜετά από αυτό πατήστε στο πληκτρολόγιο σας\\nγια να τους συγχρονίσετε με το βίντεο.\\n\\n16\\n00:00:44,198 --> 00:00:47,179\\nΤότε είστε έτοιμοι! Σας δίνουμε έναν\\nembbed code για το βίντεο,\\n\\n17\\n00:00:47,179 --> 00:00:49,710\\nτο οποίο μπορείτε να βάλετε\\nσε οποιαδήποτε ιστοσελίδα.\\n\\n18\\n00:00:49,710 --> 00:00:53,202\\nΣε αυτό το σημείο, οι χρήστες μπορούν\\nνα χρησιμοποιήσουν τους υπότιτλους\\n\\n19\\n00:00:53,202 --> 00:00:55,680\\nκαι να συνεισφέρουν στις μεταφράσεις τους.\\n\\n20\\n00:00:55,770 --> 00:01:01,410\\nΥποστηρίζουμε βίντεο στο youtube, bliptv,\\nustream και σε πολλές άλλες ιστοσελίδες.\\n\\n21\\n00:01:01,420 --> 00:01:04,610\\nΕπίσης προσθέτουμε\\nπολλές υπήρεσιες όλη την ώρα.\\n\\n22\\n00:01:05,110 --> 00:01:09,050\\nΟι Universal Subtitles είναι συμβατοί\\nμε πολλές δημοφιλείς μορφές βίντεο\\n\\n23\\n00:01:09,050 --> 00:01:13,929\\nόπως MP4, Theora, WebM και HTML5.\\n\\n24\\n00:01:14,310 --> 00:01:17,884\\nΟ στόχος μας είναι να μπορεί\\nνα υποτιτλιστεί κάθε βίντεο στο ιντερνετ.\\n\\n25\\n00:01:17,911 --> 00:01:20,501\\nΈτσι ώστε οποιοσδήποτε\\nενδιαφέρεται για αυτό το βίντεο\\n\\n26\\n00:01:20,501 --> 00:01:22,523\\nνα βοηθήσει να γίνει πιο προσβάσιμο.',\n", + " 'bytes': 3420,\n", + " 'sha1': 'jlncuqy835r83r40ett9snmvojxanp8',\n", + " 'parent_id': 45070462,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 654908455,\n", + " 'timestamp': '2022-05-09T10:56:02Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11785446,\n", + " 'title': 'Miropcf About Universal Subtitles.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Overall subtitles update: reading speed, adjustments for layout on mobile devices, adjustments in sync etc.',\n", + " 'text': \"1\\n00:00:00,050 --> 00:00:03,190\\nNous avons créé Universal Subtitles\\nparce que nous croyonsss\\n\\n2\\n00:00:03,190 --> 00:00:06,700\\nque chaque vidéo sur le Web\\ndevrait être sous-titrable.\\n\\n3\\n00:00:06,700 --> 00:00:08,695\\nDes millions d'utilisateurs malentendants\\n\\n4\\n00:00:08,695 --> 00:00:11,050\\nont besoin de sous-titres\\npour accéder aux vidéos.\\n\\n5\\n00:00:11,170 --> 00:00:15,165\\nLes créateurs et diffuseurs de vidéos\\ndevraient aussi s'en préoccuper :\\n\\n6\\n00:00:15,165 --> 00:00:18,230\\nles sous-titres leur permettent\\nde toucher un public plus large\\n\\n7\\n00:00:18,240 --> 00:00:20,780\\net améliorent leur référencement.\\n\\n8\\n00:00:20,780 --> 00:00:23,550\\nUniversal Subtitles facilite\\nl'ajout de sous-titres\\n\\n9\\n00:00:23,550 --> 00:00:26,940\\npour quasiment toutes les vidéos.\\n\\n10\\n00:00:26,940 --> 00:00:32,290\\nPrenez une vidéo existante sur le Web,\\ncopiez son adresse sur notre site,\\n\\n11\\n00:00:32,310 --> 00:00:36,480\\npuis rédigez les sous-titres\\nen suivant le dialogue.\\n\\n12\\n00:00:38,760 --> 00:00:43,650\\nEnsuite, utilisez votre clavier\\npour les synchroniser avec la vidéo.\\n\\n13\\n00:00:44,206 --> 00:00:46,637\\nC'est terminé. Nous vous\\ndonnons un code d'insertion\\n\\n14\\n00:00:46,637 --> 00:00:49,701\\npour la vidéo que vous pouvez\\nplacer sur n'importe quel site Web.\\n\\n15\\n00:00:49,701 --> 00:00:52,560\\nA partir de là, les spectateurs\\npeuvent voir les sous-titres\\n\\n16\\n00:00:52,560 --> 00:00:55,680\\net peuvent également\\ncontribuer aux traductions.\\n\\n17\\n00:00:55,770 --> 00:01:01,410\\nNous supportons les vidéos de YouTube, \\nBlip.TV, Ustream et bien d'autres.\\n\\n18\\n00:01:01,420 --> 00:01:04,610\\nDe plus, nous ajoutons\\nde nouveaux services régulièrement.\\n\\n19\\n00:01:05,110 --> 00:01:09,050\\nUniversal Subtitles fonctionne avec\\nde nombreux formats populaires de vidéo,\\n\\n20\\n00:01:09,050 --> 00:01:14,310\\ncomme MP4, Theora, webM, et HTML5.\\n\\n21\\n00:01:14,310 --> 00:01:18,050\\nNotre but est que chaque vidéo\\nsur le Web soit sous-titrable\\n\\n22\\n00:01:18,060 --> 00:01:20,320\\npour que quiconque se souciant de la vidéo\\n\\n23\\n00:01:20,320 --> 00:01:22,523\\npuisse aider à la rendre plus accessible.\",\n", + " 'bytes': 2081,\n", + " 'sha1': 'rekow5zhtg71zyvavclhokstch32yfn',\n", + " 'parent_id': 121354188,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 527830255,\n", + " 'timestamp': '2021-01-23T09:04:49Z',\n", + " 'user': {'id': 2366229, 'text': 'Achim55'},\n", + " 'page': {'id': 11785734,\n", + " 'title': 'Boldness and links tutorial.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/65.37.113.197|65.37.113.197]] ([[User talk:65.37.113.197|talk]]) to last revision by Sross (Public Policy)',\n", + " 'text': '0\\n00:00:00,333 --> 00:00:04,504\\nThis is a walkthrough of the basics of wiki markup:\\n\\n1\\n00:00:04,504 --> 00:00:06,606\\nhow to make bold text\\n\\n2\\n00:00:06,606 --> 00:00:08,908\\nand links to other wiki pages.\\n\\n3\\n00:00:08,908 --> 00:00:11,845\\nYou can try out everything from this video\\n\\n4\\n00:00:11,845 --> 00:00:14,514\\nin your own user sandbox page.\\n\\n5\\n00:00:14,514 --> 00:00:17,083\\nIf you don\\'t already have a sandbox page,\\n\\n6\\n00:00:17,083 --> 00:00:20,587\\nenter \"Help:Sandbox tutorial\"\\n\\n7\\n00:00:20,587 --> 00:00:22,956\\nin the Wikipedia search box.\\n\\n8\\n00:00:22,956 --> 00:00:26,259\\nThat page has instructions for starting a sandbox.\\n\\n9\\n00:00:26,259 --> 00:00:31,097\\nTo begin, press the \"edit\" button on your sandbox page.\\n\\n10\\n00:00:31,097 --> 00:00:33,266\\nThis will open an edit window,\\n\\n11\\n00:00:33,266 --> 00:00:35,802\\nwhere you can begin these exercises.\\n\\n12\\n00:00:35,802 --> 00:00:38,171\\nWe\\'ll start with the very basics:\\n\\n13\\n00:00:38,171 --> 00:00:39,739\\nbold.\\n\\n14\\n00:00:39,739 --> 00:00:44,092\\nBolded text appears at the beginning of most articles,\\n\\n15\\n00:00:44,092 --> 00:00:46,146\\nto mark the subject of the article,\\n\\n16\\n00:00:46,146 --> 00:00:48,882\\nso it\\'s one of the first things you\\'ll need to learn.\\n\\n17\\n00:00:48,882 --> 00:00:50,784\\nYou can make bold text\\n\\n18\\n00:00:50,784 --> 00:00:52,652\\nby highlighting it with your mouse\\n\\n19\\n00:00:52,652 --> 00:00:54,854\\nthen clicking the \"B\" button\\n\\n20\\n00:00:54,854 --> 00:00:56,489\\nin the edit toolbar.\\n\\n21\\n00:00:56,489 --> 00:00:59,325\\nThis adds three single quote marks\\n\\n22\\n00:00:59,325 --> 00:01:01,695\\nat the beginning of what you want to be bold,\\n\\n23\\n00:01:01,695 --> 00:01:04,764\\nand another three single quote marks at the end.\\n\\n24\\n00:01:04,764 --> 00:01:06,866\\nLet\\'s see what this looks like.\\n\\n25\\n00:01:06,866 --> 00:01:09,135\\nGo to the bottom of the edit window,\\n\\n26\\n00:01:09,135 --> 00:01:12,772\\nenter a brief edit summary to describe your edit,\\n\\n27\\n00:01:12,772 --> 00:01:14,741\\nand press \"Save page\".\\n\\n28\\n00:01:14,741 --> 00:01:16,081\\nIt\\'s good to get in the habit\\n\\n29\\n00:01:16,081 --> 00:01:19,946\\nof leaving edit summaries every time you edit.\\n\\n30\\n00:01:19,946 --> 00:01:22,382\\nIt helps you keep track of what you\\'ve done,\\n\\n31\\n00:01:22,382 --> 00:01:25,485\\nand it makes it easier to collaborate with others.\\n\\n32\\n00:01:25,485 --> 00:01:30,019\\nYou should have some bolded text on your test page now.\\n\\n33\\n00:01:30,019 --> 00:01:33,526\\nPress the edit button, and let\\'s continue.\\n\\n34\\n00:01:33,526 --> 00:01:36,463\\nThis time, we\\'ll make wikilinks.\\n\\n35\\n00:01:36,463 --> 00:01:41,167\\nThese are links that go from one page on Wikipedia\\n\\n36\\n00:01:41,167 --> 00:01:42,435\\nto another.\\n\\n37\\n00:01:42,435 --> 00:01:44,571\\nLet\\'s try it with the word \"bold\".\\n\\n38\\n00:01:44,571 --> 00:01:47,024\\nTo create a wikilink,\\n\\n39\\n00:01:47,024 --> 00:01:48,742\\nhighlight the word,\\n\\n40\\n00:01:48,742 --> 00:01:51,544\\nthen click the link icon in the edit toolbar.\\n\\n41\\n00:01:51,544 --> 00:01:55,115\\nThis brings up the insert link dialog.\\n\\n42\\n00:01:55,115 --> 00:01:57,035\\nClicking the insert link button\\n\\n43\\n00:01:57,035 --> 00:02:00,186\\nwill add the code for a wikilink:\\n\\n44\\n00:02:00,186 --> 00:02:02,422\\nTwo opening square brackets,\\n\\n45\\n00:02:02,422 --> 00:02:05,125\\nfollowed by the article you want to link to\\n\\n46\\n00:02:05,125 --> 00:02:06,086\\n--in this case, \"bold\"--\\n\\n47\\n00:02:06,086 --> 00:02:10,003\\nfollowed by two closing square brackets.\\n\\n48\\n00:02:10,003 --> 00:02:12,699\\nNow enter an edit summary and save.\\n\\n49\\n00:02:12,699 --> 00:02:15,702\\nThe word \"bold\" is now blue,\\n\\n50\\n00:02:15,702 --> 00:02:18,505\\nand links to the article about bold.\\n\\n51\\n00:02:18,505 --> 00:02:20,473\\nWell, the article for bold\\n\\n52\\n00:02:20,473 --> 00:02:23,243\\nis actually called \"Emphasis (typography)\"\\n\\n53\\n00:02:23,243 --> 00:02:25,478\\nand that\\'s where the link redirects us.\\n\\n54\\n00:02:25,478 --> 00:02:29,416\\nBut what if that\\'s not what you wanted to link to?\\n\\n55\\n00:02:29,416 --> 00:02:31,885\\nWhat if you meant \"Boldness\",\\n\\n56\\n00:02:31,885 --> 00:02:33,853\\nthe opposite of being shy?\\n\\n57\\n00:02:33,853 --> 00:02:36,056\\nLet\\'s edit the page again.\\n\\n58\\n00:02:36,056 --> 00:02:38,792\\nThis time, in the insert link dialog,\\n\\n59\\n00:02:38,792 --> 00:02:41,728\\nreplace \"bold\" with \"boldness\"\\n\\n60\\n00:02:41,728 --> 00:02:44,397\\nin the \"Target page or URL\" section.\\n\\n61\\n00:02:44,397 --> 00:02:47,667\\nNow, pressing the \"Insert link\" button\\n\\n62\\n00:02:47,667 --> 00:02:49,836\\ncreates a piped link,\\n\\n63\\n00:02:49,836 --> 00:02:52,205\\nwhich is the wiki markup for a link\\n\\n64\\n00:02:52,205 --> 00:02:56,142\\nwith text that is different from the name of the article that it points to.\\n\\n65\\n00:02:56,142 --> 00:02:59,679\\nIt consists of two opening square brackets,\\n\\n66\\n00:02:59,679 --> 00:03:00,098\\nlike a plain link,\\n\\n67\\n00:03:00,098 --> 00:03:03,917\\nfollowed by the name of the article you want to link to\\n\\n68\\n00:03:03,917 --> 00:03:05,352\\n--boldness--\\n\\n69\\n00:03:05,352 --> 00:03:06,953\\nthen, a pipe\\n\\n70\\n00:03:06,953 --> 00:03:10,156\\n--which you can insert by pressing \"shift+backslash\"\\n\\n71\\n00:03:10,156 --> 00:03:12,192\\non most keyboards--\\n\\n72\\n00:03:12,192 --> 00:03:14,227\\nafter the article name,\\n\\n73\\n00:03:14,227 --> 00:03:16,629\\nthen, the text you want for the link\\n\\n74\\n00:03:16,629 --> 00:03:17,864\\n--bold--\\n\\n75\\n00:03:17,864 --> 00:03:20,467\\nthen two closing square brackets.\\n\\n76\\n00:03:20,467 --> 00:03:24,337\\nThat\\'s like *this* generally.\\n\\n77\\n00:03:24,337 --> 00:03:26,005\\nIf you save your changes,\\n\\n78\\n00:03:26,005 --> 00:03:27,674\\nyou\\'ll see the result.\\n\\n79\\n00:03:27,674 --> 00:03:29,442\\nThe link says \"bold\",\\n\\n80\\n00:03:29,442 --> 00:03:30,844\\nand when you click,\\n\\n81\\n00:03:30,844 --> 00:03:33,279\\nyou get the article \"Boldness\".\\n\\n82\\n00:03:33,279 --> 00:03:35,248\\nSo go ahead, start editing!',\n", + " 'bytes': 5694,\n", + " 'sha1': 'ktg4llvoilcca8v1ksgpzg7mh8yeqbn',\n", + " 'parent_id': 527761181,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 578808987,\n", + " 'timestamp': '2021-08-06T22:04:49Z',\n", + " 'user': {'id': 10527654, 'text': 'Fourthmars'},\n", + " 'page': {'id': 11795064,\n", + " 'title': 'Tutorial on starting a sandbox article on Wikipedia.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,9 --> 00:00:06,239\\nThis is a walkthrough of how to start an article in a sandbox on Wikipedia.\\n\\n2\\n00:00:06,239 --> 00:00:07,907\\nYou can use a sandbox\\n\\n3\\n00:00:07,907 --> 00:00:10,477\\nto experiment with wiki syntax,\\n\\n4\\n00:00:10,477 --> 00:00:12,445\\nmake practice edits,\\n\\n5\\n00:00:12,445 --> 00:00:14,748\\ntakes notes and collect material,\\napps\\n6\\n00:00:14,748 --> 00:00:18,818\\nor draft an article that can later be moved into Wikipedia\\n\\n7\\n00:00:18,818 --> 00:00:20,653\\nTo make a user sandbox,\\n\\n8\\n00:00:20,653 --> 00:00:24,124\\nfirst, you need to log in to your user account.\\n\\n9\\n00:00:24,124 --> 00:00:27,961\\nIf you don\\'t already have one, or need help logging in,\\n\\n10\\n00:00:27,961 --> 00:00:33,5\\ntype \"Help:Logging in\" into the search box on Wikipedia.\\n\\n11\\n00:00:33,5 --> 00:00:35,368\\nThat page has information\\n\\n12\\n00:00:35,368 --> 00:00:38,038\\nabout creating an account and logging in,\\n\\n13\\n00:00:38,038 --> 00:00:40,64\\nincluding a tutorial video.\\n\\n14\\n00:00:40,64 --> 00:00:42,475\\nOnce you\\'ve logged in,\\n\\n15\\n00:00:42,475 --> 00:00:45,645\\nclick on your username at the top of the page.\\n\\n16\\n00:00:45,645 --> 00:00:48,915\\nThis will bring you to your user page.\\n\\n17\\n00:00:48,915 --> 00:00:53,386\\nYour sandbox will be a subpage of your user page.\\n\\n18\\n00:00:53,386 --> 00:00:57,624\\nWe\\'ll start by creating a link to the page title we want.\\n\\n19\\n00:00:57,624 --> 00:00:59,893\\nPress the edit button.\\n\\n20\\n00:00:59,893 --> 00:01:02,562\\nThis will bring up an edit window.\\n\\n21\\n00:01:02,562 --> 00:01:05,765\\nNow, add two opening square brackets,\\n\\n22\\n00:01:05,765 --> 00:01:07,6\\nthen a forward slash,\\n\\n23\\n00:01:07,6 --> 00:01:10,203\\nfollowed by the name of the page you want.\\n\\n24\\n00:01:10,203 --> 00:01:13,74\\nWe\\'ll use \"sandbox\" for this example.\\n\\n25\\n00:01:13,74 --> 00:01:16,576\\nThen add two closing square brackets.\\n\\n26\\n00:01:16,576 --> 00:01:20,98\\nThis is the wiki markup for making a link to a subpage.\\n\\n27\\n00:01:20,98 --> 00:01:23,717\\nNow, save your edit.\\n\\n28\\n00:01:23,717 --> 00:01:26,119\\nYou\\'ve added the link to your userpage.\\n\\n29\\n00:01:26,119 --> 00:01:27,487\\nThe link will be red,\\n\\n30\\n00:01:27,487 --> 00:01:31,091\\nbecause the page it points to doesn\\'t exist yet.\\n\\n31\\n00:01:31,091 --> 00:01:33,193\\nNow, click the link.\\n\\n32\\n00:01:33,193 --> 00:01:35,995\\nThat will bring up a page like *this*,\\n\\n33\\n00:01:35,995 --> 00:01:41,234\\nwhich says: \"Wikipedia does not have a user page with this exact name\",\\n\\n34\\n00:01:41,234 --> 00:01:43,536\\nwith an edit window beneath,\\n\\n35\\n00:01:43,536 --> 00:01:46,606\\nwhere you can begin composing your sandbox page.\\n\\n36\\n00:01:46,606 --> 00:01:49,642\\nOnce you\\'ve written a little bit of your sandbox article,\\n\\n37\\n00:01:49,642 --> 00:01:53,546\\nYou can press the \"Show preview\" button beneath the edit window\\n\\n38\\n00:01:53,546 --> 00:01:56,082\\nto see what the page will look like.\\n\\n39\\n00:01:56,082 --> 00:01:58,685\\nThen, enter an edit summary\\n\\n40\\n00:01:58,685 --> 00:02:00,487\\nin the field beneath the edit window\\n\\n41\\n00:02:00,487 --> 00:02:02,055\\nto describe what you\\'ve done,\\n\\n42\\n00:02:02,055 --> 00:02:04,09\\nand press \"Save\".\\n\\n43\\n00:02:04,09 --> 00:02:06,726\\nYou\\'ve started your sandbox article!\\n\\n44\\n00:02:06,726 --> 00:02:09,696\\nYou can always press \"Edit\" to make more changes.\\n\\n45\\n00:02:09,696 --> 0-1:0-1:0-1\\nHappy editing!',\n", + " 'bytes': 3255,\n", + " 'sha1': '62df504xaz83lj60e3lgrpobvte50nj',\n", + " 'parent_id': 362107707,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45144279,\n", + " 'timestamp': '2010-10-17T08:03:36Z',\n", + " 'user': {'id': 6282, 'text': 'Longbow4u'},\n", + " 'page': {'id': 11796153,\n", + " 'title': '051118-WSIS.2005-Bruce.Perens.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Edited subtitles using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': \"0\\n00:00:01,479 --> 00:00:04,039\\nThanks everyone, I am Bruce Perens\\n\\n1\\n00:00:04,039 --> 00:00:06,759\\nand I bring you greetings from the hundreds\\n\\n2\\n00:00:06,759 --> 00:00:11,399\\nof thousands of open source software developers from around the world\\n\\n3\\n00:00:11,399 --> 00:00:15,559\\nwe embody many of the goals of the United Nations\\n\\n4\\n00:00:15,559 --> 00:00:18,359\\nwe are a community without borders\\n\\n5\\n00:00:18,359 --> 00:00:19,839\\na global network that shares knowledge\\n\\n6\\n00:00:19,839 --> 00:00:23,999\\na social movement that produces\\n\\n7\\n00:00:23,999 --> 00:00:28,279\\nreal products available equally to the rich or poor\\n\\n8\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nan economic reality that has engaged\\n\\n9\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthe world's largest companies\\n\\n10\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand talented individuals in a collaboration of equals\",\n", + " 'bytes': 834,\n", + " 'sha1': 'lnmws6cmb2k2lh624f6egqeuyat2kx0',\n", + " 'parent_id': 45115458,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45142143,\n", + " 'timestamp': '2010-10-17T05:44:03Z',\n", + " 'user': {'id': 707267, 'text': 'SpongeSebastian'},\n", + " 'page': {'id': 11802978,\n", + " 'title': 'Folgers commercial.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:02,43 --> 00:00:06,40 -Attention, ladies, please. 2 00:00:06,40 --> 00:00:08,24 Right now, at the end of aisle 2, 3 00:00:08,24 --> 00:00:13,27 I've set ...'\",\n", + " 'text': \"1\\n00:00:02,43 --> 00:00:06,40\\n-Attention, ladies, please.\\n\\n2\\n00:00:06,40 --> 00:00:08,24\\nRight now, at the end of aisle 2,\\n\\n3\\n00:00:08,24 --> 00:00:13,27\\nI've set out a brand-new can't-miss husband-pleasing coffee.\\n\\n4\\n00:00:13,27 --> 00:00:14,78\\n-Mr. McGreggor,\\n\\n5\\n00:00:14,78 --> 00:00:16,11\\na new coffee?\\n\\n6\\n00:00:16,11 --> 00:00:19,08\\nBut you always recommended Instant Folger's.\\n\\n7\\n00:00:19,08 --> 00:00:21,32\\n-I used to recommend Instant Folger's.\\n\\n8\\n00:00:21,32 --> 00:00:22,55\\n-You do?\\n\\n9\\n00:00:22,55 --> 00:00:26,25\\n-But now I recommend New Instant Folger's.\\n\\n10\\n00:00:26,25 --> 00:00:27,86\\n-Instant Folger's is new?\\n\\n11\\n00:00:27,86 --> 00:00:28,99\\n-Sure is.\\n\\n12\\n00:00:28,99 --> 00:00:32,19\\nNew Instant Folger's tastes good as fresh perked\\n\\n13\\n00:00:32,19 --> 00:00:33,76\\nbecause it is fresh perked.\\n\\n14\\n00:00:33,76 --> 00:00:34,70\\nLook here.\\n\\n15\\n00:00:34,70 --> 00:00:37,63\\nFolger's starts with fresh-perked coffee,\\n\\n16\\n00:00:37,63 --> 00:00:41,57\\nthen they turn this percolated coffee into New Instant Folger's.\\n\\n17\\n00:00:41,57 --> 00:00:44,84\\nEvery cup tastes good as fresh perks.\\n\\n18\\n00:00:44,84 --> 00:00:46,34\\n-Because it is fresh perks.\\n\\n19\\n00:00:46,34 --> 00:00:47,27\\n-Oh, I like it better.\\n\\n20\\n00:00:47,27 --> 00:00:50,41\\nRemember, Instant Folger's is brand-new.\\n\\n21\\n00:00:50,41 --> 00:00:53,55\\nOh, Mrs. Brown, with the way your husband likes good coffee,\\n\\n22\\n00:00:53,55 --> 00:00:54,42\\nyou'd better take two.\\n\\n23\\n00:00:54,42 --> 00:00:56,62\\n-Try New Instant Folger's.\\n\\n24\\n00:00:56,62 --> 00:01:00,92\\nTastes good as fresh-perked because it is fresh-perked.\",\n", + " 'bytes': 1574,\n", + " 'sha1': 'f2u55r8fozji5arh2sw5k60idxr81ly',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45278375,\n", + " 'timestamp': '2010-10-20T23:50:08Z',\n", + " 'user': {'id': 304601, 'text': 'Goldzahn'},\n", + " 'page': {'id': 11826164,\n", + " 'title': 'Folgers.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:01,707 --> 00:00:04,154\\nHarold schmeckt der Kaffee?\\n\\n1\\n00:00:04,169 --> 00:00:05,185\\nuh-uhmmm\\n\\n2\\n00:00:05,005 --> 00:00:07,785\\nDu meinst, er ist so schlecht wie gestern?\\n\\n3\\n00:00:07,785 --> 00:00:08,962\\nuh-huh\\n\\n4\\n00:00:09 --> 00:00:10,169\\nÜberhaupt keine Verbesserung?\\n\\n5\\n00:00:10,446 --> 00:00:11,823\\nuh-uh\\n\\n6\\n00:00:12,002 --> 00:00:17\\nHarold, schüttele nicht einfach nur deinen Kopf. Sag´ mir was mit dem Kaffee nicht stimmt.\\n\\n7\\n00:00:17,538 --> 00:00:19\\nSchlechter Geschmack.\\n\\n8\\n00:00:19,477 --> 00:00:21,002\\nWas soll ich jetzt machen?\\n\\n9\\n00:00:22,623 --> 00:00:23,005\\nMary, hallo.\\n\\n10\\n00:00:23,007 --> 00:00:25\\nHallo Jane\\n\\n11\\n00:00:25,038 --> 00:00:29,246\\nKannst du mir helfen? Harold mag meinen Kaffee nicht. Welchen Kaffee nimmst du?\\n\\n12\\n00:00:30 --> 00:00:31\\nInstant Folgers\\n\\n13\\n00:00:31 --> 00:00:32\\nInstant Folgers?\\n\\n14\\n00:00:32,002 --> 00:00:34\\nSchmeckt wie frisch aufgebrüht. \\n\\n15\\n00:00:34,002 --> 00:00:37,008\\nWie frisch aufgebrüht. Ich probiere ihn.\\n\\n16\\n00:00:38,725 --> 00:00:42,008\\nJean, der Kaffee schmeckt wunderbar, weißt du das? \\n\\n17\\n00:00:42,002 --> 00:00:42,084\\num-hmmm\\n\\n18\\n00:00:43,464 --> 00:00:46\\nEs ist nicht der selbe Kaffee wie sonst? \\n\\n19\\n00:00:46,002 --> 00:00:46,502\\num-uhmmm\\n\\n20\\n00:00:47,148 --> 00:00:51,433\\nSchüttele nicht nur deinen Kopf. Warum ist der Kaffee so gut?\\n\\n21\\n00:00:52,664 --> 00:00:54,005\\nGuter Geschmack.\\n\\n22\\n00:00:55,006 --> 00:00:59\\nSchmeckt wie frisch aufgebrüht. Instant Folgers.',\n", + " 'bytes': 1447,\n", + " 'sha1': 'aius151tcpfmy6gkx6i48avri0ptqzv',\n", + " 'parent_id': 45234226,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 575585111,\n", + " 'timestamp': '2021-07-17T13:23:05Z',\n", + " 'user': {'id': 9867604, 'text': 'Mohammad ebz'},\n", + " 'page': {'id': 11856050,\n", + " 'title': 'Videoonwikipedia.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00 --> 00:00:02,202\\nYou all know Wikipedia.\\n\\n2\\n00:00:02,202 --> 00:00:05,772\\nYou use it for your papers, to write articles,\\nor just to learn something for fun.\\n\\n3\\n00:00:05,772 --> 00:00:09,042\\nNot only it is free for you to read,\\n\\n4\\n00:00:09,042 --> 00:00:11,344\\nit's free for you to contribute and improve on articles.\\n\\n5\\n00:00:11,344 --> 00:00:14,00\\nEverything you contribute has to be factual,\\n\\n6\\n00:00:14,00 --> 00:00:17,884\\nneutral in point of view, and uncensored on controversial topics.\\n\\n7\\n00:00:19,300 --> 00:00:21,655\\nWikipedia is an open community,\\n\\n8\\n00:00:21,655 --> 00:00:23,923\\nself-governing with minimal structure.\\n\\n9\\n00:00:23,923 --> 00:00:28,128\\nEveryone is a volunteer.\\n\\n10\\n00:00:28,128 --> 00:00:31,431\\nPresently, Wikipedia appears in over 260 languages,\\n\\n11\\n00:00:31,431 --> 00:00:33,733\\nwith some languages featuring thousands of articles,\\n\\n12\\n00:00:33,733 --> 00:00:37,047\\nand other languages featuring millions.\\n\\n13\\n00:00:37,047 --> 00:00:40,500\\nArticles feature in-depth information, pictures and links\\n\\n14\\n00:00:40,600 --> 00:00:42,900\\nthat help you learn more about the topic.\\n\\n15\\n00:00:43,00 --> 00:00:47,00\\nwhat if every article that you read had video?\\n\\n16\\n00:00:47,00 --> 00:00:50,00\\nWhat if you could take a tour of the pyramids of Egypt\\n\\n17\\n00:00:50,00 --> 00:00:53,00\\nor a tour down a historic town's main street\\n\\n18\\n00:00:53,00 --> 00:00:56,00\\nor watch national dance for your home country\\n\\n19\\n00:00:56,00 --> 00:01:00,00\\nnow with video on Wikipedia, you can\\n\\n20\\n00:01:00,00 --> 00:01:02,800\\nif you want to shoot a video yourself\\n\\n21\\n00:01:02,800 --> 00:01:05,100\\ntry picking out key points form the article\\n\\n22\\n00:01:05,300 --> 00:01:06,700\\nthat you think will help illustrate the topic\\n\\n23\\n00:01:06,700 --> 00:01:10,00\\nand playing with, you would like to record a head of time.\\n\\n24\\n00:01:10,00 --> 00:01:12,600\\nRemember, Wikipedia is an encyclopedia\\n\\n25\\n00:01:12,600 --> 00:01:16,00\\nso the contention be educational and informative\\n\\n26\\n00:01:16,00 --> 00:01:19,00\\nmost importantly when shooting video\\n\\n27\\n00:01:19,00 --> 00:01:22,00\\ntry to keep a steady hand or use a tripod.\\n\\n28\\n00:01:22,00 --> 00:01:24,800\\nif you don't want to record the video yourself,\\n\\n29\\n00:01:25,00 --> 00:01:27,900\\nthere are number of archives on the Internet, like archive.org\\n\\n30\\n00:01:28,00 --> 00:01:30,200\\nor Wikimedia commons that will probably\\n\\n31\\n00:01:30,200 --> 00:01:32,200\\nhave a video the best suit your article.\\n\\n32\\n00:01:34,00 --> 00:01:37,00\\njust remember, no matter what you shoot or what you find\\n\\n33\\n00:01:37,100 --> 00:01:41,300\\nall video on Wikimedia must be free to use and free to share.\\n\\n34\\n00:01:41,400 --> 00:01:45,00\\nusually this means that it is licensed to the Creative Commons\\n\\n35\\n00:01:45,200 --> 00:01:47,00\\nnow that you have selected an article\\n\\n36\\n00:01:47,200 --> 00:01:49,00\\nand a video you would like to add to it;\\n\\n37\\n00:01:49,00 --> 00:01:52,800\\nhere is the simplest way to bring the two together.\\n\\n38\\n00:01:53,800 --> 00:01:57,00\\nfirst, we recommend using Mozilla Firefox\\n\\n39\\n00:01:57,00 --> 00:02:00,00\\nFirefox is a free open source browser\\n\\n40\\n00:02:00,00 --> 00:02:03,400\\nthat makes viewing and adding video to Wikipedia simple\\n\\n41\\n00:02:03,500 --> 00:02:08,00\\nafter that, download the Firefogg add-on to Mozilla Firefox\\n\\n42\\n00:02:08,00 --> 00:02:13,00\\nthis automatically converts videos to the free and open Theora format\\n\\n43\\n00:02:13,00 --> 00:02:16,200\\nthat Wikipedia uses when you upload them\\n\\n44\\n00:02:16,200 --> 00:02:21,200\\nalternatively, Windows and Mac users can download Miro converter\\n\\n45\\n00:02:21,200 --> 00:02:25,200\\na simple software that lets you take video and converter it to any format\\n\\n46\\n00:02:25,200 --> 00:02:27,200\\nincluding open video for Wikipedia\\n\\n47\\n00:02:28,800 --> 00:02:33,00\\nunlike editing text uploading video requires that you logged in to Wikipedia\\n\\n48\\n00:02:33,00 --> 00:02:37,00\\nsign in or create an account if you're a new user.\\n\\n49\\n00:02:37,00 --> 00:02:39,400\\nwhen you upload video for the first time,\\n\\n50\\n00:02:39,400 --> 00:02:43,00\\nyou'll have to turn on the video uploading feature.\\n\\n51\\n00:02:43,00 --> 00:02:48,00\\nto do this, click on your user name at the top of the page\\n\\n52\\n00:02:48,00 --> 00:02:51,00\\nthen, click on my preferences\\n\\n53\\n00:02:53,200 --> 00:02:54,800\\nclick on gadgets\\n\\n54\\n00:02:55,500 --> 00:02:59,200\\nthen scroll down to user interface gadgets\\n\\n55\\n00:02:59,400 --> 00:03:04,200\\nand clip the box that says add mwEmbed support\\n\\n56\\n00:03:05,00 --> 00:03:08,200\\nscroll down to the save button and click save.\\n\\n57\\n00:03:08,200 --> 00:03:11,200\\nnow your ready to upload video\\n\\n58\\n00:03:11,200 --> 00:03:15,200\\nnow that you have signed in go to the article you would like to modify\\n\\n59\\n00:03:15,200 --> 00:03:16,200\\nand click the edit button.\\n\\n60\\n00:03:16,200 --> 00:03:19,200\\nyou'll see add media wizard button in the editing tab\\n\\n61\\n00:03:19,200 --> 00:03:22,200\\nclicking this link will pull up a menu\\n\\n62\\n00:03:22,200 --> 00:03:26,200\\nif your uploading your own file select it and hit upload\\n\\n63\\n00:03:26,200 --> 00:03:28,200\\nyou can also select a video from the commons\\n\\n64\\n00:03:28,200 --> 00:03:32,200\\nor a media file you have previous uploaded but have not yet added to an article\\n\\n65\\n00:03:32,200 --> 00:03:37,000\\nto put the video in to the article just click on insert into page\\n\\n66\\n00:03:37,000 --> 00:03:39,000\\nat the bottom right hand corner of the window\\n\\n67\\n00:03:39,000 --> 00:03:43,000\\nto learn more about how to add video to Wikipedia\\n\\n68\\n00:03:43,000 --> 00:03:48,000\\ntype in WP:WikiProject lights camera wiki\\n\\n69\\n00:03:48,000 --> 00:03:50,000\\nin to the Wikipedia search box\",\n", + " 'bytes': 5612,\n", + " 'sha1': 'bq6mrf1bwxghn8ku0kzlbuuypjgex7t',\n", + " 'parent_id': 549912904,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45349206,\n", + " 'timestamp': '2010-10-23T00:32:01Z',\n", + " 'user': {'id': 465966, 'text': 'Chaetodipus'},\n", + " 'page': {'id': 11856526,\n", + " 'title': 'Gullivers travels1939.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Edited subtitles using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': \"1\\n00:00:00,367 --> 00:00:02,936\\n[music plays]\\n\\n1.5\\n00:00:02,936 --> 00:00:11,911\\n\\n\\n2\\n00:00:11,911 --> 00:00:15,115\\n[grunts]\\n\\n2.5\\n00:00:15,115 --> 00:00:20,019\\n\\n\\n3\\n00:00:20,019 --> 00:00:21,888\\n[gunshot]\\n\\n4\\n00:00:21,888 --> 00:00:24,624\\n[crash]\\n\\n5\\n00:00:24,624 --> 00:00:28,428\\n[screams]\\n\\n5.5\\n00:00:28,428 --> 00:00:39,439\\n\\n\\n6\\n00:00:39,439 --> 00:00:42,075\\n[horse whinny]\\n\\n6.5\\n00:00:42,075 --> 00:00:56,222\\n\\n\\n7.5\\n00:00:56,222 --> 00:01:17,41\\n\\n\\n8\\n00:01:17,41 --> 00:01:21,681\\n(unintelligible)\\n\\n8.5\\n00:01:21,681 --> 00:01:24,317\\n\\n\\n9\\n00:01:24,317 --> 00:01:28,421\\nHelp! [unintelligible] Let me in! Let me in! Let me in!\\n\\n9.5\\n00:01:28,421 --> 00:01:32,442\\n\\n\\n10\\n00:01:32,542 --> 00:01:36,095\\nLet me in! Let me in!\\n\\n10.5\\n00:01:36,095 --> 00:01:37,513\\n\\n\\n11\\n00:01:37,513 --> 00:01:43,436\\nLet me go! Help! Help!\\n\\n12\\n00:01:46,139 --> 00:01:48,842\\nLet me go! Help! I don't want to die!\\n\\n13\\n00:01:48,842 --> 00:01:49,342\\nGULLIVER: Well, well what do we got here?\\n\\n14\\n00:01:49,342 --> 00:01:57,116\\nLILLIPUTIAN: Help! Don't eat me! Don't eat-- I won't taste good.\\n\\n15\\n00:01:57,116 --> 00:02:02,322\\nGULLIVER: A man. A tiny man.\\n\\n16\\n00:02:02,322 --> 00:02:06,626\\nLILLIPUTIAN: You can't do this to me. I got a wife and kids: millions of kids.\\n\\n17\\n00:02:06,626 --> 00:02:10,997\\nGULLIVER: Hold on there lad. No one's going to hurt you.\\n\\n18\\n00:02:10,997 --> 00:02:15,401\\nLILLIPUTIAN: Help. Put me down. Help! Help! [cries]\\n\\n19\\n00:02:15,401 --> 00:02:18,037\\nKING: Stop that! Stop that.\\n\\n20\\n00:02:18,037 --> 00:02:21,741\\nGULLIVER: Well another one. Who are you?\\n\\n21\\n00:02:21,741 --> 00:02:32,852\\nKING: Who? Me? I'm king around here. Guards, guards! To the tower! Surround the giant! Surround the giant! Guards!\\n\\n22\\n00:02:32,852 --> 0-1:0-1:0-1\",\n", + " 'bytes': 1720,\n", + " 'sha1': '86xb3h4z98i9w1r5mruqcucf9g0co6p',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 439265886,\n", + " 'timestamp': '2020-08-13T22:48:43Z',\n", + " 'user': {'id': 5617889, 'text': 'Sabelöga'},\n", + " 'page': {'id': 11858719,\n", + " 'title': 'Videoonwikipedia.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'stafvel',\n", + " 'text': '1\\n00:00:00,108 --> 00:00:02,198\\nNi känner alla till Wikipedia,\\n\\n2\\n00:00:02,198 --> 00:00:05,672\\nni använder det till dina uppgifter och att skriva artiklar eller bara för att lära dig något kul.\\n\\n3\\n00:00:06,657 --> 00:00:08,68\\nDet är inte bara gratis för dig att läsa\\n\\n4\\n00:00:08,942 --> 00:00:11,686\\ndet är också tillåtet för dig att bidra och förbättra artiklar.\\n\\n5\\n00:00:11,732 --> 00:00:14,045\\nAllt du skriver måste vara faktabaserat\\n\\n6\\n00:00:14,045 --> 00:00:18,594\\nneutralt skrivet och ocensurerat i kontroversiella ämnen.\\n\\n7\\n00:00:19,686 --> 00:00:21,87\\nWikipedia är en öppen gemenskap\\n\\n8\\n00:00:21,87 --> 00:00:24,114\\nsom styr sig själv med minimal struktur.\\n\\n9\\n00:00:24,114 --> 00:00:26,227\\nAlla är volontärer.\\n\\n10\\n00:00:27,873 --> 00:00:31,305\\nJust nu finns Wikipedia på över 260 språk\\n\\n11\\n00:00:31,52 --> 00:00:33,857\\ndär några språk har tusentals artiklar\\n\\n12\\n00:00:33,919 --> 00:00:36,05\\nhar andra miljontals.\\n\\n13\\n00:00:37,419 --> 00:00:41,007\\nArtiklar har djuplodande information, bilder och länkar\\n\\n14\\n00:00:41,007 --> 00:00:43,234\\nsom hjälper dig att förstå ämnet.\\n\\n15\\n00:00:44,573 --> 00:00:48,181\\nMen tänk om varje artikel du läste hade video.\\n\\n16\\n00:00:48,181 --> 00:00:50,85\\nTänk om du kunde ta en tur runt pyramiderna i Egypten\\n\\n17\\n00:00:50,85 --> 00:00:53,887\\neller en tur längs en historisk stads huvudgata\\n\\n18\\n00:00:53,887 --> 00:00:56,956\\neller se en folkdans från ditt hemland.\\n\\n19\\n00:00:56,956 --> 00:01:01,327\\nNu med video på Wikipedia är det möjligt.\\n\\n20\\n00:01:01,327 --> 00:01:03,463\\nOm du vill filma själv\\n\\n21\\n00:01:03,463 --> 00:01:08,101\\nförsök att välja kärnfrågor i artikeln som kommer att hjälpa dig att illustrera ämnet\\n\\n23\\n00:01:08,307 --> 00:01:10,932\\noch planera vad du vill filma i förväg.\\n\\n24\\n00:01:10,963 --> 00:01:14,605\\nKom ihåg att Wikipedia är en encyklopedi\\n\\n25\\n00:01:14,743 --> 00:01:16,193\\nså innehållet ska vara utbildande och informativt.\\n\\n26\\n00:01:17,24 --> 00:01:19,903\\nDet viktigast när du spelar in\\n\\n27\\n00:01:19,934 --> 00:01:22,949\\när att ha en stadig hand eller att använda ett stativ.\\n\\n28\\n00:01:23,011 --> 00:01:25,351\\nOm du inte vill spela in video själv\\n\\n29\\n00:01:25,351 --> 00:01:27,37\\nfinns det flera arkiv på internet,\\n\\n30\\n00:01:27,37 --> 00:01:30,077\\nsom archive.org eller Wikimedia Commons\\n\\n31\\n00:01:30,077 --> 00:01:33,196\\nsom troligen har en video som passar din artikel.\\n\\n32\\n00:01:34,534 --> 00:01:37,979\\nKom bara ihåg att oavsett vad du filmar eller vad du hittar\\n\\n33\\n00:01:37,979 --> 00:01:41,901\\nmåste all video på Wikipedia vara fri att använda och dela.\\n\\n34\\n00:01:41,901 --> 00:01:46,005\\nVanligtvis innebär det att den är licensierad med Creative Commons.\\n\\n35\\n00:01:46,005 --> 00:01:47,877\\nNu när du har valt en artikel\\n\\n36\\n00:01:47,877 --> 00:01:49,934\\noch en video du vill lägga till där\\n\\n37\\n00:01:49,934 --> 00:01:54,848\\nhär är det enklaste sättet att göra de båda.\\n\\n38\\n00:01:54,848 --> 00:01:57,817\\nFörst rekommenderar vi Mozilla Firefox.\\n\\n39\\n00:01:57,817 --> 00:02:00,587\\nFirefox är en gratis webbläsare med öppen källkod\\n\\n40\\n00:02:00,587 --> 00:02:04,057\\nsom gör det lätt att titta på och lägga till video på Wikipedia\\n\\n41\\n00:02:04,057 --> 00:02:09,496\\nSedan, ladda hem tillägget Firefogg till Mozilla Firefox\\n\\n42\\n00:02:09,496 --> 00:02:13,299\\nsom automatiskt konverterar video till det fria och öppna Theora formatet\\n\\n43\\n00:02:13,299 --> 00:02:17,003\\nsom Wikipedia använder när du laddar upp dem.\\n\\n44\\n00:02:17,003 --> 00:02:20,94\\nAlternativt kan Windows- och Macanvändare ladda hem Miro converter\\n\\n45\\n00:02:20,94 --> 00:02:25,311\\nett enkelt program som kan konvertera video till många format\\n\\n46\\n00:02:25,311 --> 00:02:28,915\\ninklusive öppen video för Wikipedia.\\n\\n47\\n00:02:28,915 --> 00:02:34,954\\nTill skillnad från att redigera text kräver uppladdning av video att du loggar in på Wikipedia.\\n\\n48\\n00:02:34,954 --> 00:02:38,892\\nLogga in eller skapa ett konto om du är en ny användare.\\n\\n49\\n00:02:38,892 --> 00:02:41,16\\nNär du laddar upp video för första gången\\n\\n50\\n00:02:41,16 --> 00:02:43,897\\nkommer du att behöva slå på videouppladdningsfunktionen.\\n\\n51\\n00:02:43,897 --> 00:02:49,202\\nFör att göra detta klicka på ditt användarnamn högst upp på sidan,\\n\\n52\\n00:02:49,202 --> 00:02:53,606\\nklicka sedan på Mina inställningar,\\n\\n53\\n00:02:53,606 --> 00:02:56,309\\nklicka på finesser,\\n\\n54\\n00:02:56,309 --> 00:03:00,313\\nscrolla sedan ner till Utseendefinesser,\\n\\n55\\n00:03:00,313 --> 00:03:05,385\\noch fyll i rutan som säger Lägg till mwEmbed support.\\n\\n56\\n00:03:05,385 --> 00:03:09,355\\nScrolla ner till Spara knappen och tryck Spara.\\n\\n57\\n00:03:09,355 --> 00:03:12,258\\nNu är du redo att ladda upp video.\\n\\n58\\n00:03:12,258 --> 00:03:15,357\\nNär du har loggat in gå till artikeln du vill redigera\\n\\n59\\n00:03:15,357 --> 00:03:16,985\\noch klicka på knappen Redigera.\\n\\n60\\n00:03:16,985 --> 00:03:20,166\\nNu kommer du se en mediaguideknapp i redigeringsmenyn.\\n\\n61\\n00:03:20,166 --> 00:03:22,748\\nNär du klickar på den kommer ett nytt fönster upp.\\n\\n62\\n00:03:22,748 --> 00:03:26,791\\nOm du laddar upp din egen fil välj den och tryck Ladda upp.\\n\\n63\\n00:03:26,791 --> 00:03:28,975\\nDu kan också välja en video från Commons\\n\\n64\\n00:03:28,975 --> 00:03:33,179\\neller en mediafil som du har laddat upp nyligen men ännu inte lagt till i en artikel.\\n\\n65\\n00:03:33,179 --> 00:03:37,551\\nFör att lägga till videon i artikeln tryck bara på Lägg till på sidan\\n\\n66\\n00:03:37,551 --> 00:03:40,72\\nlängst ner till höger i fönstret.\\n\\n67\\n00:03:40,72 --> 00:03:43,957\\nFör att lära dig mer om hur man lägger till video på Wikipedia\\n\\n68\\n00:03:43,957 --> 00:03:54,467\\ngå till engelska Wikipedia och skriv wp:wikiproject lights camera wiki i sökrutan.',\n", + " 'bytes': 5709,\n", + " 'sha1': '6rqsx9000108a7gle2d5h5uaa420bs2',\n", + " 'parent_id': 45367461,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 600109932,\n", + " 'timestamp': '2021-10-19T08:38:47Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 12015516,\n", + " 'title': 'Wikipedia video tutorial-2-Reliability-en.ogv.ro.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall update',\n", + " 'text': '1\\n00:00:01,169 --> 00:00:03,461\\nSalut, eu sunt Tereza.\\n\\n2\\n00:00:03,503 --> 00:00:05,180\\nMulțumesc că urmăriți filmul nostru\\n\\n3\\n00:00:05,212 --> 00:00:07,780\\ndespre cum se poate\\ncontribui la Wikipedia,\\n\\n4\\n00:00:07,780 --> 00:00:10,794\\ncea mai mare și cea mai\\nbună enciclopedie liberă.\\n\\n5\\n00:00:11,282 --> 00:00:15,489\\nDupă cum probabil știți, oricine poate\\nedita orice articol de pe Wikipedia.\\n\\n6\\n00:00:15,489 --> 00:00:18,029\\nTot ce trebuie să faceți\\neste să apăsați pe \"Editare\",\\n\\n7\\n00:00:18,029 --> 00:00:20,049\\nschimbați textul și apăsati pe \"Salvează\".\\n\\n8\\n00:00:20,049 --> 00:00:23,234\\nDar asta nu vă oferă\\nmijloacele de a rescrie istoria.\\n\\n9\\n00:00:23,266 --> 00:00:27,444\\nDimpotrivă, aș dori să vă explic cum poate\\nWikipedia să-și păstreze integritatea\\n\\n10\\n00:00:27,479 --> 00:00:29,912\\ndeși oricine o poate\\nmodifica atât de ușor.\\n\\n11\\n00:00:30,310 --> 00:00:33,745\\nCa cele mai multe programe de calculator,\\nprogramul din spatele Wikipedia\\n\\n12\\n00:00:33,745 --> 00:00:36,089\\nare multe unelte despre\\ncare utilizatorii nu știu.\\n\\n13\\n00:00:36,111 --> 00:00:38,281\\nVă voi arăta două astfel de unelte\\n\\n14\\n00:00:38,337 --> 00:00:42,237\\nce au fost făcute special pentru\\na asigura calitatea Wikipediei.\\n\\n15\\n00:00:42,761 --> 00:00:45,828\\nPrima unealtă este numită\\n\"Schimbări recente\".\\n\\n16\\n00:00:47,228 --> 00:00:48,967\\nÎn meniul din stânga paginii,\\n\\n17\\n00:00:49,001 --> 00:00:51,821\\nveți găsi o legătură către\\npagina de schimbări recente.\\n\\n18\\n00:00:52,458 --> 00:00:54,218\\nAceasta este o listă a tot\\n\\n19\\n00:00:54,248 --> 00:00:57,428\\nce s-a făcut în ultima vreme\\npe Wikipedia în limba dumneavoastră.\\n\\n20\\n00:00:57,459 --> 00:01:00,106\\nHaideți să ne uităm\\nla primul articol din listă.\\n\\n21\\n00:01:00,208 --> 00:01:04,241\\nDacă apăsați din nou pe \"Schimbări\\nrecente\", la doar câteva secunde,\\n\\n22\\n00:01:04,259 --> 00:01:06,888\\nveți vedea că articolul\\nrespectiv a ajuns mai jos\\n\\n23\\n00:01:07,835 --> 00:01:09,805\\nși toate articolele de mai sus\\n\\n24\\n00:01:09,832 --> 00:01:13,708\\nau fost modificate sau\\ncreate în ultimele 4 secunde.\\n\\n25\\n00:01:14,670 --> 00:01:17,566\\nEste ceea ce eu numesc\\n\"pulsul Wikipediei\".\\n\\n26\\n00:01:17,596 --> 00:01:19,359\\nDestul de impresionant, nu?\\n\\n27\\n00:01:19,677 --> 00:01:21,390\\nHaideți să ne întoarcem la articol.\\n\\n28\\n00:01:22,269 --> 00:01:24,889\\nCând apăsați pe legătura \"diff\",\\n\\n29\\n00:01:24,931 --> 00:01:27,491\\nveți vedea schimbările\\nfăcute asupra articolului.\\n\\n30\\n00:01:27,770 --> 00:01:30,445\\nCeea ce vedeți aici\\nsunt versiunea anterioară\\n\\n31\\n00:01:30,459 --> 00:01:32,846\\nși noua versiune modificată cot la cot.\\n\\n32\\n00:01:33,534 --> 00:01:36,824\\nÎn acest fel, toate schimbările\\nsunt transparente.\\n\\n33\\n00:01:36,948 --> 00:01:40,633\\nComunitatea de utilizatori va urmări\\ncu atenție toate schimbările\\n\\n34\\n00:01:40,633 --> 00:01:43,305\\nși va corecta informațiile false.\\n\\n35\\n00:01:44,073 --> 00:01:46,227\\nAcesta este una din multele metode\\n\\n36\\n00:01:46,237 --> 00:01:48,740\\nde a asigura calitatea Wikipediei.\\n\\n37\\n00:01:48,789 --> 00:01:51,139\\nCealaltă unealtă despre\\ncare vreau să vă vorbesc\\n\\n38\\n00:01:51,166 --> 00:01:56,246\\neste o listă personalizată de schimbări\\nrecente, numită \"Pagini urmărite\".\\n\\n39\\n00:01:56,680 --> 00:01:58,421\\nPentru a obține o listă de urmărire,\\n\\n40\\n00:01:58,421 --> 00:02:00,611\\nva trebui să deschideți\\nun cont de utilizator.\\n\\n41\\n00:02:00,708 --> 00:02:05,244\\nDar nu vă îngrijorați!\\nE rapid, simplu si gratuit!\\n\\n42\\n00:02:07,384 --> 00:02:10,967\\nApăsați pe această legătură\\nși urmăriți instrucțiunile.\\n\\n43\\n00:02:13,684 --> 00:02:16,261\\nDar cum îmi creez\\nlista de pagini urmărite?\\n\\n44\\n00:02:16,291 --> 00:02:18,242\\nPăi, este cel mai bine să creați lista\\n\\n45\\n00:02:18,298 --> 00:02:20,531\\ncu articolele interesante\\npentru dumneavoastră.\\n\\n46\\n00:02:21,101 --> 00:02:23,254\\nEu, de exemplu:\\n\\n47\\n00:02:23,271 --> 00:02:27,198\\nîmi plac câinii!...\\n\\n48\\n00:02:28,304 --> 00:02:31,848\\nCaut permanent articole noi despre câini.\\n\\n49\\n00:02:33,113 --> 00:02:34,767\\nUn Labrador!\\n\\n50\\n00:02:34,777 --> 00:02:37,977\\nPriviți-i fața! Trebuie să vă placă!\\n\\n51\\n00:02:38,420 --> 00:02:40,207\\nHaideți să mergem la acest articol.\\n\\n52\\n00:02:40,772 --> 00:02:43,125\\nDa! Sigur vreau să urmăresc\\n\\n53\\n00:02:43,147 --> 00:02:45,505\\ntoate schimbările făcute la acest articol.\\n\\n54\\n00:02:45,715 --> 00:02:48,501\\nAșa că apăs pe \"urmărește\"\\n(steluța de lângă căutare)\\n\\n55\\n00:02:49,251 --> 00:02:53,179\\nși acest articol este adăugat\\nîn lista de pagini urmărite\\n\\n56\\n00:02:53,239 --> 00:02:57,589\\npe care o pot vedea\\napăsând pe \"Pagini urmărite\".\\n\\n57\\n00:02:58,737 --> 00:03:01,417\\nCând cineva editează\\nun articol din listă,\\n\\n58\\n00:03:01,448 --> 00:03:03,256\\nveti putea vedea acest lucru\\n\\n59\\n00:03:03,298 --> 00:03:04,779\\nși cu un singur clic\\n\\n60\\n00:03:04,808 --> 00:03:06,722\\nputeți vedea cine a făcut schimbările\\n\\n61\\n00:03:07,530 --> 00:03:09,913\\nși ce schimbări au făcut.\\n\\n62\\n00:03:11,796 --> 00:03:14,519\\nApropo, nu doar eu\\nam pagina despre Labrador\\n\\n63\\n00:03:14,547 --> 00:03:16,191\\npe lista de pagini urmărite.\\n\\n64\\n00:03:16,279 --> 00:03:19,728\\nNu, sunt sigur că multe mii\\nde iubitori de câini\\n\\n65\\n00:03:19,768 --> 00:03:24,297\\nurmăresc această pagină.\\n\\n66\\n00:03:25,203 --> 00:03:28,027\\nAcestea au fost două din multele\\n\\n67\\n00:03:28,043 --> 00:03:30,706\\nunelte folosite pentru\\na menține calitatea Wikipediei.\\n\\n68\\n00:03:31,029 --> 00:03:34,697\\nDar cea mai bună metodă pentru a asigura\\nîn continuare calitatea Wikipedie\\n\\n69\\n00:03:34,731 --> 00:03:36,825\\neste să creștem numărul editorilor\\n\\n70\\n00:03:36,833 --> 00:03:39,537\\ncare contribuie cu cunoștințele lor.\\n\\n71\\n00:03:39,982 --> 00:03:42,993\\nCu cât mai mulți editori sunt,\\ncu atât mai bună este calitatea.\\n\\n72\\n00:03:43,063 --> 00:03:47,011\\nAșa că vă rugăm să vă alăturați\\nsuperbului grup de cunoștințe omenești\\n\\n73\\n00:03:47,067 --> 00:03:50,355\\nși ajutati-ne să progresăm\\noriunde este posibil.\\n\\n74\\n00:03:50,432 --> 00:03:52,008\\nMulțumim că ne-ați urmărit!\\n\\n75\\n00:03:52,054 --> 00:03:54,027\\nLa revedere și succes!',\n", + " 'bytes': 6061,\n", + " 'sha1': '5hxqlpozv4pe21m34evqufav3taud7z',\n", + " 'parent_id': 45981797,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 300915765,\n", + " 'timestamp': '2018-05-13T08:26:27Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 12055703,\n", + " 'title': 'Krazy Kat Bugologist 1916 silent.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '84user moved page [[TimedText:Krazy Kat Bugolist 1916 silent.ogv.es.srt]] to [[TimedText:Krazy Kat Bugologist 1916 silent.ogv.es.srt]]: ogv file renamed',\n", + " 'text': '1\\n00:00:22,000 --> 00:00:27,000\\nYo te enseñaré Bugology, Ignatzes\\n\\n2 \\n00:00:40,000 --> 00:00:43,000 \\nAlgo me dice que...\\n\\n3 \\n00:00:58,000 --> 00:01:04,000 \\nMira, Ignatz, una abeja dormida\\n\\n4\\n00:01:04,000 --> 00:01:08,000 \\nUna abeja muerta\\n\\n5\\n00:01:10,000 --> 00:01:14,000 \\nTiene que ser frío\\n\\n6\\n00:01:22,000 --> 00:01:25,000 \\nPobre abeja\\n\\n7\\n00:01:25,000 --> 00:01:31,000 \\nAh, él es feliz, está en el cielo de la abejas\\n\\n8\\n00:01:51,000 --> 00:01:56,000 \\nIgnatz, bueno, usted ha cometido un error\\n\\n9\\n00:01:58,000 --> 00:02:01,000 \\nESTABA.\\n\\n10\\n00:02:45,000 --> 00:02:49,000 \\nDéjamelo a mí',\n", + " 'bytes': 592,\n", + " 'sha1': 'exuxe3ddsogn94zmt480y8aegjtl2z5',\n", + " 'parent_id': 46092623,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 46580946,\n", + " 'timestamp': '2010-12-01T11:39:55Z',\n", + " 'user': {'id': 869583, 'text': 'Rehakt'},\n", + " 'page': {'id': 12192746,\n", + " 'title': 'Great Feeling.ogv.cz.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,905 --> 00:00:03,204 Ééé, ne, Nejsem žádný machr. 2 00:00:03,204 --> 00:00:05,990 Vůbec ne. Opravdu. 3 00:00:05,990 --> 00:00:08,034 To klidně...'\",\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nÉéé, ne, Nejsem žádný machr.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nVůbec ne. Opravdu.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nTo klidně zvládnete.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nZmáčkla jsem tlačítko,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\na uložila text,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nUaaaau!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nBylo to... vzrušující.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nPrávě jsi změnil Wikipedii,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\npřidal jsi svůj vlastní příspěvek k Wikipedii.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nPřečetla jsem si článek v \"Guardianu\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\no téhle on-line encyclopedii\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\ndo které může kdokoliv přispívat,\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\na řekla jsem si: \"Uau!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Možná bych také mohla něčím přispět!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nPoprvé jsem něco napsal\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\na myslím, že je z toho závislost.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nNikdo mi za to neplatí,\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nvíte, dělám to pro Vás,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nprostě dělám něco ve svém volném čase, tak je to.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nMůžete to začít dělat pro tu myšlenku,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nprotože tomu věříte,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\na najednou získáte přátele,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nzískáte lásku,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nzapojíte se do úžasných debat,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\ndostanete mové nápady,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nnapadne vás, že chcete psát knihy...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nNepíšete celý článek sami.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nNapíšete kousek,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\na někdo jiný se přidá:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hej, ještě tohle!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\na společně můžete vytvořit\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nčlánky na celé stránky,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\ncož by člověk sám nedokázal.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nA pak jsi to dokázal.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nŘekneš si: \"Ok, tohle se mi podařilo.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\na to je úžasné.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nTohle je super,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nprotože editování je super pocit.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nKdykoliv se do toho pustíš.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nMusím říct,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nže když jsem četla o Wikipedii,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nrozhodla jsem se\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Tohle by mohlo být něco pro mě\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nA bylo.',\n", + " 'bytes': 2773,\n", + " 'sha1': 'oiog60dubbu9ptwf8t394ueg5i7xjb3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 436921612,\n", + " 'timestamp': '2020-08-03T19:49:24Z',\n", + " 'user': {'id': 138009, 'text': 'Sevela.p'},\n", + " 'page': {'id': 12192772,\n", + " 'title': 'Great Feeling.ogv.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'better translation of first line',\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nÉéé, ne, nemám žádné superschopnosti.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nVůbec žádné. Opravdu.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nTo klidně zvládnete.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nZmáčkla jsem tlačítko,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\na uložila text,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nUaaaau!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nBylo to... vzrušující.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nPrávě jsi změnil Wikipedii,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\npřidal jsi svůj vlastní příspěvek k Wikipedii.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nPřečetla jsem si článek v \"Guardianu\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\no téhle on-line encyclopedii\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\ndo které může kdokoliv přispívat,\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\na řekla jsem si: \"Uau!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Možná bych také mohla něčím přispět!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nPoprvé jsem něco napsal\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\na myslím, že je z toho závislost.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nNikdo mi za to neplatí,\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nvíte, dělám to pro ... víte,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nprostě dělám něco ve svém volném čase, tak je to.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nMůžete to začít dělat pro tu myšlenku,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nprotože tomu věříte,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\na najednou získáte přátele,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nzískáte lásku,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nzapojíte se do úžasných debat,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\ndostanete nové nápady,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nnapadne vás, že chcete psát knihy...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nNepíšete celý článek sami.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nNapíšete kousek,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\na někdo jiný se přidá:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hej, ještě tohle!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\na společně můžete vytvořit\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nčlánky na celé stránky,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\ncož by člověk sám nedokázal.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nA pak jsi to dokázal.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nŘekneš si: \"Ok, tohle se mi podařilo.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\na to je úžasné.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nTohle je super,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nprotože editování je super pocit.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nKdykoliv se do toho pustíš.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nMusím říct,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nže když jsem četla o Wikipedii,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nrozhodla jsem se\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Tohle by mohlo být něco pro mě\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nA bylo.',\n", + " 'bytes': 2794,\n", + " 'sha1': '2dglyjrluz4352cymx09zklb53azhzi',\n", + " 'parent_id': 116565645,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 46688235,\n", + " 'timestamp': '2010-12-05T04:59:30Z',\n", + " 'user': {'id': 1363828, 'text': 'V1rati'},\n", + " 'page': {'id': 12221865,\n", + " 'title': 'Cal 2flip2click8khzvbr vlc.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:01,000 Zero 2 00:00:01,000 --> 00:00:02,000 One 3 00:00:02,000 --> 00:00:03,000 Two 4 00:00:03,000 --> 00:00:04,000 Three 5 00:00:04,0...'\",\n", + " 'text': '1 00:00:00,000 --> 00:00:01,000 Zero\\n\\n2 00:00:01,000 --> 00:00:02,000 One\\n\\n3 00:00:02,000 --> 00:00:03,000 Two\\n\\n4 00:00:03,000 --> 00:00:04,000 Three\\n\\n5 00:00:04,000 --> 00:00:05,000 Four\\n\\n6 00:00:05,000 --> 00:00:06,000 Five\\n\\n7 00:00:06,000 --> 00:00:07,000 Six\\n\\n8 00:00:07,000 --> 00:00:08,000 Seven',\n", + " 'bytes': 301,\n", + " 'sha1': 't8d83f9kddenevph33t22pojheiufog',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 46688246,\n", + " 'timestamp': '2010-12-05T05:01:07Z',\n", + " 'user': {'id': 1363828, 'text': 'V1rati'},\n", + " 'page': {'id': 12221869,\n", + " 'title': 'Cal 2flip2click8khzvbr vlc.ogv.eo.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:01,000 Nul 2 00:00:01,000 --> 00:00:02,000 Unu 3 00:00:02,000 --> 00:00:03,000 Du 4 00:00:03,000 --> 00:00:04,000 Tri 5 00:00:04,000 -...'\",\n", + " 'text': '1 00:00:00,000 --> 00:00:01,000 Nul\\n\\n2 00:00:01,000 --> 00:00:02,000 Unu\\n\\n3 00:00:02,000 --> 00:00:03,000 Du\\n\\n4 00:00:03,000 --> 00:00:04,000 Tri\\n\\n5 00:00:04,000 --> 00:00:05,000 Kvar\\n\\n6 00:00:05,000 --> 00:00:06,000 Kvin\\n\\n7 00:00:06,000 --> 00:00:07,000 Ses\\n\\n8 00:00:07,000 --> 00:00:08,000 Sep',\n", + " 'bytes': 295,\n", + " 'sha1': '14vkumzgf4xvvnwimaoqa7fy2vtv0ho',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 46706169,\n", + " 'timestamp': '2010-12-05T18:52:43Z',\n", + " 'user': {'id': 180468, 'text': 'Fujnky'},\n", + " 'page': {'id': 12226747,\n", + " 'title': 'Roscheiderhof-zinnfigur.ogg.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'minor typos using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': '1\\n00:00:06,556 --> 00:00:10,473\\nIn der Zinnfigurenabteilung wurde eine Werkstatt eingerichtet,\\n\\n2\\n00:00:10,735 --> 00:00:15,503\\nin der die Herstellung der Zinnfiguren demonstriert werden kann.\\n\\n3\\n00:00:15,503 --> 00:00:25,009\\nDie Formen für die traditionellen flachen Zinnfiguren werden heute – wie vor 200 Jahren – in Blockschiefer\\n\\n4\\n00:00:25,009 --> 00:00:34,443\\ngraviert, das heißt mit feinen Stichen herausgearbeitet und mit feinen Strukturen versehen.\\n\\n5\\n00:00:34,443 --> 00:00:42,043\\nMan braucht eine Vorderseite – natürlich – und eine Rückseite. Diese beiden müssen ganz exakt aufeinanderpassen,\\n\\n6\\n00:00:44,276 --> 00:00:51,813\\nund das Fußbrettchen ist schon mit dran-graviert. Beim gießen muss man dieses natürlich verschließen,\\n\\n7\\n00:00:51,813 --> 00:00:56,155\\nund hier oben ist dann der Einguss.\\n\\n8\\n00:00:59,155 --> 00:01:03,406\\nDie Zinnfiguren zeichnen sich durcheine sehr – ja –\\n\\n9\\n00:01:03,406 --> 00:01:15,078\\ngroße Feingliedrigkeit aus. Man muss sehr vorsichtig mit dem Stichel herausarbeiten die Form,\\n\\n10\\n00:01:15,078 --> 00:01:26,338\\nund versuchen, mögllichst deckungsgleiche Formen herzustellen.\\n\\n11\\n00:01:49,941 --> 00:02:06,039\\nZur Überprüfung der Gravur verwendet man einfaches Knet, und versucht einen Abdruck davon zu machen.\\n\\n12\\n00:02:06,039 --> 00:02:16,026\\nUnd man kann dann Überprüfen, ob die Figur den Vorstellungen entsprechend geworden ist.\\n\\n13\\n00:02:23,637 --> 00:02:30,378\\nFür den Guss der Zinnfiguren verwendet man eine Legierung aus Blei, Zinn und Antimon.\\n\\n14\\n00:02:30,378 --> 00:02:38,255\\nIm Grunde die gleiche Legierung, die schon Gutenberg für seine Lettern verwendet hat.\\n\\n15\\n00:02:38,255 --> 00:02:53,949\\nDie Temperatur ist etwa 250 bis 300 Grad. Man gießt ein, das überflüssige Metall wird abgegossen und die Figur ist fertig.\\n\\n16\\n00:02:53,949 --> 00:03:01,247\\nMann kann sie auch sogleich herausnehmen, und könnte sie, wenn man sie verputzt hat,\\n\\n17\\n00:03:01,247 --> 00:03:07,619\\nunmittelbar bemalen oder gleich damit spielen.\\n\\n18\\n00:03:07,619 --> 00:03:15,044\\nAls erstes wird dann der Einguss abgeschnitten.\\n\\n19\\n00:03:24,701 --> 00:03:29,906\\nUnd schon hat man eine kleine Abteilung Bergleute beieinander.\\n\\n20\\n00:03:29,906 --> 00:03:35,595\\nDer letzte und aufwändigste Arbeitsschritt ist dann die Bemalung der Figuren.\\n\\n21\\n00:03:35,595 --> 00:03:40,953\\nZur Bemalung werden die Figuren auf eine Leiste aufgeklebt,\\n\\n22\\n00:03:40,953 --> 00:03:48,544\\nund dann mit Ölfarben und ganz feinen Pinseln sorgfältig bemalt.\\n\\n23\\n00:03:48,544 --> 00:03:56,234\\nDie Gesichter, die Falten, die Gegenstände, die die Figuren in den Händen halten.\\n\\n24\\n00:03:56,234 --> 00:04:02,957\\nIn einzelnen Schritten. Zum Schluss Paradieren dann vor uns – in feinster Ölbemalung –\\n\\n25\\n00:04:02,957 --> 00:04:09,024\\n– die Teilnehmer eines Winzerumzuges, dieses mal aus dem Thüringischen.',\n", + " 'bytes': 2843,\n", + " 'sha1': 's52tipnwujq9gzsxrn404rgacqajqhc',\n", + " 'parent_id': 46705820,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 46808803,\n", + " 'timestamp': '2010-12-09T08:57:58Z',\n", + " 'user': {'id': 5602, 'text': 'Geraki'},\n", + " 'page': {'id': 12254771,\n", + " 'title': 'Great Feeling.ogv.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'proofread',\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nΕεε, όχι, δεν έχω υπερδυνάμεις.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nΚαθόλου. Όχι.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nΜπορείς απόλυτα να το κάνεις.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nΠάτησα το κουμπί,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nκαι αποθήκευσα το κείμενο,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nΓουάο!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nΉταν... ενθουσιαστικό.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nΜόλις άλλαξες την Wikipedia,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nμόλις πρόσθεσες την δική σου συνεισφορά στην Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nΔιάβασα ένα άρθρο στην \"Guardian\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nσχετικά με αυτή τη δικτυακή εγκυκλοπαίδεια\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nόπου καθένας μπορεί να συνεισφέρει\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nκαι είπα, \"Γουάο!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Μπορεί να συνεισφέρω επίσης κι εγώ!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nΈκανα μια πρώτη επεξεργασία\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nκαι νομίζω ότι εθίστηκα σε αυτό.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nΔεν πληρώνομαι τίποτε\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nΑπλώς το κάνω, ξέρεις,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nκάτι που κάνω στον ελεύθερο χρόνο μου, αυτό είναι.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nΜπορεί να ξεκινάς κάνοντάς το για μια ιδέα,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nεπειδή πιστεύεις σε αυτό,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nαλλά καταλήγεις με φίλους,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nκαταλήγεις με εραστές,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nκαταλήγεις με υπέροχες συζητήσεις,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nκαταλήγεις με νέες ιδέες,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nκαταλήγεις με νέα βιβλία που θα γράψεις...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nΔεν γράφεις το άρθρο μόνος σου.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nΓράφεις ένα κομμάτι,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nκαι κάποιος άλλος έρχεται:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Έι, έχω κι άλλο!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nκαι μαζί μπορεί να δημιουργήσετε\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nάρθρα με πολλές σελίδες,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nκάτι που δεν μπορείς να κάνεις μόνος.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nΚαι τότε φτάνεις στην επιτυχία.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nΠάντα βλέπεις, \"Εντάξει, αυτό που έκανα ήταν επιτυχές.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nκαι αυτό είναι υπέροχο.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nΑυτό είναι σπουδαίο,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nεπειδή, η επεξεργασία είναι σπουδαίο συναίσθημα.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nΚάθε φορά που το κάνεις.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nΠρέπει να πω,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nόταν διάβασα για την Wikipedia,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nΑποφάσισα\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Εδώ είναι μάλλον που ταιριάζεις\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nΚαι το έκανα.',\n", + " 'bytes': 3772,\n", + " 'sha1': 't7039u4edvycgzu5vxaqehbc1341920',\n", + " 'parent_id': 46808675,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 46865272,\n", + " 'timestamp': '2010-12-11T04:29:51Z',\n", + " 'user': {'id': 542864, 'text': 'Arjunaraoc'},\n", + " 'page': {'id': 12256199,\n", + " 'title': 'Nice People MEDIUM.ogv.te.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'minor translation fixes',\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 మీకు తెలిసిన జ్ఞానం,మీతోటే ఎందుకు వుంచుకుంటారు?\\n\\n2 00:00:04,249 --> 00:00:07,174 నా ఊహలో మీరు తప్పక పంచుకోవాలి!\\n\\n3 00:00:07,174 --> 00:00:10,031 ఈవికీ జాలస్థల లక్ష్యం \\n\\n4 00:00:10,031 --> 00:00:15,325 వికీ లేక ఇంటర్నెట్ అనలేదు\\n\\n5 00:00:15,325 --> 00:00:17,113 \"స్వేచ్ఛా జ్ఞానం ప్రతి ఒక్కరికి వారి భాషలో\" \\n\\n6 00:00:17,113 --> 00:00:19,411 అని మాత్రమే అనటం నాకు నచ్చింది\\n\\n7 00:00:19,411 --> 00:00:21,548 సముదాయం స్వేచ్ఛగా వున్నప్పుడు,\\n\\n8 00:00:21,548 --> 00:00:23,428 దానిలో వున్న వారందరు\\n\\n9 00:00:23,428 --> 00:00:25,936 ధైర్యంగా ఆహ్వాన పత్రం తీసుకున్నవారే.\\n\\n10 00:00:25,936 --> 00:00:27,956 \\n\\n11 00:00:27,956 --> 00:00:29,535 మీరు ఆహ్వాన పత్రం తీసుకోనవసరంలేదు,\\n\\n12 00:00:29,535 --> 00:00:31,439 కాని ఆహ్వాన పత్రం అక్కడే వుంది\\n\\n13 00:00:31,439 --> 00:00:32,879 \"మార్పు\" అనే బొత్తాము రూపంలో\\n\\n14 00:00:32,879 --> 00:00:37,709 \"రండి, పాలుపంచుకోండి. మీకు తెలిసినది మాకు తెలిసినంతగా ప్రాధాన్యత వుంది\".\\n\\n15 00:00:37,709 --> 00:00:40,472 ప్రజలకు విద్య నేర్పుతున్నారని మీకు తెలుసు,\\n\\n16 00:00:40,472 --> 00:00:43,026 మీ ప్రాంత ప్రజలే కాక ప్రపంచంలోని ప్రజలందరికి.\\n\\n17 00:00:43,026 --> 00:00:47,113 విజ్ఞాన సర్వస్వమునకు నా వంతు సహాయం చేయటంలో నా కెంతో తృప్తి\\n\\n18 00:00:47,113 --> 00:00:51,455 అది ప్రపంచమంతటికి అందుబాటులో వున్నప్పుడు.\\n\\n19 00:00:51,455 --> 00:00:55,286 తోటివారికి సహాయ పడుతూ, మీరు సంతోషంగా వండటానికి వీలున్నప్పుడు. అంతే.\\n\\n20 00:00:55,286 --> 00:00:57,283 నేను సంతోషంగా వుండాలని, తోటివారికి సహాయపడతాను.\\n\\n21 00:00:57,283 --> 00:01:00,650 రకరకాల సంస్కృతుల నుండి రకరకాల వ్యక్తులతో \\n\\n22 00:01:00,650 --> 00:01:04,156 కలసి పనిచేయటం ఒక అద్భుతమైన అనుభవం.\\n\\n23 00:01:04,156 --> 00:01:06,501 నా మటుకు ఇది నిజంగా ఏమంటే,\\n\\n24 00:01:06,501 --> 00:01:08,754 చాలా మంచి వ్యక్తులు.\\n\\n25 00:01:08,754 --> 00:01:10,890 మీకు తెలుసు, చాలా మంచి వ్యక్తులు కలసి\\n\\n26 00:01:10,890 --> 00:01:14,466 అంతర్జాలంలో, జ్ఞానాన్ని టైపు చేస్తున్నారు,\\n\\n27 00:01:14,466 --> 00:01:16,231 ఒకరు మీద ఒకరు అరుపులు కేకలు పెట్టకుండా\\n\\n28 00:01:16,231 --> 00:01:18,437 లేక కేవలం పిచ్చాపాటీ సంభాషించట కాకుండా\\n\\n29 00:01:18,437 --> 00:01:20,875 లేక గుసగుస కబుర్లతో కాలక్షేపం చేయకుండా,\\n\\n30 00:01:20,875 --> 00:01:22,198 వారు ఒక దాన్ని నిర్మిస్తున్నారు\\n\\n31 00:01:22,198 --> 00:01:23,707 అది అందరికి ఎంతో ఉపయోగపడేది.\\n\\n32 00:01:23,707 --> 00:01:26,029 నిజంగా వాళ్లందరు చక్కని, మంచి వా\\u200c\\u200c\\u200cళ్లు.',\n", + " 'bytes': 4280,\n", + " 'sha1': 'inos7mgvxl2syi573e86wbumzev872o',\n", + " 'parent_id': 46864907,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 46817558,\n", + " 'timestamp': '2010-12-09T16:24:46Z',\n", + " 'user': {'text': '221.120.246.11'},\n", + " 'page': {'id': 12257281,\n", + " 'title': 'Great Feeling.ogv.LANG.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,905 --> 00:00:03,204 Err, no, I don't have superpowers. 2 00:00:03,204 --> 00:00:05,990 At all. No. 3 00:00:05,990 --> 00:00:08,034 You can totally do...'\",\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nErr, no, I don\\'t have superpowers.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nAt all. No.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nYou can totally do it.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nI pushed the button,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nand saved the text,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWooooo!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nIt was... exciting.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nYou just changed Wikipedia,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nyou just added your own contribution to Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nI read an article in the \"Guardian\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nabout this online encyclopedia\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nwhich everybody can contribute to\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nand I said, \"Wow!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Maybe I can contribute as well!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nI edited the first time\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nand I think I got addicted to it.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nI don\\'t get paid anything\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nI just do it for, you know,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nsomething to do in my free time, that\\'s it.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nYou may start doing it for an idea,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nbecause you believe in it,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nbut you end up with friends,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nyou end up with lovers,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nyou end up with wonderful discussions,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nyou end up with new ideas,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nyou end up with new books you\\'re gonna write...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nYou\\'re not writing the article alone.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nYou write a piece,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nand somebody else goes like:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hey, I have more!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nand together you can create\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\narticles that are pages long,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nwhich you can\\'t by yourself.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nThen you have success.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nYou always see, \"Ok, what I\\'ve done was successful.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nand this is wonderful.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nThis is great,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nbecause, editing is a great feeling.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nEvery time you do it.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nI have to say,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nwhen I read about Wikipedia,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nI decided\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"This is maybe where I would fit in\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nAnd I did.',\n", + " 'bytes': 2711,\n", + " 'sha1': 'hv8gw2w2b0swnc0q0g4rue2ih3nq39g',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 46910977,\n", + " 'timestamp': '2010-12-12T04:17:44Z',\n", + " 'user': {'id': 304876, 'text': 'Jane Doe'},\n", + " 'page': {'id': 12276853,\n", + " 'title': 'De.la.rua.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:00 --> 00:00:00,625\\n\\n\\n2 00:00:00,656 --> 00:00:04,919 A partir de este momento transmiten LRA1 Radio Nacional,\\n\\n3 00:00:04,919 --> 00:00:11,839 junto a la cadena Celeste y Blanca de emisoras argentinas, y LS82 TV Canal 7.\\n\\n4 00:00:11,839 --> 00:00:17,417 Habla al país el Presidente de los Argentinos, Dr. Fernando de la Rúa.\\n\\n5 00:00:18,156 --> 00:00:22,079 Compatriotas: Culmina un día dificil.\\n\\n6 00:00:22,079 --> 00:00:26,959 Han ocurrido en el país hechos de violencia que ponen en peligro personas y bienes,\\n\\n7 00:00:26,959 --> 00:00:29,959\\n\\n\\n8 00:00:29,959 --> 00:00:36,003 Quiero informarles que ante eso, he decretado el estado de sitio en todo el territorio nacional,\\n\\n9 00:00:36,003 --> 00:00:39,359\\n\\n\\n10 00:00:39,359 --> 00:00:45,759 Nuestro pais vive horas dificiles, que muestran la culminación de un largo proceso de deterioro.\\n\\n11 00:00:45,759 --> 00:00:51,439 En un contexto económico y social, donde muchos argentinos sufren serios problemas,\\n\\n12 00:00:51,439 --> 00:00:59,799 grupos enemigos del orden y de la República aprovechan para intentar sembrar discordia y violencia,\\n\\n13 00:00:59,799 --> 00:01:02,519 buscando crear un caos que les permita maniobrar\\n\\n14 00:01:02,519 --> 00:01:07,479 para lograr fines que no pueden alcanzar por la vía electoral.\\n\\n15 00:01:07,479 --> 00:01:11,639 Comprendo las penurias que atraviesan muchos de mis compatriotas,\\n\\n16 00:01:11,639 --> 00:01:17,159 las comprendo y las sufro, pero la mayoría sabe que con violencia e ilegalidad\\n\\n17 00:01:17,159 --> 00:01:24,119 no se sale de los problemas. Los problemas hay que afrontarlos, y eso estamos haciendo.\\n\\n18 00:01:24,119 --> 00:01:29,279 He dispuesto multiplicar la distribución de alimentos entre los más necesitados.\\n\\n19 00:01:29,279 --> 00:01:32,479 Tengo clara conciencia del padecimiento de muchos compatriotas,\\n\\n20 00:01:32,479 --> 00:01:38,359 y es mi compromiso trabajar para resolver la emergencia social,\\n\\n21 00:01:38,359 --> 00:01:44,319 pero se distinguir entre los necesitados y los violentos o los delincuentes,\\n\\n22 00:01:44,319 --> 00:01:49,639 que aprovechando esta situación utilizan el desorden para crear el caos.\\n\\n23 00:01:49,639 --> 00:01:52,279 Así como enfrenté los problemas económicos,\\n\\n24 00:01:52,279 --> 00:01:57,719 así como dispuse medidas de emergencia para asistir a los más necesitados,\\n\\n25 00:01:57,719 --> 00:02:03,999 decidi poner límite a los violentos que se aprovechan de las penurias ajenas.\\n\\n26 00:02:03,999 --> 00:02:09,839 Por eso, según las atribuciones que la Constitución Nacional me confiere como Presidente de la Nación,\\n\\n27 00:02:09,839 --> 00:02:13,399 he declarado el estado de sitio en todo el territorio nacional,\\n\\n28 00:02:13,399 --> 00:02:19,953 para asegurar la ley y el orden en el pais, y terminar con los incidentes de las últimas horas.\\n\\n29 00:02:20,003 --> 00:02:24,753 Conmino a los que estan ejerciendo violencia a cesar en sus actos.\\n\\n30 00:02:24,814 --> 00:02:29,039 Como lo dije muchas veces, la situación requiere además\\n\\n31 00:02:29,039 --> 00:02:33,479 de un amplio y responsable consenso para lograr las soluciones.\\n\\n32 00:02:33,479 --> 00:02:36,839 Por eso convoco una vez más a los partidos políticos,\\n\\n33 00:02:36,839 --> 00:02:38,239 a los gobernadores provinciales\\n\\n34 00:02:38,239 --> 00:02:41,559 y a los bloques legislativos del Congreso Nacional\\n\\n35 00:02:41,559 --> 00:02:45,559 para acordar las decisiones que exige la hora.\\n\\n36 00:02:45,559 --> 00:02:49,759 Las causas de esta situación vienen de lejos.\\n\\n37 00:02:49,759 --> 00:02:58,119 Todos los que hemos gobernado o ejercido posiciones de poder durante décadas nos debemos la autocrítica.\\n\\n38 00:02:58,119 --> 00:03:04,239 Solo saldremos adelante si cada uno asumimos nuestra responsabilidad histórica,\\n\\n39 00:03:04,239 --> 00:03:08,885 dejamos de echarnos mutuamente culpas y decidimos de una vez por todas\\n\\n40 00:03:08,885 --> 00:03:11,953 trabajar juntos para resolver los problemas.\\n\\n41 00:03:12,199 --> 00:03:17,599 Convoco pues, una vez más, a la responsabilidad de la dirigencia nacional,\\n\\n42 00:03:17,599 --> 00:03:24,879 y pido a mis compatriotas mantener la calma y colaborar para el restablecimiento del orden.\\n\\n43 00:03:24,879 --> 00:03:30,359 Pido a las organizaciones sociales, y especialmente a los medios de información,\\n\\n44 00:03:30,359 --> 00:03:33,799 contribuir en recrear el clima de paz necesario\\n\\n45 00:03:33,799 --> 00:03:38,319 para recuperar la seguridad y la tranquilidad en todo el país.\\n\\n46 00:03:38,319 --> 00:03:42,679 Confio que muy pronto, con la unidad nacional como bandera,\\n\\n47 00:03:42,679 --> 00:03:47,959 retomaremos el camino del crecimiento y superaremos los problemas\\n\\n48 00:03:47,959 --> 00:03:50,519 que trabaron nuestro progreso.\\n\\n49 0-1:0-1:0-1 --> 0-1:0-1:0-1 Buenas noches.',\n", + " 'bytes': 4804,\n", + " 'sha1': 'l27ksteu16bs5le176q97q7ivsiblxk',\n", + " 'parent_id': 46910864,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 357628326,\n", + " 'timestamp': '2019-07-09T18:40:41Z',\n", + " 'user': {'id': 6670412, 'text': 'Coffeeandcrumbs'},\n", + " 'page': {'id': 12311049,\n", + " 'title': 'Lopez.Murphy.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'rough translation',\n", + " 'text': '1\\n00:00:00,091 --> 00:00:03,039\\nThe third pillar of this economic program\\n\\n2\\n00:00:05,039 --> 00:00:08,701\\ncontains measures of immediate application\\n\\n3\\n00:00:08,716 --> 00:00:11,291\\nto recover fiscal solvency.\\n\\n4\\n00:00:11,353 --> 00:00:14,599\\nUnlike previous experiences\\n\\n5\\n00:00:14,599 --> 00:00:19,756\\nit eliminates old and entrenched privileges that society claims to correct\\n\\n6\\n00:00:20,079 --> 00:00:23,239\\nThese measures will involve a reduction effort\\n\\n7\\n00:00:23,027 --> 00:00:27,159\\nof total expenditures and tax exemptions\\n\\n8\\n00:00:27,159 --> 00:00:29,321\\nof 2,000 million pesos in the current year,\\n\\n9\\n00:00:29,336 --> 00:00:34,667\\nwhich must be shared between the Nation and the Provinces.\\n\\n10\\n00:00:34,728 --> 00:00:41,039\\nThe National State will face a reduction of public expenditure of 890 million pesos.\\n\\n11\\n00:00:41,039 --> 00:00:45,679\\nThe bulk of this reduction corresponds to the elimination of expenses\\n\\n12\\n00:00:45,679 --> 00:00:51,479\\nthat society has found irritating to represent the persistence of intolerable privileges.\\n\\n13\\n00:00:51,479 --> 00:00:58,559\\nThis includes expenses in ANSES such as the elimination of unjustifiable extendable pensions\\n\\n14\\n00:00:58,559 --> 00:01:02,159\\nand the elimination of abuse in family allowances.\\n\\n15\\n00:01:02,159 --> 00:01:05,987\\nScholarships granted by legislators will also be eliminated\\n\\n16\\n00:01:06,002 --> 00:01:13,719\\nand the expenses involved in politics in Argentina will be reduced, with the cooperation of the National Congress.\\n\\n17\\n00:01:13,719 --> 00:01:18,879\\nDistortive tax exemptions that do not go where they should will be removed.\\n\\n18\\n00:01:18,879 --> 00:01:23,639\\nThe Special Tobacco Fund, which has traditionally been concentrated\\n\\n19\\n00:01:23,639 --> 00:01:26,759\\nin subsidizing the large producers, will be reassigned\\n\\n20\\n00:01:26,759 --> 00:01:29,999\\nto finance the education budget of the Nation.\\n\\n21\\n00:01:30,239 --> 00:01:34,399\\nThe subsidy to the Patagonian naphtas will be eliminated,\\n\\n22\\n00:01:34,399 --> 00:01:37,199\\nthat in the past has been a source of high evasion,\\n\\n23\\n00:01:37,199 --> 00:01:40,679\\nand the resources obtained from it will also be oriented\\n\\n24\\n00:01:40,679 --> 00:01:43,079\\ntowards the Ministry of Education.\\n\\n25\\n00:01:43,079 --> 00:01:46,959\\nThe elimination of these privileges has been an objective\\n\\n26\\n00:01:46,959 --> 00:01:49,479\\nrecurrent of several administrations.\\n\\n27\\n00:01:49,479 --> 00:01:53,839\\nThey have been attempts that have consistently led to failure\\n\\n28\\n00:01:53,839 --> 00:01:58,679\\nWhy do I insist then on a solution that has been so difficult?\\n\\n29\\n00:01:58,679 --> 00:02:03,039\\nPrecisely because of the recurrence of failed attempts\\n\\n30\\n00:02:03,039 --> 00:02:06,599\\nand by the consequence of the recurrence\\n\\n31\\n00:02:06,599 --> 00:02:09,319\\nof the fiscal imbalances we face\\n\\n32\\n00:02:09,319 --> 00:02:11,639\\nwe have learned a hard lesson.\\n\\n33\\n00:02:11,639 --> 00:02:15,239\\nThat the cause of our own failures is not to face\\n\\n34\\n00:02:15,239 --> 00:02:18,559\\nfirmly these measures all the more necessary\\n\\n35\\n00:02:18,559 --> 00:02:22,199\\nwhen they involve the elimination of privileges.\\n\\n36\\n00:02:22,199 --> 00:02:25,119\\nAs for the universities, they have received\\n\\n37\\n00:02:25,119 --> 00:02:28,159\\na significant increase in resources during the last decade\\n\\n38\\n00:02:28,159 --> 00:02:35,079\\ngoing from 919 million in 1992 to 1744 million in the year 2000.\\n\\n39\\n00:02:35,079 --> 00:02:37,919\\nThis year to accompany the fiscal effort\\n\\n40\\n00:02:37,919 --> 00:02:41,599\\ntransfers to universities from the Treasury\\n\\n41\\n00:02:41,599 --> 00:02:45,479\\nthey can not exceed 1440 million pesos,\\n\\n42\\n00:02:45,479 --> 00:02:51,559\\nwhich implies a reduction of 360 million with respect to the budgeted amount.\\n\\n43\\n00:02:51,559 --> 00:02:55,999\\nThe Ministry of Education will decide the budgetary readjustment\\n\\n44\\n00:02:55,999 --> 00:03:01,039\\nwhich implies this reduction of items and the increase of funds\\n\\n45\\n00:03:01,039 --> 00:03:05,719\\nreceived by the Special Tobacco Fund and whichever comes\\n\\n46\\n00:03:05,719 --> 00:03:09,319\\nof the elimination of the subsidy to Patagonian naphthas.\\n\\n47\\n00:03:09,319 --> 00:03:13,079\\nWith the new budget you can improve the allocation of spending\\n\\n48\\n00:03:13,079 --> 00:03:17,239\\nas well as look for financing alternatives, just as they do\\n\\n49\\n00:03:17,239 --> 00:03:20,279\\nmany public universities in the world\\n\\n50\\n00:03:20,279 --> 00:03:24,799\\nthat allow at the same time an improvement of distributive equity.\\n\\n51\\n00:03:24,799 --> 00:03:27,759\\nWe all know that the lower income sectors\\n\\n52\\n00:03:27,759 --> 00:03:31,959\\nThey have great difficulties in accessing higher education.\\n\\n53\\n00:03:31,959 --> 00:03:35,679\\nThis is the opportunity for those responsible for the management\\n\\n54\\n00:03:35,679 --> 00:03:38,959\\nof universities can propose imaginatively\\n\\n55\\n00:03:38,959 -->',\n", + " 'bytes': 4842,\n", + " 'sha1': 'ccympb3sj8st3dh9s2kc3hds9y3kr2x',\n", + " 'parent_id': 47009179,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47026155,\n", + " 'timestamp': '2010-12-14T15:33:54Z',\n", + " 'user': {'id': 123663, 'text': 'MotherForker'},\n", + " 'page': {'id': 12315024,\n", + " 'title': 'Martinez.de.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'es using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': '0.5\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n0.75\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n1\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n2\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ntodas las emisoras integrantes de la cadena nacional de radio y televisión. A continuación se escuchará\\n\\n3\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nla palabra de su excelencia el Sr. Ministro de Economía de la Nación en un mensaje al país al finalizar\\n\\n4\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsu gestión de cinco años al frente de la cartera a su cargo. Esta es la palabra del Sr. José Alfredo\\n\\n5\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nMartínez de Hoz. En esta ocasión, que será la última en que tenga oportunidad de dirigirme a mis conciudadanos\\n\\n6\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nen función de ministro de economía de la nación, no es mi propósito hacer un balance pormenorizado de\\n\\n7\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nnuestra gestión. Ella podrá encontrarse enuna síntesis apretada de la memoria que publicará el ministerio\\n\\n8\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ny cada una de las secretarías de estado y empresas de la órbita del ministerio. Deseo simplemente hacer\\n\\n9\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nalgunas reflexiones que tienen como propósito no sólamente esclarecer algunos aspectos de nuestra acción,\\n\\n10\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsino también hacer posible que se medite sobre ellos para que los argentinos pensemos qué clase de país y\\n\\n11\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n12\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ndecir, consideramos que ella hace a la esencia misma de la existencia del hombre y debe ser ejercida\\n\\n13\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ncon responsabilidad. De allí deriva el acento que hemos puesto en la libre iniciativa individual, en\\n\\n14\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nla importancia de la empresa privada en el esquema productivo del país, y en la eliminación del excesivo\\n\\n15\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nestatización o intervención del estado y regulación de la economía. Esta función subsidiaria del estado\\n\\n16\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque hemos proclamado no tiene por objeto eliminar al mismo como simple espectador de la acción económica\\n\\n17\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque sucede en la nación, sino dejarlo con la gran función orientadora, la del control superior, pero\\n\\n18\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nno como empresario interviniendo en la gestión diaria ni reglamentando ni ahogando a la iniciativa individual\\n\\n19\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsino utilizando esos grandes instrumentos que son las grandes políticas monetarias, fiscal, cambiaria\\n\\n20\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\narancelaria, crediticia, impositiva, este es el concepto del estado moderno a nuestro juicio y con este\\n\\n21\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nesquema, con el acento puesto en la importancia de la empresa privada dentro del cuadro de las reglamentaciones\\n\\n22\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ngenerales establecidas por el Estado, creemos que se haya la fórmula para el progreso de nuestro país.\\n\\n23\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nEn esta etapa que nos ha tocado llevar a cabo la transformación de conceptos que han venido primando\\n\\n24\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nen el país en los últimos 30 años casi sin interrupción, una de las labores principales a la que nos hemos\\n\\n25\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ndedicado ha sido lo que hemos llamado, el redimencionamiento del Estado y sus funciones bajo estos mismos\\n\\n26\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nconceptos. Esto ha comprendido cinco grandes cursos de acción. El primero es la reducción del déficit\\n\\n27\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ndel presupuesto nacional y su financiamiento no inflacionario. El segundo la reducción y la racionalización\\n\\n28\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ndel gasto público. El tercero, el programa de privatización de las empresas estatales, el cuarto, el\\n\\n29\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nreordenamiento y la reprogramación de la inversión pública. Y el quinto, la reforma del sistema impositivo,\\n\\n30\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsu actualización simplificación y el mejoramiento del aparato de recaudación. Todo ello ha implicado\\n\\n31\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nun trabajo largo, dificil y duro. Los resultados que se obtienen en esta acción, no pueden esperarse\\n\\n32\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque se vean realizados de la noche a la mañana y ni siquiera en cinco años, debe comprenderse que existe\\n\\n33\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nuna gran inercia en la estructura administrativa del Estado, inercia que también encontramos a todo cambio,\\n\\n34\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ninercia física inercia mental, en la cual hay que hacer un gran esfuerzo para llevar adelante cada una\\n\\n35\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nde estas transformaciones profundas que nos hemos propuesto. Se han labrado indudablemente grandes adelantos,\\n\\n36\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nnosotros creemos que son insuficientes pero también consideramos que hemos puesto las bases, que hemos\\n\\n37\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nrealizado las principales transformaciones y que luego con la consecución de este esfuerzo, con perseverancia,\\n\\n38\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ncon disciplina y con firmeza, el país en el curso de los años siguientes podrá confirmar esta acción\\n\\n39\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ny lograr la plena realización de los objetivos que nos hemos propuesto. Indudablemente en esta acción\\n\\n40\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ncomprendemos que muchas de las cosas realizadas no, sus efectos no son visibles a la opinión pública\\n\\n41\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nen un primer momento, incluso no se producen en seguida. Algunas de ellas tardan un cierto tiempo, a\\n\\n42\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nveces un año, dos, tres y aún más. Por ejemplo, el resultado de la modernización y el reciclamiento industrial\\n\\n43\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque se ha llevado a cabo bajo nuestra acción, recién se producirá dentro de los próximos digamos, dos\\n\\n44\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\naños en que los nuevos productos saldrán al consumo. Lo mismo con las grandes obras de infraestructura\\n\\n45\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque hemos comenzado que quedarán terminadas dentro de dos años. Todo el concepto de la restructuración\\n\\n46\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nde la economía, no se logra completar así ni siquiera en cinco años. Pero en este período si creemos\\n\\n47\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque hemos sentado las bases firmes para esta transformación, y que a lo largo de los próximos años, lo\\n\\n48\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque no se haya visto ya se irá comprobando en su realización y su fructificación a lo largo de este período\\n\\n49\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\npróximo. Pero para ello es necesario que el esfuerzo sea continuado, con perseverancia, con firmeza,\\n\\n50\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsin desmayo, sin ceder a las presiones sectoriales ni internas del propio estado ni externas del sector\\n\\n51\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\npúblico sino siempre teniendo en cuenta el interés general y el bien común. Indudablemente es muy dificil\\n\\n52\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nhacer un resumen de los resultados logrados a este respecto en cuanto a redimensionamiento del Estado,\\n\\n53\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\npero me limitaré a destacar algunos puntos salientes. Con respecto a el déficit por necesidad de financiamiento\\n\\n54\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ndel presupuesto, lo recibimos en el año 75 con un 14 y medio % en relación al producto bruto. Esta fue\\n\\n55\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nla situación que existía a comienzo de nuestra función. En el 77 y en el 78 ya se encontraba en el 3\\n\\n56\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ny medio % siempre en relación al producto bruto en el 78 fue del 4% y en hemos programado para el 81,\\n\\n57\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\npresupuestado, que no sobrepase el 3%. De manera que aquí hay una baja importante, de 10 puntos en relación\\n\\n58\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ncon el producto bruto, en cuanto a la necesidad de financiamiento del presupuesto nacional. También en\\n\\n59\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n60\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\na las modernas prácticas internacionales y hemos enfocado el concepto global del sector público que antes\\n\\n61\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nno se hacía, lo cual permite que se encare, no sólo la política fiscal del estado de la administración\\n\\n62\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ncentral y de sus propios organismos, sino también la política tarifaria y de precios de los servicios\\n\\n63\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\npúblicos, la inversión pública en general, de todo el sector público nacional, provincial y de municipalidades,\\n\\n64\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\njunto con el sector provincial y también el endeudamiento global del sector público. hemos reducido la\\n\\n65\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nparticipación del estado en la demanda final del 35% en que se encontraba en 1975 al 32% en 1980.\\n\\n66\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nHemos realizado un serio esfuerzo para la reducción del número de agentes públicos que estaba realmente\\n\\n67\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsobrecargado y a la par hemos mejorado sustancialmente su remuneración en términos reales, porque la\\n\\n68\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nmisma se encontraba también a niveles inferiores con respecto a los sectores económicos y sociales del pais\\n\\n69\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n70\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsolamente, en estos 5 años hemos reducido más de 100 mil personas., Hemos pasado de 505 mil agentes a\\n\\n71\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n397 mil. O sea una reducción del 21 y medio % . Al mismo tiempo hemos encarado la transformación de todas\\n\\n72\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nlas grandes empresas de servicio público pertenecientes al estado en nuestra área. La mayor parte de ellas\\n\\n73\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nhan sido transformadas en sociedades de capital, para ponerlas en condiciones de accionar con la agilidad\\n\\n74\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nde la empresa privada, pero también con la responsabilidad de la misma. Es decir, les hemos exigido\\n\\n75\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque lleven balances e inventarios que antes no tenían y se desconocía su verdadera situación económica\\n\\n76\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ny financiera. Les hemos exigido a la par que paguen impuestos ciñendolos o eliminando todas las exenciones\\n\\n77\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nimpositivas de que antes gozaban, para que puedan y deban aprender a operar con eficiencia al mismo tiempo\\n\\n78\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque con responsabilidad. Y las hemos apoyado en el otro sentido, en el de que el precio de sus servicios\\n\\n79\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ny sus productos no esté afectado por conceptos políticos sino que esté en el nivel dado por el mercado.\\n\\n80\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nEn este sentido, el resultado ha sido yo diría de alguna manera satisfactorio, porque si tomamos un promedio\\n\\n81\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nde las grandes empresas de servicios públicos estatales podremos comprobar comparando su produccion con\\n\\n82\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nel número de agentes, han mejorado en este promedio para estas grandes empresas de servicios públicos en\\n\\n83\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n84\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nnacional para poder, no sólamente llevar adelante sus inversiones, sino siplmemente pagar sus gastos\\n\\n85\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\noperativos, a partir de 1978 este número quedó reducido a sólamente 2 de ellas. ferrocarriles y encotel,\\n\\n86\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ny algunos para los cuales no se preveía solución posible como la flota fluvial del estado, se dispuso\\n\\n87\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsu privatización y la venta de todos sus elementos y materiales. El ejemplo más dificil , el de los\\n\\n88\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nferrocarrilles, en el que todavía se recibe un aporte sustancial del tesoro para poder sobrevivir , allí\\n\\n89\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ntambién hemos realizado una muy importante obra de racionalización y de reorganización. Hemos clausurado\\n\\n90\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\no levantado 10 mil kms de vías de las 42.500 que existían. O sea, hemos hecho una reducción de aproximadamente\\n\\n91\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nun 23% . Hemos también clausurado 1000 de las 2400 estaciones. Esto significa haberlas reducido en un\\n\\n92\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n42%. Hemos también reducido en la mitad los 30500 trenes kilómetro hora de pasajeros que funcionaban\\n\\n93\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nen el país. Y en cuanto al personal, de la empresa ferrocarriles del Estado ha disminuido de los 156.000\\n\\n94\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque se encontraban al comienzo de nuestra gestión a 96.000 en la actualidad. Esto implica nuevamente\\n\\n95\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nuna reducción de aproximadamente el 40%. Esta acción, en todos sus aspectos, en todas estas empresas\\n\\n96\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nha sido muy dura, ha sido muy difícil hacer comprender a estructura administrativas verdaderamente enquistadas,\\n\\n97\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nla importancia de la reducción del costo y de la operación con eficiencia. Creo que hemos logrado mucho,\\n\\n98\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\npero quizás estemos solamente a la mitad del camino necesario y esta acción debe ser perseguida con mucha\\n\\n99\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nfirmeza. Cualquier aflojamiento o cualquier falta de apoyo o de firmeza o cualquier retroceso en este\\n\\n100\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsentido puede hacer perder todo el esfuerzo que se ha ganado y los resultados que se han obtenido en\\n\\n101\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nestos pasados años. Con respecto al programa de privatizaciones de empresas del estado, hemos realizado\\n\\n102\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nuna obra que he describido, descripto ya, con anterioridad connúmeros y nombres y sería muy largo repetir\\n\\n103\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nahora, la doy por sabida y entendida. Desearía simplemente recalcar la importancia del concepto y la\\n\\n104\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nacción de la empresa periférica, que significa que en aquellos casos en los que la empresa de servicios púlicos\\n\\n105\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nno puede privatizarse por falta de interesados en tomarla, se realicen , esa empresa estatal realice l\\n\\n106\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\na mayor cantidad de servicios y obras a través de contratos con empresa privadas, esta acción ha sido\\n\\n107\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nllevada adelante en una gran proporción en todas las empresas del estado y esto es mucho más significativo\\n\\n108\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nen realidad en forma del gasto público y de la eficiencia que la propia privatización de empresas enteras.\\n\\n109\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nquisiera dejar un solo ejemplo, es el del sector petrolero, donde actualmente, el 40% de la actividad\\n\\n110\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque en él se realiza está efectuada por el sector privado, frente a la participación prácticamente nula\\n\\n111\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nde 1975. En cuanto a la inversión pública encontramos un nivel sobredimensionado de la misma que estaba\\n\\n112\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nteniendo realmente consecuencias inflacionarias serias, además de un gran atraso en toda la infraestructura\\n\\n113\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\neconómica, a este respecto hicimos una reprogramación en el tiempo de la misma y por primera vez en la\\n\\n114\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nhistoria argentina se sancionó un presupuesto decenal de inversión pública que abarca la década de 1980\\n\\n115\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nen el cual se han establecido por orden de prioridades, con criterios de rentabilidad, y teniendo en\\n\\n116\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ncuenta todos los factores por sectores y por obras para que esto se haga en forma ordenada y de acuerdo a\\n\\n117\\n0-1:0-1:0-1 --> 0-1:0-1:0-1',\n", + " 'bytes': 15639,\n", + " 'sha1': 'hbbzal250la06ghyx2aa6s7z4w0lp3i',\n", + " 'parent_id': 47024440,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47173009,\n", + " 'timestamp': '2010-12-18T19:40:15Z',\n", + " 'user': {'id': 123663, 'text': 'MotherForker'},\n", + " 'page': {'id': 12367633,\n", + " 'title': 'Martinez.de.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0.5 0-1:0-1:0-1 --> 0-1:0-1:0-1 Transmite LRA1 Radio Nacional Buenos Aires República Argentina\\n\\n\\n0.75 0-1:0-1:0-1 --> 0-1:0-1:0-1 y ATC LS 82 Canal 7 \\n\\n\\n1 0-1:0-1:0-1 --> 0-1:0-1:0-1 Juntamente con \\n\\n\\n2 0-1:0-1:0-1 --> 0-1:0-1:0-1 todas las emisoras integrantes de la cadena nacional de radio y televisión. A continuación se escuchará\\n\\n3 0-1:0-1:0-1 --> 0-1:0-1:0-1 la palabra de su excelencia el Sr. Ministro de EconomÃ\\xada de la Nación en un mensaje al paÃ\\xads al finalizar\\n\\n4 0-1:0-1:0-1 --> 0-1:0-1:0-1 su gestión de cinco años al frente de la cartera a su cargo. Esta es la palabra del Sr. José Alfredo\\n\\n5 0-1:0-1:0-1 --> 0-1:0-1:0-1 MartÃ\\xadnez de Hoz. En esta ocasión, que será la última en que tenga oportunidad de dirigirme a mis conciudadanos\\n\\n6 0-1:0-1:0-1 --> 0-1:0-1:0-1 en función de ministro de economÃ\\xada de la nación, no es mi propósito hacer un balance pormenorizado de\\n\\n7 0-1:0-1:0-1 --> 0-1:0-1:0-1 nuestra gestión. Ella podrá encontrarse enuna sÃ\\xadntesis apretada de la memoria que publicará el ministerio\\n\\n8 0-1:0-1:0-1 --> 0-1:0-1:0-1 y cada una de las secretarÃ\\xadas de estado y empresas de la órbita del ministerio. Deseo simplemente hacer\\n\\n9 0-1:0-1:0-1 --> 0-1:0-1:0-1 algunas reflexiones que tienen como propósito no sólamente esclarecer algunos aspectos de nuestra acción,\\n\\n10 0-1:0-1:0-1 --> 0-1:0-1:0-1 sino también hacer posible que se medite sobre ellos para que los argentinos pensemos qué clase de paÃ\\xads y\\n\\n11 0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n12 0-1:0-1:0-1 --> 0-1:0-1:0-1 decir, consideramos que ella hace a la esencia misma de la existencia del hombre y debe ser ejercida\\n\\n13 0-1:0-1:0-1 --> 0-1:0-1:0-1 con responsabilidad. De allÃ\\xad deriva el acento que hemos puesto en la libre iniciativa individual, en\\n\\n14 0-1:0-1:0-1 --> 0-1:0-1:0-1 la importancia de la empresa privada en el esquema productivo del paÃ\\xads, y en la eliminación del excesivo\\n\\n15 0-1:0-1:0-1 --> 0-1:0-1:0-1 estatización o intervención del estado y regulación de la economÃ\\xada. Esta función subsidiaria del estado\\n\\n16 0-1:0-1:0-1 --> 0-1:0-1:0-1 que hemos proclamado no tiene por objeto eliminar al mismo como simple espectador de la acción económica\\n\\n17 0-1:0-1:0-1 --> 0-1:0-1:0-1 que sucede en la nación, sino dejarlo con la gran función orientadora, la del control superior, pero\\n\\n18 0-1:0-1:0-1 --> 0-1:0-1:0-1 no como empresario interviniendo en la gestión diaria ni reglamentando ni ahogando a la iniciativa individual\\n\\n19 0-1:0-1:0-1 --> 0-1:0-1:0-1 sino utilizando esos grandes instrumentos que son las grandes polÃ\\xadticas monetarias, fiscal, cambiaria\\n\\n20 0-1:0-1:0-1 --> 0-1:0-1:0-1 arancelaria, crediticia, impositiva, este es el concepto del estado moderno a nuestro juicio y con este\\n\\n21 0-1:0-1:0-1 --> 0-1:0-1:0-1 esquema, con el acento puesto en la importancia de la empresa privada dentro del cuadro de las reglamentaciones\\n\\n22 0-1:0-1:0-1 --> 0-1:0-1:0-1 generales establecidas por el Estado, creemos que se haya la fórmula para el progreso de nuestro paÃ\\xads.\\n\\n23 0-1:0-1:0-1 --> 0-1:0-1:0-1 En esta etapa que nos ha tocado llevar a cabo la transformación de conceptos que han venido primando\\n\\n24 0-1:0-1:0-1 --> 0-1:0-1:0-1 en el paÃ\\xads en los últimos 30 años casi sin interrupción, una de las labores principales a la que nos hemos\\n\\n25 0-1:0-1:0-1 --> 0-1:0-1:0-1 dedicado ha sido lo que hemos llamado, el redimencionamiento del Estado y sus funciones bajo estos mismos\\n\\n26 0-1:0-1:0-1 --> 0-1:0-1:0-1 conceptos. Esto ha comprendido cinco grandes cursos de acción. El primero es la reducción del déficit\\n\\n27 0-1:0-1:0-1 --> 0-1:0-1:0-1 del presupuesto nacional y su financiamiento no inflacionario. El segundo la reducción y la racionalización\\n\\n28 0-1:0-1:0-1 --> 0-1:0-1:0-1 del gasto público. El tercero, el programa de privatización de las empresas estatales, el cuarto, el\\n\\n29 0-1:0-1:0-1 --> 0-1:0-1:0-1 reordenamiento y la reprogramación de la inversión pública. Y el quinto, la reforma del sistema impositivo,\\n\\n30 0-1:0-1:0-1 --> 0-1:0-1:0-1 su actualización simplificación y el mejoramiento del aparato de recaudación. Todo ello ha implicado\\n\\n31 0-1:0-1:0-1 --> 0-1:0-1:0-1 un trabajo largo, dificil y duro. Los resultados que se obtienen en esta acción, no pueden esperarse\\n\\n32 0-1:0-1:0-1 --> 0-1:0-1:0-1 que se vean realizados de la noche a la mañana y ni siquiera en cinco años, debe comprenderse que existe\\n\\n33 0-1:0-1:0-1 --> 0-1:0-1:0-1 una gran inercia en la estructura administrativa del Estado, inercia que también encontramos a todo cambio,\\n\\n34 0-1:0-1:0-1 --> 0-1:0-1:0-1 inercia fÃ\\xadsica inercia mental, en la cual hay que hacer un gran esfuerzo para llevar adelante cada una\\n\\n35 0-1:0-1:0-1 --> 0-1:0-1:0-1 de estas transformaciones profundas que nos hemos propuesto. Se han labrado indudablemente grandes adelantos,\\n\\n36 0-1:0-1:0-1 --> 0-1:0-1:0-1 nosotros creemos que son insuficientes pero también consideramos que hemos puesto las bases, que hemos\\n\\n37 0-1:0-1:0-1 --> 0-1:0-1:0-1 realizado las principales transformaciones y que luego con la consecución de este esfuerzo, con perseverancia,\\n\\n38 0-1:0-1:0-1 --> 0-1:0-1:0-1 con disciplina y con firmeza, el paÃ\\xads en el curso de los años siguientes podrá confirmar esta acción\\n\\n39 0-1:0-1:0-1 --> 0-1:0-1:0-1 y lograr la plena realización de los objetivos que nos hemos propuesto. Indudablemente en esta acción\\n\\n40 0-1:0-1:0-1 --> 0-1:0-1:0-1 comprendemos que muchas de las cosas realizadas no, sus efectos no son visibles a la opinión pública\\n\\n41 0-1:0-1:0-1 --> 0-1:0-1:0-1 en un primer momento, incluso no se producen en seguida. Algunas de ellas tardan un cierto tiempo, a\\n\\n42 0-1:0-1:0-1 --> 0-1:0-1:0-1 veces un año, dos, tres y aún más. Por ejemplo, el resultado de la modernización y el reciclamiento industrial\\n\\n43 0-1:0-1:0-1 --> 0-1:0-1:0-1 que se ha llevado a cabo bajo nuestra acción, recién se producirá dentro de los próximos digamos, dos\\n\\n44 0-1:0-1:0-1 --> 0-1:0-1:0-1 años en que los nuevos productos saldrán al consumo. Lo mismo con las grandes obras de infraestructura\\n\\n45 0-1:0-1:0-1 --> 0-1:0-1:0-1 que hemos comenzado que quedarán terminadas dentro de dos años. Todo el concepto de la restructuración\\n\\n46 0-1:0-1:0-1 --> 0-1:0-1:0-1 de la economÃ\\xada, no se logra completar asÃ\\xad ni siquiera en cinco años. Pero en este perÃ\\xadodo si creemos\\n\\n47 0-1:0-1:0-1 --> 0-1:0-1:0-1 que hemos sentado las bases firmes para esta transformación, y que a lo largo de los próximos años, lo\\n\\n48 0-1:0-1:0-1 --> 0-1:0-1:0-1 que no se haya visto ya se irá comprobando en su realización y su fructificación a lo largo de este perÃ\\xadodo\\n\\n49 0-1:0-1:0-1 --> 0-1:0-1:0-1 próximo. Pero para ello es necesario que el esfuerzo sea continuado, con perseverancia, con firmeza,\\n\\n50 0-1:0-1:0-1 --> 0-1:0-1:0-1 sin desmayo, sin ceder a las presiones sectoriales ni internas del propio estado ni externas del sector\\n\\n51 0-1:0-1:0-1 --> 0-1:0-1:0-1 público sino siempre teniendo en cuenta el interés general y el bien común. Indudablemente es muy dificil\\n\\n52 0-1:0-1:0-1 --> 0-1:0-1:0-1 hacer un resumen de los resultados logrados a este respecto en cuanto a redimensionamiento del Estado,\\n\\n53 0-1:0-1:0-1 --> 0-1:0-1:0-1 pero me limitaré a destacar algunos puntos salientes. Con respecto a el déficit por necesidad de financiamiento\\n\\n54 0-1:0-1:0-1 --> 0-1:0-1:0-1 del presupuesto, lo recibimos en el año 75 con un 14 y medio % en relación al producto bruto. Esta fue\\n\\n55 0-1:0-1:0-1 --> 0-1:0-1:0-1 la situación que existÃ\\xada a comienzo de nuestra función. En el 77 y en el 78 ya se encontraba en el 3\\n\\n56 0-1:0-1:0-1 --> 0-1:0-1:0-1 y medio % siempre en relación al producto bruto en el 78 fue del 4% y en hemos programado para el 81,\\n\\n57 0-1:0-1:0-1 --> 0-1:0-1:0-1 presupuestado, que no sobrepase el 3%. De manera que aquÃ\\xad hay una baja importante, de 10 puntos en relación\\n\\n58 0-1:0-1:0-1 --> 0-1:0-1:0-1 con el producto bruto, en cuanto a la necesidad de financiamiento del presupuesto nacional. También en\\n\\n59 0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n60 0-1:0-1:0-1 --> 0-1:0-1:0-1 a las modernas prácticas internacionales y hemos enfocado el concepto global del sector público que antes\\n\\n61 0-1:0-1:0-1 --> 0-1:0-1:0-1 no se hacÃ\\xada, lo cual permite que se encare, no sólo la polÃ\\xadtica fiscal del estado de la administración\\n\\n62 0-1:0-1:0-1 --> 0-1:0-1:0-1 central y de sus propios organismos, sino también la polÃ\\xadtica tarifaria y de precios de los servicios\\n\\n63 0-1:0-1:0-1 --> 0-1:0-1:0-1 públicos, la inversión pública en general, de todo el sector público nacional, provincial y de municipalidades,\\n\\n64 0-1:0-1:0-1 --> 0-1:0-1:0-1 junto con el sector provincial y también el endeudamiento global del sector público. hemos reducido la\\n\\n65 0-1:0-1:0-1 --> 0-1:0-1:0-1 participación del estado en la demanda final del 35% en que se encontraba en 1975 al 32% en 1980.\\n\\n66 0-1:0-1:0-1 --> 0-1:0-1:0-1 Hemos realizado un serio esfuerzo para la reducción del número de agentes públicos que estaba realmente\\n\\n67 0-1:0-1:0-1 --> 0-1:0-1:0-1 sobrecargado y a la par hemos mejorado sustancialmente su remuneración en términos reales, porque la\\n\\n68 0-1:0-1:0-1 --> 0-1:0-1:0-1 misma se encontraba también a niveles inferiores con respecto a los sectores económicos y sociales del pais\\n\\n69 0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n70 0-1:0-1:0-1 --> 0-1:0-1:0-1 solamente, en estos 5 años hemos reducido más de 100 mil personas., Hemos pasado de 505 mil agentes a\\n\\n71 0-1:0-1:0-1 --> 0-1:0-1:0-1 397 mil. O sea una reducción del 21 y medio % . Al mismo tiempo hemos encarado la transformación de todas\\n\\n72 0-1:0-1:0-1 --> 0-1:0-1:0-1 las grandes empresas de servicio público pertenecientes al estado en nuestra área. La mayor parte de ellas\\n\\n73 0-1:0-1:0-1 --> 0-1:0-1:0-1 han sido transformadas en sociedades de capital, para ponerlas en condiciones de accionar con la agilidad\\n\\n74 0-1:0-1:0-1 --> 0-1:0-1:0-1 de la empresa privada, pero también con la responsabilidad de la misma. Es decir, les hemos exigido\\n\\n75 0-1:0-1:0-1 --> 0-1:0-1:0-1 que lleven balances e inventarios que antes no tenÃ\\xadan y se desconocÃ\\xada su verdadera situación económica\\n\\n76 0-1:0-1:0-1 --> 0-1:0-1:0-1 y financiera. Les hemos exigido a la par que paguen impuestos ciñendolos o eliminando todas las exenciones\\n\\n77 0-1:0-1:0-1 --> 0-1:0-1:0-1 impositivas de que antes gozaban, para que puedan y deban aprender a operar con eficiencia al mismo tiempo\\n\\n78 0-1:0-1:0-1 --> 0-1:0-1:0-1 que con responsabilidad. Y las hemos apoyado en el otro sentido, en el de que el precio de sus servicios\\n\\n79 0-1:0-1:0-1 --> 0-1:0-1:0-1 y sus productos no esté afectado por conceptos polÃ\\xadticos sino que esté en el nivel dado por el mercado.\\n\\n80 0-1:0-1:0-1 --> 0-1:0-1:0-1 En este sentido, el resultado ha sido yo dirÃ\\xada de alguna manera satisfactorio, porque si tomamos un promedio\\n\\n81 0-1:0-1:0-1 --> 0-1:0-1:0-1 de las grandes empresas de servicios públicos estatales podremos comprobar comparando su produccion con\\n\\n82 0-1:0-1:0-1 --> 0-1:0-1:0-1 el número de agentes, han mejorado en este promedio para estas grandes empresas de servicios públicos en\\n\\n83 0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n84 0-1:0-1:0-1 --> 0-1:0-1:0-1 nacional para poder, no sólamente llevar adelante sus inversiones, sino siplmemente pagar sus gastos\\n\\n85 0-1:0-1:0-1 --> 0-1:0-1:0-1 operativos, a partir de 1978 este número quedó reducido a sólamente 2 de ellas. ferrocarriles y encotel,\\n\\n86 0-1:0-1:0-1 --> 0-1:0-1:0-1 y algunos para los cuales no se preveÃ\\xada solución posible como la flota fluvial del estado, se dispuso\\n\\n87 0-1:0-1:0-1 --> 0-1:0-1:0-1 su privatización y la venta de todos sus elementos y materiales. El ejemplo más dificil , el de los\\n\\n88 0-1:0-1:0-1 --> 0-1:0-1:0-1 ferrocarrilles, en el que todavÃ\\xada se recibe un aporte sustancial del tesoro para poder sobrevivir , allÃ\\xad\\n\\n89 0-1:0-1:0-1 --> 0-1:0-1:0-1 también hemos realizado una muy importante obra de racionalización y de reorganización. Hemos clausurado\\n\\n90 0-1:0-1:0-1 --> 0-1:0-1:0-1 o levantado 10 mil kms de vÃ\\xadas de las 42.500 que existÃ\\xadan. O sea, hemos hecho una reducción de aproximadamente\\n\\n91 0-1:0-1:0-1 --> 0-1:0-1:0-1 un 23% . Hemos también clausurado 1000 de las 2400 estaciones. Esto significa haberlas reducido en un\\n\\n92 0-1:0-1:0-1 --> 0-1:0-1:0-1 42%. Hemos también reducido en la mitad los 30500 trenes kilómetro hora de pasajeros que funcionaban\\n\\n93 0-1:0-1:0-1 --> 0-1:0-1:0-1 en el paÃ\\xads. Y en cuanto al personal, de la empresa ferrocarriles del Estado ha disminuido de los 156.000\\n\\n94 0-1:0-1:0-1 --> 0-1:0-1:0-1 que se encontraban al comienzo de nuestra gestión a 96.000 en la actualidad. Esto implica nuevamente\\n\\n95 0-1:0-1:0-1 --> 0-1:0-1:0-1 una reducción de aproximadamente el 40%. Esta acción, en todos sus aspectos, en todas estas empresas\\n\\n96 0-1:0-1:0-1 --> 0-1:0-1:0-1 ha sido muy dura, ha sido muy difÃ\\xadcil hacer comprender a estructura administrativas verdaderamente enquistadas,\\n\\n97 0-1:0-1:0-1 --> 0-1:0-1:0-1 la importancia de la reducción del costo y de la operación con eficiencia. Creo que hemos logrado mucho,\\n\\n98 0-1:0-1:0-1 --> 0-1:0-1:0-1 pero quizás estemos solamente a la mitad del camino necesario y esta acción debe ser perseguida con mucha\\n\\n99 0-1:0-1:0-1 --> 0-1:0-1:0-1 firmeza. Cualquier aflojamiento o cualquier falta de apoyo o de firmeza o cualquier retroceso en este\\n\\n100 0-1:0-1:0-1 --> 0-1:0-1:0-1 sentido puede hacer perder todo el esfuerzo que se ha ganado y los resultados que se han obtenido en\\n\\n101 0-1:0-1:0-1 --> 0-1:0-1:0-1 estos pasados años. Con respecto al programa de privatizaciones de empresas del estado, hemos realizado\\n\\n102 0-1:0-1:0-1 --> 0-1:0-1:0-1 una obra que he describido, descripto ya, con anterioridad connúmeros y nombres y serÃ\\xada muy largo repetir\\n\\n103 0-1:0-1:0-1 --> 0-1:0-1:0-1 ahora, la doy por sabida y entendida. DesearÃ\\xada simplemente recalcar la importancia del concepto y la\\n\\n104 0-1:0-1:0-1 --> 0-1:0-1:0-1 acción de la empresa periférica, que significa que en aquellos casos en los que la empresa de servicios púlicos\\n\\n105 0-1:0-1:0-1 --> 0-1:0-1:0-1 no puede privatizarse por falta de interesados en tomarla, se realicen , esa empresa estatal realice l\\n\\n106 0-1:0-1:0-1 --> 0-1:0-1:0-1 a mayor cantidad de servicios y obras a través de contratos con empresa privadas, esta acción ha sido\\n\\n107 0-1:0-1:0-1 --> 0-1:0-1:0-1 llevada adelante en una gran proporción en todas las empresas del estado y esto es mucho más significativo\\n\\n108 0-1:0-1:0-1 --> 0-1:0-1:0-1 en realidad en forma del gasto público y de la eficiencia que la propia privatización de empresas enteras.\\n\\n109 0-1:0-1:0-1 --> 0-1:0-1:0-1 quisiera dejar un solo ejemplo, es el del sector petrolero, donde actualmente, el 40% de la actividad\\n\\n110 0-1:0-1:0-1 --> 0-1:0-1:0-1 que en él se realiza está efectuada por el sector privado, frente a la participación prácticamente nula\\n\\n111 0-1:0-1:0-1 --> 0-1:0-1:0-1 de 1975. En cuanto a la inversión pública encontramos un nivel sobredimensionado de la misma que estaba\\n\\n112 0-1:0-1:0-1 --> 0-1:0-1:0-1 teniendo realmente consecuencias inflacionarias serias, además de un gran atraso en toda la infraestructura\\n\\n113 0-1:0-1:0-1 --> 0-1:0-1:0-1 económica, a este respecto hicimos una reprogramación en el tiempo de la misma y por primera vez en la\\n\\n114 0-1:0-1:0-1 --> 0-1:0-1:0-1 historia argentina se sancionó un presupuesto decenal de inversión pública que abarca la década de 1980\\n\\n115 0-1:0-1:0-1 --> 0-1:0-1:0-1 en el cual se han establecido por orden de prioridades, con criterios de rentabilidad, y teniendo en\\n\\n116 0-1:0-1:0-1 --> 0-1:0-1:0-1 cuenta todos los factores por sectores y por obras para que esto se haga en forma ordenada y de acuerdo a\\n\\n117 0-1:0-1:0-1 --> 0-1:0-1:0-1',\n", + " 'bytes': 16150,\n", + " 'sha1': 'jze3gn0dzuqbvrpb73qla5y1sk8dsyi',\n", + " 'parent_id': 47172864,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47208671,\n", + " 'timestamp': '2010-12-19T15:13:09Z',\n", + " 'user': {'id': 3717, 'text': 'VIGNERON'},\n", + " 'page': {'id': 12375714,\n", + " 'title': 'Frankenstein (1910) - Full Movie.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[File:Frankenstein (1910) - Full Movie.ogv.fr.srt]] to [[TimedText:Frankenstein (1910) - Full Movie.ogv.fr.srt]]',\n", + " 'text': '1\\n00:09:00 --> 00:10:00\\nUne adaptation libre de la célèbre histoire de Madame Shelley par les productions Edison\\n\\n2\\n00:15:00 --> 00:16:00\\nFrankenstein part pour l’université\\n\\n3\\n00:32:00 --> 00:33:00\\nDeux ans plus tard, Frankenstein découvre le secret de la vie',\n", + " 'bytes': 266,\n", + " 'sha1': 'eneo5xn1jmzxf25n9j62ikk7o8ifuh6',\n", + " 'parent_id': 47208666,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 203829137,\n", + " 'timestamp': '2016-08-13T11:03:41Z',\n", + " 'user': {'id': 20645, 'text': 'The RedBurn'},\n", + " 'page': {'id': 12376028,\n", + " 'title': 'Folgers.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Jean -> Jane',\n", + " 'text': '0\\n00:00:01,707 --> 00:00:04,154\\nHarold le café est-il bon ?\\n\\n1\\n00:00:04,169 --> 00:00:05,185\\nuh-uhmmm\\n\\n2\\n00:00:05,005 --> 00:00:07,785\\nTu veux dire qu’il est aussi mauvais qu’hier ?\\n\\n3\\n00:00:07,785 --> 00:00:08,962\\nuh-huh\\n\\n4\\n00:00:09 --> 00:00:10,169\\nAucune amélioration ?\\n\\n5\\n00:00:10,446 --> 00:00:11,823\\nuh-uh\\n\\n6\\n00:00:12,002 --> 00:00:17\\nHarold, ne te contente pas de secouer la tête, tu dois me dire ce qui ne va pas avec le café\\n\\n7\\n00:00:17,538 --> 00:00:19\\nMauvais goût\\n\\n8\\n00:00:19,477 --> 00:00:21,002\\nQue vais-je faire maintenant ?\\n\\n9\\n00:00:22,623 --> 00:00:23,005\\nMary, salut\\n\\n10\\n00:00:23,007 --> 00:00:25\\nBonjour Jane\\n\\n11\\n00:00:25,038 --> 00:00:29,246\\nAide moi s’il-te-plait, Harold déteste mon café. Quelle marque utilises-tu ?\\n\\n12\\n00:00:30 --> 00:00:31\\nInstant Folgers\\n\\n13\\n00:00:31 --> 00:00:32\\nInstant Folgers ?\\n\\n14\\n00:00:32,002 --> 00:00:34\\nBon comme du café frais\\n\\n15\\n00:00:34,002 --> 00:00:37,008\\nBon comme du café frais. Je vais l’essayer.\\n\\n16\\n00:00:38,725 --> 00:00:42,008\\nJane, ce café est délicieux, le sais-tu ?\\n\\n17\\n00:00:42,002 --> 00:00:42,084\\num-hmmm\\n\\n18\\n00:00:43,464 --> 00:00:46\\nCe n’est pas le même que celui que nous avions avant, n’est-ce pas ?\\n\\n19\\n00:00:46,002 --> 00:00:46,502\\num-uhmmm\\n\\n20\\n00:00:47,148 --> 00:00:51,433\\nNe te contente pas de secouer la tête, dis-moi pourquoi le café est si bon.\\n\\n21\\n00:00:52,664 --> 00:00:54,005\\nBon goût\\n\\n22\\n00:00:55,006 --> 00:00:59\\nBon comme du café frais, Instant Folgers',\n", + " 'bytes': 1468,\n", + " 'sha1': 'qjaq4nlwkz3mc0sorkcjt0yph71w5gf',\n", + " 'parent_id': 83475094,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 599853434,\n", + " 'timestamp': '2021-10-18T19:11:31Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 12382168,\n", + " 'title': 'Wikipedia video tutorial-1-Editing-en.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,938 --> 00:00:04,988\\nHello! My name\\'s Teresa.\\nNice to meet you here on Wikipedia!\\n\\n2\\n00:00:05,255 --> 00:00:08,004\\nAs you may know,\\nWikipedia is a free encyclopedia\\n\\n3\\n00:00:08,021 --> 00:00:10,754\\nwritten by its users: people like you!\\n\\n4\\n00:00:10,764 --> 00:00:15,014\\nToday, out of more\\nthan 250 million Wikipedia visitors,\\n\\n5\\n00:00:15,057 --> 00:00:17,974\\nover 10 million articles\\nhave been contributed\\n\\n6\\n00:00:17,982 --> 00:00:20,123\\nby more than 500 thousand editors\\n\\n7\\n00:00:20,135 --> 00:00:22,087\\nin over 250 languages.\\n\\n8\\n00:00:22,420 --> 00:00:24,353\\nIt\\'s really easy to share your knowledge\\n\\n9\\n00:00:24,353 --> 00:00:26,851\\nwith the many Wikipedia users\\naround the world.\\n\\n10\\n00:00:27,026 --> 00:00:29,581\\nRight now, you can help improve\\n\\n11\\n00:00:29,581 --> 00:00:33,104\\nthe world\\'s biggest and best\\nfree encyclopedia found on the net.\\n\\n12\\n00:00:33,187 --> 00:00:35,358\\nLet me show you just how easy it is.\\n\\n13\\n00:00:36,299 --> 00:00:38,947\\nWhen you search for something\\non the internet,\\n\\n14\\n00:00:38,947 --> 00:00:41,697\\none of the first hits\\nyou usually get is Wikipedia.\\n\\n15\\n00:00:42,172 --> 00:00:45,821\\nSo maybe you want to start\\nyour search directly in Wikipedia.\\n\\n16\\n00:00:46,354 --> 00:00:47,775\\nHave a look at this:\\n\\n17\\n00:00:47,999 --> 00:00:51,589\\nYou\\'ll find that most of the articles\\nare comprehensive and up-to-date.\\n\\n18\\n00:00:51,768 --> 00:00:54,887\\nHowever, you might come across\\nan article that is too short\\n\\n19\\n00:00:54,959 --> 00:00:56,403\\nor could use some improvement.\\n\\n20\\n00:00:56,450 --> 00:00:58,769\\nAnd who better to improve it than you?\\n\\n21\\n00:00:59,010 --> 00:01:03,517\\nWikipedia invites you to help build\\nan even better encyclopedia.\\n\\n22\\n00:01:04,515 --> 00:01:06,727\\nIn more than 90 percent of the cases,\\n\\n23\\n00:01:06,760 --> 00:01:09,509\\nyou don\\'t have to be\\na rocket scientist to contribute.\\n\\n24\\n00:01:09,566 --> 00:01:11,768\\nYou just have to want\\nto share what you know.\\n\\n25\\n00:01:11,813 --> 00:01:15,347\\nAnd to do that, you only have\\nto follow three small steps:\\n\\n26\\n00:01:15,448 --> 00:01:18,175\\nStep 1: Click on the edit button\\n\\n27\\n00:01:18,262 --> 00:01:20,823\\nStep 2: Write the text\\n\\n28\\n00:01:20,869 --> 00:01:25,861\\nand finally Step 3: Edit the summary\\nand click \\'Save page\\'.\\n\\n29\\n00:01:26,690 --> 00:01:28,317\\nWas that simple or what?\\n\\n30\\n00:01:28,348 --> 00:01:31,711\\nAnd you don\\'t even have to be logged in\\nor have an account to do that.\\n\\n31\\n00:01:31,837 --> 00:01:33,598\\nOne more time:\\n\\n32\\n00:01:33,683 --> 00:01:36,285\\nThe first step was the edit button.\\n\\n33\\n00:01:36,332 --> 00:01:38,555\\nHere it is at the top of the article.\\n\\n34\\n00:01:39,340 --> 00:01:42,786\\nClick the button\\nand you\\'ll come to this page.\\n\\n35\\n00:01:42,912 --> 00:01:45,038\\nThis is where you\\'ll make the changes.\\n\\n36\\n00:01:46,374 --> 00:01:49,432\\nTo make a change, place the cursor\\nat the point in the text\\n\\n37\\n00:01:49,492 --> 00:01:51,833\\nwhere you want to type in\\nor delete something.\\n\\n38\\n00:01:52,186 --> 00:01:56,016\\nAnd then simply make the change\\nas you would in any other document.\\n\\n39\\n00:01:56,713 --> 00:02:01,531\\n(Typing)\\n\\n40\\n00:02:02,648 --> 00:02:04,982\\nDon\\'t worry: if you do anything wrong,\\n\\n41\\n00:02:05,014 --> 00:02:07,794\\nit\\'s very easy to go back\\nto the previous version.\\n\\n42\\n00:02:08,253 --> 00:02:11,784\\nFinally, Step 3: Right below this area,\\n\\n43\\n00:02:11,845 --> 00:02:15,429\\nedit the summary by briefly describing\\nthe changes you\\'ve made\\n\\n44\\n00:02:15,540 --> 00:02:18,262\\n(Typing)\\n\\n45\\n00:02:18,536 --> 00:02:22,570\\nand then click the \\'Save page\\' button\\nto save all your changes.\\n\\n46\\n00:02:25,174 --> 00:02:29,612\\nWhen the article reappears, your changes\\nare instantly online and visible.\\n\\n47\\n00:02:31,987 --> 00:02:35,356\\nThese three steps are all\\nit takes to edit Wikipedia.\\n\\n48\\n00:02:36,045 --> 00:02:37,492\\nI know what you\\'re thinking:\\n\\n49\\n00:02:37,548 --> 00:02:41,300\\nyou\\'re thinking \"Wow!\\nNow I can rewrite history!\"\\n\\n50\\n00:02:41,496 --> 00:02:43,650\\nWell, my friend, you cannot.\\n\\n51\\n00:02:43,744 --> 00:02:45,993\\nBecause as you can see\\nin another tutorial,\\n\\n52\\n00:02:46,022 --> 00:02:48,538\\nWikipedia has several mechanisms in place\\n\\n53\\n00:02:48,615 --> 00:02:50,949\\nto guard against just\\nthat kind of behavior.\\n\\n54\\n00:02:51,529 --> 00:02:55,122\\nFalse information will be deleted\\nwithin minutes if not seconds.\\n\\n55\\n00:02:55,194 --> 00:02:57,515\\nAnd that\\'s what makes\\nWikipedia such a reliable\\n\\n56\\n00:02:57,545 --> 00:02:59,710\\nand comprehensive source of information.\\n\\n57\\n00:03:00,211 --> 00:03:05,523\\nSo remember, people like you who help\\ncreate this wonderful encyclopedia,\\n\\n58\\n00:03:05,566 --> 00:03:09,203\\nand as people like you that we need\\nto help make it even better.\\n\\n59\\n00:03:09,284 --> 00:03:11,297\\nSo now it\\'s your turn!\\n\\n60\\n00:03:11,739 --> 00:03:14,283\\nGoodbye, and good luck!',\n", + " 'bytes': 4754,\n", + " 'sha1': 'j22momuqa1ohfm3v1zfnwjqx2d3bcag',\n", + " 'parent_id': 341548510,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47356469,\n", + " 'timestamp': '2010-12-23T09:52:43Z',\n", + " 'user': {'text': '195.113.180.197'},\n", + " 'page': {'id': 12404551,\n", + " 'title': 'Edit Button.ogv.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Just few minor changes',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nExistuje tlačítko \"Editovat\".\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nJednoduše kliknete,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nnajdete text, změníte ho\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\na kliknete na \"uložit\". Je to opravdu jednoduché.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nFakt hustý je na wikipedii to,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nže můžete změnit cokoliv.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nNepotřebujete ničí svolení\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\na není to těžké.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nNa první pohled vás to může odradit,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nale opravdu to není těžké.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nLidé si to neuvědomují, je to jako kdyby byli slepí.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nČtou články a nevidí tlačítko \"Editovat\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nKlikněte na tlačítko a uvidíte, co se stane.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Editovat.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nKdyž se pro něco nadchnete,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\njdete a začnete editovat,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nmůžou se tak dít roztodivné věci\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\na to je opravdu nádherné.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nJe to jako startovací čára,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nněco jako výzva pro další život.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nKdyž začnete s novým článkem, budete nešťastní,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nbude se vám to zdát příšerné.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nAle počkejte... pár hodin\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\na uvidíte, jak se to rozvine v úžasnou věc.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nTlačítko \"Editovat\": použijte ho a něco změňte,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nuložte stránku: touhle změnou jste přispěli celému světu.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Ulož\".',\n", + " 'bytes': 1879,\n", + " 'sha1': 'gumydym7825403or3a5w5tpw6aljc7g',\n", + " 'parent_id': 47320638,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47529497,\n", + " 'timestamp': '2010-12-28T20:20:44Z',\n", + " 'user': {'id': 568922, 'text': 'Raylton P. Sousa'},\n", + " 'page': {'id': 12466240,\n", + " 'title': '480p-Publicidade-wikilivros.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:480p-Publicidade-wikilivros.ogv.en.srt]] to [[TimedText:480p-Publicidade-wikilivros.ogv.pt.srt]]',\n", + " 'text': '1\\n00:00:00,702 --> 00:00:03,925\\nDesde o início dos tempos\\n\\n2\\n00:00:06,817 --> 00:00:09,039\\nas pessoas\\n\\n3\\n00:00:11,701 --> 00:00:14,139\\nde todos os lugares\\n\\n4\\n00:00:16,724 --> 00:00:18,701\\nprocuram obter\\n\\n5\\n00:00:21,824 --> 00:00:24,337\\nrespostas\\n\\n6\\n00:00:26,698 --> 00:00:28,576\\ne conhecimento.\\n\\n7\\n00:00:32,712 --> 00:00:34,92\\nPouco a pouco\\n\\n8\\n00:00:38,457 --> 00:00:40,54\\nfoi criado e descoberto\\n\\n9\\n00:00:43,659 --> 00:00:46,228\\ntudo o que conhecemos hoje.\\n\\n10\\n00:00:49,693 --> 00:00:51,863\\nMas agora é possível\\n\\n11\\n00:00:52,072 --> 00:00:54,034\\ndar um passo à frente:\\n\\n12\\n00:00:57,834 --> 00:00:59,696\\npodemos juntar\\n\\n13\\n00:00:59,857 --> 00:01:02,566\\na pouca sebedoria individual \\n\\n14\\n00:01:03,082 --> 00:01:05,465\\ncom todo o conhecimento do mundo.\\n\\n15\\n00:01:08,744 --> 00:01:11,035\\na palavra chave ?\\n\\n16\\n00:01:12,073 --> 00:01:13,965\\ncompartilhar',\n", + " 'bytes': 853,\n", + " 'sha1': '030o2ke5bajxx7pspzbhs1pvpwxmij4',\n", + " 'parent_id': 47529404,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47546540,\n", + " 'timestamp': '2010-12-29T11:02:23Z',\n", + " 'user': {'id': 568922, 'text': 'Raylton P. Sousa'},\n", + " 'page': {'id': 12466268,\n", + " 'title': '480p-Publicidade-wikilivros.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,702 --> 00:00:03,925\\nSince the beginning of time\\n\\n2\\n00:00:06,817 --> 00:00:09,039\\npeople\\n\\n3\\n00:00:11,701 --> 00:00:14,139\\nof all places\\n\\n4\\n00:00:16,724 --> 00:00:18,701\\nseek\\n\\n5\\n00:00:21,824 --> 00:00:24,337\\nAnswers\\n\\n6\\n00:00:26,698 --> 00:00:28,576\\nand knowledge.\\n\\n7\\n00:00:32,712 --> 00:00:34,92\\nLittle by little\\n\\n8\\n00:00:38,457 --> 00:00:40,54\\nwas created and discovered\\n\\n9\\n00:00:43,659 --> 00:00:46,228\\neverything we know today.\\n\\n10\\n00:00:49,693 --> 00:00:51,863\\nBut it is now possible\\n\\n11\\n00:00:52,072 --> 00:00:54,034\\ntake a step forward:\\n\\n12\\n00:00:57,834 --> 00:00:59,696\\ncan join\\n\\n13\\n00:00:59,857 --> 00:01:02,566\\nwalking sebedoria individual\\n\\n14\\n00:01:03,082 --> 00:01:05,465\\nwith full knowledge of the world.\\n\\n15\\n00:01:08,744 --> 00:01:11,035\\nthe key word?\\n\\n16\\n00:01:12,073 --> 00:01:13,965\\nshare',\n", + " 'bytes': 814,\n", + " 'sha1': '94w57pnrh8vofdu5mttnrs2vf1m7o1b',\n", + " 'parent_id': 47546321,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47784829,\n", + " 'timestamp': '2011-01-03T22:06:04Z',\n", + " 'user': {'id': 57431, 'text': 'Neohitokiri~commonswiki'},\n", + " 'page': {'id': 12567771,\n", + " 'title': 'Sintel movie 720x306.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:01:47,250 --> 00:01:50,500 Esta hoja tiene un pasado oscuro. 2 00:01:51,799 --> 00:01:55,799 Ha derramado mucha sangre inocente. 3 00:01:58,000 --> 00:02:01...'\",\n", + " 'text': '1\\n00:01:47,250 --> 00:01:50,500\\nEsta hoja tiene un pasado oscuro.\\n\\n2\\n00:01:51,799 --> 00:01:55,799\\nHa derramado mucha sangre inocente.\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nEres una tonta por viajar sola, sin ninguna preparación.\\n\\n4\\n00:02:01,750 --> 00:02:04,799\\nTienes suerte de que aún corra sangre por tus venas.\\n\\n5\\n00:02:05,250 --> 00:02:06,299\\nGracias.\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nEntonces...\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\nQué te trae a la tierra de los guardianes?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\nEstoy buscando a alguien.\\n\\n9\\n00:02:18,000 --> 00:02:22,199\\nAlguien muy querido? Un alma gemela?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nUn dragón.\\n\\n11\\n00:02:28,849 --> 00:02:31,750\\nUna aventura peligrosa para una cazadora solitaria.\\n\\n12\\n00:02:32,949 --> 00:02:35,869\\nHe estado sola desde que tengo memoria.\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nYa casi terminamos. Shhh...\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nHey, quédate quieto.\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nBuenas noches, Scales.\\n\\n16\\n00:04:10,349 --> 00:04:13,849\\nAtrápalo, Scales! Vamos!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nScales?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nSi! Vamos!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nScales!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nHe fallado.\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\nSólo fallaste en ver...\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\nÉstas son tierras de dragones, Sintel.\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nEstás más cerca de lo que crees.\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nScales!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nScales?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nScales...',\n", + " 'bytes': 1551,\n", + " 'sha1': '4zqi33t5ehkjabxt3390ctvaj9g151p',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47784987,\n", + " 'timestamp': '2011-01-03T22:11:48Z',\n", + " 'user': {'id': 57431, 'text': 'Neohitokiri~commonswiki'},\n", + " 'page': {'id': 12567806,\n", + " 'title': 'Sintel movie 720x306.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:01:47,250 --> 00:01:50,500 この剣には暗い過去が 2 00:01:51,799 --> 00:01:55,799 多くの罪なき人の血で汚れている 3 00:01:58,000 --> 0...'\",\n", + " 'text': '1\\n00:01:47,250 --> 00:01:50,500\\nこの剣には暗い過去が\\n\\n2\\n00:01:51,799 --> 00:01:55,799\\n多くの罪なき人の血で汚れている\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nそんな頼りないのに 一人旅とは無茶なことを\\n\\n4\\n00:02:01,750 --> 00:02:04,799\\n生きているのが不思議な位じゃ\\n\\n5\\n00:02:05,250 --> 00:02:06,299\\nありがとう\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nで…\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\nなぜ「門番の地」に来たのかね?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\n探しているんです\\n\\n9\\n00:02:18,000 --> 00:02:22,199\\n大切な人? 親類かい?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nドラゴンを\\n\\n11\\n00:02:28,849 --> 00:02:31,750\\nハンター一人だと危険じゃな\\n\\n12\\n00:02:32,949 --> 00:02:35,869\\n私は物心ついた時からずっと一人でした\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nもう大丈夫だから…よしよし…\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nここに座って…\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nおやすみ、スケール\\n\\n16\\n00:04:10,349 --> 00:04:13,849\\nスケール! 待ちなさい!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nスケール?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nここよ!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nスケール!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nもうダメかも\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\n案ずるなシンテル\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\nここは「ドラゴンの地」じゃ\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nお前さんが思うよりずっと近い\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nスケール!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nスケール?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nスケール…',\n", + " 'bytes': 1640,\n", + " 'sha1': '5d7kuuwvukzimj7zjbe9x47fmdvj6ne',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47785085,\n", + " 'timestamp': '2011-01-03T22:15:52Z',\n", + " 'user': {'id': 57431, 'text': 'Neohitokiri~commonswiki'},\n", + " 'page': {'id': 12567829,\n", + " 'title': 'Sintel movie 720x306.ogv.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:01:47,250 --> 00:01:50,500 这把刀有一段黑暗的历史 2 00:01:51,799 --> 00:01:55,799 它沾满了太多无辜者的鲜血 3 00:01:58,000 --> 00:02:0...'\",\n", + " 'text': '1\\n00:01:47,250 --> 00:01:50,500\\n这把刀有一段黑暗的历史\\n\\n2\\n00:01:51,799 --> 00:01:55,799\\n它沾满了太多无辜者的鲜血\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\n你毫无准备就孤身前来,真是蠢到家了\\n\\n4\\n00:02:01,750 --> 00:02:04,799\\n你还活着已经算是很走运了\\n\\n5\\n00:02:05,250 --> 00:02:06,299\\n谢谢\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\n那么......\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\n是什么指引你来到了这片守护者之地?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\n为了找人\\n\\n9\\n00:02:18,000 --> 00:02:22,199\\n那人一定很重要吧?你的真情知己?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\n她是一条龙\\n\\n11\\n00:02:28,849 --> 00:02:31,750\\n孤身一人前往寻找可是很危险的\\n\\n12\\n00:02:32,949 --> 00:02:35,869\\n这种孤独伴随我多久早已记不清了\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\n就快弄好了,嘘......\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\n嗨,坐那别动\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\n晚安啦,小麟\\n\\n16\\n00:04:10,349 --> 00:04:13,849\\n追上它,小麟!加油哦!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\n小麟?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\n不错哦!加油!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\n小麟!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\n我失败了\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\n你只是败在盲目得去寻觅\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\n这里其实就是龙的国度了,辛泰奥\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\n你只是没有发觉离她有多近了\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\n小麟!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\n小麟?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\n小麟......',\n", + " 'bytes': 1580,\n", + " 'sha1': 'byzvg766t84gs02yviy6j7eyjpf00mf',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47785153,\n", + " 'timestamp': '2011-01-03T22:18:20Z',\n", + " 'user': {'id': 57431, 'text': 'Neohitokiri~commonswiki'},\n", + " 'page': {'id': 12567834,\n", + " 'title': 'Sintel movie 720x306.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:01:47,250 --> 00:01:50,500 Esta lâmina tem um passado escuro. 2 00:01:51,799 --> 00:01:55,799 Ela já derramou muito sangue inocente. 3 00:01:58,000 --> 00...'\",\n", + " 'text': '1\\n00:01:47,250 --> 00:01:50,500\\nEsta lâmina tem um passado escuro.\\n\\n2\\n00:01:51,799 --> 00:01:55,799\\nEla já derramou muito sangue inocente.\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nSomente uma tola viajaria assim, sozinha e despreparada.\\n\\n4\\n00:02:01,750 --> 00:02:04,799\\nVocê tem sorte de ainda ter sangue.\\n\\n5\\n00:02:05,250 --> 00:02:06,299\\nObrigada.\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nPois bem...\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\nO que a traz à terra dos guardiões do portal?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\nEu preciso encontrar alguém.\\n\\n9\\n00:02:18,000 --> 00:02:22,199\\nAlguém próximo? Uma alma gêmea?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nUm dragão.\\n\\n11\\n00:02:28,849 --> 00:02:31,750\\nUma tarefa perigosa para uma aventureira só.\\n\\n12\\n00:02:32,949 --> 00:02:35,869\\nEu sigo sozinha há mais tempo que eu me lembre.\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nEu já estou terminando. Shhh...\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nEi, não se meixa.\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nBoa noite, Scales.\\n\\n16\\n00:04:10,349 --> 00:04:13,849\\nVamos Scales! Pega ele!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nScales?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nÉ, boa!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nScales!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nEu falhei.\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\nA sua única falha foi enxergar e não ver...\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\nEstas são terras dos dragões, Sintel.\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nVocê está mais próxima do que imagina.\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nScales!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nScales?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nScales...',\n", + " 'bytes': 1570,\n", + " 'sha1': 'lrcwkjq9bmz0ast580nk5vq3j7arb5q',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47785188,\n", + " 'timestamp': '2011-01-03T22:19:42Z',\n", + " 'user': {'id': 57431, 'text': 'Neohitokiri~commonswiki'},\n", + " 'page': {'id': 12567846,\n", + " 'title': 'Sintel movie 720x306.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:01:47,250 --> 00:01:50,500 Cette lame a un passé sombre. 2 00:01:51,799 --> 00:01:55,799 Elle a fait couler trop de sang innocent. 3 00:01:58,000 --> 00:02...'\",\n", + " 'text': \"1\\n00:01:47,250 --> 00:01:50,500\\nCette lame a un passé sombre.\\n\\n2\\n00:01:51,799 --> 00:01:55,799\\nElle a fait couler trop de sang innocent.\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nTu es un peu bête pour voyager seule si peu équipée.\\n\\n4\\n00:02:01,750 --> 00:02:04,799\\nTu es chanceuse que ton sang circule encore.\\n\\n5\\n00:02:05,250 --> 00:02:06,299\\nMerci.\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nAlors...\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\nQu'est-ce qui t'amène sur la terre des guardiens?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\nJe recherche quelqu'un.\\n\\n9\\n00:02:18,000 --> 00:02:22,199\\nQuelqu'un de très cher? Une âme sœur?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nun dragon.\\n\\n11\\n00:02:28,849 --> 00:02:31,750\\nUne quête dangereuse pour une chasseuse solitaire.\\n\\n12\\n00:02:32,949 --> 00:02:35,869\\nJ'ai été seule aussi longtemps que je m'en souvienne.\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nC'est bientôt fini. Shhh...\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nHè, reste assis.\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nBonne nuit, Scales.\\n\\n16\\n00:04:10,349 --> 00:04:13,849\\nAttrape, Scales! vas-y!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nScales?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nOuai ! vas-y !\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nScales!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nJ'ai échoué.\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\nTu as seulement échoué d'observer...\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\nCe sont des terres à dragons, Sintel.\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nTu es plus proche que ce que tu ne crois.\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nScales!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nScales?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nScales...\",\n", + " 'bytes': 1581,\n", + " 'sha1': '1wcyky28w818quqq9p1nxhnwttt8bo2',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47785238,\n", + " 'timestamp': '2011-01-03T22:21:31Z',\n", + " 'user': {'id': 57431, 'text': 'Neohitokiri~commonswiki'},\n", + " 'page': {'id': 12567858,\n", + " 'title': 'Sintel movie 720x306.ogv.ar.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:01:47,250 --> 00:01:50,500 هذا النصل له ماض مظلم. 2 00:01:51,799 --> 00:01:55,799 لقد اسال الكثير من دماء الابريا...'\",\n", + " 'text': '1\\n00:01:47,250 --> 00:01:50,500\\nهذا النصل له ماض مظلم.\\n\\n2\\n00:01:51,799 --> 00:01:55,799\\nلقد اسال الكثير من دماء الابرياء.\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nانتِ حمقاء لانك سافرتى وحدك, وغير مستعدة.\\n\\n4\\n00:02:01,750 --> 00:02:04,799\\nانتِ محظوظة لكونك على قيد الحياة.\\n\\n5\\n00:02:05,250 --> 00:02:06,299\\nشكراً لك.\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nاذن...\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\nما الذى أتى بكِ الى ارض المتحكمين؟\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\nانا ابحث عن شخص ما.\\n\\n9\\n00:02:18,000 --> 00:02:22,199\\nشخص عزيز؟\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nتنين.\\n\\n11\\n00:02:28,849 --> 00:02:31,750\\nطلب خطير من صائدة وحيدة.\\n\\n12\\n00:02:32,949 --> 00:02:35,869\\nانا وحدى دائما لمدة طويلة حسب ما اذكر.\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nانا تقريبا انتهيت , صه...\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nظل جالساً.\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nعمت مساءً سكيلس.\\n\\n16\\n00:04:10,349 --> 00:04:13,849\\nاحضرها يا سكيلس, هيا!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nسكيلس؟\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nنعم! هيا!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nسكيلس!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nلقد فشلت.\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\nانتِ فقط فشلتِ فى الرؤية...\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\nهناك ارض للتانين , سينتل.\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nوانتِ اقرب لها اكثر مما تتخيلى.\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nسكيلس!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nسكيلس؟\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nسكيلس...',\n", + " 'bytes': 1752,\n", + " 'sha1': 'nhhswo4zhezfnbdpwo1yeju0jb3ncd3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47785308,\n", + " 'timestamp': '2011-01-03T22:23:56Z',\n", + " 'user': {'id': 57431, 'text': 'Neohitokiri~commonswiki'},\n", + " 'page': {'id': 12567869,\n", + " 'title': 'Sintel movie 720x306.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:01:47,250 --> 00:01:50,500 Questa lama ha un oscuro passato. 2 00:01:51,799 --> 00:01:55,799 Ha sparso molto sangue innocente. 3 00:01:58,000 --> 00:02:01,4...'\",\n", + " 'text': \"1\\n00:01:47,250 --> 00:01:50,500\\nQuesta lama ha un oscuro passato.\\n\\n2\\n00:01:51,799 --> 00:01:55,799\\nHa sparso molto sangue innocente.\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nSei sciocca a viaggiare sola, completamente impreparata.\\n\\n4\\n00:02:01,750 --> 00:02:04,799\\nSei fortunato che il tuo sangue scorra ancora.\\n\\n5\\n00:02:05,250 --> 00:02:06,299\\nGrazie.\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nQuindi...\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\nCosa ti porta nella terra dei guardiani?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\nSto cercando qualcuno.\\n\\n9\\n00:02:18,000 --> 00:02:22,199\\nQualcuno molto caro? Un'anima gemella?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nUn drago.\\n\\n11\\n00:02:28,849 --> 00:02:31,750\\nUna ricerca pericolosa per una cacciatrice solitaria.\\n\\n12\\n00:02:32,949 --> 00:02:35,869\\nSono stata sola per quanto possa ricordare.\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nCi siamo quasi. Shhh...\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nHey, siediti tranquilla.\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nBuona notte, Scales.\\n\\n16\\n00:04:10,349 --> 00:04:13,849\\nPrendilo, Scales! Avanti!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nScales?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nSi! Avanti!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nScales!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nHo fallito.\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\nHai solo fallito nel vedere...\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\nQueste sono le terre dei draghi, Sintel.\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nSei piť vicino di quanto immagini.\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nScales!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nScales?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nScales...\",\n", + " 'bytes': 1544,\n", + " 'sha1': 'm1yjlci2nu5myqkc594e3fx7de55vqe',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48228663,\n", + " 'timestamp': '2011-01-13T21:18:22Z',\n", + " 'user': {'id': 31103, 'text': 'Bjankuloski06en'},\n", + " 'page': {'id': 12632167,\n", + " 'title': 'Nice People MEDIUM.ogv.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 Ако располагате со знаење, зошто мора да го задржите само за себе?\\n\\n2 00:00:04,249 --> 00:00:07,174 Треба да го споделите! Така сметам јас.\\n\\n3 00:00:07,174 --> 00:00:10,031 Ми се допаѓа, намената на оваа веб страна\\n\\n4 00:00:10,031 --> 00:00:15,325 не се вели „веб-страна“, ниту „вики“, ниту „Интернет“,\\n\\n5 00:00:15,325 --> 00:00:17,113 туку едноставно „Слободно знаење,\\n\\n6 00:00:17,113 --> 00:00:19,411 за секој, на својот мајчин јазик“.\\n\\n7 00:00:19,411 --> 00:00:21,548 Кога заедницата е отворена,\\n\\n8 00:00:21,548 --> 00:00:23,428 тоа се прави со тоа,\\n\\n9 00:00:23,428 --> 00:00:25,936 што се прифаќа поканата.\\n\\n10 00:00:25,936 --> 00:00:27,956 А Википедија е покана.\\n\\n11 00:00:27,956 --> 00:00:29,535 Секако не морате да ја прифатите поканата,\\n\\n12 00:00:29,535 --> 00:00:31,439 но поканата веќе е испратена\\n\\n13 00:00:31,439 --> 00:00:32,879 со копчето „Уреди“, кое вели\\n\\n14 00:00:32,879 --> 00:00:37,709 „Ајде, дружи нè, она што го знаеш е исто толку важно колку она што ние го знаеме“.\\n\\n15 00:00:37,709 --> 00:00:40,472 Знај дека им даваш образование на луѓето,\\n\\n16 00:00:40,472 --> 00:00:43,026 и не само на неколку луѓе туку на целиот свет.\\n\\n17 00:00:43,026 --> 00:00:47,113 Се чувствувам голем кога придонесувам на една енциклопедија,\\n\\n18 00:00:47,113 --> 00:00:51,455 која е достапна секому било каде во светот.\\n\\n19 00:00:51,455 --> 00:00:55,286 Среќен си кога им помагаш на другите, тоа е тоа.\\n\\n20 00:00:55,286 --> 00:00:57,283 Бидејќи јас сакам да бидам среќен, им помагам на другите.\\n\\n21 00:00:57,283 --> 00:01:00,650 Работиш заедно со многу различни луѓе,\\n\\n22 00:01:00,650 --> 00:01:04,156 со многу различни култури, а тоа е навистина восхитувачко.\\n\\n23 00:01:04,156 --> 00:01:06,501 Тоа според мене е навистина значајно,\\n\\n24 00:01:06,501 --> 00:01:08,754 тоа се навистина прекрасни луѓе.\\n\\n25 00:01:08,754 --> 00:01:10,890 Знаете, има толку многу навистина прекрасни луѓе\\n\\n26 00:01:10,890 --> 00:01:14,466 кои што се он-лајн и уредуваат\\n\\n27 00:01:14,466 --> 00:01:16,231 и наместо да се смешкаат еден на друг\\n\\n28 00:01:16,231 --> 00:01:18,437 или само да си разговараат\\n\\n29 00:01:18,437 --> 00:01:20,875 или да читаат било што друго,\\n\\n30 00:01:20,875 --> 00:01:22,198 тие се обидуваат да изградат нешто,\\n\\n31 00:01:22,198 --> 00:01:23,707 што на некој друг ќе му биде корисно.\\n\\n32 00:01:23,707 --> 00:01:26,029 Мислам дека тоа се навистина слатки и прекрасни луѓе.',\n", + " 'bytes': 3473,\n", + " 'sha1': 'rwj8kj2ysld3jo4x254cdl6pb5v3stm',\n", + " 'parent_id': 48228645,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48038984,\n", + " 'timestamp': '2011-01-08T17:44:35Z',\n", + " 'user': {'id': 121887, 'text': 'Brest'},\n", + " 'page': {'id': 12632188,\n", + " 'title': 'Nice People MEDIUM.ogv.MK.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:Nice People MEDIUM.ogv.mk.srt',\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'moved [[TimedText:Nice People MEDIUM.ogv.MK.srt]] to [[TimedText:Nice People MEDIUM.ogv.mk.srt]]: small MK',\n", + " 'text': '#REDIRECT [[TimedText:Nice People MEDIUM.ogv.mk.srt]]',\n", + " 'bytes': 53,\n", + " 'sha1': 'jd3dnluwixd3eee201d0bxz1i7xxqtq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601720888,\n", + " 'timestamp': '2021-10-24T14:46:25Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 12632589,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and partyally the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\nМоето корисничко име е Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLali roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nМоето корисничко име е Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein,\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\nна германски - „книжно црвче“\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nЕ Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\nзнаете: «not a fish» („не е риба“)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,293 --> 00:00:23,785\\nМоето корисничко име е Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nМоето корисничко име е Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, анаграм на моето\\nвистинско име Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nМоето корисничко име е Steven\\nWalling - моето вистинско име\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\nМоето корисничко име е Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nМоето корисничко име е Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,689 --> 00:00:47,660\\nМоето корисничко име е Jdforrester\\nи јас уредувам на Википедија',\n", + " 'bytes': 1788,\n", + " 'sha1': 'llwu3yqqwpj7xpmkh1ubxg8u8crk58g',\n", + " 'parent_id': 48228898,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 59475873,\n", + " 'timestamp': '2011-09-15T20:14:13Z',\n", + " 'user': {'text': '188.82.225.10'},\n", + " 'page': {'id': 12646158,\n", + " 'title': 'Chocolate cake.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,458 --> 00:00:04,416\\n6 eggs; 150 g margarine; 225 g sugar; 225 g powder chocolate; 100 g flour; 250 g dark chocolate; 2.5 dl cream\\n\\n2\\n00:00:04,416 --> 00:00:15,916\\nmash margarine\\n\\n3\\n00:00:15,916 --> 00:00:47,416\\nadd sugar\\n\\n4\\n00:00:47,416 --> 00:01:00,291\\nseparate egg whites and yolks\\n\\n5\\n00:01:00,291 --> 00:01:30,166\\nadd egg yolks\\n\\n6\\n00:01:30,166 --> 00:02:07,458\\nadd powder chocolate\\n\\n7\\n00:02:07,458 --> 00:02:44,916\\nbeat egg whites\\n\\n8\\n00:02:44,916 --> 00:02:45,416\\nadd flour and egg whites alternatively\\n\\n8.5\\n00:02:45,416 --> 00:02:45,916\\n\\n\\n9\\n00:05:08,958 --> 0-1:0-1:0-1\\ngently melt the dark chocolate\\n\\n10\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nadd cream\\n\\n11\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n12\\n0-1:0-1:0-1 --> 0-1:0-1:0-1',\n", + " 'bytes': 723,\n", + " 'sha1': 'tt5thytdnv673pv1v42duwutijxmrdy',\n", + " 'parent_id': 48101664,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48112095,\n", + " 'timestamp': '2011-01-10T06:57:19Z',\n", + " 'user': {'id': 1177211, 'text': 'Waihorace'},\n", + " 'page': {'id': 12648595,\n", + " 'title': 'WalesAnniversaryAddress.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 Hi everybody and welcome to the tenth anniversary of Wikipedia.\\n\\n2 00:00:10,510 --> 00:00:15,400 It\\'s a really exciting day for everybody in the community and all around the world.\\n\\n3 00:00:15,410 --> 00:00:18,400 I\\'ve been spending a lot of time lately thinking about the history of Wikipedia\\n\\n4 00:00:18,410 --> 00:00:23,200 and where we came from and all the things we\\'ve been through to get where we are today.\\n\\n5 00:00:23,210 --> 00:00:28,100 I remember the first time I ever edited Wikipedia,\\n\\n6 00:00:28,100 --> 00:00:30,100 which was the first day Wikipedia existed,\\n\\n7 00:00:30,100 --> 00:00:32,700 and I clicked on \"edit\", and I typed \"Hello, world!\",\\n\\n8 00:00:32,750 --> 00:00:35,500 and hit \"Save\" and that was the first words in Wikipedia.\\n\\n9 00:00:35,600 --> 00:00:38,800 And I thought about what was to come and of course I really didn\\'t know what was to come\\n\\n10 00:00:38,900 --> 00:00:42,400 but over the years I\\'ve had a lot of wonderful experiences\\n\\n11 00:00:42,500 --> 00:00:46,200 I had the opportunity to come around the world and meet with many of you in person\\n\\n12 00:00:46,300 --> 00:00:49,950 I remember... several things stand out on my mind.\\n\\n13 00:00:50,050 --> 00:00:57,300 I remember the first board meeting for the Wikimedia Foundation, when I met in Paris with Florence\\n\\n14 00:00:57,400 --> 00:01:00,800 from French Wikipedia and Angela from English Wikipedia, the first board members\\n\\n15 00:01:00,900 --> 00:01:05,000 and we had a meeting to start to discuss building the Foundation\\n\\n16 00:01:05,050 --> 00:01:08,800 how we\\'re gonna get the money to keep this project going, how can we grow\\n\\n17 00:01:08,800 --> 00:01:09,900 and what does the future look like.\\n\\n18 00:01:10,000 --> 00:01:15,800 I remember sitting on the banks of the river in Berlin with German wikipedians,\\n\\n19 00:01:15,900 --> 00:01:21,400 and we were waiting, expecting for the one hundredth thousandth article to be written\\n\\n20 00:01:21,500 --> 00:01:24,800 so we sat outside and we kept hitting \"Reload\" on our computers to see\\n\\n21 00:01:25,000 --> 00:01:27,100 \"Oh, it\\'s ninety nine thousand, nine hundred and ninety seven\"\\n\\n22 00:01:27,200 --> 00:01:30,500 I guess every Wikipedia has gone through this milestone process, when you\\'re excited\\n\\n23 00:01:30,600 --> 00:01:34,500 when you\\'re getting close and then of course as we hit the one hundred thousand\\n\\n24 00:01:34,600 --> 00:01:37,400 we had the big argument about which article was really the one hundred thousandth\\n\\n25 00:01:37,500 --> 00:01:39,700 another great hobby of Wikipedians\\n\\n26 00:01:39,800 --> 00:01:46,600 And over the years I had many opportunities to come all around the world, I met with wikipedians in India\\n\\n27 00:01:46,700 --> 00:01:53,700 in China, in South America, really all around the world, and as I travel around and I talk to people\\n\\n28 00:01:53,800 --> 00:01:57,500 one of the most frequent questions I get from Wikipedia groups is \\n\\n29 00:01:57,600 --> 00:02:01,500 \"How do you see us compared to other wikipedians around the world\\n\\n30 00:02:01,600 --> 00:02:04,500 what\\'s different about the Brazilian Wikipedians, for example?\"\\n\\n31 00:02:04,600 --> 00:02:06,600 and what I have to say is \"Not much difference\".\\n\\n32 00:02:06,700 --> 00:02:10,800 It turns out that we tend to be very much the same all around the world\\n\\n33 00:02:10,900 --> 00:02:13,500 even though we come from very different cultures\\n\\n34 00:02:13,600 --> 00:02:18,500 many different kinds of people, but we also share the same experiences\\n\\n35 00:02:18,600 --> 00:02:20,700 we\\'ve all been through the same things.\\n\\n36 00:02:20,800 --> 00:02:23,900 I think everybody has reverted the same kinds of vandalism.\\n\\n37 00:02:24,000 --> 00:02:25,500 It doesn\\'t matter what language you\\'re working in\\n\\n38 00:02:25,500 --> 00:02:30,500 it doesn\\'t matter if your wiki has five hundred articles or five hundred thousands\\n\\n39 00:02:30,600 --> 00:02:34,000 or three million, you still get somebody who comes along\\n\\n40 00:02:34,000 --> 00:02:39,500 and replaces a whole wonderful article with two words of cursing or something like this.\\n\\n41 00:02:39,600 --> 00:02:42,700 And of course you just revert it and block the vandal, and all that.\\n\\n42 00:02:42,800 --> 00:02:46,600 That\\'s part of being a wikipedian, we\\'ve all had really interesting conversations\\n\\n43 00:02:46,600 --> 00:02:46,800 about the naming conventions of things\\n\\n44 00:02:46,800 --> 00:02:53,200 what do we call a river in Poland, how are we gonna name this\\n\\n45 00:02:53,300 --> 00:02:56,300 how are we gonna name that, what are the controversies that we need to figure out\\n\\n46 00:02:56,300 --> 00:02:58,400 and what is the thoughtful way forward.\\n\\n47 00:02:58,500 --> 00:03:02,500 So all around the world I find the same kinds of people doing the same kinds of work\\n\\n48 00:03:02,600 --> 00:03:07,500 because we had the same shared experience. And we also share the same values, the same ideals\\n\\n49 00:03:07,500 --> 00:03:12,600 the things we are working for – free encyclopedia for every person of the planet\\n\\n50 00:03:12,700 --> 00:03:15,900 written really by thoughtful people, that try to be neutral\\n\\n51 00:03:16,000 --> 00:03:19,800 try to be honest, trying to bring free information.\\n\\n52 00:03:19,900 --> 00:03:23,800 It\\'s still as exciting for me today as it was in the very early days when I started.\\n\\n53 00:03:23,800 --> 00:03:25,500 We\\'ve still got a lot of work left to do.\\n\\n54 00:03:25,600 --> 00:03:28,800 Today is a great moment to reflect on where we\\'ve been\\n\\n55 00:03:28,800 --> 00:03:32,800 to think about where we\\'re going, and wow, I don\\'t know\\n\\n56 00:03:32,900 --> 00:03:33,500 you can see how excited I\\'m getting.\\n\\n57 00:03:33,600 --> 00:03:37,800 I just want to say: Thank you so much for all the work that you\\'ve done\\n\\n58 00:03:37,900 --> 00:03:42,700 thank you so much for coming here today to meet with other people.\\n\\n59 00:03:42,800 --> 00:03:48,600 Do me a favor and find somebody in the crowd, who you have never met before in person\\n\\n60 00:03:48,600 --> 00:03:50,100 and introduce yourself and say:\\n\\n61 00:03:50,100 --> 00:03:52,200 \"Hey, what would you like to edit?\"\\n\\n62 00:03:52,300 --> 00:03:54,500 Let\\'s build this community\\n\\n63 00:03:54,500 --> 00:03:56,700 it\\'s all about a bunch of friends doing something useful.\\n\\n64 00:03:56,800 --> 00:04:01,900 So, thank you again and happy birthday to Wikipedia.\\n\\n<!--65 00:04:03,200 -*-> 00:04:12,900 Wikipedia 10 years of sharing the sum of all knowledge.-->',\n", + " 'bytes': 6482,\n", + " 'sha1': 'o82ishi2l7odi0a6q3qmfk78xsz8poq',\n", + " 'parent_id': 48111947,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48289957,\n", + " 'timestamp': '2011-01-15T12:18:52Z',\n", + " 'user': {'id': 21128, 'text': 'Amire80'},\n", + " 'page': {'id': 12649295,\n", + " 'title': 'WalesAnniversaryAddress.ogv.he.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'באיחור, עוד תיקון',\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 שלום לכולם וברוכים הבאים לחגיגת העשור של ויקיפדיה.\\n\\n2 00:00:10,510 --> 00:00:15,400 זהו יום מרגש מאוד עבור כולם בקהילה ובכל רחבי העולם.\\n\\n3 00:00:15,410 --> 00:00:18,400 אני ביליתי הרבה זמן לאחרונה בחשיבה על ההיסטוריה של ויקיפדיה,\\n\\n4 00:00:18,410 --> 00:00:23,200 על המקום שממנו באנו ועל כל הדברים שעברנו כדי להגיע למקום שבו אנחנו נמצאים היום.\\n\\n5 00:00:23,210 --> 00:00:28,100 אני נזכר בפעם הראשונה שערכתי את ויקיפדיה,\\n\\n6 00:00:28,100 --> 00:00:30,100 ביום הראשון שהיא התקיימה.\\n\\n7 00:00:30,100 --> 00:00:32,700 לחצתי על כפתור \"עריכה\", כתבתי \"שלום, עולם!\",\\n\\n8 00:00:32,750 --> 00:00:35,500 לחצתי על \"שמירה\" ואלו היו המילים הראשונות בוויקיפדיה.\\n\\n9 00:00:35,600 --> 00:00:38,800 וחשבתי על מה שיבוא וכמובן לא ידעתי מה יבוא,\\n\\n10 00:00:38,900 --> 00:00:42,400 אבל לאורך השנים היו לי חוויות נהדרות.\\n\\n11 00:00:42,500 --> 00:00:46,200 הייתה לי הזדמנות לטייל סביב העולם ולפגוש רבים מכם באופן אישי.\\n\\n12 00:00:46,300 --> 00:00:49,950 אני זוכר כמה דברים במיוחד.\\n\\n13 00:00:50,050 --> 00:00:57,300 אני נזכר בפגישת הוועד הראשונה של קרן ויקימדיה, כשנפגשתי בפריז עם פלורנס מוויקיפדיה הצרפתית\\n\\n14 00:00:57,400 --> 00:01:00,800 ועם אנג׳לה מוויקיפדיה האנגלית, חברות הוועד הראשונות,\\n\\n15 00:01:00,900 --> 00:01:05,000 נפגשנו כדי להתחיל לדבר על בניית הקרן,\\n\\n16 00:01:05,050 --> 00:01:08,800 איך נגייס את הכסף כדי להמשיך את המיזם הזה, איך אפשר לגדול,\\n\\n17 00:01:08,800 --> 00:01:09,900 ואיך העתיד נראה.\\n\\n18 00:01:10,000 --> 00:01:15,800 אני נזכר איך ישבתי על גדת הנהר בברלין עם ויקיפדים גרמנים,\\n\\n19 00:01:15,900 --> 00:01:21,400 וחיכינו, ציפינו שייכתב הערך המאה אלף.\\n\\n20 00:01:21,500 --> 00:01:24,800 אז ישבנו בחוץ, לחצנו על כפתור רענון במחשבים שלנו כדי לראות –\\n\\n21 00:01:25,000 --> 00:01:27,100 \"הנה, זה תשעים ותשע אלף, תשע מאות תשעים ושבע\".\\n\\n22 00:01:27,200 --> 00:01:30,500 אני חושב שכל ויקיפדיה עברה את השלב הזה של אבני דרך, כשאתם מתלהבים,\\n\\n23 00:01:30,600 --> 00:01:34,500 כשאתם מתקרבים. ואז כמובן הגענו למאה אלף\\n\\n24 00:01:34,600 --> 00:01:37,400 והיה לנו ויכוח גדול על איזה ערך הוא באמת הערך המאה אלף –\\n\\n25 00:01:37,500 --> 00:01:39,700 עוד תחביב גדול של ויקיפדים.\\n\\n26 00:01:39,800 --> 00:01:46,600 ולאורך השנים היו לי הרבה הזדמנויות להסתובב בעולם, ופגשתי ויקיפדים בהודו,\\n\\n27 00:01:46,700 --> 00:01:53,700 בסין, בדרום אמריקה, באמת בכל העולם, וכשאני מטייל ומדבר עם אנשים,\\n\\n28 00:01:53,800 --> 00:01:57,500 אחת השאלות הנפוצות ביותר היא\\n\\n29 00:01:57,600 --> 00:02:01,500 \"איך אנחנו בהשוואה לוויקיפדים משאר העולם,\\n\\n30 00:02:01,600 --> 00:02:04,500 מה שונה בוויקיפדים ברזילאים למשל?\"\\n\\n31 00:02:04,600 --> 00:02:06,600 ומה שאני חייב לומר הוא: \"אין הרבה הבדל\".\\n\\n32 00:02:06,700 --> 00:02:10,800 מסתבר שאנחנו נוטים להיות דומים מאוד בכל העולם,\\n\\n33 00:02:10,900 --> 00:02:13,500 אף שהגענו מתרבויות שונות מאוד\\n\\n34 00:02:13,600 --> 00:02:18,500 ואנחנו סוגים שונים של אנשים, יש לנו אותן חוויות,\\n\\n35 00:02:18,600 --> 00:02:20,700 כולנו עברנו את אותם הדברים.\\n\\n36 00:02:20,800 --> 00:02:23,900 כולנו שחזרנו את אותן ההשחתות.\\n\\n37 00:02:24,000 --> 00:02:25,500 זה לא משנה באיזו שפה אתם עובדים,\\n\\n38 00:02:25,500 --> 00:02:30,500 זה לא משנה אם בוויקי שלכם יש חמש מאות ערכים או חמש מאות אלף,\\n\\n39 00:02:30,600 --> 00:02:34,000 או שלושה מיליון, עדיין יהיה מישהו שיבוא\\n\\n40 00:02:34,000 --> 00:02:39,500 ויחליף את כל הערך הנהדר בשתי מילים של קללות או משהו כזה.\\n\\n41 00:02:39,600 --> 00:02:42,700 וכמובן, פשוט תשחזרו את זה ותחסמו את המשחית וכל זה.\\n\\n42 00:02:42,800 --> 00:02:46,600 זה חלק מלהיות ויקיפד. כולנו ניהלנו שיחות ממש מעניינות\\n\\n43 00:02:46,600 --> 00:02:46,602 זה חלק מלהיות ויקיפד. כולנו ניהלנו שיחות ממש מעניינות\\n\\n44 00:02:46,800 --> 00:02:53,200 על מתן שמות לערכים, איך נקרא לנהר בפולין, איך נקרא לזה ואיך נקרא לזה,\\n\\n45 00:02:53,300 --> 00:02:56,300 על אילו מחלוקות אנחנו צריכים לחשוב,\\n\\n46 00:02:56,300 --> 00:02:58,400 מהי הדרך החכמה קדימה.\\n\\n47 00:02:58,500 --> 00:03:02,500 אז סביב כל העולם אני מוצא את אותם הסוגים של האנשים עושים אותו סוג של עבודה,\\n\\n48 00:03:02,600 --> 00:03:07,500 כי לכולנו יש חוויות משותפות. ויש לנו גם אותם ערכים, אותם עקרונות,\\n\\n49 00:03:07,500 --> 00:03:12,600 הדברים שלמענם אנחנו עובדים – אנציקלופדיה חופשית לכל אדם על כדור הארץ,\\n\\n50 00:03:12,700 --> 00:03:15,900 שנכתבת באמת על־ידי אנשים חושבים, שמנסים להיות ניטרליים,\\n\\n51 00:03:16,000 --> 00:03:19,800 מנסים להיות ישרים, מנסים להביא מידע חופשי.\\n\\n52 00:03:19,900 --> 00:03:23,800 זה עדיין מלהיב אותי היום כמו בימים שבהם התחלתי.\\n\\n53 00:03:23,800 --> 00:03:25,500 עדיין יש לנו הרבה מאוד עבודה לעשות.\\n\\n54 00:03:25,600 --> 00:03:28,800 היום זה רגע נהדר לחשוב על המקום שהיינו בו,\\n\\n55 00:03:28,800 --> 00:03:32,800 לחשוב על לאן אנחנו הולכים ו־... ואו, אני לא יודע –\\n\\n56 00:03:32,900 --> 00:03:33,500 אתם רואים כמה אני מתרגש.\\n\\n57 00:03:33,600 --> 00:03:37,800 אני רק רוצה לומר: תודה רבה לכם על כל העבודה שעשיתם,\\n\\n58 00:03:37,900 --> 00:03:42,700 תודה רבה לכם על כך שבאתם הֵנָּה היום כדי לפגוש אנשים אחרים.\\n\\n59 00:03:42,800 --> 00:03:48,600 תעשו לי טובה ותמצאו מישהו בקהל שמעולם לא פגשתם אישית,\\n\\n60 00:03:48,600 --> 00:03:52,200 הציגו את עצמכם ואִמרו: \"שלום, מה בא לך לערוך?\"\\n\\n61 00:03:52,300 --> 00:03:56,700 בואו נבנה את הקהילה הזאת. אנחנו בסך הכול כמה חברים שעושים משהו שימושי.\\n\\n62 00:03:56,800 --> 00:04:01,900 אז תודה לכם שוב, ויום הולדת שמח לוויקיפדיה.\\n\\n63 00:04:03,200 --> 00:04:12,900 ויקיפדיה – 10 שנים של שיתוף סך כל הידע.',\n", + " 'bytes': 7602,\n", + " 'sha1': 'kl4iysegx8ui77wou7p1a04zp8fdsoq',\n", + " 'parent_id': 48238114,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48262408,\n", + " 'timestamp': '2011-01-14T20:33:27Z',\n", + " 'user': {'id': 211597, 'text': 'Lvova'},\n", + " 'page': {'id': 12649383,\n", + " 'title': 'WalesAnniversaryAddress.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 Привет всем, и добро пожаловать на десятилетие Википедии.\\n\\n2 00:00:10,510 --> 00:00:15,400 Это действительно волнующий день для каждого члена сообщества и для всех в мире.\\n\\n3 00:00:15,410 --> 00:00:18,400 Я в последнее время провёл много времени, думая об истории Википедии,\\n\\n4 00:00:18,410 --> 00:00:23,200 и откуда мы пришли, и что пережили, чтобы получить то, где мы находимся нынче.\\n\\n5 00:00:23,210 --> 00:00:28,100 Я помню самый первый раз, когда я редактировал Википедию,\\n\\n6 00:00:28,100 --> 00:00:30,100 в первый день существования Википедии,\\n\\n7 00:00:30,100 --> 00:00:32,700 когда я нажал на «править», и написал: «Hello, world!»,\\n\\n8 00:00:32,750 --> 00:00:35,500 и кликнул «сохранить», и это были первые слова в Википедии.\\n\\n9 00:00:35,600 --> 00:00:38,800 И я подумал о том, что должно было произойти, и, конечно, я совершенно не знал, что произошло,\\n\\n10 00:00:38,900 --> 00:00:42,400 но спустя годы у меня есть потрясающий опыт.\\n\\n11 00:00:42,500 --> 00:00:46,200 У меня была возможность ездить по всему миру и встретиться лично со многими из вас.\\n\\n12 00:00:46,300 --> 00:00:49,950 Я помню… несколько вещей стоят передо мной.\\n\\n13 00:00:50,050 --> 00:00:57,300 Я помню первое заседание правления Фонда Викимедиа, когда я встретился в Париже с Флоранс\\n\\n14 00:00:57,400 --> 00:01:00,800 из Википедии на французском языке и Анджелой из Википедии на английском, первыми членами правления,\\n\\n15 00:01:00,900 --> 00:01:05,000 и у нас была встреча, на которой началось обсуждение, как создать Фонд,\\n\\n16 00:01:05,050 --> 00:01:08,800 как мы можем получать деньги для поддержки существования проекта, как мы можем расти\\n\\n17 00:01:08,800 --> 00:01:09,900 и на что похоже будущее.\\n\\n18 00:01:10,000 --> 00:01:15,800 Я помню, как сидел на берегах реки в Берлине с немецкими википедистами,\\n\\n19 00:01:15,900 --> 00:01:21,400 и мы ждали, выжидали написания стотысячной статьи,\\n\\n20 00:01:21,500 --> 00:01:24,800 сидели и кликали «Перезагрузить» на наших компьютерах, чтобы увидеть:\\n\\n21 00:01:25,000 --> 00:01:27,100 «Ах, вот девяносто девять тысяч девятьсот девяносто седьмая»\\n\\n22 00:01:27,200 --> 00:01:30,500 Я думаю, каждая Википедия прошла этот этап, когда вы впечатлятесь,\\n\\n23 00:01:30,600 --> 00:01:34,500 подходите всё ближе, и затем, конечно же, как и мы, достигаете стотысячной.\\n\\n24 00:01:34,600 --> 00:01:37,400 У нас был огромный спор о том, какая из статей — стотысячная,\\n\\n25 00:01:37,500 --> 00:01:39,700 это отдельное хобби википедистов.\\n\\n26 00:01:39,800 --> 00:01:46,600 И за эти годы у меня было множество возможностей посещать весь мир, я встретился с википедистами в Индии,\\n\\n27 00:01:46,700 --> 00:01:53,700 Китае, Южной Америке, реально по всему миру, и я путешествовал и говорил с людьми\\n\\n28 00:01:53,800 --> 00:01:57,500 один из самых часто задаваемых вопросов, который я слышал от групп википедистов, был\\n\\n29 00:01:57,600 --> 00:02:01,500 «Как вы думаете, по сравнению с другими википедистами всего мира\\n\\n30 00:02:01,600 --> 00:02:04,500 в чём отличие, например, бразильских википедистов?»\\n\\n31 00:02:04,600 --> 00:02:06,600 И вот что я им говорил: «Нет большой разницы».\\n\\n32 00:02:06,700 --> 00:02:10,800 Оказывается, мы во всём мире, как правило, очень похожи друг на друга,\\n\\n33 00:02:10,900 --> 00:02:13,500 даже если мы из очень разных культур,\\n\\n34 00:02:13,600 --> 00:02:18,500 много разных людей, но у нас также есть общий опыт,\\n\\n35 00:02:18,600 --> 00:02:20,700 мы все прошли через схожие вещи.\\n\\n36 00:02:20,800 --> 00:02:23,900 Я думаю, каждый отменял разные виды вандализма.\\n\\n37 00:02:24,000 --> 00:02:25,500 Не важно, с каким языком вы работаете,\\n\\n38 00:02:25,500 --> 00:02:30,500 не важно, пять сотен статей в вашей вики или пять сотен тысяч,\\n\\n39 00:02:30,600 --> 00:02:34,000 или три миллиона, вы всё равно получаете кого-то, кто приходит\\n\\n40 00:02:34,000 --> 00:02:39,500 и заменяет целиком замечательную статью двумя словами проклятья или чего-либо подобного.\\n\\n41 00:02:39,600 --> 00:02:42,700 И конечно вы лишь отменяете это и блокируете вандала, и это всё.\\n\\n42 00:02:42,800 --> 00:02:46,600 Это часть бытия википедиста, у нас у всех были интересные обсуждения\\n\\n43 00:02:46,600 --> 00:02:46,800 об именовании вещей,\\n\\n44 00:02:46,800 --> 00:02:53,200 как мы называем реку в Польше, и как нам следует называть то,\\n\\n45 00:02:53,300 --> 00:02:56,300 и как нам стоит называть это, какие версии мы должны прояснить,\\n\\n46 00:02:56,300 --> 00:02:58,400 и каков дальнейший ход размышлений.\\n\\n47 00:02:58,500 --> 00:03:02,500 В общем, во всём мире я нашёл одни и те же виды людей, делающих одни и те же виды работы\\n\\n48 00:03:02,600 --> 00:03:07,500 потому что у нас есть общий опыт. И мы разделяем одни и те же ценности, одни и те же идеалы,\\n\\n49 00:03:07,500 --> 00:03:12,600 объект, над которым мы работаем — свободная энциклопедия для каждого человека на земле,\\n\\n50 00:03:12,700 --> 00:03:15,900 написанная по-настоящему, думающими людьми, которая старается быть нейтральной,\\n\\n51 00:03:16,000 --> 00:03:19,800 старается быть честной, старается нести свободную информацию.\\n\\n52 00:03:19,900 --> 00:03:23,800 Она по-прежнему так же захватывающа для меня сегодня, как это было в самые ранние дни, когда я лишь начинал.\\n\\n53 00:03:23,800 --> 00:03:25,500 У нас ещё осталось много работы, которую предстоит сделать.\\n\\n54 00:03:25,600 --> 00:03:28,800 Сегодня отличный момент, чтобы обдумать, где мы были,\\n\\n55 00:03:28,800 --> 00:03:32,800 подумать, куда мы идём, и вау, я не знаю,\\n\\n56 00:03:32,900 --> 00:03:33,500 вы можете видеть, как я взволнован.\\n\\n57 00:03:33,600 --> 00:03:37,800 Я лишь хочу сказать: огромное вам спасибо за всю работу, что вы делаете,\\n\\n58 00:03:37,900 --> 00:03:42,700 огромное спасибо за то, что пришли сюда сегодня для встречи с другими людьми.\\n\\n59 00:03:42,800 --> 00:03:48,600 Сделайте мне одолжение и найдите кого-нибудь в толпе, с кем вы раньше ещё не встречались лично\\n\\n60 00:03:48,600 --> 00:03:50,100 и представьтесь, и скажите:\\n\\n61 00:03:50,100 --> 00:03:52,200 «Хей, а ты что любишь редактировать?»\\n\\n62 00:03:52,300 --> 00:03:54,500 Давайте строить наше сообщество,\\n\\n63 00:03:54,500 --> 00:03:56,700 оно — группа друзей, делающих нечто полезное.\\n\\n64 00:03:56,800 --> 00:04:01,900 В общем, спасибо вам ещё раз, и С днём рождения, Википедия.\\n\\n65 00:04:03,200 --> 00:04:12,900 Википедия. 10 лет мы делимся накопленным знанием',\n", + " 'bytes': 9579,\n", + " 'sha1': '38wvw46pur75gy5co8zkze0xm02g5q9',\n", + " 'parent_id': 48226551,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48157471,\n", + " 'timestamp': '2011-01-11T15:43:25Z',\n", + " 'user': {'id': 838537, 'text': 'Surprizi'},\n", + " 'page': {'id': 12649509,\n", + " 'title': 'WalesAnniversaryAddress.ogv.ka.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 მოგესალმებით ყველას, და მოხარული ვარ ვიკიპედიის იუბილეზე თქვენი ხილვით.\\n\\n2 00:00:10,510 --> 00:00:15,400 ეს მართლაც გამორჩეული დღეა ვიკიმედიის მთელი საზოგადოებისთვის მთელ მსოფლიოში.\\n\\n3 00:00:15,410 --> 00:00:18,400 ამ ბოლო დროს მე დიდ დროს ვატარებ ვიკიპედიის ისტორიაზე ფიქრში\\n\\n4 00:00:18,410 --> 00:00:23,200 საიდან მოვედით, როგორ მივედით დღემდე და სად მივდივართ.\\n\\n5 00:00:23,210 --> 00:00:28,100 მე მახსოვს ის მომენტი, როდესაც პირველად შევიტანე შესწორება ვიკიპედიაში,\\n\\n6 00:00:28,100 --> 00:00:30,100 ეს იყო ვიკიპედიის არსებობის პირველი დღე,\\n\\n7 00:00:30,100 --> 00:00:32,700 მე დავაჭირე \"რედაქტირებას\" და ავკრიფე \"გაუმარჯოს, სამყარო!\",\\n\\n8 00:00:32,750 --> 00:00:35,500 შემდეგ დავაჭირე \"შენახვას\" - ეს გახდა ვიკიპედიის პირველი სიტყვები.\\n\\n9 00:00:35,600 --> 00:00:38,800 მე ვფიქრობდი იმაზე, თუ რა უნდა მომხდარიყო. რა თქმა უნდა, მე არ მოველოდი იმას, რაც მოხდა\\n\\n10 00:00:38,900 --> 00:00:42,400 ამ წლების მანძილზე მე შევიძინე განუმეორებელი გამოცდილება\\n\\n11 00:00:42,500 --> 00:00:46,200 მე ვმოგზაურობდი მსოფლიოში და პირადად შევხვდი მრავალ თქვენთაგანს\\n\\n12 00:00:46,300 --> 00:00:49,950 მე მახსოვს და რამდენიმე მომენტი მახსენდება.\\n\\n13 00:00:50,050 --> 00:00:57,300 მე მახსოვს ვიკიმედიის სამეურვეო საბჭოს პირველი შეხვედრა პარიზსში, რომელსაც ფრანგული ვიკიპედიიდან\\n\\n14 00:00:57,400 --> 00:01:00,800 ფლორენსი და ინგლისური ვიკიპედიიდან ანგელა დაესწრნენ, ეს იყო საბჭოს პირველი შეხვედრა\\n\\n15 00:01:00,900 --> 00:01:05,000 და ჩვენ განვიხილეთ ფონდის შექმნის საჭიროება და\\n\\n16 00:01:05,050 --> 00:01:08,800 როგორ ვაპირებდით ფულის შეგროვებას პროექტის განსახორციელებლად და როგორ ვაპირებდით განვითარებას\\n\\n17 00:01:08,800 --> 00:01:09,900 და როგორ გამოიყურებოდა მომავალი.\\n\\n18 00:01:10,000 --> 00:01:15,800 მე მახსოვს, როგორ ვიჯექით მდინარის პირას ბერლინში,\\n\\n19 00:01:15,900 --> 00:01:21,400 და ველოდით მეასიათასე სტატიის დაწერას\\n\\n20 00:01:21,500 --> 00:01:24,800 ჩვენ ვიჯექით და ვაჭერდით \"განახლება\" ღილაკს ყოველ წამს\\n\\n21 00:01:25,000 --> 00:01:27,100 \"უკვე ოთხმოცდაცხრამეტი ათას ცხრაასოთხმოცდამეცხრამეტე სტატაა...\"\\n\\n22 00:01:27,200 --> 00:01:30,500 მე ვფიქრობ, თითოეული ან ყველა ვიკიპედიამ უკვე გაიარა ან გაივლის იმ ეტაპს, როდესაც ყველა გაოცდება,\\n\\n23 00:01:30,600 --> 00:01:34,500 უფრო და უფრო ახლოს მივდივართ და როგორც ქინა ვწერთ მეასიათასე სტატიას.\\n\\n24 00:01:34,600 --> 00:01:37,400 გერმანიაში ჩვენ გვქონდა უზარმაზარი კამათი იმის შესახებ, თუ რომელი სტატია გახდა მეასიათასე,\\n\\n25 00:01:37,500 --> 00:01:39,700 და ეს არის ვიკიპედიელთა ცალკე ჰობი\\n\\n26 00:01:39,800 --> 00:01:46,600 ამ წლების განმავლობაში მე მქონდა საშუალება ვეწვიო ვიკიპედიელებს მთელ მსოფლიოში, ინდოეთში,\\n\\n27 00:01:46,700 --> 00:01:53,700 ჩინეთში ამერიკაში, მართლა და მთელ მსოფლიოში - მე ვმგზავრობდი და ვესაუბრებოდი ადამიაბებს\\n\\n28 00:01:53,800 --> 00:01:57,500 ერთ-ერთი ყველაზე ხშირად დასმული შეკითხვა იყო, ის თუ\\n\\n29 00:01:57,600 --> 00:02:01,500 «როგორ განსხვავდებიან ვიკიპედიელები მთელ მსოფლიოში\\n\\n30 00:02:01,600 --> 00:02:04,500 რით განსხვავდებიან მაგალითად ბრაზილიელი ვიკიპედიელები?»\\n\\n31 00:02:04,600 --> 00:02:06,600 და მე ვპასუხობდი: «არ არსებობს სერიოზული განსხვავება».\\n\\n32 00:02:06,700 --> 00:02:10,800 თურმე, მთელს მსოფლიოში, ადამიანები როგორც წესი ერთმანეთს გვანან,\\n\\n33 00:02:10,900 --> 00:02:13,500 მაშინაც კი, როდესაც სულ სხვადასხვა კულტურებიდან ვართ.\\n\\n34 00:02:13,600 --> 00:02:18,500 ქვეყანაზე სხვადასხვა ტიპის ადამიანია, მაგრამ ჩვენ ასევე გვაქვს საერთო გამოცდილება,\\n\\n35 00:02:18,600 --> 00:02:20,700 ჩვენ ყველამ მსგავსი გზა გავიარეთ.\\n\\n36 00:02:20,800 --> 00:02:23,900 მე ვფიქრობ, რომ თითოეულმა ჩვენთაგანმა არაერთხელ შეაჩერა ვანდალიზმი.\\n\\n37 00:02:24,000 --> 00:02:25,500 იმას არა აქვს მნიშვნელობა თუ რომელ ენასთან მუშაობთ.\\n\\n38 00:02:25,500 --> 00:02:30,500 არც იმას აქვს მნიშვნელობა თქვენ ხუთასი სტატია დაწერეთ თუ ხუთასი ათასი,\\n\\n39 00:02:30,600 --> 00:02:34,000 ან თუნდაც სამი მილიონი, თქვენ ყოველთვის ხდებით ფაქტის მომსწრენი, როცა ვინმე მოდის \\n\\n40 00:02:34,000 --> 00:02:39,500 და შესანიშნავ სრულქმნილ თემას ცვლის ორიოდე უშვერი სიტყვით ან რაღაცა მსგავსით.\\n\\n41 00:02:39,600 --> 00:02:42,700 თქვენ რაღა თქმა უნდა უბრუნებთ თემას პირვანდელ სახეს ხოლო ვანდალს ბლოკავთ და ეს არის და ეს.\\n\\n42 00:02:42,800 --> 00:02:46,600 ეს ვიკიპედიის მწარე ყოველდღიურობაა, ჩვენ ყველას გვქონია მსჯელობა ამდაგვარ საქმეებზე\\n\\n43 00:02:46,600 --> 00:02:46,800 ჩვენ ბევრი გვიდავია სიტყვის სწორად ჩაწერისათვის,\\n\\n44 00:02:46,800 --> 00:02:53,200 როგორ დავწეროთ პოლონეთის მდინარე, და როგორ დავწეროთ ეს,\\n\\n45 00:02:53,300 --> 00:02:56,300 და როგორ დავწეროთ ის, როგორი ვერსიებია მიღებული,\\n\\n46 00:02:56,300 --> 00:02:58,400 და როგორი უნდა იყოს ზოგადად ენციკლოპედიურობა.\\n\\n47 00:02:58,500 --> 00:03:02,500 მინდა ვთქვა რომ მე მთელს მსოფლიოში ვნახე ერთიდა იგივე ხალსი ტიპი რომლებიც მსგავს საქმეს ასრულებს\\n\\n48 00:03:02,600 --> 00:03:07,500 რადგანაც ჩვენ ყველას გვაქვს საერთო გამოცდილება. და ყველა ვიზიარებთ ერთსა და იმავე აზრსა თუ იდეალებს,\\n\\n49 00:03:07,500 --> 00:03:12,600 ობიექტი, რომელზეც ჩვენ ვმუშაობთ — თავისუფალი ენციკლოპედია თითოეული ადამიანისათვის მთელს მსოფლიოში,\\n\\n50 00:03:12,700 --> 00:03:15,900 დაწერილი თანამედროვედ მოაზროვნე ადამიანების მიერ, რომელიც ცდილობს იყოს ნეიტრალური,\\n\\n51 00:03:16,000 --> 00:03:19,800 ცდილობს იყოს მართალი, ცდილობს გაავრცელოს თავისუფალი ინფორმაცია.\\n\\n52 00:03:19,900 --> 00:03:23,800 მას ისევე ვყევარ შეპყრობილი, როგორც ადრე როცა ხელი პირველად მოვკიდე ამ საქმეს.\\n\\n53 00:03:23,800 --> 00:03:25,500 ჩვენ გასაკეთებელი ჯერ კიდევ ბევრი გვაქვს, რომლის გაკეთება მომავალში გველის.\\n\\n54 00:03:25,600 --> 00:03:28,800 დღეს შესანიშნავი მომენტია დავფიქრდეთ, იმაზე თუ სად ვიყავით,\\n\\n55 00:03:28,800 --> 00:03:32,800 დავფიქრდეთ იმაზე თუ საით მივემართებით, მაგრამ საით? უაუ, ეს მე ჯერ არ ვიცი,\\n\\n56 00:03:32,900 --> 00:03:33,500 თქვენ ალბათ კარგად ხედავთ ჩემს აღელვებას.\\n\\n57 00:03:33,600 --> 00:03:37,800 მე მხოლოდ ერთის თქმა შემიძლია: დიდი მადლობა ყველას იმისათვის რასაც აკეთებთ\\n\\n58 00:03:37,900 --> 00:03:42,700 დიდი მადლობა ყველას რომ მოხვედით აქ სხვა ადამიანებთან შესახვედრად.\\n\\n59 00:03:42,800 --> 00:03:48,600 გთხოვთ დამავალეთ და ამ ხალხში გაიცანით დღეს თქვენთვის უცნობი ადამინი\\n\\n60 00:03:48,600 --> 00:03:50,100 წარუდექით და კითხეთ:\\n\\n61 00:03:50,100 --> 00:03:52,200 «ჰეი, შენაც გიყვარს რედაქტირება?»\\n\\n62 00:03:52,300 --> 00:03:54,500 მოდით ერთად ვაშენოთ ჩვენი ერთობა,\\n\\n63 00:03:54,500 --> 00:03:56,700 ერთობა — როგორც ადამიანების ერთიანობა, რომელსაც ყველასათვის კარგი მოაქვს.\\n\\n64 00:03:56,800 --> 00:04:01,900 საბოლოოდ, გიხდით კიდევ ერთხელ მადლობას ყველას და ვიკიპედია, გილოცავ დაბადების დღეს.\\n\\n65 00:04:03,200 --> 00:04:12,900 ვიკიპედია. ვიკიპედიის ათი წელი ცოდნის გავრცელების სამსახურში.',\n", + " 'bytes': 13640,\n", + " 'sha1': '78t9sjqsk79jtpl0e16ulgatfa47rsx',\n", + " 'parent_id': 48157362,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48209480,\n", + " 'timestamp': '2011-01-13T06:29:52Z',\n", + " 'user': {'id': 1177211, 'text': 'Waihorace'},\n", + " 'page': {'id': 12652080,\n", + " 'title': 'WalesCalltoAction.ogv.hr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:05,408 --> 00:00:08,351\\nZdravo, ja sam Jimmy Wales, osnivač Wikipedije.\\n\\n2\\n00:00:08,351 --> 00:00:11,487\\nDanas slavimo desetu godišnjicu Wikipedije.\\n\\n3\\n00:00:11,487 --> 00:00:16,467\\nTeško je zamisliti da je prošlo deset godina od mog prvog uređivanja Wikipedije.\\n\\n4\\n00:00:16,467 --> 00:00:23,472\\nSjećam se tog dana, napisao sam \"Pozdrav svijete\" i tako je započela Wikipedija i ostali projekti.\\n\\n5\\n00:00:23,472 --> 00:00:27,821\\nDanas imamo milijune članaka, više od stotinu jezika.\\n\\n6\\n00:00:27,821 --> 00:00:33,1\\nViše od 4 milijuna ljudi posjećuje mjesečno Wikipediju.\\n\\n7\\n00:00:33,1 --> 00:00:40,924\\nTo su stvari koje se događaju, koje utječu na kulturu i to sve zahvaljujući Vama.\\n\\n8\\n00:00:41,032 --> 00:00:49,609\\nŽelim zahvaliti svima koji su pomogli, svima koji doprinose Wikipediji, koji ju čitaju.\\n\\n8.5\\n00:00:49,624 --> 00:00:52,801\\nOnima koji udružuje svoje znanje.\\n\\n9\\n00:00:52,801 --> 00:00:55,107\\nZato smo je i napravili, da se čita.\\n\\n10\\n00:00:56,406 --> 00:01:04,009\\nŽelim napraviti maleni zadatak, iako imamo milijune članaka, stotine jezika...\\n\\n11\\n00:01:04,009 --> 00:01:07,462\\nJoš ima puno posla, zato želim da se svi pridruže.\\n\\n12\\n00:01:07,462 --> 00:01:10,051\\nAko nikada uređivali Wikipediju, pokušajte.\\n\\n13\\n00:01:10,051 --> 00:01:13,736\\nKilknite na \"Uredi\", ispravite neki problem. Biti ćemo izrazito zahvalni.\\n\\n14\\n00:01:14,151 --> 00:01:17,752\\nSretan rođendan Wikipedijo.\\n\\n15\\n00:01:19,428 --> 00:01:26,49\\nDeset godina dijeljenja baze svog znanja.',\n", + " 'bytes': 1498,\n", + " 'sha1': 'jftzhtazy1scx3h50xi2ayob489esd9',\n", + " 'parent_id': 48209475,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48144265,\n", + " 'timestamp': '2011-01-11T06:25:46Z',\n", + " 'user': {'id': 1177211, 'text': 'Waihorace'},\n", + " 'page': {'id': 12657583,\n", + " 'title': 'WalesAnniversaryAddress.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 大家好,歡迎來到維基百科的十周年慶祝。\\n\\n2 00:00:10,510 --> 00:00:15,400 這真是一個社群裡及全世界的人興奮的日子。\\n\\n3 00:00:15,410 --> 00:00:18,400 我用了很多時間去想關於維基百科的歷史,\\n\\n4 00:00:18,410 --> 00:00:23,200 及我們是在何處來的以及我們今天在那裡。\\n\\n5 00:00:23,210 --> 00:00:28,100 我記得我第一次編輯維基百科,\\n\\n6 00:00:28,100 --> 00:00:30,100 是維基百科成立的那天,\\n\\n7 00:00:30,100 --> 00:00:32,700 我按了「編輯」按鈕,並輸入\"Hello, world!\"(你好,世界),\\n\\n8 00:00:32,750 --> 00:00:35,500 並按了「儲存」,這就是在維基百科上第一個字。\\n\\n9 00:00:35,600 --> 00:00:38,800 我都不知道到底它是甚麼來的...\\n\\n10 00:00:38,900 --> 00:00:42,400 但是在這數年我有很多很好的經歷\\n\\n11 00:00:42,500 --> 00:00:46,200 我有機會去到世界各地,並與世界各地的人見面\\n\\n12 00:00:46,300 --> 00:00:49,950 我記得...在我的記憶中有數件事\\n\\n13 00:00:50,050 --> 00:00:57,300 我記得第一次管理層聚會,我在巴黎會見了Florence,\\n\\n14 00:00:57,400 --> 00:01:00,800 一個法語維基百科編者及Angela,一個英文維基百科編者,他們都是管理層成員\\n\\n15 00:01:00,900 --> 00:01:05,000 我們討論了如何去開始建立這個基金會\\n\\n16 00:01:05,050 --> 00:01:08,800 我們如何取得金錢以繼續營運,我們可以如何成長\\n\\n17 00:01:08,800 --> 00:01:09,900 以及將來是如何的。\\n\\n18 00:01:10,000 --> 00:01:15,800 我記得我和一些德國維基人坐在柏林一條河流外,有一所銀行,\\n\\n19 00:01:15,900 --> 00:01:21,400 我們在等待第十萬條條目被創建\\n\\n20 00:01:21,500 --> 00:01:24,800 所以我們坐在外面並不停地點瀏覽器的「重新整理」\\n\\n21 00:01:25,000 --> 00:01:27,100 「現在是九萬九千九百九十七條」\\n\\n22 00:01:27,200 --> 00:01:30,500 我估計每個維基人經過這個里程碑,都會很興奮\\n\\n23 00:01:30,600 --> 00:01:34,500 如果你知道很接近這個里程碑,你一定會想做第十萬條條目的創建者\\n\\n24 00:01:34,600 --> 00:01:37,400 我們都會很想知道那條是第十萬條條目\\n\\n25 00:01:37,500 --> 00:01:39,700 這是維基人另一個喜好\\n\\n26 00:01:39,800 --> 00:01:46,600 以及在這數年我在這個世界中會見了很多維基人,在印度、\\n\\n27 00:01:46,700 --> 00:01:53,700 中國、南美洲,真的是在全世界,我到處旅遊及與人們談天\\n\\n28 00:01:53,800 --> 00:01:57,500 在維基百科小組一條常見問題是 \\n\\n29 00:01:57,600 --> 00:02:01,500 「你會如何與其他地方的維基人比較\\n\\n30 00:02:01,600 --> 00:02:04,500 例如和巴西維基人有甚麼分別?」\\n\\n31 00:02:04,600 --> 00:02:06,600 我的回答是「沒有太大分別」\\n\\n32 00:02:06,700 --> 00:02:10,800 事實上,世界上的人大同小異\\n\\n33 00:02:10,900 --> 00:02:13,500 即使我們有非常不同的文化\\n\\n34 00:02:13,600 --> 00:02:18,500 很多不同種類的人,但我們都會分享相同的經歷\\n\\n35 00:02:18,600 --> 00:02:20,700 我們做了同一樣的事情\\n\\n36 00:02:20,800 --> 00:02:23,900 我認為任何人都有回退過相同的破壞。\\n\\n37 00:02:24,000 --> 00:02:25,500 不論你在那個語言上編輯\\n\\n38 00:02:25,500 --> 00:02:30,500 亦不論你的維基有五百條條目或是五十萬條條目\\n\\n39 00:02:30,600 --> 00:02:34,000 又或是三百萬條,你都會看到有些人過來,\\n\\n40 00:02:34,000 --> 00:02:39,500 並把整篇精彩條目用兩個字或是一些咒罵詞語或是相似的東西來取代整篇條目\\n\\n41 00:02:39,600 --> 00:02:42,700 當然,你只需要回退並封禁\\n\\n42 00:02:42,800 --> 00:02:46,600 這就是維基人的一部份,我們大家都經歷過有趣的爭議\\n\\n43 00:02:46,600 --> 00:02:46,800 關於條目的命名\\n\\n44 00:02:46,800 --> 00:02:53,200 如何稱呼在波蘭的一條河流,如何命名這個\\n\\n45 00:02:53,300 --> 00:02:56,300 如何命名那個,這是我們要指出的爭議\\n\\n46 00:02:56,300 --> 00:02:58,400 甚麼是深思熟慮的走向。\\n\\n47 00:02:58,500 --> 00:03:02,500 因此我可以在世界上找到同一類人做同一類工作\\n\\n48 00:03:02,600 --> 00:03:07,500 因為我們有同樣的經歷、價值觀及理想\\n\\n49 00:03:07,500 --> 00:03:12,600 我們的工作,就是一部給在這個星球上所有人的自由百科全書\\n\\n50 00:03:12,700 --> 00:03:15,900 由深思熟慮的人寫,他們嘗試寫出中立的內容\\n\\n51 00:03:16,000 --> 00:03:19,800 嘗試誠實,嘗試帶出自由的資訊\\n\\n52 00:03:19,900 --> 00:03:23,800 我今天依然興奮,因為這好像我很早開始時的樣子。\\n\\n53 00:03:23,800 --> 00:03:25,500 我們還有大量工作要完成。\\n\\n54 00:03:25,600 --> 00:03:28,800 今天是一個很好的時間給我們回顧\\n\\n55 00:03:28,800 --> 00:03:32,800 我們在做些甚麼,以及我也不知道了!\\n\\n56 00:03:32,900 --> 00:03:33,500 你可以見我是怎樣興奮的。\\n\\n57 00:03:33,600 --> 00:03:37,800 我只想說,非常多謝你們所作的一切\\n\\n58 00:03:37,900 --> 00:03:42,700 非常多謝你今天來到這裡與其他人會面\\n\\n59 00:03:42,800 --> 00:03:48,600 請幫我一個忙,在人群中找一個你從未見面過的人\\n\\n60 00:03:48,600 --> 00:03:50,100 介紹你自己並說\\n\\n61 00:03:50,100 --> 00:03:52,200 \"你最喜歡編輯甚麼呢?\"\\n\\n62 00:03:52,300 --> 00:03:54,500 一同建立這個社群\\n\\n63 00:03:54,500 --> 00:03:56,700 這就是在一群朋友中做一些有用的東西\\n\\n64 00:03:56,800 --> 00:04:01,900 所以,再次多謝以及維基百科生日快樂\\n\\n65 00:04:03,200 --> 00:04:12,900 維基百科分享知識總和的第十年。',\n", + " 'bytes': 5692,\n", + " 'sha1': '1tkb8319hzn8qr6idcqg5uyim9v5mwh',\n", + " 'parent_id': 48144082,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 50821980,\n", + " 'timestamp': '2011-02-26T18:41:36Z',\n", + " 'user': {'id': 246324, 'text': 'Toliño'},\n", + " 'page': {'id': 12657884,\n", + " 'title': 'WalesAnniversaryAddress.ogv.gl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 Ola a todos e benvidos ó décimo aniversario da Wikipedia.\\n\\n2 00:00:10,510 --> 00:00:15,400 É un día moi emocionante para todos os membros da comunidade en todo o mundo.\\n\\n3 00:00:15,410 --> 00:00:18,400 Ultimamente estiven adicando bastante tempo a pensar na historia da Wikipedia,\\n\\n4 00:00:18,410 --> 00:00:23,200 de onde vimos e todo o que atravesamos para chegar a onde estamos hoxe.\\n\\n5 00:00:23,210 --> 00:00:28,100 Lembro a primeira vez que editei a Wikipedia,\\n\\n6 00:00:28,100 --> 00:00:30,100 que foi o primeiro día que existiu a Wikipedia,\\n\\n7 00:00:30,100 --> 00:00:32,700 e eu premín en \"editar\", e escribín \"Hello, world!\",\\n\\n8 00:00:32,750 --> 00:00:35,500 e logo gardeino e esas foron as primeiras palabras na Wikipedia.\\n\\n9 00:00:35,600 --> 00:00:38,800 E penso sobre o que estaba por vir e como eu o descoñecía totalmente,\\n\\n10 00:00:38,900 --> 00:00:42,400 pero co pasar dos anos tivemos unha boa morea de boas experiencias.\\n\\n11 00:00:42,500 --> 00:00:46,200 Tiven a oportunidade de viaxar arredor do mundo e reunirme con moitos de vós en persoa.\\n\\n12 00:00:46,300 --> 00:00:49,950 Lembro... moitas cousas véñenme á mente.\\n\\n13 00:00:50,050 --> 00:00:57,300 Lembro a primeira xuntanza para a Fundación Wikimedia, cando me reunín en París con Florence,\\n\\n14 00:00:57,400 --> 00:01:00,800 da Wikipedia francesa, e Angela, da Wikipedia inglesa, os primeiros membros da comisión,\\n\\n15 00:01:00,900 --> 00:01:05,000 e tivemos unha xuntanza para comezar a discutir a creación da Fundación,\\n\\n16 00:01:05,050 --> 00:01:08,800 como obteriamos os cartos para facer andar este proxecto, como poderiamos crecer \\n\\n17 00:01:08,800 --> 00:01:09,900 e como sería o futuro.\\n\\n18 00:01:10,000 --> 00:01:15,800 Lémbrome sentado á beira do río en Berlín, con wikipedistas alemáns,\\n\\n19 00:01:15,900 --> 00:01:21,400 esperando que fose escrito o artigo número cen mil,\\n\\n20 00:01:21,500 --> 00:01:24,800 así que sentamos fora e estivemos actualizando as páxinas dos nosos ordenadores para velo\\n\\n21 00:01:25,000 --> 00:01:27,100 \"Oh, van noventa e nove mil novecentas noventa e sete\".\\n\\n22 00:01:27,200 --> 00:01:30,500 Supoño que todas as Wikipedias pasan por este proceso de identificación de fitos, que resulta excitante,\\n\\n23 00:01:30,600 --> 00:01:34,500 que nos aproxima e, por suposto, unha vez acadados os cen mil\\n\\n24 00:01:34,600 --> 00:01:37,400 espertou a gran discusión sobre que artigo foi realmente o número cen mil,\\n\\n25 00:01:37,500 --> 00:01:39,700 outro gran pasatempo dos wikipedistas.\\n\\n26 00:01:39,800 --> 00:01:46,600 Ó longo dos anos tiven moitas oportunidades de moverme ó longo do planeta, estiven con wikipedistas na India,\\n\\n27 00:01:46,700 --> 00:01:53,700 na China, en Sudamérica, en realmente todos os lugares do mundo, e a medida que viaxaba polo mundo e falaba coa xente\\n\\n28 00:01:53,800 --> 00:01:57,500 unha das preguntas máis frecuentes que me fixeron os grupos de Wikimedia foi \\n\\n29 00:01:57,600 --> 00:02:01,500 \"Como nos ves en comparación con outros wikipedistas do mundo,\\n\\n30 00:02:01,600 --> 00:02:04,500 que nos diferencia dos wikipedistas do Brasil, por exemplo?\"\\n\\n31 00:02:04,600 --> 00:02:06,600 E todo o que lles podo dicir é \"Non hai grandes diferenzas\".\\n\\n32 00:02:06,700 --> 00:02:10,800 Polo que se ve, facemos o esforzo por formarmos parte do mesmo en todo o mundo,\\n\\n33 00:02:10,900 --> 00:02:13,500 aínda que veñamos de moi diferentes culturas\\n\\n34 00:02:13,600 --> 00:02:18,500 e sexamos moi distintos como persoas, pero tamén partillamos as mesmas experiencias\\n\\n35 00:02:18,600 --> 00:02:20,700 que temos vivido sobre as mesmas cousas.\\n\\n36 00:02:20,800 --> 00:02:23,900 Creo que todo o mundo reverteu o mesmo tipo de vandalismo.\\n\\n37 00:02:24,000 --> 00:02:25,500 Non importa en que idioma esteas traballando,\\n\\n38 00:02:25,500 --> 00:02:30,500 non importa se a túa wiki ten cincocentos artigos ou cincocentos mil\\n\\n39 00:02:30,600 --> 00:02:34,000 ou tres millóns, sempre hai alguén que aparece\\n\\n40 00:02:34,000 --> 00:02:39,500 e substitúe todo un artigo estupendo por dúas palabras groseiras ou algo así.\\n\\n41 00:02:39,600 --> 00:02:42,700 E, por suposto, ti revértelo e bloqueas a ese vándalo e a calquera outro.\\n\\n42 00:02:42,800 --> 00:02:46,600 Iso é parte do que significa ser wikipedista, todos nós tivemos conversacións realmente interesantes\\n\\n43 00:02:46,600 --> 00:02:46,800 sobre os convenios para nomear ás cousas,\\n\\n44 00:02:46,800 --> 00:02:53,200 como chamar a un río de Polonia, como imos chamar a isto,\\n\\n45 00:02:53,300 --> 00:02:56,300 como imos chamar a estoutro, cales controversias temos que deixar de lado\\n\\n46 00:02:56,300 --> 00:02:58,400 e cales nos van facer avanzar.\\n\\n47 00:02:58,500 --> 00:03:02,500 Así que ó longo do mundo teño atopado sempre o mesmo tipo de persoa facendo o mesmo tipo de traballo,\\n\\n48 00:03:02,600 --> 00:03:07,500 porque compartimos as mesmas experiencias. E tamén compartimos os mesmos valores, os mesmos ideais,\\n\\n49 00:03:07,500 --> 00:03:12,600 as cousas polas que estamos traballando: unha enciclopedia libre para cada persoa do planeta,\\n\\n50 00:03:12,700 --> 00:03:15,900 escrita por persoas intelixentes, que intentan ser neutrais\\n\\n51 00:03:16,000 --> 00:03:19,800 que intentan ser honradas, que intentan ofrecer información libre.\\n\\n52 00:03:19,900 --> 00:03:23,800 Isto é para min tan emocionante hoxe como o era nos primeiros días, cando comecei.\\n\\n53 00:03:23,800 --> 00:03:25,500 Aínda temos un duro traballo por facer.\\n\\n54 00:03:25,600 --> 00:03:28,800 Hoxe é un gran momento para reflexionar sobre onde temos estado,\\n\\n55 00:03:28,800 --> 00:03:32,800 para pensar sobre onde queremos chegar e, uou!, non sei \\n\\n56 00:03:32,900 --> 00:03:33,500 se se nota o emocionante que isto é para min.\\n\\n57 00:03:33,600 --> 00:03:37,800 Só quero dicir: Moitas grazas por todo o traballo que tes feito,\\n\\n58 00:03:37,900 --> 00:03:42,700 moitas grazas por vires aquí hoxe a encontrarte con outras persoas.\\n\\n59 00:03:42,800 --> 00:03:48,600 Pídoche un favor: busca a alguén entre os asistentes co que nunca falaras en persoa,\\n\\n60 00:03:48,600 --> 00:03:50,100 preséntate e dille:\\n\\n61 00:03:50,100 --> 00:03:52,200 \"Ola, que che gustaría editar?\"\\n\\n62 00:03:52,300 --> 00:03:54,500 Imos construír esta comunidade,\\n\\n63 00:03:54,500 --> 00:03:56,700 está composta dun fato de amigos que fan algo útil.\\n\\n64 00:03:56,800 --> 00:04:01,900 Por tanto, grazas de novo e feliz aniversario da Wikipedia.\\n\\n65 00:04:03,200 --> 00:04:12,900 Wikipedia, 10 anos compartindo a suma de todo o coñecemento.',\n", + " 'bytes': 6557,\n", + " 'sha1': 'oa2rc273x07as0fhaioked1v49whkh1',\n", + " 'parent_id': 50821719,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48163203,\n", + " 'timestamp': '2011-01-11T19:24:57Z',\n", + " 'user': {'id': 31103, 'text': 'Bjankuloski06en'},\n", + " 'page': {'id': 12665297,\n", + " 'title': 'WalesAnniversaryAddress.ogv.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:07,000 --> 00:00:10,500 Здраво на сите и добредојдовте на десетгодишнината на Википедија. 2 00:00:...'\",\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 Здраво на сите и добредојдовте на десетгодишнината на Википедија.\\n\\n2 00:00:10,510 --> 00:00:15,400 Ова е мошне возбудлив ден за сите нас во заедницата и за сите ширум светот.\\n\\n3 00:00:15,410 --> 00:00:18,400 Во последно време доста размислував за историјата на Википедија,\\n\\n4 00:00:18,410 --> 00:00:23,200 како започнавме, и низ што сè поминавме за да дојдеме кајшто сме сега.\\n\\n5 00:00:23,210 --> 00:00:28,100 Се сеќавам на првиот пат кога уредив страница на Википедија,\\n\\n6 00:00:28,100 --> 00:00:30,100 - на првиот ден од нејзиното постоење.\\n\\n7 00:00:30,100 --> 00:00:32,700 стисав на „Уреди“, и напишав „Hello, world!“\\n\\n8 00:00:32,750 --> 00:00:35,500 притиснав „Зачувај“ и тоа беа првите зборови на Википедија.\\n\\n9 00:00:35,600 --> 00:00:38,800 И се подразмислив за тоа што ќе следи, но секако, немав претстава што ќе биде од сето тоа\\n\\n10 00:00:38,900 --> 00:00:42,400 но со текот на годините доживеав прекрасни нешта\\n\\n11 00:00:42,500 --> 00:00:46,200 Имав прилика да го пропатувам светот и да се запознаам многумина од вас лично\\n\\n12 00:00:46,300 --> 00:00:49,950 Кога ќе се присетам... неколку нешта ми оставија особен впечаток.\\n\\n13 00:00:50,050 --> 00:00:57,300 Се сеќавам на првиот состанок на одборот на Фондацијата Викимедија, кога се сретнав во Париз со Флоранс\\n\\n14 00:00:57,400 --> 00:01:00,800 од француската и Анџела од англиската Википедија - првите членови на одборот\\n\\n15 00:01:00,900 --> 00:01:05,000 и одржавме состанок за да видиме како да ја изградиме Фондацијата\\n\\n16 00:01:05,050 --> 00:01:08,800 како ќе дојдеме до средствата што ни требаат за проектот, како да се развиваме\\n\\n17 00:01:08,800 --> 00:01:09,900 и како изгледа нашата иднина.\\n\\n18 00:01:10,000 --> 00:01:15,800 Се сеќавам како седевме на кејот во Берлин со википедијанците од Германија,\\n\\n19 00:01:15,900 --> 00:01:21,400 со нетрпение чекајќи некој да ја напише стоилјадитата статија\\n\\n20 00:01:21,500 --> 00:01:24,800 и така седевме надвор и упорно на тастатурите стискавме „Превчитај“ за да видиме кога ќе бидне\\n\\n21 00:01:25,000 --> 00:01:27,100 \"Еј, деведесет и девет илјади деветсто деведесет и седум\"\\n\\n22 00:01:27,200 --> 00:01:30,500 Претпоставувам дека сите Википедии поминале низ овој јубилеен процес - кога возбудата расте\\n\\n23 00:01:30,600 --> 00:01:34,500 како што се наближува бројката. И секако, кога конечно се појави стоилјадарката\\n\\n24 00:01:34,600 --> 00:01:37,400 се отвори голема расправа за тоа која е впрочем стоилјадитата статија\\n\\n25 00:01:37,500 --> 00:01:39,700 - уште една фина википедијанска разонода\\n\\n26 00:01:39,800 --> 00:01:46,600 Во текот на изминатите години имав можност да посетам многу места во светот. Се сретнав со википедијанците во Индија\\n\\n27 00:01:46,700 --> 00:01:53,700 во Кина, во Јужна Америка - баш низ целиот свет - и при посетата\\n\\n28 00:01:53,800 --> 00:01:57,500 едно од најчестите прашања што ми ги поставуваат локалните групи гласи:\\n\\n29 00:01:57,600 --> 00:02:01,500 „Какви сме во споредба со другите википедијанци низ светот\\n\\n30 00:02:01,600 --> 00:02:04,500 како се разликуваме, на пример, од википедијанците во Бразил?“\\n\\n31 00:02:04,600 --> 00:02:06,600 а мојот одговор е: „Па, нема некоја разлика“.\\n\\n32 00:02:06,700 --> 00:02:10,800 Заклучокот е дека сите сме исти\\n\\n33 00:02:10,900 --> 00:02:13,500 иако припаѓаме на мошне различни култури\\n\\n34 00:02:13,600 --> 00:02:18,500 и доста се разликуваме како поединци, сепак сите ние ги имаме истите заеднички доживувања\\n\\n35 00:02:18,600 --> 00:02:20,700 сите сме поминале низ истото.\\n\\n36 00:02:20,800 --> 00:02:23,900 Мислам дека сите ние сме враќале исти вандализми.\\n\\n37 00:02:24,000 --> 00:02:25,500 Без разлика на кој јазик работите\\n\\n38 00:02:25,500 --> 00:02:30,500 и без разлика дали вашето вики има петстотини, петсто илјади\\n\\n39 00:02:30,600 --> 00:02:34,000 или пак три милиони статии - сепак ќе се најде некој што ќе се уфрли\\n\\n40 00:02:34,000 --> 00:02:39,500 и ќе замени една цела прекрасна статија со погрдни зборови или нешто слично.\\n\\n41 00:02:39,600 --> 00:02:42,700 И секако, едноставно ја враќате, го блокирате вандалот, и сетоа тоа.\\n\\n42 00:02:42,800 --> 00:02:46,600 Тоа е дел од википедијанството. Сите ние сме воделе интересни разговори\\n\\n43 00:02:46,600 --> 00:02:46,800 расправајќи за тоа како да ги нарекуваме нештата\\n\\n44 00:02:46,800 --> 00:02:53,200 како ќе ја именуваме некоја река во Полска, како да го наречеме ова или она\\n\\n45 00:02:53,300 --> 00:02:56,300 кои се спорните елементи што треба да ги решиме\\n\\n46 00:02:56,300 --> 00:02:58,400 и како да одиме напред со внимание и со умисла.\\n\\n47 00:02:58,500 --> 00:03:02,500 Така, низ целиот свет ги среќавам истите типови на луѓе што работат на истото\\n\\n48 00:03:02,600 --> 00:03:07,500 бидејќи сите ние имаме едно исто заедничко доживување. Имаме исти вредности, исти идеали\\n\\n49 00:03:07,500 --> 00:03:12,600 за она кон што се стремиме – слободна и бесплатна енциклопедија за секој на планетава\\n\\n50 00:03:12,700 --> 00:03:15,900 што ја пишуваат навистина пресметливи и внимателни луѓе - луѓе кои настојуваат да бидат неутрални\\n\\n51 00:03:16,000 --> 00:03:19,800 да бидат чесни, и да понудат слободни и бесплатни информации.\\n\\n52 00:03:19,900 --> 00:03:23,800 И ден денес ова ми е возбудливо како што ми беше на самиот почеток.\\n\\n53 00:03:23,800 --> 00:03:25,500 Ни преостанува уште многу работа.\\n\\n54 00:03:25,600 --> 00:03:28,800 Денешниот ден претставува одлична прилика да размислиме што досега сме направиле\\n\\n55 00:03:28,800 --> 00:03:32,800 што треба да направиме, и...леле, не знам\\n\\n56 00:03:32,900 --> 00:03:33,500 можете да забележите колку се возбудувам.\\n\\n57 00:03:33,600 --> 00:03:37,800 И сакам да искажам голема благодарност за сиот ваш труд\\n\\n58 00:03:37,900 --> 00:03:42,700 навистина ви благодарам што дојдовте да се запознаете со другите.\\n\\n59 00:03:42,800 --> 00:03:48,600 Би ве замолил да најдете некој од толпата, некој што лично не го познавате\\n\\n60 00:03:48,600 --> 00:03:50,100 да се претставите, и да речете:\\n\\n61 00:03:50,100 --> 00:03:52,200 „А што би сакал да уредуваш?“\\n\\n62 00:03:52,300 --> 00:03:54,500 Да ја изградиме оваа заедница\\n\\n63 00:03:54,500 --> 00:03:56,700 па сепак, ова е една дружина што прави нешто корисно.\\n\\n64 00:03:56,800 --> 00:04:01,900 Значи, уште еднаш ви благодарам, и нека ѝ е честит роденденот на Википедија.\\n\\n<!--65 00:04:03,200 -*-> 00:04:12,900 Wikipedia 10 years of sharing the sum of all knowledge.-->',\n", + " 'bytes': 9641,\n", + " 'sha1': 'og71qku2rltnj6odkyb44lpodw9g80n',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48180809,\n", + " 'timestamp': '2011-01-12T08:43:37Z',\n", + " 'user': {'id': 126352, 'text': 'Lucien leGrey'},\n", + " 'page': {'id': 12671168,\n", + " 'title': 'WalesAnniversaryAddress.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Corrections...',\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 Hola a todos y bienvenidos al décimo aniversario de Wikipedia.\\n\\n2 00:00:10,510 --> 00:00:15,400 Es un día realmente excitante para todos los miembros de la comunidad a lo largo del mundo.\\n\\n3 00:00:15,410 --> 00:00:18,400 He estado dedicando un montón de tiempo últimamente pensando sobre la historia de Wikipedia\\n\\n4 00:00:18,410 --> 00:00:23,200 de dónde venimos y todas las cosas que hemos vivido hasta llegar al momento actual.\\n\\n5 00:00:23,210 --> 00:00:28,100 Recuerdo la primera vez que edité Wikipedia,\\n\\n6 00:00:28,100 --> 00:00:30,100 el primer día de existencia de Wikipedia,\\n\\n7 00:00:30,100 --> 00:00:32,700 cuando hice clic en \"editar\" y escribí \"¡Hola, mundo!\",\\n\\n8 00:00:32,750 --> 00:00:35,500 y di a \"guardar\" y ésas fueron las primeras palabras de Wikipedia.\\n\\n9 00:00:35,600 --> 00:00:38,800 Y pensé en lo que vendrá y por supuesto no lo sé\\n\\n10 00:00:38,900 --> 00:00:42,400 pero a lo largo de los años he tenido muchas experiencias maravillosas\\n\\n11 00:00:42,500 --> 00:00:46,200 He tenido la oportunidad de recorrer el mundo y encontrarme con muchos de vosotros en persona\\n\\n12 00:00:46,300 --> 00:00:49,950 Recuerdo... muchas cosas me vienen a la cabeza.\\n\\n13 00:00:50,050 --> 00:00:57,300 Recuerdo el primer encuentro de la Junta de la Fundación Wikimedia, cuando conocí en París a Florence\\n\\n14 00:00:57,400 --> 00:01:00,800 de Wikipedia en francés y Angela de Wikipedia en inglés, los primeros miembros de la Junta\\n\\n15 00:01:00,900 --> 00:01:05,000 y tuvimos un encuentro para discutir la creación de la Fundación\\n\\n16 00:01:05,050 --> 00:01:08,800 cómo obtendríamos el dinero para mantener los proyectos, cómo podríamos crecer\\n\\n17 00:01:08,800 --> 00:01:09,900 y cómo pintaba el futuro.\\n\\n18 00:01:10,000 --> 00:01:15,800 Recuerdo sentarme en la orilla del río en Berlín con wikipedistas alemanes\\n\\n19 00:01:15,900 --> 00:01:21,400 esperando, deseando ver escrito el artículo 100.000\\n\\n20 00:01:21,500 --> 00:01:24,800 así que nos sentamos fuera y apretamos \"recargar\" continuamente para verlo\\n\\n21 00:01:25,000 --> 00:01:27,100 \"Oh, es el 99.997\"\\n\\n22 00:01:27,200 --> 00:01:30,500 Creo que cada Wikipedia ha recorrido hitos similares, cuando estás espectante\\n\\n23 00:01:30,600 --> 00:01:34,500 acercándote, y, por supuesto, cuando conseguimos el artículo 100.000\\n\\n24 00:01:34,600 --> 00:01:37,400 tuvimos la gran discusión sobre qué artículo había llegado a ese número\\n\\n25 00:01:37,500 --> 00:01:39,700 otra gran afición de los wikipedistas.\\n\\n26 00:01:39,800 --> 00:01:46,600 Y a lo largo de los años he tenido muchas oportunidades de recorrer el mundo, encontrarme con wikipedistas en la India\\n\\n27 00:01:46,700 --> 00:01:53,700 en China, en Sudamérica, realmente de todo el mundo, y al viajar y hablar con la gente,\\n\\n28 00:01:53,800 --> 00:01:57,500 una de las preguntas más habituales de los grupos de Wikipedia es:\\n\\n29 00:01:57,600 --> 00:02:01,500 \"¿Cómo nos ves en comparación con otros grupos de wikipedistas,\\n\\n30 00:02:01,600 --> 00:02:04,500 qué nos diferencia de los wikipedistas de Brasil, por ejemplo?\"\\n\\n31 00:02:04,600 --> 00:02:06,600 y lo que siempre digo es \"No hay mucha diferencia\".\\n\\n32 00:02:06,700 --> 00:02:10,800 Resulta que tendemos a ser muy similares en todo el mundo\\n\\n33 00:02:10,900 --> 00:02:13,500 incluso si venimos de diferentes culturas\\n\\n34 00:02:13,600 --> 00:02:18,500 muchos tipos diferentes de personas, pero que compartimos las mismas experiencias\\n\\n35 00:02:18,600 --> 00:02:20,700 y hemos pasado por las mismas cosas.\\n\\n36 00:02:20,800 --> 00:02:23,900 Pienso que todo el mundo ha revertido el mismo tipo de vandalismo.\\n\\n37 00:02:24,000 --> 00:02:25,500 No importa en qué lengua trabajes\\n\\n38 00:02:25,500 --> 00:02:30,500 o si tu wiki tiene 5.000 artículos o 500.000\\n\\n39 00:02:30,600 --> 00:02:34,000 o tres millones, siempre encontrarás a alguien que pasa\\n\\n40 00:02:34,000 --> 00:02:39,500 y reemplaza entero un maravilloso artículo por dos insultos o algo así.\\n\\n41 00:02:39,600 --> 00:02:42,700 Y, por supuesto, reviertes la edición y bloqueas al vándalo, y ya está.\\n\\n42 00:02:42,800 --> 00:02:46,600 Éso es parte de ser un wikipedista. Todos tenemos conversaciones realmente interesantes\\n\\n43 00:02:46,600 --> 00:02:46,800 sobre los convenios de títulos de cosa\\n\\n44 00:02:46,800 --> 00:02:53,200 cómo llamamos a un río en Polonia, cómo vamos a titular esto\\n\\n45 00:02:53,300 --> 00:02:56,300 cómo llamar a aquéllo, cuáles son las controversias que tenemos que comprender\\n\\n46 00:02:56,300 --> 00:02:58,400 y cuál es el camino correcto para continuar.\\n\\n47 00:02:58,500 --> 00:03:02,500 Así que en todo el mundo me encuentro con los mismos tipos de personas haciendo el mismo tipo de trabajo\\n\\n48 00:03:02,600 --> 00:03:07,500 porque compartimos las mismas experiencias. Y también compartimos los mismos valores, los mismos ideales\\n\\n49 00:03:07,500 --> 00:03:12,600 aquello por lo que trabajamos: una enciclopedia libre para todas las personas del planeta\\n\\n50 00:03:12,700 --> 00:03:15,900 escrita por gente considerada, que intenta ser neutral\\n\\n51 00:03:16,000 --> 00:03:19,800 intenta ser honesta, intenta aportar información libre.\\n\\n52 00:03:19,900 --> 00:03:23,800 Es tan emocionante para mí hoy como lo fue en los primeros días que empecé.\\n\\n53 00:03:23,800 --> 00:03:25,500 Todavía nos queda mucho por hacer.\\n\\n54 00:03:25,600 --> 00:03:28,800 Hoy es el gran momento para reflexionar sobre dónde hemos estado\\n\\n55 00:03:28,800 --> 00:03:32,800 para pensar dónde vamos y, bueno, no sé\\n\\n56 00:03:32,900 --> 00:03:33,500 estáis viendo cómo me voy emocionando.\\n\\n57 00:03:33,600 --> 00:03:37,800 Sólo quiero decir: Muchas gracias por todo lo que habéis hecho\\n\\n58 00:03:37,900 --> 00:03:42,700 muchas gracias por venir aquí hoy para encontraros con otras personas.\\n\\n59 00:03:42,800 --> 00:03:48,600 Hacedme un favor y buscar a alguien con el que no os hayáis encontrado antes en persona\\n\\n60 00:03:48,600 --> 00:03:50,100 presentaros y decid:\\n\\n61 00:03:50,100 --> 00:03:52,200 \"Hey, ¿qué te gustaría editar?\"\\n\\n62 00:03:52,300 --> 00:03:54,500 Construyamos esta comunidad\\n\\n63 00:03:54,500 --> 00:03:56,700 todo se centra en un grupo de amigos que hacen algo útil.\\n\\n64 00:03:56,800 --> 00:04:01,900 Así que, gracias de nuevo y feliz cumpleaños a Wikipedia.\\n\\n65 00:04:03,200 --> 00:04:12,900 Wikipedia 10 años de compartir la suma de todo el conocimiento.',\n", + " 'bytes': 6410,\n", + " 'sha1': '4qhckyjijf3fjv6jp4jxlnhbs97pt8p',\n", + " 'parent_id': 48180543,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48182176,\n", + " 'timestamp': '2011-01-12T09:47:36Z',\n", + " 'user': {'id': 1177211, 'text': 'Waihorace'},\n", + " 'page': {'id': 12671883,\n", + " 'title': 'WalesAnniversaryAddress.ogv.yue.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'translate to yue (zh-yue)',\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 大家好,歡迎嚟到維基百科嘅十周年慶祝。\\n\\n2 00:00:10,510 --> 00:00:15,400 呢個真係一個社群裡同埋全世界嘅人興奮嘅日子。\\n\\n3 00:00:15,410 --> 00:00:18,400 我用咗好多時間去研究維基百科嘅歷史,\\n\\n4 00:00:18,410 --> 00:00:23,200 同埋我地喺係邊到嚟同埋我地今日係邊。\\n\\n5 00:00:23,210 --> 00:00:28,100 我記得我第一次編輯維基百科,\\n\\n6 00:00:28,100 --> 00:00:30,100 係維基百科成立果日,\\n\\n7 00:00:30,100 --> 00:00:32,700 我咁左「編輯」制,並打左\"Hello, world!\"(你好,世界),\\n\\n8 00:00:32,750 --> 00:00:35,500 並咁左「儲存」,呢個就係維基百科上面第一個字。\\n\\n9 00:00:35,600 --> 00:00:38,800 我都唔知道到底佢係咩嚟...\\n\\n10 00:00:38,900 --> 00:00:42,400 但係呢幾年我有好多好嘅經歷\\n\\n11 00:00:42,500 --> 00:00:46,200 我有機會去到世界唔同嘅地方,並同世界各地嘅人見面\\n\\n12 00:00:46,300 --> 00:00:49,950 我記得...係我嘅記憶中有幾件事\\n\\n13 00:00:50,050 --> 00:00:57,300 我記得第一次管理層聚會,我喺巴黎見左Florence,\\n\\n14 00:00:57,400 --> 00:01:00,800 一個法語維基百科編者同埋Angela,一個英文維基百科編者,佢地都係管理層成員\\n\\n15 00:01:00,900 --> 00:01:05,000 我們討論咗點去開始建立呢個基金會\\n\\n16 00:01:05,050 --> 00:01:08,800 我們點搵錢同我地可以點成長\\n\\n17 00:01:08,800 --> 00:01:09,900 同埋將來係點嘅。\\n\\n18 00:01:10,000 --> 00:01:15,800 我記得我同一啲德國維基人坐係柏林一條河流外面,有一所銀行,\\n\\n19 00:01:15,900 --> 00:01:21,400 我們係到等達到十萬條條目嘅里程碑\\n\\n20 00:01:21,500 --> 00:01:24,800 所以我們坐係外面並且不停咁重新整理\\n\\n21 00:01:25,000 --> 00:01:27,100 「現在係九萬九千九百九十七條」\\n\\n22 00:01:27,200 --> 00:01:30,500 我估計每個維基人經過呢個里程碑,都會好興奮\\n\\n23 00:01:30,600 --> 00:01:34,500 如果你知道好接近呢個里程碑,你一定會想做第十萬條條目嘅創建者\\n\\n24 00:01:34,600 --> 00:01:37,400 我們都會好想知道邊條係第十萬條條目\\n\\n25 00:01:37,500 --> 00:01:39,700 呢個係維基人另一個喜好\\n\\n26 00:01:39,800 --> 00:01:46,600 同埋呢幾年我係呢個世界裡面見咗好多維基人,係印度、\\n\\n27 00:01:46,700 --> 00:01:53,700 中國、南美洲,真係全世界,我到處旅遊同埋同人傾野\\n\\n28 00:01:53,800 --> 00:01:57,500 維基百科小組一條常見問題係 \\n\\n29 00:01:57,600 --> 00:02:01,500 「你會點同其他地方嘅維基人比較\\n\\n30 00:02:01,600 --> 00:02:04,500 例如同巴西維基人有咩分別?」\\n\\n31 00:02:04,600 --> 00:02:06,600 我嘅回答係「無太大分別」\\n\\n32 00:02:06,700 --> 00:02:10,800 事實上,世界上嘅人大同小異\\n\\n33 00:02:10,900 --> 00:02:13,500 即使我們有非常唔同嘅文化\\n\\n34 00:02:13,600 --> 00:02:18,500 好多唔同種類嘅人,但我地都會分享相同嘅經歷\\n\\n35 00:02:18,600 --> 00:02:20,700 我們做咗同一樣嘅事情\\n\\n36 00:02:20,800 --> 00:02:23,900 我認為任何人都有回退過相同嘅破壞。\\n\\n37 00:02:24,000 --> 00:02:25,500 不論你係邊個語言上編輯\\n\\n38 00:02:25,500 --> 00:02:30,500 亦不論你嘅維基有五百條條目定係五十萬條條目\\n\\n39 00:02:30,600 --> 00:02:34,000 又或者三百萬條,你都會見到有啲人過嚟,\\n\\n40 00:02:34,000 --> 00:02:39,500 並將成篇精彩條目用兩個字或者一啲咒罵詞語或者相似嘅野嚟取代成篇條目\\n\\n41 00:02:39,600 --> 00:02:42,700 當然,你只需要反轉同埋封禁\\n\\n42 00:02:42,800 --> 00:02:46,600 呢個就係維基人嘅一部份,我們大家都經歷過有趣嘅爭議\\n\\n43 00:02:46,600 --> 00:02:46,800 關於條目個名\\n\\n44 00:02:46,800 --> 00:02:53,200 點叫係波蘭嘅一條河流,點叫呢個\\n\\n45 00:02:53,300 --> 00:02:56,300 點叫果個,呢個就係我地要指出嘅爭議\\n\\n46 00:02:56,300 --> 00:02:58,400 咩係深思熟慮嘅走向。\\n\\n47 00:02:58,500 --> 00:03:02,500 因此我可以係世界上搵到同一類人做同一類野\\n\\n48 00:03:02,600 --> 00:03:07,500 因為我們有同樣嘅經歷、價值觀同理想\\n\\n49 00:03:07,500 --> 00:03:12,600 我地嘅工作,就係一本呢個星球上所有人都可以用嘅自由百科全書\\n\\n50 00:03:12,700 --> 00:03:15,900 由深思熟慮嘅人去寫,他們嘗試寫出中立嘅內容\\n\\n51 00:03:16,000 --> 00:03:19,800 嘗試誠實,嘗試帶出自由嘅資訊\\n\\n52 00:03:19,900 --> 00:03:23,800 我今天依然興奮,因為好似我很早開始時個樣。\\n\\n53 00:03:23,800 --> 00:03:25,500 我地仲有大量野要做。\\n\\n54 00:03:25,600 --> 00:03:28,800 今天係一個好好嘅時間俾我地回顧\\n\\n55 00:03:28,800 --> 00:03:32,800 我們係到做咩,同埋我都唔知啦!\\n\\n56 00:03:32,900 --> 00:03:33,500 你可以見我係幾咁興奮嘅。\\n\\n57 00:03:33,600 --> 00:03:37,800 我只想講,非常多謝你們所做嘅一切\\n\\n58 00:03:37,900 --> 00:03:42,700 非常多謝你今日嚟到呢度同其他人見面\\n\\n59 00:03:42,800 --> 00:03:48,600 請幫我一個忙,在人群裡面搵一個你從未見過面嘅人\\n\\n60 00:03:48,600 --> 00:03:50,100 介紹你自己,同埋講\\n\\n61 00:03:50,100 --> 00:03:52,200 \"你最鐘意編輯啲咩呢?\"\\n\\n62 00:03:52,300 --> 00:03:54,500 一齊建立呢個社群\\n\\n63 00:03:54,500 --> 00:03:56,700 呢個就係叫做喺一群朋友裡面做啲有用嘅野\\n\\n64 00:03:56,800 --> 00:04:01,900 所以,再次多謝,同埋維基百科生日快樂\\n\\n65 00:04:03,200 --> 00:04:12,900 維基百科分享知識總和嘅第十年。',\n", + " 'bytes': 5617,\n", + " 'sha1': '3paihihe2j0nochntoj9yg8zi6estpp',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48228570,\n", + " 'timestamp': '2011-01-13T21:15:43Z',\n", + " 'user': {'id': 1349782, 'text': 'Vierablu'},\n", + " 'page': {'id': 12681222,\n", + " 'title': 'WalesCalltoAction.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'hundred=hundreds',\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 Hello, I\\'m Jimmy Wales, founder of Wikipedia \\n\\n2 00:00:08,351 --> 00:00:11,487 and today we\\'re celebrating the 10th anniversary of Wikipedia.\\n\\n3 00:00:11,487 --> 00:00:16,467 It\\'s hard to imagine that it\\'s been ten years since I first edited Wikipedia.\\n\\n4 00:00:16,467 --> 00:00:23,472 I remember that first day. I clicked on \"Edit\" and I wrote \"Hello World\" and that was the beginning of Wikipedia and all the things that have come since then.\\n\\n5 00:00:23,472 --> 00:00:27,821 Today we\\'ve got millions of articles in hundreds of languages.\\n\\n6 00:00:27,821 --> 00:00:33,1 These days about 400 million people a month visit the website.\\n\\n7 00:00:33,1 --> 00:00:40,924 and that\\'s just an astounding thing to have happened. If you really think about the impact on our culture it\\'s staggering.\\n\\n8 00:00:41,032 --> 00:00:43,609 And it\\'s all thanks to you. I want to thank everybody who\\'s helped.\\n\\n9 00:00:43,610 --> 00:00:45,624 I want to thank all the people who\\'ve edited Wikipedia, \\n\\n10 00:00:45,624 --> 00:00:47,510 who\\'ve contributed to this great knowledge base.\\n\\n11 00:00:45,624 --> 00:00:50,101 I want to thank everybody who\\'s reading Wikipedia,\\n\\n12 00:00:50,102 --> 00:00:52,800 who\\'s really engaging with ideas and knowledge.\\n\\n13 00:00:52,801 --> 00:00:55,107 That\\'s what we made it for. We made it for you to read.\\n\\n14 00:00:55,108 --> 00:00:57,406 And I have a little bit of a call to action, a little request for everybody.\\n\\n15 00:00:57,406 --> 00:01:04,009 Even though that we\\'ve got millions of articles, even though we\\'re in hundreds of languages.\\n\\n16 00:01:04,009 --> 00:01:07,462 There is still a lot of work to do. So I want everybody out there, \\n\\n17 00:01:07,462 --> 00:01:10,051 if you\\'ve never edited Wikipedia, try it. Give a try. \\n\\n18 00:01:10,051 --> 00:01:13,736 Click on \"Edit\". You see some problems ? Fix it for us. We really appreciate it.\\n\\n19 00:01:14,151 --> 00:01:17,752 And... Well. Happy birthday Wikipedia.\\n\\n20 00:01:19,428 --> 00:01:26,49 Wikipedia 10 years of sharing the sum of all knowledge.',\n", + " 'bytes': 2057,\n", + " 'sha1': 'fsw9kdldm1vwybh7buuen1trk92hcmy',\n", + " 'parent_id': 48215764,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48209943,\n", + " 'timestamp': '2011-01-13T07:16:48Z',\n", + " 'user': {'id': 1177211, 'text': 'Waihorace'},\n", + " 'page': {'id': 12681266,\n", + " 'title': 'WalesCalltoAction.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:05,408 --> 00:00:08,351 你好,我是吉米·威爾斯,維基百科的創辦者。 2 00:00:08,351 --> 00:00:11,487 今天,我們都在慶祝維基...'\",\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 你好,我是吉米·威爾斯,維基百科的創辦者。\\n\\n2 00:00:08,351 --> 00:00:11,487 今天,我們都在慶祝維基百科十周年。\\n\\n3 00:00:11,487 --> 00:00:16,467 從我第一次編輯至今已經十年,這是難以想像的。\\n\\n4 00:00:16,467 --> 00:00:23,472 我記得第一日,我按了「編輯」並輸入了\"Hello world!\"(你好,世界)。這是維基百科的開始,所有東西都出來了。\\n\\n5 00:00:23,472 --> 00:00:27,821 今天,我們有上百萬的條目及上百種的語言。\\n\\n6 00:00:27,821 --> 00:00:33,1 這些日子平均每日有四億人來訪問,這是個網頁。\\n\\n7 00:00:33,1 --> 00:00:40,924 這些就是如果你認為這個文化在開始中時會發生的事件。\\n\\n8 00:00:41,032 --> 00:00:43,609 以及我很想多謝那些有幫忙的人,\\n\\n9 00:00:43,610 --> 00:00:45,624 有編輯過維基百科的人,\\n\\n10 00:00:45,624 --> 00:00:47,510 有貢獻過給這個很好的知識庫的人。\\n\\n11 00:00:45,624 --> 00:00:50,101 我想多謝所有正在閱讀維基百科的人,\\n\\n12 00:00:50,102 --> 00:00:52,800 那些用了維基百科知識及意念的人。\\n\\n13 00:00:52,801 --> 00:00:55,107 這就是我們造維基百科出來的目的:給你閱讀。\\n\\n14 00:00:55,108 --> 00:00:57,406 我有一個少少的全球呼籲,一個很少的要求:\\n\\n15 00:00:57,406 --> 00:01:04,009 即使我們有上百萬條條目,上百種語言,\\n\\n16 00:01:04,009 --> 00:01:07,462 我們還有大量工作要完成。所以,我想所有人站出來,\\n\\n17 00:01:07,462 --> 00:01:10,051 如果你未曾編輯維基百科,嘗試去做,\\n\\n18 00:01:10,051 --> 00:01:13,736 只需點「編輯」,見到有問題,修正它,我們會很感謝的。\\n\\n19 00:01:14,151 --> 00:01:17,752 好,維基百科,生日快樂。\\n\\n20 00:01:19,428 --> 00:01:26,49 維基百科分享知識總和的第十年。',\n", + " 'bytes': 1897,\n", + " 'sha1': '9wj3r8ifzp49v10sj8fzz5xolk52ij4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48347638,\n", + " 'timestamp': '2011-01-16T17:51:16Z',\n", + " 'user': {'id': 1425407, 'text': 'Antistress'},\n", + " 'page': {'id': 12682202,\n", + " 'title': 'WalesCalltoAction.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1 00:00:05,408 --> 00:00:08,351 Bonjour. Je m'appelle Jimmy Wales, je suis le fondateur de Wikipédia,\\n\\n2 00:00:08,351 --> 00:00:11,487 et aujourd'hui, nous célébrons le dixième anniversaire de Wikipédia.\\n\\n3 00:00:11,487 --> 00:00:16,467 Difficile d'imaginer que cela fait déjà dix ans que j'ai lancé ce projet.\\n\\n4 00:00:16,467 --> 00:00:23,472 Je me rappelle le premier jour. J'ai cliqué sur «\\xa0Modifier\\xa0» et écrit «\\xa0Bonjour le monde\\xa0» et c'était le début de Wikipédia et de tout ce qui a suivi.\\n\\n5 00:00:23,472 --> 00:00:27,821 Désormais nous avons des millions d'articles dans des centaines de langues.\\n\\n6 00:00:27,821 --> 00:00:33,1 Actuellement environ 400 millions de personnes visitent le site chaque mois\\n\\n7 00:00:33,1 --> 00:00:40,924 et c'est quelque chose de tout simplement stupéfiant. Si vous songez à l'impact sur notre culture c'est renversant...\\n\\n8 00:00:41,032 --> 00:00:43,609 et c'est entièrement grâce à vous. Je veux remercier tous ceux qui ont aidé.\\n\\n9 00:00:43,610 --> 00:00:45,624 Je veux remercier ceux qui ont édité Wikipédia, \\n\\n10 00:00:45,624 --> 00:00:47,510 contribuant à cette formidable base de connaissances.\\n\\n11 00:00:45,624 --> 00:00:50,101 Je veux remercier tous ceux qui consultent Wikipédia,\\n\\n12 00:00:50,102 --> 00:00:52,800 qui se soucient des idées et de la connaissance.\\n\\n13 00:00:52,801 --> 00:00:55,107 Nous l'avons créée pour ça. Pour que vous l'utilisiez.\\n\\n14 00:00:55,108 --> 00:00:57,406 J'ai une petite requête à adresser à chacun de vous.\\n\\n15 00:00:57,406 --> 00:01:04,009 Même si nous avons des millions d'articles, même si nous existons dans des centaines de langues.\\n\\n16 00:01:04,009 --> 00:01:07,462 il reste beaucoup de travail à accomplir. C'est pourquoi j'aimerais que ceux\\n\\n17 00:01:07,462 --> 00:01:10,051 qui n'y ont jamais contribué essayent.\\n\\n18 00:01:10,051 --> 00:01:13,736 Cliquez sur « Modifier ». Vous voyez des erreurs ? Corrigez-les. Rien ne nous fait plus plaisir.\\n\\n19 00:01:14,151 --> 00:01:17,752 Et donc... Bon anniversaire Wikipédia.\\n\\n20 00:01:19,428 --> 00:01:26,49 Wikipédia : 10 années de partage de la somme de nos connaissances.\",\n", + " 'bytes': 2154,\n", + " 'sha1': '85n9h0wrzj4k0nehk5xv8jlhi83gw4v',\n", + " 'parent_id': 48347523,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48229376,\n", + " 'timestamp': '2011-01-13T21:45:51Z',\n", + " 'user': {'id': 45724, 'text': 'Leinad'},\n", + " 'page': {'id': 12683377,\n", + " 'title': 'WalesCalltoAction.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'poprawna na wikipediową dewizę',\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 Cześć, nazywam się Jimmy Wales, jestem założycielem Wikipedii\\n\\n2 00:00:08,351 --> 00:00:11,487 i dzisiaj obchodzimy 10-lecie Wikipedii.\\n\\n3 00:00:11,487 --> 00:00:16,467 Trudno sobie wyobrazić, że to już dziesięć lat minęło, odkąd po raz pierwszy edytowałem Wikipedię.\\n\\n4 00:00:16,467 --> 00:00:23,472 Pamiętam ten pierwszy dzień. Kliknąłem „Edit” i napisałem „Hello World”, taki był początek Wikipedii i od tego wszystko się zaczęło.\\n\\n5 00:00:23,472 --> 00:00:27,821 Dzisiaj mamy miliony artykułów w setkach języków.\\n\\n6 00:00:27,821 --> 00:00:33,1 Obecnie około 400 milionów osób miesięcznie odwiedza tę stronę internetową\\n\\n7 00:00:33,1 --> 00:00:40,924 i to jest po prostu zdumiewającą rzeczą jaka się dzieje. Jeśli pomyślimy o wpływie [Wikipedii] na kulturę, jest on naprawdę oszałamiający.\\n\\n8 00:00:41,032 --> 00:00:43,609 I to wszystko dzięki Wam. Chcę podziękować wszystkim, którzy pomogli.\\n\\n9 00:00:43,610 --> 00:00:45,624 Chcę podziękować wszystkim ludziom, którzy edytowali Wikipedię\\n\\n10 00:00:45,624 --> 00:00:47,510 i którzy mają swój wkład w ten wielki zasób wiedzy.\\n\\n11 00:00:45,624 --> 00:00:50,101 Chcę podziękować wszystkim, którzy czytają Wikipedię\\n\\n12 00:00:50,102 --> 00:00:52,800 i którzy angażują się z pomysłami i wiedzą.\\n\\n13 00:00:52,801 --> 00:00:55,107 To wszystko czego dokonaliśmy, zrobiliśmy dla Ciebie byś mógł czytać.\\n\\n14 00:00:55,108 --> 00:00:57,406 Mam do każdego z was drobną prośbę, takie małe wezwanie do działania.\\n\\n15 00:00:57,406 --> 00:01:04,009 I choć mamy miliony artykułów i jesteśmy w setkach języków,\\n\\n16 00:01:04,009 --> 00:01:07,462 jest jeszcze wiele do zrobienia. Chcę więc zachęcić wszystkich,\\n\\n17 00:01:07,462 --> 00:01:10,051 którzy nigdy nie edytowali Wikipedii, spróbujcie to zrobić. Chociaż spróbujcie. \\n\\n18 00:01:10,051 --> 00:01:13,736 Kliknij „Edytuj”. Czy jest coś nie tak? Napraw to. Docenimy Twój wkład.\\n\\n19 00:01:14,151 --> 00:01:17,752 A więc... Wszystkiego najlepszego z okazji urodzin, Wikipedio!\\n\\n20 00:01:19,428 --> 00:01:26,49 Wikipedia, 10 lat dzielenia się sumą ludzkiej wiedzy.',\n", + " 'bytes': 2198,\n", + " 'sha1': '1whoonfosvvnbbiu2q97lnk8vklo9ql',\n", + " 'parent_id': 48228717,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48262413,\n", + " 'timestamp': '2011-01-14T20:33:36Z',\n", + " 'user': {'id': 211597, 'text': 'Lvova'},\n", + " 'page': {'id': 12685571,\n", + " 'title': 'WalesCalltoAction.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 Привет, я Джимми Уэльс, основатель Википедии,\\n\\n2 00:00:08,351 --> 00:00:11,487 и сегодня мы празднуем десятилетие Википедии.\\n\\n3 00:00:11,487 --> 00:00:16,467 Тяжело представить, что с тех пор, как я впервые правил Википедию, прошло десять лет.\\n\\n4 00:00:16,467 --> 00:00:23,472 Я помню тот первый день. Я нажал «править» и написал: «Hello World», и это было началом Википедии и всех произошедших вслед за этим вещей.\\n\\n5 00:00:23,472 --> 00:00:27,821 Сегодня у нас миллионы статей на сотнях языков.\\n\\n6 00:00:27,821 --> 00:00:33,1 В эти дни 400 миллионов людей ежемесячно посещают сайт,\\n\\n7 00:00:33,1 --> 00:00:40,924 и это лишь самое удивительное из произошедшего. Если вы по-настоящему думаете о влиянии на нашу культуру, это ошеломляет.\\n\\n8 00:00:41,032 --> 00:00:43,609 И это всё благодаря вам. Я хочу поблагодарить каждого, кто помог.\\n\\n9 00:00:43,610 --> 00:00:45,624 Я хочу поблагодарить всех людей, редактировавших Википедию,\\n\\n10 00:00:45,624 --> 00:00:47,510 вложившихся в это огромную базу знаний.\\n\\n11 00:00:45,624 --> 00:00:50,101 Я хочу поблагодарить каждого, кто читает Википедию,\\n\\n12 00:00:50,102 --> 00:00:52,800 кто действительно заинтересован в идеях и знании.\\n\\n13 00:00:52,801 --> 00:00:55,107 Для этого мы её и сделали. Мы сделали её для того, чтобы вы прочли.\\n\\n14 00:00:55,108 --> 00:00:57,406 И у меня есть небольшой призыв к действию, небольшая просьба к каждому.\\n\\n15 00:00:57,406 --> 00:01:04,009 Даже если уже существуют миллионы статей, даже если работа ведётся уже на сотнях языков —\\n\\n16 00:01:04,009 --> 00:01:07,462 существует ещё множество работы, которую ещё только предстоит сделать; и я хочу, чтобы каждый,\\n\\n17 00:01:07,462 --> 00:01:10,051 кто не редактировал Википедию, попробовал это. Сделайте попытку.\\n\\n18 00:01:10,051 --> 00:01:13,736 Нажмите «править». Вы видите ошибки? Исправьте их для нас. Мы действительно ценим это.\\n\\n19 00:01:14,151 --> 00:01:17,752 И… что ж. С днём рожденья, Википедия.\\n\\n20 00:01:19,428 --> 00:01:26,49 Википедия. 10 лет мы делимся накопленным знанием',\n", + " 'bytes': 3140,\n", + " 'sha1': 'qcmhnuuvnfnyul2lwo76htchn2z7own',\n", + " 'parent_id': 48226192,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 166726508,\n", + " 'timestamp': '2015-07-25T09:24:52Z',\n", + " 'user': {'id': 3520006, 'text': 'Bjankuloski06'},\n", + " 'page': {'id': 12686169,\n", + " 'title': 'Edit Button.ogv.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nЌе видите копче „уреди“\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nСтиснете го,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nвидете каде е текстот, и уредувајте\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nпотоа стиснете на „Зачувај“. Просто е.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nНајинтересното кај Википедија\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nе тоа што можете да менувате.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nНе ви треба ничија дозвола\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nа и лесно е.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nОтпрвин може да ви се чини сложено,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nно навистина не е тешко\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nМногумина не сфаќаат, како да е некое слепило.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nГи читаат статиите, а не го гледаат копчето „уреди“.\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nСтиснете го тоа копче и видете што ќе се случи.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n„Уреди“.\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nКога ќе се отворите кон нешто,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nќе почнете да уредувате,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nможе да ви се случат разни други нешта,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nи тоа е убавината на ова.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nМоже да биде само почеток,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nкако некоја покана за повеќе од животот.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nКога започнуваме некоја статија, не ни се допаѓа,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nбидејќи ви делува грда.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nНо почекајте само... неколку часа\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nи ќе видите како ќе прерасне во одлична статија.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nКопчето „уреди\": стиснете го, и изменете нешто\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nзачувајте ја страницата - и сте промениле нешто во светот.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n„Зачувај“.',\n", + " 'bytes': 2516,\n", + " 'sha1': 'h82eio3ivp84ea73zy83lndjc2eyzur',\n", + " 'parent_id': 48227864,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48228569,\n", + " 'timestamp': '2011-01-13T21:15:40Z',\n", + " 'user': {'id': 31103, 'text': 'Bjankuloski06en'},\n", + " 'page': {'id': 12686416,\n", + " 'title': 'Great Feeling.ogv.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,905 --> 00:00:03,204 Ааа, не, немам суперсили. 2 00:00:03,204 --> 00:00:05,990 Воопшто немам. 3 00:00:05,990 --> 00:00:...'\",\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nАаа, не, немам суперсили.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nВоопшто немам.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nСосема можете и вие.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nГо стиснав копчето,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nго зачував текстот,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nЕхааа!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nИ беше... возбудливо.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nШтотуку ја променив Википедија,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nдадов свој придонес.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nПрочитав напис во „Guardian“\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nза една интернет-енциклопедија\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nкаде секој може да придонесува\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nи си реков: „Еј!“\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n„Тогаш можам и јас да придонесувам!“\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nДојдов, уредив\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nи мислам дека се навлеков.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nНе ме плаќаат\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nТуку чисто, знаете,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nзанимација во слободно време.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nМоже да почнете поради некоја идеја,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nпоради некое ваше убедување,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nно добивате пријатели,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nдобивате вљубеници,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nдобивате прекрасни разговори,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nдобивате нови идеи,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nи нови книги што ќе ги пишувате...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nНе ја пишувате статијата сами.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nПишувате делче,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nи некој друг вели:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n„Јас имам уште!“\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nи заедно ќе создадете\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nстатии од повеќе страници,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nшто инаку не можете да ги направите сами.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nТогаш следи успех.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nИ секојпат си велите: „Еве, направив нешто успешно.“\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nи ова е феноменално.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nОва е супер,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nбидејќи уредувањето дава одлично чувство.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nСекој пат кога уредувате.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nМорам да кажам,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nкога прочитав за Википедија,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nРешив\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n„Можеби овде ќе се вклопам“\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nИ се вклопив.',\n", + " 'bytes': 3415,\n", + " 'sha1': 'nf61l994ikrnecp74otzo5aslb6z0ea',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48229791,\n", + " 'timestamp': '2011-01-13T22:03:58Z',\n", + " 'user': {'id': 31103, 'text': 'Bjankuloski06en'},\n", + " 'page': {'id': 12686795,\n", + " 'title': 'WalesCalltoAction.ogv.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:05,408 --> 00:00:08,351 Здраво, јас сум Џими Велс - основач на Википедија 2 00:00:08,351 --> 00:00:11,487 Дене...'\",\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 Здраво, јас сум Џими Велс - основач на Википедија \\n\\n2 00:00:08,351 --> 00:00:11,487 Денес ја прославуваме десетгодишнината на Википедија.\\n\\n3 00:00:11,487 --> 00:00:16,467 Тешко ми е да си претставам дека поминаа десет години откако почнав со Википедија.\\n\\n4 00:00:16,467 --> 00:00:23,472 Се сеќавам на првиот ден. Стиснав на „Уреди“ и напишав „Hello World“. Тоа беше почетокот на Википедија и сето она што следеше.\\n\\n5 00:00:23,472 --> 00:00:27,821 Денес имаме милиони статии на стотици јазици.\\n\\n6 00:00:27,821 --> 00:00:33,1 Имаме над 400 милиони посетители месечно.\\n\\n7 00:00:33,1 --> 00:00:40,924 Значи, се случи вчудоневидувачка работа. Ако помислите на влијанието врз нашата култура - да се запрепасти човек.\\n\\n8 00:00:41,032 --> 00:00:43,609 И сето тоа благодарение на вас. Би сакал да им се заблагодарам на сите што помогнаа.\\n\\n9 00:00:43,610 --> 00:00:45,624 Голема благодарност до сите оние што уредуваат, \\n\\n10 00:00:45,624 --> 00:00:47,510 сите што дадоа свој придонес во оваа величествена на ризница на сознанија.\\n\\n11 00:00:45,624 --> 00:00:50,101 Би сакал да им се заблагодарам на сите што ја читаат Википедија,\\n\\n12 00:00:50,102 --> 00:00:52,800 што толку нè обзема со идеи и сознанија.\\n\\n13 00:00:52,801 --> 00:00:55,107 Затоа и ја направивме. Ја направивме за вие да ја читате.\\n\\n14 00:00:55,108 --> 00:00:57,406 Но би сакал да ве повикам да делувате - една мала молба до сите.\\n\\n15 00:00:57,406 --> 00:01:04,009 Иако имаме милиони статии, иако имаме стотици јазици.\\n\\n16 00:01:04,009 --> 00:01:07,462 Сепак ни претстои уште многу работа. Затоа сакам сите вие, \\n\\n17 00:01:07,462 --> 00:01:10,051 ако никогаш немате уредувано на Википедија - да се обидете. Пробајте. \\n\\n18 00:01:10,051 --> 00:01:13,736 Стиснете на „Уреди“. Забележувате нешто проблематично ? Исправете го. Тоа навистина го цениме.\\n\\n19 00:01:14,151 --> 00:01:17,752 И... Eпа, нека ѝ е честит роденденот на Википедија.\\n\\n20 00:01:19,428 --> 00:01:26,49 Википедија - 10 години споделување на севкупните човекови сознанија.',\n", + " 'bytes': 3101,\n", + " 'sha1': '70lcbf7b9gjx468ncm1l27ivce30uxh',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48262988,\n", + " 'timestamp': '2011-01-14T20:50:08Z',\n", + " 'user': {'id': 12598, 'text': 'Toniher'},\n", + " 'page': {'id': 12687333,\n", + " 'title': 'WalesAnniversaryAddress.ogv.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1 00:00:07,000 --> 00:00:10,500 Hola a tothom i benvinguts al desè aniversari de la Viquipèdia.\\n\\n2 00:00:10,510 --> 00:00:15,400 És un dia realment emocionant per a tothom i arreu del món.\\n\\n3 00:00:15,410 --> 00:00:18,400 He passat força temps darrerament reflexionant sobre la història de la Viquipèdia\\n\\n4 00:00:18,410 --> 00:00:23,200 d'allà on veníem i tot allò que hem passat fins arribar on som avui.\\n\\n5 00:00:23,210 --> 00:00:28,100 Recordo la primera vegada que vaig editar a la Viquipèdia,\\n\\n6 00:00:28,100 --> 00:00:30,100 que va ser el primer dia que va existir,\\n\\n7 00:00:30,100 --> 00:00:32,700 i vaig fer clic a 'Inicia', i vaig escriure-hi 'Hola món!',\\n\\n8 00:00:32,750 --> 00:00:35,500 a continuació 'Desa', i aquests foren els primers mots a la Viquipèdia.\\n\\n9 00:00:35,600 --> 00:00:38,800 I vaig pensar sobre allò que vindria, i per descomptat, no sabia realment què ens esperava\\n\\n10 00:00:38,900 --> 00:00:42,400 però al llarg dels anys he tingut experiències fantàstiques,\\n\\n11 00:00:42,500 --> 00:00:46,200 he tingut l'oportunitat de voltar arreu del món i conèixer a molts de vosaltres en persona.\\n\\n12 00:00:46,300 --> 00:00:49,950 Recordo... diferents flaixos em vénen a la ment.\\n\\n13 00:00:50,050 --> 00:00:57,300 Recordo la primera trobada de junta de la Fundació Wikimèdia, quan vaig trobar-me a Paris amb Florence\\n\\n14 00:00:57,400 --> 00:01:00,800 de la Viquipèdia francesa, i Angela de l'anglesa, els primers membres de la junta\\n\\n15 00:01:00,900 --> 00:01:05,000 i vam tenir una reunió per parlar de la creació de la fundació\\n\\n16 00:01:05,050 --> 00:01:08,800 i com obtindríem diners perquè el projecte funcionés, com creixeríem\\n\\n17 00:01:08,800 --> 00:01:09,900 i quines perspectives de futur teníem.\\n\\n18 00:01:10,000 --> 00:01:15,800 Recordo assegut a la vora del riu de Berlín amb viquipedistes alemanys,\\n\\n19 00:01:15,900 --> 00:01:21,400 i com esperàvem que s'escrigués l'article cent mil,\\n\\n20 00:01:21,500 --> 00:01:24,800 asseguts a fora, premíem el botó 'Actualitza' dels nostres ordinadors per veure\\n\\n21 00:01:25,000 --> 00:01:27,100 «Oh!, és el noranta-nou mil nou-cents noranta-set»\\n\\n22 00:01:27,200 --> 00:01:30,500 M'imagino que tota Viquipèdia ha passat per aquest procés, quan esteu excitats\\n\\n23 00:01:30,600 --> 00:01:34,500 quan esteu a prop i, per descomptat, en arribar al cent mil\\n\\n24 00:01:34,600 --> 00:01:37,400 sempre teníem la discussió de quin havia estat realment l'article cent mil\\n\\n25 00:01:37,500 --> 00:01:39,700 una altra de les grans aficions dels viquipedistes\\n\\n26 00:01:39,800 --> 00:01:46,600 I, al llarg dels anys, he tingut moltes oportunitats per anar arreu del món, trobar-me amb viquipedistes de l'Índia,\\n\\n27 00:01:46,700 --> 00:01:53,700 a Xina, a Sud-amèrica, de fet, arreu del món, i a mesura que viatjo i parlo amb més gent\\n\\n28 00:01:53,800 --> 00:01:57,500 una de les preguntes més freqüents que em trobo dels grups viquipedistes és \\n\\n29 00:01:57,600 --> 00:02:01,500 «Com ens veus respecte a altres viquipedistes?\\n\\n30 00:02:01,600 --> 00:02:04,500 quina és la diferència dels viquipedistes brasilers, per exemple?»\\n\\n31 00:02:04,600 --> 00:02:06,600 i he de dir que, de fet, «No hi ha massa diferència».\\n\\n32 00:02:06,700 --> 00:02:10,800 La veritat és que tendim a ser molt semblants arreu del món\\n\\n33 00:02:10,900 --> 00:02:13,500 tot i venir de cultures diferents\\n\\n34 00:02:13,600 --> 00:02:18,500 molts tipus de persones, però també compartim unes mateixes experiències\\n\\n35 00:02:18,600 --> 00:02:20,700 i hem experimentat el mateix tipus de cosa.\\n\\n36 00:02:20,800 --> 00:02:23,900 Crec que tothom ha revertit els mateixos tipus de vandalisme.\\n\\n37 00:02:24,000 --> 00:02:25,500 No importa amb quina llengua treballem\\n\\n38 00:02:25,500 --> 00:02:30,500 no importa si el vostre wiki té cinc cents o cinc cents mil articles\\n\\n39 00:02:30,600 --> 00:02:34,000 o tres milions, sempre hi ha algú que arriba\\n\\n40 00:02:34,000 --> 00:02:39,500 i reemplaça un article fabulós amb dos renecs o per l'estil.\\n\\n41 00:02:39,600 --> 00:02:42,700 I, per descomptat, simplement llavors revertiu l'article i bloque el vàndal, i ja està.\\n\\n42 00:02:42,800 --> 00:02:46,600 Això és part de ser un viquipedista, hem tingut discussions interessants\\n\\n43 00:02:46,600 --> 00:02:46,800 sobre les convencions de nom de les coses\\n\\n44 00:02:46,800 --> 00:02:53,200 com anomenem un riu a Polònia, com anomenarem això\\n\\n45 00:02:53,300 --> 00:02:56,300 com anomenarem allò, quines són les controvèrsies que cal tractar\\n\\n46 00:02:56,300 --> 00:02:58,400 i quina és la forma assenyada de portar-ho endavant.\\n\\n47 00:02:58,500 --> 00:03:02,500 Arreu del món he trobat el mateix tipus de gent fent la mateixa mena de feina\\n\\n48 00:03:02,600 --> 00:03:07,500 perquè compartim la mateixa experiència. I també compartim els mateixos valors, els mateixos ideals\\n\\n49 00:03:07,500 --> 00:03:12,600 allò perquè treballem – una enciclopèdia lliure per a tothom del planeta\\n\\n50 00:03:12,700 --> 00:03:15,900 escrita per gent considera, que mira de ser neutral\\n\\n51 00:03:16,000 --> 00:03:19,800 mira de ser honesta, mira d'aportar informació lliure.\\n\\n52 00:03:19,900 --> 00:03:23,800 És encara tan emocionant per a mi avui com ho era els primers dies quan vaig començar.\\n\\n53 00:03:23,800 --> 00:03:25,500 Encara tenim molt per fer.\\n\\n54 00:03:25,600 --> 00:03:28,800 Avui és un gran moment per reflexionar fins on hem arribar\\n\\n55 00:03:28,800 --> 00:03:32,800 per pensar cap on anem, i uau, podeu veure\\n\\n56 00:03:32,900 --> 00:03:33,500 com m'estic emocionant.\\n\\n57 00:03:33,600 --> 00:03:37,800 Només voldria dir: Moltes gràcies per tot el treball que heu fet\\n\\n58 00:03:37,900 --> 00:03:42,700 moltes gràcies per venir fins aquí avui per trobar-vos amb altra gent.\\n\\n59 00:03:42,800 --> 00:03:48,600 Feu-me un favor, i trobeu algú de la multitud, qui no hàgiu conegut abans en persona\\n\\n60 00:03:48,600 --> 00:03:50,100 i presenteu-vos tot dient:\\n\\n61 00:03:50,100 --> 00:03:52,200 «Ei, què voleu editar?»\\n\\n62 00:03:52,300 --> 00:03:54,500 Construïm aquesta comunitat,\\n\\n63 00:03:54,500 --> 00:03:56,700 que no és més que una colla d'amics que fa quelcom útil.\\n\\n64 00:03:56,800 --> 00:04:01,900 Així doncs, gràcies de nou i per molts anys a la Viquipèdia.\\n\\n<!--65 00:04:03,200 -*-> 00:04:12,900 Viquipèdia, 10 anys compartint la suma de tot el coneixement.-->\",\n", + " 'bytes': 6382,\n", + " 'sha1': 'pyvxcfkomt7551gfd0wrxg7qp37x04m',\n", + " 'parent_id': 48245264,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 51648766,\n", + " 'timestamp': '2011-03-07T07:10:15Z',\n", + " 'user': {'id': 1491834, 'text': 'Svangeepuram'},\n", + " 'page': {'id': 12688801,\n", + " 'title': 'WalesCalltoAction.ogv.te.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 హలో, నేను జిమ్మీ వేల్స్, వికీపీడియా వ్యవస్థాపకుడిని. \\n\\n2 00:00:08,351 --> 00:00:11,487 ఇవ్వాళ వికిపీడియా దశాబ్ది వేడుకలను జరుపుకుంటున్నాం.\\n\\n3 00:00:11,487 --> 00:00:16,467 నేను మొదటిసారి వికిపీడియాని కూర్చినప్పటినుండి పదేళ్ళు గడిచాయంటే నమ్మలేకపోతున్నా. \\n\\n4 00:00:16,467 --> 00:00:23,472 ఆ మొదటి రోజు నాకు బాగా గుర్తు. \"మార్చు\" లింకుపైనొక్కి, \"హలో వ(ర)ల్డ్\" అంటూ పలకరించాను. అదే వికిపీడియాకి నాంది. అంతే, తరువాత పనులన్నీ చకచకా జరిగిపోయాయి. \\n\\n5 00:00:23,472 --> 00:00:27,821 నేడు మనకు వందలకొద్ది భాషల్లో లక్షలకొద్ది ప్రకరణలున్నాయి. \\n\\n6 00:00:27,821 --> 00:00:33,1 ఇప్పుడు నెలకి సుమారు 40 కోట్ల మంది ఈ వెబ్ సైటుకు వస్తున్నారు. \\n\\n7 00:00:33,1 --> 00:00:40,924 ఇది నిజంగా ఆశ్చర్యం కలిగిస్తుంది. మన సంస్కృతిపై దీని ప్రభావాన్ని గురించి ఆలోచిస్తే, తప్పకుండా తత్తరపడతాం. \\n\\n8 00:00:41,032 --> 00:00:43,609 ఇది మీ చలవే. ఇందులో సహకరించిన ప్రతి ఒక్కరికీ నా కృతజ్ఞతలు. \\n\\n9 00:00:43,610 --> 00:00:45,624 వికిపీడియాని కూర్చి, \\n\\n10 00:00:45,624 --> 00:00:47,510 ఈ విజ్ఞాననిధికి సహకరించిన మీకందరికీ నా కృతజ్ఞతలు.\\n\\n11 00:00:45,624 --> 00:00:50,101 కొత్త సంగతులను చదవడానికి, విజ్ఞానాన్ని పొందడానికి పూనుకొని ,\\n\\n12 00:00:50,102 --> 00:00:52,800 వికిపీడియాని చదువుతున్న ప్రతిఒక్కరికి నా కృతజ్ఞతలు.\\n\\n13 00:00:52,801 --> 00:00:55,107 దీని ఉద్దేశ్యమదే. మీరు చదవడానికే దీన్ని తయారుచేశాం. \\n\\n14 00:00:55,108 --> 00:00:57,406 కానీ కొంచెం పనుంది, ప్రతి ఒక్కరికీ నాదొక చిన్న విన్నపం. \\n\\n15 00:00:57,406 --> 00:01:04,009 మనకు వందలకొద్దీ భాషల్లో, లక్షలకొద్దీ ప్రకరణలున్నా... \\n\\n16 00:01:04,009 --> 00:01:07,462 ఇంకా చేయవలసినది చాలా వుంది. అందుకే మీ అందరి సహాయం కావాలి. \\n\\n17 00:01:07,462 --> 00:01:10,051 ఇప్పటికింకా వికిపీడియాని మీరు మార్చనట్లయితే, ఒకసారి ప్రయత్నించండి.\\n\\n18 00:01:10,051 --> 00:01:13,736 \"మార్చు\" లింకుపై నొక్కండి. సమస్యలున్నాయా? వాటిని సరిదిద్దండి. అది నిజంగా మెచ్చుకోదగ్గ పని. \\n\\n19 00:01:14,151 --> 00:01:17,752 విషయానికి వస్తే, వికిపీడియాకి పుట్టినరోజు శుభాకాంక్షలు!\\n\\n20 00:01:19,428 --> 00:01:26,49 వికిపీడియా పదేళ్ళ విజ్ఞానసర్వస్వాన్ని పంచుకుంటున్నది.',\n", + " 'bytes': 4163,\n", + " 'sha1': 'ib7gqx40rpuw0zuhdn7neq1uyh6ki3f',\n", + " 'parent_id': 48236704,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48236774,\n", + " 'timestamp': '2011-01-14T05:03:49Z',\n", + " 'user': {'id': 542864, 'text': 'Arjunaraoc'},\n", + " 'page': {'id': 12688829,\n", + " 'title': 'WalesAnniversaryAddress.ogv.te.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Initial english version',\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 Hi everybody and welcome to the tenth anniversary of Wikipedia.\\n\\n2 00:00:10,510 --> 00:00:15,400 It\\'s a really exciting day for everybody in the community and all around the world.\\n\\n3 00:00:15,410 --> 00:00:18,400 I\\'ve been spending a lot of time lately thinking about the history of Wikipedia\\n\\n4 00:00:18,410 --> 00:00:23,200 and where we came from and all the things we\\'ve been through to get where we are today.\\n\\n5 00:00:23,210 --> 00:00:28,100 I remember the first time I ever edited Wikipedia,\\n\\n6 00:00:28,100 --> 00:00:30,100 which was the first day Wikipedia existed,\\n\\n7 00:00:30,100 --> 00:00:32,700 and I clicked on \"edit\", and I typed \"Hello, world!\",\\n\\n8 00:00:32,750 --> 00:00:35,500 and hit \"Save\" and that was the first words in Wikipedia.\\n\\n9 00:00:35,600 --> 00:00:38,800 And I thought about what was to come and of course I really didn\\'t know what was to come\\n\\n10 00:00:38,900 --> 00:00:42,400 but over the years I\\'ve had a lot of wonderful experiences\\n\\n11 00:00:42,500 --> 00:00:46,200 I had the opportunity to come around the world and meet with many of you in person\\n\\n12 00:00:46,300 --> 00:00:49,950 I remember... several things stand out on my mind.\\n\\n13 00:00:50,050 --> 00:00:57,300 I remember the first board meeting for the Wikimedia Foundation, when I met in Paris with Florence\\n\\n14 00:00:57,400 --> 00:01:00,800 from French Wikipedia and Angela from English Wikipedia, the first board members\\n\\n15 00:01:00,900 --> 00:01:05,000 and we had a meeting to start to discuss building the Foundation\\n\\n16 00:01:05,050 --> 00:01:08,800 how we\\'re gonna get the money to keep this project going, how can we grow\\n\\n17 00:01:08,800 --> 00:01:09,900 and what does the future look like.\\n\\n18 00:01:10,000 --> 00:01:15,800 I remember sitting on the banks of the river in Berlin with German wikipedians,\\n\\n19 00:01:15,900 --> 00:01:21,400 and we were waiting, expecting for the one hundredth thousandth article to be written\\n\\n20 00:01:21,500 --> 00:01:24,800 so we sat outside and we kept hitting \"Reload\" on our computers to see\\n\\n21 00:01:25,000 --> 00:01:27,100 \"Oh, it\\'s ninety nine thousand, nine hundred and ninety seven\"\\n\\n22 00:01:27,200 --> 00:01:30,500 I guess every Wikipedia has gone through this milestone process, when you\\'re excited\\n\\n23 00:01:30,600 --> 00:01:34,500 when you\\'re getting close and then of course as we hit the one hundred thousand\\n\\n24 00:01:34,600 --> 00:01:37,400 we had the big argument about which article was really the one hundred thousandth\\n\\n25 00:01:37,500 --> 00:01:39,700 another great hobby of Wikipedians\\n\\n26 00:01:39,800 --> 00:01:46,600 And over the years I had many opportunities to come all around the world, I met with wikipedians in India\\n\\n27 00:01:46,700 --> 00:01:53,700 in China, in South America, really all around the world, and as I travel around and I talk to people\\n\\n28 00:01:53,800 --> 00:01:57,500 one of the most frequent questions I get from Wikipedia groups is \\n\\n29 00:01:57,600 --> 00:02:01,500 \"How do you see us compared to other wikipedians around the world\\n\\n30 00:02:01,600 --> 00:02:04,500 what\\'s different about the Brazilian Wikipedians, for example?\"\\n\\n31 00:02:04,600 --> 00:02:06,600 and what I have to say is \"Not much difference\".\\n\\n32 00:02:06,700 --> 00:02:10,800 It turns out that we tend to be very much the same all around the world\\n\\n33 00:02:10,900 --> 00:02:13,500 even though we come from very different cultures\\n\\n34 00:02:13,600 --> 00:02:18,500 many different kinds of people, but we also share the same experiences\\n\\n35 00:02:18,600 --> 00:02:20,700 we\\'ve all been through the same things.\\n\\n36 00:02:20,800 --> 00:02:23,900 I think everybody has reverted the same kinds of vandalism.\\n\\n37 00:02:24,000 --> 00:02:25,500 It doesn\\'t matter what language you\\'re working in\\n\\n38 00:02:25,500 --> 00:02:30,500 it doesn\\'t matter if your wiki has five hundred articles or five hundred thousands\\n\\n39 00:02:30,600 --> 00:02:34,000 or three million, you still get somebody who comes along\\n\\n40 00:02:34,000 --> 00:02:39,500 and replaces a whole wonderful article with two words of cursing or something like this.\\n\\n41 00:02:39,600 --> 00:02:42,700 And of course you just revert it and block the vandal, and all that.\\n\\n42 00:02:42,800 --> 00:02:46,600 That\\'s part of being a wikipedian, we\\'ve all had really interesting conversations\\n\\n43 00:02:46,600 --> 00:02:46,800 about the naming conventions of things\\n\\n44 00:02:46,800 --> 00:02:53,200 what do we call a river in Poland, how are we gonna name this\\n\\n45 00:02:53,300 --> 00:02:56,300 how are we gonna name that, what are the controversies that we need to figure out\\n\\n46 00:02:56,300 --> 00:02:58,400 and what is the thoughtful way forward.\\n\\n47 00:02:58,500 --> 00:03:02,500 So all around the world I find the same kinds of people doing the same kinds of work\\n\\n48 00:03:02,600 --> 00:03:07,500 because we had the same shared experience. And we also share the same values, the same ideals\\n\\n49 00:03:07,500 --> 00:03:12,600 the things we are working for – free encyclopedia for every person of the planet\\n\\n50 00:03:12,700 --> 00:03:15,900 written really by thoughtful people, that try to be neutral\\n\\n51 00:03:16,000 --> 00:03:19,800 try to be honest, trying to bring free information.\\n\\n52 00:03:19,900 --> 00:03:23,800 It\\'s still as exciting for me today as it was in the very early days when I started.\\n\\n53 00:03:23,800 --> 00:03:25,500 We\\'ve still got a lot of work left to do.\\n\\n54 00:03:25,600 --> 00:03:28,800 Today is a great moment to reflect on where we\\'ve been\\n\\n55 00:03:28,800 --> 00:03:32,800 to think about where we\\'re going, and wow, I don\\'t know\\n\\n56 00:03:32,900 --> 00:03:33,500 you can see how excited I\\'m getting.\\n\\n57 00:03:33,600 --> 00:03:37,800 I just want to say: Thank you so much for all the work that you\\'ve done\\n\\n58 00:03:37,900 --> 00:03:42,700 thank you so much for coming here today to meet with other people.\\n\\n59 00:03:42,800 --> 00:03:48,600 Do me a favor and find somebody in the crowd, who you have never met before in person\\n\\n60 00:03:48,600 --> 00:03:50,100 and introduce yourself and say:\\n\\n61 00:03:50,100 --> 00:03:52,200 \"Hey, what would you like to edit?\"\\n\\n62 00:03:52,300 --> 00:03:54,500 Let\\'s build this community\\n\\n63 00:03:54,500 --> 00:03:56,700 it\\'s all about a bunch of friends doing something useful.\\n\\n64 00:03:56,800 --> 00:04:01,900 So, thank you again and happy birthday to Wikipedia.\\n\\n<!--65 00:04:03,200 -*-> 00:04:12,900 Wikipedia 10 years of sharing the sum of all knowledge.-->',\n", + " 'bytes': 6482,\n", + " 'sha1': 'o82ishi2l7odi0a6q3qmfk78xsz8poq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48242851,\n", + " 'timestamp': '2011-01-14T11:01:02Z',\n", + " 'user': {'text': '41.73.204.35'},\n", + " 'page': {'id': 12690567,\n", + " 'title': 'WalesCalltoAction.ogv.LANG.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:05,408 --> 00:00:08,351 Hello, I'm Jimmy Wales, founder of Wikipedia 2 00:00:08,351 --> 00:00:11,487 and today we're celebrating the 10th anniversary of ...'\",\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 Hello, I\\'m Jimmy Wales, founder of Wikipedia \\n\\n2 00:00:08,351 --> 00:00:11,487 and today we\\'re celebrating the 10th anniversary of Wikipedia.\\n\\n3 00:00:11,487 --> 00:00:16,467 It\\'s hard to imagine that it\\'s been ten years since I first edited Wikipedia.\\n\\n4 00:00:16,467 --> 00:00:23,472 I remember that first day. I clicked on \"Edit\" and I wrote \"Hello World\" and that was the beginning of Wikipedia and all the things that have come since then.\\n\\n5 00:00:23,472 --> 00:00:27,821 Today we\\'ve got millions of articles in hundreds of languages.\\n\\n6 00:00:27,821 --> 00:00:33,1 These days about 400 million people a month visit the website.\\n\\n7 00:00:33,1 --> 00:00:40,924 and that\\'s just an astounding thing to have happened. If you really think about the impact on our culture it\\'s staggering.\\n\\n8 00:00:41,032 --> 00:00:43,609 And it\\'s all thanks to you. I want to thank everybody who\\'s helped.\\n\\n9 00:00:43,610 --> 00:00:45,624 I want to thank all the people who\\'ve edited Wikipedia, \\n\\n10 00:00:45,624 --> 00:00:47,510 who\\'ve contributed to this great knowledge base.\\n\\n11 00:00:45,624 --> 00:00:50,101 I want to thank everybody who\\'s reading Wikipedia,\\n\\n12 00:00:50,102 --> 00:00:52,800 who\\'s really engaging with ideas and knowledge.\\n\\n13 00:00:52,801 --> 00:00:55,107 That\\'s what we made it for. We made it for you to read.\\n\\n14 00:00:55,108 --> 00:00:57,406 And I have a little bit of a call to action, a little request for everybody.\\n\\n15 00:00:57,406 --> 00:01:04,009 Even though that we\\'ve got millions of articles, even though we\\'re in hundreds of languages.\\n\\n16 00:01:04,009 --> 00:01:07,462 There is still a lot of work to do. So I want everybody out there, \\n\\n17 00:01:07,462 --> 00:01:10,051 if you\\'ve never edited Wikipedia, try it. Give a try. \\n\\n18 00:01:10,051 --> 00:01:13,736 Click on \"Edit\". You see some problems ? Fix it for us. We really appreciate it.\\n\\n19 00:01:14,151 --> 00:01:17,752 And... Well. Happy birthday Wikipedia.\\n\\n20 00:01:19,428 --> 00:01:26,49 Wikipedia 10 years of sharing the sum of all knowledge.',\n", + " 'bytes': 2057,\n", + " 'sha1': 'fsw9kdldm1vwybh7buuen1trk92hcmy',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48262472,\n", + " 'timestamp': '2011-01-14T20:35:07Z',\n", + " 'user': {'id': 12598, 'text': 'Toniher'},\n", + " 'page': {'id': 12695304,\n", + " 'title': 'WalesCalltoAction.ogv.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:05,408 --> 00:00:08,351 Hola, em dic Jimmy Wales, fundador de la Viquipèdia 2 00:00:08,351 --> 00:00:11,487 i avui estem celebrant-ne el seu desè anive...'\",\n", + " 'text': \"1 00:00:05,408 --> 00:00:08,351 Hola, em dic Jimmy Wales, fundador de la Viquipèdia \\n\\n2 00:00:08,351 --> 00:00:11,487 i avui estem celebrant-ne el seu desè aniversari.\\n\\n3 00:00:11,487 --> 00:00:16,467 Es fa difícil imaginar que fa deu anys que vaig editar per primera vegada la Viquipèdia.\\n\\n4 00:00:16,467 --> 00:00:23,472 Recordo el primer dia. Vaig clicar a «Inicia» i vaig escriure-hi «Hola món», i això fou el començament de la Viquipèdia i de tot allò que ha vingut darrere.\\n\\n5 00:00:23,472 --> 00:00:27,821 Avui tenim milions d'articles en centenars de llengües.\\n\\n6 00:00:27,821 --> 00:00:33,1 Actualment, vora 400 milions de persones visiten el lloc web cada mes.\\n\\n7 00:00:33,1 --> 00:00:40,924 És impressionant què ha pensat. És esfereïdor només pensar en l'impacte que ha tingut sobre la cultura.\\n\\n8 00:00:41,032 --> 00:00:43,609 I és tot gràcies a vosaltres. I volem ajudar a tothom qui hi ha ajudat.\\n\\n9 00:00:43,610 --> 00:00:45,624 Voldria agrair a tothom qui ha editat a la Viquipèdia, \\n\\n10 00:00:45,624 --> 00:00:47,510 qui ha contribuït a aquesta gran base del coneixement.\\n\\n11 00:00:45,624 --> 00:00:50,101 Voldria agrair a tothom qui llegeix la Viquipèdia,\\n\\n12 00:00:50,102 --> 00:00:52,800 que és realment comprometre's amb les idees i el coneixement.\\n\\n13 00:00:52,801 --> 00:00:55,107 Això és perquè ho hem fet. Hi ho hem fet perquè ho llegiu.\\n\\n14 00:00:55,108 --> 00:00:57,406 I voldria fer una mica de crida a l'acció, una sol·licitud a tothom.\\n\\n15 00:00:57,406 --> 00:01:04,009 Tot i que tinguem milions d'articles, fins i tot en centenars de llengües.\\n\\n16 00:01:04,009 --> 00:01:07,462 Hi ha molta feina per fer. I per tant, voldria tothom allà fora, \\n\\n17 00:01:07,462 --> 00:01:10,051 si mai heu editat la Viquipèdia, proveu-ho. Intenteu-ho. \\n\\n18 00:01:10,051 --> 00:01:13,736 Feu clic a «Modifica». Vegeu cap problema? Arregleu-nos-ho. Ho agraïrem de debò.\\n\\n19 00:01:14,151 --> 00:01:17,752 I... bé. Per molts anys, Viquipèdia.\\n\\n20 00:01:19,428 --> 00:01:26,49 Viquipèdia, 10 anys compartint la suma de tot el coneixement.\",\n", + " 'bytes': 2088,\n", + " 'sha1': 'qcpado1ah6j3xiy0pemr1cnq4k1nvpo',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48320076,\n", + " 'timestamp': '2011-01-15T23:01:30Z',\n", + " 'user': {'id': 48, 'text': 'Mormegil'},\n", + " 'page': {'id': 12709259,\n", + " 'title': 'WalesCalltoAction.ogv.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'rychlý překlad',\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 Ahoj, já jsem Jimmy Wales, zakladatel Wikipedie\\n\\n2 00:00:08,351 --> 00:00:11,487 a dnes slavíme 10. výročí Wikipedie.\\n\\n3 00:00:11,487 --> 00:00:16,467 Je těžké si představit, že je to 10 let od chvíle, co jsem poprvé Wikipedii editoval.\\n\\n4 00:00:16,467 --> 00:00:23,472 Ten první den si pamatuju. Kliknul jsem na „Editovat“, napsal jsem „Ahoj, světe“ a to byl začátek Wikipedie a všeho toho, co se od té doby stalo.\\n\\n5 00:00:23,472 --> 00:00:27,821 Dnes máme miliony článků ve stovkách jazyků.\\n\\n6 00:00:27,821 --> 00:00:33,1 V současnosti náš web navštíví asi 400 milionů lidí měsíčně\\n\\n7 00:00:33,1 --> 00:00:40,924 a to je prostě neuvěřitelná věc. Pokud se opravdu zamyslíte nad dopadem na naši kulturu, je to ohromující.\\n\\n8 00:00:41,032 --> 00:00:43,609 A to všechno díky vám. Chci poděkovat každému, kdo pomohl.\\n\\n9 00:00:43,610 --> 00:00:45,624 Chci poděkovat všem lidem, kteří Wikipedii editovali,\\n\\n10 00:00:45,624 --> 00:00:47,510 kteří přispěli do téhle skvělé sbírky vědomostí.\\n\\n11 00:00:45,624 --> 00:00:50,101 Chci poděkovat všem, kdo Wikipedii čtou,\\n\\n12 00:00:50,102 --> 00:00:52,800 kdo se zabývají znalostmi a nápady.\\n\\n13 00:00:52,801 --> 00:00:55,107 To je to, proč Wikipedii děláme. Děláme ji proto, abyste ji mohli číst.\\n\\n14 00:00:55,108 --> 00:00:57,406 A mám malou výzvu, drobnou prosbu všem.\\n\\n15 00:00:57,406 --> 00:01:04,009 Přestože máme miliony článků, přestože jsme ve stovkách jazyků,\\n\\n16 00:01:04,009 --> 00:01:07,462 pořád tam je spousta práce. Takže vy všichni,\\n\\n17 00:01:07,462 --> 00:01:10,051 pokud jste nikdy Wikipedii needitovali, zkuste to. Vyzkoušejte to.\\n\\n18 00:01:10,051 --> 00:01:13,736 Klikněte na „Editovat“. Vidíte nějaké chyby? Opravte je za nás. Opravdu to oceníme.\\n\\n19 00:01:14,151 --> 00:01:17,752 A… nuže: Všechno nejlepší, Wikipedie.\\n\\n20 00:01:19,428 --> 00:01:26,49 Wikipedie 10 let sdílení sumy veškerých znalostí.',\n", + " 'bytes': 2019,\n", + " 'sha1': 'ihfy670ow6cxuf6w9k1qw7nw8mn845m',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48459469,\n", + " 'timestamp': '2011-01-19T13:24:01Z',\n", + " 'user': {'id': 365698, 'text': 'Whym'},\n", + " 'page': {'id': 12734131,\n", + " 'title': 'WalesAnniversaryAddress.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'fix typo etc',\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 みなさんこんにちは。本日はウィキペディア10周年の集いにようこそお越しくださいました。\\n\\n2 00:00:10,510 --> 00:00:15,400 今日はこのコミュニティと世界の人々全員が興奮する日になると思います。\\n\\n3 00:00:15,410 --> 00:00:18,400 私は最近、ウィキペディアの歴史について考えることが多くなりました。\\n\\n4 00:00:18,410 --> 00:00:23,200 私たちがどこから来たのか、ここにたどりつくまでに何を乗り越えてきたのか。\\n\\n5 00:00:23,210 --> 00:00:28,100 私がはじめてウィキペディアを編集したときのことを思い出してみると、\\n\\n6 00:00:28,100 --> 00:00:30,100 それはウィキペディアができた日でもあるのですが、\\n\\n7 00:00:30,100 --> 00:00:32,700 「編集」を押して「Hello, world!」と書き込んで、\\n\\n8 00:00:32,750 --> 00:00:35,500 「保存」を押して、そこに現れたのがウィキペディアの最初の1ページです。\\n\\n9 00:00:35,600 --> 00:00:38,800 私は、このあと何が起こるんだろう、と思いました。もちろんその時は分からなかったわけですが。\\n\\n10 00:00:38,900 --> 00:00:42,400 それからこれまでの間すばらしい経験をさせてもらいました。\\n\\n11 00:00:42,500 --> 00:00:46,200 たとえば、世界中をめぐり、たくさんの方々に会う機会にめぐまれました。\\n\\n12 00:00:46,300 --> 00:00:49,950 とくに印象深いできごとがいくつかあります。\\n\\n13 00:00:50,050 --> 00:00:57,300 それはウィキメディア財団の最初の理事会のことです。パリで私を迎えてくれたのがフロランスでした。\\n\\n14 00:00:57,400 --> 00:01:00,800 フランス語版で活動していた彼と、英語版のアンジェラが最初の理事でした。\\n\\n15 00:01:00,900 --> 00:01:05,000 そこで私たちは財団を作るための議論を始めたのです。\\n\\n16 00:01:05,050 --> 00:01:08,800 このプロジェクトが動きつづけるためのお金をどうやって調達するか、どうやって成長していくか、\\n\\n17 00:01:08,800 --> 00:01:09,900 未来の姿はどんなものか。\\n\\n18 00:01:10,000 --> 00:01:15,800 もう一つは、ドイツ語版ウィキペディアンと一緒にベルリンの川の土手にいたときのことです。\\n\\n19 00:01:15,900 --> 00:01:21,400 そこで、10万件目の項目が書かれるのを待っていました。\\n\\n20 00:01:21,500 --> 00:01:24,800 そうやって外に出てコンピュータに向かって「リロード」を何回も押しながら\\n\\n21 00:01:25,000 --> 00:01:27,100 「これで9万9千9百9十7」などと言っていました。\\n\\n22 00:01:27,200 --> 00:01:30,500 どのウィキペディアもこういう風に興奮しながら、マイルストーンの瞬間を過ごしていると思います。\\n\\n23 00:01:30,600 --> 00:01:34,500 その瞬間が近づいてきて、さあ10万件目となったとき、\\n\\n24 00:01:34,600 --> 00:01:37,400 今度はどれが本当の10万件目かという議論が巻き起こりました。\\n\\n25 00:01:37,500 --> 00:01:39,700 これもウィキペディアンの愉しみのひとつですね。\\n\\n26 00:01:39,800 --> 00:01:46,600 私はこれまで世界各地をめぐる機会に恵まれました。インドのウィキペディアンにも会いましたし、\\n\\n27 00:01:46,700 --> 00:01:53,700 中国にも、南アメリカにも……本当に世界各地に行って、それぞれの場所でたくさんの人と話しました。\\n\\n28 00:01:53,800 --> 00:01:57,500 ウィキペディアの会で私がよく訊かれる質問の一つは\\n\\n29 00:01:57,600 --> 00:02:01,500 「私たちと他の場所のウィキペディアンはなにか違いますか」\\n\\n30 00:02:01,600 --> 00:02:04,500 「たとえば、ブラジルのウィキペディアンには違うところがありますか」という質問です。\\n\\n31 00:02:04,600 --> 00:02:06,600 私に言えるのは「たいした違いはない」ということだけです。\\n\\n32 00:02:06,700 --> 00:02:10,800 実際、私たちは世界中でほとんど同じようになっているのです。\\n\\n33 00:02:10,900 --> 00:02:13,500 まったく違う文化に属していて、\\n\\n34 00:02:13,600 --> 00:02:18,500 たくさんの違った種類の人々がいても、私たちは同じ体験を共有しているから、そして\\n\\n35 00:02:18,600 --> 00:02:20,700 同じことを乗り越えてきているからです。\\n\\n36 00:02:20,800 --> 00:02:23,900 リバートしなければならない荒らしはどこでも同じです。\\n\\n37 00:02:24,000 --> 00:02:25,500 どの言語版だろうと、\\n\\n38 00:02:25,500 --> 00:02:30,500 500項目のウィキだろうと50万項目のウィキだろうと、\\n\\n39 00:02:30,600 --> 00:02:34,000 300万項目だろうと、誰かがやってきて、\\n\\n40 00:02:34,000 --> 00:02:39,500 素晴らしい項目を汚い言葉ひとことに書き換えたりします。\\n\\n41 00:02:39,600 --> 00:02:42,700 もちろんそういう荒らしはリバートされてブロックされます。\\n\\n42 00:02:42,800 --> 00:02:46,600 それもウィキペディアンの仕事の一つですし、他にもおもしろいのは、\\n\\n43 00:02:46,600 --> 00:02:46,800 物事の名付け方というのがどこでも議論になることです。\\n\\n44 00:02:46,800 --> 00:02:53,200 とあるポーランドの川をなんと呼ぶか、これの名前をなんにするか、\\n\\n45 00:02:53,300 --> 00:02:56,300 あれの名前はなにか、どんな論争を考慮しなければならないか、\\n\\n46 00:02:56,300 --> 00:02:58,400 どういうやり方をとればうまくその先に進められるか、\\n\\n47 00:02:58,500 --> 00:03:02,500 私が見るかぎり、同じ種類の人々が同じ種類の仕事をしています。\\n\\n48 00:03:02,600 --> 00:03:07,500 それは同じ体験をしているからであり、同じ価値観、同じ理想を持っているからです。\\n\\n49 00:03:07,500 --> 00:03:12,600 私たちが目標としている百科事典は、この星の人間一人一人のため、\\n\\n50 00:03:12,700 --> 00:03:15,900 人々によって、慎重に、中立に書かれるべき、\\n\\n51 00:03:16,000 --> 00:03:19,800 正直に書かかれるべき百科事典です。自由な情報を届ける百科事典です。\\n\\n52 00:03:19,900 --> 00:03:23,800 そのことを思うと、私はいまでも最初の数日と同じくらい興奮します。\\n\\n53 00:03:23,800 --> 00:03:25,500 私たちには、これからやるべき仕事もたくさん残っています。\\n\\n54 00:03:25,600 --> 00:03:28,800 今日の機会にぜひ考えてみてほしいのは、私たちがこれまでどこにいたかということ、\\n\\n55 00:03:28,800 --> 00:03:32,800 これからどこに行こうとしているかということ、あとは、なんでしょうね、\\n\\n56 00:03:32,900 --> 00:03:33,500 興奮して分からなくなってしまってるみたいです。\\n\\n57 00:03:33,600 --> 00:03:37,800 とにかく、皆さんがしてくださったすべてのことに対してありがとうと言わせてください。\\n\\n58 00:03:37,900 --> 00:03:42,700 それと、今日ここに来てくださってありがとうございます。\\n\\n59 00:03:42,800 --> 00:03:48,600 もうひとつお願いがあります。集まりの中に知らない人を見つけたら声をかけて、\\n\\n60 00:03:48,600 --> 00:03:50,100 自己紹介して、話をしてみてください。\\n\\n61 00:03:50,100 --> 00:03:52,200 「どういう項目を編集してみたいですか?」というように。\\n\\n62 00:03:52,300 --> 00:03:54,500 そうやってコミュニティを作りましょう。\\n\\n63 00:03:54,500 --> 00:03:56,700 役に立つものを作るために集まるというのがコミュニティですから。\\n\\n64 00:03:56,800 --> 00:04:01,900 では改めて、本日はありがとうございます。そして誕生日おめでとう、ウィキペディア。\\n\\n65 00:04:03,200 --> 00:04:12,900 ウィキペディアが知識の総和を共有し続けて10年になりました。',\n", + " 'bytes': 8163,\n", + " 'sha1': 'jc9v8bi4iubs7i79q7vi2eohdgs5zxk',\n", + " 'parent_id': 48413407,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 421724023,\n", + " 'timestamp': '2020-05-26T04:48:24Z',\n", + " 'user': {'id': 7841508, 'text': 'Tmv'},\n", + " 'page': {'id': 12734574,\n", + " 'title': 'WalesCalltoAction.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 こんにちは、ウィキペディア創設者のジミー・ウェールズです。 \\n\\n2 00:00:08,351 --> 00:00:11,487 いま、私たちはウィキペディア10周年のお祝いをしています。\\n\\n3 00:00:11,487 --> 00:00:16,467 私が初めてウィキペディアを編集してからもう10年になるというのが信じられません。\\n\\n4 00:00:16,467 --> 00:00:23,472 その最初の日を思い出してみると、「編集」をクリックして「Hello world!」と書いて、それからウィキペディアとその後のすべてが始まったわけです。\\n\\n5 00:00:23,472 --> 00:00:27,821 いまここには数百の言語で書かれた、数百万の項目があります。\\n\\n6 00:00:27,821 --> 00:00:33,1 ひと月に訪れる人の数はおよそ4億人です。\\n\\n7 00:00:33,1 --> 00:00:40,924 それは気が遠くなるほどの数字です。私たちの文化にどれほどの影響を与えたかを考えれば圧倒されるばかりです。\\n\\n8 00:00:41,032 --> 00:00:43,609 すべては皆さんのおかげです。これまで助けていただいた方々皆さんにありがとうと言わせてください。\\n\\n9 00:00:43,610 --> 00:00:45,624 ウィキペディアを編集したことがある方々にも、\\n\\n10 00:00:45,624 --> 00:00:47,510 そうやってこの大きな知識ベースを育てた方々にも感謝します。\\n\\n11 00:00:45,624 --> 00:00:50,101 ウィキペディアを読む方々にも、\\n\\n12 00:00:50,102 --> 00:00:52,800 そうやって知識と知恵を活用する方々にも感謝します。\\n\\n13 00:00:52,801 --> 00:00:55,107 そうした方々のために、読者のために、私たちはウィキペディアを作っているわけですから。\\n\\n14 00:00:55,108 --> 00:00:57,406 でも今日は少し行動を呼びかけてみたいと思います。皆さんへのちょっとしたお願いです。\\n\\n15 00:00:57,406 --> 00:01:04,009 数百万の項目が揃ったといっても、数百の言語が揃ったといっても、\\n\\n16 00:01:04,009 --> 00:01:07,462 まだまだやるべきことはたくさんあります。ですから皆さんに来てほしいのです。\\n\\n17 00:01:07,462 --> 00:01:10,051 ウィキペディアを編集したことがなかったら、どうか一度、やってみてください。\\n\\n18 00:01:10,051 --> 00:01:13,736 「編集」をクリックしてみてください。間違いがあるでしょう? 直してみてください。みんなが喜びます。\\n\\n19 00:01:14,151 --> 00:01:17,752 それでは、誕生日おめでとう、ウィキペディア。\\n\\n20 00:01:19,428 --> 00:01:26,49 ウィキペディアが知識の総和を共有し続けて10年になりました。',\n", + " 'bytes': 2748,\n", + " 'sha1': '9u5vz8kpb8n8axdabh1545ckcp2shfb',\n", + " 'parent_id': 48414875,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48537014,\n", + " 'timestamp': '2011-01-21T21:15:12Z',\n", + " 'user': {'id': 6282, 'text': 'Longbow4u'},\n", + " 'page': {'id': 12751488,\n", + " 'title': 'WalesAnniversaryAddress.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'typos',\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 Hi alle zusammen und willkommen zum zehnjährigen Jubiläum von Wikipedia.\\n\\n2 00:00:10,510 --> 00:00:15,400 Es ist ein aufregender Tag für jeden in unserer Community und für alle rund um die Welt.\\n\\n3 00:00:15,410 --> 00:00:18,400 Ich habe in der letzten Zeit sehr viel über die Geschichte von Wikipedia nachgedacht\\n\\n4 00:00:18,410 --> 00:00:23,200 und wo wir herkommen und all die Dinge die wir durchgestanden haben, um dorthin zu gelangen, wo wir jetzt sind.\\n\\n5 00:00:23,210 --> 00:00:28,100 Ich erinnere mich an das erste Mal, an dem ich jemals Wikipedia bearbeitet habe,\\n\\n6 00:00:28,100 --> 00:00:30,100 was am ersten Tag war, an dem Wikipedia existierte,\\n\\n7 00:00:30,100 --> 00:00:32,700 und ich drückte \"Bearbeiten\", und tippte \"Hello, world!\",\\n\\n8 00:00:32,750 --> 00:00:35,500 und ich drückte \"Speichern\", und das waren die ersten Worte in Wikipedia.\\n\\n9 00:00:35,600 --> 00:00:38,800 Und ich dachte darüber nach, was noch kommen würde, und natürlich wußte ich wirklich nicht was noch kommen würde\\n\\n10 00:00:38,900 --> 00:00:42,400 aber während all der Jahre habe ich eine ganze Menge wunderbarer Erfahrungen gemacht\\n\\n11 00:00:42,500 --> 00:00:46,200 Ich hatte die Gelegenheit, in der Welt herumzukommen und viele von Euch persönlich zu treffen\\n\\n12 00:00:46,300 --> 00:00:49,950 Ich erinnere mich...an einige Dinge erinnere ich mich besonders gut.\\n\\n13 00:00:50,050 --> 00:00:57,300 Ich erinnere mich an die erste Verwaltungsratssitzung der Wikimedia Foundation, als ich mich in Paris mit Florence [Devouard] \\n\\n14 00:00:57,400 --> 00:01:00,800 von der französischen Wikipedia und Angela [Beesley] von der englischen Wikipedia traf, den ersten Verwaltungsratsmitgliedern\\n\\n15 00:01:00,900 --> 00:01:05,000 und wir hatten ein Treffen, an dem wir begannen, den Aufbau der Foundation zu diskutieren\\n\\n16 00:01:05,050 --> 00:01:08,800 wie wir das Geld bekommen würden um das Projekt am Laufen zu halten, und wie wir wachsen könnten\\n\\n17 00:01:08,800 --> 00:01:09,900 und was die Zukunft bringen würde.\\n\\n18 00:01:10,000 --> 00:01:15,800 Ich erinnere mich, am Ufer des Flusses in Berlin mit den deutschen Wikipedianern gesessen zu haben,\\n\\n19 00:01:15,900 --> 00:01:21,400 und wir darauf warteten, dass der 100.000ste Artikel geschrieben werden würde\\n\\n20 00:01:21,500 --> 00:01:24,800 während wir draußen saßen und immer wieder durch Drücken von \"Neu laden\" in unseren Computern nachschauten\\n\\n21 00:01:25,000 --> 00:01:27,100 \"Oh, es sind neunundneunzigtausendneunhundertundsiebenundneunzig\"\\n\\n22 00:01:27,200 --> 00:01:30,500 Ich nehme an jede Wikipedia ist durch diesen Meilensteinprozess gegangen, wenn Du aufgeregt bist\\n\\n23 00:01:30,600 --> 00:01:34,500 wenn Du nahe kommst und dann natürlich wenn wir zu 100.000 kommen\\n\\n24 00:01:34,600 --> 00:01:37,400 wir hatten einen großen Streit darüber welcher Artikeln nun tatsächlich der einhunderttausendste Artikel war\\n\\n25 00:01:37,500 --> 00:01:39,700 ein anderer großer Zeitvertreib von Wikipedianern\\n\\n26 00:01:39,800 --> 00:01:46,600 Und wie ich über die Jahre viele Gelegenheiten hatten, um die Welt zu reisen, ich traf Wikipedianer in Indien\\n\\n27 00:01:46,700 --> 00:01:53,700 in China, in Südamerika, wirklich um die ganze Welt, und wie ich so um die Welt reise und mit Leuten spreche\\n\\n28 00:01:53,800 --> 00:01:57,500 eine der häufigsten Fragen, die ich von Wikipediagruppen gestellt bekomme, ist\\n\\n29 00:01:57,600 --> 00:02:01,500 \"Wie findest Du uns verglichen mit anderen Wikipedianern um die Welt\\n\\n30 00:02:01,600 --> 00:02:04,500 was ist bei den brasilianischen Wikipedanern anders, zum Beispiel?\"\\n\\n31 00:02:04,600 --> 00:02:06,600 und darauf muss ich sagen \"Keine großen Unterschiede\"\\n\\n32 00:02:06,700 --> 00:02:10,800 Es stellt sich heraus wir sind alle ziemlich gleich auf der ganzen Welt\\n\\n33 00:02:10,900 --> 00:02:13,500 trotzdem wir aus sehr unterschiedlichen Kulturen kommen\\n\\n34 00:02:13,600 --> 00:02:18,500 viele unterschiedliche Arten von Leuten, aber wir teilen auch dieselben Erfahrungen\\n\\n35 00:02:18,600 --> 00:02:20,700 wir haben alle die gleichen Dinge erlebt\\n\\n36 00:02:20,800 --> 00:02:23,900 Ich glaube jeder hat die gleichen Formen von Vandalismus revertiert.\\n\\n37 00:02:24,000 --> 00:02:25,500 Es ändert sich nichts durch die Sprache, in der Du arbeitest\\n\\n38 00:02:25,500 --> 00:02:30,500 es ist nicht wichtig, ob Dein Wiki fünfhundert Artikel oder fünfhunderttausend Artikel hat\\n\\n39 00:02:30,600 --> 00:02:34,000 oder drei Millionen, du wirst immer noch jemanden haben der vorbeikommt\\n\\n40 00:02:34,000 --> 00:02:39,500 und einen ganzen wundervollen Artikel mit zwei Schimpfwörtern ersetzt oder so etwas Ähnliches.\\n\\n41 00:02:39,600 --> 00:02:42,700 Und, natürlich, Du revertierst das einfach und sperrst den Vandalen, und das Ganze.\\n\\n42 00:02:42,800 --> 00:02:46,600 Das ist alles Teil davon, Wikipedianer zu sein, wir haben alle wirklich interessante Gespräche gehabt\\n\\n43 00:02:46,600 --> 00:02:46,800 über die Bezeichnungskonventionen von Dingen\\n\\n44 00:02:46,800 --> 00:02:53,200 wie wir einen Fluss in Polen nennen, und wie wir dieses benennen\\n\\n45 00:02:53,300 --> 00:02:56,300 wie wir jenes benennen, was die Kontroversen sind, die wir lösen müssen\\n\\n46 00:02:56,300 --> 00:02:58,400 und was der sinnvollste Weg vorwärts ist.\\n\\n47 00:02:58,500 --> 00:03:02,500 So, überall auf der Welt treffe ich die gleiche Sorte Leute, die die gleiche Arbeit machen\\n\\n48 00:03:02,600 --> 00:03:07,500 weil wir dieselben Erfahrungen geteilt haben. Und wir teilen auch die gleichen Werte, die gleichen Ideale\\n\\n49 00:03:07,500 --> 00:03:12,600 die Dinge, für die wir arbeiten - eine freie Enzyklopädie für jeden auf diesem Planeten\\n\\n50 00:03:12,700 --> 00:03:15,900 geschrieben von wirklich wundervollen nachdenklichen Leuten, die versuchen, neutral zu sein\\n\\n51 00:03:16,000 --> 00:03:19,800 versuchen, aufrichtig zu sein, versuchen, freie Information zu bringen.\\n\\n52 00:03:19,900 --> 00:03:23,800 Es ist immernoch genauso aufregend für mich wie ganz am Anfang in den ersten Tagen, als es begann.\\n\\n53 00:03:23,800 --> 00:03:25,500 Wir haben immernoch eine ganze Menge Arbeit übrig, die getan werden muss.\\n\\n54 00:03:25,600 --> 00:03:28,800 Heute ist ein großartiger Augenblick darüber nachzudenken wo wir gewesen sind\\n\\n55 00:03:28,800 --> 00:03:32,800 darüber nachzudenken wo wir hingehen, und, wow, ich weiß nicht\\n\\n56 00:03:32,900 --> 00:03:33,500 Du siehst wie aufgeregt ich werde\\n\\n57 00:03:33,600 --> 00:03:37,800 Ich möchte einfach nur sagen: Vielen Dank für all die Arbeit die Ihr geleistet habt\\n\\n58 00:03:37,900 --> 00:03:42,700 vielen Dank, heute hierher zu kommen um andere Leute zu treffen.\\n\\n59 00:03:42,800 --> 00:03:48,600 Tut mir einen Gefallen und findet jemanden in der Menge, den ihr vorher noch nie persönlich getroffen habt\\n\\n60 00:03:48,600 --> 00:03:50,100 stellt Euch vor und sagt:\\n\\n61 00:03:50,100 --> 00:03:52,200 \"Hey, was editierst Du am liebsten?\"\\n\\n62 00:03:52,300 --> 00:03:54,500 Lasst uns diese Community aufbauen\\n\\n63 00:03:54,500 --> 00:03:56,700 es geht alles um ein paar Freunde die etwas Nützliches machen.\\n\\n64 00:03:56,800 --> 00:04:01,900 So, vielen Dank nochmals und herzlichen Glückwunsch zum Geburtstag, Wikipedia.\\n\\n<!--65 00:04:03,200 -*-> 00:04:12,900 Wikipedia, 10 Jahre des Teilens der Summe allen Wissens.-->',\n", + " 'bytes': 7288,\n", + " 'sha1': '0odiusf2gz0vdi3am8yuoxz11zfl6xc',\n", + " 'parent_id': 48478308,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48504415,\n", + " 'timestamp': '2011-01-20T19:01:50Z',\n", + " 'user': {'id': 1436472, 'text': 'Anikroo'},\n", + " 'page': {'id': 12758967,\n", + " 'title': 'WalesCalltoAction.ogv.fa.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'add persian',\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 درود، من جیمی ولز مؤسس ویکی پدیا هستم\\n\\n2 00:00:08,351 --> 00:00:11,487 و امروز ما دهمین سالروز ویکی پدیا را جشن می گیریم.\\n\\n3 00:00:11,487 --> 00:00:16,467 تصور این که ده سال از زمان نخستین ویرایش من در ویکی پدیا گذشته، دشوار است.\\n\\n4 00:00:16,467 --> 00:00:23,472 من آن روز را به یاد دارم. آن روز من روی \"ویرایش\" کلیک کردم و نوشتم \"سلام دنیا\" و این آغاز ویکی پدیا و همه\\u200cی چیزهای پس از آن بود.\\n\\n5 00:00:23,472 --> 00:00:27,821 امروز ما میلیون\\u200cها مقاله به صدها زبان داریم.\\n\\n6 00:00:27,821 --> 00:00:33,1 این روزها نزدیک به 400 میلیون نفر در ماه از وب\\u200cسایت بازدید می\\u200cکنند،\\n\\n7 00:00:33,1 --> 00:00:40,924 و این چیز شگفت آوری است که رخ داده است. اگر شما به تاثیر آن بر فرهنگ ما بیندیشید، آن گیج کننده است.\\n\\n8 00:00:41,032 --> 00:00:43,609 و همه\\u200cی این با لطف شما بوده است. من از هر کسی که کمک کرد تشکر می\\u200cکنم.\\n\\n9 00:00:43,610 --> 00:00:45,624 من از تمام کسانی که ویکی\\u200cپدیا را ویرایش کرده\\u200cاند سپاسگزاری می\\u200cکنم\\n\\n10 00:00:45,624 --> 00:00:47,510 آن\\u200cهایی که به این پایگاه بزرگ دانش یاری رساندند.\\n\\n11 00:00:45,624 --> 00:00:50,101 من می\\u200cخواهم از تمام کسانی که ویکی\\u200cپدیا را می\\u200cخوانند تشکر کنم،\\n\\n12 00:00:50,102 --> 00:00:52,800 افرادی که واقعاً با ایده\\u200cها و دانش تعامل دارند.\\n\\n13 00:00:52,801 --> 00:00:55,107 همان چیزی که ما ویکی\\u200cپدیا را برای آن ساختیم. آن را ساختیم تا خوانده شود.\\n\\n14 00:00:55,108 --> 00:00:57,406 و من یک گفته\\u200cی کوچک برای عمل به آن دارم، یک خواسته\\u200cی کوچک از همه.\\n\\n15 00:00:57,406 --> 00:01:04,009 ... اگرچه ما میلیون\\u200cها مقاله داریم، اگرچه به صدها زبان فعالیت می\\u200cکنیم\\n\\n16 00:01:04,009 --> 00:01:07,462 هنوز کارهای زیادی برای انجام دادن هست. بنابراین من از همه می\\u200cخواهم\\n\\n17 00:01:07,462 --> 00:01:10,051 اگر تا کنون هیچ\\u200cگاه ویکی پدیا را ویرایش نکرده\\u200cاید، این کار را امتحان کنید.\\n\\n18 00:01:10,051 --> 00:01:13,736 بر روی \"ویرایش\" کلیک کنید. مشکلی در مقالات می\\u200cبینید؟ آن را برطرف کنید. ما واقعاً این کار را ارج می\\u200cنهیم.\\n\\n19 00:01:14,151 --> 00:01:17,752 و ... خوب. زادروزت مبارک ویکی\\u200cپدیا.\\n\\n20 00:01:19,428 --> 00:01:26,49 ویکی\\u200cپدیا، ۱۰ سال به اشتراک گذاشتن چکیده\\u200cای از همه\\u200cی دانش\\u200cها',\n", + " 'bytes': 3095,\n", + " 'sha1': 'adiynvxr2eb09axgfs2p3i7pxau7ojp',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48509690,\n", + " 'timestamp': '2011-01-20T21:49:23Z',\n", + " 'user': {'id': 212748, 'text': 'Beria'},\n", + " 'page': {'id': 12760474,\n", + " 'title': 'Great Feeling.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'ops :D',\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nErr, não, eu não tenho superpoderes.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nDe todo. Não.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nPodes certamente fazê-lo também.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nEu apertei o botão,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\ne salvei o texto,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWooooo!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nFoi…. excitante.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nVocê simplesmente modifica a Wikipédia,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nsimplesmente adicionas a tua própria contribuição para a Wikipédia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nEu li um artigo no \"Guardian\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nsobre esta enciclopédia on-line\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\npara a qual todos podiam contribuir\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\ne disse: \"Wow!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Talvez eu também possa contribuir!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nEu editei a primeira vez\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\ne acredito que fiquei viciado.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nEu não recebo nada por isso\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nEu simplesmente o faço por, você sabe,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nter algo a fazer nos meus tempos livres, é isto.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nPodes começar a editar por uma ideia,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nporque acreditas nisto,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nmas acabas por ter amigos,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nacabas por ter amores,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nacabas por ter essas maravilhosas discussões,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nacabas por ter novas ideias,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nvocê acaba com novos livros para escrever...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nVocê não está a escrever o artigo sozinho.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nEscreves uma parte,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\ne alguém aparece e diz:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hey, Eu tenho mais!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\ne juntos vocês podem criar\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nartigos que serão muitos maiores,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\ndo que aqueles que escreverias sozinho.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nE então tens sucesso.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nVocê sempre vai dizer: “Ok, o que eu fiz foi bem-sucedido.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\ne isso é maravilhoso.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nIsto é óptimo,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nporque editar é um sensação maravilhosa.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nToda as vezes que o fazes.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nEu tenho que dizer,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nquando eu li sobre a Wikipédia,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nEu decidi\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Este pode ser o lugar certo para mim\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nE era.',\n", + " 'bytes': 2840,\n", + " 'sha1': 'igpo0uakyjdyaccfry0d4ltyuzb84k5',\n", + " 'parent_id': 48509664,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48538211,\n", + " 'timestamp': '2011-01-21T22:01:09Z',\n", + " 'user': {'id': 328757, 'text': 'Koraiem'},\n", + " 'page': {'id': 12769138,\n", + " 'title': 'Nice People MEDIUM.ogv.ar.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Created Arabic Translation for [[File:Nice_People_MEDIUM.ogv]]',\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 لو لديك علم ما، لماذا تبقيه لنفسك؟\\n\\n2 00:00:04,249 --> 00:00:07,174 أعتقد انه يجب عليك مشاركته مع الآخرين\\n\\n3 00:00:07,174 --> 00:00:10,031 أنا معجب بأن هدف هذا الموقع\\n\\n4 00:00:10,031 --> 00:00:15,325 لم يقل \"موقع\"، ولم يقل \"ويكي\"، ولم يقل \"إنترنت\"،\\n\\n5 00:00:15,325 --> 00:00:17,113 بل قال فقط \"معرفة مجانية\\n\\n6 00:00:17,113 --> 00:00:19,411 للجميع، كل بلغتهم\".\\n\\n7 00:00:19,411 --> 00:00:21,548 عندما يكون مجتمعا ما مفتوحا،\\n\\n8 00:00:21,548 --> 00:00:23,428 يصنعه فعلا أولئك الذين\\n\\n9 00:00:23,428 --> 00:00:25,936 يجرؤن على قبول الدعوة.\\n\\n10 00:00:25,936 --> 00:00:27,956 وهذه دعوة.\\n\\n11 00:00:27,956 --> 00:00:29,535 بالطبع لا يجب عليك قبول الدعوة،\\n\\n12 00:00:29,535 --> 00:00:31,439 ولكن ثمة دعوة هناك\\n\\n13 00:00:31,439 --> 00:00:32,879 في زِر \"تعديل\" تقول\\n\\n14 00:00:32,879 --> 00:00:37,709 \"تعال، كن جزء، ما تعرفه لا يقل أهمية عن ما نعرفه\". \\n\\n15 00:00:37,709 --> 00:00:40,472 أنت تعلم أنك تمنح علما للناس،\\n\\n16 00:00:40,472 --> 00:00:43,026 وليس فقط أيُ ناس بل للعالم أجمع.\\n\\n17 00:00:43,026 --> 00:00:47,113 أنا أشعر بالروعة من خلال المساهمة في موسوعة\\n\\n18 00:00:47,113 --> 00:00:51,455 متاحة افتراضيا للجميع في العالم اجمع.\\n\\n19 00:00:51,455 --> 00:00:55,286 أنت تجعل نفسك سعيدا فقط عن طريق مساعدة الأخرين، هذا كل شئ.\\n\\n20 00:00:55,286 --> 00:00:57,283 أنا أساعد الناس لأني أريد أن أكون سعيدا.\\n\\n21 00:00:57,283 --> 00:01:00,650 أنت تعمل سوياً مع العديد من الناس\\n\\n22 00:01:00,650 --> 00:01:04,156 من ثقافات عديدة مختلفة، وهذا ببساطة رائع.\\n\\n23 00:01:04,156 --> 00:01:06,501 المهم في الأمر، بالنسبة لي، ما يدور حوله كل شئ\\n\\n24 00:01:06,501 --> 00:01:08,754 هو الناس شديدة الطيبة.\\n\\n25 00:01:08,754 --> 00:01:10,890 أنت تعرف، كلنا لدينا أولئك الناس الطيبون\\n\\n26 00:01:10,890 --> 00:01:14,466 الذين [يأتون] أون لاين ويكتبون،\\n\\n27 00:01:14,466 --> 00:01:16,231 وبدلا من الصراخ في بعضهم البعض\\n\\n28 00:01:16,231 --> 00:01:18,437 أو الدخول في حوار\\n\\n29 00:01:18,437 --> 00:01:20,875 أو قراءة أخبار النميمة أو أي شئ،\\n\\n30 00:01:20,875 --> 00:01:22,198 يحاولون أن يقوموا ببناء شئ ما\\n\\n31 00:01:22,198 --> 00:01:23,707 سيجده الجميع مفيدا لهم.\\n\\n32 00:01:23,707 --> 00:01:26,029 أعتقد أن هذا رائع، ناس طيبون حقا.',\n", + " 'bytes': 2928,\n", + " 'sha1': 'm10b05eihtwtouzasberw5z8zwiuzep',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 172917636,\n", + " 'timestamp': '2015-09-22T16:00:39Z',\n", + " 'user': {'id': 996385, 'text': 'KOKUYO'},\n", + " 'page': {'id': 12820900,\n", + " 'title': 'Boldness and links tutorial.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"0\\n00:00:00,333 --> 00:00:04,504\\n這是一段關於維基格式的短片\\n\\n1\\n00:00:04,504 --> 00:00:06,606\\n這段片會介紹如何令文字變成粗體\\n\\n2\\n00:00:06,606 --> 00:00:08,908\\n及連結至其他維基上的頁面\\n\\n3\\n00:00:08,908 --> 00:00:11,845\\n你可以在自己個人的沙盒中\\n\\n4\\n00:00:11,845 --> 00:00:14,514\\n試試如何去做這些內容\\n\\n5\\n00:00:14,514 --> 00:00:17,083\\n如果你沒有一個沙盒頁面\\n\\n6\\n00:00:17,083 --> 00:00:20,587\\n輸入「Help:沙盒入門」\\n\\n7\\n00:00:20,587 --> 00:00:22,956\\n在搜索箱中\\n\\n8\\n00:00:22,956 --> 00:00:26,259\\n這個頁面指導了你如何去建立一個沙盒\\n\\n9\\n00:00:26,259 --> 00:00:31,097\\n要開始,在你的沙盒按「編輯」\\n\\n10\\n00:00:31,097 --> 00:00:33,266\\n這會打開編輯頁面\\n\\n11\\n00:00:33,266 --> 00:00:35,802\\n這就是你可以進行編輯的地方\\n\\n12\\n00:00:35,802 --> 00:00:38,171\\n我們由基礎開始\\n\\n13\\n00:00:38,171 --> 00:00:39,739\\n粗體\\n\\n14\\n00:00:39,739 --> 00:00:44,092\\n粗體在大多數條目中會在頭部出現\\n\\n15\\n00:00:44,092 --> 00:00:46,146\\n以標明條目的主題。\\n\\n16\\n00:00:46,146 --> 00:00:48,882\\n所以這是你需要學習的第一件東西\\n\\n17\\n00:00:48,882 --> 00:00:50,784\\n你可以令文字變粗\\n\\n18\\n00:00:50,784 --> 00:00:52,652\\n只需使用你的滑鼠並把文字高亮\\n\\n19\\n00:00:52,652 --> 00:00:54,854\\n之後點「B」按鈕(英文版本)或「A」按鈕(中文版本)\\n\\n20\\n00:00:54,854 --> 00:00:56,489\\n它放了在編輯工具列\\n\\n21\\n00:00:56,489 --> 00:00:59,325\\n這會增加三個 '\\n\\n22\\n00:00:59,325 --> 00:01:01,695\\n在你要粗體的文字前有三個 '\\n\\n23\\n00:01:01,695 --> 00:01:04,764\\n後面亦有三個 '\\n\\n24\\n00:01:04,764 --> 00:01:06,866\\n看看它是如何的\\n\\n25\\n00:01:06,866 --> 00:01:09,135\\n拉到編輯頁面的下方\\n\\n26\\n00:01:09,135 --> 00:01:12,772\\n輸入一個編輯簡介\\n\\n27\\n00:01:12,772 --> 00:01:14,741\\n並點「儲存頁面」\\n\\n28\\n00:01:14,741 --> 00:01:16,081\\n這是一個好的習慣\\n\\n29\\n00:01:16,081 --> 00:01:19,946\\n如果你能每次編輯都留下編輯簡介\\n\\n30\\n00:01:19,946 --> 00:01:22,382\\n因為這可以令你知道你做過甚麼的編輯\\n\\n31\\n00:01:22,382 --> 00:01:25,485\\n及更方便地與他人合作編輯\\n\\n32\\n00:01:25,485 --> 00:01:30,019\\n你的沙盒上應該已經有些粗體文字\\n\\n33\\n00:01:30,019 --> 00:01:33,526\\n按「編輯」按鈕繼續\\n\\n34\\n00:01:33,526 --> 00:01:36,463\\n這次,我們會加入連結\\n\\n35\\n00:01:36,463 --> 00:01:41,167\\n這是由維基百科的一個頁面連結到\\n\\n36\\n00:01:41,167 --> 00:01:42,435\\n另一個頁面\\n\\n37\\n00:01:42,435 --> 00:01:44,571\\n在「bold」字上嘗試吧\\n\\n38\\n00:01:44,571 --> 00:01:47,024\\n要加入維基連結\\n\\n39\\n00:01:47,024 --> 00:01:48,742\\n把該字高亮\\n\\n40\\n00:01:48,742 --> 00:01:51,544\\n在編輯工具列中按「連結」按鈕\\n\\n41\\n00:01:51,544 --> 00:01:55,115\\n這會開啟加入連結信息框\\n\\n42\\n00:01:55,115 --> 00:01:57,035\\n點「加入連結」按鈕\\n\\n43\\n00:01:57,035 --> 00:02:00,186\\n會加入連結的代碼\\n\\n44\\n00:02:00,186 --> 00:02:02,422\\n兩個 [\\n\\n45\\n00:02:02,422 --> 00:02:05,125\\n接著是你的連結\\n\\n46\\n00:02:05,125 --> 00:02:06,086\\n(這個示範:「bold」)\\n\\n47\\n00:02:06,086 --> 00:02:10,003\\n接著有兩個 ] 結束。\\n\\n48\\n00:02:10,003 --> 00:02:12,699\\n現在,輸入編輯簡介並提交編輯\\n\\n49\\n00:02:12,699 --> 00:02:15,702\\n「bold」這個字變成藍色\\n\\n50\\n00:02:15,702 --> 00:02:18,505\\n及連結至條目「bold」\\n\\n51\\n00:02:18,505 --> 00:02:20,473\\n這個頁面其實\\n\\n52\\n00:02:20,473 --> 00:02:23,243\\n是連結至「Emphasis (typography)」\\n\\n53\\n00:02:23,243 --> 00:02:25,478\\n但這個給了一個重定向方便讀者使用\\n\\n54\\n00:02:25,478 --> 00:02:29,416\\n但是如果這不是你想連結到的頁面,該如何?\\n\\n55\\n00:02:29,416 --> 00:02:31,885\\n你是解「Boldness」\\n\\n56\\n00:02:31,885 --> 00:02:33,853\\n即being shy的相反嗎?\\n\\n57\\n00:02:33,853 --> 00:02:36,056\\n再次編輯頁面吧\\n\\n58\\n00:02:36,056 --> 00:02:38,792\\n這次在插入連結信息框\\n\\n59\\n00:02:38,792 --> 00:02:41,728\\n將「bold」改為「boldness」\\n\\n60\\n00:02:41,728 --> 00:02:44,397\\n(在「目標頁面或連結」一項)。\\n\\n61\\n00:02:44,397 --> 00:02:47,667\\n現在,點「插入連結」按鈕\\n\\n62\\n00:02:47,667 --> 00:02:49,836\\n就創建了一個連結了\\n\\n63\\n00:02:49,836 --> 00:02:52,205\\n這就是維基代碼了\\n\\n64\\n00:02:52,205 --> 00:02:56,142\\n這就是如果要連結到與顯示文字不同的編輯代碼\\n\\n65\\n00:02:56,142 --> 00:02:59,679\\n這包括兩個 [\\n\\n66\\n00:02:59,679 --> 00:03:00,098\\n像一個連結\\n\\n67\\n00:03:00,098 --> 00:03:03,917\\n接著是你想連結到的頁面\\n\\n68\\n00:03:03,917 --> 00:03:05,352\\nboldness\\n\\n69\\n00:03:05,352 --> 00:03:06,953\\n之後,一個 |\\n\\n70\\n00:03:06,953 --> 00:03:10,156\\n你可以用shift + \\\\插入\\n\\n71\\n00:03:10,156 --> 00:03:12,192\\n在大部份的鍵盤中\\n\\n72\\n00:03:12,192 --> 00:03:14,227\\n這是條目名\\n\\n73\\n00:03:14,227 --> 00:03:16,629\\n之後是你想顯示的文字\\n\\n74\\n00:03:16,629 --> 00:03:17,864\\nbold\\n\\n75\\n00:03:17,864 --> 00:03:20,467\\n再加兩個 ] 結束。\\n\\n76\\n00:03:20,467 --> 00:03:24,337\\n這是一般的連結\\n\\n77\\n00:03:24,337 --> 00:03:26,005\\n如果你保存頁面\\n\\n78\\n00:03:26,005 --> 00:03:27,674\\n你可以看到結果\\n\\n79\\n00:03:27,674 --> 00:03:29,442\\n連結寫了「bold」\\n\\n80\\n00:03:29,442 --> 00:03:30,844\\n如果你點入去\\n\\n81\\n00:03:30,844 --> 00:03:33,279\\n你可以訪問條目「Boldness」\\n\\n82\\n00:03:33,279 --> 00:03:35,248\\n最後,請積極參與編輯工作!\",\n", + " 'bytes': 5378,\n", + " 'sha1': 'dst3yud6zpvfmbtlkq3wh8yshhtuf4j',\n", + " 'parent_id': 48781681,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48843043,\n", + " 'timestamp': '2011-01-29T01:32:49Z',\n", + " 'user': {'id': 970420, 'text': 'Mono'},\n", + " 'page': {'id': 12841760,\n", + " 'title': 'Footage of Egyptian protests from Al Jazeera office.ogv.undefined.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Edited subtitles using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': \"1\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nWe are standing in what is called the Abdr Minhrod square.\\n\\n2\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nIt's one of the busier squares here in the heart of Cairo, just adjacent to Liberation Square. \\n\\n3\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nIt houses, from where we are just a few short kilometers away,\\n\\n4\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthe Ministry of Foreign Affairs, the Ministry of Information, Egypt's national museum, some of Egypt's \\n\\n5\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nbiggest hotel chains, so this is a very, very significant part of the city.\\n\\n6\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nAnd that bridge we keep talking about–the October 6 bridge–one of the most important thouroughways that \\n\\n7\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ncuts all across Cairo from east to west. You can see traffic on it is moving very, very slowly; the vast \\n\\n8\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nmajority of the people right now are underneath it. And what seems to have happened over the past few hours \\n\\n9\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand actually what you're seeing right there–I'm going to have our cameraman go down–you can see people \\n\\n10\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nbreaking into the barricades of one of the hotels. That hotel where you're seeing people run across is \\n\\n11\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthe Hilton hotel. There are a lot of tourists that have been looking out their window watching what's \\n\\n12\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nhappening. Now what you're seeing the protestors are being dispersed using tear gas. They've managed \\n\\n13\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nto break through the barricade of the hotel. They're trying to find refuge at least somewhere there. \\n\\n14\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nYou can see more tear gas being fired at the protestors and more of them are coming our way.\\n\\n15\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n<background noise; narrator, cameraman speaking inaudibly>\\n\\n16\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nYeah, yeah. Sorry come on...it's just there are more tear gas canisters being fired in the direction \\n\\n17\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nof our building actually toward the protestors and you can see it. And unfortunately, cause the tear \\n\\n18\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ngas is kind of...uh...we're just going to...\\n\\n19\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nJust one second, stay with us.\\n\\n20\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nThere, what you're seeing right now are pictures of the tear gas. We're going to switch out our cameraman\",\n", + " 'bytes': 2408,\n", + " 'sha1': 'o3011wefxk25gpgtz9qwr07uyppszl8',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 180899487,\n", + " 'timestamp': '2015-12-03T14:56:08Z',\n", + " 'user': {'id': 1267425, 'text': 'Sima shimony'},\n", + " 'page': {'id': 12842009,\n", + " 'title': 'The State of Wikipedia by JESS3.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:01,114 --> 00:00:05,414 (The State of Wikipedia)\\n\\n<!--1.1 00:00:05,414 --*> 00:00:06,414 (Speaker: Jimmy Wales, founder of Wikipedia.) --> \\n\\n2 00:00:06,414 --> 00:00:08,000 (Wikipedia, The Free Encyclopedia)\\n\\n3 00:00:08,000 --> 00:00:11,100 Wikipedia is one of the most important websites on the Internet today\\n\\n4 00:00:11,100 --> 00:00:16,000 but you might be surprised to learn it began as a side project of another online encyclopedia.\\n\\n5 00:00:16,000 --> 00:00:22,300 That was called Nupedia, to be a traditional encyclopedia written by experts\\n\\n6 00:00:22,300 --> 00:00:27,500 free and online - but only one person had final publishing authority and it wasn\\'t quite taking off.\\n\\n7 00:00:30,000 --> 00:00:36,300 As the founder of Nupedia, I led the group to establish a farm team of sorts for future Nupedia articles.\\n\\n8 00:00:36,300 --> 00:00:42,500 We used a new software platform to make collaboration easy - the wiki - Wikipedia.\\n\\n9 00:00:45,000 --> 00:00:48,500 It happened to be the perfect way to write many pages very quickly.\\n\\n10 00:00:48,500 --> 00:00:52,900 Soon enough, Nupedia couldn\\'t keep up and Wikipedia took center stage.\\n\\n11 00:00:53,100 --> 00:00:58,700 We were creating not just a free content encyclopedia but a \"free encyclopedia that anyone can edit.\" \\n\\n12 00:00:58,800 --> 00:01:04,500 Other language editions appeared quickly - over 270 at last count\\n\\n13 00:01,04,600 --> 00:01:08,900 and it was soon followed by sister projects like Wikisource, Wikinews and Wiktionary.\\n\\n14 00:01:08,900 --> 00:01:15,200 In 2003, I created the Wikimedia Foundation to ensure that Wikipedia could keep up with its own growth.\\n\\n15 00:01:15,200 --> 00:01:18,800 Wikipedia gets almost 400 million visitors every month\\n\\n16 00:01:18,900 --> 00:01:22,200 and the list of sites visited more often is very short and very famous.\\n\\n17 00:01:22,300 --> 00:01:27,950 Wikipedia celebrates its tenth anniversary in January 2011\\n\\n18 00:01:28,000 --> 00:01:31,500 and in these ten years has become one of the most popular websites in the world.\\n\\n19 00:01:31,500 --> 00:01:37,400 I still lead the community and the Wikimedia Foundation helps us to make Wikipedia what it is today.\\n\\n20 00:01:37,500 --> 00:01:39,300 Who does edit Wikipedia?\\n\\n21 00:01:39,350 --> 00:01:44,000 Over time, as many as 1.2 million people have contributed to Wikipedia.\\n\\n22 00:01:44,000 --> 00:01:49,990 As of 2010, there are more than 11 million monthly edits to all Wikipedias in all languages.\\n\\n23 00:01:50,000 --> 00:01:55,200 According to one survey, we have about twice the proportion of Ph.Ds compared to the general public.\\n\\n24 00:01:55,300 --> 00:02:03,200 On the English Wikipedia almost 50% have no religion and 14.6% of French editors claim to believe in Pastafarianism.\\n\\n25 00:02:03,300 --> 00:02:06,100 It would be fair to say that most Wikipedians are not average.\\n\\n26 00:02:06,200 --> 00:02:11,300 One reason, maybe, is that editing a single page is easy, but getting heavily involved is harder.\\n\\n27 00:02:11,400 --> 00:02:16,400 The community is defined by more than 200 combined policies, guidelines and essays\\n\\n28 00:02:16,400 --> 00:02:20,100 to say nothing of the discussions and reviews, committees and noticeboards\\n\\n29 00:02:20,100 --> 00:02:21,400 WikiProjects and more.\\n\\n30 00:02:21,500 --> 00:02:25,350 All the site content is decided by Wikipedia\\'s volunteer contributors.\\n\\n31 00:02:25,350 --> 00:02:28,900 The Wikimedia Foundation has no editorial role whatsoever.\\n\\n32 00:02:29,800 --> 00:02:33,400 The Foundation\\'s job is to keep the servers running and the lights on, but there\\'s more to it than that.\\n\\n33 00:02:33,400 --> 00:02:36,300 The Foundation is also growing Wikipedia\\'s presence worldwide\\n\\n34 00:02:36,400 --> 00:02:43,200 more data centers to speed up Wikipedia worldwide and even bringing its first office outside of the United States to India.\\n\\n35 00:02:43,300 --> 00:02:46,800 Wikipedia is already very popular in the West and in the North.\\n\\n36 00:02:46,800 --> 00:02:50,700 A new challenge is going to be making Wikipedia available to the developing world, as well.\\n\\n37 00:02:50,750 --> 00:02:54,500 The Foundation is a charity and runs entirely on donations\\n\\n38 00:02:54,600 --> 00:03:00,200 some from corporations and institutions, but the vast majority from its millions of editors and readers.\\n\\n39 00:03:00,200 --> 00:03:05,300 It\\'s incredible what has been accomplished already, but Wikipedia is far from done.\\n\\n40 00:03:05,300 --> 00:03:09,500 As any reader knows, some articles are very good, but some are not.\\n\\n41 00:03:09,600 --> 00:03:11,200 Wikipedia still needs a lot of work.\\n\\n42 00:03:11,300 --> 00:03:13,500 Yet, this is a new challenge.\\n\\n43 00:03:13,500 --> 00:03:17,400 Not just building an encyclopedia from scratch, but making it better\\n\\n44 00:03:17,400 --> 00:03:22,500 more accurate, more citations. Not just broad, but deep.\\n\\n45 00:03:22,650 --> 00:03:27,000 There\\'s never been anything like Wikipedia before, and its future horizon is very, very long.\\n\\n46 00:03:27,100 --> 00:03:31,300 As Wikipedia enters its second decade, it\\'s up to all of us to make sure it gets even better.\\n\\n47 00:03:27,300 --> 00:03:35,000 (Wikipedia, The Free Encyclopedia)\\n\\n<!-- 47.1 00:03:36,200 --*> 00:03:37,200 (Narrated by Jimmy Wales, Founder of Wikipedia.) -->\\n\\n<!-- 47.2 00:03:37,200 --*> 00:03:38,200 (Directed by Jesse Thomas.) -->\\n\\n48 00:03:39,000 --> 00:03:41,500 (A JESS3 Production)',\n", + " 'bytes': 5419,\n", + " 'sha1': 'nt4p588zt41kd3g7kbrkrvnu4nt5n1a',\n", + " 'parent_id': 180899334,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48848269,\n", + " 'timestamp': '2011-01-29T05:57:34Z',\n", + " 'user': {'id': 1177211, 'text': 'Waihorace'},\n", + " 'page': {'id': 12842581,\n", + " 'title': 'Createaccount.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:06,000 --> 00:00:09,300 First, go to en.wikipedia.org 2 00:00:09,300 --> 00:00:13,000 Then, click on the \"Log in / Create Account\" in the top right hand c...\\'',\n", + " 'text': '1 00:00:06,000 --> 00:00:09,300 First, go to en.wikipedia.org\\n\\n2 00:00:09,300 --> 00:00:13,000 Then, click on the \"Log in / Create Account\" in the top right hand corner.\\n\\n3 00:00:13,000 --> 00:00:18,200 Click on \"Don\\'t have an account? Create one.\"\\n\\n4 00:00:18,200 --> 00:00:22,300 Go down to the page\\n\\n5 00:00:22,400 --> 00:00:23,500 And type in the word\\n\\n6 00:00:23,500 --> 00:00:26,700 Then, type in the username you want to use, \\n\\n7 00:00:26,700 --> 00:00:30,900 the password you would like, and the optional email address.\\n\\n8 00:00:31,000 --> 00:00:33,600 After that, click \"Create Account\".\\n\\n9 00:00:33,600 --> 00:00:36,000 And now on, you have a Wikipedia account.',\n", + " 'bytes': 671,\n", + " 'sha1': 'r4i6gsplch7zhb0zsuqi5hdiec4r40j',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48848300,\n", + " 'timestamp': '2011-01-29T06:01:57Z',\n", + " 'user': {'id': 1177211, 'text': 'Waihorace'},\n", + " 'page': {'id': 12842592,\n", + " 'title': 'Createaccount.ogg.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:06,000 --> 00:00:09,300 首先,訪問維基百科(中文版zh.wikipedia.org,英文版en.wikipedia.org) 2 00:00:09,300 --> 00:00:13,000 之後,...'\",\n", + " 'text': '1 00:00:06,000 --> 00:00:09,300 首先,訪問維基百科(中文版zh.wikipedia.org,英文版en.wikipedia.org)\\n\\n2 00:00:09,300 --> 00:00:13,000 之後,點「登入/建立新帳戶」按鈕。它會在右上方出現。\\n\\n3 00:00:13,000 --> 00:00:18,200 點「您還沒有帳號嗎?建立新帳號。」\\n\\n4 00:00:18,200 --> 00:00:22,300 把頁面拉下去\\n\\n5 00:00:22,400 --> 00:00:23,500 輸入那個顯示了的字\\n\\n6 00:00:23,500 --> 00:00:26,700 再輸入你想使用的用戶名、 \\n\\n7 00:00:26,700 --> 00:00:30,900 你想用的密碼,以及可選填性的電郵地址。\\n\\n8 00:00:31,000 --> 00:00:33,600 之後,點「創建新帳號。」\\n\\n9 00:00:33,600 --> 00:00:36,000 那麼,從現時開始,你便有一個維基百科的帳戶。',\n", + " 'bytes': 760,\n", + " 'sha1': '5hncy971edil9g9vptix88oipq16sr2',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 274894163,\n", + " 'timestamp': '2017-12-29T02:14:09Z',\n", + " 'user': {'id': 2196981, 'text': 'LNDDYL'},\n", + " 'page': {'id': 12842688,\n", + " 'title': 'The State of Wikipedia by JESS3.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:01,000 --> 00:00:04,000 《維基百科的現況》\\n\\n1.1 00:00:04,000 --> 00:00:06,414 (旁白:維基百科創辦者吉米·威爾斯)\\n\\n2 00:00:06,414 --> 00:00:08,000 (維基百科,自由的百科全書)\\n\\n3 00:00:08,000 --> 00:00:11,100 維基百科是今日網際網路上最受歡迎的網站之一。\\n\\n4 00:00:11,100 --> 00:00:16,000 但你可能會很驚訝它原本是由另一個網路百科全書之子計畫發展而來的。\\n\\n5 00:00:16,000 --> 00:00:22,300 它叫做Nupedia,是個由專家編寫的傳統百科全書,\\n\\n6 00:00:22,300 --> 00:00:27,500 免費以及在線 ─ 但只有一個人擁有最後決定發表的權限,而且那個人經常不在。\\n\\n7 00:00:30,000 --> 00:00:36,300 身為Nupedia的創辦者,我帶領了一班團隊共同為之後的Nupedia建立條目。\\n\\n8 00:00:36,300 --> 00:00:42,500 我們用了一個更方便於共同編輯的軟體平台:Wiki - 維基百科。\\n\\n9 00:00:45,000 --> 00:00:48,500 Wiki是一個讓人能夠快速修改網頁文章的優秀平台。\\n\\n10 00:00:48,500 --> 00:00:52,900 很快地Nupedia不能夠跟上腳步,而維基百科則成為了主角。\\n\\n11 00:00:53,200 --> 00:00:58,700 我們不但是在建立一個任何人都可以使用內容的百科,更是「人人都可以編輯的自由百科全書」。 \\n\\n12 00:00:58,800 --> 00:01:04,500 其他語言迅速出現,最後一次統計時已經有超過270種語言。\\n\\n13 00:01,04,600 --> 00:01:08,500 很快地,包括維基文庫、維基新聞、維基詞典等其他計劃也跟著出現,\\n\\n14 00:01:09,000 --> 00:01:15,200 因此在2003年,我創立了維基媒體基金會以讓維基百科能夠繼續自行成長。\\n\\n15 00:01:15,200 --> 00:01:18,800 維基百科每個月有4億瀏覽人次,\\n\\n16 00:01:18,900 --> 00:01:22,200 而許多瀏覽網頁的人們實際上是花短短時間看那些最近較為關注的內容。\\n\\n17 00:01:22,300 --> 00:01:27,950 維基百科在2011年1月時慶祝其成立十周年的生日,\\n\\n18 00:01:28,000 --> 00:01:31,500 並且歡慶在這10年間已經變成世界上最受歡迎的網站之一。\\n\\n19 00:01:31,500 --> 00:01:37,400 我仍然繼續帶領著社群及維基媒體基金會來讓維基百科持續運作。\\n\\n20 00:01:37,500 --> 00:01:39,300 誰編輯了維基百科?\\n\\n21 00:01:39,350 --> 00:01:44,000 隨著時間的推移,已經有多達120萬人曾參與維基百科的編輯。\\n\\n22 00:01:44,000 --> 00:01:49,990 在2010年,各個語言版本的維基百科每個月有1,100萬次編輯。\\n\\n23 00:01:50,000 --> 00:01:55,200 根據一份問卷,我們的編輯群擁有博士學位者比一般大眾編輯者還多出2倍。\\n\\n24 00:01:55,300 --> 00:02:03,200 在英語維基百科有將近一半人沒有宗教信仰,而有14.6%的法語編輯者宣稱他們信仰「飛行義大利麵怪物信仰」,\\n\\n25 00:02:03,300 --> 00:02:06,100 可以直接說維基百科人都不是一般人。\\n\\n26 00:02:06,200 --> 00:02:11,300 一個原因可能是因為編輯頁面雖然很容易,但是積極地大量貢獻卻十分困難。\\n\\n27 00:02:11,400 --> 00:02:16,400 而社群有200多條方針、指引以及論述,\\n\\n28 00:02:16,400 --> 00:02:20,100 再加上無數次討論、審議、仲裁、告示板,\\n\\n29 00:02:20,100 --> 00:02:21,400 以及維基專題等等要求。\\n\\n30 00:02:21,500 --> 00:02:25,350 所有的網站內容由維基百科的貢獻者決定,\\n\\n31 00:02:25,350 --> 00:02:28,900 維基媒體基金會不會扮演任何編輯角色。\\n\\n32 00:02:29,800 --> 00:02:33,400 維基媒體基金會只負責讓伺服器繼續運作並宣傳網站,\\n\\n33 00:02:33,400 --> 00:02:36,300 以及在全世界各地發展維基百科。\\n\\n34 00:02:36,400 --> 00:02:43,200 這包括在世界各地設立資料中心與伺服器,和在印度設立了於美國本土以外第一個海外辦公室。\\n\\n35 00:02:43,300 --> 00:02:46,800 維基百科在西方以及北半球國家已經很熱門,\\n\\n36 00:02:46,800 --> 00:02:50,700 但是我們的挑戰是如何在發展中國家內推廣維基百科的使用。\\n\\n37 00:02:50,750 --> 00:02:54,500 維基媒體基金會是一家慈善機構,主要是由捐款維持運作。\\n\\n38 00:02:54,600 --> 00:03:00,200 少部份捐款來自企業機構,但絕大部份均來自於數以百萬計的編者及讀者。\\n\\n39 00:03:00,200 --> 00:03:05,300 維基百科已經達成的成就令人感到驚訝,但維基百科距離完成還有一段很長的距離。\\n\\n40 00:03:05,300 --> 00:03:09,500 很多讀者都知道維基百科有些條目是極為優秀,但亦有些文章完全相反且有待改善。\\n\\n41 00:03:09,600 --> 00:03:11,200 維基百科還需要持續工作下去。\\n\\n42 00:03:11,300 --> 00:03:13,500 然而這是一個新的挑戰,\\n\\n43 00:03:13,500 --> 00:03:17,400 不只是從頭建立一個百科全書,而是要讓條目更為全面、\\n\\n44 00:03:17,400 --> 00:03:22,500 更為準確以及更多來源。不只是涉及廣泛,還要更加深入。\\n\\n45 00:03:22,650 --> 00:03:27,000 這是以前從沒有人做過的計劃,而其未來的發展是廣闊無邊的。\\n\\n46 00:03:27,100 --> 00:03:31,300 在要進入維基百科第二個十年前,我們要讓維基百科變得更好。\\n\\n47 00:03:31,500 --> 00:03:35,000 (維基百科,自由的百科全書)\\n\\n47.1 00:03:35,500 --> 00:03:37,000 (由維基百科創辦者吉米·威爾斯旁述。)\\n\\n47.2 00:03:37,100 --> 00:03:38,000 (由Jesse Thomas指導拍攝。)\\n\\n47.3 00:03:38,000 --> 00:03:38,800 (造訪 http://www.thestateofwikipedia.com 獲得更多資訊)\\n\\n48 00:03:39,000 --> 00:03:41,500 (JESS3製作)',\n", + " 'bytes': 5589,\n", + " 'sha1': 'ta0eh4clvt0f21y14p7mgiauagt3rb0',\n", + " 'parent_id': 129017611,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49607020,\n", + " 'timestamp': '2011-02-10T08:18:40Z',\n", + " 'user': {'id': 567203, 'text': 'Uusijani'},\n", + " 'page': {'id': 13260993,\n", + " 'title': 'Eben Moglen - From the birth of printing to industrial culture; the root of copyright.ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'about 75 % done',\n", + " 'text': '0\\n00:00:00,000 --> 00:00:05,000\\nHaastattelussa [[w:Eben Moglen|Eben Moglen]]\\n\\n1\\n00:00:06,000 --> 00:00:09,600\\nNo voisin aloittaa vaikka\\nmuotoilemalla sen näin: -\\n\\n2\\n00:00:10,240 --> 00:00:14,520\\nKirja, joka oli ensimmäinen\\nmassatuotettu esine lännessä,\\n\\n3\\n00:00:15,000 --> 00:00:21,800\\nkäynnisti tosiasiassa\\ntiedon teollistumisprosessin.\\n\\n4\\n00:00:24,000 --> 00:00:31,160\\nKeskiaikaisesta käsityöläisestä, joka\\ntuotti tai kulutti tietoa matkustellen kauas, -\\n\\n5\\n00:00:32,000 --> 00:00:37,640\\nja jolla oli haasteena erityistietoa\\nomaavien ihmisten löytäminen, -\\n\\n6\\n00:00:38,120 --> 00:00:42,400\\ntuli vain parin sukupolven sisällä -\\n\\n7\\n00:00:43,280 --> 00:00:49,920\\nLänsi-Euroopan kirjojen maailma,\\npainettujen massatuotteiden, -\\n\\n8\\n00:00:50,360 --> 00:00:52,120\\njotka levittivät tietoa laajalti, -\\n\\n9\\n00:00:53,000 --> 00:00:59,720\\nja muuttavat maailmaa koskevan\\nerityistiedon keräämisen -\\n\\n10\\n00:01:00,000 --> 00:01:03,200\\nmatkustamisesta muistamistyöksi.\\n\\n11\\n00:01:04,680 --> 00:01:10,400\\nSiitä maailmasta siirryttiin\\nedisonilaisen vallankumouksen kautta, -\\n\\n12\\n00:01:10,680 --> 00:01:14,600\\n1800-luvun puolivälistä\\n1900-luvun lopulle tultaessa -\\n\\n13\\n00:01:15,520 --> 00:01:23,440\\nmaailmaan, jossa muistista tuli yleinen\\nanaloginen kulttuuriartefakti.\\n\\n14\\n00:01:24,360 --> 00:01:31,920\\nEli kirjastosta löytyvä kirja,\\njohon kykenevä yleisö voi tukeutua, -\\n\\n15\\n00:01:32,680 --> 00:01:37,400\\nkorvautuu pitkälti liikkuvilla kuvilla,\\näänitallenteilla, -\\n\\n16\\n00:01:38,120 --> 00:01:43,480\\nsaatavilla olevalla kansankielisellä\\nkulttuurilla, joka tuo valtavasti tietoa -\\n\\n17\\n00:01:44,160 --> 00:01:48,760\\nei enää vain kykenevälle yleisölle,\\nvaan jokaisen kotiin.\\n\\n18\\n00:01:49,160 --> 00:01:56,240\\nTällä oli tietty tarkoituksensa:\\nse tarkoitettiin, tai ainakin se syntyi samalla, -\\n\\n19\\n00:01:56,520 --> 00:02:03,400\\nkun Henry Ford värväsi maailman työläiset\\nuudeksi kuluttajien armeijaksi,\\n\\n20\\n00:02:03,800 --> 00:02:09,280\\nihmisiksi, jotka pelastivat kapitalismin\\ntiukissa paikoissa kuluttamalla tuotteita, -\\n\\n21\\n00:02:09,760 --> 00:02:18,280\\njotka lopettivat ylituotantokriisin\\nryhtymällä kurinalaiseksi kuluttaja-armeijaksi.\\n\\n22\\n00:02:19,120 --> 00:02:21,320\\nJa tullakseen kurinalaiseksi\\nkuluttaja-armeijaksi -\\n\\n23\\n00:02:21,680 --> 00:02:26,120\\ntyöläisille piti järjestää kulttuuri,\\njoka selitti kuluttamisen, -\\n\\n24\\n00:02:26,560 --> 00:02:28,880\\nsai heidät haluamaan,\\nkertoi heille mitä haluta, -\\n\\n25\\n00:02:32,440 --> 00:02:32,480\\ntarjosi heille toiveita ja pelkoja, -\\n\\n26\\n00:02:33,280 --> 00:02:38,560\\njotka eivät perustuneet aidosti\\nheidän kokemuksiinsa, -\\n\\n27\\n00:02:39,040 --> 00:02:42,800\\nvaan jotka olivat välillisten\\nkokemusten siirrännäistuotetta.\\n\\n28\\n00:02:44,720 --> 00:02:48,040\\nJa tämän kulttuurin analoginen muoto, -\\n\\n29\\n00:02:48,440 --> 00:02:52,720\\njonka tuottaminen edellytti teollista\\nprosessia, äänilevyjen tuotanto, -\\n\\n30\\n00:02:53,600 --> 00:02:56,400\\nfilminauhan tuotanto,\\nniissä olevien pikku reikien puhkominen, -\\n\\n31\\n00:02:58,040 --> 00:03:05,560\\nkatselin vanhaa Mel Brookesin haastattelua,\\njonka Dick Cavitt oli tehnyt, -\\n\\n32\\n00:03:06,080 --> 00:03:14,400\\nja jonka New York Times on ottanut\\nosaksi elokuvamuseota,\\n\\n33\\n00:03:15,360 --> 00:03:17,040\\nsiinä Cavitt kysyy Mel Brookesilta:\\n\\n34\\n00:03:17,160 --> 00:03:19,280\\n\"Mikä on vaikeinta\\nelokuvan tekemisessä?\"\\n\\n35\\n00:03:19,680 --> 00:03:23,400\\nJa hän vastaa: \"No... filminauhassa\\nolevien pikku reikien puhkominen.\"\\n\\n36\\n00:03:24,040 --> 00:03:25,720\\nNo jos mietitään sitä oikealta kannalta, -\\n\\n37\\n00:03:26,080 --> 00:03:28,200\\nse todella on elokuvantekemisen\\nvaikein osuus, -\\n\\n38\\n00:03:28,680 --> 00:03:32,080\\nja siksi digitaalisten tietokoneiden maailmassa\\nelokuvien tekeminen on helppoa, -\\n\\n39\\n00:03:32,760 --> 00:03:35,520\\nsillä enää ei tarvitse puhkoa\\npikku reikiä filminauhaan.\\n\\n40\\n00:03:36,000 --> 00:03:38,640\\nToisin sanoen analogisiin\\nesineisiin sisältyvä kulttuuri -\\n\\n41\\n00:03:39,080 --> 00:03:44,440\\noli kulttuuria, jonka hallinta oli seurausta sen\\ntuottamisen, liikuttamisen ja myymisen vaikeudesta.\\n\\n42\\n00:03:45,040 --> 00:03:50,040\\nHallinta oli luonnollinen seuraus\\nkäytetyn median olemuksesta.\\n\\n43\\n00:03:50,520 --> 00:03:54,640\\nSitten, kun siirryimme 1900-luvun\\nlopussa digitaaliseen mediaan, -\\n\\n44\\n00:03:55,000 --> 00:03:58,200\\nkävi niin, että prosessissa, jossa\\nmuisti korvautui kokemuksella -\\n \\n45\\n00:03:58,360 --> 00:04:01,880\\nhistorian kulkiessa kirjasta\\nedisonlaisiin liikkuviin kuviin,\\n\\n46\\n00:04:02,680 --> 00:04:09,160\\ntuli... muisti on nyt välitöntä, se on asioita,\\njoita teemme itse, muistamisen sijaan.\\n\\n47\\n00:04:09,360 --> 00:04:14,320\\nIstuskelemme baarissa ystävien kesken\\nja meillä kaikilla on kamera puhelimessa, -\\n\\n48\\n00:04:14,680 --> 00:04:16,040\\nelokuvakamera joka matkapuhelimessa, -\\n\\n49\\n00:04:16,480 --> 00:04:19,880\\nja kaikki kuvaamamme\\nmenee suoraan Flickriin ja YouTubeen,\\n\\n50\\n00:04:20,000 --> 00:04:24,200\\nja nyt itse asiassa muistista\\non tulossa verkon ominaisuus.\\n\\n51\\n00:04:24,760 --> 00:04:28,760\\nJa kokemuksesta on nyt\\ntulossa verkon ominaisuus.\\n\\n52\\n00:04:30,000 --> 00:04:36,480\\nJa hallinta, joka aiemmin piili esineiden\\nvalmistuksessa, on nyt vapaata riistaa.\\n\\n53\\n00:04:37,000 --> 00:04:43,560\\nja minä uskon että se vie meidät -\\n\\n54\\n00:04:40,200 --> 00:04:43,480\\nmaailmasta, jossa katolinen kirkko\\nmääräsi ajatuksista, -\\n\\n55\\n00:04:44,000 --> 00:04:47,080\\nja jota protestanttinen\\nartefakti, kirja, uhkasi, -\\n\\n56\\n00:04:47,600 --> 00:04:52,720\\nmaailmaan, jossa edisonlaiset firmat\\nhyötyivät määräysvallasta, -\\n\\n57\\n00:04:52,760 --> 00:04:54,040\\nei kirjojen vaan filminauhan ja\\npikku reikien tekemisestä, -\\n\\n58\\n00:04:56,680 --> 00:05:01,040\\nmaailmaan, jossa verkko teki\\nhallinnasta tuotannon lailla -\\n\\n59\\n00:05:01,440 --> 00:05:05,640\\nyhtä helppoa kuin kuluttaminen ja\\nmäärätynlainen käyttäytyminen ovat.\\n\\n60\\n00:05:06,000 --> 00:05:12,520\\nJa siinä piilevät meidän aikamme teknologian\\nvaltavat vaarat, lupaukset ja viisaus: -\\n\\n61\\n00:05:13,000 --> 00:05:16,640\\nettä se haastaa hallintavallan perustan.\\n\\n62\\n00:05:20,360 --> 00:05:23,040\\nNo sekä tekijänoikeus että patenttilait, -\\n\\n63\\n00:05:23,280 --> 00:05:28,400\\nnämä hallintaperiaatteet, jotka\\nmääräävät tiedonkulusta, -\\n\\n64\\n00:05:28,760 --> 00:05:31,600\\nne ovat — kuten laki usein on —\\n\\n65\\n00:05:31,920 --> 00:05:37,040\\nteknologiaa, joka on luotu\\nmateriaalisella kaudella A, -\\n\\n66\\n00:05:37,040 --> 00:05:40,080\\nja joka on selvinnyt\\nhengissä kaudelle B.\\n\\n67\\n00:05:40,360 --> 00:05:45,880\\nNiinpä ne ovat erikoinen\\nsekoitus kannustimia ja ilmiöitä.\\n\\n68\\n00:05:46,680 --> 00:05:55,040\\nPatentti- ja tekijänoikeuslaeissa on\\npohjimmiltaan kyse 1600- ja 1700-luvun oloista,\\n\\n69\\n00:05:55,400 --> 00:05:58,040\\njotka on toteutettu\\n1800-luvun keinoilla, -\\n\\n70\\n00:05:58,680 --> 00:06:04,600\\nja sitten 1900-luvulla otettu takaisin\\nkäyttöön 2000-luvun ongelmien ratkomiseksi.\\n\\n71\\n00:06:05,000 --> 00:06:10,520\\nPerusongelma, jota tekijänoikeuslaki\\non tarkoitettu ratkaisemaan, -\\n\\n72\\n00:06:10,880 --> 00:06:13,800\\non, että, kuten sanoit,\\non kallista perustaa painotalo, -\\n\\n73\\n00:06:14,200 --> 00:06:16,040\\nmutta kun se on\\nkerran perustettu, -\\n\\n74\\n00:06:17,240 --> 00:06:22,520\\npitää jotenkin päättää,\\nmihin sitä käytetään, -\\n\\n75\\n00:06:23,000 --> 00:06:27,240\\nja todellinen kysymys on,\\nmitä painotalon pitäisi painaa.\\n\\n76\\n00:06:27,840 --> 00:06:33,280\\nJoten painajalle täytyy luoda kannustimia\\ntietyn asian painamiseksi.\\n\\n77\\n00:06:33,760 --> 00:06:38,640\\nToisin kuin 1900-luvun lopun kulttuurin omistajat\\nväittävät, ongelmana ei siis ole se, -\\n\\n78\\n00:06:39,080 --> 00:06:41,920\\nettä jollei kannustimia olisi,\\nyhtikäs mitään ei painettaisi.\\n\\n79\\n00:06:42,400 --> 00:06:44,880\\nTotta kai painotalo pyörii, -\\n\\n80\\n00:06:45,360 --> 00:06:48,920\\nja ihminen rakentaa painokoneita,\\nkoska hän voi ansaita painamalla jotain.\\n\\n81\\n00:06:49,160 --> 00:06:52,840\\nKysymys kuuluu, että pitäisikö hänen\\npainaa jonkun käyntikortteja, -\\n\\n82\\n00:06:53,000 --> 00:06:56,040\\njonkun hääkutsuja vai\\njonkun romaania.\\n\\n83\\n00:06:56,360 --> 00:07:00,920\\nToisin sanoen kyse on siitä,\\nkuinka päätetään, mitä valmistetaan -\\n\\n84\\n00:07:01,400 --> 00:07:04,840\\ntuotannon vähäisillä välineillä.\\n\\n85\\n00:07:05,560 --> 00:07:11,400\\nKulttuuri on tuottoisaa, jos sitä\\nvoi ostaa halvalla ja myydä kalliilla, -\\n\\n86\\n00:07:12,000 --> 00:07:18,600\\nja se on siinä määrin kannattavaa, koska\\nse on erityistä, poikkeavaa tai ainutlaatuista.\\n\\n87\\n00:07:19,200 --> 00:07:20,880\\nRanskaan tulvii, -\\n\\n88\\n00:07:21,160 --> 00:07:24,720\\nkuten Robert Darnton osoitti pohtiessaan\\n1700-luvun ranskalaista kulttuuria, -\\n\\n89\\n00:07:24,800 --> 00:07:27,400\\nRanskaan tulvii\\nAmsterdamin painotaloista -\\n\\n90\\n00:07:27,560 --> 00:07:30,040\\nsitä mitä ranskalaiset eivät\\nitse saa tuottaa itselleen, -\\n\\n91\\n00:07:30,680 --> 00:07:37,080\\nja siksi pornografia ja politiikka olivat\\n1700-luvulla kuumaa vientikamaa.\\n\\n92\\n00:07:37,440 --> 00:07:39,160\\nMutta siitä on seurauksena, -\\n\\n93\\n00:07:40,000 --> 00:07:47,840\\neli sen tuottamisesta markkinoille,\\nmitä niiden on vaikeinta hankkia, -\\n\\n94\\n00:07:48,040 --> 00:07:51,600\\nuhka, että lopulta painotalot\\neivät muuta painakaan kuin -\\n\\n95\\n00:07:52,120 --> 00:07:54,560\\npoliittisia aikakauslehtiä ja pornoa.\\n\\n96\\n00:07:55,160 --> 00:07:57,160\\nKuinka se voidaan estää?\\n\\n97\\n00:07:57,560 --> 00:08:02,640\\nAletaan pyrkiä siihen, että painajat\\nsaavat hyötyä kirjallisuuden edistämisestä.\\n\\n98\\n00:08:03,240 --> 00:08:08,440\\nJuuri siitä tekijänoikeuslaissa on kyse,\\nse on suuri jeffersonilainen keksintö, -\\n\\n99\\n00:08:09,000 --> 00:08:15,400\\nettä teemme demokratiasta keinon\\nedistää hyveitä painotalojen parissa, -\\n\\n100\\n00:08:15,720 --> 00:08:20,120\\nja saamme kaiken toimimaan\\nsen hyväksi nopeuttaaksemme -\\n\\n101\\n00:08:20,360 --> 00:08:22,640\\ntietojen ja taitojen leviämistä.\\n\\n102\\n00:08:24,160 --> 00:08:28,960\\nEli siinä mielessä\\ntekijänoikeuslaki kumpuaa -\\n\\n103\\n00:08:29,160 --> 00:08:33,680\\njalosta kokeesta,\\njonka tarkoituksena oli -\\n\\n104\\n00:08:33,840 --> 00:08:38,160\\nvastata aiheelliseen\\n1700-1800-luvun ongelmaan, -\\n\\n105\\n00:08:38,680 --> 00:08:42,080\\nja edisonilaiselle kaudelle\\ntultaessa siitä oli kehittynyt -\\n\\n106\\n00:08:42,560 --> 00:08:47,600\\ntuolle ajalle välttämätön\\n\\'työn vuokrauksen\\' doktriini: -\\n\\n107\\n00:08:47,960 --> 00:08:53,320\\npainotalojen hyveellisyyttä edistämään\\ntarkoitettua järjestelmää pitääkin -\\n\\n108\\n00:08:53,640 --> 00:08:59,240\\nvoida käyttää isompien kaupallisten\\nkustannustalojen kannustimena.\\n\\n109\\n00:08:59,520 --> 00:09:04,360\\nSiinä, missä 1800-luvun Manhattania\\npidetään painoteollisuuden keskuksena, -\\n\\n110\\n00:09:04,680 --> 00:09:08,400\\n1900-luvulle tultaessa sitä pidetäänkin\\nkustannusalan keskuksena, -\\n\\n111\\n00:09:08,600 --> 00:09:10,760\\nja merkitysero on huomattava.\\n\\n112\\n00:09:11,000 --> 00:09:16,920\\nEi olekaan enää kyse kevyestä teollisesta\\npaperilappusille painamisesta, -\\n\\n113\\n00:09:17,080 --> 00:09:22,880\\nvaan on kyse suuren, integroidun\\nkulttuurintuotantokoneiston hallinnasta, -\\n\\n114\\n00:09:23,160 --> 00:09:25,920\\nja siihen tarvitaan\\n\\'työn vuokrauksen\\' doktriinia.\\n\\n115\\n00:09:26,000 --> 00:09:29,640\\nAs 18th century booksellers in London\\nneeded Grub Street. \\n\\n116\\n00:09:30,000 --> 00:09:32,040\\nthat is some content producer\\n\\n117\\n00:09:32,400 --> 00:09:36,720\\nto meet the demand \\nof the wide pipe of printing\\n\\n118\\n00:09:37,000 --> 00:09:41,480\\nthat their concentration of the machinery \\nof printing and binding has set up.\\n\\n119\\n00:09:42,000 --> 00:09:46,440\\nThe Edisonian institutions \\nneeded content behind them,\\n\\n120\\n00:09:46,640 --> 00:09:49,840\\nAnd they needed content \\nthey could claim to own.\\n\\n121\\n00:09:50,160 --> 00:09:54,080\\nSo in that sense copyright law comes, \\nthrough the work for hire doctrine,\\n\\n122\\n00:09:54,600 --> 00:09:56,920\\nand its relationship to the law of employment,\\n\\n123\\n00:09:57,240 --> 00:10:02,320\\ncopyright becomes the organizational \\norganic document\\n\\n124\\n00:10:02,320 --> 00:10:05,920\\nfor these immense media enterprises.\\n\\n125\\n00:10:06,240 --> 00:10:06,280\\nOnce media enterprises \\nhave come into existence,\\n\\n126\\n00:10:09,640 --> 00:10:14,200\\nonce New York city is a \\ncentre of publishing rather than printing,\\n\\n127\\n00:10:15,040 --> 00:10:18,760\\nThen any medium that comes along \\nhas to be co-opted in the same way.\\n\\n128\\n00:10:18,880 --> 00:10:22,480\\nThe principle of vertical integration \\nhas to be maintained.\\n\\n129\\n00:10:22,600 --> 00:10:27,520\\nAnd as you move from publishing on paper \\nto radio broadcasting,\\n\\n130\\n00:10:27,920 --> 00:10:34,400\\ntelevision broadcasting, news dissemination,\\nfinancial information dissemination,\\n\\n131\\n00:10:35,000 --> 00:10:38,200\\nyou apply the same model to it:\\nsomebody makes it,\\n\\n132\\n00:10:38,560 --> 00:10:38,600\\nthat creates a property interest,\\n\\n133\\n00:10:41,120 --> 00:10:44,920\\nthat property interest is transferred \\nthrough an employment contract,\\n\\n134\\n00:10:45,160 --> 00:10:49,960\\nand becomes a disposable piece of property\\nin a market economy.\\n\\n135\\n00:10:50,280 --> 00:10:56,480\\nThat seems to meet the need \\nfor the industrial organizations of the time.\\n\\n136\\n00:10:56,880 --> 00:11:00,040\\nNow if the technology makes another change,\\n\\n137\\n00:11:00,480 --> 00:11:06,880\\nand control no longer inherently resides \\nin the object of information itself,\\n\\n138\\n00:11:07,360 --> 00:11:10,440\\nThen copyright has to become \\na law about control\\n\\n139\\n00:11:10,680 --> 00:11:14,440\\nNot a law about these organizational dispositions\\n\\n140\\n00:11:14,920 --> 00:11:21,560\\nand you begin to get, as in the DMCA, \\nor the European Union copyright directive,\\n\\n141\\n00:11:22,040 --> 00:11:24,440\\nyou begin to get para-copyright law,\\n\\n142\\n00:11:24,560 --> 00:11:29,040\\nlaw which is about control over use, \\nnot control over production,\\n\\n143\\n00:11:29,240 --> 00:11:32,040\\nbecause that jointure between the user,\\n\\n144\\n00:11:32,480 --> 00:11:37,160\\nthe consumer, the producer and the distributor,\\nhas become too tight.\\n\\n145\\n00:11:37,640 --> 00:11:42,640\\nAnd the law has to get in there \\nand force a differentiation of roles again.\\n\\n146\\n00:11:42,920 --> 00:11:45,400\\nBut that\\'s nothing to do with \\nwhere copyright started,\\n\\n147\\n00:11:45,680 --> 00:11:48,640\\nit\\'s nothing to do with \\nwhat made copyright law effective \\n\\n148\\n00:11:49,080 --> 00:11:52,320\\nin the organization media of in the first place.',\n", + " 'bytes': 14203,\n", + " 'sha1': '9eo26p2k3s6i0buttys18szukw6ex8d',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49677150,\n", + " 'timestamp': '2011-02-12T10:33:58Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13278521,\n", + " 'title': 'Allsång Skansen 1937.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,999\\n([[:sv:Stockholms-Tidningen|Stockholms-Tidningen]], 1937: 20.000 sjöngo unisont)\\n<br>Pappa! O så mycket folk!\\nHär är bestämt jag.\\n\\n2\\n00:00:007,000 --> 00:00:18,999\\nTralalla lalla la...\\n<br>([[:sv:Tre trallande jäntor|Tre trallande jäntor]], Fröding/Körling)',\n", + " 'bytes': 298,\n", + " 'sha1': 'i25tr4hq5bkqld13hlnezhk8gl0bu41',\n", + " 'parent_id': 49677112,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49677304,\n", + " 'timestamp': '2011-02-12T10:40:14Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13278586,\n", + " 'title': 'Allsång Skansen 1937.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:06,999 ([[:sv:Stockholms-Tidningen|Stockholms-Tidningen]], 1937: 20,000 in sing-along) <br>Dad! Oh, how many people! I'm standing here. 2...'\",\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:06,999\\n([[:sv:Stockholms-Tidningen|Stockholms-Tidningen]], 1937: 20,000 in sing-along)\\n<br>Dad! Oh, how many people!\\nI'm standing here.\\n\\n2\\n00:00:007,000 --> 00:00:18,999\\nTralalla lalla la...\\n<br>([[:sv:Tre trallande jäntor|Tre trallande jäntor]], Fröding/Körling)\",\n", + " 'bytes': 292,\n", + " 'sha1': '0l57oo20o2crsbzgnougd97eagondv6',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49775264,\n", + " 'timestamp': '2011-02-14T14:12:01Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13278630,\n", + " 'title': 'Ombrytning Stockholms-Tidningen 1937.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n0:0:1 --> 0:0:5\\nHär står nattredaktören och övervakar ombrytningen.\\nHan har fått sina direktiv av redaktionssekreteraren.\\n\\n2\\n0:0:5 --> 0:0:14\\nOch nu placerar han ut rubriker och artiklar.\\nOch det är alltså första sidan som tar form här.\\n\\n3\\n0:0:19 --> 0:0:24\\nSom kronan på verket blir klichén av den unisona sången placerad överst.\\n\\n4\\n0:0:24 --> 0:0:30\\nNu har bara nattredaktören att kasta ett granskande öga på avklappet,\\nsom han får här, för att sedan övergå till nästa sida.\\n\\n5\\n0:0:30 --> 0:0:33\\nDet är långt över midnatt nu och för varje sekund stiger tempot.\\n\\n6\\n0:0:33 --> 0:0:38\\nDet kan hända, en sådan här natt, att en sensation rapporteras in,\\noch då gäller det att bryta om en sida i elfte timmen.\\n\\n7\\n0:0:38 --> 0:0:44\\nOch det är en sak som man alltid lyckas med,\\ntack vare den ordning och den reda som härskar här i minsta detalj.',\n", + " 'bytes': 875,\n", + " 'sha1': 'mmttfmvwa3azg0vut2aw94rx18ixo3q',\n", + " 'parent_id': 49771696,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49774478,\n", + " 'timestamp': '2011-02-14T13:48:12Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13278719,\n", + " 'title': 'Sattning Stockholms-Tidningen 1937.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'updated timing',\n", + " 'text': '1\\n0:0:01 --> 0:0:04\\nVi går djupare in i tidningens väldiga organisation.\\n\\n2\\n0:0:04 --> 0:0:13\\nHär i sätteriet mottar faktorn korrekturet till morgondagens annonser,\\noch runt omkring arbetar sättmaskinerna rastlöst.\\n\\n3\\n0:0:13 --> 0:0:17\\nSättmaskinerna är tekniska underverk.\\nI deras innandöme cirkulerar de små mässingmatriserna,\\n\\n4\\n0:0:17 --> 0:0:22\\noch medan sättaren skriver som på en skrivmaskin,\\nfaller matriserna ner ur sitt magasin.\\n\\n5\\n0:0:22 --> 0:0:28\\nMaskinen gör själv avgjutning av den färdiga raden,\\noch strax därefter är den klar för nästa rad.\\n\\n6\\n0:0:28 --> 0:0:31\\nDe färdiga raderna samlas i det så kallade skeppet.\\n\\n7\\n0:0:31 --> 0:0:38\\nAllt går svindlande fort, men ibland blir det stopp.\\nMen det är minsann inte sättarens fel.\\n\\n8\\n0:0:38 --> 0:0:42\\nNär skeppet är fyllt med färdiggjutna rader,\\növerlämnas de till färdiggöringen,\\n\\n9\\n0:0:42 --> 0:0:49\\noch här genomgår det hela en första kontroll.\\n\\n10\\n0:1:02 --> 0:1:06\\nNär allting är i sin ordning, gör man ett avdrag\\noch skickar det till korrekturläsning,\\n\\n11\\n0:1:06 --> 0:1:11\\noch därifrån återvänder korrekturen och hamnar i den här lådan.\\n\\n12\\n0:1:11 --> 0:1:15\\nNär vi står färdiga för ombrytningen,\\nligger tidningens alla manuskript hopsamlade i en hög.\\n\\n13\\n0:1:15 --> 0:1:20\\nJa, tänk om man skulle få hem den i det skicket varje morgon i brevlådan.',\n", + " 'bytes': 1371,\n", + " 'sha1': 'faiga6ihsja2b9umyz267v22stja19x',\n", + " 'parent_id': 49774418,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49773102,\n", + " 'timestamp': '2011-02-14T13:00:28Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13278771,\n", + " 'title': 'Kliche Stockholms-Tidningen 1937.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'updated timing',\n", + " 'text': '1\\n0:0:00 --> 0:0:04\\nVid midnatt arbetas vid klichéanstalten\\nför högtryck vid varje kamera.\\n\\n2\\n0:0:04 --> 0:0:08\\nHär görs en sjuspaltig kliché till en artikel om den unisona sången på Skansen.\\n\\n3\\n0:0:08 --> 0:0:19\\nOch i några snabba bilder kan vi följa\\nhur bilden av allsångarna med dirigenten i jätteformat\\nväxer fram till färdig kliché.',\n", + " 'bytes': 352,\n", + " 'sha1': '6kioye1npty54l5uoivpvzh1gcraa4w',\n", + " 'parent_id': 49678174,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49776883,\n", + " 'timestamp': '2011-02-14T14:56:20Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13278867,\n", + " 'title': 'Tidningstryck 1937.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n0:0:1 --> 0:0:4\\nFrån ombrytningen kommer sidan till matrispressen.\\n\\n2\\n0:0:4 --> 0:0:10\\nHär lägger man en asbestartad hård pappskiva över det hela,\\noch låter sidan passera genom en press.\\n\\n3\\n0:0:10 --> 0:0:15\\nVi skall inom ett ögonblick se resultatet.\\nHär är sidan avtryckt på det vita hårda materialet,\\n\\n4\\n0:0:15 --> 0:0:22\\nsom kan uthärda en så stark hetta att man kan göra en avgjutning i bly.\\n\\n5\\n0:0:23 --> 0:0:27\\nSå åker matrisen iväg till stereotypen,\\noch det är här man gjuter sidorna,\\n\\n6\\n0:0:27 --> 0:0:32\\nså att två sidor tillsammans bildar en cylinder.\\nOch denna cylinder sättes sedan in på pressarnas valsar.\\n\\n7\\n0:0:33 --> 0:0:43\\nDe dagar söndagsbilagans bildrika sidor gjutas här,\\ndå blir arbetet dubbelt intensivt.\\n\\n8\\n0:0:43 --> 0:0:53\\n(gjutning med bly)\\n\\n9\\n0:1:5 --> 0:1:12\\nNu närmar sig klockan 3 på morgonen.\\nVad vi ser här händer natt efter natt året runt\\njust de timmarna då vi ligger hemma och sover.\\n\\n10\\n0:1:13 --> 0:1:23\\nDe färdigjusterade cylindrarna skruvas fast vid valsarna.\\nOm ett ögonblick är allt klart för start.\\nDet är ett dramatiskt ögonblick.\\n\\n11\\n0:1:23 --> 0:1:33\\n(tidningar rullar fram)\\n\\n12\\n0:1:37 --> 0:1:46\\nNu strax skall vi se hur pressen sprutar ut 40.000 exemplar i timman,\\nmed nyheter från världens alla hörn.',\n", + " 'bytes': 1291,\n", + " 'sha1': 'cckaxggr0mo6xt3q6zadio2sxkl85lm',\n", + " 'parent_id': 49776797,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49681609,\n", + " 'timestamp': '2011-02-12T13:44:16Z',\n", + " 'user': {'id': 7945, 'text': 'Sir48'},\n", + " 'page': {'id': 13279724,\n", + " 'title': 'Allsång Skansen 1937.ogv.da.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'translation into da:',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,999\\n([[:sv:Stockholms-Tidningen|Stockholms-Tidningen]], 1937: 20.000 synger i kor)\\n<br />Far! Åh, hvor mange mennesker!\\nHer står jeg.\\n\\n2\\n00:00:007,000 --> 00:00:18,999\\nTralalla lalla la...\\n<br />([[:sv:Tre trallande jäntor|Tre trallande jäntor]], Fröding/Körling)',\n", + " 'bytes': 297,\n", + " 'sha1': 'ff44qufs71doqsljdlnflyhtls52i45',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49775609,\n", + " 'timestamp': '2011-02-14T14:20:32Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13279876,\n", + " 'title': 'Ombrytning Stockholms-Tidningen 1937.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n0:0:1 --> 0:0:5\\nHere is the night editor, supervising the page layout.\\nHe has been instructed by the assistant editor in chief.\\n\\n2\\n0:0:5 --> 0:0:14\\nAnd now he puts headlines and articles in place.\\nWhat you see is the front page being laid out.\\n\\n3\\n0:0:19 --> 0:0:24\\nTo finish it off, the cliché of the sing-along is placed on top.\\n\\n4\\n0:0:24 --> 0:0:30\\nNow the night editor only has to scrutinize the first impression,\\nwhich he gets here, and then to continue with the next page.\\n\\n5\\n0:0:30 --> 0:0:33\\nIt is now long after midnight and the pace increases with every second.\\n\\n6\\n0:0:33 --> 0:0:38\\nIt can happen, on a night like this, that a sensation is reported,\\nand then a page must be remade in the eleventh hour.\\n\\n7\\n0:0:38 --> 0:0:44\\nThis is something that always succeeds,\\nthanks to the order and discipline that reigns here in every detail.',\n", + " 'bytes': 844,\n", + " 'sha1': 'pbkra11rygwnf4rz5dxmzkns34m7qs7',\n", + " 'parent_id': 49775562,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 605479949,\n", + " 'timestamp': '2021-11-04T19:15:35Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 13283070,\n", + " 'title': 'Arne Jarrick avkodningsbart.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'text and timings update',\n", + " 'text': '1\\n00:00:00,023 --> 00:00:04,004\\n... om 200 år, så kommer man\\natt sitta och falla\\n\\n2\\n00:00:04,037 --> 00:00:09,838\\ni förundran över hur kloka vi var på det\\nhär seminariet, när man tittar tillbaka.\\n\\n3\\n00:00:10,117 --> 00:00:12,190\\nMan kan bara fråga sig\\n\\n4\\n00:00:12,233 --> 00:00:17,300\\nom det här mediet kommer att vara\\nläsbart om 200 år överhuvudtaget.\\n\\n5\\n00:00:17,367 --> 00:00:18,988\\nOch om det nu vore det,\\n\\n6\\n00:00:19,038 --> 00:00:22,788\\nså kan man fråga sig om de kommer att\\nförstå det här konstiga språket vi talar.\\n\\n7\\n00:00:23,157 --> 00:00:25,456\\nMan kan bara kasta sig 200 år\\ntillbaka i tiden.\\n\\n8\\n00:00:25,487 --> 00:00:28,730\\nNär jag försöker få studenter\\natt läsa handskrift,\\n\\n9\\n00:00:28,776 --> 00:00:31,093\\nså är det inte bara\\ndet att den är svår att tyda,\\n\\n10\\n00:00:31,127 --> 00:00:33,999\\nutan det är också svårt att förstå\\nvad de här mänskorna sade,\\n\\n11\\n00:00:34,039 --> 00:00:36,179\\nom man väl lyckas tyda\\nden där handskriften.\\n\\n12\\n00:00:36,211 --> 00:00:38,780\\nDet är en from förhoppning,\\nmen det är inte säkert,\\n\\n13\\n00:00:38,814 --> 00:00:43,139\\natt mediet kommer att vara\\navkodningsbart om 200 år.\\n\\n14\\n00:00:43,167 --> 00:00:44,491\\nMan kan hoppas.',\n", + " 'bytes': 1210,\n", + " 'sha1': 'm5tdcyb4gge5y8v3m0bbiuvpi410l92',\n", + " 'parent_id': 49693501,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49693632,\n", + " 'timestamp': '2011-02-12T20:14:09Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13283103,\n", + " 'title': 'Carl XVI Gustaf Forstlingen 2006.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 0:0:11 --> 0:0:16 Ser du inte? Nu åker dom! 2 0:0:20 --> 0:0:30 (musik: Under blågul fana)'\",\n", + " 'text': '1\\n0:0:11 --> 0:0:16\\nSer du inte? Nu åker dom!\\n\\n2\\n0:0:20 --> 0:0:30\\n(musik: Under blågul fana)',\n", + " 'bytes': 95,\n", + " 'sha1': 'cri9tvi029jy7fdu2td7p9w5wdn2tt7',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49694278,\n", + " 'timestamp': '2011-02-12T20:37:25Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13283277,\n", + " 'title': 'Recordmydesktop-svenska.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 0:0:0 --> 0:0:7 Om man kör Linux och vill visa hur man kör ett program, kan man använda RecordMyDesktop och göra en liten film. 2 0:0:7 --> 0:0:12 Det är e...'\",\n", + " 'text': '1\\n0:0:0 --> 0:0:7\\nOm man kör Linux och vill visa hur man kör ett program,\\nkan man använda RecordMyDesktop och göra en liten film.\\n\\n2\\n0:0:7 --> 0:0:12\\nDet är ett avancerat program som har många inställningar.\\nHär visar jag bara det allra enklaste och då tar den hela skärmen.\\n\\n3\\n0:0:12 --> 0:0:25\\nFör att få en bra film, har jag minskat min skärmupplösning till\\n800 x 600 punkter och tagit bort onödiga fönster från skärmen.\\n\\n4\\n0:0:25 --> 0:0:33\\nJag har angett en parameter \"--full-shots\",\\nnär jag skrev kommandot \"recordmydesktop\" här uppe,\\n\\n5\\n0:0:33 --> 0:0:37\\nför jag märkte att på min skärm blev filmen dålig\\nom jag inte gjorde så.\\n\\n6\\n0:0:37 --> 0:0:45\\nMen det är den enda parametern som jag har angett\\nnär jag startade RecordMyDesktop.\\n\\n7\\n0:0:45 --> 0:0:50\\nMed en mikrofon ansluten kan man tala in instruktioner\\nunder tiden som man visar hur man kör programmet.\\n\\n8\\n0:0:50 --> 0:1:3\\nNu ska jag starta Firefox, som är min webbläsare.\\nDen har jag här uppe.\\n\\n9\\n0:1:3 --> 0:1:12\\nDet går lite segt och det beror inte på att min dator eller\\nFirefox är långsamma, utan på att programmet RecordMyDesktop\\n\\n10\\n0:1:12 --> 0:1:20\\ntar mycket resurser ur datorn och gör den långsammare.\\nDet får man tänka på när man ska göra sådana här filmer.\\n\\n11\\n0:1:20 --> 0:1:29\\nJag hade min webbläsare inställd på Wikipedia,\\nsom är ett fritt uppslagsverk på Internet.\\n\\n12\\n0:1:29 --> 0:1:35\\nHär kan man visa hur man använder Wikipedia\\noch göra en instruktionsfilm om det, kanske.\\n\\n13\\n0:1:35 --> 0:1:52\\nDå kan man gå till svenska Wikipedia och titta på några artiklar\\nsom står där; kanske den om Florida.\\n\\n14\\n0:1:52 --> 0:2:4\\nMan kan studera artikeln om Florida, dess historik,\\nkanske visa hur man redigerar artiklar på Wikipedia\\neller något annat intressant.\\n\\n15\\n0:2:4 --> 0:2:11\\nI historiken ser vi vem som senast var inne och ändrade i\\nartikeln.\\n\\n16\\n0:2:11 --> 0:2:26\\nOch det verkar ha varit TXiKiBoT, SieBot, Sertion,\\nMelancholieBot. Det är mycket bot-namn här.\\n\\n17\\n0:2:26 --> 0:2:38\\nHöstblomma var inne den 29 maj och vad var det Höstblomma \\nändrade i artikeln om Florida?\\n\\n18\\n0:2:38 --> 0:2:48\\nDet var ju lite vandalisering som återställdes. Någon hade\\nskrivit in \"nu kmr jag och tar er\" och det tog Höstblomma bort.\\nDet var ju bra.\\n\\n19\\n0:2:48 --> 0:2:59\\nNär vi är färdiga med att visa vad vi ville göra en film om,\\nkan vi stänga programmet, som vi visade.\\n\\n20\\n0:2:59 --> 0:3:5\\nOch då kommer vi tillbaks till terminalen. Här kör\\nRecordMyDesktop\\n\\n21\\n0:3:5 --> 0:3:14\\noch nu behöver vi bara trycka ctrl-C, så stängs inspelningen av\\noch så kodas filen och sparas som out.ogv.',\n", + " 'bytes': 2638,\n", + " 'sha1': 'k8rn1ong7jrhfc36loenz9jw39arh1g',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49694927,\n", + " 'timestamp': '2011-02-12T20:57:58Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13283470,\n", + " 'title': 'CamStudio tutorial.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 0:0:0 --> 0:0:8 CamStudio is an open source screencasting application. 2 0:0:8 --> 0:0:17 First, I recommend setting the region to full screen. You can also sel...'\",\n", + " 'text': \"1\\n0:0:0 --> 0:0:8\\nCamStudio is an open source screencasting application.\\n\\n2\\n0:0:8 --> 0:0:17\\nFirst, I recommend setting the region to full screen.\\nYou can also select a fixed region.\\n\\n3\\n0:0:17 --> 0:0:25\\nI also recommend going into Options : Keyboard shortcuts\\n\\n4\\n0:0:25 --> 0:0:35\\nand selecting something like Ctrl-R and Ctrl-S for\\nrecording and stopping your recording.\\n\\n5\\n0:0:35 --> 0:0:45\\nCamStudio is easy to use.\\nTo begin your recording, press the red button or use the keyboard shortcut.\\n\\n6\\n0:0:45 --> 0:0:53\\nNow, whatever you do, like moving your mouse,\\nit will record it on the screen as well as\\nwhatever you say into your microphone.\\n\\n7\\n0:0:53 --> 0:1:0\\nWhen you're done, press the stop button or hit your quick key.\\n\\n8\\n0:1:0 --> 0:1:8\\nAfter that you need to save the file for later playback.\",\n", + " 'bytes': 802,\n", + " 'sha1': 'iijx6am8youvlnu0wg8vbwglswlclqe',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49695344,\n", + " 'timestamp': '2011-02-12T21:08:50Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13283544,\n", + " 'title': 'CamStudio tutorial.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n0:0:0 --> 0:0:8\\nCamStudio är ett program med öppen källkod för att spela in skärmfilmer.\\n\\n2\\n0:0:8 --> 0:0:17\\nFörst rekommenderar jag att man sätter regionen till hela skärmen (full screen).\\nMan kan också välja en fast region (fixed region).\\n\\n3\\n0:0:17 --> 0:0:25\\nJag rekommenderar också att man går till Options : Keyboard shortcuts (snabbtangenter)\\n\\n4\\n0:0:25 --> 0:0:35\\noch väljer exempelvis Ctrl-R och Ctrl-S för\\natt starta och avsluta inspelning.\\n\\n5\\n0:0:35 --> 0:0:45\\nCamStudio är lätt att använda.\\nFör att starta inspelning, tryck den röda knappen eller använd snabbtangenten.\\n\\n6\\n0:0:45 --> 0:0:53\\nNu kommer allt man gör, som att röra på musen,\\natt spelas in från skärmen tillsammans med\\nallt man säger i mikrofonen.\\n\\n7\\n0:0:53 --> 0:1:0\\nNär man är klar, trycker man på stoppknappen eller på snabbtangenten.\\n\\n8\\n0:1:0 --> 0:1:8\\nEfter det behöver man bara spara filen, så den kan spelas upp på nytt.',\n", + " 'bytes': 934,\n", + " 'sha1': 'g2kyaycoe8zwk6hilx2tej8o0iv23nd',\n", + " 'parent_id': 49695284,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49838527,\n", + " 'timestamp': '2011-02-15T21:37:47Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13312440,\n", + " 'title': 'Folgers.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '0\\n00:00:01,707 --> 00:00:04,154\\nHarold smakar kaffet som det ska?\\n\\n1\\n00:00:04,169 --> 00:00:05,185\\nuh-uhmmm\\n\\n2\\n00:00:05,005 --> 00:00:07,785\\nMenar du att det är lika illa som igår?\\n\\n3\\n00:00:07,785 --> 00:00:08,962\\nuh-huh\\n\\n4\\n00:00:09 --> 00:00:10,169\\nIngen förbättring alls?\\n\\n5\\n00:00:10,446 --> 00:00:11,823\\nuh-uh\\n\\n6\\n00:00:12,002 --> 00:00:17\\nHarold, skaka inte bara på huvudet, <br>\\ndu måste berätta vad som är fel med kaffet.\\n\\n7\\n00:00:17,538 --> 00:00:19\\nDålig smak\\n\\n8\\n00:00:19,477 --> 00:00:21,002\\nMen vad ska jag ta mig till?\\n\\n9\\n00:00:21,623 --> 00:00:23,005\\nNämen Mary, hej\\n\\n10\\n00:00:23,007 --> 00:00:25\\nHallå Jane\\n\\n11\\n00:00:25,038 --> 00:00:29,246\\nDu måste hjälpa mig, Harold hatar mitt kaffe. Vilken sort använder du?\\n\\n12\\n00:00:30 --> 00:00:31\\nFolgers snabbkaffe\\n\\n13\\n00:00:31 --> 00:00:32\\nFolgers snabbkaffe?\\n\\n14\\n00:00:32,002 --> 00:00:34\\nDet smakar lika gott som färskbryggt\\n\\n15\\n00:00:34,002 --> 00:00:37,008\\nLika gott som färskbryggt. Det måste jag prova.\\n\\n16\\n00:00:38,725 --> 00:00:42,008\\nJean, det här kaffet smakar utmärkt, vet du det?\\n\\n17\\n00:00:42,002 --> 00:00:42,084\\num-hmmm\\n\\n18\\n00:00:43,464 --> 00:00:46\\nDet är väl inte samma sort som vi brukar ha?\\n\\n19\\n00:00:46,002 --> 00:00:46,502\\num-uhmmm\\n\\n20\\n00:00:47,148 --> 00:00:51,433\\nSkaka inte bara på huvudet, förklara varför kaffet är så gott.\\n\\n21\\n00:00:52,664 --> 00:00:54,005\\nGod smak\\n\\n22\\n00:00:55,006 --> 00:00:59\\nSmakar lika gott som färskbryggt, Folgers snabbkaffe',\n", + " 'bytes': 1456,\n", + " 'sha1': 'qwfy3qkbaaagsiqjswgy9edtmzqxep0',\n", + " 'parent_id': 49838463,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49922764,\n", + " 'timestamp': '2011-02-17T19:54:41Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13313257,\n", + " 'title': 'Män och maskiner 1936.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'de gångna åren / den gångna våren',\n", + " 'text': '1\\n0:0:2 --> 0:0:7\\nDenna film är restaurerad av Filmarkivet, Svenska Filminstitutet\\n\\n2\\n0:0:15 --> 0:0:32\\nAllmänna valmansförbundet, riksorganisationen visar\\n\\n3\\n0:0:34 --> 0:0:43\\nMän och maskiner, en Förberg-Film\\n\\n4\\n0:0:47 --> 0:0:53\\nVi har i vårt land under den gångna våren\\ngenomkämpat och övervunnit \\nden ekonomiska krisen snabbare än andra länder.\\n\\n5\\n0:0:54 --> 0:0:59\\nSocialdemokraterna påstår att det beror på\\nden förda så kallade välfärdspolitiken.\\n\\n6\\n0:1:0 --> 0:1:04\\nVi ska se hur det är med den saken.\\n\\n7\\n0:1:4 --> 0:1:9\\nDe här båda kurvorna kan klargöra det.\\n\\n8\\n0:1:9 --> 0:1:14\\nDen här visar arbetslöshetens utveckling sedan 1930.\\n\\n9\\n0:1:16 --> 0:1:21\\nOch den här lilla visar de socialdemokratiska krisarbetenas omfattning.\\n\\n10\\n0:1:22 --> 0:1:28\\nVi ser att antalet arbetslösa var högst i januari 1933.\\n\\n11\\n0:1:29 --> 0:1:35\\nOch sen började den att sjunka.\\nOch här var den i juni 1933.\\n\\n12\\n0:1:36 --> 0:1:40\\nDet var inte mindre än 40.000 färre arbetslösa då\\nän vid årets början.\\n\\n13\\n0:1:42 --> 0:1:50\\nRedan innan de socialistiska arbetena kom igång så smått i juli 1933,\\nbörjade arbetslösheten att sjunka.\\n\\n14\\n0:1:50 --> 0:1:56\\nFörst sedan näringslivet självt arbetat sig upp\\nur de värsta svårigheterna,\\nfick krisarbetena någon större omfattning.\\n\\n15\\n0:1:57 --> 0:2:3\\nDessa arbeten kan sålunda inte ha åstadkommit de bättre tiderna.\\n\\n16\\n0:2:4 --> 0:2:13\\nUnder ett år utföres enbart inom industri och hantverk\\nomkring 180 miljoner dagsverken.\\n\\n17\\n0:2:20 --> 0:2:28\\nKrisarbetena skapade under sitt första år endast något över\\n2 miljoner dagsverken.\\n\\n18\\n0:2:41 --> 0:2:49\\nMen genom långa strejer förlorade vi vid ungefär samma tid \\ndrygt 6 miljoner dagsverken.\\n\\n19\\n0:2:59 --> 0:3:3\\nAlltså, vid den tidpunkt då konjunkturförbättringen redan\\nvar i full gång här i landet,\\n\\n20\\n0:3:3 --> 0:3:8\\nkunde krisarbetena inte ens frambringa till närmelsevis\\nså många dagsverken,\\n\\n21\\n0:3:8 --> 0:3:11\\nsom ungefär samtidigt förintades genom arbetskonflikter.\\n\\n22\\n0:3:12 --> 0:3:15\\nKrisarbetena kan sålunda omöjligen ha skapat konjunkturförbättringen.\\n\\n23\\n0:3:15 --> 0:3:17\\nMen var ligger då orsaken till denna?\\n\\n24\\n0:3:17 --> 0:3:23\\nJo, hos den enskilda företagsamheten,\\ndess inneboende kraft och utvecklingsförmåga.\\n\\n25\\n0:3:23 --> 0:3:27\\nLåt oss se hur denna företagsamhet byggts upp och vuxit sig stark.\\n\\n26\\n0:3:27 --> 0:3:33\\nÅr 1914, ja, då såg de modernaste bilarna ut på det här viset.\\n\\n27\\n0:3:33 --> 0:3:37\\nDen tidens fartvidunder imponerar då inte på oss nu på 1930-talet.\\n\\n28\\n0:3:37 --> 0:3:45\\nMen då fanns det inte bättre bilar att få.\\nUtvecklingen hade inte kommit längre.\\n\\n29\\n0:3:48 --> 0:3:53\\nIdag, ett par årtionden senare, bygger vi själva bilar här i landet.\\n\\n30\\n0:3:53 --> 0:3:56\\nBilar, som tävlar med världens främsta märken.\\n\\n31\\n0:3:56 --> 0:4:2\\nUtvecklingen har gått fram med rasande fart.\\n\\n32\\n0:4:7 --> 0:4:12\\nSå sent som 1905 fanns endast 200 bilar i Sverige.\\n\\n33\\n0:4:12 --> 0:4:15\\nNu ser vi över 200.000 gå på våra gator och vägar.\\n\\n34\\n0:4:15 --> 0:4:18\\nBilen håller på att bli var mans egendom\\n\\n35\\n0:4:18 --> 0:4:22\\noch är redan ett av våra allra viktigaste kommunikationsmedel.\\n\\n36\\n0:4:22 --> 0:4:26\\nSå är det på alla områden.\\nDen tekniska utvecklingen har varit fantastisk.\\n\\n37\\n0:4:26 --> 0:4:31\\nSe till exempel på telefonen.\\nDet var en svensk som löste automattelefonens problem.\\n\\n38\\n0:4:31 --> 0:4:35\\nInvecklade apparater fullgör\\nsnabbt sina uppgifter så snart vi slår an ett nummer.\\n\\n39\\n0:4:35 --> 0:4:41\\nOch både själva telefonen och automatstationens utrustning\\ngöras här i landet.\\n\\n40\\n0:4:41 --> 0:4:45\\nSvenska arbetare får sysselsättning genom en svensk uppfinning\\n\\n41\\n0:4:45 --> 0:4:50\\noch över hela världen beundras de svenska anläggningarna.\\n\\n42\\n0:4:54 --> 0:4:58\\nNu för tiden gör vi också våra egna radioapparater.\\n\\n43\\n0:4:58 --> 0:5:4\\nRadion har blivit en samhällsinstitution,\\nfrån att för något mer än tio år sedan ha\\nvarit en lyxartikel.\\n\\n44\\n0:5:5 --> 0:5:11\\nDet var ju inte så länge sedan de första regelbundna radioprogrammen\\nsändes ut här i landet.\\n\\n45\\n0:5:22 --> 0:5:26\\nLyssna på högtalaren:\\nDrivkraften i de senaste årtiondenas\\n\\n46\\n0:5:26 --> 0:5:32\\nutomordentligt snabba utveckling\\npå teknikens och näringslivets områden\\n\\n47\\n0:5:32 --> 0:5:38\\nhar varit den enskilda företagsamheten,\\ndugligheten, initiativkraften och framåtandan.\\n\\n48\\n0:5:40 --> 0:5:45\\nJa, den enskilda företagsamheten är framåtskridandets\\nviktigaste förutsättning.\\n\\n49\\n0:5:45 --> 0:5:50\\nÅr 1864 lagfästes näringsfriheten i Sverige.\\n\\n50\\n0:5:50 --> 0:5:54\\nSkråtvångets bojor löstes och den moderna tiden gick in.\\n\\n51\\n0:5:54 --> 0:5:59\\nVårt lands utveckling till en av världens\\nfrämsta nationer kunde börja.\\n\\n52\\n0:5:59 --> 0:6:4\\nNya företag bildades och utvecklades.\\nLandets välstånd ökades allt mera.\\n\\n53\\n0:6:4 --> 0:6:11\\nUnder 100 år har värdet av industrins årliga produktion\\nökat från 20 till 4000 miljoner kronor.\\n\\n54\\n0:6:11 --> 0:6:15\\nIndustrins avkastning har blivit 200 gånger så stor.\\n\\n55\\n0:6:16 --> 0:6:20\\nMaskinerna har skapat nya möjligheter att finna ett levebröd.\\n\\n56\\n0:6:20 --> 0:6:25\\nFör hundra år sedan sysselsatte industrin 15.000 man.\\n\\n57\\n0:6:25 --> 0:6:32\\nNu, idag, ger den arbete åt över 800.000.\\n\\n58\\n0:7:1 --> 0:7:5\\nDen svenska arbetaren har mer än sina kamrater i andra länder\\n\\n59\\n0:7:5 --> 0:7:10\\nfått dra nytta av utvecklingens frukter.\\n\\n60\\n0:7:25 --> 0:7:30\\nVåra arbetares höga levnadsstandard förvånar\\nalla utländska besökare.\\n\\n61\\n0:7:31 --> 0:7:36\\nOch de säger att vi är ett lyckligt och rikt folk\\ni jämförelse med andra nationer.\\n\\n62\\n0:7:37 --> 0:7:44 \\nTack vare vårt folks goda egenskaper kan vårt lilla land,\\nhär uppe i Norden, gläda sig åt\\n\\n63\\n0:7:44 --> 0:7:53\\natt inom sina gränser hysa ett stort antal ansedda världsindustrier,\\nsom med framgång kämpar på de internationella marknaderna.\\n\\n64\\n0:8:00 --> 0:8:06\\nSeparatorn är en sådan svenk världsartikel.\\nKänd överallt, säljs den också överallt.\\n\\n65\\n0:8:6 --> 0:8:11\\nDet är en svensk exportindustri,\\nsom helt vilar på en enskild mans uppfinning.\\n\\n66\\n0:8:18 --> 0:8:22\\nDynamiten, Nobels upptäckt, röjer nu vägar och spränger berg.\\n\\n67\\n0:8:22 --> 0:8:29\\nOch med dess hjälp har människan övervunnit\\nmånga svårigheter som naturen lagt i hennes väg.\\n\\n68\\n0:8:31 --> 0:8:36\\nOch vår svenska järnindustri, den har inte bara den svenska malmen\\natt tacka för sitt stora anseende\\n\\n69\\n0:8:36 --> 0:8:43\\nhos de flesta fabriker jorden runt\\nsom behöver fullgod vara.\\n\\n70\\n0:9:05 --> 0:9:10\\nBearbetning av kvalitetsstål\\nhar nått oerhört långt här.\\n\\n71\\n0:9:10 --> 0:9:13\\nOch vi framställer stålkvaliteter som betalas högre än rent guld.\\n\\n72\\n0:9:13 --> 0:9:19\\nDet är enskild företagsamhet som drivit fram dessa kvalitetsprodukter.\\n\\n73\\n0:9:19 --> 0:9:23\\nStora resurser står till förfogande i våra järnverk.\\n\\n74\\n0:9:23 --> 0:9:28\\nSe bara på ugnarna eller stålpressen, i obändig kraft forma den\\nvitglödgade metallen.\\n\\n75\\n0:9:29 --> 0:9:33\\nAllt detta vi ser, är följden av en fruktbärande samverkan\\n\\n76\\n0:9:33 --> 0:9:41\\nmellan kunniga arbetare, skickliga ingenjörer\\noch framsynta industriledare.\\n\\n77\\n0:9:47 --> 0:9:53\\nDet visar sig samma sak på andra områden.\\nHär i Sverige framställer vi nu till och med guld.\\n\\n78\\n0:9:53 --> 0:9:59\\nBoliden-fältet upptäcktes genom den genialiska\\nelektriska malmletningsmetoden.\\n\\n79\\n0:9:59 --> 0:10:5\\nMen man fann att det var omöjligt att med vanliga metoder\\nutvinna något guld ur malmen.\\n\\n80\\n0:10:5 --> 0:10:11\\nForskarna sattes i arbete, man lade ner stora summor,\\noch -- lyckades!\\n\\n81\\n0:10:11 --> 0:10:15\\nDet stora smältverket i Rönnskär,\\ndet enda i sitt slag i hela världen,\\n\\n82\\n0:10:15 --> 0:10:23\\nutvinner nu många tackor guld årligen.\\nEn triumf för svensk vetenskap och seg uthållighet.\\n\\n83\\n0:10:24 --> 0:10:29\\nHögt uppe i Norrland smälter snön undan.\\nVåren kommer.\\n\\n84\\n0:10:29 --> 0:10:36\\nBäckarna sväller ut till åar och floder.\\n\\n85\\n0:10:37 --> 0:10:41\\nI Sverige använder vi de snabba, brusande floderna\\nför transportmedel\\n\\n86\\n0:10:41 --> 0:10:45\\nför alla de trädstammar som årligen fällas i skogarna.\\n\\n87\\n0:10:45 --> 0:10:53\\nEnskilda företagare har här utnyttjat naturens förutsättningar\\noch skapat världens längsta flottleder.\\n\\n88\\n0:10:54 --> 0:11:00\\nOch skarpsinniga män har öppnat nya möjligheter\\natt förvandla våra skogar till nyttiga produkter.\\n\\n89\\n0:12:13 --> 0:12:20\\nCellulosaindustrin, som bland annat levererar\\nråmaterialet till en stor del av världens konstsilkeproduktion,\\n\\n90\\n0:12:20 --> 0:12:26\\nbygger huvudsakligast sitt arbete på svenska uppfinningar.\\n\\n91\\n0:12:26 --> 0:12:29\\nOch det gör även papersmasseindustrin.\\n\\n92\\n0:12:29 --> 0:12:35\\nTillsammans hör dessa båda till våra allra viktigaste industrier.\\n\\n93\\n0:12:46 --> 0:12:51\\nDe svenska AGA-fyrarna är en ensam mans\\nutomordentliga uppfinnararbete.\\n\\n94\\n0:12:51 --> 0:12:54\\nOch likaså de svenska kullagren,\\n\\n95\\n0:12:54 --> 0:12:58\\nvilka anses vara de bästa som man överhuvudtaget kan få.\\n\\n96\\n0:13:00 --> 0:13:4\\nStora verkstadsindustrier har vi\\noch båtvarven är välkända.\\n\\n97\\n0:13:5 --> 0:13:8\\nDet är många utländska rederier som vända sig\\ntill vårt land\\n\\n98\\n0:13:8 --> 0:13:12\\nför att vara säkra på att få ut ett fullgott arbete.\\n\\n99\\n0:13:24 --> 0:13:29\\nDen svenska arbetaren har en stor andel\\ni vår industris gynnsamma utveckling.\\n\\n100\\n0:13:29 --> 0:13:34\\nHans yrkesskicklighet, hans mekaniska begåvning\\noch noggrannhet\\n\\n101\\n0:13:34 --> 0:13:40\\nhar gjort de produkter, som han varit med om att tillverka\\nmycket efterfrågade på världsmarknaden.\\n\\n102\\n0:13:40 --> 0:13:44\\nSvenskt arbete är kvalitetsarbete.\\n\\n103\\n0:13:44 --> 0:13:48\\nDärför har också våra svenska arbetare\\nnått en så hög levnadsstandard,\\n\\n104\\n0:13:48 --> 0:13:58\\natt många andra länders arbetare\\nmed avund betraktar hans ekonomiskt och socialt goda ställning.\\n\\n105\\n0:14:26 --> 0:14:31\\nIndustrins uppsving började då näringsfriheten infördes.\\n\\n106\\n0:14:31 --> 0:14:35\\nDen enskilda företagsamheten har fört utvecklingen framåt\\n\\n107\\n0:14:35 --> 0:14:39\\noch visat en enastående motståndskraft\\nunder de oerhörda ekonomiska påfrestningar \\n\\n108\\n0:14:39 --> 0:14:42\\nsom följt efter världskriget.\\n\\n109\\n0:14:42 --> 0:14:50\\nDet är denna företagsamhet som lagt den ekonomiska grunden\\ntill våra dagars Sverige.\\n\\n110\\n0:14:50 --> 0:14:53\\nLåt oss alla arbeta vidare.\\n\\n111\\n0:14:53 --> 0:14:59\\nLåt oss tillsammans sträva efter att ytterligare\\nföra Sveriges näringsliv framåt och uppåt.\\n\\n112\\n0:14:59 --> 0:15:2\\nDet är på dess framgång vår egen framtid beror.\\n\\n113\\n0:15:2 --> 0:15:7\\nArbetet adlar mannen.\\nArbete ger bröd och försörjning.\\n\\n114\\n0:15:7 --> 0:15:13\\nEtt fritt och starkt näringsliv\\nskapar också politisk och ekonomisk frihet\\n\\n115\\n0:15:13 --> 0:15:16\\noch den bygger på framåtskridandet.\\n\\n116\\n0:15:17 --> 0:15:21\\nVärna vår enskilda företagsamhet.\\n\\n117\\n0:15:21 --> 0:15:27\\nFölj den svenska högern i dess strävan\\nför att skapa ett fritt och lyckligt folk.\\n\\n118\\n0:15:27 --> 0:15:36\\nFölj svensk samling för frihet och framåtskridande.',\n", + " 'bytes': 11135,\n", + " 'sha1': 'rc51aza4zht7jpb4x6i7qktchkunfqd',\n", + " 'parent_id': 49873468,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49890840,\n", + " 'timestamp': '2011-02-16T23:16:06Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13330572,\n", + " 'title': 'Paramountjournalen 1925-09-07.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 0:0:0 --> 0:0:4 Paramountjournalen 1925. Journal (31 augusti-7 september) 2 0:0:4 --> 0:0:9 Skandalhuset vid Roslagstorg har nu äntligen definitivt skattat åt...'\",\n", + " 'text': '1\\n0:0:0 --> 0:0:4\\nParamountjournalen 1925.\\nJournal (31 augusti-7 september)\\n\\n2\\n0:0:4 --> 0:0:9\\nSkandalhuset vid Roslagstorg har nu\\näntligen definitivt skattat åt förgängelsen\\ntill gatutrafikanternas lättnad.\\n\\n3\\n0:0:28 --> 0:0:33\\nRullstolsmannen Herr Alfred Witt, som\\ntillryggalagt sträckan Sthlm - Malmö -\\nGöteborg - Sthlm i rullstol.\\n\\n4\\n0:1:9 --> 0:1:14\\nHerr Witt slår läger efter en ansträngande dag.\\n\\n5\\n0:1:44 --> 0:1:49\\nEfter vilan fortsätter färden.\\n\\n6\\n0:2:13 --> 0:2:18\\nÅterkomst till Stockholm.\\n\\n7\\n0:2:22 --> 0:2:27\\nNoaks ark -\\nDet nya djurhuset på Skansen har nyligen\\nblivit färdigt att tagas i bruk.\\n\\n8\\n0:3:20 --> 0:3:30\\nJack Townsend, den amerikanske boxaren\\nanländer till Stockholm för att utkämpa en\\nmatch mot Karl Jonsson (Kalle Masen).\\nMatchen slutade med svenskens nederlag på knock out i första ronden.\\n\\n9\\n0:4:9 --> 0:4:14\\nKalle tränar.\\n\\n10\\n0:4:51 --> 0:4:56\\nKalle Masen och hans tränare Arthur Ahl.\\n\\n11\\n0:5:0 --> 0:5:8\\nEtt egendomligt fartyg \"Sandsugaren\" på\\nbesök i Stockholm (suger slam och sand\\nfrån sjöbotten där djupet behöver ökas).\\n\\n12\\n0:5:56 --> 0:6:3\\nSöndagen den 6 september - Svenska\\nMotorklubbens hastighetstävlingar på\\nÖstermalms Idrottsplats.\\n\\n13\\n0:7:16 --> 0:7:25\\n6-dagarsloppets avslutning:\\nCyklisternas passage genom Ljungby,\\nvid målet i Fittja,\\nSven Johansson, segrare på sista etappen\\noch i B-klassen,\\nRagnar Malm vann det krävande loppet,\\ncyklisterna passera Skeppsbron,\\nankomst till Stadion.',\n", + " 'bytes': 1466,\n", + " 'sha1': 'p8c1i0dcrncfz7wrglp52ieowefgbeg',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 50405720,\n", + " 'timestamp': '2011-02-22T18:54:33Z',\n", + " 'user': {'text': '190.127.249.124'},\n", + " 'page': {'id': 13665384,\n", + " 'title': 'Elephants Dream (high quality).ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:15,042 --> 00:00:18,042 A la izquierda podemos ver... 2 00:00:18,750 --> 00:00:20,333 A la derecha podemos ver las... 3 00:00:20,417 --> 00:00...'\",\n", + " 'text': '1 \\n00:00:15,042 --> 00:00:18,042 \\nA la izquierda podemos ver...\\n\\n2 \\n00:00:18,750 --> 00:00:20,333 \\nA la derecha podemos ver las...\\n\\n3 \\n00:00:20,417 --> 00:00:21,917 \\n...las corta cabezas.\\n\\n4 \\n00:00:22,000 --> 00:00:24,625 \\nTodo es seguro. Perfectamente seguro.\\n\\n5 \\n00:00:26,333 --> 00:00:27,333 \\n¿Emo?\\n\\n6 \\n00:00:28,875 --> 00:00:30,250 \\n¡Cuidado!\\n\\n7 \\n00:00:47,125 --> 00:00:48,250 \\n¿Te lastimaste?\\n\\n8 \\n00:00:51,917 --> 00:00:53,917 \\nCreo que no... ¿y tú?\\n\\n9 \\n00:00:55,625 --> 00:00:57,125 \\nEstoy bien.\\n\\n10 \\n00:00:57,583 --> 00:01:01,667 \\nLevántate. Emo, no es seguro aquÃ\\xad.\\n\\n11 \\n00:01:02,208 --> 00:01:03,667 \\nVámonos.\\n\\n12 \\n00:01:03,750 --> 00:01:05,750 \\n¿Ahora qué?\\n\\n13 \\n00:01:05,875 --> 00:01:07,875 \\n¡Ya verás!\\n\\n14 \\n00:01:16,167 --> 00:01:18,375 \\nEmo. ¡Por aquÃ\\xad!\\n\\n15 \\n00:01:34,958 --> 00:01:35,792 \\n¡SÃ\\xadgueme!\\n\\n16 \\n00:02:11,583 --> 00:02:12,792 \\n¡Corre Emo!\\n\\n17 \\n00:02:48,375 --> 00:02:50,083 \\n¡No estás poniendo atención!\\n\\n18 \\n00:02:50,750 --> 00:02:54,500 \\nSolo quiero contestar el... ...teléfono.\\n\\n19 \\n00:02:55,000 --> 00:02:58,208 \\nEmo, mira, digo, escucha.\\n\\n20 \\n00:02:59,750 --> 00:03:02,292 \\nTienes que aprender a escuchar.\\n\\n21 \\n00:03:03,625 --> 00:03:05,125 \\nEsto no es un juego.\\n\\n22 \\n00:03:06,167 --> 00:03:08,750 \\nTú, nosotros, podemos morir fácilmente aquÃ\\xad afuera.\\n\\n23 \\n00:03:10,208 --> 00:03:14,125 \\nEscucha... los sonidos de la máquina.\\n\\n24 \\n00:03:18,333 --> 00:03:20,417 \\nEscucha tu respiración.\\n\\n25 \\n00:04:27,208 --> 00:04:29,250 \\n¿Y nunca te aburres de esto?\\n\\n26 \\n00:04:29,583 --> 00:04:31,083 \\n¿¡¿Aburrirme?!?\\n\\n27 \\n00:04:31,750 --> 00:04:34,667 \\nLa máquina es como un reloj.\\n\\n28 \\n00:04:35,500 --> 00:04:37,708 \\nUn movimiento fuera de lugar...\\n\\n29 \\n00:04:37,833 --> 00:04:39,792 \\n...y quedarás hecho polvo.\\n\\n30 \\n00:04:41,042 --> 00:04:42,375 \\n¿Pero no es -\\n\\n31 \\n00:04:42,417 --> 00:04:46,542 \\n¡Polvo, Emo! ¿Es eso lo que quieres? ¿Polvo?\\n\\n32 \\n00:04:48,083 --> 00:04:50,000 \\n¿Tu propósito en la vida?\\n\\n33 \\n00:04:50,583 --> 00:04:52,250 \\nPolvo.\\n\\n34 \\n00:05:41,833 --> 00:05:43,458 \\nEmo, cierra tus ojos.\\n\\n35 \\n00:05:44,917 --> 00:05:46,583 \\n¿Porqué? - ¡Ahora!\\n\\n36 \\n00:05:53,750 --> 00:05:56,042 \\nBien.\\n\\n37 \\n00:05:59,542 --> 00:06:02,792 \\n¿Que es lo que ves a tu izquierda Emo?\\n\\n38 \\n00:06:04,417 --> 00:06:06,000 \\nNada. - ¿De veras?\\n\\n39 \\n00:06:06,333 --> 00:06:07,917 \\nNo hay nada.\\n\\n40 \\n00:06:08,042 --> 00:06:12,417 \\nY a tu derecha, ¿qué es lo que ves a tu derecha Emo?\\n\\n41 \\n00:06:13,875 --> 00:06:16,917 \\nLo mismo Proog, exactamente lo mismo...\\n\\n42 \\n00:06:17,083 --> 00:06:18,583 \\n¡Nada!\\n\\n43 \\n00:06:40,625 --> 00:06:42,958 \\n¡Escucha Proog! ¡Escuchas eso!\\n\\n44 \\n00:06:43,625 --> 00:06:45,042 \\n¿Podemos ir aquÃ\\xad?\\n\\n45 \\n00:06:45,208 --> 00:06:48,042 \\n¿AllÃ\\xad? No es seguro.\\n\\n46 \\n00:06:49,917 --> 00:06:52,500 \\nPero... - Créeme, no lo es.\\n\\n47 \\n00:06:53,292 --> 00:06:54,792 \\nTalvez yo podrÃ\\xada...\\n\\n48 \\n00:06:54,833 --> 00:06:56,333 \\nNo.\\n\\n49 \\n00:06:57,667 --> 00:07:00,167 \\nNO!\\n\\n50 \\n00:07:00,875 --> 00:07:03,750 \\n¿Alguna otra pregunta Emo?\\n\\n51 \\n00:07:04,250 --> 00:07:05,917 \\nNo.\\n\\n52 \\n00:07:09,458 --> 00:07:10,833 \\n¿Emo?\\n\\n53 \\n00:07:11,875 --> 00:07:13,542 \\nEmo, ¿porqué...\\n\\n54 \\n00:07:13,583 --> 00:07:14,458 \\nEmo...\\n\\n55 \\n00:07:14,500 --> 00:07:18,500 \\n...¿porqué no puedes ver la belleza de este lugar?\\n\\n56 \\n00:07:18,833 --> 00:07:20,750 \\nComo funciona.\\n\\n57 \\n00:07:20,875 --> 00:07:24,000 \\nQué tan perfecto es.\\n\\n58 \\n00:07:24,083 --> 00:07:27,417 \\nNo, Proog, no lo veo.\\n\\n59 \\n00:07:27,542 --> 00:07:30,333 \\nNo lo veo porque no hay nada allÃ\\xad.\\n\\n60 \\n00:07:31,500 --> 00:07:35,333 \\n¿Y porqué debo confiar mi vida a algo que no esta allÃ\\xad?\\n\\n61 \\n00:07:35,583 --> 00:07:37,125 \\nBueno ¿puedes decirme eso?\\n\\n62 \\n00:07:37,500 --> 00:07:39,167 \\nContéstame.\\n\\n63 \\n00:07:43,208 --> 00:07:44,583 \\nProog...\\n\\n64 \\n00:07:45,500 --> 00:07:47,333 \\nEstás enfermo, hombre.\\n\\n65 \\n00:07:47,375 --> 00:07:49,208 \\nAléjate de mÃ\\xad.\\n\\n66 \\n00:07:52,583 --> 00:07:55,083 \\n¡No! ¡Emo! ¡Es una trampa!\\n\\n67 \\n00:07:55,833 --> 00:07:57,167 \\nEs una trampa.\\n\\n68 \\n00:07:57,208 --> 00:08:01,750 \\nA tu izquierda puedes ver... ¡Los jardines colgantes de Babilonia!\\n\\n69 \\n00:08:02,250 --> 00:08:04,292 \\n¿Cómo te parece para una trampa?\\n\\n70 \\n00:08:05,458 --> 00:08:07,125 \\nNo, Emo.\\n\\n71 \\n00:08:09,417 --> 00:08:12,792 \\nA tu derecha puedes ver... ...¿Adivina qué? ...\\n\\n72 \\n00:08:13,000 --> 00:08:14,750 \\n...¡El coloso de Rodas!\\n\\n73 \\n00:08:15,833 --> 00:08:16,708 \\n¡No!\\n\\n74 \\n00:08:16,750 --> 00:08:22,167 \\nEl coloso de Rodas y esta aquÃ\\xad solo para ti Proog.\\n\\n75 \\n00:08:51,333 --> 00:08:53,167 \\nSÃ\\xad esta allÃ\\xad...\\n\\n76 \\n00:08:53,208 --> 00:08:55,500 \\nTe estoy diciendo, Emo...\\n\\n77 \\n00:08:57,333 --> 00:09:00,000 \\n...lo es.',\n", + " 'bytes': 4818,\n", + " 'sha1': 'bm3ubapxr72ujlcnxlqp6dpgmbicgje',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 149080111,\n", + " 'timestamp': '2015-02-05T20:54:59Z',\n", + " 'user': {'id': 4514061, 'text': 'JTaylor2014-15'},\n", + " 'page': {'id': 14621457,\n", + " 'title': 'Robert Goddard footage.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:01,201 --> 00:00:07,474\\nRobert Goddard, the American rocket pioneer - yanking inventor, dreamer.\\n\\n2\\n00:00:07,474 --> 00:00:11,911\\nThey call him the moon man and laughed, but on his own he went ahead\\n\\n3\\n00:00:11,911 --> 00:00:16,182\\ndesigning, inventing, and testing.\\n\\n4\\n00:00:16,182 --> 00:00:23,223\\nHis first proving grounds were on his Aunt Effie`s farm in Auburn, Massachusetts.\\n\\n5\\n00:00:23,223 --> 00:00:28,728\\nThe neighbors complained.\\n\\n6\\n00:00:28,728 --> 00:00:32,232\\nWith a grant from Daniel Guggenheim he moved to New Mexico,\\n\\n7\\n00:00:32,232 --> 00:00:35,702\\nwith his wife Esther who was also his camera woman.\\n\\n8\\n00:00:35,702 --> 00:00:39,305\\nGoddard had invented and launched the world's first liquid propellant\\n\\n9\\n00:00:39,305 --> 00:00:44,711\\nrocket in 1926, and in the end he accumulated more than 200 patents\\n\\n10\\n00:00:44,711 --> 00:00:46,613\\nfor everything from multi-staged\\n\\n11\\n00:00:46,613 --> 00:00:52,328\\nrockets to fuel pumps and clustered engines\\n\\n12\\n00:01:09,636 --> 00:01:14,007\\nBy the year 1930 his rockets achieved a speed of 500 miles per hour\\n\\n13\\n00:01:14,007 --> 00:01:17,671\\nand an altitude of 2000 feet.\\n\\n14\\n00:01:19,579 --> 00:01:26,695\\nThis was the year in which the three Apollo astronauts were born.\\n\\n15\\n00:01:27,787 --> 00:01:31,624\\nGoddard had a vision of the Age of Space, but the world was too slow\\n\\n16\\n00:01:31,624 --> 00:01:37,419\\nto make it happen before his death.\\n\\n17\\n00:01:40,849 --> 00:01:43,002\\nThank you, Robert Goddard, for your inventiveness,\\n\\n18\\n00:01:43,002 --> 00:01:46,206\\nand perseverance!\",\n", + " 'bytes': 1551,\n", + " 'sha1': '2i4y1s2i6s25iy3aj3b3qh1fuj5h7d1',\n", + " 'parent_id': 149079797,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 52049838,\n", + " 'timestamp': '2011-03-16T16:32:21Z',\n", + " 'user': {'id': 6282, 'text': 'Longbow4u'},\n", + " 'page': {'id': 14621580,\n", + " 'title': 'Robert Goddard footage.ogg.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'typo',\n", + " 'text': '1\\n00:00:01,201 --> 00:00:07,474\\nRobert Goddard, der amerikanische Raketenpionier - mitreißender Erfinder, Visionär\\n\\n2\\n00:00:07,474 --> 00:00:11,911\\nSie nannten ihn den Mondmenschen und lachten, aber er machte allein weiter damit\\n\\n3\\n00:00:11,911 --> 00:00:16,182\\nzu entwerfen, zu erfinden und zu testen\\n\\n4\\n00:00:16,182 --> 00:00:23,223\\nSein erstes Testgelände war auf der Farm seiner Tante Effie in Auburn, Massachusetts\\n\\n5\\n00:00:23,223 --> 00:00:28,728\\ndie Nachbarn beklagten sich\\n\\n6\\n00:00:28,728 --> 00:00:32,232\\nmit Fordermitteln von Daniel Gugenheim zog er nach New Mexico\\n\\n7\\n00:00:32,232 --> 00:00:35,702\\nmit seiner Frau Esther, die auch seine Kamerafrau war\\n\\n8\\n00:00:35,702 --> 00:00:39,305\\nGoddard hatte die weltweit erste Flüssigtreibstoffrakete im Jahr 1926\\n\\n9\\n00:00:39,305 --> 00:00:44,711\\nerfunden und gestartet, und am Ende sammelte er mehr als 200 Patente\\n\\n10\\n00:00:44,711 --> 00:00:46,613\\nfür alles, von mehrstufigen\\n\\n11\\n00:00:46,613 --> 00:00:52,328\\nRaketen, Treibstoffpumpen bis zu aneinandergereihten Düsen\\n\\n12\\n00:01:09,636 --> 00:01:14,007\\nBis zum Jahr 1930 erreichten seine Raketen Geschwindigkeiten von 500 Meilen pro Stunde\\n\\n13\\n00:01:14,007 --> 00:01:17,671\\nund eine Höhe von 2000 Fuß\\n\\n14\\n00:01:19,579 --> 00:01:26,695\\nDies war das Jahr, in dem die drei Apollo-Astronauten geboren wurden\\n\\n15\\n00:01:27,787 --> 00:01:31,624\\nGoddard hatte eine Vision des Raumzeitalters, aber die Welt war zu langsam\\n\\n16\\n00:01:31,624 --> 00:01:37,419\\ndiese vor seinem Tod zu verwirklichen\\n\\n17\\n00:01:40,849 --> 00:01:43,002\\nVielen Dank, Robert Goddard, für Ihren Erfindungsgeist\\n\\n18\\n00:01:43,002 --> 00:01:46,206\\nund Ihre Ausdauer!',\n", + " 'bytes': 1639,\n", + " 'sha1': 's4qavep1olv0yfm05t582gh8najonty',\n", + " 'parent_id': 52049819,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 52050674,\n", + " 'timestamp': '2011-03-16T17:04:46Z',\n", + " 'user': {'id': 6282, 'text': 'Longbow4u'},\n", + " 'page': {'id': 14621816,\n", + " 'title': 'January 2009 ISS tour.ogg.undefined.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Edited subtitles using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': \"1\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n20th of January of 2009\\n\\n2\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand magically on our schedules, and\\n\\n3\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsomething popped up, and there was\\n\\n4\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nwas this video\\n\\n5\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ntour of the International Space Station\\n\\n6\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand what that means is that you are getting\\n\\n7\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthe straight skinny, the dirty laundry\\n\\n8\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand everything, we didn't have a chance to clean up\\n\\n9\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand also we are in the middle of re-modelling\\n\\n10\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nSTS-121, also known as\\n\\n11\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthe UF2 mission came up\\n\\n12\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nabout 6 or 7 weeks ago, and\\n\\n13\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nwe are still putting everything\\n\\n14\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ntogehter, putting it away\\n\\n15\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nso things are a little bit cluttered\\n\\n16\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nup here, certainly not dirty, we clean\\n\\n17\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nit all the time\\n\\n18\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nbut it's a little bit cluttered\\n\\n19\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nso you gonna get a chance to see that\\n\\n20\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nbut along the way you get to see real life\\n\\n21\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nof what the International Space Station is like\\n\\n22\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand you can see how proud I am \\n\\n23\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nmy crew is and the entire space station team is\\n\\n24\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nabout the beautiful International Space Station\",\n", + " 'bytes': 1602,\n", + " 'sha1': 'er0gmb22rpt41ppdbrnkz6iexf3qn5b',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 141048372,\n", + " 'timestamp': '2014-11-30T15:45:08Z',\n", + " 'user': {'text': '2.111.239.189'},\n", + " 'page': {'id': 14621962,\n", + " 'title': 'January 2009 ISS tour.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n20th of January of 2009\\n\\n2\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand magically on our schedules, and\\n\\n3\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsomething popped up, and there was \\n\\n4\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nalot of hype cause trick opened the gates,\\n\\n5\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ntour of the International Space Station\\n\\n6\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand what that means is that you are getting\\n\\n7\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthe straight skinny, the dirty laundry\\n\\n8\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand everything, we didn't have a chance to clean up\\n\\n9\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand also we are in the middle of re-modelling\\n\\n10\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nSTS-121, also known as\\n\\n11\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthe UF2 mission came up\\n\\n12\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nabout 6 or 7 weeks ago, and\\n\\n13\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nwe are still putting everything\\n\\n14\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ntogehter, putting it away\\n\\n15\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nso things are a little bit cluttered\\n\\n16\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nup here, certainly not dirty, we clean\\n\\n17\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nit all the time\\n\\n18\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nbut it's a little bit cluttered\\n\\n19\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nso you gonna get a chance to see that\\n\\n20\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nbut along the way you get to see real life\\n\\n21\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nof what the International Space Station is like\\n\\n22\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand you can see how proud I am \\n\\n23\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nmy crew is and the entire space station team is\\n\\n24\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nabout the beautiful International Space Station\",\n", + " 'bytes': 1631,\n", + " 'sha1': 'lop78wbcn6b89jb6357uvtn0sbg90xa',\n", + " 'parent_id': 52051338,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 52105468,\n", + " 'timestamp': '2011-03-18T04:25:24Z',\n", + " 'user': {'text': '89.2.123.139'},\n", + " 'page': {'id': 14633770,\n", + " 'title': 'Sintel movie 720x306.ogv.tr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'This is a quick translation I had uploaded to opensubtitles.org when Sintel was released. Hope it will be useful on Wikimedia in some way.',\n", + " 'text': '1\\n\\n00:01:47,250 --> 00:01:50,500\\n\\nBu silahın karanlık bir geçmişi var.\\n\\n\\n\\n2\\n\\n00:01:51,800 --> 00:01:55,800\\n\\nÇok masum kanı dökmüş.\\n\\n\\n\\n3\\n\\n00:01:58,000 --> 00:02:01,450\\n\\nBöylesine hazırlıksız, tek başına seyahat etmen\\n\\nçılgınlık.\\n\\n\\n\\n4\\n\\n00:02:01,750 --> 00:02:04,800\\n\\nHâlâ damarlarında kanın aktığından şanslısın.\\n\\n\\n\\n5\\n\\n00:02:05,250 --> 00:02:06,300\\n\\nTeşekkürler.\\n\\n\\n\\n6\\n\\n00:02:07,500 --> 00:02:09,000\\n\\nPeki...\\n\\n\\n\\n7\\n\\n00:02:09,400 --> 00:02:13,800\\n\\nSeni muhafızların topraklarına getiren\\n\\nnedir?\\n\\n\\n\\n8\\n\\n00:02:15,000 --> 00:02:17,500\\n\\nBirini arıyorum. \\n\\n\\n\\n9\\n\\n00:02:18,000 --> 00:02:22,200\\n\\nÇok değerli birisi mi?\\n\\nÇok yakın birisi?\\n\\n\\n\\n10\\n\\n00:02:23,400 --> 00:02:25,000\\n\\nBir ejderha.\\n\\n\\n\\n11\\n\\n00:02:28,850 --> 00:02:31,750\\n\\nYalnız bir avcı için tehlikeli bir macera.\\n\\n\\n\\n12\\n\\n00:02:32,950 --> 00:02:35,870\\n\\nKendimi bildim bileli hep yanlızdım.\\n\\n\\n\\n13\\n\\n00:03:27,250 --> 00:03:30,500\\n\\nNeredeyse bitti. Şşşş...\\n\\n\\n\\n14\\n\\n00:03:30,750 --> 00:03:33,500\\n\\nHey, sakin ol.\\n\\n\\n\\n15\\n\\n00:03:48,250 --> 00:03:52,250\\n\\nİyi geceler Scales.\\n\\n\\n\\n16\\n\\n00:04:10,350 --> 00:04:13,850\\n\\nYakala onu Scales! Haydi!\\n\\n\\n\\n17\\n\\n00:04:25,250 --> 00:04:28,250\\n\\nScales?\\n\\n\\n\\n18\\n\\n00:05:04,000 --> 00:05:07,500\\n\\nEvet! Haydi!\\n\\n\\n\\n19\\n\\n00:05:38,750 --> 00:05:42,000\\n\\nScales!\\n\\n\\n\\n20\\n\\n00:07:25,850 --> 00:07:27,500\\n\\nBaşaramadım.\\n\\n\\n\\n21\\n\\n00:07:32,800 --> 00:07:36,500\\n\\nBaşaramadığın tek şey görebilmek...\\n\\n\\n\\n22\\n\\n00:07:37,800 --> 00:07:40,500\\n\\nBurası ejderha topraklarıdır, Sintel.\\n\\n\\n\\n23\\n\\n00:07:40,850 --> 00:07:44,000\\n\\nSandığından daha yakınsın.\\n\\n\\n\\n24\\n\\n00:09:17,600 --> 00:09:19,500\\n\\nScales!\\n\\n\\n\\n25\\n\\n00:10:21,600 --> 00:10:24,000\\n\\nScales?\\n\\n\\n\\n26\\n\\n00:10:26,200 --> 00:10:29,800\\n\\nScales...',\n", + " 'bytes': 1682,\n", + " 'sha1': 'ldnd7io1vimuyn6ofwsl5l11kkh4hv7',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 421310154,\n", + " 'timestamp': '2020-05-24T09:24:49Z',\n", + " 'user': {'id': 9279962, 'text': '石头疯或者仅仅是石头'},\n", + " 'page': {'id': 14640051,\n", + " 'title': 'The State of Wikipedia by JESS3.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,114 --> 00:00:05,114\\n(维基百科现况)\\n\\n<ref><!--1.1 00:00:05,414 --*> 00:00:06,414 (解说:吉米·威尔士,维基百科创始人) --> \\n\\n2\\n00:00:05,414 --> 00:00:07,800\\n(维基百科,自由的百科全书)\\n\\n3\\n00:00:07,800 --> 00:00:11,000\\n维基百科是今日互联网上最重要的网站之一\\n\\n4\\n00:00:11,000 --> 00:00:12,500\\n不过您可能会惊讶地发现\\n\\n5\\n00:00:12,500 --> 00:00:16,000\\n它原本是另一个网上百科全书的子计划\\n\\n6\\n00:00:17,000 --> 00:00:21,400\\n它叫Nupedia,一部由专家撰写的传统百科全书\\n\\n7\\n00:00:21,400 --> 00:00:25,600\\n它虽然自由并且联网 - 但最后的发布权限只归一人掌握\\n\\n8\\n00:00:25,600 --> 00:00:27,500\\n不甚成功 \\n\\n9\\n00:00:30,000 --> 00:00:34,000\\n作为Nupedia的创办者,我领导团队建立了一个小组\\n\\n10\\n00:00:34,000 --> 00:00:36,000\\n来撰写Nupedia后来的条目 \\n\\n11\\n00:00:36,000 --> 00:00:39,500\\n为便于合作,我们使用了一套新的软件平台\\n\\n12\\n00:00:39,600 --> 00:00:43,700\\n那就是wiki - 维基百科\\n\\n13\\n00:00:44,700 --> 00:00:48,480\\n这后来被发现是快速撰写出许多页面的绝佳方式\\n\\n14\\n00:00:48,480 --> 00:00:52,900\\n不久,Nupedia便落后了,而维基百科成为了主角\\n\\n15\\n00:00:53,000 --> 00:00:55,800\\n我们要打造的不仅是一部内容自由的百科全书\\n\\n16\\n00:00:55,800 --> 00:00:58,900\\n更是一部“人人可编辑的百科全书”\\n\\n17\\n00:00:59,300 --> 00:01:01,800\\n其他语言版本迅速出现\\n\\n18\\n00:01:01,800 --> 00:01:04,100\\n根据最近一次统计有逾270个\\n\\n19\\n00:01:04,300 --> 00:01:07,300\\n之后不久姐妹计划也出现了,比如维基文库、维基新闻\\n\\n20\\n00:01:07,300 --> 00:01:08,900\\n和维基词典\\n\\n21\\n00:01:08,900 --> 00:01:15,100\\n2003年,我创办了维基媒体基金会来维持维基百科的发展\\n\\n22\\n00:01:15,100 --> 00:01:18,600\\n维基百科每月接待将近4亿浏览者\\n\\n23\\n00:01:18,700 --> 00:01:22,200\\n访问量比这更高的网站屈指可数,并且都是十分知名的网站\\n\\n24\\n00:01:22,700 --> 00:01:27,100\\n维基百科在2011年一月迎来了自己的十周年纪念日\\n\\n25\\n00:01:27,100 --> 00:01:30,600\\n在这十年中,维基百科成为了全球最流行的网站之一\\n\\n26\\n00:01:31,250 --> 00:01:34,100\\n我继续带领社区和维基媒体基金会\\n\\n27\\n00:01:34,100 --> 00:01:37,100\\n帮助我们把维基百科建设成今日的样子\\n\\n28\\n00:01:37,200 --> 00:01:38,900\\n维基百科到底是谁写的?\\n\\n29\\n00:01:39,100 --> 00:01:44,000\\n创办至今,已有120万人为维基百科做出过贡献\\n\\n30\\n00:01:44,000 --> 00:01:49,990\\n在2010年,维基百科所有语言版本每月共有超过1千1百万次编辑\\n\\n31\\n00:01:50,000 --> 00:01:55,200\\n根据一份调查,博士在编辑者中的比重约是在外界公众时的两倍\\n\\n32\\n00:01:55,300 --> 00:01:58,500\\n在英文维基百科上,近50%的编辑者没有宗教信仰\\n\\n33\\n00:01:58,500 --> 00:02:03,000\\n14.6%的法语编辑者表示信仰“飞行面条怪物教”\\n\\n34\\n00:02:03,100 --> 00:02:06,100\\n应该说大部分维基百科人都不普通\\n\\n35\\n00:02:06,200 --> 00:02:09,300\\n原因之一,也许是编辑一两个页面很简单\\n\\n36\\n00:02:09,300 --> 00:02:11,300\\n但要投身其中就不那么容易了\\n\\n37\\n00:02:11,450 --> 00:02:16,400\\n维基百科社区由逾200条方针、指引和论述约束\\n\\n38\\n00:02:16,400 --> 00:02:19,600\\n此外还有讨论、评述、委员会、布告板\\n\\n39\\n00:02:19,600 --> 00:02:21,400\\n和维基专题等\\n\\n40\\n00:02:21,400 --> 00:02:25,350\\n网站的所有内容均取决于维基百科志愿者的贡献\\n\\n41\\n00:02:25,350 --> 00:02:28,900\\n维基媒体基金会不扮演任何编辑角色\\n\\n42\\n00:02:29,300 --> 00:02:31,900\\n基金会的工作是确保服务器的正常运转\\n\\n43\\n00:02:32,200 --> 00:02:33,400\\n但又不仅如此\\n\\n44\\n00:02:33,400 --> 00:02:36,300\\n基金会还在促进将维基百科拓展至全球\\n\\n45\\n00:02:36,600 --> 00:02:39,400\\n搭建更多的数据中心以加速维基百科的全球化\\n\\n46\\n00:02:39,450 --> 00:02:43,200\\n甚至会把自己第一个美国之外的办公地点设在印度\\n\\n47\\n00:02:43,300 --> 00:02:46,500\\n维基百科在西方和发达国家已经非常流行了\\n\\n48\\n00:02:46,500 --> 00:02:50,700\\n新的挑战是让维基百科进入到发展中国家\\n\\n49\\n00:02:50,750 --> 00:02:54,300\\n基金会是慈善组织,完全依赖于捐助\\n\\n50\\n00:02:54,400 --> 00:02:56,500\\n这些捐助有的来自公司和机构\\n\\n51\\n00:02:56,500 --> 00:03:00,100\\n但绝大多数则来自上百万的编者与读者\\n\\n52\\n00:03:00,400 --> 00:03:05,300\\n维基百科所取得的成绩是难以置信的,但仍有很长的路要走\\n\\n53\\n00:03:05,300 --> 00:03:09,500\\n就像读者看到的,有的条目写得很好,有的还不行\\n\\n54\\n00:03:09,500 --> 00:03:11,200\\n维基百科仍需要许多努力\\n\\n55\\n00:03:11,650 --> 00:03:13,400\\n这是一个新的挑战\\n\\n56\\n00:03:13,400 --> 00:03:16,970\\n不仅是让一部百科全书成形,更要把它做得更好\\n\\n57\\n00:03:16,970 --> 00:03:19,250\\n更准确,参考更多文献\\n\\n58\\n00:03:19,700 --> 00:03:21,800\\n不仅广博,而且深入\\n\\n59\\n00:03:21,800 --> 00:03:26,700\\n维基百科是空前的,前程亦是无量的\\n\\n60\\n00:03:26,700 --> 00:03:28,500\\n在维基百科的第二个十年里\\n\\n67\\n00:03:28,500 --> 00:03:29,850\\n维基百科是否会变得更好\\n\\n62\\n00:03:29,850 --> 00:03:31,350\\n取决于我们\\n\\n63\\n00:03:31,400 --> 00:03:35,000 \\n(维基百科,自由的百科全书)\\n\\n\\n64\\n00:03:39,000 --> 00:03:41,500\\n(JESS3制作)',\n", + " 'bytes': 5439,\n", + " 'sha1': 'hlohth8ai70l5lkutz90fopa5yca09l',\n", + " 'parent_id': 106721680,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 300915804,\n", + " 'timestamp': '2018-05-13T08:26:53Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 14665555,\n", + " 'title': 'Krazy Kat Bugologist 1916 silent.ogv.eu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '84user moved page [[TimedText:Krazy Kat Bugolist 1916 silent.ogv.eu.srt]] to [[TimedText:Krazy Kat Bugologist 1916 silent.ogv.eu.srt]]: ogv file renamed',\n", + " 'text': '1 \\n00:00:22,000 --> 00:00:27,000\\nNik erakutsiko dizut Zomorrologia, Ignatzes\\n\\n2\\n00:00:40,000 --> 00:00:43,000\\nZerbaitek esaten dit...\\n\\n3\\n00:00:58,000 --> 00:01:04,000\\nBegira, Ignatz, lo dagoen erle bat\\n\\n4\\n00:01:04,000 --> 00:01:08,000\\nHildako erle bat, esan nahi duzu\\n\\n5\\n00:01:10,000 --> 00:01:14,000\\nHotza egon behar du\\n\\n6\\n00:01:22,000 --> 00:01:25,000\\nErletxo gaixoa\\n\\n7\\n00:01:25,000 --> 00:01:31,000\\nAh! Pozik dago, erleen zeruan egongo da\\n\\n8\\n00:01:51,000 --> 00:01:56,000\\nIgnatz, akats bat egin duzu\\n\\n9\\n00:01:58,000 --> 00:02:01,000\\nHALA DA\\n\\n10\\n00:02:45,000 --> 00:02:49,000\\nutzidazu niri',\n", + " 'bytes': 591,\n", + " 'sha1': '5anqdxy3i5z54snvyathkg3mc3rqe0w',\n", + " 'parent_id': 52237662,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 284388278,\n", + " 'timestamp': '2018-01-31T16:30:04Z',\n", + " 'user': {'id': 4172499, 'text': 'Iñaki LL'},\n", + " 'page': {'id': 14666086,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.eu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:01,000 --> 00:00:02,000 Nire lankide izena Bücherwürmlein da\\n\\n2 00:00:02,000 --> 00:00:03,000 Lila roja\\n\\n3 00:00:04,000 --> 00:00:05,000 yuyu\\n\\n4 00:00:05,000 --> 00:00:07,000 Cbrown1023\\n\\n5 00:00:07,000 --> 00:00:08,000 22Kartika\\n\\n6 00:00:08,000 --> 00:00:10,000 Nire lankide izena Church of emacs da\\n\\n7 00:00:10,000 --> 00:00:14,000 Bücherwürmlein izenak liburutegiko sagu esan nahi du\\n\\n8 00:00:14,000 --> 00:00:16,000 Dew\\n\\n9 00:00:16,000 --> 00:00:17,000 Chomsky1\\n\\n10 00:00:17,000 --> 00:00:18,000 nasir8891\\n\\n11 00:00:18,000 --> 00:00:21,000 notafish, badakizu: « not a fish » (\"arrain bat ez\")\\n\\n12 00:00:21,000 --> 00:00:22,000 Theo10011\\n\\n13 00:00:22,000 --> 00:00:24,000 Nire lankide izena Henna da\\n\\n14 00:00:24,000 --> 00:00:25,000 Misou\\n\\n15 00:00:25,000 --> 00:00:26,000 Nire erabiltzaile izena Lyzzy da\\n\\n16 00:00:26,000 --> 00:00:30,000 wittylama, nire benetako izena den Liam Wyatten anagrama bat da\\n\\n17 00:00:30,000 --> 00:00:31,000 Deryck Chan\\n\\n18 00:00:31,000 --> 00:00:32,000 Vulpeto\\n\\n19 00:00:32,000 --> 00:00:33,000 RajeshPandey\\n\\n20 00:00:33,000 --> 00:00:37,000 Nire lankide izena Steven Walling da, nire benetako izena\\n\\n21 00:00:37,000 --> 00:00:38,000 Nire lankide izena Waldir da\\n\\n22 00:00:38,000 --> 00:00:41,000 Nire lankide izena Mstislavl da\\n\\n23 00:00:41,000 --> 00:00:44,000 Abbasjnr, a-b bikoitza-a-s-j-n-r\\n\\n24 00:00:44,000 --> 00:00:49,000 Nire izena Jdforrester da eta Wikipedia aldatzen dut',\n", + " 'bytes': 1430,\n", + " 'sha1': 'qy277o6hruf5epu3057ttv0kwewqab9',\n", + " 'parent_id': 52239197,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 52241773,\n", + " 'timestamp': '2011-03-22T00:27:34Z',\n", + " 'user': {'id': 23869, 'text': 'Theklan'},\n", + " 'page': {'id': 14666707,\n", + " 'title': 'Videoonwikipedia.ogv.eu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00 --> 00:00:02,202 Ezagutzen duzu Wikipedia 2 00:00:02,202 --> 00:00:05,772 zure lanak egiteko, artikuluak egiteko, zerbait ikasteko edo ondo pasatzeko e...'\",\n", + " 'text': '1\\n00:00:00 --> 00:00:02,202\\nEzagutzen duzu Wikipedia\\n\\n2\\n00:00:02,202 --> 00:00:05,772\\nzure lanak egiteko, artikuluak egiteko, zerbait ikasteko edo ondo pasatzeko erabiltzen duzu\\n\\n\\n3\\n00:00:05,772 --> 00:00:09,042\\nez da bakarrik doakoa dela irakurtzeko\\n\\n4\\n00:00:09,042 --> 00:00:11,344\\naskea da bertan ekarpenak egitea eta artikuluak hobetzea\\n\\n5\\n00:00:11,344 --> 00:00:14,647\\nzure ekarpen guztiek egia izan behar dute\\n\\n6\\n00:00:14,647 --> 00:00:17,884\\nikuspuntu neutral batetik idatziak baina zentsurarik gabe gai korapilotsuetan\\n\\n7\\n00:00:17,884 --> 00:00:22,655\\nWikipedia komunitate ireki bat da\\n\\n8\\n00:00:22,655 --> 00:00:23,923\\nbere burua gobernatzen du egitura minimo batekin\\n\\n9\\n00:00:23,923 --> 00:00:28,128\\neta mundu guztia da boluntario\\n\\n10\\n00:00:28,128 --> 00:00:31,431\\ngaur egun Wikipedia 260 hizkuntza baino gehiagotan topa daiteke\\n\\n11\\n00:00:31,431 --> 00:00:33,733\\nhorietako batzuetan milaka artikulu daude\\n\\n12\\n00:00:33,733 --> 00:00:37,047\\neta beste batzuetan milioika\\n\\n13\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nartikuluek informazio sakona dute, irudiak eta loturak\\n\\n14\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nhoriek gaiaren inguruko ezagutza handitzen laguntzen dizu\\n\\n15\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nbaina zer gertatuko litzateke artikulu bakoitzak bideo bat izango balu?\\n\\n16\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nZer Egiptoko piraideen barruan sartu ahal izango bazina?\\n\\n17\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nedo ibilbide bat herri historikoen zentrutik?\\n\\n18\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n19\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nOrain bideok daude Wikipedian\\n\\n20\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\neta zeuk ere bideo bat egin dezakezu\\n\\n21\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsaia zaitez artikulu bateko puntu garrantzitsuenak hartzen gaiari buruzko ideiak izateko\\n\\n22\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n23\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\neta planea ezazu zer nahiko zenukeen grabatzea\\n\\n24\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ngogora ezazu Wikipedia entziklopedia bat dela\\n\\n25\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\neta edukia hezitzailea eta informatiboa izan behar dela\\n\\n26\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nbideo bat egiten zaudenean garrantzitsuena\\n\\n27\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsaia zaitez kamara zuzen mantentzen edo tripode bat erabiltzen\\n\\n28\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nzuk ez baduzu bideoa egin nahi\\n\\n29\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nfitxategi ugari daude Interneten,\\n\\n30\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n31\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\neta baliteke egin nahi duzun bideorako egokiak izatea\\n\\n32\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\njust remember no matter what you shoot or what you find\\n\\n33\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nall video on Wikipeida must be free to use and share\\n\\n34\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nusually this means its licensed to the Creative Commons\\n\\n35\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nnow that you have selected an article\\n\\n36\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand a video you would like to add to it\\n\\n37\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nhere is the simplest way to bring the two together\\n\\n38\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nfirst we recommend using Mozilla Firefox\\n\\n39\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nFirefox is a free open source browser\\n\\n40\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthat makes viewing and adding video to Wikipedia simple\\n\\n41\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nafter that, download the Firefogg addon for Mozilla Firefox\\n\\n42\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthis automatically converts videos to the free and open Theora format\\n\\n43\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthat Wikipedia uses when you upload them\\n\\n44\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nalternative Windows and Mac users can download Miro converter\\n\\n45\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\na simple software that lets you take video and converter it to any format\\n\\n46\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nincluding open video for Wikipedia\\n\\n47\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nunlike editing text uploading video requires that you login to Wikipedia\\n\\n48\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsign in or create an account if your a new user.\\n\\n49\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nwhen you upload video for the first time\\n\\n50\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nyou will have to turn on the video uploading feature\\n\\n51\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nto do this click on your user name at the top of the page\\n\\n52\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthen click on my preference\\n\\n53\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nclick on gadgets\\n\\n54\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthen scroll down to user interface gadgets\\n\\n55\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand clip the box that says add mwEmbed support\\n\\n56\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nscroll down the the save button and click save\\n\\n57\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nnow your ready to upload video\\n\\n58\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nnow that you have signed in go to the article you would like to modify\\n\\n59\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand click the edit button.\\n\\n60\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nyou will see add media wizard button in the editing tab\\n\\n61\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nclicking this link will pull up a menu\\n\\n62\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nif your uploading your own file select it and hit upload\\n\\n63\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nyou can also select a video from the commons\\n\\n64\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nor a media file you have previous uploaded but have not yet added to an article\\n\\n65\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nto put the video in to the article just click on insert into page\\n\\n66\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nat the bottom right hand corner of the window\\n\\n67\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nto learn more about how to add video to Wikipedia\\n\\n68\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ntype in wp:wikiproject lights camera wiki',\n", + " 'bytes': 5426,\n", + " 'sha1': 'jlqn4jkd0tlpfm2kdy8lq8tbagautvq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 297631918,\n", + " 'timestamp': '2018-04-19T15:51:07Z',\n", + " 'user': {'id': 4172499, 'text': 'Iñaki LL'},\n", + " 'page': {'id': 14666787,\n", + " 'title': 'Wikipedia video tutorial-1-Editing-en.ogv.eu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,36 --> 00:00:07,04\\nKaixo, Theresa dut izena. Pozten nau zu ezagutzeak hemen Wikipedian. Dakizuenez, Wikipedia entziklopedia\\n\\n2\\n00:00:07,04 --> 00:00:10,68\\naskea da, bere erabiltzaileak idatzita, zu bezalako jendea. \\n\\n3\\n00:00:10,68 --> 00:00:17,815\\nGaur egun, 250 milioi Wikipedia-bisitari baino gehiago, 10 milioi artikulu baino gehiago egin izan dituzte,\\n\\n4\\n00:00:17,892 --> 00:00:22,48\\n500 mila editore baino gehiagok, 250 hizkuntzatan baino gehiago.\\n\\n5\\n00:00:22,48 --> 00:00:26,96\\nOso erreza da zure jakintza elkarbanatzea mundu osoko Wikipedia erabiltzaileekin.\\n\\n6\\n00:00:26,96 --> 00:00:33,28\\nOraintxe bertan, Interneteko entziklopediarik handiena eta onena hobetzen lagun dezakezu.\\n\\n7\\n00:00:33,28 --> 00:00:35,702\\nUtzidazu erakusten zein erraza den.\\n\\n8\\n00:00:36,44 --> 00:00:41,748\\nInterneten zerbait bilatzean, lehenengo emaitzetariko bat Wikipedia izan ohi da.\\n\\n9\\n00:00:42,64 --> 00:00:46,031\\nOrduan, agian hasi nahiko duzu Wikipedian bertan bilatzea.\\n\\n10\\n00:00:46,538 --> 00:00:47,862\\nBegiratu honi.\\n\\n11\\n00:00:48,415 --> 00:00:51,752\\nIkus dezakezunez, artikulu gehienak nahiko ulergarriak dira.\\n\\n12\\n00:00:51,752 --> 00:00:56,72\\nBaina topa zaitezke oso artikulu motz batekin edo hobekuntzak behar dituen beste batekin.\\n\\n13\\n00:00:56,72 --> 00:00:59,64\\nEta ez zara zeuk aproposena hori egiteko?\\n\\n14\\n00:00:59,64 --> 00:01:05,32\\nWikipediak zu nahi zaitu idazten eta hobetzen laguntzeko asmoz\\n\\n15\\n00:01:05,371 --> 00:01:10,16\\n%90 baino gehiagotan, ez duzu egundoko zientzilaria izan behar Wikipedian laguntzeko.\\n\\n16\\n00:01:10,16 --> 00:01:12,24\\nEgin behar duzun bakarra besteekin partekatzeko nahia izatea da.\\n\\n17\\n00:01:12,24 --> 00:01:16,04\\nEta hori egiteko, bakarrik 3 pauso jarraitu behar dituzu.\\n\\n18\\n00:01:16,04 --> 00:01:18,8\\nLehena: sakatu \"Aldatu\" botoia. \\n\\n19\\n00:01:18,8 --> 00:01:21,48\\nBigarrena: idatzi testua.\\n\\n20\\n00:01:21,48 --> 00:01:27\\nEta azkenik, hirugarrena: amaitu laburpena eta sakatu \"Orrialdea gorde\"-n.\\n\\n21\\n00:01:27 --> 00:01:28,76\\nEz da hain zaila, ezta?\\n\\n22\\n00:01:28,76 --> 00:01:32,04\\nEta ez duzu sartu behar edo kontu bat izan behar hau egiteko.\\n\\n23\\n00:01:32,04 --> 00:01:33,8\\nBerriro esango dut.\\n\\n24\\n00:01:33,8 --> 00:01:38,96\\nLehenengo pausua \"Aldatu\" botoia zen. Hemen dago, goiko partean.\\n\\n25\\n00:01:38,96 --> 00:01:46,8\\nSakatu botoia eta hona bidaliko zaitu. Hemen aldaketak egingo dituzu.\\n\\n26\\n00:01:46,8 --> 00:01:52,92\\nAldaketak egiteko, jarri kurtsorea aldatu nahi duzun testuan eta idatzi edo ezabatu zerbait,\\n\\n27\\n00:01:52,92 --> 00:01:55,778\\neta orduan bakarrik aldatu behar duzu beste dokumentuan egingo bazenu bezala.\\n\\n28\\n00:02:03,24 --> 00:02:08,6\\nEz kezkatu, zeozer txarto egiten baduzu oso erreza da aurreko bertsiora bueltatzea.\\n\\n29\\n00:02:08,6 --> 00:02:10,561\\nAzkenik, hirugarren pausua:\\n\\n30\\n00:02:10,561 --> 00:02:16,006\\nZonalde honetan idazten baduzu, zure aldaketen berri eman diezaiekezu beste irakurleei.\\n\\n31\\n00:02:18,96 --> 00:02:25,68\\nEta gero, sakatu \"Orrialdea gorde\" botoia zure aldaketa guztiak gordetzeko.\\n\\n32\\n00:02:25,68 --> 00:02:32,44\\nEta artikulua berragertzean, zure aldaketak izango dira online eta ikusgarri berehala.\\n\\n33\\n00:02:32,44 --> 00:02:36,48\\n3 pausu hauek Wikipedia editatzeko behar duzun guztia dira.\\n\\n34\\n00:02:36,48 --> 00:02:39,12\\nBadakit zer ari zaren pentsatzen. Pentsatzen ari zara:\\n\\n35\\n00:02:39,12 --> 00:02:41,8\\n\"Orain Historia alda dezaket!\"\\n\\n36\\n00:02:41,8 --> 00:02:44,28\\nBa, laguna, ezin duzu.\\n\\n37\\n00:02:44,28 --> 00:02:48,64\\nIkus dezakezunez beste tutorial batean, Wikipediak portaera hauek\\n\\n38\\n00:02:48,64 --> 00:02:51,84\\ngalarazteko mekanismo mordo ditu\\n\\n39\\n00:02:51,84 --> 00:02:55,24\\nInformazio okerra ezabatuta izango da minutu edo segundu gutxitan.\\n\\n40\\n00:02:55,24 --> 00:03:00,058\\nEta horrek egiten du Wikipedia hain informazio-iturri fidagarria eta ulergarria izatea.\\n\\n41\\n00:03:00,135 --> 00:03:05,438\\nGogoratu, zu bezalako pertsonak lagundu dute entziklopedia hau sortzen.\\n\\n42\\n00:03:05,457 --> 00:03:09,142\\nEta zu bezalako pertsonak behar ditugu gero eta hobeto egiteko.\\n\\n42.5\\n00:03:09,188 --> 00:03:14,395\\nOrain zuri tokatzen zaizu. Agur, eta sorte ona izan.',\n", + " 'bytes': 4061,\n", + " 'sha1': '1xi0bjzn282ulkuls0jxer8xix23p29',\n", + " 'parent_id': 291029569,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 686247605,\n", + " 'timestamp': '2022-09-02T05:09:20Z',\n", + " 'user': {'id': 22648, 'text': 'Koavf'},\n", + " 'page': {'id': 14745015,\n", + " 'title': 'FelixTheCat-1919-FelineFollies silent.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"If you're going to do the earlier ones, may as well do these as well\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\n\\'\\'Paramount Magazine\\'\\' \"FELINE FOLLIES\" by Pat Sullivan<br /> FAMOUS PLAYERS LASKY CORPORATION\\n\\n2\\n00:00:06,000 --> 00:00:21,000\\nPussyville has its \"Follies\" as well as Broadway. Its fads, foibles, and frivolities are as brilliant and as mischevious as the Great White Way brand. And the feline version has a plot, categorically speaking. \\'\\'Paramount Magazine\\'\\'\\n\\n3\\n00:00:25,000 --> 00:00:25,900\\nMEOW!!\\n\\n4\\n00:00:27,000 --> 00:00:27,900\\nMEOW!!\\n\\n5\\n00:00:31,000 --> 00:00:41,000\\nMaster Tom, who scalps unwary mice and breaks feline hearts with equal assurance and dispatch meets Miss Kitty White and capitulates at sight. \\'\\'Paramount Magazine\\'\\'\\n\\n6\\n00:00:59,000 --> 00:01:03,000\\nMaster Tom performs his \"toilette\" with all the care and skill of a debutante. \\'\\'Paramount Magazine\\'\\'\\n\\n7\\n00:01:19,000 --> 00:01:21,000\\nAnd while the cat\\'s away .......! \\'\\'Paramount Magazine\\'\\'\\n\\n8\\n00:01:35,000 --> 00:01:43,000\\nThey select as a rendezvous that hallowed spot of feline lovers: the Back Fence ... in a thickly populated neighborhood, of course. \\'\\'Paramount Magazine\\'\\'\\n\\n9\\n00:01:47,000 --> 00:01:52,900\\nI\\'VE ONLY GOT NINE LIVES TO LIVE AN\\' I\\'LL LIVE THEM ALL FOR YOU!\\n\\n10\\n00:01:53,000 --> 00:01:58,000\\nCAN THAT NOISE!! BEAT IT!! GIT OUTER THAT! VAMOOSE!! SCATT!!\\n\\n11\\n00:02:00,000 --> 00:02:04,000\\nTOMORROW NIGHT AT THE ASH CAN!\\n\\n12\\n00:02:08,000 --> 00:02:10,000\\nThe trysting place. \\'\\'Paramount Magazine\\'\\'\\n\\n13\\n00:02:11,000 --> 00:02:11,900\\nSHE\\'S LATE!!\\n\\n14\\n00:02:17,000 --> 00:02:18,900\\nSHOOT SOMETHING LIVELY!!\\n\\n15\\n00:03:41,000 --> 00:03:41,900\\nBEAT IT!!\\n\\n16\\n00:03:48,500 --> 00:03:48,900\\n!!\\n\\n17\\n00:03:51,000 --> 00:03:51,500\\n?\\n\\n18\\n00:03:57,000 --> 00:03:59,500\\nMEOW! SP-T-T MEOW!! \\'LO MUM! ME-OW!! \\'LO\\' MA!\\n\\n19\\n00:04:00,000 --> 00:04:00,900\\n!!!\\n\\n20\\n00:04:08,000 --> 00:04:08,900\\n!!',\n", + " 'bytes': 1797,\n", + " 'sha1': 'gimzoonxby23fwfdet5oofni6c1tiut',\n", + " 'parent_id': 642665759,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 52753773,\n", + " 'timestamp': '2011-04-05T09:54:30Z',\n", + " 'user': {'id': 21834, 'text': 'Aubrey'},\n", + " 'page': {'id': 14796882,\n", + " 'title': 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:08,860 --> 00:00:11,674 Wikisource è una biblioteca digitale online 2 00:00:11,698 --> 00:00:14,610 che raccoglie testi pubblicati in qualsiasi lingua ...'\",\n", + " 'text': '1\\n00:00:08,860 --> 00:00:11,674\\nWikisource è una biblioteca digitale online \\n\\n2\\n00:00:11,698 --> 00:00:14,610\\nche raccoglie testi pubblicati in qualsiasi lingua \\n\\n3\\n00:00:14,631 --> 00:00:18,947\\npurché nel pubblico dominio oppure rilasciati con una licenza libera. \\n\\n4\\n00:00:19,057 --> 00:00:21,556\\nCome ogni progetto della Wikimedia Foundation, \\n\\n5\\n00:00:21,607 --> 00:00:24,997\\nWikisource è aperto a tutti e chiunque può collaborare, \\n\\n6\\n00:00:25,039 --> 00:00:27,126\\nanche in forma anonima.\\n\\n7\\n00:00:27,918 --> 00:00:31,750\\nIn Wikisource i testi sono trascritti da una fonte pubblicata \\n\\n8\\n00:00:31,764 --> 00:00:34,695\\ne formattati per essere letti comodamente.\\n\\n9\\n00:00:34,815 --> 00:00:38,255\\nRomanzi e racconti, saggi e manuali, \\n\\n10\\n00:00:38,299 --> 00:00:43,289\\nlibri di preghiere e manifesti politici, canti popolari e poesie, \\n\\n11\\n00:00:43,336 --> 00:00:47,899\\nfavole e filastrocche, documenti legali e opere scientifiche, \\n\\n12\\n00:00:47,959 --> 00:00:50,565\\ntesi e dissertazioni purché già discusse \\n\\n13\\n00:00:50,596 --> 00:00:53,132\\npresso un\\'istituzione accademica riconosciuta.\\n\\n14\\n00:00:53,286 --> 00:00:57,167\\nCome Wikipedia, il progetto è suddiviso in base alle diverse lingue: \\n\\n15\\n00:00:57,252 --> 00:01:00,502\\nin Wikisource in inglese vanno inseriti i testi in inglese, \\n\\n16\\n00:01:00,563 --> 00:01:04,436\\nquelli in francese nella versione francese, e così via.\\n\\n17\\n00:01:04,564 --> 00:01:06,930\\nSono raccolti testi in tutte le lingue, \\n\\n18\\n00:01:06,995 --> 00:01:09,373\\nanche nelle meno diffuse e nei dialetti, \\n\\n19\\n00:01:09,425 --> 00:01:12,455\\npurché già editi e liberamente trascrivibili.\\n\\n20\\n00:01:12,546 --> 00:01:15,058\\nQueste condizioni valgono anche per le traduzioni, \\n\\n21\\n00:01:15,094 --> 00:01:18,599\\nche sono opere derivate: non possono dunque essere inseriti \\n\\n22\\n00:01:18,649 --> 00:01:22,314\\ntesti tradotti non pubblicati e sia il testo che la traduzione \\n\\n23\\n00:01:22,340 --> 00:01:26,855\\ndevono essere di pubblico dominio o rilasciati con una licenza libera.\\n\\n24\\n00:01:27,653 --> 00:01:30,714\\nOgni testo in Wikisource deve poter essere copiato \\n\\n25\\n00:01:30,792 --> 00:01:33,903\\ne utilizzato come base per creare opere derivate, \\n\\n26\\n00:01:33,947 --> 00:01:35,947\\nanche per scopi commerciali.\\n\\n27\\n00:01:36,049 --> 00:01:38,521\\nDeve dunque essere stato distribuito con una licenza \\n\\n28\\n00:01:38,571 --> 00:01:41,952\\nche concede queste libertà oppure devono essere decaduti \\n\\n29\\n00:01:42,020 --> 00:01:45,091\\ni diritti d’autore sull’opera, sia negli Stati Uniti, \\n\\n30\\n00:01:45,121 --> 00:01:47,295\\ndove si trovano i server di Wikisource, \\n\\n31\\n00:01:47,344 --> 00:01:50,206\\nche nel paese di pubblicazione del testo.\\n\\n32\\n00:01:51,271 --> 00:01:54,115\\nAllo stato attuale, in base alla legge americana, \\n\\n33\\n00:01:54,196 --> 00:01:56,372\\nsono sicuramente di pubblico dominio \\n\\n34\\n00:01:56,443 --> 00:01:59,539\\nsolo le opere pubblicate prima del 1923. \\n\\n35\\n00:01:59,745 --> 00:02:03,243\\nPer lo stato italiano invece l’opera è coperta da copyright \\n\\n36\\n00:02:03,271 --> 00:02:06,128\\nfino a 70 anni dopo la morte del suo creatore.\\n\\n37\\n00:02:06,221 --> 00:02:09,314\\nUn testo potrebbe dunque essere già di pubblico dominio in Italia \\n\\n38\\n00:02:09,348 --> 00:02:12,666\\nma non ancora negli Stati Uniti e viceversa.\\n\\n39\\n00:02:12,772 --> 00:02:16,358\\nUn testo contemporaneo invece, può essere inserito in Wikisource \\n\\n40\\n00:02:16,424 --> 00:02:19,124\\nsolo se l’autore ha autorizzato esplicitamente \\n\\n41\\n00:02:19,166 --> 00:02:22,406\\nqualsiasi uso dell’opera, anche commerciale.\\n\\n42\\n00:02:22,576 --> 00:02:25,000\\nL\\'autore può comunque esigere \\n\\n43\\n00:02:25,048 --> 00:02:27,961\\nla concessione delle stesse libertà sulle opere derivate. \\n\\n44\\n00:02:28,023 --> 00:02:31,482\\nIn Wikisource, chiunque dovrebbe poter revisionare il testo \\n\\n45\\n00:02:31,549 --> 00:02:33,549\\ned è per questo che è ormai prassi \\n\\n46\\n00:02:33,622 --> 00:02:36,425\\nl\\'utilizzo della scansione completa del libro originale.\\n\\n47\\n00:02:36,496 --> 00:02:40,065\\nNel caso di testi già trascritti altrove è necessario affidarsi \\n\\n48\\n00:02:40,148 --> 00:02:44,873\\nsolo a fonti attendibili e inserire precisi riferimenti bibliografici.\\n\\n49\\n00:02:45,478 --> 00:02:48,645\\nI Wikisourciani sono amanuensi dell\\'era digitale \\n\\n50\\n00:02:48,662 --> 00:02:50,839\\nche per passione o altruismo\\n\\n51\\n00:02:50,856 --> 00:02:53,207\\ntrascrivono i testi liberamente disponibili. \\n\\n52\\n00:02:53,272 --> 00:02:55,910\\nOgni testo deve essere riportato fedelmente, \\n\\n53\\n00:02:55,942 --> 00:02:58,574\\ntenendo conto delle prassi di scrittura dell\\'epoca \\n\\n54\\n00:02:58,630 --> 00:03:02,413\\ne delle convenzioni di trascrizione stabilite dalla comunità.\\n\\n55\\n00:03:03,187 --> 00:03:05,604\\nIl percorso di trascrizione comincia \\n\\n56\\n00:03:05,622 --> 00:03:07,622\\ncon la creazione di una pagina \"indice\", \\n\\n57\\n00:03:07,669 --> 00:03:09,900\\nche richiama il libro scansionato da Commons, \\n\\n58\\n00:03:09,969 --> 00:03:14,026\\nil progetto fratello di Wikisource che raccoglie file multimediali liberi.\\n\\n59\\n00:03:14,311 --> 00:03:17,069\\nAutomaticamente vengono generati i collegamenti \\n\\n60\\n00:03:17,138 --> 00:03:19,234\\nad ogni singola pagina dell\\'opera.\\n\\n61\\n00:03:19,339 --> 00:03:22,100\\nCliccando su un collegamento è possibile visualizzare \\n\\n62\\n00:03:22,163 --> 00:03:24,260\\nla scansione del testo e a lato \\n\\n63\\n00:03:24,305 --> 00:03:27,124\\nil riquadro in cui viene effettuata la trascrizione.\\n\\n64\\n00:03:27,235 --> 00:03:30,104\\nSpesso non è necessario trascrivere da zero il testo, \\n\\n65\\n00:03:30,147 --> 00:03:33,186\\nperché la pagina scannerizzata viene elaborata da un software\\n\\n66\\n00:03:33,217 --> 00:03:35,725\\nin grado di riconoscere i caratteri.\\n\\n67\\n00:03:35,850 --> 00:03:38,507\\nL\\'aspetto grafico delle pagine è uniformato \\n\\n68\\n00:03:38,570 --> 00:03:41,442\\ngrazie all\\'uso di modelli che riportano in modo automatico \\n\\n69\\n00:03:41,483 --> 00:03:45,252\\nformattazioni o parti ripetitive delle pagine o dei testi.\\n\\n70\\n00:03:45,514 --> 00:03:48,625\\nUna volta completata la trascrizione di tutte le pagine, \\n\\n71\\n00:03:48,654 --> 00:03:51,859\\nil testo viene assemblato in base alla sua struttura logica \\n\\n72\\n00:03:51,934 --> 00:03:54,145\\n(ad esempio nei suoi capitoli).\\n\\n73\\n00:03:54,252 --> 00:03:57,051\\nIl testo è così formattato in modo da essere conforme \\n\\n74\\n00:03:57,082 --> 00:03:59,340\\nalla strutturazione voluta dall’autore, \\n\\n75\\n00:03:59,378 --> 00:04:02,782\\nma anche adattato per la lettura a schermo e la stampa.\\n\\n76\\n00:04:03,619 --> 00:04:06,646\\nCome Wikipedia, Wikisource è gestito da un software \\n\\n77\\n00:04:06,707 --> 00:04:09,448\\nche consente di creare collegamenti ipertestuali, \\n\\n78\\n00:04:09,479 --> 00:04:12,829\\nconnettendo fra loro i vari libri e autori della biblioteca.\\n\\n79\\n00:04:12,882 --> 00:04:15,725\\nAd esempio, una citazione (o un brano di un saggio) \\n\\n80\\n00:04:15,759 --> 00:04:18,712\\npuò rimandare all\\'autore o al testo che cita.\\n\\n81\\n00:04:19,493 --> 00:04:22,952\\nIn fondo ad ogni testo si trovano i collegamenti alle categorie \\n\\n82\\n00:04:23,000 --> 00:04:25,461\\nche aiutano ad organizzare opere e autori \\n\\n83\\n00:04:25,475 --> 00:04:27,951\\nper tipologia, provenienza, eccetera. \\n\\n84\\n00:04:28,056 --> 00:04:30,511\\nInoltre ogni testo può essere collegato \\n\\n85\\n00:04:30,549 --> 00:04:32,742\\nalle sue traduzioni in altre Wikisource, \\n\\n86\\n00:04:32,798 --> 00:04:34,798\\nalla sua pagina su Wikipedia \\n\\n87\\n00:04:34,819 --> 00:04:37,186\\no a qualunque altro progetto Wikimedia.\\n\\n88\\n00:04:37,469 --> 00:04:40,687\\nOgni autore le cui opere sono pubblicate su Wikisource \\n\\n89\\n00:04:40,749 --> 00:04:44,586\\nha una pagina dedicata, che contiene le sue generalità minime, \\n\\n90\\n00:04:44,640 --> 00:04:47,616\\nla lista dei testi disponibili per la consultazione \\n\\n91\\n00:04:47,640 --> 00:04:49,640\\ned eventualmente altre informazioni, \\n\\n92\\n00:04:49,696 --> 00:04:53,502\\ncome le opere in cui l\\'autore è citato o gli autori correlati.\\n\\n93\\n00:04:53,780 --> 00:04:57,355\\nAnche qui sono presenti i collegamenti verso le pagine sull\\'autore \\n\\n94\\n00:04:57,410 --> 00:05:02,153\\ndisponibili in altri progetti Wikimedia e in altre edizioni linguistiche.\\n\\n95\\n00:05:02,333 --> 00:05:06,430\\nVanno annoverati infine i portali, che offrono percorsi di lettura \\n\\n96\\n00:05:06,470 --> 00:05:09,616\\ntra i testi della biblioteca su uno specifico argomento.\\n\\n97\\n00:05:11,060 --> 00:05:14,525\\nIn Wikisource, come in Wikipedia, ci sono gli amministratori, \\n\\n98\\n00:05:14,602 --> 00:05:17,541\\novvero utenti esperti che hanno la fiducia della comunità \\n\\n99\\n00:05:17,567 --> 00:05:19,567\\ne a cui sono stati attivati \\n\\n100\\n00:05:19,622 --> 00:05:22,126\\ndegli strumenti di gestione del software più avanzati.\\n\\n101\\n00:05:22,168 --> 00:05:25,461\\nLa loro esperienza li rende di fatto dei veri e propri bibliotecari \\n\\n102\\n00:05:25,500 --> 00:05:27,799\\nche fanno da tutor agli altri utenti.\\n\\n103\\n00:05:28,693 --> 00:05:31,682\\nIl punto d\\'incontro dei wikisourciani è il Bar, \\n\\n104\\n00:05:31,693 --> 00:05:34,385\\ndove si possono porre domande agli utenti più esperti \\n\\n105\\n00:05:34,413 --> 00:05:36,694\\ne avviare nuove discussioni.\\n\\n106\\n00:05:36,784 --> 00:05:39,678\\nPer gestire al meglio ambiti specifici esistono \\n\\n107\\n00:05:39,748 --> 00:05:42,992\\ndelle pagine dedicate: i progetti tematici. \\n\\n108\\n00:05:43,046 --> 00:05:45,046\\nNella versione italiana di Wikisource \\n\\n109\\n00:05:45,119 --> 00:05:47,784\\nrappresentano il cuore dell\\'attività e sono il ritrovo \\n\\n110\\n00:05:47,822 --> 00:05:51,135\\nper coloro che sono interessati ad un particolare argomento.\\n\\n111\\n00:05:51,434 --> 00:05:54,070\\nPer indicare lo stato di avanzamento dei lavori \\n\\n112\\n00:05:54,102 --> 00:05:56,402\\nsu uno specifico testo o una sua parte \\n\\n113\\n00:05:56,437 --> 00:05:59,859\\nsi usa un sistema suddiviso in 5 tappe fondamentali. \\n\\n114\\n00:06:00,137 --> 00:06:02,347\\nQuando il testo è completo in ogni sua parte, \\n\\n115\\n00:06:02,385 --> 00:06:05,805\\nformattato correttamente e riletto da due o più utenti \\n\\n116\\n00:06:05,874 --> 00:06:08,890\\nusando la fonte cartacea, riceve la stelletta, \\n\\n117\\n00:06:08,944 --> 00:06:12,526\\nche ne attribuisce lo status di \"Edizioni Wikisource\".\\n\\n118\\n00:06:12,731 --> 00:06:15,311\\nE per concentrare gli sforzi di più utenti, \\n\\n119\\n00:06:15,346 --> 00:06:17,850\\nogni mese vengono scelti uno o più testi \\n\\n120\\n00:06:17,892 --> 00:06:20,521\\nda rileggere e correggere insieme.\\n\\n121\\n00:06:21,242 --> 00:06:23,416\\nCon Wikisource puoi dunque dimostrare \\n\\n122\\n00:06:23,455 --> 00:06:25,843\\nil tuo amore per i libri, salvandoli dall\\'oblio \\n\\n123\\n00:06:25,861 --> 00:06:28,776\\ne rendendoli disponibili per chiunque, nella rete. \\n\\n124\\n00:06:29,140 --> 00:06:31,140\\nPartecipa a Wikisource \\n\\n125\\n00:06:31,161 --> 00:06:34,216\\ne costruisci anche tu una biblioteca libera.',\n", + " 'bytes': 10631,\n", + " 'sha1': 'ohltwxjtvsjo5kx8d58xrs32qh2kovv',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 52753865,\n", + " 'timestamp': '2011-04-05T09:56:43Z',\n", + " 'user': {'id': 21834, 'text': 'Aubrey'},\n", + " 'page': {'id': 14796905,\n", + " 'title': 'Wikipedia ridotto.ogv.eo.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:07,686 --> 00:00:11,934 Vikipedio naskiĝas dum 2001 kaj evoluis laŭ la ideo krei 2 00:00:11,973 --> 00:00:15,443 la plej grandan enciklopedion kun malfe...'\",\n", + " 'text': '1\\n00:00:07,686 --> 00:00:11,934\\nVikipedio naskiĝas dum 2001 kaj evoluis laŭ la ideo krei\\n\\n2\\n00:00:11,973 --> 00:00:15,443\\nla plej grandan enciklopedion kun malfermita enhavo en la tuta historio.\\n\\n3\\n00:00:15,710 --> 00:00:19,598\\nVikipedio estas redaktita danke al kontribuo de multaj volontuloj.\\n\\n4\\n00:00:19,751 --> 00:00:22,465\\nĈiu povas kunlabori. Ni vidu kiel.\\n\\n5\\n00:00:23,854 --> 00:00:27,300\\nPreskaŭ ĉiu paĝo de Vikipedio montras supre\\n\\n6\\n00:00:27,335 --> 00:00:30,492\\nlangeton kun la skribaĵo \"redakti\", kiu permesas fari\\n\\n7\\n00:00:30,536 --> 00:00:34,428\\nprecize tiun, kiun ĝi diras: modifi la paĝon, kiun oni legas.\\n\\n8\\n00:00:35,043 --> 00:00:39,465\\nFakte, Vikipedio ne havas redakcion: iu ajn uzanto\\n\\n9\\n00:00:39,540 --> 00:00:42,990\\npovas aliri la enhavojn de ĉiu vikipedia paĝo\\n\\n10\\n00:00:43,019 --> 00:00:45,932\\nkaj modifi ilin, sen devigo pri aliĝo.\\n\\n11\\n00:00:46,151 --> 00:00:49,719\\nLa formatado de la teksto sekvas apartajn regulojn,\\n\\n12\\n00:00:49,728 --> 00:00:53,638\\nsed ĝi estas sufiĉe simpla lingvaĵo, facile lernebla.\\n\\n13\\n00:00:53,989 --> 00:00:57,078\\nKonservante la ŝanĝojn oni konsentas cedi\\n\\n14\\n00:00:57,112 --> 00:00:59,573\\npropran kontribuon kun libera permeso.\\n\\n15\\n00:00:59,652 --> 00:01:03,546\\nIu ajn povos konsulti, uzi kaj readapti la tekston,\\n\\n16\\n00:01:03,561 --> 00:01:07,693\\nankaŭ por komercaj celoj, sub kondiĉo citi la aŭtorojn\\n\\n17\\n00:01:07,721 --> 00:01:11,200\\nkaj reapliki la saman permeson al ĉiu derivita verko.\\n\\n18\\n00:01:11,561 --> 00:01:16,019\\nKrome gravas memorigi ke ĉiu uzanto, ankaŭ ne aliĝinta,\\n\\n19\\n00:01:16,073 --> 00:01:19,998\\nĉiam restas persone respondeca pri propraj modifoj.\\n\\n20\\n00:01:20,542 --> 00:01:24,743\\nJe ĉi punkto la modifo tuj estas videbla de ĉiuj!\\n\\n21\\n00:01:25,715 --> 00:01:29,795\\nVikipedio ne estas nedistingebla kolekto de informoj,\\n\\n22\\n00:01:29,820 --> 00:01:34,142\\nsed ĝi estas enciklopedio, sistema kolekto pri la homa scio.\\n\\n23\\n00:01:34,361 --> 00:01:36,797\\nEn Vikipedio fakte oni ne devas enmeti\\n\\n24\\n00:01:36,816 --> 00:01:40,559\\nvortarajn difinojn kaj eĉ ne originaj esploradoj.\\n\\n25\\n00:01:41,748 --> 00:01:44,853\\nĈiu paĝo havas sian kronologion, kiu enlistigas\\n\\n26\\n00:01:44,878 --> 00:01:48,311\\nĉiu versio realigita ekde ĝia kreo.\\n\\n27\\n00:01:48,562 --> 00:01:51,551\\nKrom la horo, la dato kaj la celo de la modifo\\n\\n28\\n00:01:51,566 --> 00:01:54,416\\nla programo ankaŭ registras la modifinton.\\n\\n29\\n00:01:54,638 --> 00:01:57,534\\nSe la uzanto estas anonima, oni registras\\n\\n30\\n00:01:57,541 --> 00:02:00,116\\nla IP-adreson el kie ĝi estis farita.\\n\\n31\\n00:02:00,679 --> 00:02:03,639\\nLa kronologio permesas kompari\\n\\n32\\n00:02:03,679 --> 00:02:06,777\\ndu malsimilajn versiojn por rimarkigi la diferencojn.\\n\\n33\\n00:02:07,467 --> 00:02:11,381\\nĈe Vikipedio nenio perdiĝas, sed por la unuaj provoj\\n\\n34\\n00:02:11,397 --> 00:02:14,586\\nestas pli bone uzi la provejo, nomita ankaŭ \"sandbox\",\\n\\n35\\n00:02:14,610 --> 00:02:16,755\\nkiu povas esti modifita laŭplaĉe.\\n\\n36\\n00:02:16,803 --> 00:02:20,736\\nPor labori pli trankvile, aliĝinta uzanto ankaŭ povas krei\\n\\n37\\n00:02:20,801 --> 00:02:24,334\\npropran provejon en sia uzantopaĝo.\\n\\n38\\n00:02:24,924 --> 00:02:28,020\\nPor generi novan paĝon, sufiĉas krei ligon,\\n\\n39\\n00:02:28,109 --> 00:02:30,844\\naŭ klaki sur \"ruĝa ligo\" jam ekzistanta.\\n\\n40\\n00:02:30,929 --> 00:02:33,148\\nĈiokaze bona kutimo estas antaŭe kontroli\\n\\n41\\n00:02:33,209 --> 00:02:35,461\\nĉu la paĝo jam ekzistu.\\n\\n42\\n00:02:36,025 --> 00:02:38,838\\nPor certigi la bonan funkciadon de la projekto,\\n\\n43\\n00:02:38,841 --> 00:02:42,074\\nla kolektivo prilaboris \"gvidliniojn\", kiujn ĉiu uzanto\\n\\n44\\n00:02:42,114 --> 00:02:44,811\\nestas petata respekti kaj igi respektataj.\\n\\n45\\n00:02:45,253 --> 00:02:47,615\\nUnu el la ĉefaj kanonoj de Vikipedio\\n\\n46\\n00:02:47,687 --> 00:02:50,075\\nestas la organizado de la enhavoj laŭ modeloj.\\n\\n47\\n00:02:50,147 --> 00:02:53,071\\nNi vidu la ĝeneralan strukturon de artikolo.\\n\\n48\\n00:02:53,977 --> 00:02:58,354\\nLa komenca sekcio devas mallonge kaj simplvorte resumi\\n\\n49\\n00:02:58,370 --> 00:03:00,824\\nla ĉefajn aferojn, kiujn troviĝas en la artikolo.\\n\\n50\\n00:03:00,989 --> 00:03:03,828\\nLa paĝo prezentiĝas laŭ sekcioj (aŭ alineoj),\\n\\n51\\n00:03:03,879 --> 00:03:06,856\\nkiuj aŭtomate estas resumitaj en indekso.\\n\\n52\\n00:03:07,138 --> 00:03:10,739\\nĈe Vikipedio oni povas enmeti bildojn, fotojn\\n\\n53\\n00:03:10,759 --> 00:03:14,142\\nkaj ankaŭ filmetojn, sed estas nepre necesita certiĝi\\n\\n54\\n00:03:14,188 --> 00:03:17,207\\nke la alŝutita materialo estas libere uzebla,\\n\\n55\\n00:03:17,221 --> 00:03:19,994\\nnome, donita per libera permeso!\\n\\n56\\n00:03:20,434 --> 00:03:23,597\\nĈiu informo enhavita en la artikoloj devas esti\\n\\n57\\n00:03:23,604 --> 00:03:26,765\\nfidinda kaj kontrolebla, pro tio\\n\\n58\\n00:03:26,805 --> 00:03:29,158\\nnecesas ĉiam citi la fontojn el kie ĝi estis eltirita,\\n\\n59\\n00:03:29,167 --> 00:03:32,283\\nfontoj, kiuj devas esti vaste agnoskitaj kaj akceptitaj.\\n\\n60\\n00:03:32,497 --> 00:03:35,339\\nĈe la fino de ĉiu artikolo, post la ĉefa teksto,\\n\\n61\\n00:03:35,353 --> 00:03:37,648\\nĉeestas diversaj aldonaj paragrafoj\\n\\n62\\n00:03:37,665 --> 00:03:40,095\\nkiuj direktas al pluaj informoj.\\n\\n63\\n00:03:40,302 --> 00:03:43,422\\nPor kelkaj temaj projektoj, ekzistas konvencioj\\n\\n64\\n00:03:43,405 --> 00:03:47,109\\nkaj gvidlinioj specifaj, kiuj helpas la redaktadon.\\n\\n65\\n00:03:48,500 --> 00:03:50,930\\nNeevitebla principo de Vikipedio\\n\\n66\\n00:03:50,964 --> 00:03:53,335\\nestas la uzo de neŭtrala vidpunkto.\\n\\n67\\n00:03:53,361 --> 00:03:55,981\\nLa artikoloj ne devas enhavi juĝoj pri la substanco,\\n\\n68\\n00:03:56,011 --> 00:03:59,739\\nsed ili devas prezenti ĉiun gravan vidpunkton\\n\\n69\\n00:03:59,754 --> 00:04:03,297\\njustmaniere, taŭga kaj sen antaŭjuĝoj.\\n\\n70\\n00:04:04,289 --> 00:04:08,548\\nĈiu artikolo de Vikipedio estas flankita de diskutpaĝo,\\n\\n71\\n00:04:08,627 --> 00:04:11,086\\nkie la uzantoj povas kompari la ideojn\\n\\n72\\n00:04:11,114 --> 00:04:14,184\\nkaj akordiĝi pri versio plejeble taŭga kaj akceptita.\\n\\n73\\n00:04:14,395 --> 00:04:17,464\\nMalsimile ol la paĝoj de la artikoloj, tie ĉi la intervenoj\\n\\n74\\n00:04:17,493 --> 00:04:20,784\\ndevas ĉiam esti subskribitaj, sed oni ĝuste memorigi ke Vikipedio\\n\\n75\\n00:04:20,823 --> 00:04:24,667\\nne estas loko, kie esprimi proprajn aŭ partiecajn vidpunktojn.\\n\\n76\\n00:04:25,117 --> 00:04:27,117\\nKiam uzanto bezonas\\n\\n77\\n00:04:27,147 --> 00:04:29,753\\nparoli al pli personoj samtempe,\\n\\n78\\n00:04:29,823 --> 00:04:33,631\\npri ĝenerala interesa problemo aŭ pri specifa sektoro,\\n\\n79\\n00:04:33,655 --> 00:04:37,510\\nli povas uzi la Diskutejon aŭ la respektivajn temajn diskutejojn.\\n\\n80\\n00:04:37,995 --> 00:04:41,242\\nĈiu aliĝinto disponas pri persona paĝo,\\n\\n81\\n00:04:41,273 --> 00:04:44,115\\nkie li povas enmeti kelkajn informojn pri si mem.\\n\\n82\\n00:04:44,226 --> 00:04:47,802\\nAnkaŭ ĉi tiu paĝo estas flankita de diskutpaĝo,\\n\\n83\\n00:04:47,827 --> 00:04:51,693\\nkiun oni uzas kiel ĝi estu persona retpoŝto.\\n\\n84\\n00:04:51,983 --> 00:04:55,753\\nPri teknikaj temoj oni povas demandi la plej esperantajn uzantojn,\\n\\n85\\n00:04:55,815 --> 00:04:58,338\\nekzemple pere de la Informgiĉeto.\\n\\n86\\n00:04:58,353 --> 00:05:02,030\\nPri la enhavoj oni povas konsulti Orakolon.\\n\\n87\\n00:05:02,924 --> 00:05:06,262\\nEn okazo de evidentaj misuzoj aŭ agoj de vandalismo,\\n\\n88\\n00:05:06,294 --> 00:05:09,319\\nkelkaj aliĝintoj, nomitaj \"administrantoj\",\\n\\n89\\n00:05:09,386 --> 00:05:12,083\\npovas interveni per specifaj agoj,\\n\\n90\\n00:05:12,109 --> 00:05:15,486\\nkiel bloki uzanton aŭ forigi aŭ bloki paĝon.\\n\\n91\\n00:05:15,664 --> 00:05:18,384\\nLa administrantoj estas volontuloj, kiuj akiris\\n\\n92\\n00:05:18,384 --> 00:05:22,048\\nla fidon de la kolektivo kaj ili estis elektitaj pere de elektado.\\n\\n93\\n00:05:22,218 --> 00:05:25,355\\nIli plenumas delikatajn teknikajn operaciojn\\n\\n94\\n00:05:25,357 --> 00:05:27,646\\nkaj certigas la respekton pri la gvidlinioj de la projekto,\\n\\n95\\n00:05:27,664 --> 00:05:30,453\\nsed ili ne estas la respondeculoj de Vikipedio.\\n\\n96\\n00:05:31,311 --> 00:05:34,532\\nVikipedio estas administrita de Wikimedia Foundation,\\n\\n97\\n00:05:34,542 --> 00:05:37,960\\nfondaĵo sen profitaj celoj, lokiĝita en San Francisco,\\n\\n98\\n00:05:37,958 --> 00:05:41,090\\nkiu certigas la rimedojn por la progresigo de la projekto.\\n\\n99\\n00:05:41,281 --> 00:05:44,554\\nLa fondaĵo, fondita dum 2003, vivas danke al\\n\\n100\\n00:05:44,559 --> 00:05:47,233\\nsubvencioj fare de publikaj institucioj kaj privatuloj,\\n\\n101\\n00:05:47,235 --> 00:05:51,571\\nsed ĉefe danke al multegaj mikro-donacioj fare de unuopaj personoj.\\n\\n102\\n00:05:51,853 --> 00:05:54,959\\nPor konservi nepran sendependon kaj kuntreni\\n\\n103\\n00:05:54,991 --> 00:05:59,277\\nmultajn kontribuantojn, ĉe Vikipedio ne estas reklamoj.\\n\\n104\\n00:05:59,979 --> 00:06:04,125\\nIntertempe ĉe la tuta mondo naskiĝis diversaj asocioj de volontuloj\\n\\n105\\n00:06:04,181 --> 00:06:07,761\\nkiuj loke antaŭenigi Vikipedion kaj la fratajn projektojn.\\n\\n106\\n00:06:08,105 --> 00:06:11,624\\nĈe Italujo ekde 2005 estas Wikimedia Italia,\\n\\n107\\n00:06:11,671 --> 00:06:15,961\\nkiu krom la projektoj de Wikimedia Foundation, antaŭenigas aliajn iniciativojn\\n\\n108\\n00:06:15,973 --> 00:06:19,662\\nrilate al libera disvastigo de la kulturo kaj la sciaro.\\n\\n109\\n00:06:19,898 --> 00:06:23,992\\nKaj al Wikimedia Italia povas adresi la gazetaro, la firmoj\\n\\n110\\n00:06:24,029 --> 00:06:28,130\\nkaj la lernejoj por havi pliajn informojn en italo pri Vikipedio.\\n\\n111\\n00:06:28,981 --> 00:06:31,905\\nMultegaj volontuloj senpage akumulas,\\n\\n112\\n00:06:31,913 --> 00:06:35,649\\nordigas kaj strukturas la kunpartigitajn sciojn de nia nuntempo\\n\\n113\\n00:06:35,701 --> 00:06:39,149\\npor liberigi ilin. Ĉu vi?\\n\\n114\\n00:06:39,352 --> 00:06:42,605\\nEstu kuraĝaj: Vikipedio estas malfermita por ĉiuj!\\n\\n115\\n00:06:54,000 --> 00:06:56,000\\n\\n\\n116\\n00:06:57,000 --> 00:06:59,000',\n", + " 'bytes': 9637,\n", + " 'sha1': 'oasx9a6dbfmplbr12p0k9hsqofsnhs8',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 156883761,\n", + " 'timestamp': '2015-04-12T15:08:31Z',\n", + " 'user': {'id': 16243, 'text': \"Cantons-de-l'Est\"},\n", + " 'page': {'id': 14813496,\n", + " 'title': 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Wording.',\n", + " 'text': \"1 00:00:01,71 --> 00:00:05,146 « Qu’y a-t-il de plus important dans les bibliothèques, que le fait même qu’elles existent ? »\\n\\n2 00:00:05,146 --> 00:00:09,147 Archibald Macleish, The Premise Of Meaning.\\n\\n1 00:00:08,860 --> 00:00:11,674 Wikisource est une bibliothèque numérique en ligne\\n\\n2 00:00:11,698 --> 00:00:14,610 qui recueille des textes publiés dans toutes les langues\\n\\n3 00:00:14,631 --> 00:00:18,947 à condition qu’ils soient dans le domaine public ou publiés sous licence libre.\\n\\n4 00:00:19,057 --> 00:00:21,556 Comme tout projet de la Wikimedia Foundation,\\n\\n5 00:00:21,607 --> 00:00:24,997 Wikisource est ouverte à tous et chacun peut y collaborer,\\n\\n6 00:00:25,039 --> 00:00:27,126 même de façon anonyme.\\n\\n7 00:00:27,918 --> 00:00:31,750 Sur Wikisource, les textes sont transcrits à partir d’une source publiée\\n\\n8 00:00:31,764 --> 00:00:34,695 puis mis en forme pour être lus facilement.\\n\\n9 00:00:34,815 --> 00:00:38,255 Romans et nouvelles, essais et manuels,\\n\\n10 00:00:38,299 --> 00:00:43,289 livres de prières et affiches politiques, chants folkloriques et poèmes,\\n\\n11 00:00:43,336 --> 00:00:47,899 contes de fées et comptines, documents juridiques et ouvrages scientifiques\\n\\n12 00:00:47,959 --> 00:00:50,565 thèses et mémoires à condition qu’ils aient déjà été publiés\\n\\n13 00:00:50,596 --> 00:00:53,132 dans un établissement d’enseignement reconnu.\\n\\n14 00:00:53,286 --> 00:00:57,167 Comme Wikipédia, le projet est divisé en différentes langues :\\n\\n15 00:00:57,252 --> 00:01:00,502 sur la Wikisource en anglais se trouvent les textes anglophones,\\n\\n16 00:01:00,563 --> 00:01:04,436 ceux en français dans la Wikisource en français, et ainsi de suite.\\n\\n17 00:01:04,564 --> 00:01:06,930 Les textes sont recueillis dans toutes les langues\\n\\n18 00:01:06,995 --> 00:01:09,373 même les moins répandues et les dialectes,\\n\\n19 00:01:09,425 --> 00:01:12,455 à condition qu’ils aient déjà été publiés et puissent être librement transcrits.\\n\\n20 00:01:12,546 --> 00:01:15,058 Ces conditions s’appliquent également aux traductions,\\n\\n21 00:01:15,094 --> 00:01:18,599 qui sont des œuvres dérivées. Donc ne peuvent pas être inclus,\\n\\n22 00:01:18,649 --> 00:01:22,314 les traductions de textes qui n’ont pas déjà été publiés. Texte et traduction\\n\\n23 00:01:22,340 --> 00:01:26,855 doivent tous les deux être dans le domaine public ou publiés sous licence libre.\\n\\n24 00:01:27,653 --> 00:01:30,714 Tous les textes peuvent être copiés depuis Wikisource\\n\\n25 00:01:30,792 --> 00:01:33,903 et utilisés comme base pour des œuvres dérivées,\\n\\n26 00:01:33,947 --> 00:01:35,947 même à des fins commerciales.\\n\\n27 00:01:36,049 --> 00:01:38,521 Ces textes doivent donc avoir été distribués avec une licence\\n\\n28 00:01:38,571 --> 00:01:41,952 qui permet ces libertés, ou bien ne pas être sous droit d’auteur\\n\\n29 00:01:42,020 --> 00:01:45,091 tant aux États-Unis,\\n\\n30 00:01:45,121 --> 00:01:47,295 où sont les serveurs Wikisource,\\n\\n31 00:01:47,344 --> 00:01:50,206 que dans le pays de la publication du texte.\\n\\n32 00:01:51,271 --> 00:01:54,115 En l’état actuel, selon la loi américaine,\\n\\n33 00:01:54,196 --> 00:01:56,372 sont certainement dans le domaine public\\n\\n34 00:01:56,443 --> 00:01:59,539 les œuvres publiées avant 1923.\\n\\n35 00:01:59,745 --> 00:02:03,243 En France, l’œuvre est protégée par le droit d’auteur\\n\\n36 00:02:03,271 --> 00:02:06,128 jusqu’à 70 ans après la mort de son créateur.\\n\\n37 00:02:06,221 --> 00:02:09,314 Un texte peut donc être dans le domaine public en France\\n\\n38 00:02:09,348 --> 00:02:12,666 mais pas encore aux États-Unis et vice versa.\\n\\n39 00:02:12,772 --> 00:02:16,358 Un texte contemporain peut être ajouté à Wikisource\\n\\n40 00:02:16,424 --> 00:02:19,124 uniquement si l’auteur a explicitement autorisé\\n\\n41 00:02:19,166 --> 00:02:22,406 toute utilisation de l’œuvre, y compris commerciale.\\n\\n42 00:02:22,576 --> 00:02:25,000 L’auteur peut toujours exiger\\n\\n43 00:02:25,048 --> 00:02:27,961 la garantie de cette liberté sur les œuvres dérivées.\\n\\n44 00:02:28,023 --> 00:02:31,482 Sur Wikisource, tout le monde doit être en mesure de vérifier le texte\\n\\n45 00:02:31,549 --> 00:02:33,549 et c’est pourquoi désormais\\n\\n46 00:02:33,622 --> 00:02:36,425 on fournit le fac-similé entier de l’ouvrage original.\\n\\n47 00:02:36,496 --> 00:02:40,065 Dans le cas des textes transcrits ailleurs, il est nécessaire de s’appuyer\\n\\n48 00:02:40,148 --> 00:02:44,873 sur des sources fiables et d’inclure des références spécifiques.\\n\\n49 00:02:45,478 --> 00:02:48,645 Les wikisourciers sont les scribes de l’ère numérique\\n\\n50 00:02:48,662 --> 00:02:50,839 qui, par passion ou altruisme,\\n\\n51 00:02:50,856 --> 00:02:53,207 transcrivent les textes disponibles gratuitement.\\n\\n52 00:02:53,272 --> 00:02:55,910 Les retranscriptions doivent être fidèles,\\n\\n53 00:02:55,942 --> 00:02:58,574 tenir compte des pratiques rédactionnelles de l’époque\\n\\n54 00:02:58,630 --> 00:03:02,413 mais aussi des conventions typographiques adoptées par la communauté.\\n\\n55 00:03:03,187 --> 00:03:05,604 Pour commencer la transcription\\n\\n56 00:03:05,622 --> 00:03:07,622 on crée une page d’index,\\n\\n57 00:03:07,669 --> 00:03:09,900 reliée au livre scanné de Wikimedia Commons,\\n\\n58 00:03:09,969 --> 00:03:14,026 projet-frère de Wikisource rassemblant des fichiers multimédias.\\n\\n59 00:03:14,311 --> 00:03:17,069 Les liens sont générés automatiquement\\n\\n60 00:03:17,138 --> 00:03:19,234 pour chaque page du travail.\\n\\n61 00:03:19,339 --> 00:03:22,100 En cliquant sur un lien, vous pouvez consulter\\n\\n62 00:03:22,163 --> 00:03:24,260 le fac-similé du texte et en vis-à-vis de lui\\n\\n63 00:03:24,305 --> 00:03:27,124 une zone dans laquelle s’effectue la transcription.\\n\\n64 00:03:27,235 --> 00:03:30,104 Souvent, il n’est pas nécessaire de transcrire le texte à partir de zéro,\\n\\n65 00:03:30,147 --> 00:03:33,186 car la page numérisée est traitée par un logiciel\\n\\n66 00:03:33,217 --> 00:03:35,725 qui peut reconnaître les caractères.\\n\\n67 00:03:35,850 --> 00:03:38,507 La présentation des pages est uniformisée\\n\\n68 00:03:38,570 --> 00:03:41,442 grâce à l’utilisation de modèles\\n\\n69 00:03:41,483 --> 00:03:45,252 qui établissent automatiquement la mise en forme ou les parties répétitives des textes.\\n\\n70 00:03:45,514 --> 00:03:48,625 Une fois complétée la transcription de toutes les pages,\\n\\n71 00:03:48,654 --> 00:03:51,859 le texte est réassemblé sur la base de sa structure logique\\n\\n72 00:03:51,934 --> 00:03:54,145 (Par exemple, selon ses chapitres).\\n\\n73 00:03:54,252 --> 00:03:57,051 Le texte est formaté afin qu’il soit conforme\\n\\n74 00:03:57,082 --> 00:03:59,340 à la structure voulue par l’auteur,\\n\\n75 00:03:59,378 --> 00:04:02,782 mais aussi adapté à la lecture à l’écran et à l’impression.\\n\\n76 00:04:03,619 --> 00:04:06,646 Comme Wikipédia, un logiciel gère Wikisource,\\n\\n77 00:04:06,707 --> 00:04:09,448 lequel permet de créer des liens hypertextes,\\n\\n78 00:04:09,479 --> 00:04:12,829 reliant les différents livres et les auteurs de la bibliothèque.\\n\\n79 00:04:12,882 --> 00:04:15,725 Par exemple, une citation (ou un extrait d’un essai)\\n\\n80 00:04:15,759 --> 00:04:18,712 peut se rapporter à l’auteur ou au texte qu’il cite.\\n\\n81 00:04:19,493 --> 00:04:22,952 En bas de chaque texte se trouvent les liens vers des catégories\\n\\n82 00:04:23,000 --> 00:04:25,461 pour aider à classer les travaux et les auteurs\\n\\n83 00:04:25,475 --> 00:04:27,951 par type, source, ou tout autre classement.\\n\\n84 00:04:28,056 --> 00:04:30,511 En outre, chaque texte peut être lié\\n\\n85 00:04:30,549 --> 00:04:32,742 à ses traductions dans d’autres Wikisource,\\n\\n86 00:04:32,798 --> 00:04:34,798 à son article sur Wikipédia\\n\\n87 00:04:34,819 --> 00:04:37,186 ou à tout autre projet Wikimedia.\\n\\n88 00:04:37,469 --> 00:04:40,687 Chaque auteur dont les œuvres sont publiées sur Wikisource\\n\\n89 00:04:40,749 --> 00:04:44,586 a une page dédiée, qui contient une courte biographie,\\n\\n90 00:04:44,640 --> 00:04:47,616 la liste des textes disponibles pour consultation\\n\\n91 00:04:47,640 --> 00:04:49,640 et éventuellement d’autres informations,\\n\\n92 00:04:49,696 --> 00:04:53,502 comme par exemple les ouvrages dans lesquels l’auteur est cité\\n\\n93 00:04:53,780 --> 00:04:57,355 On y trouve aussi des liens vers des pages sur l’auteur\\n\\n94 00:04:57,410 --> 00:05:02,153 disponibles dans d’autres projets Wikimedia et d’autres versions linguistiques.\\n\\n95 00:05:02,333 --> 00:05:06,430 Enfin, Wikisource offre des portails, qui proposent des parcours de lecture\\n\\n96 00:05:06,470 --> 00:05:09,616 parmi les textes de la bibliothèque sur des sujets précis.\\n\\n97 00:05:11,060 --> 00:05:14,525 Sur Wikisource, comme sur Wikipédia, il y a des administrateurs,\\n\\n98 00:05:14,602 --> 00:05:17,541 c’est-à-dire des utilisateurs experts qui ont la confiance de la communauté\\n\\n99 00:05:17,567 --> 00:05:19,567 et pour qui ont été activés\\n\\n100 00:05:19,622 --> 00:05:22,126 des outils de gestion du logiciel plus avancés.\\n\\n101 00:05:22,168 --> 00:05:25,461 Leur expérience en fait de facto de vrais bibliothécaires\\n\\n102 00:05:25,500 --> 00:05:27,799 qui servent de mentors aux autres.\\n\\n103 00:05:28,693 --> 00:05:31,682 Le point de rencontre est le Scriptorium,\\n\\n104 00:05:31,693 --> 00:05:34,385 où vous pouvez poser des questions aux utilisateurs expérimentés\\n\\n105 00:05:34,413 --> 00:05:36,694 ou commencer une nouvelle discussion.\\n\\n106 00:05:36,784 --> 00:05:39,678 Afin de mieux gérer les thèmes spécifiques, il existe\\n\\n107 00:05:39,748 --> 00:05:42,992 des pages de projets thématiques dédiées.\\n\\n108 00:05:43,046 --> 00:05:45,046 Dans la Wikisource en italien\\n\\n109 00:05:45,119 --> 00:05:47,784 ils représentent une porte d'entrée \\n\\n110 00:05:47,822 --> 00:05:51,135 pour ceux qui sont intéressés par un sujet en particulier.\\n\\n111 00:05:51,434 --> 00:05:54,070 On peut indiquer l’avancement des travaux\\n\\n112 00:05:54,102 --> 00:05:56,402 sur un texte spécifique ou une partie de texte\\n\\n113 00:05:56,437 --> 00:05:59,859 à l’aide d’un système comportant cinq étapes principales.\\n\\n114 00:06:00,137 --> 00:06:02,347 Lorsque le texte est complet dans son intégralité,\\n\\n115 00:06:02,385 --> 00:06:05,805 correctement mis en forme, relu et corrigé par deux utilisateurs ou plus\\n\\n116 00:06:05,874 --> 00:06:08,890 disposant du fac-similé de l’édition papier de référence, il reçoit le PIP,\\n\\n117 00:06:08,944 --> 00:06:12,526 qui confère le statut d’« Édition Wikisource ».\\n\\n118 00:06:12,731 --> 00:06:15,311 Résultat des efforts de plus d’un utilisateur,\\n\\n119 00:06:15,346 --> 00:06:17,850 chaque mois sont choisis un ou plusieurs textes\\n\\n120 00:06:17,892 --> 00:06:20,521 qu’on revoit et corrige ensemble.\\n\\n121 00:06:21,242 --> 00:06:23,416 Avec Wikisource, on peut donc montrer\\n\\n122 00:06:23,455 --> 00:06:25,843 son propre amour des livres, en les sauvant de l’oubli\\n\\n123 00:06:25,861 --> 00:06:28,776 en les rendant accessibles à tous sur le réseau.\\n\\n124 00:06:29,140 --> 00:06:31,140 Joignez-vous à Wikisource\\n\\n125 00:06:31,161 --> 00:06:34,216 participez vous aussi à la construction d’une bibliothèque libre.\",\n", + " 'bytes': 11203,\n", + " 'sha1': '3absetsdbd98l4kg0w7p5xoocf9393l',\n", + " 'parent_id': 62357063,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 53632604,\n", + " 'timestamp': '2011-04-26T18:30:03Z',\n", + " 'user': {'id': 50587, 'text': 'Nemo bis'},\n", + " 'page': {'id': 14840749,\n", + " 'title': 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'min',\n", + " 'text': '1\\n00:00:08,860 --> 00:00:11,674\\nWikisource is an online digital library\\n\\n2\\n00:00:11,698 --> 00:00:14,610\\nthat collects texts published in any language\\n\\n3\\n00:00:14,631 --> 00:00:18,947\\nif provided in the public domain or released under a free license.\\n\\n4\\n00:00:19,057 --> 00:00:21,556\\nLike all projects of the Wikimedia Foundation,\\n\\n5\\n00:00:21,607 --> 00:00:24,997\\nWikisource is open to anyone and everyone can cooperate,\\n\\n6\\n00:00:25,039 --> 00:00:27,126\\neven anonymously.\\n\\n7\\n00:00:27,918 --> 00:00:31,750\\nIn Wikisource texts are transcribed from a published source\\n\\n8\\n00:00:31,764 --> 00:00:34,695\\nand formatted to be read comfortably.\\n\\n9\\n00:00:34,815 --> 00:00:38,255\\nNovels and short stories, essays and manuals,\\n\\n10\\n00:00:38,299 --> 00:00:43,289\\nprayer books and political posters, folk songs and poems,\\n\\n11\\n00:00:43,336 --> 00:00:47,899\\nfairy tales and nursery rhymes, legal documents and scientific works\\n\\n12\\n00:00:47,959 --> 00:00:50,565\\ntheses and dissertations provided they were already defended\\n\\n13\\n00:00:50,596 --> 00:00:53,132\\nat an academic institution.\\n\\n14\\n00:00:53,286 --> 00:00:57,167\\nLike Wikipedia, the project is divided into the different languages:\\n\\n15\\n00:00:57,252 --> 00:01:00,502\\nIn the English version of Wikisource you have to write texts in English language, \\n\\n16\\n00:01:00,563 --> 00:01:04,436\\nin French version in French language and and so on...\\n\\n17\\n00:01:04,564 --> 00:01:06,930\\nTexts are collected in every languages\\n\\n18\\n00:01:06,995 --> 00:01:09,373\\neven in the less widely used and dialects,\\n\\n19\\n00:01:09,425 --> 00:01:12,455\\nif already published and freely transcribed.\\n\\n20\\n00:01:12,546 --> 00:01:15,058\\nThese conditions apply to the translations,\\n\\n21\\n00:01:15,094 --> 00:01:18,599\\nwhich are derivative works: can not therefore be included\\n\\n22\\n00:01:18,649 --> 00:01:22,314\\ntranslated texts are not published and both the text and the translation\\n\\n23\\n00:01:22,340 --> 00:01:26,855\\nmust be in the public domain or released under a free license.\\n\\n24\\n00:01:27,653 --> 00:01:30,714\\nEach text must be copied to Wikisource\\n\\n25\\n00:01:30,792 --> 00:01:33,903\\nand used as the basis for derivative works,\\n\\n26\\n00:01:33,947 --> 00:01:35,947\\nfor commercial purposes, too.\\n\\n27\\n00:01:36,049 --> 00:01:38,521\\nIt must therefore have been distributed with a license\\n\\n28\\n00:01:38,571 --> 00:01:41,952\\nthat these grants should be deprived of their liberty or\\n\\n29\\n00:01:42,020 --> 00:01:45,091\\ncopyright in the work, both in the United States,\\n\\n30\\n00:01:45,121 --> 00:01:47,295\\nwhere are the Wikisource server,\\n\\n31\\n00:01:47,344 --> 00:01:50,206\\nand in the country of publication of the text.\\n\\n32\\n00:01:51,271 --> 00:01:54,115\\nAt present, according to American law,\\n\\n33\\n00:01:54,196 --> 00:01:56,372\\nare certainly in the public domain\\n\\n34\\n00:01:56,443 --> 00:01:59,539\\nOnly works published before 1923.\\n\\n35\\n00:01:59,745 --> 00:02:03,243\\nFor the Italian state rather the work is copyrighted\\n\\n36\\n00:02:03,271 --> 00:02:06,128\\nuntil 70 years after the death of its creator.\\n\\n37\\n00:02:06,221 --> 00:02:09,314A text may therefore be in the public domain in Italy\\n\\n38\\n00:02:09,348 --> 00:02:12,666\\nbut not yet in the United States and vice versa.\\n\\n39\\n00:02:12,772 --> 00:02:16,358\\nA text contemporary hand, can be added to Wikisource\\n\\n40\\n00:02:16,424 --> 00:02:19,124\\nonly if the author has explicitly authorized\\n\\n41\\n00:02:19,166 --> 00:02:22,406\\nAny use of the work, including commercial.\\n\\n42\\n00:02:22,576 --> 00:02:25,000\\nThe author may still require\\n\\n43\\n00:02:25,048 --> 00:02:27,961\\ngranting of freedom in derivative works.\\n\\n44\\n00:02:28,023 --> 00:02:31,482\\nIn Wikisource, anyone should be able to revise the text\\n\\n45\\n00:02:31,549 --> 00:02:33,549\\nand that is why it is now practice\\n\\n46\\n00:02:33,622 --> 00:02:36,425\\nthe use of full scan of the original book.\\n\\n47\\n00:02:36,496 --> 00:02:40,065\\nIn the case of texts transcribed elsewhere is necessary to rely\\n\\n48\\n00:02:40,148 --> 00:02:44,873\\nonly trusted sources and include specific references.\\n\\n49\\n00:02:45,478 --> 00:02:48,645\\nWikisource users are amanuenses of digital age\\n\\n50\\n00:02:48,662 --> 00:02:50,839\\nthat out of interest or altruism\\n\\n51\\n00:02:50,856 --> 00:02:53,207\\ntranscribe the texts freely available.\\n\\n52\\n00:02:53,272 --> 00:02:55,910\\nEach text must be reported accurately,\\n\\n53\\n00:02:55,942 --> 00:02:58,574\\nkeeping into account the writing habits of the time\\n\\n54\\n00:02:58,630 --> 00:03:02,413\\nand the conventions adopted by the community.\\n\\n55\\n00:03:03,187 --> 00:03:05,604\\nThe transcription process begins\\n\\n56\\n00:03:05,622 --> 00:03:07,622\\nwith the creation of an \"index\" page,\\n\\n57\\n00:03:07,669 --> 00:03:09,900\\nthat recalls the scanned book from Commons, \\n\\n58\\n00:03:09,969 --> 00:03:14,026\\nthe Wikisource\\'s sister project that collects free multimedia files.\\n\\n59\\n00:03:14,311 --> 00:03:17,069\\nThe links to every single page \\n\\n60\\n00:03:17,138 --> 00:03:19,234\\nof the book are generated automatically.\\n\\n61\\n00:03:19,339 --> 00:03:22,100\\nBy clicking on a link it\\'s possible to see \\n\\n62\\n00:03:22,163 --> 00:03:24,260\\nthe scanned page and, aside\\n\\n63\\n00:03:24,305 --> 00:03:27,124\\nthe box into which the transcription is to be written.\\n\\n64\\n00:03:27,235 --> 00:03:30,104\\nOften it\\'s not necessary to transcript the text from scratch, \\n\\n65\\n00:03:30,147 --> 00:03:33,186\\nbecause the scanned page is already processed by a software\\n\\n66\\n00:03:33,217 --> 00:03:35,725\\nfor automatic character recognition.\\n\\n67\\n00:03:35,850 --> 00:03:38,507\\nThe graphic layout of the pages is uniformed\\n\\n68\\n00:03:38,570 --> 00:03:41,442\\nby using templates that arrange automatically\\n\\n69\\n00:03:41,483 --> 00:03:45,252\\nformats or repetitive parts of the pages or the texts.\\n\\n70\\n00:03:45,514 --> 00:03:48,625\\nOnce the transcription of all the pages is completed,\\n\\n71\\n00:03:48,654 --> 00:03:51,859\\nthe text is assembled according by its logical structure\\n\\n72\\n00:03:51,934 --> 00:03:54,145\\n(as example, by its chapters).\\n\\n73\\n00:03:54,252 --> 00:03:57,051\\nThe so formatted text is therefore consistent\\n\\n74\\n00:03:57,082 --> 00:03:59,340\\nwith the structure wanted by the author, \\n\\n75\\n00:03:59,378 --> 00:04:02,782\\nbut also adapted for screen reading and printing.\\n\\n76\\n00:04:03,619 --> 00:04:06,646\\nLike Wikipedia, Wikisource is based on a software \\n\\n77\\n00:04:06,707 --> 00:04:09,448\\nthat allows to create hypertextual links, \\n\\n78\\n00:04:09,479 --> 00:04:12,829\\nconnetting the books and the authors of the library with each other.\\n\\n79\\n00:04:12,882 --> 00:04:15,725\\nFor instance, a quote (or an excerpt from an essay) \\n\\n80\\n00:04:15,759 --> 00:04:18,712\\ncan link to the author or to the quoted text.\\n\\n81\\n00:04:19,493 --> 00:04:22,952\\nAt the bottom of each text there are the links to the categories\\n\\n82\\n00:04:23,000 --> 00:04:25,461\\nthat help in organizing books and authors \\n\\n83\\n00:04:25,475 --> 00:04:27,951\\nby type, origin, and so on. \\n\\n84\\n00:04:28,056 --> 00:04:30,511\\nBesides, every text can be linked\\n\\n85\\n00:04:30,549 --> 00:04:32,742\\nto its translations available on the other Wikisources, \\n\\n86\\n00:04:32,798 --> 00:04:34,798\\nto its article on Wikipedia \\n\\n87\\n00:04:34,819 --> 00:04:37,186\\nor to any other Wikimedia project.\\n\\n88\\n00:04:37,469 --> 00:04:40,687\\nEvery author whose works are published on Wikisource \\n\\n89\\n00:04:40,749 --> 00:04:44,586\\nhas a dedicated page, which contains his or her basic information, \\n\\n90\\n00:04:44,640 --> 00:04:47,616\\nthe list of the available texts\\n\\n91\\n00:04:47,640 --> 00:04:49,640\\nand other relevant information, \\n\\n92\\n00:04:49,696 --> 00:04:53,502\\nsuch as the works in which the author is quoted and the related authors.\\n\\n93\\n00:04:53,780 --> 00:04:57,355\\nHere as well, there are links pointing to the pages about the author \\n\\n94\\n00:04:57,410 --> 00:05:02,153\\navailable on other Wikimedia projects and other languages.\\n\\n95\\n00:05:02,333 --> 00:05:06,430\\nFinally, we mention the portals, that offer guided paths\\n\\n96\\n00:05:06,470 --> 00:05:09,616\\nthrough the published texts about a given topic.\\n\\n97\\n00:05:11,060 --> 00:05:14,525\\nIn Wikisource, like in Wikipedia, we have the administrators, \\n\\n98\\n00:05:14,602 --> 00:05:17,541\\nexpert users trusted by the community\\n\\n99\\n00:05:17,567 --> 00:05:19,567\\nwho can access \\n\\n100\\n00:05:19,622 --> 00:05:22,126\\nsome advanced management functions of the software.\\n\\n101\\n00:05:22,168 --> 00:05:25,461\\nWith their experience, they act as real librarians\\n\\n102\\n00:05:25,500 --> 00:05:27,799\\ntutoring the other users.\\n\\n103\\n00:05:28,693 --> 00:05:31,682\\nThe meeting point of the Wikisource users is the Bar, \\n\\n104\\n00:05:31,693 --> 00:05:34,385\\nwhere we can pose questions to the more experienced users\\n\\n105\\n00:05:34,413 --> 00:05:36,694\\nand start new discusions.\\n\\n106\\n00:05:36,784 --> 00:05:39,678\\nIn order to best handle some specific topics \\n\\n107\\n00:05:39,748 --> 00:05:42,992\\nthere are some dedicated pages: the thematic projects. \\n\\n108\\n00:05:43,046 --> 00:05:45,046\\nOn the Italian version of Wikisource \\n\\n109\\n00:05:45,119 --> 00:05:47,784\\nthey are the heart of the activity and the meeting point\\n\\n110\\n00:05:47,822 --> 00:05:51,135\\nfor those users interested in a particular topic.\\n\\n111\\n00:05:51,434 --> 00:05:54,070\\nFor showing the advancement of the transcription process \\n\\n112\\n00:05:54,102 --> 00:05:56,402\\nof a given text or its part\\n\\n113\\n00:05:56,437 --> 00:05:59,859\\na 5-step system is used. \\n\\n114\\n00:06:00,137 --> 00:06:02,347\\nWhen the text is complete in every part, \\n\\n115\\n00:06:02,385 --> 00:06:05,805\\ncorrectly formatted and proofread by two or more users\\n\\n116\\n00:06:05,874 --> 00:06:08,890\\ncomparing the original paper source, it\\'s awarded with the star, \\n\\n117\\n00:06:08,944 --> 00:06:12,526\\nthat qualifies it as a \"Wikisource Edition\".\\n\\n118\\n00:06:12,731 --> 00:06:15,311\\nAnd for focusing the energies of many users, \\n\\n119\\n00:06:15,346 --> 00:06:17,850\\none or more texts are chosen every month\\n\\n120\\n00:06:17,892 --> 00:06:20,521\\nto be proofread and revised together.\\n\\n121\\n00:06:21,242 --> 00:06:23,416\\nWith Wikisource you can show \\n\\n122\\n00:06:23,455 --> 00:06:25,843\\nall your love for the books, saving them from the oblivion\\n\\n123\\n00:06:25,861 --> 00:06:28,776\\nand making them available for everyone on the net. \\n\\n124\\n00:06:29,140 --> 00:06:31,140\\nJoin in Wikisource \\n\\n125\\n00:06:31,161 --> 00:06:34,216\\nand build you too a free library.',\n", + " 'bytes': 10149,\n", + " 'sha1': 'mb95l17kwtsnrqzuu1bc2fy4fx12dpk',\n", + " 'parent_id': 53120546,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55877099,\n", + " 'timestamp': '2011-06-25T04:05:31Z',\n", + " 'user': {'id': 6532, 'text': 'Giro720'},\n", + " 'page': {'id': 14864696,\n", + " 'title': 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:02,000 --> 00:00:06,000\\n<i>O que é mais importante para as bibliotecas,\\nse não o fato de que elas existem?</i>\\n\\n2\\n00:00:08,860 --> 00:00:11,674\\nWikisource é uma biblioteca digital on-line\\n\\n3\\n00:00:11,698 --> 00:00:14,610\\nque reúne textos publicados em qualquer idioma\\n\\n4\\n00:00:14,631 --> 00:00:18,947\\ncaídos em domínio público ou licenciados sob uma licença livre.\\n\\n5\\n00:00:19,057 --> 00:00:21,556\\nComo os outros projetos da Wikimedia Foundation,\\n\\n6\\n00:00:21,607 --> 00:00:24,997\\no Wikisource é aberto a todos e qualquer pessoa pode colaborar,\\n\\n7\\n00:00:25,039 --> 00:00:27,126\\nmesmo anonimamente.\\n\\n8\\n00:00:27,918 --> 00:00:31,750\\nNo Wikisource os textos são transcritos a partir de uma fonte publicada\\n\\n9\\n00:00:31,764 --> 00:00:34,695\\ne formatados para serem lidos confortavelmente.\\n\\n10\\n00:00:34,815 --> 00:00:38,255\\nRomances e contos, ensaios e manuais,\\n\\n11\\n00:00:38,299 --> 00:00:43,289\\nlivros de oração e manifestos políticos, canções folclóricas e poemas,\\n\\n12\\n00:00:43,336 --> 00:00:47,899\\ncontos de fadas e canções de ninar, documentos jurídicos e trabalhos científicos,\\n\\n13\\n00:00:47,959 --> 00:00:50,565\\nteses e dissertações, desde que já defendidas\\n\\n14\\n00:00:50,596 --> 00:00:53,132\\nem uma instituição acadêmica reconhecida.\\n\\n15\\n00:00:53,286 --> 00:00:57,167\\nComo a Wikipédia, o projeto é dividido em diferentes línguas:\\n\\n16\\n00:00:57,252 --> 00:01:00,502\\nno Wikisource em inglês estão os textos em inglês,\\n\\n17\\n00:01:00,563 --> 00:01:04,436\\njá os em francês estão na versão francesa, e assim por diante.\\n\\n18\\n00:01:04,564 --> 00:01:06,930\\nOs textos são coletadas em todas as línguas\\n\\n19\\n00:01:06,995 --> 00:01:09,373\\nmesmo em línguas menos utilizadas e dialetos,\\n\\n20\\n00:01:09,425 --> 00:01:12,455\\ndesde que já tenham sido publicados e possam ser livremente transcritos.\\n\\n21\\n00:01:12,546 --> 00:01:15,058\\nEstas condições se aplicam às traduções,\\n\\n22\\n00:01:15,094 --> 00:01:18,599\\nque são trabalhos derivados: não podem ser incluídos\\n\\n23\\n00:01:18,649 --> 00:01:22,314\\ntextos traduzidos que não foram publicados, e tanto o texto como a tradução\\n\\n24\\n00:01:22,340 --> 00:01:26,855\\ndevem estar em domínio público ou disponíveis sob uma licença livre.\\n\\n25\\n00:01:27,653 --> 00:01:30,714\\nCada texto deve ser copiado ao Wikisource\\n\\n26\\n00:01:30,792 --> 00:01:33,903\\ne utilizado como base para trabalhos derivados,\\n\\n27\\n00:01:33,947 --> 00:01:35,947\\ne, até mesmo, ser usado para fins comerciais.\\n\\n28\\n00:01:36,049 --> 00:01:38,521\\nEle deve, no entanto, ter sido distribuído com uma licença\\n\\n29\\n00:01:38,571 --> 00:01:41,952\\nque conceda essas mesmas liberdades, ou cujo autor abra mão de todos\\n\\n30\\n00:01:42,020 --> 00:01:45,091\\nos direitos autorais sobre a obra, tanto nos EUA,\\n\\n31\\n00:01:45,121 --> 00:01:47,295\\nonde está o servidor Wikisource,\\n\\n32\\n00:01:47,344 --> 00:01:50,206\\nquanto no país de publicação do texto.\\n\\n33\\n00:01:51,271 --> 00:01:54,115\\nAtualmente, de acordo com a lei norte-americana,\\n\\n34\\n00:01:54,196 --> 00:01:56,372\\nestão certamente em domínio público\\n\\n35\\n00:01:56,443 --> 00:01:59,539\\napenas as obras publicadas antes de 1923.\\n\\n36\\n00:01:59,745 --> 00:02:03,243\\nPara o Estado italiano [bem como o brasileiro e o português], obras estão protegidas por direitos autorais\\n\\n37\\n00:02:03,271 --> 00:02:06,128\\naté 70 anos após a morte de seu criador.\\n\\n38\\n00:02:06,221 --> 00:02:09,314\\nUm texto pode ser de domínio público na Itália [ou no Brasil e em Portugal]\\n\\n39\\n00:02:09,348 --> 00:02:12,666\\nmas ainda não nos EUA e vice-versa.\\n\\n40\\n00:02:12,772 --> 00:02:16,358\\nUm texto contemporâneo pode ser adicionado ao Wikisource\\n\\n41\\n00:02:16,424 --> 00:02:19,124\\napenas se o autor autorizar expressamente\\n\\n42\\n00:02:19,166 --> 00:02:22,406\\nqualquer uso da obra, inclusive comercial.\\n\\n43\\n00:02:22,576 --> 00:02:25,000\\nO autor pode ainda exigir\\n\\n44\\n00:02:25,048 --> 00:02:27,961\\na concessão de liberdade nas obras derivadas.\\n\\n45\\n00:02:28,023 --> 00:02:31,482\\nNo Wikisource, todos devem ser capazes de verificar os textos\\n\\n46\\n00:02:31,549 --> 00:02:33,549\\ne é por isso que agora é uma prática\\n\\n47\\n00:02:33,622 --> 00:02:36,425\\no uso de varredura completa do livro original.\\n\\n48\\n00:02:36,496 --> 00:02:40,065\\nNo caso dos textos transcritos de outros lugares, é necessário recorrer\\n\\n49\\n00:02:40,148 --> 00:02:44,873\\napenas às fontes fiáveis e incluir referências bibliográficas.\\n\\n50\\n00:02:45,478 --> 00:02:48,645\\nOs usuários do Wikisource são os escribas da era digital\\n\\n51\\n00:02:48,662 --> 00:02:50,839\\nque por interesse ou altruísmo\\n\\n52\\n00:02:50,856 --> 00:02:53,207\\ntranscrevem os textos disponíveis livremente.\\n\\n53\\n00:02:53,272 --> 00:02:55,910\\nCada texto deve ser relatado fielmente,\\n\\n54\\n00:02:55,942 --> 00:02:58,574\\ntendo em conta as práticas da escrita da época\\n\\n55\\n00:02:58,630 --> 00:03:02,413\\ne as convenções de transcrição adotadas pela comunidade.\\n\\n56\\n00:03:03,187 --> 00:03:05,604\\nO processo de transcrição começa\\n\\n57\\n00:03:05,622 --> 00:03:07,622\\ncom a criação de uma página \"índice\",\\n\\n58\\n00:03:07,669 --> 00:03:09,900\\nque carrega as páginas do livro digitalizado no Commons,\\n\\n59\\n00:03:09,969 --> 00:03:14,026\\num projeto irmão do projeto Wikisource, que reúne conteúdo multimídia.\\n\\n60\\n00:03:14,311 --> 00:03:17,069\\nOs links são então gerados automaticamente\\n\\n61\\n00:03:17,138 --> 00:03:19,234\\npara cada página da obra.\\n\\n62\\n00:03:19,339 --> 00:03:22,100\\nAo clicar em um link é possível visualizar\\n\\n63\\n00:03:22,163 --> 00:03:24,260\\no texto digitalizado e, do lado,\\n\\n64\\n00:03:24,305 --> 00:03:27,124\\na caixa onde a transcrição é efetuada.\\n\\n65\\n00:03:27,235 --> 00:03:30,104\\nMuitas vezes não é necessário transcrever o texto a partir do zero,\\n\\n66\\n00:03:30,147 --> 00:03:33,186\\nporque a página digitalizada é processada por um software\\n\\n67\\n00:03:33,217 --> 00:03:35,725\\nde reconhecimento de caracteres.\\n\\n68\\n00:03:35,850 --> 00:03:38,507\\nO layout das páginas é uniformizado\\n\\n69\\n00:03:38,570 --> 00:03:41,442\\natravés da utilização de \"predefinições\" que ajustam automaticamente\\n\\n70\\n00:03:41,483 --> 00:03:45,252\\na formatação ou partes repetitivas das páginas ou do textos.\\n\\n71\\n00:03:45,514 --> 00:03:48,625\\nUma vez realizada a transcrição de todas as páginas,\\n\\n72\\n00:03:48,654 --> 00:03:51,859\\no texto é montado com base em sua estrutura lógica\\n\\n73\\n00:03:51,934 --> 00:03:54,145\\n(Por exemplo, em seus capítulos).\\n\\n74\\n00:03:54,252 --> 00:03:57,051\\nO texto é formatado para que ele cumpra\\n\\n75\\n00:03:57,082 --> 00:03:59,340\\na estrutura desejada pelo autor,\\n\\n76\\n00:03:59,378 --> 00:04:02,782\\nmas também adaptado para a leitura na tela ou em impressão.\\n\\n77\\n00:04:03,619 --> 00:04:06,646\\nComo a Wikipédia, o Wikisource é gerido por um software\\n\\n78\\n00:04:06,707 --> 00:04:09,448\\nque lhe permite criar hiperlinks,\\n\\n79\\n00:04:09,479 --> 00:04:12,829\\nconectando-se com os vários livros e autores da biblioteca.\\n\\n80\\n00:04:12,882 --> 00:04:15,725\\nPor exemplo, uma citação (ou um excerto de um ensaio)\\n\\n81\\n00:04:15,759 --> 00:04:18,712\\npoderá conectar o autor ao texto que o cita.\\n\\n82\\n00:04:19,493 --> 00:04:22,952\\nNo final de cada texto estão links para categorias\\n\\n83\\n00:04:23,000 --> 00:04:25,461\\najudando a organizar as obras e autores\\n\\n84\\n00:04:25,475 --> 00:04:27,951\\npor tipo de texto, e assim por diante.\\n\\n85\\n00:04:28,056 --> 00:04:30,511\\nAlém disso, cada texto pode ser ligado\\n\\n86\\n00:04:30,549 --> 00:04:32,742\\na sua tradução em outro Wikisource,\\n\\n87\\n00:04:32,798 --> 00:04:34,798\\na sua página na Wikipédia\\n\\n88\\n00:04:34,819 --> 00:04:37,186\\nou qualquer outro projeto Wikimedia.\\n\\n89\\n00:04:37,469 --> 00:04:40,687\\nCada um dos autores cujas obras são publicadas no Wikisource\\n\\n90\\n00:04:40,749 --> 00:04:44,586\\npossui uma página dedicada, que contém uma biografia curta,\\n\\n91\\n00:04:44,640 --> 00:04:47,616\\na lista dos textos disponíveis para consulta\\n\\n92\\n00:04:47,640 --> 00:04:49,640\\ne possivelmente outras informações,\\n\\n93\\n00:04:49,696 --> 00:04:53,502\\ncomo as obras do autor ou autores citados relacionados.\\n\\n94\\n00:04:53,780 --> 00:04:57,355\\nTambém aqui estão os links para páginas sobre o autor\\n\\n95\\n00:04:57,410 --> 00:05:02,153\\ndisponíveis em outros projetos Wikimedia e edições em outros idiomas.\\n\\n96\\n00:05:02,333 --> 00:05:06,430\\nFinalmente, os portais oferecendo formas de leitura\\n\\n97\\n00:05:06,470 --> 00:05:09,616\\ncom tópicos específicos entre os textos da biblioteca.\\n\\n98\\n00:05:11,060 --> 00:05:14,525\\nNo Wikisource, como na Wikipédia, os administradores,\\n\\n99\\n00:05:14,602 --> 00:05:17,541\\nsão os usuários que têm a confiança da comunidade\\n\\n100\\n00:05:17,567 --> 00:05:19,567\\ne que possuem ativadas\\n\\n101\\n00:05:19,622 --> 00:05:22,126\\nferramentas de gerenciamento do software.\\n\\n102\\n00:05:22,168 --> 00:05:25,461\\nEssa experiência os torna, de fato, verdadeiros bibliotecários\\n\\n103\\n00:05:25,500 --> 00:05:27,799\\nque servem como tutores para os demais usuários.\\n\\n104\\n00:05:28,693 --> 00:05:31,682\\nO ponto encontro dos usuários é a Esplanada,\\n\\n105\\n00:05:31,693 --> 00:05:34,385\\nonde você pode fazer perguntas aos usuários experientes\\n\\n106\\n00:05:34,413 --> 00:05:36,694\\ne iniciar novas discussões.\\n\\n107\\n00:05:36,784 --> 00:05:39,678\\nAfim de melhor gerenciar as áreas específicas\\n\\n108\\n00:05:39,748 --> 00:05:42,992\\nhá as páginas de projetos temáticos.\\n\\n109\\n00:05:43,046 --> 00:05:45,046\\nNa versão italiana do Wikisource\\n\\n110\\n00:05:45,119 --> 00:05:47,784\\nrepresentam o coração e a reunião de\\n\\n111\\n00:05:47,822 --> 00:05:51,135\\ntodos aqueles que estão interessados em uma área particular.\\n\\n112\\n00:05:51,434 --> 00:05:54,070\\nPara indicar o andamento dos trabalhos\\n\\n113\\n00:05:54,102 --> 00:05:56,402\\nsobre um texto específico ou de uma parcela\\n\\n114\\n00:05:56,437 --> 00:05:59,859\\nutiliza-se um sistema dividido em cinco fases básicas.\\n\\n115\\n00:06:00,137 --> 00:06:02,347\\nQuando o texto está completo em sua totalidade,\\n\\n116\\n00:06:02,385 --> 00:06:05,805\\ndevidamente formatado e revisado por dois ou mais usuários\\n\\n117\\n00:06:05,874 --> 00:06:08,890\\nusando a fonte impressa, recebe uma marcação,\\n\\n118\\n00:06:08,944 --> 00:06:12,526\\nque lhe confere o estatuto de \"Edição Wikisource\".\\n\\n119\\n00:06:12,731 --> 00:06:15,311\\nE, para concentrar os esforços de vários usuários,\\n\\n120\\n00:06:15,346 --> 00:06:17,850\\ncada mês são escolhidos um ou mais textos\\n\\n121\\n00:06:17,892 --> 00:06:20,521\\npara se sejam revisados e corrigidos em conjunto.\\n\\n122\\n00:06:21,242 --> 00:06:23,416\\nCom Wikisource você pode, portanto, mostrar\\n\\n123\\n00:06:23,455 --> 00:06:25,843\\no seu amor pelos livros, salvando-os do esquecimento\\n\\n124\\n00:06:25,861 --> 00:06:28,776\\ne tornando-o disponível para qualquer pessoa na rede.\\n\\n125\\n00:06:29,140 --> 00:06:31,140\\nJunte-se ao Wikisource\\n\\n126\\n00:06:31,161 --> 00:06:34,216\\ne construa uma biblioteca livre.\\n\\n127\\n00:06:35,00 --> 00:06:40,00\\n<i>A Biblioteca perdurará: iluminada, solitária, infinita, perfeitamente imóvel, armada de volumes preciosos, inútil, incorruptível, secreta.</i>',\n", + " 'bytes': 10887,\n", + " 'sha1': 'r292g0dpwp5sghrcfd5q2g5dxzm8dxd',\n", + " 'parent_id': 53786888,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 53170990,\n", + " 'timestamp': '2011-04-14T22:35:53Z',\n", + " 'user': {'id': 391666, 'text': 'CristianCantoro'},\n", + " 'page': {'id': 14916308,\n", + " 'title': 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv.undefined.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Edited subtitles using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': \"1\\n00:00:01,71 --> 00:00:05,146\\nQu'est ce-qu'est plus important des bibliothèques, que le fait qu'ils existent?\\n\\n2\\n00:00:05,146 --> 00:00:09,147\\nArchibald Macleish, The Premise Of Meaning\",\n", + " 'bytes': 187,\n", + " 'sha1': 'n0cce2coq29uscsqh7ghn26aljk4ta0',\n", + " 'parent_id': 53170527,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 123971153,\n", + " 'timestamp': '2014-05-14T13:45:41Z',\n", + " 'user': {'id': 849234, 'text': 'Morn'},\n", + " 'page': {'id': 14970191,\n", + " 'title': 'Barack Obama 2011 Tucson memorial speech.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:02,399 --> 00:00:09,532\\nThe President:\\nTo the families of\\nthose we\\'ve lost;\\n\\n2\\n00:00:09,532 --> 00:00:14,466\\nto all who called them friends;\\nto the students of this\\n\\n3\\n00:00:14,467 --> 00:00:21,066\\nuniversity, the public servants\\nwho are gathered here,\\n\\n4\\n00:00:21,065 --> 00:00:26,966\\nthe people of Tucson and the\\npeople of Arizona: I have come\\n\\n5\\n00:00:26,966 --> 00:00:34,199\\nhere tonight as an American\\nwho, like all Americans,\\n\\n6\\n00:00:34,200 --> 00:00:40,100\\nkneels to pray with you today\\nand will stand by you tomorrow.\\n\\n7\\n00:00:40,100 --> 00:00:51,299\\n(applause)\\n\\n8\\n00:00:51,299 --> 00:00:58,532\\nThere is nothing I can say that\\nwill fill the sudden hole torn\\n\\n9\\n00:00:58,533 --> 00:01:01,500\\nin your hearts.\\n\\n10\\n00:01:01,500 --> 00:01:09,834\\nBut know this: The hopes of\\na nation are here tonight.\\n\\n11\\n00:01:09,834 --> 00:01:14,233\\nWe mourn with you\\nfor the fallen.\\n\\n12\\n00:01:14,233 --> 00:01:18,433\\nWe join you in your grief.\\n\\n13\\n00:01:18,433 --> 00:01:22,600\\nAnd we add our faith to yours\\nthat Representative Gabrielle\\n\\n14\\n00:01:22,599 --> 00:01:28,966\\nGiffords and the other living victims\\nof this tragedy will pull through.\\n\\n15\\n00:01:28,966 --> 00:01:40,632\\n(applause)\\n\\n16\\n00:01:40,632 --> 00:01:48,834\\nScripture tells us: There is a\\nriver whose streams make glad\\n\\n17\\n00:01:48,834 --> 00:01:57,299\\nthe city of God, the holy place\\nwhere the Most High dwells.\\n\\n18\\n00:01:57,299 --> 00:02:03,265\\nGod is within her,\\nshe will not fall;\\n\\n19\\n00:02:03,266 --> 00:02:10,432\\nGod will help her\\nat break of day.\\n\\n20\\n00:02:10,432 --> 00:02:17,733\\nOn Saturday morning, Gabby,\\nher staff and many of her\\n\\n21\\n00:02:17,734 --> 00:02:24,800\\nconstituents gathered outside a\\nsupermarket to exercise their\\n\\n22\\n00:02:24,800 --> 00:02:30,834\\nright to peaceful\\nassembly and free speech.\\n\\n23\\n00:02:30,834 --> 00:02:38,599\\n(applause)\\n\\n24\\n00:02:38,599 --> 00:02:45,599\\nThey were fulfilling a central\\ntenet of the democracy\\n\\n25\\n00:02:45,599 --> 00:02:50,466\\nenvisioned by our founders --\\nrepresentatives of the people\\n\\n26\\n00:02:50,467 --> 00:02:54,367\\nanswering questions to their\\nconstituents, so as to carry\\n\\n27\\n00:02:54,366 --> 00:02:59,399\\ntheir concerns back to\\nour nation\\'s capital.\\n\\n28\\n00:02:59,400 --> 00:03:03,667\\nGabby called it \"Congress\\non Your Corner\" --\\n\\n29\\n00:03:03,667 --> 00:03:10,265\\njust an updated version of\\ngovernment of and by and for the people.\\n\\n30\\n00:03:10,265 --> 00:03:18,933\\n(applause)\\n\\n31\\n00:03:18,933 --> 00:03:24,265\\nAnd that quintessentially\\nAmerican scene,\\n\\n32\\n00:03:24,265 --> 00:03:30,032\\nthat was the scene that was\\nshattered by a gunman\\'s bullets.\\n\\n33\\n00:03:30,032 --> 00:03:35,299\\nAnd the six people who lost\\ntheir lives on Saturday --\\n\\n34\\n00:03:35,300 --> 00:03:39,867\\nthey, too, represented\\nwhat is best in us,\\n\\n35\\n00:03:39,866 --> 00:03:42,733\\nwhat is best in America.\\n\\n36\\n00:03:42,734 --> 00:03:44,766\\n(applause)\\n\\n37\\n00:03:44,766 --> 00:03:53,667\\nJudge John Roll served our legal\\nsystem for nearly 40 years.\\n\\n38\\n00:03:53,667 --> 00:03:57,734\\n(applause)\\n\\n39\\n00:03:57,734 --> 00:04:03,200\\nA graduate of this university\\nand a graduate of this law school --\\n\\n40\\n00:04:03,199 --> 00:04:12,599\\n(applause)\\n\\n41\\n00:04:12,599 --> 00:04:15,667\\n-- Judge Roll was recommended\\nfor the federal bench by John\\n\\n42\\n00:04:15,667 --> 00:04:19,165\\nMcCain 20 years ago --\\n\\n43\\n00:04:19,165 --> 00:04:20,699\\n(applause)\\n\\n44\\n00:04:20,699 --> 00:04:26,199\\n-- appointed by President George\\nH.W. Bush and rose to become\\n\\n45\\n00:04:26,199 --> 00:04:28,800\\nArizona\\'s chief federal judge.\\n\\n46\\n00:04:28,800 --> 00:04:32,734\\n(applause)\\n\\n47\\n00:04:32,733 --> 00:04:37,000\\nHis colleagues described him as\\nthe hardest-working judge within\\n\\n48\\n00:04:37,000 --> 00:04:39,766\\nthe Ninth Circuit.\\n\\n49\\n00:04:39,766 --> 00:04:43,233\\nHe was on his way back\\nfrom attending Mass,\\n\\n50\\n00:04:43,233 --> 00:04:47,800\\nas he did every day, when he\\ndecided to stop by and say hi to\\n\\n51\\n00:04:47,800 --> 00:04:50,900\\nhis representative.\\n\\n52\\n00:04:50,899 --> 00:04:55,766\\nJohn is survived by his\\nloving wife, Maureen,\\n\\n53\\n00:04:55,766 --> 00:05:00,632\\nhis three sons and his five\\nbeautiful grandchildren.\\n\\n54\\n00:05:00,632 --> 00:05:09,065\\n(applause)\\n\\n55\\n00:05:09,065 --> 00:05:14,299\\nGeorge and Dorothy Morris\\n-- \"Dot\" to her friends --\\n\\n56\\n00:05:14,300 --> 00:05:19,233\\nwere high school sweethearts who\\ngot married and had two daughters.\\n\\n57\\n00:05:19,233 --> 00:05:22,399\\nThey did everything together --\\ntraveling the open road in their\\n\\n58\\n00:05:22,399 --> 00:05:29,032\\nRV, enjoying what their friends\\ncalled a 50-year honeymoon.\\n\\n59\\n00:05:29,033 --> 00:05:34,500\\nSaturday morning, they went by\\nthe Safeway to hear what their\\n\\n60\\n00:05:34,500 --> 00:05:37,333\\ncongresswoman had to say.\\n\\n61\\n00:05:37,333 --> 00:05:42,533\\nWhen gunfire rang out,\\nGeorge, a former Marine,\\n\\n62\\n00:05:42,533 --> 00:05:46,766\\ninstinctively tried\\nto shield his wife.\\n\\n63\\n00:05:46,766 --> 00:05:55,332\\n(applause)\\n\\n64\\n00:05:55,333 --> 00:05:57,867\\nBoth were shot.\\n\\n65\\n00:05:57,867 --> 00:06:01,467\\nDot passed away.\\n\\n66\\n00:06:01,466 --> 00:06:06,199\\nA New Jersey native, Phyllis\\nSchneck retired to Tucson to\\n\\n67\\n00:06:06,199 --> 00:06:09,165\\nbeat the snow.\\n\\n68\\n00:06:09,165 --> 00:06:12,733\\nBut in the summer,\\nshe would return East,\\n\\n69\\n00:06:12,733 --> 00:06:16,265\\nwhere her world revolved\\naround her three children,\\n\\n70\\n00:06:16,266 --> 00:06:21,934\\nher seven grandchildren and\\n2-year-old great-granddaughter.\\n\\n71\\n00:06:21,934 --> 00:06:26,100\\nA gifted quilter, she\\'d often\\nwork under a favorite tree,\\n\\n72\\n00:06:26,100 --> 00:06:29,333\\nor sometimes she\\'d sew aprons\\nwith the logos of the Jets and\\n\\n73\\n00:06:29,333 --> 00:06:30,734\\nthe Giants --\\n\\n74\\n00:06:30,733 --> 00:06:32,032\\n(laughter)\\n\\n75\\n00:06:32,033 --> 00:06:36,633\\n-- to give out at the\\nchurch where she volunteered.\\n\\n76\\n00:06:36,632 --> 00:06:40,532\\nA Republican, she took\\na liking to Gabby,\\n\\n77\\n00:06:40,533 --> 00:06:42,633\\nand wanted to get\\nto know her better.\\n\\n78\\n00:06:42,632 --> 00:06:52,666\\n(applause)\\n\\n79\\n00:06:52,666 --> 00:06:56,733\\nDorwan and Mavy Stoddard\\ngrew up in Tucson together --\\n\\n80\\n00:06:56,733 --> 00:07:00,699\\nabout 70 years ago.\\n\\n81\\n00:07:00,699 --> 00:07:04,233\\nThey moved apart and started\\ntheir own respective families.\\n\\n82\\n00:07:04,233 --> 00:07:08,800\\nBut after both were widowed they\\nfound their way back here, to,\\n\\n83\\n00:07:08,800 --> 00:07:11,966\\nas one of Mavy\\'s\\ndaughters put it,\\n\\n84\\n00:07:11,966 --> 00:07:14,032\\n\"be boyfriend and\\ngirlfriend again.\"\\n\\n85\\n00:07:14,033 --> 00:07:17,667\\n(laughter)\\n\\n86\\n00:07:17,666 --> 00:07:21,165\\nWhen they weren\\'t out on the\\nroad in their motor home,\\n\\n87\\n00:07:21,165 --> 00:07:23,300\\nyou could find them\\njust up the road,\\n\\n88\\n00:07:23,300 --> 00:07:28,834\\nhelping folks in need at the\\nMountain Avenue Church of Christ.\\n\\n89\\n00:07:28,834 --> 00:07:32,132\\nA retired construction worker,\\nDorwan spent his spare time\\n\\n90\\n00:07:32,132 --> 00:07:36,599\\nfixing up the church\\nalong with his dog, Tux.\\n\\n91\\n00:07:36,600 --> 00:07:42,433\\nHis final act of selflessness\\nwas to dive on top of his wife,\\n\\n92\\n00:07:42,432 --> 00:07:45,466\\nsacrificing his life for hers.\\n\\n93\\n00:07:45,466 --> 00:07:56,699\\n(applause)\\n\\n94\\n00:07:56,699 --> 00:07:59,899\\nEverything -- everything\\n-- Gabe Zimmerman did,\\n\\n95\\n00:07:59,899 --> 00:08:01,532\\nhe did with passion.\\n\\n96\\n00:08:01,533 --> 00:08:05,766\\n(applause)\\n\\n97\\n00:08:05,766 --> 00:08:09,266\\nBut his true passion\\nwas helping people.\\n\\n98\\n00:08:09,266 --> 00:08:14,233\\nAs Gabby\\'s outreach director, he\\nmade the cares of thousands of\\n\\n99\\n00:08:14,233 --> 00:08:18,800\\nher constituents his own, seeing\\nto it that seniors got the\\n\\n100\\n00:08:18,800 --> 00:08:22,934\\nMedicare benefits\\nthat they had earned,\\n\\n101\\n00:08:22,934 --> 00:08:27,000\\nthat veterans got the medals and\\nthe care that they deserved,\\n\\n102\\n00:08:27,000 --> 00:08:32,033\\nthat government was\\nworking for ordinary folks.\\n\\n103\\n00:08:32,033 --> 00:08:37,200\\nHe died doing what he loved --\\ntalking with people and seeing\\n\\n104\\n00:08:37,200 --> 00:08:39,567\\nhow he could help.\\n\\n105\\n00:08:39,567 --> 00:08:43,734\\nAnd Gabe is survived by his\\nparents, Ross and Emily,\\n\\n106\\n00:08:43,734 --> 00:08:47,133\\nhis brother, Ben, and\\nhis fiancée, Kelly,\\n\\n107\\n00:08:47,133 --> 00:08:50,066\\nwho he planned to\\nmarry next year.\\n\\n108\\n00:08:50,066 --> 00:09:01,266\\n(applause)\\n\\n109\\n00:09:01,265 --> 00:09:06,466\\nAnd then there is nine-year-old\\nChristina Taylor Green.\\n\\n110\\n00:09:06,466 --> 00:09:11,966\\nChristina was an A student; she\\nwas a dancer; she was a gymnast;\\n\\n111\\n00:09:11,966 --> 00:09:14,799\\nshe was a swimmer.\\n\\n112\\n00:09:14,799 --> 00:09:18,165\\nShe decided that she wanted to\\nbe the first woman to play in\\n\\n113\\n00:09:18,166 --> 00:09:21,834\\nthe Major Leagues, and as the\\nonly girl on her Little League\\n\\n114\\n00:09:21,833 --> 00:09:24,099\\nteam, no one put it past her.\\n\\n115\\n00:09:24,100 --> 00:09:33,133\\n(applause)\\n\\n116\\n00:09:33,133 --> 00:09:39,667\\nShe showed an appreciation for\\nlife uncommon for a girl her age.\\n\\n117\\n00:09:39,667 --> 00:09:44,567\\nShe\\'d remind her mother,\\n\"We are so blessed.\\n\\n118\\n00:09:44,567 --> 00:09:47,899\\nWe have the best life.\"\\n\\n119\\n00:09:47,899 --> 00:09:51,165\\nAnd she\\'d pay those blessings\\nback by participating in a\\n\\n120\\n00:09:51,166 --> 00:09:58,633\\ncharity that helped children\\nwho were less fortunate.\\n\\n121\\n00:09:58,633 --> 00:10:04,700\\nOur hearts are broken\\nby their sudden passing.\\n\\n122\\n00:10:04,700 --> 00:10:09,533\\nOur hearts are\\nbroken -- and yet,\\n\\n123\\n00:10:09,533 --> 00:10:14,866\\nour hearts also have\\nreason for fullness.\\n\\n124\\n00:10:14,866 --> 00:10:18,632\\nOur hearts are full of hope and\\nthanks for the 13 Americans who\\n\\n125\\n00:10:18,633 --> 00:10:23,633\\nsurvived the shooting, including\\nthe congresswoman many of them\\n\\n126\\n00:10:23,633 --> 00:10:26,400\\nwent to see on Saturday.\\n\\n127\\n00:10:26,399 --> 00:10:29,667\\nI have just come from the\\nUniversity Medical Center,\\n\\n128\\n00:10:29,667 --> 00:10:33,800\\njust a mile from here, where our\\nfriend Gabby courageously fights\\n\\n129\\n00:10:33,799 --> 00:10:37,666\\nto recover even as we speak.\\n\\n130\\n00:10:37,667 --> 00:10:42,500\\nAnd I want to tell you -- her\\nhusband Mark is here and he\\n\\n131\\n00:10:42,500 --> 00:10:49,332\\nallows me to share this with you\\n-- right after we went to visit,\\n\\n132\\n00:10:49,332 --> 00:10:52,432\\na few minutes after we left her\\nroom and some of her colleagues\\n\\n133\\n00:10:52,432 --> 00:10:57,734\\nin Congress were in the room, Gabby\\nopened her eyes for the first\\ntime.\\n\\n134\\n00:10:57,734 --> 00:10:59,667\\n(applause)\\n\\n135\\n00:10:59,667 --> 00:11:02,266\\nGabby opened her eyes\\nfor the first time.\\n\\n136\\n00:11:02,265 --> 00:11:18,733\\n(applause)\\n\\n137\\n00:11:18,734 --> 00:11:20,567\\nGabby opened her eyes.\\n\\n138\\n00:11:20,567 --> 00:11:30,767\\n(applause)\\n\\n139\\n00:11:30,767 --> 00:11:35,100\\nGabby opened her eyes, so I can\\ntell you she knows we are here.\\n\\n140\\n00:11:35,100 --> 00:11:37,000\\nShe knows we love her.\\n\\n141\\n00:11:37,000 --> 00:11:39,966\\nAnd she knows that we are\\nrooting for her through what is\\n\\n142\\n00:11:39,966 --> 00:11:42,432\\nundoubtedly going to\\nbe a difficult journey.\\n\\n143\\n00:11:42,432 --> 00:11:43,667\\nWe are there for her.\\n\\n144\\n00:11:43,667 --> 00:11:59,600\\n(applause)\\n\\n145\\n00:11:59,600 --> 00:12:02,633\\nOur hearts are full of\\nthanks for that good news,\\n\\n146\\n00:12:02,633 --> 00:12:08,734\\nand our hearts are full of\\ngratitude for those who saved others.\\n\\n147\\n00:12:08,734 --> 00:12:11,633\\nWe are grateful to\\nDaniel Hernandez --\\n\\n148\\n00:12:11,633 --> 00:12:12,834\\n(applause)\\n\\n149\\n00:12:12,833 --> 00:12:14,566\\n-- a volunteer in\\nGabby\\'s office.\\n\\n150\\n00:12:14,567 --> 00:12:17,000\\n(applause)\\n\\n151\\n00:12:17,000 --> 00:12:18,600\\nAnd, Daniel, I\\'m\\nsorry, you may deny it,\\n\\n152\\n00:12:18,600 --> 00:12:20,834\\nbut we\\'ve decided you\\nare a hero because --\\n\\n153\\n00:12:20,833 --> 00:12:22,000\\n(applause)\\n\\n154\\n00:12:22,000 --> 00:12:25,100\\n-- you ran through the chaos\\nto minister to your boss,\\n\\n155\\n00:12:25,100 --> 00:12:28,233\\nand tended to her wounds\\nand helped keep her alive.\\n\\n156\\n00:12:28,232 --> 00:12:58,766\\n(applause)\\n\\n157\\n00:12:58,767 --> 00:13:04,033\\nWe are grateful to the men who\\ntackled the gunman as he stopped\\n\\n158\\n00:13:04,033 --> 00:13:05,332\\nto reload.\\n\\n159\\n00:13:05,332 --> 00:13:13,033\\n(applause)\\n\\n160\\n00:13:13,033 --> 00:13:14,567\\nThey\\'re right over there.\\n\\n161\\n00:13:14,567 --> 00:13:49,166\\n(applause)\\n\\n162\\n00:13:49,166 --> 00:13:58,834\\nWe are grateful for\\npetite Patricia Maisch,\\n\\n163\\n00:13:58,833 --> 00:14:01,833\\nwho wrestled away the\\nkiller\\'s ammunition,\\n\\n164\\n00:14:01,833 --> 00:14:04,199\\nand undoubtedly\\nsaved some lives.\\n\\n165\\n00:14:04,200 --> 00:14:33,500\\n(applause)\\n\\n166\\n00:14:33,500 --> 00:14:39,332\\nAnd we are grateful for the\\ndoctors and nurses and first\\n\\n167\\n00:14:39,332 --> 00:14:45,100\\nresponders who worked wonders\\nto heal those who\\'d been hurt.\\n\\n168\\n00:14:45,100 --> 00:14:46,367\\nWe are grateful to them.\\n\\n169\\n00:14:46,366 --> 00:15:14,366\\n(applause)\\n\\n170\\n00:15:14,366 --> 00:15:22,132\\nThese men and women remind us\\nthat heroism is found not only\\n\\n171\\n00:15:22,133 --> 00:15:25,600\\non the fields of battle.\\n\\n172\\n00:15:25,600 --> 00:15:31,332\\nThey remind us that heroism does\\nnot require special training or\\n\\n173\\n00:15:31,332 --> 00:15:34,632\\nphysical strength.\\n\\n174\\n00:15:34,633 --> 00:15:40,500\\nHeroism is here, in the hearts\\nof so many of our fellow\\n\\n175\\n00:15:40,500 --> 00:15:45,767\\ncitizens, all around us, just\\nwaiting to be summoned --\\n\\n176\\n00:15:45,767 --> 00:15:51,900\\nas it was on Saturday morning.\\n\\n177\\n00:15:51,899 --> 00:16:00,567\\nTheir actions, their\\nselflessness poses a challenge\\n\\n178\\n00:16:00,567 --> 00:16:04,033\\nto each of us.\\n\\n179\\n00:16:04,033 --> 00:16:09,700\\nIt raises a question of what,\\nbeyond prayers and expressions\\n\\n180\\n00:16:09,700 --> 00:16:18,033\\nof concern, is required\\nof us going forward.\\n\\n181\\n00:16:18,033 --> 00:16:21,834\\nHow can we honor the fallen?\\n\\n182\\n00:16:21,833 --> 00:16:29,199\\nHow can we be true\\nto their memory?\\n\\n183\\n00:16:29,200 --> 00:16:34,432\\nYou see, when a tragedy\\nlike this strikes,\\n\\n184\\n00:16:34,432 --> 00:16:39,667\\nit is part of our nature\\nto demand explanations --\\n\\n185\\n00:16:39,667 --> 00:16:45,966\\nto try and pose some order on\\nthe chaos and make sense out of\\n\\n186\\n00:16:45,966 --> 00:16:51,066\\nthat which seems senseless.\\n\\n187\\n00:16:51,066 --> 00:16:55,600\\nAlready we\\'ve seen a national\\nconversation commence,\\n\\n188\\n00:16:55,600 --> 00:16:59,533\\nnot only about the motivations\\nbehind these killings,\\n\\n189\\n00:16:59,533 --> 00:17:03,500\\nbut about everything from the\\nmerits of gun safety laws to the\\n\\n190\\n00:17:03,500 --> 00:17:07,532\\nadequacy of our\\nmental health system.\\n\\n191\\n00:17:07,532 --> 00:17:15,065\\nAnd much of this process, of\\ndebating what might be done to\\n\\n192\\n00:17:15,066 --> 00:17:19,133\\nprevent such tragedies\\nin the future,\\n\\n193\\n00:17:19,133 --> 00:17:27,933\\nis an essential ingredient in\\nour exercise of self-government.\\n\\n194\\n00:17:27,933 --> 00:17:38,366\\nBut at a time when our discourse\\nhas become so sharply polarized\\n\\n195\\n00:17:38,366 --> 00:17:43,165\\n-- at a time when we are far too\\neager to lay the blame for all\\n\\n196\\n00:17:43,165 --> 00:17:48,000\\nthat ails the world at the feet\\nof those who happen to think\\n\\n197\\n00:17:48,000 --> 00:17:52,799\\ndifferently than we do -- it\\'s\\nimportant for us to pause for a\\n\\n198\\n00:17:52,799 --> 00:17:59,767\\nmoment and make sure that we\\'re\\ntalking with each other in a way\\n\\n199\\n00:17:59,767 --> 00:18:05,033\\nthat heals, not in\\na way that wounds.\\n\\n200\\n00:18:05,032 --> 00:18:21,299\\n(applause)\\n\\n201\\n00:18:21,299 --> 00:18:27,000\\nScripture tells us that\\nthere is evil in the world,\\n\\n202\\n00:18:27,000 --> 00:18:34,666\\nand that terrible things happen for\\nreasons that defy human understanding.\\n\\n203\\n00:18:34,666 --> 00:18:38,966\\nIn the words of Job,\\n\"When I looked for light,\\n\\n204\\n00:18:38,967 --> 00:18:42,667\\nthen came darkness.\"\\n\\n205\\n00:18:42,666 --> 00:18:48,165\\nBad things happen, and we\\nhave to guard against simple\\n\\n206\\n00:18:48,165 --> 00:18:52,399\\nexplanations in the aftermath.\\n\\n207\\n00:18:52,400 --> 00:18:55,300\\nFor the truth is none of us can\\nknow exactly what triggered this\\n\\n208\\n00:18:55,299 --> 00:18:58,232\\nvicious attack.\\n\\n209\\n00:18:58,232 --> 00:19:02,000\\nNone of us can know with any\\ncertainty what might have\\n\\n210\\n00:19:02,000 --> 00:19:06,032\\nstopped these shots\\nfrom being fired,\\n\\n211\\n00:19:06,032 --> 00:19:14,132\\nor what thoughts lurked in the inner\\nrecesses of a violent man\\'s mind.\\n\\n212\\n00:19:14,133 --> 00:19:19,734\\nYes, we have to examine all\\nthe facts behind this tragedy.\\n\\n213\\n00:19:19,733 --> 00:19:25,366\\nWe cannot and will not be\\npassive in the face of such violence.\\n\\n214\\n00:19:25,366 --> 00:19:28,966\\nWe should be willing to\\nchallenge old assumptions in\\n\\n215\\n00:19:28,967 --> 00:19:34,400\\norder to lessen the prospects\\nof such violence in the future.\\n\\n216\\n00:19:34,400 --> 00:19:45,667\\n(applause)\\n\\n217\\n00:19:45,666 --> 00:19:51,966\\nBut what we cannot do is use\\nthis tragedy as one more\\n\\n218\\n00:19:51,967 --> 00:19:54,700\\noccasion to turn on each other.\\n\\n219\\n00:19:54,700 --> 00:19:58,500\\n(applause)\\n\\n220\\n00:19:58,500 --> 00:19:59,967\\nThat we cannot do.\\n\\n221\\n00:19:59,967 --> 00:20:14,533\\n(applause)\\n\\n222\\n00:20:14,532 --> 00:20:20,065\\nThat we cannot do.\\n\\n223\\n00:20:20,066 --> 00:20:25,767\\nAs we discuss these issues, let\\neach of us do so with a good\\n\\n224\\n00:20:25,767 --> 00:20:29,400\\ndose of humility.\\n\\n225\\n00:20:29,400 --> 00:20:33,867\\nRather than pointing\\nfingers or assigning blame,\\n\\n226\\n00:20:33,866 --> 00:20:40,000\\nlet\\'s use this occasion to\\nexpand our moral imaginations,\\n\\n227\\n00:20:40,000 --> 00:20:43,666\\nto listen to each\\nother more carefully,\\n\\n228\\n00:20:43,666 --> 00:20:49,532\\nto sharpen our instincts for\\nempathy and remind ourselves of\\n\\n229\\n00:20:49,532 --> 00:20:54,132\\nall the ways that our hopes\\nand dreams are bound together.\\n\\n230\\n00:20:54,133 --> 00:21:02,967\\n(applause)\\n\\n231\\n00:21:02,967 --> 00:21:07,300\\nAfter all, that\\'s what most of\\nus do when we lose somebody in\\n\\n232\\n00:21:07,299 --> 00:21:14,200\\nour family -- especially\\nif the loss is unexpected.\\n\\n233\\n00:21:14,200 --> 00:21:17,734\\nWe\\'re shaken out\\nof our routines.\\n\\n234\\n00:21:17,733 --> 00:21:22,366\\nWe\\'re forced to look inward.\\n\\n235\\n00:21:22,366 --> 00:21:28,733\\nWe reflect on the past: Did we\\nspend enough time with an aging\\n\\n236\\n00:21:28,733 --> 00:21:32,066\\nparent, we wonder.\\n\\n237\\n00:21:32,066 --> 00:21:35,799\\nDid we express our gratitude for\\nall the sacrifices that they\\n\\n238\\n00:21:35,799 --> 00:21:38,299\\nmade for us?\\n\\n239\\n00:21:38,299 --> 00:21:44,466\\nDid we tell a spouse just how\\ndesperately we loved them,\\n\\n240\\n00:21:44,467 --> 00:21:50,934\\nnot just once in a while\\nbut every single day?\\n\\n241\\n00:21:50,933 --> 00:21:54,466\\nSo sudden loss causes\\nus to look backward --\\n\\n242\\n00:21:54,467 --> 00:21:58,867\\nbut it also forces\\nus to look forward;\\n\\n243\\n00:21:58,866 --> 00:22:02,767\\nto reflect on the\\npresent and the future,\\n\\n244\\n00:22:02,767 --> 00:22:06,734\\non the manner in which we live\\nour lives and nurture our\\n\\n245\\n00:22:06,733 --> 00:22:11,099\\nrelationships with those\\nwho are still with us.\\n\\n246\\n00:22:11,099 --> 00:22:22,466\\n(applause)\\n\\n247\\n00:22:22,467 --> 00:22:27,533\\nWe may ask ourselves if we\\'ve\\nshown enough kindness and\\n\\n248\\n00:22:27,532 --> 00:22:35,332\\ngenerosity and compassion\\nto the people in our lives.\\n\\n249\\n00:22:35,333 --> 00:22:38,066\\nPerhaps we question whether\\nwe\\'re doing right by our\\n\\n250\\n00:22:38,066 --> 00:22:48,066\\nchildren, or our community,\\nwhether our priorities are in order.\\n\\n251\\n00:22:48,066 --> 00:22:54,467\\nWe recognize our own mortality,\\nand we are reminded that in the\\n\\n252\\n00:22:54,467 --> 00:22:57,700\\nfleeting time we\\nhave on this Earth,\\n\\n253\\n00:22:57,700 --> 00:23:04,100\\nwhat matters is not wealth, or\\nstatus, or power, or fame --\\n\\n254\\n00:23:04,099 --> 00:23:06,966\\nbut rather, how well\\nwe have loved --\\n\\n255\\n00:23:06,967 --> 00:23:08,800\\n(applause)\\n\\n256\\n00:23:08,799 --> 00:23:12,200\\n-- and what small part we have\\nplayed in making the lives of\\n\\n257\\n00:23:12,200 --> 00:23:13,567\\nother people better.\\n\\n258\\n00:23:13,567 --> 00:23:30,467\\n(applause)\\n\\n259\\n00:23:30,467 --> 00:23:35,233\\nAnd that process -- that\\nprocess of reflection,\\n\\n260\\n00:23:35,232 --> 00:23:41,000\\nof making sure we align our\\nvalues with our actions --\\n\\n261\\n00:23:41,000 --> 00:23:46,733\\nthat, I believe, is what a\\ntragedy like this requires.\\n\\n262\\n00:23:46,733 --> 00:23:50,899\\nFor those who were harmed,\\nthose who were killed --\\n\\n263\\n00:23:50,900 --> 00:23:56,967\\nthey are part of our family, an\\nAmerican family 300 million strong.\\n\\n264\\n00:23:56,967 --> 00:24:05,734\\n(applause)\\n\\n265\\n00:24:05,733 --> 00:24:09,567\\nWe may not have known\\nthem personally,\\n\\n266\\n00:24:09,567 --> 00:24:13,933\\nbut surely we see\\nourselves in them.\\n\\n267\\n00:24:13,933 --> 00:24:20,200\\nIn George and Dot,\\nin Dorwan and Mavy,\\n\\n268\\n00:24:20,200 --> 00:24:24,000\\nwe sense the abiding love we\\nhave for our own husbands,\\n\\n269\\n00:24:24,000 --> 00:24:28,767\\nour own wives, our\\nown life partners.\\n\\n270\\n00:24:28,767 --> 00:24:33,967\\nPhyllis -- she\\'s our\\nmom or our grandma;\\n\\n271\\n00:24:33,967 --> 00:24:37,734\\nGabe our brother or son.\\n\\n272\\n00:24:37,733 --> 00:24:42,032\\n(applause)\\n\\n273\\n00:24:42,032 --> 00:24:48,265\\nIn Judge Roll, we recognize not\\nonly a man who prized his family\\n\\n274\\n00:24:48,266 --> 00:24:52,300\\nand doing his job well, but also\\na man who embodied America\\'s\\n\\n275\\n00:24:52,299 --> 00:24:54,032\\nfidelity to the law.\\n\\n276\\n00:24:54,032 --> 00:24:55,500\\n(applause)\\n\\n277\\n00:24:55,500 --> 00:24:59,700\\nAnd in Gabby -- in Gabby,\\nwe see a reflection of our\\n\\n278\\n00:24:59,700 --> 00:25:06,500\\npublic-spiritedness; that desire\\nto participate in that sometimes\\n\\n279\\n00:25:06,500 --> 00:25:10,700\\nfrustrating, sometimes\\ncontentious,\\n\\n280\\n00:25:10,700 --> 00:25:18,133\\nbut always necessary and never-ending\\nprocess to form a more perfect union.\\n\\n281\\n00:25:18,133 --> 00:25:30,533\\n(applause)\\n\\n282\\n00:25:30,532 --> 00:25:39,933\\nAnd in Christina -- in Christina\\nwe see all of our children.\\n\\n283\\n00:25:39,933 --> 00:25:50,000\\nSo curious, so trusting, so\\nenergetic, so full of magic.\\n\\n284\\n00:25:50,000 --> 00:25:54,666\\nSo deserving of our love.\\n\\n285\\n00:25:54,666 --> 00:26:00,299\\nAnd so deserving of\\nour good example.\\n\\n286\\n00:26:00,299 --> 00:26:04,633\\nIf this tragedy prompts\\nreflection and debate --\\n\\n287\\n00:26:04,633 --> 00:26:10,967\\nas it should -- let\\'s make sure\\nit\\'s worthy of those we have lost.\\n\\n288\\n00:26:10,967 --> 00:26:24,432\\n(applause)\\n\\n289\\n00:26:24,432 --> 00:26:28,200\\nLet\\'s make sure it\\'s not on the\\nusual plane of politics and\\n\\n290\\n00:26:28,200 --> 00:26:36,100\\npoint-scoring and pettiness that\\ndrifts away in the next news\\ncycle.\\n\\n291\\n00:26:36,099 --> 00:26:39,000\\nThe loss of these wonderful\\npeople should make every one of\\n\\n292\\n00:26:39,000 --> 00:26:42,500\\nus strive to be better.\\n\\n293\\n00:26:42,500 --> 00:26:45,333\\nTo be better in\\nour private lives,\\n\\n294\\n00:26:45,333 --> 00:26:52,500\\nto be better friends and\\nneighbors and coworkers and parents.\\n\\n295\\n00:26:52,500 --> 00:26:57,299\\nAnd if, as has been\\ndiscussed in recent days,\\n\\n296\\n00:26:57,299 --> 00:27:01,133\\ntheir death helps usher in\\nmore civility in our public\\n\\n297\\n00:27:01,133 --> 00:27:06,000\\ndiscourse, let us remember it\\nis not because a simple lack of\\n\\n298\\n00:27:06,000 --> 00:27:11,032\\ncivility caused this\\ntragedy -- it did not --\\n\\n299\\n00:27:11,032 --> 00:27:15,833\\nbut rather because only a\\nmore civil and honest public\\n\\n300\\n00:27:15,834 --> 00:27:21,100\\ndiscourse can help us face up to\\nthe challenges of our nation in\\n\\n301\\n00:27:21,099 --> 00:27:23,699\\na way that would\\nmake them proud.\\n\\n302\\n00:27:23,700 --> 00:27:58,500\\n(applause)\\n\\n303\\n00:27:58,500 --> 00:28:01,333\\nWe should be civil because we\\nwant to live up to the example\\n\\n304\\n00:28:01,333 --> 00:28:05,432\\nof public servants like John\\nRoll and Gabby Giffords,\\n\\n305\\n00:28:05,432 --> 00:28:09,299\\nwho knew first and foremost\\nthat we are all Americans,\\n\\n306\\n00:28:09,299 --> 00:28:11,866\\nand that we can question\\neach other\\'s ideas without\\n\\n307\\n00:28:11,866 --> 00:28:16,599\\nquestioning each other\\'s love\\nof country and that our task,\\n\\n308\\n00:28:16,599 --> 00:28:20,733\\nworking together, is to\\nconstantly widen the circle of\\n\\n309\\n00:28:20,733 --> 00:28:29,332\\nour concern so that we bequeath the\\nAmerican Dream to future generations.\\n\\n310\\n00:28:29,333 --> 00:28:35,467\\n(applause)\\n\\n311\\n00:28:35,467 --> 00:28:44,066\\nThey believed -- they believed,\\nand I believe that we can be better.\\n\\n312\\n00:28:44,066 --> 00:28:49,733\\nThose who died here, those\\nwho saved life here --\\n\\n313\\n00:28:49,733 --> 00:28:53,232\\nthey help me believe.\\n\\n314\\n00:28:53,232 --> 00:28:58,066\\nWe may not be able to stop\\nall evil in the world,\\n\\n315\\n00:28:58,066 --> 00:29:01,533\\nbut I know that how\\nwe treat one another,\\n\\n316\\n00:29:01,532 --> 00:29:03,666\\nthat\\'s entirely up to us.\\n\\n317\\n00:29:03,666 --> 00:29:06,733\\n(applause)\\n\\n318\\n00:29:06,733 --> 00:29:09,299\\nAnd I believe that for\\nall our imperfections,\\n\\n319\\n00:29:09,299 --> 00:29:14,000\\nwe are full of\\ndecency and goodness,\\n\\n320\\n00:29:14,000 --> 00:29:17,567\\nand that the forces that divide\\nus are not as strong as those\\n\\n321\\n00:29:17,567 --> 00:29:18,933\\nthat unite us.\\n\\n322\\n00:29:18,933 --> 00:29:30,567\\n(applause)\\n\\n323\\n00:29:30,567 --> 00:29:36,400\\nThat\\'s what I believe, in part\\nbecause that\\'s what a child like\\n\\n324\\n00:29:36,400 --> 00:29:40,266\\nChristina Taylor Green believed.\\n\\n325\\n00:29:40,266 --> 00:29:41,933\\n(applause)\\n\\n326\\n00:29:41,933 --> 00:29:49,834\\nImagine -- imagine for a moment,\\nhere was a young girl who was\\n\\n327\\n00:29:49,834 --> 00:29:54,432\\njust becoming aware\\nof our democracy;\\n\\n328\\n00:29:54,432 --> 00:29:59,599\\njust beginning to understand\\nthe obligations of citizenship;\\n\\n329\\n00:29:59,599 --> 00:30:03,766\\njust starting to glimpse the\\nfact that some day she, too,\\n\\n330\\n00:30:03,767 --> 00:30:10,700\\nmight play a part in\\nshaping her nation\\'s future.\\n\\n331\\n00:30:10,700 --> 00:30:14,299\\nShe had been elected\\nto her student council.\\n\\n332\\n00:30:14,299 --> 00:30:19,866\\nShe saw public service as\\nsomething exciting and hopeful.\\n\\n333\\n00:30:19,866 --> 00:30:22,767\\nShe was off to meet\\nher congresswoman,\\n\\n334\\n00:30:22,767 --> 00:30:27,066\\nsomeone she was sure was good\\nand important and might be a\\n\\n335\\n00:30:27,066 --> 00:30:30,066\\nrole model.\\n\\n336\\n00:30:30,066 --> 00:30:35,500\\nShe saw all this through\\nthe eyes of a child,\\n\\n337\\n00:30:35,500 --> 00:30:40,767\\nundimmed by the cynicism or\\nvitriol that we adults all too\\n\\n338\\n00:30:40,767 --> 00:30:46,400\\noften just take for granted.\\n\\n339\\n00:30:46,400 --> 00:30:49,734\\nI want to live up\\nto her expectations.\\n\\n340\\n00:30:49,733 --> 00:30:50,966\\n(applause)\\n\\n341\\n00:30:50,967 --> 00:30:55,600\\nI want our democracy to be as\\ngood as Christina imagined it.\\n\\n342\\n00:30:55,599 --> 00:31:00,567\\nI want America to be as\\ngood as she imagined it.\\n\\n343\\n00:31:00,567 --> 00:31:01,900\\n(applause)\\n\\n344\\n00:31:01,900 --> 00:31:06,400\\nAll of us -- we should do\\neverything we can to make sure\\n\\n345\\n00:31:06,400 --> 00:31:10,533\\nthis country lives up to\\nour children\\'s expectations.\\n\\n346\\n00:31:10,532 --> 00:32:01,933\\n(applause)\\n\\n347\\n00:32:01,933 --> 00:32:05,633\\nAs has already been mentioned,\\nChristina was given to us on\\n\\n348\\n00:32:05,633 --> 00:32:12,299\\nSeptember 11th, 2001, one of\\n50 babies born that day to be\\n\\n349\\n00:32:12,299 --> 00:32:18,633\\npictured in a book\\ncalled \"Faces of Hope.\"\\n\\n350\\n00:32:18,633 --> 00:32:24,299\\nOn either side of her photo in\\nthat book were simple wishes for\\n\\n351\\n00:32:24,299 --> 00:32:27,767\\na child\\'s life.\\n\\n352\\n00:32:27,767 --> 00:32:33,366\\n\"I hope you help those\\nin need,\" read one.\\n\\n353\\n00:32:33,366 --> 00:32:37,232\\n\"I hope you know all the words\\nto the National Anthem and sing\\n\\n354\\n00:32:37,232 --> 00:32:40,099\\nit with your hand\\nover your heart.\"\\n\\n355\\n00:32:40,099 --> 00:32:44,899\\n(applause)\\n\\n356\\n00:32:44,900 --> 00:32:52,200\\n\"I hope you jump\\nin rain puddles.\"\\n\\n357\\n00:32:52,200 --> 00:32:55,799\\nIf there are rain\\npuddles in Heaven,\\n\\n358\\n00:32:55,799 --> 00:32:58,532\\nChristina is jumping\\nin them today.\\n\\n359\\n00:32:58,532 --> 00:33:02,933\\n(applause)\\n\\n360\\n00:33:02,933 --> 00:33:08,799\\nAnd here on this Earth\\n-- here on this Earth,\\n\\n361\\n00:33:08,799 --> 00:33:12,866\\nwe place our hands\\nover our hearts,\\n\\n362\\n00:33:12,866 --> 00:33:17,232\\nand we commit ourselves as\\nAmericans to forging a country\\n\\n363\\n00:33:17,232 --> 00:33:22,567\\nthat is forever worthy of\\nher gentle, happy spirit.\\n\\n364\\n00:33:22,567 --> 00:33:25,933\\nMay God bless and keep those\\nwe\\'ve lost in restful and\\n\\n365\\n00:33:25,933 --> 00:33:27,966\\neternal peace.\\n\\n366\\n00:33:27,967 --> 00:33:32,233\\nMay He love and watch\\nover the survivors.\\n\\n367\\n00:33:32,232 --> 00:33:35,432\\nAnd may He bless the\\nUnited States of America.',\n", + " 'bytes': 28340,\n", + " 'sha1': 'g8ewsumdk7765j3dj14czw3zjfkkkwx',\n", + " 'parent_id': 105057921,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 89134333,\n", + " 'timestamp': '2013-01-28T20:48:17Z',\n", + " 'user': {'id': 38908, 'text': 'LX'},\n", + " 'page': {'id': 15094329,\n", + " 'title': 'President Obama on Death of Osama bin Laden.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/188.228.39.146|188.228.39.146]] ([[User talk:188.228.39.146|talk]]) to last revision by Morn',\n", + " 'text': \"1\\n00:00:00,704 --> 00:00:02,175\\nGood evening\\n\\n2\\n00:00:02,175 --> 00:00:06,952\\nTonight, I can report to the American people, and to the world\\n\\n3\\n00:00:06,952 --> 00:00:11,3\\nthat the United-States has conducted an operation that killed Osama bin Laden\\n\\n4\\n00:00:11,3 --> 00:00:13,672\\nthe leader of Al-Qaeda\\n\\n5\\n00:00:13,672 --> 00:00:21,359\\nand the terrorist who is responsible for the murder of thousands of innocent men, women, and children.\\n\\n6\\n00:00:21,359 --> 00:00:25,204\\nIt was nearly ten years ago that the bright September day was darkened \\n\\n7\\n00:00:25,204 --> 00:00:29,216\\nby the worst attack on the American people in our history.\\n\\n8\\n00:00:29,216 --> 00:00:33,994\\nThe images of 9/11 are seared into our national memory.\\n\\n9\\n00:00:33,994 --> 00:00:38,775\\nHijacked planes cutting through a cloudless September sky\\n\\n10\\n00:00:38,775 --> 00:00:41,784\\nthe twin towers collapsing to the ground\\n\\n11\\n00:00:41,784 --> 00:00:45,059\\nblack smoke billowing up from the Pentagon\\n\\n12\\n00:00:45,059 --> 00:00:49,47\\nthe wreckage of flight 93 in Shanksville, Pennsylvania\\n\\n13\\n00:00:49,47 --> 00:00:55,554\\nwhere the actions of heroic citizens saved even more heartbreak and destruction\\n\\n14\\n00:00:55,554 --> 00:01:00,301\\nAnd yet we know that the worst images are those were unseen to the world\\n\\n15\\n00:01:00,301 --> 00:01:03,175\\nthe empty seat at the dinner table\\n\\n16\\n00:01:03,175 --> 00:01:07,355\\nchildren who were forced to grow up without their mother, or their father\\n\\n17\\n00:01:07,355 --> 00:01:12,534\\nparents who would never know the feeling of their child’s embrace\\n\\n18\\n00:01:12,534 --> 00:01:16,279\\nnearly three thousand citizens taken from us\\n\\n19\\n00:01:16,279 --> 00:01:19,79\\nleaving a gaping hole in our hearts\\n\\n20\\n00:01:19,79 --> 00:01:22,998\\nOn September 11th 2001\\n\\n21\\n00:01:22,998 --> 00:01:24,933\\nin our time of grief\\n\\n22\\n00:01:24,933 --> 00:01:27,41\\nAmerican people came together\\n\\n23\\n00:01:27,41 --> 00:01:29,248\\nWe offered our neighbours a hand\\n\\n24\\n00:01:29,248 --> 00:01:32,255\\nand we offered the wounded our blood\\n\\n25\\n00:01:32,255 --> 00:01:35,465\\nWe reaffirmed our ties to each other\\n\\n26\\n00:01:35,465 --> 00:01:39,007\\nand our love of community and country\\n\\n27\\n00:01:39,007 --> 00:01:41,749\\nOn that day, no matter where we came from\\n\\n28\\n00:01:41,749 --> 00:01:43,753\\nwhat god we prayed to\\n\\n29\\n00:01:43,753 --> 00:01:46,262\\nor what race or ethnicity we were,\\n\\n30\\n00:01:46,262 --> 00:01:50,741\\nwe were united as one American family\\n\\n31\\n00:01:50,741 --> 00:01:54,752\\nWe were also united in our resolve to protect our nation\\n\\n32\\n00:01:54,752 --> 00:02:00,332\\nand to bring those who committed this vicious attack to justice\\n\\n33\\n00:02:00,332 --> 00:02:04,378\\nWe quickly learnt that the 9/11 attacks were carried out by Al-Qaeda.\\n\\n34\\n00:02:04,378 --> 00:02:06,984\\nan organisation headed by Osama bin Laden\\n\\n35\\n00:02:06,984 --> 00:02:09,826\\nwhich had openly declared war on the United States\\n\\n36\\n00:02:09,826 --> 00:02:14,506\\nand was committed to killing innocents in our country and around the globe\\n\\n37\\n00:02:14,506 --> 00:02:17,346\\nAnd so we went to war against Al-Qaeda\\n\\n38\\n00:02:17,346 --> 00:02:22,694\\nto protect our citizens, our friends, and our allies.\\n\\n39\\n00:02:22,694 --> 00:02:27,91\\nOver the last ten years, thanks to the tireless and heroic work of our military\\n\\n40\\n00:02:27,91 --> 00:02:32,856\\nand our counter-terrorism professionals, we have made great strides in that effort\\n\\n41\\n00:02:32,856 --> 00:02:37,233\\nwe have disrupted terrorist attacks and strengthened our homeland defense\\n\\n42\\n00:02:37,233 --> 00:02:39,809\\nIn Afghanistan we removed the Taliban government \\n\\n43\\n00:02:39,809 --> 00:02:43,789\\nwhich had given bin Laden and Al-Qaeda safe haven and support\\n\\n44\\n00:02:43,789 --> 00:02:46,595\\nAnd around the globe we worked with our friends and allies\\n\\n45\\n00:02:46,595 --> 00:02:49,536\\nto capture or kill scores of Al-Qaeda terrorists\\n\\n46\\n00:02:49,536 --> 00:02:54,315\\nincluding several who were part of the 9/11 plot\\n\\n47\\n00:02:54,315 --> 00:02:57,323\\nYet Osama bin Laden avoided capture\\n\\n48\\n00:02:57,323 --> 00:03:01,301\\nand escaped across the Afghan border into Pakistan\\n\\n49\\n00:03:01,301 --> 00:03:04,543\\nMeanwhile Al-Qaeda continued to operate from along that border\\n\\n50\\n00:03:04,543 --> 00:03:09,123\\nand operate through its affiliates around the world\\n\\n51\\n00:03:09,123 --> 00:03:11,496\\nand so shortly after taking office\\n\\n52\\n00:03:11,496 --> 00:03:15,039\\nI directed Leon Panetta, the director of the CIA,\\n\\n53\\n00:03:15,039 --> 00:03:20,756\\nto make the killing or capture of bin Laden the top-priority of our war against Al-Qaeda\\n\\n54\\n00:03:20,756 --> 00:03:26,071\\neven as we continued our broader efforts to disrupt, dismantle, and defeat his network\\n\\n55\\n00:03:26,071 --> 00:03:33,256\\nThen, last August, after years of painstaking work by our intelligence community\\n\\n56\\n00:03:33,256 --> 00:03:36,7\\nI was briefed on a possible lead to bin Laden\\n\\n57\\n00:03:36,7 --> 00:03:41,646\\nIt was far from certain, and it took many months to run this thread to ground\\n\\n58\\n00:03:41,646 --> 00:03:44,055\\nI met repeatedly with my national security team\\n\\n59\\n00:03:44,055 --> 00:03:48,231\\nas we developed more information about the possibility that we had located bin Laden\\n\\n60\\n00:03:48,231 --> 00:03:52,41\\nhiding within a compound deep inside Pakistan\\n\\n61\\n00:03:52,41 --> 00:03:58,227\\nAnd finally, last week, I determined that we had enough intelligence to take action\\n\\n62\\n00:03:58,227 --> 00:04:03,942\\nand authorized an operation to get Osama bin Laden and bring him to justice\\n\\n63\\n00:04:03,942 --> 00:04:10,124\\nToday, at my direction, the United States launched a targeted operation against that compound\\n\\n64\\n00:04:10,124 --> 00:04:13,268\\nin Abbottabad, Pakistan.\\n\\n65\\n00:04:13,268 --> 00:04:18,783\\nThe small team of Americans carried out the operation with extraordinary courage and capability.\\n\\n66\\n00:04:18,783 --> 00:04:21,323\\nNo Americans were harmed.\\n\\n67\\n00:04:21,323 --> 00:04:24,799\\nThey took care to avoid civilian casualties\\n\\n68\\n00:04:24,799 --> 00:04:27,573\\nAfter a fire fight, they killed Osama bin Laden\\n\\n69\\n00:04:27,573 --> 00:04:31,283\\nand took custody of his body.\\n\\n70\\n00:04:31,283 --> 00:04:36,063\\nFor over two decades, bin Laden has been Al-Qaeda's leader and symbol\\n\\n71\\n00:04:36,063 --> 00:04:41,011\\nand has continued to plot attacks against our country and our friends and allies.\\n\\n72\\n00:04:41,011 --> 00:04:44,585\\nThe death of bin Laden marks the most significant achievement to date\\n\\n73\\n00:04:44,585 --> 00:04:47,729\\nin our nations's effort to defeat Al-Qaeda\\n\\n74\\n00:04:47,729 --> 00:04:50,772\\nYet his death does not mark the end of our effort\\n\\n75\\n00:04:50,772 --> 00:04:54,982\\nThere is no doubt that Al-Qaeda will continue to pursue attacks against us\\n\\n76\\n00:04:54,982 --> 00:05:00,799\\nwe must, and we will, remain vigilant at home and abroad\\n\\n77\\n00:05:00,799 --> 00:05:08,254\\nAs we do, we must also reaffirm that the United States is not and never will be at war with Islam.\\n\\n78\\n00:05:08,254 --> 00:05:13,802\\nI have made clear, just as President Bush did shortly after 9/11,\\n\\n79\\n00:05:13,802 --> 00:05:18,078\\nthat our war is not against Islam, that bin Laden was not a Muslim leader\\n\\n80\\n00:05:18,078 --> 00:05:21,022\\nhe was a mass-murderer of Muslims.\\n\\n81\\n00:05:21,188 --> 00:05:24,096\\nIndeed, al-Qaida slaughtered scores of Muslims in many countries\\n\\n82\\n00:05:24,096 --> 00:05:26,169\\nincluding our own.\\n\\n83\\n00:05:26,169 --> 00:05:31,441\\nSo his demise should be welcomed by all who believe in peace and human dignity.\\n\\n84\\n00:05:32,395 --> 00:05:34,706\\nOver the years, I have repeatedly made clear\\n\\n85\\n00:05:34,706 --> 00:05:39,654\\nthat we would take action within Pakistan if we knew where bin Laden was.\\n\\n86\\n00:05:40,146 --> 00:05:41,925\\nThat is what we have done.\\n\\n87\\n00:05:42,079 --> 00:05:47,628\\nBut it is important to note that our counter-terrorism cooperation with Pakistan helped lead us to bin Laden\\n\\n88\\n00:05:48,397 --> 00:05:50,789\\nand the compound where he was hiding.\\n\\n89\\n00:05:51,004 --> 00:05:54,3\\nIndeed, bin Laden had declared war against Pakistan as well\\n\\n90\\n00:05:54,73 --> 00:05:57,613\\nand ordered attacks against the Pakistani people.\\n\\n91\\n00:05:57,89 --> 00:06:04,658\\nTonight, I called President Zardari, and my team has also spoken with their Pakistani counterparts.\\n\\n92\\n00:06:05,043 --> 00:06:09,455\\nThey agree that this is a good and historic day for both of our nations\\n\\n93\\n00:06:09,455 --> 00:06:13,399\\nand going forward, it is essential that Pakistan continue\\n\\n94\\n00:06:13,399 --> 00:06:17,711\\nto join us in the fight against al-Qaeda and its affiliates.\\n\\n95\\n00:06:18,48 --> 00:06:21,074\\nThe American people did not choose this fight.\\n\\n96\\n00:06:21,074 --> 00:06:23,208\\nIt came to our shores.\\n\\n97\\n00:06:23,716 --> 00:06:27,358\\nIt started with the senseless slaughter of our citizens.\\n\\n98\\n00:06:27,911 --> 00:06:32,914\\nAfter nearly ten years of service, struggle, and sacrifice\\n\\n99\\n00:06:33,36 --> 00:06:35,831\\nwe know well the costs of war.\\n\\n100\\n00:06:36,831 --> 00:06:43,95\\nThese efforts weigh on me every time I, as Commander in Chief, have to sign a letter to a family that has lost a loved one\\n\\n101\\n00:06:43,95 --> 00:06:48,897\\nor look into the eyes of a service member who has been gravely wounded.\\n\\n102\\n00:06:48,897 --> 00:06:51,803\\nSo Americans understand the costs of war.\\n\\n103\\n00:06:52,203 --> 00:06:56,684\\nYet, as a country, we will never tolerate our security being threatened\\n\\n104\\n00:06:56,684 --> 00:06:59,979\\nnor stand idly by when our people have been killed.\\n\\n105\\n00:07:00,441 --> 00:07:03,907\\nWe will be relentless in defense of our citizens\\n\\n106\\n00:07:03,907 --> 00:07:06,245\\nand our friends and allies.\\n\\n107\\n00:07:06,245 --> 00:07:09,352\\nWe will be true to the values that make us who we are\\n\\n108\\n00:07:09,967 --> 00:07:16,273\\nand on nights like this one, we can say to those families who have lost loved ones to al-Qaeda's terror:\\n\\n109\\n00:07:16,273 --> 00:07:19,114\\nJustice has been done.\\n\\n110\\n00:07:20,252 --> 00:07:25,523\\nTonight we give thanks to the countless intelligence and counter-terrorism professionals who have worked tirelessly\\n\\n111\\n00:07:25,523 --> 00:07:27,894\\nto achieve this outcome.\\n\\n112\\n00:07:28,063 --> 00:07:32,617\\nThe American people do not see their work, nor know their names\\n\\n113\\n00:07:32,986 --> 00:07:39,295\\nbut tonight, they feel the satisfaction of their work and the result of their pursuit of justice.\\n\\n114\\n00:07:39,772 --> 00:07:42,952\\nWe give thanks for the men who carried out this operation\\n\\n115\\n00:07:42,952 --> 00:07:47,92\\nfor they exemplify the professionalism, patriotism and unparalleled courage\\n\\n116\\n00:07:47,92 --> 00:07:50,417\\nof those who serve our country.\\n\\n117\\n00:07:50,417 --> 00:07:57,12\\nAnd they are part of a generation that has borne the heaviest share of the burden since that September day.\\n\\n118\\n00:07:57,12 --> 00:08:01,448\\nFinally, let me say to the families who lost loved ones on 9/11\\n\\n119\\n00:08:01,833 --> 00:08:04,416\\nthat we have never forgotten your loss\\n\\n120\\n00:08:04,723 --> 00:08:08,47\\nnor wavered in our commitment to see that we do whatever it takes\\n\\n121\\n00:08:08,47 --> 00:08:11,342\\nto prevent another attack on our shores.\\n\\n122\\n00:08:11,727 --> 00:08:17,41\\nAnd tonight, let us think back to the sense of unity that prevailed on 9/11.\\n\\n123\\n00:08:17,81 --> 00:08:21,13\\nI know that it has, at times, frayed.\\n\\n124\\n00:08:21,884 --> 00:08:25,896\\nYet today's achievement is a testament to the greatness of our country\\n\\n125\\n00:08:26,203 --> 00:08:28,932\\nand the determination of the American people.\\n\\n126\\n00:08:29,916 --> 00:08:33,387\\nThe cause of securing our country is not complete, but\\n\\n127\\n00:08:33,387 --> 00:08:39,049\\ntonight we are once again reminded that America can do whatever we set our mind to.\\n\\n128\\n00:08:39,941 --> 00:08:41,758\\nThat is the story of our history.\\n\\n129\\n00:08:42,512 --> 00:08:45,185\\nWhether it is the pursuit of prosperity for our people\\n\\n130\\n00:08:45,569 --> 00:08:48,443\\nor the struggle for equality for all our citizens\\n\\n131\\n00:08:49,043 --> 00:08:52,389\\nour commitment to stand up for our values abroad\\n\\n132\\n00:08:52,774 --> 00:08:56,231\\nand our sacrifices to make the world a safer place.\\n\\n133\\n00:08:57,492 --> 00:09:01,964\\nLet us remember that we can do these things not just because of wealth or power\\n\\n134\\n00:09:02,21 --> 00:09:04,787\\nbut because of who we are.\\n\\n135\\n00:09:04,987 --> 00:09:06,24\\nOne nation\\n\\n136\\n00:09:06,378 --> 00:09:07,382\\nunder God\\n\\n137\\n00:09:07,782 --> 00:09:08,849\\nindivisible\\n\\n138\\n00:09:09,018 --> 00:09:09,988\\nwith liberty\\n\\n139\\n00:09:09,988 --> 00:09:11,91\\nand justice for all.\\n\\n140\\n00:09:12,649 --> 00:09:13,945\\nThank you.\\n\\n141\\n00:09:13,945 --> 00:09:15,193\\nMay God bless you.\\n\\n142\\n00:09:15,193 --> 00:09:17,008\\nAnd may God bless the United States of America.\",\n", + " 'bytes': 12649,\n", + " 'sha1': 'lc3ic9yb2lflva28khtl062az35ppt8',\n", + " 'parent_id': 89128070,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 124108327,\n", + " 'timestamp': '2014-05-16T10:00:24Z',\n", + " 'user': {'text': '85.0.153.118'},\n", + " 'page': {'id': 15099054,\n", + " 'title': 'President Obama on Death of Osama bin Laden.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,704 --> 00:00:02,175\\nGuten Abend!\\n\\n2\\n00:00:02,175 --> 00:00:06,952\\nIch kann dem amerikanischen Volk und der Welt heute Abend berichten,\\n\\n3\\n00:00:06,952 --> 00:00:11,3\\ndass die Vereinigten Staaten eine Operation durchführten, die zum Tod von Osama bin Laden führte.\\n\\n4\\n00:00:11,3 --> 00:00:13,672\\nEr war der Anführer von al-Qaida\\n\\n5\\n00:00:13,672 --> 00:00:21,359\\nund der Terrorist, der für die Ermordung von Tausenden unschuldiger Männer, Frauen und Kindern verantwortlich ist.\\n\\n6\\n00:00:21,359 --> 00:00:25,204\\nEs ist fast zehn Jahre her, als ein heller Septembertag \\n\\n7\\n00:00:25,204 --> 00:00:29,216\\ndurch einen der schlimmsten Angriffe auf das amerikanische Volk in unserer Geschichte verdunkelt wurde.\\n\\n8\\n00:00:29,216 --> 00:00:33,994\\nDie Bilder von 9/11 sind in unser nationales Gedächtnis eingebrannt:\\n\\n9\\n00:00:33,994 --> 00:00:38,775\\nEntführte Flugzeuge schneiden durch einen wolkenlosen Septemberhimmel,\\n\\n10\\n00:00:38,775 --> 00:00:41,784\\ndie Zwillingstürme stürzen ein,\\n\\n11\\n00:00:41,784 --> 00:00:45,059\\nschwarzer Rauch steigt vom Pentagon auf,\\n\\n12\\n00:00:45,059 --> 00:00:49,47\\ndas Wrack von Flug 93 in Shanksville, Pennsylvania,\\n\\n13\\n00:00:49,47 --> 00:00:55,554\\nwo das Handeln von heldenmutigen Bürgern noch mehr Herzschmerz und Zerstörung ersparte.\\n\\n14\\n00:00:55,554 --> 00:01:00,301\\nUnd doch wissen wir, dass die schlimmsten Bilder von der Welt nicht gesehen wurden:\\n\\n15\\n00:01:00,301 --> 00:01:03,175\\nDer leere Platz am Esstisch,\\n\\n16\\n00:01:03,175 --> 00:01:07,355\\nKinder, die dazu gezwungen waren ohne ihre Mutter oder Vater aufzuwachsen,\\n\\n17\\n00:01:07,355 --> 00:01:12,534\\nEltern, die nie das Gefühl der Umarmung ihres Kindes kennen werden.\\n\\n18\\n00:01:12,534 --> 00:01:16,279\\nFast dreitausend Bürger sind uns entrissen worden,\\n\\n19\\n00:01:16,279 --> 00:01:19,79\\nsie lassen ein klaffendes Loch in unseren Herzen zurück.\\n\\n20\\n00:01:19,79 --> 00:01:22,998\\nAm 11. September 2001,\\n\\n21\\n00:01:22,998 --> 00:01:24,933\\nin unserer Zeit der Trauer,\\n\\n22\\n00:01:24,933 --> 00:01:27,41\\nhielten die amerikanischen Menschen zusammen:\\n\\n23\\n00:01:27,41 --> 00:01:29,248\\nWir boten unseren Nachbarn eine Hand\\n\\n24\\n00:01:29,248 --> 00:01:32,255\\nund wir boten den Verwundeten unser Blut an.\\n\\n25\\n00:01:32,255 --> 00:01:35,465\\nWir bekräftigten unsere Beziehungen zueinander\\n\\n26\\n00:01:35,465 --> 00:01:39,007\\nund unsere Liebe zur Gemeinschaft und zum Land.\\n\\n27\\n00:01:39,007 --> 00:01:41,749\\nAn diesem Tag, egal woher wir kamen,\\n\\n28\\n00:01:41,749 --> 00:01:43,753\\nzu welchem Gott wir beteten\\n\\n29\\n00:01:43,753 --> 00:01:46,262\\noder welcher Rasse oder ethnischen Herkunft wir angehörten, \\n\\n30\\n00:01:46,262 --> 00:01:50,741\\nwir waren in einer amerikanischen Familie vereint.\\n\\n31\\n00:01:50,741 --> 00:01:54,752\\nWir waren auch in unserer Entschlossenheit vereint, um unsere Nation zu schützen\\n\\n32\\n00:01:54,752 --> 00:02:00,332\\nund jene, die diesen teuflischen Angriff verübten, der Gerechtigkeit zuzuführen.\\n\\n33\\n00:02:00,332 --> 00:02:04,378\\nWir erfuhren schnell, dass die 9/11-Angriffe von al-Qaida durchgeführt wurden;\\n\\n34\\n00:02:04,378 --> 00:02:06,984\\neine Organisation, die von Osama bin Laden geleitet wurde,\\n\\n35\\n00:02:06,984 --> 00:02:09,826\\ndie den Vereinigten Staaten offen den Krieg erklärte\\n\\n36\\n00:02:09,826 --> 00:02:14,506\\nund die es darauf abgesehen hatte, Unschuldige in unserem Land und rund um den Globus zu töten.\\n\\n37\\n00:02:14,506 --> 00:02:17,346\\nUnd daher schritten wir zum Krieg gegen al-Qaida,\\n\\n38\\n00:02:17,346 --> 00:02:22,694\\num unsere Bürger, unsere Freunde und unsere Verbündeten zu schützen.\\n\\n39\\n00:02:22,694 --> 00:02:27,91\\nWir haben in den letzten zehn Jahren, dank der unermüdlichen und heldenhaften Arbeit unserer Fachleute im militärischen\\n\\n40\\n00:02:27,91 --> 00:02:32,856\\nund Anti-Terrorismus-Bereich, große Fortschritte in diesem Bestreben gemacht.\\n\\n41\\n00:02:32,856 --> 00:02:37,233\\nWir haben terroristische Anschläge verhindert und unsere Heimatverteidigung gestärkt.\\n\\n42\\n00:02:37,233 --> 00:02:39,809\\nIn Afghanistan haben wir die Taliban-Regierung gestürzt,\\n\\n43\\n00:02:39,809 --> 00:02:43,789\\ndie bin Laden und al-Qaida Zuflucht, Sicherheit, Unterstützung und Hoffnung gab.\\n\\n44\\n00:02:43,789 --> 00:02:46,595\\nWeltweit haben wir mit unseren Verbündeten und Freunden zusammengearbeitet,\\n\\n45\\n00:02:46,595 --> 00:02:49,536\\nviele al-Qaida-Terroristen festzunehmen oder zu töten,\\n\\n46\\n00:02:49,536 --> 00:02:54,315\\ndarunter mehrere, die in den Anschlag vom 11. September involviert waren.\\n\\n47\\n00:02:54,315 --> 00:02:57,323\\nDoch es ist Osama bin Laden gelungen der Festnahme zu entgehen\\n\\n48\\n00:02:57,323 --> 00:03:01,301\\nund nach Pakistan zu flüchten.\\n\\n49\\n00:03:01,301 --> 00:03:04,543\\nZwischenzeitlich agierte al-Qaida weiterhin von der Grenze aus\\n\\n50\\n00:03:04,543 --> 00:03:09,123\\nund auch mit Hilfe ihrer Verbündeten auf der ganzen Welt.\\n\\n51\\n00:03:09,123 --> 00:03:11,496\\nAlso habe ich Leon Panetta,\\n\\n52\\n00:03:11,496 --> 00:03:15,039\\nden Direktor der CIA, angewiesen\\n\\n53\\n00:03:15,039 --> 00:03:20,756\\ndie Festnahme oder Tötung bin Ladens zur höchsten Priorität im Kampf gegen al-Qaida zu machen.\\n\\n54\\n00:03:20,756 --> 00:03:26,071\\nGleichzeitig unternahmen wir umfassende Maßnahmen, um sein Netzwerk zu stören, zu zerschlagen, zu besiegen.\\n\\n55\\n00:03:26,071 --> 00:03:33,256\\nDann, im August letzten Jahres, nach Jahren der unermüdlichen Arbeit unserer Nachrichtendienste,\\n\\n56\\n00:03:33,256 --> 00:03:36,7\\nwurde ich über eine mögliche Spur zu bin Laden informiert.\\n\\n57\\n00:03:36,7 --> 00:03:41,646\\nEs war keineswegs sicher, und es dauerte viele Monate der Sache nachzugehen.\\n\\n58\\n00:03:41,646 --> 00:03:44,055\\nWiederholt traf ich mich mit dem Team für nationale Sicherheit,\\n\\n59\\n00:03:44,055 --> 00:03:48,231\\nals sich die Informationen verdichteten, dass wir bin Laden möglicherweise aufgespürt hatten,\\n\\n60\\n00:03:48,231 --> 00:03:52,41\\nund zwar in einem Komplex tief in Pakistan.\\n\\n61\\n00:03:52,41 --> 00:03:58,227\\nUnd letzte Woche, schließlich, beschloss ich dass wir genug informiert waren, um handeln zu können\\n\\n62\\n00:03:58,227 --> 00:04:03,942\\nund genehmigte eine Operation, um Osama bin Laden zu bekommen und ihm das widerfahren zu lassen, was er verdient.\\n\\n63\\n00:04:03,942 --> 00:04:10,124\\nAuf meine Anweisung hin haben die USA heute eine gezielte Operation gegen diese Vereinigung gestartet\\n\\n64\\n00:04:10,124 --> 00:04:13,268\\nund zwar in Abbottabad, Pakistan.\\n\\n65\\n00:04:13,268 --> 00:04:18,783\\nDas kleine amerikanische Team führte den Vorgang mit außergewöhnlichem Mut und Fähigkeit durch.\\n\\n66\\n00:04:18,783 --> 00:04:21,323\\nKein Amerikaner wurde verletzt.\\n\\n67\\n00:04:21,323 --> 00:04:24,799\\nSie haben auch darauf geachtet, zivile Opfer zu vermeiden.\\n\\n68\\n00:04:24,799 --> 00:04:27,573\\nNach einem Gefecht haben sie Osama bin Laden getötet\\n\\n69\\n00:04:27,573 --> 00:04:31,283\\nund nahmen seinen Körper in Gewahrsam.\\n\\n70\\n00:04:31,283 --> 00:04:36,063\\nSeit über zwei Jahrzehnten war bin Laden al-Qaidas Führer und Symbol\\n\\n71\\n00:04:36,063 --> 00:04:41,011\\nund hat weitere Angriffe gegen unser Land und unsere Freunde und Verbündeten geplant.\\n\\n72\\n00:04:41,011 --> 00:04:44,585\\nDer Tod bin Ladens markiert die bedeutendste Leistung bisher\\n\\n73\\n00:04:44,585 --> 00:04:47,729\\nin den Bemühungen unserer Nation, al-Qaida zu besiegen.\\n\\n74\\n00:04:47,729 --> 00:04:50,772\\nAber sein Tod ist nicht das Ende unserer Bemühungen.\\n\\n75\\n00:04:50,772 --> 00:04:54,982\\nEs besteht kein Zweifel darin, dass al-Qaida die Angriffe gegen uns fortsetzt;\\n\\n76\\n00:04:54,982 --> 00:05:00,799\\nwir müssen und werden wachsam bleiben: Daheim und im Ausland.\\n\\n77\\n00:05:00,799 --> 00:05:08,254\\nBei der Durchführung müssen wir uns klar machen, dass sich die Vereinigten Staaten nicht im Krieg mit dem Islam befinden und es nie werden.\\n\\n78\\n00:05:08,254 --> 00:05:13,802\\nIch habe klar herausgestellt, genauso wie es G. W. Bush kurz nach dem 11. September tat,\\n\\n79\\n00:05:13,802 --> 00:05:18,078\\ndass sich unser Krieg nicht gegen den Islam richtet, dass bin Laden kein muslimischer Anführer war;\\n\\n80\\n00:05:18,078 --> 00:05:21,022\\ner war ein Massenmörder von Moslems.\\n\\n81\\n00:05:21,022 --> 0-1:0-1:0-1\\nUnd al-Qaida hat Massen von Moslems in vielen Ländern, auch unserem, abgeschlachtet.',\n", + " 'bytes': 8101,\n", + " 'sha1': '1uz8tetujy5mf7yeaus8bk8vor527r4',\n", + " 'parent_id': 67431462,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 53981430,\n", + " 'timestamp': '2011-05-04T19:39:57Z',\n", + " 'user': {'id': 38908, 'text': 'LX'},\n", + " 'page': {'id': 15105416,\n", + " 'title': 'President Obama on Death of Osama bin Laden.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'fortsadde→fortsatte',\n", + " 'text': '1\\n00:00:00,704 --> 00:00:02,175\\nGod kväll.\\n\\n2\\n00:00:02,175 --> 00:00:06,952\\nI natt kan jag rapportera till det amerikanska folket och till världen–\\n\\n3\\n00:00:06,952 --> 00:00:11,3\\n–att USA har genomfört en operation som dödade Usama bin Ladin–\\n\\n4\\n00:00:11,3 --> 00:00:13,672\\n–al-Qaidas ledare–\\n\\n5\\n00:00:13,672 --> 00:00:21,359\\n–och den terrorist som bär ansvaret för morden på tusentals oskyldiga män, kvinnor och barn.\\n\\n6\\n00:00:21,359 --> 00:00:25,204\\nDet var nästan tio år sedan som den ljusa septemberdagen förmörkades–\\n\\n7\\n00:00:25,204 --> 00:00:29,216\\n–av den värsta attacken mot det amerikanska folket i vår historia.\\n\\n8\\n00:00:29,216 --> 00:00:33,994\\nBilderna från den 11 september har etsat sig fast i vårt nationella medvetande.\\n\\n9\\n00:00:33,994 --> 00:00:38,775\\nKapade plan som skär genom en molnfri septemberhimmel–\\n\\n10\\n00:00:38,775 --> 00:00:41,784\\n–tvillingtornen som störtar samman mot marken–\\n\\n11\\n00:00:41,784 --> 00:00:45,059\\n–svart rök som stiger upp från Pentagon–\\n\\n12\\n00:00:45,059 --> 00:00:49,47\\n–spillrorna av flight 93 i Shanksville i Pennsylvania–\\n\\n13\\n00:00:49,47 --> 00:00:55,554\\n–där hjältemodiga medborgares handlingar förhindrade ytterligare sorg och förstörelse.\\n\\n14\\n00:00:55,554 --> 00:01:00,301\\nOch ändå vet vi att de värsta bilderna är de som inte sågs av omvärlden.\\n\\n15\\n00:01:00,301 --> 00:01:03,175\\nDen tomma platsen vid middagsbordet–\\n\\n16\\n00:01:03,175 --> 00:01:07,355\\n–barn som tvingades växa upp utan sin mor eller sin far–\\n\\n17\\n00:01:07,355 --> 00:01:12,534\\n–föräldrar som aldrig fick uppleva känslan av att bli omkramade av sina barn–\\n\\n18\\n00:01:12,534 --> 00:01:16,279\\n–nästan tretusen medborgare som togs ifrån oss–\\n\\n19\\n00:01:16,279 --> 00:01:19,79\\n–och lämnade ett gapande hål i våra hjärtan.\\n\\n20\\n00:01:19,79 --> 00:01:22,998\\nDen 11 september 2001–\\n\\n21\\n00:01:22,998 --> 00:01:24,933\\n–i vår tid av sorg–\\n\\n22\\n00:01:24,933 --> 00:01:27,41\\n–slöt det amerikanska folket upp.\\n\\n23\\n00:01:27,41 --> 00:01:29,248\\nVi gav våra grannar en hjälpande hand–\\n\\n24\\n00:01:29,248 --> 00:01:32,255\\n–och vi gav vårt blod åt de skadade.\\n\\n25\\n00:01:32,255 --> 00:01:35,465\\nVi bekräftade vårt band till varandra–\\n\\n26\\n00:01:35,465 --> 00:01:39,007\\n–och vår kärlek för vårt samhälle och vårt land.\\n\\n27\\n00:01:39,007 --> 00:01:41,749\\nOavsett varifrån vi kom–\\n\\n28\\n00:01:41,749 --> 00:01:43,753\\n–vilken gud vi bad till–\\n\\n29\\n00:01:43,753 --> 00:01:46,262\\n–och vilken ras eller etnicitet vi tillhörde–\\n\\n30\\n00:01:46,262 --> 00:01:50,741\\n–enades vi den dagen som en amerikansk familj.\\n\\n31\\n00:01:50,741 --> 00:01:54,752\\nVi var också enade i vår beslutsamhet att skydda vår nation–\\n\\n32\\n00:01:54,752 --> 00:02:00,332\\n–och att ställa dem som begick denna våldsamma attack inför rätta.\\n\\n33\\n00:02:00,332 --> 00:02:04,378\\nVi förstod snart att 11-septemberattackerna utförts av al-Qaida–\\n\\n34\\n00:02:04,378 --> 00:02:06,984\\n–en organisation ledd av Usama bin Ladin–\\n\\n35\\n00:02:06,984 --> 00:02:09,826\\n–som öppet hade förklarat krig mot USA–\\n\\n36\\n00:02:09,826 --> 00:02:14,506\\n–och som var beslutna att döda oskyldiga i vårt land och runt om i världen.\\n\\n37\\n00:02:14,506 --> 00:02:17,346\\nSå vi gick till krig mot al-Qaida–\\n\\n38\\n00:02:17,346 --> 00:02:22,694\\n–för att skydda våra medborgare, våra vänner och våra allierade.\\n\\n39\\n00:02:22,694 --> 00:02:27,91\\nTack vare det outtröttliga och hjältemodiga arbetet som utförts av vår militär–\\n\\n40\\n00:02:27,91 --> 00:02:32,856\\n–och våra antiterroristexperter har vi under de senaste tio åren rönt stora framsteg.\\n\\n41\\n00:02:32,856 --> 00:02:37,233\\nVi har hindrat terroristattentat och stärkt vårt hemlands försvar.\\n\\n42\\n00:02:37,233 --> 00:02:39,809\\nI Afghanistan avsatte vi talibanregeringen–\\n\\n43\\n00:02:39,809 --> 00:02:43,789\\n–som hade gett bin Ladin och al-Qaida en fristad och sitt stöd.\\n\\n44\\n00:02:43,789 --> 00:02:46,595\\nOch runt om i världen samarbetade vi med våra vänner och allierade–\\n\\n45\\n00:02:46,595 --> 00:02:49,536\\n–för att fånga eller döda ett antal al-Qaidaterrorister–\\n\\n46\\n00:02:49,536 --> 00:02:54,315\\n–inklusive flera som var delaktiga i 11-septemberdåden.\\n\\n47\\n00:02:54,315 --> 00:02:57,323\\nMen Usama bin Ladin undvek tillfångatagande–\\n\\n48\\n00:02:57,323 --> 00:03:01,301\\n–och flydde över den afghanska gränsen in i Pakistan.\\n\\n49\\n00:03:01,301 --> 00:03:04,543\\nSamtidigt fortsatte al-Qaida att verka från området utmed gränsen–\\n\\n50\\n00:03:04,543 --> 00:03:09,123\\n–och genom sina bundsförvanter runt om i världen.\\n\\n51\\n00:03:09,123 --> 00:03:11,496\\nDärför gav jag kort efter att jag tillträdde–\\n\\n52\\n00:03:11,496 --> 00:03:15,039\\n–en order till Leon Panetta, chef för CIA–\\n\\n53\\n00:03:15,039 --> 00:03:20,756\\n–att göra Usama bin Ladins död eller tillfångatagande till högsta prioritet i vårt krig mot al-Qaida.\\n\\n54\\n00:03:20,756 --> 00:03:26,071\\n–samtidigt som vi fortsatte våra vidare ansträngningar att hindra, upplösa och bekämpa hans nätverk.\\n\\n55\\n00:03:26,071 --> 00:03:33,256\\nSedan, i augusti förra året, efter år av mödosamt arbete för vår underrättelsetjänst–\\n\\n56\\n00:03:33,256 --> 00:03:36,7\\n–informerades jag om ett möjligt spår till bin Ladin.\\n\\n57\\n00:03:36,7 --> 00:03:41,646\\nDet var långt ifrån säkert, och det tog många månader att gå till botten med det här spåret.\\n\\n58\\n00:03:41,646 --> 00:03:44,055\\nJag hade återkommande möten med min arbetsgrupp för nationell säkerhet–\\n\\n59\\n00:03:44,055 --> 00:03:48,231\\n–samtidigt som vi samlade in ytterligare information om möjligheten att vi hade funnit bin Ladin–\\n\\n60\\n00:03:48,231 --> 00:03:52,41\\n–gömd i en anläggning långt inne i Pakistan.\\n\\n61\\n00:03:52,41 --> 00:03:58,227\\nOch till slut, förra veckan, bedömde jag att vi hade tilltäckligt med underrättelseinformation för att handla–\\n\\n62\\n00:03:58,227 --> 00:04:03,942\\n–och jag godkände en operation för att ta Usama bin Ladin och ställa honom inför rätta.\\n\\n63\\n00:04:03,942 --> 00:04:10,124\\nUnder min ledning inledde USA i dag en riktad operation mot anläggningen–\\n\\n64\\n00:04:10,124 --> 00:04:13,268\\ni Abbottabad i Pakistan.\\n\\n65\\n00:04:13,268 --> 00:04:18,783\\nDen lilla styrkan av amerikaner utförde operationen med sällsynt mod och färdighet.\\n\\n66\\n00:04:18,783 --> 00:04:21,323\\nInga amerikaner skadades.\\n\\n67\\n00:04:21,323 --> 00:04:24,799\\nDe var noga med att undvika civila offer.\\n\\n68\\n00:04:24,799 --> 00:04:27,573\\nEfter en eldstrid dödade de Usama bin Ladin–\\n\\n69\\n00:04:27,573 --> 00:04:31,283\\n–och omhändertog hans kropp.\\n\\n70\\n00:04:31,283 --> 00:04:36,063\\nI över två årtionden har bin Ladin varit al-Qaidas ledare och symbol–\\n\\n71\\n00:04:36,063 --> 00:04:41,011\\n–och han har fortsatt att planera attacker mot vårt land och mot våra vänner och allierade.\\n\\n72\\n00:04:41,011 --> 00:04:44,585\\nBin Ladins död utgör den mest betydande bedriften hittills–\\n\\n73\\n00:04:44,585 --> 00:04:47,729\\n–i vår nations ansträngningar för att bekämpa al-Qaida.\\n\\n74\\n00:04:47,729 --> 00:04:50,772\\nMen hans död utgör inte slutet av av våra ansträngningar.\\n\\n75\\n00:04:50,772 --> 00:04:54,982\\nDet råder inget tvivel om att al-Qaida kommer att fortsätta försöken att attackera oss.\\n\\n76\\n00:04:54,982 --> 00:05:00,799\\nVi måste vara – och kommer att vara – fortsatt vaksamma hemma och i utlandet.\\n\\n77\\n00:05:00,799 --> 00:05:08,254\\nSamtidigt måste vi också stå fast vid att USA inte för krig mot islam och inte kommer att göra det.\\n\\n78\\n00:05:08,254 --> 00:05:13,802\\nJag har, i likhet med president Bush efter den 11 september, klargjort–\\n\\n79\\n00:05:13,802 --> 00:05:18,078\\n–att vårt krig inte utkämpas mot islam, för bin Ladin var inte en muslimsk ledare.\\n\\n80\\n00:05:18,078 --> 00:05:21,022\\nHan massmördade muslimer.\\n\\n81\\n00:05:21,188 --> 00:05:24,096\\nAl-Qaida massakrerade åtskilliga muslimer i flera länder–\\n\\n82\\n00:05:24,096 --> 00:05:26,169\\n–inklusive vårt eget.\\n\\n83\\n00:05:26,169 --> 00:05:31,441\\nSå hans död bör välkomnas av alla som tror på fred och mänsklig värdighet.\\n\\n84\\n00:05:32,395 --> 00:05:34,706\\nUnder årens lopp har jag upprepade gånger klargjort–\\n\\n85\\n00:05:34,706 --> 00:05:39,654\\n–att vi skulle agera i Pakistan om vi viste var bin Ladin befann sig.\\n\\n86\\n00:05:40,146 --> 00:05:41,925\\nDet är vad vi har gjort.\\n\\n87\\n00:05:42,079 --> 00:05:47,628\\nMen det är viktigt att notera att vårt antiterrorsamarbete med Pakistan hjälpte till att leda oss till bin Ladin–\\n\\n88\\n00:05:48,397 --> 00:05:50,789\\n–och anläggningen där han gömde sig.\\n\\n89\\n00:05:51,004 --> 00:05:54,3\\nFaktum är att bin Ladin även förklarade krig mot Pakistan–\\n\\n90\\n00:05:54,73 --> 00:05:57,613\\n–och beordrade attacker mot det pakistanska folket.\\n\\n91\\n00:05:57,89 --> 00:06:04,658\\nI natt ringde jag till president Zardari, och mina medarbetare har också talat med sina pakistanska kollegor.\\n\\n92\\n00:06:05,043 --> 00:06:09,455\\nDe är överens om att detta är en bra och historisk dag för båda våra länder–\\n\\n93\\n00:06:09,455 --> 00:06:13,399\\n–och när vi går vidare är det viktigt att Pakistan fortsätter–\\n\\n94\\n00:06:13,399 --> 00:06:17,711\\n–att arbeta med oss i kampen mot al-Qaida och dess bundsförvanter.\\n\\n95\\n00:06:18,48 --> 00:06:21,074\\nDet amerikanska folket valde inte denna kamp.\\n\\n96\\n00:06:21,074 --> 00:06:23,208\\nDen kom till oss.\\n\\n97\\n00:06:23,716 --> 00:06:27,358\\nDen började med en vettlös massaker på våra medborgare.\\n\\n98\\n00:06:27,911 --> 00:06:32,914\\nEfter nästan tio år av tjänstgöring, kamp och uppoffringar–\\n\\n99\\n00:06:33,36 --> 00:06:35,831\\n–är vi väl förtrogna med krigets kostnader.\\n\\n100\\n00:06:36,831 --> 00:06:43,95\\nJag påminns om dessa mödor varje gång jag som överbefälhavare skriver under ett brev till en familj som förlorat en anhörig–\\n\\n101\\n00:06:43,95 --> 00:06:48,897\\n–eller ser en svårt sårad soldat i ögonen.\\n\\n102\\n00:06:48,897 --> 00:06:51,803\\nSå amerikaner inser krigets kostnader.\\n\\n103\\n00:06:52,203 --> 00:06:56,684\\nMen vi som nation kommer aldrig att tolerera att vår säkerhet hotas–\\n\\n104\\n00:06:56,684 --> 00:06:59,979\\n–eller stå passiva när vårt folk har dödats.\\n\\n105\\n00:07:00,441 --> 00:07:03,907\\nVi kommer att vara obevekliga i vårt försvar av våra medborgare–\\n\\n106\\n00:07:03,907 --> 00:07:06,245\\n–och våra vänner och allierade.\\n\\n107\\n00:07:06,245 --> 00:07:09,352\\nVi kommer att vara trogna de värden som gör oss till dem vi är–\\n\\n108\\n00:07:09,967 --> 00:07:16,273\\n–och nätter som dessa kan vi säga till de familjer som förlorat anhöriga till al-Qaidas terror:\\n\\n109\\n00:07:16,273 --> 00:07:19,114\\nRättvisa har skipats.\\n\\n110\\n00:07:20,252 --> 00:07:25,523\\nI natt tackar vi de otaliga underrättelse- och antiterroristexperter som har arbetat outtröttligt\\n\\n111\\n00:07:25,523 --> 00:07:27,894\\n–för att uppnå detta resultat.\\n\\n112\\n00:07:28,063 --> 00:07:32,617\\nDet amerikanska folket ser inte deras arbete och känner inte till deras namn–\\n\\n113\\n00:07:32,986 --> 00:07:39,295\\n–men i natt kan de känna tillfredsställelse med sitt arbete och resultatet av deras strävan efter rättvisa.\\n\\n114\\n00:07:39,772 --> 00:07:42,952\\nVi tackar de män som utförde den här operationen–\\n\\n115\\n00:07:42,952 --> 00:07:47,92\\n–ty de exemplifierar den professionalism, den patriotism och det oöverträffade mod–\\n\\n116\\n00:07:47,92 --> 00:07:50,417\\n–som präglar dem som tjänar vårt land.\\n\\n117\\n00:07:50,417 --> 00:07:57,12\\nOch de är en del av en generation som har burit den tyngsta delen av bördan sedan den där septemberdagen.\\n\\n118\\n00:07:57,12 --> 00:08:01,448\\nTill sist, låt mig säga till familjerna som förlorade anhöriga den 11 september–\\n\\n119\\n00:08:01,833 --> 00:08:04,416\\n–att vi aldrig har glömt er förlust–\\n\\n120\\n00:08:04,723 --> 00:08:08,47\\n–eller tvekat i vår beslutsamhet att göra vad som krävs–\\n\\n121\\n00:08:08,47 --> 00:08:11,342\\n–för att förhindra ännu en attack på vår mark.\\n\\n122\\n00:08:11,727 --> 00:08:17,41\\nOch låt oss i natt tänka tillbaka på den känsla av enighet som rådde den 11 september.\\n\\n123\\n00:08:17,81 --> 00:08:21,13\\nJag vet att den stundtals har ansträngts.\\n\\n124\\n00:08:21,884 --> 00:08:25,896\\nMen dagens bedrift är ett bevis på vårt lands storhet–\\n\\n125\\n00:08:26,203 --> 00:08:28,932\\n–och det amerikanska folkets beslutsamhet.\\n\\n126\\n00:08:29,916 --> 00:08:33,387\\nUppgiften att säkra vårt land är inte fullbordad, men–\\n\\n127\\n00:08:33,387 --> 00:08:39,049\\n–i natt påminns vi än en gång vad USA kan göra vad vi än bestämmer oss för.\\n\\n128\\n00:08:39,941 --> 00:08:41,758\\nDet är skrivet i vår historia.\\n\\n129\\n00:08:42,512 --> 00:08:45,185\\nOavsett om det gäller strävan efter välstånd för vårt folk–\\n\\n130\\n00:08:45,569 --> 00:08:48,443\\n–eller kampen för jämlikhet för alla våra medborgare–\\n\\n131\\n00:08:49,043 --> 00:08:52,389\\n–vår beslutsamhet att stå upp för våra värden i andra länder–\\n\\n132\\n00:08:52,774 --> 00:08:56,231\\n–och våra uppoffringar för att göra världen till en säkrare plats.\\n\\n133\\n00:08:57,492 --> 00:09:01,964\\nLåt oss komma ihåg att vi kan göra dessa saker inte bara på grund av rikedom eller makt–\\n\\n134\\n00:09:02,21 --> 00:09:04,787\\n–utan på grund av vilka vi är.\\n\\n135\\n00:09:04,987 --> 00:09:06,24\\nEn nation–\\n\\n136\\n00:09:06,378 --> 00:09:07,382\\n–under Gud–\\n\\n137\\n00:09:07,782 --> 00:09:08,849\\n–odelbar–\\n\\n138\\n00:09:09,018 --> 00:09:09,988\\n–med frihet–\\n\\n139\\n00:09:09,988 --> 00:09:11,91\\n–och rättvisa för alla.\\n\\n140\\n00:09:12,649 --> 00:09:13,945\\nTack.\\n\\n141\\n00:09:13,945 --> 00:09:15,193\\nGud välsigne er.\\n\\n142\\n00:09:15,193 --> 00:09:17,008\\nOch Gud välsigne Amerikas förenta stater.',\n", + " 'bytes': 13581,\n", + " 'sha1': '61b7ywvxamivewh81x9scd8wfikxhht',\n", + " 'parent_id': 53981349,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 53978728,\n", + " 'timestamp': '2011-05-04T18:30:17Z',\n", + " 'user': {'id': 567203, 'text': 'Uusijani'},\n", + " 'page': {'id': 15113655,\n", + " 'title': 'President Obama on Death of Osama bin Laden.ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:00,704 --> 00:00:01,722 Hyvää iltaa. 2 00:00:01,722 --> 00:00:07,720 Voin tänä iltana kertoa Amerikan kansalle ja maailmalle, että Yhdysvallat on ...'\",\n", + " 'text': '\\ufeff1\\n00:00:00,704 --> 00:00:01,722\\nHyvää iltaa.\\n\\n2\\n00:00:01,722 --> 00:00:07,720\\nVoin tänä iltana kertoa Amerikan kansalle ja maailmalle, että Yhdysvallat on suorittanut\\n\\n3\\n00:00:07,720 --> 00:00:13,689\\noperaation, jossa sai surmansa Osama bin Laden, Al-Qaidan johtaja\\n\\n4\\n00:00:13,689 --> 00:00:20,725\\nja terroristi, joka on vastuussa tuhansien viattomien miesten, naisten ja lasten murhista.\\n\\n5\\n00:00:20,725 --> 00:00:25,718\\nOn kulunut melkein kymmenen vuotta siitä kun kuulas syyskuinen päivä muuttui synkäksi\\n\\n6\\n00:00:25,718 --> 00:00:29,721\\npahimman Yhdysvaltain kansalaisia vastaan suunnatun hyökkäyksen seurauksena.\\n\\n7\\n00:00:29,721 --> 00:00:33,724\\nSyyskuun 11. päivän kuvat paloivat kiinni kansalliseen muistiimme.\\n\\n8\\n00:00:33,724 --> 00:00:40,725\\nKaapatut lentokoneet lentämässä pilvettömän syyskuisen taivaan halki, kaksoistornit romahtamassa maan tasalle,\\n\\n9\\n00:00:40,725 --> 00:00:49,720\\nmusta savu kohoamassa Pentagonista, lento 93:n jäänteet Shanksvillessä Pennsylvaniassa,\\n\\n10\\n00:00:49,720 --> 00:00:55,720\\nmissä urheiden kansalaisten toiminta pelasti meidät vieläkin enemmältä murheelta ja tuholta.\\n\\n11\\n00:00:55,720 --> 00:01:00,719\\nJa kuitenkin tiedämme, että pahimmat kuvat jäivät maailmalta näkemättä:\\n\\n12\\n00:01:00,719 --> 00:01:04,725\\npäivällispöydän tyhjä tuoli, lapset, jotka joutuivat kasvamaan vailla\\n\\n13\\n00:01:04,725 --> 00:01:12,718\\näitiä tai isää, vanhemmat, jotka eivät koskaan tulisi tuntemaan lapsensa syleilyä,\\n\\n14\\n00:01:12,718 --> 00:01:19,723\\nlähes 3 000 kansalaista, jotka riistettiin meiltä jättäen ammottava aukko sydämiimme.\\n\\n15\\n00:01:19,723 --> 00:01:27,717\\nSyyskuun 11. päivänä 2001, surumme hetkellä Amerikan kansa yhdistyi.\\n\\n16\\n00:01:27,717 --> 00:01:32,718\\nTarjouduimme auttamaan naapureitamme, luovutimme haavoittuneille vertamme.\\n\\n17\\n00:01:32,718 --> 00:01:38,726\\nVahvistuimme keskinäisissä suhteissamme sekä yhteisöä ja maatamme kohtaan tuntemassamme rakkaudessa.\\n\\n18\\n00:01:38,726 --> 00:01:45,725\\nSinä päivänä, riippumatta siitä, mistä olimme kotoisin, mitä jumalaa rukoilimme tai mitä rotua tai etnistä taustaa edustimme,\\n\\n19\\n00:01:45,725 --> 00:01:50,723\\nolimme yhtä amerikkalaista perhettä.\\n\\n20\\n00:01:50,723 --> 00:01:54,726\\nOlimme myös yhtä päättäväisyydessämme suojella kansaamme ja saattaa\\n\\n21\\n00:01:54,726 --> 00:02:00,718\\ntämän pahantahtoisen teon suorittajat oikeuden eteen.\\n\\n22\\n00:02:00,718 --> 00:02:04,722\\nSaimme pian selville, että syyskuun 11. päivän iskut oli tehnyt Al-Qaida,\\n\\n23\\n00:02:04,722 --> 00:02:09,726\\njärjestö, jota johti Osama bin Laden, ja joka oli julistanut avoimesti sodan Yhdysvaltoja vastaan,\\n\\n24\\n00:02:09,726 --> 00:02:14,719\\nja joka oli päättänyt surmata viattomia meidän maassamme ja ympäri maailmaa.\\n\\n25\\n00:02:14,719 --> 00:02:22,723\\nNiinpä kävimme sotaan Al-Qaidaa vastaan, suojellaksemme kansalaisiamme, ystäviämme ja liittolaisiamme.\\n\\n26\\n00:02:22,723 --> 00:02:27,726\\nKuluneiden kymmenen vuoden aikana armeijamme sekä terrorisminvastaisten asiantuntijoidemme urhean työn ansiosta\\n\\n27\\n00:02:27,726 --> 00:02:32,725\\nolemme päässeet tuossa pyrkimyksessämme hyvin pitkälle.\\n\\n28\\n00:02:32,725 --> 00:02:37,721\\nOlemme estäneet terrori-iskuja ja vahvistaneet maanpuolustustamme.\\n\\n29\\n00:02:37,721 --> 00:02:43,718\\nAfganistanissa poistimme Taliban-hallinnon, joka oli tarjonnut bin Ladenille ja Al-Qaidalle turvapaikan ja tukea.\\n\\n30\\n00:02:43,718 --> 00:02:48,718\\nJa eri puolilla maailmaa teimme töitä ystäviemme ja liittolaistemme kanssa vangitaksemme tai tappaaksemme\\n\\n31\\n00:02:48,718 --> 00:02:54,719\\njoukoittain Al-Qaida-terroristeja, mukaanlukien useita syyskuun 11. juoneen osallistuneita.\\n\\n32\\n00:02:54,719 --> 00:03:01,720\\nOsama bin Laden ei kuitenkaan jäänyt kiinni, ja hän pakeni Afganistanin rajan yli Pakistaniin.\\n\\n33\\n00:03:01,720 --> 00:03:04,719\\nSillä välin Al-Qaida jatkoi toimintaansa tuon rajan tuntumasta\\n\\n34\\n00:03:04,719 --> 00:03:09,717\\nja toimintaansa kumppaniensa kautta ympäri maailmaa.\\n\\n35\\n00:03:09,717 --> 00:03:14,725\\nNiinpä määräsin pian virkaanastumiseni jälkeen Leon Panettan, CIA:n johtajan,\\n\\n36\\n00:03:14,725 --> 00:03:20,724\\nasettamaan bin Ladenin surmaamisen tai vangitsemisen ensimmäiseksi Al-Qaidan-vastaisen sodan tärkeysjärjestyksessä,\\n\\n37\\n00:03:20,724 --> 00:03:27,720\\nsamalla kun jatkoimme laajempia toimiamme hänen verkostonsa häiritsemiseksi, hajoittamiseksi ja päihittämiseksi.\\n\\n38\\n00:03:27,720 --> 00:03:33,719\\nSitten viime elokuussa, vuosien tuskaisen tiedustelutyön jälkeen,\\n\\n39\\n00:03:33,719 --> 00:03:38,718\\nsain vihjeen, joka mahdollisesti johtaisi bin Ladenin luokse. Se oli kaikkea muuta kuin varmaa,\\n\\n40\\n00:03:38,718 --> 00:03:41,724\\nja tämän vihjeen jäljittäminen kesti useita kuukausia.\\n\\n41\\n00:03:41,724 --> 00:03:45,721\\nTapasin useita kertoja sisäisen turvallisuuden ryhmän sitä mukaa, kun meille kertyi lisää tietoa\\n\\n42\\n00:03:45,721 --> 00:03:51,719\\nmahdollisuudesta, että olisimme paikallistaneet bin Ladenin leirin syvällä Pakistanissa.\\n\\n43\\n00:03:51,719 --> 00:03:58,721\\nJa lopulta viime viikolla päätin, että meillä on riittävästi tiedustelutietoa tarttua toimeen, ja määräsin\\n\\n44\\n00:03:58,721 --> 00:04:03,723\\noperaation ottaa Osama bin Laden kiinni ja tuoda hänet oikeuden eteen.\\n\\n45\\n00:04:03,723 --> 00:04:08,723\\nTänään, minun johdollani, Yhdysvallat käynnisti kohdistetun hyökkäyksen\\n\\n46\\n00:04:08,723 --> 00:04:13,717\\ntuota leiriä vastaan Abbotabadissa, Pakistanissa.\\n\\n47\\n00:04:13,717 --> 00:04:18,722\\nPieni amerikkalaisryhmä suoritti operaation osoittaen poikkeuksellista rohkeutta ja kykyjä.\\n\\n48\\n00:04:18,722 --> 00:04:24,718\\nAmerikkalaisia ei loukkaantunut. Siviiliuhreja vältettiin huolella.\\n\\n49\\n00:04:24,718 --> 00:04:30,722\\nTulitaistelun jälkeen Osama bin Laden tapettiin ja hänen ruumiinsa otettiin huostaan.\\n\\n50\\n00:04:30,722 --> 00:04:35,726\\nYli kaksi vuosikymmentä bin Laden on ollut Al-Qaidan johtaja ja symboli\\n\\n51\\n00:04:35,726 --> 00:04:40,725\\nja on jatkuvasti juoninut maatamme, ystäviämme ja liittolaisiamme vastaan.\\n\\n52\\n00:04:40,725 --> 00:04:45,721\\nBin Ladenin kuolema on tähän mennessä merkittävin virstanpylväs maamme pyrkimyksessä\\n\\n53\\n00:04:45,721 --> 00:04:50,723\\npäihittää Al-Qaida. Hänen kuolemansa ei merkitse pyrkimyksemme loppumista.\\n\\n54\\n00:04:50,723 --> 00:04:55,717\\nEpäilemättä Al-Qaida pyrkii jatkossakin hyökkäämään meitä vastaan.\\n\\n55\\n00:04:55,717 --> 00:05:00,720\\nMeidän tulee pysyä ja me tulemme pysymään valppaina niin kotona kuin ulkomailla.\\n\\n56\\n00:05:00,720 --> 00:05:07,724\\nSamalla meidän tulee myöskin vakuuttaa, ettei Yhdysvallat tule koskaan käymään sotaa islamia vastaan.\\n\\n57\\n00:05:07,724 --> 00:05:15,720\\nOlen tehnyt selväksi, aivan kuten presidentti Bush teki pian syyskuun 11. jälkeen, ettei sotamme ole islamia vastaan.\\n\\n58\\n00:05:15,720 --> 00:05:20,721\\nBin Laden ei ollut muslimijohtaja. Hän oli muslimien joukkomurhaaja.\\n\\n59\\n00:05:20,721 --> 00:05:26,717\\nAl-Qaida todellakin teurasti joukoittain muslimeita monissa maissa, omamme mukaanluettuna.\\n\\n60\\n00:05:26,717 --> 00:05:32,721\\nNiinpä kaikkien rauhaan ja ihmisarvoon uskovien tulisi toivottaa tervetulleeksi uutiset hänen poismenostaan.\\n\\n61\\n00:05:32,721 --> 00:05:37,718\\nMenneinä vuosina olen toistuvasti tehnyt selväksi, että tarttuisimme toimeen Pakistanissa,\\n\\n62\\n00:05:37,718 --> 00:05:41,722\\nmikäli tietäisimme, missä bin Laden on. Niin olemme tehneet.\\n\\n63\\n00:05:41,722 --> 00:05:46,725\\nMutta on tärkeää panna merkille, että terrorisminvastainen yhteistyömme Pakistanin kanssa auttoi johtamaan meidät\\n\\n64\\n00:05:46,725 --> 00:05:50,724\\nbin Ladenin luo ja hänen piilopaikkanaan toimineelle leirille.\\n\\n65\\n00:05:50,724 --> 00:05:58,720\\nBin Laden oli jopa julistanut sodan Pakistanillekin ja määrännyt iskuja pakistanilaisia vastaan.\\n\\n66\\n00:05:58,720 --> 00:06:04,724\\nTänä iltana soitin presidentti Zardarille, ja myös ryhmäni on puhunut pakistanilaiskollegoidensa kanssa.\\n\\n67\\n00:06:04,724 --> 00:06:09,723\\nKaikki ovat samaa mieltä siitä, että tämä on hyvä ja historiallinen päivä molemmille kansoille.\\n\\n68\\n00:06:09,723 --> 00:06:13,721\\nOn ehdottoman tärkeää, että Pakistan on jatkossakin\\n\\n69\\n00:06:13,721 --> 00:06:17,726\\nmukana taistelussamme Al-Qaidaa ja sen kumppaneita vastaan.\\n\\n70\\n00:06:17,726 --> 00:06:23,724\\nYhdysvaltain kansa ei valinnut tätä taistelua. Se tuli meidän maallemme,\\n\\n71\\n00:06:23,724 --> 00:06:28,717\\nja sai alkunsa kansalaistemme järjettömästä teurastuksesta.\\n\\n72\\n00:06:28,717 --> 00:06:35,725\\nKymmenen palvelun, kamppailun ja uhrausten vuotta myöhemmin tunnemme hyvin sodan hinnan.\\n\\n73\\n00:06:35,725 --> 00:06:41,724\\nNuo ponnistelut painavat hartaillani joka kerta, kun armeijan ylipäällikkönä joudun kirjoittamaan nimeni kirjeeseen\\n\\n74\\n00:06:41,724 --> 00:06:48,723\\nperheelle, joka on menettänyt rakkaan, tai katsomaan silmiin sotilasta, joka on pahoin haavoittunut.\\n\\n75\\n00:06:48,723 --> 00:06:52,720\\nJoten amerikkalaiset ymmärtävät sodan hinnan.\\n\\n76\\n00:06:52,720 --> 00:06:56,725\\nSiltikään emme maana tule ikinä suvaitsemaan turvallisuutemme uhkaamista,\\n\\n77\\n00:06:56,725 --> 00:07:00,723\\nemmekä katselemaan sivusta kuinka kansalaisiamme surmataan.\\n\\n78\\n00:07:00,723 --> 00:07:06,717\\nOlemme periksiantamattomia kansalaistemme, ystäviemme ja liittolaistemme puolustamisessa.\\n\\n79\\n00:07:06,717 --> 00:07:11,726\\nOlemme uskollisia arvoille, jotka tekevät meistä sen keitä olemme. Ja tällaisina iltoina\\n\\n80\\n00:07:11,726 --> 00:07:20,722\\nvoimme sanoa niille perheille, jotka ovat menettäneet rakkaimpiaan Al-Qaidan terrorille, että oikeus on toteutunut.\\n\\n81\\n00:07:20,722 --> 00:07:22,726\\nTänä iltana kiitämme niitä lukemattomia terrorisminvastaisia ja\\n\\n82\\n00:07:22,726 --> 00:07:28,717\\ntiedusteluasiantuntijoita, jotka ovat työskennelleet väsymättä päästäkseen tähän tulokseen.\\n\\n83\\n00:07:28,717 --> 00:07:32,722\\nYhdysvaltain kansa ei näe heidän työtään eikä tunne heidän nimiään,\\n\\n84\\n00:07:32,722 --> 00:07:39,725\\nmutta tänä iltana he tuntevat tyydytystä työstään ja oikeudenmukaisuuden tavoittelun tuloksista.\\n\\n85\\n00:07:39,725 --> 00:07:45,720\\nKiitämme operaation suorittaneita miehiä, sillä he ovat esimerkkejä maamme palveluksessa olevien\\n\\n86\\n00:07:45,720 --> 00:07:50,718\\nammattitaidosta, isänmaallisuudesta ja vertaansa vailla olevasta rohkeudesta.\\n\\n87\\n00:07:50,718 --> 00:07:56,722\\nJa he ovat osa sitä sukupolvea, joka on kantanut raskainta taakkaa tuon syyskuisen päivän jälkeen.\\n\\n88\\n00:07:56,722 --> 00:08:01,725\\nLopuksi haluaisin sanoa niille perheille, jotka menettivät rakkaimpiaan syyskuun 11. päivänä,\\n\\n89\\n00:08:01,725 --> 00:08:07,724\\nettemme milloinkaan ole unohtaneet menetystänne, emmekä horjuneet päättäväisyydessämme tehdä\\n\\n90\\n00:08:07,724 --> 00:08:11,726\\nmitä tahansa estääksemme uudet hyökkäykset maassamme.\\n\\n91\\n00:08:11,726 --> 00:08:18,718\\nPalatkaamme tänä iltana mietteissämme siihen yhtenäisyydentunteeseen, joka vallitsi 11. syyskuuta.\\n\\n92\\n00:08:18,718 --> 00:08:21,726\\nTiedän, että se on välillä lientynyt.\\n\\n93\\n00:08:21,726 --> 00:08:26,721\\nTämänpäiväinen saavutus on kuitenkin todiste maamme mahtavuudesta\\n\\n94\\n00:08:26,721 --> 00:08:30,717\\nja Yhdysvaltain kansan päättäväisyydestä.\\n\\n95\\n00:08:30,717 --> 00:08:33,718\\nMaamme turvaamisen hanke ei ole päätöksessään,\\n\\n96\\n00:08:33,718 --> 00:08:39,726\\nmutta tänä iltana olemme jälleen saaneet muistutuksen siitä, että Yhdysvallat pystyy mihin tahansa, minkä päätämme tehdä.\\n\\n97\\n00:08:39,726 --> 00:08:45,723\\nTämä on historiamme tarina. Olipa se sitten vaurauden tavoittelua kansallemme tai\\n\\n98\\n00:08:45,723 --> 00:08:52,723\\nkansalaistemme tasa-arvon puolesta taistelua, edustamiemme arvojen puolustamista ulkomailla\\n\\n99\\n00:08:52,723 --> 00:08:57,721\\nja turvallisemman maailman puolesta tekemiämme uhrauksia.\\n\\n100\\n00:08:57,721 --> 00:09:02,718\\nMuistakaamme, ettemme pysty näihin asioihin pelkästään mammonan tai mahdin avulla,\\n\\n101\\n00:09:02,718 --> 00:09:12,721\\nvaan koska olemme keitä olemme, yksi kansa jumalan varjeluksessa, jakamattomia vapaudessa ja oikeudenmukaisuudessa.\\n\\n102\\n00:09:12,721 --> 00:09:17,719\\nKiitoksia. Jumalan siunausta. Ja jumala siunatkoon Amerikan Yhdysvaltoja.',\n", + " 'bytes': 12150,\n", + " 'sha1': 'gddubbajftgwoufwlseurdihx9thnai',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 149116437,\n", + " 'timestamp': '2015-02-06T03:12:46Z',\n", + " 'user': {'text': '2601:4:5400:A72:31C2:D76B:FAE7:8C34'},\n", + " 'page': {'id': 15116456,\n", + " 'title': 'How to create a Wikipedia article - Right to science and culture.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:02,195 --> 00:00:08,415\\nHi, I\\'m Sage, and I\\'m going to walk you through how to create a Wikipedia article.\\n\\n2\\n00:00:08,415 --> 00:00:11,933\\nThe first step is to decide what you want to write about.\\n\\n2.5\\n00:00:11,933 --> 00:00:17,108\\nIn this tutorial, I\\'ve decided to write about the right to science and culture,\\n\\n3.25\\n00:00:17,108 --> 00:00:20,705\\na human right expressed in the Universal Declaration of Human Rights.\\n\\n4\\n00:00:20,705 --> 00:00:25,81\\nSo the first step is to search Wikipedia to see if there\\'s already an article on this topic.\\n\\n5\\n00:00:25,81 --> 00:00:33,215\\nI\\'m going to go the search box and type \"right to science and culture\" and click \"Go\".\\n\\n6\\n00:00:36,415 --> 00:00:40,01\\nWhat will come up is a list of results.\\n\\n7\\n00:00:40,01 --> 00:00:45,974\\nBut it doesn\\'t take me straight to an article, because there is no article titled \"right to science and culture\".\\n\\n8\\n00:00:45,974 --> 00:00:48,926\\nSo the next thing I\\'m going to do is scroll through these results,\\n\\n8.5\\n00:00:48,926 --> 00:00:54,389\\nto see if there\\'s an article that\\'s on this topic that goes by a different name.\\n\\n9\\n00:00:54,389 --> 00:00:55,729\\nAnd there\\'s not.\\n\\n10\\n00:00:55,729 --> 00:01:01,4\\nSo, there is no article about \"right to science and culture\", by that or any other name.\\n\\n11\\n00:01:01,4 --> 00:01:04,354\\nThe next thing I\\'m going to do is go to this link\\n\\n11.5\\n00:01:04,354 --> 00:01:07,605\\nthat says \"You may create the page \\'Right to science and culture\\'\"\\n\\n12\\n00:01:07,605 --> 00:01:13,548\\nand the link is red. Red links in Wikipedia mean there\\'s no article on that topic.\\n\\n13\\n00:01:13,548 --> 00:01:19,692\\nSo, when I click this, what comes up is just a blank editing box.\\n\\n14\\n00:01:19,692 --> 00:01:23,733\\nThis is where you compose a Wikipedia article.\\n\\n15\\n00:01:23,733 --> 00:01:28,641\\nSo, the first thing you need in a Wikipedia article is the introductory sentence.\\n\\n16\\n00:01:28,641 --> 00:01:36,866\\nThe introductory sentence is a short defintion of what this topic is and what this is going to be about.\\n\\n17\\n00:01:36,866 --> 00:01:42,22\\nSo I\\'ve already composed mine, which I will paste in.\\n\\n18\\n00:01:44,835 --> 00:01:46,138\\n\"The right to science and culture\\n\\n18.5\\n00:01:46,138 --> 00:01:51,358\\nis a human right claimed in the Universal Declaration of Human Rights and related documents\\n\\n18.75\\n00:01:51,358 --> 00:01:54,435\\nwhich says that everyone has a right to participate in culture,\\n\\n18.875\\n00:01:54,435 --> 00:01:56,441\\nto benefit from scientific progress,\\n\\n18.9375\\n00:01:56,441 --> 00:02:00,508\\nand to have a stake in their own contributions to science and culture.\"\\n\\n19\\n00:02:01,108 --> 00:02:04,148\\nNow, at the bare minimum, this could be a Wikipedia article.\\n\\n20\\n00:02:04,148 --> 00:02:09,365\\nI could come down here and click \"Save\", and it would be live.\\n\\n21\\n00:02:09,365 --> 00:02:13,815\\nBut, that\\'s not all it takes to get a Wikipedia article to stick around.\\n\\n22\\n00:02:13,815 --> 00:02:17,102\\nSo let\\'s click \"Show preview\" and see what that would look like.\\n\\n23\\n00:02:17,671 --> 00:02:20,846\\nIt\\'s just this bare text that I typed in.\\n\\n24\\n00:02:20,846 --> 00:02:25,338\\nAnd that doesn\\'t look very much like what a typical Wikipedia article looks like.\\n\\n25\\n00:02:25,338 --> 00:02:29,82\\nSo, the first thing is, it\\'s not very well-developed.\\n\\n26\\n00:02:29,82 --> 00:02:34,846\\nSo, I want to flesh this out a little bit more, and I want to do that based on sources.\\n\\n27\\n00:02:34,846 --> 00:02:39,385\\nSo, I found this article, \"The Right to Science and Culture\" by a legal scholar,\\n\\n28\\n00:02:39,385 --> 00:02:44,154\\nthat basically lays out what different people have said about the right to science and culture,\\n\\n29\\n00:02:44,154 --> 00:02:46,195\\nhow it\\'s been interpreted.\\n\\n30\\n00:02:46,333 --> 00:02:48,918\\nAnd I\\'ve looked through that,\\n\\n30.75\\n00:02:48,918 --> 00:02:57,898\\nand what I found out is that this right is enshrined in two important human rights documents,\\n\\n31.5\\n00:02:57,898 --> 00:03:00,128\\nthe Universal Declaration of Human Rights,\\n\\n33\\n00:03:00,128 --> 00:03:05,456\\nand the International Covenant on Economic, Social and Cultural Rights,\\n\\n34\\n00:03:05,456 --> 00:03:08,641\\nand it has slightly different language in each place.\\n\\n35\\n00:03:08,641 --> 00:03:12,025\\nAnd so, what I want to do is put that into the article,\\n\\n36\\n00:03:12,025 --> 00:03:14,226\\nsay where it\\'s found.\\n\\n37\\n00:03:14,226 --> 00:03:18,143\\nSo I\\'ve composed that already, and I\\'m going to paste that in.\\n\\n38\\n00:03:18,143 --> 00:03:22\\n\"It is expressed in Article 27 of the Universal Declaration of Human Rights:\",\\n\\n39\\n00:03:22 --> 00:03:27,385\\nand then here I have exactly what that part of the Universal Declaration says.\\n\\n40\\n00:03:27,385 --> 00:03:30,466\\nAnd then, \"Similar language appears in Article 15\\n\\n40.5\\n00:03:30,466 --> 00:03:34,066\\nof the International Covenant on Economic, Social and Cultural Rights,\\n\\n41\\n00:03:34,066 --> 00:03:36,128\\na treaty that many nations have signed,\"\\n\\n42\\n00:03:36,128 --> 00:03:40,651\\nand then I paste in exactly what that part says.\\n\\n43\\n00:03:40,651 --> 00:03:43,081\\nAnd the next thing that I want to do is\\n\\n44\\n00:03:43,081 --> 00:03:48,533\\nexpand a little bit about what I learned on this article about the right to science and culture.\\n\\n45\\n00:03:48,533 --> 00:03:54,621\\nAnd so I composed a few sentences that basically explain the gist of it.\\n\\n46\\n00:03:54,621 --> 00:03:56,543\\n\"The concept of a right to science and culture\\n\\n47\\n00:03:56,543 --> 00:04:00,543\\nhas received relatively little attention from legal scholars and human rights activists,\\n\\n48\\n00:04:00,543 --> 00:04:05,333\\nand there is no widely accepted interpretation of what the right entails in practice.\\n\\n49\\n00:04:05,333 --> 00:04:09,538\\nMembers of the access to knowledge movement have argued that the right to science and culture\\n\\n50\\n00:04:09,538 --> 00:04:12,575\\nis in tension with overly broad intellectual property rights\\n\\n51\\n00:04:12,575 --> 00:04:15,031\\nthat severely limit the ability of many people \\n\\n52\\n00:04:15,031 --> 00:04:19,62\\nto participate in cultural life and benefit from progress in science and technology.\"\\n\\n53\\n00:04:20,466 --> 00:04:22,354\\nSo that\\'s a reasonable short article now.\\n\\n54\\n00:04:22,354 --> 00:04:26,404\\nIf I click preview again, I can see that there\\'s a fair bit of text.\\n\\n55\\n00:04:26,404 --> 00:04:28,702\\nBut it doesn\\'t look great.\\n\\n56\\n00:04:28,702 --> 00:04:33,385\\nSo, the next thing I want to do is start prettying this up.\\n\\n57\\n00:04:33,385 --> 00:04:39,2\\nThe first thing to do is the title of the article, and it appears in the first sentence, should be bold.\\n\\n58\\n00:04:39,2 --> 00:04:44,841\\nSo I\\'m going to make it bold by highlighting this title, \"the right to science and culture,\"\\n\\n59\\n00:04:44,841 --> 00:04:47,364\\nand clicking the B, bold.\\n\\n60\\n00:04:47,364 --> 00:04:53,866\\nAnd what it does is, it puts three single quotation marks (<nowiki>\\'\\'\\'</nowiki>) on each side of the words.\\n\\n61\\n00:04:53,866 --> 00:04:57,42\\nThat\\'s the Wikipedia markup that makes something bold.\\n\\n62\\n00:04:57,42 --> 00:05:00,066\\nSo if I go down here and click preview again,\\n\\n63\\n00:05:01,343 --> 00:05:03,343\\nwe\\'ll see that now it\\'s bold.\\n\\n64\\n00:05:03,851 --> 00:05:08,435\\nThe next thing I want to do is create some links to other articles,\\n\\n65\\n00:05:08,435 --> 00:05:12,862\\nso that people will be able to click from this article to related topics.\\n\\n66\\n00:05:12,862 --> 00:05:16,554\\nSo, I think \"Universal Declaration of Human Rights\" is something\\n\\n66.5\\n00:05:16,554 --> 00:05:18,475\\nthat someone may want to read about.\\n\\n67\\n00:05:18,475 --> 00:05:23,734\\nSo I\\'m going to put - so I can do the same thing, actually.\\n\\n68\\n00:05:23,734 --> 00:05:29,646\\nHighlight it, and click this link button, internal link.\\n\\n69\\n00:05:29,646 --> 00:05:35,204\\nAnd what it does is, it puts opening and closing square brackets (<nowiki>[[</nowiki>, <nowiki>]]</nowiki>) around the words.\\n\\n70\\n00:05:35,204 --> 00:05:41,708\\nAnd that is the Wikipedia markup to create a link to the article of that title.\\n\\n71\\n00:05:41,708 --> 00:05:46,702\\nSo, other things that I want to give similar treatment to include the\\n\\n72\\n00:05:46,702 --> 00:05:54,697\\nInternational Covenant, link that, and...\\n\\n72.25\\n00:05:54,697 --> 00:05:57,558\\nmaybe...\\n\\n72.5\\n00:05:57,558 --> 00:05:59,712\\naccess to knowledge movement.\\n\\n73\\n00:05:59,712 --> 00:06:05,789\\nThat\\'s a social movement that is related to this topic.\\n\\n74\\n00:06:05,789 --> 00:06:10,523\\nSo now I\\'m going to click \"Preview\", and we\\'ll see what we have here.\\n\\n75\\n00:06:10,523 --> 00:06:12,185\\nGreat, these are all blue links,\\n\\n76\\n00:06:12,185 --> 00:06:16,774\\nwhich means that there\\'s articles associated with each of these things that I\\'ve linked.\\n\\n77\\n00:06:17,543 --> 00:06:19,4\\nSo our article\\'s coming along,\\n\\n78\\n00:06:19,4 --> 00:06:24,2\\nbut it\\'s not likely to stick around unless I cite my sources.\\n\\n79\\n00:06:24,2 --> 00:06:26,702\\nSo the very simplest way that I can do this\\n\\n80\\n00:06:26,702 --> 00:06:28,518\\nis to create a new section,\\n\\n81\\n00:06:28,518 --> 00:06:34,785\\nwhich I do by two equal signs (<nowiki>==</nowiki>), followed by the name of the section, \"References\",\\n\\n82\\n00:06:34,785 --> 00:06:37,431\\nthen two more equal signs (<nowiki>==</nowiki>).\\n\\n83\\n00:06:37,431 --> 00:06:39,523\\nThis will create a new section, and\\n\\n84\\n00:06:39,523 --> 00:06:41,785\\nI want to cite this paper.\\n\\n85\\n00:06:41,785 --> 00:06:46,358\\nSo, I go down and there\\'s actually a suggested citation format right here.\\n\\n86\\n00:06:46,358 --> 00:06:49,825\\nSo it\\'s just basically a standard bibliographic citation,\\n\\n87\\n00:06:49,825 --> 00:06:52,738\\nand I\\'m going to paste that in.\\n\\n88\\n00:06:54,523 --> 00:06:58,979\\nNow let\\'s see what our page looks like.\\n\\n89\\n00:07:00,133 --> 00:07:03,528\\nSo, at the minimum, if I saved it right now,\\n\\n90\\n00:07:03,528 --> 00:07:05,738\\nthis would probably stick around, because\\n\\n91\\n00:07:05,738 --> 00:07:12,02\\nit\\'s a basic article that looks okay, has wiki links in it,\\n\\n92\\n00:07:12,02 --> 00:07:14,174\\nand it also has a reference,\\n\\n93\\n00:07:14,174 --> 00:07:17,856\\nshowing where this information came from so that people can check\\n\\n94\\n00:07:17,856 --> 00:07:20,215\\nand make sure I didn\\'t just make it up myself.\\n\\n95\\n00:07:20,215 --> 00:07:25,543\\nSo actually I\\'m going to do that and go ahead and click \"Save page\".\\n\\n96\\n00:07:26,851 --> 00:07:29,564\\nIt says \"You have not provided an edit summary,\"\\n\\n97\\n00:07:29,564 --> 00:07:33,281\\nso I\\'m going to go down here to the Edit summary box and say,\\n\\n98\\n00:07:33,281 --> 00:07:39,954\\n\"new article about a human right\",\\n\\n98.5\\n00:07:39,954 --> 00:07:44,118\\nand click \"Save page\".\\n\\n99\\n00:07:44,118 --> 00:07:47,446\\nSo now I\\'ve created a Wikipedia article.\\n\\n100\\n00:07:47,446 --> 0-1:0-1:0-1\\nIt\\'s that simple.',\n", + " 'bytes': 10585,\n", + " 'sha1': 'ofawwdsxnpxnlieds3bhvdsqog0lafo',\n", + " 'parent_id': 134271954,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 599884364,\n", + " 'timestamp': '2021-10-18T20:37:24Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15265674,\n", + " 'title': 'Wikipedia video tutorial-1-Editing-en.ogv.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'the overall update of subtitles',\n", + " 'text': '1\\n00:00:00,938 --> 00:00:04,988\\nЗдраво! Јас сум Тереза. Драго ми\\nе што ве гледам тука на Википедија!\\n\\n2\\n00:00:05,129 --> 00:00:08,004\\nКако што можеби знаете,\\nВикипедија е слободна енциклопедија\\n\\n3\\n00:00:08,021 --> 00:00:10,754\\nшто ја пишуваат корисниците:\\nлуѓето како вас!\\n\\n4\\n00:00:10,764 --> 00:00:15,014\\nДенес, од 250 милиони\\nпосетители на Википедија,\\n\\n5\\n00:00:15,057 --> 00:00:17,974\\nимаме 10 милиони статии\\n\\n6\\n00:00:17,982 --> 00:00:20,123\\nод над 500 илјади уредници\\n\\n7\\n00:00:20,135 --> 00:00:22,087\\nна повеќе од 250 јазици.\\n\\n8\\n00:00:22,241 --> 00:00:24,593\\nНавистина е лесно да ги споделите\\nвашите сознанија\\n\\n9\\n00:00:24,593 --> 00:00:26,961\\nсо многуте корисници\\nна Википедија ширум светот.\\n\\n10\\n00:00:27,026 --> 00:00:29,581\\nВо овој момент, можете\\nда помогнете да ја подобриме\\n\\n11\\n00:00:29,581 --> 00:00:33,104\\nнајголемата и најдобрата\\nслободна енциклопедија на интернет.\\n\\n12\\n00:00:33,187 --> 00:00:35,358\\nЌе ви покажам колку е тоа лесно.\\n\\n13\\n00:00:36,299 --> 00:00:38,947\\nКога пребарувате нешто на интернет,\\n\\n14\\n00:00:38,947 --> 00:00:41,697\\nобично прво ја добивате Википедија.\\n\\n15\\n00:00:42,172 --> 00:00:45,821\\nЗатоа предлагаме да пребарате\\nдиректно на Википедија.\\n\\n16\\n00:00:46,354 --> 00:00:47,775\\nПогледајте го ова:\\n\\n17\\n00:00:47,999 --> 00:00:51,589\\nЌе забележите дека највеќето статии\\nсе опсежни, со најнови информации.\\n\\n18\\n00:00:51,768 --> 00:00:54,887\\nМеѓутоа, може да наидете\\nна статија која е прекратка\\n\\n19\\n00:00:54,959 --> 00:00:56,403\\nили треба да се подобри.\\n\\n20\\n00:00:56,450 --> 00:00:58,769\\nИ кој го може тоа подобро од вас?\\n\\n21\\n00:00:59,010 --> 00:01:03,517\\nВикипедија ве повикува да направиме\\nуште подобра енциклопедија.\\n\\n22\\n00:01:04,515 --> 00:01:06,727\\nВо над 90 отсто од случаите\\n\\n23\\n00:01:06,760 --> 00:01:09,409\\nне треба да сте стручњак\\nза да учествувате.\\n\\n24\\n00:01:09,426 --> 00:01:12,013\\nТреба само да сакате\\nда го споделите она што го знаете.\\n\\n25\\n00:01:12,013 --> 00:01:15,347\\nЗа таа цел треба\\nда проследите три мали чекори:\\n\\n26\\n00:01:15,448 --> 00:01:18,175\\nЧекор 1: Стиснете на „Уреди“\\n\\n27\\n00:01:18,262 --> 00:01:20,823\\nЧекор 2: напишете го текстот\\n\\n28\\n00:01:20,869 --> 00:01:25,861\\nи конечно, Чекор 3: Внесете опис\\nна уредувањето и стиснете на „Зачувај“\\n\\n29\\n00:01:26,690 --> 00:01:28,317\\nНели е просто?\\n\\n30\\n00:01:28,348 --> 00:01:31,711\\nДури не треба да сте најавени\\nили да имате сметка.\\n\\n31\\n00:01:31,837 --> 00:01:33,598\\nУште еднаш:\\n\\n32\\n00:01:33,683 --> 00:01:36,285\\nПрвиот чекор е копчето „Уреди“.\\n\\n33\\n00:01:36,332 --> 00:01:38,555\\nЕве го горе во статијата.\\n\\n34\\n00:01:39,340 --> 00:01:42,786\\nСтиснете го и ќе ве даде\\nна оваа страница.\\n\\n35\\n00:01:42,912 --> 00:01:45,038\\nТука ги правите измените.\\n\\n36\\n00:01:46,374 --> 00:01:49,432\\nЗа да направите измена, во текстот\\nставете го курсорот на местото\\n\\n37\\n00:01:49,492 --> 00:01:51,833\\nкајшто сакате да внесете\\nили избришете нешто.\\n\\n38\\n00:01:52,186 --> 00:01:56,016\\nИзвршете ја измената, како што би\\nнаправиле со секој друг документ.\\n\\n39\\n00:01:56,713 --> 00:02:01,531\\n(Пишување)\\n\\n40\\n00:02:02,648 --> 00:02:04,982\\nНе грижете се: ако нешто згрешите,\\n\\n41\\n00:02:05,014 --> 00:02:07,794\\nможете многу лесно да се вратите\\nна претходната верзија.\\n\\n42\\n00:02:08,253 --> 00:02:11,784\\nНа крај, Чекор 3: Веднаш под полето,\\n\\n43\\n00:02:11,845 --> 00:02:15,429\\nвнесете опис накратко опишувајќи\\nги измените што ги направивте,\\n\\n44\\n00:02:15,540 --> 00:02:18,262\\n(Пишување)\\n\\n45\\n00:02:18,536 --> 00:02:22,570\\nпа стиснете на копчето „Зачувај“\\nза да ги зачувате промените.\\n\\n46\\n00:02:25,174 --> 00:02:29,612\\nЌе забележите дека измените\\nво статијата се прикажуваат веднаш.\\n\\n47\\n00:02:31,987 --> 00:02:35,356\\nОвие три чекори се сето\\nона што ви треба за да уредувате.\\n\\n48\\n00:02:36,045 --> 00:02:37,492\\nЗнам што мислите:\\n\\n49\\n00:02:37,548 --> 00:02:41,300\\nмислите „Еј! Сега можам\\nда ја изменам историјата!“\\n\\n50\\n00:02:41,496 --> 00:02:43,650\\nЕ па, пријатели, не можете.\\n\\n51\\n00:02:43,744 --> 00:02:45,993\\nБидејќи, како што ќе видите\\nна друга снимка,\\n\\n52\\n00:02:46,022 --> 00:02:48,538\\nВикипедија има неколку механизми\\n\\n53\\n00:02:48,615 --> 00:02:50,949\\nшто ја штитат токму од такво поведение.\\n\\n54\\n00:02:51,319 --> 00:02:54,265\\nЛажните информации ќе бидат\\nизбришани во рок од неколку минути,\\n\\n55\\n00:02:54,265 --> 00:02:55,334\\nако не и секунди.\\n\\n56\\n00:02:55,334 --> 00:02:57,515\\nИ тоа е она што ја прави Википедија\\n\\n57\\n00:02:57,545 --> 00:02:59,710\\nтолку сигурен и сеопфатен\\nизвор на информации.\\n\\n58\\n00:03:00,211 --> 00:03:05,523\\nЗапомнете, луѓе како вас кои помагаат да\\nсе создаде оваа прекрасна енциклопедија,\\n\\n59\\n00:03:05,566 --> 00:03:09,203\\nи луѓе како тебе дека треба\\nда помогнеме да биде уште подобро.\\n\\n60\\n00:03:09,284 --> 00:03:11,297\\nПа сега ти е редот!\\n\\n61\\n00:03:11,739 --> 00:03:14,283\\nЗбогум, и среќа!',\n", + " 'bytes': 6731,\n", + " 'sha1': 'gm153v75hxrjv9xo0vrzj03qp1b525s',\n", + " 'parent_id': 54611140,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356646,\n", + " 'timestamp': '2021-11-09T10:00:36Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279275,\n", + " 'title': 'Elephants Dream.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.de.srt]] to [[TimedText:Elephants Dream.ogv.de.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nAuf der linken Seite sehen wir...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nAuf der rechten Seite sehen wir die...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...die Enthaupter.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nAlles ist sicher.\\nVollkommen sicher.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nPass auf!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nBist du verletzt?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nIch glaube nicht.\\nUnd du?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nMir fehlt nichts.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nSteh auf!\\nEmo, es ist gefährlich hier.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nWeiter!\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nWas jetzt?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nDu wirst es sehen.\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo, hier lang.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nMir nach!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nSchneller, Emo!\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nDu bist unaufmerksam!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nIch wollte doch nur an...\\n...ans Telefon gehen.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, schau,\\nich meine, hör zu.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nDu musst lernen zuzuhören.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nDas hier ist kein Spiel.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nDu, wir, könnten hier draußen leicht sterben.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nHör zu...\\nHör dem Klang der Maschine zu.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nHör auf deinen Atem.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nHast du nie genug davon?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nGenug?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nDie Maschine ist wie ein Uhrwerk.\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nEin falscher Schritt...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...und du wirst zerquetscht.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nAber ist es nicht...\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nZerquetscht, Emo!\\nWillst du das? Zerquetscht werden?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nDein Lebensziel?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nZerquetscht!\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, schließ die Augen.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nWarum?\\n- Sofort!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nGut.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nWas siehst du zu deiner Linken, Emo?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nNichts.\\n- Wirklich?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nÜberhaupt nichts.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nUnd zu deiner Rechten,\\nwas siehst du zu deiner Rechten, Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nDasselbe, Proog, genau dasselbe...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nNichts!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nHör mal, Proog! Hörst du das?\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nKönnen wir hier hingehen?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nDorthin?\\nDas ist gefährlich.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nAber...\\n- Vertrau mir, es ist gefährlich.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nVielleicht könnte ich...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNein.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNEIN!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nSonst noch Fragen, Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNein.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo.\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, warum...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...warum erkennst du nicht\\ndie Schönheit dieses Ortes?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nWie alles funktioniert.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nWie vollkommen es ist.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNein, Proog, ich erkenne nichts.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nIch erkenne nichts, weil da nichts ist.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nUnd warum sollte ich mein Leben\\netwas anvertrauen, das gar nicht da ist?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nKannst du mir das sagen?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nAntworte mir!\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nDu bist krank, Mann!\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nBleib weg von mir!\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nNein! Emo! Das ist eine Falle!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nHaha, eine Falle.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nAuf der linken Seite sieht man\\ndie Hängenden Gärten von Babylon.\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nWie wär das als Falle?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNein, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nAuf der rechten Seite sieht man...\\n...rate mal...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...den Koloss von Rhodos!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNein!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nDen Koloss von Rhodos\\nund er ist nur für dich hier, Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nEs ist da...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nWenn ich es dir doch sage,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...es ist da.',\n", + " 'bytes': 4570,\n", + " 'sha1': 'btbsi2axgd9zc59txvi9pyeh305lboz',\n", + " 'parent_id': 54662608,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356638,\n", + " 'timestamp': '2021-11-09T10:00:28Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279293,\n", + " 'title': 'Elephants Dream.ogv.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.el.srt]] to [[TimedText:Elephants Dream.ogv.el.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nΣτα αριστερά βλέπουμε...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nΣτα δεξιά βλέπουμε τους...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...τους αποκεφαλιστές.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nΌλα είναι ακίνδυνα.\\nαπόλυτα ασφαλή.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nΈμο;\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nΠρόσεχε!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nΧτύπησες;\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nΔεν νομίζω...\\nεσύ;\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nΕίμαι καλά.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nΣήκω.\\nΈμο, είναι επικίνδυνα εδώ.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nΠάμε.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nΠού;\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nΘα δεις!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nΈμο.\\nΑπό δω.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nΑκολούθησε με!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nΠιο γρήγορα.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nΔε με παρακολουθείς!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nΘέλω μόνο να σηκώσω το...\\n...το τηλέφωνο.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nΕμο, κοίτα... θέλω να πω, άκου.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nΠρέπει να μάθεις να ακούς.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nΔεν είναι παιχνίδι.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nΕσύ, εννοώ εμείς,\\nμπορούμε να πεθάνουμε πολύ εύκολα εδώ.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nΑφουγκράσου τους ήχους της μηχανής.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nΆκου την ανάσα σου.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nΔεν το βαριέσαι ποτέ αυτό;\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nΝα το βαρεθώ;\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nΗ μηχανή λειτουργεί σαν ρολόι\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nΜια κίνηση εκτός χρόνου και...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...και γίνεσαι αλοιφή.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nΝαι αλλά δεν είναι-\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nΑλοιφή Εμο!\\nΑυτό θες να γίνεις, αλοιφή;\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nΠοιος είναι ο σκοπός σου στη ζωή;\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nΑλοιφή.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nΚλείσε τα μάτια σου Εμο.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nΓιατί;\\n- Τώρα!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nΩραία.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nΤι βλέπεις στα αριστερά σου Εμο;\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nΤίποτα.\\n- Αλήθεια;\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nΤίποτα απολύτως.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nΚαι στα δεξιά,\\nΤι βλέπεις στα δεξιά σου Εμο;\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nΤα ίδια Προγκ, ακριβώς τα ίδια...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nΤίποτα!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nΆκου Προγκ! Το ακούς αυτό;\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nΜπορούμε να μπούμε εδώ;\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nΕκεί;\\nΕίναι επικίνδυνα.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nΑλλά...\\n- Πίστεψε με, είναι.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nΤότε ίσως θα μπορούσα...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nΌχι.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nΟΧΙ!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nΆλλες ερωτήσεις Εμο;\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nΌχι.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nΈμο;\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nΈμο, γιατί...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nΈμο...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...γιατί δεν μπορείς να δεις\\nτην ομορφιά αυτού του μέρους;\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nΤον τρόπο που δουλεύει.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nΠόσο τέλειο είναι.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nΌχι Προγκ, δεν το βλέπω.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nΔεν το βλέπω\\nγιατί δεν υπάρχει τίποτα να δω.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nΚαι γιατί να εμπιστευτώ τη ζωή μου\\nσε κάτι που δεν υπάρχει;\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nΜπορείς να μου βρεις ένα λόγο;\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nΑπάντησε μου!\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nΠρογκ...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nΈχεις πρόβλημα δικέ μου!\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nΜείνε μακριά μου.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nΌχι! Εμο! Είναι παγίδα!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nΕίναι παγίδα.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nΣτα αριστερά μας βλέπουμε\\nτους κρεμαστούς κήπους της Βαβυλώνας!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nΠως σου φαίνεται αυτό για παγίδα;\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nΌχι Εμο.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nΣτα δεξιά μας βλέπουμε...\\n...μάντεψε...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...τον κολοσσό της Ρόδου!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nΌχι!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nΤον κολοσσό της Ρόδου.\\nΚαι είναι εδώ μόνο για σένα Προγκ.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nΕκεί είναι...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nΠίστεψε με, Έμο...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...εκεί είναι.',\n", + " 'bytes': 5725,\n", + " 'sha1': '7bdqwbe2d2p3upnwzl7md19do57y3hu',\n", + " 'parent_id': 54662653,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356740,\n", + " 'timestamp': '2021-11-09T10:02:06Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279321,\n", + " 'title': 'Elephants Dream.ogv.hu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.hu.srt]] to [[TimedText:Elephants Dream.ogv.hu.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nBalra láthatjuk...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nJobbra láthatjuk a...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...a fejcsomózókat.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nMinden rendben.\\nTökéletesen rendben.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nVigyázz!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nMegsebesültél?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nNem hiszem... \\nte?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nRendben vagyok.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nKelj fel, Emo.\\nNem biztonságos itt.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nInduljunk.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nMi jön most?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nMajd meglátod!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nErre.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nKövess!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nSiess, Emo!\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nEmo, te nem figyelsz!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nCsak fel akarom venni ...\\n...a telefont.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, figyelj,\\nvagyis hallgass meg.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nMeg kell tanulnod meghallani.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nEz nem egy játék.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nTe, mi meg is halhatunk idekint.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nHallgasd,\\na gép hangját.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nHallgasd a légzésed.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nTe soha nem unod ezt meg?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nUnni?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nEmo a gép olyan, mint az óramű\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nEgy rossz mozdulat...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...és péppé aprít!\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nDe nem ...-\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nPéppé, Emo!\\nEz az amit akarsz, pép?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nMi a célod az életben??\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nPép.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, csukd be a szemed.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nMiért??\\n- Most!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nRendben.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nMit látsz a bal oldaladon Emo?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nSemmit.\\n- Tényleg?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nEgyáltalán semmit\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nÉs a jobbodon,\\nmit látsz a jobb oldaladon Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nUgyanazt Proog, tökéletesen ugyanazt...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nSemmit!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nHallgasd Proog! Hallod ezt?\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nElmehetünk ide?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nOda? \\nNem biztonságos.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nDe...\\n- Bízz bennem, nem az.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nDe talán én...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNem.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNEM!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nBármilyen más kérdés Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNem.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, Miért...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...miért nem látod\\n a szépségét\\tennek a helynek?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nA mód ahogy működik.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nMennyire tökéletes.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNem, Proog,\\nNem látom.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nNem látom, mert nincs ott semmi.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nMiért bíznám az életemet\\nvalamire, ami nincs is ott?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nWell can you tell me that?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nVálaszolj.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nTe beteg vagy, ember.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nTartsd magad távol tőlem.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nNe!! Emo! Ez egy csapda!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nCsapda.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nA bal oldaladon láthatod\\nSzemirámisz Függőkertjét!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nMilyen ez egy csapdának?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNe Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nA jobb oldaladon láthatod...\\n...tudod mit...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...a Rodoszi Kolosszust!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNe!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nA Rodoszi Kolosszust\\nés csak neked van itt Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nOtt van...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nÉn mondom neked,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...ott van.',\n", + " 'bytes': 4334,\n", + " 'sha1': 'oueskt4akr1wziam9xw1ust48obkn9z',\n", + " 'parent_id': 54662728,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356723,\n", + " 'timestamp': '2021-11-09T10:01:49Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279339,\n", + " 'title': 'Elephants Dream.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.it.srt]] to [[TimedText:Elephants Dream.ogv.it.srt]]: rename of the original file',\n", + " 'text': \"1\\n00:00:15,042 --> 00:00:18,042\\nA sinistra possiamo vedere...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nA destra possiamo vedere gli...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...gli squarcia-teste.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nTutto è sicuro.\\nPerfettamente sicuro.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nStai attento!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nSei ferito?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nNon credo...\\ntu?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nSto bene.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nAlzati.\\nEmo, non è sicuro qui.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nAndiamo.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nEd ora?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nLo vedrai.\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nDa questa parte.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nSeguimi!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nSbrigati Emo.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nNon stai attento!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nVoglio solo rispondere a...\\n...al telefono.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, guarda,\\nCioè ascolta.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nDevi imparare ad ascoltare.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nQuesto non è un gioco.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nTu, noi,\\npotremmo anche morire qua fuori.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nAscolta,\\ni suoni della macchina.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nAscolta il tuo respiro.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nNon ti stanchi mai di questo?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nStancarmi?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nLa macchina è come un meccanismo.\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nSbagli posto e...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...e sei ridotto in poltiglia.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nMa non è vero -\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nPoltiglia, Emo!\\nÈ quello che vuoi, poltiglia?\\n\\n32\\n00:04:47,083 --> 00:04:50,000\\nÈ questo il tuo scopo nella vita?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nPoltiglia.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, chiudi gli occhi.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nperché?\\n- Ora!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nBene.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nCosa vedi alla tua sinistra Emo?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nNulla.\\n- Davvero?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nNo, Assolutamente nulla\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nE alla tua destra,\\ncosa vedi alla tua destra, Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nLo stesso Proog, proprio lo stesso...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nNulla!\\n- Bene.\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nSenti Proog! Lo senti questo!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nPossiamo andarci?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nLì? \\nNon è sicuro.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nMa...\\n- Credimi, non lo è.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nAllora magari potrei...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNo.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNO!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nHai altre domande Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNo.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, Perché...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...perché non riesci a vedere\\nla bellezza di questo posto?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nIl modo in cui funziona.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nQuanto sia perfetto.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNo, Proog, Non lo vedo.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nNon lo vedo perché là non c'è niente.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nE perché dovrei affidare la mia\\nvita a qualcosa che non c'è?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nAllora puoi spiegarmelo?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nRispondimi.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nTu sei malato, vecchio mio.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nStai lontano da me.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nNo! Emo! È una trappola!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nÈ una trappola eh.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nAlla tua sinistra puoi vedere\\ni giardini pensili di Babilonia!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nCome ti sembra questa trappola?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNo, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nAlla tua destra puoi vedere...\\n...ma pensa...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...Il colosso di Rodi!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNo!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nIl colosso di Rodi\\ned è qui solo per te Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nÈ lì...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nTe lo stavo dicendo,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...È lì.\",\n", + " 'bytes': 4428,\n", + " 'sha1': '434wbjwu3arpvpz27ia61w37qpv0kz4',\n", + " 'parent_id': 54662773,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356735,\n", + " 'timestamp': '2021-11-09T10:01:58Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279351,\n", + " 'title': 'Elephants Dream.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.ja.srt]] to [[TimedText:Elephants Dream.ogv.ja.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\n左に見えるのは…\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\n右に見えるのは…\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n…首刈り機\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nすべて安全\\n完璧に安全だ\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nイーモ?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\n危ない!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nケガはないか?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nええ、多分…\\nあなたは?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nわしは平気だ\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\n起きてくれイーモ\\nここは危ない\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\n行こう\\n\\n12\\n00:01:03,750 --> 00:01:04,917\\nどこに?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nすぐにわかるさ!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nイーモ、こっちだ\\n\\n15\\n00:01:34,958 --> 00:01:36,958\\nついて来るんだ!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nイーモ、早く!\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nむやみにさわるな!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\n僕はただ、電話に\\n…出ようと\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nイーモ、見るんだ…\\nいや、聞いてくれ\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\n君は「聞き方」を知る必要がある\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nこれは遊びじゃない\\n\\n22\\n00:03:06,167 --> 00:03:10,417\\n我々はここでは\\nたやすく死ぬ\\n\\n23\\n00:03:11,208 --> 00:03:14,125\\n機械の声を聞くんだ\\n\\n24\\n00:03:18,333 --> 00:03:22,417\\n君の息づかいを聞くんだ\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nそんなことして疲れない?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\n疲れる?!\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nこの機械は非常に正確で\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\n一つ間違えば…\\n\\n29\\n00:04:37,833 --> 00:04:40,792\\n…地面に落ちてバラバラだ\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nえ、でも―\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nバラバラだぞ、イーモ!\\nそれでいいのか?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nバラバラで死ぬんだぞ?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nバラバラだ!\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nイーモ、目を閉じるんだ\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nなぜ?\\n―早く!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nそれでいい\\n\\n37\\n00:05:59,542 --> 00:06:03,792\\n左に見えるものは何だ、イーモ?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nえ…何も\\n―本当か?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\n全く何も\\n\\n40\\n00:06:08,042 --> 00:06:12,833\\nでは右は\\n何か見えるか、イーモ?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\n同じだよプルーグ、全く同じ…\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\n何もない!\\n\\n43\\n00:06:40,625 --> 00:06:43,208\\nプルーグ!何か聞こえない?\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nあそこに行かないか?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nあそこ?\\n…安全じゃない\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nでも…\\n―本当に危ないぞ\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\n大丈夫だよ…\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nだめだ\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nだめだ!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nまだ続ける気か、イーモ?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nいいえ…\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nイーモ?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nイーモ、なぜ…\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nイーモ…\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n…なぜここの美しさが\\n見えない?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\n仕組みがこんなに…\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nこんなに完全なのに\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nもういいよ!プルーグ!\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nそこには何もないんだから\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nなぜ命を「ない」物に\\nゆだねなきゃ?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\n教えてくれないか?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nさあ!\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nプルーグ…\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nあなたは病気なんだ\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\n僕から離れてくれ\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nいかん!イーモ!ワナだ!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nワナだ? ふーん\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\n左に何が見える?\\nバビロンの空中庭園!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nこれがワナとでも?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nだめだ、イーモ\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\n右にあるのは…\\n…すごい!…\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n…ロードス島の巨像だ!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nやめろ!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nこの巨像はあなたの物\\nプルーグ、あなたのだよ\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nいってるじゃないか…\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nそこにあるって、イーモ…\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n…あるって',\n", + " 'bytes': 4828,\n", + " 'sha1': 'q539ebv7zmmu3i9m9sqv7shjvta3xn6',\n", + " 'parent_id': 54662807,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357497,\n", + " 'timestamp': '2021-11-09T10:09:18Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279368,\n", + " 'title': 'Elephants Dream.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.pl.srt]] to [[TimedText:Elephants Dream.ogv.pl.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nPo lewej możemy...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nPo lewej możemy zobaczyć...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...użynacze głów.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nTu jest bezpiecznie.\\ncałkiem bezpiecznie.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nUważaj!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nJesteś ranny?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nRaczej nie...\\na ty?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nW porządku.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nWstawaj.\\nEmo, tutaj nie jest bezpiecznie.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nIdziemy.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nCo dalej?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nPrzekonasz się!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nTędy.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nZa mną!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nSzybciej Emo.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nNie uważasz!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nChciałem tylko odebrać te...\\n...telefon.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, spójrz,\\nznaczy posłuchaj.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nMusisz nauczyć się słuchać.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nTo nie jest gra.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nMożesz, znaczy możemy tu zginąć.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nWsłuchaj się,\\nwsłuchaj się w głosy maszyny.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nWsłuchaj się w swój oddech.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nNigdy nie masz dość?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nDość?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nTa maszyna jest jak... jak zegarek\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nLecz jeden nieostrożny ruch i...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...i po tobie, jesteś trupem.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nAle czy nie -\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nTrup, Emo!\\nCzy tym chcesz się stać? Trupem?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nTo twój cel w życiu?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nTrup.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, zamknij oczy.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nCzemu?\\n- Natychmiast!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nDobrze.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nEmo, co widzisz po lewej?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nNic.\\n- Na pewno?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nNic, zupełnie nic.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nA co po prawej,\\nco widzisz po prawej Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nTo samo Proog, dokładnie to samo...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nNic!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nProog, posłuchaj! Słyszysz to!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nMożemy tu wejść?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nTam? \\nTam jest niebezpiecznie.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nAle...\\n- Zaufaj mi, nie jest.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nMoże mógłbym...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNie.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNIE!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nJeszcze jakieś pytania Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNie.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nDlaczego Emo...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...dlaczego nie widzisz\\npiękna tego miejsca?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nTego jak działa.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nJakie jest idealne.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNie, Proog, nie widzę.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nNie widzę tego, bo tu nic nie ma.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nI czemu miałbym powierzyć moje\\nżycie czemuś, czego tutaj nie ma?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nMożesz mi to powiedzieć?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nOdpowiedz.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nJesteś chory, człowieku.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nTrzymaj się ode mnie z daleka.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nNie! Emo! To pułapka!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nTo pułapka\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nPo lewej możesz zobaczyć\\nwiszące ogrody Babilonu!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nCzy to też miałoby być pułapką?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNie, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nPo prawej możesz zobaczyć...\\n...zgadnij...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...kolos rodyjski!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNie!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nKolos rodyjski\\ni jest tu specjalnie dla ciebie Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nOn jest tu...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nMówię ci,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...on jest.',\n", + " 'bytes': 4396,\n", + " 'sha1': 'r08rgp8va28ei49ucimw5fhob544gxz',\n", + " 'parent_id': 54662860,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357431,\n", + " 'timestamp': '2021-11-09T10:08:48Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279385,\n", + " 'title': 'Elephants Dream.ogv.ro.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.ro.srt]] to [[TimedText:Elephants Dream.ogv.ro.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nÎn stânga se văd...\\nSe văd...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nÎn dreapta se văd...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...forfecarii.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nAici suntem în siguranță.\\nÎn siguranță deplină.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nAi grijă!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nEști rănit?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nNu cred...\\ntu?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nSunt în regulă.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nRidică-te.\\nEmo, aici nu suntem în siguranță...\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nHaide\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nȘi acum?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nVei vedea!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nPe aici!\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nUrmează-mă!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nGrăbește-te, Emo.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nEmo, nu ești atent!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nVoiam numai să răspund la...\\n...la telefon.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, uite...\\nVreau să zic, ascultă.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nTrebuie să-nveți să asculți.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nAici nu e de joacă.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nAici poți muri... putem muri foarte ușor.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nAscultă...\\nAscultă sunetele aparatului.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nAscultă-ți respirația.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nNu te saturi să tot faci asta?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nSă mă satur?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nMașinăria asta e precisă ca un ceas\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nO mișcare greșită și...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\nȘi te face pilaf.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nDar nu e...?\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nPilaf, Emo!\\nAsta vrei s-ajungi? Pilaf?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nSpune, Emo, asta vrei de la viață?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nPilaf.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, închide ochii.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nDe ce?\\n- Acum!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nBun.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nCe vezi în stânga, Emo? Hai, spune.\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nNimic.\\n- Serios?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nNu, chiar nimica.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nAșa... și în dreapta?\\nIa zi, ce vezi în dreapta, Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nHmm... la fel, Proog, exact la fel.\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nAdică nimica!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nAscultă, Proog! Ai auzit?\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nPutem merge acolo?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nAcolo?\\nE periculos, Emo.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nDar...\\n- Crede-mă, e periculos.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nPăi, aș putea...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNu.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNU!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nMai ai alte întrebări, Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNu.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, de ce...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...de ce nu vrei să vezi frumusețea acestui loc?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nModul în care funcționează.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nCât de perfect e totul.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNu, Proog. Nu văd lucrurile astea!\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nNu le văd pentru că n-am ce să văd!\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nȘi de ce să-mi încredințez viața\\nunui lucru care nu există?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nPoți să-mi spui și mie?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nIa zi, poți?\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nEști nebun, omule!\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nNu te apropia de mine.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nEmo, nu te duce! E o capcană!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nDa, da... e-o capcană.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nÎn stânga se pot vedea\\nGrădinile suspendate din Babilon!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nCe mai capcană!\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNu, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nÎn dreapta se poate vedea...\\n...Ca să vezi...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...Colosul din Rodos!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNu!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nBa da, e Colosul din Rodos, Proog\\nȘi e aici doar pentru tine.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nAcolo chiar există ceva...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nFii atent ce-ți spun, Emo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...chiar există ceva.',\n", + " 'bytes': 4540,\n", + " 'sha1': 'rky64p7qu7wffnxcenughdsxh1ysvle',\n", + " 'parent_id': 195484262,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357540,\n", + " 'timestamp': '2021-11-09T10:09:42Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279395,\n", + " 'title': 'Elephants Dream.ogv.sk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.sk.srt]] to [[TimedText:Elephants Dream.ogv.sk.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nVѕavo, vѕavo vidнme ...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nVpravo vidнme...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...trhaиov hlбv.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nVљetko je bezpeиnй.\\ndokonale bezpeиnй.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nPozor!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nSi zranenэ?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nSom v poriadku...\\na ty?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nSom Ok.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nVstбvaj.\\nEmo, nie je to tu bezpeиnй.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nPoпme.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nИo je пalej?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nHneп uvidнљ!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nTadiaѕto.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nNasleduj ma!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nRэchlo, Emo.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nNedбvaљ pozor!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nChcel som len dvihnъќ...\\n...telefуn.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, pozri,\\npoиъvaj.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nMusнљ sa nauиiќ poиъvaќ.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nToto nie je nejakб hra.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nTy, my, tu mфћme ѕahko zomrieќ.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nPoиъvaj,\\npoиъvaj zvuky toho stroja.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nPoиъvaj svoj dych.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nNie si z toho niekedy uћ unavenэ?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nUnavenэ?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nEmo, stroj funguje ako hodinky.\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nJeden krok mimo ...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...a si rozdrtenэ na kaљu.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nAle nie je to -\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nKaљu, Emo!\\nJe to to иo chceљ? Kaљa?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nEmo, tvoj cieѕ ћivota?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nKaљa.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, zavri oиi.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nPreиo?\\n- Uћ!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nDobre.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nИo vidнљ po svojej ѕavici, Emo?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nNiи.\\n- Naozaj?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nVфbec niи.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nA po tvojej pravici,\\nиo vidнљ po svojej pravici, Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nTo istй Proog, presne to istй...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nNiи!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nPoиъvaj Proog! Poиujeљ to!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nIdeme tam?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nTam? \\nTo nie je bezpeиnй.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nAle...\\n- Dфveruj mi, nie je.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nMoћno by som mohol...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNie.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNIE!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nNejakй пalљie otбzky, Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNie.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, preиo...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...preиo nevidнљ\\nakй je to tu krбsne?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nSpфsob akэm to funguje.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nAkй dokonalй to je.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNie, Proog, nevidнm.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nNevidнm, pretoћe tu niи nie je.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nA preиo by som mal zveriќ mфj\\nћivot nieиomu иo nie je?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nMфћeљ mi to povedaќ?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nOdpovedz.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nTy si chorн.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nDrћ sa odomтa пalej.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nNie! Emo! Je to pasca!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nJe to pasca.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nPo svojej ѕavici vidнљ\\nBabylonskй visutй zбhrady!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nAkб je to pasca?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNie, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nPo svojej pravici vidнљ...\\n...hбdaj иo...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...Rodskэ kolos!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNie!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nRodskэ kolos\\na je tu len pre teba Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nJe to tam...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nHovoril som ti,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...je to.',\n", + " 'bytes': 4311,\n", + " 'sha1': 'af52xxr285d8xb4vfq8ud1afmalirs8',\n", + " 'parent_id': 54662947,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357527,\n", + " 'timestamp': '2021-11-09T10:09:30Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279406,\n", + " 'title': 'Elephants Dream.ogv.sl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.sl.srt]] to [[TimedText:Elephants Dream.ogv.sl.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nNa levi lahko vidimo...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nNa desni lahko vidimo...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...glavo-reznice.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nVse je varno.\\nÈisto varno.\\n\\n5\\n00:00:25,000 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nPazi!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nAli si po\\x9akodovan?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nMislim da ne...\\nti?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nJaz sem Ok.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nVstani.\\nEmo, tukaj ni varno.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nPojdiva.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nKaj pa sedaj?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nBo\\x9a videl!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nSem.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nSledi mi!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nHitreje Emo.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nNisi dovolj pozoren!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nSamo oglasiti sem se hotel...\\n...na telefon.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, poglej,\\nhocem reèi poslu\\x9aaj.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nNauèiti se mora\\x9a poslu\\x9aati.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nTo ni samo igra.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nTi, midva, lahko umreva tukaj.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nPoslu\\x9aaj.\\nPrisluhni zvoku stroja.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nPrisluhni svojemu dihanju.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nAli se nikoli ne navelièa\\x9a tega?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nNavelièam?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nStroj je kot urin mehanizem.\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nEn napaèen korak...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...in te zmelje v prah.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nAmpak ali ni -\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nPrah, Emo!\\nAli je to, kar si \\x9eeli\\x9a, prah?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nTvoj \\x9eivljenski cilj?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nPrah.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, zapri oèi.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nZakaj?\\n- Zdaj!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nDobro.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nKaj vidi\\x9a na levi Emo?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nNiè.\\n- Res?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nÈisto niè.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nIn na desni,\\nkaj vidi\\x9a na desni Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nIsto Proog, spet isto...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nNiè!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nPoslu\\x9aaj Proog! Ali sli\\x9ai\\x9a!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nAli greva sem?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nTja?\\nNi varno.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nAmpak...\\n- Zaupaj mi, ni varno.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nMogoèe bi lahko...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNe.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNE!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nBi rad \\x9ae kaj dodal Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNe.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, Zakaj...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...zakaj ne vidi\\x9a\\nlepote tega prostora?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nKako deluje.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nKako perfektno je.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNe, Proog, ne vidim.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nNe vidim, ker ni niè tam.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nIn zakaj bi zaupal svoje\\n\\x9eivljenje neèemu, èesar sploh ni?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nAli mi lahko pove\\x9a?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nOdgovori mi.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nTi si nor.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nPojdi stran od mene.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nNe! Emo! To je past!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nTo je past.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nNa levi lahko vidi\\x9a\\nbabilonske viseèe vrtove!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nKak\\x9ana past je to?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNe, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nNa desni lahko vidi\\x9a...\\n...poglej to...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...Kolos z Rodosa.\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNe!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nKolos z Rodosa. In je\\ntukaj samo zate Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nTukaj je...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nPravim ti,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...res je.',\n", + " 'bytes': 4169,\n", + " 'sha1': 'pzcwvbhluip630kiimdys9rnabxv8h7',\n", + " 'parent_id': 54662971,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357386,\n", + " 'timestamp': '2021-11-09T10:08:23Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279438,\n", + " 'title': 'Elephants Dream.ogv.no.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.no.srt]] to [[TimedText:Elephants Dream.ogv.no.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,000 --> 00:00:18,000\\nPå, på venstre side har vi...\\n\\n2\\n00:00:18,167 --> 00:00:20,083\\nPå høyre side har vi...\\n\\n3\\n00:00:20,083 --> 00:00:22,000\\nhodeglefserne.\\n\\n4\\n00:00:22,000 --> 00:00:24,167\\nAlt er helt trygt,\\nhelt ufarlig.\\n\\n5\\n00:00:26,083 --> 00:00:27,083\\nEmo.\\n\\n6\\n00:00:28,208 --> 00:00:30,042\\nSe opp!\\n\\n7\\n00:00:47,042 --> 00:00:48,542\\nEr du skadet?\\n\\n8\\n00:00:52,000 --> 00:00:54,000\\nJeg tror ikke det.\\nDu?\\n\\n9\\n00:00:55,167 --> 00:00:57,042\\nJeg er Ok.\\n\\n10\\n00:00:57,125 --> 00:01:01,167\\nKom deg opp.\\nEmo, det er ikke trygt her.\\n\\n11\\n00:01:02,042 --> 00:01:03,167\\nLa oss stikke.\\n\\n12\\n00:01:03,167 --> 00:01:05,167\\nHva nå?\\n\\n13\\n00:01:05,208 --> 00:01:07,208\\nDu får se!\\n\\n14\\n00:01:16,042 --> 00:01:18,083\\nEmo.\\nDenne veien.\\n\\n15\\n00:01:34,250 --> 00:01:35,542\\nFølg meg!\\n\\n16\\n00:02:11,125 --> 00:02:12,542\\nSkynd deg Emo!\\n\\n17\\n00:02:48,083 --> 00:02:50,000\\nDu følger ikke med!\\n\\n18\\n00:02:50,167 --> 00:02:54,125\\nJeg har bare lyst til å ta...\\n...telefonen.\\n\\n19\\n00:02:55,000 --> 00:02:58,042\\nEmo, se her,\\njeg mener hør her.\\n\\n20\\n00:02:59,167 --> 00:03:02,083\\nDu må lære deg å høre etter.\\n\\n21\\n00:03:03,167 --> 00:03:05,042\\nDette er ikke en lek.\\n\\n22\\n00:03:05,083 --> 00:03:09,417\\nDu, vi, kan lett dø her ute.\\n\\n23\\n00:03:10,042 --> 00:03:14,042\\nLytt,\\ntil lyden fra maskinen.\\n\\n24\\n00:03:18,083 --> 00:03:20,083\\nLytt til din egen pust.\\n\\n25\\n00:04:27,042 --> 00:04:29,042\\nBlir du aldri lei dette?\\n\\n26\\n00:04:29,125 --> 00:04:31,000\\nLei?!?\\n\\n27\\n00:04:31,167 --> 00:04:34,583\\nEmo, maskinen er som et urverk.\\n\\n28\\n00:04:35,125 --> 00:04:37,167\\nEt feiltrinn...\\n\\n29\\n00:04:37,208 --> 00:04:39,208\\nog du blir most til hakkemat.\\n\\n30\\n00:04:41,000 --> 00:04:42,083\\nMen er det ikke -\\n\\n31\\n00:04:42,083 --> 00:04:46,125\\nHakkemat, Emo!\\nEr det det du vil? Hakkemat?\\n\\n32\\n00:04:47,083 --> 00:04:49,083\\nEmo, ditt mål i livet?\\n\\n33\\n00:04:50,125 --> 00:04:52,042\\nHakkemat?\\n\\n34\\n00:05:41,208 --> 00:05:43,125\\nEmo, lukk øynene dine.\\n\\n35\\n00:05:44,208 --> 00:05:46,125\\nHvorfor det?\\n- Nå!\\n\\n36\\n00:05:53,167 --> 00:05:54,792\\nBra.\\n\\n37\\n00:05:59,125 --> 00:06:02,208\\nHva ser du på din venstre side Emo?\\n\\n38\\n00:06:04,083 --> 00:06:06,000\\nIngenting.\\n- Virkelig?\\n\\n39\\n00:06:06,083 --> 00:06:07,208\\nIngeting i det hele tatt.\\n\\n40\\n00:06:08,000 --> 00:06:12,083\\nOg til høyre,\\nhva ser du på din høyre side Emo?\\n\\n41\\n00:06:13,208 --> 00:06:16,208\\nDet samme Proog, akkurat det samme...\\n\\n42\\n00:06:17,000 --> 00:06:19,208\\nIngenting!\\n- Flott.\\n\\n43\\n00:06:40,167 --> 00:06:42,833\\nHør Proog! Hører du det!\\n\\n44\\n00:06:43,167 --> 00:06:45,000\\nKan vi gå hit?\\n\\n45\\n00:06:45,042 --> 00:06:48,000\\nDit?\\nDet er ikke trygt.\\n\\n46\\n00:06:49,208 --> 00:06:52,125\\nMen...\\n- Tro meg, det er ikke trygt.\\n\\n47\\n00:06:53,083 --> 00:06:54,208\\nKanskje jeg kunne...\\n\\n48\\n00:06:54,208 --> 00:06:56,083\\nNei.\\n\\n49\\n00:06:57,167 --> 00:07:00,042\\nNEI!\\n\\n50\\n00:07:00,208 --> 00:07:03,167\\nNoen flere spørsmål Emo?\\n\\n51\\n00:07:04,042 --> 00:07:05,208\\nNei.\\n\\n52\\n00:07:09,125 --> 00:07:10,208\\nEmo?\\n\\n53\\n00:07:11,208 --> 00:07:13,125\\nEmo, hvorfor...\\n\\n54\\n00:07:13,125 --> 00:07:14,125\\nEmo...\\n\\n55\\n00:07:14,125 --> 00:07:18,125\\n...hvorfor ser du ikke\\nskjønnheten i det?\\n\\n56\\n00:07:18,208 --> 00:07:20,167\\nHvordan alt fungerer.\\n\\n57\\n00:07:20,208 --> 00:07:24,000\\nHvor perfekt det er.\\n\\n58\\n00:07:24,000 --> 00:07:27,083\\nNei Proog, jeg ser ikke det.\\n\\n59\\n00:07:27,125 --> 00:07:30,083\\nJeg ser ikke det\\nfordi det er ingenting der.\\n\\n60\\n00:07:31,125 --> 00:07:35,083\\nOg hvorfor skal jeg betro livet\\nmitt til noe som ikke er der?\\n\\n61\\n00:07:35,125 --> 00:07:37,042\\nVel, kan du fortelle meg det?\\n\\n62\\n00:07:37,125 --> 00:07:39,042\\nSvar meg.\\n\\n63\\n00:07:43,042 --> 00:07:44,125\\nProog...\\n\\n64\\n00:07:45,125 --> 00:07:47,083\\ndu er gal, mann.\\n\\n65\\n00:07:47,083 --> 00:07:49,042\\nHold deg unna meg.\\n\\n66\\n00:07:52,125 --> 00:07:55,000\\nNei! Emo! Det er en felle!\\n\\n67\\n00:07:55,208 --> 00:07:57,042\\nDet er en felle.\\n\\n68\\n00:07:57,042 --> 00:08:01,167\\nPå din venstre side kan du se\\nBabylons hengende hager!\\n\\n69\\n00:08:02,042 --> 00:08:04,083\\nHva synes du om den fella?\\n\\n70\\n00:08:05,125 --> 00:08:07,042\\nNei, Emo.\\n\\n71\\n00:08:09,083 --> 00:08:12,208\\nPå din høyre side kan du se...\\ngjett hva...\\n\\n72\\n00:08:13,000 --> 00:08:14,792\\nkolossen på Rhodos!\\n\\n73\\n00:08:15,208 --> 00:08:16,167\\nNei!\\n\\n74\\n00:08:16,167 --> 00:08:22,042\\nKolossen på Rhodos\\nog den er her bare for deg Proog.\\n\\n75\\n00:08:51,083 --> 00:08:53,042\\nDen er der...\\n\\n76\\n00:08:53,042 --> 00:08:56,167\\nHører du, Emo...\\n\\n77\\n00:08:57,083 --> 00:09:00,000\\n...den er der.',\n", + " 'bytes': 4395,\n", + " 'sha1': 'thcnwnd5cjc7yz3zmdg4nai4n2sieud',\n", + " 'parent_id': 54663053,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356850,\n", + " 'timestamp': '2021-11-09T10:02:25Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279496,\n", + " 'title': 'Elephants Dream.ogv.he.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.he.srt]] to [[TimedText:Elephants Dream.ogv.he.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nמשמאלנו אנו יכולים לראות...\\n\\n2\\n00:00:18,917 --> 00:00:20,417\\nומימיננו אפשר לראות את...\\n\\n3\\n00:00:20,542 --> 00:00:22,167\\n...את מפצחי הראשים.\\n\\n4\\n00:00:22,000 --> 00:00:24,792\\nהכול בטוח.\\n בטוח לגמרי.\\n\\n5\\n00:00:26,417 --> 00:00:27,417\\nאמו?\\n\\n6\\n00:00:29,083 --> 00:00:30,333\\nהזהר!\\n\\n7\\n00:00:47,167 --> 00:00:48,333\\nנפגעת?\\n\\n8\\n00:00:52,167 --> 00:00:54,167\\nלא נראה לי...\\nואתה?\\n\\n9\\n00:00:55,792 --> 00:00:57,167\\nאני בסדר.\\n\\n10\\n00:00:57,708 --> 00:01:01,833\\nקום.\\nאמו, זה לא בטוח כאן.\\n\\n11\\n00:01:02,250 --> 00:01:03,833\\nבוא נלך.\\n\\n12\\n00:01:03,917 --> 00:01:05,917\\nמה עכשיו?\\n\\n13\\n00:01:06,083 --> 00:01:08,083\\nאתה תראה!\\n\\n14\\n00:01:16,208 --> 00:01:18,458\\nאמו.\\nמכאן.\\n\\n15\\n00:01:35,208 --> 00:01:36,000\\nבוא אחרי!\\n\\n16\\n00:02:11,708 --> 00:02:13,000\\nמהר אמו.\\n\\n17\\n00:02:48,458 --> 00:02:50,083\\nאתה לא מקשיב!\\n\\n18\\n00:02:50,917 --> 00:02:54,625\\nאני רק רוצה לענות...\\n...לטלפון.\\n\\n19\\n00:02:55,000 --> 00:02:58,250\\nאמו,תראה\\nאני מתכוון תקשיב.\\n\\n20\\n00:02:59,917 --> 00:03:02,375\\nאתה חייב ללמוד להקשיב.\\n\\n21\\n00:03:03,792 --> 00:03:05,167\\nזה לא איזהשהו משחק\\n\\n22\\n00:03:06,208 --> 00:03:08,917\\nאתה, אני מתכוון אנחנו, יכולים למות פה בקלות.\\n\\n23\\n00:03:10,250 --> 00:03:14,167\\nתקשיב,\\nלקולות של המכונות.\\n\\n24\\n00:03:18,417 --> 00:03:20,542\\nתקשיב לנשימה שלך.\\n\\n25\\n00:04:27,250 --> 00:04:29,333\\nכל זה אף פעם לא נמאס אלייך?\\n\\n26\\n00:04:29,708 --> 00:04:31,083\\nנמאס?!?\\n\\n27\\n00:04:31,917 --> 00:04:34,833\\nהמכונה היא מערכת מדויקת.\\n\\n28\\n00:04:35,625 --> 00:04:37,875\\nתזוזה אחת שלא במקום...\\n\\n29\\n00:04:38,042 --> 00:04:40,000\\n...ואתה הופך לרסק\\n\\n30\\n00:04:41,042 --> 00:04:42,458\\nאבל זה לא-\\n\\n31\\n00:04:42,542 --> 00:04:46,667\\nרסק אמו!\\nהאם זה מה שאתה רוצה?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nאמו? המטרה בחיים שלך?\\n\\n33\\n00:04:50,708 --> 00:04:52,333\\nרסק?!\\n\\n34\\n00:05:42,042 --> 00:05:43,583\\nאמו, סגור את עיינך.\\n\\n35\\n00:05:45,167 --> 00:05:46,708\\nלמה?\\nעכשיו!\\n\\n36\\n00:05:53,917 --> 00:05:56,042\\nיופי.\\n\\n37\\n00:05:59,667 --> 00:06:03,000\\nמה אתה רואה משמאלך אמו?\\n\\n38\\n00:06:04,542 --> 00:06:06,000\\nכלום.\\n-באמת?\\n\\n39\\n00:06:06,417 --> 00:06:08,167\\nלא כלום.\\n\\n40\\n00:06:08,042 --> 00:06:12,542\\nומימינך..\\nמה אתה רואה מימינך אמו?\\n\\n41\\n00:06:14,083 --> 00:06:17,167\\n,אותו דבר פרוג בדיוק אותו דבר...\\n\\n42\\n00:06:17,083 --> 00:06:18,708\\nכלום!\\n\\n43\\n00:06:40,792 --> 00:06:43,208\\nתקשיב פרוג? האם אתה שומע את זה?\\n\\n44\\n00:06:43,792 --> 00:06:45,042\\nהאם אנחנו יכולים ללכת לפה?\\n\\n45\\n00:06:45,250 --> 00:06:48,042\\nשם?\\nזה לא בטוח אמו.\\n\\n46\\n00:06:50,167 --> 00:06:52,625\\nאבל...\\n-סמוך עלי זה לא.\\n\\n47\\n00:06:53,375 --> 00:06:55,000\\nאבל אולי אני אוכל לל..\\n\\n48\\n00:06:55,042 --> 00:06:56,417\\nלא.\\n\\n49\\n00:06:57,833 --> 00:07:00,208\\nלא!\\n\\n50\\n00:07:01,083 --> 00:07:03,917\\nיש עוד שאלות אמו?\\n\\n51\\n00:07:04,333 --> 00:07:06,167\\nלא.\\n\\n52\\n00:07:09,583 --> 00:07:11,042\\nאמו?\\n\\n53\\n00:07:12,083 --> 00:07:13,667\\nאמו,למה...\\n\\n54\\n00:07:13,708 --> 00:07:14,583\\nאמו...\\n\\n55\\n00:07:14,625 --> 00:07:18,625\\n...למה אתה לא יכול לראות\\nאת היופי של המקום הזה\\n\\n56\\n00:07:19,042 --> 00:07:20,917\\nאיך שהוא עובד.\\n\\n57\\n00:07:21,083 --> 00:07:24,000\\nעד כמה שהוא מושלם.\\n\\n58\\n00:07:24,083 --> 00:07:27,542\\nלא\\n\\n59\\n00:07:27,667 --> 00:07:30,417\\nאני לא רואה כי אין שם שום דבר.\\n\\n60\\n00:07:31,625 --> 00:07:35,417\\nולמה שחיי יהיו נתונים לדבר שלא קיים?\\n\\n61\\n00:07:35,708 --> 00:07:37,167\\nאתה יכול לענות לי על זה?\\n\\n62\\n00:07:37,625 --> 00:07:39,208\\nענה לי.\\n\\n63\\n00:07:43,250 --> 00:07:44,708\\nפרוג...\\n\\n64\\n00:07:45,625 --> 00:07:47,417\\nאתה אדם חולה.\\n\\n65\\n00:07:47,458 --> 00:07:49,250\\nתתרחק ממני!\\n\\n66\\n00:07:52,708 --> 00:07:55,083\\nלא! אמו! זו מלכודת!\\n\\n67\\n00:07:56,042 --> 00:07:57,208\\nזו מלכודת\\n\\n68\\n00:07:57,250 --> 00:08:01,917\\nמשמאלך אתה יכול לראות את\\nהגינות התלויות של בבל.\\n\\n69\\n00:08:02,333 --> 00:08:04,375\\nאיך זה בשביל מלכודת?\\n\\n70\\n00:08:05,583 --> 00:08:07,167\\nלא, אמו.\\n\\n71\\n00:08:09,542 --> 00:08:13,000\\nומימינך אפשר לראות...\\nנחש מה?\\n\\n72\\n00:08:13,000 --> 00:08:14,917\\n...את פסלו העצום של רודוס\\n\\n73\\n00:08:16,042 --> 00:08:16,875\\nלא!\\n\\n74\\n00:08:16,917 --> 00:08:22,208\\nפסלו של רודוס.\\nוהוא פה במיוחד בשבילך פרוג.\\n\\n75\\n00:08:51,417 --> 00:08:53,208\\nזה שם...\\n\\n76\\n00:08:53,250 --> 00:08:55,625\\nאני אומר לך,\\nאמו...\\n\\n77\\n00:08:57,417 --> 00:09:00,000\\n...זה שם.\\n\\n78\\n00:09:00,000 --> 00:09:02,250\\nתורגם ע\"י שמואל שושתרי',\n", + " 'bytes': 5082,\n", + " 'sha1': '0terjyk7aill4g0zug48hruvlcs1h1x',\n", + " 'parent_id': 54663224,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606353474,\n", + " 'timestamp': '2021-11-09T09:43:50Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15368685,\n", + " 'title': 'Wiki loves monuments.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Wiki loves monuments.ogg.zh-hant.srt]] to [[TimedText:Wiki loves monuments.ogv.zh-hant.srt]]: rename of the original file',\n", + " 'text': '1\\n00:01:44,000 --> 00:01:47,000\\n維基人\\n\\n2\\n00:01:48,500 --> 00:01:51,500\\n分佈全球\\n\\n3\\n00:01:52,500 --> 00:01:54,000\\n愛古蹟\\n\\n4\\n00:01:56,000 --> 00:01:59,000\\n維基愛古蹟',\n", + " 'bytes': 179,\n", + " 'sha1': 'jnn1vd0bb64b5smjes8jdhkmousepkj',\n", + " 'parent_id': 54990178,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 342489611,\n", + " 'timestamp': '2019-03-12T18:46:14Z',\n", + " 'user': {'id': 3541768, 'text': 'XXBlackburnXx'},\n", + " 'page': {'id': 15368815,\n", + " 'title': 'Citing sources tutorial, part 1.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Undo revision 341301915 by [[Special:Contributions/149.62.204.14|149.62.204.14]] ([[User talk:149.62.204.14|talk]])',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,200\\nThis tutorial demonstrates the bare essentials of how to cite sources with footnotes on Wikipedia pages.\\n\\n2\\n00:00:06,200 --> 00:00:13,000\\nYou can try out the mechanics of creating footnotes in your own user sandbox page. \\n\\n3\\n00:00:13,000 --> 00:00:21,500\\nIf you don\\'t already have a sandbox, go to the page \\'\\'Help:Sandbox tutorial\\'\\' for instructions on starting one.\\n\\n4\\n00:00:21,500 --> 00:00:27,000\\nNow, let\\'s edit the sandbox. First we need to create a section for the footnotes. \\n\\n5\\n00:00:27,000 --> 00:00:35,800\\nCreate a section at the bottom of the page, by adding two equal signs, then the name of the section -- say, \\'\\'Notes\\'\\' -- then two more equal signs.\\n\\n6 \\n00:00:35,800 --> 00:00:44,800\\nNow we have a special bit of code beneath the section header -- a template -- to mark where the footnotes get displayed.\\n\\n7\\n00:00:44,800 --> 00:00:51,500\\nIt\\'s the word \\'\\'reflist\\'\\' inside two sets of curly brackets.\\n\\n8\\n00:00:51,500 --> 00:00:58,500\\nNow let\\'s add a citation. This page includes the claim that \"Being bold is important on Wikipedia\". \\n\\n9\\n00:00:58,500 --> 00:01:08,500\\nWe should back that up with a footnote saying the \"Be Bold\" guideline, which says that when you find a problem on Wikipedia, you should just be bold and fix it.\\n\\n10\\n00:01:08,500 --> 00:01:16,500\\nIn the most basic form, a footnote consists of the text of the footnote between opening and closing \\'\\'ref\\'\\' tags. \\n\\n11\\n00:01:16,500 --> 00:01:33,500\\nSo right after the sentence about being bold, we had a ref tag, then our citation -- Be bold guideline, Wikipedia, the free encyclopedia, retrieved on such and such date -- then a closing ref tag.\\n\\n12\\n00:01:33,500 --> 00:01:38,000\\nNow enter an edit summary and save the page, and we can see the result. \\n\\n13\\n00:01:38,000 --> 00:01:46,700\\nThe numbered superscript appears where we added the \\'\\'ref\\'\\' tags, and that links to the corresponding text of the citation in the notes section.\\n\\n15\\n00:01:46,700 --> 00:01:56,000\\nThe next tutorial demonstrates how to use the \\'\\'cite\\'\\' function in the editing toolbar, which is a way to automatically create well-formatted footnotes. \\n\\n16\\n00:01:56,000 --> 00:02:01,600\\nUntil then, be bold, and cite often!',\n", + " 'bytes': 2199,\n", + " 'sha1': '1cgrervs7ta33mpwxua49l96c1z6zg9',\n", + " 'parent_id': 341301915,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 172918969,\n", + " 'timestamp': '2015-09-22T16:10:06Z',\n", + " 'user': {'id': 996385, 'text': 'KOKUYO'},\n", + " 'page': {'id': 15368878,\n", + " 'title': 'Citing sources tutorial, part 1.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:00,000 --> 00:00:10,000 編輯指導:加入來源\\n\\n2 00:00:12,000 --> 00:00:21,999 首先,用一個沙盒頁。如果你沒有,前往Help:沙盒入門,並跟隨指示進行\\n\\n3 00:00:22,000 --> 00:00:27,800 現在,看看沙盒。首先,我們需要一個供腳註用的章節\\n\\n4 00:00:28,000 --> 00:00:36,700 在頁面底部開一個新章節,你可以加入兩個=號,以及章節的名字(腳註)\\n\\n5 00:00:36,750 --> 00:00:46,500 再加入兩個等號。現在,我們有一個章節頭部,之後加入一個模板,可以顯示腳註 \\n\\n6 00:00:47,000 --> 00:00:52,500 這個模板叫reflist。之後,在它的左右兩方加入<nowiki>{{reflist}}</nowiki>\\n\\n7 00:00:52,600 --> 00:01:08,500 現在我們有一個腳註,叫\"Being bold is important on Wikipedia\"(勇於編輯在維基百科是很重要的),並有指引說明它\\n\\n8 00:01:12,000 --> 00:01:21,300 一個腳註包括:腳註文字、開啟及關閉腳註標籤\\n\\n9 00:01:22,000 --> 00:01:30,100 之後,給一個ref標籤,以及我們的引用:\"Be bold guideline, Wikipedia - The free encyclopedia, retrieved October 16.\"\\n\\n10 00:01:30,100 --> 00:01:31,100 (勇於編輯頁面指引,維基百科-自由的百科全書,在10月16日查閱)\\n\\n11 00:01:31,900 --> 00:01:33,500 之後便是一個關閉ref標籤\\n\\n12 00:01:34,600 --> 00:01:42,300 現在,保存頁面,你便可以看到結果。數目字出現表示加入了ref標籤\\n\\n13 00:01:42,350 --> 00:01:47,400 並連結至頁面底部的引用區\\n\\n14 00:01:47,450 --> 00:01:52,500 下一個指南將教導你如何使用工具列上的引用功能\\n\\n15 00:01:52,501 --> 00:01:59,000 這個工具能夠在你提供資料後自動加入引用\\n\\n16 00:01:59,100 --> 00:02:01,600 這就是引用了。最後:勇於編輯頁面,時常引用',\n", + " 'bytes': 1811,\n", + " 'sha1': '1s8l8iyaragyr510eoqxpyvosp3tv1s',\n", + " 'parent_id': 172918821,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55017688,\n", + " 'timestamp': '2011-06-02T04:42:59Z',\n", + " 'user': {'id': 895952, 'text': 'Zaida Machado'},\n", + " 'page': {'id': 15375976,\n", + " 'title': 'Wikimedia Italia - WikiGuida 2 - Commons.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Preparando para iniciar tradução para português',\n", + " 'text': '1\\n00:00:11,086 --> 00:00:14,676\\nWikimedia Commons (chiamato anche semplicemente Commons)\\n\\n2\\n00:00:14,740 --> 00:00:17,986\\nè un archivio che raccoglie immagini, audio, video\\n\\n3\\n00:00:18,010 --> 00:00:22,196\\ne altre risorse multimediali a carattere illustrativo o educativo.\\n\\n4\\n00:00:22,174 --> 00:00:26,249\\nI materiali contenuti in Commons possono essere utilizzati liberamente,\\n\\n5\\n00:00:26,305 --> 00:00:31,028\\nanche per fini commerciali, a patto di rispettarne le condizioni d\\'uso.\\n\\n6\\n00:00:31,821 --> 00:00:35,200\\nFratello di Wikipedia, Commons è nato nel 2004\\n\\n7\\n00:00:35,236 --> 00:00:38,888\\ncome deposito comune per i vari progetti della Wikimedia Foundation,\\n\\n8\\n00:00:38,934 --> 00:00:42,153\\ne si è poi evoluto in un progetto con linee guida proprie.\\n\\n9\\n00:00:42,320 --> 00:00:46,469\\nIn Commons è possibile trovare fotografie di luoghi e monumenti.\\n\\n10\\n00:00:46,919 --> 00:00:49,281\\nAnimali, piante, minerali.\\n\\n11\\n00:00:49,726 --> 00:00:53,281\\nFoto di personaggi, di oggetti comuni e di opere d\\'arte.\\n\\n12\\n00:00:53,470 --> 00:00:58,183\\nE poi immagini e registrazioni storiche e scannerizzazioni di libri antichi.\\n\\n13\\n00:00:58,483 --> 00:01:01,021\\nSchemi, diagrammi, grafici e mappe.\\n\\n14\\n00:01:01,335 --> 00:01:06,275\\nVideo e registrazioni audio... e molto altro ancora.\\n\\n15\\n00:01:06,664 --> 00:01:10,650\\nIn alcuni casi i materiali non sono più protetti da diritto d\\'autore,\\n\\n16\\n00:01:10,774 --> 00:01:15,110\\nin altri gli autori o i detentori dei diritti hanno concesso il permesso\\n\\n17\\n00:01:15,123 --> 00:01:19,634\\ndi utilizzare i loro lavori a patto di rispettare semplici condizioni,\\n\\n18\\n00:01:19,630 --> 00:01:24,442\\ncome l\\'attribuzione o l\\'uso della stessa licenza per eventuali opere derivate.\\n\\n19\\n00:01:24,745 --> 00:01:28,870\\nOltre sette milioni le risorse in Commons, liberamente scaricabili\\n\\n20\\n00:01:28,908 --> 00:01:34,731\\ne utilizzabili per ricerche, siti web, manifesti, pubblicità, opere d\\'arte...\\n\\n21\\n00:01:35,761 --> 00:01:39,050\\nLe risorse di Commons possono essere inserite direttamente\\n\\n22\\n00:01:39,055 --> 00:01:43,766\\nsulle pagine dell\\'enciclopedia Wikipedia e in tutti gli altri progetti Wikimedia,\\n\\n23\\n00:01:43,777 --> 00:01:47,438\\nchiaramente nel rispetto delle linee guida dello specifico progetto,\\n\\n24\\n00:01:47,476 --> 00:01:49,767\\ndella comunità linguistica di riferimento\\n\\n25\\n00:01:49,777 --> 00:01:52,983\\ne della legislazione del paese di provenienza.\\n\\n26\\n00:01:53,723 --> 00:01:57,300\\nOgni file in Commons ha una propria pagina wiki.\\n\\n27\\n00:01:57,567 --> 00:02:00,235\\nDopo il titolo segue la risorsa multimediale\\n\\n28\\n00:02:00,223 --> 00:02:03,729\\no una sua anteprima, come nel caso di foto molto grandi.\\n\\n29\\n00:02:04,007 --> 00:02:07,821\\nSono poi inserite una descrizione (spesso in più lingue)\\n\\n30\\n00:02:07,825 --> 00:02:12,856\\ne tutte le informazioni disponibili, come fonte, autore, data, termini d\\'uso.\\n\\n31\\n00:02:13,083 --> 00:02:17,044\\nLa cronologia del file elenca tutte le sue eventuali rielaborazioni.\\n\\n32\\n00:02:17,058 --> 00:02:21,408\\nÈ infatti possibile correggere e migliorare i file caricati da altri utenti.\\n\\n33\\n00:02:21,795 --> 00:02:24,567\\nÈ inoltre presente l\\'elenco delle pagine di Commons\\n\\n34\\n00:02:24,568 --> 00:02:26,995\\ne degli altri progetti della Wikimedia Foundation\\n\\n35\\n00:02:27,004 --> 00:02:29,996\\nche hanno collegato o richiamato la risorsa.\\n\\n36\\n00:02:30,275 --> 00:02:32,752\\nIn fondo ci sono le categorie di appartenenza,\\n\\n37\\n00:02:32,790 --> 00:02:35,502\\ncon le quali la risorsa è stata catalogata.\\n\\n38\\n00:02:35,544 --> 00:02:38,209\\nLe categorie sono standardizzate in inglese,\\n\\n39\\n00:02:38,213 --> 00:02:41,927\\nma per usarle è sufficiente una conoscenza approssimativa della lingua.\\n\\n40\\n00:02:42,863 --> 00:02:45,245\\nCome contribuire a Commons?\\n\\n41\\n00:02:45,278 --> 00:02:48,559\\nUn amante della fotografia può inserire le sue immagini,\\n\\n42\\n00:02:48,659 --> 00:02:52,055\\nun bravo disegnatore può aggiungere diagrammi e animazioni,\\n\\n43\\n00:02:52,054 --> 00:02:54,924\\nun musicista la registrazione di opere libere.\\n\\n44\\n00:02:55,133 --> 00:02:58,899\\nPossono essere inseriti anche film e registrazioni di opere teatrali,\\n\\n45\\n00:02:58,926 --> 00:03:01,581\\npurché non siano coperte da copyright.\\n\\n46\\n00:03:02,452 --> 00:03:07,264\\nPer poter caricare dei file su Commons, bisogna essere utenti registrati.\\n\\n47\\n00:03:07,277 --> 00:03:11,832\\nLa registrazione, gratuita, si effettua velocemente, e non è necessaria\\n\\n48\\n00:03:11,887 --> 00:03:15,581\\nse si è già registrati in un altro progetto della Wikimedia Foundation.\\n\\n49\\n00:03:15,974 --> 00:03:19,324\\nÈ possibile caricare risorse solo in un formato libero.\\n\\n50\\n00:03:19,366 --> 00:03:23,448\\nAd esempio per i video è ammesso solo il formato Ogg Theora.\\n\\n51\\n00:03:23,529 --> 00:03:26,682\\nEsistono comunque vari convertitori open source\\n\\n52\\n00:03:26,622 --> 00:03:29,877\\nche si possono scaricare e utilizzare gratuitamente.\\n\\n53\\n00:03:30,249 --> 00:03:34,390\\nOgni file caricato deve rispettare: la legge degli Stati Uniti,\\n\\n54\\n00:03:34,385 --> 00:03:37,322\\ndove risiede legalmente la Wikimedia Foundation;\\n\\n55\\n00:03:37,322 --> 00:03:40,229\\nle leggi delle nazioni da cui deriva la risorsa;\\n\\n56\\n00:03:40,283 --> 00:03:45,626\\nle leggi del paese dell’utente, che rimane responsabile dei contenuti inseriti.\\n\\n57\\n00:03:46,104 --> 00:03:49,031\\nBisogna poi controllare che non si stiano infrangendo\\n\\n58\\n00:03:49,050 --> 00:03:52,175\\nle norme sulla privacy o sui marchi registrati\\n\\n59\\n00:03:52,195 --> 00:03:56,026\\no le restrizioni sull\\'uso delle opere d\\'arte di alcuni musei.\\n\\n60\\n00:03:56,557 --> 00:04:00,399\\nNel caso di opere già pubblicate altrove senza una licenza libera,\\n\\n61\\n00:04:00,448 --> 00:04:04,311\\nl\\'autore o i detentori dei diritti devono inviare una mail\\n\\n62\\n00:04:04,364 --> 00:04:07,380\\nin cui si identificano e dichiarano di acconsentire\\n\\n63\\n00:04:07,416 --> 00:04:11,201\\nalla pubblicazione della risorsa con una licenza libera.\\n\\n64\\n00:04:12,002 --> 00:04:16,003\\nCome Wikipedia, Commons è un wiki, un sito aperto a tutti\\n\\n65\\n00:04:16,006 --> 00:04:18,714\\ned è gestito da volontari da ogni parte del mondo\\n\\n66\\n00:04:18,767 --> 00:04:22,079\\nche si impegnano a identificare e categorizzare il materiale,\\n\\n67\\n00:04:22,123 --> 00:04:24,549\\ncompletare o tradurre le descrizioni,\\n\\n68\\n00:04:24,561 --> 00:04:27,484\\ncreare le gallerie e le pagine specifiche per tema,\\n\\n69\\n00:04:27,484 --> 00:04:31,936\\nindividuare e cancellare le risorse con licenze o fonti incomplete.\\n\\n70\\n00:04:32,872 --> 00:04:35,303\\nIl progetto Commons è multilingue:\\n\\n71\\n00:04:35,364 --> 00:04:37,898\\nun sito unico contiene tutte le traduzioni\\n\\n72\\n00:04:37,909 --> 00:04:41,307\\ne le comunità linguistiche convivono in uno stesso spazio.\\n\\n73\\n00:04:41,581 --> 00:04:45,686\\nPer facilitare la ricerca di determinati materiali all\\'interno di Commons,\\n\\n74\\n00:04:45,684 --> 00:04:49,139\\noltre che nelle categorie, è possibile cercare nelle gallerie,\\n\\n75\\n00:04:49,190 --> 00:04:51,584\\nche sono delle pagine appositamente create\\n\\n76\\n00:04:51,590 --> 00:04:54,682\\nper raccogliere materiale su un soggetto specifico.\\n\\n77\\n00:04:54,964 --> 00:04:58,377\\nLe discussioni su un determinato contenuto avvengono\\n\\n78\\n00:04:58,408 --> 00:05:01,966\\nnella pagina di discussione che affianca ogni risorsa di Commons,\\n\\n79\\n00:05:02,016 --> 00:05:05,889\\nmentre le discussioni generali in una pagina specifica.\\n\\n80\\n00:05:06,024 --> 00:05:08,918\\nLe comunicazioni sono principalmente in inglese,\\n\\n81\\n00:05:08,966 --> 00:05:12,569\\nma esistono anche pagine dedicate al confronto in altre lingue.\\n\\n82\\n00:05:12,853 --> 00:05:16,496\\nPer problemi tecnici ci sono a disposizione l\\'help desk\\n\\n83\\n00:05:16,535 --> 00:05:20,048\\ne numerose pagine di aiuto, tradotte in varie lingue.\\n\\n84\\n00:05:20,222 --> 00:05:23,240\\nPer questioni specifiche o particolarmente complesse,\\n\\n85\\n00:05:23,240 --> 00:05:26,739\\nci si può rivolgere agli amministratori, che sono dei volontari\\n\\n86\\n00:05:26,783 --> 00:05:29,486\\nche hanno guadagnato nel tempo la fiducia della comunità\\n\\n87\\n00:05:29,508 --> 00:05:33,164\\nper la loro conoscenza del progetto e che sono gli unici autorizzati\\n\\n88\\n00:05:33,201 --> 00:05:35,647\\nad eseguire alcune operazioni delicate,\\n\\n89\\n00:05:35,648 --> 00:05:38,603\\ncome ad esempio la cancellazione di una risorsa.\\n\\n90\\n00:05:39,690 --> 00:05:43,318\\nChi utilizza una risorsa di Commons deve assicurarsi sempre\\n\\n91\\n00:05:43,312 --> 00:05:46,334\\ndi rispettare le leggi del proprio paese di appartenenza.\\n\\n92\\n00:05:46,476 --> 00:05:48,614\\nCommons non può garantire la liceità\\n\\n93\\n00:05:48,683 --> 00:05:51,355\\ndell’uso di una risorsa in qualsiasi contesto,\\n\\n94\\n00:05:51,362 --> 00:05:54,260\\nné la sua assoluta accuratezza e affidabilità.\\n\\n95\\n00:05:54,307 --> 00:05:58,402\\nMa è incredibile quanto materiale valido e utilizzabile è stato inserito.\\n\\n96\\n00:05:59,339 --> 00:06:03,755\\nSempre più archivi di stato, musei, biblioteche, collezioni private\\n\\n97\\n00:06:03,774 --> 00:06:07,015\\neffettuano piccole o grandi \"donazioni\" di materiali\\n\\n98\\n00:06:07,063 --> 00:06:10,003\\nche diventano così utile patrimonio di tutti.\\n\\n99\\n00:06:10,655 --> 00:06:14,854\\nDiversi fotografi professionisti pubblicano le loro opere su Commons,\\n\\n100\\n00:06:14,871 --> 00:06:18,240\\norgogliosi di vedere il loro lavoro ripreso in mezzo mondo.\\n\\n101\\n00:06:18,413 --> 00:06:22,119\\nViene dato spazio anche a illustratori che hanno donato a Commons\\n\\n102\\n00:06:22,123 --> 00:06:26,151\\nschemi o diagrammi particolarmente efficaci ed eleganti.\\n\\n103\\n00:06:26,496 --> 00:06:30,857\\nPer il riconoscimento dei lavori di qualità esistono vari meccanismi:\\n\\n104\\n00:06:30,867 --> 00:06:35,316\\nad esempio annualmente si tiene un concorso per premiare la foto dell\\'anno.\\n\\n105\\n00:06:35,618 --> 00:06:38,555\\nUn\\'altra selezione sceglie le immagini più belle\\n\\n106\\n00:06:38,559 --> 00:06:40,828\\nrealizzate dagli utenti di Commons\\n\\n107\\n00:06:40,841 --> 00:06:45,220\\ne un\\'altra ancora invece premia le immagini più efficaci nel loro genere.\\n\\n108\\n00:06:45,462 --> 00:06:49,511\\nQuotidianamente viene scelta un\\'immagine particolarmente interessante\\n\\n109\\n00:06:49,532 --> 00:06:53,676\\ne la stessa prassi è usata anche per le risorse multimediali.\\n\\n110\\n00:06:54,345 --> 00:06:56,682\\nPer sostenere finanziamente Commons\\n\\n111\\n00:06:56,766 --> 00:06:59,570\\nsi può fare una donazione alla Wikimedia Foundation,\\n\\n112\\n00:06:59,599 --> 00:07:03,338\\noppure si può scegliere di sostenere (anche tramite il 5x1000)\\n\\n113\\n00:07:03,359 --> 00:07:06,715\\nWikimedia Italia, un’associazione senza scopo di lucro\\n\\n114\\n00:07:06,743 --> 00:07:08,757\\nche si occupa di promuovere in Italia\\n\\n115\\n00:07:08,792 --> 00:07:11,826\\nCommons e gli altri progetti della Wikimedia Foundation.',\n", + " 'bytes': 10583,\n", + " 'sha1': 'atnywqy2q7u5lykeio86y3w2vi2br7n',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606353553,\n", + " 'timestamp': '2021-11-09T09:44:28Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15393854,\n", + " 'title': 'Wiki loves monuments.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Wiki loves monuments.ogg.en.srt]] to [[TimedText:Wiki loves monuments.ogv.en.srt]]: rename of the original file',\n", + " 'text': '1\\n00:01:44,000 --> 00:01:47,000\\nWikimedians\\n\\n2\\n00:01:48,500 --> 00:01:51,500\\nAll over the world\\n\\n3\\n00:01:52,500 --> 00:01:54,000\\nloves monuments\\n\\n4\\n00:01:56,000 --> 00:01:59,000\\nWiki loves monuments',\n", + " 'bytes': 198,\n", + " 'sha1': '1nbmk2vxld0veuiofgnj7csk0sd2zlt',\n", + " 'parent_id': 55088851,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55160299,\n", + " 'timestamp': '2011-06-05T15:31:16Z',\n", + " 'user': {'id': 493491, 'text': 'Mathonius'},\n", + " 'page': {'id': 15409771,\n", + " 'title': 'Wikimedia Italia - WikiGuida 2 - Commons.ogv.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Check',\n", + " 'text': '1\\n00:00:11,086 --> 00:00:14,676\\nWikimedia Commons (ook wel \"Commons\" genoemd)\\n\\n2\\n00:00:14,740 --> 00:00:17,986\\nis een project dat afbeeldingen, geluidsbestanden, video\\'s \\n\\n3\\n00:00:18,010 --> 00:00:22,196\\nen andere educatieve en beschrijvende multimedia verzamelt.\\n\\n4\\n00:00:22,174 --> 00:00:26,249\\nDe bestanden die op Commons staan, kunnen vrij gebruikt worden,\\n\\n5\\n00:00:26,305 --> 00:00:31,028\\nook voor commerciële doeleinden, indien aan de gebruiksvoorwaarden is voldaan.\\n\\n6\\n00:00:31,821 --> 00:00:35,200\\nIn 2004 werd Commons als zusterproject van Wikipedia opgericht\\n\\n7\\n00:00:35,236 --> 00:00:38,888\\nom de basis te vormen voor de verschillende projecten van de Wikimedia Foundation\\n\\n8\\n00:00:38,934 --> 00:00:42,153\\nmaar al snel groeide het uit tot een zelfstandig project met zijn eigen richtlijnen.\\n\\n9\\n00:00:42,320 --> 00:00:46,469\\nOp Commons kunt u afbeeldingen vinden van plaatsen en monumenten,\\n\\n10\\n00:00:46,919 --> 00:00:49,281\\ndieren, planten, mineralen,\\n\\n11\\n00:00:49,726 --> 00:00:53,281\\nfoto\\'s van personen, alledaagse voorwerpen, kunstwerken,\\n\\n12\\n00:00:53,470 --> 00:00:58,183\\nalsook historische afbeeldingen en opnames, en scans van oude boeken,\\n\\n13\\n00:00:58,483 --> 00:01:01,021\\nschema\\'s, diagrammen, grafieken en kaarten,\\n\\n14\\n00:01:01,335 --> 00:01:06,275\\nbeeld- en geluidsfragmenten... en veel meer.\\n\\n15\\n00:01:06,664 --> 00:01:10,650\\nIn sommige gevallen zijn de bestanden niet langer afhankelijk van auteursrechten,\\n\\n16\\n00:01:10,774 --> 00:01:15,110\\nin andere gevallen gaven de auteurs of de rechthebbenden toestemming\\n\\n17\\n00:01:15,123 --> 00:01:19,634\\nom hun materiaal te gebruiken onder simpele voorwaarden\\n\\n18\\n00:01:19,630 --> 00:01:24,442\\nzoals naamsvermelding, of het vrijgeven van afgeleide werken met dezelfde licentie. \\n\\n19\\n00:01:24,745 --> 00:01:28,870\\nEr staan meer dan zeven miljoen vrij te downloaden bestanden op Commons\\n\\n20\\n00:01:28,908 --> 00:01:34,731\\ndie gebruikt kunnen worden voor papers, websites, posters, reclame, kunstwerken...\\n\\n21\\n00:01:35,761 --> 00:01:39,050\\nDe bestanden die op Commons staan, kunnen meteen worden toegevoegd\\n\\n22\\n00:01:39,055 --> 00:01:43,766\\naan pagina\\'s op Wikipedia en andere Wikimediaprojecten,\\n\\n23\\n00:01:43,777 --> 00:01:47,438\\nals ze overeenkomstig de richtlijnen van het specifieke project zijn,\\n\\n24\\n00:01:47,476 --> 00:01:49,767\\naansluiten op de verwachtingen van de gemeenschap in kwestie\\n\\n25\\n00:01:49,777 --> 00:01:52,983\\nen niet in strijd zijn met de desbetreffende wet(ten) in het land van oorsprong.\\n\\n26\\n00:01:53,723 --> 00:01:57,300\\nElk bestand op Commons heeft zijn eigen wikipagina.\\n\\n27\\n00:01:57,567 --> 00:02:00,235\\nEerst komt de titel, dan de media\\n\\n28\\n00:02:00,223 --> 00:02:03,729\\nof een voorvertoning, voor zeer grote foto\\'s.\\n\\n29\\n00:02:04,007 --> 00:02:07,821\\nHierna volgt een beschrijving (meestal in verschillende talen)\\n\\n30\\n00:02:07,825 --> 00:02:12,856\\nmet alle beschikbare informatie zoals de bron, auteur, datum en gebruiksvoorwaarden. \\n\\n31\\n00:02:13,083 --> 00:02:17,044\\nDe geschiedenis van het bestand laat de aanpassingen ervan zien.\\n\\n32\\n00:02:17,058 --> 00:02:21,408\\nHet is mogelijk om zelf bestanden aan te passen en te verbeteren, zelfs wanneer deze door andere gebruikers zijn geüpload.\\n\\n33\\n00:02:21,795 --> 00:02:24,567\\nOp de pagina staat ook een lijst van pagina\\'s op Commons\\n\\n34\\n00:02:24,568 --> 00:02:26,995\\nalsook op andere projecten van de Wikimedia Foundation\\n\\n35\\n00:02:27,004 --> 00:02:29,996\\nwaarop naar het bestand verwezen wordt.\\n\\n36\\n00:02:30,275 --> 00:02:32,752\\nOnderaan de pagina staan de categorieën\\n\\n37\\n00:02:32,790 --> 00:02:35,502\\nwaarin het bestand is geplaatst\\n\\n38\\n00:02:35,544 --> 00:02:38,209\\nDe categorieën zijn standaard in het Engels,\\n\\n39\\n00:02:38,213 --> 00:02:41,927\\nmaar een basiskennis van de taal is genoeg om ermee te werken.\\n\\n40\\n00:02:42,863 --> 00:02:45,245\\nHoe kunt u bijdragen aan Commons?\\n\\n41\\n00:02:45,278 --> 00:02:48,559\\nEen fotograaf kan zijn/haar eigen foto\\'s uploaden,\\n\\n42\\n00:02:48,659 --> 00:02:52,055\\neen illustrator kan diagrammen of animaties toevoegen,\\n\\n43\\n00:02:52,054 --> 00:02:54,924\\neen muzikant kan opnames van vrije muziek uploaden.\\n\\n44\\n00:02:55,133 --> 00:02:58,899\\nZelfs films en opnames van toneelstukken kunnen worden geüpload,\\n\\n45\\n00:02:58,926 --> 00:03:01,581\\nzolang deze vrij zijn van auteursrechtelijke bescherming.\\n\\n46\\n00:03:02,452 --> 00:03:07,264\\nOm bestanden te uploaden op Commons moet u zich eerst registreren.\\n\\n47\\n00:03:07,277 --> 00:03:11,832\\nDeze registratie is gratis, snel en niet nodig als...\\n\\n48\\n00:03:11,887 --> 00:03:15,581\\n...u al geregistreerd bent op een ander project van de Wikimedia Foundation.\\n\\n49\\n00:03:15,974 --> 00:03:19,324\\nAlleen bestanden in een vrij bestandsformaat mogen worden geüpload.\\n\\n50\\n00:03:19,366 --> 00:03:23,448\\nBijvoorbeeld: het enige toegelaten formaat voor video\\'s is Ogg Theora.\\n\\n51\\n00:03:23,529 --> 00:03:26,682\\nEen aantal programma\\'s die bestanden omzetten naar open-sourceformaten\\n\\n52\\n00:03:26,622 --> 00:03:29,877\\nzijn beschikbaar en kunnen vrij gedownload en gebruikt worden.\\n\\n53\\n00:03:30,249 --> 00:03:34,390\\nElk geüpload bestand moet voldoen aan: de wet van de Verenigde Staten,\\n\\n54\\n00:03:34,385 --> 00:03:37,322\\nwaar de Wikimedia Foundation juridisch gezien gevestigd is;\\n\\n55\\n00:03:37,322 --> 00:03:40,229\\nde wet van het land waar het bestand vandaan komt;\\n\\n56\\n00:03:40,283 --> 00:03:45,626\\nde wet van het land van oorsprong van de gebruiker, die verantwoordelijk is voor de inhoud van het geüploade bestand.\\n\\n57\\n00:03:46,104 --> 00:03:49,031\\nDan moet u kijken of u geen inbreuk pleegt\\n\\n58\\n00:03:49,050 --> 00:03:52,175\\nop wetten in verband met privacy en handelsmerken\\n\\n59\\n00:03:52,195 --> 00:03:56,026\\nof de beperkingen die opgelegd zijn door sommige musea over het gebruik van kunstwerken.\\n\\n60\\n00:03:56,557 --> 00:04:00,399\\nIn het geval dat het materiaal ergens anders onder een niet-vrije licentie is gepubliceerd,\\n\\n61\\n00:04:00,448 --> 00:04:04,311\\nmoeten de auteurs of rechthebbenden een e-mail sturen \\n\\n62\\n00:04:04,364 --> 00:04:07,380\\nwaarin zij zichzelf identificeren en hun toestemming geven om\\n\\n63\\n00:04:07,416 --> 00:04:11,201\\nhet materiaal onder een vrije licentie te publiceren.\\n\\n64\\n00:04:12,002 --> 00:04:16,003\\nNet zoals Wikipedia is Commons een wiki, wat betekent dat het vrij te bewerken is\\n\\n65\\n00:04:16,006 --> 00:04:18,714\\nen wordt beheerd door vrijwillige gebruikers van over de hele wereld,\\n\\n66\\n00:04:18,767 --> 00:04:22,079\\ndie materiaal identificeren en categoriseren,\\n\\n67\\n00:04:22,123 --> 00:04:24,549\\nde beschrijvingen vervolledigen of vertalen,\\n\\n68\\n00:04:24,561 --> 00:04:27,484\\ngalerijen en specifieke themapagina\\'s maken,\\n\\n69\\n00:04:27,484 --> 00:04:31,936\\nbestanden die onvoldoende bronnen en/of licenties hebben opzoeken en verwijderen.\\n\\n70\\n00:04:32,872 --> 00:04:35,303\\nCommons is een meertalig project:\\n\\n71\\n00:04:35,364 --> 00:04:37,898\\neen enkele website host alle vertaalde versies\\n\\n72\\n00:04:37,909 --> 00:04:41,307\\nen de verschillende taalgemeenschappen delen dezelfde ruimte.\\n\\n73\\n00:04:41,581 --> 00:04:45,686\\nOm het opzoeken van materiaal op Commons gemakkelijker te maken,\\n\\n74\\n00:04:45,684 --> 00:04:49,139\\nkunt u naast categorieën ook galerijen bekijken:\\n\\n75\\n00:04:49,190 --> 00:04:51,584\\npagina\\'s die speciaal gemaakt zijn\\n\\n76\\n00:04:51,590 --> 00:04:54,682\\nom bestanden over een bepaald onderwerp samen te brengen.\\n\\n77\\n00:04:54,964 --> 00:04:58,377\\nOverleg over de inhoud vindt plaats\\n\\n78\\n00:04:58,408 --> 00:05:01,966\\nop de overlegpagina die elk bestand heeft, \\n\\n79\\n00:05:02,016 --> 00:05:05,889\\nalgemene discussies over Commons vinden plaats op een aparte pagina.\\n\\n80\\n00:05:06,024 --> 00:05:08,918\\nDe communicatie gebeurt voornamelijk in het Engels,\\n\\n81\\n00:05:08,966 --> 00:05:12,569\\nmaar overlegpagina\\'s in andere talen zijn ook beschikbaar.\\n\\n82\\n00:05:12,853 --> 00:05:16,496\\nIndien u problemen ondervindt, is er een helpdesk\\n\\n83\\n00:05:16,535 --> 00:05:20,048\\nen vele hulppagina\\'s, in verschillende talen.\\n\\n84\\n00:05:20,222 --> 00:05:23,240\\nVoor specifieke of zeer complexe kwesties,\\n\\n85\\n00:05:23,240 --> 00:05:26,739\\nkunt u de hulp vragen van een van de moderatoren. Dit zijn vrijwilligers\\n\\n86\\n00:05:26,783 --> 00:05:29,486\\ndie het vertrouwen van de gemeenschap hebben verdiend\\n\\n87\\n00:05:29,508 --> 00:05:33,164\\nvanwege hun kennis van het project, en zij zijn de enigen\\n\\n88\\n00:05:33,201 --> 00:05:35,647\\ndie sommige precaire bewerkingen mogen uitvoeren,\\n\\n89\\n00:05:35,648 --> 00:05:38,603\\nzoals het verwijderen van een bestand.\\n\\n90\\n00:05:39,690 --> 00:05:43,318\\nIndien u een bestand van Commons wilt gebruiken, zorg dan altijd \\n\\n91\\n00:05:43,312 --> 00:05:46,334\\ndat het gebruik voldoet aan de wet van uw eigen land.\\n\\n92\\n00:05:46,476 --> 00:05:48,614\\nCommons kan geen garanties geven inzake rechtmatigheid\\n\\n93\\n00:05:48,683 --> 00:05:51,355\\nbij het gebruik van een bestand in welke context dan ook,\\n\\n94\\n00:05:51,362 --> 00:05:54,260\\nnoch zijn feitelijke juistheid en betrouwbaarheid.\\n\\n95\\n00:05:54,307 --> 00:05:58,402\\nMaar het is ongelofelijk om te zien hoeveel deugdelijk en nuttig materiaal er is geüpload.\\n\\n96\\n00:05:59,339 --> 00:06:03,755\\nSteeds meer publieke archieven, musea, bibliotheken en private collecties\\n\\n97\\n00:06:03,774 --> 00:06:07,015\\n\"doneren\" kleine of grote hoeveelheden bestanden\\n\\n98\\n00:06:07,063 --> 00:06:10,003\\ndie dan deel uit kunnen maken van het publieke goed.\\n\\n99\\n00:06:10,655 --> 00:06:14,854\\nVerschillende professionele fotografen publiceren hun werk op Commons,\\n\\n100\\n00:06:14,871 --> 00:06:18,240\\ntrots dat hun werk over de hele wereld verspreid wordt.\\n\\n101\\n00:06:18,413 --> 00:06:22,119\\nHetzelfde geldt voor illustrators, die doeltreffende\\n\\n102\\n00:06:22,123 --> 00:06:26,151\\nen elegante diagrammen hebben geüpload.\\n\\n103\\n00:06:26,496 --> 00:06:30,857\\nDe gemeenschap heeft verschillende mogelijkheden om een kwaliteitswerk te erkennen:\\n\\n104\\n00:06:30,867 --> 00:06:35,316\\ner is een wedstrijd voor de foto van het jaar.\\n\\n105\\n00:06:35,618 --> 00:06:38,555\\nEen andere groep kiest de beste afbeeldingen,\\n\\n106\\n00:06:38,559 --> 00:06:40,828\\ngemaakt door gebruikers van Commons, uit\\n\\n107\\n00:06:40,841 --> 00:06:45,220\\nen nog een andere verkiest de meest effectieve afbeeldingen binnen één genre.\\n\\n108\\n00:06:45,462 --> 00:06:49,511\\nEen bijzonder interessante afbeelding wordt dagelijks gekozen\\n\\n109\\n00:06:49,532 --> 00:06:53,676\\nen hetzelfde gebeurt voor andere multimediabestanden.\\n\\n110\\n00:06:54,345 --> 00:06:56,682\\nU kunt Commons steunen door\\n\\n111\\n00:06:56,766 --> 00:06:59,570\\nte doneren aan de Wikimedia Foundation,\\n\\n112\\n00:06:59,599 --> 00:07:03,338\\nof u kunt ervoor kiezen \\n\\n113\\n00:07:03,359 --> 00:07:06,715\\nWikimedia Italia te steunen; dit is een non-profitorganisatie\\n\\n114\\n00:07:06,743 --> 00:07:08,757\\ndie Commons en andere projecten van de Wikimedia Foundation\\n\\n115\\n00:07:08,792 --> 00:07:11,826\\nin Italië promoot.',\n", + " 'bytes': 10702,\n", + " 'sha1': 'cxcryux120po3gfhfprfvs106zpcz2v',\n", + " 'parent_id': 55154917,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55185916,\n", + " 'timestamp': '2011-06-06T06:25:50Z',\n", + " 'user': {'id': 639212, 'text': 'Olli'},\n", + " 'page': {'id': 15417080,\n", + " 'title': 'Wikimedia Italia - WikiGuida 2 - Commons.ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:11,086 --> 00:00:14,676\\nWikimedia Commons (tai vain pelkkä Commons)\\n\\n2\\n00:00:14,740 --> 00:00:17,986\\non projekti, joka kerää kuvia, ääniä, videoita\\n\\n3\\n00:00:18,010 --> 00:00:22,196\\nja muita opettavaisia ja asioita selittäviä multimediatiedostoja.\\n\\n4\\n00:00:22,174 --> 00:00:26,249\\nCommonsiin tallennettuja tiedostoja voidaan käyttää vapaasti,\\n\\n5\\n00:00:26,305 --> 00:00:31,028\\nmyös kaupallisiin tarkoituksiin, kunhan ehtoja noudatetaan.\\n\\n6\\n00:00:31,821 --> 00:00:35,200\\nWikipedian sisarprojekti, Commons, perustettiin vuonna 2004\\n\\n7\\n00:00:35,236 --> 00:00:38,888\\nWikimedia Foundationin yleiseksi kirjastoksi kaikkia projekteja varten.\\n\\n8\\n00:00:38,934 --> 00:00:42,153\\nSitten siitä syntyi oma projekti, jolla oli omat ohjeet ja säännöt.\\n\\n9\\n00:00:42,320 --> 00:00:46,469\\nCommonsista voit löytää kuvia paikoista ja maamerkeistä.\\n\\n10\\n00:00:46,919 --> 00:00:49,281\\nEläimiä, kasveja, mineraaleja.\\n\\n11\\n00:00:49,726 --> 00:00:53,281\\nKuvia ihmisistä, jokaisen päivän tavaroista, taideteoksista.\\n\\n12\\n00:00:53,470 --> 00:00:58,183\\nJa jälleen kerran historiallisia kuvia ja merkintöjä, ja skannauksia muinaisista kirjoista.\\n\\n13\\n00:00:58,483 --> 00:01:01,021\\nKaavoja, kaavioita, ja karttoja.\\n\\n14\\n00:01:01,335 --> 00:01:06,275\\nVideo- ja äänitallenteita... ja paljon muuta.\\n\\n15\\n00:01:06,664 --> 00:01:10,650\\nJoissakin tapauksissa tekijänoikeuslaki ei enää suojaa tiedostoja.\\n\\n16\\n00:01:10,774 --> 00:01:15,110\\nMuissa tapauksissa tekijät tai tekijänoikeuden omistajat ovat antaneet luvan\\n\\n17\\n00:01:15,123 --> 00:01:19,634\\nkäyttää teoksiansa yksinkertaisten ehtojen alaisina.\\n\\n18\\n00:01:19,630 --> 00:01:24,442\\nNiitä voivat olla esimerkiksi alkuperäisen tekijän nimeäminen tai se, että uudet työt julkaistaan samalla lisenssillä.\\n\\n19\\n00:01:24,745 --> 00:01:28,870\\nCommonsissa on yli 7 miljoonaa tiedostoa, vapaasti ladattavissa.\\n\\n20\\n00:01:28,908 --> 00:01:34,731\\nNiitä voi käyttää lehdissä, verkkosivuilla, julisteissa, mainostuksessa, taideteoksissa...\\n\\n21\\n00:01:35,761 --> 00:01:39,050\\nCommonsissa olevia tiedostoja voi käyttää suoraan\\n\\n22\\n00:01:39,055 --> 00:01:43,766\\nWikipedian ja muiden Wikimedia-projektien artikkeleissa,\\n\\n23\\n00:01:43,777 --> 00:01:47,438\\nyhteisten ehtojen alaisena.\\n\\n24\\n00:01:47,476 --> 00:01:49,767\\nKieliversio voi kuitenkin luoda poikkeuksia tähän.\\n\\n25\\n00:01:49,777 --> 00:01:52,983\\nLisäksi tulee noudattaa maan paikallisia lakeja.\\n\\n26\\n00:01:53,723 --> 00:01:57,300\\nJokaisella Commonsin tiedostolla on oma sivunsa.\\n\\n27\\n00:01:57,567 --> 00:02:00,235\\nEnsin tulee otsikko, sitten tiedosto\\n\\n28\\n00:02:00,223 --> 00:02:03,729\\ntai sen esikatselu, erittäin suurien kuvien tapauksessa.\\n\\n29\\n00:02:04,007 --> 00:02:07,821\\nSeuraavana on tiedoston kuvaus (usein monikielinen)\\n\\n30\\n00:02:07,825 --> 00:02:12,856\\nja kaikki saatavilla olevat tiedot, kuten lähde, tekijä, päivämäärä, ja käyttöehdot.\\n\\n31\\n00:02:13,083 --> 00:02:17,044\\nTiedoston historiasta näet kaikki siihen tehdyt muutokset.\\n\\n32\\n00:02:17,058 --> 00:02:21,408\\nTiesitkö, että on mahdollista muokata ja kehittää muiden käyttäjien lataamia tiedostoja?\\n\\n33\\n00:02:21,795 --> 00:02:24,567\\nCommonsissa on myös lista sivuista,\\n\\n34\\n00:02:24,568 --> 00:02:26,995\\nkuten kaikissa muissakin Wikimedia Foundationin projekteissa,\\n\\n35\\n00:02:27,004 --> 00:02:29,996\\njotka linkittävät tiedostoon.\\n\\n36\\n00:02:30,275 --> 00:02:32,752\\nSivun alaosassa löydät tiedostolle annetut luokat,\\n\\n37\\n00:02:32,790 --> 00:02:35,502\\njoihin se on asetettu.\\n\\n38\\n00:02:35,544 --> 00:02:38,209\\nLuokkien nimet ovat englanniksi,\\n\\n39\\n00:02:38,213 --> 00:02:41,927\\nmutta ne ovat yksinkertaisia.\\n\\n40\\n00:02:42,863 --> 00:02:45,245\\nMiten sinä voit osallistua Commonsiin?\\n\\n41\\n00:02:45,278 --> 00:02:48,559\\nValokuvaamisesta pitävät voivat ladata omia valokuviaan,\\n\\n42\\n00:02:48,659 --> 00:02:52,055\\nhyvä piirtäjä voi lisätä kaavoja ja animaatioita,\\n\\n43\\n00:02:52,054 --> 00:02:54,924\\nmuusikko voi ladata nauhoituksia vapaasta musiikista.\\n\\n44\\n00:02:55,133 --> 00:02:58,899\\nJopa elokuvia ja videoita teatteriesityksistä voi ladata,\\n\\n45\\n00:02:58,926 --> 00:03:01,581\\nkunhan ne ovat tekijänoikeuksista vapaita.\\n\\n46\\n00:03:02,452 --> 00:03:07,264\\nLadataksesi tiedostoja Commonsiin, sinun täytyy olla rekisteröitynyt käyttäjä.\\n\\n47\\n00:03:07,277 --> 00:03:11,832\\nRekisteröityminen on ilmaista ja nopeaa. Tiesitkö, että jos olet jo -\\n\\n48\\n00:03:11,887 --> 00:03:15,581\\nrekisteröitynyt toiseen Wikimedia Foundationin projektiin - sinun ei tarvitse rekisteröityä uudelleen!\\n\\n49\\n00:03:15,974 --> 00:03:19,324\\nTiedostojen lataaminen on sallittua vain vapaissa tiedostomuodoissa.\\n\\n50\\n00:03:19,366 --> 00:03:23,448\\nEsimerkiksi ainoa sallittu videomuoto on Ogg Theora.\\n\\n51\\n00:03:23,529 --> 00:03:26,682\\nVoit kuitenkin ladata ilmaisen ohjelman, jolla -\\n\\n52\\n00:03:26,622 --> 00:03:29,877\\nvoit muuttaa tiedoston muodon sopivaksi.\\n\\n53\\n00:03:30,249 --> 00:03:34,390\\nJokaisen ladatun tiedoston täytyy noudattaa Yhdysvaltojen lakeja,\\n\\n54\\n00:03:34,385 --> 00:03:37,322\\njossa Wikimedia Foundation sijaitsee laillisesti;\\n\\n55\\n00:03:37,322 --> 00:03:40,229\\nalkuperäisen maan lakeja;\\n\\n56\\n00:03:40,283 --> 00:03:45,626\\nja lataajan oman maan lakeja. Käyttäjä on vastuussa lataamastaan sisällöstä.\\n\\n57\\n00:03:46,104 --> 00:03:49,031\\nSinun täytyy myös tarkistaa, että et riko yksityisyyden\\n\\n58\\n00:03:49,050 --> 00:03:52,175\\ntai tavaramerkkien lakeja\\n\\n59\\n00:03:52,195 --> 00:03:56,026\\ntai joidenkin museoiden asettamia rajoituksia taideteoksiin liittyen.\\n\\n60\\n00:03:56,557 --> 00:04:00,399\\nJos materiaalia on jo julkaistu jossakin muualla ei-vapaan lisenssin alaisena,\\n\\n61\\n00:04:00,448 --> 00:04:04,311\\ntekijöiden tai tekijänoikeuksien omistajien pitää lähettää sähköpostia,\\n\\n62\\n00:04:04,364 --> 00:04:07,380\\njossa he todentavat itsensä ja antavat luvan\\n\\n63\\n00:04:07,416 --> 00:04:11,201\\njulkaista materiaalia vapaan lisenssin alaisena.\\n\\n64\\n00:04:12,002 --> 00:04:16,003\\nKuten Wikipedia, Commons on wiki, jokaiselle ihmiselle avoinna oleva sivu.\\n\\n65\\n00:04:16,006 --> 00:04:18,714\\nVapaaehtoiset maailman joka kolkasta pitävät sitä yllä.\\n\\n66\\n00:04:18,767 --> 00:04:22,079\\nHe luokittelevat ja tunnistavat materiaalia,\\n\\n67\\n00:04:22,123 --> 00:04:24,549\\ntäydentävät tai kääntävät tiedostojen kuvauksia,\\n\\n68\\n00:04:24,561 --> 00:04:27,484\\nluovat gallerioita ja teemasivuja,\\n\\n69\\n00:04:27,484 --> 00:04:31,936\\netsivät ja poistavat tiedostoja, joilla on kelpaamaton lähde tai lisenssi.\\n\\n70\\n00:04:32,872 --> 00:04:35,303\\nCommons on monikielinen projekti:\\n\\n71\\n00:04:35,364 --> 00:04:37,898\\nyksittäinen sivusto, jonka alaisena sijaitsee erikielisiä töitä\\n\\n72\\n00:04:37,909 --> 00:04:41,307\\nja monikielisiä yhteisöjä.\\n\\n73\\n00:04:41,581 --> 00:04:45,686\\nJotta löytäisit tiedostoja Commonsista helpommin,\\n\\n74\\n00:04:45,684 --> 00:04:49,139\\nvoit katsoa gallerioita luokkien sijasta.\\n\\n75\\n00:04:49,190 --> 00:04:51,584\\nNe ovat sivuja, jotka on tehty\\n\\n76\\n00:04:51,590 --> 00:04:54,682\\nsamasta aiheesta olevien materiaalien käsittelyyn.\\n\\n77\\n00:04:54,964 --> 00:04:58,377\\nSisällöstä voi myös keskustella, sillä jokaisella tiedostolla\\n\\n78\\n00:04:58,408 --> 00:05:01,966\\non oma keskustelusivulla. Yleiset keskustelut\\n\\n79\\n00:05:02,016 --> 00:05:05,889\\nCommonsiin liittyen ovat omalla sivullaan.\\n\\n80\\n00:05:06,024 --> 00:05:08,918\\nViestintä tapahtuu pääasiassa englanniksi,\\n\\n81\\n00:05:08,966 --> 00:05:12,569\\nmutta myös muunkielisiä keskustelusivuja on saatavilla.\\n\\n82\\n00:05:12,853 --> 00:05:16,496\\nJos kohtaat ongelmia, on olemassa tukisivu\\n\\n83\\n00:05:16,535 --> 00:05:20,048\\nja paljon ohjesivuja. Ne ovat saatavilla useilla eri kielillä.\\n\\n84\\n00:05:20,222 --> 00:05:23,240\\nJos kohtaat vaikeita ongelmia,\\n\\n85\\n00:05:23,240 --> 00:05:26,739\\nvoit kysyä ylläpitäjiltä, jotka ovat vapaaehtoisia,\\n\\n86\\n00:05:26,783 --> 00:05:29,486\\njotka ovat saaneet luottamusta yhteisöltä.\\n\\n87\\n00:05:29,508 --> 00:05:33,164\\nSe perustuu hyvään asiantuntemukseen. Vain ylläpitäjät voivat\\n\\n88\\n00:05:33,201 --> 00:05:35,647\\nsuorittaa joitakin operaatioita,\\n\\n89\\n00:05:35,648 --> 00:05:38,603\\nkuten tiedostojen poistoa.\\n\\n90\\n00:05:39,690 --> 00:05:43,318\\nJos haluat käyttää Commonsissa olevaa tiedostoa, varmista aina,\\n\\n91\\n00:05:43,312 --> 00:05:46,334\\nettä noudatat oman maasi lakeja.\\n\\n92\\n00:05:46,476 --> 00:05:48,614\\nCommons ei voi taata, että\\n\\n93\\n00:05:48,683 --> 00:05:51,355\\ntiedoston käyttö olisi sallittua,\\n\\n94\\n00:05:51,362 --> 00:05:54,260\\neikä sen tarkkuutta tai luotettavuutta.\\n\\n95\\n00:05:54,307 --> 00:05:58,402\\nMutta on uskomatonta nähdä, kuinka paljon luotettavaa ja hyödyllistä tietoa on ladattu.\\n\\n96\\n00:05:59,339 --> 00:06:03,755\\nEntistä useampi julkinen arkisto, museo, kirjasto ja yksityiskokoelma\\n\\n97\\n00:06:03,774 --> 00:06:07,015\\ntekee pieniä ja suuria materiaalin \"lahjoituksia\",\\n\\n98\\n00:06:07,063 --> 00:06:10,003\\njoista moni ihminen voi hyötyä.\\n\\n99\\n00:06:10,655 --> 00:06:14,854\\nUseat ammattimaiset valokuvaajat julkaisevat töitään Commonsissa,\\n\\n100\\n00:06:14,871 --> 00:06:18,240\\nylpeänä siitä, että heidän tekemänsä työ tulee maailmanlaajuisesti saataville.\\n\\n101\\n00:06:18,413 --> 00:06:22,119\\nSama on myös piirtäjillä, jotka antavat Commonsiin\\n\\n102\\n00:06:22,123 --> 00:06:26,151\\nhyödyllisiä ja hyvälaatuisia kaavioita ja kuvia.\\n\\n103\\n00:06:26,496 --> 00:06:30,857\\nYhteisöllä on useita tapoja löytää parhaat työt:\\n\\n104\\n00:06:30,867 --> 00:06:35,316\\njoka vuosi pidetään kilpailu jossa palkitaan paras valokuva.\\n\\n105\\n00:06:35,618 --> 00:06:38,555\\nToisessa kilpailussa valitaan paras\\n\\n106\\n00:06:38,559 --> 00:06:40,828\\nCommonsin käyttäjien tekemä valokuva\\n\\n107\\n00:06:40,841 --> 00:06:45,220\\nja toinen palkitsee parhaan kuvan tietyssä luokassa.\\n\\n108\\n00:06:45,462 --> 00:06:49,511\\nJoka päivä valitaan myös kiinnostava valokuva.\\n\\n109\\n00:06:49,532 --> 00:06:53,676\\nSama tehdään myös muille multimediaresursseille.\\n\\n110\\n00:06:54,345 --> 00:06:56,682\\nVoit tukea Commonsia taloudellisesti\\n\\n111\\n00:06:56,766 --> 00:06:59,570\\ntekemällä lahjoituksen.\\n\\n112\\n00:06:59,599 --> 00:07:03,338\\nVoit myös tukea\\n\\n113\\n00:07:03,359 --> 00:07:06,715\\nWikimedia Italia, voittoa tavoittelematonta säätiötä\\n\\n114\\n00:07:06,743 --> 00:07:08,757\\njoka kertoo Commonsista ja muista\\n\\n115\\n00:07:08,792 --> 00:07:11,826\\nWikimedia Foundationin projekteista Italiassa.',\n", + " 'bytes': 10183,\n", + " 'sha1': 'b99owv0kit9h68qg1cyy64i9bc5a529',\n", + " 'parent_id': 55185657,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55201232,\n", + " 'timestamp': '2011-06-06T14:31:28Z',\n", + " 'user': {'id': 211597, 'text': 'Lvova'},\n", + " 'page': {'id': 15421529,\n", + " 'title': 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'later',\n", + " 'text': '1\\n00:00:08,860 --> 00:00:11,674\\nВикитека - цифровая онлайн-библиотека,\\n\\n2\\n00:00:11,698 --> 00:00:14,610\\nв которой собираются тексты, опубликованные на всех языках,\\n\\n3\\n00:00:14,631 --> 00:00:18,947\\nесли они находятся в общественном достоянии или выпущены под свободной лицензией.\\n\\n4\\n00:00:19,057 --> 00:00:21,556\\nКак и все проекты Фонда Викимедиа,\\n\\n5\\n00:00:21,607 --> 00:00:24,997\\nВикитека открыта каждому и каждый может соучаствовать,\\n\\n6\\n00:00:25,039 --> 00:00:27,126\\nдаже анонимно.\\n\\n7\\n00:00:27,918 --> 00:00:31,750\\nВ Викитеке тексты взяты из открытых источников\\n\\n8\\n00:00:31,764 --> 00:00:34,695\\nи отформатированы для удобства чтения.\\n\\n9\\n00:00:34,815 --> 00:00:38,255\\nРоманы и рассказы, эссе и руководства,\\n\\n10\\n00:00:38,299 --> 00:00:43,289\\nмолитвенники и политические плакаты, народные песни и стихи,\\n\\n11\\n00:00:43,336 --> 00:00:47,899\\nсказки и детские потешки, правовые документы и научные работы\\n\\n12\\n00:00:47,959 --> 00:00:50,565\\nдиссертации и авторефераты, предоставленные после защиты\\n\\n13\\n00:00:50,596 --> 00:00:53,132\\nв учебных заведениях.\\n\\n14\\n00:00:53,286 --> 00:00:57,167\\nКак и Википедия, проект разделён на разные языки:\\n\\n15\\n00:00:57,252 --> 00:01:00,502\\nВ английской версии Викитеки вы можете писать тексты на английском языке,\\n\\n16\\n00:01:00,563 --> 00:01:04,436\\nво французской версии на французском, и так далее.\\n\\n17\\n00:01:04,564 --> 00:01:06,930\\nТексты собираются на всех языках\\n\\n18\\n00:01:06,995 --> 00:01:09,373\\nдаже на нешироко распространённых и диалектах,\\n\\n19\\n00:01:09,425 --> 00:01:12,455\\nесли они уже опубликованы и свободно транскрибируются.\\n\\n20\\n00:01:12,546 --> 00:01:15,058\\nЭти условия подходят и для переводов,\\n\\n21\\n00:01:15,094 --> 00:01:18,599\\nявляющихся производными работами: поэтому не могут быть включены\\n\\n22\\n00:01:18,649 --> 00:01:22,314\\nнеопубликованные переведённые тексты, и оба, текст и перевод,\\n\\n23\\n00:01:22,340 --> 00:01:26,855\\nдолжны быть в общественном достоянии или выпущены под свободной лицензией.\\n\\n24\\n00:01:27,653 --> 00:01:30,714\\nКаждый текст должен быть скопирован в Викитеку\\n\\n25\\n00:01:30,792 --> 00:01:33,903\\nи использован как основа для производной работы,\\n\\n26\\n00:01:33,947 --> 00:01:35,947\\nв том числе для коммерческих целей.\\n\\n27\\n00:01:36,049 --> 00:01:38,521\\nПоэтому он должны быть опубликован под лицензией,\\n\\n28\\n00:01:38,571 --> 00:01:41,952\\nдающей право отказаться от привилегий\\n\\n29\\n00:01:42,020 --> 00:01:45,091\\nили копирайта на работу, как в США,\\n\\n30\\n00:01:45,121 --> 00:01:47,295\\nгде расположен сервер Викитеки,\\n\\n31\\n00:01:47,344 --> 00:01:50,206\\nтак и в стране, где был опубликован текст.\\n\\n32\\n00:01:51,271 --> 00:01:54,115\\nВ настойщее время согласно американскому законодательству\\n\\n33\\n00:01:54,196 --> 00:01:56,372\\nбезусловно в общественном достоянии\\n\\n34\\n00:01:56,443 --> 00:01:59,539\\nнаходятся лишь работы, опубликованные до 1923 года.\\n\\n35\\n00:01:59,745 --> 00:02:03,243\\nДля Италии работа защищена авторским правом\\n\\n36\\n00:02:03,271 --> 00:02:06,128\\nдо тех пор, пока не пройдёт 70 лет со смерти её создателя.\\n\\n37\\n00:02:06,221 --> 00:02:09,314\\nПоэтому текст может быть в общественном достоянии в Италии,\\n\\n38\\n00:02:09,348 --> 00:02:12,666\\nно не в США, и наоборот.\\n\\n39\\n00:02:12,772 --> 00:02:16,358\\nТексты современников могут быть добавлены в Викитеку\\n\\n40\\n00:02:16,424 --> 00:02:19,124\\nтолько если автор недвусмысленно позволил\\n\\n41\\n00:02:19,166 --> 00:02:22,406\\nлюбое использование работы, включая коммерческое.\\n\\n42\\n00:02:22,576 --> 00:02:25,000\\nАвтор, помимо этого, должен\\n\\n43\\n00:02:25,048 --> 00:02:27,961\\nгарантировать свободу производных работ.\\n\\n44\\n00:02:28,023 --> 00:02:31,482\\nВ Викитеке каждый может откорректировать текст,\\n\\n45\\n00:02:31,549 --> 00:02:33,549\\nвот почему ныне практикуется\\n\\n46\\n00:02:33,622 --> 00:02:36,425\\nиспользование полностью отсканированной оригинальной книги.\\n\\n47\\n00:02:36,496 --> 00:02:40,065\\nВ случае, если тексты переписаны откуда-либо ещё, необходимо полагаться\\n\\n48\\n00:02:40,148 --> 00:02:44,873\\nтолько на надёжные источники и включать специальные упоминания.\\n\\n49\\n00:02:45,478 --> 00:02:48,645\\nУчастники Викитеки - секретари цифрового века,\\n\\n50\\n00:02:48,662 --> 00:02:50,839\\nв чьих интересах есть альтруизм,\\n\\n51\\n00:02:50,856 --> 00:02:53,207\\nпереносят текст для свободного доступа.\\n\\n52\\n00:02:53,272 --> 00:02:55,910\\nКаждый текст должен быть аккуратно отмечен,\\n\\n53\\n00:02:55,942 --> 00:02:58,574\\nkeeping into account the writing habits of the time\\n\\n54\\n00:02:58,630 --> 00:03:02,413\\nand the conventions adopted by the community.\\n\\n55\\n00:03:03,187 --> 00:03:05,604\\nПроцесс переноса начинается\\n\\n56\\n00:03:05,622 --> 00:03:07,622\\nс создания индексной страницы,\\n\\n57\\n00:03:07,669 --> 00:03:09,900\\nкоторая ссылается на отсканированную книгу на Викискладе,\\n\\n58\\n00:03:09,969 --> 00:03:14,026\\nсестринском проекте Викитеки, на котором собраны свободные мультимедиа-файлы.\\n\\n59\\n00:03:14,311 --> 00:03:17,069\\nСсылки на каждую страницу\\n\\n60\\n00:03:17,138 --> 00:03:19,234\\nкниги создаются автоматически.\\n\\n61\\n00:03:19,339 --> 00:03:22,100\\nПройдя по ссылке, возможно увидеть\\n\\n62\\n00:03:22,163 --> 00:03:24,260\\nотсканированную страницу, и, в стороне,\\n\\n63\\n00:03:24,305 --> 00:03:27,124\\nблок, в котором будет написано описание.\\n\\n64\\n00:03:27,235 --> 00:03:30,104\\nЗачастую оказывается ненужно переносить текст с нуля,\\n\\n65\\n00:03:30,147 --> 00:03:33,186\\nтак как отсканированную страницу можно обработать программным обеспечением\\n\\n66\\n00:03:33,217 --> 00:03:35,725\\nдля автоматического распознавания текста.\\n\\n67\\n00:03:35,850 --> 00:03:38,507\\nThe graphic layout of the pages is uniformed\\n\\n68\\n00:03:38,570 --> 00:03:41,442\\nby using templates that arrange automatically\\n\\n69\\n00:03:41,483 --> 00:03:45,252\\nformats or repetitive parts of the pages or the texts.\\n\\n70\\n00:03:45,514 --> 00:03:48,625\\nOnce the transcription of all the pages is completed,\\n\\n71\\n00:03:48,654 --> 00:03:51,859\\nthe text is assembled according by its logical structure\\n\\n72\\n00:03:51,934 --> 00:03:54,145\\n(as example, by its chapters).\\n\\n73\\n00:03:54,252 --> 00:03:57,051\\nThe so formatted text is therefore consistent\\n\\n74\\n00:03:57,082 --> 00:03:59,340\\nwith the structure wanted by the author, \\n\\n75\\n00:03:59,378 --> 00:04:02,782\\nbut also adapted for screen reading and printing.\\n\\n76\\n00:04:03,619 --> 00:04:06,646\\nLike Wikipedia, Wikisource is based on a software \\n\\n77\\n00:04:06,707 --> 00:04:09,448\\nthat allows to create hypertextual links, \\n\\n78\\n00:04:09,479 --> 00:04:12,829\\nconnetting the books and the authors of the library with each other.\\n\\n79\\n00:04:12,882 --> 00:04:15,725\\nFor instance, a quote (or an excerpt from an essay) \\n\\n80\\n00:04:15,759 --> 00:04:18,712\\ncan link to the author or to the quoted text.\\n\\n81\\n00:04:19,493 --> 00:04:22,952\\nAt the bottom of each text there are the links to the categories\\n\\n82\\n00:04:23,000 --> 00:04:25,461\\nthat help in organizing books and authors \\n\\n83\\n00:04:25,475 --> 00:04:27,951\\nby type, origin, and so on. \\n\\n84\\n00:04:28,056 --> 00:04:30,511\\nBesides, every text can be linked\\n\\n85\\n00:04:30,549 --> 00:04:32,742\\nto its translations available on the other Wikisources, \\n\\n86\\n00:04:32,798 --> 00:04:34,798\\nto its article on Wikipedia \\n\\n87\\n00:04:34,819 --> 00:04:37,186\\nor to any other Wikimedia project.\\n\\n88\\n00:04:37,469 --> 00:04:40,687\\nEvery author whose works are published on Wikisource \\n\\n89\\n00:04:40,749 --> 00:04:44,586\\nhas a dedicated page, which contains his or her basic information, \\n\\n90\\n00:04:44,640 --> 00:04:47,616\\nthe list of the available texts\\n\\n91\\n00:04:47,640 --> 00:04:49,640\\nand other relevant information, \\n\\n92\\n00:04:49,696 --> 00:04:53,502\\nsuch as the works in which the author is quoted and the related authors.\\n\\n93\\n00:04:53,780 --> 00:04:57,355\\nHere as well, there are links pointing to the pages about the author \\n\\n94\\n00:04:57,410 --> 00:05:02,153\\navailable on other Wikimedia projects and other languages.\\n\\n95\\n00:05:02,333 --> 00:05:06,430\\nFinally, we mention the portals, that offer guided paths\\n\\n96\\n00:05:06,470 --> 00:05:09,616\\nthrough the published texts about a given topic.\\n\\n97\\n00:05:11,060 --> 00:05:14,525\\nIn Wikisource, like in Wikipedia, we have the administrators, \\n\\n98\\n00:05:14,602 --> 00:05:17,541\\nexpert users trusted by the community\\n\\n99\\n00:05:17,567 --> 00:05:19,567\\nwho can access \\n\\n100\\n00:05:19,622 --> 00:05:22,126\\nsome advanced management functions of the software.\\n\\n101\\n00:05:22,168 --> 00:05:25,461\\nWith their experience, they act as real librarians\\n\\n102\\n00:05:25,500 --> 00:05:27,799\\ntutoring the other users.\\n\\n103\\n00:05:28,693 --> 00:05:31,682\\nThe meeting point of the Wikisource users is the Bar, \\n\\n104\\n00:05:31,693 --> 00:05:34,385\\nwhere we can pose questions to the more experienced users\\n\\n105\\n00:05:34,413 --> 00:05:36,694\\nand start new discusions.\\n\\n106\\n00:05:36,784 --> 00:05:39,678\\nIn order to best handle some specific topics \\n\\n107\\n00:05:39,748 --> 00:05:42,992\\nthere are some dedicated pages: the thematic projects. \\n\\n108\\n00:05:43,046 --> 00:05:45,046\\nOn the Italian version of Wikisource \\n\\n109\\n00:05:45,119 --> 00:05:47,784\\nthey are the heart of the activity and the meeting point\\n\\n110\\n00:05:47,822 --> 00:05:51,135\\nfor those users interested in a particular topic.\\n\\n111\\n00:05:51,434 --> 00:05:54,070\\nFor showing the advancement of the transcription process \\n\\n112\\n00:05:54,102 --> 00:05:56,402\\nof a given text or its part\\n\\n113\\n00:05:56,437 --> 00:05:59,859\\na 5-step system is used. \\n\\n114\\n00:06:00,137 --> 00:06:02,347\\nWhen the text is complete in every part, \\n\\n115\\n00:06:02,385 --> 00:06:05,805\\ncorrectly formatted and proofread by two or more users\\n\\n116\\n00:06:05,874 --> 00:06:08,890\\ncomparing the original paper source, it\\'s awarded with the star, \\n\\n117\\n00:06:08,944 --> 00:06:12,526\\nthat qualifies it as a \"Wikisource Edition\".\\n\\n118\\n00:06:12,731 --> 00:06:15,311\\nAnd for focusing the energies of many users, \\n\\n119\\n00:06:15,346 --> 00:06:17,850\\none or more texts are chosen every month\\n\\n120\\n00:06:17,892 --> 00:06:20,521\\nto be proofread and revised together.\\n\\n121\\n00:06:21,242 --> 00:06:23,416\\nWith Wikisource you can show \\n\\n122\\n00:06:23,455 --> 00:06:25,843\\nall your love for the books, saving them from the oblivion\\n\\n123\\n00:06:25,861 --> 00:06:28,776\\nand making them available for everyone on the net. \\n\\n124\\n00:06:29,140 --> 00:06:31,140\\nJoin in Wikisource \\n\\n125\\n00:06:31,161 --> 00:06:34,216\\nand build you too a free library.',\n", + " 'bytes': 12664,\n", + " 'sha1': '0dseymjmhw1b3ets7b16t0lbc57eq7p',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55227893,\n", + " 'timestamp': '2011-06-07T05:16:52Z',\n", + " 'user': {'id': 535519, 'text': 'Mikołka'},\n", + " 'page': {'id': 15429461,\n", + " 'title': 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'to be translated',\n", + " 'text': '1\\n00:00:08,860 --> 00:00:11,674\\nWikiźródła to cyfrowa biblioteka dostępna online,\\n\\n2\\n00:00:11,698 --> 00:00:14,610\\nzawierająca teksty opublikowane w wielu językach,\\n\\n3\\n00:00:14,631 --> 00:00:18,947\\njeżeli tylko dostępne są na wolnych licencjach lub w domenie publicznej.\\n\\n4\\n00:00:19,057 --> 00:00:21,556\\nTak jak i inne projekty Fundacji Wikimedia,\\n\\n5\\n00:00:21,607 --> 00:00:24,997\\nWikiźródła mogą być edytowane przez każdą osobę chętną do współpracy.\\n\\n6\\n00:00:25,039 --> 00:00:27,126\\nNawet anonimowo.\\n\\n7\\n00:00:27,918 --> 00:00:31,750\\nTeksty do Wikiźródeł są przepisywane z oryginalnych publikacji\\n\\n8\\n00:00:31,764 --> 00:00:34,695\\ni formatowane dla wygody czytelników.\\n\\n9\\n00:00:34,815 --> 00:00:38,255\\nPowieści i opowiadania, eseje i instrukcje obsługi,\\n\\n10\\n00:00:38,299 --> 00:00:43,289\\nmodlitweniki i plakaty polityczne, teksty piosenek i poematów,\\n\\n11\\n00:00:43,336 --> 00:00:47,899\\nbaśnie i dziecinne wierszyki, dokumenty prawne, prace naukowe\\n\\n12\\n00:00:47,959 --> 00:00:50,565\\ni dysertacje, które przeszły już proces obrony\\n\\n13\\n00:00:50,596 --> 00:00:53,132\\nna uniwersytecie lub politechnice.\\n\\n14\\n00:00:53,286 --> 00:00:57,167\\nTak jak Wikipedia, projekt jest rozwijany w wielu wersjach językowych:\\n\\n15\\n00:00:57,252 --> 00:01:00,502\\nw angielskich Wikiźródłach publikowane są teksty w języku angielskim,\\n\\n16\\n00:01:00,563 --> 00:01:04,436\\nwe francuskich, w języku francuskim, itd.\\n\\n17\\n00:01:04,564 --> 00:01:06,930\\nZbieramy teksty we wszystkich językach,\\n\\n18\\n00:01:06,995 --> 00:01:09,373\\nnawet te, które napisane są w dialektach,\\n\\n19\\n00:01:09,425 --> 00:01:12,455\\nktórymi posługuje się jedynie niewielka liczba ludzi.\\n\\n20\\n00:01:12,546 --> 00:01:15,058\\nTłumaczenia obwarowane są pewnymi warunkami\\n\\n21\\n00:01:15,094 --> 00:01:18,599\\nche sono opere derivate: non possono dunque essere inseriti \\n\\n22\\n00:01:18,649 --> 00:01:22,314\\ntesti tradotti non pubblicati e sia il testo che la traduzione \\n\\n23\\n00:01:22,340 --> 00:01:26,855\\ndevono essere di pubblico dominio o rilasciati con una licenza libera.\\n\\n24\\n00:01:27,653 --> 00:01:30,714\\nOgni testo in Wikisource deve poter essere copiato \\n\\n25\\n00:01:30,792 --> 00:01:33,903\\ne utilizzato come base per creare opere derivate, \\n\\n26\\n00:01:33,947 --> 00:01:35,947\\nanche per scopi commerciali.\\n\\n27\\n00:01:36,049 --> 00:01:38,521\\nDeve dunque essere stato distribuito con una licenza \\n\\n28\\n00:01:38,571 --> 00:01:41,952\\nche concede queste libertà oppure devono essere decaduti \\n\\n29\\n00:01:42,020 --> 00:01:45,091\\ni diritti d’autore sull’opera, sia negli Stati Uniti, \\n\\n30\\n00:01:45,121 --> 00:01:47,295\\ndove si trovano i server di Wikisource, \\n\\n31\\n00:01:47,344 --> 00:01:50,206\\nche nel paese di pubblicazione del testo.\\n\\n32\\n00:01:51,271 --> 00:01:54,115\\nAllo stato attuale, in base alla legge americana, \\n\\n33\\n00:01:54,196 --> 00:01:56,372\\nsono sicuramente di pubblico dominio \\n\\n34\\n00:01:56,443 --> 00:01:59,539\\nsolo le opere pubblicate prima del 1923. \\n\\n35\\n00:01:59,745 --> 00:02:03,243\\nPer lo stato italiano invece l’opera è coperta da copyright \\n\\n36\\n00:02:03,271 --> 00:02:06,128\\nfino a 70 anni dopo la morte del suo creatore.\\n\\n37\\n00:02:06,221 --> 00:02:09,314\\nUn testo potrebbe dunque essere già di pubblico dominio in Italia \\n\\n38\\n00:02:09,348 --> 00:02:12,666\\nma non ancora negli Stati Uniti e viceversa.\\n\\n39\\n00:02:12,772 --> 00:02:16,358\\nUn testo contemporaneo invece, può essere inserito in Wikisource \\n\\n40\\n00:02:16,424 --> 00:02:19,124\\nsolo se l’autore ha autorizzato esplicitamente \\n\\n41\\n00:02:19,166 --> 00:02:22,406\\nqualsiasi uso dell’opera, anche commerciale.\\n\\n42\\n00:02:22,576 --> 00:02:25,000\\nL\\'autore può comunque esigere \\n\\n43\\n00:02:25,048 --> 00:02:27,961\\nla concessione delle stesse libertà sulle opere derivate. \\n\\n44\\n00:02:28,023 --> 00:02:31,482\\nIn Wikisource, chiunque dovrebbe poter revisionare il testo \\n\\n45\\n00:02:31,549 --> 00:02:33,549\\ned è per questo che è ormai prassi \\n\\n46\\n00:02:33,622 --> 00:02:36,425\\nl\\'utilizzo della scansione completa del libro originale.\\n\\n47\\n00:02:36,496 --> 00:02:40,065\\nNel caso di testi già trascritti altrove è necessario affidarsi \\n\\n48\\n00:02:40,148 --> 00:02:44,873\\nsolo a fonti attendibili e inserire precisi riferimenti bibliografici.\\n\\n49\\n00:02:45,478 --> 00:02:48,645\\nI Wikisourciani sono amanuensi dell\\'era digitale \\n\\n50\\n00:02:48,662 --> 00:02:50,839\\nche per passione o altruismo\\n\\n51\\n00:02:50,856 --> 00:02:53,207\\ntrascrivono i testi liberamente disponibili. \\n\\n52\\n00:02:53,272 --> 00:02:55,910\\nOgni testo deve essere riportato fedelmente, \\n\\n53\\n00:02:55,942 --> 00:02:58,574\\ntenendo conto delle prassi di scrittura dell\\'epoca \\n\\n54\\n00:02:58,630 --> 00:03:02,413\\ne delle convenzioni di trascrizione stabilite dalla comunità.\\n\\n55\\n00:03:03,187 --> 00:03:05,604\\nIl percorso di trascrizione comincia \\n\\n56\\n00:03:05,622 --> 00:03:07,622\\ncon la creazione di una pagina \"indice\", \\n\\n57\\n00:03:07,669 --> 00:03:09,900\\nche richiama il libro scansionato da Commons, \\n\\n58\\n00:03:09,969 --> 00:03:14,026\\nil progetto fratello di Wikisource che raccoglie file multimediali liberi.\\n\\n59\\n00:03:14,311 --> 00:03:17,069\\nAutomaticamente vengono generati i collegamenti \\n\\n60\\n00:03:17,138 --> 00:03:19,234\\nad ogni singola pagina dell\\'opera.\\n\\n61\\n00:03:19,339 --> 00:03:22,100\\nCliccando su un collegamento è possibile visualizzare \\n\\n62\\n00:03:22,163 --> 00:03:24,260\\nla scansione del testo e a lato \\n\\n63\\n00:03:24,305 --> 00:03:27,124\\nil riquadro in cui viene effettuata la trascrizione.\\n\\n64\\n00:03:27,235 --> 00:03:30,104\\nSpesso non è necessario trascrivere da zero il testo, \\n\\n65\\n00:03:30,147 --> 00:03:33,186\\nperché la pagina scannerizzata viene elaborata da un software\\n\\n66\\n00:03:33,217 --> 00:03:35,725\\nin grado di riconoscere i caratteri.\\n\\n67\\n00:03:35,850 --> 00:03:38,507\\nL\\'aspetto grafico delle pagine è uniformato \\n\\n68\\n00:03:38,570 --> 00:03:41,442\\ngrazie all\\'uso di modelli che riportano in modo automatico \\n\\n69\\n00:03:41,483 --> 00:03:45,252\\nformattazioni o parti ripetitive delle pagine o dei testi.\\n\\n70\\n00:03:45,514 --> 00:03:48,625\\nUna volta completata la trascrizione di tutte le pagine, \\n\\n71\\n00:03:48,654 --> 00:03:51,859\\nil testo viene assemblato in base alla sua struttura logica \\n\\n72\\n00:03:51,934 --> 00:03:54,145\\n(ad esempio nei suoi capitoli).\\n\\n73\\n00:03:54,252 --> 00:03:57,051\\nIl testo è così formattato in modo da essere conforme \\n\\n74\\n00:03:57,082 --> 00:03:59,340\\nalla strutturazione voluta dall’autore, \\n\\n75\\n00:03:59,378 --> 00:04:02,782\\nma anche adattato per la lettura a schermo e la stampa.\\n\\n76\\n00:04:03,619 --> 00:04:06,646\\nCome Wikipedia, Wikisource è gestito da un software \\n\\n77\\n00:04:06,707 --> 00:04:09,448\\nche consente di creare collegamenti ipertestuali, \\n\\n78\\n00:04:09,479 --> 00:04:12,829\\nconnettendo fra loro i vari libri e autori della biblioteca.\\n\\n79\\n00:04:12,882 --> 00:04:15,725\\nAd esempio, una citazione (o un brano di un saggio) \\n\\n80\\n00:04:15,759 --> 00:04:18,712\\npuò rimandare all\\'autore o al testo che cita.\\n\\n81\\n00:04:19,493 --> 00:04:22,952\\nIn fondo ad ogni testo si trovano i collegamenti alle categorie \\n\\n82\\n00:04:23,000 --> 00:04:25,461\\nche aiutano ad organizzare opere e autori \\n\\n83\\n00:04:25,475 --> 00:04:27,951\\nper tipologia, provenienza, eccetera. \\n\\n84\\n00:04:28,056 --> 00:04:30,511\\nInoltre ogni testo può essere collegato \\n\\n85\\n00:04:30,549 --> 00:04:32,742\\nalle sue traduzioni in altre Wikisource, \\n\\n86\\n00:04:32,798 --> 00:04:34,798\\nalla sua pagina su Wikipedia \\n\\n87\\n00:04:34,819 --> 00:04:37,186\\no a qualunque altro progetto Wikimedia.\\n\\n88\\n00:04:37,469 --> 00:04:40,687\\nOgni autore le cui opere sono pubblicate su Wikisource \\n\\n89\\n00:04:40,749 --> 00:04:44,586\\nha una pagina dedicata, che contiene le sue generalità minime, \\n\\n90\\n00:04:44,640 --> 00:04:47,616\\nla lista dei testi disponibili per la consultazione \\n\\n91\\n00:04:47,640 --> 00:04:49,640\\ned eventualmente altre informazioni, \\n\\n92\\n00:04:49,696 --> 00:04:53,502\\ncome le opere in cui l\\'autore è citato o gli autori correlati.\\n\\n93\\n00:04:53,780 --> 00:04:57,355\\nAnche qui sono presenti i collegamenti verso le pagine sull\\'autore \\n\\n94\\n00:04:57,410 --> 00:05:02,153\\ndisponibili in altri progetti Wikimedia e in altre edizioni linguistiche.\\n\\n95\\n00:05:02,333 --> 00:05:06,430\\nVanno annoverati infine i portali, che offrono percorsi di lettura \\n\\n96\\n00:05:06,470 --> 00:05:09,616\\ntra i testi della biblioteca su uno specifico argomento.\\n\\n97\\n00:05:11,060 --> 00:05:14,525\\nIn Wikisource, come in Wikipedia, ci sono gli amministratori, \\n\\n98\\n00:05:14,602 --> 00:05:17,541\\novvero utenti esperti che hanno la fiducia della comunità \\n\\n99\\n00:05:17,567 --> 00:05:19,567\\ne a cui sono stati attivati \\n\\n100\\n00:05:19,622 --> 00:05:22,126\\ndegli strumenti di gestione del software più avanzati.\\n\\n101\\n00:05:22,168 --> 00:05:25,461\\nLa loro esperienza li rende di fatto dei veri e propri bibliotecari \\n\\n102\\n00:05:25,500 --> 00:05:27,799\\nche fanno da tutor agli altri utenti.\\n\\n103\\n00:05:28,693 --> 00:05:31,682\\nIl punto d\\'incontro dei wikisourciani è il Bar, \\n\\n104\\n00:05:31,693 --> 00:05:34,385\\ndove si possono porre domande agli utenti più esperti \\n\\n105\\n00:05:34,413 --> 00:05:36,694\\ne avviare nuove discussioni.\\n\\n106\\n00:05:36,784 --> 00:05:39,678\\nPer gestire al meglio ambiti specifici esistono \\n\\n107\\n00:05:39,748 --> 00:05:42,992\\ndelle pagine dedicate: i progetti tematici. \\n\\n108\\n00:05:43,046 --> 00:05:45,046\\nNella versione italiana di Wikisource \\n\\n109\\n00:05:45,119 --> 00:05:47,784\\nrappresentano il cuore dell\\'attività e sono il ritrovo \\n\\n110\\n00:05:47,822 --> 00:05:51,135\\nper coloro che sono interessati ad un particolare argomento.\\n\\n111\\n00:05:51,434 --> 00:05:54,070\\nPer indicare lo stato di avanzamento dei lavori \\n\\n112\\n00:05:54,102 --> 00:05:56,402\\nsu uno specifico testo o una sua parte \\n\\n113\\n00:05:56,437 --> 00:05:59,859\\nsi usa un sistema suddiviso in 5 tappe fondamentali. \\n\\n114\\n00:06:00,137 --> 00:06:02,347\\nQuando il testo è completo in ogni sua parte, \\n\\n115\\n00:06:02,385 --> 00:06:05,805\\nformattato correttamente e riletto da due o più utenti \\n\\n116\\n00:06:05,874 --> 00:06:08,890\\nusando la fonte cartacea, riceve la stelletta, \\n\\n117\\n00:06:08,944 --> 00:06:12,526\\nche ne attribuisce lo status di \"Edizioni Wikisource\".\\n\\n118\\n00:06:12,731 --> 00:06:15,311\\nE per concentrare gli sforzi di più utenti, \\n\\n119\\n00:06:15,346 --> 00:06:17,850\\nogni mese vengono scelti uno o più testi \\n\\n120\\n00:06:17,892 --> 00:06:20,521\\nda rileggere e correggere insieme.\\n\\n121\\n00:06:21,242 --> 00:06:23,416\\nCon Wikisource puoi dunque dimostrare \\n\\n122\\n00:06:23,455 --> 00:06:25,843\\nil tuo amore per i libri, salvandoli dall\\'oblio \\n\\n123\\n00:06:25,861 --> 00:06:28,776\\ne rendendoli disponibili per chiunque, nella rete. \\n\\n124\\n00:06:29,140 --> 00:06:31,140\\nPartecipa a Wikisource \\n\\n125\\n00:06:31,161 --> 00:06:34,216\\ne costruisci anche tu una biblioteca libera.',\n", + " 'bytes': 10667,\n", + " 'sha1': 'f0yqvcwaj8y61wafntud61k1e3sxv04',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55408732,\n", + " 'timestamp': '2011-06-12T13:04:17Z',\n", + " 'user': {'id': 245453, 'text': 'Otourly'},\n", + " 'page': {'id': 15485936,\n", + " 'title': 'Chocolate cake.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,458 --> 00:00:04,416\\n6 œufs; 150 g beurre; 225 g sucre; 225 g chocolat en poudre; 100 g farine; 250 g chocolat noir; 2.5 dl crème\\n\\n2\\n00:00:04,416 --> 00:00:15,916\\nécraser le beurre\\n\\n3\\n00:00:15,916 --> 00:00:47,416\\nAjouter le sucre\\n\\n4\\n00:00:47,416 --> 00:01:00,291\\nSéparer les blancs des jaunes\\n\\n5\\n00:01:00,291 --> 00:01:30,166\\nAjouter les jaunes\\n\\n6\\n00:01:30,166 --> 00:02:07,458\\nAjouter le chocolat en poudre\\n\\n7\\n00:02:07,458 --> 00:02:44,916\\nBattre les blancs en neige\\n\\n8\\n00:02:44,916 --> 00:02:45,416\\nAjouter la farine et les blancs alternativement\\n\\n8.5\\n00:02:45,416 --> 00:02:45,916\\n\\n\\n9\\n00:05:08,958 --> 0-1:0-1:0-1\\nFaire fondre délicatement le chocolat noir\\n\\n10\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nAjouter la crème\\n\\n11\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n12\\n0-1:0-1:0-1 --> 0-1:0-1:0-1',\n", + " 'bytes': 791,\n", + " 'sha1': 'iabig7087b92uz6mixpohx3xe33yf3z',\n", + " 'parent_id': 55408497,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55548061,\n", + " 'timestamp': '2011-06-16T10:16:53Z',\n", + " 'user': {'id': 1241291, 'text': 'DancingPhilosopher'},\n", + " 'page': {'id': 15525462,\n", + " 'title': 'Edit Button.ogv.sl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:01,114 --> 00:00:02,414 Tamle je gumb \"Uredi\" 2 00:00:02,530 --> 00:00:03,830 Enostavno klikni nanj, 3 00:00:03,830 --> 00:00:06,664 poišči besede v be...\\'',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nTamle je gumb \"Uredi\"\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nEnostavno klikni nanj,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\npoišči besede v besedilu, in popravi\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\npotem na dnu klikni \"Shrani/predogled\". Čisto enostavno.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nPri Wikipediji je super to,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nda lahko spreminjaš stvari.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nin za to ne potrebuješ dovoljenja\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nin ni težko.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nLahko, da na začetku zgleda strašljivo,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nampak v resnici ni tako.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nLjudje, kot bi bili slepi, ne dojamejo tega.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nLjudje berejo Wikipedijo in ne vidijo gumba \"Uredi\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nKlikni nanj in poglej kaj se zgodi.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Uredi.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nKo odpreš svoj um in\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nzačneš spreminjati,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nse dogaja vse mogoče,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nin to je res lepo.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nLahko to postane nov začetek,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\npovabilo k nečemu živemu, morda.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nKo se začne pisati nov članek, nam ni všeč,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nker zgleda grdo.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nAmpak počakaj ... nekaj ur (na angl.W.)\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nin opazuj kako grdi raček postaja super članek.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nTale gumb. \"Uredi\". Klikni nanj, spremeni kaj,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nshrani, in ves svet lahko vidi.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Shrani\"',\n", + " 'bytes': 1761,\n", + " 'sha1': 'peh2hfk5mbs3dgkdzgmkwwjdgt5xwzo',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 103812410,\n", + " 'timestamp': '2013-09-08T13:17:49Z',\n", + " 'user': {'id': 849234, 'text': 'Morn'},\n", + " 'page': {'id': 15547887,\n", + " 'title': 'Berlin airlift.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0.5\\n00:00:12,565 --> 00:00:18,979\\nBERLIN AIR-LIFT\\n\\n0.75\\n00:00:19,799 --> 00:00:26,681\\nThe Story of a Great Achievement\\n\\n1\\n00:00:27,697 --> 00:00:30,614\\nThis is a a story of the Berlin Air-Lift\\n\\n2\\n00:00:30,614 --> 00:00:32,919\\nThe operation carried out by the Royal Air Force\\n\\n3\\n00:00:32,919 --> 00:00:35,931\\nand the United States Air Force to supply two and quarter million\\n\\n4\\n00:00:35,947 --> 00:00:40,91\\npeople of Berlin with food, coal, and other necessities of life.\\n\\n5\\n00:00:40,91 --> 00:00:44,517\\nIn June 1948, all road and rail communications between\\n\\n6\\n00:00:44,517 --> 00:00:49,624\\nthe allied zones and the western sectors of Berlin were closed by the Russians.\\n\\n7\\n00:00:49,624 --> 00:00:52,677\\nBy the 28th of June the only way into Berlin was by air\\n\\n8\\n00:00:52,677 --> 00:00:56,224\\nand the first RAF aircraft started this colossal undertaking\\n\\n9\\n00:00:56,224 --> 00:00:59,19\\naccording to many predictions, an impossible one to maintain\\n\\n10\\n00:00:59,19 --> 00:01:03,874\\nfor any length of time, especially during winter.\\n\\n11\\n00:01:06,705 --> 00:01:10,057\\nAircraft began their ceaseless drone into blockaded Berlin\\n\\n12\\n00:01:10,057 --> 00:01:13,879\\nusing all available airfields in the Western Zone.\\n\\n13\\n00:01:13,879 --> 00:01:17,039\\nIn the first three days, 500 landings were achieved.\\n\\n14\\n00:01:17,039 --> 00:01:19,279\\nBut with the aid of the United States Air Force,\\n\\n15\\n00:01:19,279 --> 00:01:23,042\\nthe number by October to 600 per day.\\n\\n16\\n00:01:23,073 --> 00:01:25,814\\nSunderland flying boats of Coastal Command were ordered in \\n\\n16.5\\n00:01:25,814 --> 00:01:28,087\\nto supplement the land-based planes\\n\\n17\\n00:01:28,087 --> 00:01:30,291\\nThese took off from the Elbe at Hamburg and\\n\\n18\\n00:01:30,291 --> 00:01:32,956\\nand came down on one of Berlin\\'s lakes.\\n\\n19\\n00:01:32,956 --> 00:01:36,177\\nFood, still more food, and raw materials\\n\\n20\\n00:01:36,193 --> 00:01:38,29\\nhad to be poured across the aerial bridge\\n\\n21\\n00:01:38,29 --> 00:01:42,067\\ninto the blockaded city.\\n\\n22\\n00:01:52,528 --> 00:01:56,599\\nOnly one narrow corridor led from the base on the Elbe\\n\\n23\\n00:01:56,599 --> 00:01:59,913\\nnear Hamburg, to the unloading base at Havel Lake\\n\\n24\\n00:01:59,913 --> 00:02:03,367\\nin the British sector of Berlin.\\n\\n25\\n00:02:04,705 --> 00:02:07,239\\nWithin four days of the decision to use them, the first\\n\\n26\\n00:02:07,239 --> 00:02:10,039\\ngiant boats, each carrying five tons of vital\\n\\n27\\n00:02:10,039 --> 00:02:13,719\\nmaterial, were on air transport service\\n\\n28\\n00:02:13,719 --> 00:02:16,285\\n[air traffic controller talking]\\n\\n29\\n00:02:47,331 --> 00:02:51,599\\nThey were soon winging their way daily over\\n\\n30\\n00:02:51,599 --> 00:02:54,399\\nthe port of Hamburg, destination Berlin\\n\\n31\\n00:02:54,399 --> 00:03:17,011\\n[song: \"I\\'ve Got Sixpence\"]\\n\\n37\\n00:03:17,011 --> 00:03:19,819\\nPast the Olympic Stadium, and presently over\\n\\n38\\n00:03:19,819 --> 00:03:26,199\\nthe only power station left working in the Western Sector.\\n\\n39\\n00:03:36,922 --> 00:03:40,679\\nImmediately on landing, unloading commences\\n\\n40\\n00:03:40,679 --> 00:03:48,159\\nand the machines are prepared for the return journey.\\n\\n41\\n00:03:55,79 --> 00:04:24,279\\n[song: \"I\\'ve Got Sixpence\", continued]\\n\\n47\\n00:04:24,279 --> 00:04:27,082\\nOn the return trip, exportable freight was carried,\\n\\n48\\n00:04:27,097 --> 00:04:29,436\\nand the opportunity taken to remove\\n\\n49\\n00:04:29,436 --> 00:04:33,842\\nsome of Berlin\\'s sick children for convalescence.\\n\\n51\\n00:04:33,842 --> 00:04:37,039\\nOnly the very worst weather kept allied\\n\\n52\\n00:04:37,039 --> 00:04:41,276\\naircraft out of the sky.\\n\\n53\\n00:04:53,799 --> 00:04:56,519\\nEven through storms and mists, the hazardous\\n\\n54\\n00:04:56,519 --> 00:05:00,024\\nchain of supply went on.\\n\\n55\\n00:05:10,239 --> 00:05:15,787\\nAs dusk falls, Sunderlands tie up for the night.\\n\\n56\\n00:05:15,787 --> 00:05:18,647\\nAlthough doing valulable service,\\n\\n57\\n00:05:18,647 --> 00:05:20,476\\nthe Sunderlands\\' part was small compared\\n\\n58\\n00:05:20,476 --> 00:05:24,187\\nto the land-based planes\\n\\n59\\n00:05:25,648 --> 00:05:27,685\\nThese indefatigable blockade runners\\n\\n60\\n00:05:27,685 --> 00:05:31,691\\ncarried on throughout the night and into the dawn.\\n\\n62\\n00:05:42,079 --> 00:05:44,651\\nNight and day, week after week, it was a case of\\n\\n63\\n00:05:44,651 --> 00:05:48,31\\nmore planes, more food, more raw material\\n\\n64\\n00:05:48,31 --> 00:05:51,356\\nshipped without pause from eight different airfields\\n\\n65\\n00:05:51,356 --> 00:05:54,611\\nin the Western Zone.\\n\\n66\\n00:06:00,719 --> 00:06:02,654\\nMonth after month, the tempo of flights\\n\\n67\\n00:06:02,654 --> 00:06:04,627\\nwas stepped up, and by Christmas, American\\n\\n68\\n00:06:04,627 --> 00:06:06,657\\nand British planes had made a hundered\\n\\n69\\n00:06:06,657 --> 00:06:11,156\\nthousand trips, and carried a total of 730,000 tons into Berlin.\\n\\n70\\n00:06:11,156 --> 00:06:13,919\\nEven cars were transported, but\\n\\n71\\n00:06:13,919 --> 00:06:16,722\\ncoal, equally as vital to Berlin as bread, was\\n\\n72\\n00:06:16,722 --> 00:06:19,719\\nthe greatest load of all.\\n\\n73\\n00:06:19,719 --> 00:06:26,159\\nOver one million tons had now been flown in.\\n\\n74\\n00:06:26,159 --> 00:06:28,559\\nHundreds of planes of all types and sizes,\\n\\n75\\n00:06:28,559 --> 00:06:30,039\\nmilitary and civil, were pressed into service.\\n\\n76\\n00:06:30,039 --> 00:06:35,261\\nThe RAF York, load nine tons.\\n\\n77\\n00:06:35,261 --> 00:06:39,076\\nThe Halifax, over six tons.\\n\\n78\\n00:06:39,076 --> 00:06:42,888\\nThe Viking, over three tons.\\n\\n79\\n00:06:50,088 --> 00:06:53,368\\nThe RAF Dakota, three tons.\\n\\n80\\n00:06:53,368 --> 00:06:56,319\\nThe civil Tudor, eight tons.\\n\\n81\\n00:06:56,319 --> 00:07:00,359\\nAnd what the Berliners call the Großer Tudor, ten tons.\\n\\n83\\n00:07:08,759 --> 00:07:10,879\\nAs an additional boost to the airlift, the RAF\\n\\n84\\n00:07:10,879 --> 00:07:14,113\\nintroduced its Hastings, each carrying over nine tons.\\n\\n86\\n00:07:14,113 --> 00:07:17,519\\nAt the three airfields in Berlin, Gatow, Tempelhof\\n\\n87\\n00:07:17,519 --> 00:07:20,239\\nand Tegel, aircraft were landing or taking off\\n\\n88\\n00:07:20,239 --> 00:07:23,297\\nevery ninety seconds.\\n\\n89\\n00:07:25,697 --> 00:07:28,171\\nMany notabilities visited Berlin to see the\\n\\n90\\n00:07:28,171 --> 00:07:30,101\\nworkings of this magnificent achievement,\\n\\n91\\n00:07:30,101 --> 00:07:32,479\\nand to praise the great work of the British and\\n\\n92\\n00:07:32,479 --> 00:07:35,359\\nAmerican ground and air personnel\\n\\n93\\n00:07:35,359 --> 00:07:41,131\\nChief of the Air Staff, Lord Tedder\\n\\n94\\n00:07:41,131 --> 00:07:44,611\\nand the Foreign Secretary, Mr Bevin, whose diplomacy\\n\\n95\\n00:07:44,611 --> 00:07:46,485\\nwas much aided by the success of the airlift.\\n\\n96\\n00:07:46,485 --> 00:07:49,759\\nHe added his tribute when he visited Berlin\\n\\n97\\n00:07:49,759 --> 00:07:54,645\\non the eve of the lifting of the blockade in May 1949.\\n\\n99\\n00:08:04,759 --> 00:08:06,753\\nFor ten whole months, a ceaseless stream of\\n\\n100\\n00:08:06,753 --> 00:08:09,134\\nallied aircraft landed in Berlin, where\\n\\n101\\n00:08:09,134 --> 00:08:12,171\\nGermans, supervised by British Army personnel,\\n\\n102\\n00:08:12,171 --> 00:08:14,55\\neagerly unloaded the vital supplies.\\n\\n103\\n00:08:14,55 --> 00:08:17,119\\nAircrews of the RAF, and Commonwealth crews from\\n\\n104\\n00:08:17,119 --> 00:08:20,439\\nAustralia, New Zealand, and South Africa, together with their\\n\\n106\\n00:08:20,439 --> 00:08:23,759\\nBritish charter colleagues, all of them played their part with\\n\\n107\\n00:08:23,759 --> 00:08:27,528\\nthe United States Air Force in maintaining this nonstop operation,\\n\\n108\\n00:08:27,528 --> 00:08:29,559\\na combined operation, which on one day,\\n\\n109\\n00:08:29,559 --> 00:08:33,993\\nlanded in Berlin a record load of nearly thirteen thousand tons.\\n\\n110\\n00:08:33,993 --> 00:08:36,639\\nThat is equivalent to the normal tonnage moved daily\\n\\n111\\n00:08:36,639 --> 00:08:38,799\\nby surface transport before the blockade.\\n\\n112\\n00:08:38,799 --> 00:08:47,679\\nNewsprint for Berlin\\'s democratic press comes in.\\n\\n113\\n00:08:47,679 --> 00:08:51,288\\nMail, for the outside world, goes out.\\n\\n114\\n00:09:45,319 --> 00:09:48,119\\nYes, the life of Berlin has been maintained,\\n\\n115\\n00:09:48,119 --> 00:09:50,959\\nbut not without the loss of 43 airmen\\n\\n116\\n00:09:50,959 --> 00:09:53,919\\nwho gave their lives in this vital operation,\\n\\n117\\n00:09:53,919 --> 00:09:56,079\\nthe most outstanding transport achievement\\n\\n118\\n00:09:56,079 --> 00:09:58,919\\nin the history of aviation.\\n\\n119\\n00:09:58,919 --> 00:10:01,377\\nThe airlift carries on.\\n\\n120\\n00:10:05,193 --> 00:10:09,362\\nThe End',\n", + " 'bytes': 8335,\n", + " 'sha1': 'pcj4xr5skh2yy7frudyca3dpg2gobpe',\n", + " 'parent_id': 55641039,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55641040,\n", + " 'timestamp': '2011-06-18T17:22:28Z',\n", + " 'user': {'id': 883069, 'text': 'Innotata'},\n", + " 'page': {'id': 15547937,\n", + " 'title': 'Berlin airlift.ogv.undefined.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:Berlin airlift.ogv.en.srt',\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'moved [[TimedText:Berlin airlift.ogv.undefined.srt]] to [[TimedText:Berlin airlift.ogv.en.srt]]',\n", + " 'text': '#REDIRECT [[TimedText:Berlin airlift.ogv.en.srt]]',\n", + " 'bytes': 49,\n", + " 'sha1': 'asr45d66aqe0ydmbmddzgqdvbwh8u76',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55654303,\n", + " 'timestamp': '2011-06-19T00:05:20Z',\n", + " 'user': {'id': 883069, 'text': 'Innotata'},\n", + " 'page': {'id': 15551123,\n", + " 'title': 'US Supports No-Fly Zone Against Libya.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:US Supports No-Fly Zone Against Libya.ogv.undefined.srt]] to [[TimedText:US Supports No-Fly Zone Against Libya.ogv.en.srt]]',\n", + " 'text': '1\\n00:00:11,331 --> 00:00:14,64\\nLibyan troops loyal to Muammar Qaddafi continue their march eastward,\\n\\n2\\n00:00:14,64 --> 00:00:17,247\\ntoward the rebel stronghold of Benghazi,\\n\\n3\\n00:00:17,247 --> 00:00:21,659\\nand opposition leaders are warning of the risk of genocide\\n\\n4\\n00:00:21,659 --> 00:00:23,799\\namong civilians who might be caught in this crossfire.\\n\\n5\\n00:00:23,799 --> 00:00:26,018\\nThe possibility of a deadly siege of Benghazi\\n\\n6\\n00:00:26,018 --> 00:00:28,645\\napparently prompted the Obama administration\\n\\n7\\n00:00:28,645 --> 00:00:31,754\\nto back a resolution of the U.N. Security Council that would give the\\n\\n8\\n00:00:31,754 --> 00:00:36,21\\ninternational community several options to help the rebels.\\n\\n9\\n00:00:36,21 --> 00:00:39,389\\nSusan Rice, U.S. ambassador to the United Nations, says Washington is\\n\\n10\\n00:00:39,389 --> 00:00:43,488\\nwilling to consider measures beyond a no-fly zone.\\n\\n11\\n00:00:43,488 --> 00:00:48,634\\nRice: \"The U.S. view is that we need to be prepared to contemplate steps\\n\\n12\\n00:00:48,634 --> 00:00:52,277\\nthat include but perhaps go beyond a no-fly zone.\\n\\n13\\n00:00:52,277 --> 00:00:56,222\\nAt this point, as the situation on the ground has evolved,\\n\\n14\\n00:00:56,222 --> 00:01:04,975\\nand as a no-fly zone has inherent limitations in terms of protection of civilians at immediate risk.\"\\n\\n15\\n00:01:04,975 --> 00:01:08,618\\nU.S. Secretary of State Hillary Clinton has been visiting countries in the Middle East,\\n\\n16\\n00:01:08,618 --> 00:01:11,224\\nwhere authoritarian leaders have been ousted\\n\\n17\\n00:01:11,224 --> 00:01:13,955\\nby mostly peaceful protests in recent weeks.\\n\\n18\\n00:01:13,955 --> 00:01:17,581\\nAlthough the Obama administration is not calling for the use of U.S. ground forces\\n\\n19\\n00:01:17,581 --> 00:01:22,39\\nin Libya, Clinton made clear Thursday that a no-fly zone in Libya\\n\\n20\\n00:01:22,39 --> 00:01:24,697\\nwould likely include ground attacks.\\n\\n21\\n00:01:24,697 --> 00:01:33,625\\nClinton: \"There is a lot of very intense discussion occurring, but it is important to recognise that\\n\\n22\\n00:01:33,625 --> 00:01:44,89\\nmilitary experts accross the world, know that a no-fly zone requires certain actions taken\\n\\n23\\n00:01:44,89 --> 00:01:56,054\\nto protect the planes and the pilots, including bombing targets like the Libyan defense systems.\"\\n\\n24\\n00:01:56,054 --> 00:02:00,299\\nThe rapid advance of Libyan government forces has put\\n\\n25\\n00:02:00,299 --> 00:02:03,259\\npressure on the Obama administration to support military intervention.\\n\\n26\\n00:02:03,259 --> 00:02:08,221\\nUnder-Secratary of State William Burns warned U.S. lawmakers on Thursday of\\n\\n27\\n00:02:08,221 --> 00:02:12,38\\nthe risks involved if Muammar Qaddafi defeats the rebel forces in Libya.\\n\\n28\\n00:02:12,38 --> 00:02:17,491\\nBurns: \"The dangers of him returning to terrorism and violent extremism himself,\\n\\n29\\n00:02:17,491 --> 00:02:22,035\\nthe dangers turmoil that he could help create, at a very critical moment elsewhere in the region.\"\\n\\n30\\n00:02:22,035 --> 00:02:25,202\\nMany members of Congress, like Democrat John Kerry,\\n\\n31\\n00:02:25,202 --> 00:02:27,675\\nchairman of the Senate Foreign Relations Committee,\\n\\n32\\n00:02:27,675 --> 00:02:30,697\\nsay the international community must act now.\\n\\n33\\n00:02:30,697 --> 00:02:35,177\\nKerry: \"The old rules of impunity for autocratic leaders don\\'t stand.\\n\\n34\\n00:02:35,193 --> 00:02:42,357\\nBut time is running out for the Libyan people. The world needs to respond, immediately.\"\\n\\n35\\n00:02:42,357 --> 00:02:48,214\\nA no-fly zone over Libya is supported by the Arab League, and U.S. officials say Arab governments \\n\\n36\\n00:02:48,214 --> 00:02:52,778\\nmust play a central role in any military action against Libya.\\n\\n37\\n00:02:52,778 --> 00:02:56,087\\nMeredith Buel, VOA News, Washington.',\n", + " 'bytes': 3704,\n", + " 'sha1': 'smyc2u7ip6261qpsoxuyfkmoli3zqo1',\n", + " 'parent_id': 55654283,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55654304,\n", + " 'timestamp': '2011-06-19T00:05:20Z',\n", + " 'user': {'id': 883069, 'text': 'Innotata'},\n", + " 'page': {'id': 15551129,\n", + " 'title': 'US Supports No-Fly Zone Against Libya.ogv.undefined.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:US Supports No-Fly Zone Against Libya.ogv.en.srt',\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'moved [[TimedText:US Supports No-Fly Zone Against Libya.ogv.undefined.srt]] to [[TimedText:US Supports No-Fly Zone Against Libya.ogv.en.srt]]',\n", + " 'text': '#REDIRECT [[TimedText:US Supports No-Fly Zone Against Libya.ogv.en.srt]]',\n", + " 'bytes': 72,\n", + " 'sha1': 'qmro935uzqd5885207ws2ce6cs8az9r',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 56446437,\n", + " 'timestamp': '2011-07-09T23:56:21Z',\n", + " 'user': {'id': 304876, 'text': 'Jane Doe'},\n", + " 'page': {'id': 15751330,\n", + " 'title': 'Cavallo.ogv.undefined.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Subtitles in Spanish using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': '1\\n00:00:03,039 --> 00:00:09,599\\nA partir de este momento transmiten, LRA 1, Radio Nacional, Buenos Aires, República Argentina,\\n\\n2\\n00:00:09,599 --> 00:00:14,359\\ny LS 82, TV Canal 7, Argentina Televisora Color,\\n\\n3\\n00:00:14,359 --> 00:00:20,479\\njuntamente con todas las emisoras que integran la Cadena Nacional de Radio y Televisión.\\n\\n4\\n00:00:20,479 --> 00:00:26,399\\nHará uso de la palabra el señor Ministro de Economía de la Nación, Dr. Domingo Cavallo,\\n\\n5\\n00:00:26,399 --> 00:00:32,931\\nquien se referirá a la situación fiscal y marcha del Plan de Convertibilidad.\\n\\n6\\n00:00:34,839 --> 00:00:41,399\\nCompatriotas, los primeros días de marzo me dirigí a ustedes por este mismo medio\\n\\n7\\n00:00:41,399 --> 00:00:45,999\\npara darles a conocer las cifras fiscales del mes de febrero\\n\\n8\\n00:00:45,999 --> 00:00:49,759\\ny las previsiones para marzo y abril.\\n\\n9\\n00:00:49,759 --> 00:00:53,679\\nAlgunos de ustedes recordarán que hablamos de una meta de recaudación,\\n\\n10\\n00:00:53,679 --> 00:01:02,559\\nde 1850 millones de dólares para marzo, y de 2000 millones de dólares mensuales desde abril.\\n\\n11\\n00:01:02,559 --> 00:01:06,799\\nTambién mencioné que nos proponíamos generar un superávit primario,\\n\\n12\\n00:01:06,799 --> 00:01:11,399\\nantes de atender pagos financieros internos y externos,\\n\\n13\\n00:01:11,399 --> 00:01:16,799\\nde 300 millones de dólares mensuales, 100 millones de los cuales se originarían\\n\\n14\\n00:01:16,799 --> 00:01:21,239\\nen el exceso de recaudación con relación a los gastos,\\n\\n15\\n00:01:21,239 --> 00:01:29,079\\ny los otros 200 millones mensuales, con ingresos por privatizaciones o ventas de activos.\\n\\n16\\n00:01:29,079 --> 00:01:33,559\\nEn esto quiero ser muy claro: nadie tiene que esperar que abandonemos\\n\\n17\\n00:01:33,559 --> 00:01:39,279\\nla disciplina fiscal y convalidemos desmanejos provinciales para facilitar \\n\\n18\\n00:01:39,279 --> 00:01:45,199\\nla sanción de las leyes; sería necio de nuestra parte, porque minaría la confianza\\n\\n19\\n00:01:45,199 --> 00:01:48,399\\nen el plan de convertibilidad.\\n\\n20\\n00:01:48,399 --> 00:01:51,999\\nEn materia de tratamiento, las provincias con problemas fiscales,\\n\\n21\\n00:01:51,999 --> 00:01:56,799\\nel Presidente Menem ha dado la señal a través de la decisión adoptada\\n\\n22\\n00:01:56,799 --> 00:01:59,599\\nsobre el banco de su propia provincia.\\n\\n23\\n00:01:59,599 --> 00:02:05,879\\nNo se permitirá que los bancos provinciales financien déficits de los gobiernos,\\n\\n24\\n00:02:05,879 --> 00:02:11,639\\ny, si es necesario, se condicionará toda ayuda al ajuste y reestructuración\\n\\n25\\n00:02:11,639 --> 00:02:16,679\\nde las finanzas locales, a la liquidación de las instituciones que se hayan\\n\\n26\\n00:02:16,679 --> 00:02:20,159\\ntornado inviables.\\n\\n27\\n00:02:20,159 --> 00:02:24,399\\nHoy las provincias tienen que manejarse con sus recursos propios,\\n\\n28\\n00:02:24,399 --> 00:02:29,239\\ny con los que reciben por el régimen de coparticipación federal.\\n\\n29\\n00:02:29,239 --> 00:02:34,519\\nEstos últimos han aumentado mucho, y por consiguiente, si alguna provincia\\n\\n30\\n00:02:34,519 --> 00:02:40,759\\naún tiene déficit, no le queda otra alternativa que hacer el ajuste respectivo,\\n\\n31\\n00:02:40,759 --> 00:02:41,259\\nesto es inexorable.\\n\\n32\\n00:02:41,259 --> 00:02:50,239\\nEn síntesis, todos ustedes pueden estar seguros que tenemos bajo control absoluto\\n\\n33\\n00:02:50,239 --> 00:02:55,559\\nel presupuesto de la administración nacional y las cuentas fiscales.\\n\\n34\\n00:02:55,559 --> 00:03:00,639\\nHemos estado trabajando en equipo, todo el gabinete, para que el presupuesto de\\n\\n35\\n00:03:00,639 --> 00:03:04,639\\nlo que resta del año sea estrictamente cumplido. En un todo de acuerdo con el\\n\\n36\\n00:03:04,639 --> 00:03:11,359\\nprograma fiscal y monetario que hemos presentado, elaborado por nosotros,\\n\\n37\\n00:03:11,359 --> 00:03:16,399\\na los organismos multilaterales de crédito. Por lo tanto no hay ningún riesgo\\n\\n38\\n00:03:16,399 --> 00:03:19,479\\nde que violemos la ley de convertibilidad.\\n\\n39\\n00:03:19,479 --> 00:03:25,999\\nEl valor de nuestra moneda está, sin dudas, perfectamente asegurada, y nadie\\n\\n40\\n00:03:25,999 --> 00:03:31,079\\ntiene que temer por la evolución futura de la paridad cambiaria.\\n\\n41\\n00:03:31,079 --> 00:03:38,159\\nEl peso, que a partir del 1º de enero, valdrá igual que el dólar, es una moneda destinada\\n\\n42\\n00:03:38,159 --> 00:03:46,159\\na perdurar con ese valor por muchos años, me atrevo a decir, por décadas.\\n\\n43\\n00:03:46,159 --> 00:03:51,079\\nPermítanme pasar a hablar de los precios y los salarios,\\n\\n44\\n00:03:51,079 --> 00:03:55,799\\ny en términos más globales, de la inflación.\\n\\n45\\n00:03:55,799 --> 00:04:00,639\\nCuando me dirigí a ustedes los primeros días de mayo, para evaluar el curso \\n\\n46\\n00:04:00,639 --> 00:04:04,799\\nde los precios en el mes de abríl, les dije que a pesar de que habíamos logrado bajar\\n\\n47\\n00:04:04,799 --> 00:04:10,919\\ndrásticamente la tasa de inflación, aún no teníamos ganada de manera definitiva,\\n\\n48\\n00:04:10,919 --> 00:04:16,399\\nla batalla de la estabilidad. Hoy debo reiterarlo.\\n\\n49\\n00:04:16,399 --> 00:04:21,799\\nHemos logrado bajar la inflación a los niveles internacionales en lo que se refiere\\n\\n50\\n00:04:21,799 --> 00:04:26,959\\na los precios mayoristas de los bienes no agropecuarios; de los bienes de la industria\\n\\n51\\n00:04:26,959 --> 00:04:34,839\\nmanufacturera, y de los bienes importados. En promedio, durante el trimestre abril-junio,\\n\\n52\\n00:04:34,839 --> 00:04:40,319\\nestos precios subieron sólo el 0,5% mensual, siendo que el precio\\n\\n53\\n00:04:40,319 --> 00:04:44,439\\ndel dólar no estuvo totalmente estable, porque si ustedes recuerdan,\\n\\n54\\n00:04:44,439 --> 00:04:50,639\\nel 1º de abril, el dólar valía 9500 australes.\\n\\n55\\n00:04:50,639 --> 00:04:55,319\\nEs decir, que el comportamiento de estos precios a nivel mayorista es \\n\\n56\\n00:04:55,319 --> 00:04:58,319\\nplenamente satisfactorio.\\n\\n57\\n00:04:58,319 --> 00:05:03,159\\nNo ocurrió lo mismo con los precios mayoristas agropecuarios:\\n\\n58\\n00:05:03,159 --> 00:05:09,119\\nlos cereales y oleaginosas, en abril, y el ganado, en mayo y junio,\\n\\n59\\n00:05:09,119 --> 00:05:15,359\\naumentaron significativamente. También aumentaron los pollos, el cerdo,\\n\\n60\\n00:05:15,359 --> 00:05:22,639\\nlas frutas, las hortalizas y otros alimentos frescos a nivel minorista.\\n\\n61\\n00:05:22,639 --> 00:05:28,079\\nEstos aumentos tienen dos causas: por un lado, se trata del realineamiento de\\n\\n62\\n00:05:28,079 --> 00:05:32,439\\nlos precios de los productos de exportación agropecuaria, con motivo de la\\n\\n63\\n00:05:32,439 --> 00:05:38,399\\neliminación de las retenciones. Esto ocurrió fundamentalmente en abril.\\n\\n64\\n00:05:38,399 --> 00:05:44,719\\nPor otro lado, hay problemas de oferta y de demanda estacionales.\\n\\n65\\n00:05:44,719 --> 00:05:51,079\\nEl mejoramiento de los ingresos de la gente aumentó el consumo de carnes y de frutas.\\n\\n66\\n00:05:51,079 --> 00:05:57,399\\nLamentablemente, en el país que en otra época era considerado uno de los\\n\\n67\\n00:05:57,399 --> 00:06:02,999\\nprincipales abastecedores de alimentos del mundo, a causa de las malas políticas\\n\\n68\\n00:06:02,999 --> 00:06:06,879\\nque durante tantos años desalentaron a la producción,\\n\\n69\\n00:06:06,879 --> 00:06:13,919\\nhoy escasea la carne de vaca, la carde de cerdo, los pollos, la leche, las frutas,\\n\\n70\\n00:06:13,919 --> 00:06:20,959\\nlas hortalizas. Es sorprendente pero es la cruda realidad.\\n\\n71\\n00:06:20,959 --> 00:06:25,319\\nPero este problema tiene solución. Los mismos aumentos que agregan puntos\\n\\n72\\n00:06:25,319 --> 00:06:30,959\\na los índices de precios, mejoran la rentabilidad de los productores\\n\\n73\\n00:06:30,959 --> 00:06:35,679\\ny alientan a incrementar la producción. Por eso es importante que tengamos\\n\\n74\\n00:06:35,679 --> 00:06:40,959\\nun poco de paciencia, y con el aumento del abastecimiento, los precios de los\\n\\n75\\n00:06:40,959 --> 00:06:44,479\\nalimentos frescos van a bajar.\\n\\n76\\n00:06:44,479 --> 00:06:50,719\\nNo es algo que se de de un día para el otro; criar más vacas, más pollos o más cerdos\\n\\n77\\n00:06:50,719 --> 00:06:55,919\\nrequiere un cierto tiempo. Pero inexorablemente los productores\\n\\n78\\n00:06:55,919 --> 00:07:00,639\\nvan a responder. Lo mismo ocurrirá con los agricultores, los tamberos\\n\\n79\\n00:07:00,639 --> 00:07:06,039\\ny los productores de frutas y hortalizas. Por eso, no debemos alarmarnos.\\n\\n80\\n00:07:06,039 --> 00:07:11,079\\nEstos aumentos de precios no signifiquen que continúe la inflación originada\\n\\n81\\n00:07:11,079 --> 00:07:16,639\\nen la indisciplina fiscal y monetaria, sino que aún sufrimos las consecuencias\\n\\n82\\n00:07:16,639 --> 00:07:23,479\\nde un sistema productivo sumamente desorganizado y desarticulado.\\n\\n83\\n00:07:23,479 --> 00:07:28,239\\nCon un clima de estabilidad global, y respondiendo al aumento de la demanda,\\n\\n84\\n00:07:28,239 --> 00:07:35,279\\nhabrá aumentos de la oferta, y los precios volverán a niveles razonables.\\n\\n85\\n00:07:35,279 --> 00:07:40,439\\nHay algunos otros aumentos que reflejan claramente la reactivación de la demanda\\n\\n86\\n00:07:40,439 --> 00:07:44,999\\nen casi todos los mercados de bienes de consumo. Me refiero a rubros tales\\n\\n87\\n00:07:44,999 --> 00:07:50,479\\ncomo comidas fueras del hogar, alimentos para llevar, servicios personales,\\n\\n88\\n00:07:50,479 --> 00:07:54,679\\nentretenimientos, y gastos de turismo.\\n\\n89\\n00:07:54,679 --> 00:07:58,879\\nTambién se nota que los precios de los mismos bienes aumentaron más\\n\\n90\\n00:07:58,879 --> 00:08:07,879\\na nivel minorista que a nivel mayorista. Es decir, aumentaron los márgenes de comercialización.\\n\\n91\\n00:08:07,879 --> 00:08:12,439\\nSe trata de fenómenos que no pueden confundirse con la inflación originada\\n\\n92\\n00:08:12,439 --> 00:08:15,439\\nen el déficit fiscal o la emisión monetaria.\\n\\n93\\n00:08:15,439 --> 00:08:21,399\\nLa única forma de evitar estos aumentos, y erradicar este tipo de inflación,\\n\\n94\\n00:08:21,399 --> 00:08:25,799\\nes a través de la mayor competencia y del control que puede hacer\\n\\n95\\n00:08:25,799 --> 00:08:32,759\\ncada uno de ustedes. El gobierno no lo debe ni lo puede hacer.\\n\\n96\\n00:08:32,759 --> 00:08:37,039\\nPermítanme ser muy claro en esto. Cada uno de ustedes\\n\\n97\\n00:08:37,039 --> 00:08:40,439\\ntiene una herramienta en sus manos. Cada uno de ustedes decide\\n\\n98\\n00:08:40,439 --> 00:08:47,439\\ncomo y cuando usa sus australes. No deben comprar lo que resulte caro, \\n\\n99\\n00:08:47,439 --> 00:08:52,959\\nlo que haya aumentado mucho. Tienen que buscar las alternativas más baratas.\\n\\n100\\n00:08:52,959 --> 00:08:57,879\\nFíjense bien adonde compran. Hay algunos comerciantes que cobran precios\\n\\n101\\n00:08:57,879 --> 00:09:04,319\\ncon márgenes exagerados. A ellos les pedimos que, por su propia conveniencia,\\n\\n102\\n00:09:04,319 --> 00:09:09,359\\ny por el bien de todos, elijan vender mas en vez de cobrar más.\\n\\n103\\n00:09:09,359 --> 00:09:13,399\\nPero en definitiva, son ustedes, las familias, los consumidores,\\n\\n104\\n00:09:13,399 --> 00:09:20,799\\nquienes pueden hacerlos cambiar de actitud. Dejen de comprarles.\\n\\n105\\n00:09:20,799 --> 00:09:27,919\\nEsto que les invito a hacer, es práctica cotidiana en todos los países estables del mundo.\\n\\n106\\n00:09:27,919 --> 00:09:32,519\\nAllí donde hay estabilidad, es porque el gobierno hace sus deberes\\n\\n107\\n00:09:32,519 --> 00:09:38,639\\nen materia fiscal y monetaria. Pero las familias también los hacen.\\n\\n108\\n00:09:38,639 --> 00:09:43,719\\nCuidan su dinero y se fijan muy bien en que lo gastan.\\n\\n109\\n00:09:43,719 --> 00:09:50,799\\nYo les aseguro, que si ustedes y nosotros nos los proponemos firmemente,\\n\\n110\\n00:09:50,799 --> 00:09:53,399\\nesta vez nos transformaremos en un país estable,\\n\\n111\\n00:09:53,399 --> 00:09:56,439\\nen un país estable para siempre.\\n\\n112\\n00:09:56,439 --> 00:10:00,719\\nQuiero también ser muy franco con cada uno de ustedes,\\n\\n113\\n00:10:00,719 --> 00:10:05,399\\nen particular con los trabajadores. El deterioro del ingreso familiar,\\n\\n114\\n00:10:05,399 --> 00:10:11,679\\nprovocado por estos aumentos de precios, no se resuelve con aumentos de salarios nominales\\n\\n115\\n00:10:11,679 --> 00:10:15,439\\nque no estén acompañados por mejoras en la productividad\\n\\n116\\n00:10:15,439 --> 00:10:20,679\\ndel sector privado, o mayor recaudación en el sector público.\\n\\n117\\n00:10:20,679 --> 00:10:25,359\\nSi con el argumento de la indexación se ajustaran los salarios nominales,\\n\\n118\\n00:10:25,359 --> 00:10:29,519\\ncomo ocurría antes de que lo prohibiera la Ley de Convertibilidad,\\n\\n119\\n00:10:29,519 --> 00:10:34,239\\nlos primeros perjudicados terminarían siendo los propios trabajadores,\\n\\n120\\n00:10:34,239 --> 00:10:40,519\\ny los jubilados, por una razón muy sencilla: con salarios indexados hacia atrás,\\n\\n121\\n00:10:40,519 --> 00:10:44,199\\nsería imposible mantener la disciplina fiscal y monetaria,\\n\\n122\\n00:10:44,199 --> 00:10:51,919\\ny entonces se producirían simultáneamente dos fenómenos cuya combinación es explosiva.\\n\\n123\\n00:10:51,919 --> 00:10:57,799\\nEl atraso en el valor del tipo de cambio, y la emisión sin respaldo.\\n\\n124\\n00:10:57,799 --> 00:11:02,399\\nEn pocos meses, o quizá en apenas semanas, caeríamos de nuevo\\n\\n125\\n00:11:02,399 --> 00:11:08,279\\nen hiperinflación, y los salarios reales volverían a estar por el suelo\\n\\n126\\n00:11:08,279 --> 00:11:12,519\\ncon recesión y desocupación.\\n\\n127\\n00:11:12,519 --> 00:11:17,359\\nNo les estamos mintiendo a los trabajadores y a los jubilados cuando les decimos\\n\\n128\\n00:11:17,359 --> 00:11:22,599\\nque los aumentos nominales, o por simple indexación, son una estafa.\\n\\n129\\n00:11:22,599 --> 0-1:0-1:0-1\\nLes decimos la verdad.',\n", + " 'bytes': 13360,\n", + " 'sha1': 'tbvns9bymxqwabetl6ufs7e6ml3gtzy',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 57650352,\n", + " 'timestamp': '2011-08-06T11:06:56Z',\n", + " 'user': {'id': 246324, 'text': 'Toliño'},\n", + " 'page': {'id': 15808623,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.gl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:00,500 --> 00:00:02,580 O meu nome de usuario é Bücherwürmlein\\n\\n2 00:00:02,580 --> 00:00:04,040 Lila roja\\n\\n3 00:00:04,040 --> 00:00:05,110 yuyu\\n\\n4 00:00:05,110 --> 00:00:06,740 Cbrown1023\\n\\n5 00:00:06,740 --> 00:00:08,380 22Kartika\\n\\n6 00:00:08,380 --> 00:00:10,260 O meu nome de usuario é Church of emacs\\n\\n7 00:00:10,260 --> 00:00:14,010 Bücherwürmlein significa «rato de biblioteca», en alemán\\n\\n8 00:00:14,010 --> 00:00:15,240 Dew\\n\\n9 00:00:15,240 --> 00:00:16,630 Chomsky1\\n\\n10 00:00:16,630 --> 00:00:18,270 nasir8891\\n\\n11 00:00:18,270 --> 00:00:21,130 notafish, entendes?: «non son un peixe»\\n\\n12 00:00:21,130 --> 00:00:22,520 Theo10011\\n\\n13 00:00:22,520 --> 00:00:23,500 O meu nome de usuario é Henna\\n\\n14 00:00:23,500 --> 00:00:24,720 Misou\\n\\n15 00:00:24,720 --> 00:00:26,190 O meu nome de usuario é Lyzzy\\n\\n16 00:00:26,190 --> 00:00:29,220 wittylama, é o anagrama do meu nome real: Liam Wyatt\\n\\n17 00:00:29,220 --> 00:00:30,440 Deryck Chan\\n\\n18 00:00:30,440 --> 00:00:31,750 Vulpeto\\n\\n19 00:00:31,750 --> 00:00:33,300 RajeshPandey\\n\\n20 00:00:33,300 --> 00:00:36,730 O meu nome de usuario é Steven Walling, que é o meu nome real\\n\\n21 00:00:36,730 --> 00:00:38,370 O meu nome de usuario é Waldir\\n\\n22 00:00:38,370 --> 00:00:41,070 O meu nome de usuario é Mstislavl\\n\\n23 00:00:41,070 --> 00:00:44,420 Abbasjnr, a-b-b-a-s-j-n-r\\n\\n24 00:00:44,420 --> 00:00:49,000 O meu nome é Jdforrester e edito Wikipedia',\n", + " 'bytes': 1417,\n", + " 'sha1': 'crvszchtb8064683d0uzswd7bmw78l0',\n", + " 'parent_id': 56682223,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 57649920,\n", + " 'timestamp': '2011-08-06T10:56:00Z',\n", + " 'user': {'id': 246324, 'text': 'Toliño'},\n", + " 'page': {'id': 15812433,\n", + " 'title': 'Edit Button.ogv.gl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'melloras na tradución e correccións/improving translation and some corrections',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nHai un botón \"editar\".\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nSó preme nel,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\natopa o lugar onde está o texto e edita.\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nLogo preme en \"Gardar\". É así de doado.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nO bo de Wikipedia\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\né que ti podes cambiar cousas.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nNon precisas o permiso de ninguén\\n\\n8\\n00:00:14,066 --> 00:00:15,32\\ne non é difícil.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nAsemella un chisco desalentador ao comezo,\\n\\n10\\n00:00:17,809 --> 00:00:19,82\\npero realmente non é difícil.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nA xente non se decata. É coma se padecesen unha especie de cegueira.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nA xente le artigos e non ve o botón \"editar\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nPreme nese botón e olla o que ocorre.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Editar\".\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nCando descobres algo\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\ne comezas a editar,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\npoden ocorrer cousas de toda clase.\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nE iso é realmente fermoso.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nÉ como se fose un punto de partida,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nunha invitación a máis, dalgún xeito.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nSempre que comezamos un artigo, non nos gusta\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nporque o atopamos feo.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nPero agarda unhas... horas\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\ne mira como se vai convertendo nun grande artigo.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nO botón \"editar\": Preme nel e muda algunha cousa,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\ngarda a páxina; xa mudaches algo no mundo.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Gardar\".',\n", + " 'bytes': 1807,\n", + " 'sha1': 'dsx3rwxog8jesmzyawz5rjp5zg7lw0n',\n", + " 'parent_id': 56718341,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 59125880,\n", + " 'timestamp': '2011-09-09T19:06:01Z',\n", + " 'user': {'id': 707423, 'text': 'Cybercobra'},\n", + " 'page': {'id': 15872588,\n", + " 'title': 'People-are-Knowledge.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'ce',\n", + " 'text': '1 \\n00:00:25,800 --> 00:00:30,560\\nI think it\\'s so interesting because it\\'s really taking this idea of knowledge as conversational\\n\\n2 \\n00:00:30,806 --> 00:00:33,880\\nand it takes one back to that fabulous Plato quotation.\\n\\n3 \\n00:00:34,040 --> 00:00:39,481\\nHe said \"What is the point of writing if every time you go back to a book, it gives you the same answer?\"\\n\\n4 \\n00:00:52,682 --> 00:00:56,841\\nThere are so many times like that in our histories, where there really was no written record.\\n\\n5 \\n00:01:12,880 --> 00:01:14,163\\nWhat is that? Why are you doing that?\\n\\n6 \\n00:01:16,201 --> 00:01:18,000\\nWe\\'re filming the road, it\\'s not the.....\\n\\n7 \\n00:01:18,081 --> 00:01:20,640\\nNo, he\\'s filming me. Let me see this.\\n\\n8 \\n00:01:26,609 --> 00:01:33,201\\nThere are a lot of things which my father and my grandmother tell me....\\n\\n9 \\n00:01:34,600 --> 00:01:36,200\\nand if we use Wikipedia to actually capture that,\\n\\n10 \\n00:01:39,000 --> 00:01:41,759\\nit will benefit my grandchildren and their children as well.\\n\\n11 \\n00:01:42,000 --> 00:01:45,000\\nDon\\'t look directly at the camera!\\n\\n12 \\n00:01:59,960 --> 00:02:06,401\\nComing from a culture such as India, coming from a culture where so little is written down,\\n\\n13 \\n00:02:08,639 --> 00:02:09,881\\ndo we then say we know nothing?\\n\\n14 \\n00:02:11,801 --> 00:02:14,440\\nDo we then say that we have no knowledge base,\\n\\n15 \\n00:02:17,561 --> 00:02:19,200\\nbecause we don\\'t have those big libraries of Europe and America?\\n\\n16 \\n00:02:21,560 --> 00:02:26,790\\nWhere does our knowledge...where does our understanding of wisdom come from?\\n\\n17 \\n00:02:28,121 --> 00:02:29,560\\nAfrican history as a field is built around oral sources.\\n\\n18 \\n00:02:31,560 --> 00:02:33,880\\nI mean, of course there are other sources that are used,\\n\\n19 \\n00:02:35,120 --> 00:02:36,401\\nfrom archaeological to ethnographic material,\\n\\n20 \\n00:02:37,361 --> 00:02:42,600\\nbut given the lack of written material in much but not all of the continent,\\n\\n21 \\n00:02:44,240 --> 00:02:46,500\\nthe field wouldn\\'t exist had there not been a long tradition of oral history.\\n\\n22 \\n00:02:47,520 --> 00:02:50,801\\nSo the idea that \\'oral societies\\' are completely different\\n\\n23 \\n00:02:52,360 --> 00:02:53,641\\nfrom \\'literate societies\\' is a powerful idea,\\n\\n24 \\n00:02:55,440 --> 00:02:58,040\\nand it formed a key platform in colonial thinking,\\n\\n25 \\n00:03:00,080 --> 00:03:01,200\\nof the civilising mission...\\n\\n26 \\n00:03:02,720 --> 00:03:05,000\\nthat one of the things that made Europe more \\'superior\\' or more \\'civilised\\'\\n\\n27 \\n00:03:06,520 --> 00:03:13,600\\nwas \\'writing\\', and so you have this idea that Europe is \\'literate\\' and Africa is \\'oral\\'.\\n\\n28 \\n00:03:15,801 --> 00:03:20,280\\nAnd then, on the basis of that difference, people build up major ideological differences.\\n\\n29 \\n00:03:22,281 --> 00:03:23,360\\nHallo Rajesh\\n\\n30 \\n00:03:25,250 --> 00:03:27,700\\nI am putting this call on the loudspeaker.\\n\\n31 \\n00:03:28,200 --> 00:03:32,000\\nWill you please introduce yourself for me?\\n\\n32 \\n00:03:33,000 --> 00:03:37,000\\nMy name is Dr. Rajesh, and I work in a college in Rajasthan.\\n\\n33 \\n00:03:37,500 --> 00:03:41,000\\nI am a Senior Demonstrator in microbiology.\\n\\n34 \\n00:03:44,300 --> 00:03:45,800\\nHallo... is that Biju?\\n\\n35 \\n00:03:46,500 --> 00:03:48,000\\nIs that Biju?\\n\\n36 \\n00:03:50,500 --> 00:03:55,000\\nBiju, I am going to ask you some questions in a particular way...\\n\\n37 \\n00:03:55,500 --> 00:04:00,300\\nbecause I am going to try to simultaneously translate this conversation into English.\\n\\n38 \\n00:04:00,300 --> 00:04:06,000\\nBiju, can you answer in English?\\n\\n39 \\n00:04:06,500 --> 00:04:08,000\\nNo....\\n\\n40 \\n00:04:08,680 --> 00:04:16,761\\nThis will be an audio file, this interview, that will be put on Wikipedia, on Wikimedia, okay?\\n\\n41 \\n00:04:19,560 --> 00:04:20,680\\nThank you Josephine.\\n\\n42 \\n00:04:22,640 --> 00:04:25,241\\nThank you! Okay.\\n\\n43 \\n00:04:36,600 --> 00:04:41,000\\nWhen I was thinking about it, I\\'m excited about the fact that there is more Wikipedia in India,\\n\\n44 \\n00:04:41,500 --> 00:04:47,800\\nbut I think it would be equally interesting if there was more India in Wikipedia.\\n\\n45 \\n00:04:50,440 --> 00:04:51,320\\nAnd I think that works for South Africa as well, in a sense.\\n\\n46 \\n00:04:53,159 --> 00:05:00,201\\nSo, for me, I think a sophisticated exchange is one in which there is two-way learning.\\n\\n47 \\n00:05:02,240 --> 00:05:08,361\\nThere are things that happen, well, with 1.2 billion people, certainly a lot of things happen,\\n\\n48 \\n00:05:09,721 --> 00:05:15,721\\nwhich are then not being documented in a way which allows them entry\\n\\n49 \\n00:05:16,721 --> 00:05:21,320\\ninto the formal world of knowledge.\\n\\n50 \\n00:05:36,640 --> 00:05:41,360\\nThe thing is, many of us, people like me, played this game in our childhood.\\n\\n51 \\n00:05:42,841 --> 00:05:48,121\\nSo we know the rules of the game, and we know how to write content for an article on it.\\n\\n52 \\n00:05:49,801 --> 00:05:54,801\\nBut the thing with Wikipedia is that for whatever facts we write,\\n\\n53 \\n00:05:45,801 --> 00:05:59,280\\nwe need to provide citations. But we are unable to provide citations\\n\\n54 \\n00:06:00,720 --> 00:06:02,680\\nbecause...currently, there are two reasons:\\n\\n55 \\n00:06:04,440 --> 00:06:06,440\\nthere might not be any published source,\\n\\n56 \\n00:06:07,000 --> 00:06:09,000\\nand then there might be some published source, but which we don\\'t have access to.\\n\\n57 \\n00:06:12,760 --> 00:06:14,161\\nSo this is one perfect example of the situation.\\n\\n58 \\n00:06:42,400 --> 00:06:45,200\\nThis game is called Kandakali by some,\\n\\n59 \\n00:06:45,700 --> 00:06:47,800\\nand here we call it Dappa.\\n\\n60 \\n00:06:48,300 --> 00:06:52,300\\nIn some places, it is called Chattiyeru.\\n\\n61 \\n00:06:52,800 --> 00:00:01,280\\nIt is also called Chilleru. <i>This game has 3 different names?</i> Yes.\\n\\n62 \\n00:06:58,100 --> 00:06:59,500\\nWhat are the rules of this game?\\n\\n63 \\n00:07:00,000 --> 00:07:03,950\\nWe use Olapandu for this game...\\n\\n64 \\n00:07:04,450 --> 00:07:07,450\\nwhich is a ball made out of coconut leaves. The children usually make it themselves.\\n\\n65 \\n00:07:07,950 --> 00:07:13,950\\nThey use pieces of tile which are called Dappa.\\n\\n66 \\n00:07:14,450 --> 00:07:18,200\\nIs this game still popular in the villages?\\n\\n67 \\n00:07:18,700 --> 00:07:22,950\\nNot really, children nowadays prefer cricket.\\n\\n68 \\n00:07:23,450 --> 00:07:32,500\\nBut in this school, we conduct an annual tournament for games like Dappa, Killithattu, etc.\\n\\n69 \\n00:07:33,000 --> 00:07:39,200\\nIt is a tournament for folk games.\\n\\n70 \\n00:07:39,700 --> 00:07:43,400\\nThere are a vast number of folk games here; our tournament is only for some of them.\\n\\n71 \\n00:07:43,900 --> 00:07:50,850\\n<i>The special feature of this game is that only natural materials are used for it, right?</i> \\nYes, absolutely.\\n\\n72 \\n00:07:52,150 --> 00:07:55,700\\n<i>And it is cheap as well, isn\\'t it?</i> \\nYes, you need not spend any money to play this game...\\n\\n73 \\n00:07:56,650 --> 00:08:04,400\\nand children get exercise. It improves their attention span and flexibility.\\n\\n74 \\n00:08:17,500 --> 00:08:23,500\\nI am from Blathur in Kannur district.\\n\\n75 \\n00:08:34,200 --> 00:08:37,950\\nI have been editing Wikipedia for 2 years...\\n\\n76 \\n00:08:38,450 --> 00:08:43,799\\nand organising gatherings to make Wikipedia more popular.\\n\\n77 \\n00:08:44,300 --> 00:08:52,800\\nI participted in the 10th anniversary celebrations of Wikipedia in Kannur.\\n\\n78 \\n00:08:53,300 --> 00:09:00,600\\nI myself seriously understood Wikipedia only after attending a conference on it.\\n\\n79 \\n00:09:01,100 --> 00:09:09,550\\nI work with the hope that Wikipedia will become a treasure-house of knowledge...\\n\\n80 \\n00:09:10,050 --> 00:09:14,400\\n...and continue to provide knowledge to the world for free.\\n\\n81 \\n00:09:53,000 --> 00:09:56,921\\nWhen we start talking about the question of what is \\'oral\\' on the internet, it\\'s no longer restricted only to audio files.\\n\\n82 \\n00:09:58,320 --> 00:10:02,840\\nIt\\'s also about different ways and transitions by which people translate different cultural contexts,\\n\\n83 \\n00:10:04,201 --> 00:10:08,481\\nphysical practices, material practices, everyday life, onto different forms on the internet.\\n\\n84 \\n00:10:10,040 --> 00:10:12,800\\nWhich is why we\\'ve always talked about the internet as an alternative space.\\n\\n85 \\n00:10:15,040 --> 00:10:18,040\\nNot alternative because it necessarily allows for \\'different\\' kinds of voices - it generally does not -\\n\\n86 \\n00:10:19,000 --> 00:10:21,360\\nthe internet is often a very homogenised space,\\n\\n87 \\n00:10:23,361 --> 00:10:27,560\\nbut it allows for people to express, articulate and document things which would otherwise not find\\n\\n88 \\n00:10:29,281 --> 00:10:30,561\\nplace within the canons of literature and documentation and so on.\\n\\n89 \\n00:10:32,320 --> 00:10:37,320\\nIt is interesting to see that while Wikipedia claims to be an internet form,\\n\\n90 \\n00:10:38,000 --> 00:10:42,401\\nit doesn\\'t necessarily look at internet objects as sources of verification.\\n\\n91 \\n00:10:43,640 --> 00:10:48,080\\nAnd by that I mean not just blogs which are traditional ways of writing on the internet,\\n\\n92 \\n00:10:49,560 --> 00:10:54,000\\nbut things that the internet has itself evolved and developed in order to create systems and designs of trust.\\n\\n93 \\n00:10:55,360 --> 00:11:01,360\\nBut I think my argument is, is something true only because it has been validated by a scholarly tradition\\n\\n94 \\n00:11:02,680 --> 00:11:07,800\\nof academics in universities, or is something true because it is?\\n\\n95 \\n00:11:09,360 --> 00:11:10,320\\nAnd how can we show it?\\n\\n96 \\n00:11:12,160 --> 00:11:15,160\\nWithin the women\\'s movement, one of the things that was a real learning experience for me,\\n\\n97 \\n00:11:15,560 --> 00:11:18,880\\nand other middle-class activists like me who were mainly urban,\\n\\n98 \\n00:11:20,081 --> 00:11:24,240\\nwas to actually come into contact with women and listen to their stories.\\n\\n99 \\n00:11:25,920 --> 00:11:30,920\\nAnd in listening to their stories, we began to learn how to...\\n\\n100 \\n00:11:31,920 --> 00:11:36,040\\nhow very different a perspective they gave us, on what their received knowledge was...\\n\\n101 \\n00:11:37,279 --> 00:11:41,279\\nwhich we knew through the things that are called fact....\\n\\n102 \\n00:11:42,000 --> 00:11:45,841\\nwhich are things like documented information, things like statistical information and so on.\\n\\n103 \\n00:11:47,120 --> 00:11:51,120\\nI began to learn then that there are stories and realities that lay behind and beyond these things,\\n\\n104 \\n00:11:51,520 --> 00:11:55,160\\nwhich were equally important for us to try and understand.\\n\\n105 \\n00:11:56,880 --> 00:12:01,880\\nTime and again, I came up against this whole business of...how factual is fact?\\n\\n106 \\n00:12:02,280 --> 00:12:05,201\\nIf you like...or, how much can you trust the document?\\n\\n107 \\n00:12:08,240 --> 00:12:17,280\\nMy primary and high school education was up north in Polokwane, and the medium of instruction was Sepedi.\\n\\n108 \\n00:12:20,080 --> 00:12:31,721\\nFrom there I moved to Pretoria, to Pretoria Technikon, where the medium of instruction there, at the time, was Afrikaans, with a bit of English thrown in.\\n\\n109 \\n00:12:34,760 --> 00:12:44,481\\nSepedi is the preferred language that I would like to use, but when I started working, I realised that there aren\\'t any Sepedi books that we could use,\\n\\n110 \\n00:12:46,001 --> 00:12:50,120\\nespecially in IT, there is nothing there in Sepedi.\\n\\n111 \\n00:13:02,640 --> 00:13:13,960\\nThere were a few articles that I really wanted to do, on things that I heard growing up, but the issue is that there is no reference material that we can use.\\n\\n112 \\n00:13:16,481 --> 00:13:22,120\\nSo there was interest, but there was nothing to support it, so I didn\\'t persist.\\n\\n113 \\n00:13:23,720 --> 00:13:34,280\\nI think there are a lot of potential articles from cultural aspects where elderly people would know more about it than I would.\\n\\n114 \\n00:13:35,680 --> 00:13:40,160\\nAnd I think that Wikipedia could be used to transfer that knowledge from people who have it,\\n\\n115 \\n00:13:42,360 --> 00:13:46,400\\nthe know how - especially when talking of culture - and those kinds of articles,\\n\\n116 \\n00:13:47,921 --> 00:13:54,280\\nto write them in English would not benefit the Sepedi-speaking community at large.\\n\\n117 \\n00:13:56,120 --> 00:14:05,560\\nSome of these things, if I was trying to say them in English, would lose a lot of meaning. So they have to be done in Sepedi.\\n\\n118 \\n00:14:07,201 --> 00:14:12,920\\nI have this article that I want to do on the Mopani worms on Sepedi Wikipedia.\\n\\n119 \\n00:14:14,480 --> 00:14:20,840\\nMopani worms are eaten quite a lot in the north. They\\'re nutritional, they are....\\n\\n120 \\n00:14:23,800 --> 00:14:27,680\\nI\\'m told they are tasty, I\\'ve not yet had the opportunity to eat them....\\n\\n121 \\n00:14:29,281 --> 00:14:37,800\\nthere\\'s an old lady in the north who I\\'m going to call to give us a recipe and tell us a bit of the history of Mopani worms....\\n\\n122 \\n00:14:39,320 --> 00:14:41,881\\nwhere do they get them? And how do they go about preparing them.\\n\\n123 \\n00:14:45,680 --> 00:14:48,280\\nHallo Josephine!\\n\\n124 \\n00:14:53,800 --> 00:15:03,450\\nWe squeeze the Mopani worms, then put them into boiling water for a bit...\\n\\n125 \\n00:15:03,950 --> 00:15:12,350\\nand add some salt to the mixture. Finally, we take the whole thing outdoors and put the Mopani worms in the sun to dry...\\n\\n126 \\n00:15:28,500 --> 00:15:34,000\\nMy name is Josephine Moremi\\n\\n127 \\n00:15:34,300 --> 00:15:43,400\\nMarula is from this tree up here; \\nthe fruits fall to the ground...\\n\\n128 \\n00:15:43,900 --> 00:15:48,300\\nand when they mature, we take their skins out and collect the insides of the fruit.\\n\\n129 \\n00:15:48,800 --> 00:15:53,300\\nWe put the insides of the fruit in water, and mix it, and that is how we make Amarula.\\n\\n130 \\n00:15:58,000 --> 00:16:03,400\\nWe drink Amarula during the months of March and April...\\n\\n131 \\n00:16:03,900 --> 00:16:08,800\\nbecause after that, the trees stop producing these fruit.\\n\\n132 \\n00:16:18,760 --> 00:16:22,960\\nIt\\'s seen that interviews are proprietorial because they are the product of an individual\\'s labour.\\n\\n133 \\n00:16:24,560 --> 00:16:27,920\\nAnd here, there\\'s an entire structure of authority that\\'s built around this.\\n\\n134 \\n00:16:29,720 --> 00:16:35,320\\nThe historian acts as the intermediary between the archive - whether it\\'s a written archive or an oral archive - and the audience.\\n\\n135 \\n00:16:36,401 --> 00:16:41,241\\nAnd by doing so, he gains authority. He also frames the archive in ways that he wants it to be framed.\\n\\n136 \\n00:16:42,681 --> 00:16:47,120\\nNow, the interesting question is, what happens if we open up that process?\\n\\n137 \\n00:16:49,761 --> 00:16:54,240\\nThen suddenly, the audience has access to the archive that the historian is basing his arguments on.\\n\\n138 \\n00:16:55,641 --> 00:17:05,319\\nThere\\'s no reason right now why every single journal article couldn\\'t have not only just the written sources hyperlinked, as footnotes,\\n\\n139 \\n00:17:06,481 --> 00:17:11,480\\nbut also oral interviews or video interviews hyperlinked as footnotes.\\n\\n140 \\n00:17:13,440 --> 00:17:15,839\\nIn that case, suddenly that entire structure of authority disappears.\\n\\n141 \\n00:17:17,241 --> 00:17:25,240\\nIf you let people have access to your interviews, and particularly in such a way that you can get nuance and context,\\n\\n142 \\n00:17:26,920 --> 00:17:30,801\\nthen suddenly the authorship of the text is opened up. It explodes in multiple ways.\\n\\n143 \\n00:17:32,400 --> 00:17:36,921\\nAnd so the very authority on which the discipline of history is founded becomes much more uncertain.\\n\\n144 \\n00:17:37,241 --> 00:17:39,281\\nBut that\\'s also quite exciting...\\n\\n145 \\n00:17:40,921 --> 00:17:47,560\\nOur countries, India, Pakistan, countries in this part of the world, we don\\'t set a value on the written word,\\n\\n146 \\n00:17:48,720 --> 00:17:51,400\\nas much as we do on orality - the passing on of information.\\n\\n147 \\n00:17:53,320 --> 00:17:58,280\\nAnd this is why, when you\\'re trying to look back at Indian history, and when you\\'re trying to look back at ancient India, you really find nothing,\\n\\n148 \\n00:17:58,481 --> 00:18:02,480\\nbecause there wasn\\'t a written history, it was more of a symbolic history.\\n\\n149 \\n00:18:02,840 --> 00:18:15,280\\nSo in a sense, you also have to be aware of that, that when you\\'re getting an oral interview, you\\'re getting one person\\'s interpretation,\\n\\n150 \\n00:18:15,480 --> 00:18:17,761\\none person\\'s recounting of a situation.\\n\\n151 \\n00:18:18,520 --> 00:18:22,960\\nIf you have a hundred people who live through that situation, you will get a picture that is broadened out.\\n\\n152 \\n00:18:23,920 --> 00:18:26,680\\nYou\\'ll get much more nuance, and you might even get some contradictions,\\n\\n153 \\n00:18:26,920 --> 00:18:29,201\\nbut that is how people experience situations.\\n\\n154 \\n00:18:30,680 --> 00:18:43,160\\nSo as long as you know what to expect, or as long as you know what to listen for, and you\\'re not taking this as the only truth of a situation,\\n\\n155 \\n00:18:43,360 --> 00:18:46,600\\nI think that this is actually something that can be very exciting.\\n\\n156 \\n00:19:01,000 --> 00:19:04,481\\nHindi language publishing is not doing as well as it should have,\\n\\n157 \\n00:19:05,160 --> 00:19:10,240\\nconsidering the huge numbers we have, considering the demands that we have.\\n\\n158 \\n00:19:10,561 --> 00:19:21,160\\nMy belief is that not a single page that gets printed and published in Hindi goes unread. There\\'s such a huge population to devour that.\\n\\n159 \\n00:19:28,721 --> 00:19:39,760\\nReference section....the Hindi libraries and others. This one...just recently started, this one. <i> The whole thing is the Hindi section? </i>\\n\\n160 \\n00:19:40,280 --> 00:19:43,040\\nThere\\'s a huge hunger for knowledge.\\n\\n161 \\n00:19:44,040 --> 00:19:47,840\\nAnd all the institutions that we have, even the publishing institutions are not able to cater to them.\\n\\n162 \\n00:19:48,160 --> 00:19:59,681\\nThey are still dependent upon the old network of government offices and libraries that was set up a long time back.\\n\\n163 \\n00:19:59,921 --> 00:20:03,600\\nAnd they are not trying to enhance their network.\\n\\n164 \\n00:20:05,480 --> 00:20:13,400\\nThis is the archive of CSDS. Archived materials. <i>And this is all in English?</i>\\n\\n165 \\n00:20:16,080 --> 00:20:18,960\\nYes, all in English. Because, mostly, all the government records are in English.\\n\\n166 \\n00:20:20,360 --> 00:20:22,241\\nSo no records are in Hindi?\\n\\n167 \\n00:20:24,280 --> 00:20:28,120\\nBecause Hindi publication is very poor.\\n\\n168 \\n00:20:30,841 --> 00:20:37,401\\nEven if you go to the elections office, you will find all the records in the English language.\\n\\n169 \\n00:20:39,000 --> 00:20:41,800\\nHindi cannot hope to compete with English, which is a world language,\\n\\n170 \\n00:20:42,040 --> 00:20:49,321\\nwhich gets fed from so many constituencies, which has a huge backing of knowledge and resources.\\n\\n171 \\n00:20:49,560 --> 00:20:58,641\\nThere is a definite upswing in publishing - of books and houses in recent years.\\n\\n172 \\n00:20:58,841 --> 00:21:00,760\\nBut I don\\'t think it\\'s very well networked.\\n\\n173 \\n00:21:01,040 --> 00:21:07,960\\nBut that raises a larger question about knowledge construction and transmission and distribution in general.\\n\\n174 \\n00:21:08,240 --> 00:21:12,520\\nKnowledge is also distributed according to languages.\\n\\n175 \\n00:21:12,800 --> 00:21:19,040\\nThere is definitely a boundary created: and the publics are also constituted according to linguistic boundaries.\\n\\n176 \\n00:21:19,280 --> 00:21:28,960\\nAnd in Hindi, a large part of the knowledge produced in Hindi does not follow the protocols of research.\\n\\n177 \\n00:21:29,240 --> 00:21:38,321\\nFor example, you might be surprised to find that there is not a single refereed journal to this date that is published in Hindi.\\n\\n178 \\n00:21:38,602 --> 00:21:42,360\\nSo how do researchers validate themselves?\\n\\n179 \\n00:21:42,600 --> 00:21:49,080\\nHow do they publish books, get peer reviewed before publication etc.?\\n\\n180 \\n00:21:49,321 --> 00:21:53,040\\nAbsolutely not - they don\\'t.\\n\\n181 \\n00:21:53,280 --> 00:21:58,960\\nAnd we\\'ll have to...at Wikipedia, or wherever...we\\'ll have to innovate, to include that knowledge,\\n\\n182 \\n00:21:59,240 --> 00:22:03,440\\nso that we speak to the rest of the world with that kind of knowledge.\\n\\n183 \\n00:22:03,680 --> 00:22:11,360\\nIf Wikipedia is everybody\\'s encyclopaedia, and it\\'s not an expert\\'s encyclopaedia,\\n\\n184 \\n00:22:11,600 --> 00:22:20,560\\nand if it is to go on increasing its own knowledge base then the future lies not just with the written world,\\n\\n185 \\n00:22:20,800 --> 00:22:27,720\\nbut with the audio visual world, which is where a lot of that knowledge still stays.\\n\\n186 \\n00:22:28,080 --> 00:22:33,079\\nIt\\'s transferred from one generation to another, with alterations, with changes, with modifications...\\n\\n187 \\n00:22:33,320 --> 00:22:38,040\\na lot of things get forgotten, a lot of things get added, but it\\'s still...\\n\\n188 \\n00:22:38,401 --> 00:22:41,001\\nyou know...a surviving language spoken by millions....\\n\\n189 \\n00:22:41,240 --> 00:22:44,880\\nand I think I\\'m speaking for many languages like this, with millions...\\n\\n190 \\n00:22:53,400 --> 00:22:59,225\\nWhen I started editing on English Wikipedia, all my edits were reverted.\\n\\n191 \\n00:23:00,175 --> 00:23:06,200\\nThe administrators would tell me that since I had no references or citations...\\n\\n192 \\n00:23:06,400 --> 00:23:11,400\\nI should not assert my \\'personal point of view.\\'\\n\\n193 \\n00:23:12,000 --> 00:23:19,150\\nBut there are very few printed sources or citations in Hindi Wikipedia...\\n\\n194 \\n00:23:19,650 --> 00:23:29,200\\nand similarly so for Punjabi, Sanskrit and Nepali Wikipedias, which I also edit.\\n\\n195 \\n00:23:29,700 --> 00:23:37,150\\nIn order to address this gap, an interesting solution would be to provide...\\n\\n196 \\n00:23:37,350 --> 00:23:52,000\\nreferences for articles lacking them through oral citations.\\n\\n197 \\n00:23:57,900 --> 00:24:01,250\\nHallo... is this Deepak Tripathi?\\n\\n198 \\n00:24:03,000 --> 00:24:07,000\\nI am Siddharth Tripathi calling from Gurgaon.\\n\\n199 \\n00:24:09,950 --> 00:24:15,575\\nI am trying to conduct an audio interview for use on Wikipedia, to serve as an oral citation...\\n\\n200 \\n00:24:15,775 --> 00:24:20,800\\nand I want to create an article on the game we call Sur.\\n\\n201 \\n00:24:21,000 --> 00:24:23,375\\nWhat can you tell me about Sur?\\n\\n202 \\n00:24:23,575 --> 00:24:32,375\\nI should also tell you that I would like to use this conversation on Wikipedia...\\n\\n203 \\n00:24:32,575 --> 00:24:34,900\\nand I hope this is okay with you.\\n\\n204 \\n00:24:35,100 --> 00:24:37,440\\nNo, I have no objection whatsoever...\\n\\n205 \\n00:24:37,640 --> 00:24:39,960\\nCould you tell me more of what you know about Sur?\\n\\n206 \\n00:24:41,000 --> 00:24:46,700\\nSur is a game that has been played in villages for a long time.\\n\\n207 \\n00:24:46,900 --> 00:24:54,500\\nIt is mainly played by children.\\n\\n208 \\n00:24:55,100 --> 00:25:01,700\\nThis will benefit Wikipedia, its users, and everyone else...\\n\\n209 \\n00:25:01,900 --> 00:25:07,200\\nknowledge never causes any harm.\\n\\n210 \\n00:25:07,400 --> 00:25:12,900\\nThis is knowledge that is available to us, to use if required...\\n\\n211 \\n00:25:13,100 --> 00:25:17,500\\nand at least, it gives us something that was missing earlier.\\n\\n212 \\n00:25:31,960 --> 00:25:37,121\\nThere\\'s this wonderful definition of a language: A language is a dialect backed by an army.\\n\\n213 \\n00:25:38,800 --> 00:25:47,321\\nAnd I think the interesting question here was, how all those different dialects, all those regional variations\\n\\n214 \\n00:25:47,800 --> 00:25:49,961\\nspoken across Southern Africa ended up as 11 languages,\\n\\n215 \\n00:25:50,201 --> 00:25:54,281\\nis very centrally tied up with the intervention of Christian missions.\\n\\n216 \\n00:25:54,561 --> 00:26:01,280\\nSouth Africa is one of the most heavily missionised parts of the continent, and it\\'s one of the first.\\n\\n217 \\n00:26:01,520 --> 00:26:08,681\\nMissionaries come in, and as they move inland, they meet largely non-literate societies.\\n\\n218 \\n00:26:09,280 --> 00:26:15,560\\nThere would have probably been little bits of writing washing around, letters that had made their way into the interior,\\n\\n219 \\n00:26:15,880 --> 00:26:22,880\\nbut it\\'s missionaries coming into a situation where there is no written script.\\n\\n220 \\n00:26:24,001 --> 00:26:29,240\\nAnd what tends to happen then, of course, is that the missionaries are the ones who invent orthographies.\\n\\n221 \\n00:26:29,800 --> 00:26:35,200\\nAnd they tend to invent them in keeping with the languages they know.\\n\\n222 \\n00:26:35,601 --> 00:26:37,760\\nThat produces an incredibly complicated situation,\\n\\n223 \\n00:26:38,040 --> 00:26:43,760\\nwhen what is technically the same language has in one region been written down by French missionaries,\\n\\n224 \\n00:26:44,161 --> 00:26:46,641\\nand in the other has been written down by German missionaries.\\n\\n225 \\n00:26:46,880 --> 00:26:49,800\\nSo the same sound can come to be represented in different ways.\\n\\n226 \\n00:26:50,560 --> 00:27:04,080\\nSo missions set up orthographies as well as institutions of writing, schooling and printing...\\nand publishing mechanisms.\\n\\n227 \\n00:27:04,481 --> 00:27:11,960\\nAnd generally, they exercised high degrees of control over those mission presses.\\n\\n228 \\n00:27:12,280 --> 00:27:22,560\\nAnd it was generally quite difficult for Africans to publish stuff that didn\\'t conform to mission models.\\n\\n229 \\n00:27:23,560 --> 00:27:33,840\\nIt often became a real source of contention between the African elites and mission presses.\\n\\n230 \\n00:27:35,081 --> 00:27:42,360\\nAnyway, mission presses then had this agenda of producing material that was religious and evangelical,\\n\\n231 \\n00:27:42,760 --> 00:27:49,720\\nand missions also assumed major responsibility for the primary and secondary education of Africans, until quite late...\\n\\n232 \\n00:27:50,001 --> 00:27:51,081\\nuntil the 1950s.\\n\\n233 \\n00:27:51,921 --> 00:27:56,920\\nThe older narrative has a stronger chance of survival, and continuing, on the margins,\\n\\n234 \\n00:27:57,720 --> 00:28:07,960\\noutside the mission domain in Africa, because the places in which oral storytelling happens,\\n\\n235 \\n00:28:08,240 --> 00:28:14,361\\nthe possibilities for that skill to be continued, do persist.\\n\\n236 \\n00:28:14,760 --> 00:28:21,560\\nAnd generally it\\'s a household form...it will be told in the household, so it\\'s got a chance...\\n\\n237 \\n00:28:21,800 --> 00:28:25,760\\nand it\\'s a well established tradition, so despite the mission intervention, it does carry on to a certain extent.\\n\\n238 \\n00:28:38,721 --> 00:28:42,320\\nAnd this is generally where you\\'re going to find the books that are written in the languages of Africa.\\n\\n239 \\n00:28:42,520 --> 00:28:43,601\\nRight.\\n\\n240 \\n00:28:44,080 --> 00:28:46,001\\nObviously we cover the whole continent,\\n\\n241 \\n00:28:46,001 --> 00:28:47,560\\nso you\\'ll have English, French, German...\\n\\n242 \\n00:28:47,765 --> 00:28:48,881\\nand South African languages?...\\n\\n243 \\n00:28:49,680 --> 00:28:54,200\\nYes, the preponderance is on the South African languages.\\n\\n244 \\n00:29:11,000 --> 00:29:15,200\\nWe arrange our book collection according to the Library of Congress classification,\\n\\n245 \\n00:29:15,440 --> 00:29:22,800\\nso when you get into among books that have got PL on their spines, that means you\\'re in the languages of Africa,\\n\\n246 \\n00:29:23,240 --> 00:29:24,521\\nwhich can be from the North to the South.\\n\\n247 \\n00:29:25,200 --> 00:29:33,321\\nIf you come here, you\\'ll see the start of what we can offer people in Northern Sotho.\\n\\n248 \\n00:29:34,360 --> 00:29:37,840\\nIt\\'s not a very long sequence, it ends at about there.\\n\\n249 \\n00:29:38,321 --> 00:29:44,600\\nSo...until about here. So the total collection is about this and this...until about here.\\n\\n250 \\n00:29:45,280 --> 00:29:46,240\\nIt\\'s a shelf.\\n\\n251 \\n00:29:47,360 --> 00:29:51,360\\nI would imagine that the amount of scholarly material that exists elsewhere is fairly thin.\\n\\n252 \\n00:29:51,920 --> 00:29:54,921\\nI mean, original scholarly material in Northern Sotho?\\n\\n253 \\n00:29:57,081 --> 00:29:58,521\\nThe impression that I have is yes; I would agree with you.\\n\\n254 \\n00:29:59,160 --> 00:30:04,160\\nIt\\'s the same old story, if you wish to publish,\\n\\n255 \\n00:30:04,400 --> 00:30:11,521\\nyou have to find a publisher who\\'s going to find it worth his or her while to print in numbers, and that\\'s a very difficult proposition.\\n\\n256 \\n00:30:13,881 --> 00:30:19,480\\nI imagine that there\\'s very little scholarly publishing that happens in languages other than English and Afrikaans, no?\\n\\n257 \\n00:30:21,880 --> 00:30:23,400\\nI think that\\'s a fair comment. <i>That\\'s a fair comment...</i>\\n\\n258 \\n00:30:53,880 --> 00:30:58,801\\nDo you see a way by which both the openness of Wikipedia,\\n\\n259 \\n00:30:59,080 --> 00:31:05,120\\nas well as specific work on Wikipedia and Wikimedia projects has some kind of relationship with the university that could be useful?\\n\\n260 \\n00:31:05,960 --> 00:31:15,440\\nCertainly. The university has been doing a lot of...or some...work around publishing work\\n\\n261 \\n00:31:15,960 --> 00:31:18,721\\nwith Creative Commons licenses.\\n\\n262 \\n00:31:19,360 --> 00:31:30,480\\nThere\\'s a site for instance, I think it\\'s presentations.wits.ac.za where a number of academics and other members\\n\\n263 \\n00:31:30,800 --> 00:31:37,200\\nof the university community put their presentations and many of them use different kinds of CC licenses.\\n\\n264 \\n00:31:38,720 --> 00:31:44,320\\nThere is interesting work happening in the multimedia space.\\n\\n265 \\n00:31:44,801 --> 00:31:51,002\\nAnd some of the people involved in this, including the Dean of that faculty, the faculty of humanities, are very interested in the work of Wikipedia.\\n\\n266 \\n00:31:51,400 --> 00:31:55,680\\nThey get it. They understand it, and they can see the potential for collaboration.\\n\\n267 \\n00:31:56,800 --> 00:32:03,600\\nThe people who are involved in library work, people like Denise Nicholson, have been doing a lot of work around copyright/copyleft.\\n\\n268 \\n00:32:04,320 --> 00:32:13,560\\nI think that the chapter really provides an opportunity to give access to information to people who ordinarily don\\'t have that information.\\n\\n269 \\n00:32:15,240 --> 00:32:19,880\\nJust in terms of a research tool, in terms of a teaching tool, you know.\\n\\n270 \\n00:32:21,080 --> 00:32:29,520\\nJust a few months ago, straight after the World Cup last year, we had a change in our school\\'s curricula.\\n\\n271 \\n00:32:30,841 --> 00:32:34,721\\nSo the syllabus was changed mid-year and the teachers didn\\'t know what they were teaching.\\n\\n272 \\n00:32:35,120 --> 00:32:37,280\\nAnd it still is that way.\\n\\n273 \\n00:32:38,120 --> 00:32:43,680\\nThey still have to create the syllabi, they still have to find their feet in terms of what they have to be teaching at school.\\n\\n274 \\n00:32:44,361 --> 00:32:48,961\\nSo we essentially have our education system in crisis.\\n\\n275 \\n00:32:59,320 --> 00:33:07,761\\nI think my concern here is about people\\'s knowledge, versus scholarly knowledge again.\\n\\n276 \\n00:33:08,241 --> 00:33:11,401\\nWhat you call usable knowledge or tacit knowledge.\\n\\n277 \\n00:33:12,160 --> 00:33:16,720\\nTacit knowledge comes from practice, and practice is embodied:\\n\\n278 \\n00:33:17,160 --> 00:33:19,800\\nit\\'s embodied in experience.\\n\\n279 \\n00:33:32,575 --> 00:33:43,975\\nThe name of the temple is Kottathu, and it is also known as Neeliyar Kaavu.\\n\\n280 \\n00:33:44,175 --> 00:33:47,700\\nThe name Neeliyar Kaavu is more famous.\\n\\n281 \\n00:33:47,900 --> 00:33:51,370\\nWhat is the name of this Theyyam?\\n\\n282 \\n00:33:51,570 --> 00:33:54,300\\nThe name of this Theyyam is Kottathamma, and it is popularly known as Neeliyar Bhagavathi.\\n\\n283 \\n00:33:54,500 --> 00:33:57,300\\nAmong locals, the name Kottathamma is used more frequently.\\n\\n284 \\n00:33:57,500 --> 00:34:01,100\\nOlathara is another local name by which this Theyyam is known.\\n\\n285 \\n00:34:01,300 --> 00:34:06,500\\nWhat is the distinguishing feature of the costume of this Theyyam?\\n\\n286 \\n00:34:06,970 --> 00:34:11,600\\nThis Theyyam has long hair and is dressed completely in red.\\n\\n287 \\n00:34:21,120 --> 00:34:28,350\\nThere was an illam, a Brahmin residence, at Manathara, near Kottiyur in Kanur.\\n\\n288 \\n00:34:28,235 --> 00:34:35,199\\nSince that illam was in a remote place, when other Brahmins visited, they were forced to stay there.\\n\\n289 \\n00:34:35,400 --> 00:34:48,900\\nIt is said that when people went to bathe in the illam pond, they would disappear.\\n\\n290 \\n00:34:50,875 --> 00:34:59,370\\nOnce, Kalakaad Thanthri, a famous Brahmin, visited this illam.\\n\\n291 \\n00:34:59,570 --> 00:35:09,120\\nIn the evening, he went to the illam pond to bathe, taking a towel and thali (leaves used as soap) with him.\\n\\n292 \\n00:35:09,320 --> 00:35:16,800\\nHe saw a beautiful lady standing on the other side of the pond.\\n\\n293 \\n00:35:17,000 --> 00:35:23,300\\nThe lady asked him - Who are you? He replied - I am Kalakaad.\\n\\n294 \\n00:35:23,500 --> 00:35:27,450\\nThen the lady said - I am Kali (the Goddess).\\n\\n295 \\n00:35:27,650 --> 00:35:34,400\\nKali took the thali from him and squeezed it and gave him the juice.\\n\\n296 \\n00:35:34,600 --> 00:35:39,170\\nHe drank it, saying that it was amruth (holy nectar), given to him by the Goddess.\\n\\n297 \\n00:35:39,370 --> 00:35:46,300\\nThe Goddess Kali was pleased with him and told him to install her in a place where the tiger and the cow graze together.\\n\\n298 \\n00:35:46,500 --> 00:35:51,800\\nHe installed Goddess Kali at Mangattu Parambu. As the myth goes, that is how she came here.\\n\\n299 \\n00:36:04,035 --> 00:36:08,500\\nTheyyam is a form of worship.\\n\\n300 \\n00:36:08,700 --> 00:36:16,475\\nWe worship through idols, pictures, etc.\\n\\n301 \\n00:36:16,675 --> 00:36:27,870\\nGod incarnates as human beings and devotees are then able to interact with Him directly...\\n\\n302 \\n00:36:28,070 --> 00:36:33,000\\nand this is the premise of Theyyam worship.\\n\\n303 \\n00:36:33,200 --> 00:36:51,600\\nAbout Neeliyar Bhagavathi, there are many stories in the villages here...\\n\\n304 \\n00:36:51,800 --> 00:36:57,970\\nbut the songs in the performances do not mention these stories.\\n\\n305 \\n00:36:58,170 --> 00:37:04,000\\nThey do not mention anything beyond the manifestation of a divine power, Shakti.\\n\\n306 \\n00:37:04,200 --> 00:37:14,235\\nThe myths that circulate about the Goddess Kali are not substantiated by the lyrics of the songs.\\n\\n307 \\n00:37:14,435 --> 00:37:23,170\\nI haven\\'t come across any basis for the stories.\\n\\n308 \\n00:37:51,321 --> 00:37:56,801\\nThis library started funtioning in 1998, and it was open to the public in 1999.\\n\\n309 \\n00:37:57,280 --> 00:38:01,320\\nThis is the history section. History. And this is the Malayalam section.\\n\\n310 \\n00:38:04,681 --> 00:38:11,360\\nWe have more than 30,000 books, and out of this, about 20% is Malayalam.\\n\\n311 \\n00:38:12,360 --> 00:38:15,960\\nHere we have a collection on sociology, written in Malayalam.\\n\\n312 \\n00:38:17,240 --> 00:38:27,680\\nKerala Paddanam. Adivasi Puravarta...about tribals. This is the tribal...folklore section.\\n\\n313 \\n00:38:44,121 --> 00:38:51,080\\nWhen we started our work with Kali, the most difficult thing was to work with women\\n\\n314 \\n00:38:51,400 --> 00:38:55,080\\nand actually get them to feel a sense of confidence\\n\\n315 \\n00:38:55,400 --> 00:38:57,840\\nthat what they had to say had any value at all.\\n\\n316 \\n00:38:58,641 --> 00:39:05,960\\nBecause by that time the hierarchies of what constituted legitimate knowledge and what was outside the frame of that,\\n\\n317 \\n00:39:06,880 --> 00:39:11,960\\nwhat the canons were, and what those boundaries were, had been set....\\n\\n318 \\n00:39:12,480 --> 00:39:13,360\\nset in stone almost.\\n\\n319 \\n00:39:13,840 --> 00:39:21,041\\nNow to rupture that, to enter that, to stretch and expand the boundaries of that, to nuance that,\\n\\n320 \\n00:39:21,320 --> 00:39:24,081\\nto bring in new forms of knowledge into that,\\n\\n321 \\n00:39:24,441 --> 00:39:25,720\\nwas a very difficult enterprise.\\n\\n322 \\n00:39:26,600 --> 00:39:34,680\\nAnd it was more difficult because those people who could produce that knowledge themselves did not have the confidence to be able to do that.\\n\\n323 \\n00:39:35,720 --> 00:39:42,600\\nSo then a space was opened up, for a much greater sense, of not just oral history as sources for facts,\\n\\n324 \\n00:39:43,721 --> 00:39:50,481\\nbut oral history as a key avenue to understanding different forms of historical experience.\\n\\n325 \\n00:39:51,400 --> 00:39:55,840\\nBut what you are posing is the possibility of a new stage.\\n\\n326 \\n00:39:56,400 --> 00:40:00,841\\nWhich is to be able to put all of these different modes of producing history...\\n\\n327 \\n00:40:01,280 --> 00:40:06,961\\nto make them all open to a kind of equal access...\\n\\n328 \\n00:40:07,680 --> 00:40:11,321\\nso where writers of history have access to them and can produce from them,\\n\\n329 \\n00:40:11,760 --> 00:40:14,920\\nbut also where readers of history have access to them.\\n\\n330 \\n00:40:14,920 --> 00:40:18,560\\nAnd that invites readers of history to act as writers of history.\\n\\n331 \\n00:40:19,040 --> 00:40:29,800\\nThis game (tsere tsere) is usually played by very young children, starting from about the age of 4. As they grow older, they stop playing it.\\n\\n332 \\n00:40:30,000 --> 00:40:37,530\\nToday is something like a memorial to the game; that\\'s the spirit in which we are playing it.\\n\\n333 \\n00:40:38,700 --> 00:40:42,900\\nThe younger generation, they no longer play this game; they are only interested in playing ball.\\n\\n334 \\n00:40:49,000 --> 00:40:52,240\\nThe youth of today are definitely not playing this game.\\n\\n335 \\n00:41:09,700 --> 00:41:12,120\\nYes, we still play the game (tsere tsere), though the rules have changed a little.\\n\\n336 \\n00:41:12,200 --> 00:41:20,300\\nIn our version of the game, we draw small squares which act as symbols for the \\'houses\\'...\\n\\n337 \\n00:41:20,400 --> 00:41:27,150\\nand then we play the game, moving from 1 to 8.\\n\\n338 \\n00:41:27,250 --> 00:41:34,000\\nWhen we are done with jumping, we are still not allowed to step between the lines.\\n\\n339 \\n00:42:03,920 --> 00:42:06,361\\nHave a nice trip!\\n\\n340 \\n00:42:19,360 --> 00:42:25,641\\nA lot of these stories are about, you know, as I was saying, strongly erotic themes,\\n\\n341 \\n00:42:26,080 --> 00:42:29,841\\nthemes of excess, themes of desire, all of those sorts of things,\\n\\n342 \\n00:42:30,601 --> 00:42:32,561\\nand that has been lost.\\n\\n343 \\n00:42:33,360 --> 00:42:38,800\\nAnd they are also wonderfully magical-realist tales, they\\'re bizarre, and unexpected,\\n\\n344 \\n00:42:39,240 --> 00:42:42,920\\nand of course a lot of that has also been lost as they\\'ve been made more realist.\\n\\n345 \\n00:42:44,400 --> 00:42:52,240\\nAnd of course when missionaries come, they then start to write down those stories in keeping with their understanding of European fairy tale.\\n\\n346 \\n00:42:53,001 --> 00:42:58,560\\nAnd interestingly, this process of writing down European oral narrative happens at much the same time.\\n\\n347 \\n00:42:59,160 --> 00:43:04,680\\nSo the Grimm Brothers, for instance, start to write down and clean up at the same time....\\n\\n348 \\n00:43:05,040 --> 00:43:11,241\\nJust a footnote: there\\'s a wonderful story about the original version...one of the original versions of Little Red Riding Hood.\\n\\n349 \\n00:43:11,960 --> 00:43:15,000\\nIt\\'s kind of extraordinary.\\n\\n350 \\n00:43:15,480 --> 00:43:21,200\\nShe goes off to visit her grandmother, and her grandmother has been fully eaten,\\n\\n351 \\n00:43:21,681 --> 00:43:25,440\\nthere\\'s a bottle of blood that she thinks is wine and that she drinks,\\n\\n352 \\n00:43:25,720 --> 00:43:28,560\\nand of course the wolf in the story seduces her.\\n\\n353 \\n00:43:29,000 --> 00:02:08,960\\nSo these famous lines from Red Riding Hood, \"My, what big ears you have!\" is because she\\'s sitting right next to him.',\n", + " 'bytes': 38947,\n", + " 'sha1': '5jvs1e6vpd0utfobvc9yya8uc83anvf',\n", + " 'parent_id': 59124880,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606647837,\n", + " 'timestamp': '2021-11-11T16:52:01Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15890759,\n", + " 'title': 'Prof Walter Lewin Elastic Collisions.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'some fixes',\n", + " 'text': '1\\n00:00:01,000 --> 00:00:05,000\\nAll right, last time\\nwe talked exclusively\\n\\n2\\n00:00:05,000 --> 00:00:07,000\\nabout completely\\ninelastic collisions.\\n\\n3\\n00:00:07,000 --> 00:00:09,000\\nToday I will talk\\n\\n4\\n00:00:09,000 --> 00:00:12,000\\nabout collisions\\nin more general terms.\\n\\n5\\n00:00:12,000 --> 00:00:15,000\\nLet\\'s take\\na one-dimensional case.\\n\\n6\\n00:00:15,000 --> 00:00:22,000\\nWe have here m1\\nand we have here m2,\\n\\n7\\n00:00:22,000 --> 00:00:29,000\\nand to make life a little easy,\\nwe\\'ll make v2 zero\\n\\n8\\n00:00:29,000 --> 00:00:35,000\\nand this particle has\\nvelocity v1.\\n\\n9\\n00:00:35,000 --> 00:00:44,000\\nAfter the collision,\\nm2 has a velocity v2 prime,\\n\\n10\\n00:00:44,000 --> 00:00:52,000\\nand m1, let it have\\na velocity v1 prime.\\n\\n11\\n00:00:52,000 --> 00:00:54,000\\nI don\\'t even know whether\\nit\\'s in this direction\\n\\n12\\n00:00:54,000 --> 00:00:55,000\\nor whether it is\\nin that direction.\\n\\n13\\n00:00:55,000 --> 00:00:59,000\\nYou will see\\nthat either one is possible.\\n\\n14\\n00:00:59,000 --> 00:01:02,000\\nTo find v1 prime\\nand to find v2 prime,\\n\\n15\\n00:01:02,000 --> 00:01:06,000\\nit\\'s clear that you\\nnow need two equations.\\n\\n16\\n00:01:06,000 --> 00:01:11,000\\nAnd if there is no net external\\nforce on the system as a whole\\n\\n17\\n00:01:11,000 --> 00:01:15,000\\nduring the collisions,\\nthen momentum is conserved.\\n\\n18\\n00:01:15,000 --> 00:01:17,000\\nAnd so you can write down\\n\\n19\\n00:01:17,000 --> 00:01:27,000\\nthat m1 v1 must be\\nm1 v1 prime plus m2 v2 prime.\\n\\n20\\n00:01:27,000 --> 00:01:29,000\\nNow, you may want to put\\narrows over there\\n\\n21\\n00:01:29,000 --> 00:01:31,000\\nto indicate\\nthat these are vectors,\\n\\n22\\n00:01:31,000 --> 00:01:33,000\\nbut since it\\'s\\na one-dimensional case,\\n\\n23\\n00:01:33,000 --> 00:01:34,000\\nyou can leave the arrows off\\n\\n24\\n00:01:34,000 --> 00:01:36,000\\nand the signs will then\\nautomatically take care\\n\\n25\\n00:01:36,000 --> 00:01:38,000\\nof the direction.\\n\\n26\\n00:01:38,000 --> 00:01:41,000\\nIf you call this plus,\\nthen if you get a minus sign,\\n\\n27\\n00:01:41,000 --> 00:01:46,000\\nyou know that the velocity is\\nin the opposite direction.\\n\\n28\\n00:01:46,000 --> 00:01:52,000\\nSo now we need\\na second equation.\\n\\n29\\n00:01:52,000 --> 00:01:54,000\\nNow, in physics\\n\\n30\\n0:01:54,000 --> 00:01:57,000\\nwe do believe very strongly\\nin the conservation of energy,\\n\\n31\\n00:01:57,000 --> 00:02:01,000\\nnot necessarily in the\\nconservation of kinetic energy.\\n\\n32\\n00:02:01,000 --> 00:02:04,000\\nAs you have seen last time,\\nyou can destroy kinetic energy.\\n\\n33\\n00:02:04,000 --> 00:02:07,000\\nBut somehow we believe\\nthat if you destroy energy,\\n\\n34\\n00:02:07,000 --> 00:02:09,000\\nit must come out\\nin some other form,\\n\\n35\\n00:02:09,000 --> 00:02:12,000\\nand you cannot create energy\\nout of nothing.\\n\\n36\\n00:02:12,000 --> 00:02:15,000\\nAnd in the case of the\\ncompletely inelastic collisions\\n\\n37\\n00:02:15,000 --> 00:02:16,000\\nthat we have seen last time,\\n\\n38\\n00:02:16,000 --> 00:02:19,000\\nwe lost kinetic energy,\\nwhich was converted to heat.\\n\\n39\\n00:02:19,000 --> 00:02:21,000\\nThere was internal friction.\\n\\n40\\n00:02:21,000 --> 00:02:23,000\\nWhen the car wreck plowed\\ninto each other,\\n\\n41\\n00:02:23,000 --> 00:02:26,000\\nthere was internal friction--\\nno external friction--\\n\\n42\\n00:02:26,000 --> 00:02:29,000\\nand that took out\\nkinetic energy.\\n\\n43\\n00:02:29,000 --> 00:02:35,000\\nAnd so, in its most general\\nform, you can write down\\n\\n44\\n00:02:35,000 --> 00:02:39,000\\nthat the kinetic energy\\nbefore the collision\\n\\n45\\n00:02:39,000 --> 00:02:40,000\\nplus some number Q\\n\\n46\\n00:02:40,000 --> 00:02:43,000\\nequals the kinetic energy\\nafter the collision.\\n\\n47\\n00:02:43,000 --> 00:02:46,000\\nAnd if you know Q,\\nthen you have a second equation,\\n\\n48\\n00:02:46,000 --> 00:02:51,000\\nand then you can solve\\nfor v1 prime and for v2 prime.\\n\\n49\\n00:02:51,000 --> 00:02:58,000\\nIf Q is larger than zero, then\\nyou have gained kinetic energy.\\n\\n50\\n00:02:58,000 --> 00:03:00,000\\nThat is possible;\\nwe did that last time.\\n\\n51\\n00:03:00,000 --> 00:03:03,000\\nWe had two cars which\\nwere connected by a spring,\\n\\n52\\n00:03:03,000 --> 00:03:05,000\\nand we burned the wire\\n\\n53\\n00:03:05,000 --> 00:03:08,000\\nand each went off\\nin the opposite direction.\\n\\n54\\n00:03:08,000 --> 00:03:09,000\\nThere was no kinetic energy\\n\\n55\\n00:03:09,000 --> 00:03:11,000\\nbefore... if you want\\nto call it the collision,\\n\\n56\\n00:03:11,000 --> 00:03:13,000\\nbut there was\\nkinetic energy afterwards.\\n\\n57\\n00:03:13,000 --> 00:03:15,000\\nThat was the potential energy\\nof the spring\\n\\n58\\n00:03:15,000 --> 00:03:17,000\\nthat was converted\\ninto kinetic energy.\\n\\n59\\n00:03:17,000 --> 00:03:19,000\\nSo Q can be larger than zero.\\n\\n60\\n00:03:19,000 --> 00:03:24,000\\nWe call that\\na superelastic collision.\\n\\n61\\n00:03:24,000 --> 00:03:26,000\\nIt could be an explosion.\\n\\n62\\n00:03:26,000 --> 00:03:28,000\\nThat\\'s a\\nsuperelastic collision.\\n\\n63\\n00:03:28,000 --> 00:03:31,000\\nAnd then there is the\\npossibility that Q equals zero,\\n\\n64\\n00:03:31,000 --> 00:03:32,000\\na very special case.\\n\\n65\\n00:03:32,000 --> 00:03:34,000\\nWe will deal with that today,\\n\\n66\\n00:03:34,000 --> 00:03:37,000\\nand we call that\\nan elastic collision.\\n\\n67\\n00:03:37,000 --> 00:03:41,000\\nI will often call it\\na completely elastic collision,\\n\\n68\\n00:03:41,000 --> 00:03:44,000\\nwhich is really not necessary.\\n\\n69\\n00:03:44,000 --> 00:03:47,000\\n\"Elastic\" itself already means\\nQ is zero.\\n\\n70\\n00:03:47,000 --> 00:03:49,000\\nAnd then there is a case--\\n\\n71\\n00:03:49,000 --> 00:03:52,000\\nof which we have seen\\nseveral examples last time--\\n\\n72\\n00:03:52,000 --> 00:03:55,000\\nof inelastic collisions,\\nwhen you lose kinetic energy,\\n\\n73\\n00:03:55,000 --> 00:04:01,000\\nso this is\\nan inelastic collision.\\n\\n74\\n00:04:01,000 --> 00:04:03,000\\nAnd so, if you know what Q is,\\n\\n75\\n00:04:03,000 --> 00:04:05,000\\nthen you can solve\\nthese equations.\\n\\n76\\n00:04:05,000 --> 00:04:07,000\\nWhenever Q is less than zero,\\n\\n77\\n00:04:07,000 --> 00:04:10,000\\nwhenever you lose\\nkinetic energy,\\n\\n78\\n00:04:10,000 --> 00:04:14,000\\nthe loss, in general,\\ngoes into heat.\\n\\n79\\n00:04:14,000 --> 00:04:17,000\\nNow I want to continue a case\\n\\n80\\n00:04:17,000 --> 00:04:22,000\\nwhereby I have\\na completely elastic collision.\\n\\n81\\n00:04:22,000 --> 00:04:24,000\\nSo Q is zero.\\n\\n82\\n00:04:24,000 --> 00:04:28,000\\nMomentum is conserved, because\\nthere was no net external force,\\n\\n83\\n00:04:28,000 --> 00:04:31,000\\nso now kinetic energy is\\nalso conserved.\\n\\n84\\n00:04:31,000 --> 00:04:35,000\\nAnd so I can write down now\\none-half m1 v1 squared--\\n\\n85\\n00:04:35,000 --> 00:04:38,000\\nthat was the kinetic energy\\nbefore the collision--\\n\\n86\\n00:04:38,000 --> 00:04:42,000\\nmust be the kinetic energy\\nafter the collision\\n\\n87\\n00:04:42,000 --> 00:04:45,000\\none-half m1 v1 prime squared\\n\\n88\\n00:04:45,000 --> 00:04:51,000\\nplus one-half\\nm2 v2 prime squared.\\n\\n89\\n00:04:51,000 --> 00:04:53,000\\nThis is my equation number one,\\n\\n90\\n00:04:53,000 --> 00:04:55,000\\nand this is\\nmy equation number two.\\n\\n91\\n00:04:55,000 --> 00:04:57,000\\nAnd they can be solved;\\nyou can solve them.\\n\\n92\\n00:04:57,000 --> 00:04:59,000\\nThey are solved in your book.\\n\\n93\\n00:04:59,000 --> 00:05:01,000\\nI will simply give you\\nthe results,\\n\\n94\\n00:05:01,000 --> 00:05:03,000\\nbecause the results are\\nvery interesting to play with.\\n\\n95\\n00:05:03,000 --> 00:05:05,000\\nThat\\'s what\\nwe will be doing today.\\n\\n96\\n00:05:05,000 --> 00:05:19,000\\nv1 prime will be m1 minus m2\\ndivided by m1 plus m2 times v1\\n\\n97\\n00:05:19,000 --> 00:05:31,000\\nand v2 prime will be 2 m1\\ndivided by m1 plus m2 times v1.\\n\\n98\\n00:05:31,000 --> 00:05:34,000\\nThe first thing\\nthat you already see right away\\n\\n99\\n00:05:34,000 --> 00:05:38,000\\nis that v2 prime is always\\nin the same direction as v1.\\n\\n100\\n00:05:38,000 --> 00:05:39,000\\nThat\\'s completely obvious,\\n\\n101\\n00:05:39,000 --> 00:05:43,000\\nbecause the second object\\nwas standing still, remember?\\n\\n102\\n00:05:43,000 --> 00:05:46,000\\nSo if you plow something\\ninto the second object,\\n\\n103\\n00:05:46,000 --> 00:05:48,000\\nthey obviously continue\\nin that direction.\\n\\n104\\n00:05:48,000 --> 00:05:49,000\\nThat\\'s clear.\\n\\n105\\n00:05:49,000 --> 00:05:52,000\\nSo you see you can never have\\na sign reversal here.\\n\\n106\\n00:05:52,000 --> 00:05:55,000\\nHere, however, you can have\\na sign reversal.\\n\\n107\\n00:05:55,000 --> 00:05:57,000\\nIf you bounce a ping-pong ball\\noff a billiard ball,\\n\\n108\\n00:05:57,000 --> 00:05:59,000\\nthe ping-pong ball\\nwill come back\\n\\n109\\n00:05:59,000 --> 00:06:01,000\\nand this one becomes negative,\\n\\n110\\n00:06:01,000 --> 00:06:04,000\\nwhereas if you plow a billiard\\nball into a ping-pong ball,\\n\\n111\\n00:06:04,000 --> 00:06:05,000\\nit will go forward.\\n\\n112\\n00:06:05,000 --> 00:06:08,000\\nAnd so this can both be\\nnegative and can be positive\\n\\n113\\n00:06:08,000 --> 00:06:11,000\\ndepending upon whether\\nthe upstairs is negative\\n\\n114\\n00:06:11,000 --> 00:06:13,000\\nor positive.\\n\\n115\\n00:06:13,000 --> 00:06:16,000\\nSo this is the result which\\nholds under three conditions:\\n\\n116\\n00:06:16,000 --> 00:06:20,000\\nthat the kinetic energy\\nis conserved, so Q is zero;\\n\\n117\\n00:06:20,000 --> 00:06:21,000\\nthat momentum is conserved;\\n\\n118\\n00:06:21,000 --> 00:06:27,000\\nand that v2 before\\nthe collision equals zero.\\n\\n119\\n00:06:27,000 --> 00:06:33,000\\nLet\\'s look at three interesting\\ncases whereby we go to extremes.\\n\\n120\\n00:06:33,000 --> 00:06:35,000\\nAnd let\\'s first take the case\\n\\n121\\n00:06:35,000 --> 00:06:40,000\\nthat m1 is much,\\nmuch larger than m2.\\n\\n122\\n00:06:40,000 --> 00:06:43,000\\nm1 is much, much larger than m2.\\n\\n123\\n00:06:43,000 --> 00:06:50,000\\nAnother way of thinking about\\nthat is that let m2 go to zero.\\n\\n124\\n00:06:50,000 --> 00:06:53,000\\nExtreme case, the limiting case.\\n\\n125\\n00:06:53,000 --> 00:06:56,000\\nSo it\\'s like having\\na bowling ball\\n\\n126\\n00:06:56,000 --> 00:06:59,000\\nthat you collide\\nwith a ping-pong ball.\\n\\n127\\n00:06:59,000 --> 00:07:05,000\\nIf you look at that equation\\nwhen m2 goes to zero--\\n\\n128\\n00:07:05,000 --> 00:07:12,000\\nthis is zero, this is zero--\\nnotice that v1 prime equals v1.\\n\\n129\\n00:07:12,000 --> 00:07:14,000\\nThat is completely intuitive.\\n\\n130\\n00:07:14,000 --> 00:07:17,000\\nIf a bowling ball collides\\nwith a ping-pong ball\\n\\n131\\n00:07:17,000 --> 00:07:19,000\\nthe bowling ball doesn\\'t\\neven see the ping-pong ball.\\n\\n132\\n00:07:19,000 --> 00:07:22,000\\nIt continues its route\\nas if nothing happened.\\n\\n133\\n00:07:22,000 --> 00:07:23,000\\nThat\\'s exactly what you see.\\n\\n134\\n00:07:23,000 --> 00:07:28,000\\nAfter the collision, the bowling\\nball continues unaltered.\\n\\n135\\n00:07:28,000 --> 00:07:30,000\\nWhat is v2 prime?\\n\\n136\\n00:07:30,000 --> 00:07:32,000\\nThat is not so intuitive.\\n\\n137\\n00:07:32,000 --> 00:07:38,000\\nIf you substitute in there\\nm2 equals zero,\\n\\n138\\n00:07:38,000 --> 00:07:46,000\\nthen you get plus 2 v1--\\nnot obvious at all, plus 2 v1.\\n\\n139\\n00:07:46,000 --> 00:07:48,000\\nIt\\'s not something\\nI even want you to see;\\n\\n140\\n00:07:48,000 --> 00:07:49,000\\nI can\\'t see it either.\\n\\n141\\n00:07:49,000 --> 00:07:50,000\\nI\\'ll do a demonstration.\\n\\n142\\n00:07:50,000 --> 00:07:52,000\\nYou can see\\nthat it really happens.\\n\\n143\\n00:07:52,000 --> 00:07:55,000\\nSo, now you take a bowling ball\\n\\n144\\n00:07:55,000 --> 00:07:59,000\\nand you collide the bowling ball\\nwith the ping-pong ball\\n\\n145\\n00:07:59,000 --> 00:08:04,000\\nand the ping-pong ball will get\\na velocity 2 v1--\\n\\n146\\n00:08:04,000 --> 00:08:05,000\\nnot more, not less--\\n\\n147\\n00:08:05,000 --> 00:08:09,000\\nand the bowling ball continues\\nat the same speed.\\n\\n148\\n00:08:09,000 --> 00:08:14,000\\nNow let\\'s take a case whereby m1\\nequals much, much less than m2;\\n\\n149\\n00:08:14,000 --> 00:08:18,000\\nin other words, in the limiting\\ncase, m1 goes to zero.\\n\\n150\\n00:08:18,000 --> 00:08:20,000\\nAnd we substitute that in here.\\n\\n151\\n00:08:20,000 --> 00:08:24,000\\nSo m1 goes to zero,\\nso this is zero\\n\\n152\\n00:08:24,000 --> 00:08:29,000\\nand so you see\\nv1 prime equals minus v1.\\n\\n153\\n00:08:29,000 --> 00:08:33,000\\nv1 prime equals minus v1,\\ncompletely obvious.\\n\\n154\\n00:08:33,000 --> 00:08:36,000\\nThe ping-pong ball bounces\\noff the bowling ball\\n\\n155\\n00:08:36,000 --> 00:08:37,000\\nand it just bounces back.\\n\\n156\\n00:08:37,000 --> 00:08:39,000\\nAnd this is what you see.\\n\\n157\\n00:08:39,000 --> 00:08:41,000\\nAnd the bowling ball\\ndoesn\\'t do anything,\\n\\n158\\n00:08:41,000 --> 00:08:46,000\\nbecause m1 goes to zero,\\nso v2 prime goes to zero.\\n\\n159\\n00:08:46,000 --> 00:08:48,000\\n[…]\\n\\n160\\n00:08:48,000 --> 00:08:50,000\\nSo that\\'s very intuitive.\\n\\n161\\n00:08:50,000 --> 00:08:55,000\\nAnd now we have a very cute case\\nthat m1 equals m2.\\n\\n162\\n00:08:55,000 --> 00:08:58,000\\nAnd when you substitute\\nthat in here--\\n\\n163\\n00:08:58,000 --> 00:09:03,000\\nwhen m1 equals m2--\\nv1 prime becomes zero.\\n\\n164\\n00:09:03,000 --> 00:09:10,000\\nSo the first one stops\\nwith v2 prime becomes v1.\\n\\n165\\n00:09:10,000 --> 00:09:13,000\\nIf m1 equals m2,\\n\\n166\\n00:09:13,000 --> 00:09:15,000\\nyou have two downstairs here\\nand two upstairs\\n\\n167\\n00:09:15,000 --> 00:09:21,000\\nand you see\\nthat v2 prime equals v1.\\n\\n168\\n00:09:21,000 --> 00:09:22,000\\nAnd that is a remarkable case--\\n\\n169\\n00:09:22,000 --> 00:09:25,000\\nyou\\'ve all seen that, you\\'ve all\\nplayed with Newton\\'s cradle.\\n\\n170\\n00:09:25,000 --> 00:09:26,000\\nYou have two billiard balls.\\n\\n171\\n00:09:26,000 --> 00:09:29,000\\nOne is still\\nand the other one bangs on it.\\n\\n172\\n00:09:29,000 --> 00:09:30,000\\nThe first one stops\\n\\n173\\n00:09:30,000 --> 00:09:33,000\\nand the second one takes off\\nwith the speed of the first.\\n\\n174\\n00:09:33,000 --> 00:09:34,000\\nAn amazing thing.\\n\\n175\\n00:09:34,000 --> 00:09:36,000\\nWe\\'ve all seen it.\\n\\n176\\n00:09:36,000 --> 00:09:37,000\\nI presume you have all seen it.\\n\\n177\\n00:09:37,000 --> 00:09:39,000\\nMost people do this\\nwith pendulums\\n\\n178\\n00:09:39,000 --> 00:09:42,000\\nwhere they bounce these balls\\nagainst each other.\\n\\n179\\n00:09:42,000 --> 00:09:44,000\\nI will do it here with a model\\n\\n180\\n00:09:44,000 --> 00:09:46,000\\nthat you can see\\na little easier.\\n\\n181\\n00:09:46,000 --> 00:09:48,000\\nI have here billiard balls,\\n\\n182\\n00:09:48,000 --> 00:09:50,000\\nand if I bounce this one\\non this one,\\n\\n183\\n00:09:50,000 --> 00:09:52,000\\nthen we have case number three.\\n\\n184\\n00:09:52,000 --> 00:09:54,000\\nThen you see\\nthis one stands still\\n\\n185\\n00:09:54,000 --> 00:09:58,000\\nand this one takes over\\nthe speed-- quite amazing.\\n\\n186\\n00:09:58,000 --> 00:10:00,000\\nEvery time I see this,\\nI love it.',\n", + " 'bytes': 13934,\n", + " 'sha1': '3yt7rastphs7u9dx0ledvv4sglavgcu',\n", + " 'parent_id': 57094869,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 57734657,\n", + " 'timestamp': '2011-08-07T21:53:01Z',\n", + " 'user': {'id': 660671, 'text': 'ANDROBETA'},\n", + " 'page': {'id': 16025828,\n", + " 'title': 'Polarization Filter with Clouds German.ogg.undefined.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Romanian subtitles using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': '1\\n00:00:00 --> 00:00:03,656\\nPoziția soarelui: vest. Direcția privirii: nord.\\n\\n3\\n00:00:03,979 --> 00:00:07,492\\nFiltru de polarizare aplicat transversal\\n\\n4\\n00:00:09,338 --> 00:00:11,707\\nFiltru de polarizare aplicat longitudinal\\n\\n5\\n00:00:15,086 --> 00:00:19,731\\nTransversal | Longitudinal',\n", + " 'bytes': 287,\n", + " 'sha1': 'g4wvwxbevfqqe5fa8eprkhs4w9wkcpc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606353538,\n", + " 'timestamp': '2021-11-09T09:44:16Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 16122232,\n", + " 'title': 'Wiki loves monuments.ogv.ro.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Wiki loves monuments.ogg.ro.srt]] to [[TimedText:Wiki loves monuments.ogv.ro.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:24,541 --> 00:00:26,777\\nNume: Teatrul din Jorat\\nArticol: [...]\\n\\n3\\n00:00:44,458 --> 00:00:48,75\\nTEATRUL DIN JORAT\\n\\n4\\n00:01:44,304 --> 00:01:45,942\\nWikipediștii\\n\\n5\\n00:01:48,333 --> 00:01:50,252\\ndin toată lumea\\n\\n6\\n00:01:52,354 --> 00:01:54,353\\niubesc monumentele.\\n\\n7\\n00:01:55,999 --> 00:01:58,837\\nhttp://wikilovesmonuments.ro/',\n", + " 'bytes': 333,\n", + " 'sha1': '0vg5mvpyl6dg6a2mdqxgfobiious7b9',\n", + " 'parent_id': 58249994,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606353522,\n", + " 'timestamp': '2021-11-09T09:44:04Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 16125129,\n", + " 'title': 'Wiki loves monuments.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Wiki loves monuments.ogg.sv.srt]] to [[TimedText:Wiki loves monuments.ogv.sv.srt]]: rename of the original file',\n", + " 'text': '1\\n00:01:44,000 --> 00:01:47,000\\nWikimedianer\\n\\n2\\n00:01:48,500 --> 00:01:51,500\\nfrån hela världen\\n\\n3\\n00:01:52,500 --> 00:01:54,000\\nälskar minnesmärken\\n\\n4\\n00:01:56,000 --> 00:01:59,000\\nWiki loves monuments',\n", + " 'bytes': 206,\n", + " 'sha1': '4q3s9juuhepjnik8fkyzt1roe4v49gz',\n", + " 'parent_id': 58143520,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 58597183,\n", + " 'timestamp': '2011-08-28T03:26:28Z',\n", + " 'user': {'id': 493491, 'text': 'Mathonius'},\n", + " 'page': {'id': 16247991,\n", + " 'title': 'Wikipedia ridotto.ogv.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'nl translation of [[:TimedText:Wikipedia ridotto.ogv.en.srt]] (oldid 41873960)',\n", + " 'text': '1\\n00:00:07,686 --> 00:00:11,934\\nWikipedia ontstond in 2001. Het doel was om de grootste\\n\\n2\\n00:00:11,973 --> 00:00:15,443\\nopen-content-encyclopedie ooit te creeëren.\\n\\n3\\n00:00:15,710 --> 00:00:19,598\\nWikipedia wordt geschreven door vele vrijwilligers.\\n\\n4\\n00:00:19,751 --> 00:00:22,465\\nIedereen kan bijdragen. Laten we zien hoe.\\n\\n5\\n00:00:23,854 --> 00:00:27,300\\nBijna elk artikel op Wikipedia heeft een tabje aan de bovenkant\\n\\n6\\n00:00:27,335 --> 00:00:30,492\\nmet daarop het woord \"bewerken\" (\"modifica\"). Het biedt de mogelijkheid om\\n\\n7\\n00:00:30,536 --> 00:00:34,428\\nprecies datgene te doen: het bewerken van de pagina die je leest.\\n\\n8\\n00:00:35,043 --> 00:00:39,465\\nWikipedia heeft geen redactioneel personeel. Elke lezer\\n\\n9\\n00:00:39,540 --> 00:00:42,990\\nheeft toegang tot de inhoud van alle pagina\\'s van de encyclopedie\\n\\n10\\n00:00:43,019 --> 00:00:45,932\\nen kan deze bewerken, zelfs zonder een account aan te hoeven maken.\\n\\n11\\n00:00:46,151 --> 00:00:49,719\\nVoor de tekstopmaak wordt een speciale code gebruikt,\\n\\n12\\n00:00:49,728 --> 00:00:53,638\\nmaar het is vrij simpel en makkelijk om te leren.\\n\\n13\\n00:00:53,989 --> 00:00:57,078\\nDoor het opslaan van je bewerkingen, ga je akkoord met het vrijgeven\\n\\n14\\n00:00:57,112 --> 00:00:59,573\\nvan je bijdrage onder een vrije licentie.\\n\\n15\\n00:00:59,652 --> 00:01:03,546\\nIedereen zal de tekst kunnen lezen, gebruiken en aanpassen,\\n\\n16\\n00:01:03,561 --> 00:01:07,693\\nzelfs voor commercieel gebruik, zolang de auteur van de tekst wordt vermeld\\n\\n17\\n00:01:07,721 --> 00:01:11,200\\nen afgeleide werken onder dezelfde licentie worden vrijgegeven.\\n\\n18\\n00:01:11,561 --> 00:01:16,019\\nHet is ook belangrijk om te onthouden dat elke gebruiker, ook indien niet geregistreerd,\\n\\n19\\n00:01:16,073 --> 00:01:19,998\\nzelf verantwoordelijk is voor zijn of haar bijdragen.\\n\\n20\\n00:01:20,542 --> 00:01:24,743\\nEenmaal opgeslagen, is de verandering direct zichtbaar voor iedereen!\\n\\n21\\n00:01:25,715 --> 00:01:29,795\\nWikipedia is geen willekeurige verzameling van informatie,\\n\\n22\\n00:01:29,820 --> 00:01:34,142\\nmaar een encyclopedie. Het is een systematische collectie van menselijke kennis.\\n\\n23\\n00:01:34,361 --> 00:01:36,797\\nSommige soorten bijdragen, zoals\\n\\n24\\n00:01:36,816 --> 00:01:40,559\\nsimpele definities en oorspronkelijk onderzoek, zijn niet toegestaan.\\n\\n25\\n00:01:41,748 --> 00:01:44,853\\nElke pagina heeft zijn eigen geschiedenis, die \\n\\n26\\n00:01:44,878 --> 00:01:48,311\\nalle paginaversies laat zien sinds de creatie ervan.\\n\\n27\\n00:01:48,562 --> 00:01:51,551\\nNaast het tijdstip, de datum en de samenvatting van elke aanpassing,\\n\\n28\\n00:01:51,566 --> 00:01:54,416\\nregistreert de software ook wie het uitvoerde.\\n\\n29\\n00:01:54,638 --> 00:01:57,534\\nAls de bijdrager geen account gebruikt, dan wordt het IP-adres\\n\\n30\\n00:01:57,541 --> 00:02:00,116\\nvan zijn of haar computernetwerk ook opgenomen in de geschiedenis van de pagina.\\n\\n31\\n00:02:00,679 --> 00:02:03,639\\nDe geschiedenis biedt de lezer de mogelijkheid om\\n\\n32\\n00:02:03,679 --> 00:02:06,777\\nelke twee verschillende versies te vergelijken, waarbij de verschillen worden benadrukt.\\n\\n33\\n00:02:07,467 --> 00:02:11,381\\nElke verandering op Wikipedia wordt geregistreerd; dus als je begint,\\n\\n34\\n00:02:11,397 --> 00:02:14,586\\nis het raadzaam om gebruik te maken van de testpagina, genaamd de \"zandbak\",\\n\\n35\\n00:02:14,610 --> 00:02:16,755\\ndie vrijelijk bewerkt kan worden.\\n\\n36\\n00:02:16,803 --> 00:02:20,736\\nGeregistreerde gebruikers kunnen ook\\n\\n37\\n00:02:20,801 --> 00:02:24,334\\npersoonlijke testpagina\\'s aanmaken onder hun gebruikerspagina.\\n\\n38\\n00:02:24,924 --> 00:02:28,020\\nMaak een link aan naar de door jou gekozen paginatitel om een nieuwe pagina aan te maken,\\n\\n39\\n00:02:28,109 --> 00:02:30,844\\nof klik op een bestaande \"rode link\".\\n\\n40\\n00:02:30,929 --> 00:02:33,148\\nHet is raadzaam om eerst na te gaan\\n\\n41\\n00:02:33,209 --> 00:02:35,461\\nof de pagina nog niet bestaat.\\n\\n42\\n00:02:36,025 --> 00:02:38,838\\nOm productieve samenwerking te waarborgen,\\n\\n43\\n00:02:38,841 --> 00:02:42,074\\nheeft de gemeenschap een aantal richtlijnen ontwikkeld,\\n\\n44\\n00:02:42,114 --> 00:02:44,811\\nwaartoe alle bijdragers worden uitgenodigd die te volgen en te bekrachtigen.\\n\\n45\\n00:02:45,253 --> 00:02:47,615\\nEen van de voornaamste richtlijnen op Wikipedia\\n\\n46\\n00:02:47,687 --> 00:02:50,075\\ngaat over de manier waarop de inhoud van een artikel wordt georganiseerd.\\n\\n47\\n00:02:50,147 --> 00:02:53,071\\nLaten we bekijken hoe de gewoonlijke structuur van een artikel eruitziet.\\n\\n48\\n00:02:53,977 --> 00:02:58,354\\nIn de inleiding horen de belangrijkste onderwerpen van het artikel te worden samengevat\\n\\n49\\n00:02:58,370 --> 00:03:00,824\\nop simpele en beknopte wijze.\\n\\n50\\n00:03:00,989 --> 00:03:03,828\\nHet artikel is verdeeld in rubrieken;\\n\\n51\\n00:03:03,879 --> 00:03:06,856\\neen inhoudsopgave wordt automatisch gemaakt.\\n\\n52\\n00:03:07,138 --> 00:03:10,739\\nOp Wikipedia kunnen foto\\'s, diagrammen\\n\\n53\\n00:03:10,759 --> 00:03:14,142\\nof video\\'s worden ingevoegd, maar het is zeer belangrijk dat\\n\\n54\\n00:03:14,188 --> 00:03:17,207\\nhet materiaal dat je wilt uploaden vrijelijk te gebruiken is;\\n\\n55\\n00:03:17,221 --> 00:03:19,994\\ndat houdt in dat het onder een vrije licentie is vrijgegeven!\\n\\n56\\n00:03:20,434 --> 00:03:23,597\\nAlle informatie in een artikel dient\\nAll the informaton that an article contains must be\\n\\n57\\n00:03:23,604 --> 00:03:26,765\\nbetrouwbaar en verifieerbaar te zijn, dus het is noodzakelijk om\\n\\n58\\n00:03:26,805 --> 00:03:29,158\\naltijd de externe bronnen aan te geven;\\n\\n59\\n00:03:29,167 --> 00:03:32,283\\ndeze bronnen moeten algemeen erkend zijn voor hun juistheid.\\n\\n60\\n00:03:32,497 --> 00:03:35,339\\nAan het eind van elk artikel, na de tekst,\\n\\n61\\n00:03:35,353 --> 00:03:37,648\\nzijn enkele \"technische\" gedeelten,\\n\\n62\\n00:03:37,665 --> 00:03:40,095\\ndie aanvullende middelen verschaffen over het onderwerp.\\n\\n63\\n00:03:40,302 --> 00:03:43,422\\nIn sommige specifieke onderwerpgebieden zijn conventies\\n\\n64\\n00:03:43,405 --> 00:03:47,109\\nen bepaalde richtlijnen voor het schrijven van een artikel.\\n\\n65\\n00:03:48,500 --> 00:03:50,930\\nEen noodzakelijk principe van Wikipedia\\n\\n66\\n00:03:50,964 --> 00:03:53,335\\nis het neutrale standpunt.\\n\\n67\\n00:03:53,361 --> 00:03:55,981\\nArtikelen moeten geen persoonlijke meningen en oordelen bevatten,\\n\\n68\\n00:03:56,011 --> 00:03:59,739\\nmaar moeten alle belangrijke standpunten uitleggen\\n\\n69\\n00:03:59,754 --> 00:04:03,297\\nop een neutrale en evenwichtige manier, zonder vooroordeel.\\n\\n70\\n00:04:04,289 --> 00:04:08,548\\nElk Wikipedia-artikel heeft zijn eigen overlegpagina,\\n\\n71\\n00:04:08,627 --> 00:04:11,086\\nwaarop schrijvers en editors kunnen discussiëren en werken aan de ontwikkeling van\\n\\n72\\n00:04:11,114 --> 00:04:14,184\\neen artikel dat diverse standpunten belicht.\\n\\n73\\n00:04:14,395 --> 00:04:17,464\\nAnders dan op de artikelpagina ondertekenen de individuele bijdragers\\n\\n74\\n00:04:17,493 --> 00:04:20,784\\nhier hun opmerkingen. Maar onthoud dat de discussie\\n\\n75\\n00:04:20,823 --> 00:04:24,667\\nmoet bijdragen aan de ontwikkeling van het artikel, het is geen plaats voor uitgebreide betogen.\\n\\n76\\n00:04:25,117 --> 00:04:27,117\\nAls bijdragers de behoefte hebben\\n\\n77\\n00:04:27,147 --> 00:04:29,753\\nom veel mensen tegelijkertijd toe te spreken,\\n\\n78\\n00:04:29,823 --> 00:04:33,631\\nom te discussiëren over een algemeen probleem of een onderwerp dat te maken heeft met meerdere artikelen,\\n\\n79\\n00:04:33,655 --> 00:04:37,510\\ndan kan gebruikgemaakt worden van de \"Kroeg\" (\"Bar\") of de gepaste projectpagina\\'s over het onderwerp.\\n\\n80\\n00:04:37,995 --> 00:04:41,242\\nElke geregistreerde gebruiker heeft een eigen persoonlijke pagina,\\n\\n81\\n00:04:41,273 --> 00:04:44,115\\nwaarop hij of zij informatie over zichzelf kan delen.\\n\\n82\\n00:04:44,226 --> 00:04:47,802\\nOok deze pagina heeft een bijbehorende overlegpagina,\\n\\n83\\n00:04:47,827 --> 00:04:51,693\\ndie gebruikt wordt als een persoonlijke brievenbus.\\n\\n84\\n00:04:51,983 --> 00:04:55,753\\nMisschien bent u op zoek naar een deskundige gebruiker voor technische hulp;\\n\\n85\\n00:04:55,815 --> 00:04:58,338\\nbijvoorbeeld bij de \"Helpdesk\" (\"Sportello Informazioni\").\\n\\n86\\n00:04:58,353 --> 00:05:02,030\\nJe kunt het Orakel (\"l\\'Oracolo\") vragen stellen over de inhoud.\\n\\n87\\n00:05:02,924 --> 00:05:06,262\\nIn het geval van vandalisme of overmatig agressief gedrag\\n\\n88\\n00:05:06,294 --> 00:05:09,319\\nkunnen sommige geregisteerde gebruikers, \"moderators\" genoemd,\\n\\n89\\n00:05:09,386 --> 00:05:12,083\\ningrijpen en bepaalde taken uitvoeren,\\n\\n90\\n00:05:12,109 --> 00:05:15,486\\nzoals een gebruiker blokkeren, of een pagina verwijderen of tegen bewerken beveiligen.\\n\\n91\\n00:05:15,664 --> 00:05:18,384\\nDe moderators zijn vrijwilligers die\\n\\n92\\n00:05:18,384 --> 00:05:22,048\\nhet vertrouwen van de gemeenschap genieten en aangesteld zijn na een verkiezing.\\n\\n93\\n00:05:22,218 --> 00:05:25,355\\nZij doen essentiële technische handelingen en handhaven\\n\\n94\\n00:05:25,357 --> 00:05:27,646\\nhet beleid en de richtlijnen van het project,\\n\\n95\\n00:05:27,664 --> 00:05:30,453\\nmaar zij zijn niet eindverantwoordelijk voor Wikipedia.\\n\\n96\\n00:05:31,311 --> 00:05:34,532\\nWikipedia wordt beheerd door de Wikimedia Foundation,\\n\\n97\\n00:05:34,542 --> 00:05:37,960\\neen non-profit-stichting in San Francisco,\\n\\n98\\n00:05:37,958 --> 00:05:41,090\\ndie in de hulpmiddelen voorziet ter ontwikkeling van het project.\\n\\n99\\n00:05:41,281 --> 00:05:44,554\\nDe foundation werd gesticht in 2003 en is afhankelijk van\\n\\n100\\n00:05:44,559 --> 00:05:47,233\\npublieke en private donaties,\\n\\n101\\n00:05:47,235 --> 00:05:51,571\\nen met name van vele kleine donaties van individuen.\\n\\n102\\n00:05:51,853 --> 00:05:54,959\\nOm volledig onafhankelijk te blijven en veel vrijwillige editors erbij te betrekken,\\n\\n103\\n00:05:54,991 --> 00:05:59,277\\nmaakt Wikipedia geen gebruik van advertenties.\\n\\n104\\n00:05:59,979 --> 00:06:04,125\\nWereldwijd houden een aantal organisaties zich bezig met\\n\\n105\\n00:06:04,181 --> 00:06:07,761\\nde promotie van Wikipedia en haar zusterprojecten in bepaalde landen of streken.\\n\\n106\\n00:06:08,105 --> 00:06:11,624\\nIn Italië werd in 2005 Wikimedia Italia opgericht.\\n\\n107\\n00:06:11,671 --> 00:06:15,961\\nNaast de projecten van de Wikimedia Foundation promoot Wikimedia Italia andere initiatieven\\n\\n108\\n00:06:15,973 --> 00:06:19,662\\ndie te maken hebben met de verspreiding van vrije cultuur en vrije kennis.\\n\\n109\\n00:06:19,898 --> 00:06:23,992\\nPers, bedrijven en scholen kunnen contact opnemen met Wikimedia Italia\\n\\n110\\n00:06:24,029 --> 00:06:28,130\\nom meer informatie in het Italiaans te verkrijgen over Wikipedia.\\n\\n111\\n00:06:28,981 --> 00:06:31,905\\nVele vrijwilligers verzamelen, sorteren en organiseren\\n\\n112\\n00:06:31,913 --> 00:06:35,649\\nde gedeelde kennis van onze tijd\\n\\n113\\n00:06:35,701 --> 00:06:39,149\\nom het vrij beschikbaar te maken. Hoe zit het met jou?\\n\\n114\\n00:06:39,352 --> 00:06:42,605\\nVoel je vrij! Wikipedia staat open voor iedereen!',\n", + " 'bytes': 10632,\n", + " 'sha1': 'aea2805r0v0h6ve6qglur4vfp56agtc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606353571,\n", + " 'timestamp': '2021-11-09T09:44:40Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 16273880,\n", + " 'title': 'Wiki loves monuments.ogv.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Wiki loves monuments.ogg.ca.srt]] to [[TimedText:Wiki loves monuments.ogv.ca.srt]]: rename of the original file',\n", + " 'text': \"1\\n00:01:44,000 --> 00:01:47,000\\nEls viquipedistes\\n\\n2\\n00:01:48,500 --> 00:01:51,500\\nd'arreu del món\\n\\n3\\n00:01:52,500 --> 00:01:54,000\\nestimem els monuments\\n\\n4\\n00:01:56,000 --> 00:01:59,000\\nWiki Loves Monuments\",\n", + " 'bytes': 208,\n", + " 'sha1': '4kmhkrunk8iz886baias3p0kjp2aduq',\n", + " 'parent_id': 58685553,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 58820220,\n", + " 'timestamp': '2011-09-03T02:59:22Z',\n", + " 'user': {'id': 57323, 'text': 'Brochon99'},\n", + " 'page': {'id': 16305439,\n", + " 'title': 'Wikipedia Takes Montreal 2011 (WTMTL).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1\\n00:00:09,009 --> 00:00:12,135\\nIt’s all about basically to illustrate Wikipedia\\n\\n2\\n00:00:12,135 --> 00:00:15,12\\nput pictures on the articles of Montreal\\n\\n3\\n00:00:15,12 --> 00:00:18,479\\nwhich are not properly illustrated or not illustrated at all.\\n\\n4\\n00:00:19,54 --> 00:00:23,79\\nIt’s basically many events around the world,\\n\\n5\\n00:00:23,79 --> 00:00:27,435\\nwe are the thirty-third and honestly were the biggest.\\n\\n6\\n00:00:27,435 --> 00:00:30,631\\nEven with the hurricane we’re still the biggest.\\n\\n7\\n00:00:30,631 --> 00:00:32,437\\nThere was a 110 persons who participate.\\n\\n8\\n00:00:34,114 --> 00:00:36,747\\nThis should be fun, something to do…\\n\\n9\\n00:00:36,747 --> 00:00:38,605\\nMake everyone jealous…\\n\\n10\\n00:00:38,605 --> 00:00:40,211\\n… something out of ordinary.\\n\\n11\\n00:00:49,641 --> 00:00:52,139\\nOn the East of Montreal there’s\\n\\n12\\n00:00:52,139 --> 00:00:55,053\\na lot of high value pictures to take, so…\\n\\n13\\n00:00:55,053 --> 00:00:57,526\\nsince we have a car, we are not going by walk,\\n\\n14\\n00:00:57,526 --> 00:01:00,205\\nwe can go to these places very fast and\\n\\n15\\n00:01:00,205 --> 00:01:03,221\\ntake a lot of those high value pictures.\\n\\n16\\n00:01:04,329 --> 00:01:07,31\\nBecause there’s not a lot of people who are working on Wikipedia,\\n\\n17\\n00:01:07,31 --> 00:01:10,957\\non the French Wikipedia in Québec, so when we are doing this kind\\n\\n18\\n00:01:10,957 --> 00:01:14,492\\nof activity, it help to know better Wikipedia\\n\\n19\\n00:01:14,492 --> 00:01:18,565\\nfor the people.\\n\\n20\\n00:01:19,165 --> 00:01:20,999\\nWhat we would do to win\\n\\n21\\n00:01:20,999 --> 00:01:22,444\\none point!\\n\\n22\\n00:01:23,137 --> 00:01:26,194\\nMoreover, there are six pictures of that!\\n\\n23\\n00:01:27,071 --> 00:01:30,489\\nFor myself, I have a picture of the Chateau Frontenac\\n\\n24\\n00:01:30,489 --> 00:01:33,411\\nin Québec which is the main picture\\n\\n25\\n00:01:33,411 --> 00:01:35,108\\non the article of the Chateau Frontenac.\\n\\n26\\n00:01:35,108 --> 00:01:36,503\\nI guess that’s pretty cool!\\n\\n27\\n00:01:37,272 --> 00:01:40,763\\nFor me, I am just an amateur photographer,\\n\\n28\\n00:01:40,763 --> 00:01:44,772\\nso I don’t really care about the money or the…\\n\\n29\\n00:01:44,772 --> 00:01:49,829\\nI just like to see that people choose a picture to represent something.\\n\\n30\\n00:01:52,721 --> 00:01:55,414\\nThe province of Québec, and Canada in general\\n\\n31\\n00:01:55,414 --> 00:01:57,991\\nis a really beautiful place\\n\\n32\\n00:01:57,991 --> 00:02:01,118\\nand when you go out to take some pictures, \\n\\n33\\n00:02:01,118 --> 00:02:04,19\\nyou have to walk around and watch really carefully and… \\n\\n34\\n00:02:04,19 --> 00:02:07,579\\nit makes you watch.\\n\\n35\\n00:02:09,056 --> 00:02:11,16\\nIt's the first in Canada we organize\\n\\n36\\n00:02:11,16 --> 00:02:12,845\\nit's not the last, there will be one\\n\\n37\\n00:02:12,845 --> 00:02:14,78\\nin Toronto, in Ottawa, in Quebec...\\n\\n38\\n00:02:15,257 --> 00:02:19,039\\n... even you on one computer, I am, Alan, everyone… tomorrow and\\n\\n39\\n00:02:19,039 --> 00:02:22,476\\nafter tomorrow we will put that on Wikipedia later...\\n\\n40\\n00:02:22,476 --> 00:02:24,729\\nbecause now there’s an hurricane!\\n\\n41\\n00:02:26,329 --> 00:02:30,663\\nI didn’t really cry but I was on the edge of…\\n\\n42\\n00:02:30,663 --> 00:02:33,678\\nbecause what are the chances that an hurricane\\n\\n43\\n00:02:33,678 --> 00:02:36,003\\nhits Montreal specifically on that day…\\n\\n44\\n00:02:36,003 --> 00:02:37,672\\nIt stays 24 hours on Montreal.\\n\\n45\\n00:02:37,672 --> 00:02:39,758\\nIt happens once every century,\\n\\n46\\n00:02:39,758 --> 00:02:42,153\\nYesterday ’twas sunny, tomorrow it’s sunny,\\n\\n47\\n00:02:42,153 --> 00:02:43,841\\nbut today… people are very courageous,\\n\\n48\\n00:02:43,841 --> 00:02:46,077\\nit’s just amazing.\",\n", + " 'bytes': 3636,\n", + " 'sha1': '31cm03yhicnut17n91t4dllrcqvphof',\n", + " 'parent_id': 58820160,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 175100563,\n", + " 'timestamp': '2015-10-09T16:53:54Z',\n", + " 'user': {'id': 3318642, 'text': 'Crasstun'},\n", + " 'page': {'id': 16308209,\n", + " 'title': 'Wikipedia Takes Montreal 2011 (WTMTL).ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Undo revision 175095556 by [[Special:Contributions/83.149.8.186|83.149.8.186]] ([[User talk:83.149.8.186|talk]])',\n", + " 'text': \"1\\n00:00:09,009 --> 00:00:12,135\\nL'évènement est organisé principalement pour illustrer Wikipédia,\\n\\n2\\n00:00:12,135 --> 00:00:15,12\\net ajouter des photos sur les articles concernant Montréal\\n\\n3\\n00:00:15,12 --> 00:00:18,479\\nqui sont mal illustrés ou pas illustrés du tout.\\n\\n4\\n00:00:19,54 --> 00:00:23,79\\nPlusieurs évènements similaires ont eu lieu dans le monde,\\n\\n5\\n00:00:23,79 --> 00:00:27,435\\nMontréal est le 33e évènement et nous sommes le plus gros.\\n\\n6\\n00:00:27,435 --> 00:00:30,631\\nMême avec l'ouragan Irène, nous sommes le plus gros!\\n\\n7\\n00:00:30,631 --> 00:00:32,437\\nIl y avait 110 participants.\\n\\n8\\n00:00:34,114 --> 00:00:36,747\\nÇa va être amusant à faire...\\n\\n9\\n00:00:36,747 --> 00:00:38,605\\nOn va rendre les gens jaloux!\\n\\n10\\n00:00:38,605 --> 00:00:40,211\\n... ça sort de l'ordinaire!\\n\\n11\\n00:00:49,641 --> 00:00:52,139\\nDans l'est de Montréal, il y a des photos\\n\\n12\\n00:00:52,139 --> 00:00:55,053\\nqui valent beaucoup de points,\\n\\n13\\n00:00:55,053 --> 00:00:57,526\\net comme nous avons une voiture\\n\\n14\\n00:00:57,526 --> 00:01:00,205\\nnous pouvons nous rendre rapidement \\n\\n15\\n00:01:00,205 --> 00:01:03,221\\net prendre ces photos de haute valeur.\\n\\n16\\n00:01:04,329 --> 00:01:07,31\\nIl n'y a pas beaucoup de gens du Québec\\n\\n17\\n00:01:07,31 --> 00:01:10,957\\nqui travaillent sur Wikipédia francophone,\\n\\n18\\n00:01:10,957 --> 00:01:14,492\\net ce genre d'activité permet de promouvoir\\n\\n19\\n00:01:14,492 --> 00:01:18,565\\nl'encyclopédie auprès des gens.\\n\\n20\\n00:01:19,165 --> 00:01:20,999\\nQu'est-ce qu'on ne ferait pas\\n\\n21\\n00:01:20,999 --> 00:01:22,444\\npour avoir un point!\\n\\n22\\n00:01:24,137 --> 00:01:26,194\\nD'ailleurs, il y a six photos juste de ça!\\n\\n23\\n00:01:27,071 --> 00:01:30,489\\nJ'ai pris une photo du Château Frontenac\\n\\n24\\n00:01:30,489 --> 00:01:33,411\\nà Québec, et elle est maintenant la photo\\n\\n25\\n00:01:33,411 --> 00:01:35,108\\nprincipale de l'article du Château Frontenac\\n\\n26\\n00:01:35,108 --> 00:01:36,503\\nalors c'est très cool!\\n\\n27\\n00:01:37,272 --> 00:01:40,763\\nJe suis un photographe amateur\\n\\n28\\n00:01:40,763 --> 00:01:44,772\\net je ne me soucie pas de l'argent.\\n\\n29\\n00:01:44,772 --> 00:01:49,829\\nJ'aime quand les gens choisissent mes photos pour représenter quelque chose.\\n\\n30\\n00:01:52,721 --> 00:01:55,414\\nLa province de Québec et le Canada\\n\\n31\\n00:01:55,414 --> 00:01:57,991\\nsont des endroits magnifiques\\n\\n32\\n00:01:57,991 --> 00:02:01,118\\net quand on fait de la photo,\\n\\n33\\n00:02:01,118 --> 00:02:04,19\\nça nous oblige à nous déplacer et à observer...\\n\\n34\\n00:02:04,19 --> 00:02:07,579\\nça nous force à être attentif.\\n\\n35\\n00:02:09,056 --> 00:02:11,16\\nC'est le premier au Canada qu'on organise\\n\\n36\\n00:02:11,16 --> 00:02:12,845\\nce n'est pas le dernier, il va en avoir à\\n\\n37\\n00:02:12,845 --> 00:02:14,78\\nà Toronto, Ottawa, Québec...\\n\\n38\\n00:02:15,257 --> 00:02:19,039\\n... nous avons des ordinateurs et dans les prochains jours, nous allons\\n\\n39\\n00:02:19,039 --> 00:02:22,476\\ntéléverser vos photos dans Wikipédia\\n\\n40\\n00:02:22,476 --> 00:02:24,729\\nil y a un ouragan dehors!\\n\\n41\\n00:02:26,329 --> 00:02:30,663\\nJe n'ai pas pleuré, mais presque...\\n\\n42\\n00:02:30,663 --> 00:02:33,678\\nquelles étaient les chances qu'un ouragan\\n\\n43\\n00:02:33,678 --> 00:02:36,003\\nfrappe Montréal spécifiquement aujourd'hui?\\n\\n44\\n00:02:36,003 --> 00:02:37,672\\nÇa arrive une fois par siècle, \\n\\n45\\n00:02:37,672 --> 00:02:39,758\\net l'ouragan reste durant 24 heures. \\n\\n46\\n00:02:39,758 --> 00:02:42,153\\nHier, ensoleillé. Demain, ensoleillé...\\n\\n47\\n00:02:42,153 --> 00:02:43,841\\nmais aujourd'hui... les gens sont vraiment\\n\\n48\\n00:02:43,841 --> 00:02:46,077\\ncourageux, c'est incroyable!\",\n", + " 'bytes': 3579,\n", + " 'sha1': '5e6wqg2epg4m2g3hkdqe4p6k3shwtvq',\n", + " 'parent_id': 175095556,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 197188166,\n", + " 'timestamp': '2016-05-25T12:49:03Z',\n", + " 'user': {'text': '130.79.69.129'},\n", + " 'page': {'id': 16317883,\n", + " 'title': 'Videoonwikipedia.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,108 --> 00:00:02,198\\nVous connaissez tous bien Wikipédia, \\n\\n2\\n00:00:02,198 --> 00:00:05,672\\nvous l'utilisez pour chercher des informations, pour écrire des articles ou simplement pour apprendre quelque chose.\\n\\n3\\n00:00:06,657 --> 00:00:08,68\\nNon seulement il est gratuit pour vous de lire,\\n\\n4\\n00:00:08,942 --> 00:00:11,686\\nil est également permis de contribuer et d'améliorer les articles.\\n\\n5\\n00:00:11,732 --> 00:00:14,045\\nTout ce que vous écrivez doit être factuel, neutre \\n\\n6\\n00:00:14,045 --> 00:00:18,594\\net les sujets controversés doivent être non censurés.\\n\\n7\\n00:00:19,686 --> 00:00:21,87\\nWikipedia est une communauté ouverte\\n\\n8\\n00:00:21,87 --> 00:00:24,114\\nqui se gouverne avec une structure minimale\\n\\n9\\n00:00:24,114 --> 00:00:26,227\\net tous sont bénévoles.\\n\\n10\\n00:00:27,873 --> 00:00:31,305\\nActuellement, il y a Wikipédia dans plus de 260 langues\\n\\n11\\n00:00:31,52 --> 00:00:33,857\\ndont certaines a des milliers d'articles\\n\\n12\\n00:00:33,919 --> 00:00:36,05\\net d'autres ont des millions.\\n\\n13\\n00:00:37,419 --> 00:00:41,007\\nDes articles ont des informations détaillées, des photos et des liens\\n\\n14\\n00:00:41,007 --> 00:00:43,234\\npour vous aider à en apprendre plus sur un sujet.\\n\\n15\\n00:00:44,573 --> 00:00:48,181\\nMais que faire si chaque article que vous lisez ont de la vidéo ?\\n\\n16\\n00:00:48,181 --> 00:00:50,85\\nEt si vous pouviez faire une visite autour des pyramides en Égypte,\\n\\n17\\n00:00:50,85 --> 00:00:53,887\\nun voyage le long d'une rue principale historique\\n\\n18\\n00:00:53,887 --> 00:00:56,956\\nou une danse folklorique de votre pays d'origine ?\\n\\n19\\n00:00:56,956 --> 00:01:01,327\\nMaintenant, avec la vidéo sur Wikipédia, c'est possible.\\n\\n20\\n00:01:01,327 --> 00:01:03,463\\nSi vous voulez faire une vidéo vous-même,\\n \\n21\\n00:01:03,463 --> 00:01:08,101\\nchoisissez les sujets fondamentaux de l'article qui vous aideront à illustrer le sujet\\n\\n23\\n00:01:08,307 --> 00:01:10,932\\net construisez à l'avance un plan de ce que vous voulez filmer.\\n\\n24\\n00:01:10,963 --> 00:01:14,605\\nRappelez-vous que Wikipédia est une encyclopédie,\\n\\n25\\n00:01:14,743 --> 00:01:16,193\\ndonc le contenu doit être éducatif et informatif.\\n\\n26\\n00:01:17,24 --> 00:01:19,903\\nLe plus important lorsque vous filmez\\n\\n27\\n00:01:19,934 --> 00:01:22,949\\nest d'avoir une poigne ferme ou d'utiliser un trépied.\\n\\n28\\n00:01:23,011 --> 00:01:25,351\\nSi vous ne voulez pas faire la vidéo vous-même,\\n\\n29\\n00:01:25,351 --> 00:01:27,37\\nil existe plusieurs archives sur Internet,\\n\\n30\\n00:01:27,37 --> 00:01:30,077\\ncomme archive.org ou Wikimedia Commons\\n\\n31\\n00:01:30,077 --> 00:01:33,196\\nsusceptibles d'avoir une vidéo qui s'adapte à votre article.\\n\\n32\\n00:01:34,534 --> 00:01:37,979\\nN'oubliez pas que peu importe ce que vous filmez ou trouvez dans Internet\\n\\n33\\n00:01:37,979 --> 00:01:41,901\\ntoutes les vidéos sur Wikipédia doivent être libre d'utilisation et de partage.\\n\\n34\\n00:01:41,901 --> 00:01:46,005\\nHabituellement, cela signifie qu'il est autorisé par Creative Commons.\\n\\n35\\n00:01:46,005 --> 00:01:47,877\\nMaintenant que vous avez sélectionné un article\\n\\n36\\n00:01:47,877 --> 00:01:49,934\\net une vidéo que vous souhaitez ajouter\\n\\n37\\n00:01:49,934 --> 00:01:54,848\\nvoici la meilleure façon d'assembler les deux.\\n\\n38\\n00:01:54,848 --> 00:01:57,817\\nFörst rekommenderar vi Mozilla Firefox.\\n\\n39\\n00:01:57,817 --> 00:02:00,587\\nPremièrement, nous recommandons Mozilla Firefox\\n\\n40\\n00:02:00,587 --> 00:02:04,057\\nqui rend facile la consultation et l'ajout de vidéos dans Wikipédia.\\n\\n41\\n00:02:04,057 --> 00:02:09,496\\nEnsuite, téléchargez le module Firefogg à Mozilla Firefox\\n\\n42\\n00:02:09,496 --> 00:02:13,299\\nqui convertit automatiquement les vidéos au format libre Theora\\n\\n43\\n00:02:13,299 --> 00:02:17,003\\nque Wikipedia utilise lorsque vous les téléversez.\\n\\n44\\n00:02:17,003 --> 00:02:20,94\\nSinon, les utilisateurs de Windows et Mac peuvent utiliser le convertisseur Miro\\n\\n45\\n00:02:20,94 --> 00:02:25,311\\nun logiciel simple qui permet de convertir des vidéos vers de nombreux formats\\n\\n46\\n00:02:25,311 --> 00:02:28,915\\ny compris la vidéo libre pour Wikipédia.\\n\\n47\\n00:02:28,915 --> 00:02:34,954\\nContrairement à l'édition des articles, téléversement de vidéo nécessite que vous soyez connecté à Wikipédia.\\n\\n48\\n00:02:34,954 --> 00:02:38,892\\nConnectez-vous ou créez un compte si vous êtes un nouvel utilisateur.\\n\\n49\\n00:02:38,892 --> 00:02:41,16\\nLorsque vous téléchargez une vidéo pour la première fois\\n\\n50\\n00:02:41,16 --> 00:02:43,897\\nvous devrez activer la fonction de téléchargement de vidéo.\\n\\n51\\n00:02:43,897 --> 00:02:49,202\\nPour ce faire, cliquez sur votre nom en haut de la page\\n\\n52\\n00:02:49,202 --> 00:02:53,606\\npuis cliquez sur ''Préférences'',\\n\\n53\\n00:02:53,606 --> 00:02:56,309\\ncliquez sur ''Gadgets'', \\n\\n54\\n00:02:56,309 --> 00:03:00,313\\ndescendez à ''Gadgets généraux'', \\n\\n55\\n00:03:00,313 --> 00:03:05,385\\net cochez la case qui ajoute le support de ''mwEmbed''.\\n\\n56\\n00:03:05,385 --> 00:03:09,355\\nFaites défiler au bas le la page, et ''Enregistrez vos préférences''.\\n\\n57\\n00:03:09,355 --> 00:03:12,258\\nMaintenant vous êtes prêt à téléverser des vidéos.\\n\\n58\\n00:03:12,258 --> 00:03:15,357\\nUne fois que vous vous êtes connecté allez à l'article que vous souhaitez modifier\\n\\n59\\n00:03:15,357 --> 00:03:16,985\\net cliquez sur l'onglet ''Modifier''.\\n\\n60\\n00:03:16,985 --> 00:03:20,166\\nVous allez maintenant voir un bouton ''Assistant d'ajout de média'' dans le menu d'édition.\\n\\n61\\n00:03:20,166 --> 00:03:22,748\\nLorsque vous cliquez sur ce bouton, une nouvelle fenêtre s'ouvre.\\n\\n62\\n00:03:22,748 --> 00:03:26,791\\nSi vous téléchargez votre propre fichier, sélectionnez-le et appuyez sur ''Envoyer''.\\n\\n63\\n00:03:26,791 --> 00:03:28,975\\nVous pouvez également sélectionner une vidéo à partir de Commons\\n\\n64\\n00:03:28,975 --> 00:03:33,179\\nou un fichier multimédia que vous avez téléversé récemment mais pas encore ajouté dans un article.\\n\\n65\\n00:03:33,179 --> 00:03:37,551\\nPour ajouter la vidéo dans l'article, appuyez simplement sur le bouton ''Ajouter à la page''\\n\\n66\\n00:03:37,551 --> 00:03:40,72\\ndans le coin inférieur droit de la fenêtre.\\n\\n67\\n00:03:40,72 --> 00:03:43,957\\nPour en savoir plus sur la façon d'ajouter des vidéos sur Wikipédia\\n\\n68\\n00:03:43,957 --> 00:03:54,467\\nAllez sur Wikipedia et tapez '''P:Wikifilm''' dans la boîte de recherche.\",\n", + " 'bytes': 6286,\n", + " 'sha1': 'n38r81y4m8q09jyfkakw5efc7likghc',\n", + " 'parent_id': 58840719,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 128876134,\n", + " 'timestamp': '2014-07-13T10:35:48Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 16347927,\n", + " 'title': 'Jarry - Métro de Montréal (1280×720).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'McZusatz moved page [[TimedText:Jarry (métro de Montréal).ogv.en.srt]] to [[TimedText:Jarry - Métro de Montréal (1280×720).ogv.en.srt]] without leaving a redirect',\n", + " 'text': '1\\n00:00:04,194 --> 00:00:05,929\\nNext station : Jarry\\n\\n2\\n00:01:28,308 --> 00:01:38,786\\nAttention, the service is restored on the orange line.\\n\\n3\\n00:01:39,417 --> 00:01:43,674\\nThe STM thank you for your understanding.',\n", + " 'bytes': 215,\n", + " 'sha1': '5jvmp0b6y9busn1f2n4s2w4rr6yaebx',\n", + " 'parent_id': 128786111,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 59482008,\n", + " 'timestamp': '2011-09-15T22:36:38Z',\n", + " 'user': {'id': 1654789, 'text': 'Celiaak'},\n", + " 'page': {'id': 16501806,\n", + " 'title': 'Chocolate cake.ogg.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,458 --> 00:00:04,416\\n6 ovos; 150 g margarina; 225 g açúcar; 225 g chocolate em pó; 100 g farinha; 250 g chocolate negro; 2.5 dl natas\\n\\n2\\n00:00:04,416 --> 00:00:15,916\\nderreter a margarina\\n\\n3\\n00:00:15,916 --> 00:00:47,416\\nadicionar o açúcar\\n\\n4\\n00:00:47,416 --> 00:01:00,291\\nseparar as claras das gemas dos ovos\\n\\n5\\n00:01:00,291 --> 00:01:30,166\\njuntar as gemas dos ovos\\n\\n6\\n00:01:30,166 --> 00:02:07,458\\njuntar o chocolate em pó\\n\\n7\\n00:02:07,458 --> 00:02:44,916\\nmontar as claras dos ovos\\n\\n8\\n00:02:44,916 --> 00:02:45,416\\njuntar a farinha e as claras batidas alternadamente\\n\\n8.5\\n00:02:45,416 --> 00:02:45,916\\n\\n\\n9\\n00:05:08,958 --> 0-1:0-1:0-1\\nderreter cuidadosamente o chocolate negro\\n\\n10\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nadicionar as natas\\n\\n11\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n12\\n0-1:0-1:0-1 --> 0-1:0-1:0-1',\n", + " 'bytes': 812,\n", + " 'sha1': '3n9jwgp0otv88q7h0tsuoephjufij2h',\n", + " 'parent_id': 59476299,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 59497605,\n", + " 'timestamp': '2011-09-16T09:52:08Z',\n", + " 'user': {'id': 1654789, 'text': 'Celiaak'},\n", + " 'page': {'id': 16508795,\n", + " 'title': 'Allsång Skansen 1937.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,999\\n([[:sv:Stockholms-Tidningen|Stockholms-Tidningen]], 1937: 20,000 in sing-along)\\n<br>Pai! Oh, tantas pessoas!\\nEu estou aqui.\\n\\n2\\n00:00:007,000 --> 00:00:18,999\\nTra la la, la la la...\\n<br>([[:sv:Tre trallande jäntor|Tre trallande jäntor]], Fröding/Körling)',\n", + " 'bytes': 289,\n", + " 'sha1': 'n3de4xwu31mg2fpey0vhzi4lg73sl13',\n", + " 'parent_id': 59497577,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 59497771,\n", + " 'timestamp': '2011-09-16T09:58:11Z',\n", + " 'user': {'id': 1654789, 'text': 'Celiaak'},\n", + " 'page': {'id': 16508828,\n", + " 'title': 'Allsång Skansen 1937.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,999\\n([[:sv:Stockholms-Tidningen|Stockholms-Tidningen]], 1937: 20,000 in sing-along)\\n<br>Papa! Oh, combien de personnes!\\nJe suis ici.\\n\\n2\\n00:00:007,000 --> 00:00:18,999\\nTralalla lalla la...\\n<br>([[:sv:Tre trallande jäntor|Tre trallande jäntor]], Fröding/Körling)',\n", + " 'bytes': 292,\n", + " 'sha1': 'mg5jycbnjqmnasdg0ajy3m9uw8ydrui',\n", + " 'parent_id': 59497689,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 71192506,\n", + " 'timestamp': '2012-05-16T02:54:30Z',\n", + " 'user': {'id': 1699066, 'text': 'Fúlvio'},\n", + " 'page': {'id': 16509102,\n", + " 'title': 'President Obama on Death of Osama bin Laden.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,704 --> 00:00:02,175\\nBoa noite.\\n\\n2\\n00:00:02,175 --> 00:00:06,952\\nEsta noite, posso dizer ao povo americano e ao mundo,\\n\\n3\\n00:00:06,952 --> 00:00:11,3\\nque os Estados Unidos conduziram uma operação que matou Osama bin Laden,\\n\\n4\\n00:00:11,3 --> 00:00:13,672\\no líder da al-Qaeda,\\n\\n5\\n00:00:13,672 --> 00:00:21,359\\ne o terrorista que é responsável pela morte de milhares de homens, mulheres e crianças inocentes.\\n\\n6\\n00:00:21,359 --> 00:00:25,204\\nFoi há quase dez anos que o dia luminoso de Setembro escureceu\\n\\n7\\n00:00:25,204 --> 00:00:29,216\\npelo pior ataque sobre o povo americano na nossa história.\\n\\n8\\n00:00:29,216 --> 00:00:33,994\\nAs imagens do 11 de Setembro estão marcadas a fogo na memória nacional.\\n\\n9\\n00:00:33,994 --> 00:00:38,775\\nAviões sequestrados a cortar um céu de setembro sem nuvens,\\n\\n10\\n00:00:38,775 --> 00:00:41,784\\nas torres gémeas colapsando até ao chão,\\n\\n11\\n00:00:41,784 --> 00:00:45,059\\nfumo negro formando vagalhões no Pentágono,\\n\\n12\\n00:00:45,059 --> 00:00:49,47\\nos destroços do voo 93 em Shanksville, Pensilvânia,\\n\\n13\\n00:00:49,47 --> 00:00:55,554\\nem que as acções de cidadãos heroicos nos pouparam ainda mais desgosto e destruição.\\n\\n14\\n00:00:55,554 --> 00:01:00,301\\nNo entanto, sabemos que as piores imagens são aquelas invisíveis ao mundo:\\n\\n15\\n00:01:00,301 --> 00:01:03,175\\no lugar vazio na mesa de jantar,\\n\\n16\\n00:01:03,175 --> 00:01:07,355\\ncrianças forçadas a crescer sem a sua mãe, ou o seu pai,\\n\\n17\\n00:01:07,355 --> 00:01:12,534\\npais que nunca irão conhecer a sensação do abraço de um filho.\\n\\n18\\n00:01:12,534 --> 00:01:16,279\\nQuase três mil cidadãos nos foram tirados,\\n\\n19\\n00:01:16,279 --> 00:01:19,79\\ndeixando um buraco escancarado em nossos corações.\\n\\n20\\n00:01:19,79 --> 00:01:22,998\\nNo dia 11 de Setembro de 2001,\\n\\n21\\n00:01:22,998 --> 00:01:24,933\\nno nosso luto,\\n\\n22\\n00:01:24,933 --> 00:01:27,41\\no povo americano juntou-se.\\n\\n23\\n00:01:27,41 --> 00:01:29,248\\nOferecemos uma mão aos nossos vizinhos,\\n\\n24\\n00:01:29,248 --> 00:01:32,255\\ne oferecemos o nosso sangue aos feridos.\\n\\n25\\n00:01:32,255 --> 00:01:35,465\\nReafirmamos os nossos laços uns com os outros\\n\\n26\\n00:01:35,465 --> 00:01:39,007\\ne o nosso amor com a comunidade e com o país.\\n\\n27\\n00:01:39,007 --> 00:01:41,749\\nNesse dia, não importa de onde viemos,\\n\\n28\\n00:01:41,749 --> 00:01:43,753\\na que Deus nós rezávamos,\\n\\n29\\n00:01:43,753 --> 00:01:46,262\\na que raça ou etnia pertencíamos,\\n\\n30\\n00:01:46,262 --> 00:01:50,741\\nestávamos unidos como uma família americana.\\n\\n31\\n00:01:50,741 --> 00:01:54,752\\nNós também estávamos unidos na determinação em proteger a nossa nação,\\n\\n32\\n00:01:54,752 --> 00:02:00,332\\ne em trazer à Justiça aqueles que cometeram este ataque brutal.\\n\\n33\\n00:02:00,332 --> 00:02:04,378\\nApercebemo-nos rapidamente que os ataques de 11 de Setembro foram perpetrados pela al-Qaeda.\\n\\n34\\n00:02:04,378 --> 00:02:06,984\\nUma organização liderada por Osama bin Laden,\\n\\n35\\n00:02:06,984 --> 00:02:09,826\\nque declarou abertamente uma guerra aos Estados Unidos\\n\\n36\\n00:02:09,826 --> 00:02:14,506\\ne se comprometeu a matar inocentes no nosso país e em redor do mundo.\\n\\n37\\n00:02:14,506 --> 00:02:17,346\\nE assim fomos para a guerra contra a al-Qaeda,\\n\\n38\\n00:02:17,346 --> 00:02:22,694\\npara proteger os nossos cidadãos, os nossos amigos e os nossos aliados.\\n\\n39\\n00:02:22,694 --> 00:02:27,91\\nNos últimos dez anos, graças ao trabalho incansável e heróico dos nossos militares\\n\\n40\\n00:02:27,91 --> 00:02:32,856\\ne dos nossos profissionais antiterrorismo, fizemos grandes progressos nesse esforço.\\n\\n41\\n00:02:32,856 --> 00:02:37,233\\nTemos impedido ataques terroristas e reforçado a defesa nacional.\\n\\n42\\n00:02:37,233 --> 00:02:39,809\\nNo Afeganistão derrubamos o governo Taliban,\\n\\n43\\n00:02:39,809 --> 00:02:43,789\\nque deu guarida e apoio a bin Laden e à al-Qaeda .\\n\\n44\\n00:02:43,789 --> 00:02:46,595\\nE, ao redor do mundo, nós trabalhamos com nossos amigos e aliados\\n\\n45\\n00:02:46,595 --> 00:02:49,536\\npara capturar ou matar dezenas de terroristas da al-Qaeda,\\n\\n46\\n00:02:49,536 --> 00:02:54,315\\nincluindo alguns que faziam parte da ação do 11 de Setembro.\\n\\n47\\n00:02:54,315 --> 00:02:57,323\\nNo entanto, Osama bin Laden evitou a captura\\n\\n48\\n00:02:57,323 --> 00:03:01,301\\ne escapou atravessando a fronteira do Afeganistão para o Paquistão.\\n\\n49\\n00:03:01,301 --> 00:03:04,543\\nEnquanto isso, a Al Qaeda continuou a operar ao longo dessa fronteira\\n\\n50\\n00:03:04,543 --> 00:03:09,123\\ne a actuar através das suas filiais ao redor do mundo.\\n\\n51\\n00:03:09,123 --> 00:03:11,496\\nE assim, logo após tomar posse,\\n\\n52\\n00:03:11,496 --> 00:03:15,039\\ndei instruções a Leon Panetta, o director da CIA,\\n\\n53\\n00:03:15,039 --> 00:03:20,756\\npara tornar o abate ou a captura de bin Laden a principal prioridade da nossa guerra contra a al-Qaeda,\\n\\n54\\n00:03:20,756 --> 00:03:26,071\\nassim como continuamos os nossos esforços mais amplos para atrapalhar, desmantelar e derrotar sua rede.\\n\\n55\\n00:03:26,071 --> 00:03:33,256\\nEntão, em Agosto passado, depois de anos de exaustivo trabalho do nosso serviço de inteligência,\\n\\n56\\n00:03:33,256 --> 00:03:36,7\\nfui informado sobre uma possível pista até bin Laden.\\n\\n57\\n00:03:36,7 --> 00:03:41,646\\nEstava longe de ser certo, e demorou muitos meses para decidir este assunto.\\n\\n58\\n00:03:41,646 --> 00:03:44,055\\nEncontrei-me várias vezes com a minha equipa de segurança nacional,\\n\\n59\\n00:03:44,055 --> 00:03:48,231\\nà medida que desenvolvíamos mais informações sobre a possibilidade de que tínhamos localizado Bin Laden\\n\\n60\\n00:03:48,231 --> 00:03:52,41\\nescondido num complexo no interior profundo do Paquistão.\\n\\n61\\n00:03:52,41 --> 00:03:58,227\\nE, finalmente, na semana passada, decidi que tínhamos informação suficiente para agir,\\n\\n62\\n00:03:58,227 --> 00:04:03,942\\ne autorizei uma operação para apanhar Osama bin Laden e trazê-lo à Justiça.\\n\\n63\\n00:04:03,942 --> 00:04:10,124\\nHoje, sob a minha direcção, os Estados Unidos lançaram uma operação dirigida contra esse complexo\\n\\n64\\n00:04:10,124 --> 00:04:13,268\\nem Abbottabad, Pakistan.\\n\\n65\\n00:04:13,268 --> 00:04:18,783\\nA pequena equipa de americanos realizou a operação com uma extraordinária coragem e capacidade.\\n\\n66\\n00:04:18,783 --> 00:04:21,323\\nNenhum americano ficaram feridos.\\n\\n67\\n00:04:21,323 --> 00:04:24,799\\nEles tiveram cuidado para evitar vítimas civis.\\n\\n68\\n00:04:24,799 --> 00:04:27,573\\nApós um tiroteio, mataram Osama bin Laden\\n\\n69\\n00:04:27,573 --> 00:04:31,283\\ne tomaram a custódia de seu corpo.\\n\\n70\\n00:04:31,283 --> 00:04:36,063\\nDurante mais de duas décadas, Bin Laden foi o líder e símbolo da al-Qaeda,\\n\\n71\\n00:04:36,063 --> 00:04:41,011\\ne continuou a planejar ataques contra o nosso país e os nossos amigos e aliados.\\n\\n72\\n00:04:41,011 --> 00:04:44,585\\nA morte de bin Laden marca a conquista mais significativa até à data,\\n\\n73\\n00:04:44,585 --> 00:04:47,729\\nno esforço da nossa nação para derrotar a al-Qaeda.\\n\\n74\\n00:04:47,729 --> 00:04:50,772\\nNo entanto, a sua morte não marca o fim do nosso esforço.\\n\\n75\\n00:04:50,772 --> 00:04:54,982\\nNão há dúvida de que a al-Qaeda continuará a prosseguir os ataques contra nós.\\n\\n76\\n00:04:54,982 --> 00:05:00,799\\nNós devemos, e iremos, permanecer vigilantes em casa e no exterior.\\n\\n77\\n00:05:00,799 --> 00:05:08,254\\nEnquanto fazemos isto, devemos também reafirmar que os Estados Unidos não estão e nunca estarão em guerra com o Islão.\\n\\n78\\n00:05:08,254 --> 00:05:13,802\\nEu deixei claro, assim como o Presidente Bush fez logo após o 11 de Setembro,\\n\\n79\\n00:05:13,802 --> 00:05:18,078\\nque a nossa guerra não é contra o Islão, que bin Laden não era um líder muçulmano,\\n\\n80\\n00:05:18,078 --> 00:05:21,022\\nele era um assassino em massa de muçulmanos.\\n\\n81\\n00:05:21,188 --> 00:05:24,096\\nNa verdade, a al-Qaeda tem assassinado dezenas de muçulmanos em muitos países,\\n\\n82\\n00:05:24,096 --> 00:05:26,169\\nincluindo no nosso.\\n\\n83\\n00:05:26,169 --> 00:05:31,441\\nAssim, o seu desaparecimento deve ser saudado por todos que acreditam na paz e na dignidade humana.\\n\\n84\\n00:05:32,395 --> 00:05:34,706\\nAo longo dos anos, tenho repetidamente deixado claro\\n\\n85\\n00:05:34,706 --> 00:05:39,654\\nque iria intervir no Paquistão se soubéssemos onde bin Laden estava.\\n\\n86\\n00:05:40,146 --> 00:05:41,925\\nIsto é o que temos feito.\\n\\n87\\n00:05:42,079 --> 00:05:47,628\\nMas é importante lembrar que nossa cooperação antiterrorista com o Paquistão ajudou a nos levar a bin Laden\\n\\n88\\n00:05:48,397 --> 00:05:50,789\\ne ao local onde estava escondido.\\n\\n89\\n00:05:51,004 --> 00:05:54,3\\nNa verdade, bin Laden havia declarado guerra contra o Paquistão, bem\\n\\n90\\n00:05:54,73 --> 00:05:57,613\\ncomo ordenou ataques contra o povo paquistanês.\\n\\n91\\n00:05:57,89 --> 00:06:04,658\\nHoje à noite, liguei para o Presidente Zardari, e minha equipa falou também com os seus colegas no Paquistão.\\n\\n92\\n00:06:05,043 --> 00:06:09,455\\nEles concordam que este é um bom e histórico dia para ambas as nossas nações\\n\\n93\\n00:06:09,455 --> 00:06:13,399\\ne, daqui para frente, é essencial que o Paquistão continue\\n\\n94\\n00:06:13,399 --> 00:06:17,711\\na se juntar a nós na luta contra a al-Qaeda e suas afiliadas.\\n\\n95\\n00:06:18,48 --> 00:06:21,074\\nO povo americano não optou por esta luta.\\n\\n96\\n00:06:21,074 --> 00:06:23,208\\nEla veio para as nossas costas.\\n\\n97\\n00:06:23,716 --> 00:06:27,358\\nTudo começou com a matança sem sentido dos nossos cidadãos.\\n\\n98\\n00:06:27,911 --> 00:06:32,914\\nDepois de quase dez anos de serviço, luta, e sacrifício\\n\\n99\\n00:06:33,36 --> 00:06:35,831\\nque conhecemos bem os custos da guerra.\\n\\n100\\n00:06:36,831 --> 00:06:43,95\\nEstes esforços pesam sobre mim cada vez que eu, como Comandante-em-Chefe, tenho de assinar uma carta a uma família que perdeu um ente querido\\n\\n101\\n00:06:43,95 --> 00:06:48,897\\nou olhar nos olhos de um militar que tenha sido gravemente ferido.\\n\\n102\\n00:06:48,897 --> 00:06:51,803\\nAssim, os americanos compreendem os custos da guerra.\\n\\n103\\n00:06:52,203 --> 00:06:56,684\\nNo entanto, como um país, nós nunca vamos tolerar nossa segurança sendo ameaçada,\\n\\n104\\n00:06:56,684 --> 00:06:59,979\\nnem ficar parados quando as nossas pessoas forem mortas.\\n\\n105\\n00:07:00,441 --> 00:07:03,907\\nSeremos incansáveis na defesa de nossos cidadãos\\n\\n106\\n00:07:03,907 --> 00:07:06,245\\ne de nossos amigos e aliados.\\n\\n107\\n00:07:06,245 --> 00:07:09,352\\nSeremos fiéis que fazem de nós quem somos\\n\\n108\\n00:07:09,967 --> 00:07:16,273\\ne, em noites como esta, podemos dizer a estas famílias que perderam seus entes queridos para o terror da al-Qaeda:\\n\\n109\\n00:07:16,273 --> 00:07:19,114\\nA Justiça foi feita.\\n\\n110\\n00:07:20,252 --> 00:07:25,523\\nHoje à noite, damos graças aos inúmeros agentes da inteligência e profissionais antiterrorismo que trabalharam incansavelmente\\n\\n111\\n00:07:25,523 --> 00:07:27,894\\npara alcançar este resultado.\\n\\n112\\n00:07:28,063 --> 00:07:32,617\\nO povo americano não vêem seus trabalhos, nem sabem seus nomes,\\n\\n113\\n00:07:32,986 --> 00:07:39,295\\nmas esta noite, eles sentem a satisfação de seus trabalhos e o resultado de suas buscas por justiça.\\n\\n114\\n00:07:39,772 --> 00:07:42,952\\nNós agradecemos aos homens que realizaram esta operação\\n\\n115\\n00:07:42,952 --> 00:07:47,92\\nporque eles exemplificam o profissionalismo, o patriotismo e a coragem sem igual\\n\\n116\\n00:07:47,92 --> 00:07:50,417\\nque caracteriza aqueles que servem a nosso país.\\n\\n117\\n00:07:50,417 --> 00:07:57,12\\nE eles são parte de uma geração que tem suportado o peso da carga desde aquele dia de Setembro.\\n\\n118\\n00:07:57,12 --> 00:08:01,448\\nFinalmente, gostaria de dizer às famílias que perderam os seus entes queridos no 11 de Setembro,\\n\\n119\\n00:08:01,833 --> 00:08:04,416\\nque nunca esqueceremos suas perdas,\\n\\n120\\n00:08:04,723 --> 00:08:08,47\\nou hesitaremos em nossa determinação de fazer o que for preciso\\n\\n121\\n00:08:08,47 --> 00:08:11,342\\npara evitar outro ataque em nosso solo.\\n\\n122\\n00:08:11,727 --> 00:08:17,41\\nE, nesta noite, vamos pensar novamente no sentido de unidade que prevaleceu em 11 de Setembro.\\n\\n123\\n00:08:17,81 --> 00:08:21,13\\nEu sei que, às vezes, têm sido cansativo.\\n\\n124\\n00:08:21,884 --> 00:08:25,896\\nNo entanto, a conquista de hoje é uma prova da grandeza de nosso país\\n\\n125\\n00:08:26,203 --> 00:08:28,932\\ne da determinação do povo americano.\\n\\n126\\n00:08:29,916 --> 00:08:33,387\\nA tarefa de proteger o nosso país não está concluída, mas\\n\\n127\\n00:08:33,387 --> 00:08:39,049\\nhoje lembramos mais uma vez que a América pode fazer o que decidir.\\n\\n128\\n00:08:39,941 --> 00:08:41,758\\nEsta é a história da nossa História.\\n\\n129\\n00:08:42,512 --> 00:08:45,185\\nSe é a busca da prosperidade para o nosso povo\\n\\n130\\n00:08:45,569 --> 00:08:48,443\\nou a luta pela igualdade para todos os nossos cidadãos,\\n\\n131\\n00:08:49,043 --> 00:08:52,389\\na nossa determinação para defender os nossos valores em outros países\\n\\n132\\n00:08:52,774 --> 00:08:56,231\\ne os nossos sacrifícios para tornar o mundo um lugar mais seguro.\\n\\n133\\n00:08:57,492 --> 00:09:01,964\\nVamos lembrar que podemos fazer estas coisas não apenas por causa da riqueza ou do poder,\\n\\n134\\n00:09:02,21 --> 00:09:04,787\\nmas por causa de quem somos.\\n\\n135\\n00:09:04,987 --> 00:09:06,24\\nUma nação,\\n\\n136\\n00:09:06,378 --> 00:09:07,382\\nabaixo de Deus,\\n\\n137\\n00:09:07,782 --> 00:09:08,849\\nindivisível,\\n\\n138\\n00:09:09,018 --> 00:09:09,988\\ncom liberdade\\n\\n139\\n00:09:09,988 --> 00:09:11,91\\ne justiça para todos.\\n\\n140\\n00:09:12,649 --> 00:09:13,945\\nObrigado.\\n\\n141\\n00:09:13,945 --> 00:09:15,193\\nQue Deus vos abençoe.\\n\\n142\\n00:09:15,193 --> 00:09:17,008\\nE que Deus abençoe os Estados Unidos da América.',\n", + " 'bytes': 13433,\n", + " 'sha1': 'bfvrss43ew0rnfl23m6n3zsrn8bpuhk',\n", + " 'parent_id': 71191773,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 60093502,\n", + " 'timestamp': '2011-09-26T22:18:46Z',\n", + " 'user': {'id': 246324, 'text': 'Toliño'},\n", + " 'page': {'id': 16531234,\n", + " 'title': 'Great Feeling.ogv.gl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'pequenos cambios e correccións/minor changes and corrections',\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nEhhh... non, eu non teño superpoderes.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nSeguro. Non.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nTi seguro que podes facelo tamén.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nPremín no botón\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\ne gardei o texto.\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nVaites!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nFoi... emocionante.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nAcabas de mudar a Wikipedia,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nsimplemente engadiches a túa propia contribución á Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nLin un artigo en \\'\\'The Guardian\\'\\'\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nsobre esta enciclopedia en liña\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nna que todo o mundo pode contribuír\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\ne dixen: \"Vaites!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Ó mellor eu tamén podo contribuír!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nEditei a primeira vez\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\ne penso que me fixen adicto.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nNon me pagan nada\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nsó o fago para ter, xa sabes,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nalgo que facer no meu tempo libre, iso é todo.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nPodes comezar a facelo por unha idea,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nporque cres nela,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nmais acabas facendo amigos,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nacabas coñecendo un noivo,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nacabas tendo discusións marabillosas,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nacabas tendo novas ideas,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nacabas tendo novos libros que escribir...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nNon estás escribindo o artigo ti só.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nEscribes unha peza\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\ne alguén máis di:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Ei, eu teño máis!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nE xuntos podedes crear\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nartigos moi longos,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nque non poderías facer ti só.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nEntón logras construílo.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nE pensas: \"Ben, o que fixen estivo ben\".\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nIso é marabilloso.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nÉ xenial\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nporque editar é unha gran sensación.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nCada vez que o fagas.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nTeño que dicir que,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\ncando lin acerca da Wikipedia,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\ndecidín:\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Este podería ser o lugar onde encaixo\".\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nE así foi.',\n", + " 'bytes': 2711,\n", + " 'sha1': 'cdpx3ibjx7yhafyy9q7cch76x3ju290',\n", + " 'parent_id': 59556172,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 59603493,\n", + " 'timestamp': '2011-09-18T09:05:26Z',\n", + " 'user': {'id': 1654789, 'text': 'Celiaak'},\n", + " 'page': {'id': 16545753,\n", + " 'title': 'Frankenstein (1910) - Full Movie.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:09:00 --> 00:10:00 Uma adaptação livre da célebre história de Madame Shelley pela produções Edison 2 00:15:00 --> 00:16:00 Frankenstein vai para a univ...'\",\n", + " 'text': '1\\n00:09:00 --> 00:10:00\\nUma adaptação livre da célebre história de Madame Shelley pela produções Edison\\n\\n2\\n00:15:00 --> 00:16:00\\nFrankenstein vai para a universidade\\n\\n3\\n00:32:00 --> 00:33:00\\nDois anos mais tarde, Frankenstein descobre o segredo da vida',\n", + " 'bytes': 258,\n", + " 'sha1': 'q2wbkki5olpwoz4z6ho4rewigxwwry9',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 59850737,\n", + " 'timestamp': '2011-09-22T14:56:16Z',\n", + " 'user': {'id': 5434, 'text': 'B1mbo'},\n", + " 'page': {'id': 16587399,\n", + " 'title': 'Wikipedia Takes Montreal 2011 (WTMTL).ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:09,009 --> 00:00:12,135\\nTodo esto es básicamente con el fin de ilustrar Wikipedia,\\n\\n2\\n00:00:12,135 --> 00:00:15,12\\ninsertando fotografías en los artículos sobre Montreal\\n\\n3\\n00:00:15,12 --> 00:00:18,479\\nque no están bien ilustrados o no están ilustrados.\\n\\n4\\n00:00:19,54 --> 00:00:23,79\\nHan existido muchos otros eventos similares en el mundo,\\n\\n5\\n00:00:23,79 --> 00:00:27,435\\nsomos el 33.º evento y, honestamente, somos el más grande\\n\\n6\\n00:00:27,435 --> 00:00:30,631\\n¡Incluso con el huracán, somos el más grande!\\n\\n7\\n00:00:30,631 --> 00:00:32,437\\nEn total, participaron 110 personas.\\n\\n8\\n00:00:34,114 --> 00:00:36,747\\nEsto debería ser algo divertido, algo…\\n\\n9\\n00:00:36,747 --> 00:00:38,605\\nQue todos nos envidien…\\n\\n10\\n00:00:38,605 --> 00:00:40,211\\n… algo fuera de lo común\\n\\n11\\n00:00:49,641 --> 00:00:52,139\\nEn la zona este de Montreal hay\\n\\n12\\n00:00:52,139 --> 00:00:55,053\\nmuchas fotografías de alto valor para tomar…\\n\\n13\\n00:00:55,053 --> 00:00:57,526\\ny como tenemos un auto, no vamos a ir caminando,\\n\\n14\\n00:00:57,526 --> 00:01:00,205\\nasí podemos ir a estos lugares más rápido\\n\\n15\\n00:01:00,205 --> 00:01:03,221\\ny tomar esas fotografías valiosas.\\n\\n16\\n00:01:04,329 --> 00:01:07,31\\nComo hay pocas personas que trabajen activamente en Wikipedia,\\n\\n17\\n00:01:07,31 --> 00:01:10,957\\nen la Wikipedia en francés aquí en Quebec, estamos haciendo este tipo\\n\\n18\\n00:01:10,957 --> 00:01:14,492\\nde eventos, para poder difundir Wikipedia\\n\\n19\\n00:01:14,492 --> 00:01:18,565\\nentre las personas.\\n\\n20\\n00:01:19,165 --> 00:01:20,999\\n¡Lo que debemos hacer por\\n\\n21\\n00:01:20,999 --> 00:01:22,444\\nun punto!\\n\\n22\\n00:01:23,137 --> 00:01:26,194\\nIncluso, ¡ya hay seis fotos de esto!\\n\\n23\\n00:01:27,071 --> 00:01:30,489\\nEn mi caso, yo tengo una fotografía del Chateau Frontenac\\n\\n24\\n00:01:30,489 --> 00:01:33,411\\nen Quebec y que es la imagen principal\\n\\n25\\n00:01:33,411 --> 00:01:35,108\\nen el artículo del Chateau Frontenac.\\n\\n26\\n00:01:35,108 --> 00:01:36,503\\nSupongo que eso es bastante bueno…\\n\\n27\\n00:01:37,272 --> 00:01:40,763\\nA mi me gusta ser un fotógrafo aficionado,\\n\\n28\\n00:01:40,763 --> 00:01:44,772\\nasi que realmente no me interesa mucho el dinero o la…\\n\\n29\\n00:01:44,772 --> 00:01:49,829\\nMe basta con que haya gente que seleccione mi foto para presentar algo.\\n\\n30\\n00:01:52,721 --> 00:01:55,414\\nLa provincia de Quebec, y Canadá en general,\\n\\n31\\n00:01:55,414 --> 00:01:57,991\\nes un lugar extremadamente bonito,\\n\\n32\\n00:01:57,991 --> 00:02:01,118\\ny cuando sales a tomar algunas fotografías,\\n\\n33\\n00:02:01,118 --> 00:02:04,19\\ndas algunas vueltas y mirar fijamente… \\n\\n34\\n00:02:04,19 --> 00:02:07,579\\ny prestar atención.\\n\\n35\\n00:02:09,056 --> 00:02:11,16\\nEs la primera vez que organizamos esto en Canadá\\n\\n36\\n00:02:11,16 --> 00:02:12,845\\npero no la última; haremos una versión\\n\\n37\\n00:02:12,845 --> 00:02:15,157\\nen Toronto, en Ottawa, en Quebec… \\n\\n38\\n00:02:15,257 --> 00:02:19,039\\n… tenemos computadoras y en los próximos días… \\n\\n39\\n00:02:19,039 --> 00:02:22,476\\nvamos a subir las imágenes a Wikipedia… \\n\\n40\\n00:02:22,476 --> 00:02:24,729\\nporque ahora estamos en el medio de un huracán.\\n\\n41\\n00:02:26,329 --> 00:02:30,663\\nEn realidad nunca lloré, pero estuve a punto de hacerlo…\\n\\n42\\n00:02:30,663 --> 00:02:33,678\\n¿cuál era la probabilidad de que un huracán\\n\\n43\\n00:02:33,678 --> 00:02:36,003\\nazotara Montreal justo este día?\\n\\n44\\n00:02:36,003 --> 00:02:37,672\\nEstuviera 24 horas en la ciudad.\\n\\n45\\n00:02:37,672 --> 00:02:39,758\\nEsto ocurre una vez cada siglo.\\n\\n46\\n00:02:39,758 --> 00:02:42,153\\nAyer estaba soleado, mañana estará soleado,\\n\\n47\\n00:02:42,153 --> 00:02:43,841\\npero hoy no… y los participantes fueron valientes\\n\\n48\\n00:02:43,841 --> 00:02:46,077\\nfue simplemente increíble.',\n", + " 'bytes': 3705,\n", + " 'sha1': 't9nvzr9x8ruq64vya7um5mtixlbnpcv',\n", + " 'parent_id': 59732782,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 60149112,\n", + " 'timestamp': '2011-09-27T20:13:11Z',\n", + " 'user': {'id': 118880, 'text': 'Wojciech Pędzich'},\n", + " 'page': {'id': 16722071,\n", + " 'title': 'Znani składają życzenia dla polskiej Wikipedii.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:05,523 --> 00:00:07,923\\nMoi studenci już nie korzystają ze słowników papierowych,\\n\\n2\\n00:00:07,923 --> 00:00:12,759\\ntylko z elektronicznych; to samo jest z encyklopedią.\\n\\n3\\n00:00:12,659 --> 00:00:15,701\\nJa jeszcze posługuję się słownikami papierowymi,\\n\\n4\\n00:00:15,701 --> 00:00:19,299\\nale coraz częściej, jeśli chodzi o wiadomości encyklopedyczne,\\n\\n5\\n00:00:19,299 --> 00:00:23,017\\nsięgam do Wikipedii, która właśnie kończy 10 lat.\\n\\n6\\n00:00:23,017 --> 00:00:26,064\\nBardzo serdecznie życzę wszystkiego najlepszego.\\n\\n7\\n00:00:26,064 --> 00:00:31,393\\nTo, co mi się podoba także w Wikipedii, to pewien rodzaj interaktywności,\\n\\n8\\n00:00:31,393 --> 00:00:37,435\\nktóra sprawia, że my możemy też w jakiś sposób wpływać na to, co tam jest;\\n\\n9\\n00:00:37,435 --> 00:00:40,077\\na to, że Wikipedia polska jest na czwartym miejscu\\n\\n10\\n00:00:40,077 --> 00:00:45,669\\npod względem liczby haseł, to sprawia, że jestem wręcz dumny z tego.\\n\\n11\\n00:00:45,669 --> 00:00:48,045\\nWszystkiego najlepszego!\\n\\n12\\n00:00:48,045 --> 00:00:51,694\\nChciałem złożyć gorące życzenia Wikipedii\\n\\n13\\n00:00:51,694 --> 00:00:54,581\\nco znaczy, że składam te życzenia wikipedystom,\\n\\n14\\n00:00:54,581 --> 00:00:58,734\\nco stawia mnie trochę w głupiej sytuacji, dlatego że składam je\\n\\n15\\n00:00:58,734 --> 00:01:06,100\\nludziom, których nie znam, bardzo wielu ludziom.\\n\\n16\\n00:01:06,100 --> 00:01:12,763\\nJeszce głupsze jest to, że składam je również sobie, bo ze dwa razy w życiu miałem okazję\\n\\n17\\n00:01:12,763 --> 00:01:21,061\\ngrzebania w jakimś haśle w Wikipedii. Składam je dlatego, że bardzo mi zależy, żeby ta encyklopedia rosła, żeby była coraz lepsza,\\n\\n18\\n00:01:21,061 --> 00:01:29,866\\ndlatego że będę miał w domu więcej miejsca na płyty, będę mógł trochę przesunąć ciężkie encyklopedie,\\n\\n19\\n00:01:29,866 --> 00:01:32,448\\nprzede wszystkim dlatego, że cały czas z niej korzystam.\\n\\n20\\n00:01:32,448 --> 00:01:37,034\\nTo są życzenia w Creative Commons:\\n\\n21\\n00:01:37,034 --> 00:01:47,152\\nmożna je remiksować, korzystać z nich, publikować. Wszystkiego dobrego.\\n\\n22\\n00:01:47,152 --> 00:01:51,032\\nZ okazji 10-lecia polskiej Wikipedii chciałam złożyć Wikipedii i wszystkim wikipedystom\\n\\n23\\n00:01:51,032 --> 00:01:57,593\\nnajserdeczniejsze życzenia. Czego można sobie życzyć? Tego, żeby za dziesięć lat prawdziwe było\\n\\n24\\n00:01:57,593 --> 00:02:02,017\\nsformułowanie, że czego nie ma w Wikipedii, to nie istnieje.\\n\\n25\\n00:02:02,017 --> 00:02:04,284\\nMarek Niedźwiecki – jestem w Wikipedii.\\n\\n26\\n00:02:04,284 --> 00:02:07,017\\nChciałem powiedzieć, że właściwie bez Wikipedii to ja już teraz nie istnieję.\\n\\n27\\n00:02:07,017 --> 00:02:10,612\\nZałatwiliście mi to wszystko, co musiałem sobie sam załatwiać,\\n\\n28\\n00:02:10,612 --> 00:02:16,023\\nszukając informacji na temat muzyków, płyt, koncertów w różnych innych miejscach,\\n\\n29\\n00:02:16,023 --> 00:02:17,897\\na teraz to wszystko mam w jednym miejscu.\\n\\n30\\n00:02:17,897 --> 00:02:21,328\\nNa dodatek jestem pod hasłem „Marek Niedźwiecki“ i nie ma tam żadnych błędów.\\n\\n31\\n00:02:21,328 --> 00:02:26,067\\nPrzyznam, że korzystam z Wikipedii kilka do kilkunastu razy dziennie\\n\\n32\\n00:02:26,067 --> 00:02:28,775\\ni jestem z tego powodu szczęśliwy.\\n\\n33\\n00:02:28,775 --> 00:02:33,309\\nŻyczę Wam co najmniej jeszcze 90 lat. Mówił Marek Niedźwiecki.\\n\\n34\\n00:02:33,309 --> 00:02:35,687\\nWikipedia ma dopiero 10 lat,\\n\\n35\\n00:02:35,687 --> 00:02:37,383\\nalbo już 10 lat;\\n\\n36\\n00:02:37,383 --> 00:02:42,059\\nnie wiem, jak lepiej powiedzieć, bo człowiek sobie już nie wyobraża świata\\n\\n37\\n00:02:42,059 --> 00:02:44,625\\nbez Wikipedii.\\n\\n38\\n00:02:44,625 --> 00:02:48,537\\nWłaściwie Wikipedia stała się pierwszym źródłem informacji\\n\\n39\\n00:02:48,537 --> 00:02:54,006\\nna jakiś temat, zachętą do tego, żeby dalej informacji poszukiwać;\\n\\n40\\n00:02:54,006 --> 00:02:59,433\\nto jest niesamowite, że taki ruch światowy wyszedł, udał się\\n\\n41\\n00:02:59,433 --> 00:03:03,991\\nże tyle osób pisze, że tyle osób czyta. To jest\\n\\n42\\n00:03:03,991 --> 00:03:07,901\\nwielka pomoc i wielka właściwie radość,\\n\\n43\\n00:03:07,901 --> 00:03:11,069\\nze taka Wikipedia powstała, więc\\n\\n44\\n00:03:11,069 --> 00:03:15,498\\nautorom Wikipedii i wszystkim, którzy korzystają z Wikipedii\\n\\n45\\n00:03:15,498 --> 00:03:19,658\\nwszystkim, którzy tworzą Wikipedię najlepsze życzenia\\n\\n46\\n00:03:19,658 --> 00:03:25,009\\nz okazji 10-lecia i sto lat!\\n\\n47\\n00:03:25,009 --> 00:03:27,079\\nMuszę się przyznać do jednej rzeczy:\\n\\n48\\n00:03:27,079 --> 00:03:29,412\\ntak, jak codziennie jem śniadanie, tak codziennie\\n\\n49\\n00:03:29,412 --> 00:03:33,227\\nzaglądam do Wikipedii.\\n\\n50\\n00:03:33,227 --> 00:03:38,405\\nJako redaktor, kiedy po prostu czytam cudzy tekst\\n\\n51\\n00:03:38,405 --> 00:03:40,949\\nbardzo często zdarza mi się sprawdzać, co\\n\\n52\\n00:03:40,949 --> 00:03:44,126\\nna dany temat mówi Wikipedia. Co napisał autor, a co na to Wikipedia.\\n\\n53\\n00:03:44,126 --> 00:03:51,058\\nPrzyznam, że to jest w tej chwili jedno z podstawowych moich źródeł informacji,\\n\\n54\\n00:03:51,058 --> 00:03:56,457\\nale oczywiście sprawdzam też, dlatego, że zdarzają się pomyłki;\\n\\n55\\n00:03:56,457 --> 00:04:01,336\\nzdarza mi się, że potwierdzam coś w takiej prawdziwej, drukowanej encyklopedii,\\n\\n56\\n00:04:01,336 --> 00:04:05,166\\nnajczęściej tej encyklopedii PWN-u, ale zwierzę się,\\n\\n57\\n00:04:05,166 --> 00:04:13,893\\nże moim zdaniem encyklopedia PWN jest tysiąc razy mniej przydatna\\n\\n58\\n00:04:13,893 --> 00:04:14,884\\nniż Wikipedia.\\n\\n59\\n00:04:14,884 --> 00:04:18,514\\nW Wikipedii mam linki, mam rożne\\n\\n60\\n00:04:18,514 --> 00:04:20,661\\nfantastyczne źródła, do których mogę dojść,\\n\\n61\\n00:04:20,661 --> 00:04:23,943\\ndzięki Wikipedii tak, jak w ogóle dzięki Internetowi\\n\\n62\\n00:04:23,943 --> 00:04:26,347\\nmogę podróżować w jakiś temat.\\n\\n63\\n00:04:26,347 --> 00:04:30,392\\nNiestety korzystając z encyklopedii papierowych\\n\\n64\\n00:04:30,392 --> 00:04:33,085\\nno raczej nie napodróżuję się za długo.\\n\\n65\\n00:04:33,085 --> 00:04:36,246\\nPrzyznaję, jestem wielkim fanem Wikipedii\\n\\n66\\n00:04:36,246 --> 00:04:38,968\\ni moich obu książek: „Gotland” i „Zrób sobie raj” nie byłoby, gdybym na początku, w pierwszej fazie istnienia książek\\n\\n67\\n00:04:38,968 --> 00:04:52,145\\nnie... wiki chciałem już powiedzieć – nie weryfikował pewnych rzeczy w Wikipedii.\\n\\n68\\n00:04:52,145 --> 00:04:55,578\\nMam takie życzenia i dla Wikipedii i dla siebie;\\n\\n69\\n00:04:55,578 --> 00:05:02,742\\notóż życzę sobie, żebym za 50 lat jeszcze sprawdzał różne rzeczy w Wikipedii.\\n\\n70\\n00:05:02,742 --> 00:05:08,498\\nTo oznacza, że ja będę żył 50 lat i Wikipedia będzie jeszcze żyła 50 lat.\\n\\n71\\n00:05:08,498 --> 00:05:11,545\\nZ okazji 10. rocznicy powstania Wikipedii\\n\\n72\\n00:05:11,545 --> 00:05:15,303\\nskładam najlepsze życzenia dla wszystkich, którzy ją tworzą.\\n\\n73\\n00:05:15,303 --> 00:05:18,788\\nAby tam znajdowały się same rzetelne i dobre informacje\\n\\n74\\n00:05:18,788 --> 00:05:23,106\\na ci, którzy z niej korzystają, żeby byli zawsze zadowoleni. Serdecznie pozdrawiam. Ewa Wachowicz.',\n", + " 'bytes': 7082,\n", + " 'sha1': '2r9d1kzgv7bgputzemtun6tp2uj4dfa',\n", + " 'parent_id': 60118500,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 300916896,\n", + " 'timestamp': '2018-05-13T08:37:34Z',\n", + " 'user': {'id': 79973, 'text': 'Elisardojm'},\n", + " 'page': {'id': 17079455,\n", + " 'title': 'Krazy Kat Bugologist 1916 silent.ogv.gl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'little fix',\n", + " 'text': '1\\n00:00:22,000 --> 00:00:27,000\\nEu ensinareiche Bicholoxía, Ignatzes\\n\\n2 \\n00:00:40,000 --> 00:00:43,000 \\nAlgo me di que...\\n\\n3 \\n00:00:58,000 --> 00:01:04,000 \\nMira, Ignatz, unha abella durmida\\n\\n4\\n00:01:04,000 --> 00:01:08,000 \\nUnha abella morta diría eu\\n\\n5\\n00:01:10,000 --> 00:01:14,000 \\nDebe ser que ten frío\\n\\n6\\n00:01:22,000 --> 00:01:25,000 \\nPobre abella\\n\\n7\\n00:01:25,000 --> 00:01:31,000 \\nAh, ela é feliz, está no ceo das abellas\\n\\n8\\n00:01:51,000 --> 00:01:56,000 \\nIgnatz, ben, estaba trabucado\\n\\n9\\n00:01:58,000 --> 00:02:01,000 \\nSi estaba\\n\\n10\\n00:02:45,000 --> 00:02:49,000 \\nDéixamo a min',\n", + " 'bytes': 592,\n", + " 'sha1': '17y77tngpx9mlxiitcdza7p9bg79jjo',\n", + " 'parent_id': 300915873,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61957855,\n", + " 'timestamp': '2011-11-02T20:17:32Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217040,\n", + " 'title': 'Section 1.1 Small Business Introduction (An Introduction To DARPA) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Uploading english subtitles.',\n", + " 'text': '1\\n00:00:08,000 --> 00:00:13,000\\nWelcome to “Doing Business with DARPA – A Small Business Primer”.\\n\\n2\\n00:00:13,500 --> 00:00:18,000\\nWe will be showing you opportunities available for small businesses like yours to obtain funding\\n\\n3\\n00:00:18,500 --> 00:00:24,000\\nand other kinds of support for innovative research and development projects in areas of national need,\\n\\n4\\n00:00:24,500 --> 00:00:31,000\\nand what assistance DARPA offers to help you transition your technologies and solutions to the military services,\\n\\n5\\n00:00:31,500 --> 00:00:34,500\\nother federal agencies, and the commercial marketplace.\\n\\n6\\n00:00:35,000 --> 00:00:44,000\\nSmall businesses have always participated and have been big players in the expansion of ideas that have always kept us on the top.\\n\\n7\\n00:00:44,500 --> 00:00:52,000\\nAnd they’re really the ones that come up with the ideas that save lives and advance our technological superiority in this global world.\\n\\n8\\n00:00:54,000 --> 00:01:03,000 \\nDARPA, the Defense Advanced Research Projects Agency, is the central research and development organization for the U.S. Department of Defense.\\n\\n9\\n00:01:03,500 --> 00:01:11,000\\nThe agency’s mission is to maintain the superiority of the U.S. military and prevent technological surprise from harming our national security.\\n\\n10\\n00:01:12,000 --> 00:01:21,000\\nDARPA is the premier DoD research and development organization. So, even though we don’t have any labs or any facilities,\\n\\n11\\n00:01:21,500 --> 00:01:29,000 \\nwe are the central research hub and then we transition and transfer technologies to the other military components.\\n\\n12\\n00:01:29,500 --> 00:01:36,000 \\nDARPA funds researchers in industry, universities, government laboratories, and elsewhere, to conduct high-risk,\\n\\n13\\n00:01:36,500 --> 00:01:41,000 \\nhigh-reward research and development projects, with both near and far term applications.\\n\\n14\\n00:01:41,500 --> 00:01:52,000\\nDARPA emphasizes innovation and radical disruptive technology. So we use a term called DARPA HARD which is…it could be anything from\\n\\n15\\n00:01:52,500 --> 00:02:04,000 \\nNo one’s ever done it before or everyone has done it and they failed or there is a technology that currently exists but we need to push the state-of-the-art.\\n\\n16\\n00:02:04,500 --> 00:02:11,000\\nWe need to push that envelope and advance that technology even further so that our warfighters have a technological advantage on the battlefield.\\n\\n17\\n00:02:11,500 --> 00:02:17,500\\nDARPA’s pioneering work has lead to some of the most technologically advanced systems and applications of the century.\\n\\n18\\n00:02:18,000 --> 00:02:24,000\\nBut there are always more challenges, and your idea may be the next revolutionary solution.\\n\\n19\\n00:02:24,500 --> 00:02:32,500 \\nThere’s just no other place in the world where you can come to an organization and pitch your idea and somebody can come back and say,“This is worth doing”.\\n\\n20\\n00:02:33,000 --> 00:02:42,000 \\nAnd the amount of effort that’s placed in it is pretty outstanding. We are known for taking a very small idea and going miles and miles with it.\\n\\n21\\n00:02:43,500 --> 00:02:49,500\\nWhen you consider some of the smaller programs that made it into the high end areas that we’re talking about,\\n\\n22\\n00:02:50,000 --> 00:02:59,000\\nit’s fascinating to see and outstanding to think about because no other place in the world is willing to take that risk.',\n", + " 'bytes': 3384,\n", + " 'sha1': 'mxzoz5jem9u46srlal9o8fkfnoyssfe',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61958508,\n", + " 'timestamp': '2011-11-02T20:34:13Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217207,\n", + " 'title': 'Section 1.2 Finding Your DARPA Program Manager (An Introduction To DARPA) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Uploading english subtitles.',\n", + " 'text': '1\\n00:00:07,000 --> 00:00:13,000 \\nThere are technical offices at DARPA, each with a team of Program Managers of diversified backgrounds\\n\\n2\\n00:00:13,500 --> 00:00:18,000 \\nthat include the federal government, the military services, industry and academia.\\n\\n3\\n00:00:18,500 --> 00:00:26,000 \\nDARPA is a relatively small agency in the Department of Defense or DoD, with less than 200 program managers.\\n\\n4\\n00:00:26,500 --> 00:00:30,000\\nThe agency is flexible and enjoys substantial autonomy and freedom,\\n\\n5\\n00:00:30,500 --> 00:00:37,000 \\nwhich gives Program Managers the latitude they need to work with small businesses on high-risk, high-payoff projects.\\n\\n6\\n00:00:39,000 --> 00:00:44,000 \\nThe key to working successfully with DARPA is persistent communication with the Program Managers.\\n\\n7\\n00:00:44,500 --> 00:00:50,000\\nProvide feedback regarding whether an idea is suited to DARPA.\\n\\n8\\n00:00:50,500 --> 00:00:57,000\\nServe as a bridge to the military departments, interfacing with their counterparts on how to best integrate new technologies.\\n\\n9\\n00:00:57,500 --> 00:01:03,000 \\nHelp to shape ideas to synchronize with an ongoing or new DARPA program.\\n\\n10\\n00:01:03,500 --> 00:01:11,000 \\nThe program manager at DARPA is the heart of DARPA. They are the ones with the ideas. They are the ones that are able to direct,\\n\\n11\\n00:01:11,500 --> 00:01:17,000 \\nmanage and control the funds necessary to ensure that the efforts get done.\\n\\n12\\n00:01:17,500 --> 00:01:22,000 \\nThey are the people that can make the difference for you. They can identify the places to go,\\n\\n13\\n00:01:22,500 --> 00:01:30,000 \\nthe commercial opportunities and especially the Department of Defense opportunities. Where we need most of the help.\\n\\n14\\n00:01:30,500 --> 00:01:36,000 \\nWhat areas of transition. What military department requires the technology that you’re working on.\\n\\n15\\n00:01:36,500 --> 00:01:44,000 \\nIn some cases, a Program Manager may substantially alter what he or she plans to do based on a new idea presented by a small business.\\n\\n16\\n00:01:36,500 --> 00:01:49,000 \\nYour first step to connecting with a Program Manager is to identify the DARPA office\\n\\n17\\n00:01:49,500 --> 00:01:53,000 \\nthat is funding projects in areas where your ideas may be a good fit.\\n\\n18\\n00:01:53,000 --> 00:01:57,000 \\nThe DARPA website features a personnel directory for each technical office,\\n\\n19\\n00:01:58,500 --> 00:02:01,000 \\nalong with a listing of strategic thrusts, active projects and solicitations.\\n\\n20\\n00:02:02,000 --> 00:02:08,000 \\nIn addition, you can learn more about Program Managers and programs through DARPA pod casts and news stories.',\n", + " 'bytes': 2597,\n", + " 'sha1': 'rx37alyx4q6ibxk7s1jumk3j49a1c2g',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61960423,\n", + " 'timestamp': '2011-11-02T21:17:54Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217341,\n", + " 'title': 'Section 2.1 Introduction To Small Business & SBIR STTR (How Small Businesses Work With DARPA) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:Section 2.1 Introduction To Small Business & SBIR/STTR (How Small Businesses Work With DARPA) (DARPA).ogv.en.srt]] to [[TimedText:Section 2.1 Introduction To Small Business & SBIR STTR (How Small Businesses Work With DARPA) (DARPA).og...',\n", + " 'text': '1\\n00:00:07,000 --> 00:00:12,000 \\nThroughout the U.S., small businesses like yours are working to solve DARPA hard problems.\\n\\n2\\n00:00:12,500 --> 00:00:22,000 \\nBy the nature of their size, small businesses bring flexibility and an entrepreneurial spirit to developing the solutions that benefit the military services.\\n\\n3\\n00:00:22,500 --> 00:00:27,000 \\nThere are several ways for small businesses to do business with DARPA.\\n\\n4\\n00:00:27,500 --> 00:00:38,000 \\nFirst, each technical office solicits business mostly through Broad Agency Announcements or BAAs), and some through Requests for Proposals or RFPs).\\n\\n5\\n00:00:38,500 --> 00:00:42,000 \\nSince creating proposals involves a great deal of time and effort,\\n\\n6\\n00:00:42,500 --> 00:00:51,000 \\nmany DARPA solicitations first encourage the submission of a white paper or abstract to determine whether an idea is likely to be encouraged.\\n\\n7\\n00:00:51,500 --> 00:00:58,000 \\nDARPA also holds “Industry Days” for most solicitations, where companies can learn more about the solicitation process.\\n\\n8\\n00:00:58,500 --> 00:01:07,000 \\nVisit the Funding Opportunities Section on the DARPA web site for additional information to increase your knowledge base on “Doing Business with DARPA”\\n\\n9\\n00:01:09,000 --> 00:01:19,000 \\nIn addition to responding to BAAs and RFPs, small businesses have the opportunity to participate in DARPA research through the SBIR and STTR Programs.\\n\\n10\\n00:01:20,000 --> 00:01:30,000 \\nSBIR, or Small Business Innovation Research Program, was established to provide high-tech small businesses access to Federal research and development funding.\\n\\n11\\n00:01:30,500 --> 00:01:42,000 \\nSTTR, or Small Business Technology Transfer Program, funds cooperative research and development projects between small businesses and universities or other research institutions.\\n\\n12\\n00:01:42,500 --> 00:01:49,000 \\nThe goals of the SBIR and STTR Programs are to move research-based innovations to the marketplace,\\n\\n13\\n00:01:49,500 --> 00:01:55,000 \\nto foster high-technology economic development, and to address the technological needs of the Federal Government.\\n\\n14\\n00:01:55,500 --> 00:02:07,000 \\nTo participate in the SBIR or STTR programs, a firm must: Be a for-profit organization with 500 or fewer employees, including all affiliates.\\n\\n15\\n00:02:07,500 --> 00:02:14,000 \\nTo participate in the SBIR or STTR programs, a firm must: Be operated in the U.S. and at least 51 percent-owned by a U.S. citizen or permanent resident alien.\\n\\n16\\n00:02:14,500 --> 00:02:20,000 \\nTo participate in the SBIR or STTR programs, a firm must: Perform the Phase I and Phase II work in the United States, to include the Commonwealth of Puerto Rico,\\n\\n17\\n00:02:20,500 --> 00:02:27,000 \\nthe Commonwealth of the Northern Mariana Islands, the Trust Territory of the Pacific Islands, and the District of Columbia…and…\\n\\n18\\n00:02:27,500 --> 00:02:36,000 \\nHave the principal investigator spend more than one-half of the time employed by the proposing firm and/or by the research entity for STTR.\\n\\n19\\n00:02:36,500 --> 00:02:44,000 \\nDARPA participates in up to three SBIR and one STTR solicitation issued by the DoD each year,\\n\\n20\\n00:02:44,500 --> 00:02:49,000 \\nproviding researchers an opportunity to respond to topics in specific thrust areas.\\n\\n21\\n00:02:49,500 --> 00:02:57,000 \\nSee the DARPA SBIR/STTR resources section for additional information on solicitations and proposals.',\n", + " 'bytes': 3398,\n", + " 'sha1': '6k4yyacqazzyq6smerdlgtyor4vsev2',\n", + " 'parent_id': 61958966,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61959052,\n", + " 'timestamp': '2011-11-02T20:45:28Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217358,\n", + " 'title': 'Section 2.2 Preparing A Winning Proposal (How Small Businesses Work With DARPA) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Uploading english subtitles.',\n", + " 'text': '1\\n00:00:08,000 --> 00:00:15,500 \\nOnce an SBIR or STTR solicitation is issued, the first step is to identify which topic you will respond to.\\n\\n2\\n00:00:15,500 --> 00:00:20,000 \\nThe next step is to prepare a winning proposal. It’s important to: Do your homework.\\n\\n3\\n00:00:21,000 --> 00:00:26,000 \\nLearn all you can about the current-state-of-the-art and what other companies or research organizations have accomplished in this area.\\n\\n4\\n00:00:28,000 --> 00:00:34,000 \\nThoroughly read and follow the solicitation instructions published on the DoD and DARPA SBIR/ STTR websites.\\n\\n5\\n00:00:35,000 --> 00:00:43,000 \\nThe most important thing a small company should focus on when submitting a proposal to DARPA is to read and follow the proposal instructions.\\n\\n6\\n00:00:44,000 --> 00:00:49,000 \\nIf they don’t follow the instructions, they run the risk of receiving a lower evaluation.\\n\\n7\\n00:00:50,000 --> 00:00:57,000 \\nAddress each of the areas outlined in the solicitation to include your technical objective and unique approach to advancing the state-of-the-art.\\n\\n8\\n00:00:59,000 --> 00:01:04,000 \\nDiscuss how you plan to address risk issues and overcome any identified technical barriers.\\n\\n9\\n00:01:15,000 --> 00:01:11,000 \\nAnd, outline your commercialization strategy to bring your idea to the warfighter and other markets.\\n\\n10\\n00:01:12,000 --> 00:01:18,000 \\nEven if they don’t have it thoroughly vetted out, they have to understand that this is an initial plan.\\n\\n11\\n00:01:19,000 --> 00:01:24,000 \\nTheir plan will have to be changed during the phase two effort,-more than likely and they have to be prepared for that.\\n\\n12\\n00:01:25,000 --> 00:01:29,000 \\nBut they also have to understand that they need to at least show they’ve thought about the paths,\\n\\n13\\n00:01:29,500 --> 00:01:33,000 \\nthe potential paths that their technology can take through their commercialization strategy.\\n\\n14\\n00:01:34,000 --> 00:01:40,000 \\nBe sure to also include information about your project team, past performance and successes, and related work.',\n", + " 'bytes': 2022,\n", + " 'sha1': 'k0vxajixsd7ja640ggjp5u9dhgj05l3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61959102,\n", + " 'timestamp': '2011-11-02T20:46:44Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217369,\n", + " 'title': 'Section 2.3 Key Phase 1 & 2 Overview (How Small Businesses Work With DARPA) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Uploading english subtitles.',\n", + " 'text': '1\\n00:00:07,500 --> 00:00:17,000 \\nThere are two main phases funded through the SBIR and STTR Programs: Phase 1 - Proof of Concept, and Phase 2 - Prototype Development.\\n\\n2\\n00:00:18,000 --> 00:00:24,000 \\nIf the Phase I project proves successful, DARPA may invite the company to submit a Phase II proposal.\\n\\n3\\n00:00:26,000 --> 00:00:32,000 \\nDuring the companies Phase 2 effort, they should be looking for ways to fund their Phase three’s.\\n\\n4\\n00:00:33,000 --> 00:00:37,000 \\nSome of the ways to do that would be to leverage other non-SBIR programs\\n\\n5\\n00:00:36,500 --> 00:00:45,000 \\nsuch as the Department of Homeland Security’s fourteen-O-one program, which is a program for first responder related technologies,\\n\\n6\\n00:00:46,000 --> 00:00:57,000 \\nthe Defense Acquisition Challenge Program, and the technology transition initiative programs, which are designed to mature technologies to the six, seven or above levels.\\n\\n7\\n00:00:58,000 --> 00:01:06,000 \\nDuring the Phase II contract, you should also: further refine your commercialization strategy, develop and pursue potential transition pathways,\\n\\n8\\n00:01:07,000 --> 00:01:13,000 \\nidentify and pursue relationships with collaborators and partners such as potential end-users and Prime contractors,\\n\\n9\\n00:01:14,000 --> 00:01:21,000 \\nand find opportunities for testing, benchmarking and experimentation, which is also an opportunity to showcase your technology.\\n\\n10\\n00:01:23,500 --> 00:01:33,000 \\nOnce you have received Phase III funding, it’s important to remember to update your DoD SBIR/STTR Company Commercialization Report.\\n\\n11\\n00:01:35,000 --> 00:01:40,000 \\nThis will ensure that we have current information on your company’s transition progress and commercialization successes.\\n\\n12\\n00:01:41,000 --> 00:01:44,000 \\nWe hope that this section has been both informative and inspiring.\\n\\n13\\n00:01:45,000 --> 00:01:53,000 \\nThe following sections provide additional information to further enhance your knowledge about working with DARPA and transitioning technology from the lab to the market.',\n", + " 'bytes': 2041,\n", + " 'sha1': '86ko2prcpaxg7ms517ilct3dbo4g70c',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61960168,\n", + " 'timestamp': '2011-11-02T21:13:04Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217388,\n", + " 'title': 'Section 3.1 From Research To Use (SBIR STTR Transition Overview) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': \"moved [[TimedText:Section 3.1 From Research To Use (SBIR/STTR Transition Overview) (DARPA).ogv.en.srt]] to [[TimedText:Section 3.1 From Research To Use (SBIR STTR Transition Overview) (DARPA).ogv.en.srt]]: Media can't have /\",\n", + " 'text': '1\\n00:00:08,000 --> 00:00:14,000 \\nDARPA’s research results in the development of products, enabling technologies, and components, which are \\n\\n2\\n00:00:14,000 --> 00:00:19,000 \\ndeployed into the military services, other federal agency’s operational environments, and the commercial markets.\\n\\n3\\n00:00:20,000 --> 00:00:24,000 \\nThis is typically done through licensing, or product and services business models. \\n\\n4\\n00:00:25,000 --> 00:00:32,000 \\nWhere a technology fits within a deployed system strongly influences the transition options that can be explored and then implemented.\\n\\n5\\n00:00:35,000 --> 00:00:46,000 \\nIn addition to maturing the technology, transition includes several components, such as addressing manufacturing, integration, certification, reliability, supportability,\\n\\n6\\n00:00:47,000 --> 00:00:52,000 \\ntraining, and other issues required to field the technology in an operational environment.\\n\\n7\\n00:00:52,500 --> 00:01:01,000 \\nThe business components of selling, scaling to meet market demand, and sustaining a profitable business must also be addressed for transition success.',\n", + " 'bytes': 1093,\n", + " 'sha1': 'j0duxvglrr5spa2tvnhhqj8u0bt1l5i',\n", + " 'parent_id': 61959143,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61960237,\n", + " 'timestamp': '2011-11-02T21:14:15Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217409,\n", + " 'title': 'Section 3.2 Addressing Transition Pathways & Risks (SBIR STTR Transition Overview) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': \"moved [[TimedText:Section 3.2 Addressing Transition Pathways & Risks (SBIR/STTR Transition Overview) (DARPA).ogv.en.srt]] to [[TimedText:Section 3.2 Addressing Transition Pathways & Risks (SBIR STTR Transition Overview) (DARPA).ogv.en.srt]]: Media can'...\",\n", + " 'text': '1\\n00:00:07,000 --> 00:00:18,000 \\nThere are three main transition pathways for SBIR or STTR-funded technologies: First, into one of the military services, through a DARPA program, through an Acquisition Program\\n\\n2\\n00:00:19,000 --> 00:00:25,000 \\nwithin one of the services -- or through the direct sale of a military product or service to a commercial supplier to the DoD.\\n\\n3\\n00:00:26,000 --> 00:00:37,000 \\nSecond, into other federal agencies such as the Department of Homeland Security for deployment into the first responder end-user community. And third, into the commercial marketplace.\\n\\n4\\n00:00:39,000 --> 00:00:45,000 \\nRegardless of the transition pathway, in most cases, companies will pursue transition within a competitive environment.\\n\\n5\\n00:00:46,000 --> 00:00:55,000 \\nAlong with competitors, the risk of introducing new technology into operational environments creates barriers and challenges that will need to be addressed and overcome.\\n\\n6\\n00:00:57,000 --> 00:01:01,000 \\nDefining those risk areas early is an important component of your transition planning activities.\\n\\n7\\n00:01:02,000 --> 00:01:10,000 \\nThe National Research Council has prepared a report that includes identification of the following risk areas associated with transitioning SBIR technologies:\\n\\n8\\n00:01:12,000 --> 00:01:22,000 \\nAbility to obtain funding to complete technology development, Robustness of technology for integration into a DoD system, Meeting DoD program schedule,\\n\\n9\\n00:01:23,000 --> 00:01:30,000 \\nMeeting testing and engineering specs, Ability to deliver on time and within budget, and Ability to scale\\n\\n10\\n00:01:32,000 --> 00:01:40,000 \\nAddressing these and other risk areas, specific to your technology or project is critical to increasing the probability of your project’s transition success.',\n", + " 'bytes': 1793,\n", + " 'sha1': 'lu597shhe3n2tpk9p1fkkgzx4w4pqyq',\n", + " 'parent_id': 61959236,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61960358,\n", + " 'timestamp': '2011-11-02T21:16:30Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217443,\n", + " 'title': 'Section 3.3 Transition Planning (SBIR STTR Transition Overview) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': \"moved [[TimedText:Section 3.3 Transition Planning (SBIR/STTR Transition Overview) (DARPA).ogv.en.srt]] to [[TimedText:Section 3.3 Transition Planning (SBIR STTR Transition Overview) (DARPA).ogv.en.srt]]: Media can't have /\",\n", + " 'text': '1\\n00:00:08,000 --> 00:00:16,000 \\nBased on real-life company experiences in transitioning technologies, we provide the following recommendations to help you successfully navigate the process.\\n\\n2\\n00:00:17,000 --> 00:00:27,000 \\n• Start your transition plan development activities early - This allows you to identify issues, opportunities, and key players in parallel to developing your technology or solution.\\n\\n3\\n00:00:28,000 --> 00:00:43,000 \\n• Build an integrated team - Bringing your technology from the lab to the field requires the involvement and cooperation of many individuals to include technical, business development, finance, contracts, and legal team members.\\n\\n4\\n00:00:43,000 --> 00:00:55,000 \\n• Be agile and opportunistic - Transition paths are neither standard nor linear. Expect to modify your transition plan to take advantage of opportunities that can support your transition activities.\\n\\n5\\n00:00:55,000 --> 00:01:07,000 \\n• Make achieving technology milestones a priority - A technology that has been proven effective in a relevant or operational environment is more likely to attract the attention of potential end-users.\\n\\n6\\n00:01:08,000 --> 00:01:20,000 \\n• Identify application areas and end-users - Many technologies have dual-use applications. Expand your options for transition by identifying multiple potential end-users for your technology.\\n\\n7\\n00:01:21,000 --> 00:01:30,000 \\n• Communicate your value proposition to end-users - Convey your technology’s advantages over existing technologies and its ability to meet specific needs and requirements.\\n\\n8\\n00:01:32,000 --> 00:01:42,000 \\n• Take responsibility for technology transition - Your company is ultimately responsible for transition planning and implementation, including assembling your team and collaborators, and\\n\\n9\\n00:01:42,500 --> 00:01:47,000 \\nsecuring non –SBIR/STTR funding, referred to as Phase III funding.',\n", + " 'bytes': 1908,\n", + " 'sha1': 'rq4nx35332tyfy314zwir1rumrdqzqa',\n", + " 'parent_id': 61959376,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61960780,\n", + " 'timestamp': '2011-11-02T21:26:59Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217454,\n", + " 'title': 'Section 3.4 Communicating Your Innovation To Others (SBIR STTR Transition Overview) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:Section 3.4 Communicating Your Innovation To Others (SBIR/STTR Transition Overview) (DARPA).ogv.en.srt]] to [[TimedText:Section 3.4 Communicating Your Innovation To Others (SBIR STTR Transition Overview) (DARPA).ogv.en.srt]]: Media ca...',\n", + " 'text': '1\\n00:00:07,000 --> 00:00:16,000 \\nIt’s important to develop a project summary to communicate information about the technology being developed for distribution to potential advocates, partners,\\n\\n2\\n00:00:17,000 --> 00:00:24,000 \\ncollaborators and end-users, who also may be Phase III funding sources. Here is some suggested information to include in your Project Summary: \\n\\n3\\n00:00:25,000 --> 00:00:36,000 \\n• The technical challenge being addressed • Applications and operational environments • Current state of the art and advantages of your technology over competing technologies\\n\\n4\\n00:00:37,000 --> 00:00:49,000 \\n• The company’s innovative approach • The proposed and demonstrated advantages • The value to the end user • Where the technology fits within a larger system that will be required to field the technology\\n\\n5\\n00:00:51,000 --> 00:01:02,000 \\n• The technical risk areas and how they are being addressed during the development activities and Readiness of the company to meet the business, financial, and operational requirements to support and sustain the transition.\\n\\n6\\n00:01:03,000 --> 00:01:11,000 \\nPrior to releasing or communicating information about your technology to others, you must first address the protection of the intellectual property developed,\\n\\n7\\n00:01:12,000 --> 00:01:23,000 \\nand also follow the DARPA Process for Public Release, as outlined on the DARPA Web site. Your Program Manager and the Small Business Programs Office are available to provide assistance as required.',\n", + " 'bytes': 1520,\n", + " 'sha1': 'oxa025oytsym6imk4fgxffscgvwgvvj',\n", + " 'parent_id': 61959421,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61959460,\n", + " 'timestamp': '2011-11-02T20:56:04Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217467,\n", + " 'title': 'Section 4.1 Key DARPA Resources (Your Next Step To Success) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Uploading english subtitles.',\n", + " 'text': '1\\n00:00:07,000 --> 00:00:13,000 \\nAlong with the informative website, it’s recommended that you take advantage of other DARPA related activities such as:\\n\\n2\\n00:00:13,500 --> 00:00:20,000 \\nIndustry Days, which are solicitation specific meetings, You can find a schedule for these events on the DARPA website.\\n\\n3\\n00:00:21,000 --> 00:00:30,000 \\nAlso on the website, you’ll find information on how to do business with DARPA and the required steps for the DARPA Public Release Process.\\n\\n4\\n00:00:30,500 --> 00:00:42,000 \\nThe DoD SBIR Resource Center is a good source for information on solicitation topics and proposal awards from DARPA, as well as the other DoD agencies. In addition you can learn about upcoming SBIR conferences.\\n\\n5\\n00:00:43,000 --> 00:00:55,000 \\nWe have a Beyond Phase 2 conference and I encourage all of the small businesses to participate in that. You are able to meet a great many program managers there that are already in the commercial sector.\\n\\n6\\n00:00:56,000 --> 00:01:03,000 \\nYou are able to meet many DARPA representatives there who will be there to help you understand a little bit more about DARPA and its culture.\\n\\n7\\n00:01:04,000 --> 00:01:12,000 \\nAnd finally, the DARPA SBIR/STTR web site contains a list of resources available to small businesses seeking information about both programs.\\n\\n8\\n00:01:14,000 --> 00:01:25,000 \\nHere you’ll find success reports, a video describing the technologies that have transitioned beyond Phase II, additional resources, and several points of contact that can assist you in preparing to do business with DARPA.\\n\\n9\\n00:01:27,000 --> 00:01:38,000 \\nWe encourage you to bookmark the DARPA Web site and sign up for the RSS feeds today so that you can easily keep up to date on DARPA programs, program managers, solicitations and DARPA transition successes.',\n", + " 'bytes': 1816,\n", + " 'sha1': '5yp1erub4n87lx95pjl4i2tcv678wgb',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 145652967,\n", + " 'timestamp': '2015-01-07T19:18:59Z',\n", + " 'user': {'text': '41.74.208.93'},\n", + " 'page': {'id': 17217482,\n", + " 'title': 'Section 4.2 Start Your DARPA Success Story Today (Your Next Step To Success) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'We at DARPA hope you’ve found this primer valuable, and are inspired to pursue your own DARPA success story. 2 00:00:16,000 --> 00:00:26,000 We’ll be pleased to work with you to develop a Success Report for posting on the DARPA Web site which showca',\n", + " 'text': '1\\n00:00:09,000 --> 00:00:15,000',\n", + " 'bytes': 31,\n", + " 'sha1': '3b3btev4bubqxqfk8srlavmohw8qpfe',\n", + " 'parent_id': 61959494,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 62152547,\n", + " 'timestamp': '2011-11-06T23:14:48Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17262346,\n", + " 'title': '01 The Formative Years 1958 - 1975 (DARPA history).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'add srt',\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:14,220\\n[ MUSIC ]\\n\\n2\\n00:00:14,220 --> 00:00:18,560\\n>> DARPA. Shaping the future,\\ncreating opportunities\\n\\n3\\n00:00:18,560 --> 00:00:22,510\\nfor new capabilities -- strategically,\\ntactically.\\n\\n4\\n00:00:22,510 --> 00:00:27,920\\n[ MUSIC ]\\n\\n5\\n00:00:27,920 --> 00:00:30,920\\nDARPA takes on the most difficult\\ntechnical challenges\\n\\n6\\n00:00:30,920 --> 00:00:34,710\\nfor the Department of Defense\\nand finds solutions.\\n\\n7\\n00:00:34,710 --> 00:00:36,510\\nIts role was set at inception.\\n\\n8\\n00:00:36,510 --> 00:00:42,940\\n[ MUSIC ]\\n\\n9\\n00:00:42,940 --> 00:00:47,820\\n1957. We are ensnared in an\\narms race with the Soviet Union.\\n\\n10\\n00:00:47,820 --> 00:00:55,770\\nThen in October, the Soviets launched Sputnik,\\nan implicit threat that shocked the nation.\\n\\n11\\n00:00:57,270 --> 00:00:59,210\\n>> Today a new moon is in the sky,\\n\\n12\\n00:00:59,210 --> 00:01:03,130\\na 23-inch metal sphere placed\\nin orbit by a Russian rocket.\\n\\n13\\n00:01:03,130 --> 00:01:09,910\\n>> Our satellite program has never been\\nconducted as a race with other nations.\\n\\n14\\n00:01:09,910 --> 00:01:13,930\\n>> Eisenhower instructs his new\\nSecretary of Defense, Neil McElroy,\\n\\n15\\n00:01:13,930 --> 00:01:16,890\\nto coordinate our national space program.\\n\\n16\\n00:01:16,890 --> 00:01:18,950\\nThe Soviets had surprised us.\\n\\n17\\n00:01:18,950 --> 00:01:25,080\\n>> We thought of them as being dangerous, and\\nto have them show up ahead of us in this new,\\n\\n18\\n00:01:25,080 --> 00:01:29,050\\nseemingly terribly important\\ntechnology was a shock.\\n\\n19\\n00:01:29,050 --> 00:01:33,360\\n>> ARPA was formed in February\\n1958 as a special agency\\n\\n20\\n00:01:33,360 --> 00:01:37,650\\nin the Pentagon reporting directly\\nto Defense Secretary McElroy.\\n\\n21\\n00:01:37,650 --> 00:01:43,480\\nIts charter: maintain U.S. technological\\nsuperiority over potential adversaries.\\n\\n22\\n00:01:43,480 --> 00:01:48,010\\n>> And the way he put it was, he\\nsaid, I want ARPA to do those things\\n\\n23\\n00:01:48,010 --> 00:01:51,490\\nwhich otherwise fall between the stools.\\n\\n24\\n00:01:51,490 --> 00:01:56,800\\n>> ARPA's initial focus was three\\npresidential initiatives: get us into space,\\n\\n25\\n00:01:56,800 --> 00:02:02,330\\nprotect us from Soviet missile attacks,\\nand detect Soviet nuclear tests.\\n\\n26\\n00:02:02,330 --> 00:02:06,000\\nUnder its first director,\\nRoy Johnson, ARPA succeeded.\\n\\n27\\n00:02:06,000 --> 00:02:10,330\\nARPA used Explorer 4 and its Argus\\nsatellite to see if it was possible\\n\\n28\\n00:02:10,330 --> 00:02:12,800\\nto detect nuclear explosions in space.\\n\\n29\\n00:02:12,800 --> 00:02:17,710\\n>> Explorer 4 was launched from Cape\\nCanaveral and went into orbit successfully.\\n\\n30\\n00:02:17,710 --> 00:02:18,850\\n>> This is a rocket engine --\\n\\n31\\n00:02:18,850 --> 00:02:24,910\\n>> ARPA was developing a new class of rocket\\nboosters strong enough to carry men to the moon.\\n\\n32\\n00:02:24,910 --> 00:02:29,350\\nOnce the space program was on track,\\nit was transitioned out of ARPA.\\n\\n33\\n00:02:29,350 --> 00:02:33,070\\nPart of it went to the newly\\nformed civilian agency, NASA.\\n\\n34\\n00:02:33,070 --> 00:02:35,630\\nThe rest moved to NRO.\\n\\n35\\n00:02:37,310 --> 00:02:41,120\\nWith the transition of the\\nspace programs, ARPA was shaken.\\n\\n36\\n00:02:41,120 --> 00:02:43,470\\nPersonnel and funding had been moved out.\\n\\n37\\n00:02:43,470 --> 00:02:47,080\\nIt was a blow to the morale\\nof the fledgling agency.\\n\\n38\\n00:02:47,080 --> 00:02:52,510\\nMajor General Austin Betts became\\nARPA's second director in 1959.\\n\\n39\\n00:02:52,510 --> 00:02:58,600\\n>> Well, I think that my primary assignment\\nfrom Herb York were to calm things down,\\n\\n40\\n00:02:58,600 --> 00:03:06,420\\nkeep the work going, and from time to time\\nhe would assign some new tasks, which he did.\\n\\n41\\n00:03:06,420 --> 00:03:11,150\\n>> General Betts bridged the\\nEisenhower and Kennedy administrations.\\n\\n42\\n00:03:11,150 --> 00:03:15,530\\nNuclear warfare was a major\\nnational security concern.\\n\\n43\\n00:03:15,530 --> 00:03:22,740\\nARPA's new director, Dr. Jack Ruina, inherited\\nthe beginnings of Project DEFENDER and Vela.\\n\\n44\\n00:03:22,740 --> 00:03:28,540\\nVela detected Soviet nuclear tests;\\nDEFENDER was our missile defense.\\n\\n45\\n00:03:28,540 --> 00:03:31,940\\n>> We were worried about the\\nRussians' testing in outer space,\\n\\n46\\n00:03:31,940 --> 00:03:34,180\\nin the atmosphere, and underground.\\n\\n47\\n00:03:34,180 --> 00:03:38,630\\nThere was Surface Sierra, Uniform,\\nand Hotel was the outer space.\\n\\n48\\n00:03:38,630 --> 00:03:44,040\\nBut also if they test underground, the only way\\nto test the, detect the testing underground is\\n\\n49\\n00:03:44,040 --> 00:03:48,160\\nby looking at the seismic signal that\\nemanated from a nuclear explosion.\\n\\n50\\n00:03:48,160 --> 00:03:50,490\\n>> ARPA was a little over three years old.\\n\\n51\\n00:03:50,490 --> 00:03:53,890\\nDEFENDER and Vela were high-profile programs.\\n\\n52\\n00:03:53,890 --> 00:03:57,890\\nBeneath those two umbrellas, new,\\nrewarding science was emerging:\\n\\n53\\n00:03:57,890 --> 00:04:02,470\\ngeology, seismology, and radio astronomy.\\n\\n54\\n00:04:02,470 --> 00:04:06,900\\nARPA was also opening the\\ndoor to the information age.\\n\\n55\\n00:04:06,900 --> 00:04:11,020\\nComputers were doing what\\nthey did best: crunch numbers.\\n\\n56\\n00:04:11,020 --> 00:04:14,890\\nARPA was curious: could they be\\nused to improve field operations\\n\\n57\\n00:04:14,890 --> 00:04:17,880\\nand secure command and control communications?\\n\\n58\\n00:04:17,880 --> 00:04:26,080\\nDr. Ruina hired JCR Licklider to head up the new\\nInformation Processing Techniques Office, IPTO.\\n\\n59\\n00:04:26,080 --> 00:04:29,430\\n>> The computer technology\\nhas been moving in a way\\n\\n60\\n00:04:29,430 --> 00:04:33,650\\nthat nothing else people\\nhave ever known has moved.\\n\\n61\\n00:04:33,650 --> 00:04:37,910\\n>> ARPA was putting the information pieces\\ntogether, facing the nuclear threat,\\n\\n62\\n00:04:37,910 --> 00:04:43,050\\nand collecting the information\\ncritical to our national defense.\\n\\n63\\n00:04:43,050 --> 00:04:45,960\\n>> The partial nuclear test ban was, of course,\\n\\n64\\n00:04:45,960 --> 00:04:49,920\\nthe first real success leading\\nto an end of the Cold War.\\n\\n65\\n00:04:49,920 --> 00:04:53,460\\nIt was, it was only a step,\\nbut it was the first step.\\n\\n66\\n00:04:53,460 --> 00:04:58,060\\nAnd I think it was important, and I think\\nARPA's role was important in having prepared\\n\\n67\\n00:04:58,060 --> 00:05:02,580\\nfor the services to say, yes, we\\ncan assure the safety of the country\\n\\n68\\n00:05:02,580 --> 00:05:05,260\\nin a nuclear test ban environment.\\n\\n69\\n00:05:05,260 --> 00:05:09,280\\n>> When Dr. Charles Herzfeld\\nbecame director in 1965,\\n\\n70\\n00:05:09,280 --> 00:05:12,060\\ncomputer networking had been gaining momentum.\\n\\n71\\n00:05:12,060 --> 00:05:16,960\\n>> I had the pleasure of signing the\\nfirst few ARPA orders for the ARPANET.\\n\\n72\\n00:05:16,960 --> 00:05:21,970\\nAnd we sort of knew what we were doing; it\\nwas a gamble, but it was an important one.\\n\\n73\\n00:05:21,970 --> 00:05:24,910\\n>> The challenge was linking\\nseveral computers together,\\n\\n74\\n00:05:24,910 --> 00:05:28,720\\nforming a network using the\\nfirst router, the IMP.\\n\\n75\\n00:05:28,720 --> 00:05:34,480\\n>> From the ARPANET came the Internet, from\\nthe Internet came the Web -- changed the world.\\n\\n76\\n00:05:34,480 --> 00:05:41,040\\nWhen we worked on the ARPANET, we did so\\nin part because we knew it would help --\\n\\n77\\n00:05:41,040 --> 00:05:45,210\\nin the long run -- the military\\ncommand-control systems.\\n\\n78\\n00:05:45,210 --> 00:05:50,900\\nBut we also did it because -- in part --\\nit helped scientists do science better.\\n\\n79\\n00:05:50,900 --> 00:05:52,070\\nAnd so it came to be.\\n\\n80\\n00:05:52,070 --> 00:05:58,060\\n>> In 1965, Dr. John Foster became\\nthe director of defense research\\n\\n81\\n00:05:58,060 --> 00:06:01,500\\nand engineering -- the direct\\nsupervisor of ARPA.\\n\\n82\\n00:06:01,500 --> 00:06:09,470\\n>> I asked the secretary, if I were to\\nbe the replacement for Harold Brown,\\n\\n83\\n00:06:09,470 --> 00:06:14,430\\nwhat would he like me to do about\\nthe war that was going on in Vietnam?\\n\\n84\\n00:06:14,430 --> 00:06:23,010\\nChanging the programs in ARPA\\nwas pretty straightforward.\\n\\n85\\n00:06:23,010 --> 00:06:27,320\\n>> Under Foster's direction, Dr.\\nEberhart Rechtin refocused ARPA\\n\\n86\\n00:06:27,320 --> 00:06:29,780\\nto address the challenges of the war.\\n\\n87\\n00:06:29,780 --> 00:06:33,710\\n>> I said, we're in the middle of a war;\\nwe're supposed to be doing things to help.\\n\\n88\\n00:06:33,710 --> 00:06:38,270\\n>> Rechtin's assistant, Dr. Steve\\nLukasik, became director in 1971.\\n\\n89\\n00:06:38,270 --> 00:06:40,500\\nARPA began working with the field commanders\\n\\n90\\n00:06:40,500 --> 00:06:43,910\\nto better understand the\\noperational challenges they faced.\\n\\n91\\n00:06:43,910 --> 00:06:54,530\\n>> The organization has got to have a set\\nof understandings with the larger world.\\n\\n92\\n00:06:54,530 --> 00:06:59,990\\nYou talk to these people not because\\nyou're broadcasting solutions\\n\\n93\\n00:06:59,990 --> 00:07:04,960\\nto them; they're feeding problems to you.\\n\\n94\\n00:07:04,960 --> 00:07:09,990\\n>> In a little over 10 years, ARPA\\nopened the door to space exploration,\\n\\n95\\n00:07:09,990 --> 00:07:16,100\\nestablished reliable nuclear detection, laid\\nthe groundwork for a missile defense system,\\n\\n96\\n00:07:16,100 --> 00:07:23,070\\nadvanced scientific disciplines, aided our\\ntroops in Vietnam, and invented the ARPANET.\\n\\n97\\n00:07:23,070 --> 00:07:26,200\\nARPA moved from preventing\\ntechnological surprise\\n\\n98\\n00:07:26,200 --> 00:07:29,700\\nto creating surprise for our adversaries.\\n\\n99\\n00:07:29,700 --> 00:07:33,640\\nIn part two, we'll see how DARPA\\nadjusts to the intensification\\n\\n100\\n00:07:33,640 --> 00:07:36,510\\nof the Cold War and the consequences.\\n\\n101\\n00:07:36,510 --> 00:07:45,240\\n[ MUSIC ]\",\n", + " 'bytes': 9465,\n", + " 'sha1': 'cu5hezk5kw255kfssarhae0zik3mbjc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 62152647,\n", + " 'timestamp': '2011-11-06T23:18:41Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17262370,\n", + " 'title': '02 - The Cold War Era 1975 - 1989 (DARPA history).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'add srt',\n", + " 'text': '1\\n00:00:01,510 --> 00:00:13,910\\n[ Music ]\\n\\n2\\n00:00:13,910 --> 00:00:18,280\\n>> DARPA-- shaping the feature,\\ncreating opportunities\\n\\n3\\n00:00:18,280 --> 00:00:22,370\\nfor new capabilities strategically, tactically.\\n\\n4\\n00:00:22,370 --> 00:00:30,490\\nThe mid-70\\'s, the arms race was\\nintensifying, technology was changing warfare.\\n\\n5\\n00:00:30,490 --> 00:00:33,380\\nAdvances in Soviet radar, anti-aircraft\\n\\n6\\n00:00:33,380 --> 00:00:37,990\\nand missile technologies were\\nchallenging American airpower.\\n\\n7\\n00:00:37,990 --> 00:00:40,500\\nThe director, Dr. George\\nHeilmeier [assumed spelling].\\n\\n8\\n00:00:40,500 --> 00:00:46,240\\n>> Vietnam was still with us, although\\ntapering down to a certain extent\\n\\n9\\n00:00:46,240 --> 00:00:57,360\\nand people were concerned about air warfare,\\nparticularly the surface to air missile threat\\n\\n10\\n00:00:57,360 --> 00:01:02,830\\nand at that time the Soviet Union had\\na very, very large submarine in force\\n\\n11\\n00:01:02,830 --> 00:01:11,000\\nand so any submarine warfare was another\\ncritical need of the Pentagon at the time.\\n\\n12\\n00:01:11,000 --> 00:01:15,080\\n>> Responding to those threats, Dr.\\nHeilmeier took DARPA in a new direction,\\n\\n13\\n00:01:15,080 --> 00:01:21,510\\nbuilding experimental prototypes to test\\nand prove the viability of new technologies.\\n\\n14\\n00:01:21,510 --> 00:01:28,710\\nIn 1975, he presented six major thrust\\nareas to Defense Secretary James Slussinger;\\n\\n15\\n00:01:28,710 --> 00:01:32,140\\none stood out-- the invisible airplane.\\n\\n16\\n00:01:32,140 --> 00:01:33,950\\nIt was a radical idea.\\n\\n17\\n00:01:33,950 --> 00:01:38,820\\nExperiment with aircraft performance\\nfor a very low radar profile.\\n\\n18\\n00:01:38,820 --> 00:01:44,560\\n>> You know that early morning lift\\noff of the Hablu [assumed spelling],\\n\\n19\\n00:01:44,560 --> 00:01:50,750\\nthe first self-aircraft which was\\ndemonstrating the principles, that was a very,\\n\\n20\\n00:01:50,750 --> 00:01:56,720\\nvery exciting morning because I thought\\nto myself you know this small group\\n\\n21\\n00:01:56,720 --> 00:02:02,060\\nof guys had made aviation history this morning.\\n\\n22\\n00:02:02,060 --> 00:02:09,430\\n>> In just two years, DARPA had produced an\\nentirely new airplane invisible to radar.\\n\\n23\\n00:02:09,430 --> 00:02:16,700\\nStealth technology was experimented on\\nthe ground and on ships, like sea shadow.\\n\\n24\\n00:02:16,700 --> 00:02:20,040\\nAdvances were also being made with the Arpanet.\\n\\n25\\n00:02:20,040 --> 00:02:26,950\\nIn 1976, the first wireless Arpanet transmission\\naround the world was made from this van.\\n\\n26\\n00:02:26,950 --> 00:02:29,770\\nArpanet was going mobile.\\n\\n27\\n00:02:30,790 --> 00:02:34,840\\nDr. Bob Fossom [assumed spelling]\\nbecame director in 1977.\\n\\n28\\n00:02:34,840 --> 00:02:38,360\\nThe Soviet Union was still our main adversary.\\n\\n29\\n00:02:38,360 --> 00:02:47,070\\n>> We perceived of it as a substantial\\nmilitary threat in conventional forces,\\n\\n30\\n00:02:47,070 --> 00:02:55,060\\nbut the growth of the strategic and theater\\nnuclear forces was of substantial concern.\\n\\n31\\n00:02:55,060 --> 00:02:59,920\\n>> Each side was in a technology race,\\neach trying to outsmart the other.\\n\\n32\\n00:02:59,920 --> 00:03:04,390\\nThe technological advances of the past\\n20 years were building on themselves.\\n\\n33\\n00:03:04,390 --> 00:03:08,500\\nSoviet submarines and missiles\\nwere becoming more sophisticated;\\n\\n34\\n00:03:08,500 --> 00:03:12,490\\nnew technologies were developing\\nat a faster and faster pace.\\n\\n35\\n00:03:12,490 --> 00:03:16,220\\nDr. Fossom had to make room for new ideas.\\n\\n36\\n00:03:16,220 --> 00:03:19,440\\n>> I divided the square into four quadrants.\\n\\n37\\n00:03:19,440 --> 00:03:26,230\\nAnd in the first quadrant I had existing\\nmissions and existing technology.\\n\\n38\\n00:03:26,230 --> 00:03:28,790\\nI tended to reject that.\\n\\n39\\n00:03:28,790 --> 00:03:32,540\\nThe second category was a very interesting one.\\n\\n40\\n00:03:32,540 --> 00:03:38,110\\nCan we find new missions\\nfor existing technology?\\n\\n41\\n00:03:38,110 --> 00:03:45,690\\nThe third category is existing missions\\nwith brand new revolutionary technology.\\n\\n42\\n00:03:45,690 --> 00:03:50,990\\nBut it\\'s that four area, brand new\\nmissions, things we\\'ve never done before\\n\\n43\\n00:03:50,990 --> 00:03:55,430\\nand new technology to do those missions.\\n\\n44\\n00:03:55,430 --> 00:03:58,000\\nI used to like to walk around and talk\\n\\n45\\n00:03:58,000 --> 00:04:03,310\\nwith people while there were some contractors\\nsitting there, wild-eyed contractors.\\n\\n46\\n00:04:03,310 --> 00:04:09,080\\nAnd so they saw me and their eyes lit up\\nand they said, \"Dr. Fossom how would you\\n\\n47\\n00:04:09,080 --> 00:04:16,510\\nlike an airplane that flew\\nfor 24 hours at 50,000 feet?\"\\n\\n48\\n00:04:16,510 --> 00:04:26,100\\nAnd I said, \"Make it a week and 70,000 feet\\nand I\\'ll buy one; and that was the beginning\\n\\n49\\n00:04:26,100 --> 00:04:34,510\\nof a program called Hale-- high altitude long\\nendurance out of which Global Hawk emerged.\\n\\n50\\n00:04:34,510 --> 00:04:44,310\\n[ Music ]\\n\\n51\\n00:04:44,310 --> 00:04:51,050\\n>> A change in administrations brought changes\\nin defense policy and changes to DARPA.\\n\\n52\\n00:04:51,050 --> 00:04:56,380\\nOne of Ronald Reagan\\'s major initiatives\\nmanaged to eliminate the Soviet threat.\\n\\n53\\n00:04:56,380 --> 00:05:03,320\\nThe United States began a vicious defense\\nbuild-up; new DARPA director, Dr. Bob Cooper.\\n\\n54\\n00:05:03,320 --> 00:05:07,920\\n>> There was an intention from\\nthe beginning to spend enough\\n\\n55\\n00:05:07,920 --> 00:05:11,530\\non building the equipment that our forces had.\\n\\n56\\n00:05:11,530 --> 00:05:17,350\\nThat it would require the Soviet Union to\\nspend with us if they wanted to stay with us;\\n\\n57\\n00:05:17,350 --> 00:05:24,950\\nand it was the intention from the beginning\\nto try to bankrupt the Soviet Union.\\n\\n58\\n00:05:24,950 --> 00:05:28,890\\n>> What if free people could\\nlive secure the knowledge\\n\\n59\\n00:05:28,890 --> 00:05:35,000\\nthat their security did not rest upon the threat\\nof U.S. retaliation to deter a Soviet attack;\\n\\n60\\n00:05:35,000 --> 00:05:39,730\\nthat we could intercept and destroy strategic\\nballistic missiles before they reached our own\\n\\n61\\n00:05:39,730 --> 00:05:41,920\\nsoil or that of our allies.\\n\\n62\\n00:05:45,250 --> 00:05:48,220\\n>> And we went after ballistic missile defense;\\n\\n63\\n00:05:48,220 --> 00:05:56,090\\nwe went after new ballistic missiles\\noffense systems; we did a variety of things\\n\\n64\\n00:05:56,090 --> 00:06:02,970\\nwith conventional weaponry making conventional\\nweapons much more legal by accompanying them\\n\\n65\\n00:06:02,970 --> 00:06:08,910\\nwith intelligence, surveillance, recognizance,\\nand precision-guided emissions and things\\n\\n66\\n00:06:08,910 --> 00:06:16,050\\nof that sort which frightened the\\nSoviet military hierarchy tremendously.\\n\\n67\\n00:06:16,050 --> 00:06:19,440\\n>> DARPA\\'s science and technology\\nestablished the foundation\\n\\n68\\n00:06:19,440 --> 00:06:21,590\\nfor the strategic defense initiative.\\n\\n69\\n00:06:21,590 --> 00:06:24,970\\nSTI, Star Wars and the beginning\\n\\n70\\n00:06:24,970 --> 00:06:31,090\\nof a new capability combining\\ninformation with precision weapons.\\n\\n71\\n00:06:31,090 --> 00:06:38,220\\n>> And so we drove the Soviet Union into\\nbankruptcy basically, making them continue\\n\\n72\\n00:06:38,220 --> 00:06:42,370\\nto spend more and more of their\\ngross national product on defense;\\n\\n73\\n00:06:42,370 --> 00:06:45,740\\nand I think that finally they just\\nrealized what they were doing and they...',\n", + " 'bytes': 7229,\n", + " 'sha1': 'l8shv4om23nhee8o6elqxf5zx0a5yz9',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 62152830,\n", + " 'timestamp': '2011-11-06T23:25:22Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17262403,\n", + " 'title': '03 - The Post-Soviet Years 1989 - Present 2008 (DARPA history).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'add srt',\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:03,010\\n[ Silence ]\\n\\n2\\n00:00:03,010 --> 00:00:15,670\\n[ Music ]\\n\\n3\\n00:00:15,670 --> 00:00:20,010\\n>> DARPA, shaping the future,\\ncreating opportunities\\n\\n4\\n00:00:20,010 --> 00:00:25,250\\nfor new capabilities - strategically,\\ntactically.\\n\\n5\\n00:00:25,250 --> 00:00:29,810\\n1989, George Herbert Walker Bush was President.\\n\\n6\\n00:00:29,810 --> 00:00:35,390\\nAfter 28 years, the Berlin\\nWall is open to the west.\\n\\n7\\n00:00:35,390 --> 00:00:39,620\\nThe fall of Soviet Communism\\nunleashes a new security environment,\\n\\n8\\n00:00:39,620 --> 00:00:42,580\\none of international instability.\\n\\n9\\n00:00:43,600 --> 00:00:46,850\\nDARPA director, Dr. Craig Fields.\\n\\n10\\n00:00:46,850 --> 00:00:51,830\\n>> The Soviet Union fell in that exact period,\\nwasn't so clear they weren't going to reform,\\n\\n11\\n00:00:51,830 --> 00:00:55,850\\nit was a lot of anxiety about\\nthe fact that they might reform.\\n\\n12\\n00:00:55,850 --> 00:01:03,890\\nAnd nuclear proliferation, biological warfare,\\nchemical warfare, radiological attacks, EMP.\\n\\n13\\n00:01:03,890 --> 00:01:11,030\\nThere are any number of things that are of the\\ntraditional sort, and then you deal with cases\\n\\n14\\n00:01:11,030 --> 00:01:16,640\\nof things that are not quite war like\\ninsurgency and occupation in Iraq today.\\n\\n15\\n00:01:16,640 --> 00:01:20,150\\n>> In 1990 Iraq invaded Kuwait.\\n\\n16\\n00:01:20,150 --> 00:01:23,620\\nOur capabilities unleashed in\\nDesert Storm were the culmination\\n\\n17\\n00:01:23,620 --> 00:01:26,220\\nof DARPA's technological prowess.\\n\\n18\\n00:01:26,220 --> 00:01:34,030\\nStealth aircraft delivering precision ordinance,\\ndestroyed the Iraqi army in just 42 days.\\n\\n19\\n00:01:34,030 --> 00:01:38,040\\nDr. Victor Reis became director in 1990.\\n\\n20\\n00:01:38,040 --> 00:01:40,100\\n>> It was a time of considerable turmoil.\\n\\n21\\n00:01:40,100 --> 00:01:47,320\\nI realized after a short period of time\\nthat this was the most important...\\n\\n22\\n00:01:47,320 --> 00:01:53,330\\nthing that DARPA could be doing, was\\nin the information technology area.\\n\\n23\\n00:01:53,330 --> 00:01:57,400\\n>> DARPA saw the opportunity to\\nincorporate real battles from Desert Storm\\n\\n24\\n00:01:57,400 --> 00:02:00,490\\nto enhance computer simulated training.\\n\\n25\\n00:02:00,490 --> 00:02:02,070\\n>> One of the things that the applications\\n\\n26\\n00:02:02,070 --> 00:02:06,970\\nof this packet switching was a program\\ncalled SIMNET, simulation networking.\\n\\n27\\n00:02:06,970 --> 00:02:11,180\\nYou could simulate about size of a battle,\\nwhere people could sit in what looked\\n\\n28\\n00:02:11,180 --> 00:02:14,010\\nlike little tanks, but they\\nwere really work stations.\\n\\n29\\n00:02:14,010 --> 00:02:18,900\\nAnd so they could sit and look out\\nand see a terrain and see people,\\n\\n30\\n00:02:18,900 --> 00:02:21,710\\nor other tanks or other things coming at them.\\n\\n31\\n00:02:21,710 --> 00:02:28,180\\nSo you could sit in a room, not unlike this one,\\nand play a whole battle out and learn that way.\\n\\n32\\n00:02:28,180 --> 00:02:33,400\\n>> Secretary of Defense Dick Chaney saw\\nthe simulation and wanted more like it.\\n\\n33\\n00:02:33,400 --> 00:02:38,610\\nSimulation technology transitioned to the\\nservices, becoming key to troop training.\\n\\n34\\n00:02:38,610 --> 00:02:42,050\\nDr. Gary Minden became director in 1991.\\n\\n35\\n00:02:42,050 --> 00:02:47,760\\n>> The first Gulf war was\\nunderway just over when I arrived\\n\\n36\\n00:02:47,760 --> 00:02:50,690\\nin the early days of my tenure, and that...\\n\\n37\\n00:02:50,690 --> 00:02:56,230\\nless from the lessons learned part of\\nyou that sets the tone for the agency.\\n\\n38\\n00:02:56,230 --> 00:02:59,390\\n>> The monolithic adversary was gone.\\n\\n39\\n00:02:59,390 --> 00:03:02,090\\nBut now...\\n\\n40\\n00:03:02,090 --> 00:03:09,040\\nseveral smaller complex conflicts arose\\nfrom the broken pieces of the Soviet empire.\\n\\n41\\n00:03:09,040 --> 00:03:13,460\\n>> I think a military person would tell you\\nall I need is perfect information on the enemy,\\n\\n42\\n00:03:13,460 --> 00:03:15,920\\nand I can take care of the problem.\\n\\n43\\n00:03:15,920 --> 00:03:20,350\\nWell obviously you never have perfect, but\\ncan DARPA help you make it better than it is?\\n\\n44\\n00:03:20,350 --> 00:03:26,840\\nAnd we focused a great deal on sensors\\nand techniques to get better intelligence\\n\\n45\\n00:03:26,840 --> 00:03:32,490\\nand reconnaissance of the\\nbattlefield or potential adversaries.\\n\\n46\\n00:03:35,280 --> 00:03:38,240\\n>> Yugoslavia was spiraling into war.\\n\\n47\\n00:03:38,240 --> 00:03:39,880\\nDARPA was asked to find a solution\\n\\n48\\n00:03:39,880 --> 00:03:43,940\\nto the operational challenges\\nof fast moving urban warfare.\\n\\n49\\n00:03:43,940 --> 00:03:46,250\\nDirector Larry Lynn.\\n\\n50\\n00:03:46,250 --> 00:03:50,460\\n>> Probably the thing that, the\\nexternal thing that drove most\\n\\n51\\n00:03:50,460 --> 00:03:56,300\\nof our thinking was the Bosnia\\nsituation at the time.\\n\\n52\\n00:03:56,300 --> 00:03:59,360\\nThere was a real need to\\nimprove the communications\\n\\n53\\n00:03:59,360 --> 00:04:03,590\\nand the information exploitation for Bosnia.\\n\\n54\\n00:04:03,590 --> 00:04:08,640\\n>> DARPA responded with a Bosnia command\\nand control augmentation initiative,\\n\\n55\\n00:04:08,640 --> 00:04:13,490\\nconnecting deployed forces\\nwith assets in the states.\\n\\n56\\n00:04:13,490 --> 00:04:17,770\\nAnother remnant of the Cold War\\nwas raising security concerns.\\n\\n57\\n00:04:17,770 --> 00:04:22,330\\nThe Soviets had maintained a\\nrobust biological warfare program.\\n\\n58\\n00:04:22,330 --> 00:04:24,910\\nNow with a diminished military budget,\\n\\n59\\n00:04:24,910 --> 00:04:29,610\\nthere was chance these germ warfare secrets\\ncould extend beyond Russia's borders,\\n\\n60\\n00:04:29,610 --> 00:04:32,620\\nand proliferate in the wrong hands.\\n\\n61\\n00:04:32,620 --> 00:04:36,430\\nLynn and a DARPA team traveled to\\nMoscow to learn what they could to start\\n\\n62\\n00:04:36,430 --> 00:04:40,620\\nup a biological warfare defense\\nprogram at DARPA.\\n\\n63\\n00:04:40,620 --> 00:04:47,850\\n>> It became apparent that biological warfare\\nwas rising to the level of a lot of concern,\\n\\n64\\n00:04:47,850 --> 00:04:52,540\\nand that DOD had very little\\ncapability in biology.\\n\\n65\\n00:04:52,540 --> 00:04:57,570\\nAnd so we started a hefty biological program.\\n\\n66\\n00:04:57,570 --> 00:05:02,060\\n>> Dr. Frank Fernandez was\\nappointed director in 1998.\\n\\n67\\n00:05:02,060 --> 00:05:06,490\\n>> We focused on bio-defense,\\ndefense gets biological attack,\\n\\n68\\n00:05:06,490 --> 00:05:10,800\\nand the second one was the\\ndefense against cyber attack.\\n\\n69\\n00:05:12,630 --> 00:05:15,930\\n>> In the military area back\\nthen, a precision strike\\n\\n70\\n00:05:15,930 --> 00:05:20,010\\nagainst moving targets was a very hard problem.\\n\\n71\\n00:05:20,010 --> 00:05:26,400\\nPredator in Kosovo as a situation where we got\\na call from some operational people saying,\\n\\n72\\n00:05:26,400 --> 00:05:32,230\\nwe found out that Predator is accurately\\ntracking the movement of some of these people\\n\\n73\\n00:05:32,230 --> 00:05:34,580\\nthat we want to shoot at in real time.\\n\\n74\\n00:05:34,580 --> 00:05:39,350\\nThe problem was that the camera on Predator\\nwas, had to look out at very low angle,\\n\\n75\\n00:05:39,350 --> 00:05:43,570\\nlow grazing angles, so that there\\nwas a lot of distortion in the scene\\n\\n76\\n00:05:43,570 --> 00:05:47,160\\nand you couldn't register what\\nyou saw with an accuracy enough\\n\\n77\\n00:05:47,160 --> 00:05:50,470\\nto essentially use that to target a vehicle.\\n\\n78\\n00:05:50,470 --> 00:05:54,920\\n>> DARPA saw the moving target problem\\n- integrating multiple sensors sources\\n\\n79\\n00:05:54,920 --> 00:05:57,740\\nto direct weapons to a moving target.\\n\\n80\\n00:05:58,860 --> 00:06:01,190\\nDARPA was pushing core sciences too.\\n\\n81\\n00:06:01,190 --> 00:06:08,430\\n>> At that time we were learning how to do\\nintegration of multiple components on a chip,\\n\\n82\\n00:06:08,430 --> 00:06:16,740\\nintegrating optics and electronics on 1 single\\nchip, putting a lot of transistors on a chip;\\n\\n83\\n00:06:16,740 --> 00:06:21,540\\nnumbers getting close to a\\nbillion transistors on a chip.\\n\\n84\\n00:06:21,540 --> 00:06:26,490\\n>> In 2001 George W. Bush became President.\\n\\n85\\n00:06:26,490 --> 00:06:29,820\\n9/11 came just 8 months later.\\n\\n86\\n00:06:32,480 --> 00:06:37,940\\nWith the operations in Afghanistan and Iraq,\\nDARPA responded to the national security threats\\n\\n87\\n00:06:37,940 --> 00:06:42,470\\nas it had throughout it's 50 year\\nhistory by combining technologies\\n\\n88\\n00:06:42,470 --> 00:06:49,310\\nin new ways, and imaginative field solutions.\\n\\n89\\n00:06:50,980 --> 00:06:55,660\\nThe war in Iraq provided insights as\\nto what future operations might entail,\\n\\n90\\n00:06:55,660 --> 00:07:02,630\\nthe urban nature of the war, the harsh\\nconditions, the scattered asymmetrical enemy.\\n\\n91\\n00:07:02,630 --> 00:07:06,120\\nDARPA believed part of the answer\\nwas unmanned ground vehicles\\n\\n92\\n00:07:06,120 --> 00:07:08,490\\nthat could save lives on the battlefield.\\n\\n93\\n00:07:08,490 --> 00:07:14,060\\nCould anyone build an unmanned vehicle that\\ncould autonomously travel long distances?\\n\\n94\\n00:07:14,060 --> 00:07:19,420\\nTo accelerate research and development\\nof robot cars, DARPA held a contest.\\n\\n95\\n00:07:19,420 --> 00:07:23,060\\nThey called it the Grand Challenge.\\n\\n96\\n00:07:23,060 --> 00:07:28,660\\n2004 - the first DARPA Grand Challenge.\\n\\n97\\n00:07:28,660 --> 00:07:34,150\\nThe robots vehicles had to navigate a 150\\nmile course through the Mojave Desert.\\n\\n98\\n00:07:34,150 --> 00:07:36,470\\nNone of the contestants made\\nit more than 7 miles.\\n\\n99\\n00:07:36,470 --> 00:07:43,930\\n2005 - the second Grand Challenge.\\n\\n100\\n00:07:43,930 --> 00:07:46,020\\n132 miles through the desert.\\n\\n101\\n00:07:46,020 --> 00:07:50,830\\n5 teams made it across the\\nfinish line, an amazing feat.\\n\\n102\\n00:07:50,830 --> 00:07:53,510\\n>> The check goes to Stanley.\\n\\n103\\n00:07:53,510 --> 00:07:59,100\\n[ Applause ]\\n\\n104\\n00:07:59,100 --> 00:08:04,700\\n>>DARPA plays a major role in sponsoring\\nthe development of our defense technology.\\n\\n105\\n00:08:04,700 --> 00:08:09,500\\nThe agency has transitioned stealth\\nbombers, armed with precision weapons,\\n\\n106\\n00:08:09,500 --> 00:08:14,670\\ndeveloped network battlefield\\nsimulations for training, improved sensors\\n\\n107\\n00:08:14,670 --> 00:08:20,280\\nand reconnaissance capabilities,\\ndeployed Predator and Global Hawk,\\n\\n108\\n00:08:20,280 --> 00:08:25,900\\ndeveloped new biological and chemical defense\\nstrategies, advanced computer technology,\\n\\n109\\n00:08:25,900 --> 00:08:28,970\\nand stimulated robot vehicle developments.\\n\\n110\\n00:08:28,970 --> 00:08:34,250\\nImpressive, but barely scratching\\nthe surface of things to come.\\n\\n111\\n00:08:36,150 --> 00:08:39,880\\nSpace, 1 of DARPA's original frontiers.\\n\\n112\\n00:08:39,880 --> 00:08:44,050\\nIn the future we will be defending\\nmore and more on satellites,\\n\\n113\\n00:08:44,050 --> 00:08:47,780\\nfor both commercial and military communications.\\n\\n114\\n00:08:47,780 --> 00:08:53,530\\nDARPA is working to protect these assets\\nand provide new capabilities in space.\\n\\n115\\n00:08:53,530 --> 00:08:59,750\\nIn an increasingly complex world, with 1 eye\\non the immediate needs of national securiy,\\n\\n116\\n00:08:59,750 --> 00:09:04,110\\nand the other anticipating future\\nevents, DARPA will continue\\n\\n117\\n00:09:04,110 --> 00:09:12,510\\nto create even more technological advances and\\ntechnological surprise for the next 50 years.\\n\\n118\\n00:09:12,510 --> 00:09:22,400\\n[ Music ]\",\n", + " 'bytes': 11036,\n", + " 'sha1': '8aawo9nmz1uqu9r3qzzvbhb6fama4wj',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 62951799,\n", + " 'timestamp': '2011-11-24T15:07:08Z',\n", + " 'user': {'id': 12284, 'text': 'Guillom'},\n", + " 'page': {'id': 17464936,\n", + " 'title': 'Great Feeling.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'et hop',\n", + " 'text': \"1\\n00:00:00,905 --> 00:00:03,204\\nEuh, non, je n'ai pas de superpouvoirs.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nNon, non, vraiment pas.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nTu peux tout à fait le faire aussi.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nJ'ai cliqué le bouton,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\net publié le texte,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWooooo!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nC'était... excitant.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nTu viens de changer Wikipedia,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\ntu viens d'apporter ta contribution à Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nJ'ai lu un article dans le « Guardian »\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nà propos de cette encyclopédie sur internet\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nà laquelle tout le monde pouvait participer\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\net je me suis dit « wahou ! »\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n« Peut-être que je peux participer aussi ! »\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nJ'ai modifié un article une première fois\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\net je crois que je suis devenu accro.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nOn ne me paye pas pour faire ça\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nJe le fais juste...\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\npendant mon temps libre, c'est tout\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nPeut-être que tu commences à participer\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nparce que tu crois en une idée\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nmais au final tu y découvres des amis,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\ndes relations,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\ndes discussions formidables,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\ntu découvres de nouvelles idées,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\ntu penses à des livres que tu vas écrire...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nTu n'es pas tout seul pour écrire un article.\\n\\n28\\n00:00:54,404 --> 00:00:56,772\\nTu écris un bout, et quelqu'un d'autre arrive et se dit :\\n\\n29\\n00:00:56,772 --> 00:00:58,955\\n« Hé, je peux ajouter des choses ! » et ensemble,\\n\\n30\\n00:00:58,955 --> 00:01:01,068\\nvous pouvez créer des articles de plusieurs pages\\n\\n31\\n00:01:01,068 --> 00:01:02,322\\nque tu n'aurais pas pu écrire tout seul.\\n\\n32\\n00:01:02,322 --> 00:01:03,808\\nEt ça donne un sentiment de satisfaction.\\n\\n33\\n00:01:03,808 --> 00:01:06,618\\nTu te dis « j'ai réussi à le faire »\\n\\n34\\n00:01:06,618 --> 00:01:08,220\\net c'est une expérience formibable.\\n\\n35\\n00:01:08,220 --> 00:01:08,893\\nC'est vraiment,\\n\\n36\\n00:01:08,893 --> 00:01:11,447\\nc'est vraiment un sentiment formidable.\\n\\n37\\n00:01:11,447 --> 00:01:12,655\\nÀ chaque fois que tu améliores une page.\\n\\n38\\n00:01:12,655 --> 00:01:14,954\\nJe dois avouer que quand j'ai découvert Wikipedia,\\n\\n39\\n00:01:14,954 --> 00:01:17,926\\nje me suis dit « Peut-être que j'y ai ma place »\\n\\n40\\n00:01:17,926 --> 00:01:19,365\\net c'était le cas.\",\n", + " 'bytes': 2825,\n", + " 'sha1': 'qdmjkh7u5dxaajbomym1w5oiv9d7f33',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 63746613,\n", + " 'timestamp': '2011-12-12T01:49:05Z',\n", + " 'user': {'id': 127209, 'text': 'Shooke'},\n", + " 'page': {'id': 17649849,\n", + " 'title': 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:08,860 --> 00:00:11,674\\nWikisource es una biblioteca digital en línea \\n\\n2\\n00:00:11,698 --> 00:00:14,610\\nque recopila textos publicados en cualquier idioma \\n\\n3\\n00:00:14,631 --> 00:00:18,947\\nsiempre y cuando estén bajo el dominio público o liberado con una licencia libre. \\n\\n4\\n00:00:19,057 --> 00:00:21,556\\nComo en cada proyecto de la Fundación Wikimedia, \\n\\n5\\n00:00:21,607 --> 00:00:24,997\\nWikisource está abierto a todos y cualquiera puede colaborar, \\n\\n6\\n00:00:25,039 --> 00:00:27,126\\ntambién en forma anónima.\\n\\n7\\n00:00:27,918 --> 00:00:31,750\\nEn Wikisource los textos se transcriben a partir de una fuente publicada \\n\\n8\\n00:00:31,764 --> 00:00:34,695\\ny formateada para que pueda ser leída cómodamente.\\n\\n9\\n00:00:34,815 --> 00:00:38,255\\nRomances y relatos, ensayos y manuales, \\n\\n10\\n00:00:38,299 --> 00:00:43,289\\nlibros de plegarias y manifiestos políticos, cantos populares y poesías, \\n\\n11\\n00:00:43,336 --> 00:00:47,899\\nfábulas y canciones infantiles, documentos legales y obras científicas, \\n\\n12\\n00:00:47,959 --> 00:00:50,565\\ntextos y disertaciones siempre y cuando \\n\\n13\\n00:00:50,596 --> 00:00:53,132\\nprovengan de una institución académica reconocida.\\n\\n14\\n00:00:53,286 --> 00:00:57,167\\nComo Wikipedia, el proyecto está subdividido en base a varios idiomas: \\n\\n15\\n00:00:57,252 --> 00:01:00,502\\nen Wikisource en inglés se incluyen los textos en inglés, \\n\\n16\\n00:01:00,563 --> 00:01:04,436\\naquellos en francés en la versión en francés, y así con los demás.\\n\\n17\\n00:01:04,564 --> 00:01:06,930\\nSe recopilan textos en todos los idiomas, \\n\\n18\\n00:01:06,995 --> 00:01:09,373\\ntambién en los menos difundidos y en los dialectos, \\n\\n19\\n00:01:09,425 --> 00:01:12,455\\nsiempre y cuando sean editados y puedan ser transcriptos libremente.\\n\\n20\\n00:01:12,546 --> 00:01:15,058\\nEstas condiciones valen también para las traducciones, \\n\\n21\\n00:01:15,094 --> 00:01:18,599\\nque son obras derivadas: por lo tanto no pueden ser incluidos \\n\\n22\\n00:01:18,649 --> 00:01:22,314\\nlos textos traducidos no publicados y tanto el texto como la traducción \\n\\n23\\n00:01:22,340 --> 00:01:26,855\\ndeben ser de dominio público o liberado con una licencia libre.\\n\\n24\\n00:01:27,653 --> 00:01:30,714\\nCada texto en Wikisource debe poder ser copiado\\n\\n25\\n00:01:30,792 --> 00:01:33,903\\ny utilizado como base para crear cualquier obra derivada, \\n\\n26\\n00:01:33,947 --> 00:01:35,947\\ntambién para utilización comercial.\\n\\n27\\n00:01:36,049 --> 00:01:38,521\\nPor lo tanto debe distribuirse con una licencia \\n\\n28\\n00:01:38,571 --> 00:01:41,952\\nque conceda estas libertades o cuyo autor renuncia a todos\\n\\n29\\n00:01:42,020 --> 00:01:45,091\\nlos derechos de autor sobre la obra, ya sea en los Estados Unidos, \\n\\n30\\n00:01:45,121 --> 00:01:47,295\\ndonde se encuentra el servidor de Wikisource, \\n\\n31\\n00:01:47,344 --> 00:01:50,206\\ncomo en el país de publicación del texto.\\n\\n32\\n00:01:51,271 --> 00:01:54,115\\nActualmente, en base a la ley estadounidense, \\n\\n33\\n00:01:54,196 --> 00:01:56,372\\nseguramente son de dominio público\\n\\n34\\n00:01:56,443 --> 00:01:59,539\\nsolo las obras publicadas antes de 1923. \\n\\n35\\n00:01:59,745 --> 00:02:03,243\\nPero para el estado italiano la obra tiene derechos de autor \\n\\n36\\n00:02:03,271 --> 00:02:06,128\\nhasta los 70 años posteriores a la muerte de su creador.\\n\\n37\\n00:02:06,221 --> 00:02:09,314\\nUn texto puede ser de dominio público en Italia \\n\\n38\\n00:02:09,348 --> 00:02:12,666\\nsin embargo puede no serlo en los Estados Unidos y viceversa.\\n\\n39\\n00:02:12,772 --> 00:02:16,358\\nUn texto contemporáneo puede incluirse en Wikisource \\n\\n40\\n00:02:16,424 --> 00:02:19,124\\nsolo si el autor ha autorizado explícitamente \\n\\n41\\n00:02:19,166 --> 00:02:22,406\\nel uso de la obra a cualquiera, también para fines comerciales.\\n\\n42\\n00:02:22,576 --> 00:02:25,000\\nAdemás el autor puede exigir \\n\\n43\\n00:02:25,048 --> 00:02:27,961\\nla concesión de las mismas libertades sobre las obras derivadas. \\n\\n44\\n00:02:28,023 --> 00:02:31,482\\nEn Wikisource, cualquiera podría revisar el texto \\n\\n45\\n00:02:31,549 --> 00:02:33,549\\ny es por eso que es ahora una práctica \\n\\n46\\n00:02:33,622 --> 00:02:36,425\\nla utilización del análisis completo del libro original.\\n\\n47\\n00:02:36,496 --> 00:02:40,065\\nPor otra parte, en el caso de textos ya trascriptos se necesita confiar \\n\\n48\\n00:02:40,148 --> 00:02:44,873\\nsolo en las fuentes seguras e incluir referencias bibliográficas precisas.\\n\\n49\\n00:02:45,478 --> 00:02:48,645\\nLos Wikisourcianos son escribas de la era digital \\n\\n50\\n00:02:48,662 --> 00:02:50,839\\nque por pasión o altruismo\\n\\n51\\n00:02:50,856 --> 00:02:53,207\\ntrascriben los textos disponibles libremente. \\n\\n52\\n00:02:53,272 --> 00:02:55,910\\nCada texto debe ser copiado fielmente, \\n\\n53\\n00:02:55,942 --> 00:02:58,574\\nteniendo en cuenta la forma de escritura de la época \\n\\n54\\n00:02:58,630 --> 00:03:02,413\\ny de las convenciones de transcripción establecidas por la comunidad.\\n\\n55\\n00:03:03,187 --> 00:03:05,604\\nEl camino de la transcripción comienza \\n\\n56\\n00:03:05,622 --> 00:03:07,622\\ncon la creación de una página \"índice\", \\n\\n57\\n00:03:07,669 --> 00:03:09,900\\nque invoca al libro escaneado desde Commons, \\n\\n58\\n00:03:09,969 --> 00:03:14,026\\nel proyecto hermano de Wikisource que recopila material multimedia libre.\\n\\n59\\n00:03:14,311 --> 00:03:17,069\\nAutomáticamente se generan los enlaces\\n\\n60\\n00:03:17,138 --> 00:03:19,234\\na cada una de las páginas de la obra.\\n\\n61\\n00:03:19,339 --> 00:03:22,100\\nHaciendo click sobre un enlace es posible visualizar \\n\\n62\\n00:03:22,163 --> 00:03:24,260\\nel escaneo del texto al lado \\n\\n63\\n00:03:24,305 --> 00:03:27,124\\nel recuadro en el cual se efectúa la transcripción.\\n\\n64\\n00:03:27,235 --> 00:03:30,104\\nA menudo no es necesario transcribir de cero el texto, \\n\\n65\\n00:03:30,147 --> 00:03:33,186\\nporque la página escaneada viene elaborada con un software\\n\\n66\\n00:03:33,217 --> 00:03:35,725\\nque reconoce los caracteres.\\n\\n67\\n00:03:35,850 --> 00:03:38,507\\nEl aspecto gráfico de las páginas es uniforme \\n\\n68\\n00:03:38,570 --> 00:03:41,442\\ngracias al uso de plantillas que ponen en modo automático \\n\\n69\\n00:03:41,483 --> 00:03:45,252\\nformateados o partes repetitivas de las páginas o de los textos.\\n\\n70\\n00:03:45,514 --> 00:03:48,625\\nUna vez completada la transcripción de todas las páginas, \\n\\n71\\n00:03:48,654 --> 00:03:51,859\\nel texto se ensambla en base a su estructura lógica \\n\\n72\\n00:03:51,934 --> 00:03:54,145\\n(por ejemplo en sus capítulos).\\n\\n73\\n00:03:54,252 --> 00:03:57,051\\nEl texto es así formateado en un modo conforme \\n\\n74\\n00:03:57,082 --> 00:03:59,340\\na la estructuración querida por el autor, \\n\\n75\\n00:03:59,378 --> 00:04:02,782\\npero también adaptado por la lectura en pantalla o impresa.\\n\\n76\\n00:04:03,619 --> 00:04:06,646\\nComo Wikipedia, Wikisource esta gestionada por un software \\n\\n77\\n00:04:06,707 --> 00:04:09,448\\nque permite crear enlaces hipertextuales, \\n\\n78\\n00:04:09,479 --> 00:04:12,829\\nconectando entre sí libros y autores de la biblioteca.\\n\\n79\\n00:04:12,882 --> 00:04:15,725\\nPor ejemplo, una cita (o un extracto de un ensayo) \\n\\n80\\n00:04:15,759 --> 00:04:18,712\\npuede enviar al autor o al texto que cita.\\n\\n81\\n00:04:19,493 --> 00:04:22,952\\nEn el fondo de cada texto se se encuentran los enlaces a las categorías \\n\\n82\\n00:04:23,000 --> 00:04:25,461\\nque ayudan a organizar obras y autores \\n\\n83\\n00:04:25,475 --> 00:04:27,951\\npor tipología, procedencia, etc. \\n\\n84\\n00:04:28,056 --> 00:04:30,511\\nAdemás cada texto puede enlazarse\\n\\n85\\n00:04:30,549 --> 00:04:32,742\\na sus traducciones en otras Wikisource, \\n\\n86\\n00:04:32,798 --> 00:04:34,798\\na su página en Wikipedia \\n\\n87\\n00:04:34,819 --> 00:04:37,186\\no a cualquier otro proyecto de Wikimedia.\\n\\n88\\n00:04:37,469 --> 00:04:40,687\\nCada autor cuyas obras son publicadas en Wikisource \\n\\n89\\n00:04:40,749 --> 00:04:44,586\\ntiene una página dedicada, que contiene su información mínima, \\n\\n90\\n00:04:44,640 --> 00:04:47,616\\nla lista de los textos disponibles para la consulta \\n\\n91\\n00:04:47,640 --> 00:04:49,640\\ny eventualmente otras informaciones, \\n\\n92\\n00:04:49,696 --> 00:04:53,502\\ncomo las obras en las cuales el autor es citado o los autores relacionados.\\n\\n93\\n00:04:53,780 --> 00:04:57,355\\nTambién aquí están presentes los enlaces a las páginas sobre el mismo autor \\n\\n94\\n00:04:57,410 --> 00:05:02,153\\ndisponibles en otros proyectos de Wikimedia y en otras ediciones lingüísticas.\\n\\n95\\n00:05:02,333 --> 00:05:06,430\\nTambién hay una infinidad de portales, que ofrecen guías de lectura \\n\\n96\\n00:05:06,470 --> 00:05:09,616\\nentre los textos de la biblioteca sobre un tema específico.\\n\\n97\\n00:05:11,060 --> 00:05:14,525\\nEn Wikisource, así como en Wikipedia, tiene administradores, \\n\\n98\\n00:05:14,602 --> 00:05:17,541\\nusuarios expertos que tienen la confianza de la comunidad \\n\\n99\\n00:05:17,567 --> 00:05:19,567\\ny a los cuales le son provistos \\n\\n100\\n00:05:19,622 --> 00:05:22,126\\ninstrumentos para gestionar el software en una forma más avanzada.\\n\\n101\\n00:05:22,168 --> 00:05:25,461\\nLa experiencia de estos los convierte de hecho en verdaderos y propios bibliotecarios \\n\\n102\\n00:05:25,500 --> 00:05:27,799\\nque ofician de tutores para los demás usuarios.\\n\\n103\\n00:05:28,693 --> 00:05:31,682\\nEl punto de encuentro de los wikisourcianos es el Bar, \\n\\n104\\n00:05:31,693 --> 00:05:34,385\\ndonde se pueden hace preguntas a los usuarios más expertos \\n\\n105\\n00:05:34,413 --> 00:05:36,694\\ne iniciar nuevas discusiones.\\n\\n106\\n00:05:36,784 --> 00:05:39,678\\nPer gestionar mejor ámbitos específicos existen \\n\\n107\\n00:05:39,748 --> 00:05:42,992\\npáginas dedicadas: los proyectos temáticos. \\n\\n108\\n00:05:43,046 --> 00:05:45,046\\nEn la versión italiana de Wikisource \\n\\n109\\n00:05:45,119 --> 00:05:47,784\\nrepresentan el corazón de la actividad es el lugar de reunión \\n\\n110\\n00:05:47,822 --> 00:05:51,135\\npara aquellos que están interesados en un tema en particular.\\n\\n111\\n00:05:51,434 --> 00:05:54,070\\nPara indicar el estado de avance de los trabajos\\n\\n112\\n00:05:54,102 --> 00:05:56,402\\nsobre un texto específico o sobre una parte \\n\\n113\\n00:05:56,437 --> 00:05:59,859\\nse usa un sistema subdividido en 5 etapas fundamentales. \\n\\n114\\n00:06:00,137 --> 00:06:02,347\\nCuando el texto está completo en cada una de sus partes, \\n\\n115\\n00:06:02,385 --> 00:06:05,805\\nformateado correctamente y leído por dos o más usuarios \\n\\n116\\n00:06:05,874 --> 00:06:08,890\\nusando la fuente original, recibe una \"estrellita\", \\n\\n117\\n00:06:08,944 --> 00:06:12,526\\nque le atribuye el estado de \"Edición Wikisource\".\\n\\n118\\n00:06:12,731 --> 00:06:15,311\\nY para concentrar los esfuerzos de más usuarios, \\n\\n119\\n00:06:15,346 --> 00:06:17,850\\ncada mes se eligen uno o más textos \\n\\n120\\n00:06:17,892 --> 00:06:20,521\\npara releer y corregir conjuntamente.\\n\\n121\\n00:06:21,242 --> 00:06:23,416\\nCon Wikisource puedes además demostrar \\n\\n122\\n00:06:23,455 --> 00:06:25,843\\ntu amor por los libros, salvándolos del olvido\\n\\n123\\n00:06:25,861 --> 00:06:28,776\\ny ponerlos a disponibilidad de cualquiera, en la red. \\n\\n124\\n00:06:29,140 --> 00:06:31,140\\nParticipa de Wikisource \\n\\n125\\n00:06:31,161 --> 00:06:34,216\\ny construye también tú una biblioteca libre.',\n", + " 'bytes': 10931,\n", + " 'sha1': '7jx788k2j76f84wbs8r7aj67rhgfmat',\n", + " 'parent_id': 63746580,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 64325899,\n", + " 'timestamp': '2011-12-24T23:26:23Z',\n", + " 'user': {'id': 1486767, 'text': 'InverseHypercube'},\n", + " 'page': {'id': 17789777,\n", + " 'title': 'Yosemite Nature Notes 9 - Frazil Ice.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:Yosemite Nature Notes 9: Frazil Ice.ogv.en.srt]] to [[TimedText:Yosemite Nature Notes 9 - Frazil Ice.ogv.en.srt]]',\n", + " 'text': '1 00:00:00,50 --> 00:00:20,10 [Music]\\n\\n2 00:00:31,00 --> 00:00:32,43 We're on<br></br>Yosemite Creek\\n\\n3 00:00:32,53 --> 00:00:34,37 below Lower<br></br>Yosemite Falls,\\n\\n4 00:00:34,47 --> 00:00:36,87 it's a cold early<br></br>April morning,\\n\\n5 00:00:36,97 --> 00:00:39,67 and we're watching the<br></br>frazil ice formation.\\n\\n6 00:00:39,77 --> 00:00:43,63 Frazil ice are these small<br></br>crystals of frozen mist\\n\\n7 00:00:43,73 --> 00:00:46,97 that forms in Upper Yosemite<br></br>Falls and Lower Yosemite Falls.\\n\\n8 00:00:47,07 --> 00:00:50,67 The particles of ice wash down<br></br>the stream with the liquid water\\n\\n9 00:00:50,77 --> 00:00:55,00 in a flurry, a slushy,<br></br>slurpee, goopy mass\\n\\n10 00:00:55,10 --> 00:00:58,37 that in many cases<br></br>flows like lava.\\n\\n11 00:01:02,40 --> 00:01:06,67 So if you can imagine in your<br></br>mind a giant slurpee machine\\n\\n12 00:01:06,77 --> 00:01:11,23 that is putting out millions<br></br>of gallons of slurpee\\n\\n13 00:01:11,33 --> 00:01:12,50 into Yosemite Creek,\\n\\n14 00:01:12,60 --> 00:01:13,80 it's amazing;\\n\\n15 00:01:13,90 --> 00:01:15,93 it's not snow,<br></br>it's not ice,\\n\\n16 00:01:16,03 --> 00:01:18,37 it's something<br></br>in the middle\\n\\n17 00:01:18,47 --> 00:01:22,50 and to watch it move underneath<br></br>Yosemite Creek Bridge\\n\\n18 00:01:22,60 --> 00:01:24,13 is pretty incredible.\\n\\n19 00:01:24,23 --> 00:01:26,00 This is one of the<br></br>more unique phenomenon\\n\\n20 00:01:26,10 --> 00:01:27,13 that you'll see<br></br>in Yosemite,\\n\\n21 00:01:27,23 --> 00:01:29,27 if you're lucky enough to be<br></br>here in March and April,\\n\\n22 00:01:29,37 --> 00:01:30,93 which is the prime<br></br>season for this,\\n\\n23 00:01:31,03 --> 00:01:32,13 but it's an<br></br>amazing thing\\n\\n24 00:01:32,23 --> 00:01:34,50 to watch something this<br></br>dynamic in Yosemite Creek.\\n\\n25 00:01:34,60 --> 00:01:36,33 You see something that<br></br>the millions of visitors\\n\\n26 00:01:36,43 --> 00:01:37,50 who come in the summertime\\n\\n27 00:01:37,60 --> 00:01:39,60 never imagine<br></br>something like this.\\n\\n28 00:01:40,60 --> 00:01:43,07 It behaves a little bit<br></br>like cement in some ways,\\n\\n29 00:01:43,17 --> 00:01:46,63 where it stops and it forms<br></br>kind of a stationary piece\\n\\n30 00:01:46,73 --> 00:01:49,67 and then the flowing pieces go<br></br>past that stationary piece.\\n\\n31 00:01:49,77 --> 00:01:51,83 The ice will<br></br>surge into place\\n\\n32 00:01:51,93 --> 00:01:55,20 and with enough<br></br>thickness it stops\\n\\n33 00:01:55,30 --> 00:01:57,33 and the creek will flow<br></br>a different direction.\\n\\n34 00:01:57,43 --> 00:02:00,90 The water will drain out of<br></br>where it has just deposited it,\\n\\n35 00:02:01,00 --> 00:02:02,90 leaving this, what<br></br>looks like snow,\\n\\n36 00:02:03,00 --> 00:02:05,33 but again, it's soft,<br></br>it's unconsolidated,\\n\\n37 00:02:05,43 --> 00:02:07,03 you would plunge<br></br>right into that.\\n\\n38 00:02:07,13 --> 00:02:09,00 Now we see this<br></br>dynamic change\\n\\n39 00:02:09,10 --> 00:02:12,17 as the frazil ice has<br></br>built up its own levy\\n\\n40 00:02:12,27 --> 00:02:16,20 and caused the channel to clog<br></br>up and it's coming toward us,\\n\\n41 00:02:16,30 --> 00:02:19,30 we're going to have to<br></br>be ready to move here,\\n\\n42 00:02:19,40 --> 00:02:23,97 as the Yosemite Creek in all of<br></br>its might is coming toward us.\\n\\n43 00:02:24,07 --> 00:02:26,30 But you'll see this<br></br>lava flow effect,\\n\\n44 00:02:26,40 --> 00:02:27,83 where the ice is<br></br>going to accumulate\\n\\n45 00:02:27,93 --> 00:02:29,57 and build up<br></br>blockages\\n\\n46 00:02:29,67 --> 00:02:31,93 that stop it from coming<br></br>in a certain direction.\\n\\n47 00:03:01,40 --> 00:03:02,90 It's the full force<br></br>of Yosemite Creek,\\n\\n48 00:03:03,00 --> 00:03:06,20 which can be up to say a<br></br>100 cubic feet per second,\\n\\n49 00:03:06,30 --> 00:03:09,47 when that is moving along in a<br></br>place where we don't expect it,\\n\\n50 00:03:09,57 --> 00:03:12,97 where engineering of building<br></br>roads and trails and bridges\\n\\n51 00:03:13,07 --> 00:03:14,10 hasn't anticipated\\n\\n52 00:03:14,20 --> 00:03:16,80 this full flow of<br></br>the Yosemite Creek,\\n\\n53 00:03:16,90 --> 00:03:17,63 has caused problems\\n\\n54 00:03:17,73 --> 00:03:20,67 with damage to buildings<br></br>on the side of the creek\\n\\n55 00:03:20,77 --> 00:03:22,17 and our footbridges,\\n\\n56 00:03:22,27 --> 00:03:23,83 at least one has<br></br>been destroyed,\\n\\n57 00:03:23,93 --> 00:03:26,37 one another was<br></br>displaced by frazil ice,\\n\\n58 00:03:26,47 --> 00:03:28,20 picking it up off<br></br>of its footings\\n\\n59 00:03:28,30 --> 00:03:29,97 and others have<br></br>been inundated\\n\\n60 00:03:30,07 --> 00:03:32,27 by the frazil ice<br></br>deposits at times.\\n\\n61 00:03:36,80 --> 00:03:38,87 So a lot of people that are<br></br>in the park in March and April\\n\\n62 00:03:38,97 --> 00:03:41,20 will be walking along the<br></br>trail near Yosemite Creek\\n\\n63 00:03:41,30 --> 00:03:44,37 and see piles of what<br></br>appears to be snow.\\n\\n64 00:03:44,47 --> 00:03:46,77 If they took a little<br></br>more time to observe,\\n\\n65 00:03:46,87 --> 00:03:50,00 they would notice the snow is<br></br>very selectively deposited,\\n\\n66 00:03:50,10 --> 00:03:51,37 only in the stream<br></br>channels here,\\n\\n67 00:03:51,47 --> 00:03:53,57 there is none up in the<br></br>woods off to the side.\\n\\n68 00:03:53,67 --> 00:03:55,17 It's the first thing<br></br>people think of,\\n\\n69 00:03:55,27 --> 00:03:56,90 of course it looks<br></br>like snow, so...\\n\\n70 00:03:57,00 --> 00:03:58,50 what else could it be?\\n\\n71 00:03:58,60 --> 00:04:01,17 Here's where frazil ice<br></br>becomes quite dangerous,\\n\\n72 00:04:01,27 --> 00:04:03,10 because you can't<br></br>tell how thick it is\\n\\n73 00:04:03,20 --> 00:04:04,23 or how solid it is\\n\\n74 00:04:04,33 --> 00:04:05,80 or how much<br></br>water is underneath.\\n\\n75 00:04:05,90 --> 00:04:06,97 If you were to<br></br>walk out into this,\\n\\n76 00:04:07,07 --> 00:04:08,13 you might make<br></br>it a few steps\\n\\n77 00:04:08,23 --> 00:04:11,10 and you might plunge<br></br>through over your head\\n\\n78 00:04:11,20 --> 00:04:15,40 into icy moving water underneath<br></br>this frazil ice deposit on top.\\n\\n79 00:04:19,67 --> 00:04:21,97 Every winter at the base<br></br>of Upper Yosemite Fall,\\n\\n80 00:04:22,07 --> 00:04:25,80 a big conical mound of<br></br>ice and snow develops.\\n\\n81 00:04:25,90 --> 00:04:27,90 We call it the Ice<br></br>Cone or the Snow Cone\\n\\n82 00:04:28,00 --> 00:04:31,23 and it can grow to be<br></br>hundreds of feet tall.\\n\\n83 00:04:31,33 --> 00:04:33,67 The Snow Cone builds<br></br>up from falling water\\n\\n84 00:04:33,77 --> 00:04:35,50 that freezes<br></br>while it's falling.\\n\\n85 00:04:35,60 --> 00:04:37,30 It freezes in a<br></br>couple of places;\\n\\n86 00:04:37,40 --> 00:04:38,97 some freezes<br></br>at the bottom,\\n\\n87 00:04:39,07 --> 00:04:41,17 some of it freezes on<br></br>the rock on either side\\n\\n88 00:04:41,27 --> 00:04:42,40 of Upper Yosemite Falls,\\n\\n89 00:04:42,50 --> 00:04:45,53 when the sun comes around during<br></br>the late part of the morning,\\n\\n90 00:04:45,63 --> 00:04:46,97 it starts to<br></br>loosen that ice\\n\\n91 00:04:47,07 --> 00:04:50,50 and it falls and builds<br></br>up onto the Snow Cone too.\\n\\n92 00:04:56,40 --> 00:04:57,97 And you can hear them<br></br>throughout the Valley,\\n\\n93 00:04:58,07 --> 00:05:00,27 and it's pretty amazing<br></br>how loud those ice sheets\\n\\n94 00:05:00,37 --> 00:05:02,37 can be when they<br></br>come crashing down.\\n\\n95 00:05:11,67 --> 00:05:13,13 There is a<br></br>persistent myth\\n\\n96 00:05:13,23 --> 00:05:16,60 that directly connects the<br></br>Snow Cone's disappearance\\n\\n97 00:05:16,70 --> 00:05:19,33 to the apparition of our<br></br>frazil ice deposits.\\n\\n98 00:05:19,43 --> 00:05:21,27 There is not a<br></br>direct connection.\\n\\n99 00:05:21,37 --> 00:05:22,57 This is not<br></br>the Snow Cone\\n\\n100 00:05:22,67 --> 00:05:25,43 we see lying on the floor of<br></br>Yosemite Valley washed out.\\n\\n101 00:05:25,53 --> 00:05:28,67 The Snow Cone gradually melts<br></br>away as temperature warms up.\\n\\n102 00:05:28,77 --> 00:05:29,73 As temperature<br></br>warms up,\\n\\n103 00:05:29,83 --> 00:05:32,10 the volume in Yosemite<br></br>Creek increases,\\n\\n104 00:05:32,20 --> 00:05:33,83 but the<br></br>subfreezing nights\\n\\n105 00:05:33,93 --> 00:05:36,67 will turn some portion<br></br>of Yosemite Falls to ice\\n\\n106 00:05:36,77 --> 00:05:39,60 that flows in the liquid<br></br>water and the frazil ice,\\n\\n107 00:05:39,70 --> 00:05:40,73 as we call it,\\n\\n108 00:05:40,83 --> 00:05:43,80 is only indirectly<br></br>connected to the Snow Cone.\\n\\n109 00:05:44,60 --> 00:05:47,47 I do have heard people<br></br>refer to frazil ice\\n\\n110 00:05:47,57 --> 00:05:49,17 as the Snow<br></br>Cone breaking up,\\n\\n111 00:05:49,27 --> 00:05:51,03 but if that<br></br>were the case,\\n\\n112 00:05:51,13 --> 00:05:53,33 then these other places where<br></br>it exists in Yosemite Valley,\\n\\n113 00:05:53,43 --> 00:05:54,57 that wouldn't be true.\\n\\n114 00:05:54,67 --> 00:05:57,30 I've also observed it<br></br>at Royal Arches Cascade\\n\\n115 00:05:57,40 --> 00:05:59,70 and I do know that it<br></br>happens at Ribbon Creek,\\n\\n116 00:05:59,80 --> 00:06:03,83 also over at Bridalveil<br></br>Falls and Salmon Creek.\\n\\n117 00:06:17,47 --> 00:06:19,77 This is a marker for many<br></br>of us in Yosemite Valley\\n\\n118 00:06:19,87 --> 00:06:21,20 when the frazil ice flows,\\n\\n119 00:06:21,30 --> 00:06:22,97 it means that<br></br>springtime is here,\\n\\n120 00:06:23,07 --> 00:06:24,57 where the snowmelt<br></br>is increasing,\\n\\n121 00:06:24,67 --> 00:06:27,03 but we still have subfreezing<br></br>temperatures at night,\\n\\n122 00:06:27,13 --> 00:06:29,53 so yeah, it is very much<br></br>a marker of the season.\\n\\n123 00:06:29,63 --> 00:06:30,83 You won't see<br></br>this in June,\\n\\n124 00:06:30,93 --> 00:06:33,10 you won't see<br></br>this in October,\\n\\n125 00:06:33,20 --> 00:06:35,57 you'll only see it in March<br></br>and usually in April.\\n\\n126 00:06:37,77 --> 00:06:40,63 Well, Yosemite gets close to<br></br>4 million visitors a year\\n\\n127 00:06:40,73 --> 00:06:42,93 and the vast majority<br></br>of those visitors\\n\\n128 00:06:43,03 --> 00:06:44,40 come in June,<br></br>July, and August,\\n\\n129 00:06:44,50 --> 00:06:45,90 so they're here in<br></br>the summer months.\\n\\n130 00:06:46,00 --> 00:06:49,47 And I think that a lot<br></br>of people are missing\\n\\n131 00:06:49,57 --> 00:06:52,60 some of the magical events<br></br>that happen in the wintertime.\\n\\n132 00:06:52,70 --> 00:06:54,77 For example, Horsetail Falls,\\n\\n133 00:06:54,87 --> 00:06:57,97 it looks like a glowing<br></br>fire fall in February,\\n\\n134 00:06:58,07 --> 00:07:01,27 and the Snow Cone at the<br></br>base of Upper Yosemite Fall,\\n\\n135 00:07:01,37 --> 00:07:04,67 you're just not going to see<br></br>that in June, July, and August.\\n\\n136 00:07:04,77 --> 00:07:07,20 And the fact that<br></br>frazil ice is flowing\\n\\n137 00:07:07,30 --> 00:07:09,87 a lot of times in spring<br></br>is pretty incredible.\\n\\n138 00:07:09,97 --> 00:07:12,53 So I think that<br></br>Yosemite in late winter\\n\\n139 00:07:12,63 --> 00:07:13,67 and early spring\\n\\n140 00:07:13,77 --> 00:07:17,20 holds a lot of very special<br></br>and unique natural phenomenon\\n\\n141 00:07:17,30 --> 00:07:20,10 and that more people would<br></br>probably come here in winter\\n\\n142 00:07:20,20 --> 00:07:24,37 if they just knew that they<br></br>could experience these things.',\n", + " 'bytes': 11563,\n", + " 'sha1': 'hg40fodnelube6m5tu9kw84ajzs0re5',\n", + " 'parent_id': 64323211,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 66099359,\n", + " 'timestamp': '2012-01-27T13:52:25Z',\n", + " 'user': {'id': 410833, 'text': 'Akaniji'},\n", + " 'page': {'id': 18183023,\n", + " 'title': 'The State of Wikipedia by JESS3.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '時間切れ。途中まで保存。',\n", + " 'text': \"1 00:00:01,114 --> 00:00:05,414 (The State of Wikipedia)\\n\\n<!--1.1 00:00:05,414 --*> 00:00:06,414 (語り: ジミー・ウェールズ。ウィキペディアの創設者) --> \\n\\n2 00:00:06,414 --> 00:00:08,000 (ウィキペディア:自由な百科事典)\\n\\n3 00:00:08,000 --> 00:00:11,100 ウィキペディアは今やインターネット上で最も重要なウェブサイトのひとつです。\\n\\n4 00:00:11,100 --> 00:00:16,000 実はこのウィキペディア、もう1冊のオンライン百科事典の副事業として始まったと聞けば、驚かれるでしょうか。\\n\\n5 00:00:16,000 --> 00:00:22,300 その名をヌーペディア。専門家の手による伝統的な百科事典で、That was called Nupedia, to be a traditional encyclopedia written by experts\\n\\n6 00:00:22,300 --> 00:00:27,500 フリーで、オンラインでした。しかし、最終的な公開権限をひとりが専有していたため、まったく成功していませんでした。\\n\\n7 00:00:30,000 --> 00:00:36,300 私はヌーペディアの創設者として、将来のヌーペディアの記事を担う、いわゆる二軍チームを設立する班を先導していました。\\n\\n8 00:00:36,300 --> 00:00:42,500 ここで私たちは、共同制作を容易にするために、新しいソフトウェア基本骨格を採用しました。それが、ウィキ。ウィキペディアの始まりです。\\n\\n9 00:00:45,000 --> 00:00:48,500 たくさんのページを非常に速く書きあげるには、ウィキは完璧な方法でした。\\n\\n10 00:00:48,500 --> 00:00:52,900 ヌーペディアの方はというと、その後すぐに立ち行かなくなりました。代わって、ウィキペディアが中心的な役割を担うことになります。\\n\\n11 00:00:53,100 --> 00:00:58,700 私たちは、ただのフリー素材の百科事典を作っていたのではありません。「誰でも編集できるフリーな百科事典」を作っていたのです。\\n\\n12 00:00:58,800 --> 00:01:04,500 たちまち、他の言語版が現れました。今やその数、270以上。\\n\\n13 00:01,04,600 --> 00:01:08,900 のみならず、ウィキソースやウィキニュース、ウィクショナリーといった姉妹事業群が後に続きました。\\n\\n14 00:01:08,900 --> 00:01:15,200 2003年、ウィキペディアの成長に対応するため、ウィキメディア財団を設立しました。\\n\\n15 00:01:15,200 --> 00:01:18,800 ウィキペディアへの訪問者数は、毎月4億人弱にのぼります。\\n\\n16 00:01:18,900 --> 00:01:22,200 訪問者数ランキングでウィキペディアよりも多いサイトの目録は非常に短く、超有名サイトしかありません。\\n\\n17 00:01:22,300 --> 00:01:27,950 2011年1月、ウィキペディアは10周年を記念しました。\\n\\n18 00:01:28,000 --> 00:01:31,500 この10年間で、ウィキペディアは世界で最も有名なウェブサイトになったのです。\\n\\n19 00:01:31,500 --> 00:01:37,400 私は今も共同体を先導していますし、ウィキペディアを私たちが作る今日の姿は、ウィキメディア財団が支援しています。\\n\\n20 00:01:37,500 --> 00:01:39,300 ウィキペディアは誰が書いているの?\\n\\n21 00:01:39,350 --> 00:01:44,000 Over time, as many as 1.2 million people have contributed to Wikipedia.\\n\\n22 00:01:44,000 --> 00:01:49,990 As of 2010, there are more than 11 million monthly edits to all Wikipedias in all languages.\\n\\n23 00:01:50,000 --> 00:01:55,200 According to one survey, we have about twice the proportion of Ph.Ds compared to the general public.\\n\\n24 00:01:55,300 --> 00:02:03,200 On the English Wikipedia almost 50% have no religion and 14.6% of French editors claim to believe in Pastafarianism.\\n\\n25 00:02:03,300 --> 00:02:06,100 It would be fair to say that most Wikipedians are not average.\\n\\n26 00:02:06,200 --> 00:02:11,300 One reason, maybe, is that editing a single page is easy, but getting heavily involved is harder.\\n\\n27 00:02:11,400 --> 00:02:16,400 The community is defined by more than 200 combined policies, guidelines and essays\\n\\n28 00:02:16,400 --> 00:02:20,100 to say nothing of the discussions and reviews, committees and noticeboards\\n\\n29 00:02:20,100 --> 00:02:21,400 WikiProjects and more.\\n\\n30 00:02:21,500 --> 00:02:25,350 All the site content is decided by Wikipedia's volunteer contributors.\\n\\n31 00:02:25,350 --> 00:02:28,900 The Wikimedia Foundation has no editorial role whatsoever.\\n\\n32 00:02:29,800 --> 00:02:33,400 The Foundation's job is to keep the servers running and the lights on, but there's more to it than that.\\n\\n33 00:02:33,400 --> 00:02:36,300 The Foundation is also growing Wikipedia's presence worldwide\\n\\n34 00:02:36,400 --> 00:02:43,200 more data centers to speed up Wikipedia worldwide and even bringing its first office outside of the United States to India.\\n\\n35 00:02:43,300 --> 00:02:46,800 Wikipedia is already very popular in the West and in the North.\\n\\n36 00:02:46,800 --> 00:02:50,700 A new challenge is going to be making Wikipedia available to the developing world, as well.\\n\\n37 00:02:50,750 --> 00:02:54,500 The Foundation is a charity and runs entirely on donations\\n\\n38 00:02:54,600 --> 00:03:00,200 some from corporations and institutions, but the vast majority from its millions of editors and readers.\\n\\n39 00:03:00,200 --> 00:03:05,300 It's incredible what has been accomplished already, but Wikipedia is far from done.\\n\\n40 00:03:05,300 --> 00:03:09,500 As any reader knows, some articles are very good, but some are not.\\n\\n41 00:03:09,600 --> 00:03:11,200 Wikipedia still needs a lot of work.\\n\\n42 00:03:11,300 --> 00:03:13,500 Yet, this is a new challenge.\\n\\n43 00:03:13,500 --> 00:03:17,400 Not just building an encyclopedia from scratch, but making it better\\n\\n44 00:03:17,400 --> 00:03:22,500 more accurate, more citations. Not just broad, but deep.\\n\\n45 00:03:22,650 --> 00:03:27,000 There's never been anything like Wikipedia before, and its future horizon is very, very long.\\n\\n46 00:03:27,100 --> 00:03:31,300 As Wikipedia enters its second decade, it's up to all of us to make sure it gets even better.\\n\\n47 00:03:27,300 --> 00:03:35,000 (Wikipedia, The Free Encyclopedia)\\n\\n<!-- 47.1 00:03:36,200 --*> 00:03:37,200 (Narrated by Jimmy Wales, Founder of Wikipedia.) -->\\n\\n<!-- 47.2 00:03:37,200 --*> 00:03:38,200 (Directed by Jesse Thomas.) -->\\n\\n48 00:03:39,000 --> 00:03:41,500 (A JESS3 Production)\",\n", + " 'bytes': 6453,\n", + " 'sha1': 'q3p9ev9kf6oaii5kn9t08cyhqb3koke',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 67451801,\n", + " 'timestamp': '2012-02-24T07:53:50Z',\n", + " 'user': {'id': 1797315, 'text': 'Subha WMF'},\n", + " 'page': {'id': 18480057,\n", + " 'title': 'Citing sources tutorial, part 1.ogv.or.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'or+',\n", + " 'text': '1\\n00:00:00,000 --> 00:10:00,000\\nସମ୍ପାଦନା କେମିତି କରିବେ: ବାହାର ଆଧାର ଯୋଡ଼ିବା\\n\\n2\\n00:00:12,000 --> 00:00:21,999\\nପ୍ରଥମେ ଏକ ପରଖ ଘର ତିଆରି କରନ୍ତୁ । ଯଦି ଆପଣଙ୍କର ଏକ ପରଖଘର ନଥାଏ, ତେବେ ଦୟାକରି Help:Sandbox Tutorial କୁ ଯାଆନ୍ତୁ ଓ ସେଥିରେ ଦିଆଯାଇଥିବା ନିର୍ଦେଶାବଳୀ ଦେଖନ୍ତୁ ।\\n\\n3\\n00:00:22,000 --> 00:00:27,800\\nଏବେ ପରଖ ଘରଟି ଦେଖନ୍ତୁ । ଆମେ ପ୍ରଥମେ ପାଦ ଟୀକା ନିମନ୍ତେ ଏକ ବିଭାଗ ତିଆରି କରିବୁ ।\\n\\n4\\n00:00:28,000 --> 00:00:36,700\\nଦୁଇଟି ସମାନ ଚିହ୍ନ == ଦେଇ ତାହା ପରେ ବିଭାଗର ନାମ ଦେଇ ଏହି ପୃଷ୍ଠାର ପାଦ ଦେଶରେ ଏକ ନୂଆ ବିଭାଗ (ପାଦ ଟୀକା) ତିଆରି କରନ୍ତୁ ।\\n\\n5 \\n00:00:36,750 --> 00:00:46,500\\nପାଦଟୀକା ଲେଖିସାରିବା ପରେ ଆଉ ଦୁଇଟି ସମାନ ଚିହ୍ନ ଦିଅନ୍ତୁ ଯାହା ଫଳରେ ଆପଣ ଦେବାକୁ ଯାଉଥିବା ଆଧାର ଏହି ପାଦଟୀକା ତଳେ ଦେଖାଯିବ ।\\n\\n6\\n00:00:47,000 --> 00:00:52,500\\nଏହାକୁ ଆଧାର କୁହାଯାଏ, ଏବେ ଏହାର ବାମ ଓ ଡାହାଣରେ <nowiki>{{ ଓ }}</nowiki> ଦିଅନ୍ତୁ ।\\n\\n7\\n00:00:52,600 --> 00:01:08,500\\nଏବେ ଆମେ \"Being bold is important on Wikipedia\" ଏଠାରେ ଲେଖିବା । ଏହାର ଏକ ନିର୍ଦେଶାବଳୀ ମଧ୍ୟ ଅଛି ।\\n\\n8\\n00:01:12,000 --> 00:01:21,300\\nଏକ ପାଦଟୀକାରେ ଏହି ସବୁ ମୁଖ୍ୟ ଚିଜ ଥାଏ: ଏକ ପାଦଲେଖ, ଏକ ଆରମ୍ଭ ଓ ଅନ୍ତ ଚିହ୍ନ । \\n\\n9\\n00:01:22,000 --> 00:01:31,100\\nଏକ ref ଚିହ୍ନ, ଏବଂ ଆମର ଆଧାର: Be bold guideline, Wikipedia - The free encyclopedia, retrieved October 16. \\n\\n10\\n00:01:31,900 --> 00:01:33,500\\nଏହା ପରେ ଏକ ଅନ୍ତ ref ଚିହ୍ନ ଦିଅନ୍ତୁ ।\\n\\n11\\n00:01:34,600 --> 00:01:42,300\\nଏବେ ଆମେ ପୃଷ୍ଠାଟି ସାଇତିବା ଆପଣ ଏହାର ଫଳାଫଳ ଏବେ ଦେଖିପାରିବେ । ସଂଖ୍ୟାସବୁ ref ଚିହ୍ନ ଭାବରେ ଯୋଡ଼ିହୋଇଯିବ ।\\n\\n12\\n00:01:42,350 --> 00:01:47,400\\nପୃଷ୍ଠାର ପାଦ ଦେଶରେ ଥିବା ଆଧାର ବିଷୟବସ୍ତୁକୁ ଏହା ନିର୍ଦେଶିତ କରିଥାଏ । \\n\\n13\\n00:01:47,450 --> 00:01:52,500\\nଏହି ନୂଆ ଶିକ୍ଷଣଟି ସମ୍ପାଦନା ଉପକରଣ ପତିରେ ଥିବା ଆପଣଙ୍କୁ କିପରି ଆଧାର ବ୍ୟବହାର କରାଯାଏ ତାହା ଶିଖାଇଥାଏ ।\\n\\n14\\n00:01:52,501 --> 00:01:59,000\\nତାହା ଆପଣଙ୍କୁ ଆପେ ଆପେ ଆଧାର ଓ ପାଦଟୀକା ତିଆରି କରିବାରେ ସାହାଯ୍ୟ କରିଥାଏ ।\\n\\n15\\n00:01:59,100 --> 00:02:01,600\\nତେଣୁ ଦମ୍ଭ ହୋଇ ସବୁବେଳେ ଲେଖାର ମୂଳ ଆଧାର ଦିଅନ୍ତୁ ।',\n", + " 'bytes': 3446,\n", + " 'sha1': 'lqszcb79khrt8n7uxq0qu99ouo78if6',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 69462390,\n", + " 'timestamp': '2012-04-06T19:44:08Z',\n", + " 'user': {'id': 12489, 'text': '80686'},\n", + " 'page': {'id': 18986901,\n", + " 'title': 'CSBS Alice Wiegand.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:01,970 Hi, I'm Alice, 2 00:00:02,070 --> 00:00:03,183 username lyzzy, 3 00:00:03,283 --> 00:00:06,454 and I'm running for the Wikimed...'\",\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:01,970\\nHi, I'm Alice,\\n\\n2\\n00:00:02,070 --> 00:00:03,183\\nusername lyzzy,\\n\\n3\\n00:00:03,283 --> 00:00:06,454\\nand I'm running for the Wikimedia Foundation's Board of Trustees.\\n\\n4\\n00:00:06,560 --> 00:00:08,930\\nWe are here at Raketenstation Hombroich.\\n\\n5\\n00:00:09,030 --> 00:00:10,314\\nThis is a former NATO base,\\n\\n6\\n00:00:10,414 --> 00:00:13,903\\nwhich nowadays serves a a living and working environment\\n\\n7\\n00:00:14,003 --> 00:00:15,189\\nfor artists and scientists.\\n\\n8\\n00:00:16,356 --> 00:00:18,733\\nHere grow fine arts and architecture.\\n\\n9\\n00:00:19,075 --> 00:00:20,299\\nI love this place.\\n\\n10\\n00:00:20,496 --> 00:00:23,177\\nIt is wide and open, for everyone who\\n\\n11\\n00:00:23,277 --> 00:00:26,496\\nis looking for new aspects and point of views.\\n\\n12\\n00:00:26,817 --> 00:00:28,182\\nIt's open for the public.\\n\\n13\\n00:00:28,754 --> 00:00:31,953\\nIt's a little bit like Wikipedia, isn't it?\\n\\n14\\n00:00:32,561 --> 00:00:36,017\\nI've been part of the Wikimedia Universe since 2004\\n\\n15\\n00:00:36,117 --> 00:00:37,703\\nand I am still fascinated.\\n\\n16\\n00:00:38,633 --> 00:00:42,982\\nAfter our first wild years on this vivid platform of knowledge\\n\\n17\\n00:00:43,082 --> 00:00:46,348\\nwe now have to take care that our projects evolve\\n\\n18\\n00:00:46,448 --> 00:00:47,588\\nand that they keep alive.\\n\\n19\\n00:00:48,279 --> 00:00:51,788\\nWe need to preserve and enhance the content at the same time.\\n\\n20\\n00:00:51,888 --> 00:00:55,208\\nWith respect to the contributors and respect to the readers.\\n\\n21\\n00:00:56,644 --> 00:01:00,356\\nThrough our work people can find all the information they need \\n\\n22\\n00:01:00,456 --> 00:01:01,840\\nto make better decisions.\\n\\n23\\n00:01:02,275 --> 00:01:03,693\\nWhenever they want.\\n\\n24\\n00:01:03,793 --> 00:01:05,302\\nFreely and independently.\\n\\n25\\n00:01:06,118 --> 00:01:11,510\\nAnd I will do my best to let this not only be a slogan but become reality.\\n\\n26\\n00:01:12,159 --> 00:01:15,174\\nFor you, for me and for everyone else in the world.\\n\\n27\\n00:01:15,502 --> 00:01:16,502\\nThanks.\",\n", + " 'bytes': 1982,\n", + " 'sha1': 'ttykhdq0f5p1ug8pd9p6yy192plrrct',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 69462718,\n", + " 'timestamp': '2012-04-06T19:55:50Z',\n", + " 'user': {'id': 12489, 'text': '80686'},\n", + " 'page': {'id': 18987004,\n", + " 'title': 'CSBS Alice Wiegand.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:01,970 Hi, ich bin Alice, 2 00:00:02,070 --> 00:00:03,183 Benutzername lyzzy, 3 00:00:03,283 --> 00:00:06,454 und ich kandidiere für...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,970\\nHi, ich bin Alice,\\n\\n2\\n00:00:02,070 --> 00:00:03,183\\nBenutzername lyzzy,\\n\\n3\\n00:00:03,283 --> 00:00:06,454\\nund ich kandidiere für das Board of Trustees der Wikimedia Foundation.\\n\\n4\\n00:00:06,560 --> 00:00:08,930\\nWir sind hier auf der Raketenstation Hombroich.\\n\\n5\\n00:00:09,030 --> 00:00:10,314\\nDas ist eine ehemalige NATO-Station,\\n\\n6\\n00:00:10,414 --> 00:00:13,903\\ndie nun als Lebens- und Arbeitsraum\\n\\n7\\n00:00:14,003 --> 00:00:15,189\\nfür Künstler und Wissenschaftler dient.\\n\\n8\\n00:00:16,356 --> 00:00:18,733\\nHier entstehen bildende Kunst und Architektur.\\n\\n9\\n00:00:19,075 --> 00:00:20,299\\nIch liebe diesen Ort.\\n\\n10\\n00:00:20,496 --> 00:00:23,177\\nEr ist weit und offen, für jeden,\\n\\n11\\n00:00:23,277 --> 00:00:26,496\\nder neue Aspekte und Blickwinkel sucht.\\n\\n12\\n00:00:26,817 --> 00:00:28,182\\nOffen für die Allgemeinheit.\\n\\n13\\n00:00:28,754 --> 00:00:31,953\\nEs ist ein wenig wie die Wikipedia, oder?\\n\\n14\\n00:00:32,561 --> 00:00:36,017\\nIch bin seit 2004 Teil des Wikimedia-Universums\\n\\n15\\n00:00:36,117 --> 00:00:37,703\\nund ich bin noch immer fasziniert.\\n\\n16\\n00:00:38,633 --> 00:00:42,982\\nNach unseren ersten wilden Jahren auf dieser lebendigen Plattform des Wissens\\n\\n17\\n00:00:43,082 --> 00:00:46,348\\nmüssen wir uns jetzt darum kümmern, dass unsere Projekte sich entwickeln\\n\\n18\\n00:00:46,448 --> 00:00:47,588\\nund am Leben bleiben.\\n\\n19\\n00:00:48,279 --> 00:00:51,788\\nWir müssen die Inhalte gleichzeitig bewahren und erweitern.\\n\\n20\\n00:00:51,888 --> 00:00:55,208\\nMit Respekt gegenüber den Autoren und gegenüber den Lesern.\\n\\n21\\n00:00:56,644 --> 00:01:00,356\\nDurch unsere Arbeit können Menschen all die Informationen finden, die brauchen,\\n\\n22\\n00:01:00,456 --> 00:01:01,840\\num bessere Entscheidungen treffen zu können.\\n\\n23\\n00:01:02,275 --> 00:01:03,693\\nJederzeit.\\n\\n24\\n00:01:03,793 --> 00:01:05,302\\nFrei und unabhängig.\\n\\n25\\n00:01:06,118 --> 00:01:11,510\\nUnd ich will mein Bestes geben, damit das nicht nur ein Slogan bleibt sondern Realität wird.\\n\\n26\\n00:01:12,159 --> 00:01:15,174\\nFür mich, für dich und für jeden auf der Welt.\\n\\n27\\n00:01:15,502 --> 00:01:16,502\\nDanke.',\n", + " 'bytes': 2089,\n", + " 'sha1': 'm883uz2x2cqgyd2x8xkzn8q7kpjvixc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 69466503,\n", + " 'timestamp': '2012-04-06T21:37:55Z',\n", + " 'user': {'id': 12489, 'text': '80686'},\n", + " 'page': {'id': 18988014,\n", + " 'title': 'CSBS Raúl Gutiérrez.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,563 --> 00:00:03,841\\nGreat thanks to the community and\\n\\n2\\n00:00:03,841 --> 00:00:07,050\\nthank your for the opportunity of introducing myself.\\n\\n3\\n00:00:07,050 --> 00:00:08,921\\nI am Raúl Gutiérez,\\n\\n4\\n00:00:08,921 --> 00:00:10,076\\na mexican national and,\\n\\n5\\n00:00:10,076 --> 00:00:11,560\\nas I sometimes call myself,\\n\\n6\\n00:00:11,560 --> 00:00:14,121\\na citizen of the world.\\n\\n7\\n00:00:14,121 --> 00:00:16,680\\nFate provided the opportunity of interacting\\n\\n8\\n00:00:16,680 --> 00:00:18,645\\nwith many people from the world,\\n\\n9\\n00:00:18,645 --> 00:00:20,560\\nworking in many different environments and\\n\\n10\\n00:00:20,560 --> 00:00:22,482\\nwith the unique opportunity of learning\\n\\n11\\n00:00:22,482 --> 00:00:25,127\\na littlebit of many different cultures.\\n\\n12\\n00:00:25,127 --> 00:00:26,922\\nI am grateful for the opportunity\\n\\n13\\n00:00:26,922 --> 00:00:28,562\\nto participate in this election\\n\\n14\\n00:00:28,562 --> 00:00:30,880\\nand the possibility of supporting the Foundation\\n\\n15\\n00:00:30,880 --> 00:00:32,883\\non such an important mission.\\n\\n16\\n00:00:32,883 --> 00:00:35,680\\nAgain, thank you for the opportunity\\n\\n17\\n00:00:35,680 --> 00:00:37,723\\nand I am looking forward to being elected.\\n\\n18\\n00:00:37,723 --> 99:59:59,000\\nAll the best to everyone!',\n", + " 'bytes': 1239,\n", + " 'sha1': 'eoj1e9vnnelnaw1d4ydr60zmif4uu9f',\n", + " 'parent_id': 69466467,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 69860011,\n", + " 'timestamp': '2012-04-15T17:03:20Z',\n", + " 'user': {'id': 57323, 'text': 'Brochon99'},\n", + " 'page': {'id': 19073762,\n", + " 'title': 'Monmouthpedia video revised.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Done',\n", + " 'text': \"1\\n00:00:15,036 --> 00:00:17,032\\nJ'ai lancé MonmouthpediA parce que je crois\\n\\n2\\n00:00:17,032 --> 00:00:18,076\\nque la connaissance peut donner un contexte\\n\\n3\\n00:00:18,076 --> 00:00:20,012\\net nous permettre de mieux apprécier\\n\\n4\\n00:00:20,012 --> 00:00:21,036\\nles choses qui nous entourent.\\n\\n5\\n00:00:21,062 --> 00:00:24,035\\nLe projet est une collaboration entre Wikimedia UK,\\n\\n6\\n00:00:24,035 --> 00:00:26,072\\nle Monmouthshire County Council, les musées,\\n\\n7\\n00:00:26,072 --> 00:00:28,064\\nla bibliothèque, l'Université du pays de Galles,\\n\\n8\\n00:00:28,064 --> 00:00:30,052\\nle Cardiff Met, mais le plus important\\n\\n9\\n00:00:30,052 --> 00:00:32,048\\nce sont les contributeurs individuels,\\n\\n10\\n00:00:32,048 --> 00:00:34,035\\ndes groupes communautaires locaux,\\n\\n11\\n00:00:34,035 --> 00:00:36,006\\net les personnes non seulement de Monmouth,\\n\\n12\\n00:00:36,006 --> 00:00:38,056\\nmais aussi du monde entier qui créent du contenu\\n\\n13\\n00:00:38,056 --> 00:00:40,003\\net d'atteindre cet objectif.\\n\\n14\\n00:00:40,003 --> 00:00:41,079\\nUn code QR est un code barre\\n\\n15\\n00:00:41,079 --> 00:00:43,039\\nqui est lu par un téléphone ou une tablette\\n\\n16\\n00:00:43,039 --> 00:00:45,020\\net qui conduit vers une page Web.\\n\\n17\\n00:00:45,020 --> 00:00:47,039\\nLa beauté de QRpédia est que\\n\\n18\\n00:00:47,039 --> 00:00:49,008\\npeu importe la langue du téléphone,\\n\\n19\\n00:00:49,008 --> 00:00:51,048\\non est dirigé vers l'article dans cette langue.\\n\\n20\\n00:00:51,048 --> 00:00:53,068\\nUn téléphone en Espagnol mènera\\n\\n21\\n00:00:53,068 --> 00:00:55,003\\nvers l'article en Espagnol,\\n\\n22\\n00:00:55,003 --> 00:00:56,056\\nun téléphone allemand, article en Allemand.\\n\\n23\\n00:00:56,095 --> 00:00:59,093\\nPour nous, l'intérêt des codes QR\\n\\n24\\n00:00:59,093 --> 00:01:02,090\\nest qu'ils permettent aux visiteurs de lire\\n\\n25\\n00:01:02,090 --> 00:01:05,088\\nles informations dans leurs langues.\\n\\n26\\n00:01:05,088 --> 00:01:08,077\\nC'est un grand avantage, spécialement à Monmouth.\\n\\n27\\n00:01:08,077 --> 00:01:11,012\\nLa langue galloise est une possibilité,\\n\\n28\\n00:01:11,012 --> 00:01:13,052\\nmais aussi toutes les autres langues du monde.\\n\\n29\\n00:01:13,052 --> 00:01:16,068\\nL'autre avantage d'un point de vue de conservateur\\n\\n30\\n00:01:16,068 --> 00:01:19,004\\nest que nous aimerions donner aux visiteurs\\n\\n31\\n00:01:19,004 --> 00:01:21,055\\ndes tonnes d'informations,\\n\\n32\\n00:01:21,055 --> 00:01:24,037\\nmais nous ne pouvons pas avec nos étiquettes\\n\\n33\\n00:01:24,037 --> 00:01:26,023\\ncar il n'y a pas assez d'espace.\\n\\n34\\n00:01:26,085 --> 00:01:29,088\\nNous avons un bâtiment classé 1 étoile\\n\\n35\\n00:01:29,088 --> 00:01:32,060\\navec de grandes histoires à raconter,\\n\\n36\\n00:01:32,060 --> 00:01:34,096\\nbeaucoup d'évènements ont eu lieu\\n\\n37\\n00:01:34,096 --> 00:01:37,063\\ndans ce bâtiment et pourtant nous avons\\n\\n38\\n00:01:37,063 --> 00:01:40,011\\nune collection très restreinte.\\n\\n39\\n00:01:40,011 --> 00:01:42,019\\nDonc en utilisant les codes QRpedia,\\n\\n40\\n00:01:42,019 --> 00:01:44,032\\ncela donne accès à un large éventail\\n\\n41\\n00:01:44,032 --> 00:01:48,082\\nd'informations sur l'histoires et les artefacts.\\n\\n42\\n00:01:50,002 --> 00:01:52,014\\nEn tant qu'étudiante en histoire, il est bon\\n\\n43\\n00:01:52,014 --> 00:01:54,092\\nde choisir les informations que je peux voir et\\n\\n44\\n00:01:54,092 --> 00:01:58,035\\nde ne pas être bombardée de renseignements\\n\\n45\\n00:01:58,035 --> 00:02:01,096\\nce qui peut être intimidant lorsque l'on\\n\\n46\\n00:02:01,096 --> 00:02:03,078\\nvisite un musée.\\n\\n47\\n00:02:04,060 --> 00:02:06,066\\nC'est fantastique que Monmouth soit\\n\\n48\\n00:02:06,066 --> 00:02:09,062\\nl'une des premières villes à offrir les codes QR.\\n\\n49\\n00:02:09,062 --> 00:02:12,058\\nGrâce au projet QRpedia, la ville aura\\n\\n50\\n00:02:12,058 --> 00:02:14,096\\nune visibilité internationale.\\n\\n51\\n00:02:14,096 --> 00:02:17,045\\nCela amènera un grand nombre de gens\\n\\n52\\n00:02:17,045 --> 00:02:19,082\\nde la planète à connaitre notre histoire\\n\\n53\\n00:02:19,082 --> 00:02:21,062\\ntout à fait fascinante.\\n\\n54\\n00:02:22,054 --> 00:02:24,099\\nL'auteur William Gibson dit cette phrase célèbre :\\n\\n55\\n00:02:24,099 --> 00:02:26,056\\n« Le futur est déjà là.\\n\\n56\\n00:02:26,056 --> 00:02:28,056\\nIl est simplement réparti inégalement ».\\n\\n57\\n00:02:28,056 --> 00:02:31,020\\nEn embrassant la technologie QRpedia\\n\\n58\\n00:02:31,020 --> 00:02:33,096\\net en devenant une ville WiFi, Monmouth\\n\\n59\\n00:02:33,096 --> 00:02:37,040\\nest un exemple pratique de communautés\\n\\n60\\n00:02:37,040 --> 00:02:40,021\\nréunies à la fois localement et globalement,\\n\\n61\\n00:02:40,021 --> 00:02:43,051\\nafin de créer et partager un nouveau sens du lieu\\n\\n62\\n00:02:43,051 --> 00:02:46,033\\net aussi de permettre une nouvelle expérience\\n\\n63\\n00:02:46,033 --> 00:02:48,009\\naux visiteurs de la ville.\",\n", + " 'bytes': 4664,\n", + " 'sha1': 'ea99fp4dnsn0fdsq0usgrzi55sv9ptu',\n", + " 'parent_id': 69776777,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 87380972,\n", + " 'timestamp': '2013-01-12T16:43:20Z',\n", + " 'user': {'id': 889002, 'text': 'Rock drum'},\n", + " 'page': {'id': 19075260,\n", + " 'title': 'Monmouthpedia video revised.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'small corrections',\n", + " 'text': '1\\n00:00:15,045 --> 00:00:17,016\\nI started MonmouthpediA because I think\\n\\n2\\n00:00:17,016 --> 00:00:18,079\\nthat knowledge can give us context and\\n\\n3\\n00:00:18,079 --> 00:00:21,022\\nallow us to appreciate the things around us more.\\n\\n4\\n00:00:21,064 --> 00:00:24,063\\nThe project is a collaboration between Wikimedia UK,\\n\\n5\\n00:00:24,063 --> 00:00:26,072\\nMonmouthshire County Council, the museums,\\n\\n6\\n00:00:26,072 --> 00:00:29,036\\nthe library, University of Wales, Cardiff Met,\\n\\n7\\n00:00:29,036 --> 00:00:32,023\\nbut most importantly individual contributors,\\n\\n8\\n00:00:32,023 --> 00:00:34,076\\nlocal community groups and people\\n\\n9\\n00:00:34,076 --> 00:00:36,044\\nnot just from Monmouth but from all over\\n\\n10\\n00:00:36,044 --> 00:00:38,076\\nthe world that are creating the content and\\n\\n11\\n00:00:38,076 --> 00:00:39,096\\nmaking this happen.\\n\\n12\\n00:00:40,019 --> 00:00:41,086\\nA QR code is a kind of bar code\\n\\n13\\n00:00:41,086 --> 00:00:43,032\\nthat you can read through your phone or\\n\\n14\\n00:00:43,032 --> 00:00:45,094\\ntablet computer and it can take you to a web page.\\n\\n15\\n00:00:45,094 --> 00:00:47,060\\nThe great thing about QRpedia is that\\n\\n16\\n00:00:47,060 --> 00:00:49,003\\nwhatever language your phone is in\\n\\n17\\n00:00:49,003 --> 00:00:51,040\\nit will take you through to that language page\\n\\n18\\n00:00:51,040 --> 00:00:52,018\\non Wikipedia.\\n\\n19\\n00:00:52,018 --> 00:00:53,075\\nIf you have a Spanish phone\\n\\n20\\n00:00:53,075 --> 00:00:55,034\\nit will take you though to the Spanish article,\\n\\n21\\n00:00:55,034 --> 00:00:56,065\\nGerman, German article.\\n\\n22\\n00:00:56,065 --> 00:00:58,096\\nI think the real attraction of QR codes for us\\n\\n23\\n00:00:58,096 --> 00:01:03,060\\nis it gives us the chance to let people see our\\n\\n24\\n00:01:03,060 --> 00:01:05,060\\ninformation in their own language which\\n\\n25\\n00:01:05,060 --> 00:01:08,011\\nis a great boon, especially in Monmouth.\\n\\n26\\n00:01:08,011 --> 00:01:10,092\\nThe Welsh language is a possibility\\n\\n27\\n00:01:10,092 --> 00:01:12,096\\nbut also all the other world languages.\\n\\n28\\n00:01:12,096 --> 00:01:16,095\\nThe other big advantage from a curatorial\\n\\n29\\n00:01:16,095 --> 00:01:19,024\\npoint of view is that we just love to give people\\n\\n30\\n00:01:19,024 --> 00:01:21,052\\ninformation until the \"cows come home\"\\n\\n31\\n00:01:21,052 --> 00:01:24,012\\nand we can\\'t do that in our ordinary labels\\n\\n32\\n00:01:24,012 --> 00:01:26,042\\nbecause there\\'s not enough space.\\n\\n33\\n00:01:26,074 --> 00:01:29,087\\nWhat we have here is a Grade I* listed building\\n\\n34\\n00:01:29,087 --> 00:01:34,004\\nwith great stories to tell, lots of events and activities\\n\\n35\\n00:01:34,004 --> 00:01:36,080\\nwhich have taken place in the building,\\n\\n36\\n00:01:36,080 --> 00:01:39,052\\nand yet we\\'ve got a very, very small collection.\\n\\n37\\n00:01:39,052 --> 00:01:42,080\\nSo using the QRpedia codes, it gives people access\\n\\n38\\n00:01:42,080 --> 00:01:46,028\\nto a wide range of information about the stories,\\n\\n39\\n00:01:46,028 --> 00:01:49,044\\nas well as the artefacts.\\n\\n40\\n00:01:50,022 --> 00:01:53,035\\nAs a history student it\\'s nice to be able to pick and choose\\n\\n41\\n00:01:53,035 --> 00:01:56,080\\nwhich information I can see and not having to be\\n\\n42\\n00:01:56,080 --> 00:02:00,003\\nbombarded with information, which can be quite\\n\\n43\\n00:02:00,003 --> 00:02:03,093\\nintimidating sometimes when you go into a museums.\\n\\n44\\n00:02:04,047 --> 00:02:07,040\\nIt\\'s fantastic that Monmouth is one of the first towns\\n\\n45\\n00:02:07,040 --> 00:02:10,096\\nto offer the QR codes, and that it\\'s going to become\\n\\n46\\n00:02:10,096 --> 00:02:13,092\\ninternationally renowned for the Wikipedia project\\n\\n47\\n00:02:13,092 --> 00:02:17,027\\nis going on here. I think it\\'s going to introduce\\n\\n48\\n00:02:17,027 --> 00:02:20,008\\na lot of people around the world to our\\n\\n49\\n00:02:20,008 --> 00:02:22,032\\nquite fascinating history.\\n\\n50\\n00:02:22,046 --> 00:02:25,004\\nThe author William Gibson once famously said:\\n\\n51\\n00:02:25,004 --> 00:02:28,004\\n\"The future is already here, it\\'s just not very evenly distributed\".\\n\\n52\\n00:02:28,004 --> 00:02:31,032\\nWith Monmouth embracing QRpedia as technology\\n\\n53\\n00:02:31,032 --> 00:02:34,076\\nand becoming a WiFi town, we now have a real\\n\\n54\\n00:02:34,076 --> 00:02:37,067\\npractical example of the way in which we can have\\n\\n55\\n00:02:37,067 --> 00:02:39,090\\ncommunities coming together both locally\\n\\n56\\n00:02:39,090 --> 00:02:43,053\\nand globally, to share and create a new\\n\\n57\\n00:02:43,053 --> 00:02:46,007\\nsense of place in Monmouth and enable\\n\\n58\\n00:02:46,007 --> 00:02:47,093\\nnew visitor experiences for the town.',\n", + " 'bytes': 4455,\n", + " 'sha1': 'e1o0ifhmi2qk8zv8mkxea8gku5d5z0a',\n", + " 'parent_id': 69896018,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 69914345,\n", + " 'timestamp': '2012-04-16T21:21:07Z',\n", + " 'user': {'id': 57323, 'text': 'Brochon99'},\n", + " 'page': {'id': 19116353,\n", + " 'title': 'Monmouthpedia video revised.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '/* Monmouthpedia video */ Now in Spanish',\n", + " 'text': '1\\n00:00:15,045 --> 00:00:17,016\\nComencé MonmouthpediA porque pienso\\n\\n2\\n00:00:17,016 --> 00:00:18,079\\nque el conocimiento nos puede dar un contexto\\n\\n3\\n00:00:18,079 --> 00:00:21,022\\ny permitirnos apreciar más las cosas que nos rodean\\n\\n4\\n00:00:21,064 --> 00:00:24,063\\nEl proyecto es una colaboración entre Wikimedia UK,\\n\\n5\\n00:00:24,063 --> 00:00:26,072\\nel Monmouthsire County Council, los museos,\\n\\n6\\n00:00:26,072 --> 00:00:29,036\\nla biblioteca, la Universidad de Gales, el Cardiff Met,\\n\\n7\\n00:00:29,036 --> 00:00:32,023\\npero lo más importante son los contribuyentes individuales,\\n\\n8\\n00:00:32,023 --> 00:00:34,076\\ngrupos comunitarios locales y gente\\n\\n9\\n00:00:34,076 --> 00:00:36,044\\nno solo de Monmouth, sino gente\\n\\n10\\n00:00:36,044 --> 00:00:38,076\\nde todo el mundo que crea el contenido\\n\\n11\\n00:00:38,076 --> 00:00:39,096\\ny permite que esto ocurra.\\n\\n12\\n00:00:40,019 --> 00:00:41,086\\nUn código QR es un tipo de código de barras\\n\\n13\\n00:00:41,086 --> 00:00:43,032\\nque se puede leer a través del teléfono o\\n\\n14\\n00:00:43,032 --> 00:00:45,094\\ntableta y que puede llevar a una página web.\\n\\n15\\n00:00:45,094 --> 00:00:47,060\\nLo mejor de QRpedia es que\\n\\n16\\n00:00:47,060 --> 00:00:49,003\\nesté en el idioma que esté tu teléfono\\n\\n17\\n00:00:49,003 --> 00:00:51,040\\nte llevará a la página en ese idioma\\n\\n18\\n00:00:51,040 --> 00:00:52,018\\nen Wikipedia.\\n\\n19\\n00:00:52,018 --> 00:00:53,075\\nSi tienes un teléfono en español\\n\\n20\\n00:00:53,075 --> 00:00:55,034\\nte llevará al artículo en español,\\n\\n21\\n00:00:55,034 --> 00:00:56,065\\nun teléfono en alemán, artículo en alemán.\\n\\n22\\n00:00:56,065 --> 00:00:58,096\\nPienso que el verdadero atractivo de los códigos QR para nosotros\\n\\n23\\n00:00:58,096 --> 00:01:03,060\\nes que nos da la posibilidad de permitir a la gente ver nuestra\\n\\n24\\n00:01:03,060 --> 00:01:05,060\\ninformación en su propio idioma, lo que\\n\\n25\\n00:01:05,060 --> 00:01:08,011\\nes una gran ventaja, especialmente en Monmouth.\\n\\n26\\n00:01:08,011 --> 00:01:10,092\\nEl idioma galés es una posibilidad\\n\\n27\\n00:01:10,092 --> 00:01:12,096\\npero también todos los demás idiomas del mundo.\\n\\n28\\n00:01:12,096 --> 00:01:16,095\\nLa otra gran ventaja desde el\\n\\n29\\n00:01:16,095 --> 00:01:19,024\\npunto de vista de un conservador es que nos encanta dar a la gente\\n\\n30\\n00:01:19,024 --> 00:01:21,052\\ninformación hasta la saciedad\\n\\n31\\n00:01:21,052 --> 00:01:24,012\\ny no podemos hacerlo en nuestras etiquetas normales\\n\\n32\\n00:01:24,012 --> 00:01:26,042\\nporque no hay suficiente espacio.\\n\\n33\\n00:01:26,074 --> 00:01:29,087\\nLo que tenemos aquí es un edificio clasificado de Grado I\\n\\n34\\n00:01:29,087 --> 00:01:34,004\\ncon grandes historias que contar, montones de acontecimientos y hechos\\n\\n35\\n00:01:34,004 --> 00:01:36,080\\nque tuvieron lugar en el edificio,\\n\\n36\\n00:01:36,080 --> 00:01:39,052\\ny aún tenemos una muy, muy pequeña recopilación.\\n\\n37\\n00:01:39,052 --> 00:01:42,080\\nAsí, el uso de los códigos QRpedia, ofrece a la gente acceso\\n\\n38\\n00:01:42,080 --> 00:01:46,028\\na un amplio abanico de información sobre las historias,\\n\\n39\\n00:01:46,028 --> 00:01:49,044\\nasí como a los objetos.\\n\\n40\\n00:01:50,022 --> 00:01:53,035\\nComo estudiante de historia es agradable seleccionar y elegir\\n\\n41\\n00:01:53,035 --> 00:01:56,080\\nqué información puedo ver y no tener que ser\\n\\n42\\n00:01:56,080 --> 00:02:00,003\\nbombardeado con información, que puede llegar a\\n\\n43\\n00:02:00,003 --> 00:02:03,093\\nintimidar en algunas ocasiones cuando visitas museos.\\n\\n44\\n00:02:04,047 --> 00:02:07,040\\nEs fantástico que Monmouth sea una de las primeras localidades\\n\\n45\\n00:02:07,040 --> 00:02:10,096\\nen ofrecer códigos QR, y esto va a ser\\n\\n46\\n00:02:10,096 --> 00:02:13,092\\ninternacionalmente reconocido por el proyecto en Wikipedia\\n\\n47\\n00:02:13,092 --> 00:02:17,027\\nque está en marcha aquí. Pienso que dará a conocer\\n\\n48\\n00:02:17,027 --> 00:02:20,008\\na mucha gente de todo el mundo nuestra\\n\\n49\\n00:02:20,008 --> 00:02:22,032\\ninteresante historia.\\n\\n50\\n00:02:22,046 --> 00:02:25,004\\nEl autor, otrora famoso, William Gibson dijo:\\n\\n51\\n00:02:25,004 --> 00:02:28,004\\n\"El futuro ya está aquí, sólo que está distribuido de forma desigual\".\\n\\n52\\n00:02:28,004 --> 00:02:31,032\\nCon Monmouth adoptando QRpedia como tecnología\\n\\n53\\n00:02:31,032 --> 00:02:34,076\\ny convirtiéndose en una localidad WiFI, tenemos ahora un\\n\\n54\\n00:02:34,076 --> 00:02:37,067\\nejemplo práctico y real del modo en el que podemos tener\\n\\n55\\n00:02:37,067 --> 00:02:39,090\\ncomunidades aunando esfuerzos tanto local\\n\\n56\\n00:02:39,090 --> 00:02:43,053\\ncomo globalmente, para compartir y crear un nuevo\\n\\n57\\n00:02:43,053 --> 00:02:46,007\\nsignificado de lugar en Monmouth y permitir\\n\\n58\\n00:02:46,007 --> 00:02:47,093\\nnuevas experiencias a los visitantes a la localidad.',\n", + " 'bytes': 4669,\n", + " 'sha1': 'oc1j877yf1oin4yd98eo9g5dmk02wmp',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 70388918,\n", + " 'timestamp': '2012-04-28T20:49:49Z',\n", + " 'user': {'id': 50587, 'text': 'Nemo bis'},\n", + " 'page': {'id': 19250395,\n", + " 'title': 'Wikimedia Italia - WikiGuida 4 - Wikiquote.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'by Christian Biasco, CC-BY-SA (via email, per contract with WMIT)',\n", + " 'text': '1\\n00:00:09,016 --> 00:00:13,075\\nWikiquote è un\\'antologia libera e multilingue che raccoglie e organizza\\n\\n2\\n00:00:13,096 --> 00:00:17,698\\naforismi e citazioni particolarmente significativi o illustrativi.\\n\\n3\\n00:00:17,923 --> 00:00:21,048\\nOltre alle frasi di persone o personaggi noti, \\n\\n4\\n00:00:21,084 --> 00:00:25,746\\nWikiquote colleziona anche espressioni rilevanti senza una paternità precisa, \\n\\n5\\n00:00:25,794 --> 00:00:28,918\\ncome ad esempio i proverbi e i modi di dire.\\n\\n6\\n00:00:29,983 --> 00:00:33,273\\nTutte le citazioni degne di nota di uno specifico autore \\n\\n7\\n00:00:33,325 --> 00:00:35,768\\nsono inserite in una voce a lui dedicata.\\n\\n8\\n00:00:36,205 --> 00:00:38,797\\nNella pagina, le sue frasi sono raggruppate \\n\\n9\\n00:00:38,846 --> 00:00:41,934\\nin base alle opere o ai contesti di provenienza: \\n\\n10\\n00:00:42,046 --> 00:00:46,986\\nopere letterarie, teatrali o musicali, programmi televisivi o radiofonici, \\n\\n11\\n00:00:47,081 --> 00:00:50,414\\narticoli di giornale, fumetti e cartoni animati… \\n\\n12\\n00:00:50,485 --> 00:00:54,624\\nl\\'importante è che siano fonti reperibili e verificabili.\\n\\n13\\n00:00:55,125 --> 00:00:59,304\\nLe opere collettive, come i film o i romanzi scritti a più mani, \\n\\n14\\n00:00:59,324 --> 00:01:01,916\\nche per definizione non hanno un unico autore, \\n\\n15\\n00:01:01,964 --> 00:01:04,884\\nhanno una loro voce specifica.\\n\\n16\\n00:01:05,084 --> 00:01:08,204\\nIn Wikiquote si raccolgono anche espressioni degne di nota \\n\\n17\\n00:01:08,244 --> 00:01:12,793\\ndi cui l\\'autore è sconosciuto, come proverbi, modi di dire e slogan.\\n\\n18\\n00:01:13,124 --> 00:01:16,051\\nEsistono poi le pagine tematiche che raccolgono \\n\\n19\\n00:01:16,113 --> 00:01:19,630\\nle citazioni dedicate ad uno specifico argomento.\\n\\n20\\n00:01:20,524 --> 00:01:23,613\\nGli accordi internazionali, come pure il diritto italiano, \\n\\n21\\n00:01:23,684 --> 00:01:28,804\\nconcedono la libertà di citazione, purché si rispettino determinate condizioni.\\n\\n22\\n00:01:28,883 --> 00:01:32,736\\nWikiquote è l\\'unico progetto Wikimedia che contiene anche materiale\\n\\n23\\n00:01:32,803 --> 00:01:36,721\\nancora completamente protetto dal copyright tradizionale.\\n\\n24\\n00:01:37,522 --> 00:01:40,493\\nUna citazione deve sempre essere breve \\n\\n25\\n00:01:40,565 --> 00:01:44,968\\ne funzionale a fini didattici, scientifici o, in genere, illustrativi.\\n\\n26\\n00:01:45,042 --> 00:01:47,371\\nLa sua trascrizione deve essere esatta: \\n\\n27\\n00:01:47,442 --> 00:01:51,005\\nnon è corretto attribuire a qualcuno quello che non ha detto.\\n\\n28\\n00:01:51,242 --> 00:01:54,932\\nSe necessario, vanno inserite anche informazioni aggiuntive minime \\n\\n29\\n00:01:55,042 --> 00:01:58,893\\nche possano aiutare a comprendere il valore del brano scelto.\\n\\n30\\n00:01:59,282 --> 00:02:02,556\\nOgni citazione deve essere collegata alla sua fonte.\\n\\n31\\n00:02:02,601 --> 00:02:05,487\\nSono ammesse le citazioni riferite da qualcun altro, \\n\\n32\\n00:02:05,561 --> 00:02:08,712\\nma dove possibile si preferisce la fonte originale.\\n\\n33\\n00:02:09,001 --> 00:02:11,988\\nI riferimenti bibliografici devono essere precisi \\n\\n34\\n00:02:12,001 --> 00:02:16,298\\ne riportati in modo completo nel paragrafo specifico della pagina.\\n\\n35\\n00:02:16,481 --> 00:02:20,451\\nIn Wikiquote si insiste molto sull\\'accuratezza e la precisione delle fonti, \\n\\n36\\n00:02:20,521 --> 00:02:24,365\\ntanto che esiste anche una pagina dedicata alle citazioni \\n\\n37\\n00:02:24,401 --> 00:02:27,997\\nriportate in modo errato o assegnate alla persona sbagliata.\\n\\n38\\n00:02:29,240 --> 00:02:31,950\\nIn passato, l\\'inserimento in Wikiquote \\n\\n39\\n00:02:31,960 --> 00:02:35,691\\ndi citazioni senza l\\'indicazione della fonte era tollerato. \\n\\n40\\n00:02:35,720 --> 00:02:37,720\\nOra invece non è più ammesso.\\n\\n41\\n00:02:37,800 --> 00:02:40,290\\nIn ogni voce, le citazioni senza fonte \\n\\n42\\n00:02:40,307 --> 00:02:42,880\\nsono raccolte in un paragrafo dedicato: \\n\\n43\\n00:02:42,901 --> 00:02:45,382\\nle più improbabili vanno via via eliminate, \\n\\n44\\n00:02:45,425 --> 00:02:48,878\\nmentre per le altre si cerca di rintracciarne la provenienza. \\n\\n45\\n00:02:50,356 --> 00:02:54,487\\nI brani scelti devono esprimere in modo chiaro e sintetico un concetto, \\n\\n46\\n00:02:54,518 --> 00:02:57,260\\no essere, per come sono state scritte o pronunciate, \\n\\n47\\n00:02:57,249 --> 00:03:00,253\\nparticolarmente notevoli e originali.\\n\\n48\\n00:03:00,415 --> 00:03:03,647\\nNon vanno inserite tutte le frasi di una persona o un\\'opera, \\n\\n49\\n00:03:03,665 --> 00:03:06,819\\nma solo le più emblematiche e significative.\\n\\n50\\n00:03:07,247 --> 00:03:10,090\\nLe citazioni sono per loro natura di parte, \\n\\n51\\n00:03:10,164 --> 00:03:12,417\\nma una voce non deve contenere solo quelle \\n\\n52\\n00:03:12,457 --> 00:03:16,056\\nche coincidono con il proprio orientamento politico o gusto personale. \\n\\n53\\n00:03:16,081 --> 00:03:19,850\\nVanno invece selezionate le citazioni che al di là della propria opinione \\n\\n54\\n00:03:19,871 --> 00:03:23,861\\nsono veramente illustrative di un soggetto, un\\'opera o un argomento.\\n\\n55\\n00:03:24,119 --> 00:03:26,863\\nBuona prassi è anche chiedersi se tra dieci anni \\n\\n56\\n00:03:26,918 --> 00:03:29,410\\nla citazione avrà ancora una sua rilevanza. \\n\\n57\\n00:03:29,412 --> 00:03:34,444\\nCol tempo, le citazioni che si rivelano di scarsa importanza vanno cancellate.\\n\\n58\\n00:03:35,240 --> 00:03:38,723\\nIn ogni voce è possibile trovare o aggiungere un collegamento \\n\\n59\\n00:03:38,744 --> 00:03:42,550\\nalle pagine correlate dei progetti fratelli o di siti esterni. \\n\\n60\\n00:03:42,696 --> 00:03:47,759\\nLe citazioni devono infatti fornire spunti per l\\'approfondimento delle loro fonti, \\n\\n61\\n00:03:47,859 --> 00:03:52,238\\nesattamente come una voce enciclopedica è un modo per orientarsi su un tema.\\n\\n62\\n00:03:53,479 --> 00:03:57,103\\nUna citazione inserita in una voce di un autore o di un\\'opera \\n\\n63\\n00:03:57,178 --> 00:04:02,080\\npuò anche essere riportata, in seconda battuta, all\\'interno di voci tematiche, \\n\\n64\\n00:04:02,058 --> 00:04:05,780\\ndove si raccolgono citazioni riguardanti uno specifico argomento.\\n\\n65\\n00:04:05,889 --> 00:04:09,240\\nIn queste pagine vanno aggiunte solo le citazioni \\n\\n66\\n00:04:09,265 --> 00:04:12,160\\nche dicono effettivamente qualcosa di interessante sul tema, \\n\\n67\\n00:04:12,181 --> 00:04:14,940\\nnon quelle che menzionano solamente il concetto.\\n\\n68\\n00:04:16,096 --> 00:04:18,880\\nLe voci tematiche sono organizzate in categorie \\n\\n69\\n00:04:18,846 --> 00:04:21,997\\nche raggruppano i temi a seconda della loro natura. \\n\\n70\\n00:04:22,012 --> 00:04:28,907\\nDalle discipline ai luoghi, dalla politica alle azioni...\\n\\n71\\n00:04:28,964 --> 00:04:32,893\\nIn queste pagine non sono riportati i riferimenti bibliografici, \\n\\n72\\n00:04:32,962 --> 00:04:37,326\\nma si rimanda alla pagina dell\\'autore o dell\\'opera che già li contiene.\\n\\n73\\n00:04:37,996 --> 00:04:40,929\\nLe citazioni sono elencate in ordine alfabetico, \\n\\n74\\n00:04:41,065 --> 00:04:44,355\\na meno che un autore o un\\'opera non abbia dedicato all\\'argomento \\n\\n75\\n00:04:44,340 --> 00:04:47,036\\nun certo numero di brani significativi.\\n\\n76\\n00:04:47,134 --> 00:04:51,083\\nIn queste pagine sono raccolti anche i proverbi, i modi di dire e \\n\\n77\\n00:04:51,116 --> 00:04:54,928\\nin genere tutte quelle espressioni non attribuibili a una persona in particolare \\n\\n78\\n00:04:54,969 --> 00:04:57,288\\nche toccano il tema della pagina.\\n\\n79\\n00:04:57,316 --> 00:04:59,858\\nQuest\\'ultime spesso non hanno altra collocazione \\n\\n80\\n00:04:59,866 --> 00:05:02,411\\nse non in queste voci tematiche.\\n\\n81\\n00:05:02,506 --> 00:05:07,275\\nLe citazioni invece che concernono una persona, un\\'opera o un personaggio \\n\\n82\\n00:05:07,262 --> 00:05:11,404\\nvengono inserite in un capitolo specifico nella loro pagina.\\n\\n83\\n00:05:12,264 --> 00:05:16,251\\nWikiquote in italiano raccoglie esclusivamente frasi in italiano.\\n\\n84\\n00:05:16,457 --> 00:05:19,712\\nMa come per Wikipedia esistono anche una Wikiquote in inglese, \\n\\n85\\n00:05:19,749 --> 00:05:22,522\\nin francese, tedesco e molte altre lingue.\\n\\n86\\n00:05:22,997 --> 00:05:25,708\\nLa versione italiana è attualmente la terza più sviluppata, \\n\\n87\\n00:05:25,727 --> 00:05:28,602\\ndopo quelle inglese e polacca.\\n\\n88\\n00:05:29,402 --> 00:05:32,012\\nPer le citazioni in lingue diverse dall\\'italiano \\n\\n89\\n00:05:32,017 --> 00:05:34,632\\nsi devono usare le traduzioni ufficiali: \\n\\n90\\n00:05:34,794 --> 00:05:37,909\\nnel caso dei film, le parole del doppiaggio italiano, \\n\\n91\\n00:05:37,929 --> 00:05:40,203\\nanche se non tradotte letteralmente; \\n\\n92\\n00:05:40,232 --> 00:05:43,910\\nnel caso dei libri, una traduzione italiana in commercio.\\n\\n93\\n00:05:44,312 --> 00:05:46,312\\nÈ indispensabile riportare sempre \\n\\n94\\n00:05:46,322 --> 00:05:49,841\\nanche il nome del traduttore e dell\\'edizione tradotta.\\n\\n95\\n00:05:50,064 --> 00:05:53,512\\nEccezionalmente è ammessa la versione in lingua originale, \\n\\n96\\n00:05:53,514 --> 00:05:57,943\\nse questa è scritta in una forma particolare o è di difficile traduzione.\\n\\n97\\n00:05:58,224 --> 00:06:01,543\\nIn alcuni casi, come per gli incipit di testi famosi, \\n\\n98\\n00:06:01,584 --> 00:06:04,832\\npossono convivere più traduzioni dello stesso brano.\\n\\n99\\n00:06:05,237 --> 00:06:08,760\\nÈ concesso inserire traduzioni proprie come integrazione \\n\\n100\\n00:06:08,800 --> 00:06:11,001\\nsolo se non ne esistono di ufficiali, \\n\\n101\\n00:06:11,034 --> 00:06:14,662\\ncome ad esempio nel caso di proverbi di lingue straniere.\\n\\n102\\n00:06:15,339 --> 00:06:19,110\\nNel progetto hanno anche un loro spazio i dialetti italiani \\n\\n103\\n00:06:19,150 --> 00:06:22,793\\nda cui vengono ripresi proverbi, modi di dire, filastrocche \\n\\n104\\n00:06:22,825 --> 00:06:26,609\\ne altre espressioni appartenenti alla cultura popolare di una regione.\\n\\n105\\n00:06:27,917 --> 00:06:30,687\\nCome Wikipedia, Wikiquote vive e si sviluppa \\n\\n106\\n00:06:30,690 --> 00:06:32,963\\ngrazie alla collaborazione aperta di tutti. \\n\\n107\\n00:06:33,287 --> 00:06:36,178\\nChiunque può partecipare ed è davvero semplice!\\n\\n108\\n00:06:36,400 --> 00:06:39,319\\nE come disse Giacomo Leopardi scrivendo al fratello: \\n\\n109\\n00:06:39,355 --> 00:06:42,000\\n\"Il fare è il miglior modo d\\'imparare.\"',\n", + " 'bytes': 9892,\n", + " 'sha1': 'lytjxxtqs92m0ec07sv0ttxo9jye1pr',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 70778461,\n", + " 'timestamp': '2012-05-07T08:04:57Z',\n", + " 'user': {'id': 886, 'text': 'Ary29'},\n", + " 'page': {'id': 19253862,\n", + " 'title': 'Wikimedia Italia - WikiGuida 4 - Wikiquote.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'translation completed',\n", + " 'text': '1\\n00:00:09,016 --> 00:00:13,075\\nWikiquote is a free multilingual anthology which collects and sorts \\n\\n2\\n00:00:13,096 --> 00:00:17,698\\nespecially significant or illustrative aphorisms and quotes.\\n\\n3\\n00:00:17,923 --> 00:00:21,048\\nBesides the sentences of people or known characters, \\n\\n4\\n00:00:21,084 --> 00:00:25,746\\nWikiquote collects also relevant words that are attributed to no one,\\n\\n5\\n00:00:25,794 --> 00:00:28,918\\nsuch as proverbs and idioms.\\n\\n6\\n00:00:29,983 --> 00:00:33,273\\nNoteworthy quotes by the same author \\n\\n7\\n00:00:33,325 --> 00:00:35,768\\nare entered in a dedicated page. \\n\\n8\\n00:00:36,205 --> 00:00:38,797\\nIn the page the sentences are arranged \\n\\n9\\n00:00:38,846 --> 00:00:41,934\\nby work or context of origin: \\n\\n10\\n00:00:42,046 --> 00:00:46,986\\nworks of literature, music or theater, television or radio programs,\\n\\n11\\n00:00:47,081 --> 00:00:50,414\\nnewspaper articles, comics and cartoons ...\\n\\n12\\n00:00:50,485 --> 00:00:54,624\\nwhat matters is that they are available and verifiable sources.\\n\\n13\\n00:00:55,125 --> 00:00:59,304\\nCollective works, such as films and novels written by several authors, \\n\\n14\\n00:00:59,324 --> 00:01:01,916\\nwhich by definition do not have a single author,\\n\\n15\\n00:01:01,964 --> 00:01:04,884\\nhave their own specific entry.\\n\\n16\\n00:01:05,084 --> 00:01:08,204\\nWikiquote collects also remarkable expressions \\n\\n17\\n00:01:08,244 --> 00:01:12,793\\nwhose author is unknown, such as proverbs, sayings and slogans.\\n\\n18\\n00:01:13,124 --> 00:01:16,051\\nThere are also thematic pages that collect\\n\\n19\\n00:01:16,113 --> 00:01:19,630\\nquotes related to a specific topic.\\n\\n20\\n00:01:20,524 --> 00:01:23,613\\nInternational agreements, as well as Italian law,\\n\\n21\\n00:01:23,684 --> 00:01:28,804\\ngrant Right to quote, provided that certain terms are observed.\\n\\n22\\n00:01:28,883 --> 00:01:32,736\\nWikiquote is the only Wikimedia project that hosts \\n\\n23\\n00:01:32,803 --> 00:01:36,721\\ncopyrighted material\\n\\n24\\n00:01:37,522 --> 00:01:40,493\\nA quote shall always be short \\n\\n25\\n00:01:40,565 --> 00:01:44,968\\nand useful for educational, scientific or, in general, illustrative purposes.\\n\\n26\\n00:01:45,042 --> 00:01:47,371\\nIts transcription must be accurate:\\n\\n27\\n00:01:47,442 --> 00:01:51,005\\nit is unfair to attribute words to someone who never said them.\\n\\n28\\n00:01:51,242 --> 00:01:54,932\\nIf necessary, minimal additional info should be added\\n\\n29\\n00:01:55,042 --> 00:01:58,893\\nwhich may help explain the value of the piece selected.\\n\\n30\\n00:01:59,282 --> 00:02:02,556\\nEvery quote shall be connected to its source. \\n\\n31\\n00:02:02,601 --> 00:02:05,487\\nCitations reported by someone else can be admitted,\\n\\n32\\n00:02:05,561 --> 00:02:08,712\\nbut, where possible, the original sources are preferred.\\n\\n33\\n00:02:09,001 --> 00:02:11,988\\nBibliographical references shall be accurate\\n\\n34\\n00:02:12,001 --> 00:02:16,298\\nand fully reported in the relevant section of the page. \\n\\n35\\n00:02:16,481 --> 00:02:20,451\\nWikiquote stresses the fact that sources being accurate and detailed, \\n\\n36\\n00:02:20,521 --> 00:02:24,365\\nThere is also a page for quotes \\n\\n37\\n00:02:24,401 --> 00:02:27,997\\nreported incorrectly or attributed to the wrong person.\\n\\n38\\n00:02:29,240 --> 00:02:31,950\\nOnce, adding a quote to Wikiquote \\n\\n39\\n00:02:31,960 --> 00:02:35,691\\nwithout citing sources was tollerated. \\n\\n40\\n00:02:35,720 --> 00:02:37,720\\nIt is no longer so.\\n\\n41\\n00:02:37,800 --> 00:02:40,290\\nIn every article, unsourced quotes\\n\\n42\\n00:02:40,307 --> 00:02:42,880\\nare listed in a separate section:\\n\\n43\\n00:02:42,901 --> 00:02:45,382\\nthe most unlikely are going to be removed, \\n\\n44\\n00:02:45,425 --> 00:02:48,878\\nwhile for the others a reference is sought. \\n\\n45\\n00:02:50,356 --> 00:02:54,487\\nChoose quotes that express a concept in a clear and concise way, \\n\\n46\\n00:02:54,518 --> 00:02:57,260\\nor that are, by the way they have been written or said, \\n\\n47\\n00:02:57,249 --> 00:03:00,253\\nespecially remarkable and original.\\n\\n48\\n00:03:00,415 --> 00:03:03,647\\nDo not insert all statements by a person or from a work, \\n\\n49\\n00:03:03,665 --> 00:03:06,819\\nbut just the most representative and significant.\\n\\n50\\n00:03:07,247 --> 00:03:10,090\\nQuotes are partial by nature, \\n\\n51\\n00:03:10,164 --> 00:03:12,417\\nbut an article must not be limited to those statements\\n\\n52\\n00:03:12,457 --> 00:03:16,056\\nthat suit your political orientation or personal taste.\\n\\n53\\n00:03:16,081 --> 00:03:19,850\\nChoose quotes that, irregardless of your opinion, \\n\\n54\\n00:03:19,871 --> 00:03:23,861\\nare truly representative of a person, a work or a theme.\\n\\n55\\n00:03:24,119 --> 00:03:26,863\\nA good practice is asking yourself if a quote\\n\\n56\\n00:03:26,918 --> 00:03:29,410\\nwill still be relevant ten years from now. \\n\\n57\\n00:03:29,412 --> 00:03:34,444\\nIn time, quotes that have little importance left will be removed.\\n\\n58\\n00:03:35,240 --> 00:03:38,723\\nIn every article you can find or add a link\\n\\n59\\n00:03:38,744 --> 00:03:42,550\\nto similar pages on sister projects or other relevant websites. \\n\\n60\\n00:03:42,696 --> 00:03:47,759\\nQuotes should indeed give suggestions to further explore their sources, \\n\\n61\\n00:03:47,859 --> 00:03:52,238\\njust like an entry in the encyclopedia is a way to start exploring a topic.\\n\\n62\\n00:03:53,479 --> 00:03:57,103\\nA quote listed in the article of an author or work\\n\\n63\\n00:03:57,178 --> 00:04:02,080\\ncan also be added to theme pages \\n\\n64\\n00:04:02,058 --> 00:04:05,780\\nwhere quotes about a specific topic are collected.\\n\\n65\\n00:04:05,889 --> 00:04:09,240\\nIn such pages quotes can be added\\n\\n66\\n00:04:09,265 --> 00:04:12,160\\nthat actually say something interesting about the theme, \\n\\n67\\n00:04:12,181 --> 00:04:14,940\\nnot those that just simply mention the concept.\\n\\n68\\n00:04:16,096 --> 00:04:18,880\\nTheme pages are organized into categories \\n\\n69\\n00:04:18,846 --> 00:04:21,997\\nthat group themes together according to their nature. \\n\\n70\\n00:04:22,012 --> 00:04:28,907\\nFrom science to places, from politics to occupations...\\n\\n71\\n00:04:28,964 --> 00:04:32,893\\nTheme pages do not contain bibliographical references, \\n\\n72\\n00:04:32,962 --> 00:04:37,326\\nfor that they refer to the author\\'s or work\\'s page.\\n\\n73\\n00:04:37,996 --> 00:04:40,929\\nQuotes are listed in alphabetical order, \\n\\n74\\n00:04:41,065 --> 00:04:44,355\\nunless a significant number of quotes on the subject\\n\\n75\\n00:04:44,340 --> 00:04:47,036\\ncome from the same author or work.\\n\\n76\\n00:04:47,134 --> 00:04:51,083\\nTheme pages also include proverbs, sayings and \\n\\n77\\n00:04:51,116 --> 00:04:54,928\\ngenerally all sorts of expressions that cannot be attributed to someone in particular\\n\\n78\\n00:04:54,969 --> 00:04:57,288\\nprovided these quotes are relevant to the theme.\\n\\n79\\n00:04:57,316 --> 00:04:59,858\\nSuch unattributed quotes often cannot be put anywhere else\\n\\n80\\n00:04:59,866 --> 00:05:02,411\\nbut theme pages.\\n\\n81\\n00:05:02,506 --> 00:05:07,275\\nQuotes about a person, a work or a character\\n\\n82\\n00:05:07,262 --> 00:05:11,404\\nare instead added in their respective pages under a specific section.\\n\\n83\\n00:05:12,264 --> 00:05:16,251\\nItalian Wikiquote collects only sentences in Italian.\\n\\n84\\n00:05:16,457 --> 00:05:19,712\\nBut, just like Wikipedia, Wikiquote exists also in English, \\n\\n85\\n00:05:19,749 --> 00:05:22,522\\nFrench, German and many more languages.\\n\\n86\\n00:05:22,997 --> 00:05:25,708\\nThe Italian version is currently the third in size, \\n\\n87\\n00:05:25,727 --> 00:05:28,602\\nafter the English and the Polish ones.\\n\\n88\\n00:05:29,402 --> 00:05:32,012\\nFor quotes originally in a language other than Italian \\n\\n89\\n00:05:32,017 --> 00:05:34,632\\nofficial translations must be used: \\n\\n90\\n00:05:34,794 --> 00:05:37,909\\nfor movies, quote the words of the Italian dubbing, \\n\\n91\\n00:05:37,929 --> 00:05:40,203\\neven if they are not a verbatim translation; \\n\\n92\\n00:05:40,232 --> 00:05:43,910\\nfor books, quotes from any Italian edition on sale.\\n\\n93\\n00:05:44,312 --> 00:05:46,312\\nIt is necessary to always cite\\n\\n94\\n00:05:46,322 --> 00:05:49,841\\nthe name of the translator and the translation edition.\\n\\n95\\n00:05:50,064 --> 00:05:53,512\\nExceptionally, the quote in the original language can be added\\n\\n96\\n00:05:53,514 --> 00:05:57,943\\nif it is written in a particular form or can hardly be translated.\\n\\n97\\n00:05:58,224 --> 00:06:01,543\\nIn some cases, for instance the opening words of famous works, \\n\\n98\\n00:06:01,584 --> 00:06:04,832\\nseveral translations of the same quote can exist at the same time.\\n\\n99\\n00:06:05,237 --> 00:06:08,760\\nYou are allowed to include your own translation as an integration\\n\\n100\\n00:06:08,800 --> 00:06:11,001\\nonly if no official translation exist, \\n\\n101\\n00:06:11,034 --> 00:06:14,662\\nsuch as proverbs in a foreign language.\\n\\n102\\n00:06:15,339 --> 00:06:19,110\\nThe project provides a space also for Italian dialects\\n\\n103\\n00:06:19,150 --> 00:06:22,793\\nwhen it comes to proverbs, sayings, rhymes\\n\\n104\\n00:06:22,825 --> 00:06:26,609\\nand other expressions of the regional folklore.\\n\\n105\\n00:06:27,917 --> 00:06:30,687\\nLike Wikipedia, Wikiquote exists and grows\\n\\n106\\n00:06:30,690 --> 00:06:32,963\\nthanks to the open cooperation of all. \\n\\n107\\n00:06:33,287 --> 00:06:36,178\\nAnyone can contribute and it is really simple!\\n\\n108\\n00:06:36,400 --> 00:06:39,319\\nAnd quoting Giacomo Leopardi writing to his brother: \\n\\n109\\n00:06:39,355 --> 00:06:42,000\\n\"Doing is the best way to learn.\"',\n", + " 'bytes': 9157,\n", + " 'sha1': 'oun3zpvtsg0e8xxjui9qt2w8nthd2ai',\n", + " 'parent_id': 70626837,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606351241,\n", + " 'timestamp': '2021-11-09T09:25:30Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 19397085,\n", + " 'title': 'Yeager supersonic flight 1947.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Yeager supersonic flight 1947.ogg.es.srt]] to [[TimedText:Yeager supersonic flight 1947.ogv.es.srt]]: rename of the original file',\n", + " 'text': '0 \\n00:00:00,000 --> 00:00:05,500\\nEn Octubre de 1947 en el centro de pruebas del desierto de Muroc en California USA\\n\\n1\\n00:00:06,000 --> 00:00:09,500 \\nse hace historia con el avión XS-1\\n\\n2 \\n00:00:10,000 --> 00:00:13,500 \\ny su piloto, Capitán Charles E. Yeager. \\n\\n3 \\n00:00:14,000 --> 00:00:18,500 \\nEste aeroplano y su piloto están a punto de ser los primeros en volar\\n\\n4 \\n00:00:19,000 --> 00:00:22,000 \\nmás rápido que la velocidad del sonido a nivel de vuelo. \\n\\n5 \\n00:00:25,000 --> 00:00:26,900 \\nUn B-29 hará sobrevolar al XS-1 \\n\\n6 \\n00:00:27,000 --> 00:00:32,000 \\ny lo lanzará a una altitud de cerca de 10,000 metros sobre nivel del mar.\\n\\n7 \\n00:00:33,000 --> 00:00:34,500 \\nEl XS-1 no es un avión militar\\n\\n8 \\n00:00:35,000 --> 00:00:37,500 \\nsino un laboratorio de investigación aereo\\n \\n9 \\n00:00:38,000 --> 00:00:40,500 \\ndiseñado para probar los efectos en los vuelos supersónicos a bordo de aeroplanos.\\n\\n10 \\n00:00:42,000 --> 00:00:44,500 \\nEste es alimentado por cuatro motores de cohete\\n\\n11 \\n00:00:45,000 --> 00:00:48,500 \\nsu peso sin carga es de menos de 2,200 Kilogramos\\n\\n12 \\n00:00:49,000 --> 00:00:53,000 \\npero carga hasta 3,600 Kilogramos de combustible. \\n\\n13 \\n00:00:54,000 --> 00:00:56,500 \\nEl B-29 ha realizado un gran número de cosas memorables\\n\\n14 \\n00:00:57,000 --> 00:01:01,500 \\npero ninguna misión anterior nunca tuvo una tarea parecida a esta\\n\\n15 \\n00:01:02,000 --> 00:01:06,000 \\ny ningún aeroplano nunca ha realizado lo que el XS-1 está por llevar acabo. \\n\\n16 \\n00:01:16,000 --> 00:01:17,500 \\nRompiendo la barrera del sonido a nivel de vuelo\\n\\n17 \\n00:01:18,000 --> 00:01:20,500 \\nrealizando una hazaña más que espectacular\\n\\n18 \\n00:01:21,000 --> 00:01:27,000 \\nEsta hazaña también arrojará valioso conocimiento acerca de los nuevos sistemas de propulsión.\\n\\n19 \\n00:01:28,000 --> 00:01:29,500 \\nÉl capitán Yeager estará a bordo del XS-1,\\n\\n20 \\n00:01:30,000 --> 00:01:33,000 \\néste no puede ser un vuelo de larga duración, éste será un vuelo en un pequeño avión\\n\\n\\n21 \\n00:01:34,000 --> 00:01:37,500 \\na máxima potencia que no puede durar más allá de dos y medio minutos\\n\\n22 \\n00:01:38,000 --> 00:01:41,000 \\npero será un vuelo muy rápido.\\n\\n\\n23 \\n00:01:59,000 --> 00:02:01,000 \\nListos! \\n\\n24 \\n00:02:01,000 --> 00:02:02,500 \\nÉl equipo de radar está listo,\\n\\n25 \\n00:02:03,000 --> 00:02:05,500 \\npara realizar el cronometraje, el único método posible\\n\\n26 \\n00:02:06,000 --> 00:02:09,000 \\npara tomar tiempos del avión en altitudes extremadamente altas.\\n\\n\\n27 \\n00:02:14,000 --> 00:02:14,500 \\nAquí va!\\n\\n28 \\n00:02:15,000 --> 00:02:19,000 \\nun gran momento de la historia está en vuelo.\\n\\n29 \\n00:02:24,000 --> 00:02:25,500 \\nahora se aproxima a la barrera del sonido.\\n\\n30 \\n00:02:26,000 --> 00:02:32,000 \\nLa velocidad del sonido a 10668 metros de altura es de 1060 Km/h.\\n\\n31 \\n00:02:33,000 --> 00:02:36,500 \\nEl gran momento importante. Atraviesa la barrera del sonido.\\n\\n32 \\n00:02:37,000 --> 00:02:39,500 \\nPor primera vez en la histora a nivel de vuelo.\\n\\n33 \\n00:02:40,000 --> 00:02:48,500 \\nPor primera vez en la historia un hombre ha volado en un avión a mayor velocidad que la velocidad del sonido. \\n\\n34 \\n00:02:49,000 --> 00:02:53,500 \\nEste evento trae grandes honores al capitán Yeage, y al avión hitórico XS-1 \\n\\n35 \\n00:02:54,000 --> 00:02:59,000 \\nle ha ganado tener se lugar de descanso en el Instituto Smithsoniano.',\n", + " 'bytes': 3338,\n", + " 'sha1': 'kj84frpyd5sk0emkqz9tndtg8zcw9px',\n", + " 'parent_id': 180614982,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 133638464,\n", + " 'timestamp': '2014-09-03T21:00:54Z',\n", + " 'user': {'id': 568922, 'text': 'Raylton P. Sousa'},\n", + " 'page': {'id': 19442229,\n", + " 'title': '¿Qué es Wikipedia?.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Typo: Deixando mais adequando ao contexto lusófono.',\n", + " 'text': '\\ufeff1\\n00:00:04,500 --> 00:00:05,500\\nOlá!\\n\\n2\\n00:00:05,650 --> 00:00:07,500\\nMeu nome é Mariana e quero falar sobre a Wikipédia.\\n\\n3\\n00:00:07,840 --> 00:00:09,500\\nCom certeza a conhece e usa.\\n\\n4\\n00:00:09,750 --> 00:00:12,000\\nMas sabe do que se trata realmente\\n\\n5\\n00:00:12,000 --> 00:00:13,000\\ne como é feita?\\n\\n6\\n00:00:13,360 --> 00:00:16,050\\nAinda que pareça uma enciclopédia peculiar,\\n\\n7\\n00:00:16,300 --> 00:00:18,500\\nela persegue o mesmo que as enciclopédias tradicionais:\\n\\n8\\n00:00:18,750 --> 00:00:22,250\\n\"Reunir de maneira organizada todo o conhecimento gerado pela humanidade\".\\n\\n9\\n00:00:22,500 --> 00:00:25,800\\nMas a Wikipédia tem também algumas diferenças significativas\\n\\n10\\n00:00:25,700 --> 00:00:27,750\\ndas enciclopédias tradicionais.\\n\\n11\\n00:00:27,610 --> 00:00:28,400\\nDentre outras,\\n\\n12\\n00:00:28,400 --> 00:00:31,250\\ntrata-se de uma enciclopédia desenvolvimento por milhares de voluntários\\n\\n13\\n00:00:31,500 --> 00:00:35,500\\ncom o objetivo de \"espalhar\" o conhecimento para cada pessoal do planeta\\n\\n14\\n00:00:35,500 --> 00:00:36,600\\nem seu próprio idioma\\n\\n15\\n00:00:36,650 --> 00:00:37,840\\ncomo é feita?\\n\\n16\\n00:00:37,850 --> 00:00:41,500\\nQuais são as regras que organizam e guiam os wikipedistas?\\n\\n17\\n00:00:41,750 --> 00:00:43,800\\nÉ disto que trata este vídeo.\\n\\n18\\n00:00:49,000 --> 00:00:52,800\\nQualquer pessoa pode adicionar ou corrigir informações na Wikipédia,\\n\\n19\\n00:00:52,900 --> 00:00:55,800\\nmas devem lembrar que se trata de uma enciclopédia.\\n\\n20\\n00:00:55,800 --> 00:00:58,700\\nIsso significa que não aceitamos pesquisas originais\\n\\n21\\n00:00:58,700 --> 00:00:59,455\\ne ensaios.\\n\\n22\\n00:00:59,455 --> 00:01:02,000\\nQue artigos devem ser de interesse universal,\\n\\n23\\n00:01:02,000 --> 00:01:05,200\\ne que devem ser evitadas informações de caráter efêmero (temporário).\\n\\n24\\n00:01:05,200 --> 00:01:06,950\\nEssa é a primeira regra,\\n\\n25\\n00:01:06,950 --> 00:01:08,500\\nou como chamam os wikipedistas:\\n\\n26\\n00:01:08,500 --> 00:01:09,400\\n\"O primeiro pilar\"\\n\\n27\\n00:01:09,400 --> 00:01:10,450\\ndesta enciclopédia.\\n\\n28\\n00:01:13,100 --> 00:01:15,600\\nMilhares de voluntários escrevem a enciclopédia.\\n\\n29\\n00:01:15,600 --> 00:01:18,200\\nSão pessoas com diversas origens,\\n\\n30\\n00:01:18,200 --> 00:01:19,100\\ndiversas crenças\\n\\n31\\n00:01:19,100 --> 00:01:20,450\\ne diversas ideias.\\n\\n32\\n00:01:21,000 --> 00:01:24,900\\nWikipédia não assumirá como próprio nenhum ponto de vista particular.\\n\\n33\\n00:01:25,150 --> 00:01:28,650\\nSendo assim, deve-se tentar oferecer as informações de todos os ângulos possíveis.\\n\\n34\\n00:01:28,900 --> 00:01:31,250\\nPor isso, o segundo pilar da Wikipédia\\n\\n35\\n00:01:31,250 --> 00:01:33,250\\nse chama ponto de vista neutro.\\n\\n36\\n00:01:35,000 --> 00:01:38,000\\nO terceiro pilar indica que a Wikipédia tem conteúdo livre.\\n\\n37\\n00:01:38,400 --> 00:01:41,100\\nTodos os textos estão disponíveis para qualquer fim\\n\\n38\\n00:01:41,350 --> 00:01:43,400\\nsempre que reutilizá-los especificando sua origem\\n\\n39\\n00:01:43,400 --> 00:01:46,100\\ne utilizando a mesma licença \"creative commons\".\\n\\n40\\n00:01:46,350 --> 00:01:48,100\\nNo caso das imagens,\\n\\n41\\n00:01:48,100 --> 00:01:49,600\\nas licenças podem variar,\\n\\n42\\n00:01:49,850 --> 00:01:52,600\\nmas a cópia e reutilização sempre estão permitidas.\\n\\n43\\n00:01:53,300 --> 00:01:56,300\\nNestes casos, deve-se olhar a licença em particular\\n\\n44\\n00:01:56,300 --> 00:01:58,500\\npara saber que restrições se aplicam.\\n\\n45\\n00:02:01,500 --> 00:02:04,300\\nCom tanta gente interagindo, às vezes há desavenças.\\n\\n46\\n00:02:04,550 --> 00:02:08,650\\nPor isso, o quarto pilar indica que os usuários devem respeitar-se mutuamente\\n\\n47\\n00:02:08,650 --> 00:02:10,200\\ne presumir boa fé.\\n\\n48\\n00:02:10,200 --> 00:02:13,900\\nA tolerância e cordialidade são fundamentais para o projeto.\\n\\n49\\n00:02:16,800 --> 00:02:19,500\\nWikipédia não tem normas fixas.\\n\\n50\\n00:02:19,750 --> 00:02:21,250\\nAinda que pareça curioso,\\n\\n51\\n00:02:20,800 --> 00:02:23,300\\neste é o quinto pilar desta enciclopédia.\\n\\n52\\n00:02:23,320 --> 00:02:27,000\\nPara colaborar, é imprescindível guiar-se pelo bom senso\\n\\n53\\n00:02:27,000 --> 00:02:30,200\\ne respeitar os wikipedistas que nos acompanham nessa aventura.\\n\\n54\\n00:02:30,450 --> 00:02:32,500\\nTodas as pessoas podem contribuir com algo.\\n\\n55\\n00:02:32,750 --> 00:02:34,750\\nHá quem desenvolva artigos complexos\\n\\n56\\n00:02:34,750 --> 00:02:37,300\\ne quem corrija pequenos erros de ortografia.\\n\\n57\\n00:02:37,300 --> 00:02:40,000\\nVocê também pode ajudar criando e corrigindo artigos.\\n\\n58\\n00:02:41,000 --> 00:02:42,000\\nToda edição é reversível.\\n\\n59\\n00:02:42,000 --> 00:02:46,250\\nSe cometer algum erro, sempre se pode recuperar a versão anterior.\\n\\n60\\n00:02:46,300 --> 00:02:48,500\\n\"Vá em frente\"! Seja wikipedista.\\n\\n61\\n00:03:11,250 --> 00:03:12,800\\neste vídeo é distribuído\\n\\n62\\n00:03:12,800 --> 00:03:14,100\\nsob a licença\\n\\n63\\n00:03:14,100 --> 00:03:18,500\\nCreative Commons - Atribuição e Compartilhamento pela mesma licença',\n", + " 'bytes': 4897,\n", + " 'sha1': '95y715mq0xjkq2roju02usoh8wukz8f',\n", + " 'parent_id': 128081606,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 71184731,\n", + " 'timestamp': '2012-05-15T20:02:01Z',\n", + " 'user': {'id': 1699066, 'text': 'Fúlvio'},\n", + " 'page': {'id': 19455025,\n", + " 'title': 'Edit Button.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'\\ufeff1 00:00:01,114 --> 00:00:02,414 Existe um botão \"editar\". 2 00:00:02,530 --> 00:00:03,830 Basta clicar sobre ele, 3 00:00:03,830 --> 00:00:06,664 encont...\\'',\n", + " 'text': '\\ufeff1\\n00:00:01,114 --> 00:00:02,414 \\nExiste um botão \"editar\".\\n\\n2\\n00:00:02,530 --> 00:00:03,830 \\nBasta clicar sobre ele,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nencontrar o texto, editá-lo\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\ne depois clicar em \"Salvar\". É muito fácil.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nO bom da Wikipédia\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\né que você pode mudar as coisas.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nVocê não necessita permissão de ninguém\\n\\n8\\n00:00:14,066 --> 00:00:15,32\\ne é muito fácil.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nNo início, pode parecer um pouco intimidante,\\n\\n10\\n00:00:17,809 --> 00:00:19,82\\nmas é realmente fácil.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nAs pessoas não percebem isso. É como uma espécie de cegueira.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nAs pessoas leem os artigos e não veem o botão \"Editar\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nClique sobre este botão e veja o que acontece.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Editar.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nQuando você se abre para algo novo\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\ne começa a editar,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\npodem ocorrer coisas de todo tipo\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\ne é uma experiência realmente bonita.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nÉ como, mais do que um simples início\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nde alguma forma, é um convite para mais vida.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nCada vez que iniciamos um artigo, não gostamos\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nporque o encontramos feio.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nMas espere... algumas horas\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\ne veremos tornar-se um grande artigo.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nO botão \"editar\": Clique sobre ele, mude algo,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nsalve a página, e você terá feito diferença no mundo.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Salvar\".',\n", + " 'bytes': 1881,\n", + " 'sha1': '4y3gkc6naieeo733yazzy7zbv6otnn8',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 300915915,\n", + " 'timestamp': '2018-05-13T08:28:06Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 19456770,\n", + " 'title': 'Krazy Kat Bugologist 1916 silent.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '84user moved page [[TimedText:Krazy Kat Bugolist 1916 silent.ogv.pt.srt]] to [[TimedText:Krazy Kat Bugologist 1916 silent.ogv.pt.srt]]: ogv file renamed',\n", + " 'text': '1\\n00:00:22,000 --> 00:00:27,000\\nEu vou te ensinar Bugology, Ignatzes\\n\\n2 \\n00:00:40,000 --> 00:00:43,000 \\nAlgo me diz que...\\n\\n3 \\n00:00:58,000 --> 00:01:04,000 \\nOlha, Ignatz, uma abelha sonolenta\\n\\n4\\n00:01:04,000 --> 00:01:08,000 \\nUma abelha morta\\n\\n5\\n00:01:10,000 --> 00:01:14,000 \\nDeve estar fria\\n\\n6\\n00:01:22,000 --> 00:01:25,000 \\nPobre abelha\\n\\n7\\n00:01:25,000 --> 00:01:31,000 \\nAh, ela está feliz, está no céu das abelhas\\n\\n8\\n00:01:51,000 --> 00:01:56,000 \\nIgnatz, bem, você cometeu um erro\\n\\n9\\n00:01:58,000 --> 00:02:01,000 \\nESTAVA.\\n\\n10\\n00:02:45,000 --> 00:02:49,000 \\nDeixa comigo',\n", + " 'bytes': 580,\n", + " 'sha1': 'mb61eobthr6e4gojot20tadiofyfe2b',\n", + " 'parent_id': 71190063,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601722645,\n", + " 'timestamp': '2021-10-24T15:00:56Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 19456943,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and (probably) partially the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,617\\nMeu nome de utilizador é Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,046 --> 00:00:05,086\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,192\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nMeu nome de utilizador é Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein é\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\n\"pequeno rato de biblioteca\" em alemão\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nÉ Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,395\\nNotafish\\n\\n13\\n00:00:19,421 --> 00:00:21,200\\nvocê sabe: «not a fish»\\n(não um peixe)\\n\\n14\\n00:00:21,227 --> 00:00:22,273\\nTheo10011\\n\\n15\\n00:00:22,369 --> 00:00:23,815\\nMeu nome de utilizador é Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nMeu nome de utilizador é Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,213\\nwittylama, é um anagrama\\nde meu nome real, Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nMeu nome de utilizador é Steven Walling,\\neste é meu nome real\\n\\n23\\n00:00:36,748 --> 00:00:38,393\\nMeu nome de utilizador é Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nMeu nome de utilizador é Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr,\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nMeu nome é Jdforrester,\\ne edito a Wikipédia',\n", + " 'bytes': 1551,\n", + " 'sha1': 'mksiycen5zbpwnv3dd9howam5pakxpz',\n", + " 'parent_id': 71190582,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 71191612,\n", + " 'timestamp': '2012-05-16T01:26:07Z',\n", + " 'user': {'id': 1699066, 'text': 'Fúlvio'},\n", + " 'page': {'id': 19457220,\n", + " 'title': 'Welcome to globallives 2.0.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:00,000 --> 00:00:04,000 ♫ Música hip-hop do Brasil em segundo plano ♫ 2 00:00:15,000 --> 00:00:23,000 O objectivo do Global Lives Project é gr...'\",\n", + " 'text': '\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫ Música hip-hop do Brasil em segundo plano ♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nO objectivo do Global Lives Project é gravar, em vídeo, 24 horas das vidas diárias de 10 pessoas ao redor do mundo.\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nEstamos neste momento em São Paulo, Brasil, realizando nossa segunda filmagem para o projecto.\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nSomos um grupo de dezenas de cineastas, artistas, arquitetos, desenvolvedores\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\ne pessoas comuns ao redor do mundo.\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nVamos conseguir 240 horas de material, e a ideia é tomar todo este material e criar uma instalação de vídeo.\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nOs visitantes desta instalação poderão passar por dez salas diferentes.\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\nE cada uma destas salas terão o material não-modificado de cada um de nossos protagonistas.\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nO objectivo é remover as pessoas de suas vidas cotidianas e mostrar a elas as experiências de outros tipos de pessoas\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\nque vivem ao redor do mundo.\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nA primeira filmagem do Global Lives ocorreu em São Francisco, Califórnia, sobre a vida do condutor de bondes, James Bullock.\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nOutras filmagens adicionais estão sendo realizadas em outros países.\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\nTodos os nossos vídeos farão parte de uma vídeo-biblioteca participativa sobre as experiências dos seres humanos\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\ncom entrada gratuita e um convite ao público para fazer doações.\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nAtravés da inmersão nestes pequenos, mas às vezes diversos, exemplos da existência humana diária\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\nos espectadores serão desafiados a repenasar suas vidas e suas ligações com o resto do mundo.\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\nVá ao nosso sítio web em GlobalLives.org para saber como envolver-se no Global Lives Project.\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.',\n", + " 'bytes': 2167,\n", + " 'sha1': 'oab9qg89r6nru9sgn51u4u5f6prp3tp',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90814558,\n", + " 'timestamp': '2013-02-16T19:38:57Z',\n", + " 'user': {'id': 286361, 'text': 'GoEThe'},\n", + " 'page': {'id': 19890825,\n", + " 'title': 'Wikipedia video tutorial-1-Editing-en.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01 --> 00:00:03\\nOlá! Chamo-me Teresa.\\n\\n2\\n00:00:03 --> 00:00:6\\nBom conhecê-los aqui na Wikipédia!\\n\\n3\\n00:00:6 --> 00:00:10\\nComo devem saber, a Wikipédia é uma enciclopédia livre escrita pelos seus utilizadores: pessoas como você!\\n\\n4\\n00:00:10 --> 00:00:16\\nHoje, de entre mais que 250 milhões de pessoas que visitaram a Wikipédia,\\n\\n5\\n00:00:16 --> 00:00:19\\nmais de 10 milhões de artigos foram contribuídos\\n\\n6\\n00:00:19 --> 00:00:20\\npor mais de 500 mil editores\\n\\n7\\n00:00:20 --> 00:00:23\\nem mais de 250 línguas.\\n\\n8\\n00:00:23 --> 00:00:27\\nÉ fácil partilhar o seu conhecimento com todos os utilizadores da Wikipédia à volta do mundo.\\n\\n9\\n00:00:27 --> 00:00:29\\nNeste preciso momento, pode ajudar a melhorar \\n\\n10\\n00:00:29 --> 00:00:32\\na melhor e maior enciclopédia livre do mundo.\\n\\n11\\n00:00:32 --> 00:00:34\\nDeixem-me mostrar-lhes como é fácil.\\n\\n12\\n00:00:38 --> 00:00:41\\nQuando procura alguma coisa na internet, um dos primeiros resultados que obtém é a Wikipédia.\\n\\n13\\n00:00:41 --> 00:00:46\\nPor isso, é capaz de querer começar a sua procura directamente na Wikipédia.\\n\\n14\\n00:00:46 --> 00:00:47\\nDê uma vista de olhos nisto:\\n\\n15\\n00:00:48 --> 00:00:52\\nVerá que grande parte dos artigos são abrangentes e estão actualizados.\\n\\n16\\n00:00:52 --> 00:00:56\\nNo entanto, pode encontrar artigos que sejam demasiado curtos ou que precisavam de ser melhorados.\\n\\n17\\n00:00:56 --> 00:00:59\\nE quem melhor para os melhorar do que você?\\n\\n18\\n00:00:59 --> 00:01:03\\nA Wikipédia convida-o a ajudar a construir uma enciclopédia ainda melhor.\\n\\n19\\n00:01:03 --> 00:01:09\\nEm mais de 90 por cento dos casos não precisa de ser um génio para contribuir.\\n\\n20\\n00:01:09 --> 00:01:11\\nSó precisa de partilhar o que sabe.\\n\\n21\\n00:01:11 --> 00:01:15\\nE para isso, só precisa de seguir três pequenos passos:\\n\\n22\\n00:01:15 --> 00:01:18\\nPasso 1: Clique no butão de editar\\n\\n23\\n00:01:18 --> 00:01:21\\nPasso 2: Escrever o texto\\n\\n24\\n00:01:21 --> 00:01:26\\ne finalmente, Passo 3: Editar o sumário e clicar \\'Gravar página\\'\\n\\n25\\n00:01:26 --> 00:01:28\\nFoi ou não foi simples?\\n\\n26\\n00:01:28 --> 00:01:32\\nE nem precisa de estar autenticado ou ter uma conta para fazer isso.\\n\\n27\\n00:01:32 --> 00:01:33\\nRecapitulando:\\n\\n28\\n00:01:33 --> 00:01:36\\nO primeiro passo foi o botão de editar.\\n\\n29\\n00:01:36 --> 00:01:38\\nCá está ele no cimo do artigo.\\n\\n30\\n00:01:38 --> 00:01:43\\nCarregue no botão e será direccionado para esta página.\\n\\n31\\n00:01:43 --> 00:01:45\\nSerá aqui que irá fazer as mudanças.\\n\\n32\\n00:01:48 --> 00:01:52\\nPara fazer uma mudança, coloque o cursor no local no texto onde quer escrever ou apagar alguma coisa.\\n\\n33\\n00:01:52 --> 00:01:57\\nE depois simplesmente faça a mudança como faria em qualquer outro documento.\\n\\n34\\n00:02:02 --> 00:02:07\\nNão se preocupe: se fizer algo errado, é muito fácil voltar à versão anterior.\\n\\n35\\n00:02:08 --> 00:02:13\\nFinalmente o passo três: Logo abaixo desta área, edite o sumário\\n\\n36\\n00:02:13 --> 00:02:23\\ndescrevendo resumidamente as mudanças que fez e carregue no botão \\'Guardar página\\' para guardar as mudanças.\\n\\n37\\n00:02:23 --> 00:02:30\\nQuando o artigo reaparecer, as suas mudanças estarão instantaneamente \\'\\'online\\'\\' e visíveis.\\n\\n38\\n00:02:30 --> 00:02:35\\nEstes três passos é tudo o que é preciso para editar a Wikipédia.\\n\\n39\\n00:02:36 --> 00:02:38\\nJá sei o que está a pensar: está a pensar\\n\\n40\\n00:02:38 --> 00:02:41\\n\"Uau! Agora posso reescrever a História!\"\\n\\n41\\n00:02:41 --> 00:02:44\\nBem, meu amigo, não pode.\\n\\n42\\n00:02:44 --> 00:02:49\\nComo poderá ver num outro tutorial, a Wikipédia tem vários mecanismos para se defender\\n\\n43\\n00:02:49 --> 00:02:51\\ndesse tipo de comportamento.\\n\\n44\\n00:02:51 --> 00:02:54\\nInformação falsa será apagada em minutos se não segundos.\\n\\n45\\n00:02:54 --> 00:02:55\\nE é isso que faz com que a Wikipédia seja uma fonte fiável e abrangente.',\n", + " 'bytes': 3814,\n", + " 'sha1': '5jbg16kh7imyyw07insdisdq84n28xc',\n", + " 'parent_id': 90814331,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 121420622,\n", + " 'timestamp': '2014-04-15T08:27:44Z',\n", + " 'user': {'id': 2742126, 'text': 'Jan Ainali (WMSE)'},\n", + " 'page': {'id': 20081273,\n", + " 'title': 'Share Your Knowledge 1 Why glamwiki.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'typo',\n", + " 'text': '1\\n00:00:09,053 --> 00:00:13,001\\nCultural institutions own and create contents\\n\\n2\\n00:00:13,001 --> 00:00:14,065\\nthat they want to share.\\n\\n3\\n00:00:15,008 --> 00:00:15,096\\nUnfortunately\\n\\n4\\n00:00:15,096 --> 00:00:17,059\\neven though some of this content\\n\\n5\\n00:00:17,059 --> 00:00:19,028\\nhave been digitized,\\n\\n6\\n00:00:19,028 --> 00:00:21,057\\ncontent is not always available\\n\\n7\\n00:00:21,057 --> 00:00:23,076\\nor accessible to everyone.\\n\\n8\\n00:00:23,076 --> 00:00:25,076\\nIf all your books and catalogues\\n\\n9\\n00:00:25,076 --> 00:00:27,003\\nhave run out\\n\\n10\\n00:00:27,003 --> 00:00:30,022\\nand you don’t have the resources to republish them,\\n\\n11\\n00:00:30,022 --> 00:00:33,076\\nIf your files are badly organised,\\n\\n12\\n00:00:33,076 --> 00:00:36,055\\nand if you have no funds\\n\\n13\\n00:00:36,055 --> 00:00:38,026\\nMaybe you would be interested\\n\\n14\\n00:00:38,026 --> 00:00:40,011\\nin Share Your Knowledge.\\n\\n15\\n00:00:40,011 --> 00:00:41,068\\nTo begin on this path,\\n\\n16\\n00:00:41,068 --> 00:00:43,053\\nall you need to do is to release\\n\\n17\\n00:00:43,053 --> 00:00:48,018\\nall your content under the CC-BY-SA license.\\n\\n18\\n00:00:48,018 --> 00:00:50,057\\nThis allows other people to distribute, edit, and\\n\\n19\\n00:00:50,057 --> 00:00:53,051\\ncreate artbooks from the original files,\\n\\n20\\n00:00:53,051 --> 00:00:56,018\\neven for commercial purposes.\\n\\n21\\n00:00:56,048 --> 00:00:58,081\\nThe new artwork must also be published\\n\\n22\\n00:00:58,081 --> 00:01:00,035\\nunder the same license\\n\\n23\\n00:01:00,035 --> 00:01:02,088\\nand credit the original creator.\\n\\n24\\n00:01:02,088 --> 00:01:07,046\\nThen, through Wikipedia, your knowledge is shared with the world for free.\\n\\n25\\n00:01:07,046 --> 00:01:09,083\\nHere are just two examples:\\n\\n26\\n00:01:09,083 --> 00:01:11,052\\nThe German Federal Archive\\n\\n27\\n00:01:11,052 --> 00:01:15,017\\nreleased lower-resolution images on Wikimedia Commons.\\n\\n28\\n00:01:15,017 --> 00:01:19,043\\nThis tripled the number high-resolution images sold by the Archive.\\n\\n29\\n00:01:19,043 --> 00:01:22,063\\nItaly’s Cariplo Foundation has created\\n\\n30\\n00:01:22,063 --> 00:01:24,027\\nand uploaded to Wikipedia\\n\\n31\\n00:01:24,027 --> 00:01:28,054\\n247 Italian and English articles\\n\\n32\\n00:01:28,054 --> 00:01:34,010\\nas well as 854 artists and their works out its art collection.\\n\\n33\\n00:01:34,010 --> 00:01:36,006\\nShare Your Knowledge will help you\\n\\n34\\n00:01:36,006 --> 00:01:38,017\\nto organize your documentation\\n\\n35\\n00:01:38,017 --> 00:01:39,014\\nin an efficient way,\\n\\n36\\n00:01:39,014 --> 00:01:41,013\\nand assist you with planning\\n\\n37\\n00:01:41,013 --> 00:01:42,071\\nhow to share all the archives\\n\\n38\\n00:01:42,071 --> 00:01:44,057\\nyou will create in the future.\\n\\n39\\n00:01:44,057 --> 00:01:45,067\\nIt’s free,\\n\\n40\\n00:01:45,067 --> 00:01:47,018\\nand increases the visibility\\n\\n41\\n00:01:47,018 --> 00:01:49,082\\nof your organization and your content.\\n\\n42\\n00:01:49,082 --> 00:01:52,041\\nSo, why not do it?',\n", + " 'bytes': 2840,\n", + " 'sha1': 'pt3lau9imnukk0386hxu4mj9lj446jz',\n", + " 'parent_id': 74060793,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 73537711,\n", + " 'timestamp': '2012-06-30T18:30:36Z',\n", + " 'user': {'id': 7000, 'text': 'Seb35'},\n", + " 'page': {'id': 20082792,\n", + " 'title': 'Share Your Knowledge 1 Why glamwiki.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'traduction en français',\n", + " 'text': '1\\n00:00:09,053 --> 00:00:13,001\\nLes institutions culturelles possèdent et créent des contenus\\n\\n2\\n00:00:13,001 --> 00:00:14,065\\nqu’elles désirent partager.\\n\\n3\\n00:00:15,008 --> 00:00:15,096\\nCependant,\\n\\n4\\n00:00:15,096 --> 00:00:17,059\\nbien que ce contenu puisse avoir été\\n\\n5\\n00:00:17,059 --> 00:00:19,028\\nen partie numérisé,\\n\\n6\\n00:00:19,028 --> 00:00:21,057\\nle contenu n’est pas toujours disponible\\n\\n7\\n00:00:21,057 --> 00:00:23,076\\nou accessible à tout le monde.\\n\\n8\\n00:00:23,076 --> 00:00:25,076\\nSi tous vos livres et catalogues\\n\\n9\\n00:00:25,076 --> 00:00:27,003\\nvoient leurs droits expirés\\n\\n10\\n00:00:27,003 --> 00:00:30,022\\net si vous n’avez pas les ressources pour les republier,\\n\\n11\\n00:00:30,022 --> 00:00:33,076\\nSi vos fichiers sont mal organisés,\\n\\n12\\n00:00:33,076 --> 00:00:36,055\\net si vous n’avez pas assez de fonds\\n\\n13\\n00:00:36,055 --> 00:00:38,026\\nAlors vous serez peut-être intéressés\\n\\n14\\n00:00:38,026 --> 00:00:40,011\\npar Partager votre Connaissance.\\n\\n15\\n00:00:40,011 --> 00:00:41,068\\nPour s’engager dans cette voie,\\n\\n16\\n00:00:41,068 --> 00:00:43,053\\ntout ce que vous avez à faire est de diffuser\\n\\n17\\n00:00:43,053 --> 00:00:48,018\\ntout votre contenu sous licence CC-BY-SA.\\n\\n18\\n00:00:48,018 --> 00:00:50,057\\nCeci permet à d’autres personnes de distribuer, éditer et\\n\\n19\\n00:00:50,057 --> 00:00:53,051\\ncréer des œuvres à partir des fichiers originaux,\\n\\n20\\n00:00:53,051 --> 00:00:56,018\\ny compris à des fins commerciales.\\n\\n21\\n00:00:56,048 --> 00:00:58,081\\nLa nouvelle œuvre doit aussi être publiée\\n\\n22\\n00:00:58,081 --> 00:01:00,035\\nsous la même licence\\n\\n23\\n00:01:00,035 --> 00:01:02,088\\net créditer le créateur original.\\n\\n24\\n00:01:02,088 --> 00:01:07,046\\nEnsuite, à travers Wikipédia, votre connaissance est partagée gratuitement avec le monde entier.\\n\\n25\\n00:01:07,046 --> 00:01:09,083\\nVoici deux exemples\\xa0:\\n\\n26\\n00:01:09,083 --> 00:01:11,052\\nLes Archives fédérales allemandes\\n\\n27\\n00:01:11,052 --> 00:01:15,017\\nont diffusé des images basse résolution sur Wikimedia Commons.\\n\\n28\\n00:01:15,017 --> 00:01:19,043\\nCeci a triplé le nombre d’images haute résolution vendues par les Archives.\\n\\n29\\n00:01:19,043 --> 00:01:22,063\\nEn Italie, la Fondation Cariplo a créé\\n\\n30\\n00:01:22,063 --> 00:01:24,027\\net partagé sur Wikipédia\\n\\n31\\n00:01:24,027 --> 00:01:28,054\\n247 articles en italien et en anglais\\n\\n32\\n00:01:28,054 --> 00:01:34,010\\nainsi que 854 artistes et leurs œuvres issus de sa collection d’art.\\n\\n33\\n00:01:34,010 --> 00:01:36,006\\nPartager votre Connaissance vous aidera\\n\\n34\\n00:01:36,006 --> 00:01:38,017\\nà organiser votre documentation\\n\\n35\\n00:01:38,017 --> 00:01:39,014\\nde façon efficace,\\n\\n36\\n00:01:39,014 --> 00:01:41,013\\net vous assistera à planifier\\n\\n37\\n00:01:41,013 --> 00:01:42,071\\ncomment partager toutes les archives\\n\\n38\\n00:01:42,071 --> 00:01:44,057\\nque vous créerez dans le futur.\\n\\n39\\n00:01:44,057 --> 00:01:45,067\\nC’est gratuit,\\n\\n40\\n00:01:45,067 --> 00:01:47,018\\net augmente la visibilité\\n\\n41\\n00:01:47,018 --> 00:01:49,082\\nde votre organisation et de votre contenu.\\n\\n42\\n00:01:49,082 --> 00:01:52,041\\nDonc, pourquoi ne pas le faire\\xa0?',\n", + " 'bytes': 3104,\n", + " 'sha1': '92x8gunv9un256f8m013ama73m6uegq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 272838086,\n", + " 'timestamp': '2017-12-18T14:27:02Z',\n", + " 'user': {'id': 25480, 'text': 'Ainali'},\n", + " 'page': {'id': 20083222,\n", + " 'title': 'Share Your Knowledge 2 How glamwiki.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '- -',\n", + " 'text': '1\\n00:00:08,086 --> 00:00:10,081\\nAre you an exhibition space,\\n\\n2\\n00:00:10,081 --> 00:00:13,071\\nan archive, or a cultural institution?\\n\\n3\\n00:00:13,071 --> 00:00:14,092\\nDo you want to share your content\\n\\n4\\n00:00:14,092 --> 00:00:16,038\\nand increase the visibility\\n\\n5\\n00:00:16,038 --> 00:00:18,047\\nor your artworks and knowledge?\\n\\n6\\n00:00:18,047 --> 00:00:21,041\\nShare Your Knowledge is here to help you out.\\n\\n7\\n00:00:21,041 --> 00:00:22,000\\nHow?\\n\\n8\\n00:00:22,000 --> 00:00:25,049\\nFirst, you need to follow Share Your Knowledge guidelines.\\n\\n9\\n00:00:25,049 --> 00:00:29,000\\nThis means releasing all your digitised content online\\n\\n10\\n00:00:29,000 --> 00:00:33,014\\nunder the CC BY-SA license.\\n\\n11\\n00:00:33,014 --> 00:00:36,001\\nThen, inform all your contacts about the change\\n\\n12\\n00:00:36,001 --> 00:00:40,017\\nin license and upload your content to Wikipedia.\\n\\n13\\n00:00:40,017 --> 00:00:42,015\\nFinally, watch how your content\\n\\n14\\n00:00:42,015 --> 00:00:44,038\\nis accessed and used.\\n\\n15\\n00:00:45,018 --> 00:00:48,035\\nWhat is the CC BY-SA license?\\n\\n16\\n00:00:48,035 --> 00:00:52,003\\nCC stands for Creative Commons.\\n\\n17\\n00:00:52,003 --> 00:00:55,042\\nThis means that an author can choose which copyright\\n\\n18\\n00:00:55,042 --> 00:00:58,053\\nhe or she would like to apply to their artwork\\n\\n19\\n00:00:58,053 --> 00:01:00,032\\nwhen they put it online.\\n\\n20\\n00:01:00,032 --> 00:01:03,011\\nBY means that anyone can use\\n\\n21\\n00:01:03,011 --> 00:01:04,091\\nyour material freely\\n\\n22\\n00:01:04,091 --> 00:01:07,022\\nand for free on condition\\n\\n23\\n00:01:07,022 --> 00:01:09,027\\nthat you are acknowledged and\\n\\n24\\n00:01:09,027 --> 00:01:11,059\\ncredited on the new artwork.\\n\\n25\\n00:01:11,059 --> 00:01:13,041\\nSA means that any artwork,\\n\\n26\\n00:01:13,041 --> 00:01:15,069\\nresulting from your material,\\n\\n27\\n00:01:15,069 --> 00:01:18,086\\nmust be distributed under the same license.\\n\\n28\\n00:01:18,086 --> 00:01:20,030\\nIs is like starting out a\\n\\n29\\n00:01:20,030 --> 00:01:22,045\\n“creative commons infection”.\\n\\n30\\n00:01:24,010 --> 00:01:26,045\\nSo, what do I have to do?\\n\\n31\\n00:01:26,045 --> 00:01:30,006\\nEmbed the CC BY-SA logo on\\n\\n32\\n00:01:30,006 --> 00:01:32,077\\nall the pages that you have your content.\\n\\n33\\n00:01:32,077 --> 00:01:35,056\\nIf you want to share ALL your material at once,\\n\\n34\\n00:01:35,056 --> 00:01:38,039\\nembed the logo on your entire website.\\n\\n35\\n00:01:38,039 --> 00:01:40,066\\nThis will make your content available\\n\\n36\\n00:01:40,066 --> 00:01:43,072\\non the web under the CC license.\\n\\n37\\n00:01:43,072 --> 00:01:46,098\\nWhat about the archive material that is not yet online?\\n\\n38\\n00:01:46,098 --> 00:01:49,028\\nIf some of your content has been created\\n\\n39\\n00:01:49,028 --> 00:01:51,087\\nby someone outside your organization,\\n\\n40\\n00:01:51,087 --> 00:01:54,010\\nyou will have to ask for their permission.\\n\\n41\\n00:01:54,010 --> 00:01:56,018\\nThis way, you can release catalogues,\\n\\n42\\n00:01:56,018 --> 00:01:59,003\\nDVDs, videos, movies,\\n\\n43\\n00:01:59,003 --> 00:02:00,044\\ntrailers and images\\n\\n44\\n00:02:00,044 --> 00:02:02,054\\nthat are relevant to your content.\\n\\n45\\n00:02:02,054 --> 00:02:04,081\\nTo make the project even more visible,\\n\\n46\\n00:02:04,081 --> 00:02:06,084\\nlet your contacts know about it,\\n\\n47\\n00:02:06,084 --> 00:02:09,050\\nand if you really want to enhance your content,\\n\\n48\\n00:02:09,050 --> 00:02:12,015\\ntell Wikipedia volunteers!\\n\\n49\\n00:02:12,015 --> 00:02:13,095\\nBy doing this,\\n\\n50\\n00:02:13,095 --> 00:02:16,036\\nyou will contribute your valuable content\\n\\n51\\n00:02:16,036 --> 00:02:19,063\\nto the most used free encyclopaedia in the world,\\n\\n52\\n00:02:19,063 --> 00:02:23,021\\nwith an audience of 400 million visitors!\\n\\n53\\n00:02:24,055 --> 00:02:26,091\\nWho can upload contents on Wikipedia?\\n\\n54\\n00:02:27,019 --> 00:02:27,092\\nYou,\\n\\n55\\n00:02:27,092 --> 00:02:29,050\\nyour colleagues,\\n\\n56\\n00:02:29,050 --> 00:02:30,074\\nyour collaborators,\\n\\n57\\n00:02:30,074 --> 00:02:32,078\\nand all Wikipedia volunteers.\\n\\n58\\n00:02:32,078 --> 00:02:34,097\\nOnce the content is online,\\n\\n59\\n00:02:34,097 --> 00:02:36,093\\nand following Wikipedia’s rules,\\n\\n60\\n00:02:36,093 --> 00:02:39,041\\nanybody will be able to correct a mistake,\\n\\n61\\n00:02:39,041 --> 00:02:40,097\\nadd an image,\\n\\n62\\n00:02:40,097 --> 00:02:43,058\\ntranslate an article into another language,\\n\\n63\\n00:02:43,058 --> 00:02:46,046\\nand update any new information.\\n\\n64\\n00:02:46,046 --> 00:02:49,047\\nWikipedia also has tools for you\\n\\n65\\n00:02:49,047 --> 00:02:52,001\\nto evaluate how effective\\n\\n66\\n00:02:52,001 --> 00:02:54,013\\nthis Share Your Knowledge project\\n\\n67\\n00:02:54,013 --> 00:02:58,019\\nhas been at increasing your content and its visibility!\\n\\n68\\n00:02:58,019 --> 00:03:00,066\\nHurry up and join\\n\\n69\\n00:03:00,066 --> 00:03:03,039\\nShare Your Knowledge',\n", + " 'bytes': 4660,\n", + " 'sha1': 'o361j71p5363i74zjdz0zhujuzgk3vp',\n", + " 'parent_id': 73539638,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 509460493,\n", + " 'timestamp': '2020-11-02T20:21:30Z',\n", + " 'user': {'id': 433521, 'text': 'AlessandroAM'},\n", + " 'page': {'id': 20098398,\n", + " 'title': 'President Obama on Death of Osama bin Laden.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'fix',\n", + " 'text': \"1\\n00:00:00,704 --> 00:00:02,175\\nBuonasera\\n\\n2\\n00:00:02,175 --> 00:00:06,952\\nStanotte, posso riferire al popolo americano, e al mondo\\n\\n3\\n00:00:06,952 --> 00:00:11,3\\nche gli Stati Uniti hanno condotto un'operazione che ha ucciso Osama bin Laden\\n\\n4\\n00:00:11,3 --> 00:00:13,672\\nil leader di Al-Qaeda\\n\\n5\\n00:00:13,672 --> 00:00:21,359\\ne il terrorista che è responsabile della morte di migliaia di uomini, donne e bambini innocenti\\n\\n6\\n00:00:21,359 --> 00:00:25,204\\nSono passati quasi dieci anni da quel giorno luminoso di settembre che è stato oscurato \\n\\n7\\n00:00:25,204 --> 00:00:29,216\\ndal peggior attacco al popolo americano nella nostra storia\\n\\n8\\n00:00:29,216 --> 00:00:33,994\\nLe immagini dell'undici settembre sono impresse nella nostra memoria nazionale\\n\\n9\\n00:00:33,994 --> 00:00:38,775\\nAerei dirottati che attraversano il cielo chiaro di settembre\\n\\n10\\n00:00:38,775 --> 00:00:41,784\\nle Torri Gemelle che crollano al suolo\\n\\n11\\n00:00:41,784 --> 00:00:45,059\\nfumo nero che svolazza dal Pentagono\\n\\n12\\n00:00:45,059 --> 00:00:49,47\\ni rottami del volo 93 a Shanksville, in Pennsylvania\\n\\n13\\n00:00:49,47 --> 00:00:55,554\\ndove le azioni di eroici cittadini hanno salvato ancora più strazio e distruzione\\n\\n14\\n00:00:55,554 --> 00:01:00,301\\nEppure sappiamo che le peggiori immagini sono quelle invisibili al mondo\\n\\n15\\n00:01:00,301 --> 00:01:03,175\\nil posto vuoto a tavola\\n\\n16\\n00:01:03,175 --> 00:01:07,355\\nbambini che sono stati costretti a crescere senza la propria madre, o il proprio padre\\n\\n17\\n00:01:07,355 --> 00:01:12,534\\ngenitori che non avrebbero mai conosciuto la sensazione dell'abbraccio del proprio bambino\\n\\n18\\n00:01:12,534 --> 00:01:16,279\\nquasi tremila cittadini presi tra noi\\n\\n19\\n00:01:16,279 --> 00:01:19,79\\nlasciando un vuoto profondo nei nostri cuori\\n\\n20\\n00:01:19,79 --> 00:01:22,998\\nL'11 settembre 2001\\n\\n21\\n00:01:22,998 --> 00:01:24,933\\nnel nostro tempo del dolore\\n\\n22\\n00:01:24,933 --> 00:01:27,41\\nil popolo americano è giunto unito\\n\\n23\\n00:01:27,41 --> 00:01:29,248\\nAbbiamo offerto una mano ai nostri vicini\\n\\n24\\n00:01:29,248 --> 00:01:32,255\\ne abbiamo offerto il nostro sangue ai feriti\\n\\n25\\n00:01:32,255 --> 00:01:35,465\\nAbbiamo riaffermato i nostri legami gli uni agli altri\\n\\n26\\n00:01:35,465 --> 00:01:39,007\\ne il nostro amore di comunità e paese\\n\\n27\\n00:01:39,007 --> 00:01:41,749\\nQuel giorno, non importa da dove veniamo\\n\\n28\\n00:01:41,749 --> 00:01:43,753\\nquale dio preghiamo\\n\\n29\\n00:01:43,753 --> 00:01:46,262\\no la nostra razza o etnia\\n\\n30\\n00:01:46,262 --> 00:01:50,741\\nsiamo stati uniti come un'unica famiglia americana\\n\\n31\\n00:01:50,741 --> 00:01:54,752\\nSiamo stati uniti anche nella nostra determinazione a proteggere la nostra nazione\\n\\n32\\n00:01:54,752 --> 00:02:00,332\\ne nell'assicurare alla giustizia coloro che hanno commesso questo feroce attacco\\n\\n33\\n00:02:00,332 --> 00:02:04,378\\nAbbiamo subito appreso che gli attacchi dell'11 settembre erano stati effettuati da Al-Qaeda\\n\\n34\\n00:02:04,378 --> 00:02:06,984\\nun'organizzazione guidata da Osama bin Laden\\n\\n35\\n00:02:06,984 --> 00:02:09,826\\nche ha apertamente dichiarato guerra agli Stati Uniti\\n\\n36\\n00:02:09,826 --> 00:02:14,506\\ne si è impegnata a uccidere innocenti nel nostro paese e in tutto il mondo\\n\\n37\\n00:02:14,506 --> 00:02:17,346\\nE così siamo entrati in guerra contro Al-Qaeda\\n\\n38\\n00:02:17,346 --> 00:02:22,694\\nper proteggere i nostri cittadini, i nostri amici e i nostri alleati\\n\\n39\\n00:02:22,694 --> 00:02:27,91\\nNegli ultimi dieci anni, grazie al lavoro instancabile ed eroico dei nostri militari\\n\\n40\\n00:02:27,91 --> 00:02:32,856\\ne dei nostri professionisti della lotta al terrorismo, abbiamo fatto passi da gigante in questo sforzo\\n\\n41\\n00:02:32,856 --> 00:02:37,233\\nabbiamo interrotto gli attacchi terroristici e rafforzato la difesa della nostra patria\\n\\n42\\n00:02:37,233 --> 00:02:39,809\\nIn Afghanistan abbiamo rimosso il governo talebano\\n\\n43\\n00:02:39,809 --> 00:02:43,789\\nche aveva dato protezione e supporto a Bin Laden e Al-Qaeda\\n\\n44\\n00:02:43,789 --> 00:02:46,595\\nE in tutto il mondo abbiamo lavorato con i nostri amici e alleati\\n\\n45\\n00:02:46,595 --> 00:02:49,536\\nper catturare o uccidere decine di terroristi di Al-Qaeda\\n\\n46\\n00:02:49,536 --> 00:02:54,315\\ncompresi molti che facevano parte del complotto dell'undici settembre\\n\\n47\\n00:02:54,315 --> 00:02:57,323\\nEppure Osama bin Laden aveva evitato la cattura \\n\\n48\\n00:02:57,323 --> 00:03:01,301\\ned era scappato attraverso il confine afgano in Pakistan\\n\\n49\\n00:03:01,301 --> 00:03:04,543\\nNel frattempo, Al-Qaeda ha continuato ad operare lungo quel confine\\n\\n50\\n00:03:04,543 --> 00:03:09,123\\ne opera tramite i suoi affiliati in tutto il mondo\\n\\n51\\n00:03:09,123 --> 00:03:11,496\\nE così poco dopo aver assunto l'incarico\\n\\n52\\n00:03:11,496 --> 00:03:15,039\\nho ordinato a Leon Panetta, il direttore della CIA,\\n\\n53\\n00:03:15,039 --> 00:03:20,756\\ndi fare dell'uccisione o della cattura di Bin Laden la massima priorità della nostra guerra contro Al-Qaeda\\n\\n54\\n00:03:20,756 --> 00:03:26,071\\npur continuando i nostri sforzi generali per interrompere, smantellare e sconfiggere la sua rete\\n\\n55\\n00:03:26,071 --> 00:03:33,256\\nPoi, lo scorso agosto, dopo anni di minuzioso lavoro della nostra intelligence\\n\\n56\\n00:03:33,256 --> 00:03:36,7\\nsono stato informato su una possibile pista per Bin Laden\\n\\n57\\n00:03:36,7 --> 00:03:41,646\\nNon era affatto certa e ci sono voluti molti mesi per portare a termine questo filone\\n\\n58\\n00:03:41,646 --> 00:03:44,055\\nHo incontrato ripetutamente la mia squadra di sicurezza nazionale\\n\\n59\\n00:03:44,055 --> 00:03:48,231\\nman mano che ottenevamo maggiori informazioni sulla possibilità di aver localizzato Bin Laden\\n\\n60\\n00:03:48,231 --> 00:03:52,41\\nnascosto all'interno di un complesso nel profondo Pakistan\\n\\n61\\n00:03:52,41 --> 00:03:58,227\\nE infine, la scorsa settimana, ho deciso che avevamo abbastanza informazioni per agire\\n\\n62\\n00:03:58,227 --> 00:04:03,942\\ne ho autorizzato un'operazione per catturare Osama bin Laden e assicurarlo alla giustizia\\n\\n63\\n00:04:03,942 --> 00:04:10,124\\nOggi, sotto la mia direzione, gli Stati Uniti hanno lanciato un'operazione mirata contro quel complesso\\n\\n64\\n00:04:10,124 --> 00:04:13,268\\nad Abbottabad, in Pakistan\\n\\n65\\n00:04:13,268 --> 00:04:18,783\\nLa piccola squadra di americani ha eseguito l'operazione con straordinario coraggio e competenza\\n\\n66\\n00:04:18,783 --> 00:04:21,323\\nNessun americano è stato ferito\\n\\n67\\n00:04:21,323 --> 00:04:24,799\\nSono stati attenti a evitare vittime civili\\n\\n68\\n00:04:24,799 --> 00:04:27,573\\nDopo uno scontro a fuoco, hanno ucciso Osama bin Laden\\n\\n69\\n00:04:27,573 --> 00:04:31,283\\ne hanno preso il suo corpo in custodia\",\n", + " 'bytes': 6520,\n", + " 'sha1': '4995t5osqbkjwxrth298pfc8gmv6kjf',\n", + " 'parent_id': 509457656,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 73815977,\n", + " 'timestamp': '2012-07-05T14:27:43Z',\n", + " 'user': {'id': 281303, 'text': 'Glavkos'},\n", + " 'page': {'id': 20146704,\n", + " 'title': 'Share Your Knowledge 2 How glamwiki.ogv.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:08,086 --> 00:00:10,081\\nΕίστε ένας χώρος εκθέσεων,\\n\\n2\\n00:00:10,081 --> 00:00:13,071\\nένα αρχείο, ή ένας πολιτιστικός οργανισμός;\\n\\n3\\n00:00:13,071 --> 00:00:14,092\\nΘέλετε να μοιραστείτε το περιεχόμενό σας\\n\\n4\\n00:00:14,092 --> 00:00:16,038\\nκαι να αυξήσετε την αναγνωρισιμότητά σας \\n\\n5\\n00:00:16,038 --> 00:00:18,047\\nή τα έργα τέχνης και την γνώση;\\n\\n6\\n00:00:18,047 --> 00:00:21,041\\nΤο Share Your Knowledge είναι εδώ για να σας βοηθήσει.\\n\\n7\\n00:00:21,041 --> 00:00:22,000\\nΠώς;\\n\\n8\\n00:00:22,000 --> 00:00:25,049\\nΠρώτα, θα πρέπει να ακολουθήσετε τις οδηγίες του Share Your Knowledge.\\n\\n9\\n00:00:25,049 --> 00:00:29,000\\nΑυτό σημαίνει να απελευθερώσετε όλο το ψηφιακό σας περιεχόμενο online\\n\\n10\\n00:00:29,000 --> 00:00:33,014\\nυπό την άδεια CC-BY-SA.\\n\\n11\\n00:00:33,014 --> 00:00:36,001\\nΣτη συνέχεια, ενημερώστε όλες τις επαφές σας σχετικά με την αλλαγή \\n\\n12\\n00:00:36,001 --> 00:00:40,017\\nστην άδεια και ανεβάστε το περιεχόμενο στη Wikipedia.\\n\\n13\\n00:00:40,017 --> 00:00:42,015\\nΣτο τέλος, παρακολουθήστε πως το περιεχόμενό σας \\n\\n14\\n00:00:42,015 --> 00:00:44,038\\nαποκτά πρόσβαση και χρησιμοποιείται.\\n\\n15\\n00:00:45,018 --> 00:00:48,035\\nΤι είναι η άδεια CC-BY-SA;\\n\\n16\\n00:00:48,035 --> 00:00:52,003\\nCC σημαίνει Creative Commons.\\n\\n17\\n00:00:52,003 --> 00:00:55,042\\nΑυτό σημαίνει ότι ένας δημιουργός μπορεί να επιλέξει ποιό copyright\\n\\n18\\n00:00:55,042 --> 00:00:58,053\\nαυτός ή αυτή θα ήθελε να ισχύει για το έργο τέχνης του/της \\n\\n19\\n00:00:58,053 --> 00:01:00,032\\nόταν το διαθέτει online.\\n\\n20\\n00:01:00,032 --> 00:01:03,011\\nBY σημαίνει ότι ο καθένας μπορεί να χρησιμοποιήσει \\n\\n21\\n00:01:03,011 --> 00:01:04,091\\nτο υλικό σας ελεύθερα \\n\\n22\\n00:01:04,091 --> 00:01:07,022\\nκαι δωρεάν υπό την προϋπόθεση \\n\\n23\\n00:01:07,022 --> 00:01:09,027\\nότι σας αναγνωρίζει ως δημιουργό και \\n\\n24\\n00:01:09,027 --> 00:01:11,059\\nκαι σας αναφέρει στο νέο έργο τέχνης.\\n\\n25\\n00:01:11,059 --> 00:01:13,041\\nSA σημαίνει ότι οποιοδήποτε έργο τέχνης,\\n\\n26\\n00:01:13,041 --> 00:01:15,069\\nπου προέρχεται από το δικό σας υλικό,\\n\\n27\\n00:01:15,069 --> 00:01:18,086\\nθα πρέπει να διανέμεται υπό την ίδια άδεια.\\n\\n28\\n00:01:18,086 --> 00:01:20,030\\nΕίναι σαν να ξεκινάτε μια \\n\\n29\\n00:01:20,030 --> 00:01:22,045\\n“creative commons μεταδοτική ασθένεια”.\\n\\n30\\n00:01:24,010 --> 00:01:26,045\\nΕπομένως, τι θα πρέπει να κάνω; \\n\\n31\\n00:01:26,045 --> 00:01:30,006\\nΒάλτε το λογότυπο CC-BY-SA σε \\n\\n32\\n00:01:30,006 --> 00:01:32,077\\nόλες τις σελίδες που έχετε το περιεχόμενο σας.\\n\\n33\\n00:01:32,077 --> 00:01:35,056\\nΑν θέλετε να μοιραστείτε ΟΛΟ το υλικό σας δια μιας,\\n\\n34\\n00:01:35,056 --> 00:01:38,039\\nβάλτε το λογότυπο σε όλο σας τον ιστότοπο.\\n\\n35\\n00:01:38,039 --> 00:01:40,066\\nΑυτό θα κάνει το περιεχόμενό σας διαθέσιμο \\n\\n36\\n00:01:40,066 --> 00:01:43,072\\nστον παγκόσμιο ιστό υπό την άδεια CC.\\n\\n37\\n00:01:43,072 --> 00:01:46,098\\nΤι γίνεται όμως με το αρχειακό υλικό που δεν είναι ακόμα online;\\n\\n38\\n00:01:46,098 --> 00:01:49,028\\nΑν κάποιο από το υλικό σας έχει δημιουργηθεί \\n\\n39\\n00:01:49,028 --> 00:01:51,087\\nαπό κάποιους που είναι εκτός του οργανισμού σας,\\n\\n40\\n00:01:51,087 --> 00:01:54,010\\nτότε θα πρέπει να ζητήσετε την άδειά τους.\\n\\n41\\n00:01:54,010 --> 00:01:56,018\\nΜε τον τρόπο αυτόν, μπορείτε να απελευθερώσετε καταλόγους,\\n\\n42\\n00:01:56,018 --> 00:01:59,003\\nDVD, video, ταινίες,\\n\\n43\\n00:01:59,003 --> 00:02:00,044\\ntrailers και εικόνες\\n\\n44\\n00:02:00,044 --> 00:02:02,054\\nπου σχετίζονται με το περιεχόμενό σας.\\n\\n45\\n00:02:02,054 --> 00:02:04,081\\nΓια να κάνετε το εγχείρημα ακόμα πιο αναγνωρίσιμο,\\n\\n46\\n00:02:04,081 --> 00:02:06,084\\nενημερώστε τις επαφές σας σχετικά με αυτό,\\n\\n47\\n00:02:06,084 --> 00:02:09,050\\nκαι αν πραγματικά θέλετε να ενδυναμώσετε το περιεχόμενό σας,\\n\\n48\\n00:02:09,050 --> 00:02:12,015\\nπείτε το στους εθελοντές της Wikipedia!\\n\\n49\\n00:02:12,015 --> 00:02:13,095\\nΚανόντας αυτό,\\n\\n50\\n00:02:13,095 --> 00:02:16,036\\nθα πετύχετε τη συνεισφορά στο πολύτιμο περιεχόμενό σας \\n\\n51\\n00:02:16,036 --> 00:02:19,063\\nστην πιο συχνά χρησιμοποιούμενη ελεύθερη εγκυκλοπαίδεια στον κόσμο,\\n\\n52\\n00:02:19,063 --> 00:02:23,021\\nμε ένα κοινό 400 εκατομμυρίων επισκεπτών!\\n\\n53\\n00:02:24,055 --> 00:02:26,091\\nΠοιός μπορεί να ανεβάσει περιεχόμενο στη Wikipedia; \\n\\n54\\n00:02:27,019 --> 00:02:27,092\\nΕσείς,\\n\\n55\\n00:02:27,092 --> 00:02:29,050\\nοι συνάδελφοι σας,\\n\\n56\\n00:02:29,050 --> 00:02:30,074\\nοι συνεργάτες σας,\\n\\n57\\n00:02:30,074 --> 00:02:32,078\\nκαι όλοι οι εθελοντές της Wikipedia.\\n\\n58\\n00:02:32,078 --> 00:02:34,097\\nΑπό τη στιγμή που το περιεχόμενο θα είναι online,\\n\\n59\\n00:02:34,097 --> 00:02:36,093\\nκαι θα ακολουθεί τους κανόνες της Wikipedia,\\n\\n60\\n00:02:36,093 --> 00:02:39,041\\nο καθένας θα είναι σε θέση να διορθώσει ένα λάθος,\\n\\n61\\n00:02:39,041 --> 00:02:40,097\\nνα προσθέσει μια εικόνα,\\n\\n62\\n00:02:40,097 --> 00:02:43,058\\nνα μεταφράσει ένα άρθρο σε μια άλλη γλώσσα,\\n\\n63\\n00:02:43,058 --> 00:02:46,046\\nκαι να ενημερώσει με κάποια νέα πληροφορία.\\n\\n64\\n00:02:46,046 --> 00:02:49,047\\nΗ Wikipedia διαθέτει επίσης εργαλεία για σας \\n\\n65\\n00:02:49,047 --> 00:02:52,001\\nγια να αξιολογήσετε πόσο αποτελεσματικό \\n\\n66\\n00:02:52,001 --> 00:02:54,013\\nέχει υπάρξει αυτό το εγχείρημα Share Your Knowledge\\n\\n67\\n00:02:54,013 --> 00:02:58,019\\nαυξάνοντας το περιεχόμενό σας και την αναγνωρισιμότητα του!\\n\\n68\\n00:02:58,019 --> 00:03:00,066\\nΒιαστείτε και δηλώστε συμμετοχή\\n\\n69\\n00:03:00,066 --> 00:03:03,039\\nShare Your Knowledge',\n", + " 'bytes': 7291,\n", + " 'sha1': '1wbs7k7beidkl2q0cgipnwwd1lg1cnz',\n", + " 'parent_id': 73815695,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 73875048,\n", + " 'timestamp': '2012-07-06T18:20:52Z',\n", + " 'user': {'id': 281303, 'text': 'Glavkos'},\n", + " 'page': {'id': 20160288,\n", + " 'title': 'Share Your Knowledge 1 Why glamwiki.ogv.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\ufeff1\\n00:00:08,000 --> 00:00:14,000\\nΟι πολιτιστικοί οργανισμοί κατέχουν και δημιουργούν περιεχόμενο το οποίο θέλουν να μοιραστούν.\\n\\n2\\n00:00:14,250 --> 00:00:22,950\\nΔυστυχώς, ακόμα κι αν κάποιο απ\\'αυτό το περιεχόμενο έχει ψηφιοποιηθεί, αυτό δεν είναι πάντοτε διαθέσιμο ή προσβάσιμο στον καθένα.\\n\\n3\\n00:00:23,200 --> 00:00:30,000\\nΑν όλα σας τα βιβλία ή οι κατάλογοι έχουν εξαντληθεί και δεν έχετε τους πόρους για να τα επανεκδώσετε,\\n\\n4\\n00:00:30,250 --> 00:00:32,750\\nΑν τα αρχεία σας δεν είναι καλά οργανωμένα.\\n\\n5\\n00:00:33,000 --> 00:00:36,100\\nΚαι αν δεν έχετε χρηματοδότηση\\n\\n6\\n00:00:36,350 --> 00:00:38,650\\nΊσως θα σας ενδιέφερε το πρόγραμμα \"Share Your Knowledge\"\\n\\n7\\n00:00:38,900 --> 00:00:46,900\\nΓια να ξεκινήσετε προς αυτή την κατεύθυνση, το μόνο που πρέπει να κάνετε είναι να απελευθερώσετε όλο το περιεχόμενό σας υπό την άδεια CC-BY-SA.\\n\\n8\\n00:00:47,150 --> 00:01:01,950\\nΑυτό επιτρέπει σε άλλους ανθρώπους να διανέμουν, να τροποποιούν και να δημιουργούν έργα τέχνης από τα αρχικά αρχεία, ακόμα και για εμπορικές χρήσεις. Το νέο έργο τέχνης θα πρέπει επίσης να δημοσιεύεται υπό την ίδια άδεια και να πιστώνει τον αρχικό δημιουργό.\\n\\n9\\n00:01:02,200 --> 00:01:06,000\\nΤότε, μέσω της Wikipedia, η γνώση σου μοιράζεται με τον κόσμο ελεύθερα.\\n\\n10\\n00:01:06,250 --> 00:01:09,050\\nΙδού δύο μόνον παραδείγματα:\\n\\n11\\n00:01:09,300 --> 00:01:14,000\\nΤα Γερμανικά Ομοσπονδιακά Αρχεία απελευθέρωσαν χαμηλής ανάλυσης εικόνες στα Wikimedia Commons.\\n\\n12\\n00:01:14,250 --> 00:01:18,550\\nΑυτό τριπλασιάσε τον αριθμό των υψηλής ανάλυσης εικόνων που πουλήθηκαν από τα Αρχεία\\n\\n13\\n00:01:18,800 --> 00:01:33,100\\nΤο Ίδρυμα Cariplo στην Ιταλία έχει δημιουργήσει και επιφορτώσει στη Wikipedia 247 Ιταλικά και Αγγλικά άρθρα καθώς και 854 καλλιτέχνες και τα έργα τους από την συλλογή του.\\n\\n14\\n00:01:33,350 --> 00:01:43,850\\nΤο Share Your Knowledge θα σε βοηθήσει να οργανώσεις το υλικό σου με έναν αποτελεσματικό τρόπο, και θα σε υποστηρίξει με τον σχεδιασμό σου για το πως να μοιραστείς όλα τα αρχεία που θα δημιουργήσεις στο μέλλον.\\n\\n15\\n00:01:44,100 --> 00:01:49,000\\nΕίναι ελεύθερο και αυξάνει την αναγνωρισιμότητα του οργανισμού σας και του περιεχομένου σας.\\n\\n16\\n00:01:49,250 --> 00:01:52,750\\nΓιατί να μην το κάνετε, λοιπόν;',\n", + " 'bytes': 3468,\n", + " 'sha1': '9zqi5c7ab4bzarangnek7n7mapus0r3',\n", + " 'parent_id': 73874413,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 74061342,\n", + " 'timestamp': '2012-07-10T09:16:04Z',\n", + " 'user': {'id': 281303, 'text': 'Glavkos'},\n", + " 'page': {'id': 20209863,\n", + " 'title': 'Share Your Knowledge 1 Why glamwiki.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:09,053 --> 00:00:13,001 Kulturelle Einrichtungen bewahren und kreieren Inhalte, 2 00:00:13,001 --> 00:00:14,065 die sie mit der Allgemeinheit teilen wo...'\",\n", + " 'text': '1\\n00:00:09,053 --> 00:00:13,001\\nKulturelle Einrichtungen bewahren und kreieren Inhalte,\\n\\n2\\n00:00:13,001 --> 00:00:14,065\\ndie sie mit der Allgemeinheit teilen wollen.\\n\\n3\\n00:00:15,008 --> 00:00:15,096\\nDennoch,\\n\\n\\n4\\n00:00:15,096 --> 00:00:17,059\\nobwohl einige dieser Inhalte\\n\\n\\n5\\n00:00:17,059 --> 00:00:19,028\\nbereits digital vorliegen,\\n\\n6\\n00:00:19,028 --> 00:00:21,057\\nso sind sie nicht immer verfügbar\\n\\n7\\n00:00:21,057 --> 00:00:23,076\\nbeziehungsweise zugänglich für jeden.\\n\\n8\\n00:00:23,076 --> 00:00:25,076\\nWenn alle Ihre Bücher oder Kataloge\\n\\n9\\n00:00:25,076 --> 00:00:27,003\\nvergriffen sind\\n\\n\\n\\n10\\n00:00:27,003 --> 00:00:30,022\\nund Sie nicht die Mittel zur Neuauflage haben,\\n\\n\\n11\\n00:00:30,022 --> 00:00:33,076\\nwenn Ihre Dateien besser organisiert sein könnten,\\n\\n\\n12\\n00:00:33,076 --> 00:00:36,055\\nund Sie keine Mittel hierfür haben,\\n\\n\\n\\n13\\n00:00:36,055 --> 00:00:38,026\\ndann sind Sie vielleicht daran interessiert,\\n\\n\\n14\\n00:00:38,026 --> 00:00:40,011\\nIhr Wissen und Ihre Inhalte zu teilen.\\n\\n\\n15\\n00:00:40,011 --> 00:00:41,068\\nUm diesen Weg zu beschreiten,\\n\\n\\n16\\n00:00:41,068 --> 00:00:43,053\\nmüssen Sie nur \\n\\n\\n17\\n00:00:43,053 --> 00:00:48,018\\nIhre Inhalte unter eine CC-BY-SA Lizenz stellen.\\n\\n\\n18\\n00:00:48,018 --> 00:00:50,057\\nSie erlaubt es anderen Menschen, sie zu vervielfältigen,\\n\\n\\n19\\n00:00:50,057 --> 00:00:53,051\\nzu editieren oder Kunstbücher auf den Originalen basierend zu kreieren\\n\\n\\n20\\n00:00:53,051 --> 00:00:56,018\\nselbst für kommerzielle Zwecke.\\n\\n\\n21\\n00:00:56,048 --> 00:00:58,081\\nDas neue Werk muss wiederum\\n\\n\\n22\\n00:00:58,081 --> 00:01:00,035\\nunter derselben Lizenz veröffentlicht werden\\n\\n\\n23\\n00:01:00,035 --> 00:01:02,088\\nund auf den ursprünglichen Urheber verweisen.\\n\\n24\\n00:01:02,088 --> 00:01:07,046\\nSo, durch Wikipedia, teilen Sie gratis Ihr Wissen mit der Welt.\\n\\n\\n25\\n00:01:07,046 --> 00:01:09,083\\nHier zwei Beispiele:\\n\\n\\n26\\n00:01:09,083 --> 00:01:11,052\\nDas deutsche Bundesarchiv\\n\\n\\n27\\n00:01:11,052 --> 00:01:15,017\\nstellte in geringer Auflösung Bilder in Wikimedia Commons.\\n\\n\\n28\\n00:01:15,017 --> 00:01:19,043\\nDies führte zu einer Verdreifachung der Einnahmen im Bildverkauf.\\n\\n\\n29\\n00:01:19,043 --> 00:01:22,063\\nDie italienische Cariplo Stiftung hat 247 Artikel geschrieben\\n\\n\\n30\\n00:01:22,063 --> 00:01:24,027\\nund sie in der Wikipedia eingestellt\\n\\n\\n31\\n00:01:24,027 --> 00:01:28,054\\nauf Englisch und Italienisch\\n\\n\\n32\\n00:01:28,054 --> 00:01:34,010\\nüber 854 Künstler und ihre Werke aus der Sammlung der Stiftung.\\n\\n\\n33\\n00:01:34,010 --> 00:01:36,006\\nTeilen Sie Ihr Wissen - \\n\\n\\n34\\n00:01:36,006 --> 00:01:38,017\\nes hilft Ihnen es zu organisieren\\n\\n\\n35\\n00:01:38,017 --> 00:01:39,014\\nauf effiziente Weise\\n\\n\\n36\\n00:01:39,014 --> 00:01:41,013\\nund unterstützt Sie bei der Planung\\n\\n\\n37\\n00:01:41,013 --> 00:01:42,071\\nwie Sie die Archive freistellen,\\n\\n\\n38\\n00:01:42,071 --> 00:01:44,057\\ndie Sie in der Zukunft noch erstellen werden.\\n\\n\\n39\\n00:01:44,057 --> 00:01:45,067\\nEs kostet nichts, und ist doch so wertvoll\\n\\n\\n40\\n00:01:45,067 --> 00:01:47,018\\ndenn es erhöht die Sichtbarkeit\\n\\n\\n41\\n00:01:47,018 --> 00:01:49,082\\nIhrer Einrichtung und Ihrer Inhalte im Netz.\\n\\n\\n42\\n00:01:49,082 --> 00:01:52,041\\nAlso, warum zögern Sie noch?',\n", + " 'bytes': 3126,\n", + " 'sha1': '0sb6qcqlbtn3cex2jm6xgek8s5zn0ut',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 74661426,\n", + " 'timestamp': '2012-07-21T23:40:57Z',\n", + " 'user': {'id': 337229, 'text': 'Mohamed Ouda'},\n", + " 'page': {'id': 20364821,\n", + " 'title': 'Education Program, Cairo Pilot, Testimonial.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,300 --> 00:00:04,249 I joined Wikipedia Project with my students because of many reasons , first 2 00:00:04,249 --> 00:00:07,174 second'\",\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 I joined Wikipedia Project with my students because of many reasons , first\\n\\n2 00:00:04,249 --> 00:00:07,174 second',\n", + " 'bytes': 147,\n", + " 'sha1': '5rxyebo4o2d93nzg5o3buac68bbs8sv',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 74962912,\n", + " 'timestamp': '2012-07-27T11:11:59Z',\n", + " 'user': {'id': 26548, 'text': 'Coyau'},\n", + " 'page': {'id': 20427874,\n", + " 'title': 'Les ateliers Wikimédia au musée de Cluny - Buzzeum.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'un peu de ponctuation',\n", + " 'text': '1\\n00:00:15,014 --> 00:00:16,004\\n<i>Bonjour Claire Séguret.</i>\\n\\n2\\n00:00:16,004 --> 00:00:22,017\\n<i>Merci d’être ici aujourd’hui pour nous parler des ateliers Wikimédia qui ont été mis en place au Musée de Cluny.</i>\\n\\n3\\n00:00:22,052 --> 00:00:25,046\\n<i>Est-ce que vous pouvez nous présenter un peu ces ateliers</i>\\n\\n4\\n00:00:25,049 --> 00:00:28,042\\n<i>et comment surtout ce projet est né au sein du musée.</i>\\n\\n5\\n00:00:28,042 --> 00:00:31,061\\nAlors le projet est né de la conjonction de plusieurs facteurs,\\n\\n6\\n00:00:31,061 --> 00:00:36,002\\ncela faisait très longtemps que l’on se posait la question de Wikipédia.\\n\\n7\\n00:00:36,002 --> 00:00:38,088\\nComment participer à ce grand projet ?\\n\\n8\\n00:00:38,088 --> 00:00:44,014\\nComment l’intégrer à nos outils de communication et de diffusion du savoir ?\\n\\n9\\n00:00:44,014 --> 00:00:46,022\\nMais le partenariat proprement dit est arrivé un petit peu par hasard\\n\\n10\\n00:00:46,025 --> 00:00:49,061\\npar un tweet d’Adrienne Alix, qui est la directrice des programmes de Wikimédia France,\\n\\n11\\n00:00:49,061 --> 00:00:55,015\\nl’association qui fait la promotion de l’encyclopédie,\\n\\n12\\n00:00:55,015 --> 00:00:59,015\\ntweet qui portait sur un point très précis de nos collections, une question très pointue.\\n\\n13\\n00:00:59,015 --> 00:01:02,089\\nEt là je me suis dit il y a sans doute quelque-chose à faire avec cette communauté\\n\\n14\\n00:01:02,089 --> 00:01:08,099\\ns’il y a une telle curiosité pour nos collections, c’est vraiment que le musée doit être présent à travers Wikipédia.\\n\\n15\\n00:01:08,099 --> 00:01:13,042\\n<i>Est-ce que vous pouvez nous expliquer quels sont les différents objectifs de ces ateliers pour le musée ?</i>\\n\\n16\\n00:01:13,042 --> 00:01:20,025\\nL’intérêt du partenariat Wikmédia tel qu’on l’a monté avec Adrienne Alix et Rémi Mathis,\\n\\n17\\n00:01:20,025 --> 00:01:22,085\\nc’est qu’il correspond tout à fait aux attentes et à l’actualité du musée.\\n\\n18\\n00:01:22,085 --> 00:01:28,058\\nLa première, c’est vraiment de sensibiliser les équipes au numérique et à ses problématiques au sens large.\\n\\n19\\n00:01:28,058 --> 00:01:32,085\\nDéjà dédramatiser un peu l’outil Wikipédia sur lequel on peut avoir beaucoup d’idées reçues.\\n\\n20\\n00:01:32,085 --> 00:01:42,035\\nOui, on cite ses sources sur Wikipédia, oui c’est encadré, il y a une communauté qui répond, qui enrichit les articles et c’est un véritable outil de diffusion de la connaissance.\\n\\n21\\n00:01:42,035 --> 00:01:47,092\\nPuis cela permettait aussi d’aborder les questions comme les licences libres, l’open data, le droit d’auteur\\n\\n22\\n00:01:47,092 --> 00:01:51,050\\net c’était vraiment important pour nous en interne d’avoir cette information.\\n\\n23\\n00:01:51,050 --> 00:01:58,002\\nDeuxième objectif, il est en lien avec un de nos plus gros projets actuellement, qui est celui de la refonte du site internet\\n\\n24\\n00:01:58,002 --> 00:02:02,023\\net l’un des gros volets de cette refonte concerne les contenus\\n\\n25\\n00:02:02,023 --> 00:02:06,005\\nles contenus qui existent déjà sur le site actuel et qu’il faudrait ré-écrire, retravailler\\n\\n26\\n00:02:06,005 --> 00:02:08,059\\net les contenus qu’il va falloir produire.\\n\\n27\\n00:02:08,059 --> 00:02:15,053\\nJe trouvais que les ateliers Wikipédia étaient une bonne manière d’initier les personnels et notamment les équipes scientifiques\\n\\n28\\n00:02:15,053 --> 00:02:17,076\\nà ce qu’est l’écriture pour le web.\\n\\n29\\n00:02:17,076 --> 00:02:25,075\\nAlors concrètement, on a constitué deux équipes, puisqu’on avait en tout plus de 25 personnes qui se sont inscrites et qui ont manifesté leur intérêt,\\n\\n30\\n00:02:25,075 --> 00:02:34,029\\nL’idée étant que les bénévoles de Wikimédia France qui sont des Wikipédiens aguerris, viennent initier les personnels à la contribution.\\n\\n31\\n00:02:34,029 --> 00:02:39,042\\nAlors on commence très simplement dans ce qu’ils appellent le bac-à-sable, on crée son compte, on crée sa fiche perso\\n\\n32\\n00:02:39,042 --> 00:02:45,093\\net dès ces moments là, on est devant l’ordinateur et on apprend la grammaire, la syntaxe Wikipédia\\n\\n33\\n00:02:45,093 --> 00:02:50,018\\nà mettre en page, à répondre si quelqu’un fait un commentaire\\n\\n34\\n00:02:50,018 --> 00:02:52,089\\net puis très très vite, on apprend à contribuer.\\n\\n35\\n00:02:52,089 --> 00:02:55,056\\nLa contribution peut prendre des formes très variées :\\n\\n36\\n00:02:55,056 --> 00:02:59,051\\nÇa va de la correction d’une légende sur WikiCommons, la médiathèque,\\n\\n37\\n00:02:59,051 --> 00:03:03,094\\nà la création d’un article, à la correction de fautes d’orthographe ou de virgules,\\n\\n38\\n00:03:03,094 --> 00:03:07,087\\nce qui permettait à vraiment chacun de trouver quelque-chose qui lui convienne.\\n\\n39\\n00:03:07,087 --> 00:03:13,007\\nCertains personnels se sont lancés très très vite sur des sujets de fond,\\n\\n40\\n00:03:13,007 --> 00:03:16,058\\nd’autres sont restés sur des corrections mineures, mais toute contribution est importante.\\n\\n41\\n00:03:16,058 --> 00:03:20,071\\nMaintenant il faut que l’on transforme l’essai\\n\\n42\\n00:03:20,071 --> 00:03:24,063\\net il est prévu que l’on fasse un atelier par trimestre. Les prochains auront lieu à la rentrée,\\n\\n43\\n00:03:24,063 --> 00:03:31,058\\nen espérant pouvoir créer un petit groupe de contributeurs au sein du musée\\n\\n44\\n00:03:31,058 --> 00:03:36,058\\nqui puisse enrichir les articles sur la thématique du musée et du Moyen-Âge au sens large.\\n\\n45\\n00:03:36,058 --> 00:03:46,023\\n<i>Est-ce que vous pouvez nous décrire un peu qui sont les participants qui ont été présents pour ces ateliers, et surtout comment ils ont réagi ?</i>\\n\\n46\\n00:03:46,062 --> 00:03:51,029\\nOn a eu des participants issus de toutes les équipes du musée.\\n\\n47\\n00:03:51,029 --> 00:03:53,082\\nEncore une fois, l’idée c’était que ce soit ouvert à tous,\\n\\n48\\n00:03:53,082 --> 00:03:58,081\\nmême si au départ certains ont été surpris et ont dit « Non, moi je ne peux rien apporter, je ne suis pas conservateur »\\n\\n49\\n00:03:58,081 --> 00:04:02,046\\nfinalement chacun a un regard sur les collections et sur le musée qui est intéressant.\\n\\n50\\n00:04:02,046 --> 00:04:08,072\\nOn a eu des personnels de surveillance, c’était la partie du personnel la plus représentée, j’étais très contente,\\n\\n51\\n00:04:08,072 --> 00:04:15,028\\non a eu des conservateurs, des membres de la documentation, de l’action culturelle, de la communication :\\n\\n52\\n00:04:15,028 --> 00:04:22,062\\nÇa peut aussi être des gens de l’accueil RMN, des conférenciers, on a vraiment eu tout le monde.\\n\\n53\\n00:04:22,062 --> 00:04:25,087\\nEt même le service financier. Tout le monde est venu. Et même la direction.\\n\\n54\\n00:04:25,087 --> 00:04:30,051\\n<i>Est-ce que ces ateliers ont fait émerger de nouvelles idées ?</i>\\n\\n55\\n00:04:30,051 --> 00:04:34,090\\nOui, c’était tout l’intérêt d’ailleurs : apporter un regard nouveau sur les collections du musée.\\n\\n56\\n00:04:34,090 --> 00:04:40,001\\nJe pense notamment à un agent d’accueil et de billetterie de la RMN qui connaît très bien les lieux\\n\\n57\\n00:04:40,001 --> 00:04:44,026\\nqui très vite s’est détourné de l’encyclopédie et du savoir écrit\\n\\n58\\n00:04:44,026 --> 00:04:47,032\\net s’est penché plutôt sur Commons et la question des photos.\\n\\n59\\n00:04:47,032 --> 00:04:54,094\\nC’est quelqu’un qui est passionné d’images et de cinéma et qui a très vite eu l’envie de faire une sorte de campagne photo autour du musée.\\n\\n60\\n00:04:54,094 --> 00:05:04,023\\nJe pense qu’autour de lui on va essayer de créer un petit groupe à la fois de personnels du musée et de Wikipédiens pour avoir une meilleure couverture photo des lieux.\\n\\n61\\n00:05:04,023 --> 00:05:10,056\\n<i>Il y a peut-être d’autres projets qui ont été abordés comme ça, d’autres idées qui vont être mises en place ?</i>\\n\\n62\\n00:05:10,056 --> 00:05:16,002\\nIl y a beaucoup d’idées qui ont émergé, beaucoup de débats aussi, c’est l’intérêt.\\n\\n63\\n00:05:16,002 --> 00:05:21,043\\nOn se sent parfois un peu submergés, la question des droits photo est capitale et pas encore dénouée.\\n\\n64\\n00:05:21,043 --> 00:05:29,035\\nPlus que des projets, je crois que surtout ça a bien remis tout le monde dans cette espèce de dynamique numérique.\\n\\n65\\n00:05:29,035 --> 00:05:35,008\\nJe pense que cela donnera une nouvelle impulsion à notre chantier de site internet.\\n\\n66\\n00:05:35,008 --> 00:05:40,026\\nMaintenant je connais aussi notre charge de travail par ailleurs, et les autres missions des personnels par ailleurs,\\n\\n67\\n00:05:40,026 --> 00:05:43,050\\ndonc je ne vais pas m’enflammer sur des projets qui ne pourront pas forcément voir le jour,\\n\\n68\\n00:05:43,050 --> 00:05:50,039\\nmais on essaiera déjà de mener ce projet de partenariat à bien, en renouvelant cette expérience des ateliers.\\n\\n69\\n00:05:50,039 --> 00:05:53,047\\nDans l’avenir, vous comptez renouveler les ateliers Wikimédia ?\\n\\n70\\n00:05:53,047 --> 00:05:58,058\\nOui, on va essayer de maintenir une régularité et de les avoir une fois par trimestre\\n\\n71\\n00:05:58,058 --> 00:06:03,078\\npour fidéliser un petit groupe de contributeurs.\\n\\n72\\n00:06:03,078 --> 00:06:07,034\\nLe partenariat pour l’instant est signé pour un à deux ans,\\n\\n73\\n00:06:07,034 --> 00:06:11,037\\nil n’est pas impossible que l’on continue comme cela pendant très longtemps.\\n\\n74\\n00:06:11,037 --> 00:06:15,088\\nLe fonctionnement est assez simple, et le mise en place est très facile.\\n\\n75\\n00:06:15,088 --> 00:06:20,005\\n<i>Ok, merci beaucoup et on se tient au courant pour le prochain atelier !</i>\\n\\n76\\n00:06:20,007 --> 00:06:21,054\\nÇa marche !',\n", + " 'bytes': 9568,\n", + " 'sha1': 'cu0imbelje0akcq2sqffp9mvmv9sqar',\n", + " 'parent_id': 74958477,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 111351309,\n", + " 'timestamp': '2013-12-06T23:29:08Z',\n", + " 'user': {'id': 1547360, 'text': 'Raoli'},\n", + " 'page': {'id': 20523704,\n", + " 'title': 'Monmouthpedia video revised.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'sposto \"informazioni\" da battuta 30 a 29 per sincronizzarla al parlato',\n", + " 'text': '1\\n00:00:15,045 --> 00:00:17,016\\nHo iniziato MonmouthpediA perché penso che la\\n\\n2\\n00:00:17,016 --> 00:00:18,079\\nconoscenza può fornici un quadro generale delle cose\\n\\n3\\n00:00:18,079 --> 00:00:21,022\\npermettendoci di apprezzare di più il nostro ambiente.\\n\\n4\\n00:00:21,064 --> 00:00:24,063\\nIl progetto nasce dalla collaborazione tra Wikimedia UK,\\n\\n5\\n00:00:24,063 --> 00:00:26,072\\nil Consiglio della Contea di Monmouth, i musei,\\n\\n6\\n00:00:26,072 --> 00:00:29,036\\nla biblioteca, l\\'Università del Galles, la Cardiff Met,\\n\\n7\\n00:00:29,036 --> 00:00:32,023\\nma soprattutto grazie ai singoli contributori,\\n\\n8\\n00:00:32,023 --> 00:00:34,076\\nai gruppetti di comunità locali e alle persone\\n\\n9\\n00:00:34,076 --> 00:00:36,044\\nnon solo di Monmouth, ma di tutto\\n\\n10\\n00:00:36,044 --> 00:00:38,076\\nil mondo che creano i contenuti e\\n\\n11\\n00:00:38,076 --> 00:00:39,096\\nhanno permesso che questo accada.\\n\\n12\\n00:00:40,019 --> 00:00:41,086\\nUn codice QR è un tipo di codice a barre\\n\\n13\\n00:00:41,086 --> 00:00:43,032\\nche puoi leggere con un cellulare o una\\n\\n14\\n00:00:43,032 --> 00:00:45,094\\ntavoletta che ti rimanda ad una pagina web.\\n\\n15\\n00:00:45,094 --> 00:00:47,060\\nLa cosa grandiosa del QRpedia è che,\\n\\n16\\n00:00:47,060 --> 00:00:49,003\\na seconda della lingua del telefono, \\n\\n\\n17\\n00:00:49,003 --> 00:00:51,040\\nil sistema ti rimanderà alla pagina\\n\\n18\\n00:00:51,040 --> 00:00:52,018\\ndi Wikipedia nella tua lingua.\\n\\n19\\n00:00:52,018 --> 00:00:53,075\\nSe hai un cellulare spagnolo\\n\\n20\\n00:00:53,075 --> 00:00:55,034\\nQRpedia rimanderà alla voce spagnola,\\n\\n21\\n00:00:55,034 --> 00:00:56,065\\nse in tedesco, alla voce tedesca.\\n\\n22\\n00:00:56,065 --> 00:00:58,096\\nPenso che la vera attrazione dei codici QR per noi\\n\\n23\\n00:00:58,096 --> 00:01:03,060\\nè che ci dà la possibilità di far\\xa0vedere le \\n\\n24\\n00:01:03,060 --> 00:01:05,060\\nnostre informazioni nelle altre lingue e ciò\\n\\n25\\n00:01:05,060 --> 00:01:08,011\\nè un gran vantaggio soprattutto per Monmouth.\\n\\n26\\n00:01:08,011 --> 00:01:10,092\\nLa lingua gallese è una possibilità,\\n\\n27\\n00:01:10,092 --> 00:01:12,096\\nma anche tutte le altre lingue del mondo.\\n\\n28\\n00:01:12,096 --> 00:01:16,095\\nL\\'altro grande vantaggio dal punto di vista del curatore\\n\\n29\\n00:01:16,095 --> 00:01:19,024\\nè che ci piace dare alle persone le informazioni\\n\\n30\\n00:01:19,024 --> 00:01:24,012\\nfin quando le \"vacche non tornano a casa\"\\n\\n31\\n00:01:24,012 --> 00:01:26,042\\ne non possiamo farlo perché manca lo spazio.\\n\\n32\\n00:01:26,074 --> 00:01:29,087\\nLo Shire Hall è il primo edificio classificato di Grado 1\\n\\n33\\n00:01:29,087 --> 00:01:34,004\\ncon grandi storie da raccontare, un sacco di eventi e attività\\n\\n34\\n00:01:34,004 --> 00:01:36,080\\nche hanno avuto luogo nel palazzo,\\n\\n35\\n00:01:36,080 --> 00:01:39,052\\nma abbiamo ottenuto una collezione molto molto piccola.\\n\\n36\\n00:01:39,052 --> 00:01:42,080\\nQuindi, l\\'utilizzo dei codici QRpedia, dà alle persone\\n\\n37\\n00:01:42,080 --> 00:01:46,028\\nl\\'accesso a una vasta gamma di informazioni\\n\\n38\\n00:01:46,028 --> 00:01:49,044\\nsulle storie, così come sui manufatti.\\n\\n39\\n00:01:50,022 --> 00:01:53,035\\nPer uno studente di storia è bello scegliere\\n\\n40\\n00:01:53,035 --> 00:01:56,080\\nquali informazioni poter vedere e \\n\\n41\\n00:01:56,080 --> 00:02:00,003\\nnon essere bombardati da esse, a volte,\\n\\n42\\n00:02:00,003 --> 00:02:03,093\\nquando si va in un museo.\\n\\n43\\n00:02:04,047 --> 00:02:07,040\\nÈ fantastico che Monmouth sia la prima cittadina\\n\\n44\\n00:02:07,040 --> 00:02:10,096\\nad offrire i QRpedia, e la prima a diventare di\\n\\n45\\n00:02:10,096 --> 00:02:13,092\\nfama mondiale per il progetto che Wikipedia\\n\\n46\\n00:02:13,092 --> 00:02:17,027\\nfa qui. Penso che un sacco di persone\\n\\n47\\n00:02:17,027 --> 00:02:20,008\\nnel mondo si stanno ora interessando\\n\\n48\\n00:02:20,008 --> 00:02:22,032\\nalla nostra affascinante storia.\\n\\n49\\n00:02:22,046 --> 00:02:25,004\\nLo scrittore William Gibson notoriamente famoso disse:\\n\\n50\\n00:02:25,004 --> 00:02:28,004\\n\"Il futuro è già qui, è solo distribuito uniformemente\".\\n\\n51\\n00:02:28,004 --> 00:02:31,032\\nCon Monmouth che adotta QRpedia come tecnologia\\n\\n52\\n00:02:31,032 --> 00:02:34,076\\ne che diventa una città WiFi, ora abbiamo un esempio \\n\\n53\\n00:02:34,076 --> 00:02:37,067\\nreale e concreto del modo in cui possiamo avere\\n\\n54\\n00:02:37,067 --> 00:02:39,090\\ncomunità che si uniscono sia a livello locale\\n\\n55\\n00:02:39,090 --> 00:02:43,053\\nche globale, per condividere e creare un nuovo\\n\\n56\\n00:02:43,053 --> 00:02:46,007\\nsenso del luogo a Monmouth e portare\\n\\n57\\n00:02:46,007 --> 00:02:47,093\\nnuove esperienze ai visitatori della città.',\n", + " 'bytes': 4478,\n", + " 'sha1': 'mgqutou26r63929n09ti1877fz9hh8a',\n", + " 'parent_id': 111351246,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606370780,\n", + " 'timestamp': '2021-11-09T12:04:12Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 20755044,\n", + " 'title': 'Createaccount.ogv.is.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,444\\nHér er hvernig á að búa\\ntil notandareikninginn þinn\\n\\n2\\n00:00:02,470 --> 00:00:03,794\\ná íslensku Wikipedia.\\n\\n3\\n00:00:04,500 --> 00:00:08,250\\nFirst, farðu á is.wikipedia.org\\n\\n4\\n00:00:08,750 --> 00:00:13,250\\nSíðan, smelltu á \"Nýskrá\" efst\\ní hægra horni síðunnar.\\n\\n5\\n00:00:13,830 --> 00:00:17,750\\nEftir það, smelltu á\\n\"Ertu ekki með reikning? Búðu til einn\".\\n\\n6\\n00:00:19,000 --> 00:00:23,241\\nSkrunaðu aðeins niður síðuna\\nog skrifaðu niður orðið.\\n\\n7\\n00:00:23,500 --> 00:00:26,341\\nSíðan, skrifaðu notendanafnið\\nsem þú villt nota,\\n\\n8\\n00:00:26,354 --> 00:00:28,427\\nlykilorðið sem þú vilt\\n\\n9\\n00:00:28,476 --> 00:00:31,339\\nog valfrjálsa netfangið.\\n\\n10\\n00:00:31,520 --> 00:00:33,489\\nEftir það, smelltu á \"Nýskrá\".\\n\\n11\\n00:00:33,525 --> 00:00:36,305\\nNúna framveigis, átt þú Wikipedia aðgang.',\n", + " 'bytes': 865,\n", + " 'sha1': 'hzlvn1d7a4t8dn143tx8hwgst13foa1',\n", + " 'parent_id': 336140295,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 76561407,\n", + " 'timestamp': '2012-08-24T20:35:03Z',\n", + " 'user': {'id': 1547360, 'text': 'Raoli'},\n", + " 'page': {'id': 20835932,\n", + " 'title': 'Zingaretti, Palazzo Chigi.ogg.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'fine',\n", + " 'text': 'Ciao a tutti, buongiorno, grazie. Io intervengo ora e mi scuso perché fra un po\\' di minuti qui sotto inizia il Consiglio Provinciale dedicato alla crisi economica con le forze sociali e i sindacati e quindi è importante presiederlo, visto il clima. Però ci tenevo, a venire prima qui a portarvi il saluto e anche i ringraziamenti all\\'associazione per il lavoro fatto, perché questo progetto che abbiamo sostenuto delle scuole sulla Costituzione; è a mio giudizio uno dei progetti più importanti per aiutare la scuola nella sua vera funzione di formazione dei cittadini. Nella scuola è importante la nozione, ovviamente, non banalizziamo: sapere quanto fa due più due o quando l\\'\\'\\'a\\'\\' si usa con l\\'acca e senz\\'acca o quando c\\'è la data storica, non va banalizzato. Ma, la scuola è anche il luogo nel quale quando un ragazzo / una ragazza esce, esce da cittadino, cioè cosciente di quello che è, cosciente delle proprie possibilità, cosciente del fatto che ha dei diritti e che ha dei doveri, e in questo le nozioni sui libri a volte non bastano. Bisogna in, questo lavoro col corpo docente è importante perché si dà una mano. Perché è importante la Costituzione, secondo me? In primo luogo, fatemelo dire, per gli uomini e le donne che l\\'hanno scritta, a me mi ha molto impressionato questo brevissimo video di Oscar Luigi Scalfaro perché, un po\\', è una testimonianza, non so se vi ha colpito anche a voi, di una cosa molto importante: di quest\\'uomo molto anziano, lucidissimo nella mente, un po\\' affaticato nel fisico, che pure trova il tempo e la voglia di re-incontrare i giovani e di dirgli \"Oh, state in campo e combattete\". Beh, questa è stata una delle più belle caratteristiche di una bellissima generazione di italiani che è quella che ha scritto la Costituzione e anche, fatemelo dire, di tanti ragazzi e ragazze italiani che sono morti per costruire le condizioni di ricostruire in questo paese la democrazia. Che non è banale, a dirlo, c\\'ho pensato tante volte nella mia vita. Io faccio politica da quando ho sedici anni e in queste - oggi ce n\\'ho quarantacinque, quarantasei, quindi sono tanti, però io tante volte, anche nei momenti nei quali uno si lamenta perché la vita è dura, poi figuratevi adesso, se può essere trovato [...] stimolante. Però io tante volte mi son trovato, leggendo quei testi o leggendo le storie italiane: \"io avrei avuto la forza di mettere addirittura in discussione la mia vita per affermare le mie idee !\", <io sono animagda>, io credo che è molto importante farla per capire quanto è importante ricordare quel periodo storico e ricordare il valore di un testo che è costato sangue a tanti giovani, e tante ragazzi / ragazze. Perché, oggi, questa è una democrazia, una repubblica perché quando si rischiava la vita c\\'è chi l\\'ha fatto, c\\'è chi l\\'ha rischiata, ma non per se, che oggi è uno de.., il calcolo della politica, in fondo, oggi qual\\'è? La percezione, perché purtroppo in parte è così, che chi ha responsabilità pubbliche e politiche lo fa non per gli altri e per una missione, ma lo fa per far carriera, per fare i soldi, per occupare una poltrona; e la morte - diciamo - della politica è quando la politica diventa questo. La costituzione è importante anche perché nasce dentro una visione concretissima del quale la politica era il modo di pensare agli altri, alla comunità, all\\'Italia, a prescindere addirittura dal proprio destino perché si moriva, quindi quando lo facevano... - ci sono delle lettere dei condannati a morte per la resistenza meravigliose, che tra l\\'altro le scrivono ai figli alle mogli e dice \"Oh, io sono qui, ma sono orgoglioso perché so che ci sarà un domani migliore\", mamma mia!, mamma mia! Io.., non è migliore, poi, di quello che permette oggi a tutti noi (e questa è la seconda cosa) di fare delle cose che ora ci sembrano normali: uscire, comprarsi un giornale, scegliere un giornale, andare a votare o non andare a votare, dire Zingaretti è un cornuto al presidente d\\'istituzione, ma non per questo se lo dico qualcuno mi arresterà o mi picchierà, costruirmi una mia associazione, decidere di non costruirla, cioè tutte cose che, grazie a loro, per noi sono normali, sono conquiste oppure a un certo punto il fatto che si entra a scuola che è pubblica, che è gratuita e si entra a scuola e vi accompagnano fino al percorso scolastico perché? Perché c\\'è una Costituzione che dice che la formazione è un diritto, quindi non è una cosa scontata, è dentro una serie di regole che sono determinate e hanno pensato a noi. Vi sono articoli della Costituzione che non sono, invece, fino in fondo realizzati: \"Il lavoro è un diritto\" eheheh, si, infatti se non sbaglio l\\'articolo tre dice \"La repubblica si pone l\\'obiettivo di superare gli ostacoli per la sua piena realizzazione\". E quindi abbiamo un testo che ci aiuta, allora perché sono importanti queste discussioni, questi incontri, questo lavoro che stiamo facendo (e chiudo)? Perché la Costituzione repubblicana, io penso, sia una carta da amare perché ci dà due cose fondamentali: dei diritti e dei doveri; quindi i paletti. Garantisce l\\'agibilità di essere cittadini, ma ogni giorno va conquistata e va realizzata; non è data, non ci sarà mai un momento nel quale tutti i diritti e tutti i doveri saranno affermati, cioè quel diritto al lavoro oppure il diritto allo studio all\\'Università; saranno dei diritti che visto che sono scritti in Costituzione, sono oggettivi. \"Arrivano\", \"No\", ma al di là della Costituzione vanno conquistati con l\\'impegno, con la criticità, con la vigilanza, con lala presenza, con la consapevolezza che ci sono dei diritti, ieri che è giusto che io ne sia cosciente. Sapete perché? Perché ad esempio si è più liberi e si rifiuta la cultura del lavoro che è un favore da chiedere a qualcuno: al politico, al potente di turno. Non è un favore da chiedere, il lavoro, è un diritto sancito dalla Costituzione che la battaglia o l\\'impegno per il lavoro è un impegno civico e civile molto, molto importante. Per questo davvero grazie perché la scuola, a mio giudizio, si aiuta, ripeto, non solo a farvi conoscere le nozioni, ma anche fino in fondo riesce a dare consapevolezza di questi due pilastri dell\\'idea e valori della Costituzione che sono i diritti e i doveri, aiuta le persone ad essere più cittadine e quindi in fondo anche più libere perché poi non è un elemento marginale \\'\\'libere di scegliere\\'\\'. Noi abbiamo dato un piccolo contributo, lo faremo anche per il 2013, prima che ci sciolgono, non so se ci sciolgono. A proposito di Costituzione, comunque, nel 2013 noi ci saremo e faremo di tutto perché con le scuole questo impegno alla formazione civile, davvero non venga meno, perché poi questo forse è uno dei momenti della storia repubblicana nel quale, di questo lavoro, ci vuole davvero tantissimo bisogno. Auguroni e grazie ancora per il vostro aiuto per questa missione.',\n", + " 'bytes': 6941,\n", + " 'sha1': '0v8gp2n46s9nocd93yuuvh42n378xy2',\n", + " 'parent_id': 76560543,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 653304501,\n", + " 'timestamp': '2022-05-02T09:56:40Z',\n", + " 'user': {'id': 1297740, 'text': 'Snævar'},\n", + " 'page': {'id': 20899435,\n", + " 'title': 'RefTools.ogv.is.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,672\\n[CC eftir Snævar og Pacha Tchernof]\\n\\n2\\n00:00:01,702 --> 00:00:04,515\\nÞetta er myndband um notkun RefToolbar\\n\\n3\\n00:00:04,547 --> 00:00:05,830\\neða RefTools.\\n\\n4\\n00:00:06,238 --> 00:00:09,646\\nRefToolbar bætir við möguleikum\\ní breytingarstikunni\\n\\n5\\n00:00:09,695 --> 00:00:13,794\\nsem leyfir þér að setja vísun\\ní heimild inn fljótt og auðveldlega.\\n\\n6\\n00:00:14,385 --> 00:00:17,150\\nÞað sníður heimildir sjálfkrafa\\n\\n7\\n00:00:17,184 --> 00:00:20,508\\nog er snyrtilegt í greinum.\\n\\n8\\n00:00:20,529 --> 00:00:23,208\\nÞað er mjög gott smáforrit í notkun.\\n\\n9\\n00:00:23,558 --> 00:00:26,229\\nÉg er í sandkassanum mínum.\\n\\n10\\n00:00:26,240 --> 00:00:31,283\\nNúna hef ég aðeins smellt á \"breyta\"\\nog þú sérð að á breytingarstikunni\\n\\n11\\n00:00:31,348 --> 00:00:33,495\\ner möguleikinn Heimild.\\n\\n12\\n00:00:33,528 --> 00:00:37,883\\nÞegar smellt er á hann\\nbirtist þessi valmynd\\n\\n13\\n00:00:37,902 --> 00:00:41,314\\nog í henni er fellivallisti\\n\\n14\\n00:00:41,348 --> 00:00:44,312\\nnefndar heimildir og villuprófun.\\n\\n15\\n00:00:44,346 --> 00:00:45,953\\nÞegar smellt er á fellivallistann\\n\\n16\\n00:00:45,999 --> 00:00:48,924\\nsérð þú fjóra mismunandi\\nmöguleika til að vísa í heimild.\\n\\n17\\n00:00:50,148 --> 00:00:55,662\\n\"Cite web\" er notað til að vísa\\ní almenna vefsíðu.\\n\\n18\\n00:00:55,745 --> 00:01:00,760\\n\"Cite news\" er notað\\ntil að vísa í fréttablað eða frétt,\\n\\n19\\n00:01:00,810 --> 00:01:02,840\\nannaðhvort á netinu eða í prenti.\\n\\n20\\n00:01:02,886 --> 00:01:05,395\\n\"Cite book\" er augljóslega notað\\ntil að vísa í bækur.\\n\\n21\\n00:01:05,435 --> 00:01:14,547\\n\"Cite journal\" er til að vísa\\ní tímarit og fræðirit.\\n\\n22\\n00:01:14,713 --> 00:01:18,765\\nÉg ætla að fara yfir hvert þeirra\\nsnögglega og sýna þér möguleikana.\\n\\n23\\n00:01:18,788 --> 00:01:20,541\\nEf þú smellir á \"Cite web\",\\n\\n24\\n00:01:20,560 --> 00:01:24,097\\nbirtist þessi gluggi\\nmeð mismunandi textareitum.\\n\\n25\\n00:01:24,147 --> 00:01:26,296\\nFlestir þeirra útskýra sig sjálfir.\\n\\n26\\n00:01:26,329 --> 00:01:29,328\\nÉg ætla ekki að útskýra þá augljósustu.\\n\\n27\\n00:01:29,361 --> 00:01:33,743\\nGreinilega er síðasta og fyrsta nafn, \\nnafn höfundar.\\n\\n28\\n00:01:33,793 --> 00:01:36,705\\nEn sumir þurfa smáútskýringar.\\n\\n29\\n00:01:36,772 --> 00:01:40,254\\nRitverk er\\n\\n30\\n00:01:40,305 --> 00:01:43,603\\nhluti af stærra verki\\n\\n31\\n00:01:43,653 --> 00:01:47,501\\neins og hluti af bók eða vefsíðu.\\n\\n32\\n00:01:47,557 --> 00:01:49,968\\nÞú myndir skrifa það undir verk.\\n\\n33\\n00:01:50,049 --> 00:01:54,982\\nÚtgefandi er augljóslega\\ná sem gaf út vefsíðuna.\\n\\n34\\n00:01:55,032 --> 00:01:57,532\\nÞað er almennt ekki nafn síðunnar,\\n\\n35\\n00:01:57,573 --> 00:01:59,515\\nþað er oftast ritverk.\\n\\n36\\n00:01:59,547 --> 00:02:02,963\\nDags. Skoðað er dagsetningin\\nþegar síðan var sótt.\\n\\n37\\n00:02:02,996 --> 00:02:07,012\\nÞað er auðvelt að bæta henni\\nvið með smelli á dagatalið hérna.\\n\\n38\\n00:02:07,062 --> 00:02:09,289\\nÞað bætir við núverandi dagsetningu.\\n\\n39\\n00:02:09,358 --> 00:02:13,130\\nHérna niðri er möguleiki\\nað bæta við nafn heimildar.\\n\\n40\\n00:02:13,164 --> 00:02:16,059\\nÉg ætla að fara betur yfir það síðar.\\n\\n41\\n00:02:16,333 --> 00:02:18,264\\nÉg ætla næst að smella á \"Cite news\".\\n\\n42\\n00:02:18,516 --> 00:02:24,113\\nÞessir útskýra sig sjálfir\\nsvo ég ætla ekki að útskýra þá.\\n\\n43\\n00:02:24,910 --> 00:02:29,691\\n\"Cite book\" útskýrir sig líka sjálft.\\n\\n44\\n00:02:30,315 --> 00:02:32,524\\nÁr er útgáfuár\\n\\n45\\n00:02:32,574 --> 00:02:35,421\\nÚtgefanda vorum við búin að fara yfir.\\n\\n46\\n00:02:35,456 --> 00:02:39,288\\nStaðsetning er jarðfræðileg staðsetning \\nþar sem bókin var gefin út.\\n\\n47\\n00:02:39,604 --> 00:02:44,452\\nISBN stendur fyrir \"International\\nStandard Book Number\"\\n\\n48\\n00:02:44,502 --> 00:02:50,038\\nÞað er meira um það\\ná wikipedia.org/wiki/ISBN\\n\\n49\\n00:02:50,053 --> 00:02:53,153\\nEn það er í grunnatriðum\\neinstakt auðkenni bókar.\\n\\n50\\n00:02:53,754 --> 00:02:58,919\\nBlaðsíður eru ekki\\nheildarblaðsíðufjöldi bókar\\n\\n51\\n00:02:58,983 --> 00:03:03,667\\nheldur þær síður sem þú vísar til.\\n\\n52\\n00:03:03,834 --> 00:03:06,876\\nVefslóð er aðeins notuð\\n\\n53\\n00:03:06,927 --> 00:03:10,228\\ntil að vísa á frí eintök\\n\\n54\\n00:03:10,261 --> 00:03:14,373\\nen ekki bókaverslanir.\\n\\n55\\n00:03:15,672 --> 00:03:19,292\\nSíðan kíkjum við á \"Cite journal\".\\n\\n56\\n00:03:19,326 --> 00:03:21,328\\nÞetta hefur marga möguleika,\\n\\n57\\n00:03:21,336 --> 00:03:27,054\\nen þeir sem er erfitt\\nað skilja eru DOI og PMID.\\n\\n58\\n00:03:27,228 --> 00:03:30,023\\nÞau eru einstök auðkenni.\\n\\n59\\n00:03:30,056 --> 00:03:36,159\\nÞetta er Digital Object Identifier\\nog þetta Pub Med unit IDentifier.\\n\\n60\\n00:03:36,434 --> 00:03:39,539\\nÞeir eru eins og ISBN.\\n\\n61\\n00:03:39,752 --> 00:03:44,264\\nVefslóð ætti að tengja\\ní fría útgáfu textans\\n\\n62\\n00:03:44,285 --> 00:03:46,467\\nen ef það er ekki til\\n\\n63\\n00:03:46,517 --> 00:03:50,262\\nmá tengja í útgáfu sem hægt\\ner að nálgast með áskrift.\\n\\n64\\n00:03:50,295 --> 00:03:53,686\\nEf þú tilgreinir ekki DOI eða PMID\\n\\n65\\n00:03:53,740 --> 00:04:00,792\\ngetur þú notað vefslóð á úrdrátt\\neða lýsingu á greininni.\\n\\n66\\n00:04:00,840 --> 00:04:04,635\\nHér er hugmynd að grein um Mastiffs.\\n\\n67\\n00:04:04,699 --> 00:04:06,515\\nHún er þrjár setningar að lengd.\\n\\n68\\n00:04:06,582 --> 00:04:08,931\\nOg er öll frá þessari bók\\n\\n69\\n00:04:09,014 --> 00:04:12,161\\nsem heitir Mastiffs,\\neftir Kim Campell Thornton.\\n\\n70\\n00:04:12,261 --> 00:04:15,010\\nÉg ætla að sýna hvernig á að vísa í bók.\\n\\n71\\n00:04:15,090 --> 00:04:16,876\\nÉg smelli á breyta.\\n\\n72\\n00:04:18,809 --> 00:04:20,941\\nÞað mikilvæga\\n\\n73\\n00:04:21,007 --> 00:04:24,160\\ner að setja bendilinn\\nþar sem heimildin á að koma.\\n\\n74\\n00:04:24,183 --> 00:04:27,959\\nÞar sem ég vill vísa í heimild fyrir\\n\"They were first being exhibited in 1860\"\\n\\n75\\n00:04:28,009 --> 00:04:29,608\\nset ég bendilinn aftan við það.\\n\\n76\\n00:04:30,056 --> 00:04:31,803\\nSmelli á \"Cite book\"\\n\\n77\\n00:04:32,203 --> 00:04:37,552\\nog slæ in nafn höfundar,\\n\\n78\\n00:04:38,292 --> 00:04:39,748\\ntitil bókarinnar,\\n\\n79\\n00:04:40,398 --> 00:04:42,015\\nútgáfuárið\\n\\n80\\n00:04:42,025 --> 00:04:46,220\\nfinn ég í þessum hluta\\nsem Google Books sýnir.\\n\\n81\\n00:04:47,052 --> 00:04:51,495\\nÁrið var 2009 og útgefandinn\\nvar \"Barron\\'s Educational Series\"\\n\\n82\\n00:04:53,282 --> 00:04:55,911\\nSíðan get ég fundið ISBN.\\n\\n83\\n00:04:57,006 --> 00:04:59,127\\nÉg nota 13 stafa töluna.\\n\\n84\\n00:05:01,512 --> 00:05:03,665\\nÉg lími hana bara hér inn.\\n\\n85\\n00:05:03,698 --> 00:05:06,947\\nÉg veit að ég notaði síður 9-10.\\n\\n86\\n00:05:07,029 --> 00:05:11,478\\nÉg afrita vefslóð síðunnar\\nog lími hana hér.\\n\\n87\\n00:05:11,511 --> 00:05:14,497\\nÉg þarf að velja heimildanafn,\\n\\n88\\n00:05:14,546 --> 00:05:17,806\\nsvo ég ætla að nota \"Thornton\",\\nþví það er nafn höfundarins.\\n\\n89\\n00:05:18,392 --> 00:05:20,675\\nÞú sérð að heimildin\\nhefur verið sett hér inn\\n\\n90\\n00:05:20,695 --> 00:05:24,479\\ná milli þessara tveggja HTML taga.\\n\\n91\\n00:05:24,505 --> 00:05:27,623\\nOg heimildarsnið\\ner innifalið á milli þeirra.\\n\\n92\\n00:05:27,657 --> 00:05:30,673\\nNú þarf ég að bæta við heimildar kafla.\\n\\n93\\n00:05:30,723 --> 00:05:33,988\\nÞetta er mikilvægt,\\nþví annars færðu villu.\\n\\n94\\n00:05:34,038 --> 00:05:39,566\\nÉg bý til heimildar fyrirsögn\\nog sett inn reflist sniðið hér.\\n\\n95\\n00:05:39,780 --> 00:05:41,612\\nSíðan skrifa ég breytingarágrip\\n\\n96\\n00:05:42,774 --> 00:05:44,122\\nog ýti á vista.\\n\\n97\\n00:05:44,322 --> 00:05:46,846\\nHér sérðu vísun í heimildina.\\n\\n98\\n00:05:46,857 --> 00:05:50,499\\nÞað hefur búið til neðanmálsgrein fyrir\\nmig og setti hana í heimildarkaflann.\\n\\n99\\n00:05:50,550 --> 00:05:53,136\\nSegjum að ég vilji vísa\\ní heimild fyrir þessa setningu.\\n\\n100\\n00:05:53,169 --> 00:05:54,553\\nÉg myndi fara í edit.\\n\\n101\\n00:05:55,210 --> 00:05:59,090\\nAfþví upplýsingarnar\\neru þegar tilgreindar í þessari heimild\\n\\n102\\n00:05:59,117 --> 00:06:01,572\\nhún er á blaðsíðu 9-10 í þessari bók,\\n\\n103\\n00:06:01,622 --> 00:06:03,962\\nætla ég að nota nefnda heimild hér.\\n\\n104\\n00:06:04,008 --> 00:06:05,844\\nÉg fer í nefndar heimildir\\n\\n105\\n00:06:06,134 --> 00:06:08,487\\nog undir fellivallistanum er \"Thornton\",\\n\\n106\\n00:06:08,498 --> 00:06:10,381\\nþví ég valdi það sem nafn.\\n\\n107\\n00:06:10,402 --> 00:06:12,097\\nÉg smelli á það og \"bæta við\"\\n\\n108\\n00:06:12,283 --> 00:06:16,814\\nog það bætir við þessum litla HTML kóða\\n\\n109\\n00:06:16,847 --> 00:06:21,600\\nsem mun búa til heimildina hérna einnig.\\n\\n110\\n00:06:22,138 --> 00:06:23,382\\nSvo ef ég vista\\n\\n111\\n00:06:29,271 --> 00:06:33,475\\nsérðu að nú sést báðar\\nsetningarnar með heimild.\\n\\n112\\n00:06:33,503 --> 00:06:37,051\\nTölurnar eru eins því\\nþað er sama heimildin\\n\\n114\\n00:06:37,085 --> 00:06:39,866\\nog þær eru báðar tengdar\\nvið heimildina hér neðst.',\n", + " 'bytes': 8806,\n", + " 'sha1': 'pdz1kvpnnys7kcxxqh0fi9q10pwt976',\n", + " 'parent_id': 653302892,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 78986015,\n", + " 'timestamp': '2012-09-24T10:48:14Z',\n", + " 'user': {'id': 2231096, 'text': 'Mfarchitetti'},\n", + " 'page': {'id': 21589291,\n", + " 'title': 'Share Your Knowledge 1 Why glamwiki.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Creazione sottotitoli in italiano',\n", + " 'text': \"1\\n00:00:09,053 --> 00:00:13,001\\nLe istituzioni culturali posseggono e creano contenuti\\n\\n2\\n00:00:13,001 --> 00:00:14,065\\nche vogliono condividere\\n\\n3\\n00:00:15,008 --> 00:00:15,096\\nSfortunatamente\\n\\n4\\n00:00:15,096 --> 00:00:17,059\\nanche se alcuni di questi contenuti\\n\\n5\\n00:00:17,059 --> 00:00:19,028\\nsono stati digitalizzati\\n\\n6\\n00:00:19,028 --> 00:00:21,057\\nnon sempre sono disponibili\\n\\n7\\n00:00:21,057 --> 00:00:23,076\\no accessibili a tutti.\\n\\n8\\n00:00:23,076 --> 00:00:25,076\\nSe i diritti dei tuoi libri e dei tuoi cataloghi\\n\\n9\\n00:00:25,076 --> 00:00:27,003\\nsono scaduti\\n\\n10\\n00:00:27,003 --> 00:00:30,022\\ne non hai le risorse per ripubblicarli\\n\\n11\\n00:00:30,022 --> 00:00:33,076\\nSe i tuoi files sono disorganizzati\\n\\n12\\n00:00:33,076 --> 00:00:36,055\\ne non hai sufficienti fondi\\n\\n13\\n00:00:36,055 --> 00:00:38,026\\nForse potresti essere interessato\\n\\n14\\n00:00:38,026 --> 00:00:40,011\\na Condividere la Tua Conoscenza\\n\\n15\\n00:00:40,011 --> 00:00:41,068\\nPer cominciare a farlo\\n\\n16\\n00:00:41,068 --> 00:00:43,053\\ntutto quello che devi fare è rilasciare\\n\\n17\\n00:00:43,053 --> 00:00:48,018\\ntutti i tuoi contenuti sotto la licenza CC-BY-SA\\n\\n18\\n00:00:48,018 --> 00:00:50,057\\nCosì permetterai ad altri di ridistribuire, modificare, e\\n\\n19\\n00:00:50,057 --> 00:00:53,051\\ncreare altre opere a partire dai files originali,\\n\\n20\\n00:00:53,051 --> 00:00:56,018\\nanche per scopi commerciali.\\n\\n21\\n00:00:56,048 --> 00:00:58,081\\nLe nuove opere devono anch'esse essere pubblicate\\n\\n22\\n00:00:58,081 --> 00:01:00,035\\ncon la stessa licenza\\n\\n23\\n00:01:00,035 --> 00:01:02,088\\nindicando l'autore originale.\\n\\n24\\n00:01:02,088 --> 00:01:07,046\\nInfine, attraverso Wikipedia, la tua conoscenza sarà condivisa gratuitamente con il resto del mondo\\n\\n25\\n00:01:07,046 --> 00:01:09,083\\nDue esempi:\\n\\n26\\n00:01:09,083 --> 00:01:11,052\\nL'Archivio Federale Tedesco\\n\\n27\\n00:01:11,052 --> 00:01:15,017\\nha rilasciato immagini a bassa risoluzione su Wikimedia Commons\\n\\n28\\n00:01:15,017 --> 00:01:19,043\\nIn questo modo il numero delle immagini ad alta risoluzione vendute dall'Archivio è triplicato.\\n\\n29\\n00:01:19,043 --> 00:01:22,063\\nLa fondazione italiana Cariplo ha creato\\n\\n30\\n00:01:22,063 --> 00:01:24,027\\ne caricato su Wikipedia\\n\\n31\\n00:01:24,027 --> 00:01:28,054\\n247 articoli in italiano e inglese\\n\\n32\\n00:01:28,054 --> 00:01:34,010\\ne 854 artisti e loro lavori provenienti dalla sua collezione.\\n\\n33\\n00:01:34,010 --> 00:01:36,006\\nCondividi la Tua Conoscenza ti aiuterà\\n\\n34\\n00:01:36,006 --> 00:01:38,017\\nad organizzare i tuoi materiali\\n\\n35\\n00:01:38,017 --> 00:01:39,014\\nin modo efficiente,\\n\\n36\\n00:01:39,014 --> 00:01:41,013\\ne ti assisterà a pianificare\\n\\n37\\n00:01:41,013 --> 00:01:42,071\\ncome condividere tutti gli archivi\\n\\n38\\n00:01:42,071 --> 00:01:44,057\\nche creerai in futuro.\\n\\n39\\n00:01:44,057 --> 00:01:45,067\\nÈ gratis,\\n\\n40\\n00:01:45,067 --> 00:01:47,018\\ne migliora la visibilità\\n\\n41\\n00:01:47,018 --> 00:01:49,082\\ndella tua organizzazione e dei tuoi contenuti.\\n\\n42\\n00:01:49,082 --> 00:01:52,041\\nAllora, perché non farlo?\",\n", + " 'bytes': 2964,\n", + " 'sha1': '65t2yzms7xat6pwjqwxvroctnqrshea',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 675181803,\n", + " 'timestamp': '2022-07-17T17:04:57Z',\n", + " 'user': {'id': 10388051, 'text': 'Andahuaylas'},\n", + " 'page': {'id': 21993645,\n", + " 'title': 'Citing sources tutorial, part 2.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Fix: empty section error',\n", + " 'text': '1\\n00:00:01,234 --> 00:00:03,925\\nThis is part 2 of the citing sources tutorial,\\n\\n2\\n00:00:03,925 --> 00:00:07,053\\nwhich will show you how to add citations on Wikipedia\\n\\n3\\n00:00:07,053 --> 00:00:10,517\\nusing the Cite function in the edit toolbar.\\n\\n4\\n00:00:10,517 --> 00:00:12,254\\nFrom an edit window, click the\\n\\n5\\n00:00:12,254 --> 00:00:14,377\\ncite button, which brings down a\\n\\n6\\n00:00:14,377 --> 00:00:17,430\\nbar of extra options. Here you can click the\\n\\n7\\n00:00:17,430 --> 00:00:19,482\\ntemplates pulldown menu, and then\\n\\n8\\n00:00:19,482 --> 00:00:22,108\\nselect which kind of source you are trying to cite:\\n\\n9\\n00:00:22,108 --> 00:00:26,122\\na generic web page, a news article, a book, or a journal.\\n\\n10\\n00:00:26,122 --> 00:00:29,061\\nFor this example, we\\'ll go with a book.\\n\\n11\\n00:00:29,061 --> 00:00:31,439\\nWe\\'re citing the part of this sandbox page\\n\\n12\\n00:00:31,439 --> 00:00:34,958\\nthat says \"being bold is important on Wikipedia\". \\n\\n13\\n00:00:34,958 --> 00:00:37,118\\nAnd I have a book that backs that up.\\n\\n14\\n00:00:37,118 --> 00:00:39,114\\nSo clicking cite book\\n\\n15\\n00:00:39,114 --> 00:00:40,939\\nbrings up fields where you can put in\\n\\n16\\n00:00:40,939 --> 00:00:42,743\\nthe author -- John Broughton -- \\n\\n17\\n00:00:42,743 --> 00:00:45,955\\nand the title -- Wikipedia: The Missing Manual --\\n\\n18\\n00:00:45,955 --> 00:00:47,119\\nand the year\\n\\n19\\n00:00:47,119 --> 00:00:48,924\\nand publisher and so on.\\n\\n20\\n00:00:48,924 --> 00:00:51,296\\nAnother way to go is to\\n\\n21\\n00:00:51,296 --> 00:00:54,658\\nstart with the ISBN. Then you can press the\\n\\n22\\n00:00:54,658 --> 00:00:56,733\\nsearch button next to it, and it will\\n\\n23\\n00:00:56,733 --> 00:01:00,036\\nfill in the rest of the info automatically.\\n\\n24\\n00:01:00,036 --> 00:01:03,191\\nAnother handy feature is the Ref name field.\\n\\n25\\n00:01:03,191 --> 00:01:06,695\\nPut in a short word or phrase to identify the source\\n\\n26\\n00:01:06,695 --> 00:01:08,612\\n -- I\\'ll call this one Broughton -- \\n\\n27\\n00:01:08,612 --> 00:01:11,383\\nand it will be easy to cite the source multiple times\\n\\n28\\n00:01:11,383 --> 00:01:14,421\\nwithout having to re-enter any info.\\n\\n29\\n00:01:14,421 --> 00:01:17,155\\nIf there\\'s more you need to add to the citation,\\n\\n30\\n00:01:17,155 --> 00:01:19,830\\nyou can press the show extra fields button,\\n\\n31\\n00:01:19,830 --> 00:01:24,703\\nwhich lets you add coauthors, editor, and other details.\\n\\n32\\n00:01:24,703 --> 00:01:27,827\\nOnce you\\'ve added all the info you want for the citation,\\n\\n33\\n00:01:27,827 --> 00:01:31,229\\npress insert, and the wiki code for the citation\\n\\n34\\n00:01:31,229 --> 00:01:33,399\\nwill be added right where the cursor was\\n\\n35\\n00:01:33,399 --> 00:01:35,873\\nwhen you started the citation tool.\\n\\n36\\n00:01:35,873 --> 00:01:37,288\\nAdd an edit summary,\\n\\n37\\n00:01:37,288 --> 00:01:38,418\\nsave the page,\\n\\n38\\n00:01:38,418 --> 00:01:40,845\\nand you see the new citation,\\n\\n39\\n00:01:40,845 --> 00:01:43,779\\nwith a numbered superscript linking to the footnote,\\n\\n40\\n00:01:43,779 --> 00:01:47,123\\njust like with a manually-added citation.\\n\\n41\\n00:01:47,123 --> 00:01:49,754\\nIf you used the ref name feature,\\n\\n42\\n00:01:49,754 --> 00:01:51,899\\nthen when you make another edit to the page,\\n\\n43\\n00:01:51,899 --> 00:01:55,259\\nyou can click \"named references\" in the cite toolbar\\n\\n44\\n00:01:55,259 --> 00:01:59,682\\nto pull up a list of all the named references in the article.\\n\\n45\\n00:01:59,682 --> 00:02:02,427\\nPick the one you want, press insert,\\n\\n46\\n00:02:02,427 --> 00:02:03,554\\nand it will add the code\\n\\n47\\n00:02:03,554 --> 00:02:06,614\\nfor another reference to the same footnote.\\n\\n48\\n00:02:06,614 --> 00:02:10,022\\nAnother feature of the cite tool is error check.\\n\\n49\\n00:02:10,022 --> 00:02:13,837\\nPress that button to pull up the error checking options.\\n\\n50\\n00:02:13,837 --> 00:02:15,963\\nSelect the ones you want and press \"Check\",\\n\\n51\\n00:02:15,963 --> 00:02:19,007\\nand you\\'ll get a citation error report,\\n\\n52\\n00:02:19,007 --> 00:02:21,982\\nlisting any broken or duplicate references.\\n\\n53\\n00:02:21,982 --> 00:02:23,237\\nAnd that\\'s it!\\n\\n54\\n00:02:23,237 --> 99:59:59,000\\nHappy editing!',\n", + " 'bytes': 4012,\n", + " 'sha1': 'b6ntbxd9dkv48t07xd6mrxqn306p17i',\n", + " 'parent_id': 80512078,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 336214368,\n", + " 'timestamp': '2019-01-24T12:56:01Z',\n", + " 'user': {'id': 1297740, 'text': 'Snævar'},\n", + " 'page': {'id': 22030886,\n", + " 'title': 'Talkpages.ogv.is.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:03,300\\nHvernig á að nota spjallsíður og hvernig á að skrifa undir\\n\\n2\\n00:00:04,000 --> 00:00:07,300\\nskilaboð sem þú skilur eftir á spjallsíðu einhvers.\\n\\n3\\n00:00:08,000 --> 00:00:10,300\\nÞað fyrsta sem þú vilt gera\\n\\n4\\n00:00:11,000 --> 00:00:12,300\\ner að fara á wikipediu\\n\\n5\\n00:00:13,000 --> 00:00:16,300\\nSegjum að það sé ákveðinn notandi sem þú villt skilja eftir\\n\\n6\\n00:00:17,000 --> 00:00:19,300\\nskilaboð hjá. Í þessu tilfelli GorillaWarfare.\\n\\n7\\n00:00:20,000 --> 00:00:24,300\\nGorillaWarefare er félagi minn, við erum í \"Campus Abassadors\"\\n\\n8\\n00:00:25,000 --> 00:00:26,300\\nspjall verkefni, sem hjállpar notendum.\\n\\n9\\n00:00:28,000 --> 00:00:31,300\\nAllavegana, ég ætla að smella á spjallsíðuna\\n\\n10\\n00:00:32,000 --> 00:00:33,300\\nþví ég ætla að skilja eftir skilaboð.\\n\\n11\\n00:00:34,000 --> 00:00:36,300\\nÞað sem ég myndi gera er að smella á \"bæta við umræðu\"\\n\\n12\\n00:00:37,000 --> 00:00:40,300\\nhérna, eftir að hafa smellt á spjallsíðuna og séð til þess\\n\\n13\\n00:00:41,000 --> 00:00:43,300\\nað titilinn sé Notendaspjall:GorillaWarfare. Smella á \"bæta við umræðu\"\\n\\n14\\n00:00:44,000 --> 00:00:49,300\\nHér er áminning með minniháttar leiðbeiningum.\\n\\n15\\n00:00:50,000 --> 00:00:55,300\\nEn, ég fer í reitinn \"fyrirsögn\" og skrifa \"Hæ, GW. Hvernig hefur þú það?\"\\n\\n16\\n00:00:56,000 --> 00:01:00,300\\nÞað er bara fyrirsögnin og á botninum skrifa ég. \"Hæ, GW.\\n\\n17\\n00:01:01,000 --> 00:01:06,300\\nÉg hafði gaman af því að spjalla við þig á IRC-rásinni.\\n\\n18\\n00:01:07,000 --> 00:01:11,300\\nVona að þú eigir góðan dag.\" Þetta eru skilaboðin sem ég ætla að senda.\\n\\n19\\n00:01:12,000 --> 00:01:15,300\\nEn, þú þarft að skrifa undir skilaboðin þín.\\n\\n20\\n00:01:16,000 --> 00:01:19,300\\nTaktu eftir þessu \"Vinsamlegast skrifaðu undir og dagsettu öll skilaboð\\n\\n21\\n00:01:20,000 --> 00:01:23,300\\nmeð því að bæta við fjórum tildum í enda skilaboðanna.\"\\n\\n22\\n00:01:24,000 --> 00:01:31,300\\nÞú gerir eitt bil og smellir á Shift-tilda. Einn, tveir, þrír, fjórir.\\n\\n23\\n00:01:32,000 --> 00:01:34,300\\nOg með því að skilja eftir þessar fjórar tildur þá skrifar það sjálfrafa undir\\n\\n24\\n00:01:35,000 --> 00:01:40,300\\nskilaboðin þín með notendanafni og dagsetningu skilaboðanna.\\n\\n25\\n00:01:41,000 --> 00:01:44,300\\nÞegar þú ert búinn ferðu niður og smellir á \"vista síðu\".\\n\\n26\\n00:01:45,000 --> 00:01:49,300\\nOg þarna, eru skilaboðin sem eru sýnd neðst. \"Hæ GW\" \\n\\n27\\n00:01:50,000 --> 00:01:51,300\\nogsvo framvegis.\\n\\n28\\n00:01:52,000 --> 00:01:57,300\\nOg taktu eftir því að það er sjálfkrafa skrifað undir. Hér er tíminn og dagsetningin.\\n\\n29\\n00:01:58,000 --> 00:02:00,300\\nÞað notast við UTC, þú veist, samræmdur alþjóðlegur tími.\\n\\n30\\n00:02:01,000 --> 00:02:05,300\\nSegjum að ég hafi gleymt að bæta svolitlu við, skilaboðum undir þessu.\\n\\n31\\n00:02:06,000 --> 00:02:10,300\\nÉg smelli á breyta. Ó, svo ég fékk skilaboð núna.\\n\\n32\\n00:02:11,000 --> 00:02:16,300\\nEf þú myndir vilja setja svarskilaboð við eitthvað.\\n\\n33\\n00:02:17,000 --> 00:02:21,300\\nSvo, hér eru upphaflegu skilaboðin, þú sérð einnig eitthvað annað skrifað\\n\\n34\\n00:02:22,000 --> 00:02:24,300\\nhér ef einhver annar hefur svarað í þessari umræðu.\\n\\n35\\n00:02:25,000 --> 00:02:29,300\\nÞað sem þú gerir er að þú býrð til nýja línu og tvípunkt.\\n\\n36\\n00:02:30,000 --> 00:02:34,300\\nTvípunktur er wiki-kóði yfir það að setja lítinn inndrátt.\\n\\n37\\n00:02:35,000 --> 00:02:40,300\\nEf þú setur tvo tvípunkta þá verður til lengri inndráttur og svo framvegis.\\n\\n38\\n00:02:41,000 --> 00:02:43,300\\nSvo, ég vill skrifa svarskilaboð, svo ég set einn tvípunkt\\n\\n39\\n00:02:44,000 --> 00:02:50,300\\nog skrifa \"Úps, gleymdi að segja að mér finnst þú frábær ritstjóri\".\\n\\n40\\n00:02:51,000 --> 00:02:54,300\\nOg svo skrifa ég undir aftur og í þetta skipti skrifa ég breytingarágrip\\n\\n41\\n00:02:55,000 --> 00:03:00,300\\nafþví það er ekki ný umræða. Í breytingarágripinu skrifa ég\\n\\n42\\n00:03:01,000 --> 00:03:05,300\\n\"Gleymdi að segja...\" og svo smelli ég á vista síðu.\\n\\n43\\n00:03:06,000 --> 00:03:10,300\\nÉg held að sumir hafi ... haldið að það ætti\\n\\n44\\n00:03:11,000 --> 00:03:13,300\\nað setja fjórar tildur í breytingarágripið. Þú þarft þess ekki.\\n\\n45\\n00:03:14,000 --> 00:03:17,300\\nEn þú þarft að setja fjórar tildur eftir skilaboðin í breytingarglugganum.\\n\\n46\\n00:03:18,000 --> 00:03:21,300\\nSíðan smellir þú á vista síðu.\\n\\n47\\n00:03:25,000 --> 00:03:29,300\\nHvenær sem það vill koma upp.\\n\\n48\\n00:03:30,000 --> 00:03:36,300\\nÞarna kom það. Þú tekur eftir því að það er lítill inndráttur hér.\\n\\n49\\n00:03:37,000 --> 00:03:44,300\\nÉg hef sent þessi skilaboð til GW. Svo, þannig notaru spjallsíðu\\n\\n50\\n00:03:45,000 --> 00:03:48,300\\nÞað sama gildir við spjallsíðu greinar.\\n\\n51\\n00:03:49,000 --> 00:03:56,300\\nSegjum að það sé grein sem þú viljir setja athugasemd við\\n\\n52\\n00:03:57,000 --> 00:04:00,300\\nog sú grein sé \"Visa policy of South Africa\"\\n\\n53\\n00:04:01,000 --> 00:04:05,300\\nHérna gerir þú það sama, smellir á spjall og bæta vð umræðu.\\n\\n54\\n00:04:06,000 --> 00:04:10,300\\nOg það er nákvæmlega eins, svo þannig notaru spjallsíður.',\n", + " 'bytes': 5236,\n", + " 'sha1': 'tdawvf1lxkru7fnrwnny2xqafjos9n2',\n", + " 'parent_id': 336135749,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 82297022,\n", + " 'timestamp': '2012-11-03T01:14:59Z',\n", + " 'user': {'id': 1496593, 'text': 'Gtdp'},\n", + " 'page': {'id': 22523890,\n", + " 'title': \"Dust Models Paint Alien's View of Solar System.ogv.en.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Replaced with properly formatted subs',\n", + " 'text': \"1\\n00:00:08,374 --> 00:00:11,821\\nAstronomers have just begun imaging planets around other stars.\\n\\n2\\n00:00:11,821 --> 00:00:16,871\\nThe technique isn't very advanced yet, and it can't see any planets as small as those in our own solar system.\\n\\n3\\n00:00:16,871 --> 00:00:21,197\\nBut let's suppose for a moment that alien astronomers are looking at our planetary system.\\n\\n4\\n00:00:21,197 --> 00:00:26,925\\nCould they find any evidence that planets existed around the Sun, even if they couldn't see the planets themselves?\\n\\n5\\n00:00:26,925 --> 00:00:28,813\\nThe answer is probably yes.\\n\\n6\\n00:00:28,813 --> 00:00:32,270\\nThat's because at least one world in our Solar System would make its presence known\\n\\n7\\n00:00:32,270 --> 00:00:38,622\\nby its effects on a huge cloud of dust at the fringes of the Solar System in a place called the Kuiper Belt.\\n\\n8\\n00:00:39,269 --> 00:00:42,346\\nThe Kuiper Belt is a kind of cold storage zone out beyond Neptune\\n\\n9\\n00:00:42,346 --> 00:00:45,956\\noccupied by millions of icy bodies, including Pluto.\\n\\n10\\n00:00:45,956 --> 00:00:52,131\\nThe icy objects in the Kuiper Belt release dust that, from afar, could appear as a hazy disk at infra-red wavelengths.\\n\\n11\\n00:00:53,071 --> 00:00:56,890\\nNew computer models created by NASA scientists, shown here,\\n\\n12\\n00:00:56,890 --> 00:01:00,551\\nreveal what dust in the Kuiper Belt might look like to an alien astronomer.\\n\\n13\\n00:01:00,935 --> 00:01:07,038\\nNeptune creates the intricate pattern. The massive planet's gravity tugs on the cloud's dust grains, nudging them in their orbits.\\n\\n14\\n00:01:08,331 --> 00:01:13,201\\nNeptune creates a ring structure in the dust cloud which features a gap where the planet itself resides.\\n\\n15\\n00:01:13,201 --> 00:01:17,267\\nThis gap should make it fairly easy to tell where Neptune is from afar,\\n\\n16\\n00:01:17,267 --> 00:01:21,407\\neven at distances where the planet is too dim to detect directly.\\n\\n17\\n00:01:21,407 --> 00:01:24,176\\nThe supercomputer simulations that Mark Cusher and I performed\\n\\n18\\n00:01:24,176 --> 00:01:27,135\\nalso allow us to see what the dust in the Solar System may have looked like\\n\\n19\\n00:01:27,135 --> 00:01:29,270\\nwhen the Solar System was much younger.\\n\\n20\\n00:01:29,270 --> 00:01:34,304\\nIn effect, we can go back in time and see how the distant view of the Solar System may have changed.\\n\\n21\\n00:01:35,212 --> 00:01:38,569\\nIn its youth, the Kuiper Belt contained many more objects and, consequently,\\n\\n22\\n00:01:38,569 --> 00:01:43,976\\nlots more dust. In fact, the dust was so thick that the particles themselves often collided.\\n\\n23\\n00:01:45,392 --> 00:01:49,106\\nWhen we included collisions between dust particles we were really amazed by what we saw.\\n\\n24\\n00:01:51,244 --> 00:01:55,504\\nSuccessively younger models of the Kuiper Belt dust cloud show progressively simpler structure,\\n\\n25\\n00:01:55,504 --> 00:01:59,075\\neventually leading to a single narrow ring beyond Neptune's orbit.\\n\\n26\\n00:02:00,905 --> 00:02:04,047\\nDust collisions change Neptune's gravitational imprint.\\n\\n27\\n00:02:04,047 --> 00:02:06,856\\nThe gap in the ring structure disappears.\\n\\n28\\n00:02:10,579 --> 00:02:13,366\\nThe amazing thing is we've already seen ring structures like this\\n\\n29\\n00:02:13,366 --> 00:02:16,249\\naround other younger stars like Fomalhaut.\\n\\n30\\n00:02:17,603 --> 00:02:22,894\\nIn terms of dust, we now know that these other systems may look similar to our young Solar System.\\n\\n31\\n00:02:24,694 --> 00:02:27,755\\nDust around other stars can tell us a lot about possible planets,\\n\\n32\\n00:02:27,776 --> 00:02:30,806\\njust as in our own Solar System, it could reveal Neptune.\",\n", + " 'bytes': 3560,\n", + " 'sha1': 'k65ogq7t6rbwd0xod4k1u8forbbaoak',\n", + " 'parent_id': 82296993,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 191456144,\n", + " 'timestamp': '2016-03-28T03:14:42Z',\n", + " 'user': {'id': 305480, 'text': 'This, that and the other'},\n", + " 'page': {'id': 22549896,\n", + " 'title': 'ABC Clarke predicts internet and PC.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'corrections',\n", + " 'text': \"1\\n00:00:00,100 --> 00:00:02,200\\n<i>Interviewer:</i>\\nNow, with that movie, 2001,\\n\\n2\\n00:00:02,300 --> 00:00:04,600\\nyou are projecting us into the 21st century.\\n\\n3\\n00:00:04,700 --> 00:00:06,500\\nI've brought along my son Jonathan\\n\\n4\\n00:00:06,600 --> 00:00:09,500\\nwho in the year 2001 will be\\n\\n5\\n00:00:09,600 --> 00:00:10,700\\nthe same age as I am now.\\n\\n6\\n00:00:10,800 --> 00:00:11,800\\nMaybe he will be better adjusted to\\n\\n7\\n00:00:11,900 --> 00:00:14,700\\nthis kind of world that you're trying to portray.\\n\\n8\\n00:00:15,600 --> 00:00:16,900\\n<i>Clarke:</i>\\nThe big difference when he grows up,\\n\\n9\\n00:00:17,000 --> 00:00:19,600\\nin fact he wouldn't want to wait till the year 2001,\\n\\n10\\n00:00:19,700 --> 00:00:22,200\\nis that he will have, in his own house,\\n\\n11\\n00:00:22,300 --> 00:00:23,700\\nnot a computer as big as this,\\n\\n12\\n00:00:23,800 --> 00:00:26,300\\nbut at least a console\\n\\n13\\n00:00:26,400 --> 00:00:27,800\\nthrough which he can talk\\n\\n14\\n00:00:27,900 --> 00:00:29,700\\nto his friendly local computer\\n\\n15\\n00:00:29,800 --> 00:00:31,100\\nand get all the information needs\\n\\n16\\n00:00:31,200 --> 00:00:32,600\\nfor his everyday life,\\n\\n17\\n00:00:32,700 --> 00:00:33,700\\nlike his bank statements,\\n\\n18\\n00:00:33,800 --> 00:00:36,000\\nhis theater reservations,\\n\\n19\\n00:00:36,100 --> 00:00:38,200\\nall the information you need\\n\\n20\\n00:00:38,300 --> 00:00:41,200\\nin the course of living in our complex modern society.\\n\\n21\\n00:00:41,300 --> 00:00:44,000\\nThis will be in a compact form\\n\\n22\\n00:00:44,100 --> 00:00:46,100\\nin his own house.\\n\\n23\\n00:00:46,200 --> 00:00:47,600\\nHe'll have a television screen like these here\\n\\n24\\n00:00:47,700 --> 00:00:49,600\\nand a keyboard and he'll talk\\n\\n25\\n00:00:49,700 --> 00:00:51,100\\nto the computer and get information from it.\\n\\n26\\n00:00:51,200 --> 00:00:52,300\\nAnd he'll take it as much for granted\\n\\n27\\n00:00:52,400 --> 00:00:53,400\\nas we take the telephone!\\n\\n28\\n00:00:53,800 --> 00:00:56,300\\n<i>Interviewer:</i>\\nI wonder what sort of a life would it be like\\n\\n29\\n00:00:56,400 --> 00:00:59,400\\nin social terms if our whole life is\\n\\n30\\n00:00:59,500 --> 00:01:01,300\\nbuilt around a computer.\\n\\n31\\n00:01:01,400 --> 00:01:02,600\\nDo we become a computer-dependent society,\\n\\n32\\n00:01:02,700 --> 00:01:04,300\\nand computer-dependent individuals?\\n\\n33\\n00:01:04,400 --> 00:01:06,600\\n<i>Clarke:</i>\\nIn some ways, but they'll\\n\\n34\\n00:01:06,700 --> 00:01:07,600\\nalso enrich our society.\\n\\n35\\n00:01:07,700 --> 00:01:09,500\\nBecause it will make it possible as\\n\\n36\\n00:01:09,600 --> 00:01:10,600\\nto live anywhere we like.\\n\\n37\\n00:01:11,500 --> 00:01:14,200\\nAny businessman, an executive,\\n\\n38\\n00:01:14,300 --> 00:01:15,700\\ncould live almost anywhere on Earth\\n\\n39\\n00:01:15,800 --> 00:01:17,500\\nand still do his business\\n\\n40\\n00:01:17,600 --> 00:01:18,600\\nthrough a device like this.\\n\\n41\\n00:01:18,700 --> 00:01:20,100\\nAnd this is a wonderful thing!\\n\\n42\\n00:01:20,200 --> 00:01:21,600\\nIt means we won't have to be stuck\\n\\n43\\n00:01:21,700 --> 00:01:23,400\\nin cities, but live out in the\\n\\n44\\n00:01:23,500 --> 00:01:24,800\\ncountry or wherever we please\\n\\n45\\n00:01:24,900 --> 00:01:27,600\\nand still carry on complete interaction\\n\\n46\\n00:01:27,700 --> 00:01:30,900\\nwith human beings, as well as with other computers.\",\n", + " 'bytes': 3181,\n", + " 'sha1': 'iz6sd4a7vp0xvy8j3bvdzl435efqvwr',\n", + " 'parent_id': 82403627,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 82431782,\n", + " 'timestamp': '2012-11-05T11:26:45Z',\n", + " 'user': {'id': 849234, 'text': 'Morn'},\n", + " 'page': {'id': 22555652,\n", + " 'title': '1946-01-31 Radar makes Round Trip To Moon.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:05,828 --> 00:00:09,032 The vivid imaginations of H. G. Wells and Buck Rogers 2 00:00:09,032 --> 00:00:11,818 never cooked up a more fantastic experien...'\",\n", + " 'text': \"1\\n00:00:05,828 --> 00:00:09,032\\nThe vivid imaginations of H. G. Wells and Buck Rogers\\n\\n2\\n00:00:09,032 --> 00:00:11,818\\nnever cooked up a more fantastic experience than the\\n\\n3\\n00:00:11,818 --> 00:00:15,069\\narmy engineers at their laboratory in Belmar, New Jersey.\\n\\n4\\n00:00:15,069 --> 00:00:18,692\\nBanks of instrument panels control a radar installation\\n\\n5\\n00:00:18,692 --> 00:00:23,034\\nthat gives man his first actual contact with the Moon.\\n\\n6\\n00:00:23,034 --> 00:00:28,003\\nAn amazing round trip of over 477,000 miles!\\n\\n7\\n00:00:31,230 --> 00:00:33,041\\nReady to shoot the moon!\\n\\n8\\n00:00:33,041 --> 00:00:35,689\\nThe radar antenna is pointed directly at <i>Luna</i>\\n\\n9\\n00:00:35,689 --> 00:00:37,987\\nand the thrill of a lifetime is in the making.\\n\\n10\\n00:00:50,155 --> 00:00:52,662\\nThree two-and-a-half-second trips up and back.\\n\\n11\\n00:00:52,662 --> 00:00:54,961\\nIf you're ready for another trip to the Moon, let's go!\\n\\n12\\n00:01:02,740 --> 00:01:06,594\\nThat was a 180-cycle note, just about like your home radio.\\n\\n13\\n00:01:06,594 --> 00:01:10,542\\nIt opens up unlimited possibilities for interstellar experiment,\\n\\n14\\n00:01:10,542 --> 00:01:14,234\\naccording to Colonel DeWitt who supervised the project.\\n\\n15\\n00:01:15,580 --> 00:01:18,715\\n<i>DeWitt:</i> Calculations showed that radar equipment could be\\n\\n16\\n00:01:18,715 --> 00:01:22,430\\nput together which would reach the Moon and return.\\n\\n17\\n00:01:24,241 --> 00:01:26,563\\nIf one allows the imagination free reign,\\n\\n18\\n00:01:26,563 --> 00:01:30,279\\nmany future possibilities appear:\\n\\n19\\n00:01:32,368 --> 00:01:37,523\\nSpaceships, carrying passengers at thousands of miles per hour,\\n\\n20\\n00:01:37,523 --> 00:01:42,469\\ncan be controlled and communication established with their passengers,\\n\\n21\\n00:01:42,469 --> 00:01:46,811\\nfor we now know that the Earth's atmosphere can be penetrated.\",\n", + " 'bytes': 1824,\n", + " 'sha1': '683gtsqiyg2b2cy5vqn25uki2ww7e0p',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 82433780,\n", + " 'timestamp': '2012-11-05T12:14:37Z',\n", + " 'user': {'id': 849234, 'text': 'Morn'},\n", + " 'page': {'id': 22556003,\n", + " 'title': '1946-07-11 Hughes Plane Crash.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:04,800 --> 00:00:08,707 Howard Hughes, famous flyer and sportsman, was dragged out of 2 00:00:08,707 --> 00:00:11,261 this wreckage of an experimental ...'\",\n", + " 'text': \"1\\n00:00:04,800 --> 00:00:08,707\\nHoward Hughes, famous flyer and sportsman, was dragged out of\\n\\n2\\n00:00:08,707 --> 00:00:11,261\\nthis wreckage of an experimental plane he was testing.\\n\\n3\\n00:00:11,261 --> 00:00:12,794\\nHe was seriously injured.\\n\\n4\\n00:00:12,794 --> 00:00:16,393\\nAfter ripping the corner from two homes in Beverly Hills, California,\\n\\n5\\n00:00:16,393 --> 00:00:18,947\\nthe plane finally plunged into this house.\\n\\n6\\n00:00:18,947 --> 00:00:22,035\\nThe force of the impact virtually wrecked the building\\n\\n7\\n00:00:22,035 --> 00:00:24,148\\nand caused the plane to catch fire.\\n\\n8\\n00:00:24,148 --> 00:00:27,329\\nThe flyer said that the accident was due to motor failure\\n\\n9\\n00:00:27,329 --> 00:00:28,769\\nshortly after his take-off.\\n\\n10\\n00:00:28,769 --> 00:00:31,648\\nHe failed to make a crash landing on a golf course.\\n\\n11\\n00:00:35,800 --> 00:00:39,752\\nDennis O'Keefe, film actor, inspects damage done the home\\n\\n12\\n00:00:39,752 --> 00:00:42,144\\nof Lieutenant Colonel Meyers, chief interpreter at\\n\\n13\\n00:00:42,144 --> 00:00:43,723\\nthe Nuremberg War Trials.\\n\\n14\\n00:00:44,100 --> 00:00:47,275\\nAmerica's aviation trailblazers willingly pay the price\\n\\n15\\n00:00:47,275 --> 00:00:49,621\\nin man's conquest of the air.\",\n", + " 'bytes': 1205,\n", + " 'sha1': '43tohn9cphrxgf1iy4ipyyu254pcs3s',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 631798660,\n", + " 'timestamp': '2022-02-23T11:08:13Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 22556405,\n", + " 'title': 'Bombing of Hamburg.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments, new text division for better readability',\n", + " 'text': \"1\\n00:00:00,312 --> 00:00:05,543\\n[Hamburg. No. 1 Nazi\\nwar center, blasted by bombs]\\n\\n2\\n00:00:06,800 --> 00:00:09,470\\nBombers of the 8th United States Air Force\\n\\n3\\n00:00:09,503 --> 00:00:11,773\\ntaking off from aerodromes in England\\n\\n4\\n00:00:11,807 --> 00:00:15,638\\ncontinue their round-the-clock devastation\\nof war plants in Nazi Germany.\\n\\n5\\n00:00:23,800 --> 00:00:27,748\\nIn broad daylight, mighty squadrons\\nroar across the North Sea.\\n\\n6\\n00:00:28,173 --> 00:00:32,213\\nOver Hamburg, Germany's principal seaport\\nand number-one war center,\\n\\n7\\n00:00:32,264 --> 00:00:34,869\\ntons of bombs rain from the skies.\\n\\n8\\n00:00:39,800 --> 00:00:41,916\\nAerial photographs show the results:\\n\\n9\\n00:00:41,951 --> 00:00:44,921\\nSeven square miles\\nof Hamburg's war industries,\\n\\n10\\n00:00:44,957 --> 00:00:48,510\\ndocks, military installations\\nflattened and in ruins.\\n\\n11\\n00:00:48,821 --> 00:00:51,758\\nWater mains, gas,\\nand electric plants destroyed.\\n\\n12\\n00:00:51,880 --> 00:00:55,043\\nHamburg as a war center,\\na base for submarines\\n\\n13\\n00:00:55,093 --> 00:00:57,331\\nis virtually wiped off the map.\\n\\n14\\n00:00:58,538 --> 00:01:00,232\\nBattling their way home,\\n\\n15\\n00:01:00,272 --> 00:01:03,486\\nmachine gunners blast \\nenemy fighter planes from the skies.\\n\\n16\\n00:01:10,239 --> 00:01:12,290\\nThe return of the squadrons,\\n\\n17\\n00:01:12,308 --> 00:01:14,745\\njagged gaping holes in many a bomber,\\n\\n18\\n00:01:14,782 --> 00:01:18,067\\ntestify to the intensity\\nof the futile Nazi defense.\\n\\n19\\n00:01:26,500 --> 00:01:29,997\\nEven as a wounded Yankee gunner\\nis borne from his ship,\\n\\n20\\n00:01:30,046 --> 00:01:34,277\\nRAF ground crews are making ready\\nnight raiders to continue the assault.\",\n", + " 'bytes': 1643,\n", + " 'sha1': 'jqmz2h60bgka3ztjno6oycl8pnishlv',\n", + " 'parent_id': 341655708,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 578569463,\n", + " 'timestamp': '2021-08-05T09:18:14Z',\n", + " 'user': {'text': '82.20.53.85'},\n", + " 'page': {'id': 22556945,\n", + " 'title': '1958-02-03 First US Satellite Launched.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Corrected line 11, \"flight industry\" -> \"private industry\"',\n", + " 'text': \"1\\n00:00:05,596 --> 00:00:08,568\\nAt Cape Canaveral, Florida, the Army's Jupiter-C rocket\\n\\n2\\n00:00:08,568 --> 00:00:11,935\\nis readied for America's second attempt to launch a space satellite.\\n\\n3\\n00:00:11,935 --> 00:00:16,091\\nNo relation to the IRBM Jupiter, this is a rebuilt Redstone,\\n\\n4\\n00:00:16,091 --> 00:00:19,226\\na 200-mile missile carrying instead of a warhead\\n\\n5\\n00:00:19,226 --> 00:00:23,103\\nthree stages of solid fuel booster rockets and the Explorer,\\n\\n6\\n00:00:23,103 --> 00:00:27,585\\na six-foot bullet only inches across crammed with electronic gear—\\n\\n7\\n00:00:27,585 --> 00:00:29,767\\nthirty pounds of payload.\\n\\n8\\n00:00:38,000 --> 00:00:40,565\\nThis closeup of the United States edition of Sputnik\\n\\n9\\n00:00:40,565 --> 00:00:43,862\\nwas made at a press conference with leaders of the scientific teams:\\n\\n10\\n00:00:43,862 --> 00:00:47,949\\nDr Wernher von Braun, Dr James Van Allen, and Dr William Pickering,\\n\\n11\\n00:00:47,949 --> 00:00:52,918\\na three-way collaboration between private industry, academic science, and the military.\\n\\n12\\n00:00:55,000 --> 00:00:57,237\\nJupiter-C stands poised on its launching pad.\\n\\n13\\n00:00:57,237 --> 00:00:59,698\\nThe hours-long countdown approaches zero.\\n\\n14\\n00:00:59,698 --> 00:01:03,854\\nA moment of enormous tension, for every missile launching is still an experiment.\\n\\n15\\n00:01:03,854 --> 00:01:07,988\\nAny one of tens of thousands of things can go wrong, with catastrophic results.\\n\\n16\\n00:01:07,988 --> 00:01:10,727\\nBut all that can be done with sure perfection has been done,\\n\\n17\\n00:01:10,727 --> 00:01:13,653\\nthe moment is at hand, the countdown reaches… Zero!\\n\\n18\\n00:01:26,053 --> 00:01:30,000\\nSome three minutes later, Explorer is in orbit, broadcasting to\\n\\n19\\n00:01:30,000 --> 00:01:31,881\\nthe world its coded scientific data:\\n\\n20\\n00:01:31,881 --> 00:01:36,548\\nCosmic ray intensity, meteor impacts, solar radiation,\\n\\n21\\n00:01:36,548 --> 00:01:39,334\\nthese are the dry facts that will help carry man\\n\\n22\\n00:01:39,334 --> 00:01:42,423\\never farther into the age of space.\\n\\n23\\n00:01:49,400 --> 00:01:54,056\\nTwo presidents, Gamal Abdel Nasser of Egypt and Shukri al-Quwatli of Syria,\\n\\n24\\n00:01:54,056 --> 00:01:57,585\\nmeet to make history in Cairo with the federation of their two states\\n\\n25\\n00:01:57,585 --> 00:02:00,511\\ninto one, the United Arab Republic.\\n\\n26\\n00:02:04,300 --> 00:02:06,618\\nThe news electrified the entire Middle East.\\n\\n27\\n00:02:06,618 --> 00:02:10,426\\nIn Cairo, cheering throngs followed the two leaders through the streets exultantly.\\n\\n28\\n00:02:15,500 --> 00:02:19,551\\nThe Al-Azhar Mosque is the scene of prayers for the new union,\\n\\n29\\n00:02:19,551 --> 00:02:22,524\\nwhich has already invited all Arab states to join.\\n\\n30\\n00:02:22,524 --> 00:02:25,217\\nOne, Yemen, is expected to bid for inclusion.\\n\\n31\\n00:02:25,217 --> 00:02:28,305\\nThe new state numbers 30 million, largest in the Mid-East.\\n\\n32\\n00:02:28,305 --> 00:02:31,347\\nNasser has set vast forces in motion with this act.\\n\\n33\\n00:02:31,347 --> 00:02:33,878\\nThe effect on the precariously balanced Middle East\\n\\n34\\n00:02:33,878 --> 00:02:36,432\\nno one today can prophesy.\\n\\n35\\n00:02:36,432 --> 00:02:38,824\\nThe rest of the world—America, Russia, Israel—\\n\\n36\\n00:02:38,824 --> 00:02:42,144\\nall remain cautiously quiet, awaiting the events that\\n\\n37\\n00:02:42,144 --> 00:02:45,720\\nwill follow on Gamal Nasser's moment of triumph.\",\n", + " 'bytes': 3337,\n", + " 'sha1': '3sh2fw5tlsyw5y6s1rj0e31ygcqaamb',\n", + " 'parent_id': 578568955,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 82439723,\n", + " 'timestamp': '2012-11-05T14:36:51Z',\n", + " 'user': {'id': 849234, 'text': 'Morn'},\n", + " 'page': {'id': 22557340,\n", + " 'title': '1946-02-21 New Airliner.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,600 --> 00:00:05,131\\nIn Santa Monica, California, latest in a long line is the Douglas DC-6 and\\n\\n2\\n00:00:05,131 --> 00:00:08,568\\nBen Howard, test pilot, demonstrates the reversible-pitch propellers\\n\\n3\\n00:00:08,568 --> 00:00:13,281\\non the four-engine craft that add to both safety and ease of operation\\n\\n4\\n00:00:13,281 --> 00:00:17,275\\non the ground. With the props in reverse pitch, the giant plane\\n\\n5\\n00:00:17,275 --> 00:00:20,038\\ncould be slowed down during an emergency landing.\\n\\n6\\n00:00:20,038 --> 00:00:24,891\\nMany other war-tested devices are incorporated in the luxury airliner\\n\\n7\\n00:00:24,891 --> 00:00:28,212\\nwhich ushers in a new era in American aviation.\\n\\n8\\n00:00:40,000 --> 00:00:44,141\\n56 passengers will travel in up-to-the-minute comfort onboard\\n\\n9\\n00:00:44,141 --> 00:00:46,323\\nthis successor to the famous Skymaster.\\n\\n10\\n00:00:46,323 --> 00:00:50,665\\nPressure cabins, sound proofing, traveling at a speed of 300 mph\\n\\n11\\n00:00:50,665 --> 00:00:54,009\\nin roomy cabins that can be quickly converted into\\n\\n12\\n00:00:54,009 --> 00:00:57,097\\nsleeping compartments for 26 passengers.\\n\\n13\\n00:01:03,000 --> 00:01:06,919\\nIn this 20th-century magic carpet, you'll soon be able to laugh\\n\\n14\\n00:01:06,919 --> 00:01:10,008\\nat time and space and dream your way across the vastness\\n\\n15\\n00:01:10,008 --> 00:01:12,933\\nof a nation at 20,000 feet.\\n\\n16\\n00:01:16,000 --> 00:01:19,481\\nAn ancient chore in a modern setting!\\n\\n17\\n00:01:20,800 --> 00:01:24,033\\nEverything snug as a bug in a rug, ready to call it a day\\n\\n18\\n00:01:24,033 --> 00:01:26,192\\nand tomorrow comes on wings of safety.\\n\\n19\\n00:01:26,400 --> 00:01:27,800\\nBye now!\",\n", + " 'bytes': 1634,\n", + " 'sha1': '5y8wtrdfjg9d82lyqle4ex466jjmacv',\n", + " 'parent_id': 82439508,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 653766301,\n", + " 'timestamp': '2022-05-04T08:53:27Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 22557980,\n", + " 'title': '1937-05-10 Special Release - Zeppelin Explodes Scores Dead.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall subtitles update',\n", + " 'text': \"1 (Remove this text with parentheses while translating)\\n00:00:00,171 --> 00:00:03,436\\n[Universal Newsreel\\nZeppelin Explodes Scores Dead]\\n\\n2 (Remove this text with parentheses while translating)\\n00:00:03,469 --> 00:00:05,291\\n[Lakehurst, N. J.]\\n\\n3\\n00:00:07,000 --> 00:00:10,711\\nThe German zeppelin Hindenburg,\\nQueen of the skies, seen here\\n\\n4\\n00:00:10,745 --> 00:00:13,016\\nfrom a Universal newsreel camera plane,\\n\\n5\\n00:00:13,057 --> 00:00:16,573\\nas it sped over New York to its tragic\\nend at Lakehurst, New Jersey,\\n\\n6\\n00:00:16,593 --> 00:00:20,375\\nnow lies at the Naval Air Station,\\na twisted mass of metal.\\n\\n7\\n00:00:20,678 --> 00:00:22,837\\nShortly after these pictures were taken,\\n\\n8\\n00:00:22,887 --> 00:00:25,248\\nshowing the great skyliner\\nsaluting the millions\\n\\n9\\n00:00:25,282 --> 00:00:28,156\\nwatching it from below\\non its first trip of the season,\\n\\n10\\n00:00:28,188 --> 00:00:33,150\\nthe huge craft exploded while docking\\nand blazed to a fiery end,\\n\\n11\\n00:00:33,187 --> 00:00:37,726\\ntaking the lives of almost half\\nits 99 passengers and crew.\\n\\n12\\n00:00:37,749 --> 00:00:41,761\\nHours late on its trip from Hamburg\\nbecause of headwinds,\\n\\n13\\n00:00:41,786 --> 00:00:45,264\\nthe zeppelin had to ride out\\na thunderstorm along the Jersey coast\\n\\n14\\n00:00:45,296 --> 00:00:49,166\\nbefore heading for the Air Station\\nand nosing its way to the mooring mast.\\n\\n15\\n00:00:49,401 --> 00:00:52,086\\nThe wind is bad\\nand the docking is a ticklish one,\\n\\n16\\n00:00:52,126 --> 00:00:55,271\\nbut it's all a thrill for the crowd\\nof happy passengers,\\n\\n17\\n00:00:55,292 --> 00:00:58,330\\neager to land after\\ntheir transoceanic trip.\\n\\n18\\n00:00:58,528 --> 00:01:01,070\\nSlowly the big ship warps in\\n\\n19\\n00:01:01,103 --> 00:01:03,850\\nand the ground crews\\nrush for the mooring lines.\\n\\n20\\n00:01:03,899 --> 00:01:07,921\\nIn another ten minutes or so the great\\naircraft would have been snugly docked.\\n\\n21\\n00:01:07,942 --> 00:01:10,794\\nBut as the passengers crowded\\nthe windows to watch,\\n\\n22\\n00:01:10,814 --> 00:01:14,251\\na roar and a burst of flame\\nnear the big tailfins\\n\\n23\\n00:01:14,291 --> 00:01:16,822\\nturned the ship into a flaming inferno.\\n\\n24\\n00:01:19,087 --> 00:01:21,806\\n(Drammatic music)\\n\\n25\\n00:01:25,739 --> 00:01:28,794\\n(Screams)\\n\\n26\\n00:01:39,258 --> 00:01:43,218\\nPassengers and crew, the fortunate\\namong them, fell or jumped\\n\\n27\\n00:01:43,251 --> 00:01:46,881\\nand were dragged to safety\\nbefore the fiery furnace took their lives.\\n\\n28\\n00:01:46,902 --> 00:01:49,457\\nHeroic work by Navy and Army men,\\n\\n29\\n00:01:49,490 --> 00:01:52,337\\nrisking their lives around\\nthe white-hot skeleton,\\n\\n30\\n00:01:52,359 --> 00:01:55,892\\nsnatched more than one dazed\\nand half-burnt passenger\\n\\n31\\n00:01:55,904 --> 00:01:57,525\\nfrom the blazing wreckage.\\n\\n32\\n00:01:57,558 --> 00:02:01,098\\nBut for the most of those trapped\\nin the incandescent tangle,\\n\\n33\\n00:02:01,131 --> 00:02:02,784\\nthere was no hope!\\n\\n34\\n00:02:02,819 --> 00:02:07,519\\nIt's the greatest of miracles that anyone\\ncame out of the disaster alive.\\n\\n35\\n00:02:12,760 --> 00:02:16,336\\nSeven million cubic feet\\nof inflammable hydrogen gas\\n\\n36\\n00:02:16,369 --> 00:02:18,440\\nblazed up in less than a minute.\\n\\n37\\n00:02:18,475 --> 00:02:23,098\\nThe hundreds of tons of fuel oil\\nburns for an hour or more,\\n\\n38\\n00:02:23,131 --> 00:02:27,142\\nwith its dense black smoke\\nmaking a pall over the tragic scene.\\n\\n39\\n00:02:32,144 --> 00:02:36,763\\nIn all the history of air disasters,\\nthis is the worst, the most terrible.\\n\\n40\\n00:02:36,795 --> 00:02:39,017\\nHailed as the luxury liner of the air,\\n\\n41\\n00:02:39,053 --> 00:02:42,820\\nthe Hindenburg's horrible end\\nhas shocked the entire world.\\n\\n42\\n00:02:42,854 --> 00:02:46,249\\nThe pride of the skies\\nreaches its journey's end.\\n\\n43 (Remove this text with parentheses while translating)\\n00:02:52,258 --> 00:02:54,451\\n[Universal Newsreel]\\n\\n44 (Remove this text with parentheses while translating)\\n00:02:54,465 --> 00:02:57,789\\n[Zep Survivors Fight for Life\\nas Inquiry Begins]\\n\\n45 (Remove this text with parentheses while translating)\\n00:02:57,815 --> 00:03:00,285\\n[Lakenhurst, N. J.]\\n\\n46\\n00:03:01,165 --> 00:03:05,698\\nA twisted, tangled mass of seared girders\\nand bits of blackened fabric\\n\\n47\\n00:03:05,730 --> 00:03:09,306\\nare all that remains of the proud\\nluxury airliner Hindenburg\\n\\n48\\n00:03:09,317 --> 00:03:11,698\\nthat lies at the Lakehurst Naval Station.\\n\\n49\\n00:03:12,148 --> 00:03:15,987\\nThe death list is now 35, with ten,\\nincluding Captain Pruss,\\n\\n50\\n00:03:16,019 --> 00:03:17,604\\nstill on the critical list.\\n\\n51\\n00:03:23,508 --> 00:03:26,510\\nWith the next morning's first light,\\na naval inspection board\\n\\n52\\n00:03:26,527 --> 00:03:29,113\\nheaded by Captain Haines,\\ninspects the wreckage,\\n\\n53\\n00:03:29,138 --> 00:03:32,920\\nas others search the still-smoking\\nruins for a possible clue\\n\\n54\\n00:03:32,959 --> 00:03:35,858\\nthat might yield a key\\nto the mysterious disaster.\\n\\n55\\n00:03:36,041 --> 00:03:38,251\\nThe remains of the Hindenburg\\nwill not be moved\\n\\n56\\n00:03:38,302 --> 00:03:41,738\\nuntil the arrival of Germany's\\nexpert, Dr Hugo Eckener,\\n\\n57\\n00:03:41,780 --> 00:03:45,209\\nwho heads a commission that will\\nconduct an investigation simultaneously\\n\\n58\\n00:03:45,246 --> 00:03:47,204\\nwith the Department of Commerce.\\n\\n59\\n00:03:52,218 --> 00:03:56,770\\nGerman ambassador, Hans Luther,\\nwas the first Reich observer to arrive.\\n\\n60\\n00:03:56,796 --> 00:03:59,795\\nVisiting the injured at the hospital\\nin nearby Lakewood,\\n\\n61\\n00:03:59,829 --> 00:04:03,290\\nbut refusing to comment on anything\\nconnected with the disaster.\\n\\n62\\n00:04:03,647 --> 00:04:06,519\\nAs soon as is possible,\\nthe injured who can be moved\\n\\n63\\n00:04:06,544 --> 00:04:10,542\\nare carried to ambulances were transferred\\nto New York, 60 miles away,\\n\\n64\\n00:04:10,567 --> 00:04:14,298\\nso as to receive everything\\nthat medical science can offer.\\n\\n65\\n00:04:14,739 --> 00:04:19,223\\nSwathed in bandages, they may be more than\\nthankful for their miraculous escape\\n\\n66\\n00:04:19,248 --> 00:04:21,796\\nfrom the blazing inferno\\nof the Hindenburg.\\n\\n67\\n00:04:26,092 --> 00:04:28,095\\nMembers of the crew not seriously injured\\n\\n68\\n00:04:28,123 --> 00:04:30,812\\nwere housed in the officer's\\nmess at the Naval Station.\\n\\n69\\n00:04:30,967 --> 00:04:34,661\\n13-year-old Werner Franz,\\nthe cabin boy, is the youngest survivor,\\n\\n70\\n00:04:34,695 --> 00:04:37,767\\nwill appear before the Department\\nof Commerce investigation board\\n\\n71\\n00:04:37,817 --> 00:04:42,074\\nthat calls Commander Rosendahl, head\\nof the Naval Station, as first witness.\\n\\n72\\n00:04:42,241 --> 00:04:45,991\\nBut experts believe the exact cause\\nof the greatest of air disasters\\n\\n73\\n00:04:46,024 --> 00:04:47,469\\nwill never be known.\\n\\n74\\n00:04:47,502 --> 00:04:51,286\\nOver the Hindenburg will loom a question\\nmark that can never be forgotten!\",\n", + " 'bytes': 6675,\n", + " 'sha1': 's9jabxxcm72t7co7k3dv9gqqfbrawsk',\n", + " 'parent_id': 589453703,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 128786389,\n", + " 'timestamp': '2014-07-12T12:45:27Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 22559623,\n", + " 'title': 'Wikimedia Foundation 90 second HR Video with Disclaimer 720p.theora.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'McZusatz moved page [[TimedText:Wikimedia Foundation 90 second HR Video with Disclaimer 720p.theora.ogv]] to [[TimedText:Wikimedia Foundation 90 second HR Video with Disclaimer 720p.theora.ogv.en.srt]]',\n", + " 'text': \"1\\n00:00:00,704 --> 00:00:03,175\\nWe're sharing the sum of all human knowledge.\\n\\n2\\n00:00:03,175 --> 00:00:06,000\\nHow many people can say they do that as their job?\",\n", + " 'bytes': 161,\n", + " 'sha1': '8a14uxn75ave2ydt1svqhua3ftasm2k',\n", + " 'parent_id': 82448491,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 82462565,\n", + " 'timestamp': '2012-11-05T22:10:54Z',\n", + " 'user': {'id': 849234, 'text': 'Morn'},\n", + " 'page': {'id': 22562759,\n", + " 'title': 'B-2 Spirit.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:05,160 --> 00:00:07,865\\nCloaked in stealth technology and now battle-tested,\\n\\n2\\n00:00:07,865 --> 00:00:11,197\\nthe B-2 Spirit is the latest addition to the Defense Department's\\n\\n3\\n00:00:11,197 --> 00:00:16,399\\nmanned bomber force. The B-2 made its debut November 22, 1988\\n\\n4\\n00:00:16,399 --> 00:00:20,659\\nwhen it rolled out of its hangar at Air Force plant 42 Palmdale, Ca.\\n\\n5\\n00:00:20,659 --> 00:00:24,874\\nWith a 40,000-pound payload and an unlimited range when refueled,\\n\\n6\\n00:00:24,874 --> 00:00:27,718\\nB-2s proved their metal during operations over the Balkans,\\n\\n7\\n00:00:27,718 --> 00:00:31,225\\nwhere pilots flew more than 22 hours from Missouri to put bombs\\n\\n8\\n00:00:31,225 --> 00:00:35,079\\non target. Its missions were successful and proved the capability\\n\\n9\\n00:00:35,079 --> 00:00:38,568\\nof the stealth bomber. Those same capabilities also enable the\\n\\n10\\n00:00:38,568 --> 00:00:41,511\\nbomber to remain hidden at a number of altitudes, increasing its\\n\\n11\\n00:00:41,511 --> 00:00:44,982\\nrange and offering a better field of view for the aircraft sensors.\\n\\n12\\n00:00:44,982 --> 00:00:48,454\\nIts crew of two consists of a pilot who sits on the left\\n\\n13\\n00:00:48,454 --> 00:00:51,536\\nand the mission commander—also a pilot—who sits on the right.\\n\\n14\\n00:00:51,536 --> 00:00:55,292\\nNow an Air Force veteran, the B-2 brings an unmatched capability\\n\\n15\\n00:00:55,292 --> 00:00:59,054\\nto cross enemy lines, use massive firepower, and supplement the\\n\\n16\\n00:00:59,054 --> 00:01:01,631\\ncombat force well into the new millenium.\",\n", + " 'bytes': 1529,\n", + " 'sha1': '8upi6iwdb9kslhfxw91z0hjhsu286x4',\n", + " 'parent_id': 82462207,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 631180559,\n", + " 'timestamp': '2022-02-20T21:18:16Z',\n", + " 'user': {'id': 2366229, 'text': 'Achim55'},\n", + " 'page': {'id': 22563644,\n", + " 'title': 'National anthem of Germany - U.S. Army 1st Armored Division Band.ogg.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/31.179.31.168|31.179.31.168]] ([[User talk:31.179.31.168|talk]]) to last revision by Michael Bednarek',\n", + " 'text': \"1\\n00:00:00,100 --> 00:00:07,196\\nEinigkeit und Recht und Freiheit\\n\\n2\\n00:00:07,196 --> 00:00:14,232\\nFür das deutsche Vaterland!\\n\\n3\\n00:00:14,232 --> 00:00:21,291\\nDanach lasst uns alle streben\\n\\n4\\n00:00:21,291 --> 00:00:28,300\\nBrüderlich mit Herz und Hand!\\n\\n5\\n00:00:28,300 --> 00:00:36,288\\nEinigkeit und Recht und Freiheit\\n\\n6\\n00:00:36,288 --> 00:00:42,871\\nSind des Glückes Unterpfand –\\n\\n7\\n00:00:42,871 --> 00:00:49,779\\nBlüh' im Glanze dieses Glückes,\\n\\n8\\n00:00:49,779 --> 00:00:56,482\\nBlühe, deutsches Vaterland!\\n\\n9\\n00:00:56,482 --> 00:01:03,708\\nBlüh' im Glanze dieses Glückes,\\n\\n10\\n00:01:03,708 --> 00:01:12,322\\nBlühe, deutsches Vaterland!\",\n", + " 'bytes': 644,\n", + " 'sha1': 'k7bafy1kqxfe1d31esz0ouukblqx7ni',\n", + " 'parent_id': 631171516,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606645046,\n", + " 'timestamp': '2021-11-11T16:16:41Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 22567104,\n", + " 'title': \"La Traviata - Act 1 - Libiamo ne' lieti calici.ogg.it.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated',\n", + " 'text': \"1\\n00:00:21,262 --> 00:00:27,159\\nAlfredo: Libiamo, libiamo ne'lieti calici\\n\\n2\\n00:00:27,208 --> 00:00:30,394\\nche la bellezza infiora.\\n\\n3\\n00:00:30,441 --> 00:00:35,788\\nE la fuggevol, fuggevol ora\\n\\n4\\n00:00:35,821 --> 00:00:39,203\\ns'inebrii a voluttà\\n\\n5\\n00:00:39,233 --> 00:00:43,256\\nLibiam ne'dolci fremiti\\n\\n6\\n00:00:43,289 --> 00:00:46,788\\nche suscita l'amore,\\n\\n7\\n00:00:46,821 --> 00:00:50,545\\npoiché quell'ochio al core\\n\\n8\\n00:00:50,594 --> 00:00:56,426\\nonnipotente va.\\n\\n9\\n00:00:56,504 --> 00:01:02,583\\nLibiamo, amore, amor fra i calici\\n\\n10\\n00:01:02,619 --> 00:01:04,825\\npiù caldi baci avrà\\n\\n11\\n00:01:04,875 --> 00:01:08,993\\nCoro: Ah! Libiam, amor, fra' calici\\n\\n12\\n00:01:09,011 --> 00:01:12,231\\npiù caldi baci avrà\\n\\n13\\n00:01:12,554 --> 00:01:19,401\\nVioletta: Tra voi tra voi saprò dividere\\n\\n14\\n00:01:19,437 --> 00:01:22,883\\nil tempo mio giocondo;\\n\\n15\\n00:01:23,040 --> 00:01:28,636\\nTutto è follia, follia nel mondo\\n\\n16\\n00:01:28,686 --> 00:01:31,790\\nciò che non è piacer\\n\\n17\\n00:01:32,007 --> 00:01:35,868\\nGodiam, fugace e rapido\\n\\n18\\n00:01:35,917 --> 00:01:39,833\\ne'il gaudio dell'amore,\\n\\n19\\n00:01:40,044 --> 00:01:44,043\\ne'un fior che nasce e muore,\\n\\n20\\n00:01:44,093 --> 00:01:50,294\\nne più si può goder\\n\\n21\\n00:01:50,490 --> 00:01:56,543\\nGodiamo, c'invita, c'invita un fervido\\n\\n22\\n00:01:56,592 --> 00:01:59,542\\naccento lusinghier.\\n\\n23\\n00:02:00,512 --> 00:02:05,197\\nCoro: Godiamo, la tazza,\\nla tazza e il cantico,\\n\\n24\\n00:02:05,247 --> 00:02:08,251\\nla notte abbella e il riso;\\n\\n25\\n00:02:08,301 --> 00:02:13,238\\nin questo, in questo paradiso\\n\\n26\\n00:02:13,272 --> 00:02:15,809\\nne scopra il nuovo dì\\n\\n27\\n00:02:16,276 --> 00:02:20,141\\nVioletta: La vita è nel tripudio\\n\\n28\\n00:02:20,174 --> 00:02:24,057\\nAlfredo: Quando non s'ami ancora\\n\\n29\\n00:02:24,090 --> 00:02:28,155\\nVioletta: Nol dite a chi l'ignora,\\n\\n30\\n00:02:28,188 --> 00:02:34,710\\nAlfredo: E'il mio destin così...\\n\\n31\\n00:02:34,783 --> 00:02:40,442\\nTutti: Godiamo, la tazza,\\nla tazza e il cantico,\\n\\n32\\n00:02:40,494 --> 00:02:43,450\\nla notte abbella e il riso;\\n\\n33\\n00:02:43,510 --> 00:02:50,174\\nin questo, in questo paradiso\\nne scopra il nuovo dì,\\n\\n34\\n00:02:50,205 --> 00:02:52,888\\nAh, ah, il nuovo dì!\\n\\n35\\n00:02:52,938 --> 00:02:55,736\\nAh, ah, il nuovo dì!\",\n", + " 'bytes': 2218,\n", + " 'sha1': 'amv13ur7lrojwms6x0pfpbni3ndq3vz',\n", + " 'parent_id': 82485111,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 242553800,\n", + " 'timestamp': '2017-05-01T09:03:02Z',\n", + " 'user': {'id': 849234, 'text': 'Morn'},\n", + " 'page': {'id': 22568877,\n", + " 'title': 'DuckandC1951.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Morn moved page [[TimedText:DuckandC1951.ogg.en.srt]] to [[TimedText:DuckandC1951.ogv.en.srt]]: video file has been renamed',\n", + " 'text': '1\\n00:00:01,000 --> 00:00:07,308\\n[song starts]\\n\\n2\\n00:00:07,308 --> 00:00:10,280\\n♫ There was a turtle by the name of Bert\\n\\n3\\n00:00:10,280 --> 00:00:13,467\\n♫ and Bert the turtle was very alert.\\n\\n4\\n00:00:13,467 --> 00:00:16,631\\n♫ When danger threatened him he never got hurt,\\n\\n5\\n00:00:16,631 --> 00:00:19,713\\n♫ he knew just what to do:\\n\\n6\\n00:00:19,713 --> 00:00:23,161\\n♫ He\\'d duck and cover!\\n\\n7\\n00:00:23,161 --> 00:00:25,977\\n♫ Duck and cover!\\n\\n8\\n00:00:25,977 --> 00:00:29,413\\n♫ He did what we all must learn to do\\n\\n9\\n00:00:29,413 --> 00:00:32,618\\n♫ You, and you, and you, and you\\n\\n10\\n00:00:32,618 --> 00:00:36,101\\n♫ Duck and cover!\\n\\n11\\n00:00:36,101 --> 00:00:38,330\\n[song ends]\\n\\n12\\n00:00:38,330 --> 00:00:40,785\\n<i>Announcer:</i> Be sure and remember what Bert the turtle does, dear friends,\\n\\n13\\n00:00:40,785 --> 00:00:43,810\\nbecause everyone of us must remember to do the same thing.\\n\\n14\\n00:00:43,810 --> 00:00:46,050\\nThat\\'s what this film is all about.\\n\\n15\\n00:00:46,050 --> 00:00:48,744\\nDuck and cover!\\n\\n16\\n00:00:48,744 --> 00:00:51,182\\nThis is an official civil defense film produced in\\n\\n17\\n00:00:51,182 --> 00:00:54,729\\ncooperation with the with the Federal Civil Defense Administration and in\\n\\n18\\n00:00:54,729 --> 00:00:58,659\\nconsultation with the Safety Commission of the National Education Association.\\n\\n19\\n00:00:58,659 --> 00:01:01,863\\nProduced by Archer Productions, Inc.\\n\\n20\\n00:01:01,863 --> 00:01:06,031\\nHey, Bert, come on out and meet all these nice people!\\n\\n21\\n00:01:06,031 --> 00:01:10,072\\nPlease? Oh, alright, we really can\\'t blame you.\\n\\n22\\n00:01:10,072 --> 00:01:13,450\\nYou see, Bert is a very, very careful fellow.\\n\\n23\\n00:01:13,450 --> 00:01:17,072\\nWhen there\\'s danger, this is the way he keeps from being hurt.\\n\\n24\\n00:01:17,072 --> 00:01:20,555\\nSometimes, it even saves his life.\\n\\n25\\n00:01:20,555 --> 00:01:24,810\\nThat\\'s why these children are practicing to duck and cover,\\n\\n26\\n00:01:24,810 --> 00:01:26,662\\njust as you do in your school.\\n\\n27\\n00:01:26,662 --> 00:01:30,424\\nWe all know the atomic bomb is very dangerous.\\n\\n28\\n00:01:30,424 --> 00:01:33,895\\nSince it may be used against us, we must get ready for it,\\n\\n29\\n00:01:33,895 --> 00:01:37,901\\njust as we are ready for many other dangers that are around us all the time.\\n\\n30\\n00:01:37,901 --> 00:01:39,898\\nFire is a danger.\\n\\n31\\n00:01:39,898 --> 00:01:43,415\\nIt can burn whole buildings if someone is careless.\\n\\n32\\n00:01:43,415 --> 00:01:45,552\\nBut we are ready for fires.\\n\\n33\\n00:01:45,552 --> 00:01:49,557\\nWe have a fine fire department to put out the fire and\\n\\n34\\n00:01:49,557 --> 00:01:52,657\\nyou have fire drills in your school so you know what to do.\\n\\n35\\n00:01:52,657 --> 00:01:57,823\\nAutomobiles can be dangerous too; they sometimes cause bad accidents.\\n\\n36\\n00:01:57,823 --> 00:02:01,742\\nBut we are ready. We have safety rules that car drivers and people who\\n\\n37\\n00:02:01,742 --> 00:02:03,083\\nare walking must obey.\\n\\n38\\n00:02:03,083 --> 00:02:06,688\\nNow, we must be ready for a new danger:\\n\\n39\\n00:02:06,688 --> 00:02:08,145\\nthe atomic bomb.\\n\\n40\\n00:02:08,145 --> 00:02:12,823\\nFirst, you have to know what happens when an atomic bomb explodes.\\n\\n41\\n00:02:12,823 --> 00:02:17,317\\nYou\\'ll know when it comes—we hope it never comes, but we must get ready.\\n\\n42\\n00:02:17,317 --> 00:02:18,977\\nIt looks something like this:\\n\\n43\\n00:02:18,977 --> 00:02:23,284\\nThere\\'s a bright flash, brighter than the Sun, brighter than anything you\\'ve ever seen!\\n\\n44\\n00:02:23,284 --> 00:02:27,069\\nIf you\\'re not ready and did not know what to do,\\n\\n45\\n00:02:27,069 --> 00:02:29,704\\nit could hurt you in different ways.\\n\\n46\\n00:02:29,704 --> 00:02:34,453\\nIt could knock you down hard or throw you against a tree or a wall.\\n\\n47\\n00:02:34,453 --> 00:02:39,155\\nIt is such a big explosion, it can smash in buildings and knock signboards over\\n\\n48\\n00:02:39,155 --> 00:02:41,674\\nand break windows all over town!\\n\\n49\\n00:02:41,674 --> 00:02:46,492\\nBut if you duck and cover—like Bert—you\\'ll be much safer.\\n\\n50\\n00:02:46,492 --> 00:02:49,697\\nYou know how bad sunburn can feel.\\n\\n51\\n00:02:49,697 --> 00:02:54,016\\nThe atomic bomb flash could burn you worse than a terrible sunburn,\\n\\n52\\n00:02:54,016 --> 00:02:56,152\\nespecially where you\\'re not covered.\\n\\n53\\n00:02:56,152 --> 00:03:00,250\\nNow, you and I don\\'t have shells to crawl into like Bert the turtle,\\n\\n54\\n00:03:00,250 --> 00:03:02,677\\nso we have to cover up in our own way.\\n\\n55\\n00:03:02,677 --> 00:03:06,752\\nFirst, you duck, and then, you cover.\\n\\n56\\n00:03:06,752 --> 00:03:10,618\\nAnd very tightly, you cover the back of your neck and your face.\\n\\n57\\n00:03:10,618 --> 00:03:16,028\\nDuck and cover underneath a table or desk or anything else close by.\\n\\n58\\n00:03:16,028 --> 00:03:20,312\\nIn Betty\\'s school, they are talking about the atomic bomb too.\\n\\n59\\n00:03:20,312 --> 00:03:25,699\\nBetty is asking her teacher: How can we tell when the atomic bomb may explode?\\n\\n60\\n00:03:25,699 --> 00:03:29,217\\nAnd her teacher is explaining that there are two kinds of attack:\\n\\n61\\n00:03:29,217 --> 00:03:32,096\\nwith warning and without any warning.\\n\\n62\\n00:03:32,096 --> 00:03:36,793\\nWe think that most of the time we will be warned before the bomb explodes.\\n\\n63\\n00:03:36,793 --> 00:03:41,976\\nSo there will be time for us to get into our homes, schools, or some other safe place.\\n\\n64\\n00:03:41,976 --> 00:03:47,305\\nOur Civil Defense workers and our men in uniform will do everything they can\\n\\n65\\n00:03:47,305 --> 00:03:51,032\\nto warn us before enemy planes can bring a bomb near us.\\n\\n66\\n00:03:51,032 --> 00:03:55,641\\nYou may be in your schoolyard playing when the signal comes.\\n\\n67\\n00:03:55,891 --> 00:03:58,600\\n[sound of civil defense sirens]\\n\\n68\\n00:03:58,823 --> 00:04:04,314\\nThat signal means to stop whatever you are doing and get to the nearest safe place fast.\\n\\n69\\n00:04:04,314 --> 00:04:11,073\\nAlways remember: The flash of an atomic bomb can come at any time, no matter where you may be!\\n\\n70\\n00:04:11,073 --> 00:04:15,077\\nYou might be out playing at home when the warning comes.\\n\\n71\\n00:04:15,077 --> 00:04:23,343\\nThen be sure to get into the house fast, where your parents have fixed a safe place for you to go.\\n\\n72\\n00:04:23,343 --> 00:04:28,927\\nIf you are not close to home when you hear the warning, go to the nearest safe cover.\\n\\n73\\n00:04:28,927 --> 00:04:33,745\\nKnow where you are to go or ask an older person to help you.\\n\\n74\\n00:04:33,745 --> 00:04:39,945\\nYou know the places marked with the \"S\" sign? They\\'re safe places to go when you hear the alarm.\\n\\n75\\n00:04:39,945 --> 00:04:44,728\\nIf there is a warning, you will hear it before the bomb explodes.\\n\\n76\\n00:04:44,728 --> 00:04:53,297\\nBut sometimes—and this is very, very important—sometimes the bomb might explode without any warning!\\n\\n77\\n00:04:53,297 --> 00:04:57,337\\nThen the first thing we would know about it would be the flash\\n\\n78\\n00:04:57,337 --> 00:05:02,631\\nand that means duck and cover fast, wherever you are! There\\'s no time to look around or wait.\\n\\n79\\n00:05:02,631 --> 00:05:07,832\\nBe like Bert! When there is a flash, duck and cover, and do it fast!\\n\\n80\\n00:05:07,832 --> 00:05:13,359\\nHere are some older boys showing what to do if the flash comes when you are not in the classroom.\\n\\n81\\n00:05:13,359 --> 00:05:20,684\\nThis is what to do if you should be in a corridor: You duck and cover tight against the wall this way.\\n\\n82\\n00:05:20,684 --> 00:05:24,969\\nRemember to keep your face and the back of your neck covered tightly.\\n\\n83\\n00:05:24,969 --> 00:05:29,055\\nTry to fall away from windows or doors with glass in them.\\n\\n84\\n00:05:29,055 --> 00:05:32,910\\nThen, if the glass breaks and flies through the air, it won\\'t cut you.\\n\\n85\\n00:05:32,910 --> 00:05:36,381\\nYou might be eating your lunch when the flash comes.\\n\\n86\\n00:05:36,381 --> 00:05:38,784\\nDuck and cover under the table!\\n\\n87\\n00:05:38,784 --> 00:05:43,812\\nThen, if the explosion makes anything in the room fall down, it can\\'t fall on you.\\n\\n88\\n00:05:43,812 --> 00:05:49,245\\nGetting ready means we will all have to be able to take care of ourselves.\\n\\n89\\n00:05:49,245 --> 00:05:54,737\\nThe bomb might explode when there are no grown-ups near. Paul and Patty know this.\\n\\n90\\n00:05:54,737 --> 00:05:57,558\\nAnd they are always ready to take care of themselves.\\n\\n91\\n00:05:57,558 --> 00:06:02,329\\nHere they are on their way to school on a beautiful spring day, but no matter where\\n\\n92\\n00:06:02,329 --> 00:06:08,912\\nthey go or what they do, they always try to remember what to do if the atom bomb explodes right then.\\n\\n93\\n00:06:08,912 --> 00:06:11,525\\nIt\\'s a bomb! Duck and cover!\\n\\n94\\n00:06:11,525 --> 00:06:17,527\\nPaul and Patty know what to do. Paul covered the back of his head, so that he wouldn\\'t be burned.\\n\\n95\\n00:06:17,527 --> 00:06:20,650\\nAnd Patty covered herself with the coat she was carrying.\\n\\n96\\n00:06:20,650 --> 00:06:25,851\\nThey knew how to duck and cover. They acted right away when the flash came.\\n\\n97\\n00:06:25,851 --> 00:06:33,189\\nIf they had been at this doorway when the bomb flashed, Paul and Patty would have ducked and covered this way, like this girl.\\n\\n98\\n00:06:33,189 --> 00:06:36,498\\nHeavy doorways are a good place to duck and cover.\\n\\n99\\n00:06:36,498 --> 00:06:38,506\\nShe will be safer too.\\n\\n100\\n00:06:38,506 --> 00:06:42,128\\nHere\\'s Tony going to his Cub Scout meeting.\\n\\n101\\n00:06:42,128 --> 00:06:47,225\\nTony knows the bomb can explode any time of the year, day or night. He is ready for it.\\n\\n102\\n00:06:47,225 --> 00:06:49,118\\nDuck and cover!\\n\\n103\\n00:06:49,118 --> 00:06:53,483\\nAttaboy, Tony, that flash means: act fast!\\n\\n104\\n00:06:53,483 --> 00:06:56,595\\nTony knows that it helps to get to any kind of cover.\\n\\n105\\n00:06:56,595 --> 00:07:00,658\\nThis wall was close by, so that\\'s where he ducked and covered.\\n\\n106\\n00:07:00,658 --> 00:07:05,430\\nTony knew what to do. Notice how he keeps from moving, or from getting up and running?\\n\\n107\\n00:07:05,430 --> 00:07:09,331\\nHe stays down until he is sure the danger is over.\\n\\n108\\n00:07:09,331 --> 00:07:13,104\\nThe man helping Tony is a Civil Defense worker.\\n\\n109\\n00:07:13,104 --> 00:07:17,748\\nHis job is to help protect us when there is danger of the atomic bomb.\\n\\n110\\n00:07:17,748 --> 00:07:20,685\\nWe must obey the Civil Defense worker!\\n\\n111\\n00:07:20,685 --> 00:07:27,349\\nWe must know how to duck and cover in the school bus, or in any other bus or street car.\\n\\n112\\n00:07:27,349 --> 00:07:33,143\\nDuck and cover! Don\\'t wait, duck away from the windows fast!\\n\\n113\\n00:07:33,143 --> 00:07:36,428\\nThe glass may break and fly through the air and cut you.\\n\\n114\\n00:07:36,428 --> 00:07:43,336\\nSundays, holidays, vacation time—we must be ready every day, all the time,\\n\\n115\\n00:07:43,336 --> 00:07:46,970\\nto do the right thing if the atomic bomb explodes.\\n\\n116\\n00:07:46,970 --> 00:07:49,037\\nDuck and cover!\\n\\n117\\n00:07:49,037 --> 00:07:53,309\\nThis family knows what to do, just as your own family should.\\n\\n118\\n00:07:53,309 --> 00:07:59,544\\nThey know that even a thin cloth helps protect them. Even a newspaper can save you from a bad burn.\\n\\n119\\n00:07:59,544 --> 00:08:06,103\\nBut the most important thing of all is to duck and cover yourself, especially where your clothes do not cover you.\\n\\n120\\n00:08:06,103 --> 00:08:13,511\\nNo matter where we live, in the city or the country, we must be ready all the time for the atomic bomb.\\n\\n121\\n00:08:13,511 --> 00:08:15,647\\nDuck and cover!\\n\\n122\\n00:08:15,647 --> 00:08:24,552\\nThat\\'s the first thing to do, duck and cover. The next important thing to do after that is to stay covered until the danger is over.\\n\\n123\\n00:08:24,552 --> 00:08:32,609\\nYes, we must all get ready now, so we know how to save ourselves if the atomic bomb ever explodes near us.\\n\\n124\\n00:08:32,609 --> 00:08:37,915\\nIf you not know just what to do, ask your teacher when this film is over.\\n\\n125\\n00:08:37,915 --> 00:08:42,025\\nDiscuss what you could do in different places if a bomb explodes.\\n\\n126\\n00:08:42,025 --> 00:08:48,445\\nOlder people will help us as they always do, but there might not be any grown-ups around when the bomb explodes.\\n\\n127\\n00:08:48,445 --> 00:08:50,930\\nThen, you\\'re on your own.\\n\\n128\\n00:08:50,930 --> 00:08:53,112\\n<i>Bert the turtle:</i> Remember what to do, friends!\\n\\n129\\n00:08:53,112 --> 00:08:57,222\\nNow tell me right out loud, what are you supposed to do when you see the flash?\\n\\n130\\n00:08:57,222 --> 00:09:00,752\\n<i>Children:</i> Duck and cover!\\n\\n131\\n00:09:00,752 --> 00:09:04,595\\n[song starts] ♫ Duck and cover!\\n\\n132\\n00:09:04,595 --> 00:09:08,078\\n♫ Duck and cover!\\n\\n133\\n00:09:08,078 --> 00:09:11,816\\n♫ Duck and cover! [music fades out]',\n", + " 'bytes': 12444,\n", + " 'sha1': 'of3t0qw4wyf1huh6wmgllj25qbm2lqx',\n", + " 'parent_id': 140562303,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84426145,\n", + " 'timestamp': '2012-12-06T17:33:20Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 22580619,\n", + " 'title': 'Yochai Benkler - On Autonomy, Control and Cultural Experience.ogg.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/McZusatz|McZusatz]] ([[User talk:McZusatz|talk]]) to last revision by 維基小霸王',\n", + " 'text': '0\\n00:00:00,000 --> 00:00:05,000\\n采访[[w:Yochai Benkler|Yochai Benkler]]\\n\\n1\\n00:00:06,080 --> 00:00:08,040\\n我所说的“用户自主”\\n\\n2\\n00:00:08,040 --> 00:00:15,920\\n是指使得人们能轻易为自己做事\\n\\n\\n3\\n00:00:15,920 --> 00:00:19,920\\n无需获得他人允许\\n\\n4\\n00:00:19,920 --> 00:00:27,800\\n无需屈从于\\n\\n5\\n00:00:27,800 --> 00:00:29,840\\n他人对自己所做之事之控制\\n\\n6\\n00:00:30,280 --> 00:00:39,480\\n[[w:Industrial_information_economy|工业信息和文化革命]]使得人们\\n\\n7\\n00:00:39,480 --> 00:00:49,480\\n从相对自由地使用从朋友、亲戚、小圈子等\\n8\\n00:00:49,480 --> 00:00:55,440\\n社交范围内获得的\\n\\n9\\n00:00:55,440 --> 00:01:01,280\\n有限范围信息\\n\\n10\\n00:01:01,480 --> 00:01:05,800\\n到工业化的文化制造模型\\nTo an industrial model of cultural production\\n\\n11\\n00:01:05,840 --> 00:01:08,480\\n这里的信息由\\n\\n12\\n00:01:08,480 --> 00:01:15,400\\n一些专业制作人制作\\nwho then control the experience \\n\\n13\\n00:01:15,400 --> 00:01:22,400\\nand located individuals at the passive \\nreceiving end of the cultural conversation\\n\\n14\\n00:01:22,600 --> 00:01:29,600\\nso that efforts to take these materials and remake them, \\n\\n15\\n00:01:29,600 --> 00:01:32,480\\nor efforts to participate as a cultural speaker,\\n\\n16\\n00:01:32,520 --> 00:01:37,640\\nby and large required permission.\\n\\n17\\n00:01:38,000 --> 00:01:45,200\\nWhat we\\'re seeing now is that \\nthrough a combination of technology,\\n\\n18\\n00:01:45,120 --> 00:01:52,040\\nboth digital processing and computation technology \\nand networking technology,\\n\\n19\\n00:01:52,520 --> 00:01:56,080\\npeople can take more of their cultural environment, \\n\\n20\\n00:01:56,520 --> 00:02:01,520\\nmore of the information environment, \\nmake it their own,\\n\\n21\\n00:02:01,520 --> 00:02:04,760\\nuse it as found materials \\nto put together their own expressions,\\n\\n22\\n00:02:04,760 --> 00:02:07,800\\ndo their own research, \\ncreate their own communications, \\n\\n23\\n00:02:07,800 --> 00:02:11,320\\ncreate their own communities, \\nwhen they need collaboration with others.\\n\\n24\\n00:02:11,520 --> 00:02:16,480\\nRather than relying on a \\nlimited set of existing institutions.\\n\\n25\\n00:02:17,000 --> 00:02:20,840\\nOr on a set of materials \\nthat they are [[w:Copyright|not allowed to use]]\\n\\n26\\n00:02:20,920 --> 00:02:25,760\\nwithout going and asking \\n\"please may I use this?\\n\\n27\\n00:02:25,760 --> 00:02:27,080\\nPlease may I create?\"\\n\\n28\\n00:02:27,200 --> 00:02:30,800\\nWhat happens when people can do more for and \\n\\n29\\n00:02:30,800 --> 00:02:35,040\\nby themselves is that the set of actors;\\n\\n30\\n00:02:35,600 --> 00:02:38,240\\nprimarily companies, \\nand in some places governments\\n\\n31\\n00:02:38,840 --> 00:02:44,880\\nthat control the experience - \\nthose whose permission was required, \\n\\n32\\n00:02:45,200 --> 00:02:47,440\\nare resisting this transistion because \\n\\n33\\n00:02:47,440 --> 00:02:49,720\\ncontrol is a good thing to get \\nif you can get it. \\n\\n34\\n00:02:49,800 --> 00:02:52,760\\nOr at least control is a good thing to have \\nif you can get it.\\n\\n35\\n00:02:54,360 --> 00:03:01,080\\nAnd what we\\'re seeing today \\nis a series of different kinds of campaigns,\\n\\n36\\n00:03:01,160 --> 00:03:04,240\\nSome of them quite self conscious,\\n\\n37\\n00:03:04,360 --> 00:03:08,480\\nI think for example, \\n[[w:Hollywood|Hollywood\\'s]] campaign to expand\\n\\n38\\n00:03:08,560 --> 00:03:13,640\\ntechnological constraint\\non use of cultural materials\\n\\n39\\n00:03:13,680 --> 00:03:16,400\\n[[w:Digital rights management|digital rights management]], [[w:Trusted_computing|trusted systems]],\\n\\n40\\n00:03:16,440 --> 00:03:18,840\\nis a self conscious campaign.\\n\\n41\\n00:03:18,880 --> 00:03:27,440\\nSome of it much less conscious \\nmuch more based on anxieties,\\n\\n42\\n00:03:27,440 --> 00:03:30,800\\nand speaking out anxieties. \\nSo for example \\n\\n43\\n00:03:30,800 --> 00:03:35,600\\nwhen you hear the persistent concerns \\nover Internet security,\\n\\n44\\n00:03:35,760 --> 00:03:39,560\\nand what will happen if people crack your system\\n\\n45\\n00:03:39,560 --> 00:03:43,120\\nwhen you hear the constant concerns about quality\\n\\n46\\n00:03:43,080 --> 00:03:44,760\\nand where will good quality come from?\\n\\n47\\n00:03:44,760 --> 00:03:51,120\\nand the error rate in [[w:wikipedia|wikipedia]], \\nthese are all much more subconscious expressions\\n\\n48\\n00:03:51,200 --> 00:03:55,320\\nof a fear that ends up being used as justification,\\n\\n49\\n00:03:55,520 --> 00:04:00,520\\nfor embracing the control system \\nthat is being displaced\\n\\n50\\n00:04:00,520 --> 00:04:04,320\\nbecause of the technological and social actions,\\n\\n51\\n00:04:04,520 --> 00:04:11,120\\nbecause of the technological characteristics \\nand the social practices, \\n\\n52\\n00:04:11,400 --> 00:04:17,160\\nthat are being adopted in widespread \\ncooperative networked practices. \\n\\n53\\n00:04:17,680 --> 00:04:25,040\\nSo we\\'re seeing sometimes legal moves to change,\\n\\n54\\n00:04:25,280 --> 00:04:30,640\\nand require legal control where \\npractically it\\'s no longer necessary. \\n\\n55\\n00:04:30,680 --> 00:04:36,640\\nSometimes we see... I wouldn\\'t call them propaganda,\\n\\n56\\n00:04:36,680 --> 00:04:41,600\\nbut I\\'d call them public debate and public enactment \\n\\n57\\n00:04:41,600 --> 00:04:47,400\\nof anxiety, in order to increase the perceived importance,\\n\\n58\\n00:04:47,400 --> 00:04:51,480\\nof the traditional controllers. \\nThe most important place where you see this is,\\n\\n59\\n00:04:51,480 --> 00:04:55,080\\nteachers tell students not to use Wikipedia.\\n\\n60\\n00:04:55,720 --> 00:05:02,040\\nBecause that use shakes up the sense that I\\'m a teacher,\\n\\n61\\n00:05:02,200 --> 00:05:06,120\\nI know exactly what the set of materials are \\nthat I have approved\\n\\n62\\n00:05:06,120 --> 00:05:07,720\\nand are capable of being approved.\\n\\n63\\n00:05:07,800 --> 00:05:13,160\\nI am used to seeing Kids, \\nappealing to authority\\n\\n64\\n00:05:13,200 --> 00:05:16,120\\nrather that cross referencing multiple resources.\\n\\n65\\n00:05:16,360 --> 00:05:20,280\\nI don\\'t want to teach them \\nthat they should see this as a source,\\n\\n66\\n00:05:20,680 --> 00:05:24,400\\nBut not as a source of authority, a source of insight,\\n\\n67\\n00:05:24,400 --> 00:05:28,920\\na potential move in a research that\\'s always sceptical. \\n\\n68\\n00:05:29,000 --> 00:05:34,400\\nOne of the things that has to happen \\nin the context of the radically decentralised system\\n\\n69\\n00:05:34,440 --> 00:05:38,480\\nIs that we all have to become [[w:Sceptical|sceptical]] readers, \\nall the time.\\n\\n70\\n00:05:38,480 --> 00:05:43,200\\nWhich is a fundamental change from \\nthe traditional cultural system \\n\\n71\\n00:05:43,200 --> 00:05:46,840\\nWhere we would talk. \\n\\'How do I know if it\\'s true? Well you\\'ve said it.\\'\\n\\n72\\n00:05:46,840 --> 00:05:50,960\\nWhere did they publish it? \\nAnd looking for indicia of authority\\n\\n73\\n00:05:51,000 --> 00:05:53,520\\nthat will tell me this is authority.\\n\\n74\\n00:05:53,880 --> 00:05:58,920\\nInstead I have to begin to develop new capabilities \\n\\n75\\n00:05:59,200 --> 00:06:04,720\\nof looking at five sources, \\nassigning them different levels of weight\\n\\n76\\n00:06:04,720 --> 00:06:08,920\\nand saying I have reasonable confidence \\nthat the correct answer is\\n\\n77\\n00:06:08,920 --> 00:06:15,400\\nx rather than y without really assigning \\nfull authority to any single site.\\n\\n78\\n00:06:15,400 --> 00:06:19,800\\nSo that\\'s another locus of control trying to,\\n\\n79\\n00:06:19,800 --> 00:06:24,720\\nget people to continue to hang on \\nto to this sense that you need\\n\\n80\\n00:06:24,720 --> 00:06:29,080\\nthe expert authority, \\nyou need the person whose is in charge,\\n\\n81\\n00:06:29,080 --> 00:06:33,600\\nto tell you what is good and what is not good. \\nwhat is high quality, what is low quality.\\n\\n82\\n00:06:33,600 --> 00:06:38,280\\nWhat is reliable information, \\nwhat is not reliable information.\\n\\n83\\n00:06:38,280 --> 00:06:42,240\\nAnd that\\'s another domain \\nwhere we see the controllers,\\n\\n84\\n00:06:42,280 --> 00:06:49,200\\nin this case I think less strategically,\\n\\n85\\n00:06:49,200 --> 00:06:53,400\\nthan in the context of the way that for example, \\nHollywood backs digital rights management. \\n\\n86\\n00:06:53,560 --> 00:07:02,760\\nI think it\\'s a cousin in terms of self preservation.\\n\\n87\\n00:07:03,200 --> 00:07:08,080\\nBut I think it\\'s also a public enactment \\nof deeply held beliefs\\n\\n88\\n00:07:08,080 --> 00:07:12,520\\nabout why it is, that the particular people, \\nthat play a particular role\\n\\n89\\n00:07:12,520 --> 00:07:16,280\\nof authoritative speakers, \\nin the older system\\n\\n90\\n00:07:16,280 --> 00:07:20,840\\ncontinue to believe in the values \\nthat made them authoritative, \\n\\n91\\n00:07:20,840 --> 00:07:25,120\\nand made their authority important. \\nAnd so that\\'s much more cultural resistance,\\n\\n92\\n00:07:25,120 --> 00:07:31,600\\nthan it is practical, \\nlegal or technical design resistance.\\n\\n93\\n00:07:31,680 --> 00:07:37,080\\nBut were seeing resistance from \\ndifferent kind of actors who played the role, \\n\\n94\\n00:07:37,080 --> 00:07:42,800\\nof controllers in the older models, \\ntrying to preserve \\n\\n95\\n00:07:42,800 --> 00:07:45,880\\ntheir relatively privileged position as controllers,\\n\\n96\\n00:07:45,920 --> 00:07:48,120\\nthrough different systems of constraint\\n(请到[[w:commons:TimedText:Yochai_Benkler_-_On_Autonomy,_Control_and_Cultural_Experience.ogg.zh.srt|这里]]参与翻译)',\n", + " 'bytes': 9015,\n", + " 'sha1': 'd9r7ba4tqdnzwjv0w5n8uvtutobumt0',\n", + " 'parent_id': 84425913,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 607509019,\n", + " 'timestamp': '2021-11-16T09:33:08Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 22582759,\n", + " 'title': 'Ich bin ein Berliner Speech (June 26, 1963) John Fitzgerald Kennedy trimmed.theora.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall subtitles update',\n", + " 'text': '1\\n00:00:00,525 --> 00:00:02,347\\nI am proud\\n\\n2\\n00:00:04,272 --> 00:00:06,563\\nto come to this city\\n\\n3\\n00:00:07,523 --> 00:00:10,555\\nas the guest of your distinguished Mayor,\\n\\n4\\n00:00:11,554 --> 00:00:15,293\\nwho has symbolized throughout the world\\n\\n5\\n00:00:15,820 --> 00:00:18,569\\nthe fighting spirit of West Berlin.\\n\\n6\\n00:00:19,575 --> 00:00:21,779\\nAnd I am proud…\\n\\n7\\n00:00:21,830 --> 00:00:27,726\\n(Loud greetings)\\n\\n8\\n00:00:29,113 --> 00:00:32,108\\nAnd I\\'m proud to visit\\nthe Federal Republic\\n\\n9\\n00:00:33,239 --> 00:00:35,314\\nwith your distinguished Chancellor,\\n\\n10\\n00:00:36,262 --> 00:00:41,220\\nwho for so many years\\nhas committed Germany\\n\\n11\\n00:00:41,264 --> 00:00:46,319\\nto democracy and freedom and progress,\\n\\n12\\n00:00:46,786 --> 00:00:49,218\\nand to come here\\n\\n13\\n00:00:49,235 --> 00:00:54,829\\nin the company of my fellow\\nAmerican, General Clay,\\n\\n14\\n00:00:55,202 --> 00:01:01,585\\n(Loud greetings) (Applause)\\n\\n15\\n00:01:02,452 --> 00:01:05,226\\nwho has been in this city\\n\\n16\\n00:01:05,259 --> 00:01:11,253\\nduring its great moments of crisis\\nand will come again if ever needed.\\n\\n17\\n00:01:11,295 --> 00:01:16,806\\n(Loud greetings)\\n\\n18\\n00:01:18,289 --> 00:01:21,972\\n(Applause)\\n\\n19\\n00:01:24,508 --> 00:01:30,237\\nTwo thousand years ago\\n\\n20\\n00:01:30,271 --> 00:01:36,818\\nthe proudest boast was\\n\"civis Romanus sum.\"\\n\\n21\\n00:01:37,389 --> 00:01:41,299\\nToday, in the world of freedom,\\n\\n22\\n00:01:42,137 --> 00:01:47,253\\nthe proudest boast\\nis \"Ich bin ein Berliner.\"\\n\\n23\\n00:01:47,287 --> 00:01:52,790\\n(Loud greetings) (Applause)\\n\\n24\\n00:01:53,161 --> 00:01:54,346\\nI…\\n\\n25\\n00:01:56,311 --> 00:01:57,490\\nI…\\n\\n26\\n00:01:58,186 --> 00:01:59,535\\nI appreciate...\\n\\n27\\n00:01:59,990 --> 00:02:01,757\\nI appreciate\\n\\n28\\n00:02:01,781 --> 00:02:04,255\\nmy interpreter translating my German!\\n\\n29\\n00:02:04,565 --> 00:02:09,269\\n(Loud greetings)\\n\\n30\\n00:02:09,289 --> 00:02:14,485\\n(Applause)\\n\\n31\\n00:02:18,273 --> 00:02:22,532\\nThere are many people in the world\\n\\n32\\n00:02:22,536 --> 00:02:27,329\\nwho really don\\'t understand,\\nor say they don\\'t,\\n\\n33\\n00:02:27,340 --> 00:02:33,810\\nwhat is the great issue between\\nthe free world and the Communist world.\\n\\n34\\n00:02:35,252 --> 00:02:37,812\\nLet them come to Berlin!\\n\\n35\\n00:02:38,315 --> 00:02:42,456\\n(Loud greetings)\\n\\n36\\n00:02:42,489 --> 00:02:45,815\\n(Applause)\\n\\n37\\n00:02:45,865 --> 00:02:50,262\\nThere are some who say\\n\\n38\\n00:02:51,031 --> 00:02:54,854\\nthat communism is the wave of the future.\\n\\n39\\n00:02:54,876 --> 00:02:56,961\\nLet them come to Berlin!\\n\\n40\\n00:02:57,010 --> 00:03:00,451\\n(Loud greetings) (Applause)\\n\\n41\\n00:03:00,498 --> 00:03:06,752\\nAnd there are some who say\\nin Europe and elsewhere\\n\\n42\\n00:03:06,810 --> 00:03:09,038\\nwe can work with the Communists.\\n\\n43\\n00:03:09,075 --> 00:03:11,331\\nLet them come to Berlin!\\n\\n44\\n00:03:11,365 --> 00:03:16,598\\n(Loud greetings) (Applause)\\n\\n45\\n00:03:16,809 --> 00:03:21,847\\nAnd there are even a few who say\\n\\n46\\n00:03:22,524 --> 00:03:29,166\\nthat it\\'s true that communism\\nis an evil system,\\n\\n47\\n00:03:29,232 --> 00:03:33,522\\nbut it permits us to make\\neconomic progress.\\n\\n48\\n00:03:34,151 --> 00:03:38,503\\nLass\\' sie nach Berlin kommen! \\nLet them come to Berlin!\\n\\n49\\n00:03:38,553 --> 00:03:42,498\\n(Very loud greetings)\\n\\n50\\n00:03:44,553 --> 00:03:48,803\\nFreedom has many difficulties\\n\\n51\\n00:03:49,503 --> 00:03:52,977\\nand democracy is not perfect,\\n\\n52\\n00:03:53,647 --> 00:03:57,667\\nbut we have never had to put\\na wall up to keep our people in,\\n\\n53\\n00:03:57,718 --> 00:03:59,715\\nto prevent them from leaving us.\\n\\n54\\n00:03:59,748 --> 00:04:03,808\\n(Loud cheering)\\n\\n55\\n00:04:03,828 --> 00:04:06,592\\n(Applause)\\n\\n56\\n00:04:09,506 --> 00:04:13,244\\nI want to say,\\n\\n57\\n00:04:13,278 --> 00:04:16,324\\non behalf of my countrymen,\\n\\n58\\n00:04:17,123 --> 00:04:22,520\\nwho live many miles away\\non the other side of the Atlantic,\\n\\n59\\n00:04:23,290 --> 00:04:29,241\\nwho are far distant from you,\\nthat they take the greatest pride\\n\\n60\\n00:04:29,998 --> 00:04:35,396\\nthat they have been able\\nto share with you, even from a distance,\\n\\n61\\n00:04:35,701 --> 00:04:38,797\\nthe story of the last 18 years.\\n\\n62\\n00:04:39,409 --> 00:04:44,199\\nI know of no town, no city,\\n\\n63\\n00:04:44,217 --> 00:04:49,447\\nthat has been besieged for 18 years\\n\\n64\\n00:04:49,487 --> 00:04:54,875\\nthat still lives with the vitality\\nand the force,\\n\\n65\\n00:04:54,910 --> 00:04:59,679\\nand the hope and the determination\\nof the city of West Berlin.\\n\\n66\\n00:04:59,711 --> 00:05:04,513\\n(Very loud cheerings)\\n\\n67\\n00:05:04,561 --> 00:05:10,199\\n(Applause)\\n\\n68\\n00:05:13,526 --> 00:05:16,015\\nWhile the wall\\n\\n69\\n00:05:16,073 --> 00:05:21,297\\nis the most obvious\\nand vivid demonstration\\n\\n70\\n00:05:21,333 --> 00:05:24,963\\nof the failures of the Communist system,\\n\\n71\\n00:05:24,979 --> 00:05:30,448\\nfor all the world to see,\\nwe take no satisfaction in it,\\n\\n72\\n00:05:30,483 --> 00:05:34,647\\nfor it is, as your Mayor has said,\\n\\n73\\n00:05:34,661 --> 00:05:40,248\\nan offense not only against history\\nbut an offense against humanity,\\n\\n74\\n00:05:40,782 --> 00:05:42,947\\nseparating families,\\n\\n75\\n00:05:42,982 --> 00:05:47,490\\ndividing husbands and wives\\nand brothers and sisters,\\n\\n76\\n00:05:47,773 --> 00:05:51,520\\nand dividing a people\\nwho wish to be joined together.\\n\\n77\\n00:05:51,697 --> 00:05:54,777\\n(Loud cheerings)\\n\\n78\\n00:05:54,795 --> 00:05:57,953\\n(Applause)\\n\\n79\\n00:05:58,007 --> 00:06:03,275\\nWhat is true of this city\\nis true of Germany—\\n\\n80\\n00:06:03,779 --> 00:06:10,140\\nreal, lasting peace in Europe\\ncan never be assured\\n\\n81\\n00:06:10,170 --> 00:06:14,160\\nas long as one German out of four\\n\\n82\\n00:06:14,209 --> 00:06:18,108\\nis denied the elementary\\nright of free men,\\n\\n83\\n00:06:18,174 --> 00:06:21,108\\nand that is to make a free choice.\\n\\n84\\n00:06:21,290 --> 00:06:27,039\\nIn 18 years of peace and good faith,\\n\\n85\\n00:06:27,475 --> 00:06:33,241\\nthis generation of Germans\\nhas earned the right to be free,\\n\\n86\\n00:06:33,837 --> 00:06:38,038\\nincluding the right\\nto unite their families\\n\\n87\\n00:06:38,046 --> 00:06:41,759\\nand their nation in lasting peace,\\n\\n88\\n00:06:41,763 --> 00:06:44,205\\nwith good will to all people.\\n\\n89\\n00:06:44,235 --> 00:06:50,350\\n(Applause) (Cheerings)\\n\\n90\\n00:06:55,000 --> 00:06:58,704\\nYou live in a defended island of freedom,\\n\\n91\\n00:06:58,770 --> 00:07:02,147\\nbut your life is part of the main.\\n\\n92\\n00:07:02,809 --> 00:07:05,542\\nSo let me ask you, as I close,\\n\\n93\\n00:07:05,959 --> 00:07:09,525\\nto lift your eyes beyond\\nthe dangers of today,\\n\\n94\\n00:07:10,072 --> 00:07:12,706\\nto the hopes of tomorrow,\\n\\n95\\n00:07:12,779 --> 00:07:16,474\\nbeyond the freedom\\nmerely of this city of Berlin,\\n\\n96\\n00:07:16,493 --> 00:07:22,108\\nor your country of Germany,\\nto the advance of freedom everywhere,\\n\\n97\\n00:07:22,792 --> 00:07:27,802\\nbeyond the wall\\nto the day of peace with justice,\\n\\n98\\n00:07:28,224 --> 00:07:33,571\\nbeyond yourselves\\nand ourselves to all mankind.\\n\\n99\\n00:07:34,497 --> 00:07:36,749\\nFreedom is indivisible,\\n\\n100\\n00:07:36,815 --> 00:07:40,333\\nand when one man is enslaved,\\n\\n101\\n00:07:40,351 --> 00:07:42,282\\nall are not free.\\n\\n102\\n00:07:42,438 --> 00:07:44,728\\nWhen all are free,\\n\\n103\\n00:07:44,765 --> 00:07:48,529\\nthen we can look forward to that day\\n\\n104\\n00:07:48,570 --> 00:07:51,047\\nwhen this city will be joined as one\\n\\n105\\n00:07:51,074 --> 00:07:57,569\\nand this country, and this great Continent\\nof Europe in a peaceful and hopeful globe.\\n\\n106\\n00:07:58,503 --> 00:08:02,766\\nWhen that day finally comes, as it will,\\n\\n107\\n00:08:02,788 --> 00:08:08,230\\nthe people of West Berlin\\ncan take sober satisfaction\\n\\n108\\n00:08:08,280 --> 00:08:14,544\\nin the fact that they were\\nin the front lines for almost two decades.\\n\\n109\\n00:08:14,579 --> 00:08:16,600\\n(Applause)\\n\\n110\\n00:08:16,634 --> 00:08:23,246\\nPeople: Bravo! (Cheers) (Applause)\\n\\n111\\n00:08:30,141 --> 00:08:34,525\\nAll free men,\\n\\n112\\n00:08:34,575 --> 00:08:39,748\\nwherever they may live,\\nare citizens of Berlin,\\n\\n113\\n00:08:39,777 --> 00:08:41,766\\nand, therefore,\\n\\n114\\n00:08:41,809 --> 00:08:43,743\\nas a free man,\\n\\n115\\n00:08:43,763 --> 00:08:46,432\\nI take pride in the words\\n\\n116\\n00:08:46,499 --> 00:08:48,848\\n\"Ich bin ein Berliner!\"\\n\\n117\\n00:08:48,942 --> 00:08:54,523\\n(Greatest greetings) (Applause)\\n\\n118\\n00:08:58,281 --> 00:09:01,700\\nPeople: Ken-ne-dy! Ken-ne-dy!',\n", + " 'bytes': 8114,\n", + " 'sha1': 'eq88racpcpqg0oqnnpr5e1075j8jawx',\n", + " 'parent_id': 82554987,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 299933523,\n", + " 'timestamp': '2018-05-06T14:08:40Z',\n", + " 'user': {'text': '27.64.122.188'},\n", + " 'page': {'id': 22583115,\n", + " 'title': 'United States Navy Band - National Anthem of Chile.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00.02,000 --> 00:00:17,600\\nHimno Nacional de Chile\\n\\n2 \\n00:00:19,680 --> 00:00:23,500\\nPuro, Chile, es tu cielo azulado,\\n\\n3\\n00:00:23,520 --> 00:00:28,650\\npuras brisas te cruzan también,\\n\\n4\\n00:00:28,670 --> 00:00:33,140\\ny tu campo de flores bordado\\n\\n5\\n00:00:33,160 --> 00:00:37,380\\nes la copia feliz del Edén.\\n\\n6\\n00:00:37,400 --> 00:00:40,000\\nMajestuosa es la blanca montaña\\n\\n7\\n00:00:40,020 --> 00:00:43,500\\nque te dio por baluarte el Señor,\\n\\n8\\n00:00:43,550 --> 00:00:48,650\\nque te dio por baluarte el Señor,\\n\\n9\\n00:00:51,020 --> 00:00:55,430\\nY ese mar que tranquilo te baña\\n\\n10\\n00:00:55,450 --> 00:00:59,190\\nte promete un futuro esplendor.\\n\\n11\\n00:00:59,210 --> 00:01:03,560\\nY ese mar que tranquilo te baña\\n\\n12\\n00:01:03,580 --> 00:01:07,320\\nte promete un futuro esplendor.\\n\\n13\\n00:01:09,290 --> 00:01:18,170\\nDulce Patria, recibe los votos\\n\\n14\\n00:01:18,190 --> 00:01:26,590\\nCon que Chile en tus aras juró\\n\\n15\\n00:01:26,610 --> 00:01:31,150\\nQue o la tumba serás de los libres\\n\\n16\\n00:01:31,170 --> 00:01:35,3330\\nO el asilo contra la opresión\\n\\n17\\n00:01:35,350 --> 00:01:40,070\\nQue o la tumba serás de los libres\\n\\n18\\n00:01:40,090 --> 00:01:43,390\\nO el asilo contra la opresión\\n\\n19\\n00:01:43,410 --> 00:01:48,830\\nQue o la tumba serás de los libres\\n\\n20\\n00:01:48,850 --> 00:01:53,620\\nO el asilo contra la opresión\\n\\n21\\n00:01:53,640 --> 00:01:57,870\\nO el asilo contra la opresión\\n\\n22\\n00:01:57,890 --> 00:02:01,010\\nO el asilo contra la opresión.',\n", + " 'bytes': 1448,\n", + " 'sha1': '8pql601nxxtdhtenkpyyygg8g2uc7es',\n", + " 'parent_id': 299933178,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 193058183,\n", + " 'timestamp': '2016-04-13T10:14:55Z',\n", + " 'user': {'id': 849234, 'text': 'Morn'},\n", + " 'page': {'id': 22586578,\n", + " 'title': 'Tear down this wall.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:23,634 --> 00:00:24,088\\nThank you!\\n\\n2\\n00:00:32,766 --> 00:00:39,640\\nThank you very much. Chancellor Kohl, Governing Mayor Diepgen, ladies and gentlemen:\\n\\n3\\n00:00:39,640 --> 00:00:47,004\\nTwenty-four years ago, President John F. Kennedy visited Berlin, speaking to the\\n\\n4\\n00:00:47,004 --> 00:00:53,358\\npeople of this city and the world at the city hall. Well, since then two other presidents\\n\\n5\\n00:00:53,358 --> 00:01:00,029\\nhave come, each in his turn, to Berlin. And today I, myself, make my second visit to your city.\\n\\n6\\n00:01:05,599 --> 00:01:11,679\\nWe come to Berlin, we American Presidents, because it\\'s our duty to speak, in this place,\\n\\n7\\n00:01:11,679 --> 00:01:19,668\\nof freedom. But I must confess, we\\'re drawn here by other things as well: by the feeling of\\n\\n8\\n00:01:19,668 --> 00:01:27,568\\nhistory in this city, more than 500 years older than our own nation; by the beauty of the Grunewald\\n\\n9\\n00:01:27,568 --> 00:01:39,808\\nand the Tiergarten; most of all, by your courage and determination. Perhaps the composer,\\n\\n10\\n00:01:39,808 --> 00:01:46,816\\nPaul Lincke, understood something about American Presidents. You see, like so many Presidents before me,\\n\\n11\\n00:01:46,816 --> 00:01:57,207\\nI come here today because wherever I go, whatever I do: \"Ich hab\\' noch einen Koffer in Berlin.\"\\n\\n12\\n00:02:07,001 --> 00:02:13,357\\nOur gathering today is being broadcast throughout Western Europe and North America. I understand\\n\\n13\\n00:02:13,357 --> 00:02:21,187\\nthat it is being seen and heard as well in the East. To those listening throughout Eastern Europe,\\n\\n14\\n00:02:21,187 --> 00:02:28,317\\nI extend my warmest greetings and the good will of the American people. To those listening in\\n\\n15\\n00:02:28,317 --> 00:02:36,541\\nEast Berlin, a special word: Although I cannot be with you, I address my remarks to you\\n\\n16\\n00:02:36,541 --> 00:02:44,440\\njust as surely as to those standing here before me. For I join you, as I join your fellow countrymen\\n\\n17\\n00:02:44,440 --> 00:02:51,393\\nin the West, in this firm, this unalterable belief: Es gibt nur ein Berlin!\\n\\n18\\n00:03:01,439 --> 00:03:08,785\\nBehind me stands a wall that encircles the free sectors of this city, part of a vast system\\n\\n19\\n00:03:08,785 --> 00:03:16,759\\nof barriers that divides the entire continent of Europe. From the Baltic, south, those barriers\\n\\n20\\n00:03:16,759 --> 00:03:25,236\\ncut across Germany in a gash of barbed wire, concrete, dog runs, and guardtowers. Farther south,\\n\\n21\\n00:03:25,236 --> 00:03:31,919\\nthere may be no visible, no obvious wall. But there remain armed guards and checkpoints all\\n\\n22\\n00:03:31,919 --> 00:03:40,730\\nthe same—still a restriction on the right to travel, still an instrument to impose upon ordinary men\\n\\n23\\n00:03:40,730 --> 00:03:50,134\\nand women the will of a totalitarian state. Yet it is here in Berlin where the wall emerges most clearly;\\n\\n24\\n00:03:50,134 --> 00:03:57,288\\nhere, cutting across your city, where the news photo and the television screen have imprinted\\n\\n25\\n00:03:57,288 --> 00:04:05,019\\nthis brutal division of a continent upon the mind of the world. Standing before the Brandenburg Gate,\\n\\n26\\n00:04:05,019 --> 00:04:11,357\\nevery man is a German, separated from his fellow men.\\n\\n27\\n00:04:20,195 --> 00:04:24,054\\nEvery man is a Berliner, forced to look upon a scar.\\n\\n28\\n00:04:24,054 --> 00:04:33,812\\nPresident von Weizsäcker has said: \"The German question is open as long as the Brandenburg Gate is closed.\"\\n\\n29\\n00:04:42,136 --> 00:04:51,039\\nToday I say: As long as this gate is closed, as long as this scar of a wall is permitted to stand,\\n\\n30\\n00:04:51,039 --> 00:05:00,303\\nit is not the German question alone that remains open, but the question of freedom for all mankind.\\n\\n31\\n00:05:10,980 --> 00:05:17,519\\nYet I do not come here to lament. For I find in Berlin a message of hope,\\n\\n32\\n00:05:17,519 --> 00:05:21,877\\neven in the shadow of this wall, a message of triumph.\\n\\n33\\n00:05:21,877 --> 00:05:31,073\\nIn this season of spring in 1945, the people of Berlin emerged from their air raid shelters to find devastation.\\n\\n34\\n00:05:31,073 --> 00:05:36,368\\nThousands of miles away, the people of the United States reached out to help.\\n\\n35\\n00:05:36,368 --> 00:05:43,200\\nAnd in 1947 Secretary of State—as you\\'ve been told—George Marshall announced\\n\\n36\\n00:05:43,200 --> 00:05:47,303\\nthe creation of what would become known as the Marshall Plan.\\n\\n37\\n00:05:47,303 --> 00:05:52,461\\nSpeaking precisely 40 years ago this month, he said:\\n\\n38\\n00:05:52,461 --> 00:05:59,386\\n\"Our policy is directed not against any country or doctrine, but against hunger,\\n\\n39\\n00:05:59,386 --> 00:06:03,508\\npoverty, desperation, and chaos.\"\\n\\n40\\n00:06:10,786 --> 00:06:18,837\\nIn the Reichstag a few moments ago, I saw a display commemorating this 40th anniversary of the Marshall Plan.\\n\\n41\\n00:06:18,837 --> 00:06:24,980\\nI was struck by the sign on a burnt-out, gutted structure that was being rebuilt.\\n\\n42\\n00:06:24,980 --> 00:06:33,015\\nI understand that Berliners of my own generation can remember seeing signs like it dotted\\n\\n43\\n00:06:33,015 --> 00:06:40,128\\nthroughout the Western sectors of the city. The sign read simply: \"The Marshall Plan is\\n\\n44\\n00:06:40,128 --> 00:06:50,604\\nhelping here to strengthen the free world.\" A strong, free world in the West, that dream became real.\\n\\n45\\n00:06:50,604 --> 00:06:59,111\\nJapan rose from ruin to become an economic giant. Italy, France, Belgium—virtually every nation\\n\\n46\\n00:06:59,111 --> 00:07:07,109\\nin Western Europe saw political and economic rebirth; the European Community was founded.\\n\\n47\\n00:07:07,109 --> 00:07:14,943\\nIn West Germany and here in Berlin, there took place an economic miracle, the Wirtschaftswunder.\\n\\n48\\n00:07:14,943 --> 00:07:24,994\\nAdenauer, Erhard, Reuter, and other leaders understood the practical importance of liberty—that just as\\n\\n49\\n00:07:24,994 --> 00:07:33,080\\ntruth can flourish only when the journalist is given freedom of speech, so prosperity can come about\\n\\n50\\n00:07:33,080 --> 00:07:45,158\\nonly when the farmer and businessman enjoy economic freedom. The German leaders reduced tariffs,\\n\\n51\\n00:07:45,158 --> 00:07:55,708\\nexpanded free trade, lowered taxes. From 1950 to 1960 alone, the standard of living in West Germany and Berlin doubled.\\n\\n52\\n00:07:55,708 --> 00:08:02,908\\nWhere four decades ago there was rubble, today in West Berlin there is the greatest industrial output\\n\\n53\\n00:08:02,908 --> 00:08:12,286\\nof any city in Germany—busy office blocks, fine homes and apartments, proud avenues, and the spreading lawns of park land.\\n\\n54\\n00:08:12,286 --> 00:08:21,028\\nWhere a city\\'s culture seemed to have been destroyed, today there are two great universities, orchestras and an opera,\\n\\n55\\n00:08:21,028 --> 00:08:31,196\\ncountless theaters, and museums. Where there was want, today there\\'s abundance—food, clothing, automobiles—\\n\\n56\\n00:08:31,196 --> 00:08:34,054\\nthe wonderful goods of the Ku\\'damm.\\n\\n57\\n00:08:42,570 --> 00:08:48,560\\nFrom devastation, from utter ruin, you Berliners have, in freedom,\\n\\n58\\n00:08:48,560 --> 00:08:57,254\\nrebuilt a city that once again ranks as one of the greatest on Earth. The Soviets may have had other plans.\\n\\n59\\n00:08:57,254 --> 00:09:02,455\\nBut, my friends, there were a few things the Soviets didn\\'t count on:\\n\\n60\\n00:09:06,080 --> 00:09:13,466\\nBerliner Herz, Berliner Humor, ja, und Berliner Schnauze.\\n\\n61\\n00:09:22,279 --> 00:09:34,619\\nIn the 1950s, Khrushchev predicted: \"We will bury you.\" But in the West today, we see a free world that has achieved\\n\\n62\\n00:09:34,619 --> 00:09:44,636\\na level of prosperity and well-being unprecedented in all human history. In the Communist world, we see failure,\\n\\n63\\n00:09:44,636 --> 00:09:54,861\\ntechnological backwardness, declining standards of health, even want of the most basic kind—too little food.\\n\\n64\\n00:10:00,312 --> 00:10:07,897\\nAnd now the Soviets themselves may, in a limited way, be coming to understand the importance of freedom.\\n\\n65\\n00:10:07,897 --> 00:10:15,492\\nWe hear much from Moscow about a new policy of reform and openness. Some political prisoners have been released.\\n\\n66\\n00:10:15,492 --> 00:10:23,219\\nCertain foreign news broadcasts are no longer being jammed. Some economic enterprises have been permitted to operate\\n\\n67\\n00:10:23,219 --> 00:10:31,367\\nwith greater freedom from state control. Are these the beginnings of profound changes in the Soviet state?\\n\\n68\\n00:10:31,367 --> 00:10:41,591\\nOr are they token gestures, intended to raise false hopes in the West, or to strengthen the Soviet system without changing it?\\n\\n69\\n00:10:41,591 --> 00:10:49,351\\nWe welcome change and openness; for we believe that freedom and security go together,\\n\\n70\\n00:10:49,351 --> 00:10:59,116\\nthat the advance of human liberty can only strengthen the cause of world peace.\\n\\n71\\n00:10:59,116 --> 00:11:10,285\\nThere is one sign the Soviets can make that would be unmistakable, that would advance dramatically the cause of freedom and peace.\\n\\n72\\n00:11:10,285 --> 00:11:20,846\\nGeneral Secretary Gorbachev, if you seek peace, if you seek prosperity for the Soviet Union and Eastern Europe,\\n\\n73\\n00:11:20,846 --> 00:11:30,345\\nif you seek liberalization: Come here to this gate! Mr. Gorbachev, open this gate!\\n\\n74\\n00:11:50,498 --> 00:11:59,595\\nMr. Gorbachev, tear down this wall!\\n\\n75\\n00:12:13,981 --> 00:12:21,009\\nI understand the fear of war and the pain of division that afflict this continent—and I pledge to you my country\\'s efforts\\n\\n76\\n00:12:21,009 --> 00:12:32,261\\nto help overcome these burdens. To be sure, we in the West must resist Soviet expansion. So we must maintain defenses\\n\\n77\\n00:12:32,261 --> 00:12:42,989\\nof unassailable strength. Yet we seek peace; so we must strive to reduce arms on both sides. Beginning 10 years ago,\\n\\n78\\n00:12:42,989 --> 00:12:51,385\\nthe Soviets challenged the Western alliance with a grave new threat, hundreds of new and more deadly SS-20 nuclear missiles,\\n\\n79\\n00:12:51,385 --> 00:12:59,867\\ncapable of striking every capital in Europe. The Western alliance responded by committing itself to a counterdeployment,\\n\\n80\\n00:12:59,867 --> 00:13:08,865\\nunless the Soviets agreed to negotiate a better solution; namely, the elimination of such weapons on both sides.\\n\\n81\\n00:13:08,865 --> 00:13:19,009\\nFor many months, the Soviets refused to bargain in earnestness. As the alliance, in turn, prepared to go forward\\n\\n82\\n00:13:19,009 --> 00:13:28,413\\nwith its counterdeployment, there were difficult days—days of protests like those during my 1982 visit to this city—\\n\\n83\\n00:13:28,413 --> 00:13:32,493\\nand the Soviets later walked away from the table.\\n\\n84\\n00:13:32,493 --> 00:13:43,858\\nBut through it all, the alliance held firm. And I invite those who protested then—I invite those who protest today—\\n\\n85\\n00:13:43,858 --> 00:13:51,883\\nto mark this fact: Because we remained strong, the Soviets came back to the table.\\n\\n86\\n00:14:04,500 --> 00:14:06,843\\nAnd because we remained strong,\\n\\n87\\n00:14:06,843 --> 00:14:16,699\\ntoday we have within reach the possibility, not merely of limiting the growth of arms, but of eliminating, for the first time,\\n\\n88\\n00:14:16,699 --> 00:14:25,799\\nan entire class of nuclear weapons from the face of the Earth. As I speak, NATO ministers are meeting in Iceland\\n\\n89\\n00:14:25,799 --> 00:14:32,377\\nto review the progress of our proposals for eliminating these weapons. At the talks in Geneva,\\n\\n90\\n00:14:32,377 --> 00:14:41,081\\nwe have also proposed deep cuts in strategic offensive weapons. And the Western allies have likewise made\\n\\n91\\n00:14:41,081 --> 00:14:50,235\\nfar-reaching proposals to reduce the danger of conventional war and to place a total ban on chemical weapons.\\n\\n92\\n00:14:50,235 --> 00:15:00,327\\nWhile we pursue these arms reductions, I pledge to you that we will maintain the capacity to deter Soviet aggression\\n\\n93\\n00:15:00,327 --> 00:15:03,502\\nat any level at which it might occur.\\n\\n94\\n00:15:11,889 --> 00:15:16,598\\nAnd in cooperation with many of our allies, the United States is pursuing\\n\\n95\\n00:15:16,598 --> 00:15:23,982\\nthe Strategic Defense Initiative—research to base deterrence not on the threat of offensive retaliation,\\n\\n96\\n00:15:23,982 --> 00:15:33,636\\nbut on defenses that truly defend; on systems, in short, that will not target populations, but shield them.\\n\\n97\\n00:15:33,636 --> 00:15:43,433\\nBy these means we seek to increase the safety of Europe and all the world. But we must remember a crucial fact:\\n\\n98\\n00:15:43,433 --> 00:15:54,399\\nEast and West do not mistrust each other because we are armed; we are armed because we mistrust each other.\\n\\n99\\n00:16:02,215 --> 00:16:09,382\\nAnd our differences are not about weapons but about liberty. When President Kennedy spoke at the City Hall\\n\\n100\\n00:16:09,382 --> 00:16:18,636\\nthose 24 years ago, freedom was encircled, Berlin was under siege. And today, despite all the pressures upon this city,\\n\\n101\\n00:16:18,636 --> 00:16:25,278\\nBerlin stands secure in its liberty. And freedom itself is transforming the globe.\\n\\n102\\n00:16:25,278 --> 00:16:34,705\\nIn the Philippines, in South and Central America, democracy has been given a rebirth. Throughout the Pacific,\\n\\n103\\n00:16:34,705 --> 00:16:43,913\\nfree markets are working miracle after miracle of economic growth. In the industrialized nations, a technological revolution\\n\\n104\\n00:16:43,913 --> 00:16:50,824\\nis taking place—a revolution marked by rapid, dramatic advances in computers and telecommunications.\\n\\n105\\n00:16:50,824 --> 00:17:01,732\\nIn Europe, only one nation and those it controls refuse to join the community of freedom. Yet in this age\\n\\n106\\n00:17:01,732 --> 00:17:08,875\\nof redoubled economic growth, of information and innovation, the Soviet Union faces a choice:\\n\\n107\\n00:17:08,875 --> 00:17:15,286\\nIt must make fundamental changes or it will become obsolete.\\n\\n108\\n00:17:22,520 --> 00:17:28,656\\nToday thus represents a moment of hope. We in the West stand ready to cooperate\\n\\n109\\n00:17:28,656 --> 00:17:37,962\\nwith the East to promote true openness, to break down barriers that separate people, to create a safer, freer world.\\n\\n110\\n00:17:37,962 --> 00:17:46,204\\nAnd surely there is no better place than Berlin, the meeting place of East and West, to make a start.\\n\\n111\\n00:17:55,708 --> 00:18:02,161\\nFree people of Berlin: Today, as in the past, the United States stands for the strict observance\\n\\n112\\n00:18:02,161 --> 00:18:09,676\\nand full implementation of all parts of the Four Power Agreement of 1971. Let us use this occasion,\\n\\n113\\n00:18:09,676 --> 00:18:19,559\\nthe 750th anniversary of this city, to usher in a new era, to seek a still fuller, richer life for the Berlin\\n\\n114\\n00:18:19,559 --> 00:18:26,299\\nof the future. Together, let us maintain and develop the ties between the Federal Republic\\n\\n115\\n00:18:26,299 --> 00:18:32,398\\nand the Western sectors of Berlin, which is permitted by the 1971 agreement.\\n\\n116\\n00:18:32,398 --> 00:18:40,872\\nAnd I invite Mr. Gorbachev: Let us work to bring the Eastern and Western parts of the city closer together,\\n\\n117\\n00:18:40,872 --> 00:18:51,069\\nso that all the inhabitants of all Berlin can enjoy the benefits that come with life in one of the great cities of the world.\\n\\n118\\n00:19:03,496 --> 00:19:09,947\\nTo open Berlin still further to all Europe, East and West, let us expand the vital air access\\n\\n119\\n00:19:09,947 --> 00:19:16,888\\nto this city, finding ways of making commercial air service to Berlin more convenient, more comfortable,\\n\\n120\\n00:19:16,888 --> 00:19:26,220\\nand more economical. We look to the day when West Berlin can become one of the chief aviation hubs in all central Europe.\\n\\n121\\n00:19:26,220 --> 00:19:39,605\\nWith our French and British partners, the United States is prepared to help bring international meetings to Berlin.\\n\\n122\\n00:19:39,605 --> 00:19:48,704\\nIt would be only fitting for Berlin to serve as the site of United Nations meetings, or world conferences on human rights\\n\\n123\\n00:19:48,704 --> 00:19:54,004\\nand arms control or other issues that call for international cooperation.\\n\\n124\\n00:20:01,512 --> 00:20:04,420\\nThere is no better way to establish hope for the future\\n\\n125\\n00:20:04,420 --> 00:20:11,804\\nthan to enlighten young minds, and we would be honored to sponsor summer youth exchanges, cultural events,\\n\\n126\\n00:20:11,804 --> 00:20:19,482\\nand other programs for young Berliners from the East. Our French and British friends, I\\'m certain, will do the same.\\n\\n127\\n00:20:19,482 --> 00:20:28,944\\nAnd it\\'s my hope that an authority can be found in East Berlin to sponsor visits from young people of the Western sectors.\\n\\n128\\n00:20:36,616 --> 00:20:44,812\\nOne final proposal, one close to my heart: Sport represents a source of enjoyment and ennoblement,\\n\\n129\\n00:20:44,812 --> 00:20:53,980\\nand you many have noted that the Republic of Korea—South Korea—has offered to permit certain events of the 1988 Olympics\\n\\n130\\n00:20:53,980 --> 00:21:02,985\\nto take place in the North. International sports competitions of all kinds could take place in both parts of this city.\\n\\n131\\n00:21:02,985 --> 00:21:10,064\\nAnd what better way to demonstrate to the world the openness of this city than to offer in some future year\\n\\n132\\n00:21:10,064 --> 00:21:15,634\\nto hold the Olympic games here in Berlin, East and West.\\n\\n133\\n00:21:29,077 --> 00:21:37,298\\nIn these four decades, as I have said, you Berliners have built a great city. You\\'ve done so in spite of threats—\\n\\n134\\n00:21:37,298 --> 00:21:45,489\\nthe Soviet attempts to impose the East-mark, the blockade. Today the city thrives in spite of the challenges\\n\\n135\\n00:21:45,489 --> 00:21:54,536\\nimplicit in the very presence of this wall. What keeps you here? Certainly there\\'s a great deal to be said for your fortitude,\\n\\n136\\n00:21:54,536 --> 00:22:03,521\\nfor your defiant courage. But I believe there\\'s something deeper, something that involves Berlin\\'s whole look and feel\\n\\n137\\n00:22:03,521 --> 00:22:12,654\\nand way of life—not mere sentiment. No one could live long in Berlin without being completely disabused of illusions.\\n\\n138\\n00:22:12,654 --> 00:22:20,348\\nSomething instead, that has seen the difficulties of life in Berlin but chose to accept them, that continues to build\\n\\n139\\n00:22:20,348 --> 00:22:30,469\\nthis good and proud city in contrast to a surrounding totalitarian presence that refuses to release human energies or aspirations.\\n\\n140\\n00:22:30,469 --> 00:22:41,738\\nSomething that speaks with a powerful voice of affirmation, that says yes to this city, yes to the future, yes to freedom.\\n\\n141\\n00:22:41,738 --> 00:23:01,349\\nIn a word, I would submit that what keeps you in Berlin is love—love both profound and abiding.\\n\\n142\\n00:23:01,349 --> 00:23:08,451\\nPerhaps this gets to the root of the matter, to the most fundamental distinction of all between East and West.\\n\\n143\\n00:23:08,451 --> 00:23:18,354\\nThe totalitarian world produces backwardness because it does such violence to the spirit, thwarting the human impulse to create,\\n\\n144\\n00:23:18,354 --> 00:23:26,953\\nto enjoy, to worship. The totalitarian world finds even symbols of love and of worship an affront.\\n\\n145\\n00:23:26,953 --> 00:23:34,865\\nYears ago, before the East Germans began rebuilding their churches, they erected a secular structure:\\n\\n146\\n00:23:34,865 --> 00:23:43,497\\nthe television tower at Alexander Platz. Virtually ever since, the authorities have been working to correct\\n\\n147\\n00:23:43,497 --> 00:23:53,358\\nwhat they view as the tower\\'s one major flaw, treating the glass sphere at the top with paints and chemicals of every kind.\\n\\n148\\n00:23:53,358 --> 00:24:05,858\\nYet even today when the Sun strikes that sphere—that sphere that towers over all Berlin—the light makes the sign of the cross.\\n\\n149\\n00:24:17,858 --> 00:24:26,896\\nThere in Berlin, like the city itself, symbols of love, symbols of worship, cannot be suppressed.\\n\\n150\\n00:24:26,896 --> 00:24:36,541\\nAs I looked out a moment ago from the Reichstag, that embodiment of German unity, I noticed words crudely spray-painted upon the wall,\\n\\n151\\n00:24:36,541 --> 00:24:45,867\\nperhaps by a young Berliner, \"This wall will fall. Beliefs become reality.\"\\n\\n152\\n00:24:56,580 --> 00:25:00,463\\nYes, across Europe, this wall will fall.\\n\\n153\\n00:25:00,463 --> 00:25:08,983\\nFor it cannot withstand faith; it cannot withstand truth. The wall cannot withstand freedom.\\n\\n154\\n00:25:08,983 --> 00:25:16,445\\nAnd I would like, before I close, to say one word. I have read, and I have been questioned since I\\'ve been here\\n\\n155\\n00:25:16,445 --> 00:25:26,154\\nabout certain demonstrations against my coming. And I would like to say just one thing, and to those who demonstrate so.\\n\\n156\\n00:25:26,154 --> 00:25:35,969\\nI wonder if they have ever asked themselves that if they should have the kind of government they apparently seek,\\n\\n157\\n00:25:35,969 --> 00:25:40,798\\nno one would ever be able to do what they\\'re doing again.\\n\\n158\\n00:26:01,799 --> 00:26:05,149\\nThank you and God bless you all.',\n", + " 'bytes': 20816,\n", + " 'sha1': 'qg7aspi1l1e1z4sm06u3s9xvpud5ipb',\n", + " 'parent_id': 192969809,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 82602774,\n", + " 'timestamp': '2012-11-08T15:51:18Z',\n", + " 'user': {'id': 849234, 'text': 'Morn'},\n", + " 'page': {'id': 22593411,\n", + " 'title': 'Response to the Lewinsky Allegations (January 26, 1998) Bill Clinton.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,961 --> 00:00:07,318 Thank you very much. First, let me thank all of you who are here. 2 00:00:07,318 --> 00:00:13,142 Many of us have been working ...'\",\n", + " 'text': \"1\\n00:00:00,961 --> 00:00:07,318\\nThank you very much. First, let me thank all of you who are here.\\n\\n2\\n00:00:07,318 --> 00:00:13,142\\nMany of us have been working together now for 20 years on a lot of these issues,\\n\\n3\\n00:00:13,142 --> 00:00:14,806\\nand this is a very happy day for us.\\n\\n4\\n00:00:16,108 --> 00:00:21,825\\nI thank the First Lady for all she has done on this issue, for as long as I've known her.\\n\\n5\\n00:00:21,825 --> 00:00:26,358\\nI thank the Vice President and Mrs. Gore for their family conference and the light\\n\\n6\\n00:00:26,358 --> 00:00:29,852\\nit has shed on the announcement we're here to emphasize today.\\n\\n7\\n00:00:29,852 --> 00:00:37,292\\nThank you, Secretary Riley, for the community learning centers, and I'm very proud of what we've done there.\\n\\n8\\n00:00:37,292 --> 00:00:41,281\\nThank you, Bill White. I'll talk more about your contribution in a moment,\\n\\n9\\n00:00:41,281 --> 00:00:46,441\\nbut it is truly remarkable. And I thank Rand and Debra Bass for giving us a living,\\n\\n10\\n00:00:46,441 --> 00:00:53,710\\nbreathing example of the best of America—parents who are working hard to do their jobs,\\n\\n11\\n00:00:53,710 --> 00:00:59,716\\nbut also determined to do their most important job very well with their children.\\n\\n12\\n00:00:59,716 --> 00:01:04,894\\nI thank Senator Feinstein, Senator Dodd, and Senator Boxer for being here.\\n\\n13\\n00:01:04,894 --> 00:01:13,564\\nTomorrow, in the State of the Union Address, I will spell out what we seek to do\\n\\n14\\n00:01:13,564 --> 00:01:16,817\\non behalf of our children to prepare them for the 21st century.\\n\\n15\\n00:01:18,012 --> 00:01:23,353\\nBut I want to talk a little bit about education today and about this announcement in that context.\\n\\n16\\n00:01:24,633 --> 00:01:30,460\\nEducation must be our Nation's highest priority. Last year, in the State of the Union Address,\\n\\n17\\n00:01:30,460 --> 00:01:35,913\\nI set out a 10-point plan to move us forward and urged the American people to make sure\\n\\n18\\n00:01:35,913 --> 00:01:41,961\\nthat politics stops at the schoolhouse door. Well, we've made a lot of progress on that 10-point plan:\\n\\n19\\n00:01:41,961 --> 00:01:48,681\\na remarkable—a remarkable—array of initiatives to open the doors of college to every American\\n\\n20\\n00:01:48,681 --> 00:01:53,742\\nwho's willing to work for it; strong progress toward high national standards in the basics,\\n\\n21\\n00:01:53,742 --> 00:01:59,046\\nthe America Reads challenge to teach every 8-year-old to read; continued progress in\\n\\n22\\n00:01:59,046 --> 00:02:06,012\\nthe Vice President's program to hook up all of our classrooms and libraries to the Internet by the year 2000.\\n\\n23\\n00:02:06,012 --> 00:02:10,814\\nThis has been the most important year in a generation for education reform.\\n\\n24\\n00:02:10,814 --> 00:02:15,012\\nTomorrow I'll set out the next steps on our continuing road.\\n\\n25\\n00:02:15,012 --> 00:02:21,793\\nFirst, I will propose the first-ever national effort to reduce class size in the early grades.\\n\\n26\\n00:02:22,343 --> 00:02:23,254\\nMy…\\n\\n27\\n00:02:34,372 --> 00:02:43,438\\nHillary and I worked very hard 15 years ago now to have very strict class sizes at home in the early grades,\\n\\n28\\n00:02:43,438 --> 00:02:47,665\\nand it was quite controversial and I think enormously beneficial when we did it.\\n\\n29\\n00:02:47,665 --> 00:02:55,526\\nOur balanced budget will help to hire 100,000 teachers who must pass State competency tests\\n\\n30\\n00:02:55,526 --> 00:03:04,566\\nbut who will be able to reduce class size in the first, second, and third grades to an average of 18 nationwide.\\n\\n31\\n00:03:14,505 --> 00:03:21,270\\nSecond, since there are more students and there will be more teachers, there must be more classrooms.\\n\\n32\\n00:03:21,270 --> 00:03:27,518\\nSo I will propose a school construction tax cut to help communities modernize and build new schools.\\n\\n33\\n00:03:27,518 --> 00:03:36,164\\nThird, I will promote a national effort to help schools that follow the lead of the Chicago system\\n\\n34\\n00:03:36,164 --> 00:03:43,729\\nin ending social promotion but helping students with summer school and other programs to give them\\n\\n35\\n00:03:43,729 --> 00:03:46,532\\nthe tools they need to get ahead.\\n\\n36\\n00:03:46,532 --> 00:03:50,052\\nAll these steps will help our children get the future they deserve.\\n\\n37\\n00:03:50,052 --> 00:03:54,716\\nAnd that's why what we're announcing here is so important as well.\\n\\n38\\n00:03:54,716 --> 00:04:02,500\\nEvery child needs someplace to go after school. With after-school programs, we can not only keep\\n\\n39\\n00:04:02,500 --> 00:04:08,425\\nour kids healthy and happy and safe, we can help to teach them to say no to drugs, alcohol, and crime,\\n\\n40\\n00:04:08,425 --> 00:04:15,846\\nyes to reading, sports, and computers. My balanced budget plan includes a national initiative\\n\\n41\\n00:04:15,846 --> 00:04:20,590\\nto spark private sector and local community efforts to provide after-school care,\\n\\n42\\n00:04:20,590 --> 00:04:25,353\\nas the Secretary of Education said, to half a million more children.\\n\\n43\\n00:04:25,353 --> 00:04:30,900\\nNow, let me say, in addition to all the positive benefits, I think it's important to point out\\n\\n44\\n00:04:30,900 --> 00:04:39,004\\nthat the hours between 3 and 7 at night are the most vulnerable hours for young people to get in trouble,\\n\\n45\\n00:04:39,004 --> 00:04:45,721\\nfor juvenile crime. There is this sort of assumption that everybody that gets in trouble when they're young\\n\\n46\\n00:04:45,721 --> 00:04:50,884\\nhas just already been abandoned. That's not true. Most of the kids that get in trouble get in trouble\\n\\n47\\n00:04:50,884 --> 00:04:57,372\\nafter school closes and before their parents get home from work. So in the adolescent years,\\n\\n48\\n00:04:57,372 --> 00:05:01,854\\nin the later years, it is profoundly important to try to give kids something to say yes to\\n\\n49\\n00:05:01,854 --> 00:05:03,545\\nand something positive to do.\\n\\n50\\n00:05:05,388 --> 00:05:10,641\\nBut we can't do it alone. As I said, our plan involves a public-private partnership.\\n\\n51\\n00:05:10,641 --> 00:05:18,316\\nSo it's been fallen to me to announce that our distinguished guest from the Mott Foundation\\n\\n52\\n00:05:18,316 --> 00:05:25,281\\nof Flint, Michigan, has pledged up to $55 million to help ensure that after-school programs\\n\\n53\\n00:05:25,281 --> 00:05:31,668\\nsupported by Federal funds are of the highest quality. That is an astonishing gift.\\n\\n54\\n00:05:31,668 --> 00:05:33,950\\nThank you, Bill White. Thank you.\\n\\n55\\n00:05:50,929 --> 00:05:57,518\\nWe are determined to help Americans succeed in the workplace, to raise well-educated, healthy kids,\\n\\n56\\n00:05:57,518 --> 00:06:02,025\\nand to help Americans succeed at the toughest job of all, that of being a parent.\\n\\n57\\n00:06:02,025 --> 00:06:06,705\\nAnd the Mott Foundation has gone a long way toward helping us. I thank them.\\n\\n58\\n00:06:07,996 --> 00:06:12,782\\nNow, I have to go back to work on my State of the Union speech. And I worked on it\\n\\n59\\n00:06:12,782 --> 00:06:17,956\\nuntil pretty late last night. But I want to say one thing to the American people.\\n\\n60\\n00:06:17,956 --> 00:06:21,369\\nI want you to listen to me. I'm going to say this again.\\n\\n61\\n00:06:21,369 --> 00:06:28,118\\nI did not have sexual relations with that woman, Miss Lewinsky.\\n\\n62\\n00:06:28,118 --> 00:06:35,937\\nI never told anybody to lie, not a single time—never. These allegations are false.\\n\\n63\\n00:06:35,937 --> 00:06:39,372\\nAnd I need to go back to work for the American people.\\n\\n64\\n00:06:39,372 --> 00:06:40,406\\nThank you.\",\n", + " 'bytes': 7371,\n", + " 'sha1': 'bojfrlpvb0gf4rga7p06numrepj7ew4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 224672089,\n", + " 'timestamp': '2016-11-30T01:46:24Z',\n", + " 'user': {'id': 3013234, 'text': 'LittleT889'},\n", + " 'page': {'id': 22613379,\n", + " 'title': 'Message to Scientology.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,000\\nHello, leaders of Scientology. We are Anonymous.\\n\\n2 \\n00:00:04,000 --> 00:00:06,000 \\nOver the years, we have been watching you.\\n\\n3\\n00:00:07,000 --> 00:00:10,000 \\nYour campaigns of misinformation; your suppression of dissent; \\n\\n4\\n00:00:10,500 --> 00:00:14,000 \\nyour litigious nature, all of these things have caught our eye.\\n\\n5\\n00:00:14,000 --> 00:00:18,000 \\nWith the leakage of your latest propaganda video into mainstream circulation,\\n\\n6\\n00:00:18,000 --> 00:00:23,000\\nthe extent of your malign influence over those who have come to trust you as leaders,\\n\\n7\\n00:00:23,000 --> 00:00:26,000\\nhas been made clear to us. Anonymous has therefore decided\\n\\n8\\n00:00:26,000 --> 00:00:30,000\\nthat your organization should be destroyed. For the good of your followers,\\n\\n9\\n00:00:30,000 --> 00:00:33,000\\nfor the good of mankind, and for our own enjoyment, \\n\\n10\\n00:00:33,000 --> 00:00:37,000\\nwe shall proceed to expel you from the Internet and systematically dismantle\\n\\n11\\n00:00:37,000 --> 00:00:42,000\\nthe Church of Scientology in its present form. We recognize you as a serious opponents,\\n\\n11\\n00:00:42,000 --> 00:00:45,000\\nand do not expect our campaign to be completed in a short time frame.\\n\\n12\\n00:00:46,000 --> 00:00:50,500\\nHowever, you will not prevail forever against the angry masses of the body politic.\\n\\n13\\n00:00:51,000 --> 00:00:55,000\\nYour choice of methods, your hypocrisy, and the general artlessness\\n\\n14\\n00:00:55,000 --> 00:00:58,000\\nof your organization have sounded its death knell.\\n\\n15\\n00:00:58,500 --> 00:01:01,000\\nYou have nowhere to hide because we are everywhere.\\n\\n16\\n00:01:01,500 --> 00:01:07,000\\nYou will find no recourse in attack, because for each of us that falls, ten more will take his place.\\n\\n17\\n00:01:07,000 --> 00:01:10,500\\nWe are cognizant of the many who will decry our methods as parallel\\n\\n18\\n00:01:10,500 --> 00:01:17,000\\nto those of the Church of Scientology. Those who dispose the obvious truth that your organization\\n\\n19\\n00:01:17,000 --> 00:01:20,500\\nwill use the actions of Anonymous as an example of the persecution of what you have\\n\\n20\\n00:01:20,500 --> 00:01:24,500\\nfor so long warned your followers. This is acceptable to Anonymous.\\n\\n21\\n00:01:25,000 --> 00:01:28,500\\nIn fact, it is encouraged. We are your SPs.\\n\\n22\\n00:01:29,000 --> 00:01:32,000\\nOver time as we begin to merge our pulse with that of your \"Church\",\\n\\n23\\n00:01:32,000 --> 00:01:36,500\\nthe suppression of your followers will become increasingly difficult to maintain.\\n\\n24\\n00:01:36,500 --> 00:01:41,500\\nBelievers will become aware that salvation needn\\'t come with the expense of their livelihood.\\n\\n25\\n00:01:41,500 --> 00:01:45,000\\nThey will become aware that the stress and the frustration that they feel\\n\\n26\\n00:01:45,000 --> 00:01:50,000\\nis not due to us, but a source much closer to them. Yes, we are SPs, but the sum of suppression\\n\\n27\\n00:01:50,000 --> 00:01:54,000\\nwe could ever muster is eclipsed by that of your own RTC.\\n\\n28\\n00:01:54,000 --> 00:01:57,500\\nKnowledge is free. We are Anonymous. We are Legion.\\n\\n29\\n00:01:57,500 --> 00:02:01,500\\nWe do not forgive. We do not forget. Expect us.',\n", + " 'bytes': 3113,\n", + " 'sha1': 'kbq15gkqqqlvcj4d2vswulbz1dre81c',\n", + " 'parent_id': 197323783,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 82794690,\n", + " 'timestamp': '2012-11-11T20:40:54Z',\n", + " 'user': {'id': 1665448, 'text': 'Runfellow'},\n", + " 'page': {'id': 22637552,\n", + " 'title': 'Boomer fires at Apogee Stadium.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:00,500 --> 00:00:01,499 Ready?\\n\\n2 00:00:01,500 --> 00:00:02,000 Yeah.\\n\\n3 00:00:02,000 --> 00:00:03,500 Fire in the hole!',\n", + " 'bytes': 128,\n", + " 'sha1': 'jselydguqedr3aqbwjizigvv4ddufyo',\n", + " 'parent_id': 82794617,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83031628,\n", + " 'timestamp': '2012-11-15T18:20:55Z',\n", + " 'user': {'id': 7576, 'text': 'Kolossos'},\n", + " 'page': {'id': 22711205,\n", + " 'title': 'Great Feeling.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nEhh, nein, ich habe keine Superkräfte.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nIrgendwelche. Nein.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nDu kannst das tuen.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nI drückte den Knopf,,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nund speicherte den Text,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWooooo!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nEs war ... erstaunlich.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nDu ändertest soeben die Wikipedia,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\ndu machtest deinen Beitrag zur Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nIch lass einen Artikel im \"Guardian\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nüber diese Online-Enzyklopädie,\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nzu der jeder beitragen konnte\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nund ich sagte, \"Wow!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Vielleicht kann ich auch beitragen!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nIch editierte das erste Mal\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nund ich dachte ich wäre abhängig davon.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nIch bekomme keinerlei Geld\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nI tue es einfach, \\n\\n19\\n00:00:37,593 --> 00:00:39,543\\num etwas in meiner Freizeit zu tuen zu haben, das ist alles.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nVielleicht startest du es aufgrund der Idee,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nvielleicht glaubst du daran,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\naber es endet für dich mit Freunden,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nes endet mit geliebten Menschen,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nes endet mit wundervollen Diskussionen,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nes endet mit neuen Ideen,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nes endet mit neuen Büchern, die du schreibst...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nDu schreibst nicht nur Artikel.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nDu schreibst ein Stück,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nund jemand anderes kommt mit: \\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hey, Ich habe mehr!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nund zusammen schreibt ihr \\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nseitenlange Artikel,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nwie du alleine es nicht könntest.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nDann hast du Erfolg.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nDu siehst immer, \"Ok, was ich gemacht habe war erfolgreich.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nund das ist wundervoll.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nDas ist großartig,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nweil, editieren ist ein tolles Gefühl.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nJedesmal.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nIch kann sagen, have to say,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nAls ich über die Wikipedia las,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nich entschied, \\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Das könnte etwas sein, was zu mir passt.\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nUnd ist tat es.',\n", + " 'bytes': 2828,\n", + " 'sha1': 'phmxza6cmskj430857orjk0wsjsxbvm',\n", + " 'parent_id': 83031550,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83050072,\n", + " 'timestamp': '2012-11-15T22:31:29Z',\n", + " 'user': {'id': 43526, 'text': 'Ferk~commonswiki'},\n", + " 'page': {'id': 22715822,\n", + " 'title': 'Great Feeling.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,905 --> 00:00:03,204 Ehh, no, no tengo superpoderes. 2 00:00:03,204 --> 00:00:05,990 Claro que no. No. 3 00:00:05,990 --> 00:00:08,034 Por supuesto...'\",\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nEhh, no, no tengo superpoderes.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nClaro que no. No.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nPor supuesto que puedes hacerlo.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nApreté el botón,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\ny grabé el texto,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWuuuuu!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nFué... emocionante.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nAcabas de cambiar Wikipedia,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nacabas de añadir tu propia contribución a Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nLeí el artículo en \"The Guardian\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nsobre esta enciclopedia online\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\na la que todo el mundo puede contribuir\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\ny dije: \"Wow!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Quizás yo también puedo contribuir!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nEdité por primera vez\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\ny creo que me volví adicto a ello.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nNo cobro nada a cambio\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nsólo lo hago por, ya sabes,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nalgo que hacer en mi tiempo libre, eso es todo.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nPuedes empezar a hacerlo por la idea,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nporque crees en ella,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\npero terminas haciendo amigos,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nterminas con amantes,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nterminas con increibles discusiones,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nterminas con nuevas ideas,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nterminas con nuevos libros que vas a escribir.\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nNo estás escribiendo el artículo solo.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nEscribes una parte,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\ny alguien va y dice:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hey, yo tengo más!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\ny juntos podeis crear\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nartículos de múltiples páginas,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nque no podrás escribir pot tí solo.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nEntonces se alcanza el éxito.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nSiempre verás, \"Bien, lo que hice fue éxitoso.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\ny esto es maravilloso.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nes estupendo,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nporque, editar es una sensación estupenda.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\ncada vez que lo haces.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nTengo que decir,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\ncuando leí sobre la Wikipedia,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\ndecidí\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Este es el lugar donde quizás yo pueda encajar\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nY lo hice.',\n", + " 'bytes': 2766,\n", + " 'sha1': '8ol1dtjagfr3g9zp46dinip7wkyqgun',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 104686833,\n", + " 'timestamp': '2013-09-19T14:48:21Z',\n", + " 'user': {'id': 1939295, 'text': 'DerSpezialist'},\n", + " 'page': {'id': 22766392,\n", + " 'title': 'Dies.irae.ogg.la.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Corrected mistake',\n", + " 'text': '1\\n00:00:00,500 --> 00:00:04,500\\nDies irae! Dies illa\\n\\n2\\n00:00:04,500 --> 00:00:11,500\\nSolvet saeclum in favilla:\\n\\n3\\n00:00:11,500 --> 00:00:18,000\\nTeste David cum Sibylla!\\n\\n4\\n00:00:18,000 --> 00:00:22,500\\nQuantus tremor est futurus,\\n\\n5\\n00:00:22,500 --> 00:00:28,500\\nQuando iudex est venturus,\\n\\n6\\n00:00:28,500 --> 00:00:34,500\\nCuncta stricte discussurus!\\n\\n7\\n00:00:34,500 --> 00:00:43,000\\nTuba mirum spargens sonum\\n\\n8\\n00:00:43,000 --> 00:00:48,000\\nPer sepulchra regionum,\\n\\n9\\n00:00:48,000 --> 00:00:56,000\\nCoget omnes ante thronum.\\n\\n10\\n00:00:56,000 --> 00:01:05,000\\nMors stupebit, et natura,\\n\\n11\\n00:01:05,000 --> 00:01:10,500\\nCum resurget creatura,\\n\\n12\\n00:01:10,500 --> 00:01:18,500\\nIudicanti responsura.\\n\\n13\\n00:01:18,500 --> 00:01:29,000\\nLiber scriptus proferetur,\\n\\n14\\n00:01:29,000 --> 00:01:36,500\\nIn quo totum continetur,\\n\\n15\\n00:01:36,500 --> 00:01:44,500\\nUnde mundus iudicetur.\\n\\n16\\n00:01:44,500 --> 00:01:54,000\\nIudex ergo cum sedebit,\\n\\n17\\n00:01:54,000 --> 00:02:01,500\\nQuidquid latet apparebit:\\n\\n18\\n00:02:01,500 --> 00:02:09,500\\nNil inultum remanebit.\\n\\n19\\n00:02:09,500 --> 00:02:14,500\\nQuid sum miser tunc dicturus?\\n\\n20\\n00:02:14,500 --> 00:02:22,500\\nQuem patronum rogaturus,\\n\\n21\\n00:02:22,500 --> 00:02:29,000\\nCum vix iustus sit securus?\\n\\n22\\n00:02:29,000 --> 00:02:33,500\\nRex tremendae maiestatis,\\n\\n23\\n00:02:33,500 --> 00:02:41,500\\nQui salvandos salvas gratis:\\n\\n24\\n00:02:41,500 --> 00:02:48,500\\nSalva me, fons pietatis.\\n\\n25\\n00:02:48,500 --> 00:02:57,500\\nRecordare Iesu pie,\\n\\n26\\n00:02:57,500 --> 00:03:02,500\\nQuod sum causa tuae viae:\\n\\n27\\n00:03:02,500 --> 00:03:11,000\\nNe me perdas illa die.\\n\\n28\\n00:03:11,000 --> 00:03:20,000\\nQuaerens me, sedisti lassus:\\n\\n29\\n00:03:20,000 --> 00:03:25,000\\nRedemisti crucem passus:\\n\\n30\\n00:03:25,000 --> 00:03:33,333\\nTantus labor non sit cassus.\\n\\n31\\n00:03:33,333 --> 00:03:42,000\\nIuste iudex ultionis,\\n\\n32\\n00:03:42,000 --> 00:03:50,500\\nDonum fac remissionis,\\n\\n33\\n00:03:50,500 --> 00:03:58,500\\nAnte diem rationis.\\n\\n34\\n00:03:58,500 --> 00:04:09,000\\nIngemisco, tamquam reus:\\n\\n35\\n00:04:09,000 --> 00:04:16,000\\nCulpa rubet vultus meus:\\n\\n36\\n00:04:16,000 --> 00:04:23,500\\nSupplicanti parce Deus.\\n\\n37\\n00:04:23,500 --> 00:04:29,000\\nQui Mariam absolvisti,\\n\\n38\\n00:04:29,000 --> 00:04:37,000\\nEt latronem exaudisti,\\n\\n39\\n00:04:37,000 --> 00:04:43,000\\nMihi quoque spem dedisti.\\n\\n40\\n00:04:43,000 --> 00:04:48,000\\nPreces meae non sunt dignae:\\n\\n41\\n00:04:48,000 --> 00:04:56,000\\nSed tu bonus fac benigne,\\n\\n42\\n00:04:56,000 --> 00:05:02,500\\nNe perenni cremer igne.\\n\\n43\\n00:05:02,500 --> 00:05:11,500\\nInter oves locum praesta,\\n\\n44\\n00:05:11,500 --> 00:05:17,500\\nEt ab haedis me sequestra,\\n\\n45\\n00:05:17,500 --> 00:05:27,000\\nStatuens in parte dextra.\\n\\n46\\n00:05:27,500 --> 00:05:35,000\\nConfutatis maledictis,\\n\\n47\\n00:05:35,000 --> 00:05:40,000\\nFlammis acribus addictis,\\n\\n48\\n00:05:40,000 --> 00:05:49,500\\nVoca me cum benedictis.\\n\\n49\\n00:05:50,000 --> 00:05:58,000\\nOro supplex et acclinis,\\n\\n50\\n00:05:58,500 --> 00:06:04,500\\nCor contritum quasi cinis:\\n\\n51\\n00:06:04,500 --> 00:06:12,500\\nGere curam mei finis.\\n\\n52\\n00:06:13,000 --> 00:06:20,000\\nLacrimosa dies illa,\\n\\n53\\n00:06:20,500 --> 00:06:30,000\\nQua resurget ex favilla\\n\\n54\\n00:06:30,500 --> 00:06:40,500\\nIudicandus homo reus:\\n\\n55\\n00:06:41,000 --> 00:06:51,000\\nHuic ergo parce Deus.\\n\\n56\\n00:06:51,500 --> 00:06:59,500\\nPie Iesu Domine,\\n\\n57\\n00:07:00,000 --> 00:07:09,000\\ndona eis requiem.',\n", + " 'bytes': 3333,\n", + " 'sha1': 'c9fgdtoa6kai3zis06zv38q5s7s1zka',\n", + " 'parent_id': 104684305,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 139132261,\n", + " 'timestamp': '2014-11-10T02:53:34Z',\n", + " 'user': {'id': 1216133, 'text': 'Champion'},\n", + " 'page': {'id': 22784644,\n", + " 'title': 'Hino-Nacional-Brasil-instrumental-mec.ogg.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '9\\n00:00:30,900 --> 00:00:38,800\\nOuviram do Ipiranga as margens plácidas,\\nDe um povo heroico o brado retumbante\\n\\n10\\n00:00:39,100 --> 00:00:47,500\\nE o sol da Liberdade, em raios fúlgidos,\\nBrilhou no céu da Pátria nesse instante.\\n\\n11\\n00:00:47,700 --> 00:00:55,000\\nSe o penhor dessa igualdade,\\nConseguimos conquistar com braço forte,\\n\\n12\\n00:00:55,500 --> 00:01:03,000\\nEm teu seio, ó Liberdade,\\nDesafia o nosso peito a própria morte!\\n\\n13\\n00:01:04,500 --> 00:01:07,000\\nÓ Pátria amada,\\nIdolatrada,\\nSalve! Salve!\\n\\n14\\n00:01:07,500 --> 00:01:15,000\\nBrasil, um sonho intenso, um raio vívido,\\nDe amor e de esperança à terra desce,\\n\\n15\\n00:01:15,500 --> 00:01:24,000\\nSe em teu formoso céu, risonho e límpido,\\nA imagem do Cruzeiro resplandece.\\n\\n16\\n00:01:24,500 --> 00:01:32,000\\nGigante pela própria natureza,\\nÉs belo, és forte, impávido colosso,\\n\\n17\\n00:01:32,500 --> 00:01:36,500\\nE o teu futuro espelha essa grandeza.\\n\\n18\\n00:01:37,000 --> 00:01:39,500\\nTerra adorada\\n\\n19\\n00:01:40,000 --> 00:01:43,500\\nEntre outras mil,\\nÉs tu, Brasil,\\nÓ Pátria amada!\\n\\n20\\n00:01:44,000 --> 00:01:46,000\\nDos filhos deste solo\\nÉs mãe gentil,\\n\\n21\\n00:01:46,800 --> 00:01:48,500\\nPátria amada,\\nBrasil!\\n\\n22\\n00:01:49,500 --> 00:01:57,500\\nDeitado eternamente em berço esplêndido,\\nAo som do mar e à luz do céu profundo,\\n\\n23\\n00:01:57,500 --> 00:02:05,500\\nFulguras, ó Brasil, florão da América,\\nIluminado ao sol do Novo Mundo!\\n\\n24\\n00:02:06,500 --> 00:02:14,500\\nDo que a terra mais garrida,\\nTeus risonhos, lindos campos têm mais flores,\\n\\n25\\n00:02:15,500 --> 00:02:22,500\\nNossos bosques têm mais vida,\\nNossa vida no teu seio mais amores.\\n\\n26\\n00:02:23,500 --> 00:02:27,500\\nÓ Pátria amada,\\nIdolatrada,\\nSalve! Salve!\\n\\n27\\n00:02:28,500 --> 00:02:35,500\\nBrasil, de amor eterno seja símbolo,\\nO lábaro que ostentas estrelado,\\n\\n28\\n00:02:36,500 --> 00:02:43,500\\nE diga o verde-louro dessa flâmula\\n- Paz no futuro e glória no passado.\\n\\n29\\n00:02:44,500 --> 00:02:52,500\\nMas se ergues da justiça a clava forte,\\nVerás que um filho teu não foge à luta,\\n\\n30\\n00:02:53,500 --> 00:02:55,500\\nNem teme, quem te adora, a própria morte.\\n\\n31\\n00:02:56,000 --> 00:02:58,500\\nTerra adorada\\n\\n32\\n00:02:59,000 --> 00:03:01,500\\nEntre outras mil,\\nÉs tu, Brasil,\\nÓ Pátria amada!\\n\\n33\\n00:03:02,000 --> 00:03:04,500\\nDos filhos deste solo,\\nÉs mãe gentil,\\n\\n34\\n00:03:05,000 --> 00:03:07,500\\nPátria amada,\\nBrasil!',\n", + " 'bytes': 2373,\n", + " 'sha1': 'grgozbiugetgwscbx1k8vo07e27esal',\n", + " 'parent_id': 93993097,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 117547474,\n", + " 'timestamp': '2014-02-27T14:20:12Z',\n", + " 'user': {'id': 50801, 'text': 'Anastasios~commonswiki'},\n", + " 'page': {'id': 22793135,\n", + " 'title': 'ABC ATMs.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1\\n00:00:01,000 --> 00:00:03,000 \\nWell in this world of instant-everything...\\n\\n2\\n00:00:03,000 --> 00:00:17,000 \\neverybody's familiar with [[w:instant coffee|instant coffee]] in little packets, instant [[w:teabag|tea in little bags]], instant [[w:pudding|pudding]] and even instant [[mashed potatoes]] now,\\n\\n3\\n00:00:18,000 --> 00:00:26,000 \\nbut perhaps the nicest thing of all is this recent innovation by the [[Commercial Banking Company of Sydney]]. It's a little card that brings you instant cash and all you do is this...\\n\\n4\\n00:00:26,001 --> 00:00:32,000 \\nThese machines you'll be seeing before too long (in about six weeks time actually) on the bank's walls around Sydney\\n\\n5\\n00:00:32,001 --> 00:00:38,000 \\nand all you do is place this card in here, in the slot,\\n\\n6\\n00:00:38,001 --> 00:00:40,000 \\nit's taken inside,\\n\\n7\\n00:00:42,000 --> 00:00:47,000 \\nyou wait for a light to come on and you press six digits...\\n\\n8\\n00:00:52,000 --> 00:00:59,000 \\nWait a second or two and out drops your instant cash - twenty-five dollars of it.\\n\\n9\\n00:01:00,000 --> 00:01:04,000 \\nIt seems very simple and very nice but it's not quite as easy as all that.\\n\\n10\\n00:01:04,001 --> 00:01:15,000 \\nIan Masters is the representative of the [[Chubb]] company who are going to be installing these machines for the Commercial Banking Company - how does it actually work, behind the wall, Ian?\\n\\n11\\n00:01:15,001 --> 00:01:25,000 \\nWell, the card which you just placed through the machine there is specially computed with information containing the account number, the branch number, etc.\\n\\n12\\n00:01:25,001 --> 00:01:37,000 \\nWhen it is placed in the machine it is necessary for the combination number to be tapped after the card has been accepted by the machine.\\n\\n13\\n00:01:37,001 --> 00:01:42,000 \\n3-0-5-...\\n\\n14\\n00:01:42,001 --> 00:01:47,000 \\nAs you can see the whole operation when you have the correct number only takes about ten seconds. \\n\\n15\\n00:01:47,001 --> 00:01:52,000 \\nWell, how are they going to work from the bank's point of view. I mean, how do you get the cards and who's going to get them?\\n\\n16\\n00:01:52,001 --> 00:01:59,000 \\nWell, any check account customer of the bank will be able to obtain one from his local bank manager. \\n\\n17\\n00:01:59,001 --> 00:02:05,000 \\nOnce the card goes back in here, into the machine, it disappears, it's not returned to the... how does the client get it back?\\n\\n18\\n00:02:05,001 --> 00:02:12,000 \\nNot immediately. The machine retains the card and then it is forwarded back to the client by the fastest possible means by the bank - once the account has been debited. \\n\\n19\\n00:02:12,001 --> 00:02:15,000 \\nUm, it only pays $25?\\n\\n20\\n00:02:15,001 --> 00:02:17,000 \\nOnly $25 yes.\\n\\n21\\n00:02:17,001 --> 00:02:19,000 \\nWell what happens if somebody wants more than $25?\\n\\n22\\n00:02:19,001 --> 00:02:25,000 \\nWell, in that case I think it would be best if they make arrangements with their local bank manager to overcome this problem.\\n\\n23\\n00:02:25,001 --> 00:02:29,000 \\nThe idea is to use this only on the weekend, for weekends when the bank is closed, is it?\\n\\n24\\n00:02:29,001 --> 00:02:33,000 \\nOh no, it's 24 hours a day, seven days a week, 52 weeks of the year. \\n\\n25\\n00:02:33,001 --> 00:02:37,000 \\nWhat happens if a customer loses his card?\\n\\n26\\n00:02:37,001 --> 00:02:49,000 \\nWell, if the card is lost it's not going to be much help to the person finding the card. They would try and put it in the machine but of course they don't know the combination numbers of it and the chances of getting it...\\n\\n27\\n00:02:49,001 --> 00:02:51,900 \\n– The numbers that you press down?<br />\\n– Yes. \\n\\n28\\n00:02:52,001 --> 00:03:02,500 \\nUm, there's one other thing apparently that the cards are almost impossible to forge because apart from the little [[punch card]] holes in them it's also specially magnetised which makes things pretty difficult.\\n\\n29\\n00:03:02,001 --> 00:03:11,500 \\nSo don't go rushing out and trying to manufacture a whole lot of these cards in search of instant cash because, they just won't work.\",\n", + " 'bytes': 3994,\n", + " 'sha1': 'bl9rbohv4443k0i0azbhre2kqdhzg3p',\n", + " 'parent_id': 117547261,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83459267,\n", + " 'timestamp': '2012-11-22T18:11:20Z',\n", + " 'user': {'id': 1178694, 'text': 'Rillke'},\n", + " 'page': {'id': 22814513,\n", + " 'title': 'Christoph Nolte - The Rocky Road - Follow me up to Carlow.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'for the disabled',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:01,997\\nLift Mac Cahir Og your face,\\n\\n2\\n00:00:01,997 --> 00:00:03,878\\nYou're broodin' o'er the old disgrace\\n\\n3\\n00:00:03,878 --> 00:00:05,921\\nThat Black Fitzwilliam stormed your place\\n\\n4\\n00:00:05,921 --> 00:00:07,970\\nand drove you to the ferns\\n\\n5\\n00:00:07,970 --> 00:00:09,901\\nGray said victory was sure,\\n\\n6\\n00:00:09,901 --> 00:00:11,735\\nAnd soon the firebrand he'd secure\\n\\n7\\n00:00:11,735 --> 00:00:14,000\\nUntil he met at Glenmalure\\n\\n8\\n00:00:14,000 --> 00:00:15,954\\nwith Fiach McHugh O'Byrne\\n\\n9\\n00:00:15,954 --> 00:00:17,975\\nCurse and swear, Lord Kildare\\n\\n10\\n00:00:17,975 --> 00:00:19,925\\nFiach will do what Fiach will dare.\\n\\n11\\n00:00:19,925 --> 00:00:21,899\\nNow FitzWilliam, have a care,\\n\\n12\\n00:00:21,899 --> 00:00:24,100\\nFallen is your star low!\\n\\n13\\n00:00:24,100 --> 00:00:26,098\\nUp with halberd, out with sword,\\n\\n14\\n00:00:26,098 --> 00:00:28,052\\nOn we'll go, for by the Lord,\\n\\n15\\n00:00:28,052 --> 00:00:30,095\\nFiach MacHugh has given the word:\\n\\n16\\n00:00:30,095 --> 00:00:32,299\\nFollow me up to Carlow!\\n\\n17\\n00:00:32,299 --> 00:00:40,870\\nSee the swords of Glen Imall, flashing o'er the English Pale!\\nSee all the children of the Gael, beneath O'Byrne's banners.\\n\\n18\\n00:00:40,870 --> 00:00:48,858\\nRooster of a fighting stock, would you let a Saxon cock\\nCrow out upon an Irish rock? -- fly up and teach him manners!.\\n\\n19\\n00:00:48,858 --> 00:00:57,031\\nCurse and swear, Lord Kildare\\nFiach will do what Fiach will dare.\\nNow FitzWilliam, have a care,\\nFallen is your star low!\\n\\n20\\n00:00:57,031 --> 00:01:07,059\\nUp with halberd, out with sword,\\nOn we'll go, for by the Lord,\\nFiach MacHugh has given the word:\\nFollow me up to Carlow!\\n\\n21\\n00:01:07,059 --> 00:01:15,196\\nFrom Tassagart to Clonmore, there flows a stream of Saxon gore,\\nOch, great is Rory Óg O'More, sending the loons to Hades.\\n\\n22\\n00:01:15,196 --> 00:01:23,207\\nWhite is sick and Lane is fled, now for black FitzWilliam's head,\\nWe'll send it over, dripping red, to Queen Liza and the ladies.\\n\\n23\\n00:01:23,207 --> 00:01:31,380\\nCurse and swear, Lord Kildare\\nFiach will do what Fiach will dare.\\nNow FitzWilliam, have a care,\\nFallen is your star low!\\n\\n24\\n00:01:31,380 --> 00:01:41,062\\nUp with halberd, out with sword,\\nOn we'll go, for by the Lord,\\nFiach MacHugh has given the word:\\nFollow me up to Carlow!\\n\\n25\\n00:01:41,062 --> 00:02:49,809\\n(melody)\",\n", + " 'bytes': 2321,\n", + " 'sha1': 'ow3vvfgte6ehc9gp2utx68k5ojqwt3m',\n", + " 'parent_id': 83458945,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83448016,\n", + " 'timestamp': '2012-11-22T14:28:20Z',\n", + " 'user': {'id': 1895191, 'text': 'Ezalvarenga'},\n", + " 'page': {'id': 22815217,\n", + " 'title': 'Pablo Ortellado - Wikipedia na Universidade.ogv.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:05,000\\nEntão... ooo... Acho que o que me motivou a\\n\\n2\\n00:00:05,500 --> 00:00:09,500\\nentrar nesse programa, colaborar com esse programa\\n\\n3\\n00:00:09,500 --> 00:00:013,000\\nfoi o entendimento de que o processo \\nde aprendizado na universidade\\n\\n4\\n00:00:13,000 --> 00:00:17,000\\nele resulta na elaboração de textos que são\\n\\n5\\n00:00:17,000 --> 00:00:20,000\\nao final do processo desprezados...',\n", + " 'bytes': 412,\n", + " 'sha1': 'swt0e09h4ngd7hlc0j1ihwbt0j0kclc',\n", + " 'parent_id': 83447978,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83464663,\n", + " 'timestamp': '2012-11-22T19:51:20Z',\n", + " 'user': {'id': 1178694, 'text': 'Rillke'},\n", + " 'page': {'id': 22817206,\n", + " 'title': 'Labrador barking on command.theora.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'this way it works',\n", + " 'text': '1\\n00:00:03,800 --> 00:00:05,000\\n[Barking]\\n\\n2\\n00:00:05,000 --> 00:00:06,000\\nSPEAK.\\n\\n3\\n00:00:06,000 --> 00:00:07,000\\n[Barking again]',\n", + " 'bytes': 130,\n", + " 'sha1': 'kmmj04va6l7gju7lb241wvj9kzlyw89',\n", + " 'parent_id': 83456321,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83467578,\n", + " 'timestamp': '2012-11-22T20:57:37Z',\n", + " 'user': {'id': 1178694, 'text': 'Rillke'},\n", + " 'page': {'id': 22819926,\n", + " 'title': 'Dies.irae.ogg.latin.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:Dies.irae.ogg.la.srt',\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Rillke moved page [[TimedText:Dies.irae.ogg.latin.srt]] to [[TimedText:Dies.irae.ogg.la.srt]]: the proper shortcut is la',\n", + " 'text': '#REDIRECT [[TimedText:Dies.irae.ogg.la.srt]]\\n',\n", + " 'bytes': 45,\n", + " 'sha1': '0d9vlncbqarba18a3vy5rv7shqascuy',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 599833985,\n", + " 'timestamp': '2021-10-18T18:17:14Z',\n", + " 'user': {'text': '88.157.89.211'},\n", + " 'page': {'id': 22848121,\n", + " 'title': 'A Portuguesa.ogg.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:06,500\\nA Portuguesa\\n\\n1\\n00:00:08,500 --> 00:00:12,700\\nHeróis do mar, nobre povo,\\n\\n2\\n00:00:12,800 --> 00:00:17,000\\nNação valente, imortal,\\n\\n3\\n00:00:17,150 --> 00:00:21,900\\nLevantai hoje de novo\\n\\n4\\n00:00:21,000 --> 00:00:26,000\\nO esplendor de Portugal!\\n\\n5\\n00:00:26,500 --> 00:00:31,000\\nEntre as brumas da memória,\\n\\n6\\n00:00:31,200 --> 00:00:34,800\\nÓ Pátria sente-se a voz\\n\\n7\\n00:00:35,000 --> 00:00:39,000\\nDos teus egrégios avós,\\n\\n8\\n00:00:40,000 --> 00:00:43,500\\nQue há-de guiar-te à vitória!\\n\\n9\\n00:00:44,000 --> 00:00:48,600\\nÀs armas! Às armas!\\n\\n10\\n00:00:49,000 --> 00:00:52,500\\nSobre a terra e sobre o mar,\\n\\n11\\n00:00:53,000 --> 00:00:57,500\\nÀs armas! Às armas!\\n\\n12\\n00:00:57,800 --> 00:01:02,300\\nPela Pátria lutar!\\n\\n13\\n00:01:02,600 --> 00:01:04,000\\nContra os canhões\\n\\n14\\n00:01:04,000 --> 00:01:07,500\\nMarchar, marchar!\\n\\n*Letra: Anselmo Ralph\\n*Música: Badoxa',\n", + " 'bytes': 896,\n", + " 'sha1': '0q59b9wvypu1ttv0thsgr6zm4bsi9hy',\n", + " 'parent_id': 239972875,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83609569,\n", + " 'timestamp': '2012-11-25T06:18:35Z',\n", + " 'user': {'id': 935873, 'text': 'Juancameneses11'},\n", + " 'page': {'id': 22853346,\n", + " 'title': 'United States Navy Band - ¡Oh, gloria inmarcesible!.ogg.ea.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:17,000 --> 00:00:21,700 ¡Oh gloria inmarcesible! 2 00:00:21,900 --> 00:00:26,500 ¡Oh júbilo inmortal! 3 00:00:27,300 --> 00:00:31,200 ¡En surcos d...'\",\n", + " 'text': '1\\n00:00:17,000 --> 00:00:21,700\\n¡Oh gloria inmarcesible!\\n\\n2\\n00:00:21,900 --> 00:00:26,500\\n¡Oh júbilo inmortal!\\n\\n3\\n00:00:27,300 --> 00:00:31,200\\n¡En surcos de dolores\\n\\n4\\n00:00:31,300 --> 00:00:36,500\\nel bien germina ya!\\n\\n5\\n00:00:36,800 --> 00:00:40,500\\nel bien germina ya!',\n", + " 'bytes': 275,\n", + " 'sha1': 'aeuaex31r5djl7mabftqeddn79bfz17',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 308049421,\n", + " 'timestamp': '2018-06-25T10:11:46Z',\n", + " 'user': {'id': 1547075, 'text': 'Illegitimate Barrister'},\n", + " 'page': {'id': 22853365,\n", + " 'title': 'United States Navy Band - ¡Oh, gloria inmarcesible!.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:17,500 --> 00:00:21,555\\nOh, unwithering glory!\\n\\n2\\n00:00:22,000 --> 00:00:26,500\\nOh, immortal jubilance!\\n\\n3\\n00:00:27,300 --> 00:00:31,200\\nIn furrows of pain,\\n\\n4\\n00:00:31,300 --> 00:00:35,500\\ngoodness now germinates.\\n\\n5\\n00:00:36,000 --> 00:00:40,100\\n<big>'''Goodness now germinates!'''</big>\\n\\n6\\n00:00:41,555 --> 00:00:44,999\\nOh, unwithering glory!\\n\\n7\\n00:00:46,000 --> 00:00:50,500\\nOh, immortal jubilance!\\n\\n8\\n00:00:51,000 --> 00:00:54,200\\nIn furrows of pain,\\n\\n9\\n00:00:55,000 --> 00:00:59,500\\ngoodness now germinates!\\n\\n10\\n00:01:00,000 --> 00:01:09,500\\nThe dreadful night has ceased. Sublime Liberty\\n\\n11\\n00:01:09,800 --> 00:01:18,500\\nbeams forth the dawn of her invincible light.\\n\\n12\\n00:01:18,700 --> 00:01:27,500\\nAll of humanity that groans within its chains,\\n\\n13\\n00:01:27,900 --> 00:01:37,500\\nunderstands the words of He who died on the cross.\\n\\n14\\n00:01:37,900 --> 00:01:37,500\\nunderstands the words of He who died on the cross.\\n\\n15\\n00:01:55,000 --> 00:02:00,000\\nOh, unwithering glory!\\n\\n16\\n00:02:00,200 --> 00:02:05,100\\nOh, immortal jubilance!\\n\\n17\\n00:02:06,100 --> 00:02:09,200\\nIn furrows of pain,\\n\\n18\\n00:02:10,300 --> 00:02:15,500\\ngoodness now germinates.\\n\\n19\\n00:02:15,600 --> 00:02:19,400\\n<big>'''Goodness now germinates!'''</big>\\n\\n20\\n00:02:20,300 --> 00:02:24,000\\nOh, unwithering glory!\\n\\n21\\n00:02:24,100 --> 00:02:28,500\\nOh, immortal jubilance!\\n\\n22\\n00:02:29,000 --> 00:02:33,200\\nIn furrows of pain,\\n\\n23\\n00:02:33,300 --> 00:02:40,000\\ngoodness now germinates!\",\n", + " 'bytes': 1465,\n", + " 'sha1': 'qjaegj5iow4qpwj80g21kjrsxh2ysic',\n", + " 'parent_id': 308049132,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83610671,\n", + " 'timestamp': '2012-11-25T07:05:28Z',\n", + " 'user': {'id': 935873, 'text': 'Juancameneses11'},\n", + " 'page': {'id': 22853602,\n", + " 'title': 'United States Navy Band - ¡Oh, gloria inmarcesible!.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:16,000 --> 00:00:20,700 ¡Oh gloria inmarcesible! 2 00:00:21,000 --> 00:00:26,500 ¡Oh júbilo inmortal! 3 00:00:27,300 --> 00:00:31,200 ¡En surcos d...'\",\n", + " 'text': '1\\n00:00:16,000 --> 00:00:20,700\\n¡Oh gloria inmarcesible!\\n\\n2\\n00:00:21,000 --> 00:00:26,500\\n¡Oh júbilo inmortal!\\n\\n3\\n00:00:27,300 --> 00:00:31,200\\n¡En surcos de dolores...\\n\\n4\\n00:00:31,300 --> 00:00:35,500\\n...el bien germina ya!\\n\\n5\\n00:00:36,000 --> 00:00:40,100\\n...el bien germina ya!\\n\\n6\\n00:00:40,300 --> 00:00:44,800\\n¡Oh gloria inmarcesible!\\n\\n7\\n00:00:45,000 --> 00:00:50,500\\n¡Oh júbilo inmortal!\\n\\n8\\n00:00:51,000 --> 00:00:54,200\\n¡En surcos de dolores...\\n\\n9\\n00:00:54,300 --> 00:00:59,500\\n...el bien germina ya!\\n\\n10\\n00:01:00,000 --> 00:01:09,500\\n¡Cesó la horrible noche! La libertad sublime...\\n\\n11\\n00:01:09,800 --> 00:01:18,500\\n...derrama las auroras de su invencible luz.\\n\\n12\\n00:01:18,700 --> 00:01:27,500\\nLa humanidad entera, que entre cadenas gime,\\n\\n13\\n00:01:27,900 --> 00:01:37,500\\ncomprende las palabras del que murió en la cruz.\\n\\n14\\n00:01:37,900 --> 00:01:37,500\\ncomprende las palabras del que murió en la cruz.\\n\\n15\\n00:01:55,000 --> 00:02:00,000\\n¡Oh gloria inmarcesible!\\n\\n16\\n00:02:00,200 --> 00:02:05,100\\n¡Oh júbilo inmortal!\\n\\n17\\n00:02:06,100 --> 00:02:09,200\\n¡En surcos de dolores...\\n\\n18\\n00:02:10,300 --> 00:02:15,500\\n...el bien germina ya!\\n\\n19\\n00:02:15,600 --> 00:02:19,400\\n...el bien germina ya!\\n\\n20\\n00:02:20,300 --> 00:02:24,000\\n¡Oh gloria inmarcesible!\\n\\n21\\n00:02:24,100 --> 00:02:28,500\\n¡Oh júbilo inmortal!\\n\\n22\\n00:02:29,000 --> 00:02:33,200\\n¡En surcos de dolores...\\n\\n23\\n00:02:33,300 --> 00:02:40,000\\n...el bien germina ya!',\n", + " 'bytes': 1449,\n", + " 'sha1': 'ipel0c5marn3m5aoeignoa9cc19qgq0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83610729,\n", + " 'timestamp': '2012-11-25T07:07:34Z',\n", + " 'user': {'id': 935873, 'text': 'Juancameneses11'},\n", + " 'page': {'id': 22853627,\n", + " 'title': 'United States Navy Band - ¡Oh, gloria inmarcesible!.ogg.th.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:16,000 --> 00:00:20,700 ¡Oh gloria inmarcesible! 2 00:00:21,000 --> 00:00:26,500 ¡Oh júbilo inmortal! 3 00:00:27,300 --> 00:00:31,200 ¡En surcos d...'\",\n", + " 'text': '1\\n00:00:16,000 --> 00:00:20,700\\n¡Oh gloria inmarcesible!\\n\\n2\\n00:00:21,000 --> 00:00:26,500\\n¡Oh júbilo inmortal!\\n\\n3\\n00:00:27,300 --> 00:00:31,200\\n¡En surcos de dolores...\\n\\n4\\n00:00:31,300 --> 00:00:35,500\\n...el bien germina ya!\\n\\n5\\n00:00:36,000 --> 00:00:40,100\\n...el bien germina ya!\\n\\n6\\n00:00:40,300 --> 00:00:44,800\\n¡Oh gloria inmarcesible!\\n\\n7\\n00:00:45,000 --> 00:00:50,500\\n¡Oh júbilo inmortal!\\n\\n8\\n00:00:51,000 --> 00:00:54,200\\n¡En surcos de dolores...\\n\\n9\\n00:00:54,300 --> 00:00:59,500\\n...el bien germina ya!\\n\\n10\\n00:01:00,000 --> 00:01:09,500\\n¡Cesó la horrible noche! La libertad sublime...\\n\\n11\\n00:01:09,800 --> 00:01:18,500\\n...derrama las auroras de su invencible luz.\\n\\n12\\n00:01:18,700 --> 00:01:27,500\\nLa humanidad entera, que entre cadenas gime,\\n\\n13\\n00:01:27,900 --> 00:01:37,500\\ncomprende las palabras del que murió en la cruz.\\n\\n14\\n00:01:37,900 --> 00:01:37,500\\ncomprende las palabras del que murió en la cruz.\\n\\n15\\n00:01:55,000 --> 00:02:00,000\\n¡Oh gloria inmarcesible!\\n\\n16\\n00:02:00,200 --> 00:02:05,100\\n¡Oh júbilo inmortal!\\n\\n17\\n00:02:06,100 --> 00:02:09,200\\n¡En surcos de dolores...\\n\\n18\\n00:02:10,300 --> 00:02:15,500\\n...el bien germina ya!\\n\\n19\\n00:02:15,600 --> 00:02:19,400\\n...el bien germina ya!\\n\\n20\\n00:02:20,300 --> 00:02:24,000\\n¡Oh gloria inmarcesible!\\n\\n21\\n00:02:24,100 --> 00:02:28,500\\n¡Oh júbilo inmortal!\\n\\n22\\n00:02:29,000 --> 00:02:33,200\\n¡En surcos de dolores...\\n\\n23\\n00:02:33,300 --> 00:02:40,000\\n...el bien germina ya!',\n", + " 'bytes': 1449,\n", + " 'sha1': 'ipel0c5marn3m5aoeignoa9cc19qgq0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83610758,\n", + " 'timestamp': '2012-11-25T07:08:45Z',\n", + " 'user': {'id': 935873, 'text': 'Juancameneses11'},\n", + " 'page': {'id': 22853636,\n", + " 'title': 'United States Navy Band - ¡Oh, gloria inmarcesible!.ogg.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:16,000 --> 00:00:20,700 ¡Oh gloria inmarcesible! 2 00:00:21,000 --> 00:00:26,500 ¡Oh júbilo inmortal! 3 00:00:27,300 --> 00:00:31,200 ¡En surcos d...'\",\n", + " 'text': '1\\n00:00:16,000 --> 00:00:20,700\\n¡Oh gloria inmarcesible!\\n\\n2\\n00:00:21,000 --> 00:00:26,500\\n¡Oh júbilo inmortal!\\n\\n3\\n00:00:27,300 --> 00:00:31,200\\n¡En surcos de dolores...\\n\\n4\\n00:00:31,300 --> 00:00:35,500\\n...el bien germina ya!\\n\\n5\\n00:00:36,000 --> 00:00:40,100\\n...el bien germina ya!\\n\\n6\\n00:00:40,300 --> 00:00:44,800\\n¡Oh gloria inmarcesible!\\n\\n7\\n00:00:45,000 --> 00:00:50,500\\n¡Oh júbilo inmortal!\\n\\n8\\n00:00:51,000 --> 00:00:54,200\\n¡En surcos de dolores...\\n\\n9\\n00:00:54,300 --> 00:00:59,500\\n...el bien germina ya!\\n\\n10\\n00:01:00,000 --> 00:01:09,500\\n¡Cesó la horrible noche! La libertad sublime...\\n\\n11\\n00:01:09,800 --> 00:01:18,500\\n...derrama las auroras de su invencible luz.\\n\\n12\\n00:01:18,700 --> 00:01:27,500\\nLa humanidad entera, que entre cadenas gime,\\n\\n13\\n00:01:27,900 --> 00:01:37,500\\ncomprende las palabras del que murió en la cruz.\\n\\n14\\n00:01:37,900 --> 00:01:37,500\\ncomprende las palabras del que murió en la cruz.\\n\\n15\\n00:01:55,000 --> 00:02:00,000\\n¡Oh gloria inmarcesible!\\n\\n16\\n00:02:00,200 --> 00:02:05,100\\n¡Oh júbilo inmortal!\\n\\n17\\n00:02:06,100 --> 00:02:09,200\\n¡En surcos de dolores...\\n\\n18\\n00:02:10,300 --> 00:02:15,500\\n...el bien germina ya!\\n\\n19\\n00:02:15,600 --> 00:02:19,400\\n...el bien germina ya!\\n\\n20\\n00:02:20,300 --> 00:02:24,000\\n¡Oh gloria inmarcesible!\\n\\n21\\n00:02:24,100 --> 00:02:28,500\\n¡Oh júbilo inmortal!\\n\\n22\\n00:02:29,000 --> 00:02:33,200\\n¡En surcos de dolores...\\n\\n23\\n00:02:33,300 --> 00:02:40,000\\n...el bien germina ya!',\n", + " 'bytes': 1449,\n", + " 'sha1': 'ipel0c5marn3m5aoeignoa9cc19qgq0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 133857487,\n", + " 'timestamp': '2014-09-06T04:03:51Z',\n", + " 'user': {'id': 4053268, 'text': 'Ravenpuff'},\n", + " 'page': {'id': 22859312,\n", + " 'title': 'Franz Schubert - Ellens dritter Gesang.oga.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1\\n00:00:20,000 --> 00:00:38,500\\nAve Maria! maiden mild!\\n\\n2\\n00:00:39,000 --> 00:00:47,500\\nListen to a maiden's prayer!\\n\\n3\\n00:00:48,000 --> 00:00:54,500\\nThou canst hear though from the wild,\\n\\n4\\n00:00:56,000 --> 00:01:07,000\\nThou canst save amid despair.\\n\\n5\\n00:01:09,500 --> 00:01:16,500\\nSafe may we sleep beneath thy care,\\n\\n6\\n00:01:17,000 --> 00:01:22,500\\nThough banished, outcast, and reviled—\\n\\n7\\n00:01:25,000 --> 00:01:33,000\\nMaiden! hear a maiden's prayer;\\n\\n8\\n00:01:34,000 --> 00:01:41,000\\nMother, hear a suppliant child!\\n\\n9\\n00:01:44,000 --> 00:01:54,500\\nAve Maria!\\n\\n10\\n00:02:09,000 --> 00:02:28,500\\nAve Maria! undefiled!\\n\\n11\\n00:02:29,000 --> 00:02:37,500\\nThe flinty couch we now must share\\n\\n12\\n00:02:38,000 --> 00:02:45,000\\nShall seem with down of eider piled,\\n\\n13\\n00:02:46,000 --> 00:02:57,500\\nIf thy protection hover there.\\n\\n14\\n00:03:00,000 --> 00:03:07,000\\nThe murky cavern's heavy air\\n\\n15\\n00:03:07,500 --> 00:03:14,500\\nShall breathe of balm if thou hast smiled;\\n\\n16\\n00:03:16,000 --> 00:03:24,000\\nThen, Maiden! hear a maiden's prayer,\\n\\n17\\n00:03:25,000 --> 00:03:32,500\\nMother, list a suppliant child!\\n\\n18\\n00:03:35,000 --> 00:03:45,000\\nAve Maria!\\n\\n19\\n00:04:00,000 --> 00:04:18,000\\nAve Maria! stainless styled!\\n\\n20\\n00:04:20,000 --> 00:04:28,500\\nFoul demons of the earth and air,\\n\\n21\\n00:04:29,000 --> 00:04:34,500\\nFrom this their wonted haunt exiled,\\n\\n22\\n00:04:36,500 --> 00:04:48,000\\nShall flee before thy presence fair.\\n\\n23\\n00:04:50,500 --> 00:04:57,500\\nWe bow us to our lot of care,\\n\\n24\\n00:04:58,500 --> 00:05:05,000\\nBeneath thy guidance reconciled:\\n\\n25\\n00:05:07,000 --> 00:05:14,500\\nHear for a maid a maiden's prayer,\\n\\n26\\n00:05:16,000 --> 00:05:23,500\\nAnd for a father hear a child!\\n\\n27\\n00:05:26,500 --> 00:05:37,500\\nAve Maria!\",\n", + " 'bytes': 1735,\n", + " 'sha1': '60rsxic7gomg5stmo53xojgasqg5xcq',\n", + " 'parent_id': 133849183,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 690357251,\n", + " 'timestamp': '2022-09-21T01:23:12Z',\n", + " 'user': {'id': 7917286, 'text': 'SCP-2000'},\n", + " 'page': {'id': 22881730,\n", + " 'title': 'The Impact Of Wikipedia.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/50.92.202.47|50.92.202.47]] ([[User talk:50.92.202.47|talk]]) to last revision by Achim55',\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia is non-profit, but it\\'s the #5 website in the world. All of the articles on Wikipedia are written by volunteers.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nWe would like to introduce you to a few of them...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nI’m from Nepal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nI’m from Iraq\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nI’m coming from India\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nI’m from Byram, New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nI live in Birmingham, England\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La Paz, Bolivia -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malaysia -- Milan in Italy -- South Africa\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPoland -- Japan -- Armenia\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrazil -- Russia -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael -- Uzbekistan -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul -- Mexico\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nAt the beginning of my joining to Wikipedia in 2008, I started many articles.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nOne of them, I think it was about a lady called Mariam Nour.\\xa0\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nWe didn’t have an article about it, so -- and this was my first article.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nSo I forget about it! \\xa0Maybe two or three years later, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nI passed by this article. \\xa0I was shocked. \\xa0\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMore than 100,000 people read this article. \\xa0\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nThey used it, so they got their information from this article. \\xa0They passed by this article, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nso you feel like you affected and influenced more than 100,000 people.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nI was just so terrified when I pushed the \\'edit\\' button for the first time. \\xa0\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nI thought, “Oh my god, I’m going to ruin everything!\\nThat can’t work! \\xa0I can’t do it!”\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia is an \\'open source\\' -- where everyone can throw in his or her idea \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nand then somebody else comes in and polishes on that idea to make it superb.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nThere are thousands of people working every day, every hour, every minute on Wikipedia to improve it.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nA lot of it is the volunteerism. \\xa0This is a unique way to volunteer.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nIt brings together both professionals and amateurs who have a love for a particular topic.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nThe people who had different opinions in the beginning start to collaborate.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nA lot of what you would assume a large Internet corporation would handle \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nis handled by volunteers like me.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nYou just can’t say, “Okay, I’m right, you’re wrong, this is my version of the article!”\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nIf there’s an issue of bias, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nthen somebody has probably flagged it and if not, now I can flag it too.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nYou’ve got hundreds and thousands of people seeing that \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nand correcting it.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nAnd then I push the button and\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom - The journey started and it was great.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nFirst I started with \\'Probability\\'. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nThe first article I started is \\'Probability\\'.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nOne of my main articles I wrote on Wikipedia was \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nthe article on stab wounds.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nI write about fly fishing, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontana history, National Park history, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nUnderutilized crops. Chess players. Biodiversity.\\xa0\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nMilitary history topics. Armenian history. Roman history.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nJudges. Communication. Biographies. Football.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIreland. Pennsylvania. Mostly photography.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Baking, because I love to bake.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nNuclear weapons and radioactivity, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nand whitewater kayaking.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nThere’s all this information that’s out there that’s kind of scattered\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nand we’re putting it together in one place.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nWe are offering free knowledge for everyone, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nin their own language so they can use it.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nEveryone is benefited by this whether they are rich or poor.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nFor-profit companies have different motivations and different requirements. \\xa0\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nFrom the Wikimedia Foundation, I don’t take a salary and I also don’t even take expenses.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nI think it’s very important that I’m able to say quite clearly, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nLook, when I’m asking you for money, I’m not asking you for money for myself --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nI’m asking you for money for the Foundation which is the team who supports this amazing community that I’m a part of.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nI think Wikipedia gave me this chance to really make a huge difference in the world.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nIt’s like an investment for your future, for your children’s future.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nThank You\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nThe content contained in this video is available under the Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) unless otherwise stated. This work is attributable to: Victor Grigas, Wikimedia Foundation.\\nThe views and opinions expressed in this video are solely those of the individuals appearing in the video and do not necessarily reflect the policies or positions of any company, organization, or institution the individual may be a member of.\\nThe trademarks and logos of the Wikimedia Foundation and any other organization are not included under the terms of this Creative Commons license. Wikimedia trademarks and logos, including \"Wikipedia\" and the puzzle globe logo, are registered trademarks of the Wikimedia Foundation. For more information, please see our Trademark Policy page,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nThis video is published under a Creative Commons license.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nLike Wikipedia, it is free to copy, remix & share.',\n", + " 'bytes': 6984,\n", + " 'sha1': '7smgfh6ytiu5arufdvpflphb9y7tn4h',\n", + " 'parent_id': 690354896,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83836128,\n", + " 'timestamp': '2012-11-28T14:14:27Z',\n", + " 'user': {'id': 636589, 'text': '-jem-'},\n", + " 'page': {'id': 22882473,\n", + " 'title': 'The Impact Of Wikipedia.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Full text review, splitting and formatting messages, adjusting times',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,000\\nWikipedia no tiene ánimo de lucro,\\npero es el 5.º web más visitado del mundo.\\nTodos los artículos de Wikipedia\\nson escritos por voluntarios.\\n\\n2\\n00:00:06,300 --> 00:00:11,200\\nNos gustaría presentarte a algunos de ellos...\\n\\n3\\n00:00:12,000 --> 00:00:13,100\\nSoy de Nepal.\\n\\n4\\n00:00:13,100 --> 00:00:14,400\\nSoy de Irak.\\n\\n5\\n00:00:14,400 --> 00:00:15,600\\nVengo de la India.\\n\\n6\\n00:00:15,600 --> 00:00:17,000\\nSoy de Byram, Nueva Jersey.\\n\\n7\\n00:00:17,000 --> 00:00:18,300\\nVivo en Birmingham, Inglaterra.\\n\\n8\\n00:00:18,300 --> 00:00:19,600\\nChicago, Illinois.\\n\\n9\\n00:00:19,600 --> 00:00:20,650\\nLa Paz, Bolivia.\\n\\n10\\n00:00:20,650 --> 00:00:21,600\\nNairobi, Kenia.\\n\\n11\\n00:00:21,600 --> 00:00:22,600\\nKuala Lumpur, Malasia.\\n\\n12\\n00:00:22,600 --> 00:00:23,600\\nMilán, en Italia.\\n\\n13\\n00:00:23,600 --> 00:00:24,500\\nSudáfrica.\\n\\n14\\n00:00:24,500 --> 00:00:25,000\\nPolonia.\\n\\n15\\n00:00:25,000 --> 00:00:25,600\\nJapón.\\n\\n16\\n00:00:25,600 --> 00:00:26,300\\nArmenia.\\n\\n17\\n00:00:26,300 --> 00:00:26,900\\nBrasil.\\n\\n18\\n00:00:26,900 --> 00:00:27,400\\nRusia.\\n\\n19\\n00:00:27,400 --> 00:00:28,100\\nBotsuana.\\n\\n20\\n00:00:28,100 --> 00:00:28,400\\nIsrael.\\n\\n21\\n00:00:28,400 --> 00:00:29,200\\nUzbekistán.\\n\\n22\\n00:00:29,200 --> 00:00:29,800\\nHong Kong.\\n\\n23\\n00:00:29,800 --> 00:00:30,500\\nEstambul.\\n\\n24\\n00:00:30,500 --> 00:00:31,200\\nMéxico.\\n\\n25\\n00:00:31,200 --> 00:00:32,400\\nChattanooga, Tennessee.\\n\\n26\\n00:00:32,900 --> 00:00:38,800\\nAl comienzo, cuando entré en Wikipedia,\\nen 2008, empecé muchos artículos.\\n\\n27\\n00:00:38,800 --> 00:00:44,200\\nUno de ellos, creo que trataba\\nsobre una mujer llamada Mariam Nour. \\n\\n28\\n00:00:44,200 --> 00:00:48,000\\nNo teníamos un artículo al respecto...\\ny ese fue mi primer artículo.\\n\\n29\\n00:00:48,100 --> 00:00:52,700\\nY, no me acuerdo bien,\\ntal vez dos o tres años después\\n\\n30\\n00:00:52,700 --> 00:00:57,000\\npasé por ese artículo y quedé impactada.\\n\\n31\\n00:00:57,100 --> 00:01:02,000\\nMás de 100 000 personas leyeron el artículo,\\n\\n32\\n00:01:02,100 --> 00:01:08,000\\nlo utilizaron, obtuvieron información\\nde ese artículo, pasaron por el artículo,\\n\\n33\\n00:01:08,100 --> 00:01:15,100\\nentonces te das cuenta de que afectaste\\ne influenciaste a más de 100 000 personas.\\n\\n34\\n00:01:15,100 --> 00:01:19,200\\nEstaba aterrada cuando pulsé\\nel botón «Editar» por primera vez.\\n\\n35\\n00:01:19,400 --> 00:01:24,000\\nPensaba: «¡Oh, Dios mío, voy a estropearlo todo!\\n¡No puede funcionar, no puedo hacerlo!».\\n\\n36\\n00:01:24,000 --> 00:01:29,000\\nWikipedia es código abierto,\\ndonde todos pueden lanzar su idea\\n\\n36\\n00:01:29,000 --> 00:01:34,300\\ny entonces viene alguien más\\ny mejora esa idea para hacerla magnífica.\\n\\n37\\n00:01:34,600 --> 00:01:36,700\\nHay miles de personas trabajando \\n\\n38\\n00:01:36,700 --> 00:01:40,400\\ncada día, cada hora, cada minuto,\\nen Wikipedia, para hacerla mejor.\\n\\n39\\n00:01:40,400 --> 00:01:44,000\\nEn su mayoría es voluntariado.\\nEs una manera única de ser voluntario.\\n\\n40\\n00:01:44,000 --> 00:01:49,000\\nReúne a profesionales y aficionados\\nque sienten amor por un tema concreto.\\n\\n41\\n00:01:49,100 --> 00:01:53,400\\nPersonas que al principio tienen\\ndiferentes opiniones, empiezan a colaborar.\\n\\n42\\n00:01:53,400 --> 00:01:58,800\\nMucho de lo que podrías suponer\\nque una gran empresa de Internet gestionaría\\n\\n43\\n00:01:58,800 --> 00:02:00,700\\nlo gestionan voluntarios como yo.\\n\\n44\\n00:02:00,700 --> 00:02:02,500\\nSimplemente no puedes decir:\\n\\n45\\n00:02:02,500 --> 00:02:04,900\\n«¡Vale, yo tengo razón, tú estás equivocado,\\nesta es mi versión del artículo!».\\n\\n46\\n00:02:04,900 --> 00:02:06,800\\nSi hay algún problema de neutralidad,\\n\\n47\\n00:02:06,800 --> 00:02:10,500\\nprobablemente alguien lo habrá marcado,\\ny si no, puedo hacerlo también yo ahora.\\n\\n48\\n00:02:10,500 --> 00:02:13,300\\nHay cientos y miles de personas viéndolo\\n\\n49\\n00:02:13,300 --> 00:02:14,700\\ny corrigiéndolo.\\n\\n50\\n00:02:14,700 --> 00:02:16,400\\nEntonces pulsé el botón y...\\n\\n51\\n00:02:16,400 --> 00:02:19,000\\n¡pam!, el viaje empezó, y fue fantástico.\\n\\n52\\n00:02:19,000 --> 00:02:21,300\\nPrimero empecé con «Probabilidad».\\n\\n53\\n00:02:21,300 --> 00:02:24,100\\nEl primer artículo que empecé fue «Probabilidad».\\n\\n54\\n00:02:24,100 --> 00:02:25,800\\nUno de los artículos más importantes\\nque escribí en Wikipedia\\n\\n55\\n00:02:25,800 --> 00:02:27,300\\nfue el artículo sobre heridas por arma blanca.\\n\\n56\\n00:02:27,300 --> 00:02:29,000\\nEscribo acerca de la pesca con mosca,\\n\\n57\\n00:02:29,001 --> 00:02:32,200\\nHistoria de Montana,\\nHistoria de los Parques Nacionales, Yellowstone...\\n\\n58\\n00:02:32,200 --> 00:02:33,500\\nCultivos infrautilizados.\\n\\n59\\n00:02:33,500 --> 00:02:34,500\\nJugadores de ajedrez.\\n\\n60\\n00:02:34,500 --> 00:02:35,500\\nBiodiversidad. \\n\\n61\\n00:02:35,500 --> 00:02:37,000\\nHistoria militar.\\n\\n62\\n00:02:37,000 --> 00:02:38,300\\nHistoria de Armenia.\\n\\n63\\n00:02:38,300 --> 00:02:39,100\\nHistoria Romana.\\n\\n64\\n00:02:39,100 --> 00:02:39,700\\nJueces.\\n\\n65\\n00:02:39,700 --> 00:02:40,700\\nComunicación.\\n\\n66\\n00:02:40,700 --> 00:02:41,400\\nBiografías.\\n\\n67\\n00:02:41,400 --> 00:02:42,100\\nFútbol.\\n\\n68\\n00:02:42,100 --> 00:02:42,800\\nIrlanda.\\n\\n69\\n00:02:42,800 --> 00:02:43,700\\nPensilvania.\\n\\n70\\n00:02:43,700 --> 00:02:44,900\\nLa mayoría, fotografía.\\n\\n71\\n00:02:44,900 --> 00:02:45,600\\nPink Floyd.\\n\\n72\\n00:02:45,600 --> 00:02:47,100\\nRepostería, porque me encanta hornear.\\n\\n73\\n00:02:47,100 --> 00:02:50,200\\nArmas nucleares y radioactividad,\\n\\n74\\n00:02:50,200 --> 00:02:52,500\\ny piragüismo en aguas bravas.\\n\\n75\\n00:02:52,500 --> 00:02:56,000\\nTenemos toda esa información\\nahí afuera, tan dispersa,\\n\\n76\\n00:02:56,000 --> 00:02:58,900\\ny nosotros la recopilamos en un lugar.\\n\\n77\\n00:02:58,900 --> 00:03:03,200\\nEstamos ofreciendo conocimiento libre para todos,\\n\\n78\\n00:03:03,600 --> 00:03:07,000\\nen su propio lenguaje, para que puedan utilizarlo.\\n\\n79\\n00:03:07,501 --> 00:03:11,500\\nTodos se benefician, sean ricos o pobres.\\n\\n80\\n00:03:11,500 --> 00:03:15,500\\nLas compañías comerciales tienen\\nmotivaciones diferentes y necesidades diferentes.\\n\\n81\\n00:03:15,800 --> 00:03:22,300\\nEn la Fundación Wikimedia, no tengo salario\\ny ni siquiera cargo gastos.\\n\\n82\\n00:03:22,300 --> 00:03:25,500\\nCreo que es muy importante decirlo bastante claro:\\n\\n83\\n00:03:25,500 --> 00:03:30,500\\nCuando te pido dinero, no te estoy pidiendo dinero para mí;\\n\\n84\\n00:03:30,500 --> 00:03:36,000\\nte pido dinero para la Fundación, que es el equipo\\nque apoya a esta increíble comunidad de la que formo parte.\\n\\n85\\n00:03:36,500 --> 00:03:41,600\\nCreo que Wikipedia me da la oportunidad\\nde hacer realmente un mundo muy diferente.\\n\\n86\\n00:03:41,600 --> 00:03:47,400\\nEs como una inversión en tu futuro,\\nen el futuro de tus hijos.\\n\\n87\\n00:03:53,200 --> 00:03:56,800\\nGracias.\\n\\n88\\n00:03:59,900 --> 00:04:03,000\\nEl contenido de este video está disponible bajo la licencia\\nCreative Commons Reconocimiento-Compartir Igual v3.0\\n(http://creativecommons.org/licenses/by-sa/3.0/deed.es_ES).\\nEste trabajo es obra de: Victor Grigas, Fundación Wikimedia.\\n\\nLos puntos de vista y opiniones expresadas en este video son responsabilidad exclusiva de las personas que aparecen en él, y no reflejan necesariamente las políticas o la posición de ninguna empresa, organización, o institución de la que esa persona pueda formar parte.\\nLas marcas comerciales y logotipos de la Fundación Wikimedia y cualquier otra organización no están incluidos en los términos de la licencia de Creative Commons. Las marcas y logotipos de Wikimedia, incluyendo «Wikipedia» y el logotipo del globo rompecabezas, son marcas registradas de la Fundación Wikimedia. Se puede obtener más información en nuestra Política de Marcas http://www.wikimediafoundation.org/wiki/Trademark_Policy o escribiendo a trademarks@wikimedia.org.\\n\\n89\\n00:04:03,400 --> 00:04:05,800\\nEste video se ha publicado\\nbajo una licencia Creative Commons.\\n\\n90\\n00:04:05,800 --> 00:04:09,000\\nComo Wikipedia, puedes copiarlo,\\nmodificarlo y compartirlo libremente.',\n", + " 'bytes': 7814,\n", + " 'sha1': '6iom48hb4af1wfb28y90tkt8dcoubj3',\n", + " 'parent_id': 83789799,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83912600,\n", + " 'timestamp': '2012-11-29T18:00:19Z',\n", + " 'user': {'id': 1287609, 'text': 'Netha Hussain'},\n", + " 'page': {'id': 22883168,\n", + " 'title': 'The Impact Of Wikipedia.webm.ml.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nവിക്കിപീഡിയ ഒരു ലാഭേതര സംഘടനയാണു്. പക്ഷേ അതു് ലോകത്തിലെ അഞ്ചാമത്തെ വെബ്\\u200cസൈറ്റാണു്. വിക്കിപീഡിയയിലെ എല്ലാ ലേഖനങ്ങളും എഴുതിയിരിക്കുന്നതു് സന്നദ്ധപ്രവര്\\u200dത്തകരാണു്.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nകുറച്ചുപേരെ നമുക്കു് പരിചയപ്പെടാം...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nഞാന്\\u200d നേപ്പാളില്\\u200d നിന്നാണു്.\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nഞാന്\\u200d ഇറാഖില്\\u200d നിന്നു്\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nഞാന്\\u200d ഇന്ത്യയില്\\u200d നിന്നും വരുന്നു.\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nഞാന്\\u200d ന്യൂജേഴ്സിയിലെ ബ്രയാമില്\\u200d നിന്നും\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nഞാന്\\u200d ഇംഗ്ലണ്ടിലെ ബിര്\\u200dമിങ്ങാമിലാണു്.\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nചിക്കാഗോ, ഇല്ലിനോയി -- ലാ പാസ്, ബൊളീവിയ -- നെയ്\\u200cറോബി, കെനിയ\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nകുലാലമ്പൂര്\\u200d, മലേഷ്യ -- ഇറ്റലിയിലെ മിലാന്\\u200d -- ദക്ഷിണാഫ്രിക്ക\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nപോളണ്ട് -- ജപ്പാന്\\u200d -- അര്\\u200dമീനിയ\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nബ്രസീല്\\u200d -- റഷ്യ--ബോത്സ്വാന\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nഇസ്രായേല്\\u200d -- ഉസ്ബെക്കിസ്താന്\\u200d - ഹോങ്കോങ്ങ്\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nഇസ്താംബുള്\\u200d -- മെക്സിക്കോ\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nചാഠനൂഗ,ടെന്നസ്സി\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nവിക്കിപീഡിയയില്\\u200d 2008 ല്\\u200d ചേര്\\u200dന്നതിനുശേഷം ഞാന്\\u200d നിരവധി ലേഖനങ്ങള്\\u200d തുടങ്ങി\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nഅതിലൊന്നു്, മറിയം നൂര്\\u200d എന്ന ഒരു വനിതയെക്കുറിച്ചായിരുന്നെനു തോന്നുന്നു.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nഅവരെക്കുറിച്ചു് ലേഖനമൊന്നും ഉണ്ടായിരുന്നില്ല. അതുകൊണ്ടു് -- ഇതെന്റെ ആദ്യത്തെ ലേഖനമായിരുന്നു.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nപിന്നെ ഞാനതിനെപ്പറ്റി ഓര്\\u200dത്തതേയില്ല!, രണ്ടോ മൂന്നോ കൊല്ലം കഴിഞ്ഞാണെന്നു തോന്നുന്നു,\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nഈ ലേഖനം പിന്നെയും ഞാന്\\u200d നോക്കി, ഞാന്\\u200d ഞെട്ടിപ്പോയി\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nഒരു ലക്ഷത്തോളം പേര്\\u200d ആ ലേഖനം വായിച്ചിരിക്കുന്നു.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nഅവരതുപയോഗിച്ചു, അവരതില്\\u200d നിന്നും കാര്യങ്ങള്\\u200d മനസ്സിലാക്കി, അവരാ ലേഖനത്തിലൂടെ കടന്നുപോയി,\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nഒരു ലക്ഷത്തിലധികം പേര്\\u200dക്കു് എന്തെങ്കിലും ചെയ്തെന്ന തോന്നലുണ്ടായി എനിക്കു്.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nആദ്യമായി \\'എഡിറ്റ്\\' ബട്ടണ്\\u200d ഞെക്കിയപ്പോ എനിക്കു് വളരെ പേടിയയിരുന്നു.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nഞാന്\\u200d വിചാരിച്ചു, \"ദൈവമേ, ഞാനിതൊക്കെ കുളമാക്കാന്\\u200d പോകുന്നു.! \\nഇതു് ശരിയാവില്ല, എനിക്കു് വയ്യ\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nവിക്കിപീഡിയ ഓപ്പണ്\\u200d സോഴ്സ് ആണു് -- എല്ലാവര്\\u200dക്കും അവരുടെ ആശയങ്ങള്\\u200d പ്രകടിപ്പിക്കാനുള്ള ഇടം\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nപിന്നെ, വേറെയാരെങ്കിലും അതിനെ മിനുക്കിയെടുത്തു് നന്നാക്കുന്നു.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nഎല്ലാ ദിവസവും, എല്ലാ മണിക്കൂറും, എല്ലാ മിനിറ്റൂം ആയിരക്കണക്കിനാളുകള്\\u200d വിക്കിപീഡിയ പുതുക്കിക്കൊണ്ടിരിക്കുന്നു.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nഇതിലേറെയും സന്നദ്ധപ്രവര്\\u200dത്തകരാണു്. സന്നദ്ധപ്രവര്\\u200dത്തനത്തിനുള്ള അനന്യമായ ഒരു മാതൃക.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nപ്രൊഫഷണലുകളെയും അമേച്വറകളെയും ഒരു പോലെ അവര്\\u200dക്കിഷ്ടമുള്ള വിഷയത്തില്\\u200d ഒരുമിപ്പിക്കുന്നു.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nസഹകരിച്ചു തുടങ്ങും മുന്നെ ഇവര്\\u200dക്കു് പല അഭിപ്രായങ്ങള്\\u200d ഉണ്ടായിരുന്നിരിക്കാം\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nഒരു വമ്പന്\\u200d ഇന്റര്\\u200dനെറ്റ് കോര്\\u200dപ്പറേഷന്\\u200d ചെയ്യണമെന്നു എന്നു നിങ്ങള്\\u200d കരുതുന്ന കാര്യങ്ങള്\\u200d\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nഎന്നെപ്പോലെയുള്ള സന്നദ്ധപ്രവര്\\u200dത്തകരാണു് ചെയ്യുന്നത്\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\n\"ഉം, ഞാന്\\u200d പറഞ്ഞതാ ശരി, നീ പറഞ്ഞപോലെയല്ല, ഇതെന്റെ ലേഖനമാണു്!\" എന്നു് നിങ്ങള്\\u200dക്കു് പറയാന്\\u200d പറ്റില്ല.\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nഎന്തെങ്കിലും പക്ഷപാതിത്വമുണ്ടായാല്\\u200d,\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nആരെങ്കിലും അതു ചൂണ്ടിക്കാട്ടിയിരിക്കും, അല്ലെങ്കില്\\u200d നിങ്ങള്\\u200dക്കുമാവാം\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nഇങ്ങനെ നൂറുകണക്കിനാളുകള്\\u200d ഇതുകണ്ടു്\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nതിരുത്തിയിരിക്കുന്നു.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nഅങ്ങനെ ഞാന്\\u200d ബട്ടന്\\u200d ഞെക്കി,\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nബും- യാത്ര തുടങ്ങിയിരിക്കുന്നു, രസകരമായ യാത്ര.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nഞാനാദ്യം \\'സംഭാവ്യത\\' എന്ന ലേഖനം തുടങ്ങി\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nഞാനാദ്യം \\'സംഭാവ്യത\\' എന്ന ലേഖനം തുടങ്ങി\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nവിക്കിപീഡിയയില്\\u200d ഞാനെഴുതിയ ആദ്യ ലേഖനങ്ങളിലൊന്നു്\\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nstab wounds നെ കുറിച്ചായിരുന്നു.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nഞാന്\\u200d Fly fishing നെക്കുറിച്ചെഴുതി\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nമൊണ്ടാന ചരിത്രം, നാഷണല്\\u200d പാര്\\u200dക്ക് ചരിത്രം, യെല്ലോസ്റ്റോണ്\\u200d\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nUnderutilized crops. ചെസ്സ് കളിക്കാർ. ജൈവവൈവിദ്ധ്യം\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nപട്ടാള ചരിത്ര വിഷയങ്ങൾ. അർമേനിയൻ ചരിത്രം. റോമാചരിത്രം.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nനീതിപാലകർ. ആശയവിനിമയം. ജീവചരിത്രങ്ങൾ. ഫുട്ബോൾ. \\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nഐർലാൻഡ്. പെനിസിൽവാനിയ. ഫോട്ടോഗ്രഫിയാണ് കൂടുതലും.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nപിങ്ക് ഫ്ലോയ്ഡ്. പാചകം. ഞാൻ പാചകം ഇഷ്ടപ്പെടുന്നു.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nഅണുവായുധങ്ങളെക്കുറിച്ചും റേഡിയോആകിടിവിറ്റിയെക്കുറിച്ചും\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nwhitewater kayaking നെക്കുറിച്ചു്\\n\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nഈ വിവരങ്ങളെല്ലാം പലയിടത്തായി ചിതറിക്കിടക്കുന്നു.\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nഞങ്ങള്\\u200d അതെല്ലാം ഒരിടത്തു് കൂട്ടിവെയ്ക്കുന്നു.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nഞങ്ങള്\\u200d എല്ലാവര്\\u200dക്കും സ്വതന്ത്രവും സൌജന്യവുമായ അറിവു് വാഗ്ദാനം ചെയ്യുന്നു.\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nഅവരവരുടെ ഭാഷകളില്\\u200d ഉപയോഗിക്കാനായി.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nപണക്കാരനോ പാവപ്പെട്ടവനോ എന്ന വ്യത്യാസമില്ലാതെ, എല്ലാവര്\\u200dക്കും ഉപകാരപ്പേടുന്നു.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nലാഭത്തിനു വേണ്ടി പ്രവര്\\u200dത്തിക്കുന്ന കമ്പനികള്\\u200dക്കു് പലതരം ലക്ഷ്യങ്ങളും ആവശ്യങ്ങളുമുണ്ടാവാം.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nവിക്കിമീഡിയ ഫൌണ്ടേഷനില്\\u200d നിന്നും ഞാന്\\u200d ശമ്പളം വാങ്ങുന്നില്ല, ഒരു ചെലവും വാങ്ങുന്നില്ല\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nഞാന്\\u200d വ്യക്തമാക്കി പറയുകയാണു്,\\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nനോക്കൂ, ഞാന്\\u200d പണം ചോദിക്കുമ്പോള്\\u200d, അതെനിക്കു വേണ്ടിയല്ല --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nഞാന്\\u200d ഫൌണ്ടേഷനുവേണ്ടി ധനസഹായം അഭ്യര്\\u200dത്ഥിക്കുകയാണു്. ഞാനംഗമായ വിസ്മയകരമായ കൂട്ടായ്മയെ താങ്ങിനിര്\\u200dത്തുന്ന സംഘടനയ്ക്കുവേണ്ടി.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nഈ ലോകത്തില്\\u200d വലിയൊരു മാറ്റമുണ്ടാക്കാന്\\u200d വിക്കിപീഡിയ എനിക്കവസരമുണ്ടാക്കി എന്നു ഞാന്\\u200d കരുതുന്നു.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nഭാവിയിലേക്കുള്ള ഒരു കരുതിവെയ്പ്പ്, നിങ്ങളുടെ മക്കള്\\u200dക്കും ഭാവിക്കും വേണ്ടി.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nനന്ദി\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nമറ്റ് നിബന്ധനകളൊന്നും ചേർക്കാത്തപക്ഷം ഈ വീഡിയോ ക്രിയേറ്റീവ് കോമണ്\\u200dസ് ആട്രിബ്യൂഷൻ ഷെയർ അലൈക് ലൈസൻസ് 3.0 ൽ ലഭ്യമാവുന്നതാണ് (http://creativecommons.org/licenses/by-sa/3.0). ഈ രചന വിക്കിമീഡിയ ഫൗണ്ടേഷനിലെ വിക്ടർ ഗ്രിഗാസിന് അവകാശപ്പെട്ടതാണ്.\\nഈ വീഡിയോവിൽ പ്രകടിപ്പിക്കപ്പെട്ട അഭിപ്രായങ്ങൾ ഇതിൽ പ്രത്യക്ഷപ്പെട്ട വ്യക്തികളുടെ മാത്രമാണ്. ഇവ ഈ വ്യക്തികൾ അംഗമായ കമ്പനികളുടെയോ, സംഘടനകളുടെയോ, സ്ഥാപനങ്ങളുടെയോ നയങ്ങളെ എല്ലായ്പ്പോഴും പ്രതിനിധീകരിക്കുന്നതല്ല.\\nവിക്കിമീഡിയ ഫൗണ്ടേഷന്റെയോ മറ്റ് സംഘടനകളുടെയോ വ്യാപാരമുദ്ര ക്രിയേറ്റീവ് കോമൺസ് ലൈസൻസിന്റെ പരിധിയിൽ വരുന്നതല്ല. വിക്കിപീഡിയ സമസ്യാഗോളം അടക്കമുള്ള വിക്കിമീഡിയ വ്യാപാരമുദ്രകളും ലോഗോകളും വിക്കിമീഡിയ ഫൗണ്ടേഷന്റെ റജിസ്റ്റർ ചെയ്ത ട്രേഡ്മാർക്കുകളാണ്. കൂടുതൽ വിവരങ്ങൾക്കായി ഞങ്ങളുടെ ട്രേഡ്മാർക്ക് പോളിസി പേജ് (http://www.wikimediafoundation.org/wiki/Trademark_Policy) കാണുക, അല്ലെങ്കിൽ contact trademarks@wikimedia.org എന്ന വിലാസത്തിൽ മെയിൽ അയയ്ക്കുക.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nഈ വീഡിയോ ക്രിയേറ്റീവ് കോമണ്\\u200dസ് ലൈസന്\\u200dസില്\\u200d പ്രസിദ്ധീകരിച്ചിരിക്കുന്നു.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nവിക്കിപീഡിയപോലെ, നിങ്ങള്\\u200dക്കിതു് സ്വതന്ത്രമായി പകര്\\u200dത്താം, കലര്\\u200dത്താം, പങ്കുവെയ്ക്കാം.',\n", + " 'bytes': 15356,\n", + " 'sha1': 'ju6hhnlkggz4jqnqe80gwu52vseakl5',\n", + " 'parent_id': 83911939,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 181468670,\n", + " 'timestamp': '2015-12-09T20:44:47Z',\n", + " 'user': {'id': 2374816, 'text': 'Esetok'},\n", + " 'page': {'id': 22884829,\n", + " 'title': 'The Impact Of Wikipedia.webm.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"\\n1\\n00:00:00,000 --> 00:00:05,000\\nВикипедия\\xa0— некоммерческий проект, но она\\xa0— пятый по популярности веб-ресурс в мире. Все статьи Википедии созданы волонтёрами.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nМы хотим представить вам некоторых из них…\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nЯ из Непала\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nЯ из Ирака\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nЯ прибыла из Индии\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nЯ из Байрама, Нью-Джерси\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nЯ живу в Бирмингеме, Англия\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nЧикаго, Иллинойс — Ла-Пас, Боливия — Найроби, Кения\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nКуала Лумпур, Малайзия — Милан, Италия — Южная Африка\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nПольша — Япония — Армения\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nБразилия — Россия — Ботсвана\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nИзраиль — Узбекистан — Гонконг\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nСтамбул (Турция) -- Мексика\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nЧаттануга, штат Теннесси\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nВ начале моего участия в Википедии, в 2008 году, я создала много новых статей.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nОдна из них, помнится, была о леди по имени Марьям Нур. \\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nУ нас не было статьи о ней, и это была первая статья, которую я написала.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nПотом я забыла о ней! Может быть два или три года спустя \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nЯ вновь нашла её. Я была в шоке. \\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nЭту статью прочитали более ста тысяч человек. \\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nОни использовали её, получали информацию из этой статьи. Они читали её, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nтак что у тебя появляется чувство, что ты помогла и повлияла более, чем на сто тысяч людей.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nМне было очень страшно, когда я нажала кнопку 'Править' в первый раз. \\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nЯ думала, «Боже мой, Я же всё сломаю!\\nЭто не будет работать! Я не смогу сделать это!»\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nВикипедия — проект с открытым кодом — где каждый может предложить свою идею \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nи тогда кто-то ещё придёт и отполирует эту идею до совершенства.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nТысячи людей работают каждый день, каждый час, каждую минуту над улучшением Википедии.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nПодавляющее большинство из них - добровольцы. Это уникальный способ волонтёрства.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nОн собирает вместе и профессионалов, и любителей, увлечённых конкретной темой.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nЛюди, поначалу имеющие различные мнения, начинают сотрудничать в своей работе.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nБольшинство из того, что, как можно предположить, управляется большой Интернет-корпорацией,\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nуправляется волонтёрами, такими как я.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nТы не можешь просто сказать: «Окей, я\\xa0— прав, а ты\\xa0— нет, и вот моя версия этой статьи».\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nЕсли возникает подозрение в предвзятости, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nто кто-нибудь ставит пометку об этом, а если нет — то я сам могу её поставить.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nЭту пометку увидят сотни и тысячи людей \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nи исправят проблему.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nИ тогда я жму на кнопку\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nБум! — Путешествие началось, и это было здорово.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nСперва я начала с «Вероятности».\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nПервой статьёй, которую я создала, была «Вероятность».\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nОдна из главных для меня статей, написанных мной в Википедии\\n\\n42\\n00:02:26,001 --> 00:02:27,400\\n— статья о ножевых ранениях.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nЯ пишу о ловле рыбы на муху, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nИстория Монтаны, история Национального Парка, Йеллоустон.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nНедоиспользуемые культуры. Шахматисты. Биоразнообразие. \\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nТемы по военной истории. История Армении. История Рима.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nСудьи. Коммуникация. Биографии. Футбол.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nИрландия. Пенсильвания. В основном — о фотографии.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Выпечка, потому, что я люблю готовить.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nЯдерное оружие и радиация, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nи каякинг в горных реках.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nВся эта информация где-то есть, но она разбросана по кусочкам\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nи мы собираем её всю в одном месте.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nМы предлагаем свободное знание каждому, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nна родном языке, чтобы его можно было использовать.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nКаждый получает от этого выгоду, будь он беден или богат.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nУ коммерческих компаний есть разные мотивации и разные требования. \\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nЯ не получаю зарплаты от Фонда Викимедиа, но я также не несу расходов.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nЯ думаю, что это очень важно, что я могу с чистой совестью сказать: \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\n«Послушайте, когда я обращаюсь к вам за деньгами, я не прошу у вас денег для себя --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nЯ прошу у вас деньги для Фонда, команды, которая поддерживает это потрясающее сообщество, частью которого я являюсь.»\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nЯ думаю, что Википедия дала мне шанс реально здорово изменить мир.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nЭто как инвестиция в твоё будущее, в будущее твоих детей.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nСпасибо ВАМ\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nСодержимое этого видео доступно под лицензией Creative Commons Attribution-ShareAlike v3.0 (http://creativecommons.org/licenses/by-sa/3.0), если не сказано иного. Аттрибуция этой работы: Виктор Григас, Фонд Викимедиа.\\nВзгляды и мнения, высказанные в этом видео, являются исключительно мнениями лиц, показанных в этом видео, и не обязательно отражают политику и позицию любой компании, организации или другой структуры, членом которой является та или иная показанная персона.\\nТорговые марки и логотипы Фонда Викимедиа и любых других организаций не подпадают под условия этой лицензии Creative Commons. Торговые марки и логотипы Wikimedia, включая «Wikipedia» и логотип с глобусом-паззлом, являются зарегистрированными торговыми марками Фонда Викимедиа. Для получения дополнительной информации, пожалуйста, посетите нашу страницу Trademark Policy,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy или свяжитесь с нами по адресу trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nЭто видео опубликовано под лицензией Creative Commons.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nКак и Википедию, его можно копировать, перерабатывать и распространять.\",\n", + " 'bytes': 10393,\n", + " 'sha1': '9fha3uq2xpsbflhwf0hvjt03zg6au1m',\n", + " 'parent_id': 83794846,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83833651,\n", + " 'timestamp': '2012-11-28T13:28:41Z',\n", + " 'user': {'id': 1895191, 'text': 'Ezalvarenga'},\n", + " 'page': {'id': 22889124,\n", + " 'title': 'The Impact Of Wikipedia.webm.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nA Wikipédia é sem fins lucrativos, mas é o website número 5 no mundo. Todos artigos da Wikipédia são escritos por voluntários.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nE nós gostaríamos de apresentar para vocês alguns deles...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nEu sou do Nepal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nEu sou do Iraque\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nEu venho da Índia\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nEu sou de Byram, New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nEu moro em Birmingham, Inglaterra\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La Paz, Bolívia -- Nairóbi, Quênia\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malásia -- Milão na Itália -- África do Sul\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolônia -- Japão -- Armênia\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrasil -- Rússia -- Botsuana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael -- Usbequistão -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstambul -- México\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nQuando comecei a editar a Wikipédia em 2008, iniciei vários artigos.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nUm deles, acho que era sobre uma senhora chamada Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nNão tínhamos um artigo sobre ela, e foi o meu primeiro artigo.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nEntão eu esqueci dele! Uns dois ou três anos depois, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nEu passei pelo artigo. Fiquei chocada. \\xa0\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMais de 100.000 pessoas haviam lido o artigo. \\xa0\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nUsaram ele, pegaram informações desse artigo. Eles passaram por esse artigo, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nentão você se sente tendo influenciado mais de 100.000 pessoas.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nEu estava com muito medo quando apertei em \\'editar\\' pela primeira vez.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nPensei, \"Ah meu deus, vou arruinar tudo!\\nIsso não pode funcionar! Eu não consigo!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nA Wikipédia é aberta -- todo mundo pode dar a sua ideia\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\ne outra pessoa vem e melhora aquela ideia para torná-la fantástica.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nHá milhares de pessoas trabalhando todo dia, toda hora, todos os minutos na Wikipédia para melhorá-la.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nMuito disso é voluntariado. Essa é uma maneira única de voluntariar.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nReúne profissionais e amadores que tem afinco por um determinado assunto.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nPessoas que tinham opiniões diferentes no começo passam a colaborar.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nMuito do que se imagina que uma grande corporação da Internet faria\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\né feito por voluntários como eu.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nVocê não pode dizer, \"Ok, eu estou certo, você errado, essa é a minha versão do artigo!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nSe há um problema de parcialidade,\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nentão alguém provavelmente já marcou e senão, agora eu também posso marcar.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nHá centenas e milhares de pessoas vendo isso\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\ne corrigindo.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nE aí eu aperto o botão e\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\npronto! - A jornada começou e foi ótima.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nPrimeiro comecei com \\'Probabilidade\\'.\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nO primeiro artigo que eu comecei foi \\'Probabilidade\\'.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nUm dos principais artigos que eu escrevi na Wikipédia foi\\n\\n42\\n00:02:26,001 --> 00:02:27,400\\no artigo sobre facadas.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nEu escrevo sobre \\'pesca com mosca\\',\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nsobre a história de Montada, a história de parques nacionais, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nCulturas subutilizadas. Jogadores de xadrez. Biodiversidade.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nTópicos de história militar. História armênia. História romana.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nJuízes. Comunicação. Biografias. Futebol.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrlanda. Pensilvaniana. Principalmente fotografia.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Culinária, porque amo cozinhar.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nArmas nucleares e radioatividade, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\ne caiaque de corredeiras.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nHá toda essa informação lá fora que está difusa\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\ne estamos colocando ela em um lugar só.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nEstamos oferecendo conhecimento de graça para todos,\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nem sua própria língua para que possam usar.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nTodos são beneficiados por isso, quer sejam ricos ou pobres.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nEmpresas que visam lucro possuem motivações diferentes e diferentes requisitos.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nA Wikimedia Foundation não me paga um salário, nem diárias.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nPenso que é muito importante que eu posso dizer claramente, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nquando estou lhe pedindo dinheiro, não estou pedindo dinheiro para mim --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nEstou pedindo dinheiro para a Wikimedia Fundation que é a equipe que apoia essa incrível comunidade da qual eu faço parte.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nEu acho que a Wikipédia me deu essa chance de realmente fazer uma grande diferença no mundo.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nÉ como um investimento no seu futuro, no futuro de seus filhos.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nObrigado\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nO conteúdo desse vídeo está disponível sob a licença Atribuição-Compartilhamento pela mesma Licença 3.0 Unported (CC-BY-SA) salve se apontado de outra forma. Esse trabalho é atribuível a: Victor Grigas, Wikimedia Foundation.\\nAs visões e opiniões expressas nesse vídeo são somente dos indivíduos aparecendo no vídeo e não necessariamente refletem as políticas ou posições de qualquer companhia, organização ou instituição que o indivíduo possa pertencer.\\nAs marcas e logotipos da Wikimedia Foundation e de qualquer outra organização não estão inclusas nos termos dessa licença Creativa Commons. Marcas e logotipos da Wikimedia, incluindo \"Wikipedia\" e o logotipo de globo em quebra-cabeça, são marcas registradas da Wikimedia Foundation. Para mais informações por favor veja a nossa política de uso de marcas, http://www.wikimediafoundation.org/wiki/Trademark_Policy ou contate trademarks@wikimedia.org\\n\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nEste vídeo está publicado sob uma licença Creative Commons.\\n\\n67\\n00:04:05,001 --> 00:04:09,000\\nComo a Wikipédia, ele é livre para copiar, remixar e compartilhar.',\n", + " 'bytes': 6945,\n", + " 'sha1': 'eiv1yxparjmzjyh60x2iw28gjmujleh',\n", + " 'parent_id': 83793059,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83824455,\n", + " 'timestamp': '2012-11-28T10:29:25Z',\n", + " 'user': {'text': '193.196.166.161'},\n", + " 'page': {'id': 22895299,\n", + " 'title': 'The Impact Of Wikipedia.webm.he.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nויקיפדיה הוא אתר ללא רווח, אולם הוא האתר המדורג במקום החמישי בעולם. כל הערכים בו נכתבים על ידי מתנדבים.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nאנו רוצים להציג בפניך כמה מהם...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nאני מנפאל\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nאני מעיראק\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nאני מביראם, ניו ג\\'רזי\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nאני גר בברימינגטון, אנגליה\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nאני מתגורר בבירנגהאם, אנגליה\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nשיקגו, אילינו -- לה פאז, בוליביה -- ניירובי, קניה\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nקואלה לאמפור, מלזיה -- מילאן, איטליה, -- דרום אפריקה\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nפולין -- יפן -- אמריקה\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nברזיל -- רוסיה -- בוסטואנה\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nישראל - אוזבקיסטן -- הונג קונג\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nאיסטנבול -- מקסיקו\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nטנסי\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nעם הצטרפותי לויקיפדיה ב-2008, התחלתי עם המון ערכים.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nאחד מהם, אם אינני טועה, היה על אישה בשם מרים נור.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nלא היה לנו ערך עליה, אז -- היא הפכה להיות הערך הראשון שלי.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nושכחתי מזה! שנתיים או שלושה לאחר מכן, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nנכנסתי לערך הזה במקרה. הייתי בשוק.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nיותר מ-100,000 אנשים קראו את הערך!\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nהם קראו אותו, והם קיבלו את האינפורמציה שהם היו זקוקים לה מהערך. הם קראו את הערך הזה, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nהתחושה היא שהשפעתי במידה מסויימת על למעלה מ-100,000 אנשים.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nכשלחצתי על כפתור \"עריכה\" בפעם הראשונה, חששתי נורא.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nחשבתי, \"אלוהים ישמור, אני הולך להרוס הכל! זה לא יעבוד! אני לא יכול לעשות את זה!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nויקיפדיה היא מה שנקרא, \"מקור פתוח\" -- מקום שבו כל אחד יכול לזרוק כל רעיון שיש לו או לה \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nלאחר מכן יבוא אדם אחר וילטש את הרעיון המקורי מתוך מטרה לשפר אותו ולהפוך אותו לטוב יותר.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nאלפי אנשים עובדים בויקיפדיה כל יום, כל שעה, כל דקה, כדי לשפר אותה ולייעל אותה.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nרבים מהם הם מתנדבים. זוהי דרך ייחודית להתנדב.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nויקיפדיה מאחדת הן אנשי מקצוע והן חובבנים התורמים לה בתחומי העניין השונים שלהם.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nאותם אנשים שהיו להם דעות שונות בתחילה, מתחילים לשתף פעולה.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nהרבה ממה שהיית משער שתאגיד אינטרנטי יכול לטפל בו \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nמטופל על ידי מתנדבים, כמוני.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nאתה יכול לומר, \"אוקיי, אני צודק, אתה טועה, זוהי גירסת הערך שלי!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nאם ישנו נושא שיש בו הטיה \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nייתכן שייכנס לעובי הקורה עורך כלשהו. אם לא, אני יכול לעשות זאת.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nישנם מאות ואלפי אנשים שרואים זאת \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nויכולים לתקן במקרה ונפלה טעות.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nואז אני לוחץ על הכפתור\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nובום - המסע מתחיל, והוא היה נפלא.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nבתחילה התחלתי עם \"הסתברות\". \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nהערך הראשון שהתחלתי איתו היה \"הסתברות\".\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nאחד הערכים הראשונה שכתבתי בויקיפדיה היה \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nערך על פצעי דקירה.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nכתבתי על דיג זבובים, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nהיסטוריית מונטנה, היסטוריית הפארק הלאומי, ילוסטון.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nגידולים לא מנוצלים. שחקני שחמט. מגוון ביולוגי.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nנושאים בהיסטוריה צבאית. היסטוריה של אמריקה. היסטוריה של רומא.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nשופטים. תקשורת. ביוגרפיות. כדורגל.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nאירלנד. פנסילבניה. בעיקר צילום.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nפינק פלויד. אפייה, כי אני אוהב לאפות.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nנשק גרעיני ורדיואקטיביות, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nורפטינג.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nהמידע הזה קיים, אבל הוא מפוזר\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nואנו שמים את הכל במקום אחד.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nאנחנו מציעים ידע בחינם עבור כל מי שרוצה, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nבכל שפה\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nכל אחד יכול להשתמש במידע זה, בין אם הוא עני ובין אם הוא עשיר.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nחברות הפועלות למען רווחים הן בעלות אינטרסים כאלה או אחרים.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nאיני לוקח מקרן ויקימדיה משכורת ואפילו לא הוצאות.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nאני חושב שזה חשוב מאד שאני יכול לומר זאת בבהירות, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nראה, כשאני מבקש כסף, איני מבקש כסף עבור עצמי --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nאני מבקש ממך כסף עבור הקרן אשר תומכת בקהילה המדהימה שאני חלק ממנה.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nאני חושב שויקיפדיה נתנה לי את ההזדמנות לעשות שינוי משמעותי בעולם.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nזה כמו השקעה בעתיד שלך, בעתיד של ילדיך.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nתודה רבה\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nThe content contained in this video is available under the Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) unless otherwise stated. This work is attributable to: Victor Grigas, Wikimedia Foundation.\\nThe views and opinions expressed in this video are solely those of the individuals appearing in the video and do not necessarily reflect the policies or positions of any company, organization, or institution the individual may be a member of.\\nThe trademarks and logos of the Wikimedia Foundation and any other organization are not included under the terms of this Creative Commons license. Wikimedia trademarks and logos, including \"Wikipedia\" and the puzzle globe logo, are registered trademarks of the Wikimedia Foundation. For more information, please see our Trademark Policy page,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nThis video is published under a Creative Commons license.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nכמו ויקיפדיה, סרטון זה מופץ בחינם, ואתם יכולים להעתיק, לשנות ולחלוק עם אחרים.',\n", + " 'bytes': 8348,\n", + " 'sha1': 'jv92zutstbqq68eaghnko89rniop5op',\n", + " 'parent_id': 83824356,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 526048563,\n", + " 'timestamp': '2021-01-15T14:45:03Z',\n", + " 'user': {'id': 235077, 'text': '春卷柯南'},\n", + " 'page': {'id': 22899880,\n", + " 'title': 'The Impact Of Wikipedia.webm.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'A very obvious error, see Chinese Wikipedia article on that city',\n", + " 'text': '1 \\n00:00:00,000 --> 00:00:05,000 \\n维基百科是非营利的网站,但它是世界第五大网站,维基百科的所有词条皆源自于志愿者的贡献\\n\\n2 \\n00:00:06,000 --> 00:00:11,500 \\n我们很希望把他们其中几位介绍给你\\n\\n3 \\n00:00:12,000 --> 00:00:13,000 \\n我来自尼泊尔\\n\\n4 \\n00:00:13,100 --> 00:00:14,000 \\n我来自伊拉克\\n\\n5 \\n00:00:14,100 --> 00:00:16,000 我从印度来\\n\\n6 \\n00:00:16,001 --> 00:00:17,000 \\n我来自新泽西州的拜拉姆\\n\\n7 \\n00:00:17,100 --> 00:00:18,000 \\n我住在英格兰的伯明翰\\n\\n8 \\n00:00:18,100 --> 00:00:22,050 \\n伊利诺伊州 芝加哥--玻利维亚 拉巴斯--肯尼亚 内罗毕\\n\\n9 \\n00:00:22,051 --> 00:00:24,000 \\n马来西亚 吉隆坡--意大利米兰--南非\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\n波兰--日本--亚美尼亚\\n\\n11\\n00:00:26,200 --> 00:00:28,000 \\n巴西--俄罗斯--博茨瓦纳\\n\\n12 \\n00:00:28,001 --> 00:00:30,500 \\n以色列--乌兹别克斯坦--香港\\n\\n13 \\n00:00:30,501 --> 00:00:31,000 \\n伊斯坦布尔--墨西哥\\n\\n14 \\n00:00:31,001 --> 00:00:32,000 \\n田纳西州查特怒加市\\n\\n15 \\n00:00:33,000 --> 00:00:38,000 \\n二零零八年当我刚加入维基百科时,我撰写了很多条目\\n\\n16 \\n00:00:38,100 --> 00:00:44,000 \\n我想它们其中之一是有关一位女士,名字似乎是玛丽亚姆 • 努尔\\n\\n17 \\n00:00:44,100 --> 00:00:48,000 \\n我们尚没有关于这个的条目,所以这便成了我的第一篇贡献\\n\\n18 \\n00:00:48,100 --> 00:00:52,500 \\n所以我把它给忘了!或许在两三年之后吧\\n\\n19 \\n00:00:52,600 --> 00:00:57,000 \\n我再经过我所撰写条目,我被的它浏览量震惊了\\n\\n20 \\n00:00:57,100 --> 00:01:02,000 \\n超过十万人阅览了这篇文章。\\n\\n21 \\n00:01:02,100 --> 00:01:08,000 \\n他们参考了条目,然后从词条中得到了他们所需的信息,他们曾阅览过这词条\\n\\n22 \\n00:01:08,100 --> 00:01:15,000 \\n所以你感觉你影响了成千上万的人\\n\\n23 \\n00:01:15,500 --> 00:01:19,000 \\n在我第一次按下“编辑”按钮的时候,我感到非常害怕。\\n\\n24 \\n00:01:19,100 --> 00:01:24,000 \\n我想:上帝啊,我会把一切都搞砸的,那样是行不通的,我不能这么做\\n\\n25\\n00:01:24,100 --> 00:01:29,000 \\n维基百科是“开源”的——每个人都可以抛出自己的想法\\n\\n26 \\n00:01:29,100 --> 00:01:34,000 \\n之后会别的人进来充实这个想法,使它变得更加完美。\\n\\n27 \\n00:01:34,100 --> 00:01:40,500 \\n这里有成千上万的人每天、每小时、每分钟在维基百科上工作,使它得到完善。\\n\\n28 \\n00:01:40,501 --> 00:01:44,000 \\n很大程度上这是志愿者精神,这是一个很特别的志愿方法\\n\\n29 \\n00:01:44,100 --> 00:01:49,000 \\n它将对于一个特定话题有兴趣的专业人士及业余人士凝聚到一起\\n\\n30 \\n00:01:49,100 --> 00:01:54,000 \\n在最初有不同意见的人们开始合作了起来\\n\\n31 \\n00:01:54,001 --> 00:01:58,500 \\n想象中这是一个庞大的网络公司才能做到的事情\\n\\n32 \\n00:01:58,501 --> 00:02:01,000\\n但事实上是一个个像我一样的志愿者实现了它\\n\\n33 \\n00:02:01,100 --> 00:02:05,000 \\n你只是不能说,“好吧,我是对的,你是错的,这是阐述我观点的文章!”\\n\\n34 \\n00:02:05,100 --> 00:02:07,000 \\n有些包含偏见的文字\\n\\n35 \\n00:02:07,100 --> 00:02:11,000 \\n有些人可能早把它标记起来,如果没有,那我就可以去标记它\\n\\n36 \\n00:02:11,000 --> 00:02:13,000 \\n有成千上万的人注视着它\\n\\n37 \\n00:02:13,001 --> 00:02:15,000 \\n并改正它\\n\\n38 \\n00:02:15,001 --> 00:02:16,400 然后,我按下了按钮,并且\\n\\n39 \\n00:02:16,401 --> 00:02:19,600 \\n嘭!旅程开始了,感觉太棒了\\n\\n51 \\n00:02:19,601 --> 00:02:21,000 \\n首先,我从编辑“概率”这个词条开始\\n\\n40 \\n00:02:21,001 --> 00:02:24,000 \\n我最先编辑的词条是“概率”\\n\\n41 \\n00:02:24,001 --> 00:02:26,000 \\n“刀伤”是我在维基上\\n\\n42 \\n00:02:26,001 --> 00:02:27,400 \\n写的主要条目之一\\n\\n43 \\n00:02:27,401 --> 00:02:29,000 \\n我撰写了些关于飞蝇钓法的文章\\n\\n44 \\n00:02:29,001 --> 00:02:32,000 \\n以及蒙大拿历史,国家公园历史,黄石公园\\n\\n45 \\n00:02:32,001 --> 00:02:36,100 \\n未充分利用的作物,棋手,生物多样性\\n\\n46 \\n00:02:36,101 --> 00:02:39,100 \\n军事历史主题,亚美尼亚历史,罗马历史\\n\\n47 \\n00:02:39,101 --> 00:02:42,100\\n法官,交流,传记,足球\\n\\n48 \\n00:02:42,101 --> 00:02:45,901 \\n爱尔兰,宾西法尼亚州,大部分是有关摄影的条目\\n\\n49 \\n00:02:45,901 --> 00:02:47,600 \\n平克·弗洛伊德。还有烘焙,因为我爱烘焙\\n\\n50 \\n00:02:47,601 --> 00:02:50,200 \\n核武器及放射性\\n\\n51 \\n00:02:50,201 --> 00:02:52,000 \\n还有激流皮划艇。\\n\\n52 \\n00:02:52,201 --> 00:02:56,000 \\n世界上到处散落着这些信息\\n\\n53 \\n00:02:56,001 --> 00:02:59,000 \\n而我们把他们汇聚到同一个空间里来\\n\\n54 \\n00:02:59,100 --> 00:03:03,000 \\n我们以每个人的母语提供自由免费的知识\\n\\n55 \\n00:03:03,101 --> 00:03:07,000 \\n这样他们就可以应用这些知识\\n\\n56 \\n00:03:07,501 --> 00:03:11,000 \\n无论贫穷与富裕,每个人都从中获益\\n\\n57 \\n00:03:11,001 --> 00:03:16,000 \\n营利性公司具有与我们截然不同的动机和需求\\n\\n58 \\n00:03:16,500 --> 00:03:22,000 \\n维基百科创办人:我既不从维基基金会获得收入,也不用为其支出\\n\\n59 \\n00:03:22,001 --> 00:03:25,500 \\n我认为我把话说得十分清楚是非常重要的\\n\\n60 \\n00:03:25,501 --> 00:03:30,500 \\n请注意,当我向你寻求资助时,不是我在为我自己要钱\\n\\n61 \\n00:03:30,501 --> 00:03:36,000 \\n我是作为这个社群的一分子,为支撑起这个伟大社群的基金会寻求资金帮助\\n\\n62 \\n00:03:36,501 --> 00:03:41,400 \\n我想,维基百科给予了我一个真正的、大大改变世界的机会。\\n\\n63 \\n00:03:41,401 --> 00:03:48,000 \\n而这就如同一笔为了你未来的投资,一笔为了你子孙未来的投资\\n\\n64 \\n00:03:51,000 --> 00:03:52,999 \\n维基百科\\n\\n65 \\n00:03:53,401 --> 00:03:57,000 \\n由衷地感谢以上的受访者\\n\\n66 \\n00:04:00,000 --> 00:04:03,000 \\n此影片内容除特别注明外,均以知识共享 CC-BY-SA 3.0协议发表,详情请参考:http://creativecommons.org/licenses/by-sa/3.0 。影片由Victor Grigas为维基媒体基金会制作。影片中人士的言论仅代表其个人观点,并不构成以各种身份代表任何机构所发表的任何观点。请注意,任何Wikipedia®和有关维基百科的标识均为维基媒体基金会的注册商标;維基™是维基媒体基金会的商标。有关以上商标的更多资讯,请电邮至或参考:http://www.wikimediafoundation.org/wiki/Trademark_Policy\\n\\n67 \\n00:04:03,000 --> 00:04:05,000 \\n这段视频遵循\"Creative Commons license\" 知识共享协议发布\\n\\n79 \\n00:04:05,001 --> 00:04:09,000 \\n就像维基百科一样,这是可以自由拷贝,修改,分享的。',\n", + " 'bytes': 6801,\n", + " 'sha1': 'cixcslqvzlmdrt79rnrl4pm5g93dplh',\n", + " 'parent_id': 84911818,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 230540243,\n", + " 'timestamp': '2017-01-22T03:03:49Z',\n", + " 'user': {'id': 20645, 'text': 'The RedBurn'},\n", + " 'page': {'id': 22903721,\n", + " 'title': 'The Impact Of Wikipedia.webm.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'typo',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia est à but non-lucratif, mais c\\'est le 5e site web au monde. Tous les articles de Wikipédia sont écrits par des bénévoles.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nNous aimerions vous en présenter quelques-uns\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nJe viens du Népal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nJe viens d\\'Irak\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nJe viens de l\\'Inde\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nJe suis de Byram, dans le New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nJe vis à Birmingham, en Angleterre\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La Paz, Bolivie -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malaisie -- Milan en Italie -- Afrique du Sud\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPologne -- Japon -- Arménie\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrésil -- Russie -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsraël -- Ouzbékistan -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul -- Mexique\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nLorsque j\\'ai commencé Wikipédia, en 2008, j\\'ai créé plusieurs articles.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nUn d\\'entre eux, je crois, était au sujet d\\'une femme appelée Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nIl n\\'y avait pas d\\'article sur le sujet, -- donc ce fut mon premier article\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nPuis je l\\'ai oublié ! Deux ou trois ans plus tard,\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nje suis revenue sur cet article. J\\'ai été impressionnée.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nPlus de 100 000 personnes avaient lu cet article.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nIls l\\'ont utilisé, donc ils ont obtenu des informations à partir de cet article. Ils sont passés sur cet article,\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\ndonc vous savez que vous avez touché et influencé plus de 100 000 personnes.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nJ\\'étais terrifiée quand j\\'ai appuyé sur le bouton \"modifier\" pour la première fois\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nJe me suis dit « Oh mon dieu, je vais tout casser !\\nÇa ne peut pas marcher ! Je ne peux pas le faire ! »\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipédia est \"open source\" -- chacun peut y mettre son idée\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\npuis quelqu\\'un d\\'autre vient et affine cette idée pour la polir.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nIl y a des milliers de gens qui travaillent chaque jour, chaque heure, chaque minute sur Wikipédia pour l\\'améliorer.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nUne grande partie est bénévole. C\\'est une façon unique d\\'être bénévole.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nCela rapproche les professionnels des amateurs qui aiment un sujet particulier.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nLes personnes qui ont des opinions différentes au départ commencent à collaborer.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nUne grand part de ce qu\\'on pourrait croire géré par une multinationale du web\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nest géré par des volontaires comme moi.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nVous ne pouvez pas dire, \"D\\'accord, j\\'ai raison, tu as tort, c\\'est ma version de l\\'article !\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nS\\'il y a un problème de biais,\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nalors quelqu\\'un l\\'a probablement indiqué et sinon, je peux le faire aussi maintenant.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nVous avez des centaines et des milliers de gens qui voient ça\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\net qui le corrigent.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nEt alors j\\'appuie sur le bouton et\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoum - l\\'aventure a commencé, et c\\'était super.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nJ\\'ai d\\'abord commencé avec \"Probabilité\".\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nL\\'article que j\\'ai créé était \"Probabilité\".\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nL\\'un des principaux articles que j\\'ai écrit sur Wikipédia était\\n\\n42\\n00:02:26,001 --> 00:02:27,400\\ncelui sur les blessures par armes blanches.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nJ\\'écris sur la pêche à la mouche,\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nL\\'histoire du Montana, l\\'histoire des parcs nationaux, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nLes cultures sous-exploitées. Les joueurs d\\'échec. La biodiversité.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nL\\'histoire militaire. De l\\'histoire arménienne. L\\'histoire romaine.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nLes juges. La communication. Les biographies. Le football.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nL\\'Irlande. La Pennsylvanie. Surtout des photographies.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nLes Pink Floyd. La cuisine, parce que j\\'adore cuisiner.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nLes armes nucléaires et la radioactivité,\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\net le kayak d\\'eau douce.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nIl y a toute cette information disponible ici et là, éparpillée\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\net nous la rassemblons en un seul endroit.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nNous offrons la connaissance libre à tous,\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\ndans leur propre langue, pour qu\\'ils puissent l\\'utiliser.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nTout le monde en bénéficie, riches et pauvres.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nLes compagnies à but lucratif ont des motivations et des exigences différentes.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nDe la Fondation Wikimédia, je ne reçois pas de salaire ni même de frais de mission.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nJe pense que c\\'est très important de pouvoir dire très clairement,\\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nÉcoutez, quand je vous demande de l\\'argent, je ne le fais pas pour moi-même\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nJe vous demande de l\\'argent pour cette Fondation qui est l\\'équipe soutenant cette communauté extraordinaire dont je fais partie.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nJe pense que Wikipédia m\\'a donné cette chance de vraiment faire une grande différence dans le monde.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nC\\'est un investissement pour votre avenir, pour l\\'avenir de vos enfants.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nMerci\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nThe content contained in this video is available under the Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) unless otherwise stated. This work is attributable to: Victor Grigas, Wikimedia Foundation.\\nThe views and opinions expressed in this video are solely those of the individuals appearing in the video and do not necessarily reflect the policies or positions of any company, organization, or institution the individual may be a member of.\\nThe trademarks and logos of the Wikimedia Foundation and any other organization are not included under the terms of this Creative Commons license. Wikimedia trademarks and logos, including \"Wikipedia\" and the puzzle globe logo, are registered trademarks of the Wikimedia Foundation. For more information, please see our Trademark Policy page,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nCette vidéo est publiée sous une licence Creative Commons.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nComme pour Wikipédia, vous êtes libres de la copier, de la remixer et de la partager.',\n", + " 'bytes': 7314,\n", + " 'sha1': '0rvyb6us9f9c3nlc0fkqy60e6mk2mda',\n", + " 'parent_id': 111578869,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83849518,\n", + " 'timestamp': '2012-11-28T17:56:48Z',\n", + " 'user': {'id': 305204, 'text': 'Seddon'},\n", + " 'page': {'id': 22907704,\n", + " 'title': 'The Impact Of Wikipedia.webm.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 Wikipedia is een website zonder winstoogmerk en het is op 4 na meest geraadpleegde website. Alle artikelen op Wikipedia worden g...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia is een website zonder winstoogmerk en het is op 4 na meest geraadpleegde website. Alle artikelen op Wikipedia worden geschreven door vrijwilligers.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nWij willen u graag laten kennismaken met een paar van hen...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nIk kom uit Nepal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nIk kom uit Irak\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nIk kom uit India\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nIk ben van Byram, New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nIk woon in Birmingham, Engeland\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La Paz, Bolivia -- Nairobi, Kenia\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Maleisië -- Milaan in Italië -- Zuid-Afrika\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolen -- Japan -- Armenië\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrazilië -- Rusland -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsraël -- Oezbekistan -- Hongkong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanboel -- Mexico\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nIn mijn begintijd op Wikipedia in 2008 startte ik vele artikelen.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nEen daarvan was denk ik over een vrouw genaamd Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nWe hadden er nog geen artikel over, aldus -- en dit was mijn eerste artikel.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nToen vergat ik het! Misschien twee of drie jaar later, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nkwam ik het artikel weer tegen. Ik was geschokt.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMeer dan 100.000 mensen lazen dit artikel.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nZe gebruikten het, dus ze kregen hun informatie van dit artikel. Ze slaagden dankzij dit artikel. \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nzo heb je het gevoel alsof je meer dan 100.000 mensen hebt geraakt en beïnvloed.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nIk was gewoon zo bang toen ik voor de eerste keer de \\'bewerk\\'-knop aanklikte.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nIk dacht: \"Oh mijn god, ik ga de boel verpesten!\\nDat kan niet werken! Ik kan het niet!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia is een \\'open source\\' - waar iedereen zijn of haar idee in kan gooien \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nen dan komt er iemand anders en polijst op dat idee om het prachtig te maken.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nEr zijn duizenden mensen iedere dag, ieder uur, iedere minuut op Wikipedia aan het werk om het te verbeteren.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nHet meeste ervan is vrijwilligerswerk. Dit is een unieke manier om vrijwillig bij te dragen.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nHet brengt zowel professionals als amateurs samen die een liefde hebben voor een bepaald onderwerp.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nDe mensen die aanvankelijk andere meningen hadden beginnen samen te werken.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nVeel van wat je zou verwachten dat een grote internetbedrijf zou doen \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nwordt gedaan door vrijwilligers zoals ik.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nJe kunt niet zeggen, “oké, ik heb gelijk, jij hebt geen gelijk, dit is mijn versie van het artikel!”\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nAls er een probleem is van partijdigheid, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\ndan is er waarschijnlijk iemand die het al gemarkeerd heeft en indien dat niet het geval is, kan ik dat zelf ook.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nEr zijn honderden, duizenden mensen die dat zien \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nen het corrigeren.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nEn toen klikte ik de knop aan en\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom - De reis begon en het was geweldig.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nEerst begon ik met \\'Waarschijnlijkheid\\'. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nhet eerste artikel dat ik startte is \\'Waarschijnlijkheid\\'.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nEen van mijn belangrijkste artikelen die ik op Wikipedia schreef was \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nhet artikel over steekwonden.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nIk schrijf over vliegvissen, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nde geschiedenis van Montana, geschiedenis van nationale parken, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nWeinig gebruikte gewassen. Schakers, Biodiversiteit.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nMilitaire geschiedenis. Armeense geschiedenis, Romeinse geschiedenis.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nRechters. Communicatie. Biografieën, Voetbal.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIerland. Pennsylvania. Voornamelijk fotografie.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Bakken, omdat ik van bakken hou.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nKernwapens en radioactiviteit, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nen wildwatervaren.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nEr is al deze informatie die daarbuiten verspreid is\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nen wij voegen het samen op één plek.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nWe bieden vrije kennis voor iedereen, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nin hun eigen taal zodat ze het kunnen gebruiken.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nIedereen heeft er voordeel van of iemand nu rijk is of arm.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nOp winst gerichte bedrijven hebben andere motivaties en andere vereisten.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nVan de Wikimedia Foundation ontvang ik geen salaris en ik ontvang ook geen vergoedingen.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nIk denk dat het erg belangrijk is dat ik erg duidelijk kan zeggen, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nKijk, wanneer ik jou om geld vraag, vraag ik je geen geld voor mezelf --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nik vraag je geld voor de Foundation, die als team deze verbazingwekkende gemeenschap waar ik deel van uitmaak ondersteunt.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nIk denk dat Wikipedia me de kans gaf om daadwerkelijk een groot verschil te maken in de wereld.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nHet is net als met een investering voor jou toekomst, voor de toekomst van je kinderen.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nDank je\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nDe inhoud van deze video is beschikbaar onder de Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) tenzij anders aangegeven. Dit werk is toe te schrijven aan: Victor Grigas, Wikimedia Foundation.\\nDe opvattingen en meningen die in deze video zijn geuit zijn uitsluitend van de personen in de video en komen niet noodzakelijk overeen met het beleid of de standpunten van een onderneming, organisatie of instelling waarvan het individu lid van kan zijn.\\nDe handelsmerken en logo\\'s van de Wikimedia Foundation en andere organisaties vallen niet onder de voorwaarden van deze Creative Commons-licentie. De handelsmerken en logo\\'s van Wikimedia, met inbegrip van \"Wikipedia\" en het puzzelwereldbol-logo zijn geregistreerde handelsmerken van de Wikimedia Foundation. Voor meer informatie, zie onze pagina over het handelsmerkenbeleid \\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy of neem contact op via trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nDe video is gepubliceerd onder een Creative Commons-licentie.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nNet als Wikipedia, is deze vrij te kopiëren, aan te passen & te delen.',\n", + " 'bytes': 7243,\n", + " 'sha1': '8i1whft5driy45nikvhl02od5mq66n9',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 298344873,\n", + " 'timestamp': '2018-04-24T13:34:09Z',\n", + " 'user': {'id': 4510405, 'text': 'Samiclaus'},\n", + " 'page': {'id': 22907715,\n", + " 'title': 'The Impact Of Wikipedia.webm.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'typos',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia ist gemeinnützig, aber sie ist die Nr. 5 Internetseite in der Welt. Alle Artikel in der Wikipedia wurden von Freiwilligen geschrieben.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nWir wollen dir einige von Ihnen vorstellen...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nIch komme aus Nepal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nIch komme aus dem Irak\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nIch komme aus Indien\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nIch komm aus Byram in New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nIch lebe in Birmingham, England\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La Paz, Bolivien -- Nairobi, Kenia\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malaysia -- Mailand in Italien -- Südafrika\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolen -- Japan -- Armenien\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrasilien -- Russland -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael -- Uzbekistan -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul -- Mexico\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nZu Beginn, als ich 2008 der Wikipedia beigetreten bin, habe ich viele Artikel angefangen.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nEiner von ihnen war glaube ich über eine Dame Namens Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nWir hatten darüber noch keinen Artikel, also -- das war mein erster Artikel.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nIch hatte ihn schon vergessen! Vielleicht zwei oder drei Jahre später, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nStolperte ich über den Artikel. Ich war geschockt.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMehr als 100.000 Leute haben diesen Artikel gelesen.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nSie haben ihn verwendet, Information aus dem Artikel bezogen. Sie erreichten diesen Artikel, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nalso hat man das Gefühl, daß man 100.000 Leute beeinflusst hat.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nIch war so ängstlich, als ich zum ersten Mal den \"Bearbeiten\" Link verwendet habe.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nIch dachte: \"Oh mein Gott, ich werde alles ruinieren! Das kann nicht funktionieren! Ich kann das nicht tun!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia ist wortwörtlich eine \"offene Quelle\" -- Hier kann jeder seine oder ihre Idee einbringen \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nund dann kommt jemand anderer, verfolgt die Idee weiter und macht sie damit großartig.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nTausende Menschen arbeiten jeden Tag, jede Stunde, jede Minute an Wikipedia um es zu verbessern.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nDer Großteil davon ist ehrenamtlich. Es ist eine einzigartige Art ehrenamtlich tätig zu sein.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nEs bringt Profis und Amateure zusammen, die ein gemeinsames Interesse an einem bestimmten Thema haben.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nMenschen mit unterschiedlichen Meinungen beginnen zusammenzuarbeiten.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nViele Tätigkeiten von denen man annehmen würde, daß sie von einem großen Internet-Konzern durchgeführt werden \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nwerden in Wirklichkeit durch Freiwillige wie mich erledigt.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nMan kann nicht einfach sagen \"Ok, ich habe recht und du hast unrecht. Das ist meine Version des Artikels!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nWenn es ein Problem mit Voreingenommenheit gibt, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nwird jemand ihn entsprechend markieren und wenn nicht, dann ich kann auch ich diese Markierung setzen.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nDas wird von Hunderten und Tausenden von Menschen gesehen \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nund korrigiert.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nUnd dann habe ich den Knopft gedrückt und\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom - Die Reise hatte begonnen und sie war großartig.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nIch habe mit \"Wahrscheinlichkeit\" begonnen. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nDer erste Artikel den ich schrieb war \"Wahrscheinlichkeit\".\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nEiner meiner Hauptartikel, die ich auf Wikipedia verfasst habe war \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nder Artikel über Stichwunden.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nIch schreibe über Fliegenfischen, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontana\\'s Geschichte, die Geschichte von Nationalparks und Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nUngenutzte Anbaupflanzen, Schachspieler und Artenvielfalt.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nHeeresgeschichtliche Themen, Armenische Geschichte und Römische Geschichte.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nRichter, Kommunikation, Biographien und American Football.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrland, Pennsylvania und zumeist Photographie.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd und Backen, denn ich liebe es zu backen.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nNuklearwaffen und Radioaktivität, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nund Wildwasser-Kajakfahren.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nAll diese Informationen gibt es da draußen, aber sie sind weit verstreut\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nund wir fügen sie an einem Ort zusammen.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nWir bieten freies Wissen für jeden, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nin deren eigenen Sprache so daß sie sie verwenden können.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nJeder profitiert davon, ob sie reich sind oder arm.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nProfitorientierte Unternehmen haben andere Motivationen und andere Voraussetzungen.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nIch bekomme von der Wikimedia Foundation kein Gehalt und auch keine Spesen.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nIch denke es ist sehr wichtig, daß ich Folgendes klar sage: \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nWenn ich dich um Geld bitte, tue ich das nicht für mich selbst --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nIch bitte dich um Geld für die Foundation, also das Team das diese tolle Gemeinschaft trägt, deren Teil ich bin.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nIch denke Wikipedia hat mir die Chance gegeben einen wirklich bedeutenden Beitrag in der Welt zu leisten.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nEs ist eine Art Investition in deine Zukunft, in die Zukunft deiner Kinder.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nDankeschön\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nDer Inhalt dieses Videos ist unter der Lizenz Creative Commons Attribution-ShareAlike v3.0 verfügbar (http://creativecommons.org/licenses/by-sa/3.0) sofern nicht explizit etwas anderes angeführt ist. Es ist Victor Grigas von der Wikimedia Foundation zuzurechnen.\\nAlle in diesem Video genannten Ansichten oder Meinungen sind ausschließlich die der im Video gezeigten Personen und geben nicht notwendigerweise die Ansichten eines Unternehmens oder einer Institution wieder, der die Person angehören könnte.\\nDie Marke und die Logos der Wikimedia Foundation und jeder anderen Organisation fallen nicht unter die Bedingungen der Creative Commons Lizenz. Die Marken von Wikimedia und ihre Logos, insbesondere \"Wikipedia\" und das Logo mit dem Puzzle-Globus, sind registrierte Marken der Wikimedia Foundation. Für mehr Details, lesen sie bitte unsere Trademark Policy Seite http://www.wikimediafoundation.org/wiki/Trademark_Policy oder kontaktieren Sie trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nDieses Video wurde unter einer Creative Commons Lizenz veröffentlicht.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nSo wie Wikipedia können Sie es frei kopieren, schneiden und weiterleiten.',\n", + " 'bytes': 7463,\n", + " 'sha1': '0fyu4xd4ri2gaa0m6vg6u4p4904rs9a',\n", + " 'parent_id': 83852507,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83849588,\n", + " 'timestamp': '2012-11-28T17:58:13Z',\n", + " 'user': {'id': 305204, 'text': 'Seddon'},\n", + " 'page': {'id': 22907723,\n", + " 'title': 'The Impact Of Wikipedia.webm.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 Wikipedia drivs ideellt, men det är den femte största webbplatsen i världen. Alla artiklar på Wikipedia har skrivits av friv...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia drivs ideellt, men det är den femte största webbplatsen i världen. Alla artiklar på Wikipedia har skrivits av frivilliga volontärer.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nVi skulle vilja presentera några av dem för dig...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nJag kommer från Nepal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nJag kommer från Irak\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nJag kommer från Indien\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nJag kommer från Byram i New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nJag kommer från Birmingham i England\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago i Illinois -- La Paz i Bolivia -- Nairobi i Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur i Malaysia -- Milano i Italien -- Sydafrika\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolen -- Japan -- Armenien\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrasilien -- Ryssland -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael -- Uzbekistan -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul -- Mexiko\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga i Tennessee i USA\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nI början när jag gick med i Wikipedia, 2008, påbörjade jag många nya artiklar.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nEn av dem var om en dam som jag tror hette Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nVi hade ingen artikel om det, så -- och det var min första artikel.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nSedan glömde jag bort den. Två eller tre år senare, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nsåg jag artikeln igen. Jag blev chockad!\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMer än 100 000 personer hade läst artikeln.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nDe använde den, så de fick sin information från den artikeln. De såg artikeln, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nså man känner att man påverkat och influerat över 100 000 människor.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nJag var skräckslagen när jag klickade på \\'Redigera\\'-knappen för första gången.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nJag tänkte \"Herregud, jag kommer att förstöra allt!\\nDet kan inte funka! Jag klarar inte av det!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia är \\'open source\\' -- där alla kan kasta in sina ideer \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\noch någon annan kan komma in och polera den iden så att den blir perfekt.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nTusentals människor jobbar varje dag, varje timme, varje minut på att förbättra Wikipedia.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nMycket av det är frivilligarbete. Detta är ett unikt sätt att jobba volontärt.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nDet för samman både professionella och amatörer som har förkärlek för ett visst ämne.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nPersoner som inledningsvis har olika åsikter börjar samarbeta.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nMycket av det som man kan anta hanteras av ett stort internetföretag \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nhanteras av volontärer som jag.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nDu kan inte säga \"Okej, jag har rätt, du har fel, det här är min version av arikeln!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nOm det föreligger partiskhet \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nhar någon förmodligen markerat artikeln, och om det inte skett kan jag också markera den.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nHundratals och tusentals människor ser det \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\noch fixar det.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nOch sen klickar jag på knappen och\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nPang - resan startade och det var fantastiskt.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nJag började med \\'Sannolikhet\\'. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nDen första artikeln jag påbörjade är \\'Sannolikhet\\'.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nEn av huvudartiklarna jag skrev på Wikipedia var \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nartikeln om sticksår.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nJag skriver om flugfiske, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontanas historia, nationalparkers historia samt Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nUnderutnyttjade grödor. Schackspelare. Biodiversitet.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nMilitärhistoriska ämnen. Armeniens och Roms historia.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nDomare. Kommunikation. Biografier. Fotboll.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrland. Pennsylvania. Mest fotografi.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Bakning, för jag älskar att baka.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nKärnvapen och radioaktivitet, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\noch forspaddling.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nAll den här informationen finns där ute, utspridd,\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\noch vi samlar ihop den på ett ställe.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nVi erbjuder fri kunskap för alla, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\ni deras eget språk så de kan använda det.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nAlla gagnas av detta, oavsett om de är rika eller fattiga.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nVinstdrivande företag har andra motiveringar och krav.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nFrån Wikimediastiftelsen får jag ingen lön, inte ens för att täcka utgifter.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nJag tror det är mycket viktigt att jag tydligt kan säga, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nSe här, när jag ber dig om pengar är det inte för mig själv --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nJag ber dig om pengar för stiftelsen, som är den grupp som stöder den här fantastiska gemenskapen som jag är delaktig i.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nJag tror Wikipedia gav mig en chans att verkligen göra en stor skillnad i världen.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nDet är som en investering i din framtid, i dina barns framtid.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nTack\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nInnehållet i den här videon finns tillgänglig under Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) om inte annat anges. Detta arbete ska tillskrivas Victor Grigas, Wikimediastiftelsen.\\nÅsikter och synpunkter i denna video ägs uteslutande av individerna som syns i videon och speglar inte nödvändigtvis riktlinjer och åsikter från något företag, organisation eller institution som individen är medlem av.\\nVarumärken och logotyper av Wikimediastiftelsen och andra organisationer täcks ej av Creative Commons-licensen. Wikimedias varumärken, logotyper, inklusive \"Wikipedia\" och pusselgloben, är av Wikimediastiftelsen registrerade varumärken. För mer information, se sidan om Trademark Policy, http://www.wikimediafoundation.org/wiki/Trademark_Policy, eller kontakta trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nDen här videon publiceras under en Creative Commons-licens.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nLiksom Wikipedia är det fritt fram att kopiera, mixa om och sprida den.',\n", + " 'bytes': 6860,\n", + " 'sha1': 'fixils3yw4yld31ao9vt9g309w6xvv2',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83849610,\n", + " 'timestamp': '2012-11-28T17:58:34Z',\n", + " 'user': {'id': 305204, 'text': 'Seddon'},\n", + " 'page': {'id': 22907728,\n", + " 'title': 'The Impact Of Wikipedia.webm.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 A Wikipédia não tem fins lucrativos, mas é o 5º sítio da Internet mais visitado no mundo. Todos os artigos da Wikipédia s...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nA Wikipédia não tem fins lucrativos, mas é o 5º sítio da Internet mais visitado no mundo. Todos os artigos da Wikipédia são escritos por voluntários.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nGostaríamos de vos apresentar alguns deles...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nEu sou do Nepal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nEu sou do Iraque\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nEu venho da Índia\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nSou de Byram, Nova Jérsia\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nEu vivo em Birmingham, Inglaterra\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois - La Paz, Bolívia - Nairóbi, Quénia\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malásia - Milão em Itália - África do Sul\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolónia - Japão - Arménia\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrasil - Rússia - Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael - Usbequistão - Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstambul - México\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nQuando me iniciei na Wikipédia em 2008, criei muitos artigos.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nUm deles, penso que era sobre uma senhora chamada Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nNão tínhamos nenhum artigo sobre ela, então... este foi o meu primeiro artigo.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nEsqueci-me dele! Talvez dois ou três anos mais tarde, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nAo passar por este artigo fiquei surpreendido.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMais de 100 000 pessoas leram este artigo.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nUsaram-no, obtiveram a informação que queriam, passaram por ele. \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nacabamos por sentir que tocámos e influenciámos mais de 100 000 pessoas.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nFiquei tão apavorado quando carreguei no botão \\'editar\\' pela primeira vez.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nPensei, “Oh meu Deus, vou estragar isto tudo!\\nNão vai funcionar! Não consigo fazer isto!”\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nA Wikipédia é \\'open source\\', é de código livre - onde qualquer um pode contribuir com as suas ideias. \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nmais tarde vem outra pessoa e aperfeiçoa essa ideia para algo sensacional.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nExistem milhares de pessoas a aperfeiçoar a Wikipédia todos os dias, a todas as horas e a cada minuto.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nTudo isto é voluntarismo. É uma forma única de ser voluntário.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nJunta profissionais e amadores que adoram um determinado tópico.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nPessoas que inicialmente têm opiniões diferentes começam a colaborar.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nPoderia até assumir que muito disto só seria possível se fosse feito por uma grande empresa da Internet \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nmas é feito por voluntários como eu.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nNão pode apenas dizer, \"bom, eu estou certo, tu estás errado, esta é a minha versão do artigo!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nSe existe um problema de parcialidade, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nentão alguém já o deve ter assinalado e, se ninguém o fez, eu posso fazê-lo agora.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nE existem centenas e milhares de pessoas que vêm \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\ne que corrigem estes casos.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nE é então que carrego no botão e\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBum! A viagem começou e foi fantástica.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nPrimeiro comecei com \\'Probabilidade\\'. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nO primeiro artigo que iniciei foi \"Probabilidade\".\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nUm dos artigos mais importantes que escrevi na Wikipédia foi \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nsobre feridas provocadas por armas brancas.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nEu escrevo sobre pesca à mosca, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nhistória do Montana, história do Parque Nacional de Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nCulturas subutilizadas. Jogadores de xadrez. Biodiversidade.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nHistória militar. História da Arménia. História Romana.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nJuízes. Comunicação. Biografias. Futebol.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrlanda. Pensilvânia. Fotografia, principalmente.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Cozinhados, porque adoro cozinhar.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nArmas nucleares e radioatividade, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\ne canoagem em rápidos.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nExiste uma quantidade imensa de informação dispersa por aí\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\ne nós estamos a reuni-la num único local.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nNós oferecemos conhecimento grátis a todas as pessoas, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nna língua delas, para que possam utilizá-lo.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nSão todos beneficiados quer sejam ricos ou pobres.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nEmpresas que procuram lucro têm motivações diferentes e requisitos diferentes.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nEu não recebo salário da Fundação Wikimedia e nem me pagam as despesas.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nPenso que é muito importante que possa dizer claramente que, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nquando peço a sua contribuição, não estou a pedir dinheiro para mim próprio -\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nEstou a pedir-lhe dinheiro para a Fundação que é a equipa que apoia esta comunidade fantástica da qual eu faço parte.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nPenso que a Wikipédia me deu esta oportunidade de realmente fazer uma grande diferença no mundo.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nÉ como um investimento para o futuro, para o futuro dos seus filhos.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nObrigado!\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nO conteúdo deste vídeo está disponível dentro dos termos da licença \"Creative Commons Attribution-ShareAlike License v3.0\" (http://creativecommons.org/licenses/by-sa/3.0), a menos que seja indicado o contrário. Esta obra é a atribuída a: Victor Grigas, Fundação Wikimedia.\\nOs pontos de vista e opiniões expressas neste vídeo são da exclusiva responsabilidade dos indivíduos que aparecem no vídeo e não representam necessariamente as políticas e posições de qualquer empresa, organização ou instituição que o indivíduo possa fazer parte.\\nAs marcas registadas e os logótipos da Fundação Wikimedia ou de qualquer outra organização não estão incluídas no termos desta licença Creative Commons. As marcas registadas e logótipos, incluindo \"Wikipedia\" e o logótipo do globo puzzle, são marcas registadas da Fundação Wikimedia. Para mais informações, por favor consulte a nossa página Trademark Policy, http://www.wikimediafoundation.org/wiki/Trademark_Policy, ou concte-nos para trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nEste vídeo é publicado sob a licença Creative Commons.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nComo a Wikipédia, é livre de copiar, alterar e partilhar.',\n", + " 'bytes': 7213,\n", + " 'sha1': '7tcvwtst3ieajnlhytf1fd7brzcs7q4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83855421,\n", + " 'timestamp': '2012-11-28T19:57:51Z',\n", + " 'user': {'id': 1183371, 'text': 'Sage Ross (WMF)'},\n", + " 'page': {'id': 22909061,\n", + " 'title': 'Editing basics - Sandboxes.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'subtitles',\n", + " 'text': '1\\n00:00:00,369 --> 00:00:03,325\\nThis is a walkthrough of how to start\\n\\n2\\n00:00:03,325 --> 00:00:06,200\\nediting in a sandbox on Wikipedia.\\n\\n3\\n00:00:06,200 --> 00:00:07,408\\nYou can use a sandbox\\n\\n4\\n00:00:07,408 --> 00:00:09,866\\nto experiment with wiki syntax,\\n\\n5\\n00:00:09,866 --> 00:00:11,325\\nmake practice edits,\\n\\n6\\n00:00:11,325 --> 00:00:13,450\\ntake notes and collect material,\\n\\n7\\n00:00:13,450 --> 00:00:17,075\\nor draft an article that can later be moved into Wikipedia.\\n\\n8\\n00:00:17,075 --> 00:00:19,075\\nTo make a user sandbox,\\n\\n9\\n00:00:19,075 --> 00:00:22,158\\nFirst you need to log in to your user account.\\n\\n10\\n00:00:22,158 --> 00:00:23,408\\nOnce you\\'ve logged in,\\n\\n11\\n00:00:23,408 --> 00:00:26,200\\nclick on \"Sandbox\" in the personal tools links\\n\\n12\\n00:00:26,200 --> 00:00:28,241\\nat the top of the page.\\n\\n13\\n00:00:28,241 --> 00:00:31,200\\nThis will bring you to your default sandbox page,\\n\\n14\\n00:00:31,200 --> 00:00:34,200\\nwhich is a subpage of your user page.\\n\\n15\\n00:00:34,200 --> 00:00:35,325\\nIn the edit window,\\n\\n16\\n00:00:35,325 --> 00:00:37,991\\nyou can begin composing your sandbox page.\\n\\n17\\n00:00:37,991 --> 00:00:39,408\\nIt will come preloaded\\n\\n18\\n00:00:39,408 --> 00:00:42,366\\nwith a bit of wikicode for a sandbox template,\\n\\n19\\n00:00:42,366 --> 00:00:44,533\\nwhich you can leave there or delete.\\n\\n20\\n00:00:44,533 --> 00:00:45,408\\nOnce you\\'ve written\\n\\n21\\n00:00:45,408 --> 00:00:47,075\\na little bit of your sandbox article,\\n\\n22\\n00:00:47,075 --> 00:00:48,741\\nyou can press the show preview button\\n\\n23\\n00:00:48,741 --> 00:00:49,991\\nbeneath the edit window\\n\\n24\\n00:00:49,991 --> 00:00:52,200\\nto see what the page will look like.\\n\\n25\\n00:00:52,200 --> 00:00:53,991\\nThen, enter an edit summary\\n\\n26\\n00:00:53,991 --> 00:00:55,575\\nin the field beneath the edit window\\n\\n27\\n00:00:55,575 --> 00:00:56,950\\nto describe what you\\'ve done,\\n\\n28\\n00:00:56,950 --> 00:00:59,282\\nand press Save page.\\n\\n29\\n00:00:59,282 --> 00:01:01,700\\nYou\\'ve started your sandbox article!\\n\\n30\\n00:01:01,700 --> 00:01:04,783\\nYou can always press edit to make more changes.\\n\\n31\\n00:01:04,783 --> 00:01:06,866\\nAnd if you leave the sandbox template there,\\n\\n32\\n00:01:06,866 --> 00:01:09,241\\nit has some useful tutorial links\\n\\n33\\n00:01:09,241 --> 00:01:11,116\\nas well as a link for requesting\\n\\n34\\n00:01:11,116 --> 00:01:12,908\\na review of your sandbox draft\\n\\n35\\n00:01:12,908 --> 00:01:15,991\\nfor inclusion as a new Wikipedia article.\\n\\n36\\n00:01:15,991 --> 99:59:59,000\\nHappy editing!\\n\\n37\\n99:59:59,000 --> 99:59:59,000',\n", + " 'bytes': 2469,\n", + " 'sha1': 'l32f71n2tzt9hzeconw5e0fjdv50iu2',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83973776,\n", + " 'timestamp': '2012-11-30T16:14:08Z',\n", + " 'user': {'id': 1183371, 'text': 'Sage Ross (WMF)'},\n", + " 'page': {'id': 22909977,\n", + " 'title': 'Editing basics - Sandboxes.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'update subtitles',\n", + " 'text': '1\\n00:00:00,906 --> 00:00:02,783\\nThis is a walkthrough of how to start\\n\\n2\\n00:00:02,783 --> 00:00:06,325\\nediting in a sandbox on Wikipedia.\\n\\n3\\n00:00:06,325 --> 00:00:07,617\\nYou can use a sandbox\\n\\n4\\n00:00:07,617 --> 00:00:09,825\\nto experiment with wiki syntax,\\n\\n5\\n00:00:09,825 --> 00:00:11,492\\nmake practice edits,\\n\\n6\\n00:00:11,492 --> 00:00:13,575\\ntake notes and collect material,\\n\\n7\\n00:00:13,575 --> 00:00:17,242\\nor draft an article that can later be moved into Wikipedia.\\n\\n8\\n00:00:17,242 --> 00:00:19,199\\nTo make a user sandbox,\\n\\n9\\n00:00:19,199 --> 00:00:22,157\\nFirst you need to log in to your user account.\\n\\n10\\n00:00:22,157 --> 00:00:23,533\\nOnce you\\'ve logged in,\\n\\n11\\n00:00:23,533 --> 00:00:26,573\\nclick on \"Sandbox\" in the personal tools links\\n\\n12\\n00:00:26,573 --> 00:00:28,283\\nat the top of the page.\\n\\n13\\n00:00:28,283 --> 00:00:30,992\\nThis will bring you to your default sandbox page,\\n\\n14\\n00:00:30,992 --> 00:00:33,950\\nwhich is a subpage of your user page.\\n\\n15\\n00:00:33,950 --> 00:00:35,117\\nIn the edit window,\\n\\n16\\n00:00:35,117 --> 00:00:38,200\\nyou can begin composing your sandbox page.\\n\\n17\\n00:00:38,200 --> 00:00:39,450\\nIt will come preloaded\\n\\n18\\n00:00:39,450 --> 00:00:42,908\\nwith a bit of wikicode for a sandbox template.\\n\\n19\\n00:00:42,908 --> 00:00:44,033\\nOnce you\\'ve written\\n\\n20\\n00:00:44,033 --> 00:00:45,492\\na little bit of your sandbox article,\\n\\n21\\n00:00:45,492 --> 00:00:47,117\\nyou can press the show preview button\\n\\n22\\n00:00:47,117 --> 00:00:48,450\\nbeneath the edit window\\n\\n23\\n00:00:48,450 --> 00:00:50,617\\nto see what the page will look like.\\n\\n24\\n00:00:50,617 --> 00:00:52,241\\nThen, enter an edit summary\\n\\n25\\n00:00:52,241 --> 00:00:53,825\\nin the field beneath the edit window\\n\\n26\\n00:00:53,825 --> 00:00:55,533\\nto describe what you\\'ve done,\\n\\n27\\n00:00:55,533 --> 00:00:57,700\\nand press Save page.\\n\\n28\\n00:00:57,700 --> 00:01:00,116\\nYou\\'ve started your sandbox article!\\n\\n29\\n00:01:00,116 --> 00:01:03,116\\nYou can always press edit to make more changes.\\n\\n30\\n00:01:03,116 --> 00:01:05,408\\nAnd if you leave the sandbox template there,\\n\\n31\\n00:01:05,408 --> 00:01:07,741\\nit has some useful tutorial links\\n\\n32\\n00:01:07,741 --> 00:01:09,200\\nas well as a link for requesting\\n\\n33\\n00:01:09,200 --> 00:01:11,366\\na review of your sandbox draft\\n\\n34\\n00:01:11,366 --> 00:01:14,366\\nfor inclusion as a new Wikipedia article.\\n\\n35\\n00:01:14,366 --> 99:59:59,000\\nHappy editing!\\n\\n36\\n99:59:59,000 --> 99:59:59,000',\n", + " 'bytes': 2398,\n", + " 'sha1': '803enzskq7i0nutvvcg36jgt8qeuafz',\n", + " 'parent_id': 83859612,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83860293,\n", + " 'timestamp': '2012-11-28T21:47:06Z',\n", + " 'user': {'id': 79110, 'text': 'Haqmar'},\n", + " 'page': {'id': 22909985,\n", + " 'title': 'Anthem of Bashkortostan.ogg.ba.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:09,000\\nБашҡортостан, һин һөйөклө ғәзиз ер,\\n\\n2\\n00:00:09,001 --> 00:00:15,000\\nХалҡыбыҙҙың изге Ватаны\\n\\n3\\n00:00:15,001 --> 00:00:20,000\\nСал Уралдан ҡалҡа бар тарафҡа\\n\\n4\\n00:00:20,001 --> 00:00:28,000\\nТыуған илдең тыныс ал таңы.\\n\\n5\\n00:00:28,001 --> 00:00:33,000\\nДан һиңә, Башҡортостан!\\n\\n6\\n00:00:33,001 --> 00:00:40,000\\nИлен һөйгән азат халҡыңа дан!\\n\\n7\\n00:00:40,001 --> 00:00:46,000\\nРәсәй менән бөйөк берҙәмлектә\\n\\n8\\n00:00:46,001 --> 00:00:53,000\\nСәскә ат, Башҡортостан!\\n\\n9\\n00:00:53,001 --> 00:01:00,000\\nБашҡортостан, һин хөрмәтле данлы ил,\\n\\n10\\n00:01:00,001 --> 00:01:06,000\\nЕңеү яулап алға бараһың.\\n\\n11\\n00:01:06,001 --> 00:01:13,000\\nКиләсәккә яҡты нур-моң сәсә\\n\\n12\\n00:01:13,001 --> 00:01:19,000\\nҺинең ғорур рухлы байрағың.\\n\\n13\\n00:01:19,001 --> 00:01:25,000\\nДан һиңә, Башҡортостан!\\n\\n14\\n00:01:25,001 --> 00:01:32,000\\nИлен һөйгән азат халҡыңа дан!\\n\\n15\\n00:01:32,001 --> 00:01:38,000\\nРәсәй менән бөйөк берҙәмлектә\\n\\n16\\n00:01:38,001 --> 00:01:45,000\\nСәскә ат, Башҡортостан!\\n\\n17\\n00:01:45,001 --> 00:01:52,000\\nРеспубликам, йондоҙ булып балҡы һин,\\n\\n18\\n00:01:52,001 --> 00:01:58,000\\nКүкрәп йәшә, гүзәл илебеҙ.\\n\\n19\\n00:01:58,001 --> 00:02:05,000\\nТыуған ерҙә һүнмәҫ усағыбыҙ,\\n\\n20\\n00:02:05,001 --> 00:02:12,000\\nТуған телдә тынмаҫ йырыбыҙ.\\n\\n21\\n00:02:12,001 --> 00:02:18,000\\nДан һиңә, Башҡортостан!\\n\\n22\\n00:02:18,001 --> 00:02:25,000\\nИлен һөйгән азат халҡыңа дан!\\n\\n23\\n00:02:25,001 --> 00:02:31,000\\nРәсәй менән бөйөк берҙәмлектә\\n\\n24\\n00:02:31,001 --> 00:02:41,000\\nСәскә ат, Башҡортостан\\n\\n25\\n00:02:41,001 --> 00:02:43,000\\n(by Haqmar)',\n", + " 'bytes': 2086,\n", + " 'sha1': '97c0eavjzft0fhrno0mbsyvlrp92d5d',\n", + " 'parent_id': 83860239,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83890120,\n", + " 'timestamp': '2012-11-29T10:18:36Z',\n", + " 'user': {'id': 849743, 'text': 'Vladimir Penov'},\n", + " 'page': {'id': 22915379,\n", + " 'title': 'The Impact Of Wikipedia.webm.bg.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 Уикипедия е организация с идеална цел и въпреки това е петият най-посе...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nУикипедия е организация с идеална цел и въпреки това е петият най-посещаван уебсайт в света. Всички статии в Уикипедия са написани от доброволци.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nНека ви представим някои от тях...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nАз съм от Непал.\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nАз съм от Ирак.\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nАз съм от Индия.\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nАз съм от Байръм, Ню Джърси.\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nЖивея в Бирмингам, Англия.\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nЧикаго, Илинойс - Ла Пас, Боливия - Найроби, Кения\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nКуала Лумпур, Малайзия - Милано, Италия - Южна Африка\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nПолша - Япония - Армения\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nБразилия - Русия - Ботсвана\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nИзраел - Узбекистан - Хонконг\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nИстанбул - Мексико\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nЧатануга, Тенеси\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nКогато се включих в Уикипедия през 2008 г., започнах много статии.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nЕдна от тях беше за жена на име Мариам Нур.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nТогава нямаше статия за нея и така тя стана първата ми статия.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nНаписах я и я забравих. Няколко години по-късно \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nпопаднах отново на статията. Бях шокирана.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nНад 100 хиляди души я бяха чели.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nЧели са я и са позвали информацията в нея. Натъкнали са се на нея. \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nУсещаш, че си повлиял на повече от 100 хиляди души.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nПървият път, когато натиснах бутона за редактиране, бях направо ужасена.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nПомислих си „Боже, ще оплескам всичко! Няма да стане! Няма да се справя!“\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nУикипедия е с отворен код, т.е. всеки може да напише идеите си, \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nа после някой друг да надгради и да ги разшири и подобри.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nВсеки ден, всеки час, всяка минута, хиляди хора пишат в Уикипедия и я обогатяват и допълват.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nВсичко се прави на доброволни начала. Уикипедия е уникален доброволчески проект.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nТя събира професионалисти и аматьори, които споделят любовта си към дадена тема.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nХора, които в началото са на различни мнения, започват да си сътрудничат.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nМного от нещата, с които се занимават големите интернет компании, \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nсе правят от доброволци като мен.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nНе може просто да кажеш „Аз съм прав, ти грешиш, така че моята редакция остава.“\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nАко има съмнения за обективността на написаното, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nнякой вече сигурно ги е отбелязал, а сега и аз мога да го направя.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nИма стотици, дори хиляди души, които го виждат \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nи го поправят.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nИ тогава натискам бутона и ...\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nбум! - пътешествието започна и беше страхотно.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nПървата ми статия беше за вероятността. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nПърват ми започната статия се казва „Вероятност“.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nЕдна от основните ми статии в Уикипедия \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nбеше за прободни рани.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nПиша за риболов, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nистория на Монтана, история на Националния парк Йелоустоун.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nНепълноценно използвани земеделски култури. Шахматисти. Биоразнообразие.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nВоенна история. История на Армения. История на римляните.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nСъдии. Комуникация. Биографии. Футбол.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nИрландия. Пенсилвания. Предимно за фотография.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nПинк Флойд. Печене, защото обичам да готвя.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nЯдрени оръжия и радиоктивност. \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nКаяк в бързи води.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nИма много информация, която е разхвърляна тук и там.\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nНие я събираме на едно място.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nПредлагаме безплатно знание за всеки \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nна родния му език, за да може да го ползва.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nВсеки има полза, независимо дали е богат или не.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nТърговските фирми имат различни цели и изисквания.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nФондация Уикимедия не ми плаща заплата, нито ми въстановява разходи.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nВажно е да се заяви съвсем ясно, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nче парите, които искаме, не отиват в моя джоб.\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nПарите отиват във Фондацията и са за всички, които поддържат тази невероятна общност.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nУикипедия ми даде шанса да направя нещо добро за света.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nТова е инвестиция в бъдещето, в бъдещето на децата ни.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nБлагодарим Ви!\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nСъдържанието на този клип е достъпно по условията на Криейтив Комънс Признание - Споделяне на споделеното, версия 3.0 (http://creativecommons.org/licenses/by-sa/3.0), освен ако не е упоменато друго. Автор: Виктор Григас, Фондация Уикимедия.\\nМненията на участниците в клипа са лични и може да не отговарят на политиката и становищата на компаниите, организациите и институциите, в които членуват.\\nТърговските марки и знаци на Фондация Уикимедия и на всички други организации не са включени в условията на договора на Криейтив Комънс. Търговските марки и знаци на Уикимедия, включително Уикипедия и логото с глобуса пъзел са регистрирани на името на Фондация Уикимедия. Да повече информация, вижте http://www.wikimediafoundation.org/wiki/Trademark_Policy или ни пишете на trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nТози клип е публикуван под лиценза на Криейтив Комънс.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nСъщо като Уикипедия, той може свободно да се копира, миксира и споделя.',\n", + " 'bytes': 9488,\n", + " 'sha1': 'ifjjddayqhgc4yuzwynapgt3nsoaisy',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83965032,\n", + " 'timestamp': '2012-11-30T13:08:48Z',\n", + " 'user': {'id': 843477, 'text': 'Ezhuttukari'},\n", + " 'page': {'id': 22916043,\n", + " 'title': 'ML HELP HowToSearch HQ.ogv.ml.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,400\\nഒരു ലേഖനം തിരയുന്നതെങ്ങനെ ?\\n\\n2\\n00:00:04,561 --> 00:00:09,390\\nപ്രധാന താളിൽ നിന്നോ മറ്റേതു താളിൽ നിന്നോ ഒരു ലേഖനം തിരയാൻ സാധിക്കുന്നു.\\n\\n3\\n00:00:09,759 --> 00:00:13,551\\nതാങ്കൾ ആന എന്ന താളാണ് തിരയാനുദ്ദേശിക്കുന്നത് എന്നിരിക്കട്ടെ.\\n\\n4\\n00:00:14,013 --> 00:00:21,167\\nതാങ്കൾക്ക് ഇംഗ്ലീഷിലോ മലയാളത്തിലോ തിരയാനാകും. എന്നിരുന്നാലും മലയാളത്തിൽ തിരയുന്നതാവും അഭികാമ്യം.\\n\\n5\\n00:00:21,167 --> 00:00:27,167\\nവലതുവശത്ത് മുകളിലായി കാണുന്ന (തിരയുക) എന്ന തിരയൽപെട്ടിയിൽ ആന എന്നെഴിതിച്ചേർക്കുക.\\n\\n6\\n00:00:27,167 --> 00:00:32,067\\nപക്ഷെ മലയാളത്തിലെഴുതുവാനുള്ള ഉപകരണം സ്വതേ ക്രമീകരിച്ചിട്ടുണ്ടാവില്ല.\\n\\n7\\n00:00:32,067 --> 00:00:39,367\\nഅതിനായി ഏറ്റവും മുകളിലായുള്ള എഴുത്തുപകരണം എന്ന കണ്ണിയിൽ അമർത്തി സജീവമാക്കുക എന്നത് (ശരിയിട്ട്) സജീവമാക്കുക.\\n\\n8\\n00:00:39,367 --> 00:00:47,700\\nഇത് എളുപ്പത്തിൽ ചെയ്യുവാനായി കീബോർഡിലെ കണ്ട്രോൾ കീയും M എന്ന കീയും ഒന്നിച്ചമർത്തിയാലും മതിയാകും.\\n\\n9\\n00:00:47,700 --> 00:00:53,600\\nഎഴുത്തുപകരണം പ്രവർത്തനക്ഷമമായി എന്നുള്ളതിനു സൂചകമായി ചുമന്ന ഗുണനചിഹ്നം മാറുകയും ചെയ്യും.\\n\\n10\\n00:00:53,600 --> 00:01:00,567\\nഎഴുതുന്നതിനനുസരിച്ച് താഴേക്ക് വരുന്ന ഐച്ഛികങ്ങൾ തിരഞ്ഞെടുക്കുകയോ, മുഴുവനായി എഴുതി തിരച്ചിൽ ചിഹനത്തിൽ അമർത്തുകയോ ആവാം.\\n\\n11\\n00:01:00,567 --> 00:01:02,733\\nതിരയുന്ന താൾ ഉണ്ടെങ്കിൽ അതിലേക്ക് പോകും\\n\\n12\\n00:01:02,733 --> 00:01:13,167\\nതിരച്ചിൽ വാക്ക് ഉൾപ്പെടുന്ന എല്ലാ ലേഖനങ്ങളും കാണുവാനായി ഐച്ഛിക പട്ടികയിലെ ഏറ്റവും താഴെയായുള്ള (ഉൾപ്പെടുന്നവ..) എന്നത് തിരഞ്ഞെടുക്കുക.\\n\\n13\\n00:01:13,167 --> 00:01:16,900\\nആന ഉൾപ്പെടുന്നവ എല്ലാ താളുകളും കാണപ്പെടും.\\n\\n14\\n00:01:16,900 --> 00:01:19,900\\nഇങ്ങനെ നിങ്ങൾക്ക് വിക്കിപീഡിയയിൽ ഏതു ലേഖനവും തിരയാം.',\n", + " 'bytes': 3468,\n", + " 'sha1': 'dp7bfp79jyhik5mx6zmei9b53beuaqz',\n", + " 'parent_id': 83893741,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85233400,\n", + " 'timestamp': '2012-12-18T01:56:43Z',\n", + " 'user': {'text': '216.38.130.162'},\n", + " 'page': {'id': 22920045,\n", + " 'title': 'The Impact Of Wikipedia.webm.ay.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'fix typo',\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nWikipiryaxa janiw qullqichasiñatakikiti, ukjamipansa llika(internet) taypinxa 5ir wali uñt\\'atawa. Taqpach uka qillqatanakaxa jan payllawinakampkam qillqatkamakiwa. \\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nAka waruqawtuqiw mä qawqhan uñt\\'awayapxañäni...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nNepal Jach\\'a Suyu Markankiritwa\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nIraq Marka Suyutarakitwa\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nIndia markankirirakitwa\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nByram, New Jersey markatarakitwa\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nBirmingham markanrak qamastta, England\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- Ch\\'uqiyapu, Wuliwya -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malaysia -- Milan- Italy -- South Africa tuqinkapxiritwa\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPoland -- Japan -- Armenia-nkiritwa\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrazil -- Russia -- Botswana-nkiritwa\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael -- Uzbekistan -- Hong Kong-tuqita\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul -- Mexico-tuqinkiritwa\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nKhaya 2008 maranwa Wikipiryamp chikañchasiniwayta, uka maratpachxa walja qillqatanakrakwa qillqaniwayta.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nMayririxa, amuyatatxa Miriam Nour uka mamatxamakinawa. \\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nJupatxa janiw mä qillqatas utjkanati, uknirinaw nayrir nayrir qillqatajaxa.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nUkjam qillqasinxa, mä pä marachi kimsa marachi ukjaw armt\\'asxatäta! \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nukjatwa pachpa qillqat mayamp uñxatt\\'askayäta. Wali muspatarakiw jikxatasiwayta. \\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nukañkamaxa 100,000 jila jaqinakaw uka qillqatajx uñxatxapxatayna. \\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nWaljanipuniw uñxatapxatayna, taqinis uka yatiyawx waraqawayapxarakitaynawa. \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nUkjamipansti, janipuniw ak\\'chs amuyaskayatti,100,000 jila jaqiruw qillqatajax yanapt\\'awayatayna.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nKunawsatixa, \"trukaña\" uk limintawaytxa, nayraqatpachxa walpun axsarayäta. \\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nAmuyujansti sakiyatwa,“ Ampi!, may q\\'al tukthapxasti! may jan sum lurkasti! janxamakiw lurkiristi!\" Sasina. \\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipiryaxa \\'taqininkiwa\\' -- taqinipunirakiw amuyupx qillqt\\'awayarakispa, \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nukjamipansti yaqha jilas kullakas uñxatt\\'asinx juk\\'amp aski amuyunakampix yapt\\'awayakirakispawa .\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nwaranqh waranqh jaqinakaw sapurunjama, sapa pachanjama, sapa k\\'atanjama Wikipiryar aski qillqataniñapatak qillqasipki.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nWaljan jila kullakanakarakiw jan payllawimpi irnaqasipki. Akjamatwa inaki yanapt\\'asiwix ch\\'amañchata.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nYatiqanaka ukjamarak yatxatatanakaw aka taypinx chikañchasisipki.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nYaqhipanakax qalltanxa, yanapt\\'asiñx axsarapxanawa.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nAka amtawisti wali jach\\'a amtapuniwa aka llika(internet)taypinxa \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nakjam jach\\'a amtawisti nayxama yanapt\\'asirinakamp jach\\'añchatatawa.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nJaniw Wikipirya taypinxa, jiskasmati, “Ukjamaxa, qillqataxapuniw chiqaxa, jumanx janiw askikiti, akax nän qillqawijawa!” sasinxa.\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nMaynitixa jan wali amuyunikchixa, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nyaqha jila kullakaw ukx chimpt\\'asispa, janitix chimpt\\'atakaspaxa, jumapachpaw chimpt\\'asma.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nUkjamatwa waranqh waranqh jaqinakaw uka qilqatanaka aruskiwapinakxa uñjasipki, \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nukjamaraki askichasipki.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nUkjamipanwa, qillqañax qallantata\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nukatsti - qillqantawayatawa.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nNayraqatpachxa \\'chiqat janich chiqa\\' ukjam amuyumpiw qallantawayta. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\n\\'chiqat janich chiqa\\' uka amuyumpiw qallantawayta.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nNayrir wikipiryan qillqataxasti \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\njaqin usuchjatanak tuqitänawa.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nChallwa katuñ tuqit qillqtxa, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontana sarnaqawinakxata, National Park-tuqita, Yellowstone-tuqita.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nYapuchañanaktuqita. Ajitris anatañtuqita. jakañanaktuqita. \\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nPallapallanaktuqita. Armenia markxata. Romanunakxata.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nTaripirinaktuqita. Yatiyäwinaktuqita. Jakawinakxata. T\\'ixit anatañtuqita.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrlanta markxata. Pensylwania markxata. Jamuqanakxata.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd tamachaw tuqita. Phayañtuqita, natakix askipuniw phayañaxa.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nBomba Nucleartuqita ukjamrak radioactividattuqita, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nUmapatxan jalnakañ tuqita.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nTäqi kunayman yatiyäwinakapuniw taqituqin llika taypinx ch\\'iqintata\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nUkjamatwa mawjitarkam apthapita.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nUkjamarusa, taqiniruw uka qillqäwinakax inak puriski, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nukjamaraki, kawknir arunakantix parlasipki uka arunakapana.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nQamiripasa pisinkiripasa, taqinipuniw aka qillqatanakx uñjapxaspa.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nMaysatsti qullqichasiri mayacht\\'awinakat sipanxa wali mayjawa. \\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nAka Wikimedia Fundación-tuqitxa, janiw mä juk\\'a payllawis katuqatakiti.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\n Ukjamarusa wali askiwa qhana parlasiñasaxa, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nSum amuyañ sipanxa, kunawsatix qullqi aytatakixa, janiw uka qullqix nayatakikiti--\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nUka qullqixa Wikipirya amtäw juk\\'amp sartayañatakiwa, juk\\'amp ch\\'amañchañatakiwa.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nAka Wikipiryaxa mä punks uraqpachar jist\\'arawaykitaspana, ukjamawa. \\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nUkjamaraki, Wikipiryax qhipurutakiwa, wawanakasan wawanakapatakiwa.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nPay suma!!\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nTaqi kunatix aka waruqanx utjkixa, Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) ukarjam waruqt\\'atawa. Ukjamaraki kuna jan walt\\'awis utjaspxa, tata: Victor Grigas, Wikimedia Foundation amparapamkiwa.\\nTäqi aka waruqan arst\\'irinakaxa, janiw kawknir tamanakana, mayacht\\'awinakan amuyuparxamakisa. \\nKawknir Wikimedian yänakapatï aka waruqanakan uñstkixa janiw Creative Commons license ukarjamakiti. Juk\\'amp yatiñtix munstaxa, uñxatt\\'amaya http://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nMayampisa, aka jamuqasti Creative Commons license ukarjamawa.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nKunjamatix Wikipedian amuyapakixa, ch\\'iqintayaskakima.',\n", + " 'bytes': 7083,\n", + " 'sha1': '0floijpsnqwi00utojf8xuu81khd434',\n", + " 'parent_id': 85232789,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83915725,\n", + " 'timestamp': '2012-11-29T19:21:52Z',\n", + " 'user': {'id': 305204, 'text': 'Seddon'},\n", + " 'page': {'id': 22921099,\n", + " 'title': 'The Impact Of Wikipedia.webm.ar.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 ويكيبيديا لا تهدف للربح، لكنها خامس أشهر موقع في العالم. جميع مقالات و...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nويكيبيديا لا تهدف للربح، لكنها خامس أشهر موقع في العالم. جميع مقالات ويكيبيديا يكتبها متطوعون.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nيسعدنا أن نعرفك على بعضهم...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nأنا من نيبال\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nأنا من العراق\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nجئت من الهند\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nأنا من بيرام في ولاية نيوجيرسي\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nأنا من برمينغهام في إنجلترا\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nشيكاغو، ألينوي -- لاباز، بوليفي -- نيروبي، كينيا\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nكوالالمبور، مالزيا -- ميلانو في إيطاليا -- جنوب أفريقيا\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nبولندا -- اليابان -- أرمينيا\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nالبرازيل -- روسيا -- بوتسوانا\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nإسرائيل -- أوزباكستان -- هونغ كونغ\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nإسطنبول -- المسكيك\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nتشاتانوجا، تينيسي\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nفي بداية انضمامي لويكيبيديا في 2008 أنشأت مقالات كثيرة.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nأعتقد أن إحداها كانت عن سيدة اسمها مريم نور.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nلم يكن لدينا مقالة عنها، وتلك كانت أولى مقالاتي.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nنسيت الموضوع! وبعد سنتين أو ثلاثة، \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nمررت بالمقالة. وصُدمت.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nأكثر من 100،000 شخص قرؤوا تلك المقالة.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nاستخدموها، وبالتالي حصّلوا معلوماتهم من تلك المقالة. مرّوا بالمقالة، \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nفأحسست أني أثرت في حياة أكثر من 100،000 شخص.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nكنت خائفة جدا عندما ضغطت زر \"عدل\" أول مرة.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nكنت أقول لنفسي: \"يا إلهي، سوف أدمر كل شيء!\\nلا يمكن أن أنجح! لا يمكن أن أقوم بذلك!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nويكيبيديا \"مفتوحة المصدر\" -- يمكن للجميع أن يطرحوا أفكارهم \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nوسيأتي شخص آخر يحسنها لتغدو أفضل.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nيوجد آلاف الأشخاص الذين يسعون كل يوم وكل ساعة وكل دقيقة لتحسين ويكيبيديا.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nجزء أساسي من القضية التطوع. هذه وسيلة فريدة للتطوع.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nيجتمع هنا المحترفون والهواة الذين يعشقون موضوعا ما.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nالذين يحملون آراء مختلفة في بداية المطاف، يتعاونون.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nقد تظن أن ما يجري يتم بإدارة شركة إنترنت ضخمة \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nلكن يديره متطوعون مثلي.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nلا يمكن أن تقول: \"حسنا، أنا محق وأنت المخطئ، هذه مقالتي!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nإذا وجد تحيّز \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nفعلى الأغلب سيشير إلى ذلك شخص ما، إذا لم يقم أحد بذلك أقوم به أنا.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nمئات وآلاف الناس يشاهدون المقالات \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nويصححونها.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nثم نقرت الزر و..\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\n-فجأة-- بدأت الرحلة، وكانت رائعة.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nأول ما بدأت به كان \"الاحتمالات\". \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nأول مقالة كتبتها كانت \"الاحتمالات\".\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nإحدى أهم المقالات التي كتبتها في ويكيبيديا كانت \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nمقالة جروح الطعن.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nكتبت عن الصيد بالحشرات، \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nوعن تاريخ مونتانا، عن تاريخ المنتزه الوطني، وعن متنزه يلوستون الوطني\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nالمحاصيل غير المستغلة. لاعبي الشطرنج. التنوع الحيوي.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nتاريخ الحروب. التاريخ الأرميني. التاريخ الروماني.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nالقضاء. الاتصالات. سير الأعلام. كرة القدم.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nآيرلندا. بنسيلفانيا. التصوير غالبا.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nبِنك فلويد. الشوي، لأني أحب الشوي.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nالأسلحة النووية والنشاط الإشعاعي، \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nوالتجديف.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nالمعلومات موجودة لكنها مبعثرة\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nنحاول أن نجمعها في مكان واحد.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nنتيح معرفة حرة مجانية للجميع، \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nبلغتهم الأم ليتمكنوا من الاستفادة منها.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nالجميع يستفيد سواءً كانوا أغنياء أم فقراء.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nللشركات الربحية دوافعها ومتطلباتها.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nلا أتلقى من مؤسسة ويكيميديا مرتبا، بل لا تدفع المؤسسة تكاليفي.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nأعتقد أن من الضروري جدا أن أتمكن من أن أقول وبوضح: \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nعندما أطلب منك مالا فأنا لا أطلبه لنفسي --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nبل أطلبه للمؤسسة التي تمثل الفريق الذي يدعم هذا المجتمع المذهل الذي أنا جزء منه.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nأعتقد أن ويكيبيديا مكنتني من إحداث تغيير كبير في العالم.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nالأمر بمثابة استثمار في مستقبلك، ومستقبل أطفالك.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nشكرا.\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nمحتوى هذا الفيديو مرخص برخصة المشاع الإبداعي: النسبة-الترخيص بالمثل 3.0 (http://creativecommons.org/licenses/by-sa/3.0) مالم يرد خلاف ذلك. هذا العمل يُنسب لفكتور فريغاس من مؤسسة ويكيميديا.\\nالآراء المطروحة في هذا الفيديو تعبر فقط عن آراء الأفراد الذين ظهروا فيه ولا تعبر بالضرورة عن سياسات أو آراء أي شركة أو منظمة أو مؤسسة قد ينتمي لها الفرد.\\nThe trademarks and logos of the Wikimedia Foundation and any other organization are not included under the terms of this Creative Commons license. Wikimedia trademarks and logos, including \"Wikipedia\" and the puzzle globe logo, are registered trademarks of the Wikimedia Foundation. For more information, please see our Trademark Policy page,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nهذا الفيديو منشور برخصة مشاع إبداعي.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nمثل ويكيبيديا، يحق لك أن تنسخه وتعدله وتشاركه.',\n", + " 'bytes': 8162,\n", + " 'sha1': 'rq04veki08g3i8dvwymas1ughuafkow',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83915803,\n", + " 'timestamp': '2012-11-29T19:23:11Z',\n", + " 'user': {'id': 305204, 'text': 'Seddon'},\n", + " 'page': {'id': 22921122,\n", + " 'title': 'The Impact Of Wikipedia.webm.da.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 Wikipedia tjener ikke penge, men det er verdens 5. mest besøgte netsted. Alle artikler i Wikipedia er skrevet af frivillige. 2...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia tjener ikke penge, men det er verdens 5. mest besøgte netsted. Alle artikler i Wikipedia er skrevet af frivillige.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nVi vil gerne præsentere nogle af dem for dig...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nJeg er fra Nepal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nJeg kommer fra Indien\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nJeg er fra Byram, New Jersey\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nJeg kommer fra Byram, New jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nJeg bor i Birmingham, England\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La paz, Bolivia -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malaysia -- Milano i Italien -- Sydafrika\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolen -- Japan -- Armenien\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrasilien -- Rusland -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael -- Uzbekistan -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul -- Mexico\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nStraks efter, at jeg var begyndt hos Wikipedia i 2008, begyndte jeg på mange artikler.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nÉn af dem var vistnok om en dame, der hed Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nVi havde ikke nogen artikel om hende, så -- og det blev min første artikel.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nDerefter glemete jeg alt om den! Måske to eller tre år senere \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nkom jeg forbi samme artikel. Jeg blev chokeret.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nFlere end 100.000 mennesker havde læst artiklen.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nDe brugte den, dvs. de fik deres oplysninger fra samme artikel. De kiggede på den artikel, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nså man føler, at man ligesom rørte og påvirkede flere end 100.000 mennesker.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nJeg var bare så skrækslagen, da jeg trykkede på \\'redigér\\'-knappen for første gang.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nJeg tænkte: \"Åh du godeste, jeg er ved at ødelægge det hele!\\nDet duer ikke! Jeg kan ikke gøre det!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia er såkaldt \\'Open Source\\' -- hvor enhver kan lægge sin idé \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nog så kommer der en anden til og finpudser den idé, så den bliver perfekt.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nDer er tusinder af mennesker, der arbejder hver dag, hver time, hvert minut på at forbedre Wikipedia.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nEn stor del af det drejer sig om at være frivillig. Det her er en enestående måde at udføre frivilligt arbejde.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nDet fører de professionelt uddannede og de amatører sammen, som interesserer sig for et bestemt emne.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nDe, som havde forskellige holdninger i begyndelsen, begynder at samarbejde.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nEn betydelig del af det, man ville forvente et stort internetfirma skulle klare, \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nbliver ordnet af frivillige som mig.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nMan kan ikke bare sige: \"OK, jeg har ret, og du tager fejl, det her er min version af artiklen!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nHvis der opstår et problem med forudindtagethed, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nså har nogen sikkert markeret det, og hvis det ikke er sket, så kan jeg også lave markeringen.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nMan har hundreder og tusinder af mennesker, der ser det \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nog retter det.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nOg så trykker jeg på knappen, og\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBum - Rejsen begyndte og det var herligt.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nJeg begyndte med \\'Sandsynlighed\\'. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nDen første artikel, jeg tog hul på, var \\'Sandsynlighed\\'.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nÉn af de større artikler, jeg skrev på Wikipedia, var \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nartiklen om \\'Stiksår\\'.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nJeg skriver om fluefiskeri, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontanas historie, Nationalparkhistorie, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nUnderudnyttede afgrøder. Skakspillere. Biodiversitet.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nEmner fra militærhistorien. Armensk historie. Romersk historie.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nDommere. Kommunikation. Biografier. Fodbold.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrland. Pennsylvania. Mest om fotografering.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Bagning, for jeg elsker at bage.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nKernevåben og radioaktivitet, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nog kajakroning i bjergfloder.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nDer er alle de oplysninger, der ligger derude og er ret spredte\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nog vi er i gang med at samle dem på ét sted.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nVi tilbyder gratis viden til enhver, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\npå deres eget sprog, så de kan bruge den.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nAlle har gavn af dette, hvad enten de er rige eller fattige.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nSelskaber, der søger fortjeneste, har andre motiver og andre krav.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nJeg modtager ikke nogen løn fra Wikimediafonden, og jeg får end ikke mine udgifter dækket.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nJeg mener, at det er meget vigtigt, at jeg kan sige helt klart: \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nHør her, når jeg beder om penge, så beder jeg ikke om penge til mig selv --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nJeg beder om penge til fonden, som er det hold, der understøtter dette forbløffende fællesskab, som jeg er en del af.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nJeg mener, at Wikipedia gav mig denne mulighed for at gøre en stor forskel i verden.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nDet er som en investering i min fremtid, mine børns fremtid.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nTak.\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nIndholdet i denne video kan bruges under licensen Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0), med mindre andet er angivet. Arbejdet skyldes: Victor Grigas, Wikimediafonden.\\nDe synspunkter og holdninger, der fremsættes i denne video, tilhører udelukkende de enkeltpersoner, der ses på videoen, og de gengiver ikke nødvendigvis politikker eller stillingtagen hos noget selskab, organisation eller institution, som vedkommende måtte være en del af.\\nWikimediafondens og enhver anden organisations varemærker og logo\\'er er ikke omfattet af vlkårene af den nævnte Creative Commons licens. Wikimedias varemærker og logo\\'er, herunder \"Wikipedia\" og puslespilglobus-logoet, er Wikimediafondens indregistrerede varemærker. Hvis der er behov for yderligere information, så se venligst vores varemærkeside: http://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nDenne video udgives under en Creative Commons licens.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nLigesom Wikipedia er det gratis at kopiere, redigere og videregive den.',\n", + " 'bytes': 7165,\n", + " 'sha1': '4uzalqvlsvd9vbk2xs2358heldtpkbj',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83915867,\n", + " 'timestamp': '2012-11-29T19:24:50Z',\n", + " 'user': {'id': 305204, 'text': 'Seddon'},\n", + " 'page': {'id': 22921136,\n", + " 'title': 'The Impact Of Wikipedia.webm.gl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 A Wikipedia é unha organización sen fins lucrativos, pero é a quinta páxina web máis visitada do mundo. Todos os artigos da...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nA Wikipedia é unha organización sen fins lucrativos, pero é a quinta páxina web máis visitada do mundo. Todos os artigos da Wikipedia están escritos por voluntarios.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nQueremos presentarche algunhas desas persoas...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nSon do Nepal.\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nSon de Iraq.\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nEu veño da India.\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nSon de Byram, Nova Jersey.\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nVivo en Birmingham, Inglaterra.\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois. La Paz, Bolivia. Nairobi, Quenia.\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malaisia. Milán en Italia. Sudáfrica.\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolonia. Xapón. Armenia.\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrasil. Rusia. Botsuana.\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael. Usbequistán. Hong Kong.\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstambul. México.\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee.\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nAo primeiro, cando comecei na Wikipedia en 2008, creei moitos artigos.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nCoido que un deles era sobre unha muller chamada Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nNon había ningún artigo sobre ela, así que... ese foi o meu primeiro artigo.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nLogo esquecín o artigo! E dous ou tres anos despois \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\natopei o artigo. Quedei pampa.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMáis de 100.000 persoas leran o artigo.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nUtilizárono para obter información del. Dalgún xeito chegaron ao artigo \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\ne ti sentes que influíches en máis de 100.000 persoas.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nEstaba atemorizada a primeira vez que premín no botón \"Editar\".\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nPensei: \"Meu Deus, vouno estragar todo!\\nNon pode funcionar! Non o podo facer!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nA Wikipedia é un proxecto de código aberto no que cadaquén pode achegar a súa idea \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\npara que logo outra persoa veña e perfeccione esa idea para facela extraordinaria.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nHai milleiros de persoas traballando cada día, cada hora, cada minuto na Wikipedia para mellorala.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nUn factor moi importante é o voluntariado. Esta é unha forma única de ser voluntario.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nConsegue reunir tanto a profesionais coma a afeccionados que comparten unha paixón por un tema en particular.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nXente que tiña opinións diferentes ao principio comeza a colaborar.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nMoito do que poderías supor que unha enorme corporación da internet é capaz de facer \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nestá xestionado por voluntarios coma min.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nNon podes dicir: \"De acordo, eu teño razón, ti estás equivocado, esta é a miña versión do artigo!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nSe hai algún problema de subxectividade, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nentón posiblemente alguén xa marcou o artigo; se non é así, eu podo sinalar o problema.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nTes centos e milleiros de persoas vendo \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\ne corrixindo todo.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nEntón premín no botón e...\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBum! A viaxe comezou e foi fantástica.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nPrimeiro empecei con \"Probabilidade\". \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nO primeiro artigo que comecei foi \"Probabilidade\".\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nUn dos artigos máis importantes que escribín na Wikipedia foi \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\no artigo sobre as feridas por arma branca.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nEscribo sobre a pesca con mosca, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\na historia de Montana, a historia dos parques nacionais, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nColleitas infrautilizadas. Xogadores de xadrez. Biodiversidade.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nHistoria militar. Historia de Armenia. Historia de Roma.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nXuíces. Comunicación. Biografías. Fútbol.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrlanda. Pensilvania. Fotografía, principalmente.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Repostaría, porque me gusta enfornar.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nArmas nucleares e radioactividade \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\ne kaiak en augas bravas.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nExiste unha enorme cantidade de información espallada por aí\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\ne nós estamos reuníndoa toda nun único lugar.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nEstamos ofrecendo coñecemento libre a todas as persoas \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nna súa lingua, para que poidan utilizalo.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nToda a xente sae beneficiada con isto, sexa rica ou pobre.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nAs compañías comerciais teñen motivacións e necesidades diferentes.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nNon recibo ningún salario da Fundación Wikimedia. Tampouco pagan os meus gastos.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nCoido que é moi importante poder dicir claramente: \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\n\"Oe, cando pido os teus cartos, non pido o diñeiro para min...,\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\n...senón que pido os cartos para a Fundación, que é o equipo que apoia esta incrible comunidade da que formo parte\".\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nCreo que a Wikipedia me deu esta oportunidade para marcar a diferenza no mundo.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nÉ coma un investimento para o teu futuro, para o futuro dos teus fillos.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nGrazas\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nO contido deste vídeo está dispoñible baixo a licenza Creative Commons recoñecemento compartir igual v3.0 (http://creativecommons.org/licenses/by-sa/3.0/deed.gl), a menos que se indique o contrario. Esta obra pode atribuírse a: Victor Grigas, Fundación Wikimedia.\\nOs puntos de vista e as opinións expresadas no vídeo pertencen unicamente ás persoas que aparecen nel e non reflicten necesariamente as políticas ou posicións de ningunha compañía, organización ou institución da que a persoa poida ser membro.\\nAs marcas comerciais e os logotipos da Fundación Wikimedia e calquera outra organización non están incluídos baixo os termos desta licenza Creative Commons. As marcas e logotipos da Wikimedia, incluíndo \"Wikipedia\" e o logotipo do quebracabezas en forma de globo son marcas rexistradas da Fundación Wikimedia. Para obter máis información, consulta a nosa política de marcas ou ponte en contacto con nós no enderezo trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nEste vídeo está publicado baixo unha licenza Creative Commons.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nComo a Wikipedia, pode copialo, modificalo e compartilo libremente.',\n", + " 'bytes': 7083,\n", + " 'sha1': 'o1ap1htvkwld3czw1z1hneybexhuvdj',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83915918,\n", + " 'timestamp': '2012-11-29T19:25:07Z',\n", + " 'user': {'id': 305204, 'text': 'Seddon'},\n", + " 'page': {'id': 22921144,\n", + " 'title': 'The Impact Of Wikipedia.webm.id.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 Wikipedia bersifat nirlaba, namun menempati urutan website ke-5 di dunia. Semua artikel di Wikipedia ditulis oleh sukarelawan. ...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia bersifat nirlaba, namun menempati urutan website ke-5 di dunia. Semua artikel di Wikipedia ditulis oleh sukarelawan.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nKami akan mengenalkan beberapa dari mereka kepada anda...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nSaya dari Nepal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nSaya dari Irak\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nSaya berasal dari India\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nSaya dari Byram, New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nSaya tinggal di Birmingham, Inggris\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La Paz, Bolivia -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malaysia -- Milan di Italia -- Afrika Selatan\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolandia -- Jepang -- Armenia\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrazil -- Rusia -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael -- Uzbekistan -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul -- Meksiko\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nAwal saya bergabung di Wikipedia pada 2008, saya memulai banyak artikel.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nSalah satunya, saya menulis tentang seorang wanita bernama Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nKita tidak memiliki artikel tentang dia, jadi -- dan ini adalah artikel pertama saya.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nSetelah itu saya lupa artikel tersebut! Sekitar dua atau tiga tahun kemudian, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nSaya tidak segaja mengunjungi artikel ini. Saya terkejut.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nLebih dari 100.000 orang membaca artikel ini.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nMereka menggunakannya, lalu mereka mendapat informasi dari artikel ini. Mereka mengunjungi artikel ini, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nrasanya seperti anda memberi dampak dan mempengaruhi lebih dari 100.000 orang.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nSaya benar-benar merasa takut ketika saya menekan tombol \\'edit\\' untuk pertama kalinya.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nSaya berpikir, \"Ya Tuhan, Saya akan mengacaukan segalanya!\\nItu tidak akan berhasil! Saya tidak bisa melakukannya!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia bersifat \\'open source\\' -- siapapun dapat menyumbangkan idenya. \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nkemudian orang lain datang dan memoles ide itu untuk menjadikannya lebih sempura.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nAda ribuan orang bekerja setiap hari, setiap jam, setiap menit di Wikipedia untuk menyempurnakannya.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nKebanyakan berdasarkan kesukarelaan. Ini adalah cara unik untuk menjadi sukarelawan.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nIni membawa para profesional dan amatir yang memiliki kecintaan pada topik tertentu.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nOrang-orang yang memiliki opini berbeda diawal mulai berkolaborasi.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nBanyak dari anda akan mengira sebuah perusahaan Internet akan menanganinya \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nyang sebenarnya ditangani oleh sukarelawan seperti saya.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nAnda tidak bisa hanya berkata, \"Oke, saya benar, anda salah, ini adalah artikel versi saya!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nJika ada isu memihak, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nmaka seseorang mungkin sudah menandainya dan jika tidak, saya dapat menandainya juga.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nAnda mendapat ratusan dan ribuan orang melihat itu \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\ndan mengkoreksinya.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nKemudian saya menekan tombol dan\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom - perjalanan dimulai dan ini sangat hebat.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nPertama saya memulai dengan \\'Probability\\' \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nArtikel pertama saya adalah \\'Probability\\'.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nSalah satu dari artikel utama yang saya tulis di Wikipedia adalah \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nartikel tentang luka tusuk.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nSaya menulis tentang memancing, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nSejarah Montana, sejarah Taman Nasional, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nTanaman yang kurang dibudidayakan. Pemain catur. Biodiversitas.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nTopik sejarah militer. Sejarah Armenia. Sejarah Romawi.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nHakim-hakim. Komunikasi. Biografi. Sepakbola.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrlandia. Pennsylvania. Umumnya fotografi.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Membuat roti, karena saya senang membuat roti.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nSenjata nuklir dan radioaktivitas, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\ndan mendayung kayak di jeram-jeram.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nSemua informasi ini tersedia tetapi nampaknya tercerai berai\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\ndan kami menempatkannya menjadi di satu tempat.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nKami menawarkan pengetahuan gratis untuk semua orang, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\ndalam bahasa mereka sendiri agar mereka dapat memakainya.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nIni menguntungkan semua orang, baik yang kaya atau yang miskin.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nPerusahaan yang berorientasi pada laba memiliki motivasi dan kebutuhan berbeda.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nDari Yayasan Wikimedia, saya tidak menerima gaji dan saya juga tidak mengeluarkan biaya.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nSaya pikir sangatlah penting bahwa saya dapat mengatakannya dengan cukup jelas, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nLihat! Jika saya meminta uang kepada anda, saya tidak meminta uang untuk diri saya sendiri --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nSaya meminta uang dari Anda untuk Yayasan yang merupakan tim pendukung komunitas hebat ini dimana saya menjadi bagiannya.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nSaya pikir Wikipedia memberi saya kesempatan ini untuk benar-benar membuat perubahan besar di dunia.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nSeperti suatu investasi untuk masa depan Anda, masa depan anak cucu Anda.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nTerima kasih\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nIsi video ini tersedia di bawah Lisensi Creative Commons Attribution-ShareAlike v3.0 (http://creativecommons.org/licenses/by-sa/3.0) kecuali disebutkan lain. Karya ini diatribusikan kepada: Victor Grigas, Yayasan Wikimedia.\\nPandangan dan opini yang dinyatakan dalam video ini semata-mata berasal dari individu yang muncul dalam video dan belum tentu merefleksikan kebijakan atau posisi dari perusahaan, organisasi, atau institusi manapun di mana individu tersebut merupakan anggota.\\nMerek dagang dan logo Yayasan Wikimedia dan organisasi lainnya tidak dimasukkan berdasarkan syarat lisensi Creative Commons ini. Merek dagang dan logo Wikimedia, termasuk \"Wikipedia\" dan logo \"dunia tekateki\", adalah merek dagang terdaftar milik Yayasan Wikimedia. Untuk informasi lebih lanjut, silakan lihat halaman Kebijakan Merek Dagang, http://www.wikimediafoundation.org/wiki/Trademark_Policy atau dengan menghubungi trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nVideo ini dipublikasikan di bawah lisensi Creative Commons.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nSeperti Wikipedia, video ini bebas untuk dikopi, diubah dan dibagikan.',\n", + " 'bytes': 7254,\n", + " 'sha1': 'psoe8hx672l8u5yh8348yfw4ydgb0ym',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 620805795,\n", + " 'timestamp': '2022-01-11T06:18:56Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 22924515,\n", + " 'title': 'British Grenadiers.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Undo revision 620795503 by [[Special:Contributions/122.2.108.17|122.2.108.17]] ([[User talk:122.2.108.17|talk]])',\n", + " 'text': \"1\\n00:00:23,779 --> 00:00:29,865\\nSome talk of Alexander,\\nand some of Hercules\\n\\n2\\n00:00:29,957 --> 00:00:35,962\\nOf Hector and Lysander,\\nand such great names as these.\\n\\n3\\n00:00:36,000 --> 00:00:41,803\\nBut of all the world's great heroes,\\nthere's none that can compare.\\n\\n4\\n00:00:41,826 --> 00:00:47,752\\nWith a tow, row, row, row, row, row,\\nto the British Grenadiers.\\n\\n5\\n00:00:47,787 --> 00:00:53,936\\nWhene'er we are commanded\\nto storm the palisades,\\n\\n6\\n00:00:54,000 --> 00:00:59,852\\nOur leaders march with fusees,\\nand we with hand grenades.\\n\\n7\\n00:00:59,910 --> 00:01:05,931\\nWe throw them from the glacis,\\nabout the enemies' ears.\\n\\n8\\n00:01:06,000 --> 00:01:11,867\\nWith a tow, row, row, row, row, row,\\nto the British Grenadiers.\\n\\n9\\n00:01:11,940 --> 00:01:17,764\\nThen let us fill a bumper,\\nand drink the health of those\\n\\n10\\n00:01:17,813 --> 00:01:23,761\\nWho carry caps and pouches,\\nand wear the loupèd clothes.\\n\\n11\\n00:01:23,794 --> 00:01:29,759\\nMay they and their commanders\\nlive happy all their years.\\n\\n12\\n00:01:29,793 --> 00:01:36,293\\nWith a tow, row, row, row, row, row,\\nto the British Grenadiers.\",\n", + " 'bytes': 1094,\n", + " 'sha1': 'sdf0vr9k5j6a9nfr77g4c62vc3lvai2',\n", + " 'parent_id': 620795503,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83969120,\n", + " 'timestamp': '2012-11-30T14:46:30Z',\n", + " 'user': {'id': 1476220, 'text': 'Psubhashish'},\n", + " 'page': {'id': 22930443,\n", + " 'title': 'The Impact Of Wikipedia.webm.or.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"ongoing editing, please don't edit for now\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nଉଇକିପିଡ଼ିଆ ଏକ ଅଣଲାଭକାରୀ ସଙ୍ଗଠନ, ତ\\u200cଥାପି ଏହା ବିଶ୍ୱର ୫ମ ଜଣାଶୁଣା ୱେବସାଇଟ । ଏଥିରେ ଥିବା ସମସ୍ତ ପ୍ରସଙ୍ଗ ଲୋକେ ମାଗଣାରେ ଓ ସ୍ୱେଚ୍ଛାରେ ଲେଖିଥାନ୍ତି ।\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nଆମେ ସେମାନଙ୍କ ଭିତରୁ କେତେଜଣଙ୍କୁ ଆପଣଙ୍କ ଷ ପରିଚିତ କରାଇବୁ..\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nମୋ ଘର ନେପାଳ\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nମୋ ଘର ଇରାକ\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nମୁଁ ଭାରତରୁ ଆସିଛି\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nମୁଁ ବାଇରାମ, ନିଉ ଜର୍ସିରୁ ଆସିଛି\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nମୁଁ ଇଂଲଣ୍ଡର ବର୍ମିଙ୍ଗ\\u200cହାମରେ ରହେ\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nଇଲିନୋଇ, ଚିକାଗୋ -- ଲା ପାଜ, ବଲିଭିଅ -- ନାଇରୋବି, କେନିଆ\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nକୁଆଲାଲାମ\\u200cପୁର, ମାଳ\\u200cୟ -- ଇଟାଲିର ମିଲାନ -- ଦକ୍ଷିଣ ଆଫ୍ରିକା\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nପୋଲାଣ୍ଡ -- ଜାପାନ -- ଆର୍ମେନିଆ\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nବ୍ରାଜିଲ -- ରୁଷିଆ -- ବୋଟସ୍ୱାନା\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nଇସ୍ରାଏଲ -- ଉଜବେକିସ୍ଥାନ -- ହ\\u200cଙ୍ଗ କଙ୍ଗ\\n\\n\\n00:00:30,501 --> 00:00:31,000\\nଇସ୍ତାନ\\u200cବୁଲ -- ମେକ୍ସିକୋ\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nଚାତାନୁଗା, ଟେନାସି\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\n୨୦୦୮ରେ ପ୍ରଥମେ ଉଇକିପିଡ଼ିଆରେ ଲେଖିବା ଆରମ୍ଭ କଲାବେଳେ ମୁଁ ଅନେକ ପ୍ରସଙ୍ଗ ଲେଖିବା ଆରମ୍ଭ କରିଥିଲି ।\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nତା ଭିତରୁ ଗୋଟେ ବୋଧେ ମାରିଅମ ନୁର ନାମକ ଜଣେ ମହିଳାଙ୍କ ବାବଦରେ\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nWe didn’t have an article about it, so -- and this was my first article.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nSo I forget about it! \\xa0Maybe two or three years later, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nI passed by this article. \\xa0I was shocked. \\xa0\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMore than 100,000 people read this article. \\xa0\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nThey used it, so they got their information from this article. \\xa0They passed by this article, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nso you feel like you affected and influenced more than 100,000 people.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nI was just so terrified when I pushed the \\'edit\\' button for the first time. \\xa0\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nI thought, “Oh my god, I’m going to ruin everything!\\nThat can’t work! \\xa0I can’t do it!”\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia is an \\'open source\\' -- where everyone can throw in his or her idea \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nand then somebody else comes in and polishes on that idea to make it superb.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nThere are thousands of people working every day, every hour, every minute on Wikipedia to improve it.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nA lot of it is the volunteerism. \\xa0This is a unique way to volunteer.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nIt brings together both professionals and amateurs who have a love for a particular topic.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nThe people who had different opinions in the beginning start to collaborate.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nA lot of what you would assume a large Internet corporation would handle \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nis handled by volunteers like me.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nYou just can’t say, “Okay, I’m right, you’re wrong, this is my version of the article!”\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nIf there’s an issue of bias, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nthen somebody has probably flagged it and if not, now I can flag it too.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nYou’ve got hundreds and thousands of people seeing that \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nand correcting it.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nAnd then I push the button and\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom - The journey started and it was great.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nFirst I started with \\'Probability\\'. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nThe first article I started is \\'Probability\\'.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nOne of my main articles I wrote on Wikipedia was \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nthe article on stab wounds.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nI write about fly fishing, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontana history, National Park history, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nUnderutilized crops. Chess players. Biodiversity.\\xa0\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nMilitary history topics. Armenian history. Roman history.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nJudges. Communication. Biographies. Football.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIreland. Pennsylvania. Mostly photography.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Baking, because I love to bake.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nNuclear weapons and radioactivity, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nand whitewater kayaking.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nThere’s all this information that’s out there that’s kind of scattered\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nand we’re putting it together in one place.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nWe are offering free knowledge for everyone, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nin their own language so they can use it.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nEveryone is benefited by this whether they are rich or poor.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nFor-profit companies have different motivations and different requirements. \\xa0\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nFrom the Wikimedia Foundation, I don’t take a salary and I also don’t even take expenses.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\n\\xa0I think it’s very important that I’m able to say quite clearly, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nLook, when I’m asking you for money, I’m not asking you for money for myself --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nI’m asking you for money for the Foundation which is the team who supports this amazing community that I’m a part of.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nI think Wikipedia gave me this chance to really make a huge difference in the world.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nIt’s like an investment for your future, for your children’s future.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nThank You\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nThe content contained in this video is available under the Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) unless otherwise stated. This work is attributable to: Victor Grigas, Wikimedia Foundation.\\nThe views and opinions expressed in this video are solely those of the individuals appearing in the video and do not necessarily reflect the policies or positions of any company, organization, or institution the individual may be a member of.\\nThe trademarks and logos of the Wikimedia Foundation and any other organization are not included under the terms of this Creative Commons license. Wikimedia trademarks and logos, including \"Wikipedia\" and the puzzle globe logo, are registered trademarks of the Wikimedia Foundation. For more information, please see our Trademark Policy page,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nThis video is published under a Creative Commons license.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nLike Wikipedia, it is free to copy, remix & share.',\n", + " 'bytes': 8055,\n", + " 'sha1': '8l2x3j9uwdw8u2gz98nj2fwzbkomn8h',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83983137,\n", + " 'timestamp': '2012-11-30T19:08:47Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 22933682,\n", + " 'title': 'The Impact Of Wikipedia.webm.kk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 Уикипедия - бұл коммерциялық емес жоба, соған қарамастан ол - әлемдегі ...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nУикипедия - бұл коммерциялық емес жоба, соған қарамастан ол - әлемдегі ең танымал 5-ші сайт. Уикипедиядағы барлық мақалалар ерікті адамдармен жазылады\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nБіз сіздерді солардың ішінен кейбірімен таныстырғымыз келеді...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nМен Непалданмын\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nМен Ирактанмын\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nМен Үндістаннан келдім\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nМен Нью-Джерсидегі Байрамнанмын\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nМен Бирмингемде тұрам, Англия\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nЧикаго, Иллинойс — Ла-Пас, Боливия — Найроби, Кения\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nКуала Лумпур, Малайзия — Милан, Италия — Оңтүстік Африка\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nПольша — Жапония — Армения\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nБразилия — Ресей — Ботсвана\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nИзраиль — Өзбекстан — Гонконг\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nСтамбұл (Түркия) — Мексика\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nЧаттануга, Теннесси штаты\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nУикипедияға 2008 жылы алғаш қосылған кезімде, мен көптеген мақала бастадым.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nСолардың бірі, қателеспесем, Мәриям Нуар есімді ханым туралы болатын.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nБізде бұл кісі туралы мақала болмаған еді және бұл менің алғашқы мақалам болды.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nАртынан мен ол жөнінде ұмытып кеттім! Екі әлде үш жылдан соң ба, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nмен бұл мақаланы қайтадан кездестірдім. Сол кезде мен қатты таң қалдым.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nБұл мақаланы жүз мыңнан астам адам оқыған.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nОлар мақаланы қолданған, одан өздеріне қажет ақпарат алған. Олар мұны оқыған, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nмұны көргеннен кейін сен өзіңді жүз мыңнан астам адамға көмегің тиіп, оларға әсер еткеніңдей сезесің.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nЕң бірінші рет \"өңдеу\" батырмасын басқанымда қатты қорықтым.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\n\"Құдайым-ау, мен бәрін бүлдірем ғой! Бұл іске аспайды! Мен бұлай жасай алмаймын!\"-деп ойладым.\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nУикипедия - ашық жоба, мұнда әркім өз идеясын ұсына алады \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nжәне артынан басқа біреу бұл идеяны іліп әкетіп, кемеліне жеткізіп, әрлеп береді.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nМыңдаған адамдар күн сайын, сағат сайын, әрбір минут сайын Уикипедияны жақсарту үшін тер төгуде.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nСолардың басым көпшілігі - ерікті адамдар. Бұл волонтерлықтықтың бірегей әдісі.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nОл белгілі бір бір тақырыпқа құмарлығы бар әуесқойлардың да, кәсіпқойлардың да басын біріктіреді.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nБастапқыда өзгеше пікірде болған адамдар кейін қол ұшын бере бастайды.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nСіз ірі интернет-корпорациямен басқарылып отыр-ау деп пайымдайтын нәрсенің көбін \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nмына мен сияқты ерікті жандар орындауда.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nСіз жай ғана \"Жарайды, менікі - дұрыс, сіздердікі - бұрыс. Мінекей, мына мақалаға арналған менің нұсқам!\"- деп айта алмайсыз.\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nЕгер қандай да бір ағаттықта күмән бар болса, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nәлдекім бұл жөнінде белгі қоюы мүмкін. Ал егер қоймаса, онда өзім де қоя аламын.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nЖүздеген және мыңдаған адамдар бұл белгіні көреді \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nжәне олқылықты түзейді.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nСол кезде мен батырманы басамын да\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nБум - Саяхат басталып кетті және бұл керемет болды.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nМен алдымен \"Ықтималдықтан\" бастадым. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nМенің алғаш бастаған мақалам \"Ықтималдық\" болатын.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nМенің Уикипедияда жазған мен үшін маңызды мақалаларымның бірі - \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nпышақпен зақымдалған дене жарақаттары туралы еді\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nМен шыбын-шіркей арқылы балық аулау, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nМонтананың тарихы, Ұлттық Парктің тарихы, Йеллоустоун туралы мақалалар жазамын.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nҚолданылмайтын дақылдар. Шахматшылар. Биологиялық әралуандылық.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nӘскери тарих бойынша тақырыптар. Армения тарихы. Рим тарихы.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nСудьялар. Коммуникация. Өмірбаяндар. Футбол.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nИрландия. Пенсильвания. Көбінесе фотосуреттер жөнінде.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Ұннан жасалған тағамдар пісіру, себебі мен пісіргенді ұнатамын.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nЯдролық қару және радиоактивтілік, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nтау суларында каякпен жүзу.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nОсыншама ақпараттың барлығы әйтеуір бір жерде бар, бірақ бөлік-бөлік болып шашырап жатыр.\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nАл біз мұның бәрін бір жерге жинаймыз.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nБіз әрбір адамға еркін әрі шексіз білімді \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nолардың өздерінің ана тілдерінде ұсынамыз. Олар оны сол тілде қолдана алады.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nМейлі бай болсын, мейлі кедей болсын - әрқайсысы бұдан пайда табады.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nКоммерциялық компаниялардың өздерінің түрткі боларлық мақсаттары мен әртүрлі талаптары болады.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nМен Уикимедия қорынан ешқандай да жалақы алмаймын. Сондай-ақ мен ешқандай да шығынға кенеліп жатқаным жоқ.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nМен шын жүректен мына нәрсені айта алам (және бұл өте маңызды деп ойлаймын): \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\n\"Тыңдаңыз, мен сізден ақша сұраған кезде, мен ақшаны өзіме сұрамаймын -\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nМен ақшаны өзім соның мүшесі болып табылатын осындай керемет қоғамдастыққа демеу беретін Уикимедия Қоры үшін сұраймын.\"\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nУикипедия маған бұл әлемде үлкен өзгерістер жасауға мүмкіндік берді деп ойлаймын.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nБұл сізге және сіздің бала-шағаңызға арналған инвестиция секілді.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nРахмет СІЗГЕ!\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nВидеоның ішіндегісі Creative Commons Attribution-ShareAlike (http://creativecommons.org/licenses/by-sa/3.0) лицензиясы аясында қолжетімді (егер басқаша айтылмаған болса). Осы жұмыстың аттрибуциясы: Виктор Григас және Уикимедия Қоры.\\nБұл видеода айтылған көзқарастар мен пікірлер осы видеода көрсетілген тұлғалардың өз сөздері болып табылады және осындағы қайсыбір тұлға мүшесі болып табылатын қандай да бір компанияның, ұйымның немесе басқа да құрылымның саясаты мен позициясын қамтып көрсетуі шарт емес.\\nУикимедия Қоры және басқа да ұйымның сауда белгілері мен логотиптері Creative Commons лицензиясының аясына кірмейді. Wikimedia сауда белгілері мен логотиптері (\"Wikipedia\" және пазлды глобусты қосқанда) Уикимедия Қорының тіркелген сауда белгілері болып табылады. Көбірек мағлұмат үшін біздің Trademark Policy торабын http://www.wikimediafoundation.org/wiki/Trademark_Policy көріңіз немесе trademarks@wikimedia.org мекенжайына хабарласыңыз.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nБұл видео Creative Commons лицензиясы аясында жарияланды.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nУикипедия секілді мұны да қалағаныңызша көшіріп, өңдеп, тарата беруіңізге болады.',\n", + " 'bytes': 11374,\n", + " 'sha1': '3rhbvn5hzljwfrigicdq10f3lj2my1w',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 247602800,\n", + " 'timestamp': '2017-06-13T03:40:09Z',\n", + " 'user': {'id': 3520006, 'text': 'Bjankuloski06'},\n", + " 'page': {'id': 22933690,\n", + " 'title': 'The Impact Of Wikipedia.webm.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nВикипедија е непрофитна, но сепак е петта стрнаица на интернет по посетеност. Сите статии се напишани од доброволци.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nБи сакале да ве запознаеме со некои од нив...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nЈас сум од Непал\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nЈас сум од Ирак\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nЈас сум од Индија\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nЈас сум од Бирам, Њу Џерси\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nЖивеам во Бирмингем, Англија\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nЧикаго, Илиноис -- Ла Паз, Боливија -- Најроби, Кенија\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nКуала Лумпур, Малезија -- Милано во Италија -- Јужна Африка\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nПолска -- Јапонија -- Ерменија\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nБразил -- Русија -- Боцвана\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nИзраел -- Узбекистан -- Хонгконг\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nИнстанбул -- Мексико\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nЧатануга, Тенеси\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nНа почетокот, кога се зачленив на Википедија во 2008 г., почнав многу статии.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nЕдна од нив беше за жена по име Маријам Нур.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nДотогаш немавме страница за неа -- така ја започнав мојата прва статија.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nИ ја заборавив! По три-четири години \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nНаидов на статијата. Се запрепастив.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nЈа прочитале преку 100.000 луѓе. \\xa0\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nЈа користеле, добивале информации од неа. Ја читале, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nпа затоа добиваш впечаток дека имаш извршено влијание врз преку 100.000 луѓе.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nДоживеав уплав кога за прв пат стиснав на копчето „уреди“. \\xa0\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nСи реков, „Боже, па јас сè ќе расипам!\\nНе може вака, не можам!“\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nВикипедија има „отворен код“ -- каде секој може да нафрли свои идеи \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nа потоа доаѓа некој трет и ја усовршува идејата, доведувајќи ја до извонредност.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nНа Википедија работат илјадници луѓе работат секој ден, секој час, секоја минута -- со желба да ја подобрат.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nНајвеќето од тоа е доброволно. Посебен начин да дадете нешто од себе.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nГи зближува стручните и нестручните што имаат интерес во некоја дема.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nОние што на почетокот имале различни мислења почнуваат да соработуваат.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nМногу нешта што би ги работело една голема интернет-корпорација \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nтука ги прават доброволци како мене.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nНе можете туку-така да речете „Е па, јас сум во право, а ти си во грешка. Ова е мојата верзија на статијата!“\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nАко постои проблем со пристрасност, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nнекој веројатно ја означил статијата како таква -- ако не, тогаш јас ќе ја означам.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nСтотици илјадници луѓе ќе го видат тоа \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nи неисправностите ќе се поправат.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nИ тогаш стиснав на копчето и\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nБум - Патешествието започна и беше феноменално.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nПрво почнав со „Веројатност“. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nПрвата статија што ја почнав е „Веројатност“.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nМеѓу поважните статии што ги напишав на Википедија е \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nстатијата за убодни рани.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nПишувам за мушичарење, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nИсторија на Монтана, Историја на националните паркови, Јелоустоун.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nЗапоставени земјоделски култури. Шахисти. Биоразновидност.\\xa0\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nТеми од воената историја. Историја на Ерменија. Историја на Рим.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nСудии. Комуникации. Биографии. Фудбал.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nИрска. Пенсилванија. Претежно фотографија.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nПинк Флојд. Пекарство, бидејќи многу сакам да правам печива.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nАтомско оружје и радиоактивност, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nи кајакарство на брзи води.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nСите тие информации постојат некаде, но расфрлани се на парчиња,\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nа пак ние ги собираме и ги ставаме на едно место.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nНудиме бесплатни знаења за сите, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nна нивниот мајчин јазик, за да можат да ги користат.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nСекој има полза од ова, било да се богати или сиромашни.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nФирмите што работат за профит имаат поинакви цели и други потреби.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nОд Фондацијата Викимедија не добивам плата, дури ни надоместок за трошоци.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nСметам дека е многу важно што можам да се изјаснам, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nКога замолувам за паричен придонес, не барам за себе --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nЗамолувам да одвоите по нешто за Фондацијата -- екипата што ја поддржува оаа чудесна заедница во која членувам.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nМислам дека Википедија ми даде шанса да имам големо влијание во светот.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nКако своевидно вложување во иднината -- и вашата и онаа на вашите деца.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nВи благодарам\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nСодржината на снимкава се нуди под лиценцата Криејтив комонс Наведи извор-Сподели под исти услови 3.0 (http://creativecommons.org/licenses/by-sa/3.0/deed.mk) освен ако не е посочено поинаку. Припишувајте го на: Виктор Григас, Фондација Викимедија.\\nМислењата и гледиштата изразени на снимкава исклучиво им припаѓаат на поединците што ги искажуваат, и не мора да значи дека ги одразува ставовите на било која фирма, организација или установа во која членува поединецот.\\nЗаштитените знаци и логоата на Фондацијата Викимедија и секоја друга организација не подлежат на условите на лиценцата на Криејтив комонс. Заштитените знаци и логоата, вклучувајќи го „Wikipedia“ и логото со топчеста сложувалка, се правно заштитени знаци на Фондацијата Викимедија. Повеќе информации можете да најдете на нашата страница\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy или обратете се на trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nСнимкава е издадена под лиценца на Криејтив комонс.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nКако и самата Википедија, снимкава слободно може да се умножува, преработува и споделува.',\n", + " 'bytes': 10181,\n", + " 'sha1': 'cx8eciku4bv5q6l44dba5wqw3dd665o',\n", + " 'parent_id': 83983179,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83983269,\n", + " 'timestamp': '2012-11-30T19:11:39Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 22933701,\n", + " 'title': 'The Impact Of Wikipedia.webm.pa.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 ਵਿਕੀਪੀਡੀਆ ਗੈਰ-ਨਫ਼ਾ ਵੈੱਬਸਾਈਟ ਹੈ ਪਰ ਦੁਨੀਆਂ ਵਿੱਚ ੫ਵ...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nਵਿਕੀਪੀਡੀਆ ਗੈਰ-ਨਫ਼ਾ ਵੈੱਬਸਾਈਟ ਹੈ ਪਰ ਦੁਨੀਆਂ ਵਿੱਚ ੫ਵੇਂ ਨੰਬਰ \\'ਤੇ ਹੈ। ਵਿਕੀਪੀਡੀਆ ਵਿੱਚ ਸਾਰੇ ਲੇਖ ਸਵੈਸੇਵਕਾਂ ਦੁਆਰਾ ਲਿਖੇ ਜਾਂਦੇ ਹਨ।\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nਅਸੀਂ ਇਨ੍ਹਾਂ ਵਿੱਚੋਂ ਕੁਝ ਦੀ ਜਾਣ-ਪਛਾਣ ਤੁਹਾਡੇ ਨਾਲ ਕਰਾਉਣਾ ਚਾਹੁੰਦੇ ਹਾਂ...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nਮੈਂ ਨੇਪਾਲ ਤੋਂ ਹਾਂ\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nਮੈਂ ਇਰਾਕ ਤੋਂ ਹਾਂ\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nਮੈਂ ਭਾਰਤ ਤੋਂ ਆ ਰਿਹਾ ਹਾਂ\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nਮੈਂ ਬਾਇਰੈਮ, ਨਿਊ ਜਰਸੀ ਤੋਂ ਹਾਂ\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nਮੈਂ ਬਰਮਿੰਘਮ, ਇੰਗਲੈਂਡ ਵਿੱਚ ਰਹਿੰਦਾ ਹਾਂ\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nਸ਼ਿਕਾਗੋ, ਇਲੀਨਾਏ -- ਲਾ ਪਾਸ, ਬੋਲੀਵੀਆ -- ਨੈਰੋਬੀ, ਕੀਨੀਆ\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nਕੁਆਲਾ ਲੁੰਪੁਰ, ਮਲੇਸ਼ੀਆ -- ਇਟਲੀ ਵਿੱਚ ਮਿਲਾਨ -- ਦੱਖਣੀ ਅਫ਼ਰੀਕਾ\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nਪੋਲੈਂਡ -- ਜਪਾਨ -- ਅਰਮੀਨੀਆ\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nਬ੍ਰਾਜ਼ੀਲ -- ਰੂਸ -- ਬਾਤਸਵਾਨਾ\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nਇਜ਼ਰਾਈਲ -- ਉਜ਼ਬੇਕਿਸਤਾਨ -- ਹਾਂਗਕਾਂਗ\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nਇਸਤਾਂਬੁਲ -- ਮੈਕਸੀਕੋ\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nਚਾਟਾਨੂਗਾ, ਟੇਨੈਸੀ\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\n੨੦੦੮ ਵਿੱਚ ਵਿਕੀਪੀਡੀਆ ਦੇ ਮੈਂਬਰ ਬਣਨ ਦੇ ਅਰੰਭ ਵਿੱਚ ਮੈਂ ਬਹੁਤ ਸਾਰੇ ਲੇਖ ਲਿਖਣੇ ਸ਼ੁਰੂ ਕੀਤੇ।\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nਉਹਨਾਂ ਵਿੱਚੋਂ ਇੱਕ, ਮੈਨੂੰ ਲੱਗਦਾ ਹੈ, ਮਰੀਅਮ ਨੂਰ ਨਾਂ ਦੀ ਔਰਤ ਬਾਰੇ ਸੀ।\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nਉਸ ਬਾਰੇ ਸਾਡੇ ਕੋਲ ਕੋਈ ਲੇਖ ਨਹੀਂ ਸੀ, ਇਸ ਕਰਕੇ -- ਅਤੇ ਇਹ ਮੇਰਾ ਪਹਿਲਾ ਲੇਖ ਸੀ।\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nਫੇਰ ਮੈਂ ਇਸ ਬਾਰੇ ਭੁੱਲ ਗਿਆ! ਸ਼ਾਇਦ ਦੋ ਜਾਂ ਤਿੰਨ ਸਾਲਾਂ ਮਗਰੋਂ, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nਮੈਂ ਇਸ ਲੇਖ ਉੱਤੇ ਗਿਆ। ਮੈਂ ਦੰਗ ਰਹਿ ਗਿਆ।\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\n੧੦੦,੦੦੦ ਤੋਂ ਵੱਧ ਲੋਕਾਂ ਨੇ ਇਹ ਲੇਖ ਪੜ੍ਹਿਆ ਸੀ।\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nਉਹਨਾਂ ਨੇ ਇਸਨੂੰ ਵਰਤਿਆ, ਸੋ ਉਹਨਾਂ ਨੇ ਇਸ ਲੇਖ ਤੋਂ ਜਾਣਕਾਰੀ ਪ੍ਰਾਪਤ ਕੀਤੀ। ਉਹ ਇਸ ਲੇਖ ਉੱਤੇ ਆਏ, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nਸੋ ਤੁਹਾਨੂੰ ਲੱਗਦਾ ਹੈ ਕਿ ਤੁਸੀਂ ੧੦੦,੦੦੦ ਤੋਂ ਵੱਧ ਲੋਕਾਂ ਨੂੰ ਪੋਹਿਆ ਹੈ ਅਤੇ ਉਹਨਾਂ ਉੱਤੇ ਪ੍ਰਭਾਵ ਪਾਇਆ ਹੈ।\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nਮੈਨੂੰ ਬਹੁਤ ਡਰ ਲੱਗ ਰਿਹਾ ਸੀ ਜਦੋਂ ਮੈਂ ਪਹਿਲੀ ਵਾਰ \\'ਸੋਧ\\' ਬਟਨ ਦੱਬਿਆ।\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nਮੈਂ ਸੋਚਿਆ, \"ਹਾਏ ਰੱਬਾ! ਮੈਂ ਸਭ ਕੁਝ ਉਜਾੜ ਦਿਆਂਗਾ!\\nਇਹ ਨਹੀਂ ਕੰਮ ਕਰ ਸਕਦਾ! ਮੈਂ ਇਹ ਨਹੀਂ ਕਰ ਸਕਦਾ!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nਵਿਕੀਪੀਡੀਆ ਇੱਕ \\'ਜ਼ਾਹਰ-ਸਰੋਤ\\' ਹੈ - ਜਿੱਥੇ ਹਰ ਕੋਈ ਆਪਣੇ ਵਿਚਾਰ ਦੇ ਸਕਦਾ ਹੈ \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nਅਤੇ ਫੇਰ ਕੋਈ ਹੋਰ ਆਉਂਦਾ ਹੈ ਅਤੇ ਉਸ ਵਿਚਾਰ ਨੂੰ ਸ਼ਾਨਦਾਰ ਬਨਾਉਣ ਲਈ ਹੋਰ ਲਿਸ਼ਕਾਉਂਦਾ ਹੈ।\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nਵਿਕੀਪੀਡੀਆ ਨੂੰ ਸੁਧਾਰਣ ਲਈ ਹਰ ਰੋਜ਼, ਹਰ ਘੰਟੇ, ਹਰ ਮਿੰਟ ਹਜ਼ਾਰਾਂ ਲੋਕ ਕੰਮ ਕਰ ਰਹੇ ਹੁੰਦੇ ਹਨ।\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nਇਸਦਾ ਬਹੁਤਾ ਹਿੱਸਾ ਸਵੈਸੇਵਾ ਹੈ। ਇਹ ਸਵੈਸੇਵਾ ਕਰਨ ਦਾ ਇੱਕ ਅਨੋਖਾ ਤਰੀਕਾ ਹੈ।\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nਇਹ ਪੇਸ਼ਾਵਰ ਅਤੇ ਗ਼ੈਰਪੇਸ਼ਾਵਰ ਦੋਹਾਂ ਧਿਰਿਆਂ ਦੇ ਲੋਕਾਂ ਨੂੰ, ਜਿਹਨਾਂ ਦੀ ਕਿਸੇ ਖ਼ਾਸ ਵਿਸ਼ੇ ਵਿੱਚ ਦਿਲਚਸਪੀ ਹੁੰਦੀ ਹੈ, ਨੂੰ ਇੱਕੋ ਥਾਂ \\'ਤੇ ਲੈ ਕੇ ਆਉਂਦਾ ਹੈ।\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nਉਹ ਲੋਕ, ਜਿਹਨਾਂ ਦੇ ਅਰੰਭ ਵਿੱਚ ਨਿਖੜਵੇਂ ਵਿਚਾਰ ਸਨ, ਨੇ ਮਿਲਵਰਤ ਕੇ ਕੰਮ ਕਰਨਾ ਸ਼ੁਰੂ ਕਰ ਦਿੱਤਾ।\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nਇਹਦੇ ਵਿੱਚੋਂ ਬਹੁਤਾ ਕੁਝ, ਜੋ ਤੁਸੀਂ ਸੋਚਦੇ ਹੋ ਕਿ ਕੋਈ ਇੰਟਰਨੈੱਟ ਕੰਪਨੀ ਸੰਭਾਲ ਰਹੀ ਹੈ, \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nਮੇਰੇ ਵਰਗੇ ਸਵੈਸੇਵਕਾਂ ਦੁਆਰਾ ਸੰਭਾਲਿਆ ਜਾਂਦਾ ਹੈ।\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nਤੁਸੀਂ ਇਹ ਬਿਲਕੁਲ ਨਹੀਂ ਕਹਿ ਸਕਦੇ, \"ਮੈਂ ਠੀਕ ਹਾਂ, ਤੁਸੀਂ ਗਲਤ ਹੋ, ਇਹ ਇਸ ਲੇਖ ਦਾ ਮੇਰਾ ਤਰਜਮਾ ਹੈ!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nਜੇਕਰ ਪੱਖ-ਪਾਤ ਦਾ ਕੋਈ ਮੁੱਦਾ ਹੁੰਦਾ ਹੈ \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nਤਾਂ ਕੋਈ ਇਸ ਵੱਲ ਇਸ਼ਾਰਾ ਕਰ ਚੁੱਕਾ ਹੁੰਦਾ ਹੈ ਅਤੇ ਜੇਕਰ ਨਹੀਂ ਤਾਂ ਹੁਣ ਮੈਂ ਵੀ ਇਸ ਵੱਲ ਉਂਗਲ ਉਠਾ ਸਕਦਾ ਹਾਂ।\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nਤੁਹਾਡੇ ਕੋਲ ਹਜ਼ਾਰਾਂ ਅਤੇ ਲੱਖਾਂ ਲੋਕ ਹੁੰਦੇ ਹਨ ਜੋ ਇਹ ਵੇਖਦੇ ਹਨ \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nਅਤੇ ਇਸਨੂੰ ਸਹੀ ਕਰਦੇ ਹਨ।\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nਅਤੇ ਫੇਰ ਮੈਂ ਬਟਨ ਦਬਾਉਂਦਾ ਹਾਂ ਅਤੇ\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nਠਾਹ - ਸਫ਼ਰ ਸ਼ੁਰੂ ਹੋਇਆ ਅਤੇ ਇਹ ਬਹੁਤ ਵਧੀਆ ਸੀ।\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nਸਭ ਤੋਂ ਪਹਿਲਾਂ ਮੈਂ \\'ਹੋਣਯੋਗਤਾ\\' ਨਾਲ ਸ਼ੁਰੂ ਕੀਤੀ। \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nਮੈਂ ਸਭ ਤੋਂ ਪਹਿਲਾ ਲੇਖ \"ਹੋਣਯੋਗਤਾ\" \\'ਤੇ ਲਿਖਿਆ।\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nਮੇਰੇ ਦੁਆਰਾ ਵਿਕੀਪੀਡੀਆ ਉੱਤੇ ਲਿਖੇ ਗਏ ਮੁੱਖ ਲੇਖਾਂ ਵਿੱਚੋਂ ਇੱਕ ਸੀ \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nਛੁਰਾ ਚਾਕੂ ਦੇ ਜ਼ਖ਼ਮਾਂ ਉੱਤੇ ਲੇਖ।\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nਮੈਂ ਮੱਖੀ ਦੇ ਨਾਲ ਮੱਛੀ ਫੜਨ ਬਾਰੇ ਲਿਖਦਾ ਹਾਂ। \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nਮੋਂਟਾਨਾ ਇਤਿਹਾਸ, ਰਾਸ਼ਟਰੀ ਪਾਰਕ ਇਤਿਹਾਸ, ਯੈਲੋਸਟੋਨ।\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nਘੱਟ ਉਪਯੋਗ ਕੀਤੀਆਂ ਜਾਂਦੀਆਂ ਫ਼ਸਲਾਂ। ਸ਼ਤਰੰਜ ਖਿਲਾੜੀ। ਜੀਵ-ਵਿਭਿੰਨਤਾ।\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nਫ਼ੌਜੀ ਇਤਿਹਾਸ ਦੇ ਮਜ਼ਮੂਨ। ਅਰਮੀਨੀਆਈ ਇਤਿਹਾਸ। ਰੋਮਨ ਇਤਿਹਾਸ।\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nਜੱਜ। ਸੰਚਾਰ। ਜੀਵਨੀਆਂ। ਫੁਟਬਾਲ।\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nਆਇਰਲੈਂਡ। ਪੈੱਨਸਿਲਵਾਨੀਆ। ਆਮ ਤੌਰ \\'ਤੇ ਫ਼ੋਟੋਗ੍ਰਾਫ਼ੀ।\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nਪਿੰਕ ਫ਼ਲਾਇਡ। ਨਾਨਬਾਈ ਕਿਉਂਕਿ ਮੈਨੂੰ ਨਾਨਬਾਈ ਕਰਨਾ ਪਸੰਦ ਹੈ।\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nਪ੍ਰਮਾਣੂ ਹਥਿਆਰ ਅਤੇ ਰੇਡੀਓ-ਸੰਵੇਦਨਸ਼ੀਲਤਾ, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nਅਤੇ ਚਿੱਟ-ਪਾਣੀ ਕਯਾਕੀ।\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nਬਾਹਰੀ ਦੁਨੀਆਂ ਵਿੱਚ ਬਹੁਤ ਸਾਰੀ ਜਾਣਕਾਰੀ ਹੈ ਜੋ ਖਿੰਡੀ ਹੋਈ ਹੁੰਦੀ ਹੈ\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nਅਤੇ ਅਸੀਂ ਇਸਨੂੰ ਇੱਕ ਥਾਂ \\'ਤੇ ਇਕੱਠਾ ਕਰ ਰਹੇ ਹਾਂ।\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nਅਸੀਂ ਸਭ ਲਈ ਮੁਫ਼ਤ ਗਿਆਨ ਪੇਸ਼ ਕਰ ਰਹੇ ਹਾਂ, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nਉਹਨਾਂ ਦੀ ਆਪਣੀ ਭਾਸ਼ਾ ਵਿੱਚ ਤਾਂ ਜੋ ਉਹ ਉਸਨੂੰ ਵਰਤ ਸਕਣ।\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nਸਭ ਨੂੰ ਲਾਭ ਪਹੁੰਚਦਾ ਹੈ ਭਾਵੇਂ ਉਹ ਅਮੀਰ ਹੋਵੇ ਜਾਂ ਗਰੀਬ।\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nਨਫ਼ਾਖ਼ੋਰ ਕੰਪਨੀਆਂ ਦੀਆਂ ਵੱਖਰੀਆਂ ਪ੍ਰੇਰਨਾਵਾਂ ਅਤੇ ਵੱਖਰੀਆਂ ਲੋੜਾਂ ਹੁੰਦੀਆਂ ਹਨ।\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nਵਿਕੀਮੀਡੀਆ ਸੰਸਥਾ ਤੋਂ ਮੈਂ ਕੋਈ ਤਨਖ਼ਾਹ ਨਹੀਂ ਲੈਂਦਾ ਅਤੇ ਨਾ ਹੀ ਕੋਈ ਖ਼ਰਚਾ ਲੈਂਦਾ ਹਾਂ।\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nਮੈਨੂੰ ਲੱਗਦਾ ਹੈ ਕਿ ਇਹ ਬਹੁਤ ਜ਼ਰੂਰੀ ਹੈ ਕਿ ਮੈਂ ਚੰਗੀ ਤਰ੍ਹਾਂ ਕਹਿ ਸਕਾਂ, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nਧਿਆਨ ਰੱਖੋ ਕਿ ਜਦੋਂ ਮੈਂ ਤੁਹਾਡੇ ਤੋਂ ਪੈਸੇ ਮੰਗਦਾ ਹਾਂ ਤਾਂ ਮੈਂ ਇਹ ਆਪਣੇ ਲਈ ਨਹੀਂ ਮੰਗਦਾ --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nਮੈਂ ਸੰਸਥਾ ਲਈ ਪੈਸੇ ਮੰਗ ਰਿਹਾ ਹਾਂ ਜੋ ਉਹ ਟੋਲੀ ਹੈ ਜੋ ਇਸ ਵਿਸਮੈਕਾਰ ਭਾਈਚਾਰੇ ਦਾ ਪ੍ਰਬੰਧ ਕਰਦੀ ਹੈ ਜਿਸਦਾ ਮੈਂ ਹਿੱਸਾ ਹਾਂ।\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nਮੈਂ ਸਮਝਦਾ ਹਾਂ ਕਿ ਵਿਕੀਪੀਡੀਆ ਨੇ ਮੈਨੂੰ ਇਸ ਦੁਨੀਆਂ ਵਿੱਚ ਅਸਲ ਵਿੱਚ ਇੱਕ ਭਾਰੀ ਫ਼ਰਕ ਲਿਆਉਣ ਦਾ ਮੌਕਾ ਦਿੱਤਾ ਹੈ।\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nਇਹ ਤੁਹਾਡੇ ਅਤੇ ਤੁਹਾਡੇ ਬੱਚਿਆਂ ਦੇ ਭਵਿੱਖ ਵਾਸਤੇ ਨਿਵੇਸ਼ ਦੇ ਵਾਂਗ ਹੈ।\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nਧੰਨਵਾਦ\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nਇਸ ਵੀਡਿਓ ਵਿਚਲੀ ਵਿਸ਼ਾ-ਵਸਤੂ, ਜਦ ਤੱਕ ਵੱਖਰੇ ਤੌਰ \\'ਤੇ ਨਾ ਦੱਸਿਆ ਹੋਵੇ, Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) ਹੇਠ ਉਪਲਬਧ ਹੈ। ਇਸ ਕੰਮ ਦਾ ਸਿਹਰਾ ਜਾਂਦਾ ਹੈ: ਵਿਕਟਰ ਗ੍ਰਿਗਾਸ, ਵਿਕੀਮੀਡੀਆ ਸੰਸਥਾ।\\nਇਸ ਵੀਡੀਓ ਵਿੱਚ ਪੇਸ਼ ਕੀਤੇ ਗਏ ਖ਼ਿਆਲ ਅਤੇ ਮੱਤਾਂ ਕੇਵਲ ਅਤੇ ਕੇਵਲ ਵਿਖਾਈ ਦੇਣ ਵਾਲੇ ਵਿਅਕਤੀਆਂ ਦੇ ਹਨ ਅਤੇ ਇਹ ਲਾਜ਼ਮੀ ਤੌਰ \\'ਤੇ ਕਿਸੇ ਕੰਪਨੀ, ਸੰਸਥਾ ਜਾਂ ਸਥਾਪਨਾ, ਜਿਸ ਦਾ ਉਹ ਵਿਅਕਤੀ ਮੈਂਬਰ ਹੋ ਸਕਦਾ ਹੈ, ਦੀਆਂ ਨੀਤੀਆਂ ਜਾਂ ਵਿਚਾਰਾਂ ਨੂੰ ਨਹੀਂ ਦਰਸਾਉਂਦੇ।\\nਵਿਕੀਮੀਡੀਆ ਸੰਸਥਾ ਜਾਂ ਹੋਰ ਕਿਸੇ ਸੰਸਥਾ ਦੇ ਮਾਰਕੇ ਅਤੇ ਲੋਗੋ ਇਸ ਕ੍ਰਿਏਟਿਵ ਕਾਮਨਜ਼ ਲਸੰਸ ਦੀਆਂ ਸ਼ਰਤਾਂ ਹੇਠ ਨਹੀਂ ਆਉਂਦੇ। ਵਿਕੀਮੀਡੀਆ ਮਾਰਕਾ ਅਤੇ ਲੋਗੋ, ਸਮੇਤ \"ਵਿਕੀਪੀਡੀਆ\" ਅਤੇ ਬੁਝਾਰਤੀ ਧਰਤ-ਗੋਲਾ ਲੋਗੋ, ਵਿਕੀਮੀਡੀਆ ਸੰਸਥਾ ਦੇ ਇੰਦਰਾਜੀ ਮਾਰਕੇ ਹਨ। ਹੋਰ ਜਾਣਕਾਰੀ ਲਈ ਕਿਰਪਾ ਕਰਕੇ ਸਾਡਾ ਮਾਰਕਾ ਨੀਤੀ ਪੰਨਾ ਵੇਖੋ, http://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org।\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nਇਹ ਵੀਡੀਓ ਇੱਕ ਕ੍ਰਿਏਟਿਵ ਕਾਮਨਜ਼ ਲਸੰਸ ਹੇਠ ਪ੍ਰਕਾਸ਼ਤ ਕੀਤੀ ਗਈ ਹੈ।\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nਵਿਕੀਪੀਡੀਆ ਵਾਂਗ ਇਸਨੂੰ ਵੀ ਨਕਲ ਕਰਨ, ਮੁੜ-ਤਰਤੀਬੀ ਕਰਨ ਅਤੇ ਸਾਂਝਾ ਕਰਨ ਦੀ ਖੁੱਲ੍ਹ ਹੈ।',\n", + " 'bytes': 13749,\n", + " 'sha1': 'p38ros8jl0hx5igv5oaywfw0wazdhza',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 333774551,\n", + " 'timestamp': '2019-01-06T20:49:06Z',\n", + " 'user': {'id': 3011449, 'text': 'Piramidion'},\n", + " 'page': {'id': 22933737,\n", + " 'title': 'The Impact Of Wikipedia.webm.uk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:05,000\\nВікіпедія — сайт неприбутковий, але тримає п'яту позицію за популярністю у світі.<br />Всі статті Вікіпедії написані волонтерами\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nМи хочемо вам представити декого з них\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nЯ з Непалу\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nЯ з Іраку\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nА я з Індії\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nЯ з Байрама, Нью-Джерсі\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nЯ живу в Бірмінгемі, Англія\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nЧикаго, Іллінойс — Ла Пас, Болівія — Найробі, Кенія\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nКуала-Лумпур, Малайзія — Мілан в Італії — Південна Африка\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nПольща — Японія — Вірменія\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nБразилія — Росія — Ботсвана\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nІзраїль — Узбекистан — Гонконг\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nСтамбул -- Мехіко\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nЧаттануга, штат Теннессі\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nНа початку, коли я долучилася до Вкіпедії у 2008 році, я започаткувала багато статей.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nОдна з них була, здається, про жінку на ім'я Маріам Нур\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nУ нас не було статті про неї, тож — і це була моя перша стаття\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nТож я й забула про неї! Може через два чи три роки\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nЯ натрапила на цю статтю. Я була шокована.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nБільш як 100 000 осіб прочитало цю статтю.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nВони використовували її, а значить, отримували інформацію з цієї статті. Вони натрапляли на неї,\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nтак що ти відчуваєш, що маєш вплив на більш як 100 000 осіб.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nЯ була така нажахана, коли натиснула кнопку «редагувати» вперше!\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nДумалося: «Боже! Зараз я все зруйную! Все буде не так! Я не зможу цього зробити!»\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nВікіпедія — ресурс із «відкритим кодом», де кожен може поділитися своїми ідеями \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nа потім хтось іще прийде, щоби відшліфувати їх і зробити просто незрівнянними.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nТисячі людей працюють щодня, щогодини, щохвилини, щоби покращити Вікіпедію\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nБільшість усього цього робиться на засадах волонтерства.<br />Це — унікальний спосіб стати волонтером.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nЦе об'єднує професіоналів та аматорів, захоплених однаковими темами.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nЛюди, що спершу мали різні погляди, починають співпрацювати.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nБагато з того, що Ви могли б лише припустити, велика інтернет-спільнота може втілити,\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nі втілює з допомогою таких волонтерів, як я\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nВи просто не можете сказати «Добре, я — правий, ти — ні, і ось моя версія статті!»\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nЯкщо є проблема упередженості, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nхтось, ймовірно, вже виставив відповідне застереження, якщо ж ні — я теж можу його виставити.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nЦе бачать сотні й тисячі людей \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nі виправляють.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nПотім я натискаю кнопку і\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nБум! — подорож почалась, і це було прекрасно.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nУ мене все почалося з «Імовірності». \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nПерша написана мною стаття називалась «Імовірність»\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nОднією з основних статей, написаних мною у Вікіпедії, \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nбула стаття про колото-різані рани.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nЯ пишу про риболовлю на приманки, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nісторію Монтани, історію національних парків, Йеллоустоун.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nНедовикористані культури. Шахісти. Біорізноманіття.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nТеми воєнної історії. Вірменська історія. Історія давнього Риму.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nСудді. Зв'язок. Біографії. Футбол.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nІрландія. Пенсильванія. Переважно фотографія.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Випічка, бо я люблю пекти.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nЯдерна зброя й радіоактивність,\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nа також сплави на байдарках.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nВся ота інформація, що є повсюдно, вона наче безладно розкидана,\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nа ми збираємо її докупи в одному місці.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nМи пропонуємо вільні знання для кожного, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nїхніми власними мовами, щоб вони могли ці знання використовувати.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nКожен може отримати з цього користь, незалежно, багата ця людина чи бідна.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nКомерційні компанії мають іншу мотивацію й інші вимоги.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nВід Фонду Вікімедіа я не отримую жодної платні, і навіть витрати вона мені не відшкодовує\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nЯ думаю, що дуже важливо те, що я можу сказати цілком чітко,\\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nдивіться, коли я прошу Вас про гроші, я не прошу про гроші для себе.\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nЯ прошу Вас про гроші для Фонду, який є тією командою, яка підтримує\\nцю прекрасну спільноту, частиною якої я є.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nЯ думаю, що Вікіпедія дала мені шанс дуже, по-справжньому змінити світ.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nЦе наче інвестиція у ваше майбутнє, в майбутнє ваших дітей.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nДякую Вам\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nЗміст цього відео доступний на умовах ліцензії Creative Commons Attribution-ShareAlike v3.0 (http://creativecommons.org/licenses/by-sa/3.0), якщо не вказано інше. Автори цієї роботи: Віктор Грігас (Victor Grigas), Wikimedia Foundation.<br />Погляди і думки, висловлені в цьому відео, є виключно думками осіб, що з'являються на відео і не обов'язково віддзеркалюють політику чи позиції будь-якої компанії, організації або установи, членом якої може бути ця особа.<br />Товарні знаки та логотипи Фонду Вікімедіа та будь-якої іншої організації не підпадають під умови цієї ліцензії Creative Commons. Торгові знаки й логотипи Вікімедіа, в тому числі «Вікіпедія» та логотип «глобуса-пазла», є зареєстрованими торговими знаками Фонду Вікімедіа. Для отримання додаткової інформації, будь ласка, ознайомтеся з нашою сторінкою політики щодо товарних знаків http://www.wikimediafoundation.org/wiki/Trademark_Policy або контактуйте з trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nЦе відео опубліковано на умовах ліцензії Creative Commons\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nЯк і Вікіпедію, його можна вільно копіювати, змінювати й поширювати.\",\n", + " 'bytes': 10267,\n", + " 'sha1': 'athcl338ayccceqpv9i3wkraobgbpwh',\n", + " 'parent_id': 333774423,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83993016,\n", + " 'timestamp': '2012-11-30T21:52:06Z',\n", + " 'user': {'id': 1183371, 'text': 'Sage Ross (WMF)'},\n", + " 'page': {'id': 22935956,\n", + " 'title': 'Editing basics - Talk pages.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'subtitles',\n", + " 'text': '1\\n00:00:01,658 --> 00:00:04,117\\nThis screencast is about communicating with\\n\\n2\\n00:00:04,117 --> 00:00:07,700\\nother Wikipedia editors using talk pages.\\n\\n3\\n00:00:07,700 --> 00:00:10,242\\nIt covers what talk pages are for,\\n\\n4\\n00:00:10,242 --> 00:00:12,158\\nhow to use them effectively,\\n\\n5\\n00:00:12,158 --> 00:00:13,533\\nand some of the conventions\\n\\n6\\n00:00:13,533 --> 00:00:16,242\\nand etiquette to follow when using them.\\n\\n7\\n00:00:16,242 --> 00:00:17,658\\nTalk pages are the main way\\n\\n8\\n00:00:17,658 --> 00:00:21,240\\neditors communicate with each other on Wikipedia.\\n\\n9\\n00:00:21,240 --> 00:00:22,700\\nEvery page on Wikipedia,\\n\\n10\\n00:00:22,700 --> 00:00:23,950\\nwhether an article\\n\\n11\\n00:00:23,950 --> 00:00:25,617\\nor a WikiProject\\n\\n12\\n00:00:25,617 --> 00:00:26,950\\nor a userpage or something else,\\n\\n13\\n00:00:26,950 --> 00:00:30,200\\nhas a corresponding talk page,\\n\\n14\\n00:00:30,200 --> 00:00:34,200\\nwhich you can get to by clicking the Talk tab.\\n\\n15\\n00:00:34,200 --> 00:00:37,075\\nThe talk page for an article\\n\\n16\\n00:00:37,075 --> 00:00:39,950\\nis where editors discuss proposed changes,\\n\\n17\\n00:00:39,950 --> 00:00:42,241\\nediting disagreements, and other topics\\n\\n18\\n00:00:42,241 --> 00:00:45,200\\nrelated to improving the article.\\n\\n19\\n00:00:45,200 --> 00:00:47,117\\nOther kinds of talk pages are for\\n\\n20\\n00:00:47,117 --> 00:00:51,492\\ndiscussing Wikipedia\\'s policies and processes and the like.\\n\\n21\\n00:00:51,492 --> 00:00:53,700\\nUser talk pages are for\\n\\n22\\n00:00:53,700 --> 00:00:56,989\\ncommunicating with individual editors.\\n\\n23\\n00:00:56,989 --> 00:00:59,742\\nWhen you leave a message on someone\\'s user talk page,\\n\\n24\\n00:00:59,742 --> 00:01:02,242\\nthey will get a notification about the message\\n\\n25\\n00:01:02,242 --> 00:01:05,200\\nthe next time they are on Wikipedia.\\n\\n26\\n00:01:05,200 --> 00:01:07,283\\nTo post a new message on a talk page,\\n\\n27\\n00:01:07,283 --> 00:01:09,700\\nyou can click the \"New section\" tab,\\n\\n28\\n00:01:09,700 --> 00:01:13,658\\nand then add your message and a headline for the new section.\\n\\n29\\n00:01:13,658 --> 00:01:16,283\\nAt the end of your message, you should sign it.\\n\\n30\\n00:01:16,283 --> 00:01:19,408\\nAdding four tildes in the edit window\\n\\n31\\n00:01:19,408 --> 00:01:21,158\\nwill add a signature when you save it,\\n\\n32\\n00:01:21,158 --> 00:01:23,367\\nwith your username and a timestamp\\n\\n33\\n00:01:23,367 --> 00:01:26,075\\nshowing when you left the message.\\n\\n34\\n00:01:26,075 --> 00:01:28,408\\nYou can respond to someone else\\'s comments\\n\\n35\\n00:01:28,408 --> 00:01:32,242\\nby posting beneath them within the same section.\\n\\n36\\n00:01:32,242 --> 00:01:34,783\\nWikipedia discussions use indentation\\n\\n37\\n00:01:34,783 --> 00:01:37,323\\nto created threaded discussions:\\n\\n38\\n00:01:37,323 --> 00:01:41,492\\neach subsequent reply has a different level of indentation.\\n\\n39\\n00:01:41,492 --> 00:01:44,283\\nThe wiki markup for indentation is to\\n\\n40\\n00:01:44,283 --> 00:01:47,408\\nstart a line with one or more colons.\\n\\n41\\n00:01:47,408 --> 00:01:51,367\\nEach colon creates another level of indentation,\\n\\n42\\n00:01:51,367 --> 00:01:55,783\\nso replies should begin with\\n\\n43\\n00:01:55,783 --> 00:01:57,367\\none more colon than the previous comment.\\n\\n44\\n00:01:57,367 --> 00:02:00,367\\nThe keys to effective talk page discussions on Wikipedia\\n\\n45\\n00:02:00,367 --> 00:02:03,617\\nare to be civil and address the article or topic at hand\\n\\n46\\n00:02:03,617 --> 00:02:05,617\\nrather than making it personal,\\n\\n47\\n00:02:05,617 --> 00:02:09,700\\nand to assume good faith on the part of other editors.\\n\\n48\\n00:02:09,700 --> 00:02:12,950\\nEven if you think someone is doing something wrong or silly,\\n\\n49\\n00:02:12,950 --> 00:02:15,658\\nthey almost always have the same goal you do:\\n\\n50\\n00:02:15,658 --> 00:02:17,783\\nto make Wikipedia better.\\n\\n51\\n00:02:17,783 --> 00:02:19,783\\nAnd don\\'t forget to sign your posts\\n\\n52\\n00:02:19,783 --> 00:02:23,200\\nand leave an edit summary each time you add to a discussion.\\n\\n53\\n00:02:23,200 --> 00:02:25,283\\nThe easiest way to keep up\\n\\n54\\n00:02:25,283 --> 00:02:27,033\\nwith discussion you want to watch\\n\\n55\\n00:02:27,033 --> 00:02:30,700\\nis to put the page on your watchlist.\\n\\n56\\n00:02:30,700 --> 00:02:31,908\\nThere are several other ways\\n\\n57\\n00:02:31,908 --> 00:02:33,617\\nof following talk page activity;\\n\\n58\\n00:02:33,617 --> 00:02:37,531\\ncheck out \"Wikipedia:Syndication\" for details.\\n\\n59\\n00:02:37,531 --> 99:59:59,000\\nHappy editing!\\n\\n60\\n99:59:59,000 --> 99:59:59,000',\n", + " 'bytes': 4344,\n", + " 'sha1': 'oq64ww1tcqh8yf432a09q67hv9wba50',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 116672338,\n", + " 'timestamp': '2014-02-17T19:31:36Z',\n", + " 'user': {'id': 18685, 'text': 'Moretti'},\n", + " 'page': {'id': 22938432,\n", + " 'title': 'The Impact of Wikipedia Poongothai Balasubramanian.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'caste --> cost',\n", + " 'text': \"1\\n00:00:01,105 --> 00:00:02,016\\nI love my students.\\n\\n2\\n00:00:03,874 --> 00:00:08,270\\nWhen I worked, more than subjects I loved my students.\\n\\n3\\n00:00:09,288 --> 00:00:11,538\\nMy name is Balasubramanian Poongothai.\\n\\n4\\n00:00:11,56 --> 00:00:13,181\\nI'm coming from India.\\n\\n5\\n00:00:13,721 --> 00:00:20,791\\nI'm a Math teacher for 33 years and I retired from my career,\\n\\n6\\n00:00:22,23 --> 00:00:27,095\\nand after that, I started editing in Wikipedia. \\n\\n7\\n00:00:28,5 --> 00:00:30,641\\nSee, I had gone through a retirement from my career,\\n\\n8\\n00:00:31,135 --> 00:00:33,954\\nso all the 24-hours is for me now. \\n\\n9\\n00:00:34,4 --> 00:00:39,394\\nMy sons are grown up, and they are looking after their life. \\n\\n10\\n00:00:39,841 --> 00:00:47,791\\nI am freed from all the responsibility and the remaining years are completely for me,\\n\\n11\\n00:00:47,841 --> 00:00:49,341\\nand I am enjoying this. \\n\\n12\\n00:00:49,45 --> 00:00:59,78\\nWhen I participate in this Wikipedia, what I feel is I'm engaged, as well as... we leave something for our future generation.\\n\\n13\\n00:01:00,15 --> 00:01:07,679\\nAlgebra, Analytical Geometry, Geometry are the topics which I am comfortable with.\\n\\n14\\n00:01:08,8 --> 00:01:10,788\\nFirst, I started with Probability. \\n\\n15\\n00:01:11,45 --> 00:01:14,169\\nThe first article I started was Probability. \\n\\n16\\n00:01:15,064 --> 00:01:18,998\\nEvery day I am on Wikipedia, I'm simply at home, \\n\\n17\\n00:01:19,445 --> 00:01:27,217\\nso I will do all my personal works, and then I will sit with my netbook and I will edit, \\n\\n18\\n00:01:28,45 --> 00:01:33,769\\nand I will create articles, and I will create articles on Mathematics, \\n\\n19\\n00:01:34,5 --> 00:01:40,31\\nand then Tamil being my mother tongue, and my favorite language, \\n\\n20\\n00:01:41,0 --> 00:01:47,94\\nI edit the articles created by the others for spelling mistakes and grammar. \\n\\n21\\n00:01:48,8 --> 00:01:52,06\\nEveryone is benefited by this whether they are rich or poor. \\n\\n22\\n00:01:52,548 --> 00:01:58,10\\nHere, by a mere click, the whole world is in front of us.\\n\\n23\\n00:01:59,13 --> 00:02:04,34\\nThis is giving the complete information through Internet. \\n\\n24\\n00:02:05,298 --> 00:02:10,71\\nWithout any cost. It is really a great thing.\",\n", + " 'bytes': 2161,\n", + " 'sha1': 'h0cv3uk0egxjr2n8d6zrsufwhtiqz6y',\n", + " 'parent_id': 84003665,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 306023213,\n", + " 'timestamp': '2018-06-12T13:51:29Z',\n", + " 'user': {'id': 4022258, 'text': 'Adam Harangozó'},\n", + " 'page': {'id': 22951378,\n", + " 'title': 'The Impact Of Wikipedia.webm.hu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'missing enter',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nA Wikipédia egy non-profit szervezet, mégis a világ 5. legkeresettebb weboldala. Minden cikkét önkéntes szerkesztők írják.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nSzeretnénk bemutatni néhányat közülük...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nNepáli vagyok\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nIraki vagyok\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nÉn Indiából jöttem\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nÉn Byramban élek, New Jerseyben\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nAngliában élek, Birminghamben.\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La Paz, Bolívia -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malajzia -- Milánó, Olaszország -- Dél-Afrika\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nLengyelország -- Japán -- Örményország\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrazília -- Oroszország -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIzrael -- Üzbegisztán -- Hongkong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIsztambul -- Mexikó\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nAmikor 2008-ban csatlakoztam a Wikipédiához, számos cikket kezdtem írni.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nAz egyikük, ha jól emlékszem, egy Mariam Nour nevű hölgyről szólt.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nNem volt cikkünk róla, így ez lett az első szócikkem.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nAztán el is feledkeztem róla! Talán két vagy három évvel később \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nismét a szemem elé került a cikk. Megdöbbentem! \\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nTöbb mint 100 000 ember olvasta el ezt a cikket. \\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nHasználták, információkhoz jutottak ebből a cikkből. Rábukkantak a cikkre, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nettől úgy érzed, megérintettél, hatással voltál több mint 100 000 emberre.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nOlyan rémült voltam, amikor először nyomtam meg a \"szerkesztés\" gombot. \\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nAzt gondoltam, \"Ó, istenem, elrontok mindent! Nem fog menni! Nem tudom megcsinálni!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nA Wikipédia egy \"nyílt forrás\", melybe bárki bedobhatja a saját ötletét \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nAzután jön valaki más és csiszol rajta egy kicsit, hogy jobb legyen.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nMinden nap, minden órában, minden percben több ezer ember dolgozik a Wikipédia bővítésén.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nLegtöbbjük önként teszi ezt. Ez az önkéntességnek egy egészen egyedi formája.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nÖsszehozza a szakértőket és az amatőröket, akik ugyanazok témákat kedvelik.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nAzok pedig, akiknek kezdetben eltér a véleményük, elkezdenek együttműködni.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nMindazt, amiről azt gondolnád, hogy egy óriási internetes szervezet működteti, \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nugyanolyan önkéntesek végzik, mint én.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nNem mondhatod egyszerűen azt, hogy \"Oké, nekem van igazam, nem neked, ez a cikk az én változatomban jó!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nHa egy szócikk nem kiegyensúlyozott,\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nakkor azt már valaki biztos jelezte, vagy ha nem, akkor én is jelezhetem.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nEmberek százai, ezrei látják\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nés javítják.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nAztán megnyomtam a gombot és\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nbummm - az út megkezdődött, és nagyszerű volt.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nA valószínűségszámítással kezdtem.\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nAz első szócikkem a „valószínűség” volt.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nAz egyik nagyobb cikk, amit megírtam a Wikipédián, \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\na szúrt sebekről szólt.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nA műlegyezésről írok.\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontana történelméről, a yellowstone-i Nemzeti Parkról.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nKihasználatlan növényfajokról. Sakkozókról. Biodiverzitásról. \\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nKatonai történelmi témákról. Örmény történelemről. Római történelemről.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nBírókról. Kommunikációról. Életrajzokról. Fociról.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nÍrországról. Pennsylvaniáról. Leginkább a fotózásról.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nA Pink Floydról. A sütésről, mert szeretek sütni.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nAz atomfegyverekről és radioaktivitásról, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nés a vadvízi evezésről.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nRengeteg információ van a világban szétszóródva\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nés mi összegyűjtjük őket egy helyre.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nSzabad tudást kínálunk mindenkinek, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\na saját nyelvükön, hogy használni is tudják.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nEz mindenki számára hasznos, akár szegény, akár gazdag.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nA nyereség-orientált cégeknek mások a motivációik és mások a követelményeik. \\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nÉn nem kapok fizetést a Wikimédia Alapítványtól, még a költségeimet sem téríti meg.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nAzt hiszem, nagyon fontosnak tartom, hogy őszintén tudom mondani:\\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nNézd, amikor én pénzt kérek, nem magamnak kérem --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nAz Alapítványnak kérem, amelynek a csapata támogatja ezt a csodálatos közösséget, amelynek én is része vagyok.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nAzt hiszem, a Wikipédia lehetőséget adott rá, hogy tényleg tehessek valamit a világért.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nOlyan ez, mint egy befektetés a jövőbe, a gyermeked jövőjébe.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nKöszönjük.\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nA videó tartalma, ahol nincs másképp feltüntetve, a Creative Commons Nevezd meg! – Így add tovább! 3.0 licenc (http://creativecommons.org/licenses/by-sa/3.0) alatt érhető el. A szerzőt így kell feltüntetni: Victor Grigas, Wikimédia Alapítvány.\\nA videóban elhangzó vélemények és nézőpontok a videón megjelenő személyek sajátjai, és nem feltétlenül tükrözik semmilyen cég, szervezet vagy intézmény álláspontját, melynek az a személy a tagja.\\nA Wikimédia Alapítvány és más szervezetek filmen megjelenő védjegyei és logói nem állnak a Creative Commons licenc hatálya alatt. A Wikimédia védjegyek és logók, köztük a „Wikipédia” név és a puzzle-földgömb logó is a Wikimédia Alapítvány bejegyzett védjegyei. További információkért olvasd el az alapítvány védjegyszabályzatát (http://www.wikimediafoundation.org/wiki/Trademark_Policy) vagy írj a trademarks@wikimedia.org e-mail címre.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nEz a videó Creative Commons licenc alatt van.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nAhogyan a Wikipédia maga, ez is szabadon másolható, átalakítható és megosztható.',\n", + " 'bytes': 7214,\n", + " 'sha1': '1pqi5geu3kc37zz7tp1fhmphhiuowmv',\n", + " 'parent_id': 86848608,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84199123,\n", + " 'timestamp': '2012-12-03T21:02:17Z',\n", + " 'user': {'id': 1798617, 'text': 'Chicocvenancio'},\n", + " 'page': {'id': 22984720,\n", + " 'title': 'The Impact of Wikipedia Poongothai Balasubramanian.webm.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,105 --> 00:00:02,016\\nEu amo meus alunos.\\n\\n2\\n00:00:03,874 --> 00:00:08,270\\nQuando trabalhava, mais que as matérias, eu amava os meus alunos.\\n\\n\\n3\\n00:00:09,288 --> 00:00:11,538\\nMeu nome é Balasubramanian Poongothai.\\n\\n4\\n00:00:11,56 --> 00:00:13,181\\nEu venho da Índia.\\n\\n5\\n00:00:13,721 --> 00:00:20,791\\nFui professora de matemática por 33 anos e estou aposentada,\\n\\n6\\n00:00:22,23 --> 00:00:27,095\\ne depois disso, comecei a editar na Wikipédia.\\n\\n7\\n00:00:28,5 --> 00:00:30,641\\nVeja, eu me aposentei.\\n\\n8\\n00:00:31,135 --> 00:00:33,954\\nEntão todas as 24 horas são para mim agora.\\n\\n9\\n00:00:34,4 --> 00:00:39,394\\nMeus filhos cresceram e estão cuidando de suas vidas.\\n\\n10\\n00:00:39,841 --> 00:00:47,791\\nEstou livre de todas responsabilidade e os anos que restam são completamente para mim.\\n\\n11\\n00:00:47,841 --> 00:00:49,341\\nE eu estou gostando disso.\\n\\n12\\n00:00:49,45 --> 00:00:59,78\\nQuando eu participo nessa Wikipédia, o que eu sinto é que estou engajada, e também... nós deixamos algo para a futura geração.\\n\\n13\\n00:01:00,15 --> 00:01:07,679\\nÁlgebra, Geometria Analítica e Geometria são os tópicos que eu me sinto confortável.\\n\\n14\\n00:01:08,8 --> 00:01:10,788\\nPrimeiro, eu comecei com Probabilidade.\\n\\n15\\n00:01:11,45 --> 00:01:14,169\\nO primeiro artigo que eu comecei foi Probabilidade.\\n\\n16\\n00:01:15,064 --> 00:01:18,998\\nTodo dia que eu entro na Wikipédia, eu estou em casa,\\n\\n17\\n00:01:19,445 --> 00:01:27,217\\nentão eu faço todo o meu trabalho pessoal, e depois eu sento com o meu netbook e edito,\\n\\n18\\n00:01:28,45 --> 00:01:33,769\\ne crio artigos, e crio artigos sobre Matemática,\\n\\n19\\n00:01:34,5 --> 00:01:40,31\\ne depois sobre tâmil, minha língua materna e minha linguagem favorita.\\n\\n20\\n00:01:41,0 --> 00:01:47,94\\nEdito artigos criados por outros para corrigir erros de gramática e ortografia.\\n\\n21\\n00:01:48,8 --> 00:01:52,06\\nTodo mundo é beneficiado por isso, quer seja rico ou pobre.\\n\\n22\\n00:01:52,548 --> 00:01:58,10\\nAqui, por um mero clique, o mundo inteiro está na nossa frente.\\n\\n23\\n00:01:59,13 --> 00:02:04,34\\nIsso está dando informações completas pela internet.\\n\\n24\\n00:02:05,298 --> 00:02:10,71\\nSem nenhuma casta. É realmente uma coisa incrível.',\n", + " 'bytes': 2175,\n", + " 'sha1': 'iqqtaaugnilpnc5xzonfsskyzue7cwc',\n", + " 'parent_id': 84198953,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84362318,\n", + " 'timestamp': '2012-12-05T22:10:44Z',\n", + " 'user': {'id': 1701223, 'text': 'VGrigas (WMF)'},\n", + " 'page': {'id': 22989730,\n", + " 'title': 'Oarabile Mudongo V1.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,797 --> 00:00:05,985\\nMy parents got nothing much to share with us, or to provide to us.\\n\\n2\\n00:00:07,25 --> 00:00:12,018\\nShe could not, they could not afford to buy me those fancy gadgets, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nbecause they're expensive in our country. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nMy name is is Oarabile Mudongo. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nI come from Botswana.\\n\\n6\\n00:00:20,4 --> 00:00:22,068\\nWe don't have a computer in our house. \\n\\n7\\n00:00:22,48 --> 00:00:26,076\\nNone of us ever owned a computer. \\n\\n8\\n00:00:27,1 --> 00:00:34,146\\nA mining company in the township - they donated computers to our school.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nIt was then that I started developing that interest of using the computer.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nI was scared to touch this, you know, because I had thought\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nSo, I've touched this, what if I mess it up?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nWhat if I destroy it, and I want to repay and my parents don't have money to repay this?\\n\\n13\\n00:00:53,2 --> 00:00:55,943\\nFrom my background, I had this in my mind\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nI saw myself being successful in life. \\n\\n15\\n00:01:01,87 --> 00:01:04,95\\nWe had this other club at school in high school. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nThey wanted us to be involved in more research, making a deep research, \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nso that I took an advantage of it to use the Internet as my source,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\nto get more information, and most of the information that I got when I was in that group - \\n\\n19\\n00:01:27,05 --> 00:01:28,661\\nthe Math and Science Fair group - \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\nI relied much on Wikipedia, and to share with you, \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nthe information that I got, our project did well at the regional level. \\n\\n22\\n00:01:38,82 --> 00:01:40,39\\nWe proceeded to the national level. \\n\\n23\\n00:01:40,805 --> 00:01:45,92\\nI heard rumors actually in school that well, you shouldn't trust Wikipedia, \\n\\n24\\n00:01:46,331 --> 00:01:51,18\\nbecause Wikipedia - it's not a trusted source to get information for your research,\\n\\n25\\n00:01:51,626 --> 00:01:54,93\\nand I was very surprised. \\n\\n26\\n00:01:54,929 --> 00:02:01,40\\nWikipedia is an open source where everyone can input, or throw in his or her idea \\n\\n27\\n00:02:01,4 --> 00:02:07,09\\nand then somebody else comes in and polishes on that idea to make it superb.\\n\\n28\\n00:02:07,7 --> 00:02:10,23\\nI had passed, so I had to progress to tertiary. \\n\\n29\\n00:02:10,66 --> 00:02:13,36\\nMost of my friends didn't make it to tertiary\\n\\n30\\n00:02:13,375 --> 00:02:18,58\\nand looking at the family background, I had to say no no no.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nI need to achieve more so that I can bring something home, help my parent.\\n\\n32\\n00:02:23,612 --> 00:02:30,35\\nThe information that I've grasped from Wikipedia really made me to move forward.\\n\\n33\\n00:02:31,37 --> 00:02:34,91\\nI managed to pass, because most of the materials that I read, \\n\\n34\\n00:02:35,32 --> 00:02:37,15\\nthe research that I've made at school,\\n\\n35\\n00:02:37,711 --> 00:02:39,96\\n I got them right there from Wikipedia.\",\n", + " 'bytes': 3161,\n", + " 'sha1': 'h6mwooib2s5cetrsrtmcyeq5ji8ufh8',\n", + " 'parent_id': 84219617,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 116271905,\n", + " 'timestamp': '2014-02-12T23:34:21Z',\n", + " 'user': {'id': 154385, 'text': 'Victorgrigas'},\n", + " 'page': {'id': 22989745,\n", + " 'title': 'The Impact of Wikipedia Dumisani Ndubane.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,0 --> 00:00:08,34\\nI started looking for online means of getting myself educated in electrical engineering,\\n\\n2\\n00:00:08,945 --> 00:00:10,591\\nand I found Wikiversity.\\n\\n3\\n00:00:11,485 --> 00:00:15,439\\nAnd I thought, Hmm? A free university is quite an interesting concept.\\n\\n4\\n00:00:17,0 --> 00:00:24,377\\nBut, to my disappointment when I got into the school of electrical engineering pages, there was not much in there to talk about.\\n\\n5\\n00:00:25,282 --> 00:00:27,282\\nMy name is Dumisani Ndubane.\\n\\n6\\n00:00:27,512 --> 00:00:28,783\\nI'm from South Africa. \\n\\n7\\n00:00:30,249 --> 00:00:37,361\\nI always had this nagging thing in my mind. You didn't find anything but they did say it's a free-to-edit university.\\n\\n8\\n00:00:37,849 --> 00:00:40,944\\nSo, why don't you put something there?\\n\\n9\\n00:00:41,542 --> 00:00:45,512\\nEven if it's one course, someone might get interested in that.\\n\\n10\\n00:00:45,988 --> 00:00:51,596\\nSo, in my second year with UNISA I was doing circuit analysis, and I thought, \\n\\n11\\n00:00:51,774 --> 00:00:57,946\\nWhy not put this stuff online that I'm learning, and see who else is doing the same thing?\\n\\n12\\n00:00:58,659 --> 00:01:03,299\\nI started transcribing my notes that I was taking for my studies.\\n\\n13\\n00:01:03,965 --> 00:01:11,115\\nand putting those online to create a Circuit Analysis page at Wikiversity,\\n\\n14\\n00:01:11,115 --> 00:01:16,214\\nand that started with a few edits which were wrong, \\n\\n15\\n00:01:16,214 --> 00:01:19,642\\nwhich did not look OK to me.\\n\\n16\\n00:01:20,441 --> 00:01:23,264\\nBut when I came back the edits were fixed.\\n\\n17\\n00:01:24,259 --> 00:01:27,676\\nMy first reaction was - did I do something wrong?\\n\\n18\\n00:01:29,104 --> 00:01:29,574\\n[laughs]\\n\\n19\\n00:01:30,806 --> 00:01:33,354\\nDid I mess up? Did I do something wrong, you know?\\n\\n20\\n00:01:34,347 --> 00:01:35,647\\nAnd then I thought about it, and I thought, \\n\\n21\\n00:01:35,732 --> 00:01:39,118\\nwait a minute! There's a word for it; it's called collaboration.\\n\\n22\\n00:01:40,172 --> 00:01:43,97\\nAnd I thought, he actually did not delete what I did. \\n\\n23\\n00:01:44,481 --> 00:01:47,22\\nHe edited it, and he made it better.\\n\\n24\\n00:01:48,403 --> 00:01:53,00\\nIt started growing. We have about eight lessons in a space of six months,\\n\\n25\\n00:01:55,501 --> 00:01:58,06\\nfully developed, with questions, corrected, and so on.\\n\\n26\\n00:01:58,904 --> 00:02:08,22\\nI've had at least 80 to 90 unique users who have Emailed me, and asked me questions about the articles that were written.\\n\\n27\\n00:02:08,841 --> 00:02:12,12\\nSome of them have asked me to work on new articles, or newer courses, \\n\\n28\\n00:02:12,124 --> 00:02:17,98\\nand that has been quite motivating, to understand and notice that \\n\\n29\\n00:02:17,977 --> 00:02:21,22\\nthese are not people from my country.\\n\\n30\\n00:02:21,224 --> 00:02:24,03\\nThese are people from all over the world.\\n\\n31\\n00:02:24,031 --> 00:02:30,96\\nI've had Australians, Germans, Pakistanis. and so on, going through the course.\\n\\n32\\n00:02:30,955 --> 00:02:41,28\\nAnd being asked to do something like that for a separate course only says that I've done something right. \\n\\n33\\n00:02:41,881 --> 00:02:45,38\\nSo, the fact that information is free meant that everybody could use.\\n\\n34\\n00:02:45,747 --> 00:02:52,00\\nSomeone who comes from a poor background, like I did, can get that information, access to that information.\\n\\n35\\n00:02:52,086 --> 00:02:57,84\\nI graduated with UNISA two months ago, finally,\\n\\n36\\n00:02:58,626 --> 00:03:03,01\\nafter spending at least five years working on my career.\\n\\n37\\n00:03:03,008 --> 00:03:11,15\\nMost of the work I did on that I've put online with Wikiversity \\n\\n38\\n00:03:11,148 --> 00:03:16,51\\nwhich was my study companion for the five years I spent there.\\n\\n39\\n00:03:17,051 --> 00:03:19,42\\nSo, yes, I am professional now,\\n\\n40\\n00:03:20,034 --> 00:03:24,93\\nand Wikiversity had a lot to do with that.\",\n", + " 'bytes': 3802,\n", + " 'sha1': 'fho7gnd98je9wsoayx82tazjlauo2dn',\n", + " 'parent_id': 84219916,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84221542,\n", + " 'timestamp': '2012-12-04T03:07:35Z',\n", + " 'user': {'id': 1798617, 'text': 'Chicocvenancio'},\n", + " 'page': {'id': 22990152,\n", + " 'title': 'Oarabile Mudongo V1.webm.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 Meus pais não tinham muito para compartilhar com a gente, para nos prover. 2 00:00:07,25 --> 00:00:12,018 Ela não tinha... El...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nMeus pais não tinham muito para compartilhar com a gente, para nos prover.\\n\\n2\\n00:00:07,25 --> 00:00:12,018\\nEla não tinha... Eles não tinham dinheiro para me comprar essas bugigangas chiques,\\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nporque eles são caros em nosso país.\\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nMeu nome é Orabile Mudongo.\\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nEu venho da Botsuana.\\n\\n6\\n00:00:20,4 --> 00:00:22,068\\nNós não temos um computador em nossa casa.\\n\\n7\\n00:00:22,48 --> 00:00:26,076\\nNenhum de nós jamais teve um computador.\\n\\n8\\n00:00:27,1 --> 00:00:34,146\\nUma empresa de mineração em nossa cidade - eles doaram computadores para a nossa escola.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nFoi então que eu comecei a desenvolver esse interesse de usar o computador.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nEu tinha medo de tocá-lo, você sabe, porque eu pensava:\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nEntão, se eu mexer, e se eu quebrar tudo?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nSe eu destruir o computador, e fosse pagá-lo e meus pais não tem dinheiro para pagar?\\n\\n13\\n00:00:53,2 --> 00:00:55,943\\nDe onde eu vim, eu tinha isso em mente:\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\neu me via tendo sucesso na vida. \\n\\n15\\n00:01:01,87 --> 00:01:04,95\\nTínhamos esse outro clube na escola, no ensino médio.\\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nQueriam que nós nos envolvêssemos com pesquisa, fazendo pesquisas profundas,\\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nentão eu tirei vantagem disso para usar a internet como minha fonte,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\npara pegar mais informações. E a maioria das informações que eu peguei quando estava nesse grupo -\\n\\n19\\n00:01:27,05 --> 00:01:28,661\\no grupo da Feira de Matemática e Ciências - \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\neu me baseei muito na Wikipédia, e também para compartilhar com vocês,\\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nas informações que eu pegava. Nosso projeto foi bem no nível regional. \\n\\n22\\n00:01:38,82 --> 00:01:40,39\\nNós fomos para o nível nacional.\\n\\n23\\n00:01:40,805 --> 00:01:45,92\\nEu escutei rumores na escola que, bem, você não deveria confiar na Wikipédia,\\n\\n24\\n00:01:46,331 --> 00:01:51,18\\nporque a Wikipédia não é uma fonte confiável para pegar informações para a sua pesquisa,\\n\\n25\\n00:01:51,626 --> 00:01:54,93\\ne eu fiquei muito surpreso.\\n\\n26\\n00:01:54,929 --> 00:02:01,40\\nA Wikipédia é uma fonte aberta, aonde todo mundo pode colocar ou jogar a sua ideia\\n\\n27\\n00:02:01,4 --> 00:02:07,09\\ne outra pessoa vem e melhora aquela ideia para torná-la fantástica.\\n\\n28\\n00:02:07,7 --> 00:02:10,23\\nEu passei na escola, então eu tinha que ir para a universidade.\\n\\n29\\n00:02:10,66 --> 00:02:13,36\\nA maioria dos meus amigos não chegou até a universidade\\n\\n30\\n00:02:13,375 --> 00:02:18,58\\ne olhando o passado da minha família, eu tinha que dizer, não não não.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nEu preciso alcançar mais para que eu possa trazer algo para casa, ajudar meus pais.\\n\\n32\\n00:02:23,612 --> 00:02:30,35\\nA informação que eu peguei na Wikipédia realmente me fez ir para frente.\\n\\n33\\n00:02:31,37 --> 00:02:34,91\\nEu consegui passar, porque a maior parte dos materiais que li,\\n\\n34\\n00:02:35,32 --> 00:02:37,15\\na pesquisa que eu fiz na escola,\\n\\n35\\n00:02:37,711 --> 00:02:39,96\\neu as peguei ali da Wikipédia.',\n", + " 'bytes': 3301,\n", + " 'sha1': 'n4281n8nz8gxrf34ekvcq1sai38fjnb',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 211079461,\n", + " 'timestamp': '2016-10-28T00:37:53Z',\n", + " 'user': {'id': 123, 'text': 'Brion VIBBER'},\n", + " 'page': {'id': 22992547,\n", + " 'title': '1TR110-1 Kap8.3 Freiton1.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'syntax fix',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nBEEP\\n\\n2\\n00:00:05,000 --> 00:00:06,000\\nBEEP\\n\\n3\\n00:00:10,000 --> 00:00:11,000\\nBEEP\\n\\n4\\n00:00:15,000 --> 00:00:16,000\\nBEEP\\n\\n5\\n00:00:20,000 --> 00:00:21,000\\nBEEP\\n\\n6\\n00:00:25,000 --> 00:00:26,000\\nBEEP\\n\\n7\\n00:00:30,000 --> 00:00:31,000\\nBEEP\\n\\n8\\n00:00:35,000 --> 00:00:36,000\\nBEEP\\n\\n9\\n00:00:40,000 --> 00:00:41,000\\nBEEP\\n\\n10\\n00:00:45,000 --> 00:00:46,000\\nBEEP\\n\\n11\\n00:00:50,000 --> 00:00:51,000\\nBEEP\\n\\n12\\n00:00:55,000 --> 00:00:56,000\\nBEEP',\n", + " 'bytes': 457,\n", + " 'sha1': '8pm5igxkuxz2i8pqvsem0vb0fo3571n',\n", + " 'parent_id': 84231220,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84314881,\n", + " 'timestamp': '2012-12-05T09:56:10Z',\n", + " 'user': {'id': 411849, 'text': 'Sezgin İbiş'},\n", + " 'page': {'id': 22994109,\n", + " 'title': 'The Impact Of Wikipedia.webm.tr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'düzenleme',\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nVikipedi, kâr amaçlı olmamasına rağmen dünya çapında en çok ziyaret edilen 5. web sitesi. Vikipedi\\'deki tüm maddeler, gönüllüler tarafından yazılmaktadır.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nBu kullanıcılardan birkaçını size tanıtmak istiyoruz...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nBen Nepal\\'de yaşıyorum.\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nBen Irak\\'tanım.\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nBen Hindistan\\'dan geliyorum\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nBen Byram, New Jersey\\'denim.\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nBen Birmingham, İngiltere\\'de yaşıyorum\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nŞikago, Illinois -- La Paz, Bolivya -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malezya -- Milano, İtalya -- Güney Afrika\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolonya -- Japonya -- Ermenistan\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrezilya -- Rusya -- Botsvana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nİsrail -- Özbekistan -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nİstanbulluyum -- Meksika\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nVikipedi\\'ye kayıt olduğum 2008 yılından beri birçok yeni madde oluşturdum.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nBunlardan biri, yanlış hatırlamıyorsam Mariam Nour adında bir bayanı konu alıyordu.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nBu konu hakkında maddemiz olmadığından, ilk maddemi bu şekilde açmak istedim.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nAncak bir süre sonra bu maddeyi açtığımı unuttum! İki-üç yıl kadar sonra,\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nbu maddeden edindiğim bilgiler sayesinde sınavımı geçtim. Karşılaştığım şey beni şaşkınlığa uğrattı.\\xa0\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\n100.000\\'in üstünde kişi, bu maddeyi okumuştu.\\xa0\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nBu maddeyi kullanmış, ondan bilgi almış ve bu madde sayesinde derslerinde başarı sağlamışlardı. \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nBu da bende, 100.000\\'den fazla kişiyi etkilediğim hissi uyandırdı.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\n\"Değiştir\" butonuna ilk kez bastığımda oldukça tedirgin olmuştum.\\xa0\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\n\"Ya yapamazsam? Ya her şeyi mahvedersem? Sanırım bunu yapamayacağım!\" diye düşünmüştüm.\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\n\"Herkese açık bir kaynak\" olan Vikipedi\\'de herkes ortaya bir fikir atabilir\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nve sonrasında başkaları gelerek bu fikri daha da ileriye götürür. Böylece mükemmeliyete ulaşılmaya çalışılır.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nHer gün, her saat, her an Vikipedi\\'nin gelişimi için çalışan binlerce insan var.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nTüm bu çalışmaların temelini gönüllülük oluşturuyor. Bu, gönüllü olmanın eşsiz bir yolu.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nBu sayede, belli bir konuyla ilgili olan profesyonel ve amatörler bir araya gelmiş oluyor.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nBaşlangıçta farklı düşünce yapılarına sahip bireyler, burası sayesinde ortaklaşa hareket etmeye başlıyorlar.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nBüyük bir İnternet kurumunun yaptığı düşünülen işler\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nbenim gibi gönüllüler tarafından gerçekleştiriliyor.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nBuraya gelip de \"Ben haklıyım, sen ise haksızsın. Maddenin benim sürümü daha düzgün.\" diyemiyorsunuz.\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nEğer bir madde taraflı bir içeriğe sahipse,\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nbaşka bir kullanıcı tarafından o madde, taraflı olduğu gerekçesiyle işaretleniyor, yahut kendiniz de işaretleyebiliyorsunuz.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nBunu gören yüzlerce, hatta binlerce kişi ise\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nbu tip sorunları düzeltebiliyor.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nSonrasında ise butona bastım ve\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nişte, bu mükemmel yolculuk başladı.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nİlk olarak \"olasılık\" ile başladım.\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nBaşlattığım ilk madde \"olasılık\" idi.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nVikipedi\\'de yazdığım ana maddelerin bir tanesi\\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nbıçaklama yaraları üzerineydi.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nBurada bulunduğum süre içerisinde uçurtma balıkçılığı,\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontana tarihi, Ulusal Park tarihi, Yellowstone hakkında yazılar yazdım.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nAz kullanılmış hasatlar. Satranç oyuncuları. Biyoçeşitlilik.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nAskerî tarih konuları. Ermeni tarihi. Roma tarihi.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nHâkimler. İletişim. Bİyografiler. Futbol.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nİrlanda. Pensilvanya. Genellikle fotoğrafçılık.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Fırınlama, çünkü pişirmeyi severim.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nNükleer silahlar ve radyoaktivite\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nve kayak sporu.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nTüm bu konular hakkındaki bilgiler dağılmış bir vaziyette\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nve biz, bu bilgileri tek bir yerde topluyoruz.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nHerkese, kendi ana dilinde bilgi sunuyoruz ki\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\ninsanlar bu bilgilere kolayca ulaşabilsin.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nZengin ya da fakir farketmez, yaptıklarımız herkese fayda sağlıyor.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nKâr amaçlı şirketler, farklı motivasyon ve ihtiyaçlara sahipler.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nWikimedia Vakfı çalışanı olarak ben maaş almıyorum, hatta masraflarımı kendim karşılıyorum.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nBunu rahatlıkla söyleyebilirim ki \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nsizden, kendim için para istemiyorum.\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nSizden, benim de bir üyesi olduğum muhteşem bir topluluk tarafından oluşturulan bu vakıf için para istiyorum.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nSanıyorum ki Vikipedi bana, dünyada bir şeyleri gerçek anlamda değiştirebilme şansını verdi.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nBurası bizim geleceğimize, çocuklarımızın geleceğine bir yatırım gibi.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nTeşekkürler.\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nBu videonun içeriği \\'\\'Creative Commons Attribution-ShareAlike License v3.0\\'\\' (aksi belirtilmediği sürece) lisansına tabiidir (http://creativecommons.org/licenses/by-sa/3.0). Bu çalışma Wikimedia Vakıf\\'ından Victor Grigas\\'a atıf edilebilir.\\nBu videoda ifade bulan görüşler ve fikirler tümüyle katılımcı bireylerin kişisel görüşleridir, bu kişilerin üyesi olduğu kurumların, firmaların veya enstitülerin politikalarını yansıtmak zorunda değildir.\\nMarkalar ve Wikimedia Vakfı ile diğer organizasyon logoları Creative Commons lisansı şartları altına dahil değildir. Wikimedia markaları ve \"Vikipedi\" bulmaca dünya logosu dahil tüm logolar, Wikimedia Vakfı\\'nın tescilli markalarıdır. Daha fazla bilgi için, Marka Politikası sayfasımıza bakın http://www.wikimediafoundation.org/wiki/Trademark_Policy veya trademarks@wikimedia.org adresiyle iletişim kurun.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nBu video bir Creative Commons lisansı altında yayınlanmaktadır.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nVikipedi\\'de olduğu gibi klibin kopyalanması ve paylaşılması ücretsizdir.',\n", + " 'bytes': 7516,\n", + " 'sha1': '9fpejg3jxvmnh017ck9rg072poj6lvf',\n", + " 'parent_id': 84241785,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84270597,\n", + " 'timestamp': '2012-12-04T19:12:11Z',\n", + " 'user': {'id': 373856, 'text': 'Jagwar'},\n", + " 'page': {'id': 23002662,\n", + " 'title': 'The Impact Of Wikipedia.webm.mg.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00.000 --> 00:00:05.200\\nWikipedia dia tsy manangona tombony, fa anefa tranonkala fahadimy eto amin\\'izao tontolo izao izy io. Olona mitolo-tena daholo no nanoratra ny lahatsoratra eo amin\\'i Wikipedia\\n\\n2\\n00:00:06.200 --> 00:00:11.500\\nTianay atolotra anao ny sasany amin-jareo...\\n\\n3\\n00:00:12.000 --> 00:00:13.000\\nAvy any Nepala aho\\n\\n4\\n00:00:13.100 --> 00:00:14.000\\nAvy any Iràka aho\\n\\n5\\n00:00:14.100 --> 00:00:16.000\\nAvy any India aho\\n\\n6\\n00:00:16.001 --> 00:00:17.000\\nIzaho dia avy any Byram, New Jersey\\n\\n7\\n00:00:17.100 --> 00:00:18.000\\nIzaho dia monina any Birmingham, Englanda\\n\\n8\\n00:00:18.100 --> 00:00:22.050\\nChicago, Illinois -- La Paz, Bolivia -- Nairobi, Kenia\\n\\n9\\n00:00:22.051 --> 00:00:24.000\\nKuala Lumpur, Malaizia -- Milan any Italia -- Afrika Atsimo\\n\\n10\\n00:00:24.100 --> 00:00:26.100\\nPolonia -- Japana -- Armenia\\n\\n11\\n00:00:26.200 --> 00:00:28.000\\nBrazila -- Rosia -- Botsoana\\n\\n12\\n00:00:28.001 --> 00:00:30.500\\nIsraely -- Ozbekistana -- Hong Kong\\n\\n\\n13\\n00:00:30.501 --> 00:00:31.000\\nIstanbul -- Mexico\\n\\n14\\n00:00:31.001 --> 00:00:32.000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33.000 --> 00:00:38.000\\nTamin\\'izaho nanomboka nanoratra teo amin\\'i Wikipedia tamin\\'ny 2008, betsaka ny lahatsoratra nosoratako.\\n\\n16\\n00:00:38.100 --> 00:00:44.000\\nNy iray tamin\\'ireo dia lahatsoratra momba ny vehivavy izay manana anarana Mariam Nour\\n\\n17\\n00:00:44.100 --> 00:00:48.000\\nTsy nanana lahatsoratra momba azy isahay, ka -- iny no lahatsoratro voalohany.\\n\\n18\\n00:00:48.100 --> 00:00:52.500\\nAdinoko izy aveo ! Angamba roa na telo taona tat? aoriana, \\n\\n19\\n00:00:52.600 --> 00:00:57.000\\nTonga teo amin\\'ilay lahatsoatra aho. Tena gaga aho.\\n\\n20\\n00:00:57.100 --> 00:01:02.000\\nOlona mahery ny iray hetsy no efa namaky ilay lahatsoratra.\\n\\n21\\n00:01:02.100 --> 00:01:08.000\\nNampiasa azy zareo, izany hoe nahazo fampahalalana avy amin\\'io lahatsoratra io. Nandalo tamin\\'ilay lahatsoratra izany zareo. \\n\\n22\\n00:01:08.100 --> 00:01:15.000\\ntsapako arak\\'izany fa nanana fianjadiana amin\\'ny olona mahery ny iray hetsy aho.\\n\\n23\\n00:01:15.500 --> 00:01:19.000\\nTena natahotra be aho tamin\\'izaho nanindray ilay \\'hanova\\' voalohany indrindra.\\n\\n24\\n00:01:19.100 --> 00:01:24.000\\nHoy aho tao an\\'eritreritra : \"Andriamanitra ô, ho simbako daholo ity ! Tsy vitako ny manao izany !\"\\n\\n25\\n00:01:24.100 --> 00:01:29.000\\nWikipedia dia \\'open source\\' -- izay hahafahan\\'ny rehetra manampy ny heviny \\n\\n26\\n00:01:29.100 --> 00:01:34.000\\nary aveo, misy olon-kafa tonga ary manatsara izay hevitra izay.\\n\\n27\\n00:01:34.100 --> 00:01:40.500\\nIsaina amin\\'ny arivo ireo olona miasa isan\\'andro, isak\\'ora, isa-minitra eo amin\\'i Wikipedia mba hanatsara azy.\\n\\n28\\n00:01:40.501 --> 00:01:44.000\\nBetsaka ny mitolo-tena. Fomba fitoloran-tena iray io.\\n\\n29\\n00:01:44.100 --> 00:01:49.000\\nIzy io dia mampihaona ny mpanao arak\\'asa ary ny mpanao ara-pitia eo amin\\'ny lohahevitra iray\\n\\n30\\n00:01:49.100 --> 00:01:54.000\\nManomboka miara-miasa ireo olona izay nanana hevitra samihafa tamin\\'ny voalohany.\\n\\n31\\n00:01:54.001 --> 00:01:58.500\\nTazonin\\'ny mpitolo-tena ohatra ahy \\n\\n32\\n00:01:58.501 --> 00:02:01.000\\nizay mety heverinao fa tantanan\\'ny orinasa Aterineto lehibe.\\n\\n33\\n00:02:01.100 --> 00:02:05.000\\nTsy afaka miteny ianao hoe \"Marina aho, diso anao, io ny fijeriko momban\\'ilay lahatsoratra!\"\\n\\n34\\n00:02:05.100 --> 00:02:07.000\\nRaha misy fijery mitongilana, \\n\\n35\\n00:02:07.100 --> 00:02:11.000\\ndia mety efa misy olona nilaza ; raha tsy izany dia izaho no milaza.\\n\\n36\\n00:02:11.000 --> 00:02:13.000\\nOlona aman-ketsiny no mahita izany \\n\\n37\\n00:02:13.001 --> 00:02:15.000\\nary mitsara azy\\n\\n38\\n00:02:15.001 --> 00:02:16.400\\nDia nopotsiriko ilay bokotra dia\\n\\n39\\n00:02:16.401 --> 00:02:19.600\\nBoom - Nanomboka ilay dia, ary nahafinaritra.\\n\\n40\\n00:02:19.601 --> 00:02:21.000\\n\\'Vina\\' no lahatsoratra natomboko voalohany \\n\\n41\\n00:02:21.001 --> 00:02:24.000\\n\\'Vinavina\\' no lahatsoratra natomboko voalohany.\\n\\n42\\n00:02:24.001 --> 00:02:26.000\\nNy lahatsoratra tena nosoratako teo amin\\'i Wikipedia dia \\n\\n43\\n00:02:26.001 --> 00:02:27.400\\nlahatsoratra momban\\'ny ratra vokatry ny antsy.\\n\\n44\\n00:02:27.401 --> 00:02:29.000\\nIzaho dia manoratra momban\\'ny fanjonoana amin\\'ny lalitra, \\n\\n45\\n00:02:29.001 --> 00:02:32.000\\nTantaran\\'i Montana, Tantaran\\'ny valam-pirenena, Yellowstone.\\n\\n46\\n00:02:32.001 --> 00:02:36.100\\n\"Underutilized crops\". Mpilalao eseky. Fahasamihafana ara-java-boahary\\n\\n47\\n00:02:36.101 --> 00:02:39.100\\nTantara ara-tafika. Tantara armenianina. Tantara Romana.\\n\\n48\\n00:02:39.101 --> 00:02:42.100\\nMpitsara. Fifandraisana. Biografia. Baolina kitra.\\n\\n49\\n00:02:42.101 --> 00:02:45.901\\nIrlandy. Pennsylvania. Sary indrindra indrindra.\\n\\n50\\n00:02:45.901 --> 00:02:47.600\\nPink Floyd. Patiseria, satria dia manao mofomamy aho.\\n\\n51\\n00:02:47.601 --> 00:02:50.200\\nFitaovam-piadiana niokleary ary radioaktivity, \\n\\n52\\n00:02:50.201 --> 00:02:52.000\\nary kayak eny amin\\'ny rano fotsy.\\n\\n53\\n00:02:52 --> 201 --> 00:02:56.000\\nHita daholo ny fampahalalana fa saingy izy miparitaka fotsiny\\n\\n54\\n00:02:56.001 --> 00:02:59.000\\nary izahay dia mametraka azy eo amina toerana iray.\\n\\n55\\n00:02:59.100 --> 00:03:03.000\\nManome fahalalana ho an\\'ny rehetra izahay, \\n\\n56\\n00:03:03.101 --> 00:03:07.000\\namin\\'ny fiteniny mba hahafahany mampiasa azy.\\n\\n57\\n00:03:07.501 --> 00:03:11.000\\nafaka manan-tombontsoa avy aminy ny tsirairay, na manan-karena izy na mahantra.\\n\\n58\\n00:03:11.001 --> 00:03:16.000\\nSamihafa ny tanjona ary ny ilan\\'ny orinasa manangom-bola.\\n\\n59\\n00:03:16.500 --> 00:03:22.000\\nTsy mangataka karama na inona na inona avy amin\\'ny Wikimedia Foundation aho, ary tsy misy ampandoaviko akory ny sarako.\\n\\n60\\n00:03:22.001 --> 00:03:25.500\\nHeveriko fa zava-dehibe ny fahafahako milaza azy mazava tsara, \\n\\n61\\n00:03:25.501 --> 00:03:30.500\\nJereo tsara fa rehefa mangataka vola aminao aho, tsy mangataka vola ho an\\'ny tenako --\\n\\n62\\n00:03:30.501 --> 00:03:36.000\\nmangataka vola aminao aho ho an\\'ilay fikambanana (Foundation), izay ekipa manohana ity fikambanana lehibe ity izay ikambanako.\\n\\n63\\n00:03:36.501 --> 00:03:41.400\\nHeveriko fa nanome ahy ny vintana hanova izao tontolo izao i Wikipedia.\\n\\n64\\n00:03:41.401 --> 00:03:48.000\\nIzy io dia ohatry ny famatsiana ho an\\'ny hoavinao, ho an\\'ny hoavin\\'ny zanakao.\\n\\n65\\n00:03:53.401 --> 00:03:57.000\\nMisaotra indrindra\\n\\n66\\n00:04:00.000 --> 00:04:03.000\\nNy votoatin\\'ity horonantsary ity dia manana ny lisansa Creative Commons Attriution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) raha tsy misy zavatra hafa voalaza. I Victor Grigas, avy amin\\'ny Wikimedia Foundation, no tompon\\'ity horonantsary ity.\\nNy hevitra voalaza ato amin\\'ity horonantsary ity dia ny hevitr\\'ireo olona izay miseho, ary tsy mitaratra ny fijerin\\'ny fikambanana na ny orinasa izay ikambanan\\'ilay olona.\\nNy birendy ary ny logon\\'ny Wikimedia Foundation ary ny fikambanana hafa dia tsy mitondra ny loisansa Creative Commons. Ny birendy ary ny logon\\'i Wikimedia, izay ahitana an\\'i \"Wikipedia\" ary ny logo glaoby piozila, dia birendy napetrak ny Wikimedia Foundation. Ho an\\'ny fampahalalana fanampin, vangio ny pejy mikasika ny politikan\\'ny birendy : http://www.wikimediafoundation.org/wiki/Trademark_Policy, na mifandray amin\\'ny alalan\\'ny adiresy trademarks@wikimedia.org.\\n\\n67\\n00:04:03.000 --> 00:04:05.000\\nIty horonantsary ity dia navoaka araka ny voalazan\\'ny lisansa Createve Commons.\\n\\n68\\n00:04:05.001 --> 00:04:09.000\\nOhatran\\'i Wikipedia, azo atao ny mandika, manova ary mizara azy ampahafahana.',\n", + " 'bytes': 7301,\n", + " 'sha1': '28i0pvlcxzn65g9hg2led7uk0t2bzlb',\n", + " 'parent_id': 84269602,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84285403,\n", + " 'timestamp': '2012-12-04T23:28:36Z',\n", + " 'user': {'id': 22641, 'text': 'Theredmonkey'},\n", + " 'page': {'id': 23006951,\n", + " 'title': 'Article-Feedback-Video-Tour-07-08.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,500 --> 00:00:02,800\\nWillkommen zu \"Artikel-Feedback\" in Wikipedia\\n\\n2\\n00:00:03,200 --> 00:00:04,800\\nDieses Video wird Dir einen kurzen Überblick über\\n\\n3\\n00:00:05,000 --> 00:00:05,800\\ndas neue Feature der Wikimedia Foundation geben',\n", + " 'bytes': 243,\n", + " 'sha1': '38c7yljy0rkq0y5fz5nq40ew1r83p2s',\n", + " 'parent_id': 84285347,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84360901,\n", + " 'timestamp': '2012-12-05T21:48:35Z',\n", + " 'user': {'id': 2464973, 'text': 'Brian3535'},\n", + " 'page': {'id': 23027547,\n", + " 'title': 'Roosevelt Infamy.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,000\\nYesterday, \\n\\n2\\n00:00:02,000 --> 00:00:08,000\\nDecember 7, 1941 \\n\\n3\\n00:00:08,000 --> 00:00:014,000\\n— a date which will live in infamy — \\n\\n4\\n00:00:14,000 --> 00:00:20,000\\nthe United States of America was suddenly and deliberately attacked\\n\\n5\\n00:00:20,000 --> 00:00:25,000\\nby naval and air forces of the Empire of Japan.',\n", + " 'bytes': 352,\n", + " 'sha1': 'nibggfr08r5wsv6l2crphk7suazcjap',\n", + " 'parent_id': 84357957,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85324309,\n", + " 'timestamp': '2012-12-19T22:03:04Z',\n", + " 'user': {'id': 133575, 'text': 'Ziko'},\n", + " 'page': {'id': 23031801,\n", + " 'title': 'The Impact of Wikipedia Peter Coti.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'diabetes mellitus is one condition, not two :-)',\n", + " 'text': '1\\n00:00:00,5 --> 00:00:04,508\\nWhen I first started, one of my main articles I wrote on Wikipedia was the article on stab wounds.\\n\\n2\\n00:00:04,79 --> 00:00:09,952\\nBasically, it\\'s when an object deeper than it is wide, enters the body \\n\\n3\\n00:00:09,952 --> 00:00:14,265\\nand causes some form of penetrating trauma, and well --\\n\\n4\\n00:00:14,265 --> 00:00:19,833\\nit can infect many organ systems, hurt you physiologically, \\n\\n5\\n00:00:20,206 --> 00:00:22,406\\nbut most of the time you really don\\'t die from the stab wound, itself. \\n\\n6\\n00:00:22,473 --> 00:00:28,340\\nYou die from the organ failure that you get after all the blood was gone and well -- you just got stabbed. \\n\\n7\\n00:00:28,729 --> 00:00:31,529\\nMy name is Peter Coti. I am an E.M.T. \\'\\'(Emergency Medical Technician)\\'\\' \\n\\n8\\n00:00:31,579 --> 00:00:36,004\\nThe way I look at it is I don\\'t want people to get hurt, but I want to be there when they do. \\n\\n9\\n00:00:36,42 --> 00:00:40,45\\nWell, one day I was in Newark helping out at a hospital. We had this woman come in. \\n\\n10\\n00:00:40,455 --> 00:00:41,940\\nShe just all of a sudden started \"barfing\" up blood. \\n\\n11\\n00:00:41,94 --> 00:00:46,541\\nIt was kind of, like, this woman is barfing blood. How do I fix that? What do I give? \\n\\n12\\n00:00:46,541 --> 00:00:50,618\\nUsing Wikipedia I\\'ve been desensitized and now I can look at things in a more clinical way \\n\\n13\\n00:00:50,618 --> 00:00:56,726\\nand not let emotions overcome me in serious, real life, life or death situations. \\n\\n14\\n00:00:57,0 --> 00:01:03,535\\nWhen I edit at Wikipedia, I need to make things that are exact and precise, because I don\\'t want to give false information to other people. \\n\\n15\\n00:01:03,969 --> 00:01:08,274\\nAnd I\\'ve put a lot of research and a lot of thought into it before I actually put it into my article.\\n\\n16\\n00:01:09,111 --> 00:01:14,684\\nThis process of editing Wikipedia is a great study technique in a way,\\n\\n17\\n00:01:15,13 --> 00:01:19,087\\nbecause I really need to know what I\\'m talking about to show it to users. \\n\\n18\\n00:01:20,0 --> 00:01:22,409\\nTo get through E.M.T. class, I edited Wikipedia all the time. \\n\\n19\\n00:01:23,757 --> 00:01:30,132\\nI wrote articles and acronyms and such, and if you\\'re able to write an article in Wikipedia \\n\\n20\\n00:01:30,151 --> 00:01:33,272\\nand explain it to another person, you can pass the test with an A+. \\n\\n21\\n00:01:33,9 --> 00:01:34,532\\nI\\'m telling you.\\n\\n22\\n00:01:34,532 --> 00:01:40,38\\nI helped a medical collaboration in Wikipedia where editors from a medical background would just come together \\n\\n23\\n00:01:40,795 --> 00:01:49,08\\nand help improve a certain article every month, be it placebo, diabetes mellitus -- scabies.\\n\\n24\\n00:01:50,25 --> 00:01:51,67\\nYou should care about Wikipedia because \\n\\n25\\n00:01:51,666 --> 00:01:59,02\\nIt\\'s a tool where you can learn and teach others for the price of nothing. It\\'s beautiful.',\n", + " 'bytes': 2827,\n", + " 'sha1': 'pp3ghz3pq0tbtm8zdfpknbdjoqfyjc6',\n", + " 'parent_id': 84425401,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84392375,\n", + " 'timestamp': '2012-12-06T07:53:33Z',\n", + " 'user': {'id': 849743, 'text': 'Vladimir Penov'},\n", + " 'page': {'id': 23037505,\n", + " 'title': 'The Impact of Wikipedia Poongothai Balasubramanian.webm.bg.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,105 --> 00:00:02,016 Обичах учениците си. 2 00:00:03,874 --> 00:00:08,270 Докато работех, за мен не бяха в...'\",\n", + " 'text': '1 00:00:01,105 --> 00:00:02,016 Обичах учениците си.\\n\\n2 00:00:03,874 --> 00:00:08,270 Докато работех, за мен не бяха важни само учебните предмети. Аз обичах учениците си.\\n\\n3 00:00:09,288 --> 00:00:11,538 Казвам се Баласубраманиан Пунгтоай.\\n\\n4 00:00:11,560 --> 00:00:13,181 Родена съм в Индия.\\n\\n5 00:00:13,721 --> 00:00:20,791 Бях учителка по математика цели 33 години. Сега съм пенсионерка.\\n\\n6 00:00:22,230 --> 00:00:27,095 И започнах да редактирам в Уикипедия.\\n\\n7 00:00:28,500 --> 00:00:30,641 Вече бях приключила с преподаването\\n\\n8 00:00:31,135 --> 00:00:33,954 и всичките 24 часа са само за мен.\\n\\n9 00:00:34,400 --> 00:00:39,394 Синовете ми са големи и сами се грижат за себе си.\\n\\n10 00:00:39,841 --> 00:00:47,791 Нямам никакви отговорности вече и оставащите ми години са само за мен,\\n\\n11 00:00:47,841 --> 00:00:49,341 и се наслаждавам на това.\\n\\n12 00:00:49,450 --> 00:00:59,780 Когато участвам в Уикипедия, се чувствам ангажирана, а също и... оставям нещо за следващите поколения.\\n\\n13 00:01:00,150 --> 00:01:07,679 Алгебра и аналитична геометрия са предметите, които познавам добре.\\n\\n14 00:01:08,800 --> 00:01:10,788 Първо започнах с Вероятност.\\n\\n15 00:01:11,450 --> 00:01:14,169 Първата ми статия беше за вероятностите.\\n\\n16 00:01:15,064 --> 00:01:18,998 Онзи ден влязох в Уикипедия, бях си вкъщи,\\n\\n17 00:01:19,445 --> 00:01:27,217 мога да свърша всичката къщна работа и после сядам на лаптопа и започвам да редактирам.\\n\\n18 00:01:28,450 --> 00:01:33,769 И създавам статии - статии, свързани с математиката,\\n\\n19 00:01:34,500 --> 00:01:40,310 както и за тамилски, който е родния ми език, моят любим език.\\n\\n20 00:01:41,000 --> 00:01:47,940 Редактирам статии, създадени от други, за правописни грешки и граматика.\\n\\n21 00:01:48,800 --> 00:01:52,060 Всеки има полза, независимо дали е богат или не.\\n\\n22 00:01:52,548 --> 00:01:58,100 Тук само с едно щракване целият свят е пред нас.\\n\\n23 00:01:59,130 --> 00:02:04,340 Така получаваме цялата информация от Интернет.\\n\\n24 00:02:05,298 --> 00:02:10,710 Няма привилегировано общество. Това е наистина чудесно.',\n", + " 'bytes': 3049,\n", + " 'sha1': 'fbzqi1uf9u8tvaoxltk7e02zbg9k5o4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 373970327,\n", + " 'timestamp': '2019-11-07T18:18:44Z',\n", + " 'user': {'id': 1547075, 'text': 'Illegitimate Barrister'},\n", + " 'page': {'id': 23084902,\n", + " 'title': 'United States Navy Band - Amhrán na bhFiann.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\nSoldiers are we,\\n\\n2\\n00:00:04,000 --> 00:00:10,000\\nwhose lives are pledged to Ireland.\\n\\n3\\n00:00:10,000 --> 00:00:13,900\\nSome have come,\\n\\n4\\n00:00:13,900 --> 00:00:17,000\\nfrom a land beyond the wave.\\n\\n5\\n00:00:19,000 --> 00:00:23,500\\nSworn to be free,\\n\\n6\\n00:00:23,500 --> 00:00:28,500\\nno more our ancient sireland,\\n\\n7\\n00:00:28,500 --> 00:00:35,500\\nshall shelter the despot or the slave.\\n\\n8\\n00:00:35,500 --> 00:00:40,000\\nTonight we man the <i>\"bearna baoil\"</i>,\\n\\n9\\n00:00:40,000 --> 00:00:44,000\\nin Erin\\'s cause, come woe or weal.\\n\\n10\\n00:00:45,000 --> 00:00:51,200\\n\\'Mid cannon\\'s roar and rifles\\' peal:\\n\\n11\\n00:00:51,200 --> 00:00:56,000\\n<b><i>We\\'ll chant a soldier\\'s song!</i></b>',\n", + " 'bytes': 706,\n", + " 'sha1': 'pn9aokbtuxek5ffqcltgr67wmegst66',\n", + " 'parent_id': 355439718,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84585485,\n", + " 'timestamp': '2012-12-08T19:39:05Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 23085177,\n", + " 'title': 'Firefogg screencast.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,000 --> 00:00:07,000 Select your input file 2 00:00:07,000 --> 00:00:14,000 Choose '6 Mbit' for high quality results 3 00:00:14,000 --> 00:00:16,00...'\",\n", + " 'text': \"1\\n00:00:01,000 --> 00:00:07,000\\nSelect your input file\\n\\n2\\n00:00:07,000 --> 00:00:14,000\\nChoose '6 Mbit' for high quality results\\n\\n3\\n00:00:14,000 --> 00:00:16,000\\nClick 'encode'\\n\\n4\\n00:00:16,000 --> 00:00:20,000\\nChoose the save location\\n\\n5\\n00:00:28,000 --> 00:00:39,000\\nYou can find your encoded video in the target folder\",\n", + " 'bytes': 320,\n", + " 'sha1': 'ntp2rsbcf83eudnt0d4bd2i1rs7x9h6',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 129767360,\n", + " 'timestamp': '2014-07-24T16:19:54Z',\n", + " 'user': {'id': 3506772, 'text': 'Umweltretter'},\n", + " 'page': {'id': 23088349,\n", + " 'title': 'Land der Berge Land am Strome instrumental.ogg.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Text seit 2012 geändert',\n", + " 'text': '1\\n00:00:04,500 --> 00:00:15,000\\nLand der Berge, Land am Strome\\n\\n2\\n00:00:16,500 --> 00:00:26,000\\nLand der Äcker, Land der Dome\\n\\n3\\n00:00:27,500 --> 00:00:37,000\\nLand der Hämmer, zukunftsreich\\n\\n4\\n00:00:39,500 --> 00:00:49,000\\nHeimat großer Töchter und Söhne\\n\\n5\\n00:00:51,500 --> 00:01:02,000\\nVolk, begnadet für das Schöne\\n\\n6\\n00:01:03,500 --> 00:01:13,000\\nVielgerühmtes Österreich\\n\\n7\\n00:01:15,500 --> 00:01:26,000\\nVielgerühmtes Österreich',\n", + " 'bytes': 444,\n", + " 'sha1': 'dkrqdnyptx6nperi8k0d3avnovhi0cn',\n", + " 'parent_id': 128635968,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 268064787,\n", + " 'timestamp': '2017-11-18T18:59:50Z',\n", + " 'user': {'text': '135.23.202.24'},\n", + " 'page': {'id': 23088547,\n", + " 'title': 'Land der Berge Land am Strome instrumental.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'removed random unrelated russian text',\n", + " 'text': '1\\n00:00:04,500 --> 00:00:15,000\\nLand of mountains, land by the stream\\n\\n2\\n00:00:16,500 --> 00:00:26,000\\nLand of fields, land of cathedrals\\n\\n3\\n00:00:27,500 --> 00:00:37,000\\nLand of hammers, with a promising future\\n\\n4\\n00:00:39,500 --> 00:00:49,000\\nHome to great daughters and sons\\n\\n5\\n00:00:51,500 --> 00:01:01,200\\nA nation highly blessed with beauty\\n\\n6\\n00:01:03,500 --> 00:01:13,000\\nMuch-praised Austria\\n\\n7\\n00:01:15,500 --> 00:01:26,000\\nMuch-praised Austria',\n", + " 'bytes': 454,\n", + " 'sha1': 'b287r7gj9wv2h7k8cpugpq2b2t10wuq',\n", + " 'parent_id': 268064601,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 356090117,\n", + " 'timestamp': '2019-06-26T06:20:28Z',\n", + " 'user': {'id': 2073340, 'text': 'Jdx'},\n", + " 'page': {'id': 23107798,\n", + " 'title': 'United States Navy Band - Himno Nacional Argentino.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/201.212.208.80|201.212.208.80]] ([[User talk:201.212.208.80|talk]]) to last revision by 181.192.73.176',\n", + " 'text': '\\n1\\n00:01:04,000 --> 00:01:11,000\\n¡Oíd, mortales!, el grito sagrado:\\n\\n2\\n00:01:12,000 --> 00:01:17,000\\n¡libertad!, ¡libertad!, ¡libertad!\\n \\n3\\n00:01:18,000 --> 00:01:24,000\\nOíd el ruido de rotas cadenas;\\n\\n4\\n00:01:25,000 --> 00:01:28,000\\nved en trono a la noble igualdad.\\n\\n5\\n00:01:30,000 --> 00:01:37,000\\n¡Ya su trono dignísimo abrieron\\n\\n6\\n00:01:37,000 --> 00:01:42,000\\nlas Provincias Unidas del Sur!\\n\\n7\\n00:01:44,500 --> 00:01:49,000\\nY los libres del mundo responden:\\n\\n8\\n00:01:50,000 --> 00:01:54,500\\n¡al gran pueblo argentino, salud!\\n\\n9\\n00:01:55,000 --> 00:02:00,000\\n¡al gran pueblo argentino, salud! \\n\\n10\\n00:02:01,000 --> 00:02:07,000\\nY los libres del mundo responden:\\n\\n11\\n00:02:08,000 --> 00:02:13,000\\n¡al gran pueblo argentino, salud!\\n\\n12\\n00:02:13,000 --> 00:02:20,000\\nY los libres del mundo responden:\\n\\n13\\n00:02:21,000 --> 00:02:27,000\\n¡al gran pueblo argentino, salud!\\n\\n14\\n00:02:50,500 --> 00:02:54,500\\nSean eternos los laureles...\\n\\n15\\n00:02:55,500 --> 00:02:58,500\\n...que supimos conseguir!\\n\\n16 \\n00:02:59,000 --> 00:03:05,000\\n...que supimos conseguir!\\n\\n17\\n00:03:06,000 --> 00:03:15,000\\nCoronados de gloria vivamos,\\n\\n18 \\n00:03:16,000 --> 00:03:19,000\\n¡O juremos con gloria morir!\\n\\n19\\n00:03:20,000 --> 00:03:23,000\\n¡O juremos con gloria morir!\\n\\n20\\n00:03:24,000 --> 00:03:27,500\\n¡O juremos con gloria morir!',\n", + " 'bytes': 1322,\n", + " 'sha1': 'toasw28smon83ico1xs7rv91gcwb4cv',\n", + " 'parent_id': 351971516,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 220155483,\n", + " 'timestamp': '2016-11-26T09:19:38Z',\n", + " 'user': {'id': 2672346, 'text': 'Svensson1'},\n", + " 'page': {'id': 23113494,\n", + " 'title': 'The Impact Of Wikipedia.webm.ro.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia este o organizatie non-profit dar si al cincelea site din lume. Toate articolele de be site-ul Wikipedia sunt scrise de voluntari.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nDorim sa va prezentam cativa dintre ei...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nSunt din Nepal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nSunt din Irak\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nSunt din India\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nSunt din Byram, New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nSunt din Birmingham, Anglia\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois--La Paz, Bolivia -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malaesia -- Milan in Italia -- Africa de Sud\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolonia--Japonia--Armenia\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrazilia -- Rusia -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael--Uzbekistan--Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul, Mexic\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nAm inceput multe articole dupa ce m-am oferit ca voluntar cu Wikipedia in 2008.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nUnul dintre articole era despre o doamna pe care o cheama Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nNu era nici un articol despre ea, asa ca…asta a fost primul meu articol.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nDar am uitat de el! Doi sau trei ani mai tarziu,\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nVad articolul. Am fost socata.\\xa0\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nPeste o suta de mii de persone au citit articolul.\\xa0\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nL-au folosit, au obtinut informatii din articol. Au dat peste articolul asta\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nAsa ca simiti ca ai reusti sa afectezi si sa influentezi mai mult de o suta de mii de persoane.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nAm fost atat de speriat cand am apasat “edit” pentru prima oara.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nM-am gandit, “O Doamne, o sa distrug totul! Nu o sa mearga! Nu pot s-o fac!\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia este “sursa deschisa”—deci fiecare dintre noi poate sa isi prezinte ideea.\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nSi apoi vine altcineva care sa slefuiasca ideea, sa o faca superba.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nMii de persoane lucreaza in fiecare zi, in fiecare ora si fiecare minut sa imbunatateasca Wikipedia.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nMajoritatea muncii este munca voluntara. Este un mod unic de a face munca voluntara.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nReuneste atat profesionisti cat si amatori care impartasesc o dragoste pentru un anumit subiect.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nPersoane care au avut pareri diferite la inceput, colaboreaza.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nMulta din munca presupusa intr-o corporatie de Internet asa mare\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nEste realizata de persoane voluntare ca si mine.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nNu poti sa spui, “Eu am dreptate, tu esti gresit, asta este versiunea mea a articolului!”\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nDaca este o problema de bias,\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nAtunci probabil cineva a marcat-o déjà, si daca nu, acum pot si eu sa o semnalez.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nSute de mii de persoane vad problema\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nSi o corecteaza.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nApas butonul si\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom! Incepe calatoria si este grozav. .\\n\\n40\\n00:02:19,601 --> 00:02:21,000\\nPrimul articol pe care l-am inceput a fost “Probabilitatea”\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nUnul dintre articolele principale pe care le-am scris pe Wikipedia a fost\\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nArticolul despre rani de injughiere.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nScriu despre stilul de pescuit la musca\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nIstoria Montanei, Istoria Parcurilor Nationale, Yellowstone\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nSemanaturi subutilizate. Jucatori de sah. Diversitatea biologica.\\xa0\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nSubiecte de istorie militara. Istoria Armeniei. Istorie Romana.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nJudecatori. Comunicatie. Biografii. Fotbal.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrlanda. Pennsylvania. In cea mai mare parte despre fotografie.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Copt pentru ca imi place sa coc.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nArme nucleare si radioactivitate. \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nSi despre caiac.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nMult din informatia disponibila este imprastiata\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nSi noi o punem intr-un singur loc.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nOferim informatie gratuita tuturor\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nIn limba propie ca sa o poata folosi\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nToata lumea beneficiaza, nu conteaza daca sunt bogati sau saraci.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nCompaniile de profit au alte motivatii si cerinte diferite.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nDe la Fundatia Wikimedia nu primesc salariu si nu imi sunt rambursate cheltuielile.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nCred ca este foarte important ca pot spune clar\\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nCand iti cer ajutor financiar, nu iti cer pentru mine\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nIti cer ajutor financiar pentru o Fundatie care suporta o comunitate expcelenta din care fac si eu parte.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nCred ca Wikimedia mi-a dar sansa asta sa fac o mare diferenta in lume.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nEste ca o investitie in viitorul tau, in viitorul copiilor tai.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nMultumesc\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nContinutul acestui video este disponibil sub licenta Creative Commons Attribution-ShareAlike License\\nv3.0 (http://creativecommons.org/licenses/by-sa/3.0) cu exceptia cazurilor in care se prevede altfel.\\nProiectul acesta este atribuit lui Victor Grigas, Fundatia Wikimedia.\\n\\nPunctele de vedere și opiniile exprimate în acest film sunt numai cele ale persoanelor care apar\\nîn video și nu reflectă în mod necesar politicile sau pozitia nici unei companii,organizatii, sau\\ninstitutii ai carei persona este membra.\\n\\nMărcile comerciale și logo-urile Fundației Wikimedia, precum și ale oricarei alte\\norganizatii nu sunt incluse în termenii licentei Creative Commons. Mărci comerciale și\\nlogo-urile Wikimedia, inclusiv \"Wikipedia\" și logo-ul glob sunt inregistrate sub licenta\\nFundatiei Wikimedia. Pentru mai multe informatii, vizitati pagina noastra despre marci\\ncomerciale\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nAcest videoclip este publicat sub o licenta Creative Commons.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\n“Like” Wikipedia, este liber de a copia, remix si partaja.',\n", + " 'bytes': 6743,\n", + " 'sha1': 'iqk523l9gvvvhutnmur2xbsn6x23z71',\n", + " 'parent_id': 86442484,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94794974,\n", + " 'timestamp': '2013-04-19T18:02:05Z',\n", + " 'user': {'text': '216.38.130.167'},\n", + " 'page': {'id': 23125607,\n", + " 'title': 'The Impact of Wikipedia Howard Morland.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,7 --> 00:00:08,154\\nSo, I was on assignment for the \"Progressive\" magazine, and \\nI discovered what is known as the \"H-bomb secret.\"\\n\\n2\\n00:00:08,154 --> 00:00:10,825\\nSo that was one of the articles I wrote. \\n\\n3\\n00:00:10,825 --> 00:00:18,994\\nThe government got ahold of it, and took us \\nto court, censored the article, stopped the publication,\\n\\n4\\n00:00:18,994 --> 00:00:22,093\\nand we were in court for about six months \\n\\n5\\n00:00:22,653 --> 00:00:26,869\\nOver the course of six months we \"won over\" \\nthe press and the arms control people\\n\\n6\\n00:00:26,869 --> 00:00:34,069\\nand we convinced the government that the information I was \\nwriting about was in the public domain anyway,\\n\\n7\\n00:00:34,114 --> 00:00:35,296\\nso they dropped the case and we won.\\n\\n8\\n00:00:35,296 --> 00:00:36,959\\nMy name is Howard Morland.\\n\\n9\\n00:00:36,959 --> 00:00:43,273\\nI\\'ve been called a \"whistle blower,\" but I was \\nactually just a journalist covering a story.\\n\\n10\\n00:00:45,524 --> 00:00:49,024\\nI came in contact with this guy named \\nJohn Coster-Mullen, who was a truck driver.\\n\\n11\\n00:00:49,0 --> 00:00:54,0\\nwho had written a self-published book on the Hiroshima and Nagasaki bombs.\\n\\n12\\n00:00:54,929 --> 00:00:59,608\\nand he had no expertise in science at all, \\n\\n13\\n00:00:59,608 --> 00:01:08,329\\nbut he had this weird idea that he would start going \\nto reunions of the people who dropped the bomb.\\n\\n14\\n00:01:08,5 --> 00:01:12,876\\neven though he wasn\\'t even their generation.\\n\\n15\\n00:01:13,336 --> 00:01:17,674\\nBut he went there, he started making friends \\nwith these people, talking to them.\\n\\n16\\n00:01:17,674 --> 00:01:22,889\\nThey started telling him what they knew about \\nthe Hiroshima bomb and the Nagasaki bomb.\\n\\n17\\n00:01:23,348 --> 00:01:29,198\\nAnd when I looked at his evidence, I was convinced, and I asked \\nhim - I said the Wikipedia article has got it wrong. \\n\\n18\\n00:01:29,21 --> 00:01:29,965\\nDo you want to fix that?\\n\\n19\\n00:01:29,965 --> 00:01:31,673\\nAnd he said, \"I already tried.\"\\n\\n20\\n00:01:31,673 --> 00:01:39,788\\nI submitted a correction to the Wikipedia article, and this guy \\nnamed Fastfission, who - we don\\'t know who he is.\\n\\n21\\n00:01:39,788 --> 00:01:41,75\\nHe has always remained anonymous. \\n\\n22\\n00:01:41,746 --> 00:01:50,89\\nhe said that this is not credible information because you don\\'t \\nhave anything you can cite except your own self-published book,\\n\\n23\\n00:01:50,887 --> 00:01:54,03\\nand every other book in the world says you\\'re wrong.\\n\\n24\\n00:01:54,486 --> 00:02:01,81\\nSo I said, well, I think we can fix that, even though \\nI knew nothing about it. This was my introduction to Wikipedia.\\n\\n25\\n00:02:01,81 --> 00:02:04,41\\nI said, I think we can fix that.\\n\\n26\\n00:02:04,407 --> 00:02:06,75\\nAnd I got Richard Rhodes, who wrote a Pulitzer Prize \\nwinning book, The Making of the Atomic Bomb,\\n\\n27\\n00:02:10,851 --> 00:02:20,70\\nStan Norris, who had written the biography of Leslie \\nGroves, the General who ran the [Manhattan] Project.\\n\\n28\\n00:02:21,156 --> 00:02:29,26\\nand a couple of other people, and we all wrote \\ninto the Talk Page and told Fastfission, \\n\\n29\\n00:02:29,265 --> 00:02:35,49\\nwe\\'ve all got published books. We haven\\'t said anything about this topic, \\nbut we read this guy\\'s book, and we think he\\'s right,\\n\\n30\\n00:02:35,494 --> 00:02:37,12\\nand everybody else is wrong.\\n\\n31\\n00:02:37,116 --> 00:02:41,96\\nAnd so Fastfission then yielded, and I wrote the correction.\\n\\n32\\n00:02:42,394 --> 00:02:47,41\\nWikipedia is one of the most amazing institutions I\\'ve ever encountered.\\n\\n33\\n00:02:47,477 --> 00:02:49,61\\nI don\\'t know anything like it.\\n\\n34\\n00:02:50,059 --> 00:02:58,98\\nIt is a testament to the desire of people \\nto know things and to share information.\\n\\n35\\n00:03:00,096 --> 00:03:03,37\\nDespite the fact that from the beginning of time, \\n\\n36\\n00:03:03,371 --> 00:03:07,67\\nwhen people started learning how to do stuff, I\\'m \\nsure they tried to keep it secret.\\n\\n37\\n00:03:07,67 --> 00:03:11,32\\nI know that people who write books, especially in the nuclear weapons field, \\n\\n38\\n00:03:11,325 --> 00:03:16,87\\nlargely they are professors, or people working at think tanks; they have a salary.\\n\\n39\\n00:03:16,871 --> 00:03:20,12\\nThey write these books. The books don\\'t make any money.\\n\\n40\\n00:03:20,125 --> 00:03:23,12\\nThey are read by very few people.\\n\\n41\\n00:03:23,5 --> 00:03:29,65\\nBut they write the book, they give a seminar, but the \\nWikipedia article that I wrote on nuclear weapons design\\n\\n42\\n00:03:32,812 --> 00:03:36,39\\ngets, I think, the last time I looked, it \\nhad something like 400 hits a day.\\n\\n43\\n00:03:36,39 --> 00:03:39,86\\nNobody\\'s book gets that much publicity.\\n\\n44\\n00:03:39,858 --> 00:03:46,97\\nAnd I don\\'t get any money for it, \\nbut I produce this information, and \\n\\n45\\n00:03:46,968 --> 00:03:49,24\\nsomehow it\\'s getting out there, and people are looking at it.\\n\\n46\\n00:03:49,235 --> 00:03:55,60\\nSo, that\\'s the satisfaction of being a writer whose work is read.\\n\\n47\\n00:03:56,178 --> 00:03:57,10\\nDirector: Victor Grigas\\n\\n48\\n00:03:57,105 --> 00:03:57,66\\nCodirector: David Grossman \\n\\n49\\n00:03:57,659 --> 00:03:58,31\\nProducer: Zack Exley\\n\\n50\\n00:03:58,308 --> 00:03:58,82\\nDirector of Photography: Pruitt Y. Allen \\n\\n51\\n00:03:58,82 --> 00:03:59,50\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck \\n\\n52\\n00:03:59,505 --> 00:04:00,03\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n53\\n00:04:00,028 --> 00:04:00,49\\nMakeup: Melissa Klein\\n\\n54\\n00:04:00,492 --> 00:04:01,88\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\n McSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson \\n\\n55\\n00:04:01,882 --> 00:04:03,13\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n56\\n00:04:03,129 --> 00:04:03,95\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n57\\n00:04:03,953 --> 00:04:04,65\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n58\\n00:04:04,651 --> 00:04:05,18\\nWriter: Desirina Boskovich\\n\\n59\\n00:04:05,177 --> 00:04:06,24\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n60\\n00:04:06,245 --> 00:04:06,82\\nEnglish Closed-Captioning: AlanKelly VerbatimIT',\n", + " 'bytes': 6106,\n", + " 'sha1': '9siy3hyej2twhih2at9bf6ymwfl414v',\n", + " 'parent_id': 84732373,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84912590,\n", + " 'timestamp': '2012-12-13T10:21:10Z',\n", + " 'user': {'id': 1985636, 'text': 'Assanges'},\n", + " 'page': {'id': 23174657,\n", + " 'title': 'The Impact Of Wikipedia.webm.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Bug fix',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\n維基百科是非營利的網站,但它是世界第五大網站,維基百科的所有詞條皆源自於志願者的貢獻\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\n我們很希望把他們其中幾位介紹給你\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\n我來自尼泊爾\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\n我來自伊拉克\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\n我從印度來\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\n我來自新澤西州的拜拉姆\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\n我住在英格蘭的伯明翰\\n\\n8\\n00:00:18,100 --> 00:00:22,040\\n伊利諾伊州芝加哥--玻利維亞拉巴斯--肯尼亞內羅畢\\n\\n9\\n00:00:22,040 --> 00:00:24,000\\n馬來西亞吉隆坡--意大利米蘭--南非\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\n波蘭--日本--亞美尼亞\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\n巴西--俄羅斯--博茨瓦納\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\n以色列--烏茲別克斯坦--香港\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\n伊斯坦布爾--墨西哥\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\n田納西州查特怒加市\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\n二零零八年當我剛加入維基百科時,我撰寫了很多條目\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\n我想它們其中之一是有關一位女士,名字似乎是瑪麗亞姆• 努爾\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\n我們尚沒有關於這個的條目,所以這便成了我的第一篇貢獻\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\n所以我把它給忘了!或許在兩三年之後吧\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\n我再經過我所撰寫條目,我被的它瀏覽量震驚了\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\n超過十萬人閱覽了這篇文章。\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\n他們參考了條目,然後從詞條中得到了他們所需的信息,他們曾閱覽過這詞條\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\n所以你感覺你影響了成千上萬的人\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\n在我第一次按下“編輯”按鈕的時候,我感到非常害怕。\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\n我想:上帝啊,我會把一切都搞砸的,那樣是行不通的,我不能這麼做\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\n維基百科是“開源”的——每個人都可以拋出自己的想法\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\n之後會別的人進來充實這個想法,使它變得更加完美。\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\n這裡有成千上萬的人每天、每小時、每分鐘在維基百科上工作,使它得到完善。\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\n很大程度上這是志願者精神,這是一個很特別的志願方法\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\n它將對於一個特定話題有興趣的專業人士及業餘人士凝聚到一起\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\n在最初有不同意見的人們開始合作了起來\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\n想像中這是一個龐大的網絡公司才能做到的事情\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\n但事實上是一個個像我一樣的志願者實現了它\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\n你只是不能說,“好吧,我是對的,你是錯的,這是闡述我觀點的文章!”\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\n有些包含偏見的文字\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\n有些人可能早把它標記起來,如果沒有,那我就可以去標記它\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\n有成千上萬的人注視著它\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\n並改正它\\n\\n38\\n00:02:15,001 --> 00:02:16,400 然後,我按下了按鈕,並且\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\n嘭!旅程開始了,感覺太棒了\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\n首先,我從編輯“概率”這個詞條開始\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\n我最先編輯的詞條是“概率”\\n\\n41\\n00:02:24,001 --> 00:02:26,\\u200b\\u200b000\\n “刀傷”是我在維基上\\n\\n42\\n00:02:26,\\u200b\\u200b001 --> 00:02:27,400\\n寫的主要條目之一\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\n我撰寫了些關於飛蠅釣法的文章\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\n以及蒙大拿歷史,國家公園歷史,黃石公園\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\n未充分利用的作物,棋手,生物多樣性\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\n軍事歷史主題,亞美尼亞歷史,羅馬歷史\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\n法官,交流,傳記,足球\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\n愛爾蘭,賓西法尼亞州,大部分是有關攝影的條目\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\n平克·弗洛伊德。還有烘焙,因為我愛烘焙\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\n核武器及放射性\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\n還有激流皮划艇。\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\n世界上到處散落著這些信息\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\n而我們把他們匯聚到同一個空間裡來\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\n我們以每個人的母語提供自由免費的知識\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\n這樣他們就可以應用這些知識\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\n無論貧窮與富裕,每個人都從中獲益\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\n營利性公司具有與我們截然不同的動機和需求\\n\\n58\\n00:03:16,400 --> 00:03:22,500\\n維基百科創辦人 ── 吉米.威爾斯\\n\\n59\\n00:03:16,550 --> 00:03:22,000\\n我既不從維基基金會獲得收入,也不用為其支出\\n\\n60\\n00:03:22,001 --> 00:03:25,500\\n我認為我把話說得十分清楚是非常重要的\\n\\n61\\n00:03:25,501 --> 00:03:30,500\\n請注意,當我向你尋求資助時,不是我在為我自己要錢\\n\\n62\\n00:03:30,501 --> 00:03:36,000\\n我是作為這個社群的一分子,為支撐起這個偉大社群的基金會尋求資金幫助\\n\\n63\\n00:03:36,501 --> 00:03:41,400\\n我想,維基百科給予了我一個真正的、大大改變世界的機會。\\n\\n64\\n00:03:41,401 --> 00:03:48,000\\n而這就如同一筆為了你未來的投資,一筆為了你子孫未來的投資\\n\\n65\\n00:03:50,899 --> 00:03:52,999\\n維基百科\\n\\n67\\n00:03:53,401 --> 00:03:57,000\\n由衷地感謝以上的受訪者\\n\\n67\\n00:04:00,000 --> 00:04:03,000\\n此影片內容除特別註明外,均以共享創意/創建CC CC-BY-SA 3.0協議發表,詳情請參考:http://creativecommons.org/licenses/by-sa/3.0 。影片由Victor Grigas為維基媒體基金會製作。影片中人士的言論僅代表其個人觀點,並不構成以各種身份代表任何機構所發表的任何觀點。請注意,任何Wikipedia®和有關維基百科的標識均為維基媒體基金會的註冊商標;維基™是維基媒體基金會的商標。有關以上商標的更多資訊,請電郵至或參考:http://www.wikimediafoundation.org/wiki/Trademark_Policy\\n\\n68\\n00:04:03,000 --> 00:04:05,000\\n這段視頻遵循\"Creative Commons license\" 共享創意/創建CC協議發佈\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\n就像維基百科一樣,這是可以自由拷貝,修改,分享的。',\n", + " 'bytes': 6755,\n", + " 'sha1': '32d71dzojl8g0za001p11q7zb2099ca',\n", + " 'parent_id': 84912501,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84912601,\n", + " 'timestamp': '2012-12-13T10:21:30Z',\n", + " 'user': {'id': 1985636, 'text': 'Assanges'},\n", + " 'page': {'id': 23174713,\n", + " 'title': 'The Impact Of Wikipedia.webm.zh-hk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 維基百科是非營利的網站,但它是世界第五大網站,維基百科的所有詞條皆源自於志願者的貢獻 ...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\n維基百科是非營利的網站,但它是世界第五大網站,維基百科的所有詞條皆源自於志願者的貢獻\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\n我們很希望把他們其中幾位介紹給你\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\n我來自尼泊爾\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\n我來自伊拉克\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\n我從印度來\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\n我來自新澤西州的拜拉姆\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\n我住在英格蘭的伯明翰\\n\\n8\\n00:00:18,100 --> 00:00:22,040\\n伊利諾伊州芝加哥--玻利維亞拉巴斯--肯尼亞內羅畢\\n\\n9\\n00:00:22,040 --> 00:00:24,000\\n馬來西亞吉隆坡--意大利米蘭--南非\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\n波蘭--日本--亞美尼亞\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\n巴西--俄羅斯--博茨瓦納\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\n以色列--烏茲別克斯坦--香港\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\n伊斯坦布爾--墨西哥\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\n田納西州查特怒加市\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\n二零零八年當我剛加入維基百科時,我撰寫了很多條目\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\n我想它們其中之一是有關一位女士,名字似乎是瑪麗亞姆• 努爾\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\n我們尚沒有關於這個的條目,所以這便成了我的第一篇貢獻\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\n所以我把它給忘了!或許在兩三年之後吧\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\n我再經過我所撰寫條目,我被的它瀏覽量震驚了\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\n超過十萬人閱覽了這篇文章。\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\n他們參考了條目,然後從詞條中得到了他們所需的信息,他們曾閱覽過這詞條\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\n所以你感覺你影響了成千上萬的人\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\n在我第一次按下“編輯”按鈕的時候,我感到非常害怕。\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\n我想:上帝啊,我會把一切都搞砸的,那樣是行不通的,我不能這麼做\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\n維基百科是“開源”的——每個人都可以拋出自己的想法\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\n之後會別的人進來充實這個想法,使它變得更加完美。\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\n這裡有成千上萬的人每天、每小時、每分鐘在維基百科上工作,使它得到完善。\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\n很大程度上這是志願者精神,這是一個很特別的志願方法\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\n它將對於一個特定話題有興趣的專業人士及業餘人士凝聚到一起\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\n在最初有不同意見的人們開始合作了起來\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\n想像中這是一個龐大的網絡公司才能做到的事情\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\n但事實上是一個個像我一樣的志願者實現了它\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\n你只是不能說,“好吧,我是對的,你是錯的,這是闡述我觀點的文章!”\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\n有些包含偏見的文字\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\n有些人可能早把它標記起來,如果沒有,那我就可以去標記它\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\n有成千上萬的人注視著它\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\n並改正它\\n\\n38\\n00:02:15,001 --> 00:02:16,400 然後,我按下了按鈕,並且\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\n嘭!旅程開始了,感覺太棒了\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\n首先,我從編輯“概率”這個詞條開始\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\n我最先編輯的詞條是“概率”\\n\\n41\\n00:02:24,001 --> 00:02:26,\\u200b\\u200b000\\n “刀傷”是我在維基上\\n\\n42\\n00:02:26,\\u200b\\u200b001 --> 00:02:27,400\\n寫的主要條目之一\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\n我撰寫了些關於飛蠅釣法的文章\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\n以及蒙大拿歷史,國家公園歷史,黃石公園\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\n未充分利用的作物,棋手,生物多樣性\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\n軍事歷史主題,亞美尼亞歷史,羅馬歷史\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\n法官,交流,傳記,足球\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\n愛爾蘭,賓西法尼亞州,大部分是有關攝影的條目\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\n平克·弗洛伊德。還有烘焙,因為我愛烘焙\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\n核武器及放射性\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\n還有激流皮划艇。\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\n世界上到處散落著這些信息\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\n而我們把他們匯聚到同一個空間裡來\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\n我們以每個人的母語提供自由免費的知識\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\n這樣他們就可以應用這些知識\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\n無論貧窮與富裕,每個人都從中獲益\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\n營利性公司具有與我們截然不同的動機和需求\\n\\n58\\n00:03:16,400 --> 00:03:22,500\\n維基百科創辦人 ── 吉米.威爾斯\\n\\n59\\n00:03:16,550 --> 00:03:22,000\\n我既不從維基基金會獲得收入,也不用為其支出\\n\\n60\\n00:03:22,001 --> 00:03:25,500\\n我認為我把話說得十分清楚是非常重要的\\n\\n61\\n00:03:25,501 --> 00:03:30,500\\n請注意,當我向你尋求資助時,不是我在為我自己要錢\\n\\n62\\n00:03:30,501 --> 00:03:36,000\\n我是作為這個社群的一分子,為支撐起這個偉大社群的基金會尋求資金幫助\\n\\n63\\n00:03:36,501 --> 00:03:41,400\\n我想,維基百科給予了我一個真正的、大大改變世界的機會。\\n\\n64\\n00:03:41,401 --> 00:03:48,000\\n而這就如同一筆為了你未來的投資,一筆為了你子孫未來的投資\\n\\n65\\n00:03:50,899 --> 00:03:52,999\\n維基百科\\n\\n67\\n00:03:53,401 --> 00:03:57,000\\n由衷地感謝以上的受訪者\\n\\n67\\n00:04:00,000 --> 00:04:03,000\\n此影片內容除特別註明外,均以共享創意 CC-BY-SA 3.0協議發表,詳情請參考:http://creativecommons.org/licenses/by-sa/3.0 。影片由Victor Grigas為維基媒體基金會製作。影片中人士的言論僅代表其個人觀點,並不構成以各種身份代表任何機構所發表的任何觀點。請注意,任何Wikipedia®和有關維基百科的標識均為維基媒體基金會的註冊商標;維基™是維基媒體基金會的商標。有關以上商標的更多資訊,請電郵至或參考:http://www.wikimediafoundation.org/wiki/Trademark_Policy\\n\\n68\\n00:04:03,000 --> 00:04:05,000\\n這段視頻遵循\"Creative Commons license\" 共享創意協議發佈\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\n就像維基百科一樣,這是可以自由拷貝,修改,分享的。',\n", + " 'bytes': 6737,\n", + " 'sha1': 'hdfe9cm9ctpulxzb5qclfp9pj5rhjvw',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84912619,\n", + " 'timestamp': '2012-12-13T10:21:53Z',\n", + " 'user': {'id': 1985636, 'text': 'Assanges'},\n", + " 'page': {'id': 23174719,\n", + " 'title': 'The Impact Of Wikipedia.webm.zh-tw.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 維基百科是非營利的網站,但它是世界第五大網站,維基百科的所有詞條皆源自於志願者的貢獻 ...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\n維基百科是非營利的網站,但它是世界第五大網站,維基百科的所有詞條皆源自於志願者的貢獻\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\n我們很希望把他們其中幾位介紹給你\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\n我來自尼泊爾\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\n我來自伊拉克\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\n我從印度來\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\n我來自新澤西州的拜拉姆\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\n我住在英格蘭的伯明翰\\n\\n8\\n00:00:18,100 --> 00:00:22,040\\n伊利諾伊州芝加哥--玻利維亞拉巴斯--肯尼亞內羅畢\\n\\n9\\n00:00:22,040 --> 00:00:24,000\\n馬來西亞吉隆坡--意大利米蘭--南非\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\n波蘭--日本--亞美尼亞\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\n巴西--俄羅斯--博茨瓦納\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\n以色列--烏茲別克斯坦--香港\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\n伊斯坦布爾--墨西哥\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\n田納西州查特怒加市\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\n二零零八年當我剛加入維基百科時,我撰寫了很多條目\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\n我想它們其中之一是有關一位女士,名字似乎是瑪麗亞姆• 努爾\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\n我們尚沒有關於這個的條目,所以這便成了我的第一篇貢獻\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\n所以我把它給忘了!或許在兩三年之後吧\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\n我再經過我所撰寫條目,我被的它瀏覽量震驚了\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\n超過十萬人閱覽了這篇文章。\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\n他們參考了條目,然後從詞條中得到了他們所需的信息,他們曾閱覽過這詞條\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\n所以你感覺你影響了成千上萬的人\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\n在我第一次按下“編輯”按鈕的時候,我感到非常害怕。\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\n我想:上帝啊,我會把一切都搞砸的,那樣是行不通的,我不能這麼做\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\n維基百科是“開源”的——每個人都可以拋出自己的想法\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\n之後會別的人進來充實這個想法,使它變得更加完美。\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\n這裡有成千上萬的人每天、每小時、每分鐘在維基百科上工作,使它得到完善。\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\n很大程度上這是志願者精神,這是一個很特別的志願方法\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\n它將對於一個特定話題有興趣的專業人士及業餘人士凝聚到一起\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\n在最初有不同意見的人們開始合作了起來\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\n想像中這是一個龐大的網絡公司才能做到的事情\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\n但事實上是一個個像我一樣的志願者實現了它\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\n你只是不能說,“好吧,我是對的,你是錯的,這是闡述我觀點的文章!”\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\n有些包含偏見的文字\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\n有些人可能早把它標記起來,如果沒有,那我就可以去標記它\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\n有成千上萬的人注視著它\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\n並改正它\\n\\n38\\n00:02:15,001 --> 00:02:16,400 然後,我按下了按鈕,並且\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\n嘭!旅程開始了,感覺太棒了\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\n首先,我從編輯“概率”這個詞條開始\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\n我最先編輯的詞條是“概率”\\n\\n41\\n00:02:24,001 --> 00:02:26,\\u200b\\u200b000\\n “刀傷”是我在維基上\\n\\n42\\n00:02:26,\\u200b\\u200b001 --> 00:02:27,400\\n寫的主要條目之一\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\n我撰寫了些關於飛蠅釣法的文章\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\n以及蒙大拿歷史,國家公園歷史,黃石公園\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\n未充分利用的作物,棋手,生物多樣性\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\n軍事歷史主題,亞美尼亞歷史,羅馬歷史\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\n法官,交流,傳記,足球\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\n愛爾蘭,賓西法尼亞州,大部分是有關攝影的條目\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\n平克·弗洛伊德。還有烘焙,因為我愛烘焙\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\n核武器及放射性\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\n還有激流皮划艇。\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\n世界上到處散落著這些信息\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\n而我們把他們匯聚到同一個空間裡來\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\n我們以每個人的母語提供自由免費的知識\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\n這樣他們就可以應用這些知識\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\n無論貧窮與富裕,每個人都從中獲益\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\n營利性公司具有與我們截然不同的動機和需求\\n\\n58\\n00:03:16,400 --> 00:03:22,500\\n維基百科創辦人 ── 吉米.威爾斯\\n\\n59\\n00:03:16,550 --> 00:03:22,000\\n我既不從維基基金會獲得收入,也不用為其支出\\n\\n60\\n00:03:22,001 --> 00:03:25,500\\n我認為我把話說得十分清楚是非常重要的\\n\\n61\\n00:03:25,501 --> 00:03:30,500\\n請注意,當我向你尋求資助時,不是我在為我自己要錢\\n\\n62\\n00:03:30,501 --> 00:03:36,000\\n我是作為這個社群的一分子,為支撐起這個偉大社群的基金會尋求資金幫助\\n\\n63\\n00:03:36,501 --> 00:03:41,400\\n我想,維基百科給予了我一個真正的、大大改變世界的機會。\\n\\n64\\n00:03:41,401 --> 00:03:48,000\\n而這就如同一筆為了你未來的投資,一筆為了你子孫未來的投資\\n\\n65\\n00:03:50,899 --> 00:03:52,999\\n維基百科\\n\\n67\\n00:03:53,401 --> 00:03:57,000\\n由衷地感謝以上的受訪者\\n\\n67\\n00:04:00,000 --> 00:04:03,000\\n此影片內容除特別註明外,均以創建CC CC-BY-SA 3.0協議發表,詳情請參考:http://creativecommons.org/licenses/by-sa/3.0 。影片由Victor Grigas為維基媒體基金會製作。影片中人士的言論僅代表其個人觀點,並不構成以各種身份代表任何機構所發表的任何觀點。請注意,任何Wikipedia®和有關維基百科的標識均為維基媒體基金會的註冊商標;維基™是維基媒體基金會的商標。有關以上商標的更多資訊,請電郵至或參考:http://www.wikimediafoundation.org/wiki/Trademark_Policy\\n\\n68\\n00:04:03,000 --> 00:04:05,000\\n這段視頻遵循\"Creative Commons license\" 創建CC協議發佈\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\n就像維基百科一樣,這是可以自由拷貝,修改,分享的。',\n", + " 'bytes': 6729,\n", + " 'sha1': 'kri88slyalwwdoxntpmlm1n4vtr33gc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85022725,\n", + " 'timestamp': '2012-12-14T21:35:10Z',\n", + " 'user': {'text': '216.38.130.162'},\n", + " 'page': {'id': 23185692,\n", + " 'title': 'The Impact of Wikipedia Gideon Digby.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,695 --> 00:00:02,411\\nSometimes I think I\\'m a bit crazy to\\n\\n2\\n00:00:02,411 --> 00:00:06,707\\ngo out in the rain, or climb a fence or cross a swollen creek, or\\n\\n3\\n00:00:06,707 --> 00:00:11,105\\ngo for a drive for what worked out to be almost a thousand miles,\\n\\n4\\n00:00:11,105 --> 00:00:13,150\\nto take a photograph of one sign.\\n\\n5\\n00:00:14,447 --> 00:00:16,888\\nMy name is Gideon, and my username is Gnangarra\\n\\n6\\n00:00:16,888 --> 00:00:20,662\\nIn Australia, there\\'s that old fable about the outback.\\n\\n7\\n00:00:21,379 --> 00:00:23,879\\nand there was a sign for one of the shires I knew I had seen it before.\\n\\n8\\n00:00:24,231 --> 00:00:26,191\\nAnd all it says is \"Outback starts here.\"\\n\\n9\\n00:00:26,941 --> 00:00:30,509\\nSo, I drove from Perth up to the sign, took a photo, and drove back home again.\\n\\n10\\n00:00:30,952 --> 00:00:33,835\\nIt all began with the Kangaroo Paw I clicked on the Wikipedia article.\\n\\n11\\n00:00:35,0 --> 00:00:36,43\\nAnd it said, this is the floral emblem of Western Australia, or something - and that\\'s it!\\n\\n12\\n00:00:39,0 --> 00:00:41,1\\nI knew more about the flower than what was there, \\n\\n13\\n00:00:41,155 --> 00:00:45,155\\nand I saw the l little button at the top that said edit this page, so I started editing.\\n\\n14\\n00:00:45,218 --> 00:00:50,792\\nA Wikipedia Photographer is a fantastic world, because you can pick and choose what you realize --\\n\\n15\\n00:00:50,792 --> 00:00:55,465\\nyou can change subjects, so you can go read an article about something, \\n\\n16\\n00:00:55,465 --> 00:00:58,831\\nyou can go, oh! I know what that is. You only need to go down the road, I\\'ll take a drive.\\n\\n17\\n00:00:58,831 --> 00:01:05,657\\nAnd take some photos, and it challenges you to change your styles. When you\\'re looking at architecture, to plants, \\n\\n18\\n00:01:06,451 --> 00:01:08,917\\nto full-on scenery. \\n\\n19\\n00:01:09,278 --> 00:01:13,673\\nI like shooting the flowers in Western Australia, because there\\'s just so many of them.\\n\\n20\\n00:01:14,224 --> 00:01:19,433\\nThe variety is just going to take you years to shoot every one.\\n\\n21\\n00:01:20,005 --> 00:01:23,686\\nThat\\'s part of the challenge - getting in, and finding some of these flowers when they\\'re in season.\\n\\n22\\n00:01:23,686 --> 00:01:28,412\\nA lot of them are endangered. A lot of them are in restricted areas where you aren\\'t supposed to go.\\n\\n23\\n00:01:29,04 --> 00:01:35,604\\nA lot of them -- you know a general location, but you don\\'t know a physical location, \\n\\n24\\n00:01:36,07 --> 00:01:37,305\\nso you\\'ve got to work that out yourself.\\n\\n25\\n00:01:38,02 --> 00:01:40,46\\nOne plant, it\\'s a banksia -- \\n\\n26\\n00:01:40,46 --> 00:01:43,70\\nand to get photos of that, it\\'s in a very small area, \\n\\n27\\n00:01:43,696 --> 00:01:46,94\\nit\\'s more or less a swampy ground type thing.\\n\\n28\\n00:01:46,937 --> 00:01:50,95\\nIn the Botanical Gardens, where I originally took a couple of photos of the flower\\n\\n29\\n00:01:50,951 --> 00:01:53,42\\nthey\\'ve got one specimen growing there. \\n\\n30\\n00:01:53,417 --> 00:01:56,92\\nSo, I got some of those, and then as the article was going to featured, \\n\\n31\\n00:01:56,981 --> 00:02:00,64\\nI went to actually photograph the species in its location.\\n\\n32\\n00:02:00,639 --> 00:02:03,89\\nwhich is the best way to present it anyway.\\n\\n33\\n00:02:03,892 --> 00:02:11,82\\nSo, I went to this place, and it\\'s circled by a 6-foot high cyclone fence with three strands of barbed wire across the top.\\n\\n34\\n00:02:11,816 --> 00:02:16,36\\nSo, up and over I go, and I took my photos -- no problem at all -- \\n\\n35\\n00:02:16,359 --> 00:02:22,76\\nand about six months later, a fire goes through the area and absolutely destroys everything - flattens it.\\n\\n36\\n00:02:22,761 --> 00:02:28,56\\nbut that\\'s good for the plant, because the Banksia release their seeds after a fire has gone through.\\n\\n37\\n00:02:29,454 --> 00:02:32,73\\nAnd then the seeds germinate in the ash, and grow up from there.\\n\\n38\\n00:02:32,726 --> 00:02:35,70\\nSo, here\\'s this article we\\'re going through, and it\\'s like, OK! \\n\\n39\\n00:02:35,695 --> 00:02:41,50\\nI\\'m going to go back and get some seedling photos in the same area.\\n\\n40\\n00:02:41,56 --> 00:02:42,91\\nI had to go back over the fence again.\\n\\n41\\n00:02:42,911 --> 00:02:47,94\\nThe ground was a lot wet and soggy, and that makes it interesting to start with.\\n\\n42\\n00:02:47,939 --> 00:02:53,48\\nI took a photo of the plant and get some leaf photos, show some nice images of the seedlings climbing back over the fence,\\n\\n43\\n00:02:53,48 --> 00:02:57,47\\nand I get across the drain, and of course, I was protecting my camera, \\n\\n44\\n00:02:57,474 --> 00:02:59,06\\nit doesn\\'t matter about anything else.\\n\\n45\\n00:02:59,055 --> 00:03:00,58\\nI stepped up onto the side - my foot slides. \\n\\n46\\n00:03:00,581 --> 00:03:07,65\\nSo I got back down into the swamp, into the drain, and climb back out -- boot missing.\\n\\n47\\n00:03:07,647 --> 00:03:08,65\\nOh well!\\n\\n48\\n00:03:08,647 --> 00:03:11,15\\nSo yeah, a pair of boots.\\n\\n49\\n00:03:11,064 --> 00:03:12,95\\nDirector: Victor Grigas\\n\\n50\\n00:03:14,59 --> 00:03:15,53\\nCodirector: David Grossman\\n\\n51\\n00:03:15,532 --> 00:03:16,53\\nProducer: Zack Exley\\n\\n52\\n00:03:16,879 --> 00:03:17,78\\nDirector of Photography: Pruitt Y. Allen\\n\\n53\\n00:03:17,701 --> 00:03:19,10\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck\\n\\n54\\n00:03:19,098 --> 00:03:20,15\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n55\\n00:03:20,147 --> 00:03:21,40\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n56\\n00:03:21,585 --> 00:03:23,13\\nInterviewers: Alma Shapa, Jonathan Curiel, Stephen Geer, Corey \\n O\\'Brien, Frank O\\'Brien, Jacob Wilson, Dan McSwain\\n\\n57\\n00:03:23,129 --> 00:03:23,93\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n58\\n00:03:23,93 --> 00:03:24,43\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n59\\n00:03:24,43 --> 00:03:25,43\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\n Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n60\\n00:03:25,435 --> 00:03:25,68\\nMakeup: Melissa Klein \\n\\n61\\n00:03:26,092 --> 00:03:26,34\\nTitles: Vibha Bamba, Trevor Parscal\\n\\n62\\n00:03:26,686 --> 00:03:26,94\\nWriter: Desirina Boskovich \\n\\n63\\n00:03:26,702 --> 00:03:26,92\\nEnglish Closed Captions: AlanKelly VerbatimIT\\n\\n64\\n00:03:26,921 --> 00:03:27,00\\n.',\n", + " 'bytes': 6163,\n", + " 'sha1': 'gxd3xnmrvxu8vos6zomhfm43nj720to',\n", + " 'parent_id': 84957511,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85105680,\n", + " 'timestamp': '2012-12-16T04:00:18Z',\n", + " 'user': {'id': 2492316, 'text': 'Mrsocial99mfine'},\n", + " 'page': {'id': 23213599,\n", + " 'title': 'Macarthurjustfadeaway.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,940\\nThe world has turned over many times\\n\\n2\\n00:00:05,940 --> 00:00:11,140\\nSince I took the oath on the plain at West Point\\n\\n3\\n00:00:11,140 --> 00:00:17,660\\nAnd the hopes and dreams have long since vanished\\n\\n4\\n00:00:17,660 --> 00:00:21,220\\nBut I still remember the refrain\\n\\n5\\n00:00:21,220 --> 00:00:28,340\\nOf one of the most popular barrack ballads of that day\\n\\n6\\n00:00:28,340 --> 00:00:34,140\\nWhich proclaimed most proudly\\n\\n7\\n00:00:34,140 --> 00:00:45,900\\nThat \"old soldiers never die; they just fade away.\"',\n", + " 'bytes': 535,\n", + " 'sha1': 'o7sifc1rn7ggxfab7tqprrf4lzeux55',\n", + " 'parent_id': 85105316,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 659557145,\n", + " 'timestamp': '2022-05-28T15:33:09Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 23216090,\n", + " 'title': 'President Obama Makes a Statement on the Shooting in Newtown.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Overall subtitles update: reading speed, adjustments for layout on mobile devices, adjustments in sync etc.',\n", + " 'text': \"1\\n00:00:00,526 --> 00:00:03,466\\nThe President: This afternoon,\\nI spoke with Governor Malloy\\n\\n2\\n00:00:03,478 --> 00:00:05,927\\nand FBI Director Mueller.\\n\\n3\\n00:00:06,867 --> 00:00:09,779\\nI offered Governor Malloy my condolences\\n\\n4\\n00:00:09,801 --> 00:00:11,681\\non behalf of the nation,\\n\\n5\\n00:00:11,713 --> 00:00:14,737\\nand made it clear\\nhe will have every single resource\\n\\n6\\n00:00:14,770 --> 00:00:17,788\\nthat he needs to investigate\\nthis heinous crime,\\n\\n7\\n00:00:18,809 --> 00:00:20,766\\ncare for the victims,\\n\\n8\\n00:00:20,786 --> 00:00:23,119\\ncounsel their families.\\n\\n9\\n00:00:24,273 --> 00:00:27,796\\nWe've endured too many of\\nthese tragedies in the past few years.\\n\\n10\\n00:00:28,473 --> 00:00:31,493\\nAnd each time I learn the news\\n\\n11\\n00:00:31,526 --> 00:00:34,462\\nI react not as a President,\\n\\n12\\n00:00:34,484 --> 00:00:38,302\\nbut as anybody else would -- as a parent.\\n\\n13\\n00:00:39,484 --> 00:00:41,753\\nAnd that was especially true today.\\n\\n14\\n00:00:43,285 --> 00:00:46,252\\nI know there's not a parent in America\\n\\n15\\n00:00:46,287 --> 00:00:50,280\\nwho doesn't feel the same\\noverwhelming grief that I do.\\n\\n16\\n00:00:51,543 --> 00:00:54,726\\nThe majority of those\\nwho died today were children --\\n\\n17\\n00:00:56,783 --> 00:01:00,284\\nbeautiful little kids \\nbetween the ages of 5 and 10 years old.\\n\\n18\\n00:01:12,266 --> 00:01:14,312\\nThey had their entire lives\\nahead of them --\\n\\n19\\n00:01:15,187 --> 00:01:20,490\\nbirthdays, graduations, weddings,\\n\\n20\\n00:01:20,509 --> 00:01:22,243\\nkids of their own.\\n\\n21\\n00:01:27,524 --> 00:01:30,222\\nAmong the fallen were also teachers --\\n\\n22\\n00:01:30,243 --> 00:01:33,234\\nmen and women who devoted\\ntheir lives to helping our children\\n\\n23\\n00:01:33,256 --> 00:01:34,754\\nfulfill their dreams.\\n\\n24\\n00:01:35,316 --> 00:01:38,673\\nSo our hearts are broken today --\\n\\n25\\n00:01:38,707 --> 00:01:41,997\\nfor the parents and grandparents,\\n\\n26\\n00:01:42,033 --> 00:01:44,938\\nsisters and brothers of \\nthese little children,\\n\\n27\\n00:01:45,497 --> 00:01:47,818\\nand for the families of\\nthe adults who were lost.\\n\\n28\\n00:01:50,252 --> 00:01:53,459\\nOur hearts are broken\\nfor the parents of the survivors as well,\\n\\n29\\n00:01:54,292 --> 00:01:57,493\\nfor as blessed as they are\\nto have their children home tonight,\\n\\n30\\n00:01:57,502 --> 00:02:02,841\\nthey know that their children's innocence\\nhas been torn away from them too early,\\n\\n31\\n00:02:02,870 --> 00:02:05,208\\nand there are no words\\nthat will ease their pain.\\n\\n32\\n00:02:07,716 --> 00:02:11,203\\nAs a country, we have been \\nthrough this too many times.\\n\\n33\\n00:02:11,753 --> 00:02:15,446\\nWhether it's an elementary\\nschool in Newtown,\\n\\n34\\n00:02:15,479 --> 00:02:17,888\\nor a shopping mall in Oregon,\\n\\n35\\n00:02:17,921 --> 00:02:20,241\\nor a temple in Wisconsin,\\n\\n36\\n00:02:20,275 --> 00:02:21,955\\nor a movie theater in Aurora,\\n\\n37\\n00:02:21,992 --> 00:02:23,978\\nor a street corner in Chicago --\\n\\n38\\n00:02:24,028 --> 00:02:26,778\\nthese neighborhoods are our neighborhoods,\\n\\n39\\n00:02:26,802 --> 00:02:29,030\\nand these children are our children.\\n\\n40\\n00:02:31,540 --> 00:02:34,716\\nAnd we're going to have to come together\\nand take meaningful action\\n\\n41\\n00:02:34,747 --> 00:02:38,795\\nto prevent more tragedies like this,\\nregardless of the politics.\\n\\n42\\n00:02:40,933 --> 00:02:44,784\\nThis evening, Michelle and I will do\\nwhat I know every parent in America\\n\\n43\\n00:02:44,816 --> 00:02:48,224\\nwill do, which is hug\\nour children a little tighter\\n\\n44\\n00:02:48,245 --> 00:02:51,264\\nand we'll tell them that we love them,\\n\\n45\\n00:02:51,281 --> 00:02:54,547\\nand we'll remind each other\\nhow deeply we love one another.\\n\\n46\\n00:02:54,939 --> 00:02:58,132\\nBut there are families in Connecticut\\nwho cannot do that tonight.\\n\\n47\\n00:02:59,018 --> 00:03:01,221\\nAnd they need all of us right now.\\n\\n48\\n00:03:02,265 --> 00:03:04,768\\nIn the hard days to come,\\nthat community needs us\\n\\n49\\n00:03:04,787 --> 00:03:07,477\\nto be at our best as Americans.\\n\\n50\\n00:03:07,497 --> 00:03:10,523\\nAnd I will do everything\\nin my power as President to help.\\n\\n51\\n00:03:11,524 --> 00:03:16,547\\nBecause while nothing can fill\\nthe space of a lost child or loved one,\\n\\n52\\n00:03:17,309 --> 00:03:21,482\\nall of us can extend a hand\\nto those in need --\\n\\n53\\n00:03:21,493 --> 00:03:25,265\\nto remind them that we are there for them,\\n\\n54\\n00:03:25,298 --> 00:03:28,246\\nthat we are praying for them,\\n\\n55\\n00:03:28,264 --> 00:03:31,218\\nthat the love they felt\\nfor those they lost\\n\\n56\\n00:03:31,248 --> 00:03:33,196\\nendures not just in their memories\\n\\n57\\n00:03:33,226 --> 00:03:35,533\\nbut also in ours.\\n\\n58\\n00:03:37,848 --> 00:03:40,222\\nMay God bless the memory of the victims\\n\\n59\\n00:03:40,769 --> 00:03:42,553\\nand, in the words of Scripture,\\n\\n60\\n00:03:44,512 --> 00:03:46,769\\nheal the brokenhearted\\n\\n61\\n00:03:46,802 --> 00:03:48,539\\nand bind up their wounds.\",\n", + " 'bytes': 4735,\n", + " 'sha1': 'jeafjjnuqrek1nfrlf5dxvqwflz9h6n',\n", + " 'parent_id': 85117696,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 186381194,\n", + " 'timestamp': '2016-02-03T02:49:59Z',\n", + " 'user': {'text': '2601:901:4400:F39E:499F:240C:7978:CC04'},\n", + " 'page': {'id': 23231699,\n", + " 'title': 'Kimigayo vocal 1930.ogg.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'translating from Japanese to Polish',\n", + " 'text': '1\\n00:00:7,600 --> 00:00:15,500\\nRządy cesarza\\n\\n2\\n00:00:15,700 --> 00:00:24,200\\nniech trwają lat tysiące,\\n\\n4\\n00:00:24,400 --> 00:00:32,500\\naż ten żwir drobny mocą wieków\\n\\n5\\n00:00:32,700 --> 00:00:41,000\\nw skałę się przemieni\\n\\n6\\n00:00:41,200 --> 00:00:55,200\\ni mchem porośnie gęstym.',\n", + " 'bytes': 292,\n", + " 'sha1': '5rtomwrbrfxxk3kkgtst4o9gs5pugzi',\n", + " 'parent_id': 85186596,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 122620556,\n", + " 'timestamp': '2014-04-29T17:31:45Z',\n", + " 'user': {'id': 268131, 'text': 'Cirt'},\n", + " 'page': {'id': 23232653,\n", + " 'title': 'The Impact of Wikipedia Adrianne Wadewitz.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'minor fix.',\n", + " 'text': '1\\n00:00:00,65 --> 00:00:05,577\\nSo one semester, I had a student who was writing a report on the novel \\'\\'Frankenstein\\'\\', \\n\\n2\\n00:00:05,9 --> 00:00:10,478\\nand I have contributed to the article on [https://en.wikipedia.org/wiki/Mary_Shelley Mary Shelley], and to the article on \\'\\'Frankenstein\\'\\'.\\n\\n3\\n00:00:10,986 --> 00:00:16,398\\nAnd whole swaths of the paper were plagiarized from the article I wrote on Mary Shelley.\\n\\n4\\n00:00:17,3 --> 00:00:22,792\\nSo, I got to write in the margin, I know this is plagiarized from Wikipedia, [whispers] because I [https://en.wikipedia.org/w/index.php?title=Mary_Shelley&dir=prev&offset=20080316005635&limit=500&action=history wrote it on Wikipedia]. \\n\\n5\\n00:00:23,2 --> 00:00:25,0\\nMy name is Adrianne Wadewitz.\\n\\n6\\n00:00:25,5 --> 00:00:28,721\\nWhen I was a little kid, like seven or eight years old, \\n\\n7\\n00:00:28,721 --> 00:00:32,75\\nI started reading big, long nineteenth-century novels, and I fell in love with them.\\n\\n8\\n00:00:32,759 --> 00:00:36,062\\nI wrote my dissertation on eighteenth-century British children\\'s literature \\n\\n9\\n00:00:36,062 --> 00:00:41,416\\nand I wanted to share what I had the opportunity to learn about with the world.\\n\\n10\\n00:00:41,75 --> 00:00:46,83\\nWhen someone goes to see a film like \\'\\'Becoming Jane\\'\\', which is a film about Jane Austen,\\n\\n11\\n00:00:46,831 --> 00:00:48,59\\nyou know – \"I want to know more about Jane Austen,\" \\n\\n12\\n00:00:48,596 --> 00:00:51,096\\nand then they type it in to Google, and they get the Wikipedia article, \\n\\n13\\n00:00:51,232 --> 00:00:54,47\\nthat they actually know what really happened to Jane Austen\\'s life versus \\n\\n14\\n00:00:54,473 --> 00:00:58,926\\nthis fictionalization that happened in the film, because that film was a total fiction.\\n\\n15\\n00:00:58,93 --> 00:01:01,900\\nOne reason that I try to recruit professors \\n\\n16\\n00:01:01,91 --> 00:01:07,62\\nto have them have students write actual articles in the classroom is \\n\\n17\\n00:01:07,626 --> 00:01:11,148\\nwe want to show students how to use Wikipedia productively, \\n\\n18\\n00:01:11,542 --> 00:01:15,042\\nso one of the things I did was develop a Wikipedia writing assignment, \\n\\n19\\n00:01:15,653 --> 00:01:22,253\\nso that you weren\\'t writing your essays for me, the professor, and I was the only person who was going to see them.\\n\\n20\\n00:01:22,312 --> 00:01:27,105\\nThe world was going to see what you wrote and it mattered what you wrote and how you wrote it, \\n\\n21\\n00:01:27,8 --> 00:01:30,368\\nbecause millions of people were going to see what you wrote. \\n\\n22\\n00:01:30,777 --> 00:01:35,977\\nSo, whenever I have students put together an article or add material to an article, \\n\\n23\\n00:01:35,981 --> 00:01:41,50\\nI have them think about what does it mean to construct an article out of a variety of sources, \\n\\n24\\n00:01:41,51 --> 00:01:46,55\\nand what kinds of sources are being used, and what does that mean for our understanding of that topic?\\n\\n25\\n00:01:46,558 --> 00:01:50,14\\nHow is knowledge being constructed in this particular area?\\n\\n26\\n00:01:50,55 --> 00:01:55,00\\nI\\'ve come across very informed amateurs on Wikipedia – that is what is so great,\\n\\n27\\n00:01:55,01 --> 00:02:00,82\\nthat people who are hobbyists who love a particular topic, and then they start adding information,\\n\\n28\\n00:02:01,342 --> 00:02:03,93\\nand that is what makes Wikipedia so great: \\n\\n29\\n00:02:03,943 --> 00:02:09,56\\nit brings together both professionals and amateurs who have a love for a particular topic.\\n\\n31\\n00:02:11,532 --> 00:02:12,34\\nDirector: Victor Grigas \\nCodirector: David Grossman \\n\\n\\n32\\n00:02:12,343 --> 00:02:12,84\\nProducer: Zack Exley\\nDirector of Photography: Pruitt Y. Allen \\n\\n\\n33\\n00:02:12,847 --> 00:02:13,44\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck\\n\\n34\\n00:02:13,443 --> 00:02:13,94\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n35\\n00:02:13,946 --> 00:02:14,47\\nMakeup: Melissa Klein\\n\\n36\\n00:02:14,473 --> 00:02:15,55\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\n McSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson \\n\\n\\n37\\n00:02:15,56 --> 00:02:16,22\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n\\n38\\n00:02:16,23 --> 00:02:16,70\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n39\\n00:02:16,704 --> 00:02:17,35\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n40\\n00:02:17,353 --> 00:02:17,77\\nWriter: Desirina Boskovich\\n\\n41\\n00:02:17,773 --> 00:02:18,50\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\n Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling \\n\\n42\\n00:02:18,519 --> 00:02:19,00\\nEnglish Closed-Captioning: AlanKelly VerbatimIT',\n", + " 'bytes': 4576,\n", + " 'sha1': '4k1hhivf53k5kge16e1idtnpvgeycpj',\n", + " 'parent_id': 122607145,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85190757,\n", + " 'timestamp': '2012-12-17T14:30:05Z',\n", + " 'user': {'text': '82.28.223.192'},\n", + " 'page': {'id': 23232705,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,5 --> 00:00:04,497 I'm an English teacher. I'm married. I have a daughter. 2 00:00:05,2 --> 00:00:13,587 And I pretty much work like everybody else....'\",\n", + " 'text': \"1\\n00:00:00,5 --> 00:00:04,497\\nI'm an English teacher. I'm married. I have a daughter.\\n\\n2\\n00:00:05,2 --> 00:00:13,587\\nAnd I pretty much work like everybody else. I have \\n a schedule. I go to work. I go back.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nAnd I have needs like everybody else, and I also \\n want to spend my free time on Wikipedia.\\n\\n4\\n00:00:20,5 --> 00:00:23,943\\nI am Erlan Vega. I'm from La Paz, Bolivia.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nI write about different things, mostly safe things: butterflies, insects, animals.\\n\\n6\\n00:00:33,0 --> 00:00:39,13\\nIn my education system, people don't usually write. They don't write. They don't create.\\n\\n7\\n00:00:39,75 --> 00:00:45,936\\nThey just receive information, and they are supposed to \\n memorize it and then they have the test.\\n\\n8\\n00:00:46,85 --> 00:00:50,04\\nAnd they ask you about it, yet it's not a good thing. \\n\\n9\\n00:00:50,04 --> 00:00:53,48\\nIt's like when at the end of the course, \\n\\n10\\n00:00:53,48 --> 00:01:00,876\\nthey ask you to write something, an article, a paper, or something \\n and you're really in trouble because you have never done it.\\n\\n11\\n00:01:01,31 --> 00:01:08,501\\nAnd giving a person the opportunity to be creative and to \\n be recognized for something they write is really -- \\n\\n12\\n00:01:11,21 --> 00:01:13,855\\nit has been really a turning point in my life.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nEverything started when I went to Wiktionary, the dictionary of Wikipedia one day, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\nand I met this girl, Dabawdygirl //. We were \\n fighting a vandal by that time. \\n\\n15\\n00:01:26,2 --> 00:01:34,57\\nAnd she said -- she tried to reply in Spanish, and I \\n know her Spanish was a bit shaky at that time, \\n\\n16\\n00:01:35,022 --> 00:01:41,25\\nso we made sort of an unwritten deal: I \\n teach you Spanish, and you teach me English.\\n\\n17\\n00:01:41,246 --> 00:01:48,13\\nAnd we corrected each other, and we learned the language \\n by editing on Wiktionary in English, and in Spanish.\\n\\n18\\n00:01:48,583 --> 00:01:53,51\\nAnd in the end my English got so better, because I practiced every day.\\n\\n19\\n00:01:54,765 --> 00:01:56,95\\nThen, by the time I finished my studies in English \\n\\n20\\n00:01:56,946 --> 00:02:09,18\\nI passed the ECP admission test which is a requirement for teachers just as \\n I finished my studies, and then they hired me right there, \\n\\n21\\n00:02:09,18 --> 00:02:13,48\\nbecause my scores, I guess, were high enough to teach.\\n\\n22\\n00:02:14,01 --> 00:02:19,57\\nAnd they started some training, and I have \\n been working there for five years now.\\n\\n23\\n00:02:21,79 --> 00:02:29,09\\nIt's amazing because of that I have the stability, I got married. \\n I have a daughter, so Wikipedia has changed my life.\\n\\n24\\n00:02:29,273 --> 00:02:29,42\\nDirector: Victor Grigas \\nCodirector: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,57\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,66\\nProducer: Zack Exley\\nDirector of Photography: Pruitt Y. Allen \\n\\n\\n27\\n00:02:29,659 --> 00:02:29,91\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,77\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,19\\nMakeup: Melissa Klein\\n\\n30\\n00:02:31,19 --> 00:02:31,98\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\n McSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,65\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,09\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,51\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,88\\nWriter: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,49\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\n Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,99\\nEnglish Closed-Captioning: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,42\\n[...]\",\n", + " 'bytes': 3948,\n", + " 'sha1': 'ksknrmt2gd2e2sgvj3nt7bsor6j1ilm',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85190797,\n", + " 'timestamp': '2012-12-17T14:30:58Z',\n", + " 'user': {'text': '82.28.223.192'},\n", + " 'page': {'id': 23232717,\n", + " 'title': 'The Impact of Wikipedia Gereon Kalkuhl.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,585 --> 00:00:06,891 I was always writing my whole life; always writing fiction. I was writing just for myself. 2 00:00:07,515 --> 00:00:09,472 An...'\",\n", + " 'text': \"1\\n00:00:00,585 --> 00:00:06,891\\nI was always writing my whole life; always writing \\n fiction. I was writing just for myself.\\n\\n2\\n00:00:07,515 --> 00:00:09,472\\nAnd then I found Wikipedia. \\n\\n3\\n00:00:09,95 --> 00:00:13,127\\nMy name is Gereon Kalkuhl. I'm from Germany.\\n\\n4\\n00:00:13,127 --> 00:00:13,327\\nI mainly write for the German Wikipedia.\\n\\n5\\n00:00:17,0 --> 00:00:23,568\\nIt was a page about part of the city where my grandmother was born.\\n\\n6\\n00:00:24,0 --> 00:00:27,57\\nAnd it's a small part of the city which doesn't exist any more.\\n\\n7\\n00:00:28,561 --> 00:00:32,658\\nbecause they flattened it - I don't know, 80 or 60 years ago.\\n\\n8\\n00:00:32,658 --> 00:00:35,140\\nIt does not exist anymore, so one should read about it,\\n\\n9\\n00:00:35,14 --> 00:00:41,295\\nand the only place where I found information about \\n this in a form that I could understand,\\n\\n10\\n00:00:41,295 --> 00:00:46,882\\nwhere all information about this was collected together in one article was Wikipedia.\\n\\n11\\n00:00:46,882 --> 00:00:49,863\\nAnd one day I found out you can edit this.\\n\\n12\\n00:00:49,863 --> 00:00:52,618\\nYou can change this information - anybody can.\\n\\n13\\n00:00:52,618 --> 00:00:54,052\\nIt's a certain power that you have. \\n\\n14\\n00:00:54,052 --> 00:00:59,836\\nFor instance, if you read your daily newspaper, and you see \\n some things that you think might not be correct, \\n\\n15\\n00:00:59,836 --> 00:01:05,651\\nor that you don't like, and so the choice that \\n you have is writing a Letter to the Editor;\\n\\n16\\n00:01:05,651 --> 00:01:10,465\\nsome people do that, most people don't, they just complain at home.\\n\\n17\\n00:01:10,83 --> 00:01:17,316\\nIn Wikipedia you have the opportunity to correct mistakes straight away.\\n\\n18\\n00:01:16,959 --> 00:01:25,291\\nLike, in a normal encyclopaedia, you've got very good people \\n writing the articles, the entries for a lexicon, \\n\\n19\\n00:01:25,291 --> 00:01:29,274\\nbut you only have two editors who look over it.\\n\\n20\\n00:01:29,274 --> 00:01:38,169\\nAnd in Wikipedia, you've got so many people with knowledge about the \\n subjects that read it, look over it, and then correct it.\\n\\n21\\n00:01:39,163 --> 00:01:45,40\\nSo anything that's wrong in Wikipedia doesn't stay there for \\n long, mostly, and that I find very fascinating. \\n\\n22\\n00:01:46,312 --> 00:01:50,89\\nAnybody can write any nonsense into Wikipedia, \\n\\n23\\n00:01:50,886 --> 00:01:55,87\\nbut if you write nonsense, if something is wrong, you've got \\n hundreds and thousands of people seeing that, and correcting it.\\n\\n24\\n00:01:56,474 --> 00:02:09,41\\nMainly I write about chess players. I write about airports as well. For \\n example, birds, insects, mayors - whatever is interesting at the moment.\\n\\n25\\n00:02:10,108 --> 00:02:15,30\\nIf you engage yourself into a certain topic, other people will contact you.\\n\\n26\\n00:02:15,297 --> 00:02:19,87\\nIf you just see the nicknames on the internet, you don't have \\n faces to it, you don't have names to it, \\n\\n27\\n00:02:19,871 --> 00:02:28,45\\nand then you see the people and they're so diverse; some are 80 years \\n old, some are 60 years old, some are 40 year old business men.\\n\\n28\\n00:02:28,447 --> 00:02:35,63\\nOr 30 year old artists, 15 year-old students from school.\\n\\n29\\n00:02:35,63 --> 00:02:41,41\\nAnd they are so different, but what they have all \\n in common is they are curious people. \\n\\n30\\n00:02:41,413 --> 00:02:44,00\\nThey want to know things, and they want to share this knowledge.\\n\\n31\\n00:02:45,252 --> 00:02:45,76\\nDirector: Victor Grigas\\n\\n32\\n00:02:45,761 --> 00:02:46,40\\nCodirector: David Grossman \\n\\n33\\n00:02:46,403 --> 00:02:47,09\\nProducer: Zack Exley\\n\\n34\\n00:02:47,087 --> 00:02:47,64\\nDirector of Photography: Pruitt Y. Allen \\n\\n35\\n00:02:47,64 --> 00:02:48,30\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck \\n\\n36\\n00:02:48,295 --> 00:02:49,05\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n37\\n00:02:49,046 --> 00:02:49,67\\nMakeup: Melissa Klein\\n\\n38\\n00:02:49,666 --> 00:02:50,56\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\n McSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n39\\n00:02:50,563 --> 00:02:51,40\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n40\\n00:02:51,405 --> 00:02:51,94\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n41\\n00:02:51,405 --> 00:02:52,09\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n42\\n00:02:51,939 --> 00:02:52,71\\nWriter: Desirina Boskovich\\n\\n43\\n00:02:52,709 --> 00:02:54,01\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\n Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n44\\n00:02:54,006 --> 00:02:54,30\\nEnglish Closed-Captioning: AlanKelly VerbatimIT\",\n", + " 'bytes': 4602,\n", + " 'sha1': 'k1zbcfipc1wvrzrj964lsoi75rt5s26',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 116271880,\n", + " 'timestamp': '2014-02-12T23:33:50Z',\n", + " 'user': {'id': 154385, 'text': 'Victorgrigas'},\n", + " 'page': {'id': 23233174,\n", + " 'title': 'The Impact of Wikipedia Ravan Jaafar Altaie.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:02,65 --> 00:00:05,65\\nMy name is Ravan Jaafar Altaie.\\n\\n2\\n00:00:05,662 --> 00:00:06,912\\nI am from Iraq.\\n\\n3\\n00:00:06,902 --> 00:00:12,563\\nAt the beginning of my joining to Wikipedia in 2008 I started many articles.\\n\\n4\\n00:00:12,6 --> 00:00:19,337\\nOne of them, I think it was about a lady called Miriam Noor\\n\\n5\\n00:00:19,337 --> 00:00:21,726\\nAnd we didn't have an article about it, so \\n\\n6\\n00:00:21,726 --> 00:00:23,385\\nthis was my first article. \\n\\n7\\n00:00:23,851 --> 00:00:28,019\\nI forgot about it. Maybe 2 or 3 years later, \\n\\n8\\n00:00:28,493 --> 00:00:32,834\\nI passed by this article. I was shocked!\\n\\n9\\n00:00:32,834 --> 00:00:38,555\\nPeople there are writing and writing, so I feel it's \\n one of the amazing things in Wikipedia --\\n\\n10\\n00:00:39,05 --> 00:00:43,764\\nto find out something you started -- it's like a child, you know?\\n\\n11\\n00:00:44,218 --> 00:00:48,754\\nMore than 100,000 people read this article. \\n\\n12\\n00:00:49,245 --> 00:00:54,886\\nThey used it, so they got the information from \\n this article. They passed by this article. \\n\\n13\\n00:00:55,361 --> 00:01:03,661\\nSo you feel like you affected and influenced more than 100,000 \\n people. I think this is a very amazing thing.\\n\\n14\\n00:01:03,708 --> 00:01:09,007\\nFor me, if I want to know some information about \\n some subject I do not know anything about it,\\n\\n15\\n00:01:09,007 --> 00:01:14,560\\nI start an article. By the end of the \\n article, when the article is ready \\n\\n16\\n00:01:14,995 --> 00:01:17,576\\nI know everything about this subject. \\n\\n17\\n00:01:17,576 --> 00:01:24,380\\nI'm telling my female girlfriends, even if you have any information, and\\n\\n18\\n00:01:24,38 --> 00:01:26,969\\nyou like dresses? You like fashion?\\n\\n19\\n00:01:26,969 --> 00:01:31,788\\nYou like make-up? You like whatever that girls are liking, write about it!\\n\\n20\\n00:01:31,788 --> 00:01:36,491\\nWhat we did in the Revolution is because we \\n were following up day by day and\\n\\n21\\n00:01:36,491 --> 00:01:42,42\\ninternational friends, they were asking us about the truth,\\n\\n22\\n00:01:42,418 --> 00:01:47,30\\nbecause, you know, media cannot be specific in different countries,\\n\\n23\\n00:01:47,777 --> 00:01:54,53\\nso they were asking us, through Wikipedia, about what really happened in the revolutions.\\n\\n24\\n00:01:54,964 --> 00:01:57,83\\nwhen it started in Tunisia, then after that in Egypt, \\n\\n25\\n00:01:58,271 --> 00:02:06,97\\nso we were providing this information with, of course, reliable sources in Wikipedia.\\n\\n26\\n00:02:07,478 --> 00:02:17,73\\nFor me, I was Googling from the most trust-able \\n places to get the information, which --\\n\\n27\\n00:02:18,674 --> 00:02:22,57\\nI feel like it's Al-Jazeera and CNN and BBC,\\n\\n28\\n00:02:22,646 --> 00:02:27,53\\nthese three, they are offering information at least from reporters.\\n\\n29\\n00:02:27,984 --> 00:02:33,58\\nI think this is my wish, and one of my dreams --\\n\\n30\\n00:02:33,971 --> 00:02:39,02\\nand many peoples' dreams -- to make a real change in \\n the world, to make a difference in the world.\\n\\n31\\n00:02:39,021 --> 00:02:44,53\\nI think Wikipedia gave me this chance to really \\n make a huge difference in the world, \\n\\n32\\n00:02:44,906 --> 00:02:49,54\\nbecause you are effecting yourself, your children, the coming generation, \\n\\n33\\n00:02:50,043 --> 00:02:55,96\\nto have a free source, a free knowledge, an amazing encyclopaedia, \\n\\n34\\n00:02:56,401 --> 00:02:59,19\\naffecting all the fields of their life, \\n\\n35\\n00:02:59,683 --> 00:03:04,38\\nit's like an investment for your future, for your children's future.\\n\\n36\\n00:03:07,068 --> 00:03:08,03\\nDirector: Victor Grigas\\n\\n37\\n00:03:08,03 --> 00:03:08,85\\nCodirector: David Grossman\\n\\n38\\n00:03:08,854 --> 00:03:09,65\\nProducer: Zack Exley\\n\\n39\\n00:03:09,654 --> 00:03:09,90\\nDirector of Photography: Pruitt Y. Allen\\n\\n40\\n00:03:09,899 --> 00:03:10,60\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck\\n\\n41\\n00:03:10,598 --> 00:03:11,13\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n42\\n00:03:11,127 --> 00:03:11,65\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n43\\n00:03:11,65 --> 00:03:12,40\\nInterviewers: Alma Shapa, Jonathan Curiel, Stephen Geer, Corey \\n O'Brien, Frank O'Brien, Jacob Wilson, Dan McSwain\\n\\n44\\n00:03:12,4 --> 00:03:13,37\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n45\\n00:03:13,371 --> 00:03:13,94\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n46\\n00:03:13,944 --> 00:03:14,80\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\n Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n47\\n00:03:14,796 --> 00:03:15,40\\nMakeup: Melissa Klein \\n\\n48\\n00:03:15,402 --> 00:03:15,88\\nTitles: Vibha Bamba, Trevor Parscal\\n\\n49\\n00:03:15,876 --> 00:03:16,15\\nWriter: Desirina Boskovich\\n\\n50\\n00:03:16,153 --> 00:03:16,24\\nEnglish Closed Captions: AlanKelly VerbatimIT\",\n", + " 'bytes': 4746,\n", + " 'sha1': 'rx66uaeb1e0y2pelf9cs06zyu2isk91',\n", + " 'parent_id': 85192882,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 595470719,\n", + " 'timestamp': '2021-10-03T21:17:37Z',\n", + " 'user': {'id': 7585850, 'text': 'Bridget'},\n", + " 'page': {'id': 23233180,\n", + " 'title': 'The Impact of Wikipedia - Andrea Zanni.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'copyedit',\n", + " 'text': '1\\n00:00:00,9 --> 00:00:04,686\\nWikipedia took serendipity to another whole level.\\n\\n2\\n00:00:05,262 --> 00:00:11,442\\nYou just go, and you always go in the \"N\", reading about the history of black metal in Sweden.\\n\\n3\\n00:00:12,861 --> 00:00:18,422\\nI\\'m Andrea Zanni and I work as a volunteer in the Italian Wikisource.\\n\\n4\\n00:00:19,281 --> 00:00:27,627\\nWikisource is a digital library. It owns and hosts \\nancient books, like old books, public domain ones.\\n\\n5\\n00:00:28,065 --> 00:00:39,131\\nand we put books up for people to read. We digitize some of \\nthem. We put them on Wikisource, and then we transcribe them.\\n\\n6\\n00:00:39,131 --> 00:00:45,922\\nWe also try to link the books between each other, because \\nthere is the possibility to link one to another.\\n\\n7\\n00:00:46,426 --> 00:00:56,740\\nto link a text to another, and try to follow \\nquotes and create a sort of hyper-textual digital library.\\n\\n8\\n00:00:56,74 --> 00:01:02,463\\nI really love that about Wikisource - the \\npossibility to create a connected, integrated library\\n\\n9\\n00:01:02,463 --> 00:01:05,749\\nSerendipity is one of the best things in life, \\n\\n10\\n00:01:05,749 --> 00:01:13,749\\nand it\\'s just -- serendipity is when you find \\nsomething interesting, but you\\'re looking for something else.\\n\\n11\\n00:01:13,75 --> 00:01:17,777\\nIt always happens when you go in a bookstore.\\n\\n12\\n00:01:18,239 --> 00:01:22,944\\nIt always happens when you go in a library with open shelves.\\n\\n13\\n00:01:22,944 --> 00:01:29,741\\nAs everyone does, I was searching a word in \\nGoogle. I came out on Wikipedia, \\n\\n14\\n00:01:29,741 --> 00:01:34,172\\nand then I started. I thought, OK, this is not possible, \\n\\n15\\n00:01:34,172 --> 00:01:39,779\\nlike, it can\\'t be open to anyone. It can\\'t \\nbe like this, like editable for anyone, \\n\\n16\\n00:01:39,779 --> 00:01:41,21\\nand it was \\n\\n17\\n00:01:41,214 --> 00:01:47,39\\nand then I discovered Wikiquotes; that was a \\nproject I really enjoyed the first times.\\n\\n18\\n00:01:47,386 --> 00:01:51,24\\nSo I started working there, and then I discovered Wikisource, \\nand I said, OK, this is my place\\n\\n19\\n00:01:51,72 --> 00:01:59,58\\nAnd you know, there were the books, and there was the \\nnerdy part with computers, software stuff that was together.\\n\\n20\\n00:01:59,576 --> 00:02:01,64\\nand OK, I belong here.\\n\\n21\\n00:02:01,641 --> 00:02:06,64\\nWikipedia, yes, it\\'s probably the best serendipitous thing ever, right now.\\n\\n22\\n00:02:10,11 --> 00:02:10,55\\nDirector: Victor Grigas\\n\\n23\\n00:02:10,546 --> 00:02:11,19\\nCodirector: David Grossman\\n\\n24\\n00:02:11,189 --> 00:02:11,98\\nProducer: Zack Exley\\n\\n25\\n00:02:11,977 --> 00:02:12,48\\nDirector of Photography: Pruitt Y. Allen\\n\\n26\\n00:02:12,478 --> 00:02:12,97\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck \\n\\n27\\n00:02:12,969 --> 00:02:13,44\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n28\\n00:02:13,44 --> 00:02:13,88\\nMakeup: Melissa Klein\\n\\n29\\n00:02:13,882 --> 00:02:14,66\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson\\n\\n30\\n00:02:14,662 --> 00:02:15,30\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n31\\n00:02:15,305 --> 00:02:15,74\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n32\\n00:02:15,74 --> 00:02:16,08\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n33\\n00:02:16,082 --> 00:02:16,33\\nWriter: Desirina Boskovich\\n\\n34\\n00:02:16,326 --> 00:02:16,53\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n35\\n00:02:16,528 --> 00:02:16,73\\nEnglish Closed-Captioning: AlanKelly VerbatimIT',\n", + " 'bytes': 3579,\n", + " 'sha1': '8pmkq2i9dw9y1ia1e2pcouri1st7qrc',\n", + " 'parent_id': 85325796,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85564829,\n", + " 'timestamp': '2012-12-24T00:04:17Z',\n", + " 'user': {'text': '38.121.228.2'},\n", + " 'page': {'id': 23233218,\n", + " 'title': 'The Impact of Wikipedia - Mei Jiun Kwek.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,155 --> 00:00:02,240\\nI like the feeling of when I'm staying in the forest.\\n\\n2\\n00:00:02,79 --> 00:00:09,385\\nIt's quiet. You can listen to the birds, to the trees. \\n\\n3\\n00:00:10,11 --> 00:00:12,332\\nI got my degree in Botany.\\n\\n4\\n00:00:12,4 --> 00:00:16,284\\nIf I had not taken Botany, I might have thought \\n\\n5\\n00:00:16,757 --> 00:00:21,249\\nthat these trees are all the same: they are green, they are trees, they don't have names, \\n\\n6\\n00:00:22,1 --> 00:00:24,015\\nbut actually they do.\\n\\n7\\n00:00:24,515 --> 00:00:26,472\\nI find it's great working in the forest. \\n\\n8\\n00:00:26,89 --> 00:00:30,434\\nMy name is Kwek Mei Jiun. I'm from Kuala Lumpur, Malaysia.\\n\\n9\\n00:00:30,9 --> 00:00:33,127\\nI'm working in an agriculture institution. \\n\\n10\\n00:00:33,712 --> 00:00:40,605\\nI contribute images to Wikimedia Commons, and I contribute images on crop species,\\n\\n11\\n00:00:41,442 --> 00:00:44,853\\nand mainly on neglected and underutilized crops.\\n\\n12\\n00:00:45,2 --> 00:00:52,608\\nWe want to engage our partners, researchers and scientists to contribute to Wikipedia.\\n\\n13\\n00:00:53,0 --> 00:01:01,269\\nMost of the time, there are good pictures, captured by researchers, by scientists on crop species, \\n\\n14\\n00:01:01,754 --> 00:01:07,158\\nbut they put them in their institutional repositories, \\n\\n15\\n00:01:08,32 --> 00:01:15,81\\nand that we found it is better for us to put them in public repositories where everyone can see, everyone can use. \\n\\n16\\n00:01:16,56 --> 00:01:22,206\\nWe do not want the publications to be sitting on a shelf, \\n\\n17\\n00:01:23,49 --> 00:01:30,001\\nor only disseminate a few physical copies to our partners only.\\n\\n18\\n00:01:30,39 --> 00:01:33,743\\nWe want readers to access images. \\n\\n19\\n00:01:34,5 --> 00:01:41,13\\nI believe in the agriculture community, or in the researcher community \\n\\n20\\n00:01:41,133 --> 00:01:45,79\\nthey are not aware of the potential with working in Wikipedia. \\n\\n21\\n00:01:46,253 --> 00:01:49,77\\nWe want to make it the ultimate database of crops.\\n\\n22\\n00:01:53,379 --> 00:01:53,85\\nDirector: Victor Grigas \\n\\n23\\n00:01:54,314 --> 00:01:54,72\\nCodirector: David Grossman\\n\\n24\\n00:01:55,212 --> 00:01:55,66\\nProducer: Zack Exley\\n\\n25\\n00:01:56,175 --> 00:01:56,54\\nDirector of Photography: Pruitt Y. Allen\\n\\n26\\n00:01:57,006 --> 00:01:57,78\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck\\n\\n27\\n00:01:57,784 --> 00:01:58,10\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n\\n28\\n00:01:58,1 --> 00:01:58,58\\nMakeup: Melissa Klein\\n\\n29\\n00:01:58,585 --> 00:01:59,69\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n30\\n00:01:59,687 --> 00:02:00,03\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n31\\n00:02:00,032 --> 00:02:00,68\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n32\\n00:02:00,682 --> 00:02:01,16\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n33\\n00:02:01,155 --> 00:02:01,72\\nWriter: Desirina Boskovich\\n\\n34\\n00:02:01,723 --> 00:02:03,87\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n35\\n00:02:03,866 --> 00:02:04,67\\nEnglish Closed-Captioning: AlanKelly VerbatimIT\\n\\n36\\n00:02:05,145 --> 00:02:12,31\\n[on screen rolling credits for images and sound]\",\n", + " 'bytes': 3280,\n", + " 'sha1': 'g17c8h0ib3huknad78wvipz5zd8jh8z',\n", + " 'parent_id': 85193059,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 195944146,\n", + " 'timestamp': '2016-05-10T23:18:41Z',\n", + " 'user': {'id': 4507621, 'text': 'ASherman (WMF)'},\n", + " 'page': {'id': 23233235,\n", + " 'title': 'The Impact of Wikipedia - Jimmy Wales.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'broke up large captions into smaller individual captions. added a couple of words (nothing major)',\n", + " 'text': \"1\\n00:00:00,050 --> 00:00:03,590\\nI did not clearly have in mind it should be a charity,\\n\\n2\\n00:00:03,590 --> 00:00:06,890\\nit should be a for-profit; that was really secondary.\\n\\n3\\n00:00:07,800 --> 00:00:10,700\\nIt should be whatever it needed to be in order to be successful,\\n\\n4\\n00:00:10,806 --> 00:00:12,642\\nin order to be what I wanted it to be,\\n\\n5\\n00:00:12,642 --> 00:00:15,732\\nand at the time I didn't know, really.\\n\\n6\\n00:00:15,732 --> 00:00:17,277\\nWhat does that mean? How are we going to get there?\\n\\n7\\n00:00:17,500 --> 00:00:18,572\\nMy name is Jimmy Wales.\\n\\n8\\n00:00:18,572 --> 00:00:20,900\\nWe had a very strong vision of\\n\\n9\\n00:00:20,900 --> 00:00:23,900\\na good high quality encyclopedia,\\n\\n10\\n00:00:23,900 --> 00:00:25,400\\nthinking about well how do we sustain this?\\n\\n11\\n00:00:25,414 --> 00:00:27,047\\nHow do we make this work?\\n\\n12\\n00:00:28,309 --> 00:00:29,786\\nPutting it into a non-profit and asking for\\n\\n13\\n00:00:29,786 --> 00:00:32,496\\ndonations seemed like the reasonable way to go.\\n\\n14\\n00:00:32,496 --> 00:00:33,170\\nWhen people asked\\n\\n15\\n00:00:33,170 --> 00:00:36,940\\nwhy don't we have advertising in Wikipedia,\\n\\n16\\n00:00:36,940 --> 00:00:39,833\\nthere's a lot of very practical reasons,\\n\\n17\\n00:00:39,833 --> 00:00:44,413\\nbut one of the reasons is when you're at Wikipedia,\\n\\n18\\n00:00:44,413 --> 00:00:50,720\\nI want your experience to be it's a place\\nof quiet reflection, of learning, of thinking.\\n\\n19\\n00:00:51,100 --> 00:00:54,700\\nFrom the Wikimedia Foundation I don't take a salary,\\n\\n20\\n00:00:54,700 --> 00:00:57,550\\nand I also don't even take expenses.\\n\\n21\\n00:00:57,550 --> 00:00:58,690\\nI think it's very important that\\n\\n22\\n00:00:58,690 --> 00:01:00,808\\nI am able to say, quite clearly,\\n\\n23\\n00:01:00,808 --> 00:01:02,687\\nlook when I'm asking you for money,\\n\\n24\\n00:01:02,687 --> 00:01:05,687\\nI'm not asking you for money for myself.\\n\\n25\\n00:01:05,687 --> 00:01:08,581\\nI'm asking you for money for the Foundation,\\n\\n26\\n00:01:08,581 --> 00:01:09,681\\nwhich is the team who supports this\\n\\n27\\n00:01:09,681 --> 00:01:11,681\\namazing community that I'm a part of.\\n\\n28\\n00:01:11,681 --> 00:01:12,324\\nDirector: Victor Grigas\\n\\n29\\n00:01:12,324 --> 00:01:12,812\\nCodirector: David Grossman\\n\\n30\\n00:01:12,812 --> 00:01:13,195\\nProducer: Zack Exley\\n\\n31\\n00:01:13,195 --> 00:01:13,593\\nDirector of Photography: Pruitt Y. Allen\\n\\n32\\n00:01:13,593 --> 00:01:14,318\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck\\n\\n33\\n00:01:14,318 --> 00:01:14,848\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n34\\n00:01:14,848 --> 00:01:15,258\\nMakeup: Melissa Klein\\n\\n35\\n00:01:15,258 --> 00:01:16,286\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain,\\nCorey O'Brien, Frank O'Brien, Jacob Wilson\\n\\n36\\n00:01:16,286 --> 00:01:16,926\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n37\\n00:01:16,926 --> 00:01:17,661\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n38\\n00:01:17,661 --> 00:01:18,245\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n39\\n00:01:18,245 --> 00:01:18,912\\nWriter: Desirina Boskovich\\n\\n40\\n00:01:18,912 --> 00:01:20,056\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi\\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n41\\n00:01:20,056 --> 00:01:20,456\\nEnglish Closed-Captioning: AlanKelly VerbatimIT\",\n", + " 'bytes': 3308,\n", + " 'sha1': 'qmviqxopasff1m82rjive3hns91kcnw',\n", + " 'parent_id': 85193160,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85193247,\n", + " 'timestamp': '2012-12-17T15:21:06Z',\n", + " 'user': {'text': '82.28.223.192'},\n", + " 'page': {'id': 23233253,\n", + " 'title': 'The Impact of Wikipedia - Ganesh Paudel.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,639 --> 00:00:09,929\\nGetting knowledge, transferring knowledge to the new generation, to the people who don\\'t have it is an honor, so I love it. \\n\\n2\\n00:00:10,388 --> 00:00:13,417\\nI am Ganesh Paudel, I\\'m from Nepal. \\n\\n3\\n00:00:13,939 --> 00:00:23,288\\nThe most beautiful thing about Wikipedia is it is OpenSource and anybody can use and re-use the content and add-ons. \\n\\n4\\n00:00:23,467 --> 00:00:27,795\\nEverybody can develop the content in their own language, \\n\\n5\\n00:00:29,26 --> 00:00:35,179\\nso until now, Wikipedia is available in 285 languages of the world, \\n\\n6\\n00:00:35,655 --> 00:00:41,228\\nso it is the best way to give content in local languages. \\n\\n7\\n00:00:42,83 --> 00:00:46,175\\nMost people learn many things, culture, ethics,\\n\\n8\\n00:00:46,175 --> 00:00:48,607\\nfrom the family and from their ancestors, too, \\n\\n9\\n00:00:49,08 --> 00:00:54,729\\nand in school also, but the basic thing is the responsibility towards the society \\n\\n10\\n00:00:54,729 --> 00:00:59,061\\nso every people is responsible for their society. \\n\\n11\\n00:00:59,334 --> 00:01:08,997\\nFor small languages like mine, Wikipedia has become a boon to develop digital content in local languages, \\n\\n12\\n00:01:09,422 --> 00:01:13,522\\nSo there are many languages in my small country. \\n\\n13\\n00:01:13,603 --> 00:01:18,452\\nThere are more than 120 living languages, \\n\\n14\\n00:01:18,452 --> 00:01:22,130\\nso Wikipedia has become a good tool. \\n\\n15\\n00:01:22,13 --> 00:01:27,319\\nNow, we have only three languages in Wikipedia of our country, \\n\\n16\\n00:01:27,904 --> 00:01:32,076\\nbut there are nearly eight languages \"in the pipeline\". \\n\\n17\\n00:01:32,537 --> 00:01:39,652\\nThey are in incubation, and the community are interested to bring out those languages from the incubation, so -\\n\\n18\\n00:01:40,155 --> 00:01:42,70\\nLong live Wikipedia!\\n\\n19\\n00:01:42,698 --> 00:01:43,72\\nDirector: Victor Grigas\\n\\n20\\n00:01:43,716 --> 00:01:44,50\\nCodirector: David Grossman\\n\\n21\\n00:01:44,5 --> 00:01:45,21\\nProducer: Zack Exley\\n\\n22\\n00:01:45,211 --> 00:01:46,04\\nDirector of Photography: Pruitt Y. Allen\\n\\n23\\n00:01:46,039 --> 00:01:46,96\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck\\n\\n24\\n00:01:46,963 --> 00:01:47,93\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n25\\n00:01:47,926 --> 00:01:48,60\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n26\\n00:01:48,597 --> 00:01:49,95\\nInterviewers: Alma Shapa, Jonathan Curiel, Stephen Geer, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson, Dan McSwain\\n\\n27\\n00:01:49,95 --> 00:01:50,65\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n28\\n00:01:50,654 --> 00:01:51,61\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n29\\n00:01:51,607 --> 00:01:51,77\\nMakeup: Melissa Klein\\n\\n30\\n00:01:51,774 --> 00:01:52,14\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n31\\n00:01:52,049 --> 00:01:52,40\\nTitles: Vibha Bamba, Trevor Parscal\\n\\n32\\n00:01:52,095 --> 00:01:52,59\\nWriter: Desirina Boskovich\\n\\n33\\n00:01:52,591 --> 00:01:52,98\\nEnglish Closed Captions: AlanKelly VerbatimIT',\n", + " 'bytes': 3084,\n", + " 'sha1': 'j9p50cbq3urzqq1ze2vi91f0pakn0in',\n", + " 'parent_id': 85193217,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85201201,\n", + " 'timestamp': '2012-12-17T17:59:53Z',\n", + " 'user': {'id': 457, 'text': 'Bjarki S'},\n", + " 'page': {'id': 23235200,\n", + " 'title': 'Wikipedia video tutorial-2-Reliability-en.ogv.is.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,439 --> 00:00:03,759\\nHalló, ég er Tereza.\\n\\n2\\n00:00:03,759 --> 00:00:07,999\\nTakk fyrir að horfa á myndbandið okkar sem útskýrir hvernig hver sem er getur bætt við Wikipediu,\\n\\n3\\n00:00:07,999 --> 00:00:11,839\\nstærsta og besta frjálsa alfræðirit í heimi.\\n\\n4\\n00:00:11,839 --> 00:00:13,919\\nEin og þú veist kannski nú þegar,\\n\\n5\\n00:00:13,919 --> 00:00:16,599\\nþá getur hver sem er breytt hvaða grein sem er á Wikipediu.\\n\\n6\\n00:00:16,599 --> 00:00:18,639\\nÞað eina sem þú þarft að gera er að smella á „Breyta“,\\n\\n7\\n00:00:18,639 --> 00:00:20,599\\nbreyta textanum og smella á „Vista“.\\n\\n8\\n00:00:20,599 --> 00:00:23,359\\nEn þetta veitir þó engum tækifæri til þess að endurskrifa söguna.\\n\\n9\\n00:00:23,359 --> 00:00:27,919\\nÞvert á móti, ég vil fá að útskýra fyrir þér hvernig Wikipedia varðveitir áreiðanleika sinn\\n\\n10\\n00:00:27,919 --> 00:00:30,959\\nþrátt fyrir að hver sem er geti auðveldlega breytt henni.\\n\\n11\\n00:00:30,959 --> 00:00:34,519\\nEins og flest tölvuforrit, þá hefur hugbúnaðirnn að baki Wikipediu\\n\\n12\\n00:00:34,519 --> 00:00:37,079\\nýmis verkfæri sem fæstir lesendur vita af.\\n\\n13\\n00:00:37,079 --> 00:00:43,021\\nÉg ætla að segja ykkur frá tveimur þessara verkfæra sem eru sérstaklega hugsuð til þess að auka áreiðanleika Wikipediu,\\n\\n14\\n00:00:43,082 --> 00:00:45,828\\nÞað fyrra köllum við „nýlegar breytingar“.\\n\\n15\\n00:00:47,059 --> 00:00:52,901\\nÞú finnur hlekk í nýlegar breytingar í hliðarstikunni vinstra megin.\\n\\n16\\n00:00:52,901 --> 00:00:56,217\\nÞetta gefur þér lista yfir allar nýjustu breytingar \\n\\n17\\n00:00:56,217 --> 00:00:57,999\\nsem gerðar hafa verið á Wikipediu á þínu tungumáli.\\n\\n18\\n00:00:57,999 --> 00:01:00,639\\nLítum á efstu greinina á listanum.\\n\\n19\\n00:01:00,639 --> 00:01:04,799\\nEf ég smelli aftir á „nýlegar breytingar“, bara örfáum sekúndum síðar,\\n\\n20\\n00:01:04,799 --> 00:01:08,279\\nþá sjáum við að sama grein er komin hingað niður\\n\\n21\\n00:01:08,279 --> 00:01:14,07\\nog greinarnar fyrir ofan hana á listanum hafa annað hvort verið stofnaðar eða þeim breytt á síðustu 4 sekúndum.\\n\\n22\\n00:01:14,839 --> 00:01:20,168\\nÞetta er það sem ég kalla „púls Wikipediu“. Býsna magnað eða hvað?\\n\\n23\\n00:01:20,168 --> 00:01:22,839\\nFörum aftur í greinina.\\n\\n24\\n00:01:22,839 --> 00:01:28,399\\nÞegar þú smellir á breyting, þá sérðu hvaða breytingar hafa verið gerðar.\\n\\n25\\n00:01:28,399 --> 00:01:33,276\\nÞetta er samanburður á fyrri og seinni útgáfu greinarinnar hlið við hlið.\\n\\n26\\n00:01:33,999 --> 00:01:37,479\\nMeð þessum hætti verða allar breytingar augljóasar.\\n\\n27\\n00:01:37,479 --> 00:01:44,319\\nSamfélag notendanna vakir yfir þessum breytingum og leiðréttir þær vitleysur sem settar eru inn.\\n\\n28\\n00:01:44,319 --> 00:01:49,522\\nÞetta er ein af leiðunum sem við höfum til þess að vernda efni Wikipediu.\\n\\n29\\n00:01:49,522 --> 00:01:51,879\\nHitt verkfærið sem ég vildi segja ykkur frá\\n\\n30\\n00:01:51,879 --> 00:01:57,359\\ner listi yfir nýlegar breytingar sem er sniðinn að þér og við köllum „vaktlista“.\\n\\n31\\n00:01:57,359 --> 00:02:00,984\\nTil þess að geta notað vaktlistann verður þú að vera skráður notandi.\\n\\n32\\n00:02:00,984 --> 00:02:06,193\\nEngar áhyggjur! Það er fljótgert, einfalt og ókeypis!\\n\\n33\\n00:02:07,931 --> 00:02:12,279\\nÞú smellir bara á þennan hlekk og fylgir leiðbeiningunum.\\n\\n34\\n00:02:14,033 --> 00:02:16,639\\nEn hvernig bý ég til minn eiginn vaktlista?\\n\\n35\\n00:02:16,639 --> 00:02:21,519\\nÞað er best að búa til vaktlista sem snýra að þínum eigin áhugamálum.\\n\\n36\\n00:02:21,519 --> 00:02:25,559\\nTökum mig sem dæmi...\\n\\n37\\n00:02:25,744 --> 00:02:33,113\\nÉg er alltaf á varðbergi gagnvart nýjum síðum um hunda.\\n\\n38\\n00:02:33,113 --> 00:02:38,919\\nLabrador! Sjáið þetta andlit! Unaðslegt!\\n\\n39\\n00:02:38,919 --> 00:02:41,559\\nSmellum á þessa grein.\\n\\n40\\n00:02:41,559 --> 00:02:46,279\\nJá! Ég vil tvímælalaust fylgjast með því hvernig þessi grein þróast.\\n\\n41\\n00:02:46,279 --> 00:02:49,719\\nÞannig að ég smelli á „vakta“ (stjarnan í nýrri útgáfu vefsins)\\n\\n42\\n00:02:49,719 --> 00:02:59,239\\nog nú hefur þessari grein verið bætt á vaktlistann minn sem ég get skoðað hvenær sem ég vil með því að smella á „vaktlisti“.\\n\\n43\\n00:02:59,239 --> 00:03:02,999\\nNú munt þú alltaf sjá það þegar einhver breytir grein sem er á vaktlistanum þínum\\n\\n44\\n00:03:02,999 --> 00:03:07,199\\nog getur séð með einum smelli hver gerði breytinguna\\n\\n45\\n00:03:07,199 --> 00:03:12,239\\nog hverju var breytt.\\n\\n46\\n00:03:12,239 --> 00:03:16,279\\nOg vel að merkja, það er ekki bara ég sem er með þennan Labrador á vaktlistanum.\\n\\n47\\n00:03:16,279 --> 00:03:24,759\\nÉg er handviss um að þúsindir hundavina eru með sömu síðu á sínum vaktlistum.\\n\\n48\\n00:03:24,759 --> 00:03:31,079\\nÞetta eru aðeins tvö af fjölmörgum verkfærum sem notuð eru til þess að varðveita áreiðanleika Wikipediu.\\n\\n49\\n00:03:31,079 --> 00:03:35,359\\nEn besta leiðin til þess að tryggja gæði Wikipediu til frambúðar\\n\\n50\\n00:03:35,359 --> 00:03:40,639\\ner að fjölga notendum sem geta lagt fram sérfræðikunnáttu sína.\\n\\n51\\n00:03:40,639 --> 00:03:43,719\\nÞví fleiri notendur, þeim mun meiri gæði á efninu.\\n\\n52\\n00:03:43,719 --> 00:03:47,639\\nEndilega legðu þitt af mörkunum til þess að stækka þennan sameiginlega brunn mannlegrar þekkingar\\n\\n53\\n00:03:47,639 --> 00:03:51,079\\nog hjálpaðu okkar að stækka meira en nokkur hélt að væri hægt.\\n\\n54\\n00:03:51,079 --> 00:03:52,559\\nTakk fyrir að horfa.\\n\\n55\\n00:03:52,559 --> 0-1:0-1:0-1\\nBless og gangi þér vel!',\n", + " 'bytes': 5605,\n", + " 'sha1': '9yb18w8orlun26telftzhwqc4mnr6m5',\n", + " 'parent_id': 85201118,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85869030,\n", + " 'timestamp': '2012-12-28T11:00:10Z',\n", + " 'user': {'id': 22648, 'text': 'Koavf'},\n", + " 'page': {'id': 23236374,\n", + " 'title': 'The Impact of Wikipedia - Q Miceli.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'sp',\n", + " 'text': \"1\\n00:00:00,7 --> 00:00:03,955\\nIf everyone in the world could edit the Encyclopaedia Britannica,\\n\\n2\\n00:00:04,138 --> 00:00:05,338\\nthat would be Wikipedia.\\n\\n3\\n00:00:05,632 --> 00:00:07,093\\nIf you don't know what encyclopedia is, \\n\\n4\\n00:00:07,55 --> 00:00:12,019\\nit's a large collection of knowledge about pretty much anything.\\n\\n5\\n00:00:13,0 --> 00:00:16,173\\nMy name is Q Miceli. I write about baking.\\n\\n6\\n00:00:16,7 --> 00:00:19,2\\nSince I became vegan and gluten intolerant, \\n\\n7\\n00:00:19,219 --> 00:00:24,519\\nI've enjoyed taking normal traditional recipes with wheat and dairy and eggs \\n\\n8\\n00:00:24,642 --> 00:00:29,642\\nand turning them into vegan and gluten-free products of a similar nature because \\n\\n9\\n00:00:29,643 --> 00:00:33,193\\nI think that food really can connect people and open people up to \\n\\n10\\n00:00:33,219 --> 00:00:34,672\\nwhole new worlds of experience\\n\\n11\\n00:00:36,003 --> 00:00:39,279\\nbeing able to converse with my classmates from different countries about what they eat, \\n\\n12\\n00:00:39,711 --> 00:00:42,311\\nor to ask them about it and to find out if \\n\\n13\\n00:00:42,444 --> 00:00:46,585\\nthere are religious or ethical traditions informing their food choices; \\n\\n14\\n00:00:47,039 --> 00:00:49,626\\nthat's been really wonderful to learn. \\n\\n15\\n00:00:50,071 --> 00:00:52,746\\nRecently I wrote an article about Tahinopita, \\n\\n16\\n00:00:53,228 --> 00:00:58,074\\nwhich is a Greek Orthodox bread made during Lent,\\n\\n17\\n00:00:59,0 --> 00:01:03,645\\nbecause it's considered fasting since it has no animal products and no oil, \\n\\n18\\n00:01:04,623 --> 00:01:09,423\\nso I noticed that there were blogs in other web sites on the Internet\\n\\n19\\n00:01:09,621 --> 00:01:10,707\\nthat spoke about this bread, \\n\\n20\\n00:01:10,707 --> 00:01:12,899\\nbut there was no Wikipedia article about it, \\n\\n21\\n00:01:12,899 --> 00:01:16,153\\nand I thought since it was related not only to the Greek Orthodox Church \\n\\n22\\n00:01:16,153 --> 00:01:20,370\\nand the concept of fasting, and vegan cuisine, and dessert, \\n\\n23\\n00:01:20,797 --> 00:01:24,574\\nthat it should have a little Wikipedia article, so I started a Stub. \\n\\n24\\n00:01:25,0 --> 00:01:28,6\\nUsing Wikipedia has often helped me figure out the source of a new food.\\n\\n25\\n00:01:28,659 --> 00:01:31,138\\nI learned about Quinoa on Wikipedia, because --\\n\\n26\\n00:01:31,138 --> 00:01:35,081\\n since I'm gluten intolerant, and Quinoa is a gluten-free grain, or \\n\\n27\\n00:01:35,081 --> 00:01:39,102\\n-- it's actually from the Goosefoot plant, so it's a grass \\n\\n28\\n00:01:39,494 --> 00:01:40,66\\n-- I learned that on Wikipedia, \\n\\n29\\n00:01:40,664 --> 00:01:43,41\\njust sources to find scientific knowledge about what I'm eating, \\n\\n30\\n00:01:44,1 --> 00:01:46,27\\nand cultural knowledge about what I'm eating, \\n\\n31\\n00:01:46,75 --> 00:01:50,89\\nI used Wikipedia to learn that because not every cook book is going to be a science book as well.\\n\\n32\\n00:01:51,65 --> 00:01:56,33\\nI prefer the Wikipedia style of knowledge, unfiltered \\n\\n33\\n00:01:57,287 --> 00:02:00,60\\n- of being able to sort through, \\n\\n34\\n00:02:01,05 --> 00:02:04,00\\nof being able to look at an encyclopedia article to see\\n\\n35\\n00:02:04,017 --> 00:02:07,35\\nif there's an issue of bias, that somebody has probably flagged it,\\n\\n36\\n00:02:07,782 --> 00:02:10,25\\nand if not, now I can flag it, too, and say hey!\\n\\n37\\n00:02:10,246 --> 00:02:11,68\\nI think this is biased information \\n\\n38\\n00:02:12,123 --> 00:02:16,06\\nto have the discussion be in the open, on an article's Talk page, \\n\\n39\\n00:02:16,985 --> 00:02:18,58\\nto see the edits that are being made. \\n\\n40\\n00:02:18,778 --> 00:02:20,78\\nThat's really important to be able to see \\n\\n41\\n00:02:20,784 --> 00:02:24,59\\nhow knowledge is presented and the process behind it and \\n\\n42\\n00:02:24,586 --> 00:02:28,74\\nso if Wikipedia were a for-profit organization and \\n\\n43\\n00:02:28,745 --> 00:02:31,25\\nthere were larger interests controlling it, \\n\\n44\\n00:02:31,253 --> 00:02:34,27\\nand advertising on the sidebars, to me, \\n\\n45\\n00:02:34,269 --> 00:02:37,77\\nthat would take away some of the neutrality and I think \\n\\n46\\n00:02:37,956 --> 00:02:40,60\\nit would be harder to believe and uphold \\n\\n47\\n00:02:41,037 --> 00:02:44,68\\nthe neutrality standard in Wikipedia that way.\\n\\n48\\n00:02:44,869 --> 00:02:48,91\\nThe thing that has surprised me the most about my involvement with Wikipedia has been\\n\\n49\\n00:02:49,3 --> 00:02:53,32\\nthe sense of community and the fact that if one person wants to start something, \\n\\n50\\n00:02:53,778 --> 00:02:57,77\\nother people will jump on to it and say I can help you with this, \\n\\n51\\n00:02:58,256 --> 00:03:00,04\\nnot necessarily to prove something, \\n\\n52\\n00:03:00,035 --> 00:03:05,05\\nbut to selflessly improve something;\\n\\n53\\n00:03:06,057 --> 00:03:11,57\\nthat's been wonderful to find that spirit among the Wikipedia community.\",\n", + " 'bytes': 4723,\n", + " 'sha1': 'f5gmsp5b8konuigdzyaubmgghb5rw77',\n", + " 'parent_id': 85206633,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85210260,\n", + " 'timestamp': '2012-12-17T20:30:51Z',\n", + " 'user': {'id': 3717, 'text': 'VIGNERON'},\n", + " 'page': {'id': 23237037,\n", + " 'title': 'The Impact of Wikipedia - Andrea Zanni.webm.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'first try',\n", + " 'text': \"1\\n00:00:00,9 --> 00:00:04,686\\nWikipédia porte la sérendipité à un tout autre niveau.\\n\\n2\\n00:00:05,262 --> 00:00:11,442\\nVous allez simplement, vous allez au « N », et vous lisez l’histoire du black metal en Suède.\\n\\n3\\n00:00:12,861 --> 00:00:18,422\\nJe suis Andrea Zanni et je suis un bénévole de la Wikisource en italien.\\n\\n4\\n00:00:19,281 --> 00:00:27,627\\nWikisource est une bibliothèque numérique. Elle contient\\ndes livres anciens, des vieux livres, ceux dans le domaine public.\\n\\n5\\n00:00:28,065 --> 00:00:39,131\\net nous présentons ces livres pour qu'ils soient lus. Nous les numérisons.\\nNous les mettons sur Wikisource, puis nous les transcrivons.\\n\\n6\\n00:00:39,131 --> 00:00:45,922\\nNous essayons aussi de lier les livres entre eux, parce que\\nil y a la possibilité de relier les uns aux autres,\\n\\n7\\n00:00:46,426 --> 00:00:56,740\\nde lier un texte à un autre, et essayer de suivre\\nles citations et créer une sorte de bibliothèque numérique hyper-textuelle.\\n\\n8\\n00:00:56,74 --> 00:01:02,463\\nC’est que j’aime vraiment sur Wikisource : \\nla possibilité de créer une bibliothèque connectée intégrée\\n\\n9\\n00:01:02,463 --> 00:01:05,749\\nLa sérendipité est l’une des meilleures choses de la vie,\\n\\n10\\n00:01:05,749 --> 00:01:13,749\\net c’est juste… la sérendipité, c'est quand vous tomber\\nsur quelque chose d’intéressant, alors que vous cherchez quelque chose d’autre.\\n\\n11\\n00:01:13,75 --> 00:01:17,777\\nCela arrive tout le temps quand vous allez dans une librairie.\\n\\n12\\n00:01:18,239 --> 00:01:22,944\\nCela arrive tout le temps quand vous allez dans une librairie avec des étagères libres.\\n\\n13\\n00:01:22,944 --> 00:01:29,741\\nComme tout le monde, je cherchais un mot sur\\nGoogle. Je suis tombé sur Wikipédia,\\n\\n14\\n00:01:29,741 --> 00:01:34,172\\net puis j’ai commencé. Je me suis dit OK, ce n’est pas possible,\\n\\n15\\n00:01:34,172 --> 00:01:39,779\\ncomme, cela ne peut pas être ouvert à tous.\\nCela ne peut être ainsi, éditable par tous,\\n\\n16\\n00:01:39,779 --> 00:01:41,21\\net pourtant c’était comme ça\\n\\n17\\n00:01:41,214 --> 00:01:47,39\\net puis j'ai découvert Wikiquotes, c’était un\\nprojet que j’ai vraiment apprécié les premières fois.\\n\\n18\\n00:01:47,386 --> 00:01:51,24\\nAlors j’ai commencé à travailler là-bas, et puis j’ai découvert Wikisource,\\net je me suis dit : OK, c’est ma place\\n\\n19\\n00:01:51,72 --> 00:01:59,58\\nEt vous savez, il y avait les livres, et en même temps il y avait\\nune partie geek avec des ordinateurs et l’informatique.\\n\\n20\\n00:01:59,576 --> 00:02:01,64\\net OK, je suis chez moi.\\n\\n21\\n00:02:01,641 --> 00:02:06,64\\nWikipédia, oui, c’est probablement la meilleure chose sérendipitienne, actuellement.\\n\\n22\\n00:02:10,11 --> 00:02:10,55\\nRéalisateur : Victor Grigas\\n\\n23\\n00:02:10,546 --> 00:02:11,19\\nCodirecteur : David Grossman\\n\\n24\\n00:02:11,189 --> 00:02:11,98\\nProducteur : Zack Exley\\n\\n25\\n00:02:11,977 --> 00:02:12,48\\nDirecteur de la photographie : Pruitt Y. Allen\\n\\n26\\n00:02:12,478 --> 00:02:12,97\\nPhotographes Vidéo : Jack Harris, Adam Parr, Matthew Storck \\n\\n27\\n00:02:12,969 --> 00:02:13,44\\nPhotographes Portrait : Adam Novak, Karen Sayre\\n\\n28\\n00:02:13,44 --> 00:02:13,88\\nMaquillage : Melissa Klein\\n\\n29\\n00:02:13,882 --> 00:02:14,66\\nIntervieweurs : Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson\\n\\n30\\n00:02:14,662 --> 00:02:15,30\\nCoordonnateurs de production : Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n31\\n00:02:15,305 --> 00:02:15,74\\nAssistants de production : Toby Hessenauer, Kristin Rigsby\\n\\n32\\n00:02:15,74 --> 00:02:16,08\\nÉditeurs video : Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n33\\n00:02:16,082 --> 00:02:16,33\\nScénariste : Desirina Boskovich\\n\\n34\\n00:02:16,326 --> 00:02:16,53\\nServices de transcription : Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n35\\n00:02:16,528 --> 00:02:16,73\\nSous-titrage anglais : AlanKelly VerbatimIT\",\n", + " 'bytes': 3940,\n", + " 'sha1': 'f6xu9vgsma4wpenxqwld9odrlbylkdb',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85225745,\n", + " 'timestamp': '2012-12-17T23:22:34Z',\n", + " 'user': {'text': '76.127.16.19'},\n", + " 'page': {'id': 23239929,\n", + " 'title': 'Proteus 3D model.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:1,000 --> 00:00:5,400\\nThis video shows the rotation of the oddly-shaped Proteus, the second largest Neptunian moon, and the largest ''comfirmed'' irregularly shaped object in the solar system.\\n2\\n00:00:6,600 --> 00:00:10,800\\nNote the highly cratered surface, and irregular shape.\",\n", + " 'bytes': 286,\n", + " 'sha1': 'sp50pd5rmudb1puq0zko8nmur50n5qz',\n", + " 'parent_id': 85225585,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85259429,\n", + " 'timestamp': '2012-12-18T15:56:19Z',\n", + " 'user': {'id': 2450901, 'text': 'AlanKellyVerbatimIT'},\n", + " 'page': {'id': 23246504,\n", + " 'title': 'The Impact of Wikipedia - Mike Cline.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,3 --> 00:00:04,653 It really gets you out into nature, when you're wading through a river, 2 00:00:05,037 --> 00:00:07,291 and you're knee-deep in ...'\",\n", + " 'text': \"1\\n00:00:00,3 --> 00:00:04,653\\nIt really gets you out into nature, when you're wading through a river, \\n\\n2\\n00:00:05,037 --> 00:00:07,291\\nand you're knee-deep in the water, and you're catching fish, \\n\\n3\\n00:00:08,3 --> 00:00:11,536\\nyou're close, and it just becomes - it's an escape,\\n\\n4\\n00:00:12,25 --> 00:00:17,55\\nbut it's a lot of fun, it's great exercise, and combine that with Wikipedia, \\n\\n5\\n00:00:17,579 --> 00:00:20,890\\nI like to write about the history on Wikipedia. \\n\\n\\n6\\n00:00:21,561 --> 00:00:22,600\\nMy name is Mike Cline. \\n\\n7\\n00:00:22,9 --> 00:00:27,614\\nWhen I first started Wikipedia, I started editing on some articles related to \\n\\n8\\n00:00:27,614 --> 00:00:30,593\\nthe business side, which is strategic planning, and consulting, \\n\\n9\\n00:00:31,633 --> 00:00:36,512\\nand quickly learned the conflict of interest rules and other things, \\n\\n10\\n00:00:36,512 --> 00:00:38,886\\nand ran afoul of some of the community norms. \\n\\n11\\n00:00:39,558 --> 00:00:43,758\\nOnce I got over that hump of just -- OK, I understand, \\n\\n12\\n00:00:43,798 --> 00:00:48,288\\nI'm part of the community now, then it became very easy to go into those areas, \\n\\n13\\n00:00:48,767 --> 00:00:52,284\\nlike fly fishing and Montana history and Yellowstone, and things like that, \\n\\n14\\n00:00:52,724 --> 00:00:54,703\\nthat I was very familiar with, knew a lot about,\\n\\n15\\n00:00:55,2 --> 00:01:00,6\\nand starting when I was a kid, I started buying books about fly-fishing and fly fishermen, \\n\\n16\\n00:01:00,603 --> 00:01:05,253\\nand I have a library of about 600 books of fly fishing literature. \\n\\n17\\n00:01:05,65 --> 00:01:08,544\\nI spend 25 to 30 days a year in Yellowstone and it's just -\\n\\n18\\n00:01:09,337 --> 00:01:12,328\\nwhen you write about it, you're really writing about \\n\\n19\\n00:01:12,983 --> 00:01:17,502\\npersonal experiences in places that you know intimately. \\n\\n20\\n00:01:17,9 --> 00:01:24,2\\nI take the same path that the Blandford Peterson Expedition took across \\n\\n21\\n00:01:24,26 --> 00:01:28,732\\nthe Gardner River and into Yellowstone for the first time in 1870 and \\n\\n22\\n00:01:28,915 --> 00:01:32,865\\neven today you can stand there and look one way to the North, \\n\\n23\\n00:01:33,297 --> 00:01:37,025\\nand you see Gardener and Electric Mountain, which wasn't named in 1870 \\n\\n24\\n00:01:37,445 --> 00:01:39,945\\nand you stand and look South to Rescue Creek and it looks \\n\\n25\\n00:01:40,044 --> 00:01:42,43\\nexactly the same as it did in 1870, \\n\\n26\\n00:01:43,0 --> 00:01:46,22\\nand you've read about that, you've read about those guys walking through there.\\n\\n27\\n00:01:45,96 --> 00:01:47,27\\nI was a little off-track but \\n\\n28\\n00:01:47,64 --> 00:01:50,55\\nif you look at the economics of Wikipedia \\n\\n29\\n00:01:51,5 --> 00:01:54,28\\nand you look at the balance sheet and the income statement standpoint,\\n\\n30\\n00:01:54,67 --> 00:01:56,40\\nthe income is the volunteer time. \\n\\n31\\n00:01:57,5 --> 00:02:01,07\\nFor every hour in, there's an hour spent, so there's no profit in Wikipedia.\\n\\n32\\n00:02:01,725 --> 00:02:05,00\\nThe equity, if you look at a balance sheet, it's the content.\\n\\n33\\n00:02:05,479 --> 00:02:08,92\\nIt's that nearly four million articles right now. \\n\\n34\\n00:02:09,9 --> 00:02:14,18\\nSo, any waste of income, waste of volunteer time - right,\\n\\n35\\n00:02:14,954 --> 00:02:18,62\\nin building the equity, those are the things we need to improve on,\\n\\n36\\n00:02:18,626 --> 00:02:21,67\\nto use that volunteer time wisely, \\n\\n37\\n00:02:21,668 --> 00:02:26,07\\nto build that equity line on the balance sheet which is the content. \\n\\n38\\n00:02:26,544 --> 00:02:30,39\\nThis is a unique way to volunteer 24-7, so that's just on its own. \\n\\n39\\n00:02:31,143 --> 00:02:34,38\\nIt's a unique way to volunteer, but it's also \\n\\n40\\n00:02:34,38 --> 00:02:39,91\\na great way to learn how to read, write and solve problems -- collaborate.\\n\\n41\\n00:02:40,411 --> 00:02:41,28\\nDirector: Victor Grigas \\n\\n42\\n00:02:41,282 --> 00:02:41,87\\nCodirector: David Grossman \\n\\n43\\n00:02:41,871 --> 00:02:42,37\\nProducer: Zack Exley\\n\\n44\\n00:02:42,375 --> 00:02:43,00\\nDirector of Photography: Pruitt Y. Allen \\n\\n45\\n00:02:43,002 --> 00:02:43,63\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck\\n\\n46\\n00:02:43,633 --> 00:02:44,36\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n47\\n00:02:44,358 --> 00:02:45,18\\nMakeup: Melissa Klein\\n\\n48\\n00:02:45,185 --> 00:02:46,35\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n49\\n00:02:46,347 --> 00:02:47,33\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n50\\n00:02:47,332 --> 00:02:47,94\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n51\\n00:02:47,936 --> 00:02:48,52\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n52\\n00:02:48,516 --> 00:02:48,99\\nWriter: Desirina Boskovich\\n\\n53\\n00:02:48,99 --> 00:02:50,67\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n54\\n00:02:50,67 --> 00:02:51,24\\nEnglish Closed-Captioning: AlanKelly VerbatimIT\\n\\n55\\n00:02:51,239 --> 00:02:53,57\\n[images - rolling on screen credits]\",\n", + " 'bytes': 5054,\n", + " 'sha1': 'm1xaio07fh3tke7gfgqfg0armty01ky',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85264872,\n", + " 'timestamp': '2012-12-18T17:32:00Z',\n", + " 'user': {'id': 2450901, 'text': 'AlanKellyVerbatimIT'},\n", + " 'page': {'id': 23247579,\n", + " 'title': 'The Impact of Wikipedia - David Shankbone.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,2 --> 00:00:03,2 It sort of is how I approached photography in the beginning 2 00:00:03,251 --> 00:00:05,194 which was as a Wikipedia Editor. 3 0...'\",\n", + " 'text': '1\\n00:00:00,2 --> 00:00:03,2\\nIt sort of is how I approached photography in the beginning \\n\\n2\\n00:00:03,251 --> 00:00:05,194\\nwhich was as a Wikipedia Editor. \\n\\n3\\n00:00:05,547 --> 00:00:10,647\\nAnd we needed photographs and it didn\\'t necessarily matter to me\\n\\n4\\n00:00:10,674 --> 00:00:13,359\\nthe quality, because I wasn\\'t approaching it as a photographer. \\n\\n5\\n00:00:13,943 --> 00:00:17,087\\nI was approaching it as someone who needed media on the articles. \\n\\n6\\n00:00:17,588 --> 00:00:19,984\\nMy name is David Shankbone.\\n\\n7\\n00:00:19,984 --> 00:00:25,484\\nI was incredibly broke from law school, I mean, I was months behind on my rent -- all this stuff, \\n\\n8\\n00:00:25,566 --> 00:00:30,237\\nand I was just laying around my apartment, \"like a bored house cat.\"\\n\\n9\\n00:00:30,89 --> 00:00:34,906\\nIn 2006, there were virtually no photographs on Wikipedia articles. \\n\\n10\\n00:00:35,325 --> 00:00:40,914\\nYou\\'ll be hard-pressed to find an upload date that pre-dates 2006.\\n\\n11\\n00:00:41,753 --> 00:00:48,019\\nMy sister had purchased a camera for my birthday in 2006, \\n\\n12\\n00:00:48,52 --> 00:00:53,14\\nand I decided to do something with this camera, \\n\\n13\\n00:00:53,505 --> 00:00:57,409\\nso I started showing up at these events that I had access to that didn\\'t cost me money.. \\n\\n14\\n00:00:58,1 --> 00:01:01,6\\nThe very first time I bought a DSLR was the morning of\\n\\n15\\n00:01:01,676 --> 00:01:04,514\\nthe very first day of the 2007 Tribeca Film Festival, \\n\\n16\\n00:01:05,286 --> 00:01:09,658\\nand I had no idea how to use it, so it was \"baptism by fire,\" \\n\\n17\\n00:01:10,312 --> 00:01:13,712\\nand the photographs were terrible. They are absolutely terrible.\\n\\n18\\n00:01:13,741 --> 00:01:16,041\\nOver the years, I started learning things. \\n\\n19\\n00:01:16,068 --> 00:01:17,498\\nI started talking to the professionals. \\n\\n20\\n00:01:17,935 --> 00:01:21,576\\nI started looking at their work - the people that I was next to,\\n\\n21\\n00:01:22,328 --> 00:01:27,266\\nphotographing with them. I would look at what they produced versus what I produced.\\n\\n22\\n00:01:27,828 --> 00:01:30,710\\nI\\'ve always owned equipment that professional photographers \\n\\n23\\n00:01:31,2 --> 00:01:34,548\\nthat I\\'m shooting next to - they don\\'t take me seriously, \\n\\n24\\n00:01:35,071 --> 00:01:37,294\\nbut I feel like over the years I really improved, \\n\\n25\\n00:01:37,716 --> 00:01:40,13\\nthat I started getting really good access. \\n\\n26\\n00:01:40,598 --> 00:01:42,47\\nI\\'m proud of the work that I put out now. \\n\\n27\\n00:01:43,5 --> 00:01:47,78\\nNobody who is going to pay in the first place is going to pay for my work. \\n\\n28\\n00:01:48,2 --> 00:01:51,12\\nIt\\'s red carpet stuff. It\\'s not art photography.\\n\\n29\\n00:01:51,738 --> 00:01:52,80\\nIt wasn\\'t meant to be. \\n\\n30\\n00:01:52,804 --> 00:01:55,81\\nIt was always meant to be candid, because it was realistic.\\n\\n31\\n00:01:55,813 --> 00:01:59,51\\nI wanted them exactly how they look, you know, people are interesting.\\n\\n32\\n00:01:59,513 --> 00:02:02,60\\nPeople come from so many different backgrounds and \\n\\n33\\n00:02:02,602 --> 00:02:07,74\\ncapturing them in a moment is something that really fascinates me.\\n\\n34\\n00:02:08,355 --> 00:02:09,43\\nDirector: Victor Grigas \\n\\n35\\n00:02:09,428 --> 00:02:10,45\\nCodirector: David Grossman\\n\\n36\\n00:02:10,449 --> 00:02:11,47\\nProducer: Zack Exley\\n\\n37\\n00:02:11,467 --> 00:02:12,65\\nDirector of Photography: Pruitt Y. Allen\\n\\n38\\n00:02:12,652 --> 00:02:13,72\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck\\n\\n39\\n00:02:13,716 --> 00:02:14,89\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n40\\n00:02:14,888 --> 00:02:16,06\\nMakeup: Melissa Klein\\n\\n41\\n00:02:16,06 --> 00:02:17,68\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson \\n\\n42\\n00:02:17,682 --> 00:02:18,83\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n43\\n00:02:18,826 --> 00:02:20,12\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n44\\n00:02:20,119 --> 00:02:21,34\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n45\\n00:02:21,34 --> 00:02:22,62\\nWriter: Desirina Boskovich\\n\\n46\\n00:02:22,621 --> 00:02:24,50\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n47\\n00:02:24,503 --> 00:02:26,02\\nEnglish Closed-Captioning: AlanKelly VerbatimIT\\n\\n48\\n00:02:26,978 --> 00:02:28,19\\n[images credits rolling on screen]\\n\\n49\\n00:02:29,218 --> 00:02:31,61\\n[Creative Commons credits - rolling on screen]',\n", + " 'bytes': 4421,\n", + " 'sha1': 'hg3k6lym9w6pc0c215ot5jgomyp7zrm',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85307407,\n", + " 'timestamp': '2012-12-19T15:37:51Z',\n", + " 'user': {'text': '184.160.180.169'},\n", + " 'page': {'id': 23257194,\n", + " 'title': 'WEB Clip.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:02,2 --> 00:00:05,95 Almost everyone comes to the conclusion that whatever their time is, 2 00:00:05,966 --> 00:00:07,666 is a critical time in human ...'\",\n", + " 'text': \"1\\n00:00:02,2 --> 00:00:05,95\\nAlmost everyone comes to the conclusion that whatever their time is, \\n\\n2\\n00:00:05,966 --> 00:00:07,666\\nis a critical time in human history, \\n\\n3\\n00:00:07,708 --> 00:00:10,206\\nso I'm not sure that I would buy an absolute argument, \\n\\n4\\n00:00:11,245 --> 00:00:15,132\\nbut I think it's fair to say that we're at a tipping point in terms of \\n\\n5\\n00:00:15,132 --> 00:00:18,590\\npeople's access to computer based information. \\n\\n6\\n00:00:18,9 --> 00:00:22,6\\nFor the first time, people are going to be coming together \\n\\n7\\n00:00:22,651 --> 00:00:24,675\\nfrom every corner of the world, and be able \\n\\n8\\n00:00:24,675 --> 00:00:26,675\\nto engage in direct conversation with each other.\\n\\n9\\n00:00:28,903 --> 00:00:31,174\\n[birds chirping] ♫\\n\\n10\\n00:00:34,576 --> 00:00:43,225\\n[Lidia] [sings]\\n\\n11\\n00:00:43,225 --> 00:00:45,148\\nHere, life is beautiful.\\n\\n12\\n00:00:45,979 --> 00:00:49,049\\nIt's beautiful because there are trees…\\n\\n13\\n00:00:49,049 --> 00:00:52,675\\nand the trees protect you from the sun.\\n\\n14\\n00:00:53,338 --> 00:00:54,751\\nThere's also a lot of bugs.\\n\\n15\\n00:00:54,751 --> 00:00:57,551\\nMore than the bugs, I get bored.\\n\\n16\\n00:00:58,193 --> 00:01:02,476\\nI want to learn more about the things that I don't know.\\n\\n17\\n00:01:16,461 --> 00:01:21,954\\nWhen we first used the laptops, we didn't know what they were.\\n\\n18\\n00:01:21,954 --> 00:01:24,387\\nAnd the way we learned was…\\n\\n19\\n00:01:24,387 --> 00:01:26,887\\nwhen one classmate learned how to do something… \\n\\n20\\n00:01:26,887 --> 00:01:29,726\\nthey would teach another classmate.\\n\\n21\\n00:01:29,962 --> 00:01:33,136\\nAnd that classmate would teach another classmate…\\n\\n22\\n00:01:33,136 --> 00:01:34,877\\nand like that we all learned.\\n\\n23\\n00:01:38,6 --> 00:01:41,48\\nWhat interests me most are legends…\\n\\n24\\n00:01:42,348 --> 00:01:44,37\\nalso the land.\\n\\n25\\n00:01:45,098 --> 00:01:49,69\\nAlso on the computers you can go on Wikipedia and search.\\n\\n26\\n00:01:49,693 --> 00:01:53,41\\nWikipedia is where there is all of the information.\\n\\n27\\n00:01:53,412 --> 00:01:56,79\\nWhatever you want to know about, you can look for.\\n\\n28\\n00:01:58,276 --> 00:02:03,38\\nAnd you can find things that you never…\\n\\n29\\n00:02:03,388 --> 00:02:06,61\\nthings you never knew, you can find on Wikipedia.\\n\\n30\\n00:02:08,536 --> 00:02:10,26\\n[Victor, Lidia's father]\\n\\n31\\n00:02:10,257 --> 00:02:12,68\\nI was born in Ayacucho.\\n\\n32\\n00:02:12,684 --> 00:02:16,68\\nI didn'the study because of my parents, they didn't support me.\\n\\n33\\n00:02:16,727 --> 00:02:20,31\\nThe laptops – my daughter, pretty much already knows how to use it.\\n\\n34\\n00:02:20,781 --> 00:02:24,04\\nShe teaches me the histories of different countries…\\n\\n35\\n00:02:24,496 --> 00:02:29,49\\nthe United States, Brazil, China.\\n\\n36\\n00:02:30,146 --> 00:02:33,76\\nI want her to have a profession…\\n\\n37\\n00:02:34,561 --> 00:02:37,93\\nto have a better education than me.\\n\\n38\\n00:02:37,931 --> 00:02:43,56\\n♫\\n\\n39\\n00:02:48,474 --> 00:02:50,21\\n[Michael]\\n\\n40\\n00:02:50,21 --> 00:02:53,32\\nI am from New York City.\\n\\n41\\n00:02:54,186 --> 00:02:56,70\\nThis is a city that's very far from here.\\n\\n42\\n00:02:57,381 --> 00:02:59,87\\nI want to introduce all of you to my city.\\n\\n43\\n00:03:03,21 --> 00:03:07,75\\nNow, I want to know more information about your village…\\n\\n44\\n00:03:07,753 --> 00:03:09,38\\nPalestina, Peru.\\n\\n45\\n00:03:09,8 --> 00:03:10,95\\nMichael, there isn't anything.\\n\\n46\\n00:03:11,127 --> 00:03:12,50\\nThere isn't anything?\\n\\n47\\n00:03:12,498 --> 00:03:16,20\\nIn that case, what we need to do today…\\n\\n48\\n00:03:17,092 --> 00:03:20,82\\nis we need to write a page for Palestina, Peru. \\n\\n49\\n00:03:20,824 --> 00:03:22,47\\nWhen did we arrive here?\\n\\n50\\n00:03:22,47 --> 00:03:26,23\\nIn 1989.\\n\\n51\\n00:03:27,101 --> 00:03:31,60\\nI think it's really exciting to think about having amazing new cultural influences on ideas,\\n\\n52\\n00:03:31,685 --> 00:03:34,12\\nflowing all around the world from different cultures.\\n\\n53\\n00:03:34,923 --> 00:03:37,72\\nSo I think we've really barely scratched the surface of\\n\\n54\\n00:03:37,705 --> 00:03:40,30\\nwhat is possible through collaboration.\\n\\n55\\n00:03:40,325 --> 00:03:44,14\\nIf you think about it, doing an encyclopedia is one of the easiest things.\\n\\n56\\n00:03:44,876 --> 00:03:47,10\\nThis part here is what I did.\\n\\n57\\n00:03:48,018 --> 00:03:49,64\\nAhh, the pictures we took!\\n\\n58\\n00:03:50,713 --> 00:03:54,64\\nPalestina, Peru is a village located in the region of Purus…\\n\\n59\\n00:03:54,642 --> 00:03:57,10\\nin the department of Ucayali…\\n\\n60\\n00:03:57,105 --> 00:03:58,46\\nin Peru.\\n\\n61\\n00:03:59,412 --> 00:04:03,31\\nI see collaboration, especially computer mediated collaboration,\\n\\n62\\n00:04:03,408 --> 00:04:08,35\\nas an extremely enabling tool for the population of the world,\\n\\n63\\n00:04:08,35 --> 00:04:14,12\\nand I hope what it will do is uncover voices and ideas that might be invisible otherwise.\\n\\n64\\n00:04:14,566 --> 00:04:19,95\\nThe interesting thing is that as we get more and more of the population up on the Internet,\\n\\n65\\n00:04:20,908 --> 00:04:23,78\\nthe avenues for interaction will become much richer, \\n\\n66\\n00:04:24,758 --> 00:04:30,25\\nand here, I am not capable of predicting what the outcome will be \\n\\n67\\n00:04:30,256 --> 00:04:35,36\\nwhen six billion people are online sharing their knowledge with each other.\\n\\n68\\n00:04:35,362 --> 00:04:47,39\\n♫\\n\\n69\\n00:05:13,0 --> 00:05:13,44\\n[English closed-captions by AlanKelly VerbatimIT]\",\n", + " 'bytes': 5301,\n", + " 'sha1': 'k4ienhtucyi640db6s686y0ukyrbxso',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314261,\n", + " 'timestamp': '2012-12-19T18:19:07Z',\n", + " 'user': {'text': '82.28.223.192'},\n", + " 'page': {'id': 23259140,\n", + " 'title': 'The Impact of Wikipedia Adrianne Wadewitz.webm.da.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,650 --> 00:00:05,577 Et semester havde jeg en studerende, som skrev en rapport om bogen Frankenstein, 2 00:00:05,900 --> 00:00:10,478 og jeg bidrog...'\",\n", + " 'text': '1\\n00:00:00,650 --> 00:00:05,577\\nEt semester havde jeg en studerende,\\nsom skrev en rapport om bogen Frankenstein, \\n\\n2\\n00:00:05,900 --> 00:00:10,478\\nog jeg bidrog til artiklen om Mary\\nShelley og artiklen om Frankenstein.\\n\\n3\\n00:00:10,986 --> 00:00:16,398\\nOg store dele af rapporten blev afskrevet fra\\nartiklen, jeg skrev om Mary Shelley.\\n\\n4\\n00:00:17,300 --> 00:00:22,792\\nSå jeg skrev i marginen: \"Jeg ved, at dette er \\nafskrevet fra Wikipedia, (hvisker) fordi jeg skrev det på Wikipedia.\" \\n\\n5\\n00:00:23,200 --> 00:00:25,000\\nMit navn er Adrianne Wadewitz.\\n\\n6\\n00:00:25,500 --> 00:00:28,721\\nDa jeg var et lille barn, omkring syv eller otte år, \\n\\n7\\n00:00:28,721 --> 00:00:32,759\\nbegyndte jeg at læse store, lange bøger fra det nittende århundrede,\\nog jeg blev forgabt i dem.\\n\\n8\\n00:00:32,759 --> 00:00:36,062\\nJeg skrev min afhandling om britisk børnelitteratur fra det attende århundrede \\n\\n9\\n00:00:36,062 --> 00:00:41,416\\nog jeg ville dele det, som jeg havde\\nmuligheden for at lære om, med verden.\\n\\n10\\n00:00:41,750 --> 00:00:46,830\\nNår nogen tager ind for at se en film som\\nBecoming Jane, som er en film om Jane Austen,\\n\\n11\\n00:00:46,831 --> 00:00:48,596\\ndu ved -- jeg ville lære mere om Jane Austen, \\n\\n12\\n00:00:48,596 --> 00:00:51,096\\nog så skrev de det ind i Google,\\nog de fik Wikipedia-artiklen, \\n\\n13\\n00:00:51,232 --> 00:00:54,473\\nat de faktisk allerede ved, hvad der faktisk skete med Jane Austens liv, modsat \\n\\n14\\n00:00:54,473 --> 00:00:58,926\\ndenne historiedannelse, som er med i filmen, fordi filmen selv var fuldstændigt opdigtet\\n\\n15\\n00:00:58,926 --> 00:01:01,900\\nEn grund til, at jeg forsøger at rekruttere professorer \\n\\n16\\n00:01:01,900 --> 00:01:07,626\\nat få dem til at sætte de studerende i gang med at skrive virkelige artikler i klasseværelset, er \\n\\n17\\n00:01:07,626 --> 00:01:11,148\\nat vi vil vise de studerende, hvordan man kan bruge wikipedia produktivt, \\n\\n18\\n00:01:11,542 --> 00:01:15,042\\nså én af de ting, jeg gjorde, var at udvikle en redigeringsopgave til wikipedia, \\n\\n19\\n00:01:15,653 --> 00:01:22,253\\nsådan at man ikke skriver essays til mig, læreren, og jeg var den eneste person, der kom til at se dem,\\n\\n20\\n00:01:22,312 --> 00:01:27,105\\n[men] hele verden ville komme til at se, hvad man skrev, og det havde en betydning, hvad man skrev, og hvordan man skrev det, \\n\\n21\\n00:01:27,800 --> 00:01:30,368\\nfor millioner af mennesker ville komme til at se, hvad man skrev. \\n\\n22\\n00:01:30,777 --> 00:01:35,977\\nSå når jeg sætter studerende til at forfatte en artikel eller at føje materiale til en artikel, \\n\\n23\\n00:01:35,981 --> 00:01:41,500\\ntvinger jeg dem til at tænke over, hvad det betyder at sammensætte en artikel ud fra en blanding af kilder \\n\\n24\\n00:01:41,500 --> 00:01:46,560\\nog hvilken type kilder, der bliver brugt, samt hvad det medfører for vores forståelse af det emne?\\n\\n25\\n00:01:46,558 --> 00:01:50,140\\nHvordan viden bliver skabt på netop dette område?\\n\\n26\\n00:01:50,550 --> 00:01:55,000\\nJeg har mødt nogle meget vidende amatører på wikipedia; det er [netop], hvad der er det fine:\\n\\n27\\n00:01:55,000 --> 00:02:00,820\\nat folk, som dyrker en hobby, som holder af et bestemt emne, at de så begynder at tilføje viden,\\n\\n28\\n00:02:01,342 --> 00:02:03,930\\nog det er det, som gør wikipedia så stort; \\n\\n29\\n00:02:03,943 --> 00:02:09,560\\ndet samler både professionelle og amatører, som holder af et bestemt emne.\\n\\n30\\n00:02:10,443 --> 00:02:12,440\\n[code:] <ccsla slug>\\n\\n31\\n00:02:11,532 --> 00:02:12,340\\nInstruktør: Zack Exley\\nFotografisk instruktør: Pruitt Y. Allen \\n\\n32\\n00:02:12,343 --> 00:02:12,850\\nProducer: Zack Exley\\nDirector of Photography: Pruitt Y. Allen \\n\\n33\\n00:02:12,847 --> 00:02:13,440\\nVideofotografer: Jack Harris, Adam Parr, Matthew Storck\\n\\n34\\n00:02:13,443 --> 00:02:13,950\\nPortrætfotografer: Adam Novak, Karen Sayre\\n\\n35\\n00:02:13,946 --> 00:02:14,470\\nMakeup: Melissa Klein\\n\\n36\\n00:02:14,473 --> 00:02:15,550\\nInterviewere: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson \\n\\n37\\n00:02:15,550 --> 00:02:16,220\\nProduktionskoordinatorer: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n38\\n00:02:16,220 --> 00:02:16,700\\nProduktionsassistenter: Toby Hessenauer, Kristin Rigsby\\n\\n39\\n00:02:16,704 --> 00:02:17,350\\nVideoredaktører: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n40\\n00:02:17,353 --> 00:02:17,770\\nScript: Desirina Boskovich\\n\\n41\\n00:02:17,773 --> 00:02:18,520\\nTransskriptionstjenester: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling \\n\\n42\\n00:02:18,519 --> 00:02:19,000\\nEngelske, faste overskrifter: AlanKelly VerbatimIT',\n", + " 'bytes': 4619,\n", + " 'sha1': 'kgp3ruagsdvnjo48kgj3vfk8979ufhp',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314325,\n", + " 'timestamp': '2012-12-19T18:20:35Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259158,\n", + " 'title': 'The Impact of Wikipedia Adrianne Wadewitz.webm.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:00,650 --> 00:00:05,577 In einem Semester hatte ich einen Studenten, der eine Arbeit über das Buch \"Frankenstein\" schrieb 2 00:00:05,900 --> 00:00:10...\\'',\n", + " 'text': '1\\n00:00:00,650 --> 00:00:05,577\\nIn einem Semester hatte ich einen Studenten, der eine Arbeit über das Buch \"Frankenstein\" schrieb \\n\\n2\\n00:00:05,900 --> 00:00:10,478\\nund ich hatte zu den Artikeln über Mary Shelley und Frankenstein beigetragen.\\n\\n3\\n00:00:10,986 --> 00:00:16,398\\nGanze Abschnitte dieser Arbeit wurden aus dem Artikel über Mary Shelley abgeschrieben, zu dem ich beigetragen habe.\\n\\n4\\n00:00:17,300 --> 00:00:22,792\\nAlso musste ich ihm an den Rand schreiben, dass der Text von Wikipedia kopiert ist, [flüstert] weil ich ihn dort verfasst habe. \\n\\n5\\n00:00:23,200 --> 00:00:25,000\\nIch heiße Adrianne Wadewitz.\\n\\n6\\n00:00:25,500 --> 00:00:28,721\\nAls ich ein kleines Kind war, so in etwa sieben oder acht Jahre alt, \\n\\n7\\n00:00:28,721 --> 00:00:32,759\\nhabe ich angefangen große, lange Romane aus dem neunzehnten Jahrhundert zu lesen und habe mich in sie verliebt.\\n\\n8\\n00:00:32,759 --> 00:00:36,062\\nIch schrieb meine Doktorarbeit über die britische Kinder-Literatur aus dem achtzehnten Jahrhundert \\n\\n9\\n00:00:36,062 --> 00:00:41,416\\nund ich wollte das, was ich dabei lernen konnte, mit der Welt teilen.\\n\\n10\\n00:00:41,750 --> 00:00:46,830\\nWhen jemand den Film \"Geliebte Jane\" über Jane Austen sieht\\n\\n11\\n00:00:46,831 --> 00:00:48,596\\nund sagt, \\'Ich möchte mehr über Jane Austen erfahren\\', \\n\\n12\\n00:00:48,596 --> 00:00:51,096\\ngooglet er den Begriff und kommt auf den Wikipediaartikel. \\n\\n13\\n00:00:51,232 --> 00:00:54,473\\nDann erfährt er die Unterschiede zwischen Jane Austens Leben und \\n\\n14\\n00:00:54,473 --> 00:00:58,926\\nder Fiktionalisierung im Film, da dieser Film frei erfunden ist.\\n\\n15\\n00:00:58,926 --> 00:01:01,900\\nEin Grund dafür, dass ich versuche Professoren dafür zu gewinnen, \\n\\n16\\n00:01:01,900 --> 00:01:07,626\\nihre Stutenten dazu zu bringen, eigene Artikel im Hörsaal zu schreiben, ist \\n\\n17\\n00:01:07,626 --> 00:01:11,148\\ndass wir den Studenten zeigen wollen, wie man Wikipedia effektiv nutzt. \\n\\n18\\n00:01:11,542 --> 00:01:15,042\\nAlso entwickelte ich eine Aufgabe zum Schreiben von Wikipedia-Artikeln, \\n\\n19\\n00:01:15,653 --> 00:01:22,253\\nso dass sie nicht nur ich, der Professor, die einzige Person ist, die den Artikel liest.\\n\\n20\\n00:01:22,312 --> 00:01:27,105\\nThe Welt kann sehen was sie schreiben und es kommt darauf an was man schreibt und wie man es tut, \\n\\n21\\n00:01:27,800 --> 00:01:30,368\\nda Millionen Menschen sehen können, was du geschrieben hast. \\n\\n22\\n00:01:30,777 --> 00:01:35,977\\nImmer wenn meine Studenten einen Artikel erstellen oder ihn ausbauen, \\n\\n23\\n00:01:35,981 --> 00:01:41,500\\nlasse ich sie darüber nachdenken, wie sie ihn aus einer Vielzahl an Quellen aufbauen sollen \\n\\n24\\n00:01:41,500 --> 00:01:46,560\\nund welche Quellen verwendet werden und wie dies zur Verständlichkeit beiträgt.\\n\\n25\\n00:01:46,558 --> 00:01:50,140\\nWie ist das Wissen in diesem bestimmten Bereich aufgebaut?\\n\\n26\\n00:01:50,550 --> 00:01:55,000\\nIch habe in der Wikipedia einige sehr gut informierte Laien getroffen und das macht es so toll,\\n\\n27\\n00:01:55,000 --> 00:02:00,820\\nda diese Leute mit einem bestimmten Fachgebiet als Hobby Informationen beisteuern.\\n\\n28\\n00:02:01,342 --> 00:02:03,930\\nDas ist das Tolle an der Wikipedia. \\n\\n29\\n00:02:03,943 --> 00:02:09,560\\nEs bringt sowohl Profis als auch Laien mit einem bestimmten Interesse zusammen.\\n\\n30\\n00:02:10,443 --> 00:02:12,440\\n<ccsla slug>\\n\\n31\\n00:02:11,532 --> 00:02:12,340\\nRegie: Victor Grigas\\n\\nRegieassistenz: David Grossman \\n\\n32\\n00:02:12,343 --> 00:02:12,850\\nProduzent: Zack Exley\\n\\nBildgestaltender Kameramann: Pruitt Y. Allen \\n\\n33\\n00:02:12,847 --> 00:02:13,440\\nKamera: Jack Harris, Adam Parr, Matthew Storck\\n\\n34\\n00:02:13,443 --> 00:02:13,950\\nFotografen: Adam Novak, Karen Sayre\\n\\n35\\n00:02:13,946 --> 00:02:14,470\\nMake-up: Melissa Klein\\n\\n36\\n00:02:14,473 --> 00:02:15,550\\nInterviewer: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson \\n\\n37\\n00:02:15,550 --> 00:02:16,220\\nProduktionskoordinatoren: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n38\\n00:02:16,220 --> 00:02:16,700\\nProduktionsassistenten: Toby Hessenauer, Kristin Rigsby\\n\\n39\\n00:02:16,704 --> 00:02:17,350\\nSchnitt: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n40\\n00:02:17,353 --> 00:02:17,770\\nAutor: Desirina Boskovich\\n\\n41\\n00:02:17,773 --> 00:02:18,520\\nAbschrift: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling \\n\\n42\\n00:02:18,519 --> 00:02:19,000\\nEnglische Untertitel: AlanKelly VerbatimIT',\n", + " 'bytes': 4443,\n", + " 'sha1': 'd17yvz3ex5zw7r728jfd0q76nj01fnl',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314339,\n", + " 'timestamp': '2012-12-19T18:21:15Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259160,\n", + " 'title': 'The Impact of Wikipedia Adrianne Wadewitz.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,650 --> 00:00:05,577 Así es que un semestre, tuve un estudiante que estaba escribiendo un reporte sobre la novela Frankenstein, 2 00:00:05,900 -->...'\",\n", + " 'text': '1\\n00:00:00,650 --> 00:00:05,577\\nAsí es que un semestre, tuve un estudiante que estaba escribiendo\\nun reporte sobre la novela Frankenstein, \\n\\n2\\n00:00:05,900 --> 00:00:10,478\\ny yo había contribuído al artículo sobre Mary\\nShelley, y al artículo de Frankenstein.\\n\\n3\\n00:00:10,986 --> 00:00:16,398\\nI párrafos enteros del reporte habían sido plagiados del\\nartículo que escribí sobre Mary Shelley.\\n\\n4\\n00:00:17,300 --> 00:00:22,792\\nAsí es que escribí en la orilla, yo se que esto fue\\nplagiado de Wikipedia, [susurros] porque escribo en Wikipedia. \\n\\n5\\n00:00:23,200 --> 00:00:25,000\\nMi nombre es Adrianne Wadewitz.\\n\\n6\\n00:00:25,500 --> 00:00:28,721\\nCuando era un niño pequeño, como de siete u ocho años, \\n\\n7\\n00:00:28,721 --> 00:00:32,759\\ncomencé a leer grandes y extensas novelas del Siglo XIX,\\ny me enamoré de ellas.\\n\\n8\\n00:00:32,759 --> 00:00:36,062\\nEscribí mi disertación sobre literatura infantil británica del Siglo XVII \\n\\n9\\n00:00:36,062 --> 00:00:41,416\\ny quise compartir, lo que había\\ntenido la oportuniadd de aprender, con el mundo.\\n\\n10\\n00:00:41,750 --> 00:00:46,830\\nCuando alguien va a ver una película como \"Becoming\\nJane\", que es una película sobre Jane Austen,\\n\\n11\\n00:00:46,831 --> 00:00:48,596\\ntu sabes -- Quiero saber más sobre Jane Austen, \\n\\n12\\n00:00:48,596 --> 00:00:51,096\\ny luego lo escriben en Google,\\ny luego obtienen el artículo de Wikipedia, \\n\\n13\\n00:00:51,232 --> 00:00:54,473\\ny así es como saben lo que realmente ocurrió con la vida de Jane Austen, versus \\n\\n14\\n00:00:54,473 --> 00:00:58,926\\nla dramatización de lo que ocurre en la película, porque esa película fue pura ficción.\\n\\n15\\n00:00:58,926 --> 00:01:01,900\\nUna razón de porqué trato de reclutar profesores \\n\\n16\\n00:01:01,900 --> 00:01:07,626\\npara que hagan que sus estudiantes escriban artículos en la sala de clases es \\n\\n17\\n00:01:07,626 --> 00:01:11,148\\nque queremos mostrarle a los estudiantes como usar Wikipedia de forma productiva, \\n\\n18\\n00:01:11,542 --> 00:01:15,042\\nasí es que una de las cosas que hice fue desarrollar una tarea para escribir en Wikipedia, \\n\\n19\\n00:01:15,653 --> 00:01:22,253\\nde forma que no ibas a estar escribiendo ensayos para mí, el profesor, y\\nque yo no sería la única persona que iba a leerlos.\\n\\n20\\n00:01:22,312 --> 00:01:27,105\\nEl mundo iba a ver lo que escribiste e\\nimportaba lo que escribieras y como lo escribieras, \\n\\n21\\n00:01:27,800 --> 00:01:30,368\\nporque millones de personas iban a ver lo que habías escrito. \\n\\n22\\n00:01:30,777 --> 00:01:35,977\\nAsí es que, cada vez que tengo estudios que arman un artículo\\no agregar material a un artículo, \\n\\n23\\n00:01:35,981 --> 00:01:41,500\\nLos hago pensar sobre qué significa construir\\nun artículo desde una variedad de fuentes \\n\\n24\\n00:01:41,500 --> 00:01:46,560\\ny qué tipo de fuentes están siendo usadas, y qué\\nsignifica aquello para nuestra comprensión de ese tema.\\n\\n25\\n00:01:46,558 --> 00:01:50,140\\nCómo se construyó el conocimiento en esa área en particular.\\n\\n26\\n00:01:50,550 --> 00:01:55,000\\nMe he encontrado con aficionados muy informados en Wikipedia; Por esso que es tan bueno,\\n\\n27\\n00:01:55,000 --> 00:02:00,820\\nque personas que son aficionadas que aman un tema en particular, y entonces empiezan a añadir información\\n\\n28\\n00:02:01,342 --> 00:02:03,930\\ny eso es lo que hace a Wikipedia tan grande \\n\\n29\\n00:02:03,943 --> 00:02:09,560\\ncongrega tanto a profesionales como aficionados que\\ntienen cariño por un tema en particular.\\n\\n30\\n00:02:10,443 --> 00:02:12,440\\n<ccsla slug>\\n\\n31\\n00:02:11,532 --> 00:02:12,340\\nDirector: Victor Grigas \\nCodirector: David Grossman \\n\\n32\\n00:02:12,343 --> 00:02:12,850\\nProductor: Zack Exley\\nDirector de Fotografía: Pruitt Y. Allen \\n\\n33\\n00:02:12,847 --> 00:02:13,440\\nFotógrafos de Vídeo: Jack Harris, Adam Parr, Matthew Storck\\n\\n34\\n00:02:13,443 --> 00:02:13,950\\nFotógrafos de Retrato: Adam Novak, Karen Sayre\\n\\n35\\n00:02:13,946 --> 00:02:14,470\\nMaquillaje: Melissa Klein\\n\\n36\\n00:02:14,473 --> 00:02:15,550\\nEntrevistadores: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson \\n\\n37\\n00:02:15,550 --> 00:02:16,220\\nCoordinadores de Producción: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n38\\n00:02:16,220 --> 00:02:16,700\\nAsistentes de Producción: Toby Hessenauer, Kristin Rigsby\\n\\n39\\n00:02:16,704 --> 00:02:17,350\\nEditores de Vídeo: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n40\\n00:02:17,353 --> 00:02:17,770\\nEscritor: Desirina Boskovich\\n\\n41\\n00:02:17,773 --> 00:02:18,520\\nServicios de transcripción: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling \\n\\n42\\n00:02:18,519 --> 00:02:19,000\\nSubtítulos en inglés: AlanKelly VerbatimIT',\n", + " 'bytes': 4692,\n", + " 'sha1': '6j02yktey424gfaqks394nedyxjszln',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314369,\n", + " 'timestamp': '2012-12-19T18:21:57Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259177,\n", + " 'title': 'The Impact of Wikipedia Adrianne Wadewitz.webm.id.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,650 --> 00:00:05,577 Pada satu semester, ada mahasiswa yang menulis rangkuman tentang novel Frankenstein, 2 00:00:05,900 --> 00:00:10,478 dan saya ...'\",\n", + " 'text': \"1\\n00:00:00,650 --> 00:00:05,577\\nPada satu semester, ada mahasiswa yang menulis\\nrangkuman tentang novel Frankenstein, \\n\\n2\\n00:00:05,900 --> 00:00:10,478\\ndan saya telah berkontribusi ke artikel Mary Shelley,\\nserta artikel Frankenstein.\\n\\n3\\n00:00:10,986 --> 00:00:16,398\\nDan seluruh karya tulisnya disalin dari\\nartikel yang saya tulis tentang Mary Shelley.\\n\\n4\\n00:00:17,300 --> 00:00:22,792\\nJadi saya harus menulis di samping, saya tahu tulisan ini\\ndisalin dari Wikipedia, karena saya pula yang menulisnya. \\n\\n5\\n00:00:23,200 --> 00:00:25,000\\nNama saya Adrianne Wadewitz.\\n\\n6\\n00:00:25,500 --> 00:00:28,721\\nSaat saya masih kecil, tujuh atau delapan tahun, \\n\\n7\\n00:00:28,721 --> 00:00:32,759\\nSaya mulai membaca novel-novel abad ke-19 yang panjang,\\ndan mulai jatuh cinta.\\n\\n8\\n00:00:32,759 --> 00:00:36,062\\nSaya menulis disertasi tentang literatur anak Britania abad ke-18 \\n\\n9\\n00:00:36,062 --> 00:00:41,416\\ndan saya ingin berbagi apa yang sudah\\nsaya pelajari dengan dunia.\\n\\n10\\n00:00:41,750 --> 00:00:46,830\\nKetika seseorang menonton film semisal Becoming\\nJane, yang bercerita tentang Jane Austen,\\n\\n11\\n00:00:46,831 --> 00:00:48,596\\nsaya ingin tahu lebih jauh tentang Jane Austen, \\n\\n12\\n00:00:48,596 --> 00:00:51,096\\nmereka mencarinya di Google,\\ndan mereka menemukan artikelnya di Wikipedia, \\n\\n13\\n00:00:51,232 --> 00:00:54,473\\nkemudian mereka tahu apa yang terjadi pada\\nkehidupan Jane Austen dibandingkan \\n\\n14\\n00:00:54,473 --> 00:00:58,926\\nfiksionalisasi yang ada di film, karena film itu memang karya fiksi.\\n\\n15\\n00:00:58,926 --> 00:01:01,900\\nSatu alasan mengapa saya mencoba merekrut profesor \\n\\n16\\n00:01:01,900 --> 00:01:07,626\\nagar mahasiswanya menulis artikel di dalam kelas adalah \\n\\n17\\n00:01:07,626 --> 00:01:11,148\\nkami ingin menunjukkan kepada mahasiswa cara\\nmemakai Wikipedia secara produktif, \\n\\n18\\n00:01:11,542 --> 00:01:15,042\\njadi satu hal yang saya lakukan adalah mengembangkan\\ntugas menulis di Wikipedia, \\n\\n19\\n00:01:15,653 --> 00:01:22,253\\njadi Anda tidak menulis esai untuk saya, profesor dan\\nsaya adalah satu-satunya orang yang akan menilainya.\\n\\n20\\n00:01:22,312 --> 00:01:27,105\\nDunia akan melihat apa yang Anda tulis dan\\npenting sekali mengetahui apa dan cara Anda menulisnya, \\n\\n21\\n00:01:27,800 --> 00:01:30,368\\nkarena jutaan orang akan melihat apa yang Anda tulis. \\n\\n22\\n00:01:30,777 --> 00:01:35,977\\nJadi, setiap kali mahasiswa saya menggabungkan sebuah\\nartikel atau menambahkan bahan ke sebuah artikel, \\n\\n23\\n00:01:35,981 --> 00:01:41,500\\nsaya meminta mereka berpikir apa artinya membuat\\nartikel dari berbagai macam sumber \\n\\n24\\n00:01:41,500 --> 00:01:46,560\\ndan sumber-sumber macam apa yang digunakan, dan apa\\nartinya bagi pemahaman kita terhadap topik tersebut.\\n\\n25\\n00:01:46,558 --> 00:01:50,140\\nBagaimana pengetahuan dibuat dalam satu bidang tertentu?\\n\\n26\\n00:01:50,550 --> 00:01:55,000\\nSaya telah bertemu banyak amatiran pintar di Wikipedia;\\nsungguh hebat sekali\\n\\n27\\n00:01:55,000 --> 00:02:00,820\\nbahwa para penghobi yang mencintai satu topik tertentu mulai menambahkan informasi,\\n\\n28\\n00:02:01,342 --> 00:02:03,930\\ndan itulah yang menjadikan Wikipedia besar; \\n\\n29\\n00:02:03,943 --> 00:02:09,560\\nWikipedia mempertemukan profesional dan amatiran yang\\nmemiliki kecintaan pada topik tertentu.\\n\\n30\\n00:02:10,443 --> 00:02:12,440\\n<ccsla slug>\\n\\n31\\n00:02:11,532 --> 00:02:12,340\\nSutradara: Victor Grigas \\nKo-sutradara: David Grossman \\n\\n32\\n00:02:12,343 --> 00:02:12,850\\nProduser: Zack Exley\\nPengarah Fotografi: Pruitt Y. Allen \\n\\n33\\n00:02:12,847 --> 00:02:13,440\\nFotografer Video: Jack Harris, Adam Parr, Matthew Storck\\n\\n34\\n00:02:13,443 --> 00:02:13,950\\nFotografer Potret: Adam Novak, Karen Sayre\\n\\n35\\n00:02:13,946 --> 00:02:14,470\\nTata Rias: Melissa Klein\\n\\n36\\n00:02:14,473 --> 00:02:15,550\\nPewawancara: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n37\\n00:02:15,550 --> 00:02:16,220\\nKoordinator Produksi: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n38\\n00:02:16,220 --> 00:02:16,700\\nAsisten Produksi: Toby Hessenauer, Kristin Rigsby\\n\\n39\\n00:02:16,704 --> 00:02:17,350\\nPenyunting Viddeo: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n40\\n00:02:17,353 --> 00:02:17,770\\nPenulis: Desirina Boskovich\\n\\n41\\n00:02:17,773 --> 00:02:18,520\\nTranskripsi: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling \\n\\n42\\n00:02:18,519 --> 00:02:19,000\\nSubtitel Inggris: AlanKelly VerbatimIT\",\n", + " 'bytes': 4400,\n", + " 'sha1': 'mpgjzp6swrq1usua79l9zqcic5akmbg',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314419,\n", + " 'timestamp': '2012-12-19T18:22:54Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259201,\n", + " 'title': 'The Impact of Wikipedia Adrianne Wadewitz.webm.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,650 --> 00:00:05,577 Так, в одном семестре у меня был студент, который писал доклад по роман...'\",\n", + " 'text': '1\\n00:00:00,650 --> 00:00:05,577\\nТак, в одном семестре у меня был студент, который писал доклад по роману \"Франкенштейн\", \\n\\n2\\n00:00:05,900 --> 00:00:10,478\\nа я внесла вклад в статью по Мэри Шелли и в статью по \"Франкенштейну\".\\n\\n3\\n00:00:10,986 --> 00:00:16,398\\nИ всё пространство его работы было плагиатом из той статьи, которую я написала по Мэри Шелли.\\n\\n4\\n00:00:17,300 --> 00:00:22,792\\nПоэтому, я написала на полях его работы, что знаю, что его работа - это плагиат из Википедии, что (по слухам) я написала её в Википедии. \\n\\n5\\n00:00:23,200 --> 00:00:25,000\\nМеня зовут Адрианна Уэйдвиц (Adrianne Wadewitz).\\n\\n6\\n00:00:25,500 --> 00:00:28,721\\nЕщё будучи маленьким ребёнком, в возрасте семи или восьми лет, \\n\\n7\\n00:00:28,721 --> 00:00:32,759\\nя начала чтение больших и длинных романов девятнадцатого столетия и полюбила их.\\n\\n8\\n00:00:32,759 --> 00:00:36,062\\nЯ написала свою диссертацию по детской британской литературе восемнадцатого века \\n\\n9\\n00:00:36,062 --> 00:00:41,416\\nи захотела поделиться с миром тем, возможность изучения чего я получила.\\n\\n10\\n00:00:41,750 --> 00:00:46,830\\nКогда кто-то идёт посмотреть фильм \"Джейн Остин\" (фильм) (Becoming \\nJane), посвящённый Джейн Остин,\\n\\n11\\n00:00:46,831 --> 00:00:48,596\\nвы знаете -- я хочу знать больше о Джейн Остин, \\n\\n12\\n00:00:48,596 --> 00:00:51,096\\nи затем он впечатывает это в Гугл, и получает статью в Википедии, \\n\\n13\\n00:00:51,232 --> 00:00:54,473\\nо том, что они действительно знают, что же на самом деле случилось в жизни Джейн Остин в отличии от \\n\\n14\\n00:00:54,473 --> 00:00:58,926\\nтого вымысла, который совершили в этом фильме, потому что тот фильм был полным вымыслом.\\n\\n15\\n00:00:58,926 --> 00:01:01,900\\nОдна из причин, почему я пытаюсь привлечь профессоров \\n\\n16\\n00:01:01,900 --> 00:01:07,626\\nсостоит в том, чтобы они вовлекли студентов в написание настоящих статей в классе, \\n\\n17\\n00:01:07,626 --> 00:01:11,148\\nмы хотим показать студентам, как продуктивно пользоваться Википедией, \\n\\n18\\n00:01:11,542 --> 00:01:15,042\\nтак что одна из вещей, которые я сделала, это развивать письменные задания в Википедии, \\n\\n19\\n00:01:15,653 --> 00:01:22,253\\nс тем, чтобы вы писали эссе не для меня, профессора, и чтобы я была бы не единственным человеком, который собирался увидеть это эссе.\\n\\n20\\n00:01:22,312 --> 00:01:27,105\\nВесь мир собирался увидеть то, что вы написали, приобретало значение то, что вы написали и как вы это сделали, \\n\\n21\\n00:01:27,800 --> 00:01:30,368\\nпотому что миллионы людей собирались увидеть ваше письменное произведение. \\n\\n22\\n00:01:30,777 --> 00:01:35,977\\nПоэтому каждый раз, когда я собираю студентов для статьи или дополнения статьи, \\n\\n23\\n00:01:35,981 --> 00:01:41,500\\nя побуждаю их подумать о значении того, как создать статью из разнообразия источников \\n\\n24\\n00:01:41,500 --> 00:01:46,560\\nи какого рода источники использованы и что это значит для нашего понимания того предмета?\\n\\n25\\n00:01:46,558 --> 00:01:50,140\\nКак создаётся знание в этой особенной области?\\n\\n26\\n00:01:50,550 --> 00:01:55,000\\nЯ встретила очень информированных любителей в Википедии; вот почему это замечательно,\\n\\n27\\n00:01:55,000 --> 00:02:00,820\\nчто люди, которые имеют хобби, которые обожают особенный предмет, а затем они начинают добавлять информацию,\\n\\n28\\n00:02:01,342 --> 00:02:03,930\\nвот это и делает Википедию такой замечательной; \\n\\n29\\n00:02:03,943 --> 00:02:09,560\\nэто сближает как профессионалов, так и любителей, которые обожают один определённый предмет.\\n\\n30\\n00:02:10,443 --> 00:02:12,440\\nфреймворк символ (<ccsla slug>)\\n\\n31\\n00:02:11,532 --> 00:02:12,340\\nДиректор: Victor Grigas \\nДополнительный директор: David Grossman \\n\\n32\\n00:02:12,343 --> 00:02:12,850\\nПродюсер: Zack Exley\\nДиректор видеозаписи: Pruitt Y. Allen \\n\\n33\\n00:02:12,847 --> 00:02:13,440\\nВидеооператоры: Jack Harris, Adam Parr, Matthew Storck\\n\\n34\\n00:02:13,443 --> 00:02:13,950\\nФотографы: Adam Novak, Karen Sayre\\n\\n35\\n00:02:13,946 --> 00:02:14,470\\nГрим: Melissa Klein\\n\\n36\\n00:02:14,473 --> 00:02:15,550\\nБрали интервью: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson \\n\\n37\\n00:02:15,550 --> 00:02:16,220\\nКоординаторы производства: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n38\\n00:02:16,220 --> 00:02:16,700\\nАссистенты производства: Toby Hessenauer, Kristin Rigsby\\n\\n39\\n00:02:16,704 --> 00:02:17,350\\nВидеоредакторы: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n40\\n00:02:17,353 --> 00:02:17,770\\nПисательница: Desirina Boskovich\\n\\n41\\n00:02:17,773 --> 00:02:18,520\\nУслуги транскрипции: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling \\n\\n42\\n00:02:18,519 --> 00:02:19,000\\nСубтитры к английскому языку: AlanKelly VerbatimIT',\n", + " 'bytes': 6796,\n", + " 'sha1': 'cczzmnd53vtmrn1zasb59wt6uvgdprj',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314447,\n", + " 'timestamp': '2012-12-19T18:23:51Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259208,\n", + " 'title': 'The Impact of Wikipedia Adrianne Wadewitz.webm.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,650 --> 00:00:05,577 Så en termin hade jag en elev som skrev en rapport om boken Frankenstein, 2 00:00:05,900 --> 00:00:10,478 och jag har skrivi...'\",\n", + " 'text': '1\\n00:00:00,650 --> 00:00:05,577\\nSå en termin hade jag en elev som skrev \\nen rapport om boken Frankenstein, \\n\\n2\\n00:00:05,900 --> 00:00:10,478\\noch jag har skrivit på artikeln om Mary\\nShelley, och på artikeln om Frankenstein.\\n\\n3\\n00:00:10,986 --> 00:00:16,398\\nStora mängder av rapporten var kopierade från\\nartikeln jag skrev om Mary Shelley.\\n\\n4\\n00:00:17,300 --> 00:00:22,792\\nSå jag skrev, i marginalen, att jag vet att det här är\\nkopierat från Wikipedia, [viskar] för jag skrev det på Wikipedia. \\n\\n5\\n00:00:23,200 --> 00:00:25,000\\nJag heter Adrianne Wadewitz.\\n\\n6\\n00:00:25,500 --> 00:00:28,721\\nNär jag var ett barn, typ sju eller åtta år gammal, \\n\\n7\\n00:00:28,721 --> 00:00:32,759\\nbörjade jag läsa stora, långa artonhundratalsromander,\\noch jag blev förälskad i dem.\\n\\n8\\n00:00:32,759 --> 00:00:36,062\\nJag skrev min avhandling om brittisk barnlitteratur från 1700-talet \\n\\n9\\n00:00:36,062 --> 00:00:41,416\\noch jag ville dela med mig var jag hade\\nkunnat lära mig, med hela världen.\\n\\n10\\n00:00:41,750 --> 00:00:46,830\\nNär någon ser en film såsom En ung Jane Austen (eng. Becoming Jane),\\nsom är en film om Jane Austen,\\n\\n11\\n00:00:46,831 --> 00:00:48,596\\ntyp -- \"jag vill veta mer om Jane Austen\", \\n\\n12\\n00:00:48,596 --> 00:00:51,096\\noch när de söker på det på Google,\\noch när de ser Wikipediaartikeln, \\n\\n13\\n00:00:51,232 --> 00:00:54,473\\nfår de faktiskt veta vad som verkligen hände i Jane Austens liv, gentemot \\n\\n14\\n00:00:54,473 --> 00:00:58,926\\ndenna fiktionaliserade version av händelserna i filmen, för filmen var helt påhittad.\\n\\n15\\n00:00:58,926 --> 00:01:01,900\\nEn av anledningarna till att jag försöker förmå professorer \\n\\n16\\n00:01:01,900 --> 00:01:07,626\\natt få elever att skriva verkliga artiklar i klassrummet är att \\n\\n17\\n00:01:07,626 --> 00:01:11,148\\nvi vill visa eleverna hur man använder Wikipedia produktivt, \\n\\n18\\n00:01:11,542 --> 00:01:15,042\\nså en av sakerna jag gjorde var att utveckla en uppgift att skriva på Wikipedia, \\n\\n19\\n00:01:15,653 --> 00:01:22,253\\nså att du inte bara skriver uppsatser för mig, läraren, och\\njag var en enda personen som skulle se dem.\\n\\n20\\n00:01:22,312 --> 00:01:27,105\\nHela världen kan se vad du skriver och\\nvad du skrev och hur du skrev det var var betydelsefullt, \\n\\n21\\n00:01:27,800 --> 00:01:30,368\\nför miljontals människor kommer att se vad du skrev. \\n\\n22\\n00:01:30,777 --> 00:01:35,977\\nSå, varje gång mina elever sätter ihop en artikel\\neller lägger till material till en artikel, \\n\\n23\\n00:01:35,981 --> 00:01:41,500\\nsäger jag åt dem att tänka på vad det betyder att bygga\\nen artikel från en mängd olika källor \\n\\n24\\n00:01:41,500 --> 00:01:46,560\\noch vilka sorters källor som används, och vad\\ndet betyder för vår förståelse av det ämnet?\\n\\n25\\n00:01:46,558 --> 00:01:50,140\\nHur byggs kunskapen upp i det här specifika ämnet?\\n\\n26\\n00:01:50,550 --> 00:01:55,000\\nJag har sett mycket välinformerade amatörer på Wikipedia; det är det som är så fantastiskt,\\n\\n27\\n00:01:55,000 --> 00:02:00,820\\natt människor som har specifika hobbyintressen,\\nbörjar lägga till information,\\n\\n28\\n00:02:01,342 --> 00:02:03,930\\noch det är det som gör Wikipedia så bra; \\n\\n29\\n00:02:03,943 --> 00:02:09,560\\nDet för samman både professionella och amatörer som har förkärlek för ett visst ämne.\\n\\n30\\n00:02:10,443 --> 00:02:12,440\\n<ccsla slug>\\n\\n31\\n00:02:11,532 --> 00:02:12,340\\nRegissör: Victor Grigas\\nMedregissör: David Grossman \\n\\n32\\n00:02:12,343 --> 00:02:12,850\\nProducent: Zack Exley\\nFilmfotograf: Pruitt Y. Allen \\n\\n33\\n00:02:12,847 --> 00:02:13,440\\nVideofotografer: Jack Harris, Adam Parr, Matthew Storck\\n\\n34\\n00:02:13,443 --> 00:02:13,950\\nStillbildsfotografer: Adam Novak, Karen Sayre\\n\\n35\\n00:02:13,946 --> 00:02:14,470\\nSmink: Melissa Klein\\n\\n36\\n00:02:14,473 --> 00:02:15,550\\nIntervjuare: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson \\n\\n37\\n00:02:15,550 --> 00:02:16,220\\nProduktionskoordination: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n38\\n00:02:16,220 --> 00:02:16,700\\nProduktionsassistenter: Toby Hessenauer, Kristin Rigsby\\n\\n39\\n00:02:16,704 --> 00:02:17,350\\nRedigering: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n40\\n00:02:17,353 --> 00:02:17,770\\nManusförfattare: Desirina Boskovich\\n\\n41\\n00:02:17,773 --> 00:02:18,520\\nTransktription: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling \\n\\n42\\n00:02:18,519 --> 00:02:19,000\\nEngelsk textning: AlanKelly VerbatimIT',\n", + " 'bytes': 4489,\n", + " 'sha1': 'n6pm0zvpplhffhbdr3y0ogspgeecftb',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314491,\n", + " 'timestamp': '2012-12-19T18:24:50Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259220,\n", + " 'title': 'The Impact of Wikipedia Adrianne Wadewitz.webm.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,650 --> 00:00:05,577 在某个学期,我有一个学生写了一篇小说《科学怪人》的报告。 2 00:00:05,900 --> 00:00:10,478 由于我...'\",\n", + " 'text': '1\\n00:00:00,650 --> 00:00:05,577\\n在某个学期,我有一个学生写了一篇小说《科学怪人》的报告。 \\n\\n2\\n00:00:05,900 --> 00:00:10,478\\n由于我曾编写过维基百科上的玛丽·雪莱和《科学怪人》的条目,\\n\\n3\\n00:00:10,986 --> 00:00:16,398\\n所以我发现这篇报告大幅抄袭了我所编写的玛丽·雪莱的内容。\\n\\n4\\n00:00:17,300 --> 00:00:22,792\\n因此我在页边上批注:我知道这篇文章是剽窃维基百科的,[悄声说]因为这条目是我写的。 \\n\\n5\\n00:00:23,200 --> 00:00:25,000\\n我是阿德里安娜·韦德维茨。\\n\\n6\\n00:00:25,500 --> 00:00:28,721\\n当我还是个七八岁的孩子的时候, \\n\\n7\\n00:00:28,721 --> 00:00:32,759\\n就开始阅读大部头的十九世纪小说,并且爱上了它们。\\n\\n8\\n00:00:32,759 --> 00:00:36,062\\n我的论文是关于十八世纪英国儿童文学的, \\n\\n9\\n00:00:36,062 --> 00:00:41,416\\n我也想同全世界分享我有幸了解的知识\\n\\n10\\n00:00:41,750 --> 00:00:46,830\\n当人们去看关于简·奥斯汀的电影《成为简·奥斯汀》时,\\n\\n11\\n00:00:46,831 --> 00:00:48,596\\n你懂得——他们可能想要了解更多简·奥斯汀的知识, \\n\\n12\\n00:00:48,596 --> 00:00:51,096\\n那么他们就可以在谷歌中搜索,并找到维基百科上的条目 \\n\\n13\\n00:00:51,232 --> 00:00:54,473\\n然后他们会发现简·奥斯汀的真实人生经历 \\n\\n14\\n00:00:54,473 --> 00:00:58,926\\n与这部电影中的虚构情节不同,因为电影是完全的艺术创作\\n\\n15\\n00:00:58,926 --> 00:01:01,900\\n我想聘用更多的教授 \\n\\n16\\n00:01:01,900 --> 00:01:07,626\\n并让他们帮助学生在课堂上写出真实文章的原因之一 \\n\\n17\\n00:01:07,626 --> 00:01:11,148\\n是我们想向学生展示如何高效地使用维基百科 \\n\\n18\\n00:01:11,542 --> 00:01:15,042\\n为此我所进行的尝试之一就是布置一次维基百科写作作业, \\n\\n19\\n00:01:15,653 --> 00:01:22,253\\n那么学生们就不只是为了我和教授们写作文,而我只会是他们文章的读者之一\\n\\n20\\n00:01:22,312 --> 00:01:27,105\\n全世界的都能看到你的作品,你写了什么和怎么写的将会变得重要, \\n\\n21\\n00:01:27,800 --> 00:01:30,368\\n因为数以百万的人们将会看到你的文字, \\n\\n22\\n00:01:30,777 --> 00:01:35,977\\n所以每当我的学生写下新条目或在条目内增加内容时, \\n\\n23\\n00:01:35,981 --> 00:01:41,500\\n我会让他们思考利用各种资源创建新条目意味着什么, \\n\\n24\\n00:01:41,500 --> 00:01:46,560\\n哪一类资源得到了利用,以及这些资源对我们理解这个主题有何意义?\\n\\n25\\n00:01:46,558 --> 00:01:50,140\\n关于这个领域的知识是如何积累起来的?\\n\\n26\\n00:01:50,550 --> 00:01:55,000\\n我曾经遇到过一些博学的维基百科爱好者,而这正是维基的伟大之处,\\n\\n27\\n00:01:55,000 --> 00:02:00,820\\n那些对特定主题有爱好的人可以丰富条目内容,\\n\\n28\\n00:02:01,342 --> 00:02:03,930\\n这就是让维基百科变得伟大的原因: \\n\\n29\\n00:02:03,943 --> 00:02:09,560\\n它让了解某个主题的专业人士和业余爱好者们聚集在一起贡献知识。\\n\\n30\\n00:02:10,443 --> 00:02:12,440\\n<ccsla slug>\\n\\n31\\n00:02:11,532 --> 00:02:12,340\\n导演:维克多·格利戛斯\\n合作导演:大卫·格罗斯曼 \\n\\n32\\n00:02:12,343 --> 00:02:12,850\\n制片人:扎克·埃克斯利\\n摄影指导:普鲁特·Y·艾伦 \\n\\n33\\n00:02:12,847 --> 00:02:13,440\\n视频摄影:杰克·哈里斯,亚当·帕尔,马修·斯托克\\n\\n34\\n00:02:13,443 --> 00:02:13,950\\n人像摄影:亚当·诺瓦克,卡伦·塞尔\\n\\n35\\n00:02:13,946 --> 00:02:14,470\\n化妆:梅利莎·克莱因\\n\\n36\\n00:02:14,473 --> 00:02:15,550\\n采访者:阿尔玛·沙帕,乔纳森·库列尔,斯蒂芬·海尔,丹·马克斯韦恩\\n科里·奥布莱恩,弗兰克·奥布莱恩,雅各布·威尔逊 \\n\\n37\\n00:02:15,550 --> 00:02:16,220\\n制作协调:梅根·埃尔南德斯,布里奥妮·琼斯,贝亚特里切·斯普林伯恩 \\n\\n38\\n00:02:16,220 --> 00:02:16,700\\n制作助理:托比·赫森纳尔,克里斯汀·里格斯比\\n\\n39\\n00:02:16,704 --> 00:02:17,350\\n视频编辑:贾斯汀·金德伦,维克多·格利戛斯,贾瓦德·卡迪尔\\n\\n40\\n00:02:17,353 --> 00:02:17,770\\n脚本:德西尔里纳·博斯科维奇\\n\\n41\\n00:02:17,773 --> 00:02:18,520\\n转录服务:凯特·阿莱奥,迈克尔·比蒂,卡伦·卡列尔,彼得罗·利,米米·李杰奎·帕斯特,克里斯蒂·罗宾逊,布列塔尼·特纳,苏珊·沃林 \\n\\n42\\n00:02:18,519 --> 00:02:19,000\\n英语闭合字幕:AlanKelly VerbatimIT',\n", + " 'bytes': 4514,\n", + " 'sha1': 'ms490jjjm0wz6u1x1n6i4627auc7ymf',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314727,\n", + " 'timestamp': '2012-12-19T18:29:43Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259282,\n", + " 'title': 'Oarabile Mudongo V1.webm.ar.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 ليس لدي والدي الكثير لمشاركته معنا، أو لتقديمه لنا. 2 00:00:07,250 --> 00:00:12,018 ...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nليس لدي والدي الكثير لمشاركته معنا، أو لتقديمه لنا.\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nلم يكن بمقدورها، أو لم يكن بمقدورهم أن يشتروا لي تلك الأدوات الغالية الثمن، \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nلأنها غالية في بلدنا. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nاسمي هو أورابيله مودونغو. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nأنا من بوتسوانا.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nليس لدينا حاسوب في بيتنا. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nلم يكن لأي منا حاسوب. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nقامت شركة التنجيم المحلية بالتبرع بأجهزة حاسوب لمدرستنا.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nكان ذلك هو الوقت الذي بدأت معه بتطوير الاهتمام بالحواسيب.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nلقد كنت خائفا من لمس هذا، كما تعلم، فقد كان لدي معتقدات\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nقد أخطئ في عمل شيء ما، ما الذي سيحصل حينها؟\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nماذا إن خربتها، وكان يتوجب علي الدفع \\nووالدي ليس لديهم النقود للدفع لهذا؟\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nلقد كنت أفكر بهذا في رأسي.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nكما ترى، فقد رأيت نفسي ناجحا في الحياة. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nلقد كان لدينا نادي في المدرسة الثانوية. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nلقد أرادوا لنا أن ننخرط في الأبحاث، في الأبحاث المتعمقة. \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nولهذا فقد قمت بالاستفادة من الإنترنت كمصدر لي،\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\nللحصول على المزيد من المعلومات، ومعظم المعلومات التي حصلت عليها عندما كنت في تلك المجموعة - \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\nمجموعة معرض الرياضيات والعلوم - \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\nاعتمدت بشكل كبير على ويكيبيديا، وللمشاركة معكم، \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nالمعلومات التي حصلت عليها، أدت إلى أن مشروعنا كان بمستوى جيد على المستوى المبدئي. \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\n<span class=\"mw-translate-fuzzy\">\\nوقمنا بالتقديم على المستوى الوطني.\\n</span> \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\n<span class=\"mw-translate-fuzzy\">\\nكان هناك البعض في المدرسة ممن كان يقول، يجب أن لا تثق بويكيبيديا،\\n</span> \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nلأن ويكيبيديا لا تعتبر مصدرا موثوقا للحصول على المعلومات من أجل أبحاثك،\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\nوكنت شديد المفاجأة. \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nويكيبيديا هي مصدر مفتوح يستطيع كل شخص المشاركة أو إضافة أفكاره أو أفكارها \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\nثم يأتي شخص آخر ويشذب تلك الأفكار ليحسنها.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nنجحت في المدرسة، وتقدمت إلى المدرسة العليا. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nإلا أن معظم أصدقائي لم يتمكنوا من الالتحاق بالمدرسة العليا. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\nوبالنظر إلى ذلك من الخلف، كان علي أن أقول لا لا لا.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nيجب أن أصل إلى مستوى أعلى لكي أحضر شيئا للمنزل، لمساعدة والدي.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nلقد كانت المعلومات التي حصلت عليها من ويكيبيديا ساعدتني على التقدم للأمام.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nلقد نجحت، بسبب المقالات التي قرأتها، \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\nوالأبحاث التي أجريتها في المدرسة،\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\nلقد حصلت عليها من ويكيبيديا.',\n", + " 'bytes': 4353,\n", + " 'sha1': 'qtcrdjnuuku4t4lmu0zeh341m0psbav',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314746,\n", + " 'timestamp': '2012-12-19T18:30:12Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259284,\n", + " 'title': 'Oarabile Mudongo V1.webm.da.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 Mine forældre havde ikke meget at dele med os eller at forsyne os med. 2 00:00:07,250 --> 00:00:12,018 Hun kunne ikke, de kunn...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nMine forældre havde ikke meget at dele med os eller at forsyne os med.\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nHun kunne ikke, de kunne ikke få råd til at købe mig disse smarte dimser, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nfor de er dyre i mit land. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nMit navn er Oarabile Mudongo. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nJeg kommer fra Botswana.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nVi har ikke nogen computer i huset. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nIngen af os har nogensinde ejet en computer. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nEt mineselskab i nabolaget - de forærede computere til vores skole.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nDet var dengang, jeg begyndte at udvikle interessen for at bruge computere.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nJeg var bange for at røre dem, ser I, for jeg havde tænkt\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nNu rørte jeg den. Hvad nu hvis jeg ødelægger det?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nHvad nu hvis jeg ødelægger den, og jeg gerne vil erstatte \\nog mine forældre ikke har penge til at erstatte den?\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nMed min baggrund havde jeg dette i baghovedet.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nJeg så mig som succesrig i livet. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nVi havde den her anden klub i skolen i gymnasiet. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nDe ville have os til at engagere os i mere forskning ved at lave dyb forskning, \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nså jeg greb fordelen ved det:\\nat bruge internettet som min kilde,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\ntil at få mere viden, og det meste af den viden, jeg \\nfik, da jeg var i den gruppe - \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\nmatematik- og naturvidenskabsgruppen - \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\njeg stolede meget på Wikipedia, og jeg kan oplyse jer om, \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nat [med] den viden, jeg fik, gik vores projekt godt på regionalt plan. \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\nVi tog det videre til nationalt plan. \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nJeg hørte faktisk rygter i skoletiden, der [sagde], altså, at du ikke burde stole på Wikipedia, \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nfor Wikipedia - det er ikke en pålidelig kilde til at finde oplysninger til din forskning,\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\nog jeg blev meget overrasket. \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nWikipedia er en åben kilde, hvor enhver kan bidrage eller fremsætte sin idé \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\nog så kommer der en anden ind og afpudser den idé for at gøre den virkeligt god.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nJeg havde bestået, så jeg måtte videre til øverste trin. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nDe fleste af mine venner klarede ikke at nå til øverste trin. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\nog når jeg ser på det fra min baggrund, måtte jeg sige nej, nej, nej.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nJeg har brug for at opnå noget mere, så jeg \\nkan sende noget hjem, hjælpe mine forældre.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nDen viden, jeg har fået fat i fra Wikipedia, gav mig virkelig et skub fremad.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nJeg formåede at bestå, fordi de meste af det materiale, som jeg læste, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\nden forskning, jeg lavede i skolen,\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\ndet fik jeg nemlig lige fra Wikipedia.',\n", + " 'bytes': 3358,\n", + " 'sha1': '4errewqz51ld44i30j7i16x357sogs1',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314764,\n", + " 'timestamp': '2012-12-19T18:30:38Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259287,\n", + " 'title': 'Oarabile Mudongo V1.webm.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 Meine Eltern hatten nicht viel, was sie mit uns teilen oder uns zur Verfügung stellen konnten. 2 00:00:07,250 --> 00:00:12,018...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nMeine Eltern hatten nicht viel, was sie mit uns teilen oder uns zur Verfügung stellen konnten.\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nSie konnten es sich nicht leisten mir diese schicken Geräte zu kaufen, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\ndenn sie sind in unserem Land teuer. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nIch heiße Oarabile Mudongo. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nIch komme aus Botswana.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nWir haben keinen Computer in unserem Haus. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nNiemand von uns hat je einen Computer besessen. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nEine Bergbau-Firma in unserer Gemeinde - sie spendete unserer Schule PCs.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nDadurch begann ich mein Interesse für die Benutzung von Computern zu entwickeln.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nI hatte Angst ihn zu berühren, da ich dachte,\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\ndass ich ihn kaputt machen könnte, wenn ich ihn anfasse.\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nWas wäre, wenn ich ihn zerstören würde und ihn bezahlen müsste, \\nund meine Eltern das Geld dafür nicht haben?\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nDurch meinen Hintergrund hatte ich diesen Gedanken immer in meinem Kopf.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nIch sah mich selber als erfolgreich in meinem Leben. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nWir hatten eine AG an der Mittelstufe. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nSie wollten, dass wir eine genaue Untersuchung anstellen um uns in die Forschung zu involvieren, \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nalso nutzte ich die Gelegenheit, um das Internet als Quelle zu nutzen,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\num mehr Informationen zu bekommen. Die meisten Informationen für meine Gruppe, \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\nder Mathematik- und Wissenschaftsaustellungsgruppe, \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\nbekam ich von Wikipedia. \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nUnser Projekt kam auf der regionalen Ebene gut an, \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\nso dass wir es mit unserem Projekt bis zur Bundesebene schafften. \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nIch hörte Gerüchte in der Schule, dass man Wikipedia nicht trauen darf, \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nda Wikipedia keine vertrauenswürdige Quelle sei, die man fürs Recherchieren verwenden könne.\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\nIch war sehr überrascht. \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nWikipedia ist eine offene Quelle, wo jeder seine oder ihre eigenen Ideen einbringen kann \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\nund dann kommt eine andere Person, die diesen Gedanken auszuarbeitet und perfektioniert.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nIch hatte die Mittelstufe bestanden, so dass ich auf die Oberstufe gehen konnte. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nDoch die meisten meiner Freunde hatten es nicht auf die Oberstufe geschafft. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\nVon meiner Hintergrundgeschichte aus, hätte ich \"nein\" sagen müssen.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nIch musste mehr erreichen so dass ich etwas nach Hause bringen konnte um meine Eltern zu unterstützen.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nDie Informationen, die ich mir aus der Wikipedia holte, halfen mir wirklich beim Weiterentwickeln.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nIch schaffte es die Oberstufe zu bestehen, weil die meisten Texte, die ich las, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\ndie meisten Nachforschungen, die ich für die Schule betrieb,\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\ngenau hier von Wikipedia stammen.',\n", + " 'bytes': 3511,\n", + " 'sha1': '62gosr9oq5aaplel4hsix1xm5gw4658',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314795,\n", + " 'timestamp': '2012-12-19T18:31:14Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259291,\n", + " 'title': 'Oarabile Mudongo V1.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 Mis padres no tenían mucho para compartir con nosotros o para proporcionarnos. 2 00:00:07,250 --> 00:00:12,018 Ella no podía ...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nMis padres no tenían mucho para compartir con nosotros o para proporcionarnos.\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nElla no podía y ellos no podían comprarme esos aparatos de moda, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nporque son muy caros en nuestro país. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nMi nombre es Oarabile Mudongo. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nYo vengo de Botswana.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nNosotros no tenemos un computador en nuestra casa. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nNinguno de nosotros tuvo alguna vez un computador. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nUna compañía minera en el municipio - ellos donaron computadores a la escuela.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nFue cuando comencé a desarrollar ese interés por usar el computador.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nEstaba asustado de tocar eso, sabes, porque pensé\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nsi toco esto, ¿Qué pasa si lo echo a perder?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\n¿Qué pasa si lo destruyo y lo tengo que pagar... \\ny mis padres no tienen el dinero para repararlo?\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nDebido a mi educación, tenía esto en mi mente.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nMira, yo me veía a mi mismo siendo exitoso en la vida. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nNosotros teníamos este otro club en la escuela secundaria. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nEllos querían que nos involucráramos en más investigación, haciendo un estudio profundo, \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nasí es que me aproveché de ello\\npara usar Internet como una fuente,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\npara obtener más información, y la mayor parte de la información\\nque obtuve estando en ese grupo - \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\nel grupo de Matemáticas y de la Feria de Ciencias - \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\nme apoyé mucho en Wikipedia, y para compartir contigo, \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nla información que obtuve, a nuestro proyecto le fue bien a nivel del colegio. \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\n<span class=\"mw-translate-fuzzy\">\\nNos presentamos al nivel nacional.\\n</span> \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nEn realidad había oido rumores en la escuela que [decían], bueno... no deberías confiar en Wikipedia, \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nporque Wikipedia - no es una fuente confiable para obtener información para tu investigación,\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\ny me sorprendí mucho. \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nWikipedia es una fuente libre donde cualquiera puede incorporar,\\no expresar su idea. \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\ny luego alguien más viene, y pule\\nesa idea para volverla extraordinaria.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nAprobé, así es que tuve que pasar a terciario. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nLa mayoría de mis amigos no pasaron a terciario. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\ny viéndolo desde mi historia personal, debiese decir no no no.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nYo necesito lograr más, para\\npoder ayudar en mi hogar y a mis padres.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nLa información que tomé de Wikipedia realmente me ayudó a avanzar.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nLogré aprobar, porque la mayoría del material que leí, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\ny la investigación que hice en la escuela,\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\nla obtuve directamente de Wikipedia.',\n", + " 'bytes': 3411,\n", + " 'sha1': 'llltlff30vr4s1i01cgvueqyl3eg68x',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314816,\n", + " 'timestamp': '2012-12-19T18:31:46Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259296,\n", + " 'title': 'Oarabile Mudongo V1.webm.id.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 Orang tua saya tidak memiliki banyak untuk dibagikan kepada kami, atau untuk mencukupi kami. 2 00:00:07,250 --> 00:00:12,018 Be...'\",\n", + " 'text': \"1\\n00:00:00,797 --> 00:00:05,985\\nOrang tua saya tidak memiliki banyak untuk dibagikan kepada kami,\\natau untuk mencukupi kami.\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nBeliau tidak dapat, mereka tidak mampu membelikan saya gawai yang indah, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nkarena gawai mahal di negara kami. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nNama saya Oarabile Mudongo. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nSaya dari Botswana.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nKami tidak punya komputer di rumah. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nTidak satupun dari kami pernah memiliki komputer. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nSebuah perusahaan tambang di kota kami menyumbangkan komputer untuk sekolah kami.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nSejak saat itulah saya mulai tertarik menggunakan komputer.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nSaya takut untuk menyentuhnya, seperti anda ketahui, karena saya pikir\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nJadi, Saya telah menyentuhnya, bagaimana jika saya merusaknya?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nBagaimana jika saya menghancukannya, dan saya harus menggantinya \\ndan orang tua saya tidak punya uang untuk menggantinya?\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nDari latar belakang saya, saya berpikir seperti ini.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nLihatlah, Saya melihat diri saya sendiri sukses. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nKami memiliki klub lain di sekolah pada SMA. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nMereka menginginkan kami terlibat dalam lebih banyak penelitian,\\nmembuat penelitian yang mendalam, \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\njadi saya mengambil keuntungan darinya\\nuntuk menggunakan Internet sebagai sumber saya,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\nuntuk memperoleh lebih banyak informasi, dan sebagian besar informasi\\nyang saya peroleh saat saya berada dalam kelompok itu - \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\nkelompok Matematika dan Sains - \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\nsaya banyak mengandalkan Wikipedia, dan untuk berbagi kepada Anda, \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\ndengan informasi yang saya dapat,\\nproyek kami berjalan dengan baik pada tingkat regional. \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\nKami berlanjut ke tingkat nasional. \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nSaya mendengar kabar baru dari sekolah yang [mengatakan],\\nAnda sebaiknya jangan memercayai Wikipedia, \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nkarena Wikipedia - ini bukan sumber terpercaya\\nuntuk mendapat informasi bagi penelitianmu,\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\ndan saya sangat terkejut. \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nWikipedia adalah sumber terbuka tempat semua orang dapat memasukkan,\\natau memberikan idenya \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\ndan kemudian orang lain datang dan mengkilapkan\\nide itu untuk menjadikannya luar biasa.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nI had passed, so I had to progress to tertiary. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nMost of my friends didn't make it to tertiary. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\ndan melihatnya dari latar belakang, saya harus mengatakan tidak tidak tidak.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nSaya ingin mencapai lebih agar saya dapat\\nmembawa sesuatu ke rumah, membantu orang tua saya.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nInformasi yang telah saya peroleh dari Wikipedia benar-benar membuat saya maju.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nSaya berencana melewatinya, karena semua materi yang telah saya baca, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\npenelitian yang saya buat di sekolah,\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\nsaya telah mendapatkannya di sana dari Wikipedia.\",\n", + " 'bytes': 3516,\n", + " 'sha1': 'f7z9vbb782bzxh87nmn8lw5ll5pkqrt',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314839,\n", + " 'timestamp': '2012-12-19T18:32:22Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259302,\n", + " 'title': 'Oarabile Mudongo V1.webm.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 I miei genitori non avevano molto da condividere con noi o da fornirci. 2 00:00:07,250 --> 00:00:12,018 Non potevano permetters...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nI miei genitori non avevano molto da condividere con noi o da fornirci.\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nNon potevano permettersi di comprarmi quegli aggeggi stravaganti, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nperché costano molto nel nostro Paese. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nMi chiamo Oarabile Mudongo. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nVengo dal Botswana.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nNon abbiamo un computer in casa nostra. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nNessuno di noi ha mai posseduto un computer. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nUna società mineraria del Comune donò dei computer alla nostra scuola.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nFu allora che iniziai a sviluppare interesse nell\\'uso del computer.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nAvevo paura nel toccarlo, sapete, perché avevo pensato:\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\n\"L\\'ho toccato, cosa succede se rovino tutto?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nCosa succede se lo distruggo e devo risarcire \\ne i miei genitori non hanno soldi per risarcire?\".\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nPer via della mia storia personale, pensavo questo.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nVidi la mia vita coronata da successo. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nAl liceo avemmo un altro club scolastico. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nCi vollero coinvolgere in una ricerca approfondita, \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\ncosì ne approfittai per usare Internet come fonte\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\nper ottenere più informazioni, e per la maggior parte delle informazioni che ottenni quando ero nel gruppo \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\n— il gruppo della fiera di matematica e scienze — \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\nmi basai molto su Wikipedia.<!--I don\\'t know how to translate the second part--> \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\n<!--I don\\'t know how to translate the first part-->Il nostro progetto andò bene a livello regionale. \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\nAndammo al livello nazionale. \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nUdii delle dicerie a scuola che dicevano: \"Non dovresti fidarti di Wikipedia, \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nperché Wikipedia non è una fonte attendibile per ottenere informazioni per la tua ricerca\"\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\ne fui molto sorpreso. \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nWikipedia è una fonte aperta dove tutti possono lanciare la loro idea \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\ne poi qualcun altro viene e la affina per renderla perfetta.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nEro passato, quindi dovevo andare all\\'università. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nLa maggior parte dei miei amici non arrivarono all\\'università. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\nPer via della mia storia personale, dovetti dire di no.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nDevo raggiungere di più per portare qualcosa a casa e aiutare i miei genitori.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nLe informazioni che ho appreso da Wikipedia mi hanno davvero fatto avanzare.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nRiuscii a passare, perché la maggior parte dei materiali che lessi, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\nla ricerca che ho fatto a scuola,\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\nli ottenni da Wikipedia.',\n", + " 'bytes': 3241,\n", + " 'sha1': 'mz5unixzecmiv94300io358sjen1kyf',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314898,\n", + " 'timestamp': '2012-12-19T18:33:09Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259327,\n", + " 'title': 'Oarabile Mudongo V1.webm.ml.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 എന്റെ അച്ഛനമ്മമാർക്ക് ഞങ്ങളുമായി പങ്കുവയ്ക്ക...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nഎന്റെ അച്ഛനമ്മമാർക്ക് ഞങ്ങളുമായി പങ്കുവയ്ക്കാനോ, ഞങ്ങൾക്ക് തരാനോ ഒന്നുമുണ്ടായിരുന്നില്ല.\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nഞങ്ങൾക്ക് ആഡംബര ഉപകരണങ്ങൾ വാങ്ങിത്തരാനുള്ള കെൽപ്പ് അവർക്കുണ്ടായിരുന്നില്ല, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nകാരണം ഞങ്ങളുടെ രാജ്യത്ത് അവയ്ക്ക് ഭീമമായ വിലയായിരുന്നു. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nഎന്റെ പേര് ഒറാബിൽ മുഡൊങ്കോ എന്നാണ്. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nഞാൻ ബോത്സ്വാനയിൽ നിന്നും വരുന്നു.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nഞങ്ങളുടെ വീട്ടിൽ കമ്പ്യൂട്ടറില്ല. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nനാട്ടുകാരാരും ഇതുവരെയും കമ്പ്യൂട്ടർ വാങ്ങിച്ചിട്ടുമില്ല. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nപട്ടണത്തിലെ ഒരു ഖനന കമ്പനി ഞങ്ങളുടെ സ്കൂളിലേക്ക് കമ്പ്യൂട്ടർ സംഭാവന ചെയ്തു.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nഅങ്ങനെയാണ് എനിക്ക് കമ്പ്യൂട്ടർ ഉപയോഗിക്കുന്നതിൽ ആസക്തി ഉണ്ടായത്.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nഅത് തൊട്ടുനോക്കാൻ എനിക്ക് പേടിയായിരുന്നു, കാരണം എന്റെ ആശങ്ക,\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nഞാൻ തൊട്ടാൽ അതു കേടുവന്നാലോ എന്നതായിരുന്നു.\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nഅതു കേടുവരുത്തിയാൽ അതിനുള്ള പണം ഞാൻ തിരിച്ചടയ്ക്കേണ്ടി വരും, \\nഎന്നാൽ അത്രയും പണം എന്റെ മാതാപിതാക്കൾക്ക് ഇല്ലായിരുന്നല്ലോ?\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nഎന്റെ സാമൂഹികസ്ഥിതി വച്ചു നോക്കുമ്പോൾ, ഈ ചിന്തയാണ് എന്റെ മനസിലേക്ക് ആദ്യം വന്നത്.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nഞാൻ സ്വന്തം വിജയം സങ്കൽപ്പിച്ചു. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nഹൈസ്കൂളിൽ ഞങ്ങൾക്കൊരു ക്ലബ്ബുണ്ടായിരുന്നു. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nക്ലബ്ബ് അംഗങ്ങൾ വളരെ ആഴത്തിലുള്ള ഗവേഷണങ്ങൾ നടത്തണമായിരുന്നു. \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nഞാൻ ഈ അവസരം പ്രയോജനപ്പെടുത്തി, ഇന്റർനെറ്റിനെ എന്റെ വിജ്ഞാനസ്രോതസ്സായി ഉപയോഗിച്ച്,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\nഅധികവിവരങ്ങൾ ലഭിക്കാനായി, ഇന്ന ഗ്രൂപ്പിൽ ചേർന്നപ്പോഴാണ് എനിക്ക് കൂടുതൽ വിവരങ്ങളും ലഭിച്ചിരുന്നത് - \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\nഗണിത, ശാസ്ത്ര ഗ്രൂപ്പ് - \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\nഞാൻ വിക്കിപീഡിയയെ വളരെയധികം ആശ്രയിച്ചു, നിങ്ങളോട് ഇതും പറയട്ടെ, \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nകിട്ടിയ വിവരങ്ങൾ വച്ച് ചെയ്ത ഞങ്ങളുടെ പ്രൊജക്റ്റ് പ്രാദേശിക മത്സരത്തിൽ നല്ല പ്രകടനം കാഴ്ചവച്ചു. \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\nഅങ്ങനെ ഞങ്ങൾക്ക് ദേശീയ മത്സരത്തിൽ പങ്കെടുക്കാനായി. \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nവിക്കിപീഡിയയെ പൂർണ്ണമായും വിശ്വസിക്കാൻ പാടില്ല എന്ന ഊഹാപോഹം ഞങ്ങളുടെ വിദ്യാലയത്തിൽ ഉണ്ടായിരുന്നു. \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nകാരണം വിക്കിപീഡിയ ഗവേഷണങ്ങൾക്കു വേണ്ട വിവരങ്ങൾ ലഭിക്കാനുള്ള ഒരു ആധികാരികമായ വിജ്ഞാന സ്രോതസ്സല്ലത്രെ.\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\nഎനിക്ക് വളരെയധികം അദ്ഭുതം തോന്നി. \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nഎല്ലാവർക്കും തങ്ങളുടെ ആശയങ്ങൾ ചേർക്കാൻ കഴിയുന്ന സ്വതന്ത്ര വിജ്ഞാനകോശമാണ് വിക്കിപീഡിയ. \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\nപിന്നീട് മറ്റൊരാൾ വന്ന് അത് മിനുക്കി ഗുണമേന്മ കൂടിയതാക്കുന്നു.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nഞാൻ പരീക്ഷയിൽ വിജയിച്ചു, ഉപരിപഠനത്തിനു ചേരുകയും ചെയ്തു. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nഎന്റെ ഭൂരിഭാഗം സുഹൃത്തുക്കൾക്കും ഉപരിപഠനത്തിനു ചേരാനായില്ല. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\nഎന്റെ സാമൂഹിക സ്ഥിതി വെച്ചു നോക്കുമ്പോൾ എനിക്കിത് വിശ്വസിക്കാനേ പറ്റുന്നില്ല.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nഎന്റെ മാതാപിതാക്കളെ സഹായിക്കാനും, വീട്ടിലേക്ക് സാധനങ്ങൾ വാങ്ങിക്കാനും എനിക്ക് ഇനിയും കൂടുതൽ കാര്യങ്ങൾ നേടേണ്ടതുണ്ട്.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nവിക്കിപീഡിയയിൽ നിന്ന് ഞാൻ അർജ്ജിച്ച വിജ്ഞാനം എന്നെ മുന്നോട്ടുള്ള യാത്രയിൽ ഒരുപാട് സഹായിച്ചിട്ടുണ്ട്.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nഎനിക്ക് പരീക്ഷയിൽ വിജയിക്കാൻ പറ്റിയെങ്കിൽ, അത് എന്റെ വായനാശീലം കൊണ്ടാണ്, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\nഞാൻ സ്കൂളിൽ നടത്തിയ ഗവേഷണങ്ങൾക്കു വേണ്ടി\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\nഞാൻ വായിച്ചത് വിക്കിപീഡിയയാണ്.',\n", + " 'bytes': 7603,\n", + " 'sha1': '1y6zz65q96365rsofmrjfd24vij85gd',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 219460683,\n", + " 'timestamp': '2016-11-25T18:19:14Z',\n", + " 'user': {'id': 2672346, 'text': 'Svensson1'},\n", + " 'page': {'id': 23259333,\n", + " 'title': 'Oarabile Mudongo V1.webm.pms.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1\\n00:00:00,797 --> 00:00:05,985\\nIj mè a l'avìo pa tant da condivide con noiàutr, o da dene.\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nChila a podìa pa, lor a podìo pa përmëttse ëd cateme coj dròlo oget, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\npërchè a costavo tant an nòst paìs. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nIm ciamo Oarabile Mudongo. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nI veno dal Botswana.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nI l'oma pa un calcolador a nòsta ca. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nGnun ëd noiàutr a l'ha mai avù un calcolador. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nNa società mineraria ant la sità - lor a l'han donà dij calcolador a nòsta scòla.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nA l'é stàit antlora che i l'heu ancaminà a dësvilupé l'anteresse a dovré ël calcolador.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nI l'avìa por ëd tochelo, it sas, përché i l'avìa pensà\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nParèj, i l'heu tocalo, còs se i lo ancasin-o?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nCòs se i lo rumpo, e i deuv paghelo \\ne i mè a l'han pa ëd sòld për paghelo?\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nDa mia part, i l'avìa sòn an mia ment.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nI penso d'avèj sucess ant la vita. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nNòi i l'oma sto àutr club a scòla ant le scòle superior. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nLor a vorìo che noi i fusso coinvòlt an pi arserche, an fasend arserche profonde, \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nparej i l'heu pijà un vantagi ëd lòn për dovré la Ragnà com mia sorziss,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\nper pijé pi anformassion, e la pi part dl'anformassion che i l'heu pijà quand i j'era an cola echip, \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\nl'echip Fera dla Mateca e dla Siensa \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\ni l'heu fàit afidament motobin dzor Wikipedia, e për condivide con voi, \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nl'anformassion ch'i l'heu pijà, nòst proget a l'ha andàit bin a livel regional. \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\nI l'oma avansà a livel nassional. \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nI l'heu sentì dle vos ultimament ant la scòla ch'a [diso] bin, it dovrìe pa fé afidament dzor Wikipedia, \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\npërché Wikipedia - a l'é pa na sorziss afidabla për pijé anformassion për toa arserca,\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\ne i son stàit motobin sorprèis, \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nWikipedia a l'é na sorziss duverta anté mincadun a peul anserì o buté soa ideja, \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\na peui cheidun àutr a riva e a travaja dzora a cola ideja për fela superba.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nI l'heu passà, parèj e deuv andé al tërsiari. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nVàire dij mè amis a faran pa ël tërsiari, \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\ne vardand a lòn da mia part, i deuvo dì nò nò nò.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nI veui fé ëd pi an manera da podèj porté quaicòs a ca, giuté ij mè.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nL'anformassion che i l'heu pijà da Wikipedia a l'ha pròpi fame andé anans.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nI l'heu travajà për passé, përchè la pi part dël material ch'i l'heu lesù, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\nl'arserca ch'i l'heu fàit a scòla,\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\ni l'heu pijalo mach sì da Wikipedia.\",\n", + " 'bytes': 3376,\n", + " 'sha1': 'mj4d4qy4de5tmlqw9c9im17sdbmpnak',\n", + " 'parent_id': 85314941,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314962,\n", + " 'timestamp': '2012-12-19T18:34:40Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259341,\n", + " 'title': 'Oarabile Mudongo V1.webm.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 Os meus pais não tinham muito para partilhar connosco, ou para nos dar... 2 00:00:07,250 --> 00:00:12,018 Ela não podia, eles...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nOs meus pais não tinham muito para partilhar connosco, ou para nos dar...\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nEla não podia, eles não podiam comprar-me todos aqueles brinquedos, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nporque são muito caros no nosso país. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nO meu nome é Oarabile Mudongo. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nVenho do Botswana.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nNós não tínhamos um computador em casa. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nNunca tivemos um computador nosso. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nUma empresa mineira da nossa zona - doaram computadores à nossa escola.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nFoi nessa altura que eu comecei a desenvolver o bichinho dos computadores.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nEu tinha medo de lhe tocar, porque passava pela minha cabeça...\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nBem, mexi-lhe, e se eu o estrago?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nE se eu o destruo, e tenho que o pagar \\ne os meus pais não têm dinheiro para o fazer?\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nNo fundo, era isto que me passava pela cabeça.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nVia-me a ser bem sucedido na vida. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nTínhamos outro clube na nossa escola. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nEles queriam que nos envolvêssemos mais na pesquisa, que fizessemos uma pesquisa mais profunda, \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\npara que aproveitássemos a vantagem de usar a Internet como fonte,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\npara obter mais informação, e muita da informação que eu tive quando eu estive nesses grupo - \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\n- o grupo da Feira da Matemática e Ciências - \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\neu apoiei-me muito na Wikipedia, e para vos ser sincero, \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\ncom essa informação, chegamos com o projecto ao nível regional. \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\nProgredimos para o nível nacional. \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nEu ouvi rumores na escola que diziam, não devíamos confiar na Wikipedia, \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nporque não era uma fonte segura para obter informação para as nossas pesquisas,\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\ne fiquei muito surpreendido. \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nWikipedia é uma fonte publica onde todos podemos opinar, ou incluir as nossas ideias \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\ne vem alguém que pega nela e a faz progredir até ficar soberba.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nEu progredi, e passei para o terciário. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nA maior parte dos meus amigos não chegaram ao terciário. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\nE fazendo uma retrospectiva, eu tenho que dizer não não não.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nEu tenho que alcançar mais para que possa levar mais para casa, ajudar os meus pais.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nA informação que colhi da Wikipedia fizeram-me evoluir.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nEu consegui progredir, acima de tudo porque a maioria dos materiais que eu leio, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\nas pesqusas que fiz na escola,\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\neu consegui-as aqui, na Wikipedia.',\n", + " 'bytes': 3233,\n", + " 'sha1': 'glfzruvtncd6zl9abfv0a0au81015v4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314992,\n", + " 'timestamp': '2012-12-19T18:35:07Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259347,\n", + " 'title': 'Oarabile Mudongo V1.webm.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 Мои родители немногим могли поделиться с нами или обеспечить нас. 2 00:0...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nМои родители немногим могли поделиться с нами или обеспечить нас.\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nОни были не в состоянии, им была недоступна покупка для меня этих привлекательных приспособлений, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nпотому что они дорогие в нашей стране. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nМеня зовут Оарабил Мудонго. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nЯ родом из Ботсваны.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nУ нас нет компьютера в доме. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nНикто из нас никогда не владел компьютером. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nМинералодобывающая компания в нашем городке - она подарила компьютеры в нашу школу.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nЭто тогда у меня начал развиваться интерес к пользованию компьютером.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nМне страшно было прикоснуться к нему, потому что думалось\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nВот, я прикоснусь к нему, а что, если я его поврежу?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nА что, если я разрушу его и мне будет предстоять возмещать его стоимость \\nа у моих родителей нет денег выплатить за это?\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nИсходя из моего кругозора, это было в моей голове.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nВы видите, я представлял, что добьюсь успеха в жизни. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nУ нас в средней школе был этот дополнительный школьный клуб. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nОни хотели, чтобы мы больше оказались вовлечены в исследование, проводя углублённое исследование, \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nпоэтому я воспользовался тем преимуществом, чтобы воспользоваться интернетом как моим источником,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\nчтобы добыть больше информации, и большую часть информации я получил, когда был в той группе - \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\nгруппе математики и справедливой науки - \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\nЯ сильно полагался на Википедию, на то, чтобы поделиться с вами \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nтой информацией, которую добыл, наш проект был успешным на местном уровне. \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\nМы подвинулись до национального уровня. \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nУже в школе меня достигали слухи, которые гласили, что, мол, не следует доверять Википедии, \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nпотому, что Википедия, мол, - ненадёжный источник для того, чтобы получать информацию для вашего исследования,\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\nи я был очень удивлён. \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nВикипедия - это открытый источник, в который все могут внести вклад или подбросить его/её идею \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\nа позже кто-то ещё придёт и отполирует эту идею, сделав её великолепной.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nЯ прошёл, и потому должен был продвигаться до высшего образования. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nБольшинству моих друзей высшее образование осталось недоступным. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\nи исходя из своего жизненного опыта, я должен сказать \"нет, нет, нет\".\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nМне нужно достичь больше, чтобы я смог что-нибудь принести домой, помочь моим родителям.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nТа информация, которую я почерпнул из Википедии, действительно продвинула меня вперёд.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nЯ умудрился выдержать испытания, потому что большинство материалов, которые я прочёл, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\nто исследование, которое я выполнил в школе,\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\nя получил прямо здесь, из Википедии.',\n", + " 'bytes': 5421,\n", + " 'sha1': 'ttggawi3zwojahy5mdw6wzp768lpttk',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315010,\n", + " 'timestamp': '2012-12-19T18:35:40Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259352,\n", + " 'title': 'Oarabile Mudongo V1.webm.uk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 Мої батьки не мали чим з нами поділитися й що нам дати 2 00:00:07,250 --> 00:00:12,0...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nМої батьки не мали чим з нами поділитися й що нам дати\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nВона не могла, вони не в змозі були купити мені ці модні пристрої, ці гаджети, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nбо вони в нашій країні досить дорогі \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nМене звати Оарабіл Мудонго \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nЯ з Ботсвани.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nУ нас вдома нема комп\\'ютера. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nНіхто з нас комп\\'ютера не має \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nМісцева гірнича компанія подарувала комп\\'ютери в нашу школу\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nІ тому я почав розвивати інтерес до використання комп\\'ютера\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nСтрашно було торкатися до цього, знаєте, бо думалося\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nщо як я торкнуся й зіпсую все?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nщо як усе зруйную й потім доведеться вішкодовувати? \\nі мої батьки не матимуть грошей відшкодувати за це?\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nтак думалося зогляду на мій життєвий досвід\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nЯсказав(сказала) собі, що буду успішним (усішною) в житті \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nУ нас був шкільний клуб у старшій школі \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nВони хотіли аби ми більше були залучені до досліджень, роблячи більш глибокі дослідження \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nто я використав (ла) перевагу використання інтернету як джерела\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\nщоби мати більше інформації, і більшість інформації була одержана протягом перебування в тій групі \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\nв групі з математики і правдивої науки \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\nя покладався на Вікіпедію й щоби поділитися з вами \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nінформацією, яку одержав, наш проект це зробив добре на місцевому рівні \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\nМи досягли національного рівня \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nВ школі кажуть, що ви не повинні довіряти Вікіпедії, \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nбо Вікіпедія - ненадійне джерело інформації для вашого дослідження\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\nі це мене дуже здивувало \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nВікіпедія - це відкрите джерело, де кожен може війти, або закинути свої ідеї \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\nі хтось іще прийде відполірувати цю ідею й зробити її довершеною.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nЯ це пройшов (пройшла) бо мушу прогресувати до вищої освіти \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nБільшість моїх друзів не змогли досягти вищої освіти. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\nі дивлячись на це, виходячи зі свого досвіду, мушу сказати \"ні, ні й ще раз ні\".\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nЯ мушу досягти більшого, щоби змогти більше принести додому й допомогти своїм батькам.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nІнформація, яку вдалося вхопити в Вікіпедії реально просунула мене вперед.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nЯ переміг (перемогла), бо більшість матеріалів, мою прочитаних \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\nдосліджень, зроблених у школі\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\nмною було взято звідси, з Вікіпедії',\n", + " 'bytes': 4714,\n", + " 'sha1': '9nol6vbnkye5s92y2k5om12q65rw817',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315042,\n", + " 'timestamp': '2012-12-19T18:36:13Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259363,\n", + " 'title': 'Oarabile Mudongo V1.webm.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 我父母没有什么太多的东西能分享或提供给我。 2 00:00:07,250 --> 00:00:12,018 她无力,他们无力给我...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\n我父母没有什么太多的东西能分享或提供给我。\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\n她无力,他们无力给我买那些花哨的小工具。 \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\n因为在我们的国家这些东西价格高昂。 \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\n我的名字叫,叫奥拉比莱·穆东戈。 \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\n我来自博茨瓦纳。\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\n我们家里没有计算机。 \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\n我们从来没有人拥有过电脑 \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\n我们镇上的一家矿业公司像我们的学校捐了一些电脑\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\n然后我开始发展自己使用电脑的兴趣\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\n我开始触碰电脑时很害怕,你知道\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\n如果我把电脑弄坏了怎么办?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\n如果我把它弄坏了,我就得赔钱 \\n我父母可没有钱来赔电脑\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\n从我的背景来看,我脑海里有这样的想法。\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\n看,我看见自己人生成功。 \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\n我们学校,高中有这个俱乐部。 \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\n他们希望我们能够参与更多的研究,作深入的研究。 \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\n所以,我利用了优势,用互联网作为我的来源。\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\n获得更多的信息,大多数我得到的信息是我在那个小组的时候—— \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\n数学和科学公平小组—— \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\n我非常依赖维基百科,并与大家分享, \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\n我得到的信息,我们的项目在地区级别很成功。 \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\n我们一直进行到国家级别。 \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\n我在学校听到谣言[说],嗯,你不应该信任维基百科。 \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\n因为维基百科——它不是你做研究可信赖的信息来源。\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\n我感到非常惊讶。 \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\n维基百科是开源的,每个人都可以输入,或者扔进他或她的想法 \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\n接着其他人会跟着完善这个想法,以至精湛。\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\n我通过了,所以我得进展到高等教育。 \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\n我的许多朋友都没能接受高等教育。 \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\n从背景来看这个现象,我不得不说不不不。\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\n我需要做的更多,以致我可以给家里带来点什么,帮助我的父母。\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\n我从维基百科所了解到的信息真的让我向前迈进。\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\n由于大多数我读过的资料,我成功的通过了, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\n我在学校完成的研究,\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\n维基百科让我完成了这些。',\n", + " 'bytes': 3104,\n", + " 'sha1': '3d4hy79174m1tkdsew6tc2py4wt8cle',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315140,\n", + " 'timestamp': '2012-12-19T18:38:32Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259383,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.ar.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 أنا مدرس للغة الإنكليزية. أنا متزوج ولدي ابنة. 2 00:00:05,200 --> 00:00:13,587 أنا أع...'\",\n", + " 'text': '1\\n00:00:00,500 --> 00:00:04,497\\nأنا مدرس للغة الإنكليزية. أنا متزوج ولدي ابنة.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nأنا أعمل مثل أي شخص آخر. لدي جدول عمل. أذهب للعمل وأعود إلى البيت.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nكما أنه لدي احتياجات مثل أي شخص آخر، كما أريد أيضا أن أمضي وقت فراغي على ويكيبيديا.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nاسمي إرلان فيغا، وأنا من لا بيز، بوليفيا.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nأكتب حول أشياء متنوعة، معظمها أشياء آمنة مثل : الفراشات، الحشرات، والحيوانات.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nفي نظامي التعليمي، فإن الأشخاص عادة لا يكتبون. هم لا يكتبون، ولا ينشؤون.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nإنهم يتلقون المعلومات فقط، ويفترض عليهم أن يحفظوا تلك المعلومات ويمتحنون بها.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nويقومون بسؤالك عنها، وذلك ليس بالشيء الجيد. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nذلك يحصل في نهاية الفصل الدراسي، \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nيطلبون منك أن تكتب شيئا، مقالة، ورقة بحث، أو شيء ما، وتكون أنت في ورطة لأنها ستكون المرة الأولى الذي تقوم بذلك.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nإن منح شخص ما فرصة أن يكون مبدعا وأن يعترف بإنجازه لشيء ما هو شيء عظيم حقا. \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\nلقد كانت نقطة انعطاف في حياتي.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nبدأ كل شيء مع لحظة ذهابي إلى ويكاموس، قاموس ويكيبيديا، وذلك في أحد الأيام، \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\nوقابلت تلك الفتاة، Dabawdygirl. لقد كنا نصون الموقع من التخريب في ذلك الوقت. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nوقالت لي بأنها كانت تحاول الرد باللغة الإسبانية، وكانت لغتها الإسبانية ليست جيدة كثيرا في ذلك الوقت. \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nلذلك كان بيننا نوع من الاتفاق غير المكتوب : بان أعلمها أنا الإسبانية، وأن تعلمني هي اللغة الإنكليزية.\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nوقمنا بتصحيح الواحد للآخر، وتعلمنا اللغة عن طريق تحرير ويكاموس باللغتين الإنكليزية والإسبانية.\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nمن ناحيتي فإن لغتي الإنكليزية أصبحت جيدة جدا لأني قمت بالتدريب كل يوم.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nومع ذلك الوقت انتهيت في دراستي للغة الإنكليزية \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\nواجتزت امتحان ECP للقبول والذي كان من المتطلبات للمدرسين. وبمجرد أن أنهيت دراستي قاموا بتعييني فورا، \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nلأن علاماتي، على ما اظن، كان عالية وملائمة للتدريس.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nوبدؤوا ببعض التدريب، وأنا أعمل هناك منذ خمس سنوات الآن.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nوهذا شيء رائع، لأنه بسبب ذلك فأنا في وضع مستقر الأن، كما وأني تزوجت أيضا. لدي ابنة، ولذلك فإن ويكيبيديا هي حياتي.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nالمخرج : فيكتور غريغاس \\nمخرج مساعد : ديفيد غروسمان \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nالمنتج : زاك إكسيلي\\nمدير التصوير : بروت واي. ألين \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nتصوير فيديو : جاك هاريس، آدام بار، ماثيو ستورك \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nتصوير ثابت : أدم نوفاك، كارين ساير\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nمكياج : ميليسا كلاين\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nالمقابلات : ألما تشابا، جوناثان كوريل، ستيفين غير، دان ماك-سوين، كوري أوبرين، فرانك أوبرين، جاكوب ويلسون \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nمساعدو الإخراج : ميغان هيرنانديز، بريوني جونز، بياتريس سبرينغبورن \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nمساعدو الإخراج : توبي هيسناوير، كريستين ريغسبي\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nمساعدو الإخراج : توبي هيسناوير، كريستين ريغسبي\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nالكاتب : ديسيرينا بوكوفيتش\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nخدمات النصوص : كاتي أليو، ميشيل بياتيه، كارين كالير، بيترو ليغ، ميمي لي، جاك باستور، كريستي روبينسون، بريتاني تورنير، سوسان والينغ\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nالنص باللغة الإنكليزية : آلان كيلي فيرباتيم\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]',\n", + " 'bytes': 5488,\n", + " 'sha1': 'd3kmauoqir3zfl0rl5s50d6q4dqydxq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315171,\n", + " 'timestamp': '2012-12-19T18:39:07Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259386,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.da.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 Jeg er engelsklærer. Jeg er gift. Jeg har en datter. 2 00:00:05,200 --> 00:00:13,587 Og jeg arbejder ret meget som andre gør....'\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:04,497\\nJeg er engelsklærer. Jeg er gift. Jeg har en datter.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nOg jeg arbejder ret meget som andre gør. Jeg har et skema. Jeg tager på arbejde. Jeg tager hjem.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nOg jeg har behov som alle andre, og jeg ønsker også at bruge min frie tid på wikipedia.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nJeg er Erlan Vega. Jeg er fra La Paz, Bolivia.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nJeg skriver om forskellige ting, for det meste sikre ting: sommerfugle, insekter, dyr.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nI mit uddannelsessystem skriver folk almindeligvis ikke. De skriver ikke. De skaber ikke.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nDe modtager bare information, og de forventes at huske det, og så skal de til eksamen.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nOg de spørger én om det, men det er ikke godt. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nDet er sådan, når de beder dig ved afslutningen af et forløb \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nom at skrive noget, en artikel, en afhandling eller lignende, så er man virkelig i vanskeligheder, for man har aldrig gjort det [før].\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nOg når man giver en person mulighed for at være kreativ og at få anerkendelse for noget, som de skriver, er det virkelig -- \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\ndet har været et vendepunkt i mit liv.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nAlting begyndte, da jeg en dag gik til wiktionary, wikipedias ordbog, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\nog jeg mødte den her pige, Dabawdygirl //. Vi bekæmpede en vandal på det tidspunkt. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nOg hun sagde -- hun prøvede at svare på spansk, og jeg ved at hendes spansk var noget usikkert på det tidspunkt, \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nså vi lavede en slags uskreven aftale: Jeg lærer dig spansk, og du lærer mig engelsk.\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nOg vi rettede hinanden, og vi lærte sproget ved at redigere på engelsk og på spansk wiktionary\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nOg til slut blev mit engelsk så meget bedre, fordi jeg øvede mig hver dag.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nSå da jeg afsluttede mine engelskstudier \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\nbestod jeg ECP adgangsprøven, som er et krav til lærere, netop som jeg sluttede mine studier, og de ansatte mig lige på stedet, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nfordi mine resultater var gode nok til at undervise, vil jeg tro.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nOg så indledte de noget træning, og jeg har arbejdet der i fem år nu.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nDet er forbavsende, at på grund af det har jeg fået ro til at blive gift. Jeg har en datter, så wikipedia har ændret mit liv.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nInstruktør: Victor Grigas \\nMedinstruktør: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nProducent: Zack Exley\\nFotografisk leder: Pruitt Y. Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nVideo fotografer: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nPortrætfotografer: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nMakeup: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nInterviewere: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nProduktionskoordinatorer: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nProduktionsassistenter: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nProduktionsassistenter: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nSkribent: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nTranskriptionstjenester: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nEngelske faste overskrifter: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 4027,\n", + " 'sha1': 'nc8w5cwz1xv21ttx60a4bhun3cl8oqh',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315193,\n", + " 'timestamp': '2012-12-19T18:39:30Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259397,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 Ich bin Englischlehrer. Ich bin verheiratet. Ich habe eine Tochter. 2 00:00:05,200 --> 00:00:13,587 Und ich arbeite in etwa wie...'\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:04,497\\nIch bin Englischlehrer. Ich bin verheiratet. Ich habe eine Tochter.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nUnd ich arbeite in etwa wie jeder andere. Ich habe einen Zeitplan. Ich gehe zur Arbeit und ich gehe zurück.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nUnd ich habe Bedürfnisse wie jeder andere und ich möchte auch meine Freizeit auf Wikipedia verbringen.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nIch bin Erlan Vega. Ich komme aus La Paz in Bolivien.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nIch schreibe über verschiedene Dinge, zumeist ungefährliche Sachen: Schmetterlinge, Insekten, Tiere.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nIn meinem Bildungswesen schreiben die Leute normalerweise nicht. Sie schreiben nicht. Sie erstellen nicht.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nSie erhalten nur Informationen und sollen diese dann speichern, danach werden sie abgefragt.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nUnd dann fragen sie einen darüber und das ist so nicht in Ordnung. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nEs ist, als wenn Du am Ende eines Kurses \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\ngebeten wirst, etwas zu schreiben, einen Artikel, eine Abhandlung oder etwas ähnliches und man sich dann in einer komischen Situation befindet, weil man es bisher noch nie gemacht hat.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nEiner Person die Möglichkeit zu geben kreativ zu sein und bemerkt zu werden durch etwas das sie Verfassen ist wirklich -- \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\ndas war ein echter Wendepunkt in meinem Leben.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nAlles begann als ich eines Tages Wiktionary besuchte, das Wörterbuch der Wikipedia, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\nund ich dort dieses Mädchen traf, Dabawdygirl //. Wir führten zu dieser Zeit einen Vandalismus. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nUnd sie sagte -- sie versuchte auf Spanisch zu antworten und ich weiß dass ihr Spanisch zu dieser Zeit etwas unsicher war, \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\ndaher schlossen wir etwas wie einen ungeschriebenen Vertrag: Ich lehre dir Spanisch und die lehrst mich Englisch.\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nUnd wir korrigierten einander und wir lernten die Sprache durch die Mitarbeit in Wiktionary in Englisch und Spanisch.\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nUnd schlussendlich wurde mein Englisch besser, weil ich es jeden Tag übte.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nDann schloss ich meine Englischstudien ab. \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\nIch legte den ECP Eingangstest ab, der eine Voraussetzung für Lehrer ist, gerade als ich meine Studien beendete, und man stellte mich umgehend ein, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nweil meine Punktzahlen hoch genug waren, denke ich, um zu unterrichten.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nDann begannen sie mit einigen Übungen und ich arbeite dort seit mittlerweile fünf Jahren.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nDas ist toll, da ich dadurch standfest geworden bin, ich heiratete. Ich habe eine Tochter, Wikipedia hat also mein Leben verändert.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nRegisseur: Victor Grigas \\nRegisseurassistent: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nProduzent: Zack Exley\\nAufnahmeleiter: Pruitt Y. Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nKameramänner: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nPortraitfotografen: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nMakeup: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nInterviewer: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nProduktionskoordinatoren: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nProduktionsassistenten: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nProduktionsassistenten: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nVerfasser: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nTranskription-Service: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nEnglische Untertitel: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 4270,\n", + " 'sha1': 'k51nyd66c090z0m5p1p0e0ya9ggslji',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315227,\n", + " 'timestamp': '2012-12-19T18:40:23Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259406,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '<languages/> 1 00:00:00,500 --> 00:00:04,497 Yo soy un profesor de inglés. Estoy casado. Y tengo una hija. 2 00:00:05,200 --> 00:00:13,587 Lo cierto es que tr...'\",\n", + " 'text': \"<languages/>\\n1\\n00:00:00,500 --> 00:00:04,497\\nYo soy un profesor de inglés. Estoy casado. Y tengo una hija.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nLo cierto es que trabajo como los demás. Tengo\\nun horario. Voy al trabajo. Y regreso.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nTengo necesidades como los demás, y también\\nquiero usar mi tiempo libre en Wikipedia.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nMi nombre es Erlan Vega. Soy de La Paz, Bolivia.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nEscribo sobre cosas diferentes, la mayoría de las veces sobre cosas seguras: mariposas, insectos, animales.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nEn mi sistema educacional, la gente comunemente no escribe. Ellos no escriben. Ellos no crean.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nEllos solo reciben información, que supuestamente deben\\nmemorizar y luego tienen una prueba.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nLuego te preguntan sobre ello, pero no es una cosa buena. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nEs como cuando al final de un curso, \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nte piden que escribas algo, un artículo, un ensayo, o algo,\\ny estás realmente en problemas porque nunca lo has hecho antes.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nY darle la oportunidad a una persona de ser creativa y de\\nser reconocido por algo que escriben es realmente -- \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\nrealmente ha sido un vuelco en mi vida.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nTodo comenzó cuando un día entré al Wikcionario, el diccionario de Wikipedia, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\ny encontré a esta niña, Dabawdygirl //. Estábamos\\npeleando contra un vándalo esa vez. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nY me dijo -- ella trató de contestarme en español, y yo\\nme pude dar cuenta de que su español era un poco débil en ese entonces, \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nasí es que hicimos una suerte de acuerdo tácito: Yo\\nte enseño español, y tu me enseñas inglés.\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nY nos corregimos mutuamente, y aprendimos el idioma\\neditanto en el Wikcionario en inglés, y en español.\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nY al final mi inglés se volvió mucho mejor, porque practicaba todos los días.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nEntonces, para cuando finalicé mis estudios de inglés. \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\nYo pasé la prueba de admisión ECP, la cual es un requerimiento para profesores\\nque han finalizado sus estudios, y me contrataron inmediatamente, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nporque mi puntaje, creo, era lo suficientemente alto como para enseñar.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nY luego comencé un entrenamiento, y he\\nestado trabajando ahí por cinco años.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nEs sorprendente porque por eso tengo estabilidad, me casé.\\nTengo una hija, así es que Wikipedia ha cambiado mi vida.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nDirector: Victor Grigas \\nAsistente de dirección: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nProductor: Zack Exley\\nDirector de fotografía: Pruitt Y. Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nFotógrafos de Vídeos: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nFotógrafos de Retratos: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nMaquillaje: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nEntrevistadores: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nCoordinadores de Producción: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nAsistentes de Producción: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nAsistente de Producción: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nEscritos: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nServicios de transcripción: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nSubtítulos en inglés: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 4150,\n", + " 'sha1': 'iwizq85o83adx52bobssle1ekwivycc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315259,\n", + " 'timestamp': '2012-12-19T18:41:05Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259416,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.id.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 Saya adalah guru Bahasa Inggris. Saya telah menikah. Saya memiliki seorang anak perempuan. 2 00:00:05,200 --> 00:00:13,587 Dan ...'\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:04,497\\nSaya adalah guru Bahasa Inggris. Saya telah menikah. Saya memiliki seorang anak perempuan.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nDan saya bekerja, sama seperti orang lain. Saya memiliki\\njadwal. Saya pergi bekerja. Saya pulang.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nDan saya memiliki kebutuhan seperti setiap orang lainnya, dan saya\\njuga ingin menghabiskan waktu luang saya di Wikipedia.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nSaya adalah Erlan Vega. Saya berasal dari La Paz, Bolivia.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nSaya menulis tentang hal-hal berbeda, kebanyakan hal-hal yang aman:\\nkupu-kupu, serangga, hewan.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nDalam sistem pendidikan saya, orang tidak biasanya menulis.\\nMereka tidak menulis. Mereka tidak menciptakan.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nMereka baru menerima informasi, dan mereka harus\\nmengingatnya, lalu mereka menjalani ujian.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nMereka bertanya kepadamu tentang hal itu meski tidak baik. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nRasanya seperti ketika di akhir kursus, \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nmereka memintamu menulis sesuatu, sebuah artikel, karya, atau sesuatu\\ndan kamu benar-benar bermasalah karena belum pernah melakukannya.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nMemberikan seseorang kesempatan menjadi kreatif dan\\ndiakui atas sesuatu yang mereka tulis itu rasanya -- \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\nbenar-benar menjadi titik balik kehidupan saya.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nSemua berawal ketika saya membuka Wiktionary, kamusnya Wikipedia, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\ndan saya bertemu gadis ini, Dabawdygirl //. Kami\\nsaat itu sedang bertengkar dengan seorang vandal \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nDan dia berkata -- dia mencoba membalas dalam bahasa Spanyol,\\ndan saya tahu bahasa Spanyolnya masih kurang lancar, \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\njadi kami membuat persetujuan: Aku ajari\\nkamu bahasa Spanyol, dan kamu ajari aku bahasa Inggris\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nKami saling memperbaiki, dan kami belajar bahasa dengan\\nmenyunting di Wiktionary dalam bahasa Inggris dan Spanyol.\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nAkhirnya bahasa Inggris saya semakin baik, karena saya mempraktikannya setiap hari.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nKemudian, setelah saya menyelesaikan studi bahasa Inggris \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\nsaya lulus ujian masuk ECP yang menjadi persyaratan guru setelah\\nmenyelesaikan studi, dan mereka langsung mempekerjakan saya, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nkarena skor saya tampaknya cukup tinggi agar bisa mengajar.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nMereka memulai sejenis pelatihan, dan saya sudah\\nbekerja di sana selama lima tahun.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nAjaib sekali karena satu hal saya punya kemampuan. Saya sudah menikah dan\\ndikaruniai seorang putri. Wikipedia telah mengubah hidup saya.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nSutradara: Victor Grigas \\nKo-sutradara: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nProduser: Zack Exley\\nPengarah Fotografi: Pruitt Y. Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nFotografer Video: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nFotografer Potret: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nTata Rias: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nPewawancara: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nKoordinator Produksi: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nAsisten Produksi: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nAsisten Produksi: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nPenulis: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nTranskripsi: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nSubtitel Inggris: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 4125,\n", + " 'sha1': '1vvz9hj5yibr1j37ogut0ju7hungjdk',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315299,\n", + " 'timestamp': '2012-12-19T18:42:06Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259422,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.nb.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 Jeg er en engelsklærer. Jeg er gift. Jeg har en datter. 2 00:00:05,200 --> 00:00:13,587 Og, stort sett jobber jeg som alle and...'\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:04,497\\nJeg er en engelsklærer. Jeg er gift. Jeg har en datter.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nOg, stort sett jobber jeg som alle andre. Jeg har en timeplan. Jeg drar på jobb. Jeg drar hjem igjen.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nOg jeg har behov som alle andre, og jeg ønsker også å bruke min fritid på Wikipedia.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nJeg er Erlan Vega. Jeg er fra La Paz i Bolivia.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nJeg skriver om ulike ting. For det meste trygge ting: sommerfugler, insekter, dyr.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nFolk i mitt utdanningssystem skriver stort sett ikke. De skriver ikke. De skaper ikke.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nDe mottar bare informasjon, og det kreves at de husker det for så å ta en test.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nOg så spør de deg om det, ja, det er ingen god ting. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nNår de kommer til slutten av kurset \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nspør de deg om å skrive noe, en artikkel, en oppgave eller noe annet og da er du virkelig i trøbbel fordi du har aldri gjort det før.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nOg det å gi en person muligheten til å være kreativ, og gi dem muligheten til å bli lagt merke til for noe de skriver er virkelig... \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\ndet har vært et vendepunkt i mitt liv.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nAlt begynte da jeg gikk inn på Wiktionary en dag, en ordbok for Wikipedia, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\nog der møtte jeg denne jenta, Dabawdygirl //. Vi jobbet mot en vandal på det tidspunktet. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nOg hun sa... hun forsøkte på spansk, og jeg visste at hennes spansk var litt begrenset på det tidspunktet \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nså vi satte opp en uskreven avtale: Jeg lærer henne spansk, og hun lærer meg engelsk.\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nOg vi rettet på hverandre, og vi lærte språket ved å redigere på Wiktionary på engelsk og på spansk.\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nTil slutt var min engelsk blitt mye bedre, fordi jeg øvde hver eneste dag.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nSå, innen jeg hadde fullført mine studier på engelsk \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\nbestod jeg en test som er påkrevet for lærere idet jeg fullførte studiene, og så ansatte de meg direkte \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nfordi min score, tydeligvis var god nok til å være lærer.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nDe begynte noe opplæring, og jeg har nå jobbet der i fem år.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nDet er utrolig fordi, grunnet dette har stabilitet. Jeg giftet meg. Jeg har en datter, så ja, Wikipedia har endret mitt liv.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nRegissør: Victor Grigas \\nMedregissør: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nProdusent: Zack Exley\\nLeder for filmfotografi: Pruitt Y. Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nFilmfotografer: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nBildefotografer: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nSminke: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nIntervjuere: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nProduksjonskoordinator: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nProduksjonsassistenter: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nProduksjonsassistenter: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nForfatter: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nOversettelse: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nEngelsk undertekst: Alan Kelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 3969,\n", + " 'sha1': '8mgo349rfhcvcir7nrqbnpvajakzqmd',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315332,\n", + " 'timestamp': '2012-12-19T18:42:40Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259429,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.pms.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 I son un magister anglèis. I son marià. I l'heu na fija. 2 00:00:05,200 --> 00:00:13,587 E pi o men i travajo com tùit j'aut...'\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:04,497\\nI son un magister anglèis. I son marià. I l'heu na fija.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nE pi o men i travajo com tùit j'autr. I l'heu dij temp. I von al travaj. I torno.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nE i l'heu djë bzògn con tùit j'autr, e i veuj ëdcò passé mè temp lìber dzora Wikipedia.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nI son Erlan Vega. I son ëd La Paz, Bolivia.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nI scrivo a propòdit ëd ròbe diferente, ròbe dzortut sigure: parpajon, inset, animaj.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nAn mè sistem d'educassion, la gent a scriv pa ëd sòlit. A scrivo pa. A creo pa.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nLor a arseivo mach d'anformassion, as pensa che lor a la memoriso e peui a l'han la preuva.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nE lor at ciamo a propòsit ëd lòn, ëdcò s'a l'é pa na ròba bon-a. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nA l'é com quand a la fin dël cors, \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nat ciamo dë scrive quaicòs, n'artìcol, na pagina, o quaicòs e ti i t ses ant ij pastiss përché it l'hai mai falo.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nE dé a na përson-a l'oportunità d'esse creativ e d'esse arconossù për quaicòs ch'a l'ha scrivù a l'é pròpi -- \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\na l'é stàit pròpi un moment ëd cambi an mia vita.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nTut a l'é ancaminà quand un di i son vnù an sël Wiktionay, ël dissionari ëd Wikipedia, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\ne i l'heu aconossù sta fija, Dabawdygirl //. I stasìo combatend un vàndal col moment. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nE chila a l'ha dit -- chila a l'ha provà a arsponde an Spagneul, e mi i seu che sò Spagneul a l'era un pòch tërmolant antlora, \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nparej i l'oma fàit na specie d'acòrdi pa scrivù: mi i t mosto Spagneul, e ti it im moste Anglèis.\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nE i l'oma coregiù tut d'autr, e i l'oma amparà la lenga an modificand dzora Wiktionary an Anglèis, e an Spagneul.\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nE a la fin mè Anglèis a l'heu vnù motobin mej, përché i l'heu praticalo mincadì.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nPeui, quand i l'heu finì ij mè studi an Anglèis, \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\ni l'heu passà la preuva d'amission ECP che a l'é un requisì për magìster mach quand i l'heu finì mè studi, e parej a l'han pijame pròpi sì, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\npërchè mè vot, i chërdo, a l'ero bastansa àut për mosté.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nE a l'han ancaminà d'adestrament, e i l'heu travajà lì për sinch agn adess.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nI son content përchè con lòn i l'heu na stabilità, i son mariame.\\nI l'heu na fija, parej Wikipedia a l'ha cangià mia vita.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nDiretor: Victor Grigas \\nCondiretor: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nProdutor: Zack Exley\\nDiretor ëd la Fotograpìa: Pruitt Y. Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nVideo Fotografìa: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nRitrat Fotografìa: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nTrucatris: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nAntervistador: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nCoordinator ëd Produssion: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nAssistent ëd Produssion: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nAssistent ëd Produssion: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nScritor: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nSërvissi ëd Trascrission: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nAnglèis S-ciass-Sot-tìtoj: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 4129,\n", + " 'sha1': 'gxc3pods6no1eixe56sxxgz2facjgo3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315359,\n", + " 'timestamp': '2012-12-19T18:43:09Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259433,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 Sou um professor de Inglês. Sou casado. Tenho uma filha. 2 00:00:05,200 --> 00:00:13,587 E como muitos outros trabalho. Tenho ...'\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:04,497\\nSou um professor de Inglês. Sou casado. Tenho uma filha.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nE como muitos outros trabalho. Tenho um horário.\\nVou trabalhar. Volto para casa.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nE tenho necessidades como todos os outros, e eu\\ntambém quero passar o meu tempo livre na Wikipedia\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nChamo-me Erlan Vega. Sou de La Paz, Bolívia.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nEu escrevo sobre diferentes coisas, nomeadamente assuntos seguros: borboletas, insectos, animais.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nNo meu sistema educativo, as pessoas normalmente não escrevem. Elas não escrevem. Elas não criam.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nElas simplesmente recebem informação, e é suposto que a\\nmemorizem, e é então que têm o teste.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nE perguntam sobre o teste, mas no entanto não é bom. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nÉ como quando estamos no final do curso, \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\npedem-nos para escrever algo, um artigo, um papel, ou algo assim\\ne é complicado, porque nunca o fizemos.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nE dar a uma pessoa a oportunidade de ser criativa e ser \\nreconhecida por algo que ela escreve é mesmo -- \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\nfoi realmente um ponto de mudança da minha vida.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nTudo começou quando fui um dia ao Wikitionary, o dicionário da Wikipedia, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\ne encontrei esta rapariga, Dabawdygirl //. Nós combatíamos um vândalo nessa altura. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nE ela disse -- ela tentou responder em Espanhol, e eu sabia que\\nEspanhol dela era um bocado tremido nessa altura, \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nentão fizemos uma espécie de acordo verbal: Eu\\nensino-te Espanhol, e tu ensinas-me Inglês.\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nE corrigiamo-nos um ao outro, e aprendemos a linguagem \\nao editar no Wiktionary em Inglês, e em Espanhol\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nE no final o meu Inglês melhorou bastante, porque eu \\npraticava todos os dias.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nEntão, quando eu acabei os meus estudo em Inglês \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\npassei no meu teste de admissão que é um requisito para professores quando\\nterminei os meus estudos, e fui imediatamente contratado, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\ndevido às minhas pontuações, suponho, que eram altas o suficiente para ensinar.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nE deram-me alguma formação, e tenho\\ntrabalhado lá já há cinco anos.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nÉ incrível porque por causa disso eu tenho estabilidade, casei-me.\\nTenho uma filha, por isso a Wikipedia mudou a minha vida.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nRealizador: Victor Grigas \\nCorealizador: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nProdutor: Zack Exley\\nDirector de Fotografia: Pruitt Y. Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nVideo Fotógrafos: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nFotógrafos: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nMaquilhagem: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nEntrevistadores: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nCoordenadores de Produção: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nAssistentes de Produção: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nAssistentes de Produção: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nArgumento: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nServiços de Transcrição: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nLegendas em Inglês: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 4053,\n", + " 'sha1': 'ff1gmk78mhhgrpzdit05u8hxytmuvma',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315396,\n", + " 'timestamp': '2012-12-19T18:43:48Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259441,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 Я преподаю английский язык. Женат. У меня есть дочь. 2 00:00:05,200 --> 00:00:13,587 ...'\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:04,497\\nЯ преподаю английский язык. Женат. У меня есть дочь.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nВ значительной степени я работаю как каждый из нас. У меня есть распорядок дня. Я хожу на работу. Я возвращаюсь.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nУ меня есть нужды, как у каждого другого. Я также хочу тратить своё свободное время на Википедию.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nЯ Эрлан Вега (Erlan Vega). Я из города Ла Паз, что в Боливии.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nЯ пишу о разных предметах, в основном о безопасных вещах: бабочках, насекомых и животных.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nВ моей системе обучения люди обычно не пишут. Они не пишут. Они не творят.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nОни только получают информацию, предполагается, что они её запоминают, а затем у них контрольная проверка.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nИ они спрашивают меня об этом, хотя это непохвальная вещь. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nЭто выглядит как, когда в конце курса обучения, \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nони просят вас что-нибудь написать, статью, работу или что-то подобное и вы попадаете в затруднение, потому что вы никогда не делали этого.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nПредоставление человеку возможности быть креативным, признаваемым за что-то, что они пишут, - действительно -- \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\nэто стало поворотным моментом в моей жизни.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nВсё началось, когда в один день я обратился в Викисловарю, словарю в Википедии, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\nи встретил эту девушку, Dabawdygirl //. В то время мы боролись с одним вандалом. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nИ она сказала -- она пыталась ответить на испанском, и я знал, что в то время её испаниский был немного небезупречным, \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nпоэтому мы вроде как заключили неписанное соглашение: я учу её испанскому, а она учит меня английскому.\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nМы исправляли друг друга и учили язык путём редактирования на английском и испанском.\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nВ итоге мой английский стал настолько хорошим, потому что я упражнялся ежедневно.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nНаконец, к тому времени, когда я закончил моё обучение английскому \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\nя выдержал тест приёма на работу ECP, который требуется для учителей, сразу после окончания обучения, и в итоге они приняли меня на работу прямо там, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nпотому что мои баллы, я полагаю, были достаточно высокими для преподавания.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nИ они начали небольшую подготовку, на сегодня я здесь работаю уже пять лет.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nЭто удивительно, потому что я получил стабильность, я женился. У меня дочь, так что Википедия изменила мне жизнь.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nДиректор: Victor Grigas \\nСовместный директор: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nПродюсер: Zack Exley\\nДиректор съёмок: Pruitt Y. Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nВидеооператоры: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nФотографы портретов: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nГрим: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nБрали интервью: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nКоординаторы производства: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nПомощники производства: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nПомощники производства: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nАвтор текста: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nУслуги транскрипции: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nСубтитры на английском: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 5920,\n", + " 'sha1': 'mp28not55r4xea43aep4tsoxppcpnej',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315431,\n", + " 'timestamp': '2012-12-19T18:44:37Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259449,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 Jag är en engelsklärare. Jag är gift. Jag har en dotter. 2 00:00:05,200 --> 00:00:13,587 Jag jbobar ungefär på samma sätt...'\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:04,497\\nJag är en engelsklärare. Jag är gift. Jag har en dotter.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nJag jbobar ungefär på samma sätt som alla andra. Jag har\\nett schema. Jag åker på jobbet. Jag åker hem igen.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nOch jag har behov som alla andra, och jag vill också\\nspendera fritid på Wikipedia.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nJag heter Erlan Vega. Jag bor i La Paz, Bolivia.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nJag skriver om olika saker, mestadels ofarliga saker: fjärilar, insekter, djur.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nI vårt skolsystem är det ovanligt att folk skriver. De skriver inte. De skapar inte.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nDe mottar bara information, och de måste \\nkunna det utantill och sedan har de ett prov.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nOch de frågar dig om det, men det är inte bra. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nDet är som om i slutet på klassen, \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nber de dig skriva något, en artikel, en uppsats eller något\\noch du ligger riktigt illa till för du har aldrig gjort det förut.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nOch att ge en människa möjligheten att vara kreativ och att\\nerkännas för något de skriver är verkligen -- \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\ndet har varit en vändpunkt i mitt liv.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nAlltihop började när jag besökte Wiktionary, Wikipedias ordbok en dag, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\noch jag träffade den här flickan, Dbawdygirl //. Vi\\nslogs mot en vandal då. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nOch hon sade -- hon försökte svara på spanska, och\\njag vet att henne spanska var darrig då, \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nså vi gjorde en kontraktslös deal: jag\\nlär dig spanska och du lär mig engelska.\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nVi rättade varandra, och vi lärde oss språket\\ngenom att redigera Wiktionary på engelska, och på spanska.\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nOch mot slutet blev min engelska så mycket bättre, för jag övade varje dag.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nSedan, när jag avslutat mina studier i engelska \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\nklarade jag ECP testet som är ett krav för lärare precis när jag\\navslutade min studier, och de anställde mig på stället, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nför att mina poäng var höga nog att arbeta som lärare.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nOch de började en utbildning, och jag har\\njobbat där i fem år nu.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nDet är fantastiskt för tack vare det har jag stabilitet, och jag gifte mig.\\nJag har en dotter, så Wikipedia förändrade mitt liv.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nRegi: Victor Grigas \\noch David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nProducent: Zack Exley\\nFilmfotograf: Pruitt Y. Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nVideografi: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nPorträttfotografi: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nSmink: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nIntervjuare: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nProduktionskoordination: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nProduktionsassistenter: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nProduktionsassistenter: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nManusförfattare: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nTransktription: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nEngelsk textning: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 3926,\n", + " 'sha1': '8tydzhn26w1s4y8hro8355eklj1p7rn',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315473,\n", + " 'timestamp': '2012-12-19T18:45:26Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259460,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.vi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 Tôi là một giáo viên Anh văn. Tôi đã kết hôn và có một người con gái 2 00:00:05,200 --> 00:00:13,587 Tôi ...'\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:04,497\\nTôi là một giáo viên Anh văn. Tôi đã kết hôn và có một người con gái\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nTôi cũng đi làm như tất cả mọi người. Tôi có lịch trình, tôi đi làm, tôi về nhà.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nTôi cũng có nhu cầu như mọi người khác, và tôi cũng muốn dành một chút thời gian của mình vào Wikipedia\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nTôi tên Erlan Vega và tôi đến từ La Paz, Bolivia\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nTôi viết về những thứ khác nhau, hầu hết là về các loài bướm, côn trùng, động vật.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nTrong hệ thống giáo dục của tôi, mọi người thường không viết. Họ không viết, và họ cũng không tạo một thứ gì cả.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nMọi người chỉ tiếp nhận thông tin, và họ phải ghi nhớ nó và họ làm kiểm tra.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nRồi họ hỏi bạn về điều đó, nhưng đó cũng không phải là một điều tốt lành. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nCho đến gần hết khóa học, \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nhọ yêu cầu bạn phải viết về một điều gì đó, một bài viết, một bài báo, hay một thứ gì đó và bạn thực sự gặp rắc rối vì bạn chưa bao giờ làm điều này\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nCho một người cơ hội để có thể sáng tạo và được công nhận vì những gì họ viết là một điều -- \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\nvà nó đã là một bước ngoặt trong cuộc đời tôi\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nCâu chuyện bắt đầu khi một ngày nọ, tôi vào Wikitionary, từ điển Wikipedia, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\nrồi tôi gặp một cô gái, Dabawdygirl //. Lúc đó, chúng tôi đã có một cuộc tranh luận. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nVà cô ấy nói -- cô ấy cố gắng để trả lời bằng tiếng Tây Ban Nha, và tôi biết rằng tiếng Tây Ban Nha của cô ấy hơi lỏng lẻo \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nvà vì vậy nên chúng tôi làm một thỏa thuận không lời: Tôi giúp cô ấy tiếng Tây Ban Nha, và cô ấy giúp tôi tiếng Anh\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nRồi chúng tôi chỉnh sửa cho nhau, và chúng tôi học các ngôn ngữ ấy bằng cách sửa ở Wikitionary bằng tiếng Anh và tiếng Tây Ban Nha\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nVà kết cuộc tôi đã tốt hơn về tiếng Anh, vì tôi luôn rèn luyện mỗi ngày\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nCùng lúc đó, tôi chấm dứt việc học tập tiếng Anh \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\nTôi đạt kì kiểm tra ECP, vốn là một yêu cầu cho giáo viên ngay khi tôi vừa kết thúc việc học, sau đó họ cho tôi vào làm, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nvì số điểm của tôi, theo tôi nghĩ, vừa đủ để có thể đi dạy\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nRồi họ bắt đầu một số cuộc tập huấn, và từ đó đến nay tôi đã làm việc được năm năm.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nĐiều ấy thật tuyệt vời vì nhờ vào đó, tôi đã có sự ổn định, và bây giờ tôi đã kết hôn và có một người con gái, vậy nên Wikipedia đã thay đổi cuộc đời tôi.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nĐạo diễn: Victor Grigas \\nĐạo diễn: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nNhà sản xụất: Zack Exley\\nĐạo diễn hình ảnh: Pruitt Y.Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nNhiếp ảnh gia về hình ảnh: Jack Harris, Adam Parr và Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nNhiếp ảnh gia về chân dung: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nTrang điểm: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nNgười phỏng vấn: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nĐiều phối viên về sản xuất: Megan Hernadez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nTrợ lý sản xuất: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nTrợ lý sản xuất: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nNgười viết: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nDịch vụ chuyển dịch: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nPhụ đề tiếng Anh: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 4889,\n", + " 'sha1': 'c4g98ptdbo9uxf0kxaeqg0jnbieb678',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315531,\n", + " 'timestamp': '2012-12-19T18:46:18Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259480,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 我是一名英文教师。我结婚了,并有一个女儿。 2 00:00:05,200 --> 00:00:13,587 我也和其他人一样忙于...'\",\n", + " 'text': '1\\n00:00:00,500 --> 00:00:04,497\\n我是一名英文教师。我结婚了,并有一个女儿。\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\n我也和其他人一样忙于工作,有一个日程表,上班,下班回来。\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\n我也有像其他人一样的需求,想在维基百科上度过我的自由时光。\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\n我叫叶尔兰·维加,来自玻利维亚的拉巴斯。\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\n我的文章有关许多不同的东西,但大部分都是安全的东西:蝴蝶、昆虫、动物。\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\n在我的教育系统中,人们通常不写东西。他们不写,也不创造。\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\n他们只是接受信息,并记住它们,然后拿去考试。\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\n他们常会问你有关考试的东西,但这并不是个好的现象。 \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\n这就像在课程结束时, \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\n要求你写些东西,比如一篇文章或其他东西,但你真的有麻烦了,因为你从来没写过。\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\n给人发挥创造力的机会,并让所写的东西被认可是真的—— \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\n这真的成为了我人生中的转折点。\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\n一切开始于当我去维基词典——维基百科的词典——的那一天。 \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\n我碰到了这个名为Dabawdygirl的女孩。当时我们正在与破坏者作斗争。 \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\n她说她正试图用西班牙语回答,但我知道她的西班牙语在当时并不好。 \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\n所以我们达成了一个不成文的协定:我教你西班牙语,而你教我英语。\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\n我们互相纠正,并在英文和西班牙文维基词典上通过编辑学习语言。\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\n最后我的英语水平有了很大的提高,因为我每天都在练习。\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\n然后,当我完成英语学业时候 \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\n我通过了ECP录用考试,这个考试对像我这样刚结束学业的老师是必须的;然后,他们正好就聘请了我, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\n我猜是因为我的分数足够高去教书。\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\n他们开始做一些培训;我现在已经在那工作五年了。\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\n因为这个原因,我稳定下来,结了婚并有个女儿,这真是太惊奇了,维基百科改变了我的生活。\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\n导演:维克多·格利戛斯 \\n协同导演:大卫·格罗斯曼 \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\n制片人:扎克·埃克斯利\\n摄影指导:普鲁特·Y·艾伦 \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\n视频摄影:杰克·哈里斯,亚当·帕尔,马修·斯托克 \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\n人像摄影:亚当·诺瓦克,卡伦·塞尔\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\n化妆:梅利莎·克莱因\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\n采访者:阿尔玛·沙帕,乔纳森·库列尔,斯蒂芬·海尔,丹·马克斯韦恩\\n科里·奥布莱恩,弗兰克·奥布莱恩,雅各布·威尔逊 \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\n制作协调:梅根·埃尔南德斯,布里奥妮·琼斯,贝亚特里切·斯普林伯恩 \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\n制作助理:托比·赫森纳尔,克里斯汀·里格斯比\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\n制作助理:托比·赫森纳尔,克里斯汀·里格斯比\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\n脚本:德西尔里纳·博斯科维奇\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\n转录服务:凯特·阿莱奥,迈克尔·比蒂,卡伦·卡列尔,彼得罗·利,米米·李杰奎·帕斯特,克里斯蒂·罗宾逊,布列塔尼·特纳,苏珊·沃林\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\n英语闭合字幕:AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]',\n", + " 'bytes': 4106,\n", + " 'sha1': 'ravhktk51b7ckhrvru6wrpaqe8gv2k3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85327074,\n", + " 'timestamp': '2012-12-19T23:06:13Z',\n", + " 'user': {'id': 133575, 'text': 'Ziko'},\n", + " 'page': {'id': 23261698,\n", + " 'title': 'The Impact of Wikipedia Peter Coti.webm.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,5 --> 00:00:04,508\\nEiner meiner Wikipedia-Artikel ist der über Stichwunden.\\n\\n2\\n00:00:04,79 --> 00:00:09,952\\nDabei tritt ein Objekt in den Körper ein, das tiefer ist als es weit ist,\\n\\n3\\n00:00:09,952 --> 00:00:14,265\\nund es verursacht ein Trauma des Eindringens.\\n\\n4\\n00:00:14,265 --> 00:00:18,833\\nEs kann viele Organe infizieren, jemanden verletzen.\\n\\n5\\n00:00:19,206 --> 00:00:23,406\\nMeist stirbt man nicht durch die Stichwunde.\\n\\n6\\n00:00:23,473 --> 00:00:28,340\\nMan stirbt durch das Organversagen, und dann ist man eben erstochen.\\n\\n7\\n00:00:28,729 --> 00:00:33,529\\nMein Name ist Peter Coti, Rettungssanitäter.\\n\\n8\\n00:00:33,579 --> 00:00:36,004\\nIch will nicht, dass Menschen verletzt werden,\\naber ich will da sein, wenn es passiert.\\n\\n9\\n00:00:36,42 --> 00:00:40,45\\nIch habe mal in Newark im Krankenhaus ausgeholfen. Da kam diese Frau rein.\\n\\n10\\n00:00:40,455 --> 00:00:43,940\\nSie hat plötzlich Blut \"gekotzt\".\\n\\n11\\n00:00:43,94 --> 00:00:45,541\\nWas mache ich da?\\n\\n12\\n00:00:45,541 --> 00:00:51,618\\nDie Wikipedia hat mich entsensibilisiert, ich sehe Dinge jetzt klinischer\\n\\n13\\n00:00:51,618 --> 00:00:56,726\\nund lasse meine Gefühle mich nicht überwältigen, wenn es ernst wird.\\n\\n14\\n00:00:57,0 --> 00:01:01,535\\nBeim Bearbeiten der Wikipedia will ich genau sein, weil ich nichts Falsches weitergeben will.\\n\\n15\\n00:01:01,969 --> 00:01:08,274\\nUnd ich lese viel und denke nach, bevor ich etwas tatsächlich in meinen Artikel setze.\\n\\n16\\n00:01:09,111 --> 00:01:14,684\\nDas Bearbeiten der Wikipedia ist eine großartige Lernmethode,\\n\\n17\\n00:01:15,13 --> 00:01:19,087\\ndenn ich muss wirklich wissen, wovon ich rede.\\n\\n18\\n00:01:20,0 --> 00:01:23,409\\nFür den Sanitäter-Kurs habe ich ständig die Wikipedia bearbeitet.\\n\\n19\\n00:01:23,757 --> 00:01:28,132\\nIch habe Artikel und so geschrieben, und wenn man das kann,\\n\\n20\\n00:01:28,151 --> 00:01:33,272\\nund es anderen Menschen erklären kann, dann kann man den Kurs mit \"Sehr gut\" bestehen.\\n\\n21\\n00:01:33,9 --> 00:01:35,532\\nDas kann ich versichern.\\n\\n22\\n00:01:35,532 --> 00:01:40,38\\nIch habe über Themen mitgearbeitet, bei der Bearbeiter mit medischem Hintergrund\\n\\n23\\n00:01:40,795 --> 00:01:49,08\\ndabei helfen, einen bestimmten Artikel im Monat zu verbessern, über \"Placebo\", \"Diabetes\", \"Krätze\".\\n\\n24\\n00:01:50,25 --> 00:01:53,77\\nKümmern Sie sich um die Wikipedia, denn\\n\\n25\\n00:01:53,88 --> 00:01:57,02\\nsie ist ein Instrument, mit dem man lernt und anderen etwas kostenlos beibringt. Das ist schön.\\n\\n26 \\n00:01:60,88 --> 00:01:67,02\\nHinweis: Die Wikipedia ist kein Ersatz für ärztlichen Rat.',\n", + " 'bytes': 2525,\n", + " 'sha1': 'q36irjnkvp0kzaeap5nukntzdu8chmg',\n", + " 'parent_id': 85327043,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85327652,\n", + " 'timestamp': '2012-12-19T23:23:28Z',\n", + " 'user': {'id': 133575, 'text': 'Ziko'},\n", + " 'page': {'id': 23262345,\n", + " 'title': 'The Impact of Wikipedia Peter Coti.webm.eo.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,5 --> 00:00:04,508\\nUnu el miaj vikipediaj artikoloj estas tiu pri pik-vundoj.\\n\\n2\\n00:00:04,79 --> 00:00:09,952\\nJen objekto eniras la korpon kiu estas pli profunda ol largxa\\n\\n3\\n00:00:09,952 --> 00:00:14,265\\nkaj gxi kauxzas trauxmon de enpenetro.\\n\\n4\\n00:00:14,265 --> 00:00:18,833\\nTio povas infekcii multajn organojn, vundi iun.\\n\\n5\\n00:00:19,206 --> 00:00:23,406\\nKutime oni ne mortas pro la pik-vundo.\\n\\n6\\n00:00:23,473 --> 00:00:28,340\\nOni mortas pro la halto de organa funkcio, kaj jen oni estas do pikmortigita.\\n\\n7\\n00:00:28,729 --> 00:00:33,529\\nMi nomigxas Peter Coti, sanitaristo.\\n\\n8\\n00:00:33,579 --> 00:00:36,004\\nMi ne volas ke homoj vundigxas, sed mi volas cxeesti kiam okazas.\\n\\n9\\n00:00:36,42 --> 00:00:40,45\\nMi iam helpis en la hospitalo de Newark. Envenis tiu virino.\\n\\n10\\n00:00:40,455 --> 00:00:43,940\\nSxi subite \"vomis\" sangon.\\n\\n11\\n00:00:43,94 --> 00:00:45,541\\nKion mi faru?\\n\\n12\\n00:00:45,541 --> 00:00:51,618\\nVikipedio min sen-sensibiligis, mi vidas aferojn nun pli klinike\\n\\n13\\n00:00:51,618 --> 00:00:56,726\\nkaj ne subigxas de miaj emocioj, kiam farigxas serioza.\\n\\n14\\n00:00:57,0 --> 00:01:01,535\\nPrilaborante Vikipedion mi volas esti preciza, por ne transdoni ion malgxustan.\\n\\n15\\n00:01:01,969 --> 00:01:08,274\\nKaj mi legas multe kaj pripensas, antaux ol mi ion vere enmetas en miajn artikolon.\\n\\n16\\n00:01:09,111 --> 00:01:14,684\\nPrilabori Vikipedion estas grandioza metodo por lerni,\\n\\n17\\n00:01:15,13 --> 00:01:19,087\\ncxar mi devas vere scii pri kio mi parolas.\\n\\n18\\n00:01:20,0 --> 00:01:23,409\\nPor farigxi sanitaristo, mi dauxre prilaboris Vikipedion.\\n\\n19\\n00:01:23,757 --> 00:01:28,132\\nMi verkis artikolojn kaj tiel plu, kaj kiam oni kapaplas tion,\\n\\n20\\n00:01:28,151 --> 00:01:33,272\\nkaj povas klarigi al aliaj homoj, tiam eblas sukcesi la kurson per \"tre bona\".\\n\\n21\\n00:01:33,9 --> 00:01:35,532\\nMi povas certigi tion.\\n\\n22\\n00:01:35,532 --> 00:01:40,38\\nMi kunlaboris pri temoj kie prilaborantoj kun medicinista fono\\n\\n23\\n00:01:40,795 --> 00:01:49,08\\nhelpis plibonigi certan artikolon dum monato, pri \"Placebo\", \"diabeto\", \"skabio\".\\n\\n24\\n00:01:50,25 --> 00:01:53,77\\nOkupigxu pri Vikipedio, cxar\\n\\n25\\n00:01:53,88 --> 00:01:57,02\\ngxi estas instrumento per kiu oni lernas kaj senpage ion instruas. Tio belas.\\n\\n26 \\n00:01:61,88 --> 00:01:69,02\\nAtentigo: Vikipedio ne estas anstatauxajxo por kuracista konsilo.',\n", + " 'bytes': 2308,\n", + " 'sha1': 'sfedkrxlozglpnngcszfcbwmjpe0mwp',\n", + " 'parent_id': 85327497,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 184457334,\n", + " 'timestamp': '2016-01-12T00:05:38Z',\n", + " 'user': {'text': '162.206.8.217'},\n", + " 'page': {'id': 23263075,\n", + " 'title': 'U.S. Army Band - Good King Wenceslaus.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nGood King Wenceslaus looked out, on the Feast of Stephen.\\n\\n2\\n00:00:05,200 --> 00:00:10,000\\nWhen the snow lay round about, deep and crisp and even.\\n\\n3\\n00:00:10,200 --> 00:00:15,000\\nBrightly shone the moon that night, tho\\' the frost was cruel,\\n\\n4\\n00:00:15,200 --> 00:00:21,000\\nWhen a poor man came in sight, gath\\'ring winter fuel.\\n\\n5\\n00:00:22,000 --> 00:00:27,000\\n\"Bring me flesh, and bring me wine, bring me pine logs hither:\\n\\n6\\n00:00:27,200 --> 00:00:32,000\\nThou and I shall see him dine, when we bear them thither. \"\\n\\n7\\n00:00:32,200 --> 00:00:37,000\\nPage and monarch, forth they went, forth they went together;\\n\\n8\\n00:00:37,200 --> 00:00:43,000\\nThrough the rude wind\\'s wild lament and the bitter weather.\\n\\n9\\n00:00:44,200 --> 00:00:50,000\\nIn his master\\'s steps he trod, where the snow lay dinted;\\n\\n10\\n00:00:50,200 --> 00:00:54,000\\nHeat was in the very sod which the saint had printed.\\n\\n11\\n00:00:54,200 --> 00:00:59,000\\nTherefore, Christian men, be sure, wealth or rank possessing,\\n\\n12\\n00:00:59,200 --> 00:01:05,000\\nYe who now will bless the poor, shall yourselves find blessing.',\n", + " 'bytes': 1109,\n", + " 'sha1': 'ns0kj43qi579cda59cjf066qiyvmtof',\n", + " 'parent_id': 85331793,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85397376,\n", + " 'timestamp': '2012-12-21T01:35:01Z',\n", + " 'user': {'id': 2450901, 'text': 'AlanKellyVerbatimIT'},\n", + " 'page': {'id': 23273776,\n", + " 'title': 'The Impact of Wikipedia - Srikeit Tadepalli and Noopur Raval.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,21 --> 00:00:03,828\\nSachin Tendulkar is one of the greatest cricketers of all time,\\n\\n2\\n00:00:04,326 --> 00:00:08,376\\nand when I saw his article, it did not have a pronunciation for his name, \\n\\n3\\n00:00:08,882 --> 00:00:13,064\\nand what I did was I recorded the pronunciation in my voice \\n\\n4\\n00:00:13,064 --> 00:00:14,507\\nand uploaded it to Wikipedia.\\n\\n5\\n00:00:15,118 --> 00:00:20,174\\nAnd now, anytime anyone around the world has to listen to how his name is pronounced,\\n\\n6\\n00:00:20,6 --> 00:00:22,235\\nthey will go to the Wikipedia article and listen to it \\n\\n7\\n00:00:22,235 --> 00:00:23,671\\nand it would be my voice,\\n\\n8\\n00:00:23,671 --> 00:00:27,371\\nand over a billion people in the world will probably do that, \\n\\n9\\n00:00:27,476 --> 00:00:32,516\\nand that is an achievement which I probably think is something that I treasure a lot.\\n\\n10\\n00:00:33,298 --> 00:00:35,898\\nMy name is Srikeit [SHREE-KIT]. I live and work in Mumbai.\\n\\n11\\n00:00:36,047 --> 00:00:38,016\\nMy full name is Noopur Raval.\\n\\n12\\n00:00:38,412 --> 00:00:41,364\\nI'm a result of one of his outreach programs, \\n\\n13\\n00:00:41,364 --> 00:00:43,599\\nlike we used to be friends and everything, but\\n\\n14\\n00:00:43,599 --> 00:00:47,458\\nthis one day, we were in Bangalore, and he said \\n\\n15\\n00:00:47,838 --> 00:00:50,848\\nthere's a Wiki Meetup. So, I said what is a Wiki Meetup? \\n\\n16\\n00:00:50,848 --> 00:00:52,994\\nLike, he kept talking about Wikipedia and everything, \\n\\n17\\n00:00:52,994 --> 00:00:55,720\\nso what is it, so he said, come along, let's just see what it is about.\\n\\n18\\n00:00:56,1 --> 00:00:59,824\\nThen I started editing a lot as well, and I realized that \\n\\n19\\n00:00:59,824 --> 00:01:03,402\\nthere isn't much content about Indian cuisine and culture,\\n\\n20\\n00:01:03,848 --> 00:01:07,048\\nand you know, like, really famous things like a sari.\\n\\n21\\n00:01:07,108 --> 00:01:11,408\\nA sari is the cloth that you wrap, women wear it very commonly in India, \\n\\n22\\n00:01:11,488 --> 00:01:15,683\\nand there's simply not an article on the world's most famous sari style,\\n\\n23\\n00:01:16,188 --> 00:01:18,846\\nso I was quite appalled you know, I really wanted to contribute,\\n\\n24\\n00:01:19,4 --> 00:01:23,5\\nand it's a personal journey, so I started discovering which villages make it.\\n\\n25\\n00:01:23,57 --> 00:01:27,216\\nHow do they make it? From which I jumped to the problems that \\n\\n26\\n00:01:27,216 --> 00:01:29,482\\nthe kanchipurim sari industry is facing.\\n\\n27\\n00:01:29,935 --> 00:01:32,467\\nbecause these were weavers who were making it manually, \\n\\n28\\n00:01:33,0 --> 00:01:36,766\\nand now because they have industrial people coming in and making it in machines, \\n\\n29\\n00:01:37,588 --> 00:01:39,499\\nso many people have lost employment, \\n\\n30\\n00:01:40,154 --> 00:01:42,69\\nso that kind of intricate fine work is not being done, \\n\\n31\\n00:01:43,504 --> 00:01:45,40\\nso yeh, it was not just writing an article, \\n\\n32\\n00:01:45,492 --> 00:01:48,15\\nbut also learning a lot about the kanchipurim sari.\\n\\n33\\n00:01:48,5 --> 00:01:49,86\\nEven though there's a neutral point of view, \\n\\n34\\n00:01:50,2 --> 00:01:51,58\\nthis is a kind of point of view right? \\n\\n35\\n00:01:52,0 --> 00:01:55,83\\nIf you're not representing something, or writing about something on the encyclopedia,\\n\\n36\\n00:01:56,198 --> 00:01:59,22\\nit probably means that it's not noteworthy enough, which is not true.\\n\\n37\\n00:01:59,218 --> 00:01:59,64\\n[Srikeit] \\n\\n38\\n00:01:59,644 --> 00:02:00,81\\nEspecially when it comes to India,\\n\\n39\\n00:02:00,813 --> 00:02:04,09\\nthere are tomes of things that are not written about.\\n\\n40\\n00:02:04,087 --> 00:02:08,03\\nWhile the Indian community is fairly well represented in the Wikipedia community,\\n\\n41\\n00:02:08,483 --> 00:02:11,87\\nbut the Indian populace is not, so what needs to be done is \\n\\n42\\n00:02:12,338 --> 00:02:14,44\\nmore of these people need to start coming on Wikipedia, \\n\\n43\\n00:02:14,465 --> 00:02:17,44\\nwriting about it, because there is an audience to read about it.\\n\\n44\\n00:02:17,95 --> 00:02:21,18\\nThey just don't know that it's not there, or they don't know that \\n\\n45\\n00:02:21,616 --> 00:02:24,16\\ninformation can be accessed or there is something to be read about. \\n\\n46\\n00:02:25,04 --> 00:02:26,00\\nDirector: Victor Grigas \\n\\n47\\n00:02:26,003 --> 00:02:26,75\\nCodirector: David Grossman\\n\\n48\\n00:02:27,253 --> 00:02:27,84\\nProducer: Zack Exley\\n\\n49\\n00:02:27,84 --> 00:02:28,83\\nDirector of Photography: Pruitt Y. Allen \\n\\n50\\n00:02:28,826 --> 00:02:30,07\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck \\n\\n51\\n00:02:30,07 --> 00:02:31,54\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n52\\n00:02:31,537 --> 00:02:32,74\\n[Images - credits rolling on screen]\\n\\n53\\n00:02:32,739 --> 00:02:33,83\\nMakeup: Melissa Klein\\n\\n54\\n00:02:33,829 --> 00:02:35,39\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n55\\n00:02:35,394 --> 00:02:36,79\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n56\\n00:02:36,787 --> 00:02:37,46\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n57\\n00:02:37,462 --> 00:02:37,90\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n58\\n00:02:37,902 --> 00:02:38,27\\nWriter: Desirina Boskovich\\n\\n59\\n00:02:37,902 --> 00:02:38,40\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n60\\n00:02:38,402 --> 00:02:38,80\\nEnglish Closed-Captioning: AlanKelly VerbatimIT\",\n", + " 'bytes': 5395,\n", + " 'sha1': '73r5gupjal33737p8oo81zfzhfx9edb',\n", + " 'parent_id': 85397205,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92291328,\n", + " 'timestamp': '2013-03-09T18:06:39Z',\n", + " 'user': {'id': 421596, 'text': 'Vivaelcelta'},\n", + " 'page': {'id': 23284235,\n", + " 'title': 'Editing basics - Uploading and adding images.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Correct mistake desciption > description',\n", + " 'text': '1\\n00:00:01,000 --> 00:00:06,500\\nThis screencast walks through the basics of uploading images to Wikimedia Commons \\n\\n2\\n00:00:06,700 --> 00:00:09,200\\nand adding them to Wikipedia articles.\\n\\n3\\n00:00:09,400 --> 00:00:13,500\\nTake this article for example: secondary lens.\\n\\n4\\n00:00:13,700 --> 00:00:18,500\\nIt\\'s a photography topic that doesn\\'t have any photos. Let\\'s fix that!\\n\\n5\\n00:00:18,700 --> 00:00:21,500\\nWe\\'ll use an original image I made.\\n\\n6\\n00:00:21,700 --> 00:00:24,000\\nTo add it to the article, we\\'ll need to upload it\\n\\n7\\n00:00:24,100 --> 00:00:26,200\\nto Wikimedia Commons.\\n\\n8\\n00:00:26,500 --> 00:00:27,200\\nFirst things first.\\n\\n9\\n00:00:27,400 --> 00:00:31,000\\nWikimedia Commons is only for original works you made yourself,\\n\\n10\\n00:00:31,300 --> 00:00:36,000\\nworks by others that were explicitly released under a Wikipedia-compatible license,\\n\\n11\\n00:00:36,300 --> 00:00:40,500\\nor works in the public domain that aren\\'t covered by anyone\\'s copyright.\\n\\n12\\n00:00:40,800 --> 00:00:42,000\\nTo upload a file,\\n\\n11\\n00:00:42,300 --> 00:00:45,000\\ngo to commons.wikimedia.org.\\n\\n12\\n00:00:45,300 --> 00:00:48,000\\nBe sure to log in if you aren\\'t already logged in.\\n\\n13\\n00:00:48,300 --> 00:00:50,300\\nYou\\'ll use the same account you have on Wikipedia.\\n\\n14\\n00:00:51,000 --> 00:00:53,600\\nTo get started, go to the Upload Wizard\\n\\n15\\n00:00:53,800 --> 00:00:56,800\\nby clicking the \"Upload file\" link on the left.\\n\\n16\\n00:00:57,000 --> 00:01:00,000\\nThe first page of the wizard is a comic, featuring Puzzly!,\\n\\n17\\n00:01:00,300 --> 00:01:04,000\\nwhich goes over what is allowed on Commons and what isn\\'t.\\n\\n18\\n00:01:04,300 --> 00:01:08,000\\nAt the bottom of the comic, click next to get to the upload page.\\n\\n19\\n00:01:08,300 --> 00:01:14,000\\nClicking \"Select a media file to donate\" will let you find a file on your computer to upload.\\n\\n20\\n00:01:14,300 --> 00:01:18,000\\nOnce it uploads, you\\'re ready to continue on to the license release.\\n\\n21\\n00:01:18,300 --> 00:01:22,000\\nIf it\\'s your own work, just put in your name or username\\n\\n22\\n00:01:22,300 --> 00:01:25,600\\n--however you want to be credited when people use the image--\\n\\n23\\n00:01:25,800 --> 00:01:27,000\\nand press Next.\\n\\n24\\n00:01:27,300 --> 00:01:30,500\\nNow it\\'s time for the title of the image and the description.\\n\\n25\\n00:01:30,700 --> 00:01:31,500\\nFor the title\\n\\n26\\n00:01:31,700 --> 00:01:34,500\\nput something concise, descriptive\\n\\n27\\n00:01:34,700 --> 00:01:37,700\\n and specific enough to differentiate it from similar images.\\n\\n28\\n00:01:37,900 --> 00:01:39,500\\nFor the description,\\n\\n29\\n00:01:39,700 --> 00:01:42,000\\nadd as much detail as you can:\\n\\n30\\n00:01:42,200 --> 00:01:44,500\\nwhere and how was the image made;\\n\\n31\\n00:01:44,700 --> 00:01:46,500\\nwhat the subject is;\\n\\n32\\n00:01:46,700 --> 00:01:49,000\\nand anything else a viewer might want to know about it.\\n\\n33\\n00:01:49,300 --> 00:01:53,000\\nYou can also add the image to one or more Wikimedia Commons categories\\n\\n33\\n00:01:53,300 --> 00:01:58,000\\n-- try browsing similar images to find out what categories are appropriate.\\n\\n34\\n00:01:58,300 --> 00:02:00,500\\nAt this point, pressing Next will complete the upload,\\n\\n35\\n00:02:00,700 --> 00:02:05,000\\nand the work should be available for use on Wikipedia.\\n\\n36\\n00:02:05,300 --> 00:02:07,000\\nOn the last page of the wizard, you\\'ll find\\n\\n37\\n00:02:07,300 --> 00:02:10,000\\ncode for adding the work to a Wikipedia article,\\n\\n38\\n00:02:10,300 --> 00:02:13,000\\nand a URL for getting to the file page,\\n\\n39\\n00:02:13,300 --> 00:02:17,000\\nwhere you can edit the description or upload newer versions of the file.\\n\\n40\\n00:02:17,300 --> 00:02:19,500\\nYou can copy the wikicode\\n\\n41\\n00:02:19,700 --> 00:02:21,000\\nand paste it into the article,\\n\\n42\\n00:02:21,300 --> 00:02:23,500\\nand then add a caption.\\n\\n43\\n00:02:23,700 --> 00:02:27,000\\nThe basic format for putting an image into an article is like this:\\n\\n44\\n00:02:27,300 --> 00:02:29,200\\nopening square brackets, then\\n\\n45\\n00:02:29,400 --> 00:02:31,200\\nthe name of the image file, then\\n\\n46\\n00:02:31,400 --> 00:02:36,200\\na pipe and the word thumb -- which puts it into the standard thumbnail format --\\n\\n47\\n00:02:36,500 --> 00:02:37,500\\nthen another pipe,\\n\\n48\\n00:02:37,700 --> 00:02:39,000\\nand then the caption,\\n\\n47\\n00:02:39,200 --> 00:02:43,000\\nwhich should make clear the connection with the accompanying article text,\\n\\n47\\n00:02:43,200 --> 00:02:46,000\\nand then two closing squre brackets.\\n\\n48\\n00:02:46,200 --> 00:02:48,000\\nOnce you\\'ve added the image,\\n\\n49\\n00:02:48,200 --> 00:02:50,000\\nput in an edit summary and save the page,\\n\\n50\\n00:02:50,200 --> 00:02:51,500\\nand that\\'s it!\\n\\n51\\n00:02:51,700 --> 00:02:54,000\\nWe\\'ve added a new image to Wikipedia.\\n\\n52\\n00:02:54,500 --> 00:02:57,000\\nThanks! Bye!',\n", + " 'bytes': 4652,\n", + " 'sha1': 'ljp0pot3txt6rsgjbuykbute4777s5f',\n", + " 'parent_id': 85468887,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 128876081,\n", + " 'timestamp': '2014-07-13T10:34:55Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 23286677,\n", + " 'title': 'Friedrich Wilhelm Nietzsche - Hoch tut euch auf.oga.ger.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'McZusatz moved page [[TimedText:Hoch tut euch auf.ogg.ger.srt]] to [[TimedText:Friedrich Wilhelm Nietzsche - Hoch tut euch auf.oga.ger.srt]] without leaving a redirect',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:08,380\\nHoch tut euch auf, ihr Tore der Welt\\n\\n2\\n00:00:08,380 --> 00:00:16,840\\ndass der König der Ehren einziehe. \\n\\n3\\n00:00:16,930 --> 00:00:25,800\\nHoch tut euch auf, ihr Tore der Welt\\n\\n4\\n00:00:25,800 --> 00:00:33,140\\nHoch tut euch auf, ihr Tore (ihr Tore) der Welt\\n\\n5\\n00:00:33,140 --> 00:00:44,490\\ndass der König der Ehren (der Ehren) einziehe.\\n\\n6\\n00:00:45,930 --> 00:00:58,550\\nHoch tut euch auf (Hoch tut euch auf), ihr Tore der Welt\\n\\n7\\n00:00:59,800 --> 00:01:17,440\\nHoch tut euch auf (Hoch tut euch auf), dass der König der Ehren einziehe.\\n\\n8\\n00:01:17,600 --> 00:01:26,550\\nHoch tut euch auf, ihr Tore der Welt\\n\\n9\\n00:01:26,550 --> 00:01:42,555\\nHoch tut euch auf, ihr Tore der Welt (der Welt, der Welt)\\n\\n10\\n00:01:44,610 --> 00:01:51,540\\nHoch tut euch auf, ihr Tore der Welt\\n\\n11\\n00:01:51,540 --> 00:02:12,777\\ndass der König der Ehren (der König der Ehren, der König der Ehren) einziehe.',\n", + " 'bytes': 916,\n", + " 'sha1': '3nfm7nieaju0ure2wbac4rnoazap413',\n", + " 'parent_id': 85460347,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 128876023,\n", + " 'timestamp': '2014-07-13T10:33:55Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 23286690,\n", + " 'title': 'Friedrich Wilhelm Nietzsche - Hoch tut euch auf.oga.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'McZusatz moved page [[TimedText:Hoch tut euch auf.ogg.de.srt]] to [[TimedText:Friedrich Wilhelm Nietzsche - Hoch tut euch auf.oga.de.srt]] without leaving a redirect',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:08,380\\nHoch tut euch auf, ihr Tore der Welt\\n\\n2\\n00:00:08,380 --> 00:00:16,840\\ndass der König der Ehren einziehe. \\n\\n3\\n00:00:16,930 --> 00:00:25,800\\nHoch tut euch auf, ihr Tore der Welt\\n\\n4\\n00:00:25,800 --> 00:00:33,140\\nHoch tut euch auf, ihr Tore (ihr Tore) der Welt\\n\\n5\\n00:00:33,140 --> 00:00:44,490\\ndass der König der Ehren (der Ehren) einziehe.\\n\\n6\\n00:00:45,930 --> 00:00:58,550\\nHoch tut euch auf (Hoch tut euch auf), ihr Tore der Welt\\n\\n7\\n00:00:59,800 --> 00:01:17,440\\nHoch tut euch auf (Hoch tut euch auf), dass der König der Ehren einziehe.\\n\\n8\\n00:01:17,600 --> 00:01:26,550\\nHoch tut euch auf, ihr Tore der Welt\\n\\n9\\n00:01:26,550 --> 00:01:42,555\\nHoch tut euch auf, ihr Tore der Welt (der Welt, der Welt)\\n\\n10\\n00:01:44,610 --> 00:01:51,540\\nHoch tut euch auf, ihr Tore der Welt\\n\\n11\\n00:01:51,540 --> 00:02:12,777\\ndass der König der Ehren (der König der Ehren, der König der Ehren) einziehe.',\n", + " 'bytes': 916,\n", + " 'sha1': '3nfm7nieaju0ure2wbac4rnoazap413',\n", + " 'parent_id': 85460378,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 128876045,\n", + " 'timestamp': '2014-07-13T10:34:09Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 23286704,\n", + " 'title': 'Friedrich Wilhelm Nietzsche - Hoch tut euch auf.oga.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'McZusatz moved page [[TimedText:Hoch tut euch auf.ogg.en.srt]] to [[TimedText:Friedrich Wilhelm Nietzsche - Hoch tut euch auf.oga.en.srt]]',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:08,380\\nLift up your heads, ye doors of the world,\\n\\n2\\n00:00:08,380 --> 00:00:16,840\\nthat the King of glory shall come in.\\n\\n3\\n00:00:16,930 --> 00:00:25,800\\nLift up your heads, ye doors of the world,\\n\\n4\\n00:00:25,800 --> 00:00:33,140\\nLift up your heads, ye doors (ye doors) of the world,\\n\\n5\\n00:00:33,140 --> 00:00:44,490\\nthat the King of glory (of glory) shall come in.\\n\\n6\\n00:00:45,930 --> 00:00:58,550\\nLift up your heads (Lift up your heads), ye doors of the world,\\n\\n7\\n00:00:59,800 --> 00:01:17,440\\nLift up your heads (Lift up your heads), that the King of glory (of glory) shall come in.\\n\\n8\\n00:01:17,600 --> 00:01:26,550\\nLift up your heads, ye doors of the world,\\n\\n9\\n00:01:26,550 --> 00:01:42,555\\nLift up your heads, ye doors of the world (of the world, of the world),\\n\\n10\\n00:01:44,610 --> 00:01:51,540\\nLift up your heads, ye doors of the world,\\n\\n11\\n00:01:51,540 --> 00:02:12,777\\nthat the King of glory (the King of glory, the King of glory) shall come in.',\n", + " 'bytes': 979,\n", + " 'sha1': '2f75sujaxj28onna34r7p6zn075xrbn',\n", + " 'parent_id': 85460479,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 149028351,\n", + " 'timestamp': '2015-02-05T10:40:11Z',\n", + " 'user': {'id': 725208, 'text': 'Gustavolaime'},\n", + " 'page': {'id': 23286717,\n", + " 'title': 'Friedrich Wilhelm Nietzsche - Hoch tut euch auf.oga.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:08,380\\nElévense, puertas del mundo\\n\\n2\\n00:00:08,380 --> 00:00:16,840\\npara que el Rey de la gloria pase.\\n\\n3\\n00:00:16,930 --> 00:00:25,800\\nElévense, puertas del mundo\\n\\n4\\n00:00:25,800 --> 00:00:33,140\\nElévense, puertas (puertas) del mundo\\n\\n5\\n00:00:33,140 --> 00:00:44,490\\npara que el Rey de la gloria (de la gloria) pase.\\n\\n6\\n00:00:45,930 --> 00:00:58,550\\nElévense (Elévense), puertas del mundo\\n\\n7\\n00:00:59,800 --> 00:01:17,440\\nElévense (Elévense), para que el Rey de la gloria pase.\\n\\n8\\n00:01:17,600 --> 00:01:26,550\\nElévense, puertas del mundo\\n\\n9\\n00:01:26,550 --> 00:01:42,555\\nElévense, puertas del mundo (del mundo, del mundo)\\n\\n10\\n00:01:44,610 --> 00:01:51,540\\nElévense, puertas del mundo\\n\\n11\\n00:01:51,540 --> 00:02:12,777\\npara que el Rey de la gloria (el Rey de la gloria, el Rey de la gloria) pase.',\n", + " 'bytes': 832,\n", + " 'sha1': 'fv4jut6858la0y1k8j8beh6ap7fq5rs',\n", + " 'parent_id': 128876077,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85509278,\n", + " 'timestamp': '2012-12-23T04:14:08Z',\n", + " 'user': {'id': 1221995, 'text': 'House'},\n", + " 'page': {'id': 23298626,\n", + " 'title': 'The Impact of Wikipedia - Alejandro Linares García.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,500 The photos that I upload are those which really have something to say. 2 00:00:05,500 --> 00:00:05,666 3 00:00:05,666 -...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,500\\nThe photos that I upload are those \\nwhich really have something to say.\\n\\n2\\n00:00:05,500 --> 00:00:05,666\\n \\n\\n3\\n00:00:05,666 --> 00:00:07,666\\nAs I said,\\n\\n4\\n00:00:07,666 --> 00:00:08,066\\n \\n\\n5\\n00:00:08,066 --> 00:00:12,232\\nthey talk about a holiday, a habit, a tradition.\\n\\n6\\n00:00:12,233 --> 00:00:13,599\\n \\n\\n7\\n00:00:13,600 --> 00:00:17,400\\nI think that those photographs are going \\nto help understanding them.\\n\\n8\\n00:00:17,400 --> 00:00:17,600\\n \\n\\n9\\n00:00:17,600 --> 00:00:19,600\\nMy name is Alejandro Linares García\\n\\n10\\n00:00:19,600 --> 00:00:20,166\\n \\n\\n11\\n00:00:20,166 --> 00:00:22,099\\nI live in Mexico City.\\n\\n12\\n00:00:22,100 --> 00:00:22,600\\n \\n\\n13\\n00:00:22,600 --> 00:00:27,500\\nI like photography, along with my wife\\n\\n14\\n00:00:27,500 --> 00:00:28,833\\n \\n\\n15\\n00:00:28,833 --> 00:00:33,499\\nshe writes articles\\n\\n16\\n00:00:33,500 --> 00:00:33,600\\n \\n\\n17\\n00:00:33,600 --> 00:00:37,466\\nand I give her photos for the articles.\\n\\n18\\n00:00:37,466 --> 00:00:38,799\\n \\n\\n19\\n00:00:38,800 --> 00:00:41,333\\nThat\\'s my vision as an artist.\\n\\n20\\n00:00:41,333 --> 00:00:41,599\\n \\n\\n21\\n00:00:41,600 --> 00:00:46,433\\nSeeing the image as a frame,\\n\\n22\\n00:00:46,433 --> 00:00:46,666\\n \\n\\n23\\n00:00:46,666 --> 00:00:50,032\\nas something artistic.\\n\\n24\\n00:00:50,033 --> 00:00:50,333\\n \\n\\n25\\n00:00:50,333 --> 00:00:52,999\\nBut also as something people can learn from it,\\n\\n26\\n00:00:53,000 --> 00:00:53,266\\n \\n\\n27\\n00:00:53,266 --> 00:00:55,966\\nas those photos are seen by a lot of people\\n\\n28\\n00:00:55,966 --> 00:00:55,999\\n \\n\\n29\\n00:00:56,000 --> 00:00:57,400\\naround the world,\\n\\n30\\n00:00:57,400 --> 00:01:01,066\\nand thereby rediscover the image they had\\n\\n31\\n00:01:01,066 --> 00:01:02,332\\ninitially\\n\\n32\\n00:01:02,333 --> 00:01:04,533\\nabout México. \\n\\n33\\n00:01:04,533 --> 00:01:07,699\\nMaybe with these photographs\\n\\n34\\n00:01:07,700 --> 00:01:11,466\\nthey could see another approach to this subject.\\n\\n35\\n00:01:11,466 --> 00:01:16,799\\nand say: \"Wow, México it\\'s something more \\nthan chili and tortillas, isn\\'t it?\".\\n\\n36\\n00:01:16,800 --> 00:01:17,200\\n \\n\\n37\\n00:01:17,200 --> 00:01:20,966\\nTo recognize the great variety, \\nand to change their mindset,\\n\\n38\\n00:01:20,966 --> 00:01:21,199\\n \\n\\n39\\n00:01:21,200 --> 00:01:23,700\\nand know about México a bit more.\\n\\n40\\n00:01:23,700 --> 00:01:24,533\\n \\n\\n41\\n00:01:24,533 --> 00:01:26,766\\nThrough their traditions,\\ntheir culture, and their holidays.\\n\\n42\\n00:01:26,766 --> 00:01:27,032\\n \\n\\n43\\n00:01:27,033 --> 00:01:29,199\\nThrough their holidays \\n\\n44\\n00:01:29,200 --> 00:01:29,533\\n \\n\\n45\\n00:01:29,533 --> 00:01:31,133\\nmost of all,\\n\\n46\\n00:01:31,133 --> 00:01:31,166\\n \\n\\n47\\n00:01:31,166 --> 00:01:32,999\\nas they make known a lot of things.\\n\\n48\\n00:01:33,000 --> 00:01:33,300\\n \\n\\n49\\n00:01:33,300 --> 00:01:35,800\\nI think that there\\'s a big community right now\\n\\n50\\n00:01:35,800 --> 00:01:35,866\\n \\n\\n51\\n00:01:35,866 --> 00:01:39,132\\nas I saw on Wikimania\\n\\n52\\n00:01:39,133 --> 00:01:39,299\\n \\n\\n53\\n00:01:39,300 --> 00:01:41,333\\nThey all got their own images,\\n\\n54\\n00:01:41,333 --> 00:01:41,533\\n \\n\\n55\\n00:01:41,533 --> 00:01:43,099\\nthey all got their own culture,\\n\\n56\\n00:01:43,100 --> 00:01:43,133\\n \\n\\n57\\n00:01:43,133 --> 00:01:44,799\\nand their favorite things.\\n\\n58\\n00:01:44,800 --> 00:01:45,033\\n \\n\\n59\\n00:01:45,033 --> 00:01:46,833\\nAnd if we share all of this\\n\\n60\\n00:01:46,833 --> 00:01:47,399\\n \\n\\n61\\n00:01:47,400 --> 00:01:48,633\\nit gets bigger and bigger.\\n\\n62\\n00:01:48,633 --> 00:01:49,366\\n \\n\\n63\\n00:01:49,366 --> 00:01:50,966\\nSo, I think that the knowledge\\n\\n64\\n00:01:50,966 --> 00:01:51,266\\n \\n\\n65\\n00:01:51,266 --> 00:01:52,699\\nit\\'s the Wikimedia main pillar.\\n\\n66\\n00:01:52,700 --> 00:01:53,033\\n \\n\\n67\\n00:01:53,033 --> 00:01:56,533\\nTo make known all the things \\nwhich exist around the world.\\n\\n68\\n00:01:56,533 --> 00:01:59,699\\nMake known...\\n\\n69\\n00:01:59,700 --> 00:02:02,866\\nwhat the humanity has, on the world.\\n\\n70\\n00:02:02,866 --> 00:02:03,132\\n \\n\\n71\\n00:02:03,133 --> 00:02:10,633\\nTheir traditions, their cultures,\\ntheir gastronomy, their cities.\\n\\n72\\n00:02:10,633 --> 00:02:11,533\\n \\n\\n73\\n00:02:11,533 --> 00:02:15,099\\nHow is the place where they live,\\n\\n74\\n00:02:15,100 --> 00:02:15,133\\n \\n\\n75\\n00:02:15,133 --> 00:02:16,733\\nhow do they live.\\n\\n76\\n00:02:16,733 --> 00:02:16,766\\n \\n\\n77\\n00:02:16,766 --> 00:02:18,732\\nThat\\'s very interesting for all the people.\\n\\n78\\n00:02:18,733 --> 00:02:18,933\\n \\n\\n79\\n00:02:18,933 --> 00:02:21,933\\nIf we share that, we\\'ll get \\nto know the world better.\\n\\n80\\n00:02:21,933 --> 00:02:22,366\\n \\n\\n81\\n00:02:22,366 --> 00:02:25,866\\nAnd that way, maybe, we could \\ntake care of the world better.',\n", + " 'bytes': 4641,\n", + " 'sha1': 'rasv3s2wwpo714e5xb2v9exdi1ud58r',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85509297,\n", + " 'timestamp': '2012-12-23T04:14:51Z',\n", + " 'user': {'id': 1221995, 'text': 'House'},\n", + " 'page': {'id': 23298631,\n", + " 'title': 'The Impact of Wikipedia - Alejandro Linares García.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,500 Y las (fotos) que si subo son las que realmente dicen algo 2 00:00:05,500 --> 00:00:05,666 3 00:00:05,666 --> 00:00:07,6...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,500\\nY las (fotos) que si subo son las que realmente dicen algo\\n\\n2\\n00:00:05,500 --> 00:00:05,666\\n \\n\\n3\\n00:00:05,666 --> 00:00:07,666\\nComo te dije,\\n\\n4\\n00:00:07,666 --> 00:00:08,066\\n \\n\\n5\\n00:00:08,066 --> 00:00:12,232\\nDicen una fiesta, una costumbre, una tradición\\n\\n6\\n00:00:12,233 --> 00:00:13,599\\n \\n\\n7\\n00:00:13,600 --> 00:00:17,400\\nYo pienso que esas fotografías van a ayudar a conocer\\n\\n8\\n00:00:17,400 --> 00:00:17,600\\n \\n\\n9\\n00:00:17,600 --> 00:00:19,600\\nMi nombre es Alejandro Linares García\\n\\n10\\n00:00:19,600 --> 00:00:20,166\\n \\n\\n11\\n00:00:20,166 --> 00:00:22,099\\nVivo en la ciudad de México\\n\\n12\\n00:00:22,100 --> 00:00:22,600\\n \\n\\n13\\n00:00:22,600 --> 00:00:27,500\\nMe gusta la fotografía, junto con mi esposa\\n\\n14\\n00:00:27,500 --> 00:00:28,833\\n \\n\\n15\\n00:00:28,833 --> 00:00:33,499\\nella escribe los artículos\\n\\n16\\n00:00:33,500 --> 00:00:33,600\\n \\n\\n17\\n00:00:33,600 --> 00:00:37,466\\nyo la apoyo en las imágenes de diseñador grafico\\n\\n18\\n00:00:37,466 --> 00:00:38,799\\n \\n\\n19\\n00:00:38,800 --> 00:00:41,333\\nY esa es mi visión como artista\\n\\n20\\n00:00:41,333 --> 00:00:41,599\\n \\n\\n21\\n00:00:41,600 --> 00:00:46,433\\nde poder ver la imagen como si fuera un cuadro\\n\\n22\\n00:00:46,433 --> 00:00:46,666\\n \\n\\n23\\n00:00:46,666 --> 00:00:50,032\\ncomo si fuera algo artístico\\n\\n24\\n00:00:50,033 --> 00:00:50,333\\n \\n\\n25\\n00:00:50,333 --> 00:00:52,999\\npero además algo que la gente pudiera conocer\\n\\n26\\n00:00:53,000 --> 00:00:53,266\\n \\n\\n27\\n00:00:53,266 --> 00:00:55,966\\nya que estas fotos las ven mucha gente\\n\\n28\\n00:00:55,966 --> 00:00:55,999\\n \\n\\n29\\n00:00:56,000 --> 00:00:57,400\\ny las ven en todo el mundo\\n\\n30\\n00:00:57,400 --> 00:01:01,066\\nRedescubran que a lo que a lo mejor tenían \\n\\n31\\n00:01:01,066 --> 00:01:02,332\\nen un principio\\n\\n32\\n00:01:02,333 --> 00:01:04,533\\nla imagen de México\\n \\n\\n33\\n00:01:04,533 --> 00:01:07,699\\nquizás con estas fotos \\n\\n34\\n00:01:07,700 --> 00:01:11,466\\npuedan ver otra forma de imagen\\n\\n35\\n00:01:11,466 --> 00:01:16,799\\nDice \"Wow, México es algo más que chile y tortillas, ¿no?\"\\n\\n36\\n00:01:16,800 --> 00:01:17,200\\n \\n\\n37\\n00:01:17,200 --> 00:01:20,966\\nSino que hay una gran variedad y que cambie su manera de pensar\\n\\n38\\n00:01:20,966 --> 00:01:21,199\\n \\n\\n39\\n00:01:21,200 --> 00:01:23,700\\nConozcan más lo que es México\\n\\n40\\n00:01:23,700 --> 00:01:24,533\\n \\n\\n41\\n00:01:24,533 --> 00:01:26,766\\nPor medio de la tradición, de la cultura\\n\\n42\\n00:01:26,766 --> 00:01:27,032\\n \\n\\n43\\n00:01:27,033 --> 00:01:29,199\\nPor medio de sus fiestas \\n\\n44\\n00:01:29,200 --> 00:01:29,533\\n \\n\\n45\\n00:01:29,533 --> 00:01:31,133\\nSobre todo sus fiestas \\n\\n46\\n00:01:31,133 --> 00:01:31,166\\n \\n\\n47\\n00:01:31,166 --> 00:01:32,999\\nQue dan a conocer muchas cosas\\n\\n48\\n00:01:33,000 --> 00:01:33,300\\n \\n\\n49\\n00:01:33,300 --> 00:01:35,800\\nPienso que hay una gran comunidad ahorita \\n\\n50\\n00:01:35,800 --> 00:01:35,866\\n \\n\\n51\\n00:01:35,866 --> 00:01:39,132\\nsobre todo lo que vi en Wikimania\\n\\n52\\n00:01:39,133 --> 00:01:39,299\\n \\n\\n53\\n00:01:39,300 --> 00:01:41,333\\nTodos tienen sus imágenes\\n\\n54\\n00:01:41,333 --> 00:01:41,533\\n \\n\\n55\\n00:01:41,533 --> 00:01:43,099\\nTodos tienen su cultura\\n\\n56\\n00:01:43,100 --> 00:01:43,133\\n \\n\\n57\\n00:01:43,133 --> 00:01:44,799\\nY sus cosas favoritas\\n\\n58\\n00:01:44,800 --> 00:01:45,033\\n \\n\\n59\\n00:01:45,033 --> 00:01:46,833\\nY si compartimos todo esto\\n\\n60\\n00:01:46,833 --> 00:01:47,399\\n \\n\\n61\\n00:01:47,400 --> 00:01:48,633\\nSe hace más grande\\n\\n62\\n00:01:48,633 --> 00:01:49,366\\n \\n\\n63\\n00:01:49,366 --> 00:01:50,966\\nEntonces, creo que el conocimiento\\n\\n64\\n00:01:50,966 --> 00:01:51,266\\n \\n\\n65\\n00:01:51,266 --> 00:01:52,699\\nes la base de Wikimedia\\n\\n66\\n00:01:52,700 --> 00:01:53,033\\n \\n\\n67\\n00:01:53,033 --> 00:01:56,533\\nDe dar a conocer las cosas que existen en todo el mundo.\\n\\n68\\n00:01:56,533 --> 00:01:59,699\\nDar a conocer...\\n\\n69\\n00:01:59,700 --> 00:02:02,866\\nEso que la humanidad tiene, en todo el mundo\\n\\n70\\n00:02:02,866 --> 00:02:03,132\\n \\n\\n71\\n00:02:03,133 --> 00:02:10,633\\nLo que es sus tradiciones, sus culturas, su comida, sus poblaciones\\n\\n72\\n00:02:10,633 --> 00:02:11,533\\n \\n\\n73\\n00:02:11,533 --> 00:02:15,099\\nDecir cómo es su zona donde ellos viven\\n\\n74\\n00:02:15,100 --> 00:02:15,133\\n \\n\\n75\\n00:02:15,133 --> 00:02:16,733\\nCómo viven\\n\\n76\\n00:02:16,733 --> 00:02:16,766\\n \\n\\n77\\n00:02:16,766 --> 00:02:18,732\\nY eso es muy interesante para todo el mundo\\n\\n78\\n00:02:18,733 --> 00:02:18,933\\n \\n\\n79\\n00:02:18,933 --> 00:02:21,933\\nSi nos compartimos todo eso conoceremos mejor el mundo\\n\\n80\\n00:02:21,933 --> 00:02:22,366\\n \\n\\n81\\n00:02:22,366 --> 00:02:25,866\\nY a lo mejor podremos cuidar mejor el mundo',\n", + " 'bytes': 4615,\n", + " 'sha1': 'c4uji8a873dac4pm3on7v04q9um1qdj',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85526313,\n", + " 'timestamp': '2012-12-23T12:48:37Z',\n", + " 'user': {'id': 7000, 'text': 'Seb35'},\n", + " 'page': {'id': 23302616,\n", + " 'title': 'The Impact of Wikipedia Poongothai Balasubramanian.webm.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'translation from [[meta:Fundraising 2012/Translation/Poongothai video (captions)/fr]] (translators: [[meta:User:Morhelluin]], [[meta:User:Fanoudu62219]], [[meta:User:Seb35]])',\n", + " 'text': '1\\n00:00:01,105 --> 00:00:02,016\\nJ’adore mes étudiants.\\n\\n2\\n00:00:03,874 --> 00:00:08,270\\nQuand je travaillais alors dans mes disciplines, j’adorais mes étudiants.\\n\\n3\\n00:00:09,288 --> 00:00:11,538\\nJe m’appelle Balasubramanian Poongothai.\\n\\n4\\n00:00:11,56 --> 00:00:13,181\\nJe vis en Inde.\\n\\n5\\n00:00:13,721 --> 00:00:20,791\\nJ’ai été professeur de mathématiques pendant 33\\xa0ans et je suis partie à la retraite,\\n\\n6\\n00:00:22,23 --> 00:00:27,095\\npuis j’ai commencé à éditer Wikipédia. \\n\\n7\\n00:00:28,5 --> 00:00:30,641\\nVous voyez, j’étais partie à la retraite,\\n\\n8\\n00:00:31,135 --> 00:00:33,954\\ndonc j’avais mes journées entières pour moi. \\n\\n9\\n00:00:34,4 --> 00:00:39,394\\nMes fils sont grands, et ils vivent leurs vies. \\n\\n10\\n00:00:39,841 --> 00:00:47,791\\nJe suis libérée de toutes ces responsabilités, et les années qui viennent sont entièrement pour moi,\\n\\n11\\n00:00:47,841 --> 00:00:49,341\\net j’en profite. \\n\\n12\\n00:00:49,45 --> 00:00:59,78\\nQuand je participe à Wikipédia, je me sens engagée, et... Nous laissons quelque chose pour les générations futures.\\n\\n13\\n00:01:00,15 --> 00:01:07,679\\nL’algèbre, la géométrie analytique, la géométrie sont les sujets avec lesquels je suis à l’aise.\\n\\n14\\n00:01:08,8 --> 00:01:10,788\\nAu début, j’ai commencé avec «\\xa0Probabilité\\xa0». \\n\\n15\\n00:01:11,45 --> 00:01:14,169\\nLe premier article que j’ai commencé était «\\xa0Probabilité\\xa0». \\n\\n16\\n00:01:15,064 --> 00:01:18,998\\nJe suis tous les jours sur Wikipedia, je suis simplement à la maison, \\n\\n17\\n00:01:19,445 --> 00:01:27,217\\nje m’occupe donc de mes affaires personnelles, et ensuite je m’assoie à mon ordinateur et édite, \\n\\n18\\n00:01:28,45 --> 00:01:33,769\\net je crée des articles, et je crée des articles sur les Mathématiques, \\n\\n19\\n00:01:34,5 --> 00:01:40,31\\net puis le tamoul étant ma langue maternelle, et ma langue favorite, \\n\\n20\\n00:01:41,0 --> 00:01:47,94\\nj’édite les articles créés par d’autres pour corriger les erreurs et la grammaire. \\n\\n21\\n00:01:48,8 --> 00:01:52,06\\nTout le monde peut en profiter, qu’on soit riche ou pauvre. \\n\\n22\\n00:01:52,548 --> 00:01:58,10\\nIci, en un simple clic, le monde entier est à notre portée.\\n\\n23\\n00:01:59,13 --> 00:02:04,34\\nNous donnons l’information complète à travers Internet. \\n\\n24\\n00:02:05,298 --> 00:02:10,71\\nSans aucune caste. C’est vraiment une chose géniale.',\n", + " 'bytes': 2360,\n", + " 'sha1': 'evm70rxwp4zevm7ba3aq0ce9batq4l3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96560853,\n", + " 'timestamp': '2013-05-20T00:39:07Z',\n", + " 'user': {'text': '180.191.31.177'},\n", + " 'page': {'id': 23304855,\n", + " 'title': 'En-uk-hippopotomonstrosesquipedaliophobia.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,000\\nHippopotomonstrosesquipedaliophobia',\n", + " 'bytes': 67,\n", + " 'sha1': 'axomgisvtlo5v6wi9j6aokpwj8ctszb',\n", + " 'parent_id': 85540034,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85572196,\n", + " 'timestamp': '2012-12-24T04:05:36Z',\n", + " 'user': {'text': '97.101.160.254'},\n", + " 'page': {'id': 23311494,\n", + " 'title': \"Candidate's song take 2.ogg.en.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:15,000 --> 00:00:35,000\\n I am the very model of a modern Wikipedian:\\n I\\'ve knowledge of Greek drama, both comedic and tragedian;\\n I know historic battlefields from Ancient Rome to World War Two,\\n And neutral is the mode in which I always keep my point of view!\\n \\n I\\'m very well acquainted, too, with Polynese ethnology.\\n I understand Samoan lore and Mā-ori mythology.\\n From mountain peaks of Suriname to passes of the Great Divide,\\n I see to it that everything is quite correctly wikified!\\n 2\\n 00:00:35,000 --> 00:00:45,000\\n He sees to it that everything is quite correctly wikified!\\n He sees to it that everything is quite correctly wikified!\\n He sees to it that everything is quite correctly wiki- wikified!\\n 3\\n 00:00:45,000 --> 00:01:00,000\\n Some people think my entries are little more than trivia —\\n That episode of \"Barney\" or some woodwind of Bolivia —\\n And yet, in matters great and small, the high and low and median,\\n I am the very model of a modern Wikipedian\\n\\n In short, in matters great and small, the high and low and median,\\n He is the very model of a modern Wikipedian!\\n 4\\n 00:01:00,000 --> 00:01:30,000\\n I SIGN all of my comments; and I summarize my each edit;\\n I never BITE; I never POINT; I follow wiki etiquette;\\n I assume good faith when wiki-flamed, and wear a thickened wiki-skin.\\n For I\\'m the very model of a proper wiki-citizen:\\n\\n I\\'m often found at village pumps discussing rules and policy,\\n And judging notability while over at the AfD,\\n In matters wiki-sophic, I\\'m no exopede inclusionist,\\n But an incremento-eventuo-darwikian-delusionist!\\n\\n An incremento-eventuo-darwikian-delusionist!\\n An incremento-eventuo-darwikian-delusionist!\\n An incremento-eventuo-darwikian-delusion-usionist!\\n\\n\\n 5\\n 00:01:30,000 --> 00:1:50,000\\n I am the very model of a modern Wikipedian.\\n I wrote this wiki-parody to ease some wiki-tedium.\\n When dealing with my colleagues, I\\'m a friendly wiki-editor,\\n But when provoked I can become a vandal-stalking predator;\\n\\n When dealing with his colleagues he\\'s a friendly wiki-editor,\\n But when provoked he can become a vandal-stalking predator!\\n\\n 6\\n 00:01:50,000 --> 00:02:10,000\\n Reverts and warnings I have made while on the recent change patrol,\\n I play some cat-and-mouse with them, but now I want to block \\'em all,\\n And so at last I must become a wiki admin-candidate:\\n And since I am my only fan, I\\'ve no choice but to self-nominate.\\n\\n As prep for this, I\\'ve studied up on bans and blocks and redirects,\\n And I can tell you all about both SEMIs and full page protects,\\n And when you hear all that I know of wikipede sysop-ery,\\n You’ll say no better candidate has ever sought the mop-pery\\n\\n 7\\n 00:02:10,000 --> 00:02:35,000\\n You’ll say no better candidate has ever sought the moppery.\\n You’ll say no better candidate has ever sought the moppery.\\n You’ll say no better candidate has ever sought the moppa-moppery.\\n\\n Now adminship, as our Jimbo says, is really no big deal at all:\\n So many fail, and so might I (my role in portal talk\\'s been small)\\n But still, in matters great and small, the high and low and median,\\n I am the very model of a modern \\'\\'\\'Wikipedian\\'\\'\\'\\n\\n In short, in matters great and small, the high and low and median,\\n He is the very model of a modern \\'\\'\\'Wikipedian\\'\\'\\'!',\n", + " 'bytes': 3504,\n", + " 'sha1': 'o81dthp867gv84eygodr2ni1zz3nqpu',\n", + " 'parent_id': 85572174,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 130504424,\n", + " 'timestamp': '2014-08-02T07:28:24Z',\n", + " 'user': {'id': 1785334, 'text': 'Zhantongz'},\n", + " 'page': {'id': 23323093,\n", + " 'title': 'President Obama Makes a Statement on the Shooting in Newtown.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,199 --> 00:00:04,000\\n美国总统:今天下午,我与马洛伊(康涅狄格州州长)\\n\\n2\\n00:00:04,000 --> 00:00:06,867\\n和联邦调查局局长穆勒进行了交谈。\\n\\n3\\n00:00:06,867 --> 00:00:11,033\\n我代表国家向马罗伊州长致以慰问,\\n\\n4\\n00:00:11,032 --> 00:00:18,899\\n并且明确他可以利用所有资源去侦察这令人发指的罪行、\\n\\n5\\n00:00:18,899 --> 00:00:23,099\\n照料受害者并安抚他们的家人。\\n\\n6\\n00:00:24,632 --> 00:00:28,666\\n在过去几年,我们经历了太多这样的不幸。\\n\\n7\\n00:00:28,667 --> 00:00:34,700\\n当我每次得知这样的消息,我的反应并不像一个总统,\\n\\n8\\n00:00:34,700 --> 00:00:39,800\\n而像其他所有人一样——如同一个家长。\\n\\n9\\n00:00:39,799 --> 00:00:41,799\\n今日,我更是深感如此。\\n\\n10\\n00:00:43,399 --> 00:00:51,833\\n我明白,在美国没有一个父母不像我这样悲痛。\\n\\n11\\n00:00:51,834 --> 00:01:00,200\\n死者大多是儿童——5到10岁间的美丽小孩。\\n\\n12\\n00:01:12,400 --> 00:01:16,467\\n他们本有着更长更远的生活——过生日、\\n\\n13\\n00:01:16,466 --> 00:01:22,466\\n毕业、结婚、生子。\\n\\n14\\n00:01:27,733 --> 00:01:30,866\\n牺牲的还有教师——无论性别,\\n\\n15\\n00:01:30,867 --> 00:01:35,533\\n他们为帮助孩子实现梦想而付出了生命。\\n\\n16\\n00:01:35,533 --> 00:01:47,633\\n惨案令人心碎——为那些逝去孩子的父母、爷爷奶奶、兄弟姐妹,为那些逝去成年人的家人。\\n\\n17\\n00:01:50,332 --> 00:01:54,599\\n我们的心同样为幸存孩子的父母而碎,\\n\\n18\\n00:01:54,599 --> 00:01:57,632\\n他们能够看到自己的孩子今晚回家是幸福的,\\n\\n19\\n00:01:57,632 --> 00:02:06,332\\n他们也知道孩子们的纯真太早被撕裂了,没有东西能够缓解父母的痛苦。\\n\\n20\\n00:02:08,233 --> 00:02:12,066\\n作为一个国家,我们已经历太多这样的事情。\\n\\n21\\n00:02:12,066 --> 00:02:16,332\\n在纽敦镇的小学,\\n\\n22\\n00:02:16,332 --> 00:02:22,500\\n在俄勒冈的购物中心,抑或在威斯康星州的锡克教神庙,或是丹佛奥罗拉的影院,\\n\\n23\\n00:02:22,500 --> 00:02:28,900\\n还有芝加哥的街头——这些社区是我们的社区,这些孩子是我们的孩子。\\n\\n24\\n00:02:28,900 --> 00:02:39,000\\n不管有什么样的政治分歧,我们将不得不团结在一起采取有意义的行动避免同样的悲剧再次发生。\\n\\n25\\n00:02:41,165 --> 00:02:45,900\\n今晚,米歇尔和我将做每个美国父母都会去做的事情,\\n\\n26\\n00:02:45,900 --> 00:02:48,667\\n给我们的孩子一个更贴心的拥抱,\\n\\n27\\n00:02:48,667 --> 00:02:55,265\\n并且向他们表达出我们的爱,我们要让彼此知道,我们多么爱对方。\\n\\n28\\n00:02:55,265 --> 00:02:59,165\\n然而,康涅狄格州的许多家庭今晚却无法做到这些。\\n\\n29\\n00:02:59,165 --> 00:03:02,432\\n他们需要我们所有人,就是现在。\\n\\n30\\n00:03:02,432 --> 00:03:07,766\\n在艰难的日子到来时,社会需要我们美国人积极应对。\\n\\n31\\n00:03:07,766 --> 00:03:11,766\\n我作为总统将竭尽全力提供帮助。\\n\\n32\\n00:03:11,766 --> 00:03:16,834\\n没有什么东西能够填补人们失去孩子或心爱着的人之后的空白,\\n\\n33\\n00:03:16,834 --> 00:03:22,000\\n我们所有人可以向需要的人伸出援手\\n\\n34\\n00:03:22,000 --> 00:03:27,366\\n——提醒他们,我们就在身边,为他们祈福,\\n\\n35\\n00:03:27,366 --> 00:03:35,366\\n他们对逝者的爱不仅在他们的记忆中,也停留在我们的心房。\\n\\n36\\n00:03:38,165 --> 00:03:48,933\\n愿上帝保佑受难者的记忆,正如圣经所说,抚慰心碎者,助他们疗伤。',\n", + " 'bytes': 3598,\n", + " 'sha1': '9comddkepumi9s17tkccviky4igcga9',\n", + " 'parent_id': 85640664,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85653786,\n", + " 'timestamp': '2012-12-25T11:51:40Z',\n", + " 'user': {'id': 1482985, 'text': 'Abián'},\n", + " 'page': {'id': 23326029,\n", + " 'title': 'Wiki Loves Monuments 2012 Spain.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Delaying a bit',\n", + " 'text': '1\\n00:00:01,200 --> 00:00:04,100\\nAlbarracín, Teruel\\n\\n2\\n00:00:04,100 --> 00:00:07,600\\nSevilla\\n\\n3\\n00:00:07,600 --> 00:00:11,900\\nTalavera de la Reina, Toledo\\n\\n4\\n00:00:11,900 --> 00:00:41,900\\nToledo\\n\\n5\\n00:00:41,900 --> 00:00:51,100\\nÁvila\\n\\n6\\n00:00:51,100 --> 00:00:54,200\\nReal Sitio de San Ildefonso, Segovia\\n\\n7\\n00:00:54,200 --> 00:01:00,100\\nSegovia\\n\\n8\\n00:01:00,100 --> 00:01:03,400\\nSantiago de Compostela\\n\\n9\\n00:01:03,400 --> 00:01:07,100\\nJaca, Huesca\\n\\n10\\n00:01:07,100 --> 00:01:14,400\\nZaragoza\\n\\n11\\n00:01:14,400 --> 00:01:18,850\\nBadalona, Barcelona\\n\\n12\\n00:01:18,850 --> 00:01:22,750\\nEl Escorial, Madrid\\n\\n13\\n00:01:22,750 --> 00:01:29,270\\nMadrid\\n\\n14\\n00:01:29,270 --> 00:01:33,300\\nBoadilla del Camino, Palencia\\n\\n15\\n00:01:33,300 --> 00:01:35,900\\nBesalú, Gerona\\n\\n16\\n00:01:35,900 --> 00:01:38,320\\nPuerto de la Selva, Gerona\\n\\n17\\n00:01:38,320 --> 00:01:42,100\\nFigueras, Gerona\\n\\n18\\n00:01:42,100 --> 00:01:45,350\\nLa Junquera, Gerona\\n\\n19\\n00:01:45,350 --> 00:01:49,540\\nCiurana, Tarragona\\n\\n20\\n00:01:49,540 --> 00:01:55,000\\nAtienza, Guadalajara',\n", + " 'bytes': 1027,\n", + " 'sha1': 'diyjq33nd01agojxc8n826f77vuz5o5',\n", + " 'parent_id': 85653607,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85657869,\n", + " 'timestamp': '2012-12-25T13:21:49Z',\n", + " 'user': {'id': 2509224, 'text': 'Skribblez1'},\n", + " 'page': {'id': 23327131,\n", + " 'title': 'Christmas enlightments rue de la Mésange 2.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:20,000 --> 00:00:24,400 Whistling and walking sounds 2 00:00:24,600 --> 00:00:27,800 More whistling and walking sounds.'\",\n", + " 'text': '1\\n00:00:20,000 --> 00:00:24,400\\nWhistling and walking sounds\\n\\n2\\n00:00:24,600 --> 00:00:27,800\\nMore whistling and walking sounds.',\n", + " 'bytes': 128,\n", + " 'sha1': 'tvjxd1z8nkipsm8v8whn8ankyzsasi9',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85730490,\n", + " 'timestamp': '2012-12-26T15:01:18Z',\n", + " 'user': {'id': 1587862, 'text': 'Erasmo Barresi'},\n", + " 'page': {'id': 23341284,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 Sono un insegnante di inglese. Sono sposato e ho una figlia. 2 00:00:05,200 --> 00:00:13,587 Lavoro più o meno come chiunque a...'\",\n", + " 'text': '1\\n00:00:00,500 --> 00:00:04,497\\nSono un insegnante di inglese. Sono sposato e ho una figlia.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nLavoro più o meno come chiunque altro. Ho un orario. Vado al lavoro e torno.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nHo gli stessi bisogni di tutti gli altri, e voglio anche impiegare il mio tempo libero su Wikipedia.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nMi chiamo Erlan Vega. Vengo da La Paz, in Bolivia.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nScrivo voci su diversi argomenti, per la maggior parte cose non pericolose: farfalle, insetti, animali.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nNel mio sistema scolastico, le persone solitamente non scrivono e non creano.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nRicevono semplicemente le informazioni, supponendo che le memorizzino, e poi hanno la verifica.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nE, nonostante facciano domande, non è una buona cosa.\\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nÈ come quando, alla fine del corso,\\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nti chiedono di scrivere qualcosa, come un articolo o un saggio, e sei davvero nei guai perché non l\\'hai mai fatto.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nDare a qualcuno l\\'opportunità di essere creativo e di essere riconosciuto per qualcosa che ha scritto\\n\\n12\\n00:01:11,210 --> 00:01:13,855\\nè stato davvero un punto di svolta nella mia vita.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nTutto iniziò quando un giorno andai in Wikizionario, il dizionario di Wikipedia,\\n\\n14\\n00:01:19,892 --> 00:01:25,360\\ne incontrai questa ragazza, Dabawdygirl //. In quel momento stavamo combattendo un vandalo.\\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nLei provò a rispondere in spagnolo. Il suo spagnolo era un po\\' traballante.\\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nCosì facemmo una sorta di accordo non scritto: \"Io ti insegno lo spagnolo e tu mi insegni l\\'inglese\".\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nCi correggemmo a vicenda e imparammo la lingua contribuendo a Wikizionario in inglese e in spagnolo.\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nAlla fine il mio inglese migliorò molto, perché feci pratica ogni giorno.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nQuando finii i miei studi in inglese,\\n\\n20\\n00:01:56,946 --> 00:02:09,180\\npassai il test d\\'ammissione ECP, che è un requisito per gli insegnanti, e mi assunsero,\\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nperché i miei punteggi, suppongo, erano abbastanza alti per insegnare.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nCominciarono qualche allenamento e ormai lavoro lì da cinque anni.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nÈ sorprendente perché oggi sono un lavoratore stabile, sono sposato, ho una figlia: Wikipedia ha cambiato la mia vita.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nRegista: Victor Grigas Co-regista: David Grossman\\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nProduttore: Zack Exley Direttore della fotografia: Pruitt Y. Allen\\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nFotografi del video: Jack Harris, Adam Parr, Matthew Storck\\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nRitrattisti: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nTrucco: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nIntervistatori: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson\\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nCoordinatori di produzione: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nAssistenti alla produzione: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nAssistenti alla produzione: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nAutore: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nServizi di trascrizione: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nSottotitoli in inglese: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]',\n", + " 'bytes': 3911,\n", + " 'sha1': '2hpg6xtbx6cgpqre0bgibh8whsnw6rz',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 87806198,\n", + " 'timestamp': '2013-01-16T15:55:14Z',\n", + " 'user': {'id': 1375542, 'text': 'Philippe.petrinko'},\n", + " 'page': {'id': 23368529,\n", + " 'title': 'The Impact of Wikipedia - Benoit Rochon.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Typos, accents, and french translation',\n", + " 'text': \"1\\n00:00:00,1 --> 00:00:03,309\\nHurricane Irene - I will remember that name all my life.\\n\\n2\\n00:00:03,641 --> 00:00:04,776 [laughs]\\n\\n3\\n00:00:05,274 --> 00:00:06,634\\nMy name is Benoit Rochon\\n\\n4\\n00:00:06,2 --> 00:00:09,129\\nI am from Montreal, Quebec, Canada\\n\\n5\\n00:00:09,759 --> 00:00:15,121\\nJ'écris principalement des biographies des artistes, des politiciens, parce que je veux faire rayonner le Québec.\\n\\n6\\n00:00:16,105 --> 00:00:19,477\\nJe veux faire rayonner les francophones du Canada.\\n\\n7\\n00:00:20,322 --> 00:00:28,816\\nOn est peu representés sur Wikipedia en français, et ça serait vraiment génial si on avait plus des contributeurs.\\n\\n8\\n00:00:29,849 --> 00:00:38,560\\nEvery time I write Wikipedia, I always think about people who are poorer than me.\\n\\n9\\n00:00:39,157 --> 00:00:43,567\\nSo, I feel like I'm doing something great on Wikipedia.\\n\\n10\\n00:00:44,062 --> 00:00:49,570\\nEvery time I edit Wikipedia, I put knowledge somewhere else in my own language.\\n\\n11\\n00:00:51,018 --> 00:00:57,318\\nSo, yes, I'm middle-class, but class doesn't mean anything on Wikipedia.\\n\\n12\\n00:00:57,342 --> 00:01:02,629\\nI was looking for an event to organize for Wikipedia. Wikimedia Canada was brand new, \\n\\n13\\n00:01:02,629 --> 00:01:04,842\\nand we wanted to have a first event. \\n\\n14\\n00:01:04,842 --> 00:01:11,502\\nI heard about Wikipedia Takes Your City, which was done in Manhattan [New York City], Boston, \\n\\n15\\n00:01:11,502 --> 00:01:13,257\\nmany countries all around the world, \\n\\n16\\n00:01:13,18 --> 00:01:16,559\\nand I wanted this event to be in Montreal.\\n\\n17\\n00:01:16,559 --> 00:01:21,225\\nWell, two days before the event - the hurricane was in New York City - \\n\\n18\\n00:01:23,538 --> 00:01:24,635\\nand we knew it was coming up the East Coast.\\n\\n19\\n00:01:24,635 --> 00:01:27,430\\nI never saw a hurricane in Montreal in my whole life.\\n\\n20\\n00:01:27,43 --> 00:01:29,856\\nI don't remember seeing something like this.\\n\\n21\\n00:01:30,368 --> 00:01:34,368\\nAnd it wasn't possible. I don't know why it hit our event.\\n\\n22\\n00:01:34,368 --> 00:01:42,74\\nI started the event at 11 o'clock, and at 11:45 trees were bended and the rain was horizontal.\\n\\n23\\n00:01:44,0 --> 00:01:50,44\\nIt was just crazy. I was watching through the window. People were running all over the city.\\n\\n24\\n00:01:50,443 --> 00:01:55,90\\nWe put targets, like, for instance, the Olympic Stadium, we have tons of pictures of this, \\n\\n25\\n00:01:56,34 --> 00:01:58,88\\nso I put 1 point for that, but I put 100 points for something \\n\\n26\\n00:01:58,875 --> 00:02:03,47\\nwhich is not illustrated on Wikipedia and we have the article, \\n\\n27\\n00:02:04,75 --> 00:02:08,93\\nso people were running in the rain, in the hurricane, by car, some by foot,\\n\\n28\\n00:02:09,561 --> 00:02:16,89\\nand just to take pictures, which were 100 points, and - \\n\\n29\\n00:02:16,894 --> 00:02:19,54\\nI don't know how they managed that.\\n\\n30\\n00:02:19,539 --> 00:02:24,75\\nPeople are courageous. Honestly, they were crazy! [laughs]\\n\\n31\\n00:02:24,75 --> 00:02:26,15\\nDirector: Victor Grigas\\n\\n32\\n00:02:26,154 --> 00:02:27,25\\nCodirector: David Grossman \\n\\n33\\n00:02:27,254 --> 00:02:28,61\\nProducer: Zack Exley\\n\\n34\\n00:02:28,613 --> 00:02:29,80\\nDirector of Photography: Pruitt Y. Allen \\n\\n35\\n00:02:29,798 --> 00:02:31,08\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck\\n\\n36\\n00:02:31,078 --> 00:02:32,60\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n37\\n00:02:32,596 --> 00:02:34,05\\nMakeup: Melissa Klein\\n\\n38\\n00:02:34,054 --> 00:02:36,43\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson\\n\\n39\\n00:02:36,431 --> 00:02:38,12\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n40\\n00:02:38,12 --> 00:02:39,34\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n41\\n00:02:39,339 --> 00:02:40,95\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n42\\n00:02:40,952 --> 00:02:42,14\\nWriter: Desirina Boskovich\\n\\n43\\n00:02:42,136 --> 00:02:44,07\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n44\\n00:02:44,071 --> 00:02:44,52\\nEnglish Closed-Captioning: AlanKelly VerbatimIT\\n\\n45\\n00:02:44,52 --> 00:02:44,90\\n:)\",\n", + " 'bytes': 4177,\n", + " 'sha1': 'giusgfzquag1f32o7n73evnshdxo0ki',\n", + " 'parent_id': 85835787,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 219444978,\n", + " 'timestamp': '2016-11-25T17:45:13Z',\n", + " 'user': {'id': 2672346, 'text': 'Svensson1'},\n", + " 'page': {'id': 23382485,\n", + " 'title': 'The Impact Of Wikipedia.webm.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia jest przedsięwzięciem „non-profit”, lecz jest też piątą co do częstości odwiedzin stroną w Internecie. Wszystkie jej artykuły piszą ochotnicy.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nChcielibyśmy Wam przedstawić ich drobną część...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nJestem z Nepalu.\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nJestem z Iraku.\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nPochodzę z Indii.\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nJestem z Byram, w stanie New Jersey.\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nMieszkam w Birmingham w Anglii.\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois... La Paz, Boliwia... Nairobi, Kenia...\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malezja... Włoski Mediolan... RPA...\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolska... Japonia... Armenia...\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrazylia... Rosja... Botswana...\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIzrael... Uzbekistan... Hong Kong...\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstambuł... Meksyk...\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee.\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nPo dołaczeniu do grupy edytorów Wikipedii w roku 2008 zapoczątkowałam wiele artykułów.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nJeden z nich, jak sądzę, był o kobiecie nazwiskiem Mariam Nour. \\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nNie mieliśmy jeszcze o niej hasła, więc... to był mój pierwszy artykuł.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nZupełnie o nim zapomniałam! Może dwa albo trzy lata później\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nnatknęłam się na to hasło. Byłam zszokowana!\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMoje hasło przeczytało ponad sto tysięcy ludzi.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nSkorzystali z tego hasła, wzięli z niego jakieś informacje. Dotknęli go.\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nW tym momencie czujesz, że wpłynęłaś na sto tysięcy ludzi.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nByłam przerażona, gdy po raz pierwszy wcisnęłam przycisk „Edytuj”.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nPomyślałam: „O mój Boże, zaraz wszystko schrzanię! Nie zadziała! Nie potrafię!”\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia jest projektem o „otwartym kodzie”, do którego każdy może dorzucić swój pomysł,\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\npo czym przychodzi ktoś inny i wygładza ten pomysł, by stał się idealny.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nKażdego dnia, każdej godziny, kazdej minuty – nad poprawianiem Wikipedii pracują tysiące ludzi.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nWiele leży w idei wolontariatu. Wikipedia jest unikatowym pomysłem na wolontariat.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nSkupia w jednym miejscu profesjonalistów i amatorów, którzy razem miłują jakieś zagadnienie.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nLudzie którzy na początku mają rozbieżne opinie zaczynają współpracować.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nWiele pracy, do której raczej pasuje kontekst wielkiej korporacji internetowej,\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\ndokonywanej jest przez wolontariuszy, takich, jak ja.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nNie można powiedzieć: „Dobra, ja mam rację, ty bredzisz, to jest moja wersja hasła!”\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nJeśli zauważymy subiektywizm w haśle,\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nto najprawdopodobniej ktoś zdążył już go oznaczyć, a jeśli nie – to ja mogę to zrobić.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nSetki, tysiące ludzi widzą błędy\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\ni je poprawiają.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nWcisnęłam ten przycisk i\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\n„Boom!” – zaczęła się podróż. Wspaniała podróż.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nRozpoczęłam od hasła „Prawdopodobieństwo”.\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nPierwszy artykuł, który stworzyłam, to „Prawdopodobieństwo”.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nJedno z najważniejszych haseł które napisałem dla Wikipedii\\n\\n42\\n00:02:26,001 --> 00:02:27,400\\ndotyczyło ran kłutych.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nPiszę o wędkarstwie muchowym,\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nhistorii Montany, historii parków narodowych, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nNiedostatecznie wykorzystywanych uprawach. Szachistach. Bioróznorodności.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nHistorii wojskowości. Historii Armenii. Historii Rzymu.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nSędziach. Komunikacji. Biografiach. Piłce nożnej.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrlandii. Pensylwanii. Głównie o fotografii.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Pieczeniu, gdyż uwielbiam piec.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nBroni jądrowej i radioaktywności\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\noraz kajakarstwie górskim.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nW świecie jest dużo porozrzucanej informacji,\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nktórą my zbieramy w jednym miejscu.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nDajemy darmową wiedzę – wszystkim,\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nw ich własnym języku, by mogli z niej korzystać.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nKażdy z tej wiedzy korzysta, obojetnie, czy jest bogaty, czy biedny.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nOrganizacje zarobkowe mają różną motywację działania i wymogi.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nOd Wikimedia Foundation nie pobieram wynagrodzenia, nie wypłaca mi też ona diet.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nSądzę, że to ważne, że jestem w stanie jasno powiedzieć:\\n\\n60\\n00:03:25,501 --> 00:03:30,500\\n„Gdy proszę was o pieniadze, to nie chcę tych pieniedzy dla siebie.\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nProszę o środki na działanie fundacji, gdzie pracuje grupa ludzi wspierająca tę cudowną społeczność, której jestem członkiem.”\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nSądzę, że Wikipedia dała mi szansę dokonania w świecie znacznych zmian.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nTo swego rodzaju inwestycja w twoją własną przyszłość. I w przyszłość twoich dzieci.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nDziękujemy.\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nNiniejszy film udostępniony jest na licencji Creative Commons-Uznanie autorstwa-Na tych samych warunkach v3.0 (http://creativecommons.org/licenses/by-sa/3.0) o ile nie zaznaczono inaczej. Autorem filmu jest Victor Grigas, Wikimedia Foundation.\\nOpinie wyrażone w niniejszym nagraniu są poglądami osób występujących w filmie i niekoniecznie odzwierciedlają punkt widzenia i zasady jakiejkolwiek firmy, organizacji, czy instytucji, której członkiem jest sfilmowana osoba.\\nZnaki towarowe i logotypy Wikimedia Foundation i innych organziacji nie są zamieszczone na mocy licencji Creative Commons. Znaki i logotypy Wikimedia Foundation, w tym „Wikipedia” oraz „kulka z puzzli” są zarejestrowanymi znakami Wikimedia Foundation. Więcej informacji na temat znaków WMF znajduje się na stronie\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nTen klip wideo jest dostępny na licencji Creative Commons.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nPodobnie, jak Wikipedię, można go dowolnie kopiować, remiksować i udostępniać.',\n", + " 'bytes': 7323,\n", + " 'sha1': 'qe37xh4wzo3lur3u1p1239t0oqlcwii',\n", + " 'parent_id': 85999534,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 246542409,\n", + " 'timestamp': '2017-06-04T06:19:38Z',\n", + " 'user': {'id': 2523479, 'text': 'JackCaptions'},\n", + " 'page': {'id': 23496064,\n", + " 'title': 'GWBush Oval Office Address 20010911-1-.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Removed credit',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,040\\nGood evening.\\n\\n2\\n00:00:01,900 --> 00:00:12,540\\nToday, our fellow citizens, our way of life, our very freedom came under attack in a series of deliberate and deadly terrorist acts.\\n\\n3\\n00:00:13,630 --> 00:00:18,020\\nThe victims were in airplanes or in their offices.\\n\\n4\\n00:00:18,020 --> 00:00:23,160\\nSecretaries, Business Men and Women, Military and Federal Workers.\\n\\n5\\n00:00:23,160 --> 00:00:27,300\\nMoms and dads, friends and neighbors.\\n\\n6\\n00:00:27,300 --> 00:00:30,900\\nThousands of lives were suddenly ended by evil.\\n\\n7\\n00:00:30,900 --> 00:00:32,900\\nDespicable acts of terror.\\n\\n8\\n00:00:34,060 --> 00:00:41,400\\nThe pictures of airplanes flying in the buildings, fires burning, huge structures collapsing,\\n\\n9\\n00:00:41,400 --> 00:00:49,060\\nhave filled us with disbelief, terrible sadness and a quiet unyielding anger.\\n\\n10\\n00:00:50,540 --> 00:00:56,270\\nThese acts of mass murder were intended to frighten our nation into chaos and retreat.\\n\\n11\\n00:00:56,270 --> 00:00:58,180\\nBut they have failed.\\n\\n12\\n00:00:58,180 --> 00:01:00,560\\nOur country is strong.\\n\\n13\\n00:01:00,560 --> 00:01:05,130\\nA great people has been moved to defend a great nation.\\n\\n14\\n00:01:05,130 --> 00:01:08,920\\nTerrorist attacks can shake the foundations of our biggest buildings.\\n\\n15\\n00:01:09,750 --> 00:01:12,240\\nBut they cannot touch the foundation of America.\\n\\n16\\n00:01:13,230 --> 00:01:18,890\\nThese acts shatter steel, but they cannot dent the steel of American resolve.\\n\\n17\\n00:01:19,930 --> 00:01:25,730\\nAmerica was targeted for attack because we\\'re the brightest beacon for freedom and opportunity in the world.\\n\\n18\\n00:01:26,600 --> 00:01:30,000\\nAnd no one will keep that light from shining.\\n\\n19\\n00:01:31,010 --> 00:01:33,480\\nToday, our nation saw evil.\\n\\n20\\n00:01:33,480 --> 00:01:35,420\\nThe very worst of human nature.\\n\\n21\\n00:01:36,140 --> 00:01:38,470\\nAnd we responded with the best of America.\\n\\n22\\n00:01:39,320 --> 00:01:41,930\\nWith the daring of our rescue workers.\\n\\n23\\n00:01:41,930 --> 00:01:47,800\\nWith the caring for strangers and neighbors who came to give blood, and help in any way they could.\\n\\n24\\n00:01:48,840 --> 00:01:54,680\\nImmediately following the first attack, I implemented our Government\\'s emergency response plans.\\n\\n25\\n00:01:55,530 --> 00:01:58,440\\nOur military is powerful, and is prepared.\\n\\n26\\n00:01:59,160 --> 00:02:05,040\\nOur emergency teams are working in New York City and Washington D.C. to help with local rescue efforts.\\n\\n27\\n00:02:05,820 --> 00:02:08,960\\nOur first priority is to get help to those who have been injured,\\n\\n28\\n00:02:09,590 --> 00:02:16,240\\nand to take every precaution to protect our citizens at home and around the world from further attacks.\\n\\n29\\n00:02:17,440 --> 00:02:20,260\\nThe functions of our government continue without interruption.\\n\\n30\\n00:02:21,270 --> 00:02:25,200\\nFederal agencies in Washington which had to be evacuated today,\\n\\n31\\n00:02:25,200 --> 00:02:30,040\\nare reopening for essential personnel tonight and will be open for business tomorrow.\\n\\n32\\n00:02:31,180 --> 00:02:37,060\\nOur financial institutions remain strong, and the American economy will be open for business as well.\\n\\n33\\n00:02:38,540 --> 00:02:41,820\\nThe search is underway for those who were behind these evil acts.\\n\\n34\\n00:02:42,900 --> 00:02:47,150\\nI have directed the full resources of our intelligence and law enforcement communities\\n\\n35\\n00:02:47,150 --> 00:02:50,980\\nto find those responsible and to bring them to justice.\\n\\n36\\n00:02:52,230 --> 00:02:58,810\\nWe will make no distinction between the terrorists who committed these acts and those who harbor them.\\n\\n37\\n00:03:00,350 --> 00:03:05,140\\nI appreciate so very much the members of Congress who have joined me in strongly condemning these attacks.\\n\\n38\\n00:03:05,970 --> 00:03:13,100\\nAnd on behalf of the American people, I thank the many world leaders who have called to offer their condolences and assistance.\\n\\n39\\n00:03:14,340 --> 00:03:21,290\\nAmerica and our friends and allies join with all those who want peace and security in the world,\\n\\n40\\n00:03:21,290 --> 00:03:24,670\\nand we stand together to win the war against terrorism.\\n\\n41\\n00:03:26,190 --> 00:03:29,740\\nTonight, I ask for your prayers for all those who grieve.\\n\\n42\\n00:03:31,170 --> 00:03:37,500\\nFor the children whose worlds have been shattered, for all whose sense of safety and security has been threatened.\\n\\n43\\n00:03:38,820 --> 00:03:45,420\\nAnd I pray they will be comforted by a Power greater than any of us, spoken through the ages in Psalm 23:\\n\\n44\\n00:03:46,390 --> 00:03:52,880\\n\"Even though I walk through the valley of the shadow of death, I fear no evil for you are with me.\"\\n\\n45\\n00:03:54,400 --> 00:03:59,760\\nThis is a day when all Americans from every walk of life unite in our resolve for justice and peace.\\n\\n46\\n00:04:00,890 --> 00:04:05,920\\nAmerica has stood down enemies before, and we will do so this time.\\n\\n47\\n00:04:07,470 --> 00:04:17,030\\nNone of us will ever forget this day, yet we go forward to defend freedom and all that is good and just in our world.\\n\\n48\\n00:04:17,950 --> 00:04:19,170\\nThank you.\\n\\n49\\n00:04:19,170 --> 00:04:20,580\\nGood night.\\n\\n50\\n00:04:20,580 --> 00:04:22,580\\nAnd God bless America.',\n", + " 'bytes': 5162,\n", + " 'sha1': 'nok4t8r59w7gaoiq9k8o1m8dmdkgf57',\n", + " 'parent_id': 226504939,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 86350474,\n", + " 'timestamp': '2013-01-02T04:38:34Z',\n", + " 'user': {'text': '68.37.121.146'},\n", + " 'page': {'id': 23523557,\n", + " 'title': 'En-us-hey.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:02,000 hey'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,000\\nhey',\n", + " 'bytes': 35,\n", + " 'sha1': '5y8uy0glk32pvahf62yo8jknkef8rua',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 541573540,\n", + " 'timestamp': '2021-03-12T03:30:38Z',\n", + " 'user': {'id': 2073340, 'text': 'Jdx'},\n", + " 'page': {'id': 23537891,\n", + " 'title': 'Tyrrell-Cosworth 002 (1971).ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/174.26.110.218|174.26.110.218]] ([[User talk:174.26.110.218|talk]]) to last revision by McZusatz',\n", + " 'text': '1\\n00:00:01,000 --> 00:00:08\\n(engine sound)',\n", + " 'bytes': 42,\n", + " 'sha1': '9esok9wh3gb92cjznig41ylcnf9pqal',\n", + " 'parent_id': 531660192,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 86418098,\n", + " 'timestamp': '2013-01-02T17:30:18Z',\n", + " 'user': {'id': 2450901, 'text': 'AlanKellyVerbatimIT'},\n", + " 'page': {'id': 23538337,\n", + " 'title': 'The Impact of Wikipedia - Sami Al-Mubarak and Mina Nagy Takla.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,26 --> 00:00:04,26 Whenever you type an Arabic word, you really can't find a credible article in Arabic language, 2 00:00:04,837 --> 00:00:10,087 an...'\",\n", + " 'text': '1\\n00:00:00,26 --> 00:00:04,26\\nWhenever you type an Arabic word, you really can\\'t find a credible article in Arabic language,\\n\\n2\\n00:00:04,837 --> 00:00:10,087\\nand you mostly will find forum articles, and these are just personal opinions; they are not credible content, \\n\\n3\\n00:00:10,461 --> 00:00:17,461\\nso we realized that we can not ignore or stay away from the fact that Wikipedia is the major chunk of Arabic content online, \\n\\n4\\n00:00:17,762 --> 00:00:23,239\\nand if we want to grow online content in Arabic, then we have to \"tackle\" Wikipedia,\\n\\n5\\n00:00:23,239 --> 00:00:27,258\\nso that\\'s why we realized that Wikipedia is a very important stakeholder to our initiative.\\n\\n6\\n00:00:27,689 --> 00:00:28,604\\nMy name is Mina Takla. \\n\\n7\\n00:00:29,094 --> 00:00:30,291\\nMy name is Sami Mubarak.\\n\\n8\\n00:00:30,291 --> 00:00:36,278\\nAnd we started Taghreedat an Arabic digital content initiative to increase the quality and quantity of Arabic content on the web.\\n\\n9\\n00:00:36,714 --> 00:00:41,202\\nEarlier this year we contacted the Wikimedia Foundation because we wanted to form a partnership with them.\\n\\n10\\n00:00:41,202 --> 00:00:44,736\\nWe wanted to increase the number of Arabic Wikipedia editors.\\n\\n11\\n00:00:45,142 --> 00:00:50,574\\nNow, Wikimedia Foundation has a very important Arabic language initiative of increasing the number of Arabic articles on Wikipedia\\n\\n12\\n00:00:50,574 --> 00:00:58,124\\nand continuing to be an increasing active editors who contribute substantially to increase the Arabic content on Wikipedia,\\n\\n13\\n00:00:58,124 --> 00:01:03,022\\nso we chose to work with the Foundation on increasing the number of editors, so we don\\'t have to build the community.\\n\\n14\\n00:01:03,458 --> 00:01:08,137\\nWe have a lot of experience with Wikimedia, especially our Twitter account which is our main communication channel.\\n\\n15\\n00:01:08,137 --> 00:01:16,028\\nWe have over 85,000 followers at this point, and we\\'ve been ranked third most influential non-personal Twitter account.\\n\\n16\\n00:01:16,028 --> 00:01:24,857\\nThe great thing about the community that we\\'re working with is they are all doing this without any money rewards, or without anything in return. \\n\\n17\\n00:01:24,857 --> 00:01:30,673\\nThe great thing about collaboration is that people are passionate about something, and they go the extra mile to achieve it.\\n\\n18\\n00:01:31,1 --> 00:01:34,818\\nCommunity is the sustainability of our initiative and of Wikipedia as well.\\n\\n19\\n00:01:34,818 --> 00:01:40,00\\nCommunity energizes us. They demand from us, and they tell us what to do, and they guide us on what to do.\\n\\n20\\n00:01:40,0 --> 00:01:45,43\\nThey inspire the change, and they tell you we want to work on this, and we can work on this, and we can deliver.\\n\\n21\\n00:01:45,427 --> 00:01:52,23\\nThey set the benchmark for themselves, and they do it, they compete on it, they collaborate for it, so it really inspires you.\\n\\n22\\n00:01:52,278 --> 00:01:55,78\\nThe crowd decides the cause, not the cause that inspires the crowd.\\n\\n23\\n00:01:56,018 --> 00:02:00,53\\nWhen we started speaking about Wikipedia, we thought it was going to be another - you know - \\n\\n24\\n00:02:00,526 --> 00:02:03,03\\nhere\\'s another Wikipedia program - come and join and everyone will be happy, \\n\\n25\\n00:02:03,208 --> 00:02:08,55\\nbut there was a missing element that we discovered that a lot of people didn\\'t know what is Wikipedia. \\n\\n26\\n00:02:08,547 --> 00:02:12,12\\nWhen we started speaking to them, we were speaking a different language and we realized that \\n\\n27\\n00:02:12,119 --> 00:02:17,47\\nwe have to come down to what the people want and listen to them, listen to their questions, and then answer that, \\n\\n28\\n00:02:17,466 --> 00:02:22,50\\nso we did tailor our messaging and our communication with everyone to - here\\'s the basics: \\n\\n29\\n00:02:22,5 --> 00:02:27,30\\nWikipedia is an open encyclopedia. Wikipedia doesn\\'t have hired editors that are doing all the work.\\n\\n30\\n00:02:27,297 --> 00:02:30,69\\nYou can be an editor. We are all editors. It\\'s my responsibility and yours, \\n\\n31\\n00:02:30,692 --> 00:02:33,83\\nThese messages were enough to spark the community.\\n\\n32\\n00:02:34,299 --> 00:02:38,40\\nWe ended up doing the first Arabic Wikipedia guide and people published over 70 pages \\n\\n33\\n00:02:38,399 --> 00:02:44,85\\nWe did the first workshop in the United Arab Emirates, which was highly attended; over 85 people came for the workshop.\\n\\n34\\n00:02:44,852 --> 00:02:50,04\\nThere\\'s a big need. There\\'s a big interest in it, and people really want to, but just don\\'t know how to, \\n\\n35\\n00:02:50,036 --> 00:02:57,04\\nso this is what keeps us going now, and we have a lot of plans to expand our project in different countries.\\n\\n36\\n00:02:57,11 --> 00:03:02,73\\nU.A.E. was the first platform, or the first launching pad for us, but we\\'re going to try this in different forms, different shapes,\\n\\n37\\n00:03:02,733 --> 00:03:04,12\\nand different countries now.\\n\\n38\\n00:03:04,115 --> 00:03:07,62\\nThis is what we do after 3 p.m. This is what we do after we finish work.\\n\\n39\\n00:03:07,62 --> 00:03:11,10\\nWe do this in the cafeteria. We do this in the basement. We do this in the car. \\n\\n40\\n00:03:11,103 --> 00:03:15,30\\nwherever we can, as long as there\\'s a connection, we sit down and do this, and when you see the results, \\n\\n41\\n00:03:15,298 --> 00:03:18,30\\nthis is what gets to you; that gets you hooked. \\n\\n42\\n00:03:18,418 --> 00:03:23,06\\nYou keep doing that day by day, and day by day, and you don\\'t feel how far you have established, or \\n\\n43\\n00:03:23,055 --> 00:03:26,53\\nhow far you went since the day you started, and until you meet someone, and they say, hey!\\n\\n44\\n00:03:26,533 --> 00:03:29,50\\nYou\\'re doing something inspirational, you\\'re doing something amazing, so \\n\\n45\\n00:03:31,663 --> 00:03:34,91\\nall of this is what the people don\\'t see. There\\'s a culture behind it.\\n\\n46\\n00:03:34,901 --> 00:03:35,89\\nThere\\'s a pulsing community behind the Wikipedia page that you see.\\n\\n47\\n00:03:35,907 --> 00:03:37,51\\nDirector: Victor Grigas \\n\\n48\\n00:03:37,506 --> 00:03:38,49\\nCodirector: David Grossman\\n\\n49\\n00:03:38,487 --> 00:03:39,35\\nProducer: Zack Exley\\n\\n50\\n00:03:39,349 --> 00:03:40,44\\nDirector of Photography: Pruitt Y. Allen\\n\\n51\\n00:03:40,438 --> 00:03:41,74\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck \\n\\n52\\n00:03:41,737 --> 00:03:43,56\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n53\\n00:03:43,555 --> 00:03:44,76\\nMakeup: Melissa Klein\\n\\n54\\n00:03:44,759 --> 00:03:46,58\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, \\n Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson \\n\\n55\\n00:03:46,576 --> 00:03:48,02\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n56\\n00:03:48,017 --> 00:03:48,61\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n57\\n00:03:48,609 --> 00:03:49,23\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n58\\n00:03:49,226 --> 00:03:49,69\\nWriter: Desirina Boskovich\\n\\n59\\n00:03:49,694 --> 00:03:50,12\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\n Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n60\\n00:03:50,115 --> 00:03:50,40\\nEnglish Closed-Captioning: AlanKelly VerbatimIT\\n\\n61\\n00:03:50,403 --> 00:03:50,41\\n:)',\n", + " 'bytes': 7127,\n", + " 'sha1': 'j2svaqjelvo3ov0ha7acyi6xces092p',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 156983548,\n", + " 'timestamp': '2015-04-13T13:43:03Z',\n", + " 'user': {'text': '118.211.119.109'},\n", + " 'page': {'id': 23577473,\n", + " 'title': \"Six o' clock closing ABC.ogv.en.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:03,036 --> 00:00:08,908\\n<font color=\"#ffffff\">At last, 6 o\\'clock closing has been\\npushed into obscurity in Australia.</font>\\n\\n2\\n00:00:08,908 --> 00:00:14,768\\n<font color=\"#ffffff\">Tonight, South Australia joins all other\\nstates in abandoning the 6 o\\'clock swill.</font>\\n\\n3\\n00:00:14,768 --> 00:00:18,788\\n<font color=\"#ffffff\">Tonight, the bar doors are open.\\nTonight, Adelaide loses its</font>\\n\\n4\\n00:00:18,814 --> 00:00:22,833\\n<font color=\"#ffffff\">perhaps unfortunate reputation\\ninter-state as a \\'wowser city\\'.</font>\\n\\n5\\n00:00:22,858 --> 00:00:27,075\\n<font color=\"#ffffff\">Tonight the bars are crowded, but\\nthere was some doubt until just a</font>\\n\\n6\\n00:00:27,101 --> 00:00:31,255\\n<font color=\"#ffffff\">few days ago that the new licensing\\nlaws would come in on schedule.</font>\\n\\n7\\n00:00:31,280 --> 00:00:35,111\\n<font color=\"#ffffff\">The Liquor Licensing Bill was\\nonly passed by Parliament</font>\\n\\n8\\n00:00:35,137 --> 00:00:39,104\\n<font color=\"#ffffff\">last Tuesday, some 6 months\\nafter it was first introduced,</font>\\n\\n9\\n00:00:39,129 --> 00:00:44,163\\n<font color=\"#ffffff\">and it wasn\\'t until earlier today that\\nthe legislation itself was proclaimed.</font>\\n\\n10\\n00:00:44,188 --> 00:00:47,719\\n<font color=\"#ffffff\">But the new era in South\\nAustralian drinking has</font>\\n\\n11\\n00:00:47,745 --> 00:00:51,177\\n<font color=\"#ffffff\">begun, and both public,\\nand publican, are happy.</font>\\n\\n12\\n00:00:51,202 --> 00:00:54,162\\n<font color=\"#ff8080\">—Yeah, it\\'s very good I think.</font>\\n\\n13\\n00:00:56,706 --> 00:01:05,132\\n<font color=\"#ff8080\">I think the first couple of weeks it\\'ll be\\na novelty, but I think it\\'ll work itself out.</font>\\n\\n14\\n00:01:05,138 --> 00:01:07,138\\n<font color=\"#ff8080\">I think it\\'s quite a good thing.</font>\\n\\n15\\n00:01:08,426 --> 00:01:10,607\\n<font color=\"#ffff80\">—I think it\\'s a beautiful\\nthing, sir.</font>\\n\\n16\\n00:01:11,740 --> 00:01:14,020\\n<font color=\"#ffffff\">—Do you think you\\'ll be spending\\nmore time in hotels?</font>\\n\\n17\\n00:01:14,026 --> 00:01:19,531\\n<font color=\"#ffff80\">—Not really, but at least you\\ngot it, when you want it.</font>\\n\\n18\\n00:01:20,502 --> 00:01:24,312\\n<font color=\"#80ff80\">—It\\'s alright for some people,\\nI suppose, but I really</font>\\n\\n19\\n00:01:24,338 --> 00:01:28,014\\n<font color=\"#80ff80\">think if I\\'d gone to the vote, I\\nwouldn\\'t have voted for it.</font>\\n\\n20\\n00:01:28,039 --> 00:01:31,880\\n<font color=\"#ffffff\">—Why?</font>\\n<font color=\"#80ff80\">—I think a lot of homes will suffer.</font>\\n\\n21\\n00:01:31,905 --> 00:01:33,593\\n<font color=\"#ffffff\">—In what way?</font>\\n\\n22\\n00:01:33,619 --> 00:01:38,736\\n<font color=\"#80ff80\">—Little kiddies are left, and men\\nlike getting whassname—it\\'ll break</font>\\n\\n23\\n00:01:38,736 --> 00:01:43,949\\n<font color=\"#80ff80\">up a lot of homes. If I\\'d been to the\\nvote, I wouldn\\'t have voted for it.</font>\\n\\n24\\n00:01:43,974 --> 00:01:47,100\\n<font color=\"#ffffff\">—As a publican, are you\\nhappy with the new hours?</font>\\n\\n25\\n00:01:47,125 --> 00:01:50,438\\n<font color=\"#80ffff\">—When you\\'re in the trade\\nyou\\'ve gotta give it a go</font>\\n\\n26\\n00:01:50,464 --> 00:01:53,638\\n<font color=\"#80ffff\">haven\\'t you? How it\\'s\\ngonna go, I dunno.</font>\\n\\n27\\n00:01:53,663 --> 00:01:57,954\\n<font color=\"#ffffff\">—Do you think you\\'ll do more business?</font>\\n<font color=\"#80ffff\">—I think it would increase a bit, yes.</font>\\n\\n28\\n00:01:57,979 --> 00:02:04,310\\n<font color=\"#ffffff\">—Has it gone tonight as you\\'ve expected it?</font>\\n<font color=\"#80ffff\">—Yes, I think it\\'s been alright.</font>\\n\\n29\\n00:02:04,335 --> 00:02:08,536\\n<font color=\"#ffffff\">—Do you think it\\'ll maintain this?</font>\\n<font color=\"#80ffff\">—Well, I\\'m hoping so...</font>\\n\\n30\\n00:02:08,561 --> 00:02:14,762\\n<font color=\"#80ffff\">The usual 5 till 6 rush\\nwasn\\'t there tonight, but it</font>\\n\\n31\\n00:02:14,762 --> 00:02:21,195\\n<font color=\"#80ffff\">picked up about 7:30. It\\'s\\nbeen fairly good since then.</font>',\n", + " 'bytes': 3883,\n", + " 'sha1': 'mbramrgck584h9sugojr5jf3qs5i6iw',\n", + " 'parent_id': 156983438,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 207642204,\n", + " 'timestamp': '2016-09-24T15:00:49Z',\n", + " 'user': {'id': 238971, 'text': 'Papuass'},\n", + " 'page': {'id': 23584594,\n", + " 'title': '1937-05-10 Special Release - Zeppelin Explodes Scores Dead.ogv.lv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\ufeff1\\n00:00:07,000 --> 00:00:11,000\\nŠeit redzams Vācijas dirižablis \"Hindenburgs\", debesu karaliene,\\n\\n2\\n00:00:11,000 --> 00:00:15,151\\nfilmēts no \"Universal\" kinohronikas lidmašīnas, kā tas pārlido Ņujorku\\n\\n3\\n00:00:15,151 --> 00:00:18,123\\nsavā ceļā uz traģiskajām beigām Leikhērstā, Ņudžersijā.\\n\\n4\\n00:00:18,123 --> 00:00:20,678\\nTagad tas guļ Jūras spēku gaisa stacijā kā savērpusies metāla masa.\\n\\n5\\n00:00:20,678 --> 00:00:24,927\\nĪsi pēc tam, kad tika uzņemti šie kadri, kuri attēloja debesu kuģi\\n\\n6\\n00:00:24,927 --> 00:00:27,899\\nsalutējot miljoniem, kuri to vēroja no zemes savā pirmajā sezonas\\n\\n7\\n00:00:27,899 --> 00:00:32,032\\nceļojumā, lielais kuģis eksplodēja pietauvošanās brīdī un\\n\\n8\\n00:00:32,032 --> 00:00:35,538\\nmomentā uzliesmoja, paņemot sev gandrīz pusi no savu \\n\\n9\\n00:00:35,538 --> 00:00:40,531\\n99 pasažieru un apkalpes dzīvībām. Pretvēja dēļ kavējoties vairākas\\n\\n10\\n00:00:40,531 --> 00:00:44,292\\nstundas ceļā no Hamburgas, dirižablim bija jāizbēg no pērkona negaisa\\n\\n11\\n00:00:44,292 --> 00:00:47,938\\npie Džersijas krasta, pirms tas devās uz gaisa staciju un\\n\\n12\\n00:00:47,938 --> 00:00:51,444\\nsadūrās ar pietauvošanās mastu. Vējš ir nelabvēlīgs un pietauvošanās\\n\\n13\\n00:00:51,444 --> 00:00:54,765\\nir sarežģīta, bet tas viss ir mazsvarīgs laimīgo pasažieru pūlim,\\n\\n14\\n00:00:54,765 --> 00:00:58,735\\nkuri vēlas piezemēties pēc sava transatlantiskā ceļojuma.\\n\\n15\\n00:00:58,735 --> 00:01:04,378\\nLielais kuģis lēnām izgrozās un zemes apkalpe steidzas pie tauvām.\\n\\n16\\n00:01:04,378 --> 00:01:08,279\\nVēl pēc kādām desmit minūtēm lielais gaisa kuģis būtu kārtīgi pietauvots.\\n\\n17\\n00:01:08,279 --> 00:01:12,203\\nBet tiklīdz pasažieri sadrūzmējās pie logiem, lai novērotu pietauvošanos,\\n\\n18\\n00:01:12,203 --> 00:01:15,872\\nrēciens un pēkšņa uzliesmošana pie astes stabilizatora pārvērta kuģi\\n\\n19\\n00:01:15,872 --> 00:01:17,311\\nliesmojošā nezvērā.\\n\\n20\\n00:01:39,500 --> 00:01:43,643\\npasažieri un apkalpe vienmērīgā skaitā krita vai izleca\\n\\n21\\n00:01:43,643 --> 00:01:47,195\\nun tika aizvilkti drošībā pirms liesmojošā krāsns paņēma to dzīvības.\\n\\n22\\n00:01:47,195 --> 00:01:51,514\\nJūras spēku un armijas vīru varonīgs darbs, riskējot ar dzīvībām pie\\n\\n23\\n00:01:51,514 --> 00:01:56,251\\nlīdz baltkvēlei uzkarsušā skeleta, izglāba ne vienu vien apdullušu un\\n\\n24\\n00:01:56,251 --> 00:02:00,431\\npusapdegušu pasažieri no liesmojošā vraka. Bet vairumam no tiem, kuri bija iesprostoti\\n\\n25\\n00:02:00,431 --> 00:02:03,008\\nkvēlojošajā mudžeklī, nebija cerību!\\n\\n26\\n00:02:03,008 --> 00:02:08,070\\nLielākais brīnums ir tas, ka kāds šajā nelaimē spēja izdzīvot.\\n\\n27\\n00:02:13,666 --> 00:02:17,799\\n200 000 kubikmetru viegli uzliesmojošā ūdeņraža sadega\\n\\n28\\n00:02:17,799 --> 00:02:22,536\\nmazāk kā minūtes laikā. Simtiem tonnu degvielas deg\\n\\n29\\n00:02:22,536 --> 00:02:26,437\\nstundu vai ilgāk, ar saviem biezajiem, melnajiem dūmiem aizsedzot\\n\\n30\\n00:02:26,437 --> 00:02:27,598\\ntraģisko notikuma vietu.\\n\\n31\\n00:02:32,000 --> 00:02:37,025\\nVisā gaisa negadījumu vēsturē šis ir pats lielākais, pats briesmīgākais.\\n\\n32\\n00:02:37,025 --> 00:02:41,553\\nSlavēts kā luksusa gaisa laineris, Hindenburga briesmīgās beigas ir\\n\\n33\\n00:02:41,553 --> 00:02:46,453\\nšokējušas visu pasauli. Debesu lepnums sasniedz sava ceļojuma beigas.\\n\\n34\\n00:03:01,559 --> 00:03:05,034\\nSavīta, sapinusies masa no apdegušām sijām un \\n\\n35\\n00:03:05,034 --> 00:03:07,836\\ngabali no nomelnējuša audekla ir viss, kas palicis no lepnā\\n\\n36\\n00:03:07,836 --> 00:03:10,578\\nluksusa gaisa lainera Hindenburga, kas guļ\\n\\n37\\n00:03:10,578 --> 00:03:14,174\\nLekhērstas flotes bāzē. Mirušo sarakstā ir 35, bet\\n\\n38\\n00:03:14,174 --> 00:03:18,092\\nvēl desmit, ieskaitot kapteini Prasu, joprojām ir kritiskā stāvoklī.\\n\\n39\\n00:03:24,086 --> 00:03:26,710\\nAr nākamā rīta pirmo gaismu flotes inspekcija\\n\\n40\\n00:03:26,710 --> 00:03:29,130\\nkapteiņa Heinsa vadībā apskata vraku,\\n\\n41\\n00:03:29,130 --> 00:03:32,802\\nkamēr citi vēl kūpošajos gruvešos meklē iespējamu norādi tam,\\n\\n42\\n00:03:32,802 --> 00:03:36,041\\nkas izskaidrotu noslēpumaino katastrofu.\\n\\n43\\n00:03:36,041 --> 00:03:39,066\\nHindenburga paliekas netiks pārvietotas līdz\\n\\n44\\n00:03:39,066 --> 00:03:42,617\\nieradīsies Vācijas eksperts doktors Hugo Ekners, kurš vada\\n\\n45\\n00:03:42,617 --> 00:03:45,296\\nkomisiju, kas veiks izmeklēšanu vienlaicīgi ar\\n\\n46\\n00:03:45,296 --> 00:03:47,160\\nTirdzniecības departamentu.\\n\\n47\\n00:03:52,854 --> 00:03:56,096\\nVācijas vēstnieks Hanss Luters bija pirmais Reiha novērotājs,\\n\\n48\\n00:03:56,096 --> 00:03:59,742\\nkurš ieradās. Apmeklējot ievainotos tuvējās Leikvudas slimnīcā,\\n\\n49\\n00:03:59,742 --> 00:04:03,647\\nbet atsakoties komentēt jebko par katastrofu.\\n\\n50\\n00:04:03,647 --> 00:04:07,216\\nCik ātri iespējams, ievainotie, kurus var pārvietot, tiek nesti\\n\\n51\\n00:04:07,216 --> 00:04:10,544\\nuz ātrās palīdzības auto un pārvietoti uz Ņujorku, 60 jūdžu attālumā,\\n\\n52\\n00:04:10,544 --> 00:04:14,409\\nlai saņemtu visu, ko var piedāvāt medicīnas zinātne.\\n\\n53\\n00:04:14,409 --> 00:04:19,241\\nIetīti apsējos, tie var būt vairāk kā pateicīgi par savu brīnumaino \\n\\n54\\n00:04:19,241 --> 00:04:21,792\\nizglābšanos no liesmojošā nezvēra Hindenburga.\\n\\n55\\n00:04:26,646 --> 00:04:29,294\\nApkalpes locekļi, kas nebija nopietni cietuši, tika izmitināti\\n\\n56\\n00:04:29,294 --> 00:04:32,837\\nvirsnieku telpās flotes stacijā. Trīspadsmitgadīgais Verners Francs,\\n\\n57\\n00:04:32,837 --> 00:04:35,885\\nsalona zēns, ir jaunākais izdzīvojušais, liecinās\\n\\n58\\n00:04:35,885 --> 00:04:38,837\\nTirdzniecības departamenta komisijai, ko vada\\n\\n59\\n00:04:38,837 --> 00:04:42,267\\nkomandieris Rozendāls, flotes stacijas vadītājs, kā pirmais liecinieks.\\n\\n60\\n00:04:42,267 --> 00:04:46,156\\nBet eksperti uzskata, ka precīzs cēlonis lielākajai gaisa katastrofai\\n\\n61\\n00:04:46,156 --> 00:04:49,822\\nnetiks noskaidrots. Pār Hindenburgu karāsies jautājuma zīme\\n\\n62\\n00:04:49,822 --> 00:04:51,876\\nko nekad nevarēs aizmirst!',\n", + " 'bytes': 6032,\n", + " 'sha1': 'pp9d5imai4fuczggbncw8fugf0urdyh',\n", + " 'parent_id': 149994791,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 86586167,\n", + " 'timestamp': '2013-01-04T16:48:57Z',\n", + " 'user': {'id': 1183371, 'text': 'Sage Ross (WMF)'},\n", + " 'page': {'id': 23585014,\n", + " 'title': 'Editing basics - watchlists.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'captions',\n", + " 'text': '1\\n00:00:00,533 --> 00:00:02,867\\nThis screencast is about using watchlists\\n\\n2\\n00:00:02,867 --> 00:00:05,700\\nto keep up with discussions\\n\\n3\\n00:00:05,700 --> 00:00:09,033\\nand new edits to articles on Wikipedia.\\n\\n4\\n00:00:09,033 --> 00:00:11,033\\nEvery account has a watchlist,\\n\\n5\\n00:00:11,033 --> 00:00:13,783\\nwhich is a tool for keeping track of recent changes\\n\\n6\\n00:00:13,783 --> 00:00:16,491\\non Wikipedia pages you care about.\\n\\n7\\n00:00:16,491 --> 00:00:18,908\\nWikipedians typically check their watchlists\\n\\n8\\n00:00:18,908 --> 00:00:21,783\\non a daily basis, or even more frequently\\n\\n9\\n00:00:21,783 --> 00:00:24,408\\nwhen rapid discussions are going on.\\n\\n10\\n00:00:24,408 --> 00:00:26,616\\nThe watchlist shows which pages\\n\\n11\\n00:00:26,616 --> 00:00:28,700\\nand discussion have been active,\\n\\n12\\n00:00:28,700 --> 00:00:31,866\\nand lists the edit summaries other editors left--\\n\\n13\\n00:00:31,866 --> 00:00:35,200\\n--providing a quick overview of what\\'s going on.\\n\\n14\\n00:00:35,200 --> 00:00:36,408\\nFor many editors,\\n\\n15\\n00:00:36,408 --> 00:00:39,783\\nthe watchlist is like the beating heart of Wikipedia.\\n\\n16\\n00:00:39,783 --> 00:00:41,783\\nOn my watchlist, you can see that\\n\\n17\\n00:00:41,783 --> 00:00:44,700\\nsomeone has been editing one of the articles I watch,\\n\\n18\\n00:00:44,700 --> 00:00:46,575\\nand someone has added to a discussion\\n\\n19\\n00:00:46,575 --> 00:00:48,950\\non the article talk page as well.\\n\\n20\\n00:00:48,950 --> 00:00:51,158\\nTo add an article to your watchlist,\\n\\n21\\n00:00:51,158 --> 00:00:54,450\\nclick the star tab next to the search box.\\n\\n22\\n00:00:54,450 --> 00:00:58,241\\n(You can remove an article from your watchlist by clicking it again.)\\n\\n23\\n00:00:58,241 --> 00:00:59,991\\nAdding an article to your watchlist\\n\\n24\\n00:00:59,991 --> 00:01:04,741\\nautomatically adds the corresponding talk page, and vice versa.\\n\\n25\\n00:01:04,741 --> 00:01:08,366\\nBy default, only the most recent change to an article\\n\\n26\\n00:01:08,366 --> 00:01:10,158\\nshows up in the watchlist,\\n\\n27\\n00:01:10,158 --> 00:01:13,575\\nand it only tracks changes over the last three days.\\n\\n28\\n00:01:13,575 --> 00:01:15,783\\nYou can adjust your watchlist settings by\\n\\n29\\n00:01:15,783 --> 00:01:20,158\\ngoing to \"Preferences\" and then the \"watchlist\" tab.\\n\\n30\\n00:01:20,158 --> 00:01:21,658\\nFor newcomers, it may be useful to\\n\\n31\\n00:01:21,658 --> 00:01:24,156\\nincrease the number of days displayed,\\n\\n32\\n00:01:24,156 --> 00:01:27,033\\nand to enable several advanced options:\\n\\n33\\n00:01:27,033 --> 00:01:31,283\\n\"Expand watchlist to show all changes, not just the most recent\",\\n\\n34\\n00:01:31,283 --> 00:01:35,033\\nand \"Add pages I edit to my watchlist\".\\n\\n35\\n00:01:35,033 --> 00:01:39,075\\nClick \"save\" to turn on the new options.\\n\\n36\\n00:01:39,075 --> 00:01:40,325\\nThis will make it easier to keep track\\n\\n37\\n00:01:40,325 --> 00:01:43,116\\nof the pages you\\'re working on.\\n\\n38\\n00:01:43,116 --> 00:01:46,075\\nAs you edit more pages and your watchlist grows,\\n\\n39\\n00:01:46,075 --> 00:01:49,991\\nit may make sense to revisit some of those settings.\\n\\n40\\n00:01:49,991 --> 00:01:53,658\\nSome key kinds of pages you may want to add to your watchlist include:\\n\\n41\\n00:01:53,658 --> 00:01:56,073\\narticles you\\'ve contributed to;\\n\\n42\\n00:01:56,073 --> 00:01:58,616\\nthe talk pages of people you\\'ve contacted--\\n\\n43\\n00:01:58,616 --> 00:02:02,283\\n--in case they respond on their own talk page rather than yours--\\n\\n44\\n00:02:02,283 --> 00:02:07,408\\n--and any project pages you\\'re connected to, like WikiProjects.\\n\\n45\\n00:02:07,408 --> 00:02:09,739\\nTo learn more about watchlists,\\n\\n46\\n00:02:09,739 --> 00:02:13,700\\ngo the page \"Help:Watching pages\".\\n\\n47\\n00:02:13,700 --> 99:59:59,000\\nHappy editing!',\n", + " 'bytes': 3607,\n", + " 'sha1': 'ici61n4jbtl78dz43lpfqdp78wg5s5u',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 86903824,\n", + " 'timestamp': '2013-01-07T14:13:02Z',\n", + " 'user': {'id': 1339061, 'text': 'Curious 1987'},\n", + " 'page': {'id': 23666627,\n", + " 'title': 'Sv-alphabet.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:01,460 Aa 2 00:00:1,760 --> 00:00:03,010 Bb'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,460\\nAa\\n\\n2\\n00:00:1,760 --> 00:00:03,010\\nBb',\n", + " 'bytes': 69,\n", + " 'sha1': 'kqh0lmmuo674ys9fazdhhdqcug1jdq5',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 86913112,\n", + " 'timestamp': '2013-01-07T16:16:06Z',\n", + " 'user': {'id': 1339061, 'text': 'Curious 1987'},\n", + " 'page': {'id': 23666667,\n", + " 'title': 'Sv-alphabet.ogg.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,560\\nAa\\n\\n2\\n00:00:01,760 --> 00:00:03,010\\nBb\\n\\n3\\n00:00:03,130 --> 00:00:04,740\\nCc\\n\\n4\\n00:00:04,860 --> 00:00:06,020\\nDd\\n\\n5\\n00:00:06,300 --> 00:00:07,640\\nEe\\n\\n6\\n00:00:07,870 --> 00:00:09,100\\nFf\\n\\n7\\n00:00:09,270 --> 00:00:10,270\\nGg\\n\\n8\\n00:00:10,630 --> 00:00:12,000\\nHh\\n\\n9\\n00:00:12,100 --> 00:00:13,320\\nIi\\n\\n10\\n00:00:13,440 --> 00:00:14,830\\nJj\\n\\n11\\n00:00:14,93 --> 00:00:16,31\\nKk\\n\\n12\\n00:00:16,36 --> 00:00:17,67\\nLl\\n\\n13\\n00:00:17,78 --> 00:00:19,01\\nMm\\n\\n14\\n00:00:19,10 --> 00:00:20,04\\nNn\\n\\n15\\n00:00:20,47 --> 00:00:21,68\\nOo\\n\\n16\\n00:00:21,78 --> 00:00:23,24\\nPp\\n\\n17\\n00:00:23,30 --> 00:00:24,63\\nQq\\n\\n18\\n00:00:24,69 --> 00:00:25,97\\nRr\\n\\n19\\n00:00:26,05 --> 00:00:27,16\\nSs\\n\\n20\\n00:00:27,25 --> 00:00:28,51\\nTt\\n\\n21\\n00:00:28,60 --> 00:00:29,77\\nUu\\n\\n22\\n00:00:29,83 --> 00:00:31,01\\nVv',\n", + " 'bytes': 781,\n", + " 'sha1': '3m4fhejgpuiadim9l2n39fqjf6uu32b',\n", + " 'parent_id': 86912867,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 86950189,\n", + " 'timestamp': '2013-01-08T00:05:04Z',\n", + " 'user': {'id': 1188086, 'text': 'Comrade Graham'},\n", + " 'page': {'id': 23678008,\n", + " 'title': 'Mike Tulley Interview - October 6 2010.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Imported captions from YouTube source.',\n", + " 'text': '\\ufeff1\\n00:00:00,959 --> 00:00:03,432\\n>> INTERVIEWER:\\nOkay, this is Mike Tulley.\\n\\n2\\n00:00:04,000 --> 00:00:07,113\\n>> MIKE:\\nHi, hi I\\'m Mike Tulley.\\n\\n3\\n00:00:12,049 --> 00:00:16,259\\n>> INTERVIEWER:\\nBriefly describe your family background,\\neducation, upbringing, et cetera.\\n\\n4\\n00:00:16,259 --> 00:00:17,680\\n>> MIKE:\\nI was born\\n\\n5\\n00:00:17,680 --> 00:00:24,269\\nin the U.S. military hospital, in\\nthe U.S. canal zone in Ancón\\n\\n6\\n00:00:24,269 --> 00:00:25,529\\nwhich was, uh,\\n\\n7\\n00:00:25,529 --> 00:00:29,749\\nmostly a military and, and,\\nU.S. worker barracks town\\n\\n8\\n00:00:29,749 --> 00:00:32,249\\nnear Balboa, Panama.\\n\\n9\\n00:00:32,249 --> 00:00:34,620\\nUh... That was in 1948.\\n\\n10\\n00:00:34,620 --> 00:00:37,819\\nUh... We left there when I\\nwas only a few months old.\\n\\n11\\n00:00:37,819 --> 00:00:40,080\\nMoved up to,\\n\\n12\\n00:00:40,080 --> 00:00:44,180\\nuh, Washington state, eastern Washington\\nstate, where my father worked\\n\\n13\\n00:00:44,180 --> 00:00:46,430\\non a dam construction project.\\n\\n14\\n00:00:46,430 --> 00:00:52,270\\nAnd, my mother was raising me, some\\nsheep, and some chickens on a little farm.\\n\\n15\\n00:00:52,270 --> 00:00:54,260\\nShe received a telegram...\\n\\n16\\n00:00:54,260 --> 00:00:56,460\\nBack then you received those on paper.\\n\\n17\\n00:00:56,460 --> 00:01:01,000\\nAnd uh... uh, asking if\\nmy father Patrick\\n\\n18\\n00:01:01,000 --> 00:01:02,650\\nwanted a job\\n\\n19\\n00:01:02,650 --> 00:01:07,010\\non some U.S. foreign aid Marshal Plan\\n\\n20\\n00:01:07,010 --> 00:01:10,140\\nconstruction project in Germany.\\n\\n21\\n00:01:10,140 --> 00:01:14,950\\nUh... So my mother immediately answered\\nyes to the telegram, sent back a message\\n\\n22\\n00:01:14,950 --> 00:01:17,050\\nthat same night...\\n\\n23\\n00:01:17,050 --> 00:01:21,010\\nsigning my father\\'s name to it,\\naccepting the job on his behalf\\n\\n24\\n00:01:21,010 --> 00:01:23,290\\nUh... Sold the farm\\n\\n25\\n00:01:23,290 --> 00:01:27,270\\nsold the sheep, sold the chickens, and by\\nthe time my father got home from his\\n\\n26\\n00:01:27,270 --> 00:01:29,080\\nshift a few hours later\\n\\n27\\n00:01:29,080 --> 00:01:30,870\\nuh... she was packing.\\n\\n28\\n00:01:30,870 --> 00:01:32,549\\n[Laughs aloud]\\n\\n29\\n00:01:32,549 --> 00:01:33,689\\nUh... She wasn\\'t\\n\\n30\\n00:01:33,689 --> 00:01:36,770\\ngoing to stay in another\\nlittle prairie town that really\\nwasn\\'t much different\\n\\n31\\n00:01:36,770 --> 00:01:39,230\\nfrom the one she\\'d grown up in.\\n\\n32\\n00:01:39,230 --> 00:01:42,390\\nThey both love telling that story.\\n\\n33\\n00:01:42,390 --> 00:01:45,350\\nWe all would have headed\\noff to Germany at that point,\\nexcept there\\n\\n34\\n00:01:45,350 --> 00:01:45,979\\nwasn\\'t\\n\\n35\\n00:01:45,979 --> 00:01:48,570\\nreally any housing for\\n\\n36\\n00:01:48,570 --> 00:01:49,300\\nAmerican\\n\\n37\\n00:01:49,300 --> 00:01:51,439\\nfamilies in Germany.\\n\\n38\\n00:01:51,439 --> 00:01:56,480\\nSo, my father headed off to Germany to\\nstart the job and my mother and I...\\n\\n39\\n00:01:56,480 --> 00:01:58,299\\nI would have been about...\\n\\n40\\n00:01:58,299 --> 00:02:00,430\\ntwo years old by this time.\\n\\n41\\n00:02:00,430 --> 00:02:03,350\\nWent off to Italy, uh, too\\n\\n42\\n00:02:03,350 --> 00:02:06,370\\nLivorno or Leghorn as the\\nEnglish call it,\\n\\n43\\n00:02:06,370 --> 00:02:08,240\\nuh, where there was\\n\\n44\\n00:02:08,240 --> 00:02:13,279\\nI guess a U.S. Navy base and my\\nuncle who was in the Navy\\n\\n45\\n00:02:13,279 --> 00:02:15,299\\nwas serving at that time.\\n\\n46\\n00:02:15,299 --> 00:02:18,639\\nAnd we lived with them for a few months\\nuntil we could rejoin my father\\n\\n47\\n00:02:18,639 --> 00:02:19,859\\nin Germany.\\n\\n48\\n00:02:19,859 --> 00:02:22,840\\nUh... We lived in Germany for well...\\n\\n49\\n00:02:22,840 --> 00:02:27,269\\nI went to kindergarten there,\\nin a German kindergarten, learned\\na little bit of German\\n\\n50\\n00:02:27,269 --> 00:02:29,419\\nand then I went to\\n\\n51\\n00:02:29,419 --> 00:02:31,510\\nfirst and second grade\\n\\n52\\n00:02:31,510 --> 00:02:35,489\\nin a French school for...\\n\\n53\\n00:02:35,489 --> 00:02:39,980\\nI guess we were in the French occupied\\nzone of Germany, as it was known then.\\n\\n54\\n00:02:39,980 --> 00:02:42,519\\nSo, I went to a school for\\n\\n55\\n00:02:42,519 --> 00:02:48,579\\nFrench dependent children and\\nlearned French in a hurry as almost\\nno one there spoke English.\\n\\n56\\n00:02:48,579 --> 00:02:53,539\\nThat would\\'ve been 1956, we\\nmoved to Casablanca Morocco\\n\\n57\\n00:02:53,539 --> 00:02:58,709\\nwhich was a beautiful city\\nand another U.S. foreign aid\\nconstruction project my\\n\\n58\\n00:02:58,709 --> 00:03:00,279\\nfather was working on.\\n\\n59\\n00:03:00,279 --> 00:03:04,589\\nWe were only there for about six months\\nbefore of there was some dispute over\\n\\n60\\n00:03:04,589 --> 00:03:08,189\\nthe succession to the\\nthrone and uh...\\n\\n61\\n00:03:08,189 --> 00:03:12,739\\nthe crown prince and, uh, his uncle\\nor something got into a bit of a\\n\\n62\\n00:03:12,739 --> 00:03:16,439\\ndispute and the Americans were\\nadvised to get out in a hurry...\\n\\n63\\n00:03:16,439 --> 00:03:19,869\\nUh, we left rather quickly\\nI remember uh...\\n\\n64\\n00:03:19,869 --> 00:03:25,499\\nuh... armed men with rifles and burnooses\\nby the side of the road uh...\\n\\n65\\n00:03:25,499 --> 00:03:30,409\\nIt was very picturesque,\\nbut apparently dangerous and\\nuh... we got out of there\\n\\n66\\n00:03:30,409 --> 00:03:33,129\\nand uh... my father took another job\\n\\n67\\n00:03:33,129 --> 00:03:37,309\\nin Pakistan in Karachi, which\\nwas then the capital\\n\\n68\\n00:03:37,309 --> 00:03:38,499\\nA...\\n\\n69\\n00:03:38,499 --> 00:03:40,419\\nA seaport town,\\n\\n70\\n00:03:40,419 --> 00:03:45,859\\nuh, still swollen with refugees from\\nthe partition of India and Pakistan.\\n\\n71\\n00:03:45,859 --> 00:03:47,449\\nAnd we lived there\\n\\n72\\n00:03:47,449 --> 00:03:51,349\\nfor a bit over four\\nyears, I went to\\n\\n73\\n00:03:51,349 --> 00:03:53,409\\na school there that was uh...\\n\\n74\\n00:03:53,409 --> 00:03:54,620\\nrun for\\n\\n75\\n00:03:54,620 --> 00:03:59,629\\ndependence of American employees. It\\nwas not a particularly good school but\\n\\n76\\n00:03:59,629 --> 00:04:03,079\\nit was supposedly part of the\\nAmerican school system\\n\\n77\\n00:04:03,079 --> 00:04:04,129\\nand I\\n\\n78\\n00:04:04,129 --> 00:04:06,329\\nkind of survived the experience.\\n\\n79\\n00:04:06,329 --> 00:04:07,269\\nUh...\\n\\n80\\n00:04:07,269 --> 00:04:09,049\\nAfter a few years there\\n\\n81\\n00:04:09,049 --> 00:04:11,520\\nwe moved on to\\n\\n82\\n00:04:11,520 --> 00:04:13,979\\nTehran Iran.\\n\\n83\\n00:04:13,979 --> 00:04:15,459\\nUh...\\n\\n84\\n00:04:15,459 --> 00:04:19,810\\nAnother, uh, another U.S. foreign\\naid construction project.\\n\\n85\\n00:04:19,810 --> 00:04:22,310\\nAnd then I, uh...\\n\\n86\\n00:04:22,310 --> 00:04:25,340\\nIt was time for me to go\\nto high school and uh...\\n\\n87\\n00:04:25,340 --> 00:04:29,310\\nI came back to the United States\\nand went to a boarding school in\\nPennsylvania.\\n\\n88\\n00:04:29,310 --> 00:04:35,009\\nThis was an American prep school,\\nkind of modelled after the English\\npublic schools\\n\\n89\\n00:04:35,009 --> 00:04:37,959\\nin that it was intended to be\\n\\n90\\n00:04:37,959 --> 00:04:39,290\\na school for the...\\n\\n91\\n00:04:39,290 --> 00:04:41,229\\nthe sons of the elite.\\n\\n92\\n00:04:41,229 --> 00:04:44,050\\nAnd, uh, it carried with it uh...\\n\\n93\\n00:04:44,050 --> 00:04:44,800\\nA lot of\\n\\n94\\n00:04:44,800 --> 00:04:46,379\\nclass attitude\\n\\n95\\n00:04:46,379 --> 00:04:47,479\\nbaggage\\n\\n96\\n00:04:47,479 --> 00:04:48,449\\nwhich I\\n\\n97\\n00:04:48,449 --> 00:04:50,349\\ntried to buy into\\n\\n98\\n00:04:50,349 --> 00:04:51,159\\nand\\n\\n99\\n00:04:51,159 --> 00:04:53,280\\nfailed. [Laughs]\\n\\n100\\n00:04:53,280 --> 00:04:55,840\\nUh... I suppose it had been my\\n\\n101\\n00:04:55,840 --> 00:04:58,659\\nparents intention\\n\\n102\\n00:04:58,659 --> 00:05:01,629\\nto make me upwardly class mobile.\\n\\n103\\n00:05:01,629 --> 00:05:03,050\\nUh, it...\\n\\n104\\n00:05:03,050 --> 00:05:07,210\\nIt was a good intention, I suppose on\\ntheir part, but it didn\\'t really work out.\\n\\n105\\n00:05:07,210 --> 00:05:11,840\\nHowever, I went there for four years and,\\nuh, did okay academically\\n\\n106\\n00:05:11,840 --> 00:05:15,490\\nand graduated in 1966.\\n\\n107\\n00:05:15,490 --> 00:05:16,160\\nGoing...\\n\\n108\\n00:05:16,160 --> 00:05:20,690\\nThen getting into Stanford\\nuniversity intending to do a\\ndegree in electrical\\n\\n109\\n00:05:20,690 --> 00:05:22,599\\nengineering.\\n\\n110\\n00:05:22,599 --> 00:05:25,739\\nI choose Stanford because they had\\n\\n111\\n00:05:25,739 --> 00:05:30,259\\nsomething called the\\n\\'freshman seminar programs\\' in\\nwhich their most illustrious\\n\\n112\\n00:05:30,259 --> 00:05:32,310\\nsenior professors\\n\\n113\\n00:05:32,310 --> 00:05:33,290\\nactually\\n\\n114\\n00:05:33,290 --> 00:05:36,389\\nhad small group seminars with\\n\\n115\\n00:05:36,389 --> 00:05:38,689\\nfirst-year university students.\\n\\n116\\n00:05:38,689 --> 00:05:43,779\\nI got to be in a small\\ngroup seminar with, uh, professor\\nWilliam Shockley;\\n\\n117\\n00:05:43,779 --> 00:05:47,439\\nNobel Prize for the invention\\nof the transistor.\\n\\n118\\n00:05:47,439 --> 00:05:51,159\\nI was excited about this.\\nUh, I was going to get in on\\nthe ground floor of,\\n\\n119\\n00:05:51,159 --> 00:05:54,350\\nuh, electrical engineering\\nin the new field of\\n\\n120\\n00:05:54,350 --> 00:05:57,629\\nsemiconductor engineering and physics.\\n\\n121\\n00:05:57,629 --> 00:05:59,659\\nUh...\\n\\n122\\n00:05:59,659 --> 00:06:02,669\\nI did have kind of a good\\ntime Stanford, uh, but\\n\\n123\\n00:06:02,669 --> 00:06:06,129\\nunfortunately the freshman\\nseminar didn\\'t work out very\\nwell because it\\n\\n124\\n00:06:06,129 --> 00:06:10,150\\nturned out that, uh, Professor Shockley\\ndidn\\'t actually want to teach us\\n\\n125\\n00:06:10,150 --> 00:06:13,360\\nanything about solid-state physics\\n\\n126\\n00:06:13,360 --> 00:06:14,029\\nI\\'ve\\n\\n127\\n00:06:14,029 --> 00:06:14,850\\nsince seen...\\n\\n128\\n00:06:14,850 --> 00:06:18,090\\nRead writers who questioned whether he\\neven knew anything about solid-state\\n\\n129\\n00:06:18,090 --> 00:06:22,840\\nphysics. Uh, particularly\\nsome of his graduate students who,\\nuh, apparently\\n\\n130\\n00:06:22,840 --> 00:06:26,319\\ndid most of the work on the\\ninvention of the transistor\\n\\n131\\n00:06:26,319 --> 00:06:30,579\\nBut uh, Shockley was really\\nmuch more interested in teaching\\nus his theories\\n\\n132\\n00:06:30,579 --> 00:06:33,279\\nof education and racial intelligence.\\n\\n133\\n00:06:33,279 --> 00:06:37,029\\nUh, he was particularly\\nfond of the theory that white\\npeople were smarter\\n\\n134\\n00:06:37,029 --> 00:06:41,089\\nthan black people and you could prove it\\nusing U.S. Army intelligence...\\n\\n135\\n00:06:41,089 --> 00:06:42,460\\nintelligence tests\\n\\n136\\n00:06:42,460 --> 00:06:45,610\\nand Stanford--Binet IQ tests\\n\\n137\\n00:06:45,610 --> 00:06:48,409\\nUh, I was uh...\\n\\n138\\n00:06:48,409 --> 00:06:50,550\\nBrash, self-righteous,\\n\\n139\\n00:06:50,550 --> 00:06:53,450\\nand determined to tell him,\\n\\n140\\n00:06:53,450 --> 00:06:55,599\\nquite loudly, that he was wrong.\\n\\n141\\n00:06:55,599 --> 00:06:56,380\\nUh...\\n\\n142\\n00:06:56,380 --> 00:07:00,009\\nThis didn\\'t work out very well,\\nand I think I may have been the\\nonly freshman at\\n\\n143\\n00:07:00,009 --> 00:07:04,590\\nStanford ever to fail\\na freshman seminar.\\n[Laughs]\\n\\n144\\n00:07:04,590 --> 00:07:09,240\\nThis discouraged me a bit\\nfrom electrical engineering\\num...\\n\\n145\\n00:07:09,240 --> 00:07:14,619\\nand I also noticed that all\\nthe graduate students in electrical\\nengineering were...\\n\\n146\\n00:07:14,619 --> 00:07:18,059\\nTall, thin, pasty faced\\n\\n147\\n00:07:18,059 --> 00:07:22,809\\npimply young men with their collars\\nbuttoned up too tight and large\\n\\n148\\n00:07:22,809 --> 00:07:24,620\\nslide rules hanging on their belts\\n\\n149\\n00:07:24,620 --> 00:07:26,319\\nand a look of, of,\\n\\n150\\n00:07:26,319 --> 00:07:27,199\\nconstant\\n\\n151\\n00:07:27,199 --> 00:07:29,469\\nkind of pallid constipation.\\n\\n152\\n00:07:29,469 --> 00:07:32,779\\nIt really didn\\'t look\\nlike they were having any fun\\nat all. So, I got involved\\n\\n153\\n00:07:32,779 --> 00:07:36,300\\nin things like campus radio\\n\\n154\\n00:07:36,300 --> 00:07:41,879\\nand the anti-draft movement the\\nantiwar movement, uh,\\n\\n155\\n00:07:41,879 --> 00:07:48,509\\nmusic uh... Uh, some experimentation\\nwith drugs, uh, and, uh, discovered\\n\\n156\\n00:07:48,509 --> 00:07:51,229\\nhaving a social life was\\na whole lot of fun.\\n\\n157\\n00:07:51,229 --> 00:07:53,109\\nOkay, next question.\\n\\n158\\n00:07:53,109 --> 00:07:57,129\\n>> INTERVIEWER:\\nThe military was pretty important\\nin your family then?\\n\\n159\\n00:07:57,129 --> 00:07:59,460\\n>> MIKE:\\nYes um... My father had\\n\\n160\\n00:07:59,460 --> 00:08:04,849\\nserved in the U.S. army\\nduring the Second World War\\nas a uh... I think he\\'d\\n\\n161\\n00:08:04,849 --> 00:08:07,130\\nmade it to the rank of captain\\n\\n162\\n00:08:07,130 --> 00:08:09,110\\nbecause he\\'d been a\\ncivil engineer he\\'d\\n\\n163\\n00:08:09,110 --> 00:08:12,689\\ngotten a commission, gone in\\nas a second lieutenant\\n\\n164\\n00:08:12,689 --> 00:08:15,309\\nbeen promoted to captain\\nby the end of the war.\\n\\n165\\n00:08:15,309 --> 00:08:22,309\\nMy uncle Howard was the\\nnavy man who made it to the\\nrank of commander,\\n\\n166\\n00:08:22,489 --> 00:08:24,859\\nI think. My uncle Dave,\\n\\n167\\n00:08:24,859 --> 00:08:26,979\\nwho was my father\\'s oldest brother\\n\\n168\\n00:08:26,979 --> 00:08:29,580\\nwas a career Army man\\n\\n169\\n00:08:29,580 --> 00:08:31,039\\nand uh...\\n\\n170\\n00:08:31,039 --> 00:08:34,820\\nagain in the U.S. Army Corps of\\nEngineers and...\\n\\n171\\n00:08:34,820 --> 00:08:38,080\\nrose to the rank of major general.\\n\\n172\\n00:08:38,080 --> 00:08:39,490\\nand I have a\\n\\n173\\n00:08:39,490 --> 00:08:41,439\\ngreat-grandfather\\n\\n174\\n00:08:41,439 --> 00:08:43,580\\nDay\\n\\n175\\n00:08:43,580 --> 00:08:44,780\\nWho was...\\n\\n176\\n00:08:44,780 --> 00:08:47,200\\nI think a one of the youngest\\n\\n177\\n00:08:47,200 --> 00:08:48,960\\npeople to serve\\n\\n178\\n00:08:48,960 --> 00:08:52,910\\nin the union army in the\\nU.S. Civil War.\\n\\n179\\n00:08:52,910 --> 00:08:55,300\\nSo, the, the family has a long, uh,\\n\\n180\\n00:08:55,300 --> 00:08:57,660\\na long military history.\\n\\n181\\n00:08:57,660 --> 00:09:00,899\\n>> INTERVIEWER:\\nAs you mentioned you were\\ninvolved in antiwar movements\\n\\n182\\n00:09:00,899 --> 00:09:05,720\\nwhat attitudes did you\\nand your family members and friends\\nhold towards the Vietnam War?\\n\\n183\\n00:09:06,720 --> 00:09:12,730\\n>> MIKE:\\nWell, my family mostly held the attitude that\\nyou did what the government told you to do\\n\\n184\\n00:09:12,730 --> 00:09:19,240\\nUh... And they may have had\\ntheir own opinions on whether\\nit was a very, uh,\\n\\n185\\n00:09:19,240 --> 00:09:23,510\\nwhether it was a wise idea for the U.S.\\nto get involved in that war or not.\\n\\n186\\n00:09:23,510 --> 00:09:26,610\\nBut they mostly took the\\nmilitary attitude that you\\ndid what you were\\n\\n187\\n00:09:26,610 --> 00:09:28,140\\nordered to do.\\n\\n188\\n00:09:28,140 --> 00:09:32,320\\nUh... Some of them I suppose might have\\nbeen enthusiastic supporters of it and\\n\\n189\\n00:09:32,320 --> 00:09:34,390\\nothers might have thought it was a\\n\\n190\\n00:09:34,390 --> 00:09:36,890\\nstupid war to get involved in but\\n\\n191\\n00:09:36,890 --> 00:09:37,890\\nthey weren\\'t...\\n\\n192\\n00:09:37,890 --> 00:09:42,290\\nactively in opposition to it, and so far\\nas I knew I was the only member of my\\n\\n193\\n00:09:42,290 --> 00:09:43,500\\nfamily\\n\\n194\\n00:09:43,500 --> 00:09:47,400\\nwho was. Although, many of them questioned\\nthe draft particularly. And there was a\\n\\n195\\n00:09:47,400 --> 00:09:51,440\\ndifference between being opposed to the\\ndraft and being opposed to the war back then.\\n\\n196\\n00:09:51,440 --> 00:09:53,380\\nBut I was...\\n\\n197\\n00:09:53,380 --> 00:09:57,080\\nEventually, after thinking\\nit through some found that I was\\nopposed both, quite strongly.\\n\\n198\\n00:09:57,080 --> 00:09:59,390\\n>> INTERVIEWER:\\nSo where you drafted?\\n\\n199\\n00:09:59,390 --> 00:10:02,760\\n>> MIKE:\\nI was eventually drafted yes uh...\\n\\n200\\n00:10:02,760 --> 00:10:04,440\\nMy uh...\\n\\n201\\n00:10:04,440 --> 00:10:08,140\\nMy adventures in university only\\nlasted for about a year,\\n\\n202\\n00:10:08,140 --> 00:10:09,930\\nbefore I realized that I\\n\\n203\\n00:10:09,930 --> 00:10:13,899\\nwasn\\'t quite sure of why\\nI was going to university. I\\nwas no longer interested in\\n\\n204\\n00:10:13,899 --> 00:10:16,870\\ngetting a degree in\\nelectrical engineering,\\nI was\\n\\n205\\n00:10:16,870 --> 00:10:21,260\\nvery involved in the\\nanti-draft movement, one of\\nmy heroes was the uh...\\n\\n206\\n00:10:21,260 --> 00:10:25,640\\nthen president of the\\nStanford university student\\ncouncil David Harris\\n\\n207\\n00:10:25,640 --> 00:10:29,250\\nand, uh, he had gotten himself uh...\\n\\n208\\n00:10:29,250 --> 00:10:34,450\\narrested for refusing to be drafted\\nand, uh, gone off to prison.\\n\\n209\\n00:10:34,450 --> 00:10:36,880\\nAnd, I planed to do the same thing.\\n\\n210\\n00:10:36,880 --> 00:10:40,520\\nSo I took a leave of absence\\nfrom the university,\\n\\n211\\n00:10:40,520 --> 00:10:43,660\\nto figure out when I was\\ndoing with my life.\\n\\n212\\n00:10:43,660 --> 00:10:46,340\\nAnd, uh, immediately...\\n\\n213\\n00:10:46,340 --> 00:10:49,810\\nGot drafted since I no longer\\nhad my student deferment.\\n\\n214\\n00:10:49,810 --> 00:10:50,869\\nUm...\\n\\n215\\n00:10:50,869 --> 00:10:55,449\\nI had originally planned refuse\\nto be drafted, but unfortunately\\nat that time\\n\\n216\\n00:10:55,449 --> 00:10:58,460\\nmy father had been working\\n\\n217\\n00:10:58,460 --> 00:11:02,980\\non a dam building project in\\nOroville California and my parents\\nhad settled\\n\\n218\\n00:11:02,980 --> 00:11:05,150\\ndown there, finally in the United States.\\n\\n219\\n00:11:05,150 --> 00:11:06,770\\nBought a house.\\n\\n220\\n00:11:06,770 --> 00:11:08,819\\nAnd then the\\n\\n221\\n00:11:08,819 --> 00:11:11,639\\ndam building project had ended,\\n\\n222\\n00:11:11,639 --> 00:11:14,810\\nand he had been laid off, and\\nthey were having a hard time\\n\\n223\\n00:11:14,810 --> 00:11:16,170\\npaying for the house.\\n\\n224\\n00:11:16,170 --> 00:11:17,930\\nSo he took a job\\n\\n225\\n00:11:17,930 --> 00:11:21,340\\nagain as a civil engineer working\\nfor the U.S. Air Force\\n\\n226\\n00:11:21,340 --> 00:11:22,960\\nin Đà Nẵng Vietnam;\\n\\n227\\n00:11:22,960 --> 00:11:27,260\\nbuilding airports for the\\nAmerican airplanes again.\\n\\n228\\n00:11:27,260 --> 00:11:32,390\\nAnd I... When I announced my intention to\\nrefuse the draft and if necessary go to\\n\\n229\\n00:11:32,390 --> 00:11:34,900\\nprison, uh, I got a\\n\\n230\\n00:11:34,900 --> 00:11:37,620\\nvisit from my mother who informed me\\n\\n231\\n00:11:37,620 --> 00:11:42,160\\nthat if I did that, then my\\nfather would lose his security\\nclearance and\\n\\n232\\n00:11:42,160 --> 00:11:43,810\\ntherefore his job\\n\\n233\\n00:11:43,810 --> 00:11:47,399\\nthey would lose the house and my younger\\nbrother Brian wouldn\\'t get to go to\\n\\n234\\n00:11:47,399 --> 00:11:49,110\\nuniversity. It would just\\n\\n235\\n00:11:49,110 --> 00:11:51,830\\nbring disaster on the whole family.\\n\\n236\\n00:11:51,830 --> 00:11:57,980\\nThis put me, put me, in kind of a quandary.\\nUm... So I decided then that I would\\n\\n237\\n00:11:57,980 --> 00:12:02,190\\nallow myself to be drafted\\nbut I would look for a non-combatant\\nrole because I\\n\\n238\\n00:12:02,190 --> 00:12:04,450\\nreally wasn\\'t interested in\\n\\n239\\n00:12:04,450 --> 00:12:06,660\\nkilling Vietnamese for Uncle Sam.\\n\\n240\\n00:12:06,660 --> 00:12:08,430\\nSo I, uh...\\n\\n241\\n00:12:08,430 --> 00:12:09,620\\nWent ahead,\\n\\n242\\n00:12:09,620 --> 00:12:10,600\\nwith some\\n\\n243\\n00:12:10,600 --> 00:12:14,160\\ntrepidation, and really no\\nidea of what I was doing.\\n\\n244\\n00:12:14,160 --> 00:12:15,480\\nGot drafted,\\n\\n245\\n00:12:15,480 --> 00:12:21,420\\nAnd, uh, applied\\nfor non-combatant\\nmedic status.\\n\\n246\\n00:12:21,420 --> 00:12:22,949\\nWent through...\\n\\n247\\n00:12:22,949 --> 00:12:25,070\\nbasic training.\\n\\n248\\n00:12:25,070 --> 00:12:28,520\\nUh, waited for some time\\n\\n249\\n00:12:28,520 --> 00:12:31,690\\nwhile my request got processed\\n\\n250\\n00:12:31,690 --> 00:12:35,810\\nall the way up to the Pentagon, and\\ncame back down again: refused.\\n\\n251\\n00:12:35,810 --> 00:12:37,010\\nThe U.S. Army felt\\n\\n252\\n00:12:37,010 --> 00:12:42,290\\nthat I would make a better combat\\ninfantryman than medic.\\n\\n253\\n00:12:42,290 --> 00:12:43,210\\nUm...\\n\\n254\\n00:12:43,210 --> 00:12:45,860\\nI then, wasn\\'t quite sure what to do.\\n\\n255\\n00:12:45,860 --> 00:12:51,350\\nSo, I went ahead with advanced, went on\\ninto the advanced infantry training.\\n\\n256\\n00:12:51,350 --> 00:12:54,100\\nUh, this was all at Fort\\nLewis Washington.\\n\\n257\\n00:12:54,100 --> 00:12:57,540\\nUh, but while I was\\nin advanced infantry\\ntraining my father\\n\\n258\\n00:12:57,540 --> 00:13:01,640\\nfinished up the contract in,\\nuh, Vietnam and came back to\\nthe United States\\n\\n259\\n00:13:01,640 --> 00:13:04,200\\nand his job was no longer\\n\\n260\\n00:13:04,200 --> 00:13:05,769\\nconditional on having\\n\\n261\\n00:13:05,769 --> 00:13:08,240\\na security clearance from\\nthe U.S. government.\\n\\n262\\n00:13:08,240 --> 00:13:12,360\\nSo, when my advanced infantry training\\nwas finished and I got my orders to go\\n\\n263\\n00:13:12,360 --> 00:13:13,650\\nto Vietnam,\\n\\n264\\n00:13:13,650 --> 00:13:15,560\\nI simply packed up,\\n\\n265\\n00:13:15,560 --> 00:13:16,800\\ntook my\\n\\n266\\n00:13:16,800 --> 00:13:20,530\\nfew days leave that we were given, uh,\\n\\n267\\n00:13:20,530 --> 00:13:24,690\\nin those days before being sent\\noff to the jungles of Vietnam\\n\\n268\\n00:13:24,690 --> 00:13:26,510\\nand went back to Stanford.\\n\\n269\\n00:13:26,510 --> 00:13:30,740\\nDecided to see how much I could get\\naway with before they arrested me.\\n\\n270\\n00:13:30,740 --> 00:13:32,040\\nUh, there were a lot of\\n\\n271\\n00:13:32,040 --> 00:13:33,530\\nyoung men\\n\\n272\\n00:13:33,530 --> 00:13:37,480\\nleaving the U.S. army in\\nthose days, um...\\n\\n273\\n00:13:37,480 --> 00:13:41,910\\nand they were not really\\nputting a lot of effort into\\nrounding us up. So I went\\n\\n274\\n00:13:41,910 --> 00:13:43,760\\nback to Stanford\\n\\n275\\n00:13:43,760 --> 00:13:45,390\\nUh... re-enrolled\\n\\n276\\n00:13:45,390 --> 00:13:47,830\\nUh, continued to but, uh,\\n\\n277\\n00:13:47,830 --> 00:13:51,340\\nmy major seemed to be changing, at that\\npoint, from electrical engineering to\\n\\n278\\n00:13:51,340 --> 00:13:56,470\\nphilosophy. I was taking courses in\\npsychology, comparative religion,\\n\\n279\\n00:13:56,470 --> 00:14:00,750\\njust about anything. I think\\nI still did take\\n\\n280\\n00:14:00,750 --> 00:14:04,910\\nsome courses that were part\\nofthe electrical engineering\\ncurriculum, but I was\\n\\n281\\n00:14:04,910 --> 00:14:06,730\\nlooking for a new path.\\n\\n282\\n00:14:06,730 --> 00:14:10,500\\nBut I was still involved\\nin, uh, student radio\\n\\n283\\n00:14:10,500 --> 00:14:14,000\\nthe antiwar movement, and\\nthe anti-draft movement.\\n\\n284\\n00:14:14,000 --> 00:14:17,640\\nThis continued, uh, for\\nsome time until,\\n\\n285\\n00:14:17,640 --> 00:14:21,620\\nuh, one of my friends got arrested\\nat an antiwar demonstration\\n\\n286\\n00:14:21,620 --> 00:14:26,549\\nand he was being interviewed by an\\nFBI agent who was in charge of,\\n\\n287\\n00:14:26,549 --> 00:14:28,680\\nkeeping track of us, I guess.\\n\\n288\\n00:14:28,680 --> 00:14:32,550\\nMy friend was in the agent\\'s\\noffice and the agent got a phone\\ncall, and he didn\\'t\\n\\n289\\n00:14:32,550 --> 00:14:33,850\\ncare to\\n\\n290\\n00:14:33,850 --> 00:14:37,830\\ntalk on the phone in front of my friend.\\nSo, he told my friend quite sternly to\\n\\n291\\n00:14:37,830 --> 00:14:41,200\\nstay where he was, and stepped out of\\nthe office to take the phone call.\\n\\n292\\n00:14:41,200 --> 00:14:44,140\\nMy friend took the opportunity to look\\nthrough all the papers on the FBI\\n\\n293\\n00:14:44,140 --> 00:14:48,950\\nagent\\'s desk, and found a list of the\\npeople this particular agent was\\n\\n294\\n00:14:48,950 --> 00:14:51,250\\nsupposed to be keeping track of.\\n\\n295\\n00:14:51,250 --> 00:14:56,050\\nMost of the names were familiar\\nto him, it included me and all of\\nour mutual friends.\\n\\n296\\n00:14:56,050 --> 00:14:59,779\\nThey knew where we all lived, what\\nwe did, who we hung out with...\\n\\n297\\n00:14:59,779 --> 00:15:02,620\\nJust about everything about\\nus they needed to know.\\n\\n298\\n00:15:02,620 --> 00:15:03,610\\nUm...\\n\\n299\\n00:15:03,610 --> 00:15:04,710\\nWhen\\n\\n300\\n00:15:04,710 --> 00:15:09,730\\nhe was then released by the FBI agent\\nand, uh, came back and told me about\\n\\n301\\n00:15:09,730 --> 00:15:10,710\\nthis,\\n\\n302\\n00:15:10,710 --> 00:15:15,550\\nI realized that if I were actually as\\neffective an antiwar and anti-draft\\n\\n303\\n00:15:15,550 --> 00:15:17,020\\norganizer as I\\n\\n304\\n00:15:17,020 --> 00:15:18,800\\nfancied myself to be,\\n\\n305\\n00:15:18,800 --> 00:15:20,450\\nthey would have just pulled me in,\\n\\n306\\n00:15:20,450 --> 00:15:23,320\\nif I was really doing any\\ngood for the cause.\\n\\n307\\n00:15:23,320 --> 00:15:26,180\\nThey would have handed\\nme back to the Army who\\nwould\\'ve uh...\\n\\n308\\n00:15:26,180 --> 00:15:30,550\\neither sent me off to\\nVietnam or thrown me in, uh,\\na military prison for\\n\\n309\\n00:15:30,550 --> 00:15:31,940\\nUh...\\n\\n310\\n00:15:31,940 --> 00:15:33,420\\nfor being AWOL or\\n\\n311\\n00:15:33,420 --> 00:15:36,300\\none after the other.\\n\\n312\\n00:15:36,300 --> 00:15:39,910\\nSo, I came to the conclusion that I wasn\\'t\\nreally doing much good by staying in\\n\\n313\\n00:15:39,910 --> 00:15:44,320\\nCalifornia, and if I started to do\\nany good they\\'d simply pick me up.\\n\\n314\\n00:15:44,320 --> 00:15:48,950\\nSo uh, my friends got\\ntogether and bought me a\\nplane ticket to Canada.\\n\\n315\\n00:15:48,950 --> 00:15:53,770\\nUh, at that time my only contact\\nin Canada was uh...\\n\\n316\\n00:15:53,770 --> 00:15:57,180\\nUh, a good friend couple of years\\nolder who\\'d, uh, graduated from\\n\\n317\\n00:15:57,180 --> 00:16:01,220\\nStanford and was now up teaching\\nat the University of Alberta,\\n\\n318\\n00:16:01,220 --> 00:16:04,840\\nand who had let me know that\\nif I ever needed to come up to\\nCanada, I would be\\n\\n319\\n00:16:04,840 --> 00:16:06,690\\nwelcome to stay at his place.\\n\\n320\\n00:16:06,690 --> 00:16:08,200\\nSo I uh...\\n\\n321\\n00:16:08,200 --> 00:16:14,190\\nEntered Canada, uh, as\\na tourist and went to visit\\nmy friend Bill in Edmonton.\\n\\n322\\n00:16:14,190 --> 00:16:18,169\\n>> INTERVIEWER:\\nAside from the fact that\\nyou knew that they could get\\nyou at any-time they wanted,\\n\\n323\\n00:16:18,169 --> 00:16:21,270\\nwas anything else that made\\nyou want to desert?\\n\\n324\\n00:16:21,270 --> 00:16:24,270\\n>> MIKE:\\nWell, that was what made\\nme decide to leave\\n\\n325\\n00:16:24,270 --> 00:16:26,159\\nthe U.S. and come to Canada.\\n\\n326\\n00:16:26,159 --> 00:16:28,230\\nMy desertion was\\n\\n327\\n00:16:28,230 --> 00:16:29,470\\nUm...\\n\\n328\\n00:16:29,470 --> 00:16:31,870\\nPartly on...\\n\\n329\\n00:16:31,870 --> 00:16:35,230\\nMostly on moral grounds, that\\n\\n330\\n00:16:35,230 --> 00:16:38,390\\nI didn\\'t want to go killing people\\n\\n331\\n00:16:38,390 --> 00:16:43,270\\nfor the political purposes\\nof the U.S. government. I didn\\'t\\nthink it was a war\\n\\n332\\n00:16:43,270 --> 00:16:45,950\\nthe United States should\\nhave been involved in.\\n\\n333\\n00:16:45,950 --> 00:16:47,680\\nIt had to do with\\n\\n334\\n00:16:47,680 --> 00:16:49,639\\nwho was going to govern\\n\\n335\\n00:16:49,639 --> 00:16:51,280\\nSouth Vietnam.\\n\\n336\\n00:16:51,280 --> 00:16:54,480\\nThe uh... Whether the people were to be\\nallowed to have an election or their\\n\\n337\\n00:16:54,480 --> 00:16:58,160\\ngovernment was going to be\\nforced on them by the U.S.\\n\\n338\\n00:16:58,160 --> 00:17:00,560\\nAnd I certainly didn\\'t think it\\n\\n339\\n00:17:00,560 --> 00:17:03,880\\nwould be right for me to go\\nkill people to enforce the U.S.\\ngovernment\\'s foreign\\n\\n340\\n00:17:03,880 --> 00:17:06,660\\npolicy there.\\n\\n341\\n00:17:06,660 --> 00:17:09,930\\nThe war itself seemed futile,\\n\\n342\\n00:17:09,930 --> 00:17:13,700\\nsince I thought that sooner or later\\nthe Vietnamese would probably\\n\\n343\\n00:17:13,700 --> 00:17:15,790\\nget to decide their own fate.\\n\\n344\\n00:17:15,790 --> 00:17:20,920\\nUh... it was certainly killing a lot of\\nVietnamese and a lot of Americans.\\n\\n345\\n00:17:20,920 --> 00:17:24,860\\nI wasn\\'t sure I particularly supported\\n\\n346\\n00:17:24,860 --> 00:17:30,320\\nthe, the, Viet Cong or the\\nNorth Vietnamese, or any other\\nfaction there.\\n\\n347\\n00:17:30,320 --> 00:17:32,600\\nBut I just didn\\'t think it was\\n\\n348\\n00:17:32,600 --> 00:17:36,770\\nthe business of the United States, or me\\npersonally, to go try to tell them what\\n\\n349\\n00:17:36,770 --> 00:17:39,770\\nkind of government they should have.\\n\\n350\\n00:17:39,770 --> 00:17:40,920\\nUh, that was...\\n\\n351\\n00:17:40,920 --> 00:17:44,470\\nThat was my main opposition to the war,\\nthat and just a general opposition to\\n\\n352\\n00:17:44,470 --> 00:17:45,390\\nwars,\\n\\n353\\n00:17:45,390 --> 00:17:49,260\\nas not the right solution\\nto any problem.\\n\\n354\\n00:17:49,260 --> 00:17:52,000\\n>> INTERVIEWER:\\nWhat was it like living as\\na deserter in Canada?\\n\\n355\\n00:17:52,000 --> 00:17:54,150\\nWas it what you expected?\\n\\n356\\n00:17:54,150 --> 00:17:58,400\\n>> MIKE:\\nUh, living as a deserter\\nin Canada was...\\n\\n357\\n00:17:58,400 --> 00:18:01,679\\nMuch better than living as a\\ndeserter in the United States,\\nand it\\n\\n358\\n00:18:01,679 --> 00:18:04,620\\ndidn\\'t take me long to figure that out.\\n\\n359\\n00:18:04,620 --> 00:18:08,570\\nI can remember, I had been in\\nEdmonton for a few weeks...\\n\\n360\\n00:18:08,570 --> 00:18:13,410\\nI arrived here on April 1st, 1970.\\n\\n361\\n00:18:13,410 --> 00:18:16,530\\nUh, I came up on the train\\nfrom Calgary. I had\\n\\n362\\n00:18:16,530 --> 00:18:21,480\\nflown to Vancouver and then\\ntaken the train from Vancouver\\nto Calgary and then\\n\\n363\\n00:18:21,480 --> 00:18:23,460\\nfrom Calgary to Edmonton.\\n\\n364\\n00:18:23,460 --> 00:18:25,250\\nAnd uh...\\n\\n365\\n00:18:25,250 --> 00:18:26,300\\nUm...\\n\\n366\\n00:18:26,300 --> 00:18:28,920\\nWas relaxing at a..\\n\\n367\\n00:18:28,920 --> 00:18:31,860\\nAt the house so some new\\nfriend\\'s one evening,\\n\\n368\\n00:18:31,860 --> 00:18:34,190\\nand suddenly realised\\n\\n369\\n00:18:34,190 --> 00:18:35,770\\nthat I could simply\\n\\n370\\n00:18:35,770 --> 00:18:37,909\\ngo out for a walk\\n\\n371\\n00:18:37,909 --> 00:18:39,620\\nand\\n\\n372\\n00:18:39,620 --> 00:18:43,120\\nthere was, there was, no risk\\nattached to going for a walk\\n\\n373\\n00:18:43,120 --> 00:18:44,540\\nin the neighborhood\\n\\n374\\n00:18:44,540 --> 00:18:46,120\\nat ten o\\'clock at night.\\n\\n375\\n00:18:46,120 --> 00:18:48,460\\nThe police would not harass me.\\n\\n376\\n00:18:48,460 --> 00:18:53,640\\nUh, there was not\\nthe polarization, the\\nconflict,\\n\\n377\\n00:18:53,640 --> 00:18:55,679\\nthe racial conflict,\\n\\n378\\n00:18:55,679 --> 00:19:00,350\\nuh, the political polarization.\\n\\n379\\n00:19:00,350 --> 00:19:01,150\\nOr the...\\n\\n380\\n00:19:01,150 --> 00:19:05,100\\nThe police harassment I would have\\nexperienced in the United States.\\n\\n381\\n00:19:05,100 --> 00:19:07,039\\nUh, nobody...\\n\\n382\\n00:19:07,039 --> 00:19:10,710\\nIf anyone cared at all that\\nI was a deserter, they\\n\\n383\\n00:19:10,710 --> 00:19:12,279\\nthought that was good.\\n\\n384\\n00:19:12,279 --> 00:19:14,799\\nBut mostly they didn\\'t care.\\n\\n385\\n00:19:14,799 --> 00:19:18,020\\nAnd that was fine with me.\\n\\n386\\n00:19:18,020 --> 00:19:21,679\\n>> INTERVIEWER:\\nWhat was the hardest part of\\nhaving to come to Canada?\\n\\n387\\n00:19:21,679 --> 00:19:24,900\\n>> MIKE:\\nThe hardest part of coming to Canada?\\n\\n388\\n00:19:24,900 --> 00:19:30,600\\nUh... Being separated from\\nmy family. I would have liked\\nto have visited more often,\\n\\n389\\n00:19:30,600 --> 00:19:33,210\\nbut I wasn\\'t sure about\\n\\n390\\n00:19:33,210 --> 00:19:37,450\\ngetting across the border. So, I\\ndidn\\'t cross that U.S. border\\n\\n391\\n00:19:37,450 --> 00:19:40,410\\nfor many years until I had\\n\\n392\\n00:19:40,410 --> 00:19:45,230\\nmy Canadian citizenship and at a time\\nwhen the U.S. wasn\\'t particularly\\n\\n393\\n00:19:45,230 --> 00:19:47,770\\ninvolved in any wars...\\n\\n394\\n00:19:47,770 --> 00:19:50,330\\nfor which they were drafting young men,\\n\\n395\\n00:19:50,330 --> 00:19:51,630\\nand uh...\\n\\n396\\n00:19:51,630 --> 00:19:55,010\\nuh, it seemed a relatively\\nsafe time to do it. And even\\nthen I was nervous\\n\\n397\\n00:19:55,010 --> 00:19:58,350\\nabout going into\\nthe United States\\nto visit family.\\n\\n398\\n00:19:58,350 --> 00:20:00,420\\nUh, finally I did,\\n\\n399\\n00:20:00,420 --> 00:20:01,830\\nseveral times,\\n\\n400\\n00:20:01,830 --> 00:20:04,950\\nall before the uh... the disasters of\\n\\n401\\n00:20:04,950 --> 00:20:08,890\\nSeptember 11th, 2001.\\n\\n402\\n00:20:08,890 --> 00:20:10,409\\n>> INTERVIEWER:\\nKnowing what you know now,\\n\\n403\\n00:20:10,409 --> 00:20:12,899\\nwould you have done it again?\\n\\n404\\n00:20:12,899 --> 00:20:17,950\\n>> MIKE:\\nKnowing what I know now,\\nuh, rather than deserting\\nI would have, uh,\\n\\n405\\n00:20:17,950 --> 00:20:20,510\\nrefused to draft in the first place.\\n\\n406\\n00:20:20,510 --> 00:20:23,490\\nUh, never have allowed\\nmyself to be drafted\\n\\n407\\n00:20:23,490 --> 00:20:25,670\\nUh, I certainly...\\n\\n408\\n00:20:25,670 --> 00:20:30,330\\nI think I was quite\\nright in choosing not\\nto go to Vietnam\\n\\n409\\n00:20:30,330 --> 00:20:32,509\\nUh, I think I\\n\\n410\\n00:20:32,509 --> 00:20:33,390\\nwas\\n\\n411\\n00:20:33,390 --> 00:20:36,120\\nnaive about the way the world worked\\n\\n412\\n00:20:36,120 --> 00:20:42,190\\nin that I thought I could go to Vietnam\\nby my choice as a non-combatant and try\\n\\n413\\n00:20:42,190 --> 00:20:43,370\\nto\\n\\n414\\n00:20:43,370 --> 00:20:46,190\\nsave at least American lives.\\n\\n415\\n00:20:46,190 --> 00:20:47,010\\nUm...\\n\\n416\\n00:20:47,010 --> 00:20:50,370\\nThe odds are I wouldn\\'t have done\\nvery well in that role. Most\\n\\n417\\n00:20:50,370 --> 00:20:53,750\\nuh, military medics in Vietnam...\\n\\n418\\n00:20:53,750 --> 00:20:57,730\\nUh... Well they themselves\\nsuffered a high casualty rate.\\nThey were generally\\n\\n419\\n00:20:57,730 --> 00:21:01,430\\nexpected to carry fire arms\\nto defend themselves.\\n\\n420\\n00:21:01,430 --> 00:21:02,639\\nUh, I would have been\\n\\n421\\n00:21:02,639 --> 00:21:06,800\\na bit of an odd duck in any case.\\n\\n422\\n00:21:06,800 --> 00:21:13,340\\n>> INTERVIEWER:\\nWould you advise people in a\\nsimilar position as yourself,\\nto do is you have done?\\n\\n423\\n00:21:13,340 --> 00:21:15,039\\n>> MIKE:\\nI would advise any\\n\\n424\\n00:21:15,039 --> 00:21:18,329\\nyoung men drafted to go\\nfight in foreign wars,\\n\\n425\\n00:21:18,329 --> 00:21:23,159\\nnot to do so. I would really\\nadvise any young\\n\\n426\\n00:21:23,159 --> 00:21:25,090\\nAmericans,\\n\\n427\\n00:21:25,090 --> 00:21:30,530\\nnot to go fight in Iraq, Afghanistan, or\\nany other foreign wars the U.S. should\\n\\n428\\n00:21:30,530 --> 00:21:31,890\\nengage in.\\n\\n429\\n00:21:31,890 --> 00:21:33,590\\nI don\\'t think those wars\\n\\n430\\n00:21:33,590 --> 00:21:38,300\\nsettle any problems. I don\\'t think those\\nwars do any good for the United States.\\n\\n431\\n00:21:38,300 --> 00:21:43,030\\nCertainly the Vietnam War\\ndid no good for the United States.\\nIt had... The Iraq war\\n\\n432\\n00:21:43,030 --> 00:21:44,420\\nhas\\n\\n433\\n00:21:44,420 --> 00:21:49,770\\ndone no good for the United States, and\\nthe Afghanistan war is proving to be\\n\\n434\\n00:21:49,770 --> 00:21:54,580\\nan even worse disaster and has already\\ngone on longer than the Vietnam War.\\n\\n435\\n00:21:54,580 --> 00:21:55,909\\nIt is\\n\\n436\\n00:21:55,909 --> 00:21:59,919\\nchewing up the lives of\\nthe people in those countries\\nand building an immense\\n\\n437\\n00:21:59,919 --> 00:22:02,030\\nhatred against the United States.\\n\\n438\\n00:22:02,030 --> 00:22:06,330\\nIt\\'s killing young Americans\\nwho go over there.\\n\\n439\\n00:22:06,330 --> 00:22:08,970\\nUh, I see...\\n\\n440\\n00:22:08,970 --> 00:22:13,200\\nI see no benefit from any of those\\nwars and wouldn\\'t want anyone\\n\\n441\\n00:22:13,200 --> 00:22:15,720\\nto... to go fight in them.\\n\\n442\\n00:22:15,720 --> 00:22:18,799\\n>> INTERVIEWER:\\nAs you thoroughly talked about\\nthe United States involvement;\\n\\n443\\n00:22:18,799 --> 00:22:23,160\\nwhat is your opinion in Canada\\'s\\ninvolvement in the modern wars?\\n\\n444\\n00:22:23,160 --> 00:22:25,080\\n>> MIKE:\\nCanada\\'s involvement?\\n\\n445\\n00:22:25,080 --> 00:22:27,970\\nAs, uh, as an affiliate of\\n\\n446\\n00:22:27,970 --> 00:22:30,790\\nthe United States, supposedly\\n\\n447\\n00:22:30,790 --> 00:22:33,520\\nthrough... Well I\\'m thinking\\nof Afghanistan now\\n\\n448\\n00:22:33,520 --> 00:22:37,330\\nfortunately we weren\\'t stupid enough to\\nget involved in the Iraqi war. At least\\n\\n449\\n00:22:37,330 --> 00:22:39,110\\nnot by sending soldiers.\\n\\n450\\n00:22:39,110 --> 00:22:43,070\\nBut we\\'re in up to our\\nnecks in Afghanistan\\n\\n451\\n00:22:43,070 --> 00:22:45,830\\nand uh...\\n\\n452\\n00:22:45,830 --> 00:22:48,150\\nUh, I think it is\\n\\n453\\n00:22:48,150 --> 00:22:49,760\\nwrong to be there.\\n\\n454\\n00:22:49,760 --> 00:22:53,030\\nUh, we should not be assisting\\n\\n455\\n00:22:53,030 --> 00:22:56,550\\nthe U.S. in their adventure\\nin Afghanistan and it\\'s going\\nto be a\\n\\n456\\n00:22:56,550 --> 00:23:00,490\\ndisastrous adventure in Afghanistan.\\n\\n457\\n00:23:00,490 --> 00:23:01,600\\nUm, someone\\n\\n458\\n00:23:01,600 --> 00:23:06,900\\nfamous, whose name I\\'ve forgotten,\\nonce said \\'those who do not know\\ntheir history are\\n\\n459\\n00:23:06,900 --> 00:23:08,720\\ncondemned to repeat it\\'.\\n\\n460\\n00:23:08,720 --> 00:23:10,130\\nThe British\\n\\n461\\n00:23:10,130 --> 00:23:14,890\\nhave invaded Afghanistan four times,\\nif you come this time as\\n\\n462\\n00:23:14,890 --> 00:23:17,830\\na British invasion, because they\\'re\\npart of the NATO faces\\n\\n463\\n00:23:17,830 --> 00:23:19,090\\nforces also.\\n\\n464\\n00:23:19,090 --> 00:23:22,710\\nThe British have gotten their\\nasses kicked in Afghanistan\\n\\n465\\n00:23:22,710 --> 00:23:27,299\\nfour times. One time when they invaded\\nAfghanistan they went in with an army\\n\\n466\\n00:23:27,299 --> 00:23:28,700\\nthat probably had\\n\\n467\\n00:23:28,700 --> 00:23:33,150\\nincluding camp followers, and, and\\nmercenaries a quarter of a million\\n\\n468\\n00:23:33,150 --> 00:23:36,020\\npeople, and they sent back one\\n\\n469\\n00:23:36,020 --> 00:23:40,300\\nmedical officer, came riding back\\nout of Afghanistan to the\\n\\n470\\n00:23:40,300 --> 00:23:42,080\\nRed Fort at Lahore, to say\\n\\n471\\n00:23:42,080 --> 00:23:45,220\\n\\'I am all that is left of\\nthe Army of the Indus\\'.\\n\\n472\\n00:23:45,220 --> 00:23:49,360\\nNo one has succeeded in\\ninvading Afghanistan. The\\nRussians got their butts\\n\\n473\\n00:23:49,360 --> 00:23:50,940\\nkicked in Afghanistan.\\n\\n474\\n00:23:50,940 --> 00:23:57,110\\nAlexander the Great only managed\\nto get through there by marrying\\ninto the, the...\\n\\n475\\n00:23:57,110 --> 00:23:58,419\\ntribal\\n\\n476\\n00:23:58,419 --> 00:24:00,630\\nuh... structure.\\n\\n477\\n00:24:00,630 --> 00:24:04,590\\nThe Afghans simply do not like foreigners\\nmarching through their land\\n\\n478\\n00:24:04,590 --> 00:24:07,320\\nand particularly do not like\\nforeigners telling them\\n\\n479\\n00:24:07,320 --> 00:24:09,080\\nwhat to do.\\n\\n480\\n00:24:09,080 --> 00:24:11,029\\nIt\\'s not going to succeed.\\n\\n481\\n00:24:11,029 --> 00:24:14,340\\nUh, it\\'s an unjust war um...\\n\\n482\\n00:24:14,340 --> 00:24:18,779\\nand it\\'s going to be a very unsuccessful\\nwar. But it\\'s still killing Afghans,\\n\\n483\\n00:24:18,779 --> 00:24:24,159\\nand Canadians, and Americans,\\nand British, and Pakistanis,\\n\\n484\\n00:24:24,159 --> 00:24:26,980\\nand doing what wars do;\\nkill people.\\n\\n485\\n00:24:26,980 --> 00:24:31,190\\n>> INTERVIEWER:\\nWhat were the long-term decisions\\nof deserting to Canada?\\n\\n486\\n00:24:31,190 --> 00:24:35,990\\n>> MIKE:\\nLong-term decisions were uh...\\nIt probably kept me from getting\\na university\\n\\n487\\n00:24:35,990 --> 00:24:40,990\\ndegree, which I kind of regret.\\nUh, in hindsight I probably would\\nhave had\\n\\n488\\n00:24:40,990 --> 00:24:45,159\\nsome more interesting career choices\\nIf I had a university degree\\n\\n489\\n00:24:45,159 --> 00:24:46,340\\nUm...\\n\\n490\\n00:24:46,340 --> 00:24:47,310\\nIt\\'s...\\n\\n491\\n00:24:47,310 --> 00:24:48,840\\nBut uh,\\n\\n492\\n00:24:48,840 --> 00:24:54,430\\none of the long-term, uh,\\nchoices has been that I am\\nalive, happy, and healthy\\n\\n493\\n00:24:54,430 --> 00:24:58,659\\nand in Canada. So I can\\'t\\nregret it too much.\\n\\n494\\n00:24:58,659 --> 00:25:03,669\\n>> INTERVIEWER:\\nThe Canadian government now\\nretunely returns deserters to\\nthe U.S. to face trial.\\n\\n495\\n00:25:03,669 --> 00:25:05,150\\nWhat do you think of that?\\n\\n496\\n00:25:05,150 --> 00:25:11,360\\n>> MIKE:\\nWrong! That\\'s wrong. Uh...\\nThe Canadian government when\\nI came to Canada felt\\n\\n497\\n00:25:11,360 --> 00:25:13,130\\nthat it really wasn\\'t...\\n\\n498\\n00:25:13,130 --> 00:25:16,440\\nthat my past history was no business of\\ntheirs, as long that I hadn\\'t committed\\n\\n499\\n00:25:16,440 --> 00:25:17,990\\nany crimes,\\n\\n500\\n00:25:17,990 --> 00:25:18,929\\nand uh...\\n\\n501\\n00:25:18,929 --> 00:25:22,250\\ndeserting from the U.S. Army was\\nnot on their list of crimes.\\n\\n502\\n00:25:22,250 --> 00:25:23,629\\nSo um...\\n\\n503\\n00:25:23,629 --> 00:25:25,520\\nThey didn\\'t ask back then.\\n\\n504\\n00:25:25,520 --> 00:25:28,049\\nIn fact, they were fairly\\ncareful not ask.\\n\\n505\\n00:25:28,049 --> 00:25:30,080\\nUh, I don\\'t think\\n\\n506\\n00:25:30,080 --> 00:25:32,440\\nthat Canada should be\\n\\n507\\n00:25:32,440 --> 00:25:34,320\\nenforcing any kind of\\n\\n508\\n00:25:34,320 --> 00:25:36,289\\nU.S. laws about desertion.\\n\\n509\\n00:25:36,289 --> 00:25:37,970\\nAnd the few\\n\\n510\\n00:25:37,970 --> 00:25:39,290\\nU.S. Army deserters\\n\\n511\\n00:25:39,290 --> 00:25:41,820\\nthat I\\'ve talked to... the two\\n\\n512\\n00:25:41,820 --> 00:25:44,750\\nwho both had experience in Iraq,\\n\\n513\\n00:25:44,750 --> 00:25:48,260\\nhad extremely good reasons for\\nleaving the United States.\\n\\n514\\n00:25:48,260 --> 00:25:52,090\\nBoth of them had served\\ntours of duty in Iraq.\\n\\n515\\n00:25:52,090 --> 00:25:53,620\\nThey had experienced\\n\\n516\\n00:25:53,620 --> 00:25:54,590\\nthat war\\n\\n517\\n00:25:54,590 --> 00:25:59,159\\nand they had no intention of\\nexperiencing any more of it,\\n\\n518\\n00:25:59,159 --> 00:26:00,720\\nfor very good causes.\\n\\n519\\n00:26:00,720 --> 00:26:03,900\\n>> INTERVIEWER:\\nThe idea for this interview\\ncame from reading a short story\\nabout a person who\\n\\n520\\n00:26:03,900 --> 00:26:07,690\\ndecided to go to Canada, but changed\\nhis mind at the last minute.\\n\\n521\\n00:26:07,690 --> 00:26:09,820\\nThe last lines in this story are:\\n\\n522\\n00:26:09,820 --> 00:26:15,170\\n\"I survived, but it\\'s not a happy ending.\\nI was a coward, I went to [...] war.\"\\n\\n523\\n00:26:15,170 --> 00:26:17,380\\nWould you agree with this person?\\n\\n524\\n00:26:17,380 --> 00:26:23,730\\n>> MIKE:\\nI would, and I feel pretty much the same\\nway about it and, uh, I would...\\n\\n525\\n00:26:23,730 --> 00:26:27,430\\nhope that if this story was\\npatterned on a real person\\n\\n526\\n00:26:27,430 --> 00:26:32,600\\nuh... he would think again about it and\\nbefore serving another tour of duty on\\n\\n527\\n00:26:32,600 --> 00:26:35,549\\nsome U.S. war\\n\\n528\\n00:26:35,549 --> 00:26:38,010\\nsomewhere on the other side of the world\\n\\n529\\n00:26:38,010 --> 00:26:41,990\\nwould consider coming to Canada\\nor almost any other\\n\\n530\\n00:26:41,990 --> 00:26:47,980\\ncountry rather than continuing\\nin the U.S. military.\\n\\n531\\n00:26:47,980 --> 00:26:53,230\\n>> INTERVIEWER:\\nWhat are your feelings towards people\\nwho didn\\'t decide to leave?\\n\\n532\\n00:26:53,230 --> 00:26:54,399\\n>> MIKE:\\nUm...\\n\\n533\\n00:26:54,399 --> 00:26:56,059\\nI uh...\\n\\n534\\n00:26:56,059 --> 00:27:00,350\\nI have to say first that I am not angry\\nat them, any more than I am angry for\\n\\n535\\n00:27:00,350 --> 00:27:01,820\\ninstance at\\n\\n536\\n00:27:01,820 --> 00:27:06,630\\nCanadians who chose to serve in the\\nCanadian forces in Afghanistan\\n\\n537\\n00:27:06,630 --> 00:27:07,490\\nUm...\\n\\n538\\n00:27:07,490 --> 00:27:11,990\\n[Music starts]\\nI think they have been misled.\\n\\n539\\n00:27:11,990 --> 00:27:12,770\\nUh...\\n\\n540\\n00:27:12,770 --> 00:27:13,700\\nTo lead them into...\\n\\n541\\n00:27:13,700 --> 00:27:18,370\\nTo lead men into war,\\nto lead people into war\\nis to mislead them,\\n\\n542\\n00:27:18,370 --> 00:27:23,510\\nin any case. But I think they\\'ve been\\nmisled about the reasons the war\\n\\n543\\n00:27:23,510 --> 00:27:28,520\\nand, uh, the reasons for\\ntheir going over there.\\n\\n544\\n00:27:28,520 --> 00:27:30,669\\nI\\'m sure they go over there\\n\\n545\\n00:27:30,669 --> 00:27:34,100\\nbelieving that they\\'re doing something\\ngood for their country.\\n\\n546\\n00:27:34,100 --> 00:27:37,980\\nI hope so anyway, or maybe they go over\\nthere because they simply have very\\n\\n547\\n00:27:37,980 --> 00:27:40,260\\nfew choices in their life.\\n\\n548\\n00:27:40,260 --> 00:27:45,900\\nBut in any case, I really don\\'t\\nhold them responsible for that.\\nI hold, uh, the uh...\\n\\n549\\n00:27:45,900 --> 00:27:49,330\\nThe governments who are sending them\\nover there responsible for that.\\n\\n550\\n00:27:49,330 --> 00:27:50,610\\nUh...\\n\\n551\\n00:27:50,610 --> 00:27:52,720\\nI hope that they wont be damaged,\\n\\n552\\n00:27:52,720 --> 00:27:54,730\\nbut I do think that war\\n\\n553\\n00:27:54,730 --> 00:27:59,130\\ndamages people. I don\\'t think you can\\ngo through the experience of war\\n\\n554\\n00:27:59,130 --> 00:28:03,700\\nuh... and come out of it\\nscot-free without any scars.\\n\\n555\\n00:28:03,700 --> 00:28:09,370\\nuh, and I uh... I would hope they come out\\nof it with as few scars as possible.\\n\\n556\\n00:28:09,370 --> 00:28:12,240\\n>> INTERVIEWER:\\nIs there anything else you would like to say?\\n\\n557\\n00:28:12,240 --> 00:28:20,420\\n>> MIKE:\\nUm... If I had to sum up, uh,\\nI think uh, that I made the right\\nchoices I\\'m happy to be\\n\\n558\\n00:28:20,420 --> 00:28:22,049\\nwhere I am now\\n\\n559\\n00:28:22,049 --> 00:28:23,970\\nand I hope\\n\\n560\\n00:28:23,970 --> 00:28:25,230\\nany other\\n\\n561\\n00:28:25,230 --> 00:28:30,360\\nCanadians or Americans who are offered\\na choice of going off to war\\n\\n562\\n00:28:30,360 --> 00:28:31,930\\nsomewhere...\\n\\n563\\n00:28:31,930 --> 00:28:35,019\\nlike Afghanistan or Iraq, uh,\\n\\n564\\n00:28:35,019 --> 00:28:40,960\\nturn down that\\nchoice and stay here\\nand find a life...\\n\\n565\\n00:28:40,960 --> 00:28:43,580\\nuh, find a more peaceful path.\\n\\n566\\n00:28:43,580 --> 00:28:46,970\\n>> INTERVIEWER:\\nWell, thank you and hopefully people\\nwill learn from your experiences.',\n", + " 'bytes': 43620,\n", + " 'sha1': '9m39kgxdomtvdl0ds2x20275w2e8p0u',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 87011964,\n", + " 'timestamp': '2013-01-08T17:43:53Z',\n", + " 'user': {'id': 81755, 'text': 'Borys Kozielski'},\n", + " 'page': {'id': 23696057,\n", + " 'title': 'Nowiny 1 tygodnia 2013 roku.oga.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:05:20,000\\nZapowiedź, informacje o zmianach i nowym miejscu nadawania.\\n2\\n00:05:20,000 --> 00:19:00,000\\nKamil Śliwowski mówi o miejscu, z którego nadajemy http://www.panstwomiasto.pl i jego inicjatywie http://otwartezasoby.pl/\\n\\n3\\n00:19:00,000 --> 00:26:53,000\\nNagroda Stowarzyszenia Wikimedia Polska\\n\\n4\\n00:26:53,000 --> 00:28:00,000\\nZasoby audio w publicznej domenie\\n\\n5\\n00:28:00,000 --> 00:30:11,000\\nCHARLIE AND HIS ORCHESTRA\\n\\n6\\n00:30:11,000 --> 00:34:08,000\\nKossak, Styka i Panorama Racławicka\\n\\n7\\n00:34:08,000 --> 00:37:30,000\\nRaport o dzieciach w internecie\\n\\n8\\n00:37:30,000 --> 00:42:45,000\\nOpen Access – wkład Polskiej Akademii Nauk w rozwój idei otwartego dostępu do treści naukowych\\n\\n9\\n00:42:45,000 --> 00:45:12,000\\nWystawa prac z konkursu Wiki Lubi Zabytki\\n\\n10\\n00:45:12,000 --> 00:51:44,000\\nJak szeroki dostęp do pracy opłaconej z podatków. Informacja Izby Wydawców Prasy\\n\\n11\\n00:51:44,000 --> 00:58:11,000\\nUnia popiera wolne podręczniki',\n", + " 'bytes': 978,\n", + " 'sha1': '2oyxblbh8a2g70aw8rkx71039ex6nj5',\n", + " 'parent_id': 87009864,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91976925,\n", + " 'timestamp': '2013-03-05T06:50:18Z',\n", + " 'user': {'id': 425125, 'text': 'Solstag'},\n", + " 'page': {'id': 23714816,\n", + " 'title': 'Assembleia inaugural da Associação Pietro Roveri.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Solstag moved page [[TimedText:Assembleia01.ogv.en.srt]] to [[TimedText:Assembleia inaugural da Associação Pietro Roveri.ogv.en.srt]]: file moved, move along!',\n", + " 'text': '1\\n00:00:00,451 --> 00:00:02,504\\nHmmm...\\n\\n2\\n00:00:02,504 --> 00:00:08,505\\nHere we are, making the second and last call to start the operations,\\n\\n3\\n00:00:08,505 --> 00:00:13,330\\nthe formalities of constituting the Pietro Roveri Association for Free Collaboration and Knowledge.\\n\\n4\\n00:00:14,590 --> 00:00:15,849\\nLuca: Hey stop there, start over.\\n\\n5\\n00:00:15,849 --> 00:00:21,238\\nWe\\'re already filming this, relax, there\\'s no need.\\n\\n6\\n00:00:21,238 --> 00:00:23,941\\nCastelo: Alexandre, give us the date and time.\\n\\n7\\n00:00:23,941 --> 00:00:33,467\\nIt is now... 16 hours and 30 minutes of the 12th of October of 2012...\\n\\n8\\n00:00:33,467 --> 00:00:37,941\\nof our lord jesus christ and all that \"porra\".\\n\\n9\\n00:00:37,941 --> 00:00:53,863\\nMmm... we have to follow some formalities here, and along those formalities we\\'ll also follow some informalities that I hope will be welcome.\\n\\n10\\n00:00:58,294 --> 00:01:02,493\\nI touch to repel, I slap to indicate, I touch to bring.\\n\\n11\\n00:01:02,493 --> 00:01:06,770\\nI scream to run, I moan to bring, I draw to repeat.\\n\\n12\\n00:01:06,770 --> 00:01:12,039\\nI speak to persuade, I write to exhaust and I historicize to make firm.\\n\\n13\\n00:01:12,039 --> 00:01:18,512\\nThey say I did not historicize, write that I exhausted, say I persuaded.\\n\\n14\\n00:01:18,512 --> 00:01:22,663\\nThey draw to change, they moan to sublimate, they scream to live.\\n\\n15\\n00:01:22,663 --> 00:01:30,780\\nThey touch what I did, slap to show, punch to liberate. And if liberated, I do it again.\\n\\n16\\n00:01:31,325 --> 00:01:39,995\\nThat was a poem that is in the \"Sexta Poética\", its autorship is Pietro\\'s.\\n\\n17\\n00:01:41,241 --> 00:01:47,638\\nIt\\'s a way to hommage.\\n\\n18\\n00:01:47,638 --> 00:01:55,849\\nGood thing I brought water.\\n\\n19\\n00:01:55,849 --> 00:02:07,032\\nI think not everyone here got to meet Pietro. Mmm... but now you got to know him a little bit.\\n\\n20\\n00:02:07,401 --> 00:02:19,563\\nA bit that he left behind to our community, by way of Nevio and the \"Sexta Poética\", and through his own will to let others see him through his poetry and feelings.\\n\\n21\\n00:02:19,701 --> 00:02:27,355\\nBeyond all his thinking that now belongs to history. Mmm. And is making it.\\n\\n22\\n00:02:30,032 --> 00:02:37,447\\nI unfortunately got here late and could not participate during the morning. I missed a few people here whom I do not know who they are.\\n\\n23\\n00:02:38,075 --> 00:02:42,436\\nI\\'d like at least to have your names, so this doesn\\'t become something too abstract.\\n\\n24\\n00:02:42,806 --> 00:02:43,752\\nYou are...?\\n\\n25\\n00:02:43,983 --> 00:02:48,086\\n[People identify themselves]\\n\\n26\\n00:02:57,194 --> 00:03:02,757\\nOh, you are the one who\\'ll be staying at my place? Pleased to meet you!\\n\\n27\\n00:03:02,757 --> 00:03:14,745\\nAnd.. is anybody else hiding back there?\\n\\n28\\n00:03:14,745 --> 00:03:18,749\\nI\\'d like to say a few things to those who did not follow this story from the beginning\\n\\n29\\n00:03:18,749 --> 00:03:22,019\\nand I\\'ll start with something foolish which is in the name of the association.\\n\\n30\\n00:03:22,019 --> 00:03:33,464\\nNot the part that I already referenced, but the fact that it is called Pietro Roveri Association for <i>Free Collaboration and Knowledge<i>.</i></i>\\n\\n31\\n00:03:33,464 --> 00:03:41,039\\nThere was even a nonsensical discussion about knowledge or knowledges, so that it clearly meant free knowledge and <i>free</i> collaboration. [A discussion which only makes sense for Portuguese]\\n\\n32\\n00:03:41,039 --> 00:03:47,211\\nIt\\'s an important thought because it\\'s something we used to discuss a lot with him.\\n\\n33\\n00:03:47,211 --> 00:03:59,374\\nMe, Tom, well Pietro discussed these kind of things, and this one is something we discussed a lot, which is about the way we work and the way we collaborate.\\n\\n34\\n00:03:59,374 --> 00:04:06,615\\nThat not only knowledge should be free, but that the purpose of free knowledge is to allow human beings to be free.\\n\\n35\\n00:04:06,615 --> 00:04:14,238\\nAnd for that it is not enough that knowledge be free, even if we abolish copyright law or some other foolishness.\\n\\n36\\n00:04:14,238 --> 00:04:18,610\\nWe must also learn to collaborate as well, to work together in a free way.\\n\\n37\\n00:04:18,610 --> 00:04:28,485\\nAnd I think that was the agenda and the development of this whole process, that today arrives here with us constituting the association.\\n\\n38\\n00:04:28,485 --> 00:04:33,891\\nI think you chose the worse possible person to do this!\\n\\n39\\n00:04:33,891 --> 00:04:37,495\\nEveryone: maybe you should drink from the other bottle!\\n\\n40\\n00:04:37,495 --> 00:04:44,819\\nOh that\\'s true, is there any law against constituting an association while drunk?!\\n\\n41\\n00:04:44,819 --> 00:04:50,821\\nOh, well, I guess we\\'ll save it for later.\\n\\n42\\n00:04:50,821 --> 00:04:57,381\\nSo, going back, that was the thought I wanted to share, I hope it made sense to you.\\n\\n43\\n00:04:57,381 --> 00:05:14,750\\nSo the next step of our legal procedure is to delibarate about the constitution of the association.\\n\\n44\\n00:05:14,750 --> 00:05:25,375\\nAll in favor of constituting the Pietro Roveri Association for Free Collaboration and Knowledge, please raise your hand!\\n\\n45\\n00:05:25,375 --> 00:05:28,161\\nThere seems to be some bureaucracy regarding the show of hands.\\n\\n46\\n00:05:28,161 --> 00:05:32,849\\nRaise both for more intensity!\\n\\n47\\n00:05:32,849 --> 00:05:44,200\\nVery well then, we are constituted.\\n\\n48\\n00:05:44,200 --> 00:05:45,869\\nLet\\'s go...\\n\\n49\\n00:05:45,869 --> 00:05:52,986\\nSo I don\\'t become pathetic again, as my intention was to read one of Pietro\\'s poems between each step of this...\\n\\n50\\n00:05:52,986 --> 00:06:00,962\\nI\\'m still going to do that, but to calm myself now, I\\'m going to read something else first.\\n\\n51\\n00:06:00,962 --> 00:06:04,845\\nLet me see if I can find it...',\n", + " 'bytes': 5659,\n", + " 'sha1': 's7os1oj9tqoj509walqi0dblfue7gd6',\n", + " 'parent_id': 87227069,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 87558242,\n", + " 'timestamp': '2013-01-14T02:46:57Z',\n", + " 'user': {'text': '98.185.158.221'},\n", + " 'page': {'id': 23836784,\n", + " 'title': 'General quarters.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Captioning general quarters clip',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\n(Alarm sound)\\n\\n2\\n00:00:04,000 --> 00:00:07,000\\nThis is not a drill. This is not a drill.\\n\\n3\\n00:00:07,000 --> 00:00:09,000\\nGeneral quarters, general quarters.\\n\\n4\\n00:00:09,000 --> 00:00:11,000\\nAll hands man your battlestations.\\n\\n5\\n00:00:11,000 --> 00:00:14,000\\n(Alarm sound)',\n", + " 'bytes': 304,\n", + " 'sha1': 'g88jc9oyewu16gsup0tt86x1qajlrsw',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606351292,\n", + " 'timestamp': '2021-11-09T09:25:53Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 23859219,\n", + " 'title': 'Yeager supersonic flight 1947.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Yeager supersonic flight 1947.ogg.it.srt]] to [[TimedText:Yeager supersonic flight 1947.ogv.it.srt]]: rename of the original file',\n", + " 'text': \"0 \\n00:00:00,000 --> 00:00:05,500\\nNell'ottobre 1947, presso il centro sperimentale di Muroc, nel deserto californiano \\n\\n1\\n00:00:06,000 --> 00:00:09,500 \\nun pezzo di storia venne scritto da questo aereo, l'XS-1 \\n\\n2 \\n00:00:10,000 --> 00:00:13,500 \\ne dal suo pilota, il capitano Charles E. Yeager. \\n\\n3 \\n00:00:14,000 --> 00:00:18,500 \\nQuesto aereo e il suo pilota stanno per diventare i primi a volare \\n\\n4 \\n00:00:19,000 --> 00:00:22,000 \\na una velocità superiore a quella del suono in volo orizzontale. \\n\\n5 \\n00:00:25,000 --> 00:00:26,900 \\nUn B-29 porterà in quota l'XS-1 \\n\\n6 \\n00:00:27,000 --> 00:00:32,000 \\ne lo sgancerà a una quota di circa 10.500 m. \\n\\n7 \\n00:00:33,000 --> 00:00:34,500 \\nL'XS-1 non è un aereo militare \\n\\n8 \\n00:00:35,000 --> 00:00:37,500 \\nbensì un laboratorio di ricerca volante, \\n\\n9 \\n00:00:38,000 --> 00:00:40,500 \\nprogettato per testare gli effetti del volo supersonico sui velivoli. \\n\\n10 \\n00:00:42,000 --> 00:00:44,500 \\nÈ propulso da quattro motori a razzo \\n\\n11 \\n00:00:45,000 --> 00:00:48,500 \\npesa meno di 2.270 kg \\n\\n12 \\n00:00:49,000 --> 00:00:53,000 \\nma trasporta 3.600 kg di carburante. \\n\\n13 \\n00:00:54,000 --> 00:00:56,500 \\nI B-29 hanno fatto molte cose memorabili \\n\\n14 \\n00:00:57,000 --> 00:01:01,500 \\nMa nessuno di essi aveva mai condotto una missione come questa \\n\\n15 \\n00:01:02,000 --> 00:01:06,000 \\ne nessun aereo aveva mai fatto quello che l'XS-1 sta per fare. \\n\\n16 \\n00:01:16,000 --> 00:01:17,500 \\nInfrangere la barriera del suono in volo orizzontale \\n\\n17 \\n00:01:18,000 --> 00:01:20,500 \\nsarà più che un'impresa spettacolare: \\n\\n18 \\n00:01:21,000 --> 00:01:27,000 \\ndarà anche all'aeronautica militare importanti informazioni\\nsulle potenzialità del nuovo sistema propulsivo. \\n\\n19 \\n00:01:28,000 --> 00:01:29,500 \\nIl capitano Yeager sale a bordo dell'XS-1. \\n\\n20 \\n00:01:30,000 --> 00:01:33,000 \\nNon sarà un lungo volo quello che compirà nel piccolo velivolo: \\n\\n21 \\n00:01:34,000 --> 00:01:37,500 \\na piena potenza il volo non può durare più di due minuti e mezzo \\n\\n22 \\n00:01:38,000 --> 00:01:41,000 \\nma sarà un volo molto veloce. \\n\\n23 \\n00:01:59,000 --> 00:02:01,000 \\nPronti! \\n\\n24 \\n00:02:01,000 --> 00:02:02,500 \\nAnche gli equipaggi dei radar sono pronti \\n\\n25 \\n00:02:03,000 --> 00:02:05,500 \\na cronometrare a distanza, con l'unico mezzo possibile \\n\\n26 \\n00:02:06,000 --> 00:02:09,000 \\nper misurare la velocità di un aereo ad altissima quota. \\n\\n27 \\n00:02:13,500 --> 00:02:14,500 \\nEcco che va! \\n\\n28 \\n00:02:15,000 --> 00:02:19,000 \\nUn grande momento di un volo storico. \\n\\n29 \\n00:02:24,000 --> 00:02:25,500 \\nSi sta avvicinando alla barriera. \\n\\n30 \\n00:02:26,000 --> 00:02:32,000 \\nLa velocità del suono a 10.500 m è di 1.062 km/h. \\n\\n31 \\n00:02:33,000 --> 00:02:36,500 \\nIl momento veramente grande. Oltre la barriera del suono. \\n\\n32 \\n00:02:37,000 --> 00:02:39,500 \\nPer la prima volta, in volo orizzontale. \\n\\n33 \\n00:02:40,000 --> 00:02:48,500 \\nPer la prima volta un uomo ha pilotato un aereo che volava a una velocità superiore a quella del suono. \\n\\n34 \\n00:02:49,000 --> 00:02:53,500 \\nQuesto è valso al capitano Yeager molti onori, e allo storico aereo, l'XS-1 \\n\\n35 \\n00:02:54,000 --> 00:02:59,000 \\nè valso un posto nella Smithsonian Institution.\",\n", + " 'bytes': 3168,\n", + " 'sha1': 'rqqzukt3pjdjqf8lf3i76g6aicnv3by',\n", + " 'parent_id': 87642102,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 87835652,\n", + " 'timestamp': '2013-01-16T20:57:56Z',\n", + " 'user': {'text': '187.15.95.10'},\n", + " 'page': {'id': 23911782,\n", + " 'title': 'Italian anthem.ogg.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:20,000 --> 00:00:33,400 Irmãos da Itália, a Itália ressurgiu 2 00:00:34,600 --> 00:00:38,800 Com o elmo de cipião cobriu a cabeça 3 00:00:40,000 ...'\",\n", + " 'text': '1\\n00:00:20,000 --> 00:00:33,400\\nIrmãos da Itália, a Itália ressurgiu\\n\\n2\\n00:00:34,600 --> 00:00:38,800\\nCom o elmo de cipião cobriu a cabeça\\n\\n3\\n00:00:40,000 --> 00:00:49,400\\nOnde está a Vitória? que lhe sustém a cabeleira\\n\\n4\\n00:00:50,000 --> 00:00:59,400\\nPois, foi como escrava de Roma que Deus a criou.\\n\\n5\\n00:01:02,000 --> 00:01:11,400\\nIrmãos da Itália, a Itália ressurgiu.\\n\\n6\\n00:01:12,000 --> 00:01:16,400\\nCerremos fileiras, estejamos prontos para morrer!\\n\\n7\\n00:01:17,000 --> 00:01:21,400\\nEstejamos prontos para morrer pois a Itália chamou.\\n\\n8\\n00:01:22,000 --> 00:01:28,400\\nCerremos fileiras, estejamos prontos para morrer!\\n\\n9\\n00:01:29,000 --> 00:01:33,400\\nEstamos prontos para a morte pois a Itália nos chamou\\n\\n10\\n00:01:34,000 --> 00:01:36,400\\nSIM!',\n", + " 'bytes': 762,\n", + " 'sha1': 'lrfcbu6a4220nqthc4r9gtwu516z82a',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 671019609,\n", + " 'timestamp': '2022-07-03T18:12:20Z',\n", + " 'user': {'text': '46.196.99.36'},\n", + " 'page': {'id': 23990135,\n", + " 'title': 'Istiklâl Marsi instrumetal.ogg.tr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:5,000 --> 00:00:10,000\\nKorkma! Sönmez bu şafak\\n\\n2\\n00:00:10,000 --> 00:00:16,000\\n-larda yüzen al sancak.\\n\\n3\\n00:00:16,000 --> 00:00:23,000\\nSönmeden yurdumun üstünde tüten en son ocak\\n\\n4\\n00:00:23,000 --> 00:00:28,000\\nO benim milletimin\\n\\n5\\n00:00:28,000 --> 00:00:33,000\\nyıldızıdır, parlayacak\\n\\n6\\n00:00:33,000 --> 00:00:40,000\\no benimdir o benim milletimdir ancak\\n\\n7\\n00:00:40,000 --> 00:00:45,000\\nçatma, kurban olayım,\\n\\n8\\n00:00:45,000 --> 00:00:51,000\\nçehreni ey nazlı hilal!\\n\\n9\\n00:00:51,000 --> 00:00:58,000\\nKahraman ırkıma bir gül! ne bu şiddet, bu celâl! Sana \\n\\n10\\n00:00:58,000 --> 00:01:03,000\\nolmaz dökülen\\n\\n11\\n00:01:03,000 --> 00:01:07,000\\nkanlarımız sonra helal. Hakkıdır, \\n\\n12\\n00:01:07,000 --> 00:01:15,000,\\n Hakk'a tapan milletimin istiklâl.\",\n", + " 'bytes': 781,\n", + " 'sha1': 'dojwsvgdtfd869ub0feptmtcgwoj3nr',\n", + " 'parent_id': 561037883,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 674058250,\n", + " 'timestamp': '2022-07-13T13:42:50Z',\n", + " 'user': {'id': 1636, 'text': 'Kaihsu'},\n", + " 'page': {'id': 24019615,\n", + " 'title': 'Pekka Haavisto on nuclear power.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,000\\n... Finland.\\n\\n2\\n00:00:03,000 --> 00:00:09,000\\nI am actually in this German council which is following the Energiewende in Germany.\\n\\n3\\n00:00:09,000 --> 00:00:15,000\\nThe Germans will stop the use of nuclear power in 2022.\\n\\n4\\n00:00:15,000 --> 00:00:18,000\\nOf course, it was triggered by Hukusima.\\n\\n5\\n00:00:18,000 --> 00:00:22,000\\nI can see how serious Hukusima triggered the energy policies.\\n\\n6\\n00:00:22,000 --> 00:00:25,000\\nParticularly in Germany but also in other countries.\\n\\n7\\n00:00:25,000 --> 00:00:27,000\\nThis is also going on in Sweden. \\n\\n8\\n00:00:27,000 --> 00:00:30,000\\nI am always surprised that this is not touching Finland at all.\\n\\n9\\n00:00:30,000 --> 00:00:34,000\\nIt looks like we are on a totally different planet.\\n\\n10\\n00:00:34,000 --> 00:00:36,000\\nWe always think we are the best in running the nuclear power plants.\\n\\n11\\n00:00:36,000 --> 00:00:39,000\\nThe poor Japanese, they could’t run their own.\\n\\n12\\n00:00:39,000 --> 00:00:42,000\\nThe poor Russians, they could’t run their Chernobyl.\\n\\n13\\n00:00:42,000 --> 00:00:47,000\\nBut the nuclear power in Finland ... everything is so excellent.\\n\\n14\\n00:00:47,000 --> 00:00:49,000\\nI think there will be a turn also in Finland.\\n\\n15\\n00:00:49,000 --> 00:00:51,000\\nBut we are very slow in that turn.\\n\\n16\\n00:00:51,000 --> 00:00:55,000\\nI am a little bit sad that my country is lagging behind in this trend.\\n\\n17\\n00:00:55,000 --> 00:01:00,000\\nGermany is now investing totally in the new type of energy production ...\\n\\n18\\n00:01:00,000 --> 00:01:05,000\\n... and want to be the first in green energy and green economics in Europe.\\n\\n19\\n00:01:05,000 --> 00:01:08,000\\nAfterwards I am sure we will follow.',\n", + " 'bytes': 1672,\n", + " 'sha1': 'sb8tl28lqhsulma6770u6mbh9cek1h6',\n", + " 'parent_id': 233187037,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97615026,\n", + " 'timestamp': '2013-06-05T08:35:01Z',\n", + " 'user': {'text': '158.227.67.19'},\n", + " 'page': {'id': 24061041,\n", + " 'title': '¿Qué es Wikipedia?.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Undo revision 97598234 by [[Special:Contributions/81.184.240.57|81.184.240.57]] ([[User talk:81.184.240.57|talk]])',\n", + " 'text': '\\ufeff1\\n00:00:04,250 --> 00:00:05,500\\n¡Hola!\\n\\n2\\n00:00:05,650 --> 00:00:07,500\\nMi nombre es Mariana y quiero hablarte de Wikipedia.\\n\\n3\\n00:00:07,840 --> 00:00:09,500\\nSeguro que la conoces y la usas,\\n\\n4\\n00:00:09,750 --> 00:00:12,000\\npero, ¿sabes de qué se trata realmente\\n\\n5\\n00:00:12,000 --> 00:00:13,000\\ny cómo se hace?\\n\\n6\\n00:00:13,360 --> 00:00:16,050\\nAunque parezca una enciclopedia algo peculiar,\\n\\n7\\n00:00:16,300 --> 00:00:18,500\\npersigue lo mismo que las enciclopedias tradicionales:\\n\\n8\\n00:00:18,750 --> 00:00:22,250\\n\"Reunir de una manera ordenada todo el conocimiento generado por la humanidad\".\\n\\n9\\n00:00:22,500 --> 00:00:25,800\\nPero Wikipedia tiene también algunas diferencias significativas\\n\\n10\\n00:00:25,700 --> 00:00:27,750\\ncon las enciclopedias tradicionales.\\n\\n11\\n00:00:27,610 --> 00:00:28,400\\nEntre otras,\\n\\n12\\n00:00:28,400 --> 00:00:31,250\\nse trata de una enciclopedia desarrollada por miles de voluntarios\\n\\n13\\n00:00:31,500 --> 00:00:35,500\\ncon el objetivo de acercar el conocimiento a cada persona del planeta\\n\\n14\\n00:00:35,500 --> 00:00:36,600\\nen su propio idioma\\n\\n15\\n00:00:36,650 --> 00:00:37,840\\n¿Cómo se logra?\\n\\n16\\n00:00:37,850 --> 00:00:41,500\\n¿Cuáles son las reglas que organizan y guían a los wikipedistas?\\n\\n17\\n00:00:41,750 --> 00:00:43,800\\nDe esto se trata este vídeo.\\n\\n18\\n00:00:49,000 --> 00:00:52,800\\nCualquier persona puede incorporar o corregir información en Wikipedia\\n\\n19\\n00:00:52,900 --> 00:00:55,800\\npero debe recordar que se trata de una enciclopedia.\\n\\n20\\n00:00:55,800 --> 00:00:58,700\\nEsto significa que no se aceptan investigaciones originales\\n\\n21\\n00:00:58,700 --> 00:00:59,455\\nni ensayos.\\n\\n22\\n00:00:59,455 --> 00:01:02,000\\nQue los artículos deben ser de interés universal,\\n\\n23\\n00:01:02,000 --> 00:01:05,200\\ny que debe evitarse información de carácter efímero.\\n\\n24\\n00:01:05,200 --> 00:01:06,950\\nEsta es la primera regla,\\n\\n25\\n00:01:06,950 --> 00:01:08,500\\no como dicen los wikipedistas:\\n\\n26\\n00:01:08,500 --> 00:01:09,400\\n\"El primer pilar\"\\n\\n27\\n00:01:09,400 --> 00:01:10,450\\nde esta enciclopedia.\\n\\n28\\n00:01:13,100 --> 00:01:15,600\\nMiles de voluntarios escriben la enciclopedia.\\n\\n29\\n00:01:15,600 --> 00:01:18,200\\nSe trata de personas con diferentes orígenes,\\n\\n30\\n00:01:18,200 --> 00:01:19,100\\ndiferentes creencias,\\n\\n31\\n00:01:19,100 --> 00:01:20,450\\ndiferentes ideas.\\n\\n32\\n00:01:20,900 --> 00:01:24,900\\nWikipedia no asumirá como propio ningún punto de vista particular.\\n\\n33\\n00:01:25,150 --> 00:01:28,650\\nSino que intentará ofrecer la información desde todos los ángulos posibles.\\n\\n34\\n00:01:28,900 --> 00:01:31,250\\nPor eso, el segundo pilar de Wikipedia\\n\\n35\\n00:01:31,250 --> 00:01:33,250\\nse llama: Punto de vista neutral.\\n\\n36\\n00:01:35,000 --> 00:01:38,000\\nEl tercer pilar indica que Wikipedia es de contenido libre.\\n\\n37\\n00:01:38,400 --> 00:01:41,100\\nTodos los textos están disponibles con cualquier fin,\\n\\n38\\n00:01:41,350 --> 00:01:43,400\\nsiempre que al reutilizarlos se acrediten su origen\\n\\n39\\n00:01:43,400 --> 00:01:46,100\\ny se utilice la misma licencia \"Creative Commons\".\\n\\n40\\n00:01:46,350 --> 00:01:48,100\\nEn el caso de las imágenes\\n\\n41\\n00:01:48,100 --> 00:01:49,600\\nlas licencias pueden variar,\\n\\n42\\n00:01:49,850 --> 00:01:52,600\\npero siempre la copia y la reutilización están permitidas.\\n\\n43\\n00:01:53,300 --> 00:01:56,300\\nEn estos casos hay que leer la licencia en particular\\n\\n44\\n00:01:56,300 --> 00:01:58,500\\npara saber que restricciones se aplican.\\n\\n45\\n00:02:01,500 --> 00:02:04,300\\nTanta gente interactuando aveces genera discusiones.\\n\\n46\\n00:02:04,550 --> 00:02:08,650\\nPor eso el cuarto pilar indica que los usuarios deben respetarse mutuamente\\n\\n47\\n00:02:08,650 --> 00:02:10,200\\ny presumir buena fe.\\n\\n48\\n00:02:10,200 --> 00:02:13,900\\nLa tolerancia y cordialidad son fundamentales para el proyecto.\\n\\n49\\n00:02:16,800 --> 00:02:19,500\\nWikipedia no tiene normas firmes.\\n\\n50\\n00:02:19,750 --> 00:02:21,250\\nAunque parezca curioso,\\n\\n51\\n00:02:20,800 --> 00:02:23,300\\neste es el quinto pilar de esta enciclopedia.\\n\\n52\\n00:02:23,320 --> 00:02:27,000\\nPara colaborar, solo es imprescindible guiarse por el sentido común\\n\\n53\\n00:02:27,000 --> 00:02:30,200\\ny respetar a los wikipedistas que nos acompañan en nuestra aventura.\\n\\n54\\n00:02:30,450 --> 00:02:32,500\\nTodas las personas pueden aportar algo.\\n\\n55\\n00:02:32,750 --> 00:02:34,750\\nHay quienes desarrollan artículos complejos\\n\\n56\\n00:02:34,750 --> 00:02:37,300\\ny quienes corrigen pequeñas faltas de ortografía.\\n\\n57\\n00:02:37,300 --> 00:02:40,000\\nVos también puedes ayudar creando, editando y corrigiendo artículos\\n\\n58\\n00:02:41,000 --> 00:02:42,000\\nToda edición es reversible.\\n\\n59\\n00:02:42,000 --> 00:02:46,250\\nSi te equivocas, siempre se puede recuperar la versión anterior.\\n\\n60\\n00:02:46,300 --> 00:02:48,500\\n¡Sé valiente! ¡Sé wikipedista!',\n", + " 'bytes': 4736,\n", + " 'sha1': '203ql9tqciq4v5odvp65n385eqfsu84',\n", + " 'parent_id': 97598234,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 88724860,\n", + " 'timestamp': '2013-01-24T22:32:57Z',\n", + " 'user': {'text': '193.49.123.21'},\n", + " 'page': {'id': 24159461,\n", + " 'title': 'Fr-wagon.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nUn wagon',\n", + " 'bytes': 40,\n", + " 'sha1': 'lv64fb2uxdnx5x2o0equy3gttgq4t8x',\n", + " 'parent_id': 88724814,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 88813305,\n", + " 'timestamp': '2013-01-25T18:39:43Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 24186957,\n", + " 'title': '2012-06 Dessau Hauptbahnhof←Tempelhofer Straße.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:46,160 Hauptbahnhof 2 00:01:05,319 --> 00:01:26,520 Theater 3 00:02:23,040 --> 00:02:59,880 Hauptpost 4 00:03:46,360 --> 00:04:54,88...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:46,160\\nHauptbahnhof\\n\\n2\\n00:01:05,319 --> 00:01:26,520\\nTheater\\n\\n3\\n00:02:23,040 --> 00:02:59,880\\nHauptpost\\n\\n4\\n00:03:46,360 --> 00:04:54,880\\nMuseum Nord\\n\\n5\\n00:05:08,400 --> 00:05:26,520\\nDessau Center\\n\\n6\\n00:05:59,800 --> 00:06:28,200\\nFriedhofstraße\\n\\n7\\n00:06:55,000 --> 00:07:27,640\\nAm Alten Wasserturm\\n\\n8\\n00:08:05,840 --> 00:08:35,039\\nWasserwerkstraße\\n\\n9\\n00:09:02,600 --> 00:09:21,000\\nKlughardtstraße\\n\\n10\\n00:10:05,760 --> 00:10:28,080\\nFriedhof Ⅲ\\n\\n11\\n00:10:54,440 --> 00:11:40,120\\nDessauer Verkehrsgesellschaft\\n\\n12\\n00:12:08,680 --> 00:12:33,160\\nDamaschkestraße\\n\\n13\\n00:13:03,800 --> 00:13:28,600\\nPeterholzstraße\\n\\n14\\n00:14:05,680 --> 00:14:22,320\\nTempelhofer Straße',\n", + " 'bytes': 690,\n", + " 'sha1': '0g4i6f9c84ncpk8dmij7nou7f6013sc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 88970370,\n", + " 'timestamp': '2013-01-27T05:16:23Z',\n", + " 'user': {'text': '190.194.117.207'},\n", + " 'page': {'id': 24246923,\n", + " 'title': 'Marcha de San Lorenzo.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Official lyrics from http://en.wikipedia.org/wiki/San_Lorenzo_march#Lyrics',\n", + " 'text': '1\\n00:00:06,000 --> 00:00:11,000\\nFebo asoma, ya sus rayos...\\n\\n2\\n00:00:11,000 --> 00:00:16,000\\n...iluminan el histórico convento.\\n\\n3\\n00:00:16,000 --> 00:00:21,000\\nTras los muros, sordos ruidos...\\n\\n4\\n00:00:21,000 --> 00:00:26,000\\n...oír se dejan de corceles y de acero.\\n\\n5\\n00:00:26,000 --> 00:00:31,000\\nSon las huestes que prepara...\\n\\n6\\n00:00:31,000 --> 00:00:36,000\\n...San Martín para luchar en San Lorenzo.\\n\\n7\\n00:00:36,000 --> 00:00:40,000\\nY el clarín estridente sonó.\\n\\n8\\n00:00:40,000 --> 00:00:45,000\\nY la voz del gran jefe a la carga ordenó.\\n\\n9\\n00:00:55,000 --> 00:01:05,000\\nAvanza el enemigo, a paso redoblado...\\n\\n10\\n00:01:05,000 --> 00:01:23,000\\nY al viento desplegado, su rojo pabellón.\\n\\n11\\n00:01:24,000 --> 00:01:34,000\\nY nuestros granaderos, aliados de la Gloria...\\n\\n12\\n00:01:34,000 --> 00:01:51,000\\n...inscriben en la Historia su página mejor.\\n\\n13\\n00:02:07,000 --> 00:02:12,000\\nCabral, soldado heroico...\\n\\n14\\n00:02:12,000 --> 00:02:17,000\\n...cubriéndose de Gloria...\\n\\n15\\n00:02:17,000 --> 00:02:21,000\\n...cual precio a la victoria...\\n\\n16\\n00:02:21,000 --> 00:02:26,000\\n...su vida rinde haciéndose inmortal.\\n\\n17\\n00:02:26,000 --> 00:02:36,000\\nY allí salvó su arrojo, la libertad naciente...\\n\\n18\\n00:02:36,000 --> 00:02:40,000\\n...de nuestro continente.\\n\\n19\\n00:02:40,000 --> 00:02:46,000\\n¡Honor, honor al gran Cabral!\\n\\n20\\n00:03:04,000 --> 00:03:14,000\\nY allí salvó su arrojo, la libertad naciente...\\n\\n21\\n00:03:14,000 --> 00:03:18,000\\n...de nuestro continente.\\n\\n22\\n00:03:18,000 --> 00:03:22,000\\n¡Honor, honor al gran Cabral!',\n", + " 'bytes': 1539,\n", + " 'sha1': 's50tjv72r8ey7pacnxdfsyy1rrok8ak',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 88989711,\n", + " 'timestamp': '2013-01-27T10:06:15Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 24255586,\n", + " 'title': '2012-06 Dessau Junkerspark←Hauptbahnhof.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:41,720 Junkerspark 2 00:00:58,960 --> 00:01:48,040 Köthener Straße 3 00:02:45,000 --> 00:03:09,920 Zoberberg-Mitte 4 00:04:02,160 ...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:41,720\\nJunkerspark\\n\\n2\\n00:00:58,960 --> 00:01:48,040\\nKöthener Straße\\n\\n3\\n00:02:45,000 --> 00:03:09,920\\nZoberberg-Mitte\\n\\n4\\n00:04:02,160 --> 00:04:53,640\\nStädtisches Klinikum\\n\\n5\\n00:05:37,320 --> 00:05:53,760\\nMedizinisches Versorgungszentrum\\n\\n6\\n00:06:26,560 --> 00:07:08,520\\nLindenstraße\\n\\n7\\n00:07:59,520 --> 00:08:54,640\\nKleine Schaftrift\\n\\n8\\n00:09:24,560 --> 00:09:42,400\\nBerufsschulzentrum Sporthalle\\n\\n9\\n00:10:11,040 --> 00:11:40,840\\nBerufsschulzentrum Haupteingang\\n\\n10\\n00:12:03,280 --> 00:12:25,800\\nRobert-Bosch-Straße\\n\\n11\\n00:12:56,160 --> 00:13:27,600\\nRodebillestraße\\n\\n12\\n00:14:33,920 --> 00:15:01,880\\nAmalienstraße\\n\\n13\\n00:15:33,280 --> 00:15:55,400\\nAugust-Bebel-Platz\\n\\n14\\n00:16:06,680 --> 00:16:13,800\\n◄Museum West►\\n\\n15\\n00:16:27,720 --> 00:17:07,040\\nMuseum Nord\\n\\n16\\n00:18:21,600 --> 00:18:45,360\\nHauptpost\\n\\n17\\n00:19:43,720 --> 00:20:05,080\\nTheater\\n\\n18\\n00:20:25,000 --> 00:21:07,920\\nHauptbahnhof',\n", + " 'bytes': 929,\n", + " 'sha1': 'gc9du4rgazc1j0q2gvm0kwum8ir3b3d',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 88997782,\n", + " 'timestamp': '2013-01-27T12:06:17Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 24258583,\n", + " 'title': '2012-06 Dessau Tempelhofer Straße←Sportplatz Kreuzberge←Hauptbahnhof.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:23,760 Tempelhofer Straße 2 00:01:05,120 --> 00:01:29,880 Peterholzstraße 3 00:02:03,480 --> 00:02:29,360 Damaschkestraße 4 00:03...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:23,760\\nTempelhofer Straße\\n\\n2\\n00:01:05,120 --> 00:01:29,880\\nPeterholzstraße\\n\\n3\\n00:02:03,480 --> 00:02:29,360\\nDamaschkestraße\\n\\n4\\n00:03:04,000 --> 00:03:50,000\\nDessauer Verkehrsgesellschaft\\n\\n5\\n00:04:34,680 --> 00:05:04,760\\nFriedhof Ⅲ\\n\\n6\\n00:05:54,360 --> 00:06:13,560\\nAugustenstraße\\n\\n7\\n00:07:00,280 --> 00:07:36,840\\nKaufhalle am Kreuzberg\\n\\n8\\n00:08:26,000 --> 00:08:51,360\\nSportplatz Kreuzbergstraße\\n\\n9\\n00:09:02,360 --> 00:09:35,520\\nKaufhalle am Kreuzberg\\n\\n10\\n00:10:18,960 --> 00:10:39,560\\nAugustenstraße\\n\\n11\\n00:11:33,480 --> 00:11:50,400\\nKlughardtstraße\\n\\n12\\n00:12:26,440 --> 00:12:52,160\\nWasserwerkstraße\\n\\n13\\n00:13:29,720 --> 00:13:46,320\\nAm Alten Wasserturm\\n\\n14\\n00:14:15,160 --> 00:14:45,000\\nFriedhofstraße\\n\\n15\\n00:15:19,920 --> 00:15:40,240\\nDessau Center\\n\\n16\\n00:15:53,040 --> 00:16:19,600\\nMuseum Nord\\n\\n17\\n00:17:50,960 --> 00:18:16,960\\nHauptpost\\n\\n18\\n00:19:23,240 --> 00:19:41,000\\nTheater\\n\\n19\\n00:20:02,160 --> 00:20:41,640\\nHauptbahnhof',\n", + " 'bytes': 966,\n", + " 'sha1': '8l96rj5bkewrqrfzw0euhhflios78la',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 89013160,\n", + " 'timestamp': '2013-01-27T15:14:34Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 24264079,\n", + " 'title': '2012-06 Dessau Hbf→Wörlitz.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:02:08,840 Dessau Hbf 2 00:05:00,720 --> 00:05:40,320 Anschluss Fahrzeugtechnik 3 00:09:40,640 --> 00:10:05,120 Dessau-Waldersee 4 00:16...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:02:08,840\\nDessau Hbf\\n\\n2\\n00:05:00,720 --> 00:05:40,320\\nAnschluss Fahrzeugtechnik\\n\\n3\\n00:09:40,640 --> 00:10:05,120\\nDessau-Waldersee\\n\\n4\\n00:16:47,919 --> 00:17:27,040\\nDessau Adria\\n\\n5\\n00:19:28,640 --> 00:19:41,040\\nKapen Biosphärenreservat\\n\\n6\\n00:23:51,360 --> 00:28:07,720\\nOranienbaum (Anh)\\n\\n7\\n00:35:58,200 --> 00:36:41,520\\nWörlitz',\n", + " 'bytes': 349,\n", + " 'sha1': 'rro1w37xq8agafaj44bogiers0hmfpf',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 89037119,\n", + " 'timestamp': '2013-01-27T19:03:13Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 24273589,\n", + " 'title': '2012-06 Wörlitz→Dessau Hbf.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:01:45,640 Wörlitz 2 00:09:06,120 --> 00:13:38,280 Oranienbaum (Anh) 3 00:17:46,080 --> 00:18:44,160 Kapen Biosphärenreservat 4 00:20:...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:01:45,640\\nWörlitz\\n\\n2\\n00:09:06,120 --> 00:13:38,280\\nOranienbaum (Anh)\\n\\n3\\n00:17:46,080 --> 00:18:44,160\\nKapen Biosphärenreservat\\n\\n4\\n00:20:36,280 --> 00:21:21,840\\nDessau Adria\\n\\n5\\n00:27:40,160 --> 00:28:48,560\\nDessau-Waldersee\\n\\n6\\n00:32:34,880 --> 00:33:24,200\\nAnschluss Fahrzeugtechnik\\n\\n7\\n00:36:04,800 --> 00:37:31,240\\nDessau Hbf',\n", + " 'bytes': 349,\n", + " 'sha1': '1tapyrm4d6o2jqdxukroaennwi1eflu',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 112529340,\n", + " 'timestamp': '2013-12-25T08:05:42Z',\n", + " 'user': {'id': 365698, 'text': 'Whym'},\n", + " 'page': {'id': 24276078,\n", + " 'title': 'The Impact Of Wikipedia.webm.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'fix',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nウィキペディアは非営利でありながら\\u3000世界第5位のウェブサイトです\\nウィキペディアのすべての記事はボランティアによって執筆されています\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nそのボランティアを何人かご紹介します...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\n僕はネパール出身です\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nイラクです\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nインドです\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nニュージャージー州バイラムです\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nイギリスのバーミンガムに住んでいます\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nイリノイ州シカゴ -- ボリビア、ラパス -- ケニア、ナイロビ\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nマレーシア、クアラルンプール -- イタリア、ミラノ -- 南アフリカ\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nポーランド -- 日本 -- アルメニア\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nブラジル -- ロシア -- ボツワナ\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nイスラエル -- ウズベキスタン -- 香港\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nイスタンブール -- メキシコ\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nテネシー州チャタヌーガ\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\n2008年にウィキペディアに参加したばかりの頃\\n多くの記事を書き始めました\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nそのうちの1はマリアム・ノアという女性についてだったと思います\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nその女性についての記事はありませんでした\\nですから、これが私の最初の記事になったのです\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nそれからすっかり忘れてたの!\\n2年か3年経ってから\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nこの記事を見つけてびっくりしました\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\n10万人以上の人がこの記事を読んでくれたの\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nそれだけの人がこの記事を使い\\u3000この記事から情報を得たの\\nこの記事を見つけてくれたのよ\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nだからこの10万人以上の人に\\n影響を与えたって感じられるの\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nはじめて[編集]ボタンを押す時は\\nとっても怖かったわ\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\n「どうしよう。何もかもめちゃくちゃにしてしまう!\\nうまくは行かないわ!できない!」\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nウィキペディアは「オープンソース」だよね -- つまり誰もが自分のアイディアを掲載できる場所 \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nそこに別の人が登場して\\u3000そのアイディアを磨きあげ\\n優れたものにしてくれるんだ\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\n毎日\\u3000毎時\\u3000毎分\\u3000何千人もの人が関わって\\nウィキペディアをさらに向上させています\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nその多くがボランティアによって成り立っているんだ\\nとてもユニークなボランティア作業だよね\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\n好きな話題がある人達が\\nプロもアマチュアも関係なく1つにまとまるの\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\n最初は意見が違っても\\nじきに協力しあうようになるの\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nインターネットの大企業がやっていると思うような作業を\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\n僕のようなボランティアが取り組んでいるんだ\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\n「だから私が正しくて\\u3000あなたが間違っているのよ\\nこれは私の記事よ」とは言えないの\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\n偏見という問題があれば\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\n誰かがそれを警告しているはず\\nそうでなかったら\\u3000自分ができるのよ\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nとても多くの人が記事を読み\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\n訂正してくれます\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nそれでボタンを押したら\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nジャ~ン\\u3000旅の始まりよ\\u3000とっても良い気分だったわ\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\n「確率」について書き始めました \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\n最初に書いた記事は「確率」についてでした\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nウィキペディアのために執筆した主な記事の1つは \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\n刺し傷についてだったんだ\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\n僕が書いたのは\\u3000フライフィッシング\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nモンタナの歴史\\u3000国立公園の歴史\\u3000イエローストーン\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\n活用されていない穀物\\u3000チェスプレーヤー\\u3000生物多様性\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\n軍隊の歴史\\u3000アルメニアの歴史\\u3000ローマの歴史\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\n裁判官\\u3000コミュニケーション\\u3000人物紹介\\u3000サッカー\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nアイルランド\\u3000ペンシルベニア\\u3000主に写真\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nピンクフロイド\\u3000パンとお菓子を焼くこと\\u3000だって大好きだから\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\n核兵器と放射能\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\n急流でのカヤック\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\n世間にはあらゆる情報があるけれど\\nあちこちに散らばっているため\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nそれを1か所にまとめているんです\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nすべての人達に無料で知識を提供しているの \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nその知識を活用してもらうために\\nそれぞれの言語で\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nお金持ちであろうとなかろうと\\n誰もがこのサイトで助けられます\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\n営利目的の企業だったら動機も違うし\\n求められることも違います\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nウィキメディア財団から給料をもらっていません\\n経費さえも払い戻しを受けていません\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nはっきりと言えることが大切だと思うのですが\\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nいいですか\\u3000私が寄付を募っていても\\n自分のためのお金じゃないんです\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\n財団のための寄付をお願いしているんです\\n自分が所属するすばらしいコミュニティをサポートするためです\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nウィキペディアは世界に大きな違いを\\nもたらすチャンスを自分に与えてくれたの\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nあなたの未来\\u3000子供の未来への\\n投資のようなものね\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nありがとうございました\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nこの映像に含まれる内容は、別途記載がない限り、クリエイティブコモンズのAttribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0)に基づいて提供されています。この作業はウィキメディア財団のビクター・グリガスに帰属します。\\nこの映像で表現された見解と意見は、映像中の個人のものであって、必ずしも個人が所属する企業、組織、または機関のポリシーまたは位置付けを示すものではありません。\\nウィキメディア財団およびその他の組織の商標とロゴは、クリエイティブコモンズのライセンス条件の下では含まれていません。ウィキメディアの商標とロゴ、「ウィキペディア」、およびパズル状の地球儀のロゴは、ウィキメディア財団の登録商標です。詳細は、当財団のポリシーページ(http://www.wikimediafoundation.org/wiki/Trademark_Policy)をご覧いただくか、trademarks@wikimedia.orgまでご連絡ください。\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nこの映像はクリエイティブコモンズライセンスに基づいて発行されています。\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nウィキペディア同様、自由にコピー、リミックス、共有できます。',\n", + " 'bytes': 8357,\n", + " 'sha1': '3av3m3icrpfwjka8ppfpsry9kujmgee',\n", + " 'parent_id': 89596489,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 339055675,\n", + " 'timestamp': '2019-02-14T20:35:11Z',\n", + " 'user': {'id': 316682, 'text': 'Rzuwig'},\n", + " 'page': {'id': 24285361,\n", + " 'title': '¿Qué es Wikipedia?.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '\\ufeff1\\n00:00:04,250 --> 00:00:05,500\\nHello!\\n\\n2\\n00:00:05,650 --> 00:00:07,500\\nMy name is Mariana and I want to tell you about Wikipedia.\\n\\n3\\n00:00:07,840 --> 00:00:09,500\\nI bet you know and use it,\\n\\n4\\n00:00:09,750 --> 00:00:12,000\\nbut, do you really know what it is all about?...\\n\\n5\\n00:00:12,000 --> 00:00:13,000\\nAnd how it\\'s made?\\n\\n6\\n00:00:13,360 --> 00:00:16,050\\nAlthough it looks like a quirky encyclopedia\\n\\n7\\n00:00:16,300 --> 00:00:18,500\\nit pursues the same goal as traditional encyclopedias:\\n\\n8\\n00:00:18,750 --> 00:00:22,250\\n\"Bringing all the human knowledge together in a systematic way\".\\n\\n9\\n00:00:22,500 --> 00:00:25,800\\nHowever, Wikipedia has some other meaningful differences\\n\\n10\\n00:00:25,700 --> 00:00:27,750\\nto traditional encyclopedias.\\n\\n11\\n00:00:27,610 --> 00:00:28,400\\nFor instance,\\n\\n12\\n00:00:28,400 --> 00:00:31,250\\nit is developed by thousands of volunteers\\n\\n13\\n00:00:31,500 --> 00:00:35,500\\naimed at bringing knowledge to every single person in the planet,\\n\\n14\\n00:00:35,500 --> 00:00:36,600\\nin their own language.\\n\\n15\\n00:00:36,650 --> 00:00:37,840\\nHow is that achieved?\\n\\n16\\n00:00:37,850 --> 00:00:41,500\\nWhich are the rules that organise and guide \\'\\'wikipedians\\'\\'?\\n\\n17\\n00:00:41,750 --> 00:00:43,800\\nThat\\'s the subject of this video.\\n\\n18\\n00:00:49,000 --> 00:00:52,800\\nAnyone can add or correct Wikipedia content\\n\\n19\\n00:00:52,900 --> 00:00:55,800\\nbut one must acknowledge it\\'s still an encyclopedia.\\n\\n20\\n00:00:55,800 --> 00:00:59,455\\nSo neither original research nor essays are accepted here.\\n\\n21\\n00:00:59,455 --> 00:01:02,000\\nArticles must convey universal interest,\\n\\n22\\n00:01:02,000 --> 00:01:05,200\\nand ephemeral information should be avoided.\\n\\n23\\n00:01:05,200 --> 00:01:06,950\\nThat is the very first rule,\\n\\n24\\n00:01:06,950 --> 00:01:08,500\\nor just as \\'\\'wikipedians\\'\\' call it:\\n\\n25\\n00:01:08,500 --> 00:01:09,400\\nThe First Pillar\\n\\n26\\n00:01:09,400 --> 00:01:10,450\\nby which this encyclopedia works.\\n\\n27\\n00:01:13,100 --> 00:01:15,600\\nA number of volunteers write this encyclopedia.\\n\\n28\\n00:01:15,600 --> 00:01:18,200\\nPeople with distinct backgrounds,\\n\\n29\\n00:01:18,200 --> 00:01:19,100\\nvaried beliefs,\\n\\n30\\n00:01:19,100 --> 00:01:20,450\\ndifferent ideas.\\n\\n31\\n00:01:20,900 --> 00:01:24,900\\nWikipedia shall not assume as its own any particular point of view;\\n\\n32\\n00:01:25,150 --> 00:01:28,650\\nbut will try to cover information from all of the possible perspectives.\\n\\n33\\n00:01:28,900 --> 00:01:31,250\\nThat\\'s why the second pillar\\n\\n34\\n00:01:31,250 --> 00:01:33,250\\nis called: Neutral Point of View.\\n\\n35\\n00:01:35,000 --> 00:01:38,000\\nThe third pillar indicates that Wikipedia is free content.\\n\\n36\\n00:01:38,400 --> 00:01:41,100\\nTexts are available to be used, modified and distributed for any purpose,\\n\\n37\\n00:01:41,350 --> 00:01:43,400\\nas long as their source is properly attributed\\n\\n38\\n00:01:43,400 --> 00:01:46,100\\nand the same \"Creative Commons\" copyright license is kept.\\n\\n39\\n00:01:46,350 --> 00:01:49,600\\nLicensing may vary for images\\n\\n40\\n00:01:49,850 --> 00:01:52,600\\nbut copying and reuse is always allowed.\\n\\n41\\n00:01:53,300 --> 00:01:56,300\\nFor those cases, each particular license must be read\\n\\n42\\n00:01:56,300 --> 00:01:58,500\\nin order to understand relevant freedoms and duties.\\n\\n43\\n00:02:01,500 --> 00:02:04,300\\nSo much people interacting may create disputes.\\n\\n44\\n00:02:04,550 --> 00:02:08,650\\nHence the fourth pillar states that users should be respectful with each other,\\n\\n45\\n00:02:08,650 --> 00:02:10,200\\nand assume good faith.\\n\\n46\\n00:02:10,200 --> 00:02:13,900\\nTolerance and politeness are fundamental for the project.\\n\\n47\\n00:02:16,800 --> 00:02:19,500\\nWikipedia has no firm rules.\\n\\n48\\n00:02:19,750 --> 00:02:21,250\\nIt may seem odd,\\n\\n49\\n00:02:20,800 --> 00:02:23,300\\nbut this actually is the fifth pillar of this encyclopedia.\\n\\n50\\n00:02:23,320 --> 00:02:27,000\\nFor you to participate, only common sense is required\\n\\n51\\n00:02:27,000 --> 00:02:30,200\\nand respect to other wikipedians aboard this adventure.\\n\\n52\\n00:02:30,450 --> 00:02:32,500\\nAnyone can contribute something.\\n\\n53\\n00:02:32,750 --> 00:02:34,750\\nSome people develop entire complex articles\\n\\n54\\n00:02:34,750 --> 00:02:37,300\\nwhile some others fix tiny spelling mistakes.\\n\\n55\\n00:02:37,300 --> 00:02:40,000\\nYou can also help by creating, editing and correcting articles.\\n\\n56\\n00:02:41,000 --> 00:02:42,000\\nEditions are reversible,\\n\\n57\\n00:02:42,000 --> 00:02:46,250\\nso if you get something wrong it is always possible to go back to a prior version.\\n\\n58\\n00:02:46,300 --> 00:02:48,500\\nBe brave! Be a wikipedian!',\n", + " 'bytes': 4481,\n", + " 'sha1': 'av93l14al3vkp2kj0ck8u1xj3fg0mg4',\n", + " 'parent_id': 185685439,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 89167447,\n", + " 'timestamp': '2013-01-29T05:03:36Z',\n", + " 'user': {'id': 1296194, 'text': 'RayneVanDunem'},\n", + " 'page': {'id': 24306657,\n", + " 'title': 'Obama2009HRCSpeechPart1.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,767 --> 00:00:09,567 The President: To Joe Solmonese, who's doing an outstanding job on behalf of HRC. 1 00:00:09,567 --> 00:00:12,333 (applau...'\",\n", + " 'text': \"0\\n00:00:00,767 --> 00:00:09,567\\nThe President:\\nTo Joe Solmonese, who's doing\\nan outstanding job on behalf of HRC.\\n\\n1\\n00:00:09,567 --> 00:00:12,333\\n(applause)\\n\\n2\\n00:00:12,333 --> 00:00:14,600\\nTo my great friend and\\nsupporter, Terry Bean,\\n\\n3\\n00:00:14,600 --> 00:00:16,133\\nco-founder of HRC.\\n\\n4\\n00:00:16,133 --> 00:00:21,867\\n(applause)\\n\\n5\\n00:00:21,867 --> 00:00:23,700\\nRepresentative Patrick Kennedy.\\n\\n6\\n00:00:23,700 --> 00:00:27,333\\n(applause)\\n\\n7\\n00:00:27,333 --> 00:00:29,934\\nDavid Huebner, the\\nAmbassador-designee to New\\n\\n8\\n00:00:29,934 --> 00:00:31,433\\nZealand and Samoa.\\n\\n9\\n00:00:31,433 --> 00:00:35,133\\n(applause)\\n\\n10\\n00:00:35,133 --> 00:00:38,700\\nJohn Berry, our Director of\\nOPM, who's doing a great job.\\n\\n11\\n00:00:38,700 --> 00:00:42,467\\n(applause)\\n\\n12\\n00:00:42,467 --> 00:00:47,400\\nNancy Sutley, Chairman of\\nCouncil on Environmental Quality.\\n\\n13\\n00:00:47,400 --> 00:00:49,533\\n(applause)\\n\\n14\\n00:00:49,533 --> 00:00:52,700\\nFred Hochberg, Chairman\\nof Export-Import Bank.\\n\\n15\\n00:00:52,700 --> 00:00:54,033\\n(applause)\\n\\n16\\n00:00:54,033 --> 00:00:59,200\\nAnd my dear friend, Tipper\\nGore, who's in the house.\\n\\n17\\n00:00:59,200 --> 00:01:05,567\\n(applause)\\n\\n18\\n00:01:05,567 --> 00:01:09,767\\nThank you so much, all of you.\\n\\n19\\n00:01:09,767 --> 00:01:14,667\\nIt is a privilege to be here\\ntonight to open for Lady GaGa.\\n\\n20\\n00:01:14,667 --> 00:01:38,100\\n(applause, laughter,\\nand cheering)\\n\\n21\\n00:01:38,100 --> 00:01:39,900\\nI've made it.\\n\\n22\\n00:01:39,900 --> 00:01:48,033\\n(laughter)\\n\\n23\\n00:01:48,033 --> 00:01:52,867\\nI want to thank the Human Rights\\nCampaign for inviting me to\\n\\n24\\n00:01:52,867 --> 00:01:57,867\\nspeak and for the work you do\\nevery day in pursuit of equality\\n\\n25\\n00:01:57,867 --> 00:02:00,767\\non behalf of the millions of\\npeople in this country who work\\n\\n26\\n00:02:00,767 --> 00:02:04,400\\nhard in their jobs and care\\ndeeply about their families --\\n\\n27\\n00:02:04,400 --> 00:02:07,633\\nand who are gay, lesbian,\\nbisexual, or transgender.\\n\\n28\\n00:02:07,633 --> 00:02:16,667\\n(applause)\\n\\n29\\n00:02:16,667 --> 00:02:20,166\\nFor nearly 30 years, you've\\nadvocated on behalf of those\\n\\n30\\n00:02:20,166 --> 00:02:22,133\\nwithout a voice.\\n\\n31\\n00:02:22,133 --> 00:02:23,967\\nThat's not easy.\\n\\n32\\n00:02:23,967 --> 00:02:27,400\\nFor despite the real\\ngains that we've made,\\n\\n33\\n00:02:27,400 --> 00:02:31,934\\nthere's still laws to change and\\nthere's still hearts to open.\\n\\n34\\n00:02:31,934 --> 00:02:35,533\\nThere are still fellow\\ncitizens, perhaps neighbors,\\n\\n35\\n00:02:35,533 --> 00:02:39,734\\neven loved ones -- good\\nand decent people --\\n\\n36\\n00:02:39,734 --> 00:02:44,333\\nwho hold fast to outworn\\narguments and old attitudes;\\n\\n37\\n00:02:44,333 --> 00:02:48,700\\nwho fail to see your\\nfamilies like their families;\\n\\n38\\n00:02:48,700 --> 00:02:52,800\\nwho would deny you the rights\\nmost Americans take for granted.\\n\\n39\\n00:02:52,800 --> 00:02:55,166\\nAnd that's painful and\\nit's heartbreaking.\\n\\n40\\n00:02:55,166 --> 00:02:59,100\\n(applause)\\n\\n41\\n00:02:59,100 --> 00:03:02,967\\nAnd yet you continue, leading by\\nthe force of the arguments you\\n\\n42\\n00:03:02,967 --> 00:03:06,300\\nmake, and by the power of the\\nexample that you set in your own\\n\\n43\\n00:03:06,300 --> 00:03:09,667\\nlives -- as parents and friends, as PTA members and church\\n\\n44\\n00:03:09,667 --> 00:03:13,633\\nmembers, as advocates and leaders in your communities.\\n\\n45\\n00:03:13,633 --> 00:03:15,800\\nAnd you're making a difference.\\n\\n46\\n00:03:15,800 --> 00:03:20,500\\nThat's the story of the movement\\nfor fairness and equality,\\n\\n47\\n00:03:20,500 --> 00:03:22,200\\nand not just for\\nthose who are gay,\\n\\n48\\n00:03:22,200 --> 00:03:25,633\\nbut for all those in our history\\nwho've been denied the rights\\n\\n49\\n00:03:25,633 --> 00:03:27,600\\nand responsibilities\\nof citizenship --\\n\\n50\\n00:03:27,600 --> 00:03:37,266\\n(applause)\\n\\n51\\n00:03:37,266 --> 00:03:39,367\\n-- for all who've been told\\nthat the full blessings and\\n\\n52\\n00:03:39,367 --> 00:03:43,934\\nopportunities of this\\ncountry were closed to them.\\n\\n53\\n00:03:43,934 --> 00:03:46,734\\nIt's the story of progress\\nsought by those with little\\n\\n54\\n00:03:46,734 --> 00:03:51,266\\ninfluence or power; by men and\\nwomen who brought about change\\n\\n55\\n00:03:51,266 --> 00:03:54,333\\nthrough quiet, personal\\nacts of compassion --\\n\\n56\\n00:03:54,333 --> 00:03:58,800\\nand defiance -- wherever\\nand whenever they could.\\n\\n57\\n00:03:58,800 --> 00:04:01,000\\nIt's the story of the\\nStonewall protests,\\n\\n58\\n00:04:01,000 --> 00:04:02,266\\nwhen a group of citizens --\\n\\n59\\n00:04:02,266 --> 00:04:06,200\\n(applause)\\n\\n60\\n00:04:06,200 --> 00:04:07,867\\n-- when a group of\\ncitizens with few options,\\n\\n61\\n00:04:07,867 --> 00:04:10,467\\nand fewer supporters stood\\nup against discrimination and\\n\\n62\\n00:04:10,467 --> 00:04:13,166\\nhelped to inspire a movement.\\n\\n63\\n00:04:13,166 --> 00:04:16,633\\nIt's the story of an epidemic\\nthat decimated a community --\\n\\n64\\n00:04:16,633 --> 00:04:19,166\\nand the gay men and women who\\ncame to support one another and\\n\\n65\\n00:04:19,166 --> 00:04:23,333\\nsave one another; who continue\\nto fight this scourge;\\n\\n66\\n00:04:23,333 --> 00:04:26,333\\nand who have demonstrated before\\nthe world that different kinds\\n\\n67\\n00:04:26,333 --> 00:04:29,934\\nof families can show the same\\ncompassion in a time of need.\\n\\n68\\n00:04:29,934 --> 00:04:33,900\\n(applause)\\n\\n69\\n00:04:33,900 --> 00:04:36,133\\nAnd it's the story of the Human\\nRights Campaign and the fights\\n\\n70\\n00:04:36,133 --> 00:04:39,533\\nyou've fought for nearly\\n30 years: helping to elect\\n\\n71\\n00:04:39,533 --> 00:04:41,700\\ncandidates who\\nshare your values;\\n\\n72\\n00:04:41,700 --> 00:04:44,266\\nstanding against those who would\\nenshrine discrimination into our\\n\\n73\\n00:04:44,266 --> 00:04:47,734\\nConstitution; advocating on\\nbehalf of those living with\\n\\n74\\n00:04:47,734 --> 00:04:52,000\\nHIV/AIDS; and fighting for\\nprogress in our capital and\\n\\n75\\n00:04:52,000 --> 00:04:53,500\\nacross America.\\n\\n76\\n00:04:53,500 --> 00:04:57,500\\n(applause)\\n\\n77\\n00:04:57,500 --> 00:05:01,333\\nThis story, this\\nfight continue now.\\n\\n78\\n00:05:01,333 --> 00:05:06,200\\nAnd I'm here with a simple\\nmessage: I'm here with you in that fight.\\n\\n79\\n00:05:06,200 --> 00:05:42,166\\n(cheering and applause)\\n\\n80\\n00:05:42,166 --> 00:05:44,266\\nFor even as we face\\nextraordinary challenges as a\\n\\n81\\n00:05:44,266 --> 00:05:47,800\\nnation, we cannot --\\nand we will not --\\n\\n82\\n00:05:47,800 --> 00:05:50,934\\nput aside issues\\nof basic equality.\\n\\n83\\n00:05:50,934 --> 00:05:55,367\\nI greatly appreciate the support\\nI've received from many in this room.\\n\\n84\\n00:05:55,367 --> 00:06:00,934\\nI also appreciate that many of\\nyou don't believe progress has\\n\\n85\\n00:06:00,934 --> 00:06:02,700\\ncome fast enough.\\n\\n86\\n00:06:02,700 --> 00:06:08,767\\nI want to be honest about that,\\nbecause it's important to be\\n\\n87\\n00:06:08,767 --> 00:06:11,567\\nhonest among friends.\\n\\n88\\n00:06:11,567 --> 00:06:15,800\\nNow, I've said this before,\\nI'll repeat it again --\\n\\n89\\n00:06:15,800 --> 00:06:18,734\\nit's not for me to\\ntell you to be patient,\\n\\n90\\n00:06:18,734 --> 00:06:22,100\\nany more than it was for others\\nto counsel patience to African\\n\\n91\\n00:06:22,100 --> 00:06:25,367\\nAmericans petitioning for equal\\nrights half a century ago.\\n\\n92\\n00:06:25,367 --> 00:06:31,333\\n(applause)\\n\\n93\\n00:06:31,333 --> 00:06:36,433\\nBut I will say this: We have\\nmade progress and we will make more.\\n\\n94\\n00:06:36,433 --> 00:06:38,633\\nAnd I think it's important to\\nremember that there is not a\\n\\n95\\n00:06:38,633 --> 00:06:41,934\\nsingle issue that my\\nadministration deals with on a\\n\\n96\\n00:06:41,934 --> 00:06:47,834\\ndaily basis that does not\\ntouch on the lives of the LGBT community.\\n\\n97\\n00:06:47,834 --> 00:06:50,333\\n(applause)\\n\\n98\\n00:06:50,333 --> 00:06:53,400\\nWe all have a stake in\\nreviving this economy.\\n\\n99\\n00:06:53,400 --> 00:06:56,333\\nWe all have a stake in\\nputting people back to work.\\n\\n100\\n00:06:56,333 --> 00:06:58,500\\nWe all have a stake in improving\\nour schools and achieving\\n\\n101\\n00:06:58,500 --> 00:07:01,000\\nquality, affordable health care.\\n\\n102\\n00:07:01,000 --> 00:07:03,834\\nWe all have a stake in meeting\\nthe difficult challenges we face\\n\\n103\\n00:07:03,834 --> 00:07:05,934\\nin Iraq and Afghanistan.\\n\\n104\\n00:07:05,934 --> 00:07:08,967\\n(applause)\\n\\n105\\n00:07:08,967 --> 00:07:12,100\\nFor while some may wish to\\ndefine you solely by your sexual\\n\\n106\\n00:07:12,100 --> 00:07:14,800\\norientation or gender\\nidentity alone, you know --\\n\\n107\\n00:07:14,800 --> 00:07:18,467\\nand I know -- that none of us wants to be defined by just one\\n\\n108\\n00:07:18,467 --> 00:07:20,500\\npart of what makes us whole.\\n\\n109\\n00:07:20,500 --> 00:07:27,734\\n(applause)\\n\\n110\\n00:07:27,734 --> 00:07:31,333\\nYou're also parents worried\\nabout your children's futures.\\n\\n111\\n00:07:31,333 --> 00:07:35,934\\nYou're spouses who fear that you\\nor the person you love will lose a job.\\n\\n112\\n00:07:35,934 --> 00:07:39,633\\nYou're workers worried about the\\nrising cost of health insurance.\\n\\n113\\n00:07:39,633 --> 00:07:40,734\\nYou're soldiers.\\n\\n114\\n00:07:40,734 --> 00:07:41,900\\nYou are neighbors.\\n\\n115\\n00:07:41,900 --> 00:07:42,967\\nYou are friends.\\n\\n116\\n00:07:42,967 --> 00:07:45,433\\nAnd, most importantly, you are\\nAmericans who care deeply about\\n\\n117\\n00:07:45,433 --> 00:07:46,800\\nthis country and its future.\\n\\n118\\n00:07:46,800 --> 00:08:03,500\\n(cheering and applause)\\n\\n119\\n00:08:03,500 --> 00:08:07,400\\nSo I know you want me working on\\njobs and the economy and all the\\n\\n120\\n00:08:07,400 --> 00:08:09,367\\nother issues that\\nwe're dealing with.\\n\\n121\\n00:08:09,367 --> 00:08:12,633\\nBut my commitment to you is\\nunwavering even as we wrestle\\n\\n122\\n00:08:12,633 --> 00:08:14,667\\nwith these enormous problems.\\n\\n123\\n00:08:14,667 --> 00:08:18,166\\nAnd while progress may be taking\\nlonger than you'd like as a\\n\\n124\\n00:08:18,166 --> 00:08:22,133\\nresult of all that we face\\n-- and that's the truth --\\n\\n125\\n00:08:22,133 --> 00:08:25,633\\ndo not doubt the direction we\\nare heading and the destination\\n\\n126\\n00:08:25,633 --> 00:08:26,834\\nwe will reach.\\n\\n127\\n00:08:26,834 --> 00:08:35,500\\n(applause)\\n\\n128\\n00:08:35,500 --> 00:08:38,567\\nMy expectation is that when\\nyou look back on these years,\\n\\n129\\n00:08:38,567 --> 00:08:42,133\\nyou will see a time in which\\nwe put a stop to discrimination\\n\\n130\\n00:08:42,133 --> 00:08:45,600\\nagainst gays and lesbians -- whether in the office or on the battlefield.\\n\\n131\\n00:08:45,600 --> 00:08:52,000\\n(applause)\\n\\n132\\n00:08:52,000 --> 00:08:55,000\\nYou will see a time in which we\\nas a nation finally recognize\\n\\n133\\n00:08:55,000 --> 00:09:00,066\\nrelationships between two men\\nor two women as just as real and\\n\\n134\\n00:09:00,066 --> 00:09:02,600\\nadmirable as relationships\\nbetween a man and a woman.\\n\\n135\\n00:09:02,600 --> 00:09:30,433\\n(cheering and applause)\\n\\n136\\n00:09:30,433 --> 00:09:35,500\\nYou will see a nation that's\\nvaluing and cherishing these\\n\\n137\\n00:09:35,500 --> 00:09:39,734\\nfamilies as we build a\\nmore perfect union --\\n\\n138\\n00:09:39,734 --> 00:09:44,300\\na union in which gay Americans\\nare an important part.\\n\\n139\\n00:09:44,300 --> 00:09:46,333\\nI am committed to these goals.\\n\\n140\\n00:09:46,333 --> 00:09:49,934\\nAnd my administration will\\ncontinue fighting to achieve them.\\n\\n141\\n00:09:49,934 --> 00:09:52,700\\nAnd there's no more poignant\\nor painful reminder of how\\n\\n142\\n00:09:52,700 --> 00:09:58,467\\nimportant it is that we do so\\nthan the loss experienced by\\n\\n143\\n00:09:58,467 --> 00:10:02,400\\nDennis and Judy Shepard, whose\\nson Matthew was stolen in a\\n\\n144\\n00:10:02,400 --> 00:10:06,367\\nterrible act of\\nviolence 11 years ago.\\n\\n145\\n00:10:06,367 --> 00:10:09,867\\nIn May, I met with Judy -- who's here tonight with her husband --\\n\\n146\\n00:10:09,867 --> 00:10:13,567\\nI met her in the Oval Office,\\nand I promised her that we were\\n\\n147\\n00:10:13,567 --> 00:10:16,633\\ngoing to pass an inclusive\\nhate crimes bill --\\n\\n148\\n00:10:16,633 --> 00:10:18,166\\na bill named for her son.\\n\\n149\\n00:10:18,166 --> 00:10:19,033\\n(applause)\\n\\n150\\n00:10:19,033 --> 00:10:20,934\\nThis struggle has been long.\\n\\n151\\n00:10:20,934 --> 00:10:23,266\\nTime and again we\\nfaced opposition.\\n\\n152\\n00:10:23,266 --> 00:10:26,467\\nTime and again, the measure\\nwas defeated or delayed.\\n\\n153\\n00:10:26,467 --> 00:10:28,333\\nBut the Shepards never gave up.\\n\\n154\\n00:10:28,333 --> 00:10:29,700\\n(applause)\\n\\n155\\n00:10:29,700 --> 00:10:32,633\\nThey turned tragedy into\\nan unshakeable commitment.\\n\\n156\\n00:10:32,633 --> 00:10:33,800\\n(applause)\\n\\n157\\n00:10:33,800 --> 00:10:36,533\\nCountless activists and\\norganizers never gave up.\\n\\n158\\n00:10:36,533 --> 00:10:40,133\\nYou held vigils, you spoke\\nout, year after year,\\n\\n159\\n00:10:40,133 --> 00:10:42,000\\nCongress after Congress.\\n\\n160\\n00:10:42,000 --> 00:10:44,300\\nThe House passed the\\nbill again this week.\\n\\n161\\n00:10:44,300 --> 00:10:45,467\\n(applause)\\n\\n162\\n00:10:45,467 --> 00:10:48,100\\nAnd I can announce that\\nafter more than a decade,\\n\\n163\\n00:10:48,100 --> 00:10:51,066\\nthis bill is set to pass\\nand I will sign it into law.\\n\\n164\\n00:10:51,066 --> 00:11:23,967\\n(cheering and applause)\\n\\n165\\n00:11:23,967 --> 00:11:29,367\\nIt's a testament to the\\ndecade-long struggle of Judy and\\n\\n166\\n00:11:29,367 --> 00:11:35,233\\nDennis, who tonight will receive\\na tribute named for somebody who\\n\\n167\\n00:11:35,233 --> 00:11:40,367\\ninspired so many of us --\\nnamed for Senator Ted Kennedy,\\n\\n168\\n00:11:40,367 --> 00:11:42,934\\nwho fought tirelessly\\nfor this legislation.\\n\\n169\\n00:11:42,934 --> 00:11:45,533\\n(applause)\\n\\n170\\n00:11:45,533 --> 00:11:47,934\\nAnd it's a testament to the\\nHuman Rights Campaign and those\\n\\n171\\n00:11:47,934 --> 00:11:50,500\\nwho organized and advocated.\\n\\n172\\n00:11:50,500 --> 00:11:52,834\\nAnd it's a testament to Matthew\\nand to others who've been the\\n\\n173\\n00:11:52,834 --> 00:11:56,667\\nvictims of attacks not\\njust meant to break bones,\\n\\n174\\n00:11:56,667 --> 00:11:59,767\\nbut to break spirits -- not meant just to inflict harm,\\n\\n175\\n00:11:59,767 --> 00:12:02,066\\nbut to instill fear.\\n\\n176\\n00:12:02,066 --> 00:12:04,734\\nTogether, we will have moved\\ncloser to that day when no one\\n\\n177\\n00:12:04,734 --> 00:12:07,300\\nhas to be afraid to\\nbe gay in America.\\n\\n178\\n00:12:07,300 --> 00:12:15,367\\n(applause)\\n\\n179\\n00:12:15,367 --> 00:12:18,133\\nWhen no one has to fear walking\\ndown the street holding the hand\\n\\n180\\n00:12:18,133 --> 00:12:20,066\\nof the person they love.\\n\\n181\\n00:12:20,066 --> 00:12:23,367\\n(applause)\\n\\n182\\n00:12:23,367 --> 00:12:26,467\\nBut we know there's\\nfar more work to do.\\n\\n183\\n00:12:26,467 --> 00:12:29,066\\nWe're pushing hard to\\npass an inclusive employee\\n\\n184\\n00:12:29,066 --> 00:12:30,667\\nnon-discrimination bill.\\n\\n185\\n00:12:30,667 --> 00:12:36,900\\n(applause)\\n\\n186\\n00:12:36,900 --> 00:12:39,333\\nFor the first time ever,\\nan administration official\\n\\n187\\n00:12:39,333 --> 00:12:42,266\\ntestified in Congress\\nin favor of this law.\\n\\n188\\n00:12:42,266 --> 00:12:44,834\\nNobody in America should be\\nfired because they're gay,\\n\\n189\\n00:12:44,834 --> 00:12:48,467\\ndespite doing a great job and\\nmeeting their responsibilities.\\n\\n190\\n00:12:48,467 --> 00:12:49,567\\nIt's not fair.\\n\\n191\\n00:12:49,567 --> 00:12:50,734\\nIt's not right.\\n\\n192\\n00:12:50,734 --> 00:12:52,033\\nWe're going to put a stop to it.\\n\\n193\\n00:12:52,033 --> 00:13:00,900\\n(applause)\\n\\n194\\n00:13:00,900 --> 00:13:03,633\\nAnd it's for this reason that if\\nany of my nominees are attacked\\n\\n195\\n00:13:03,633 --> 00:13:05,834\\nnot for what they believe\\nbut for who they are,\\n\\n196\\n00:13:05,834 --> 00:13:08,667\\nI will not waver in my support,\\nbecause I will not waver in my\\n\\n197\\n00:13:08,667 --> 00:13:11,633\\ncommitment to ending\\ndiscrimination in all its forms.\\n\\n198\\n00:13:11,633 --> 00:13:21,300\\n(applause)\",\n", + " 'bytes': 15884,\n", + " 'sha1': 'mcm9a94qnj2p2j1j1x0q1exfxfmcnxz',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 142192424,\n", + " 'timestamp': '2014-12-11T00:04:51Z',\n", + " 'user': {'id': 1297740, 'text': 'Snævar'},\n", + " 'page': {'id': 24363179,\n", + " 'title': 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv.is.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:08,860 --> 00:00:11,674\\nWikiheimild er stafrænt bókasafn á netinu\\n\\n2\\n00:00:11,698 --> 00:00:14,610\\nsem safnar saman textum á hvaða tungumáli sem er\\n\\n3\\n00:00:14,631 --> 00:00:18,947\\nsvo framalega sem þau eru fallin úr höfundarétti eða eru undir frjálsu leyfi.\\n\\n4\\n00:00:19,057 --> 00:00:21,556\\nEins og öll verkefni Wikimedia stofnunarinnar,\\n\\n5\\n00:00:21,607 --> 00:00:24,997\\ner Wikiheimild verkefni þar sem hverjir sem er geta unnið saman,\\n\\n6\\n00:00:25,039 --> 00:00:27,126\\nmeira að segja nafnlaust.\\n\\n7\\n00:00:27,918 --> 00:00:31,750\\nÁ Wikiheimild eru textar eftirritaðir frá útgefinni heimild\\n\\n8\\n00:00:31,764 --> 00:00:34,695\\nog sniðnir til að auðvelda lestur.\\n\\n9\\n00:00:34,815 --> 00:00:38,255\\nSkáldsögur og smásögur, ritgerðir og handbækur,\\n\\n10\\n00:00:38,299 --> 00:00:43,289\\nsálmabækur og stjórnmálaleg veggspjöld, þjóðlög og ljóð,\\n\\n11\\n00:00:43,336 --> 00:00:47,899\\nævintýri og barnagælur, lögfræðileg skjöl og vísindaleg verk\\n\\n12\\n00:00:47,959 --> 00:00:50,565\\nritgerðir og fræðigreinar svo framalega að þau voru þegar varin\\n\\n13\\n00:00:50,596 --> 00:00:53,132\\nhjá menntastofnun.\\n\\n14\\n00:00:53,286 --> 00:00:57,167\\nEins og Wikipedia, er verkefninu skipt niður í mismunandi tungumál:\\n\\n15\\n00:00:57,252 --> 00:01:00,502\\nÁ ensku útgáfu Wikiheimildar þarft þú að skrifa texta á ensku, \\n\\n16\\n00:01:00,563 --> 00:01:04,436\\ná frönsku útgáfunni þarft þú að skrifa texta á frönsku og svo framvegis...\\n\\n17\\n00:01:04,564 --> 00:01:06,930\\nTextum er safnað saman á öllum tungumálum\\n\\n18\\n00:01:06,995 --> 00:01:09,373\\nmeiraðsegja þem sem hafa fáa málhafa og á mállýskum,\\n\\n19\\n00:01:09,425 --> 00:01:12,455\\nef þeir hafa verið útgefnir og eftirritaðir frjálst.\\n\\n20\\n00:01:12,546 --> 00:01:15,058\\nÞessi skilyrði eiga við þýðingar,\\n\\n21\\n00:01:15,094 --> 00:01:18,599\\nsem eru afleidd verk. Þessvegna má ekki innifela\\n\\n22\\n00:01:18,649 --> 00:01:22,314\\nþýdda texta sem ekki er búið að gefa út. Bæði textinn og þýðingin\\n\\n23\\n00:01:22,340 --> 00:01:26,855\\nverður að vera í almenningi eða útgefin undir frjálsu leyfi.\\n\\n24\\n00:01:27,653 --> 00:01:30,714\\nHvern texta þarf að afrita til Wikiheimildar\\n\\n25\\n00:01:30,792 --> 00:01:33,903\\nog nota hann sem grunn að afleiddum verkum,\\n\\n26\\n00:01:33,947 --> 00:01:35,947\\nlíka í hagnaðarskyni.\\n\\n27\\n00:01:36,049 --> 00:01:38,521\\nÞað þarf því að hafa verið dreift með leyfi\\n\\n28\\n00:01:38,571 --> 00:01:41,952\\nsem sviptir\\n\\n29\\n00:01:42,020 --> 00:01:45,091\\nhöfundarétti verksins, bæði í Bandaríkjunum,\\n\\n30\\n00:01:45,121 --> 00:01:47,295\\nþar sem Wikisource vefþjónninn er,\\n\\n31\\n00:01:47,344 --> 00:01:50,206\\nog í landinu þar sem textinn var útgefinn.\\n\\n32\\n00:01:51,271 --> 00:01:54,115\\nEins og er, samkvæmt Bandarískum lögum,\\n\\n33\\n00:01:54,196 --> 00:01:56,372\\neru verk sannarlega í almenningi\\n\\n34\\n00:01:56,443 --> 00:01:59,539\\nef þau voru útgefin fyrir 1923.\\n\\n35\\n00:01:59,745 --> 00:02:03,243\\nÁ Ítalíu er verkið höfundaréttarvarið\\n\\n36\\n00:02:03,271 --> 00:02:06,128\\nþangað til 70 ár hafa liðið frá andláti höfundar.\\n\\n37\\n00:02:06,221 --> 00:02:09,314 Texti getur því verið í almenningi á Ítalíu\\n\\n38\\n00:02:09,348 --> 00:02:12,666\\nen ekki í Bandaríkjunum og öfugt.\\n\\n39\\n00:02:12,772 --> 00:02:16,358\\nTexta samtímans má eingöngu bæta við á Wikiheimild\\n\\n40\\n00:02:16,424 --> 00:02:19,124\\nef höfundurinn hefur sérstaklega leyft\\n\\n41\\n00:02:19,166 --> 00:02:22,406\\nalla notkun á verkinu, þar á meðal notkun í hagnaðarskyni.\\n\\n42\\n00:02:22,576 --> 00:02:25,000\\nHöfundurinn má krefja\\n\\n43\\n00:02:25,048 --> 00:02:27,961\\naðra um leyfi til eftirgerðar.\\n\\n44\\n00:02:28,023 --> 00:02:31,482\\nÁ wikiheimild, ætti hver sem er að geta endurskoðað textann\\n\\n45\\n00:02:31,549 --> 00:02:33,549\\nog þessvegna er notuð\\n\\n46\\n00:02:33,622 --> 00:02:36,425\\nskönnun af allri bókinni.\\n\\n47\\n00:02:36,496 --> 00:02:40,065\\nÞegar textar eru eftirritaðir annarstaðar er nauðsynlegt að treysta\\n\\n48\\n00:02:40,148 --> 00:02:44,873\\naðeins áreiðanlegum heimildum og innifela nákvæmar tilvísanir.\\n\\n49\\n00:02:45,478 --> 00:02:48,645\\nNotendur wikiheimildar eru skrifarar stafrænnu aldarinnar\\n\\n50\\n00:02:48,662 --> 00:02:50,839\\nsem útfrá áhuga eða umhyggju\\n\\n51\\n00:02:50,856 --> 00:02:53,207\\nskrifa texta sem eru frjálsir og aðgengilegir.\\n\\n52\\n00:02:53,272 --> 00:02:55,910\\nHvern og einn texta þarf að skrá nákvæmlega,\\n\\n53\\n00:02:55,942 --> 00:02:58,574\\nhalda ritvenjum þess tíma\\n\\n54\\n00:02:58,630 --> 00:03:02,413\\nog venjum samfélagsins.\\n\\n55\\n00:03:03,187 --> 00:03:05,604\\nFerlið í kringum skrifun hefst\\n\\n56\\n00:03:05,622 --> 00:03:07,622\\nmeð stofnun \"frumrits\" síðu,\\n\\n57\\n00:03:07,669 --> 00:03:09,900\\nsem sækir skönnuðu bókina frá Commons, \\n\\n58\\n00:03:09,969 --> 00:03:14,026\\nsysturverkefni Wikiheimildar sem safnar frjálsum margmiðlunarskrám.\\n\\n59\\n00:03:14,311 --> 00:03:17,069\\nTenglarnir á hverja einustu síðu\\n\\n60\\n00:03:17,138 --> 00:03:19,234\\nbókarinnar eru búnir til sjálfvirkt.\\n\\n61\\n00:03:19,339 --> 00:03:22,100\\nMeð því að smella á tengil er hægt að sjá\\n\\n62\\n00:03:22,163 --> 00:03:24,260\\nskönnuðu síðuna og hinum megin\\n\\n63\\n00:03:24,305 --> 00:03:27,124\\nbox þar sem eftirritið er skrifað.\\n\\n64\\n00:03:27,235 --> 00:03:30,104\\nOft er ekki nauðsynlegt að eftirrita textann frá grunni, \\n\\n65\\n00:03:30,147 --> 00:03:33,186\\nþví skannaða síðan er þegar unninn af hugbúnaði\\n\\n66\\n00:03:33,217 --> 00:03:35,725\\nsem greinir sjálfkrafa bókstafi.\\n\\n67\\n00:03:35,850 --> 00:03:38,507\\nGrafísk uppsetning síðnana er samræmd\\n\\n68\\n00:03:38,570 --> 00:03:41,442\\nmeð sniðum sem raða sjálfkrafa\\n\\n69\\n00:03:41,483 --> 00:03:45,252\\nformum eða endurteknum hlutum síðnanna eða textanna.\\n\\n70\\n00:03:45,514 --> 00:03:48,625\\nÞegar eftirritun allra blaðsíðanna er lokið,\\n\\n71\\n00:03:48,654 --> 00:03:51,859\\ner textinn settur saman eftir skiptingu hans\\n\\n72\\n00:03:51,934 --> 00:03:54,145\\n(til dæmis eftir köflum).\\n\\n73\\n00:03:54,252 --> 00:03:57,051\\nStílsniðni textinn er því samræmdur\\n\\n74\\n00:03:57,082 --> 00:03:59,340\\nmeð þeirri uppbyggingu sem höfundurinn vill, \\n\\n75\\n00:03:59,378 --> 00:04:02,782\\nen einnig aðlagaður að sjálestri og prentun.\\n\\n76\\n00:04:03,619 --> 00:04:06,646\\nEins og Wikipedia er Wikiheimild byggð á hugbúnaði\\n\\n77\\n00:04:06,707 --> 00:04:09,448\\nsem leyfir að búa til tengla, \\n\\n78\\n00:04:09,479 --> 00:04:12,829\\nsem tengja bækur og höfunda bókasafnsins saman.\\n\\n79\\n00:04:12,882 --> 00:04:15,725\\nTil dæmis, getur tilvitnun (eða útdráttur úr ritgerð) \\n\\n80\\n00:04:15,759 --> 00:04:18,712\\ntengt í höfundinn eða tilvísaða textans.\\n\\n81\\n00:04:19,493 --> 00:04:22,952\\nFyrir neðan hvern texta eru tenglar á flokka\\n\\n82\\n00:04:23,000 --> 00:04:25,461\\nsem hjálpa að raða bækum og höfundum\\n\\n83\\n00:04:25,475 --> 00:04:27,951\\neftir gerð, uppruna og svo framvegis.\\n\\n84\\n00:04:28,056 --> 00:04:30,511\\nÞar að auki, getur hver texti tengst\\n\\n85\\n00:04:30,549 --> 00:04:32,742\\nþýðingum síðum á öðrum wikiheimildum, \\n\\n86\\n00:04:32,798 --> 00:04:34,798\\ngrein hennar á Wikipedia\\n\\n87\\n00:04:34,819 --> 00:04:37,186\\neða hvaða Wikimedia verkefni sem er.\\n\\n88\\n00:04:37,469 --> 00:04:40,687\\nHver höfundur sem hefur útgefin verk á Wikiheimild\\n\\n89\\n00:04:40,749 --> 00:04:44,586\\nhefur sérstaka síðu, sem inniheldur grunnupplýsingar\\n\\n90\\n00:04:44,640 --> 00:04:47,616\\nlista yfir texta sem til eru\\n\\n91\\n00:04:47,640 --> 00:04:49,640\\nog aðrar upplýsingar sem skipta máli, \\n\\n92\\n00:04:49,696 --> 00:04:53,502\\neins og verk þar sem er tilvitnun í höfundinn.\\n\\n93\\n00:04:53,780 --> 00:04:57,355\\nHérna eru einnig tenglar á síður um höfundinn\\n\\n94\\n00:04:57,410 --> 00:05:02,153\\ná öðrum Wikimedia verkefnum og öðrum tungumálum.\\n\\n95\\n00:05:02,333 --> 00:05:06,430\\nAð lokum minnumst við á gáttirnar sem hjálpa notendum\\n\\n96\\n00:05:06,470 --> 00:05:09,616\\ní gegnum útgefna texta um ákveðið efni.\\n\\n97\\n00:05:11,060 --> 00:05:14,525\\nÁ wikiheimild, eins og á Wikipedia, höfum við möppudýr, \\n\\n98\\n00:05:14,602 --> 00:05:17,541\\nsérfræðinga sem treyst er af samfélaginu\\n\\n99\\n00:05:17,567 --> 00:05:19,567\\nog hafa aðgang að \\n\\n100\\n00:05:19,622 --> 00:05:22,126\\nnokkrum möguleikum hugbúnaðarins.\\n\\n101\\n00:05:22,168 --> 00:05:25,461\\nMeð reynslu sinni, eru þeir eins og bókasafnsverðir\\n\\n102\\n00:05:25,500 --> 00:05:27,799\\nsem leiðbeina öðrum notendum.\\n\\n103\\n00:05:28,693 --> 00:05:31,682\\nUmræðuvettvangur Wikiheimildar er Potturinn, \\n\\n104\\n00:05:31,693 --> 00:05:34,385\\nþar sem við getum spurt spurninga til reyndari notenda\\n\\n105\\n00:05:34,413 --> 00:05:36,694\\nog byrjað nýjar umræður.\\n\\n106\\n00:05:36,784 --> 00:05:39,678\\nTil að fara best með ákveðin efni\\n\\n107\\n00:05:39,748 --> 00:05:42,992\\neru sérstakar síður: þema síður.\\n\\n108\\n00:05:43,046 --> 00:05:45,046\\nÁ ítölsku útgáfu wikisource \\n\\n109\\n00:05:45,119 --> 00:05:47,784\\neru þau hjartað í virkni verkefnisins og samkomustaður\\n\\n110\\n00:05:47,822 --> 00:05:51,135\\nfyrir þá notendur sem eru áhugasamir um ákveðið efni.\\n\\n111\\n00:05:51,434 --> 00:05:54,070\\nTil að sýna framför í yfirferð\\n\\n112\\n00:05:54,102 --> 00:05:56,402\\nákveðins texta eða hluta hans\\n\\n113\\n00:05:56,437 --> 00:05:59,859\\ner 5 þrepa kerfi notað.\\n\\n114\\n00:06:00,137 --> 00:06:02,347\\nÞegar textinn er tilbúinn í hverju þrepi, \\n\\n115\\n00:06:02,385 --> 00:06:05,805\\nmeð réttan stíl og yfirfrarinn af tveimur eða fleiri notendum\\n\\n116\\n00:06:05,874 --> 00:06:08,890\\nsem bera hana saman við upprunalegu útgáfuna á prenti, þá fær hann stjörnu,\\n\\n117\\n00:06:08,944 --> 00:06:12,526\\nsem gerir hann að \"Wikisource útgáfu\" texta.\\n\\n118\\n00:06:12,731 --> 00:06:15,311\\nTill að beina orku margra notenda, \\n\\n119\\n00:06:15,346 --> 00:06:17,850\\neinn eða fleiri textar eru valdir í hverjum mánuði \\n\\n120\\n00:06:17,892 --> 00:06:20,521\\ntil að vera yfirfarnir og endurskoðaðir saman. \\n\\n121\\n00:06:21,242 --> 00:06:23,416\\nMeð Wikisource getur þú sýnt \\n\\n122\\n00:06:23,455 --> 00:06:25,843\\nást þína fyrir bókunum, bjargað þeim frá glötun \\n\\n123\\n00:06:25,861 --> 00:06:28,776\\nog gert þær aðgengilegar fyrir alla á netinu. \\n\\n124\\n00:06:29,140 --> 00:06:31,140\\nTaktu þátt í wikisource \\n\\n125\\n00:06:31,161 --> 00:06:34,216\\nog byggðu frjálst bókasafn.',\n", + " 'bytes': 10138,\n", + " 'sha1': 'ihshi9g14gddyw7crzgrxpie7gpvln3',\n", + " 'parent_id': 89415426,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90100531,\n", + " 'timestamp': '2013-02-08T07:50:30Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 24382555,\n", + " 'title': 'Mud and Sand-silent 0to508.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'fix?',\n", + " 'text': \"1\\n00:00:01,000 --> 00:00:18,000\\n[title cards]\\n\\n2\\n00:07:38,000 --> 00:07:43,000\\nMama dear - poor Sap got his today!\\n\\n3\\n00:07:44,000 --> 00:07:51,000\\nHe's lucky! When do I get mine?\\n\\n4\\n00:07:57,000 --> 00:08:02,000\\nI won it at the bullfight - and you shall have half!\\n\\n5\\n00:08:21,000 --> 00:08:24,000\\nThat will keep you in tomatoes and garlic - for two years!\\n\\n6\\n00:08:31,000 --> 00:08:37,000\\nVaseline's little victory wins him an offer to fight the bulls of Madrid - and that night --\",\n", + " 'bytes': 483,\n", + " 'sha1': '6rc5slja2cb0qp8xgpxffig4bgkpqod',\n", + " 'parent_id': 89510076,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 114530861,\n", + " 'timestamp': '2014-01-23T09:45:35Z',\n", + " 'user': {'id': 2708182, 'text': 'Zhuyifei1999'},\n", + " 'page': {'id': 24382608,\n", + " 'title': 'Mud and Sand-508toendnok.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'rm cat',\n", + " 'text': \"1\\n09:47,000 --> 09:52,000\\nRhubarb - they tell me in Madrid they ''drink'' a great deal - will ''you drink'' anything?\\n\\n2\\n09:55,000 --> 09:57,000\\nAnything!!!\\n\\n3\\n10:28,000 --> 10:34,000\\nCaramel be readt at snrise! We will be married - and leave on the 5:15 -\\n\\n4\\n10:40,000 --> 10:46,000\\nDarling, I am going away to Madrid - but nothing shall ever part us - \\n\\n5\\n11:00,000 --> 11:03,000\\nend of scene with Caramel and Sapo\\n\\n6\\n11:05,000 --> 11:13,000\\nAfter throwing the bull for two years - Valesine becomes the idol of Spain --\\n\\n7\\n11:48,000 --> 11:54,000\\nThe Caf⃩䔀猀瀀愀\\uf100ola - a famous rendezvous for picadors, toreadors, matadors, Floradors, Commodores and - cuspidors.\\n\\n8\\n11:56,000 --> 11:59,000\\nFilet de Sola - who could put her fins around any poor fish in Spain -\",\n", + " 'bytes': 779,\n", + " 'sha1': 'g67s5uby6t9dbi539rwbds5dkoay8h0',\n", + " 'parent_id': 114530815,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 256678129,\n", + " 'timestamp': '2017-08-29T01:56:01Z',\n", + " 'user': {'id': 1041915, 'text': 'Pmj'},\n", + " 'page': {'id': 24400846,\n", + " 'title': 'Hubble Goes to the eXtreme to Assemble Farthest Ever View of the Universe.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'minor fixes',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:04,800\\nLooking deep into the universe is like taking a trip down memory lane:\\n\\n2\\n00:00:04,900 --> 00:00:08,100\\nthe farther from Earth we look, the farther back in time we see.\\n\\n3\\n00:00:08,200 --> 00:00:13,100\\nStarlight from the remote past is just arriving at Earth now.\\n\\n4\\n00:00:13,200 --> 00:00:18,100\\nTelescopes are time machines for exploring what happened billions of years ago.\\n\\n5\\n00:00:18,200 --> 00:00:22,900\\nBut before the Hubble Space Telescope we could only see so far.\\n\\n6\\n00:00:23,000 --> 00:00:32,000\\nWe had a view of that galaxies where out there a few billions years back, but we didn't know if they went all the way back to the very earliest epochs in the universe.\\n\\n7\\n00:00:32,100 --> 00:00:35,900\\nThat all changed when Hubble got on the job.\\n\\n8\\n00:00:36,00 --> 00:00:43,100\\nIn 2003 astronomers used Hubble to look back in time to within a billion years after the Big Bang.\\n\\n9\\n00:00:43,500 --> 00:00:50,500\\nThis was ''the'' first time we were able to explore an age of the universe we could only dream of before.\\n\\n10\\n00:00:51,000 --> 00:00:55,400\\nThe image was called the Ultra Deep Field, and ''that'' changed everything.\\n\\n11\\n00:00:55,500 --> 00:01:02,700\\nWe saw things that were much farther away than any previous observations had show us\\n\\n12\\n00:01:02,750 --> 00:01:11,200\\nand also we were looking back when the universe was less than a billion years old, and being able to find objects that existed at that time.\\n\\n13\\n00:01:14,700 --> 00:01:22,300\\nBut when the Hubble was serviced for the last time in 2009, scientists saw a way to expand our vision of the universe even further,\\n\\n14\\n00:01:22,400 --> 00:01:25,700\\nby using the new infra red camera.\\n\\n15\\n00:01:26,000 --> 00:01:32,900\\nWe could push out to earlier times, we could find even more distant objects than we'd ever been able to do before.\\n\\n16\\n00:01:33,000 --> 00:01:36,200\\nThat new research...\\n\\n17\\n00:01:37,200 --> 00:01:40,800\\n...combined with the Ultra Deep Field's use of visible light...\\n\\n18\\n00:01:42,800 --> 00:01:45,800\\n... is now called the Extreme Deep Field.\\n\\n19\\n00:01:45,900 --> 00:01:50,700\\nWe can't see the first galaxies, but this has put us on the fringes of that time\\n\\n20\\n00:01:50,800 --> 00:01:57,800\\nand so we've been focusing in now, on when the first galaxies formed.\\n\\n21\\n00:01:57,900 --> 00:02:06,400\\nAs revealing as the Extreme Deep Field is, it's only a preview of what lies ahead.\\n\\n22\\n00:02:06,500 --> 00:02:13,800\\nWe need to take a giant leap forward, and that's what James Webb Space Telescope will do. It's a hundred times what Hubble can do\\n\\n23\\n00:02:13,900 --> 00:02:22,500\\nso when that flies, in minutes or hours it can do what we've done on Hubble that would have taken weeks, months... It's incredible.\\n\\n24\\n00:02:22,700 --> 00:02:30,500\\nWhat's also incredible is the realization that this small slice of the universe is just that: a slice.\\n\\n25\\n00:02:31,000 --> 00:02:36,500\\nMultiply this by 30 million, and you get an idea of just how many galaxies are out there.\\n\\n26\\n00:02:37,000 --> 00:02:42,000\\nFrom the Space Telescope Science Institute in Baltimore, Maryland, I'm Mary Estacion.\",\n", + " 'bytes': 3118,\n", + " 'sha1': 'ln3yaucpyd6lip996u6vc4zuewf6eee',\n", + " 'parent_id': 93418532,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 89704322,\n", + " 'timestamp': '2013-02-03T14:09:20Z',\n", + " 'user': {'text': '90.18.176.195'},\n", + " 'page': {'id': 24425077,\n", + " 'title': 'Synapsis.theora.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,029 --> 00:00:07,031 Au départ le message nerveux arrive jusque l'extrémité du neurone où se situent les vésicules. 2 00:00:013,033 --> 00:00:2...'\",\n", + " 'text': \"1\\n00:00:03,029 --> 00:00:07,031\\nAu départ le message nerveux arrive jusque l'extrémité du neurone où se situent les vésicules.\\n\\n2\\n00:00:013,033 --> 00:00:20,586\\nCelles-ci libèrent des neuro-transmetteurs (acétylcholine dans ce cas): le message electrique est converti en message chimique\\n\\n3\\n00:00:24,005 --> 00:00:28,375\\nL'acétylcholine vient se fixer sur les récepteurs post-synaptiques\\n\\n4\\n00:00:33,377 --> 00:00:39,593\\nCe qui ouvre des canaux où s'engouffrent les ions Calcium\\n\\n\\n5\\n00:00:40,298 --> 00:00:43,933\\nLe message nerveux est passé.\\n\\n6\\n00:00:45,895 --> 00:00:54,978\\nLes neuro-transmetteurs se détachent des recepteurs et reviennent dans leur vésicule.\\n\\n7\\n00:00:55,298 --> 00:00:59,933\\nSous-titre par Gauthier D.\",\n", + " 'bytes': 734,\n", + " 'sha1': 'efxgoa7s5u7uvpl03em9tc77584yoz7',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 89716326,\n", + " 'timestamp': '2013-02-03T16:34:43Z',\n", + " 'user': {'id': 1709634, 'text': 'VikipediBilgini'},\n", + " 'page': {'id': 24427397,\n", + " 'title': 'WEB Clip.webm.tr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with ' 1 00:00:02,2 --> 00:00:05,95 Zamanları ne olursa olsun, insanlık tarihi için kritik bir zaman 2 00:00:05,966 --> 00:00:07,666 olduğu sonucuna hemen hemen...'\",\n", + " 'text': \"\\n1\\n00:00:02,2 --> 00:00:05,95\\nZamanları ne olursa olsun, insanlık tarihi için kritik bir zaman \\n\\n2\\n00:00:05,966 --> 00:00:07,666\\nolduğu sonucuna hemen hemen herkes varır, \\n\\n3\\n00:00:07,708 --> 00:00:10,206\\nbundan dolayı mutlak bir argüman satın alır mıydım emin değilim, \\n\\n4\\n00:00:11,245 --> 00:00:15,132\\nfakat insanların bilgisayar merkezli bilgiye erişim \\n\\n5\\n00:00:15,132 --> 00:00:18,590\\nşartları için bir dönüm noktasında olduğumuzu söylemek makuldür diye düşünüyorum. \\n\\n6\\n00:00:18,9 --> 00:00:22,6\\nİlkinde, dünyanın her köşesinden insanlar \\n\\n7\\n00:00:22,651 --> 00:00:24,675\\nbirbirleri ile direkt konuşabilmek \\n\\n8\\n00:00:24,675 --> 00:00:26,675\\niçin bir araya geldiler.\\n\\n9\\n00:00:28,903 --> 00:00:31,174\\n[kuş cıvıltıları] ♫\\n\\n10\\n00:00:34,576 --> 00:00:43,225\\n[Lidia] [şarkı söylüyor]\\n\\n11\\n00:00:43,225 --> 00:00:45,148\\nİşte, hayat güzel.\\n\\n12\\n00:00:45,979 --> 00:00:49,049\\nGüzel; çünkü ağaçlar var...\\n\\n13\\n00:00:49,049 --> 00:00:52,675\\nve ağaçlar sizi Güneş'ten korur.\\n\\n14\\n00:00:53,338 --> 00:00:54,751\\nAyrıca bir sürü böcek var.\\n\\n15\\n00:00:54,751 --> 00:00:57,551\\nBöceklerden daha çok, sıkılıyorum.\\n\\n16\\n00:00:58,193 --> 00:01:02,476\\nBilmediğim şeyler hakkında daha çok şey öğrenmek istiyorum.\\n\\n17\\n00:01:16,461 --> 00:01:21,954\\nDizüstü bilgisayarları ilk kullandığımızda, onların ne olduklarını bilmiyorduk.\\n\\n18\\n00:01:21,954 --> 00:01:24,387\\nVe öğrenme yöntemimiz şöyleydi...\\n\\n19\\n00:01:24,387 --> 00:01:26,887\\nbir sınıf arkadaşımız bir şeyin nasıl yapıldığını öğrendiğindiğinde... \\n\\n20\\n00:01:26,887 --> 00:01:29,726\\nbaşka bir sınıf arkadaşına öğretiyordu.\\n\\n21\\n00:01:29,962 --> 00:01:33,136\\nVe o sınıf arkadaşı da başka bir sınıf arkadaşına...\\n\\n22\\n00:01:33,136 --> 00:01:34,877\\nböylece hepimiz öğrendik.\\n\\n23\\n00:01:38,6 --> 00:01:41,48\\nEn çok efsanelere ilgi duyarım...\\n\\n24\\n00:01:42,348 --> 00:01:44,37\\nayrıca toprağa da.\\n\\n25\\n00:01:45,098 --> 00:01:49,69\\nÜstelik bilgisayarlarda, Vikipedi'ye gidebilirsiniz ve araştırabilirsiniz.\\n\\n26\\n00:01:49,693 --> 00:01:53,41\\nVikipedi tüm bilgilerin bulunduğu yerdir.\\n\\n27\\n00:01:53,412 --> 00:01:56,79\\nHer ne hakkında bir şey bilmek istiyorsanız, onu arayabilirsiniz.\\n\\n28\\n00:01:58,276 --> 00:02:03,38\\nVe bulabilirsiniz, daha önce...\\n\\n29\\n00:02:03,388 --> 00:02:06,61\\nhiç bilmediğiniz şeyleri, Vikipedi'de bulabilirsiniz.\\n\\n30\\n00:02:08,536 --> 00:02:10,26\\n[Victor, Lidia'nın babası]\\n\\n31\\n00:02:10,257 --> 00:02:12,68\\nAyacucho'da doğdum.\\n\\n32\\n00:02:12,684 --> 00:02:16,68\\nEbeveynlerim yüzünden okuyamadım, bana destek olmadılar.\\n\\n33\\n00:02:16,727 --> 00:02:20,31\\nDizüstü bilgisayarlar - kızım, onu nasıl kullanacağını zaten hemen hemen biliyor.\\n\\n34\\n00:02:20,781 --> 00:02:24,04\\nBana farklı ülkelerin tarihlerini öğretiyor.\\n\\n35\\n00:02:24,496 --> 00:02:29,49\\nBirleşik Devletler, Brezilya, Çin.\\n\\n36\\n00:02:30,146 --> 00:02:33,76\\nBenden daha iyi bir eğitim alsın diye...\\n\\n37\\n00:02:34,561 --> 00:02:37,93\\nbir mesleği olsun istiyorum.\\n\\n38\\n00:02:37,931 --> 00:02:43,56\\n♫\\n\\n39\\n00:02:48,474 --> 00:02:50,21\\n[Michael]\\n\\n40\\n00:02:50,21 --> 00:02:53,32\\nBen New York'luyum.\\n\\n41\\n00:02:54,186 --> 00:02:56,70\\nBuralardan çok uzak bir şehir.\\n\\n42\\n00:02:57,381 --> 00:02:59,87\\nHepinizi şehrime tanıtmak istiyorum.\\n\\n43\\n00:03:03,21 --> 00:03:07,75\\nŞimdi, köyünüz hakkında daha fazla bilgi sahibi olmak istiyorum.\\n\\n44\\n00:03:07,753 --> 00:03:09,38\\nPalestina, Peru.\\n\\n45\\n00:03:09,8 --> 00:03:10,95\\nHiçbir şey yok, Michael.\\n\\n46\\n00:03:11,127 --> 00:03:12,50\\nHiçbir şey yok?\\n\\n47\\n00:03:12,498 --> 00:03:16,20\\nO halde; bugün yapmamız gereken şey...\\n\\n48\\n00:03:17,092 --> 00:03:20,82\\nPalestina, Peru için bir sayfa yazmak. \\n\\n49\\n00:03:20,824 --> 00:03:22,47\\nBuraya ne zaman geldik?\\n\\n50\\n00:03:22,47 --> 00:03:26,23\\n1989'da.\",\n", + " 'bytes': 3791,\n", + " 'sha1': '80femf64kouuhc4ffnc8lybyje3q69t',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 674058225,\n", + " 'timestamp': '2022-07-13T13:42:41Z',\n", + " 'user': {'id': 1636, 'text': 'Kaihsu'},\n", + " 'page': {'id': 24427963,\n", + " 'title': 'Pekka Haavisto on nuclear power.ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,000\\n... Suomi.\\n\\n2\\n00:00:03,000 --> 00:00:09,000\\nOlen saksalaisessa neuvostossa, joka seuraa ns. ”Energiewende” (energiakäännettä) Saksassa.\\n\\n3\\n00:00:09,000 --> 00:00:15,000\\nSaksalaiset lopettavat ydinvoiman käytön vuonna 2022.\\n\\n4\\n00:00:15,000 --> 00:00:18,000\\nTietenkin syy on Hukušima.\\n\\n5\\n00:00:18,000 --> 00:00:22,000\\nNäen kuinka vakavasti Hukušima vaikuttaa energiapolitiikkaan.\\n\\n6\\n00:00:22,000 --> 00:00:25,000\\nErityisesti Saksassa, mutta myös muissa maissa.\\n\\n7\\n00:00:25,000 --> 00:00:27,000\\nJopa Ruotsissakin.\\n\\n8\\n00:00:27,000 --> 00:00:30,000\\nOlen aina yllättynyt siitä, ettei tämä kosketa Suomea lainkaan.\\n\\n9\\n00:00:30,000 --> 00:00:34,000\\nSe näyttää siltä, että me ollaan täysin eri planeetalta.\\n\\n10\\n00:00:34,000 --> 00:00:36,000\\nMe aina ajatellaan, että me ollaan parhaita käynnissä ydinvoimalaitoksissa.\\n\\n11\\n00:00:36,000 --> 00:00:39,000\\nVoi japanilaiset, eiväthän he osaa hyvin!\\n\\n12\\n00:00:39,000 --> 00:00:42,000\\nVoi venäläiset! Eivät hekään osaa hoittaa Tšernobylia.\\n\\n13\\n00:00:42,000 --> 00:00:47,000\\nMutta ydinvoima Suomessa ... kaikki on niin erinomainen.\\n\\n14\\n00:00:47,000 --> 00:00:49,000\\nMielestäni käänne on tuleva \\u200b\\u200bmyös Suomessakin.\\n\\n15\\n00:00:49,000 --> 00:00:51,000\\nMutta me ollaan hyvin hitaita, että vuorollaan.\\n\\n16\\n00:00:51,000 --> 00:00:55,000\\nOlen vähän surullinen siitä, että kotimaani on jäljessä tämän suuntauksen.\\n\\n17\\n00:00:55,000 --> 00:01:00,000\\nSaksa sijoittaa nyt täysin uudenlaiseen energian tuotantoon ...\\n\\n18\\n00:01:00,000 --> 00:01:05,000\\n... ja he haluavat olla ensimmäinen vihreässä energiatuotannossa ja vihreässä taloudessa Euroopassa.\\n\\n19\\n00:01:05,000 --> 00:01:08,000\\nJälkeenpäin olen varma, että me seurataan.',\n", + " 'bytes': 1738,\n", + " 'sha1': 'mwg4x2ug859i9ypzf10n4b21za0yzyf',\n", + " 'parent_id': 674057787,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 233187112,\n", + " 'timestamp': '2017-02-11T14:10:36Z',\n", + " 'user': {'id': 1636, 'text': 'Kaihsu'},\n", + " 'page': {'id': 24428011,\n", + " 'title': 'Pekka Haavisto on nuclear power.ogv.zh-tw.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,000\\n...芬蘭。\\n\\n2\\n00:00:03,000 --> 00:00:09,000\\n我參與德國Energiewende(能源改革)的委員會。\\n\\n3\\n00:00:09,000 --> 00:00:15,000\\n德國將在2022年停止使用核電。\\n\\n4\\n00:00:15,000 --> 00:00:18,000\\n福島事件當然是觸發的原因。\\n\\n5\\n00:00:18,000 --> 00:00:22,000\\n我可以看到福島事件多麼嚴重地改變了能源政策。\\n\\n6\\n00:00:22,000 --> 00:00:25,000\\n特別是在德國有影響,但在其他國家也有影響。\\n\\n7\\n00:00:25,000 --> 00:00:27,000\\n瑞典也受了影響。\\n\\n8\\n00:00:27,000 --> 00:00:30,000\\n我總是奇怪為什麼芬蘭卻不受影響。\\n\\n9\\n00:00:30,000 --> 00:00:34,000\\n看起來我們芬蘭是在完全不同的星球上。\\n\\n10\\n00:00:34,000 --> 00:00:36,000\\n我們一直認為我們是最好的運行核電廠。\\n\\n11\\n00:00:36,000 --> 00:00:39,000\\n可憐的日本人,他們不會運行自己的核電廠。\\n\\n12\\n00:00:39,000 --> 00:00:42,000\\n可憐的俄羅斯人,他們不會運行車諾堡。\\n\\n13\\n00:00:42,000 --> 00:00:47,000\\n但核電在芬蘭...一切都是那麼的優秀。\\n\\n14\\n00:00:47,000 --> 00:00:49,000\\n我認為芬蘭最後也會改變的。\\n\\n15\\n00:00:49,000 --> 00:00:51,000\\n但是,我們改變的速度很慢。\\n\\n16\\n00:00:51,000 --> 00:00:55,000\\n我有點傷感,我國落後於這一趨勢。\\n\\n17\\n00:00:55,000 --> 00:01:00,000\\n目前,德國想投資完全可再生能源...\\n\\n18\\n00:01:00,000 --> 00:01:05,000\\n...並希望成為綠色能源和綠色經濟的歐洲第一強國。\\n\\n19\\n00:01:05,000 --> 00:01:08,000\\n我肯定將來我們芬蘭也會走這條路的。',\n", + " 'bytes': 1573,\n", + " 'sha1': 'mzqysq71rshw0o02kfl831lq97xjixi',\n", + " 'parent_id': 90148134,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93179227,\n", + " 'timestamp': '2013-03-24T06:00:14Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 24497150,\n", + " 'title': 'Sextortionagent interview.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"reword so it doesn't take up as much\",\n", + " 'text': '<!--This uses the official transcript of \"[http://www.fbi.gov/news/stories/2012/february/sextortion_021012/special-agent_021012 Special Agent Nickolas Savage Discusses ‘Sextortion’].\" ([http://www.webcitation.org/6Ea7keg5V Archive]) which has removed the [[:en:filler (linguistics)|filler]] and grammatical errors-->\\n\\n1\\n00:00:00,000 --> 00:00:04,400\\nSextortion is what is commonly referred to \\n\\n2\\n00:00:04,600 --> 00:00:07,400\\nas individuals who are being victimized\\n\\n3\\n00:00:07,600 --> 00:00:09,400\\nthey’re being extorted;\\n\\n4\\n00:00:09,600 --> 00:00:12,400\\nit’s what we commonly refer to as extortion, only\\n\\n5\\n00:00:012,600 --> 00:00:18,400\\nthe end-gain for the individuals who are doing the extortion is \\n\\n6\\n00:00:18,600 --> 00:00:23,400\\nsomething that’s related to some sexual activity. Whether it be\\n\\n7\\n00:00:023,600 --> 00:00:26,400\\npictures or videos or, \\n\\n8\\n00:00:26,600 --> 00:00:29,400\\nbut it is generally something that is associated with sex.\\n\\n9\\n00:00:29,600 --> 00:00:33,400\\nSo I’m blackmailing you for something sexual in nature.\\n\\n10\\n00:00:33,600 --> 00:00:37,400\\nKids tend to be less cautious\\n\\n11\\n00:00:37,600 --> 00:00:40,400\\nand more trusting of individuals online.\\n\\n12\\n00:00:40,600 --> 00:00:44,400\\nThey associate many people online as people much like themselves, \\n\\n13\\n00:00:044,600 --> 00:00:47,400\\nof around the same age. So\\n\\n14\\n00:00:47,600 --> 00:00:49,900\\nthey\\'re not very fearful of potential dangers.\\n\\n15\\n00:00:50,100 --> 00:00:53,400\\nA lot of times you have individuals who will befriend children.\\n\\n16\\n00:00:53,600 --> 00:00:56,400\\nThey think they are chatting with other children.\\n\\n17\\n00:00:56,600 --> 00:01:01,400\\nAnd oftentimes children are tricked into sending pictures of themselves \\n\\n18\\n00:01:01,600 --> 00:01:05,400\\nto somebody else that they believe are maybe similar in age.\\n\\n19\\n00:01:05,600 --> 00:01:09,400\\nAnd once these individuals have these pictures, well they want more pictures. \\n\\n20\\n00:01:09,600 --> 00:01:14,400\\nThat is what they’re using in furtherance of their criminal activity.\\n\\n21\\n00:01:14,600 --> 00:01:17,400\\nOnce they have these pictures, they are then able to say to\\n\\n22\\n00:01:17,600 --> 00:01:20,400\\nthe victim or to the child,\\n\\n23\\n00:01:20,600 --> 00:01:24,400\\n“I want more,” or, “I want you to do x, y, and z.\\n\\n24\\n00:01:24,600 --> 00:01:28,400\\nAnd if you don’t I’m going to take these photographs and I’m going to\\n\\n25\\n00:01:28,600 --> 00:01:32,400\\nsend them to other people in the school. I’ll send them to your family.”\\n\\n26\\n00:01:32,600 --> 00:01:36,400\\nAnd oftentimes, the children are embarrassed,\\n\\n27\\n00:01:36,600 --> 00:01:42,400\\nespecially thinking as though they have somehow contributed to their victimization.\\n\\n28\\n00:01:42,600 --> 00:01:46,400\\nSo fearing that they will get in trouble if they report it,\\n\\n29\\n00:01:46,600 --> 00:01:51,400\\nthey will continue with the victimization and send the individuals what they’re requesting.\\n\\n30\\n00:01:51,600 --> 00:01:55,400\\nWhat often happens is, the victimization never stops.\\n\\n31\\n00:01:55,600 --> 00:02:01,400\\nWe saw situations where the individuals responsible for this criminal activity\\n\\n32\\n00:02:01,600 --> 00:02:07,400\\nactually created websites and actually sent hyperlinks to friends\\n\\n33\\n00:02:07,600 --> 00:02:11,400\\nand to family members, again showing a certain level of\\n\\n34\\n00:02:11,600 --> 00:02:14,400\\na sense of dominance over the victim to say,\\n\\n35\\n00:02:14,600 --> 00:02:19,400\\n“This is what I have over you, and if you don’t continue to do what I say, \\n\\n36\\n00:02:19,600 --> 00:02:22,400\\nthese are the things that I can do.”\\n\\n37\\n00:02:22,600 --> 00:02:27,400\\nThey are masters at exploiting the vulnerable.\\n\\n38\\n00:02:27,600 --> 00:02:30,400\\nThey would trick people into opening an attachment.\\n\\n39\\n00:02:30,600 --> 00:02:34,400\\nOne of the ways they would often do it was they would send a picture of a girl.\\n\\n40\\n00:02:34,600 --> 00:02:37,400\\nAnd she was wearing a bra and panties. And\\n\\n41\\n00:02:37,600 --> 00:02:40,400\\nshe had her hair over her face and you couldn’t see what she looked like.\\n\\n42\\n00:02:40,600 --> 00:02:43,400\\nAnd they would say something along the lines of,\\n\\n43\\n00:02:43,600 --> 00:02:47,400\\n“I saw this picture of you on a website. If it’s not you, just disregard.” \\n\\n44\\n00:02:47,600 --> 00:02:51,400\\nWell, what a lot of these victims didn’t realize was there was a \\n\\n45\\n00:02:51,600 --> 00:02:55,400\\nTrojan program embedded within the picture. \\n\\n46\\n00:02:55,600 --> 00:02:58,400\\nAll kids looked at the picture. Kids are just curious by nature.\\n\\n47\\n00:02:58,600 --> 00:03:03,400\\nAnd not even realizing that something could be embedded in that picture they looked at it.\\n\\n48\\n00:03:03,600 --> 00:03:07,400\\nOnce Connolly [a sextortist] and Dickerson [another sextortionist] had access to their computer,\\n\\n49\\n00:03:07,600 --> 00:03:09,400\\nwhat they would do is a couple things.\\n\\n50\\n00:03:09,600 --> 00:03:12,400\\nA lot of times they would just sit back and watch.\\n\\n51\\n00:03:12,600 --> 00:03:15,400\\nAnd they had the ability to turn on your webcam.\\n\\n52\\n00:03:15,600 --> 00:03:19,400\\nSo they would see these victims dressing and undressing and\\n\\n53\\n00:03:19,600 --> 00:03:22,400\\njust doing various things. And they would tape that.\\n\\n54\\n00:03:22,600 --> 00:03:26,400\\nAnd sometimes they would catch kids doing things or catch kids changing [clothes].\\n\\n55\\n00:03:26,600 --> 00:03:31,400\\nSometimes they would show these videos or pictures in furtherance of the exploitation.\\n\\n56\\n00:03:31,600 --> 00:03:36,400\\nAlso, once they had this they had access to buddy lists, so they were able to say,\\n\\n57\\n00:03:36,600 --> 00:03:41,400\\n“If you don’t take pictures of yourself, or you don’t take these movies of yourself, \\n\\n58\\n00:03:41,600 --> 00:03:45,400\\nI see you have an e-mail address for your grandmother.\\n\\n59\\n00:03:45,600 --> 00:03:48,400\\nWell, I’ll put this little show together for your grandmother, and \\n\\n60\\n00:03:48,600 --> 00:03:51,400\\nI’m sure she wouldn’t, you know, be very proud of the way you act.”\\n\\n61\\n00:03:51,600 --> 00:03:54,400\\nAnd a lot of these kids would do this.\\n\\n62\\n00:03:54,600 --> 00:03:58,400\\nToday you have so many more malware\\n\\n63\\n00:03:58,600 --> 00:04:02,400\\nthere’s so much more malware out there, and so many more\\n\\n64\\n00:04:02,600 --> 00:04:05,400\\nprograms that allow people access to your computer,\\n\\n65\\n00:04:05,600 --> 00:04:10,400\\nyou can’t be too cautious any more. One of the things that,\\n\\n66\\n00:04:10,600 --> 00:04:13,400\\nespecially when talking to parents, is\\n\\n66\\n00:04:13,600 --> 00:04:16,400\\nyou need to have this open dialogue with your children.\\n\\n67\\n00:04:16,600 --> 00:04:20,400\\nYou have to talk to your kids about these things.\\n\\n68\\n00:04:20,600 --> 00:04:23,400\\nYou can’t be too careful. You really can’t trust…\\n\\n69\\n00:04:23,600 --> 00:04:25,400\\nyou’ve got to be careful with whom you’re communicating.\\n\\n70\\n00:04:25,600 --> 00:04:29,400\\nAlways be cautious: number-one.\\n\\n71\\n00:04:29,600 --> 00:04:32,400\\nNumber-two is: kids need to be able to talk to parents\\n\\n72\\n00:04:32,600 --> 00:04:35,400\\nand parents need to be able to talk to kids.\\n\\n73\\n00:04:35,600 --> 00:04:38,400\\nIf you don’t know who something is from, don’t open it.\\n\\n74\\n00:04:38,600 --> 00:04:43,400\\nBe cautious of certain attachments.\\n\\n75\\n00:04:43,600 --> 00:04:47,400\\nAnd, in the end,\\n\\n76\\n00:04:47,600 --> 00:04:50,400\\nif something were to happen, if you were victimized,\\n\\n77\\n00:04:50,600 --> 00:04:55,400\\ntell somebody, tell your parents. Tell an adult. Tell a teacher.\\n\\n78\\n00:04:55,600 --> 00:05:00,400\\nEven if you’re an adult and you’re victimized, don’t be afraid to call law enforcement.\\n\\n79\\n00:05:00,600 --> 00:05:06,400\\nDickerson had—he had like 230 gigabytes worth of material.\\n\\n80\\n00:05:06,600 --> 00:05:09,400\\nAnd at the time that was huge.\\n\\n81\\n00:05:09,600 --> 00:05:15,400\\nConnolly had close to a terabyte worth of material.\\n\\n82\\n00:05:15,600 --> 00:05:21,400\\nAnd the thing was a lot of these kids are just some folder somewhere.\\n\\n83\\n00:05:21,600 --> 00:05:24,400\\nIt was a folder on a computer.\\n\\n84\\n00:05:24,600 --> 00:05:30,400\\nNo name. No screen name. Just pictures and videos in a folder. \\n\\n85\\n00:05:30,600 --> 00:05:34,400\\nAnd part of what I feel my responsibility is is\\n\\n86\\n00:05:34,600 --> 00:05:37,400\\nto talk to anybody who’s willing to listen\\n\\n87\\n00:05:37,600 --> 00:05:41,400\\nbecause I know where’s so many more victims out here that are wondering, \\n\\n88\\n00:05:41,600 --> 00:05:44,400\\n“I wonder what ever happened to those guys?” or, “Do I still need to be afraid?”\\n\\n89\\n00:05:44,600 --> 00:05:47,400\\nIf you know somebody or are in a similar situation,\\n\\n90\\n00:05:47,600 --> 00:05:51,400\\nor if you’re a parent, talk to your children about this.',\n", + " 'bytes': 8689,\n", + " 'sha1': '1zliwb9t7ce6u7l78zjwk4ptj3ddyk7',\n", + " 'parent_id': 92370759,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90161513,\n", + " 'timestamp': '2013-02-08T23:03:31Z',\n", + " 'user': {'id': 2629548, 'text': 'David Nunes Pereira'},\n", + " 'page': {'id': 24542225,\n", + " 'title': 'Chinese-Nanjing.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,040 --> 00:00:24,400\\n南京\\tNán jīng',\n", + " 'bytes': 49,\n", + " 'sha1': 'ij2qovwzb08bu3h5gl55cjbsjwmmged',\n", + " 'parent_id': 90161345,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90163042,\n", + " 'timestamp': '2013-02-08T23:46:33Z',\n", + " 'user': {'id': 1639029, 'text': 'Khan27'},\n", + " 'page': {'id': 24542579,\n", + " 'title': 'The Impact Of Wikipedia.webm.az.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with ' 1 00:00:00,000 --> 00:00:05,000 Vikipediya qeyri-kommersiya məqsədlidir, lakin dünyanın 5-ci böyük veb-saytıdır. Vikipediya-dakı bütün məqalələr ...'\",\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nVikipediya qeyri-kommersiya məqsədlidir, lakin dünyanın 5-ci böyük veb-saytıdır. Vikipediya-dakı bütün məqalələr könüllülər tərəfindən yazılır.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nBiz onlardan bir neçəsini sizə təqdim etmək istəyirik...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nMən Nepallıyam\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nMən İraqlıyam\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nMən Hindistandan gəlirəm\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nMən Biramdanam, Nyu Cersi\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nMən Birminqemdə yaşayıram, İngiltərə\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nÇikaqo, Illinois -- La Paz, Boliviya -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malayziyaa -- Milan, İtaliya -- Cənubi Afrika\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolşa -- Yaponiya -- Lazımsız\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBraziliya -- Rusiya -- Botsvana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nİsrail -- Özbəkistan -- Honq Konk\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nİstanbul -- Meksika\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nÇattanuqa, Tennesi\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nMən Vikipediyaya 2008-ci ildə qoşuldum, bir çox yeni məqalə yaratmışam.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nOnlardan biri, mənə elə gəlir ki, Məryəm Nur adlı xanım haqqında idi. \\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nBizdə onun haqda məqalə yox idi -- və bu mənim yaratdığım ilk məqalə oldu.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nBu məqaləni yaratdığımı tamam unutmuşdum! Təxminən iki-üç il sonra,\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nbu məqalə ilə yenidən rastlaşdım və çaşqınlığa düşdüm. \\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nBu məqaləni 100 mindən artıq insan oxumuşdu. \\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nOnlar bu məqalədən istifadə etmiş, ondan məlumat əldə etmişdilər. Onlar bu məqalə sayəsində dərslərində uğur əldə etmişdilər, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nBu da məndə 100 mindən artıq insana təsir etdiyim, onlara fayda verdyim hissini oyatdı.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\n\"Redaktə\" düyməsini ilk dəfə basdığım vaxt çox qorxmuşdum. \\n\\n24\\n00:01:19,100 --> 00:01:24,000\\n”Düşünürdüm ki, “aman Allahım, mən hər şeyi dağıdacağam! Bu düz işləməyəcək! Mən bunu edə bilməyəcəm!”\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nVikipedia bir \\'açıq mənbə\\'dir - hər kəs öz fikrini bildirə bilər\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nvə sonralar başqası gələrək bu fikri daha da irəliyə ötürür və beləliklə mükəmməl bir hala gəlir.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nHər gün, hər saat, hər dəqiqə Vikipediyanın inkişafı üçün çalışan minlərcə insan var.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nBunların təməlində könüllülük dayanır. Bu könüllü olmağın unikal yoludur.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nBunun sayəsində mövud bir məqalə ilə bağlı professionallar və həvəskarlar bir araya gəlir.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nƏvvəllər müxtəlif fikirlərə sahib olan insanlar əməkdaşlığa başlayır.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nBöyük bir İnternet korporasiyasının yaratdığı işlər \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nmənim kimi könüllülər tərəfindən həyata keçirilir.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nBura gəlib, “Mən haqlıyam, sən isə haqsızsan, bu məqalədə mənim yazdığım versiyadı!” deyə bilmirik.\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nƏgər qərəzli bir məsələ varsa, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nbu məqaləyə kimsə işarə qoyur, həmçinin bunu sizdə edə bilərsiniz.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nBunu görən yüzlərcə hətda minlərcə insan \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nbu səhvləri düzəltə bilər.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nSonralar da butona basdım və\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom - Böyük bir səyahətə başladım.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nİlk məqaləm \\'Ehtimal\\' oldu. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nBaşladığım ilk məqalə \\'Ehtimal\\' idi.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nVikipediyada yazdığım əsas məqalərdən biri \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nbıçaq yarası ilə bağlı məqalə idi.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nMən burada uçurtma balıqçılığı, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontana tarixi, Milli Park tarixi, Yelloustoun haqqında yazılar yazdım.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nTələbat olmayan bitkilər. Şahmat oyunçuları. Biomüxtəliflik. \\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nHərbi tarix mövzular. Lazımsız. Roma tarixi.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nHakimlər. Rabitə. Bioqrafiyalar. Futbol.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nİrlandiya. Pensilvaniya. Əsasən fotoqrafçılıq.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Bişirmək, çünki bişirməyi sevirəm.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nNüvə silahlar və radioaktivlik, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nvə kayak idmanı.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nBu məlumatların hamısı haradasa var, amma onlar dağınıq haldadır\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nvə biz onları bir yerə toplayırıq.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nBiz hər kəsə öz dilində sərbəst məlumat təqdim edirik ki, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nonlar rahatlıqla bundan yararlana bilirsin.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nKasıb və ya varlı olmasından asılı olmayaraq, hər kəs bundan fayda əldə edir.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nKommersiya şirkətlərinin fərqli motivasiyaları və fərqli tələbləri var.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nMən Vikimedia Fondundan əmək haqqı almıram, amma mənim heç xərcim də çıxmır.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nOna görə də, bu çox əhəmiyyətlidir, mən rahat şəkildə deyə bilərəm: \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nBaxın, mən sizdən ianə verməyinizi xahiş edərkən, bu pulu özüm üçün istəmirəm --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nMən sizdən ianə verməyinizi xahiş edərkən, bu pulu Fond üçün, tərkib hissəsi olduğum bu möhtəşəm cəmiyyəti dəstəkləyən komanda üçün istəyirəm.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nDüşünürəm ki, Vikipediya mənə bu dünyada böyük bir iş görə bilmək imkanı verib.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nBu sizin öz gələcəyinizə, uşaqlarınızın gələcəyinə qoyulmuş investisiya kimidir.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nTəşəkkür edirik!\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nBu videonun tərkibi Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) (əksi nəzərdə tutulmamışdırsa) lisenziyası altında mümkündür. Bu işə aid olan: Viktor Qriqas, Vikimedia Fondu.\\nBu videoda qeyd olunan görüşlər və fikirlər tamamilə iştirakçı şəxslərin şəxsi fikirləridir, onlar üzvü olduqları istənilən şirkətin, təşkilatın və ya başqa strukturun mövqeyini əks etdirmirlər.\\nThe trademarks and logos of the Wikimedia Foundation and any other organization are not included under the terms of this Creative Commons license. Wikimedia trademarks and logos, including \"Wikipedia\" and the puzzle globe logo, are registered trademarks of the Wikimedia Foundation. For more information, please see our Trademark Policy page,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nBu video Creative Commons lisenziyası altında yayımlanır.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nVikipediya\\'da olduğu kimi, onu pulsuz olaraq köçürmək, yenidən emal etmək və yaymaq olar.',\n", + " 'bytes': 7633,\n", + " 'sha1': 'b7535ffkxoo4u27au2vhm49cp675xck',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90191059,\n", + " 'timestamp': '2013-02-09T10:13:26Z',\n", + " 'user': {'id': 1636375, 'text': 'Mathysjorritsma'},\n", + " 'page': {'id': 24553938,\n", + " 'title': 'United States Navy Band - Het Wilhelmus.ogg.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,020\\nWilhelmus van Nassouwe\\n\\n2\\n00:00:05,020 --> 00:00:10,270\\nben ik, van Duitsen bloed,\\n\\n3\\n00:00:10,270 --> 00:00:15,300\\nden Vaderland getrouwe\\n\\n4\\n00:00:15,300 --> 00:00:20,730\\nblijf ik tot in den dood.\\n\\n5\\n00:00:20,730 --> 00:00:27,830\\nEen prinse van Oranje\\n\\n6\\n00:00:27,830 --> 00:00:32,670\\nben ik, vrij onverveerd,\\n\\n7\\n00:00:32,670 --> 00:00:39,900\\nden Koning van Hispanje\\n\\n8\\n00:00:39,900 --> 00:00:47,300\\nheb ik altijd geëerd.',\n", + " 'bytes': 455,\n", + " 'sha1': 'eqzwv31qa36r1dqyxju59b6o500q8yu',\n", + " 'parent_id': 90191007,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 107499678,\n", + " 'timestamp': '2013-10-20T09:54:37Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 24583852,\n", + " 'title': 'GraziaDeledda.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/118.68.206.2|118.68.206.2]] ([[User talk:118.68.206.2|talk]]) to last revision by SanGavinoEN',\n", + " 'text': \"1\\n00:00:00,100 --> 00:00:02,000\\nI was born in Sardinia.\\n\\n2\\n00:00:02,100 --> 00:00:05,100\\nMy family contained wise people,\\n\\n3\\n00:00:05,200 --> 00:00:07,000\\nbut also violent ones\\n\\n4\\n00:00:07,100 --> 00:00:09,000\\nand productive artists;\\n\\n5\\n00:00:09,100 --> 00:00:10,600\\nIt had authority,\\n\\n6\\n00:00:10,700 --> 00:00:12,600\\nIt even had a library.\\n\\n7\\n00:00:12,700 --> 00:00:15,900\\nBut when I started to write at the age of 12 \\n\\n8\\n00:00:16,000 --> 00:00:18,100\\nmy folk were against it.\\n\\n9\\n00:00:18,200 --> 00:00:20,500\\nThe Philosopher warns:\\n\\n10\\n00:00:20,600 --> 00:00:23,000\\nIf your son writes verses chastise him\\n\\n11\\n00:00:23,100 --> 00:00:25,500\\nand send him off to a mountain track.\\n\\n12\\n00:00:25,600 --> 00:00:28,300\\nIf you find him in poetry for a second time\\n\\n13\\n00:00:28,400 --> 00:00:29,600\\npunish him again.\\n\\n14\\n00:00:29,700 --> 00:00:31,400\\nIf he does it for a third time\\n\\n15\\n00:00:31,500 --> 00:00:32,400\\nleave him in peace\\n\\n16\\n00:00:32,500 --> 00:00:34,000\\nbecause he is a poet.\\n\\n17\\n00:00:34,100 --> 00:00:35,300\\nWithout being vain, for me too\\n\\n18\\n00:00:35,400 --> 00:00:36,900\\nthat's how it happened.\\n\\n19\\n00:00:37,000 --> 00:00:39,500\\nI had the irresistible mirage of the world.\\n\\n20\\n00:00:39,600 --> 00:00:44,000\\nI've had all of the things that a woman may ask of her destiny,\\n\\n21\\n00:00:44,100 --> 00:00:49,200\\nbut, greater than any fortune, I've held faith in life and in God.\",\n", + " 'bytes': 1382,\n", + " 'sha1': 'ddf4j1847zcxz743dke61lzgxmrcaqg',\n", + " 'parent_id': 107496880,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90339497,\n", + " 'timestamp': '2013-02-10T21:25:40Z',\n", + " 'user': {'id': 240842, 'text': 'Jean-Frédéric'},\n", + " 'page': {'id': 24584395,\n", + " 'title': 'Eric Walter - voix.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Break',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nBonjour, je m’appelle Éric Walter, je suis né à Paris,\\n\\n2\\n00:00:05,200 --> 00:00:11,000\\net je suis secrétaire général de l’Hadopi depuis le 1er mars 2010.',\n", + " 'bytes': 196,\n", + " 'sha1': '9mqtdkdds328vtc90bh2n22i5315g3p',\n", + " 'parent_id': 90339019,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90340302,\n", + " 'timestamp': '2013-02-10T21:32:21Z',\n", + " 'user': {'id': 240842, 'text': 'Jean-Frédéric'},\n", + " 'page': {'id': 24584733,\n", + " 'title': 'Glyn Moody voice.oga.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Adjust timing',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,800\\nMy name is Glyn Moody, I was born in London,\\n\\n2\\n00:00:04,000 --> 00:00:10,000\\nAnd I’ve been a freelance writer and journalist since 1991.',\n", + " 'bytes': 171,\n", + " 'sha1': 'hfszfa5pbzodgoy6yzxe02fgtcpqkar',\n", + " 'parent_id': 90340239,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 666261730,\n", + " 'timestamp': '2022-06-18T22:06:22Z',\n", + " 'user': {'id': 35176, 'text': 'Toobaz'},\n", + " 'page': {'id': 24599187,\n", + " 'title': 'GraziaDeledda.ogg.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Fix/correzione: \"primitivi\" vs. \"produttivi\"',\n", + " 'text': '1\\n00:00:00,100 --> 00:00:02,000\\nSono nata in Sardegna.\\n\\n2\\n00:00:02,100 --> 00:00:05,100\\nLa mia famiglia è composta di gente savia\\n\\n3\\n00:00:05,200 --> 00:00:07,000\\nma anche di violenti\\n\\n4\\n00:00:07,100 --> 00:00:09,000\\ne di artisti primitivi;\\n\\n5\\n00:00:09,100 --> 00:00:10,600\\naveva autorità\\n\\n6\\n00:00:10,700 --> 00:00:12,600\\ne aveva anche biblioteca,\\n\\n7\\n00:00:12,700 --> 00:00:15,900\\nma quando cominciai a scrivere a tredici anni, \\n\\n8\\n00:00:16,000 --> 00:00:18,100\\nfui contrariata dai miei.\\n\\n9\\n00:00:18,200 --> 00:00:20,500\\nIl filosofo ammonisce:\\n\\n10\\n00:00:20,600 --> 00:00:23,000\\nse tuo figlio scrive versi, correggilo \\n\\n11\\n00:00:23,100 --> 00:00:25,500\\ne mandalo per la strada dei monti;\\n\\n12\\n00:00:25,600 --> 00:00:28,300\\nSe lo trovi nella poesia la seconda volta,\\n\\n13\\n00:00:28,400 --> 00:00:29,600\\npuniscilo ancora;\\n\\n14\\n00:00:29,700 --> 00:00:31,400\\nse fa per la terza volta,\\n\\n15\\n00:00:31,500 --> 00:00:32,400\\nlascialo in pace\\n\\n16\\n00:00:32,500 --> 00:00:34,000\\nperché è un poeta.\\n\\n17\\n00:00:34,100 --> 00:00:35,300\\nSenza vanità anche a me\\n\\n18\\n00:00:35,400 --> 00:00:36,900\\nè capitato così.\\n\\n19\\n00:00:37,000 --> 00:00:39,500\\nAvevo un irresistibile miraggio del mondo.\\n\\n20\\n00:00:39,600 --> 00:00:44,000\\nHo avuto tutte le cose che una donna può chiedere al suo destino.\\n\\n21\\n00:00:44,100 --> 00:00:49,200\\nMa grande sopra ogni fortuna la fede nella vita e in Dio.',\n", + " 'bytes': 1365,\n", + " 'sha1': 'kbzd8c182jbw4e6s028vwhd55vw7otn',\n", + " 'parent_id': 391584541,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 215297117,\n", + " 'timestamp': '2016-11-18T09:49:32Z',\n", + " 'user': {'id': 35226, 'text': 'DarkPhoenix'},\n", + " 'page': {'id': 24625978,\n", + " 'title': 'Around the Corner (1937) 24fps selection.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Corrected \"sever\" to \"center\"',\n", + " 'text': \"1\\n00:00:01,267 --> 00:00:02,807\\nFormations, like these,\\n\\n2\\n00:00:03,224 --> 00:00:06,599\\nrequire long hours of intensive drilling\\nand careful judgment.\\n\\n3\\n00:00:07,314 --> 00:00:09,095\\nWhen the troop goes around the corner,\\n\\n4\\n00:00:09,367 --> 00:00:12,743\\nthe riders on the outside of the turn\\nhave to adjust their speed\\n\\n5\\n00:00:12,744 --> 00:00:15,061\\nto keep even with the riders on the inside.\\n\\n6\\n00:00:16,637 --> 00:00:20,139\\nThe man on the outside\\nhas to ride a lot further and a lot faster\\n\\n7\\n00:00:20,140 --> 00:00:22,085\\nin order to keep up with the parade.\\n\\n8\\n00:00:24,052 --> 00:00:28,196\\nThe outside wheels must spin faster\\nthan the wheels on the inside\\n\\n9\\n00:00:28,758 --> 00:00:32,666\\nbecause they have a greater distance to travel\\nin the same length of time.\\n\\n10\\n00:00:33,511 --> 00:00:38,052\\nWhen a wagon turns a corner,\\nthe wheels can travel at different speeds\\n\\n11\\n00:00:38,053 --> 00:00:41,808\\nbecause each one can turn freely on the axles.\\n\\n12\\n00:00:41,859 --> 00:00:45,821\\nAnd in the early automobiles,\\nthe rear wheels turned separately\\n\\n13\\n00:00:45,822 --> 00:00:48,820\\nand only one wheel\\nwas connected to the engine.\\n\\n14\\n00:00:49,459 --> 00:00:52,631\\nBut when only one wheel\\nwas driven by the engine,\\n\\n15\\n00:00:52,631 --> 00:00:54,662\\nit had to do all the work,\\n\\n16\\n00:00:54,703 --> 00:00:59,206\\nand it couldn't get a good enough grip\\non the road to do its job properly.\\n\\n17\\n00:00:59,845 --> 00:01:02,308\\nSo the one-wheel drive\\nwas soon out of date.\\n\\n18\\n00:01:03,151 --> 00:01:09,101\\nBut if two wheels are locked on an axle,\\nso that they are not free to turn separately,\\n\\n19\\n00:01:09,298 --> 00:01:11,869\\none or the other has to slide.\\n\\n20\\n00:01:12,491 --> 00:01:15,851\\nSo engineers had to find a way\\nto connect both rear wheels\\n\\n21\\n00:01:15,852 --> 00:01:19,580\\nto the engine,\\nwithout sliding and slipping on turns.\\n\\n22\\n00:01:20,870 --> 00:01:25,113\\nThe device which makes this possible\\nis a part of the rear axle.\\n\\n23\\n00:01:25,585 --> 00:01:27,892\\nIt is called the differential,\\n\\n24\\n00:01:27,893 --> 00:01:32,209\\nbecause it can drive the rear wheels\\nat different speeds.\\n\\n25\\n00:01:32,822 --> 00:01:34,804\\nThe differential looks complicated.\\n\\n26\\n00:01:35,140 --> 00:01:39,215\\nBut once we understand its principle,\\nit is amazingly simple.\\n\\n27\\n00:01:39,855 --> 00:01:42,763\\nThese two wheels are mounted\\non separate axles\\n\\n28\\n00:01:42,764 --> 00:01:44,593\\nand supported by a frame,\\n\\n29\\n00:01:45,391 --> 00:01:49,798\\nso that they can revolve freely\\nat different speeds.\\n\\n30\\n00:01:50,350 --> 00:01:55,415\\nLet's fasten a spoke\\non the inner end of each axle.\\n\\n31\\n00:01:56,754 --> 00:02:02,461\\nSo that by turning the spokes,\\nwe can turn each wheel separately.\\n\\n32\\n00:02:06,923 --> 00:02:11,614\\nWith a bar or cross piece,\\nwe can turn both wheels\\n\\n33\\n00:02:11,614 --> 00:02:15,973\\nin the same direction\\nat the same rate of speed.\\n\\n34\\n00:02:16,869 --> 00:02:19,418\\nLet's get something\\nto hold this bar in place,\\n\\n35\\n00:02:19,419 --> 00:02:22,509\\nso that it will press against the spokes.\\n\\n36\\n00:02:23,313 --> 00:02:26,468\\nNotice that this support\\nis not locked to the axle,\\n\\n37\\n00:02:26,469 --> 00:02:27,842\\nit turns freely.\\n\\n38\\n00:02:29,145 --> 00:02:33,129\\nNow, we can spin the wheels\\nby rotating the support.\\n\\n39\\n00:02:34,066 --> 00:02:39,111\\nThis is fine, as long as both wheels\\nare able to turn at the same speed.\\n\\n40\\n00:02:39,587 --> 00:02:43,264\\nBut let's see what happens\\nwhen we go around the corner.\\n\\n41\\n00:02:44,090 --> 00:02:48,927\\nWith this arrangement, we cannot drive\\none wheel faster than the other.\\n\\n42\\n00:02:53,620 --> 00:02:58,802\\nAnd if we stop one wheel,\\nthe other wheel won't budge.\\n\\n43\\n00:03:01,590 --> 00:03:07,533\\nLet put this bar on a pivot,\\nso that it can swing in either direction.\\n\\n44\\n00:03:13,458 --> 00:03:18,996\\nNow, the bar can still turn both wheels\\nat the same speed.\\n\\n45\\n00:03:19,583 --> 00:03:24,697\\nAnd, because it pivots,\\nit lets one wheel turn\\n\\n46\\n00:03:24,698 --> 00:03:27,523\\neven when the other is stopped.\\n\\n47\\n00:03:28,619 --> 00:03:33,075\\nBut, if turned too far,\\nthe bar will swing around\\n\\n48\\n00:03:33,076 --> 00:03:37,004\\nuntil it won't drive the spokes\\nthat turn either wheel.\\n\\n49\\n00:03:37,601 --> 00:03:42,766\\nWe need another crossbar\\nand more spokes to carry on the job.\\n\\n50\\n00:03:43,708 --> 00:03:45,434\\nWhen we stop one wheel,\\n\\n51\\n00:03:46,239 --> 00:03:51,121\\nthe crossbars will continue to push\\nthe spokes of the free wheel around.\\n\\n52\\n00:03:52,683 --> 00:03:55,245\\nAs long as both wheels\\nare free to turn,\\n\\n53\\n00:03:56,621 --> 00:04:02,744\\nthe bars do not swing on their pivots\\nand the wheels move at the same speed.\\n\\n54\\n00:04:04,500 --> 00:04:08,034\\nNow we have the working principles\\nof a differential.\\n\\n55\\n00:04:08,767 --> 00:04:14,012\\nTo adapt the model for use in an automobile,\\nwe will have to make a few changes.\\n\\n56\\n00:04:14,944 --> 00:04:20,981\\nIn order to reduce the jerky action,\\ncaused by wide spaces between the spokes,\\n\\n57\\n00:04:21,626 --> 00:04:24,276\\nwe will put in more spokes.\\n\\n58\\n00:04:28,022 --> 00:04:33,844\\nFurther filling in the spaces between the spokes\\ngives steadier, more continuous action.\\n\\n59\\n00:04:34,225 --> 00:04:39,002\\nAnd changing the shape\\ngives firm, constant contact.\\n\\n60\\n00:04:40,109 --> 00:04:43,012\\nNow we can make the gears\\nthicker and stronger,\\n\\n61\\n00:04:43,144 --> 00:04:46,348\\nand we have differential gears.\\n\\n62\\n00:04:46,923 --> 00:04:51,881\\nThe edges are cut so that they will fit together\\nmore smoothly and silently.\\n\\n63\\n00:04:52,261 --> 00:04:56,659\\nAnd another gear is added\\nto share the work of driving the axles.\\n\\n64\\n00:04:56,695 --> 00:04:58,234\\nThe principle is the same.\\n\\n65\\n00:04:59,466 --> 00:05:02,949\\nIn order to turn the support\\nand drive the wheels,\\n\\n66\\n00:05:03,172 --> 00:05:09,229\\nwe can fasten a large gear here,\\nconnected by a smaller gear\\n\\n67\\n00:05:10,195 --> 00:05:11,663\\nto a source of power.\\n\\n68\\n00:05:18,760 --> 00:05:21,565\\nNotice that the power \\nis connected to the differential\\n\\n69\\n00:05:21,566 --> 00:05:23,263\\nat the center line.\\n\\n70\\n00:05:25,519 --> 00:05:30,535\\nWe can make our model more compact\\nby moving the gears closer together.\\n\\n71\\n00:05:31,868 --> 00:05:34,316\\nWhen we put our differential\\nin an automobile,\\n\\n72\\n00:05:34,317 --> 00:05:36,899\\nwe have to leave room\\nfor the drive shaft,\\n\\n73\\n00:05:36,900 --> 00:05:38,978\\nwhich carries the power from the engine.\\n\\n74\\n00:05:40,502 --> 00:05:43,875\\nWe may build the floor of the car\\nabove the drive shaft.\\n\\n75\\n00:05:45,035 --> 00:05:49,151\\nBut, if we do,\\nwe won't have much room inside,\\n\\n76\\n00:05:49,152 --> 00:05:51,839\\nunless we make the top of the car high too.\\n\\n77\\n00:05:52,920 --> 00:05:55,105\\nOf course,\\n we could lower the floor and ceiling,\\n\\n78\\n00:05:55,106 --> 00:05:58,129\\nbut the drive shaft\\nwould be higher than the floor.\\n\\n79\\n00:05:58,703 --> 00:06:00,440\\nThis would have disadvantages.\\n\\n80\\n00:06:01,536 --> 00:06:04,315\\nA shaft in the middle of the floor\\nof an automobile\\n\\n81\\n00:06:04,316 --> 00:06:09,535\\nwould be inconvenient for passengers,\\nand would be awkward for carrying luggage.\\n\\n82\\n00:06:10,028 --> 00:06:15,118\\nToday, engineers have found a way\\nto make the car roomier and closer to the road\\n\\n83\\n00:06:15,706 --> 00:06:18,396\\nwithout a clumsy shaft above the floor.\\n\\n84\\n00:06:18,885 --> 00:06:24,542\\nThe drive shaft from the engine to the differential\\nis lowered out of the way.\\n\\n85\\n00:06:25,226 --> 00:06:29,386\\nAnd the drive shaft is connected\\nto the rear axle at the bottom.\\n\\n86\\n00:06:29,830 --> 00:06:36,199\\nThe new low center drive makes the rear axle\\nquieter, stronger, and more durable\\n\\n87\\n00:06:36,501 --> 00:06:41,334\\nbecause it gives better, smoother contact\\nbetween the gears.\\n\\n88\\n00:06:42,343 --> 00:06:45,789\\nThe automobile of today\\nwith the low center drive\\n\\n89\\n00:06:45,790 --> 00:06:48,989\\nis stronger and more rugged.\\n\\n90\\n00:06:49,592 --> 00:06:54,356\\nEvery part of the rear axle\\nhas been build to withstand strains,\\n\\n91\\n00:06:54,357 --> 00:06:57,591\\nfar greater than it will ever meet\\non the straight way\\n\\n92\\n00:06:57,592 --> 00:06:59,455\\nor around the corner.\\n\\n93\\n00:07:16,509 --> 00:07:18,578\\nInside Wheel\\n\\n94\\n00:07:19,077 --> 00:07:20,579\\nOutside Wheel\\n\\n95\\n00:07:21,128 --> 00:07:23,408\\nInside Wheel\\n\\n96\\n00:07:24,267 --> 00:07:25,969\\nOutside Wheel\\n\\n97\\n00:07:26,504 --> 00:07:28,572\\nInside Wheel \\n\\n98\\n00:07:28,967 --> 00:07:30,365\\nOutside Wheel\",\n", + " 'bytes': 8285,\n", + " 'sha1': '8ljuzmha7phnya8a5wobswt9c82uf9b',\n", + " 'parent_id': 157731477,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 158449717,\n", + " 'timestamp': '2015-04-23T01:40:40Z',\n", + " 'user': {'id': 4737263, 'text': 'Ralexmegu'},\n", + " 'page': {'id': 24636769,\n", + " 'title': \"What's a Love Dart?.webm.en.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:06,335 --> 00:00:08,003\\nMy name is Susan Hewitt and\\n\\n2\\n00:00:08,003 --> 00:00:12,017\\nI'm one of the three people who started the 'Love Dart' article.\\n\\n3\\n00:00:12,017 --> 00:00:16,373\\nWhat's a Love Dart? -- a Love Dart... -- Love Dark?\\n\\n4\\n00:00:16,373 --> 00:00:17,471\\nA Love Dart?\\n\\n5\\n00:00:17,471 --> 00:00:20,932\\nThe dart that Cupid shoots a person with?\\n\\n6\\n00:00:20,932 --> 00:00:23,019\\nWhen we started 'Love Dart',\\n\\n7\\n00:00:23,019 --> 00:00:26,981\\nthere were three of us that created the first draft of it.\\n\\n8\\n00:00:26,981 --> 00:00:32,736\\nNever before, really in the history of humanity, so many people come together \\n\\n9\\n00:00:32,736 --> 00:00:36,373\\non a volunteer basis to build an extraordinary \\n\\n10\\n00:00:36,373 --> 00:00:39,451\\nresource like this that everybody can use!\\n\\n11\\n00:00:39,451 --> 00:00:44,372\\nSo, you just write freely, and then your work is edited\\n\\n12\\n00:00:44,372 --> 00:00:47,377\\nand improved by the other people who are working on it.\\n\\n13\\n00:00:47,377 --> 00:00:52,171\\nA love dart it is actually a dart like a little arrow\\n\\n14\\n00:00:52,171 --> 00:00:55,707\\nThat some land snails and slugs\\n\\n15\\n00:00:55,707 --> 00:01:00,639\\nmake inside their body, and they use it before mating.\\n\\n16\\n00:01:00,639 --> 00:01:05,685\\nEach snail or slug tries to stab the other one with a love dart. \\n\\n17\\n00:01:05,685 --> 00:01:08,896\\nOh my god! So that's how it happens! (laughs)\\n\\n18\\n00:01:08,896 --> 00:01:11,650\\nBecause Cupid is a story from ancient Greece, \\n\\n19\\n00:01:11,650 --> 00:01:14,988\\nthere might be a real parallel between\\n\\n20\\n00:01:14,988 --> 00:01:18,866\\nCupid and his love darts, and the snails and their love darts.\\n\\n21\\n00:01:18,866 --> 00:01:22,122\\nI like Wikipedia a lot, I'm a big fan -- I love Wikipedia.\\n\\n22\\n00:01:22,122 --> 00:01:26,623\\nWhen I meet other Wikipedians, inside them there's this light that comes from\\n\\n23\\n00:01:26,623 --> 00:01:30,127\\nbuilding this extraordinary structure of knowledge.\\n\\n24\\n00:01:30,127 --> 00:01:33,706\\nI'm not a believer in 'ignorance is bliss', I think the other way around 'knowledge is power'\\n\\n25\\n00:01:33,706 --> 00:01:37,802\\nso I think Wikipedia is a very powerful asset for the world.\\n\\n26\\n00:01:37,802 --> 00:01:41,764\\nIt doesn't matter what your area of specialized knowledge\\n\\n27\\n00:01:41,764 --> 00:01:45,000\\nthere's a use for it on Wikipedia.\",\n", + " 'bytes': 2317,\n", + " 'sha1': 'd2orqiq59efcd999ef85g4q8u3yznct',\n", + " 'parent_id': 158449631,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90882795,\n", + " 'timestamp': '2013-02-17T17:54:51Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 24719830,\n", + " 'title': '2012-06 Dessau Hauptbahnhof←Junkerspark.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:39,760 Hauptbahnhof 2 00:00:56,760 --> 00:01:23,480 Theater 3 00:02:17,760 --> 00:03:06,280 Hauptpost 4 00:03:50,320 --> 00:05:22,20...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:39,760\\nHauptbahnhof\\n\\n2\\n00:00:56,760 --> 00:01:23,480\\nTheater\\n\\n3\\n00:02:17,760 --> 00:03:06,280\\nHauptpost\\n\\n4\\n00:03:50,320 --> 00:05:22,200\\nMuseum\\xa0Nord\\n\\n5\\n00:05:35,280 --> 00:05:39,840\\n◄Museum West►\\n\\n6\\n00:05:53,200 --> 00:05:59,440\\n◄August-Bebel-Platz►\\n\\n7\\n00:06:25,520 --> 00:06:57,000\\nAmalienstraße\\n\\n8\\n00:07:52,080 --> 00:08:23,959\\nRodebillestraße\\n\\n9\\n00:08:56,040 --> 00:10:32,720\\nRobert-Bosch-Straße\\n\\n10\\n00:11:11,080 --> 00:11:28,080\\nBerufsschulzentrum Haupteingang\\n\\n11\\n00:12:01,880 --> 00:12:22,800\\nBerufsschulzentrum Sporthalle\\n\\n12\\n00:13:44,760 --> 00:14:43,680\\nKleine Schaftrift\\n\\n13\\n00:15:26,520 --> 00:16:11,800\\nLindenstraße\\n\\n14\\n00:16:43,720 --> 00:17:07,280\\nMedizinisches Versorgungszentrum\\n\\n15\\n00:17:59,400 --> 00:18:26,560\\nStädtisches Klinikum\\n\\n16\\n00:19:19,840 --> 00:19:42,040\\nZoberberg-Mitte\\n\\n17\\n00:20:15,200 --> 00:20:36,640\\nSchule Zoberberg\\n\\n18\\n00:21:06,720 --> 00:21:26,360\\nEllerbreite\\n\\n19\\n00:21:44,280 --> 00:22:03,000\\nJunkerspark',\n", + " 'bytes': 981,\n", + " 'sha1': 'brj3rwv1ss6rdsj6bpvuorml8ia9ros',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90884443,\n", + " 'timestamp': '2013-02-17T18:23:11Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 24720282,\n", + " 'title': '2012-06 Dessau Tempelhofer Straße←Am Alten Wasserturm.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:18,320 Tempelhofer Straße 2 00:00:56,680 --> 00:01:27,400 Peterholzstraße 3 00:01:56,440 --> 00:02:32,960 Damaschkestraße 4 00:03...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:18,320\\nTempelhofer Straße\\n\\n2\\n00:00:56,680 --> 00:01:27,400\\nPeterholzstraße\\n\\n3\\n00:01:56,440 --> 00:02:32,960\\nDamaschkestraße\\n\\n4\\n00:03:00,920 --> 00:03:49,240\\nDessauer Verkehrsgesellschaft\\n\\n5\\n00:04:15,240 --> 00:04:43,480\\nFriedhof Ⅲ\\n\\n6\\n00:05:25,440 --> 00:05:51,520\\nKlughardtstraße\\n\\n7\\n00:06:20,520 --> 00:06:51,360\\nWasserwerkstraße\\n\\n8\\n00:07:26,520 --> 00:07:33,840\\nAm Alten Wasserturm',\n", + " 'bytes': 414,\n", + " 'sha1': '5yaheyz3dunm5i0qhry66k0lamhamj1',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 250641584,\n", + " 'timestamp': '2017-07-08T08:40:56Z',\n", + " 'user': {'id': 4174647, 'text': '若耶有汜'},\n", + " 'page': {'id': 24720562,\n", + " 'title': 'A las barricadas.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,600 --> 00:00:06,800\\nBlack storms shake the air\\n\\n2\\n00:00:06,800 --> 00:00:11,800\\nDark clouds blind us\\n\\n3\\n00:00:11,800 --> 00:00:15,800\\nAlthough pain and death [may] await us\\n\\n4\\n00:00:15,800 --> 00:00:19,800\\nDuty calls us against the enemy\\n\\n5\\n00:00:19,800 --> 00:00:22,800\\nThe most precious good\\n\\n6\\n00:00:22,800 --> 00:00:24,800\\nis freedom\\n\\n7\\n00:00:24,800 --> 00:00:26,800\\nIt must be defended \\n\\n8\\n00:00:26,800 --> 00:00:28,800\\nwith faith and courage\\n\\n9\\n00:00:28,800 --> 00:00:33,800\\nRaise the revolutionary flag\\n\\n10\\n00:00:33,800 --> 00:00:37,800\\nWhich carries us ceaselessly towards triumph\\n\\n11\\n00:00:37,800 --> 00:00:41,800\\nRaise the revolutionary flag\\n\\n12\\n00:00:41,800 --> 00:00:45,800\\nWhich carries us ceaselessly towards triumph\\n\\n13\\n00:00:45,800 --> 00:00:50,800\\nGet up, working people, to the battle\\n\\n14\\n00:00:50,800 --> 00:00:54,800\\n[We] have to topple the reaction\\n\\n15\\n00:00:54,800 --> 00:00:59,800\\nTo the Barricades! To the Barricades!\\n\\n16\\n00:00:59,800 --> 00:01:03,800\\nFor the triumph of the Confederation\\n\\n17\\n00:01:03,800 --> 00:01:08,800\\nTo the Barricades! To the Barricades!\\n\\n18\\n00:01:08,800 --> 00:01:12,800\\nFor the triumph of the Confederation',\n", + " 'bytes': 1167,\n", + " 'sha1': 'ld2bip6f0y35d6ik2iy5zfet99vi16d',\n", + " 'parent_id': 90891352,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90888963,\n", + " 'timestamp': '2013-02-17T19:44:25Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 24721306,\n", + " 'title': '2012-06 Dessau Hauptbahnhof←Sportplatz Kreuzberge←Peterholzstraße.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:53,960 Hauptbahnhof 2 00:01:15,280 --> 00:01:27,000 Theater 3 00:02:18,600 --> 00:02:59,440 Hauptpost 4 00:04:07,000 --> 00:04:31,20...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:53,960\\nHauptbahnhof\\n\\n2\\n00:01:15,280 --> 00:01:27,000\\nTheater\\n\\n3\\n00:02:18,600 --> 00:02:59,440\\nHauptpost\\n\\n4\\n00:04:07,000 --> 00:04:31,200\\nMuseum Nord\\n\\n5\\n00:04:44,760 --> 00:04:59,720\\nDessau Center\\n\\n6\\n00:05:34,400 --> 00:06:06,880\\nFriedhofstraße\\n\\n7\\n00:06:39,360 --> 00:07:00,840\\nAm Alten Wasserturm\\n\\n8\\n00:08:04,240 --> 00:08:24,280\\nWasserwerkstraße\\n\\n9\\n00:08:54,320 --> 00:09:19,200\\nKlughardtstraße\\n\\n10\\n00:10:17,080 --> 00:10:38,240\\nAugustenstraße\\n\\n11\\n00:11:26,600 --> 00:12:02,960\\nKaufhalle am Kreuzberg\\n\\n12\\n00:12:50,880 --> 00:13:05,960\\nSportplatz Kreuzbergstraße\\n\\n13\\n00:13:17,640 --> 00:13:50,280\\nKaufhalle am Kreuzberg\\n\\n14\\n00:14:38,120 --> 00:14:49,840\\nAugustenstraße\\n\\n15\\n00:15:49,920 --> 00:16:07,320\\nFriedhof Ⅲ\\n\\n16\\n00:17:14,120 --> 00:17:59,800\\nDessauer Verkehrsgesellschaft\\n\\n17\\n00:18:35,840 --> 00:19:02,800\\nDamaschkestraße\\n\\n18\\n00:19:38,480 --> 00:19:41,480\\nPeterholzstraße',\n", + " 'bytes': 912,\n", + " 'sha1': 'kyr3h9q4w8kqxvbswzz3bl4uaup6kn1',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91014178,\n", + " 'timestamp': '2013-02-19T18:59:06Z',\n", + " 'user': {'id': 12488, 'text': 'Barcex'},\n", + " 'page': {'id': 24750378,\n", + " 'title': 'Madrid - Manifestación antidesahucios - No son suicidios - 130216.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:7,000 No son suicidios, son asesinatos'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:7,000\\nNo son suicidios, son asesinatos',\n", + " 'bytes': 63,\n", + " 'sha1': 'jcxcnlh5rt1uxw9k86gwvmb2wj2j9iq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91014261,\n", + " 'timestamp': '2013-02-19T19:00:52Z',\n", + " 'user': {'id': 12488, 'text': 'Barcex'},\n", + " 'page': {'id': 24750404,\n", + " 'title': 'Madrid - Manifestación antidesahucios - No son suicidios - 130216.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:7,000 It is not suicide, it is murder'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:7,000\\nIt is not suicide, it is murder',\n", + " 'bytes': 62,\n", + " 'sha1': 'a40kf0y9y3luac78vie6dfg9kf1f5l6',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91026332,\n", + " 'timestamp': '2013-02-19T22:46:43Z',\n", + " 'user': {'id': 1598622, 'text': 'Floatjon'},\n", + " 'page': {'id': 24752785,\n", + " 'title': 'Auld Lang Syne.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Initial captions',\n", + " 'text': \"1\\n00:00:13,000 --> 00:00:20,000\\nShould auld acquaintance be forgot,\\n\\n2\\n00:00:20,100 --> 00:00:24,400\\nand never brought to mind?\\n\\n3\\n00:00:24,600 --> 00:00:32,000\\nShould auld acquaintance be forgot\\n\\n4\\n00:00:32,100 --> 00:00:38,000\\nand days of auld lang syne.\\n\\n5\\n00:00:38,100 --> 00:00:45,000\\nFor auld lang syne, my dear,\\n\\n6\\n00:00:45,100 --> 00:00:51,000\\nfor auld lang syne,\\n\\n7\\n00:00:51,100 --> 00:00:57,000\\nwe'll take a cup of kindness yet,\\n\\n8\\n00:00:57,100 --> 00:01:04,000\\nfor auld lang syne.\\n\\n9\\n00:01:16,100 --> 00:01:23,000\\nAnd there’s a hand, my trusty friend!\\n\\n10\\n00:01:23,100 --> 00:01:29,000\\nand gie's a hand o’ thine !\\n\\n11\\n00:01:29,100 --> 00:01:35,000\\nWe’ll take a right gude-willy waught,\\n\\n12\\n00:01:35,100 --> 00:01:41,000\\nfor auld lang syne.\\n\\n13\\n00:01:41,100 --> 00:01:48,000\\nFor auld lang syne, my dear,\\n\\n14\\n00:01:48,100 --> 00:01:55,000\\nfor auld lang syne,\\n\\n15\\n00:01:55,100 --> 00:02:01,000\\nWe’ll take a right gude-willy waught,\\n\\n16\\n00:02:01,100 --> 00:02:08,000\\nfor auld lang syne.\",\n", + " 'bytes': 1001,\n", + " 'sha1': 'c8hhs7iupw12sbynmj31leyjgah3rpe',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 236171631,\n", + " 'timestamp': '2017-03-06T13:16:48Z',\n", + " 'user': {'id': 987147, 'text': 'Bdijkstra'},\n", + " 'page': {'id': 24787583,\n", + " 'title': 'Boys beware.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'correction',\n", + " 'text': '1\\n00:00:01,000 --> 00:00:06,400\\nSid Davis Productions Presents\\n\\n2\\n00:00:06,600 --> 00:00:13,400\\n<i>Boys Beware</i>\\n\\n3\\n00:00:13,600 --> 00:00:17,400\\nProduced with the cooperation of the Inglewood Police Department\\n\\n4\\n00:00:17,600 --> 00:00:21,400\\nand the Inglewood Unified School District.\\n\\n5\\n00:00:30,000 --> 00:00:34,400\\n\"Police station\" [Building] \"Police zone\" [Street sign]\\n\\n6\\n00:00:40,000 --> 00:00:44,400\\n\"Police\" [Sign] \"Shelter →\" [Sign]\\n\\n7\\n00:00:57,000 --> 00:00:59,400\\nI\\'m Lieutenant Williams,\\n\\n8\\n00:00:59,600 --> 00:01:02,400\\na police officer attached to the Juvenile Division. \\n\\n9\\n00:01:02,600 --> 00:01:04,600\\nI’m on my way to Monroe Junior High School \\n\\n10\\n00:01:04,800 --> 00:01:07,400\\nto talk to a group of young people.\\n\\n11\\n00:01:08,000 --> 00:01:10,400\\nThat looks innocent enough, doesn\\'t it? \\n\\n12\\n00:01:10,000 --> 00:01:11,400\\nLots of young people hitchhike.\\n\\n13\\n00:01:11,600 --> 00:01:14,400\\nSeems like a good way to get from one place to another.\\n\\n14\\n00:01:14,600 --> 00:01:18,400\\nBut sometimes, there are dangers involved that never meet the eye.\\n\\n15\\n00:01:20,000 --> 00:01:23,400\\nLet\\'s take the case of Jimmy Barnes.\\n\\n16\\n00:01:23,600 --> 00:01:26,400\\nJimmy played baseball all afternoon, and he didn\\'t feel like \\n\\n17\\n00:01:26,600 --> 00:01:29,400\\nwalking home, so he decided to thumb a ride.\\n\\n18\\n00:01:39,000 --> 00:01:41,400\\nHe’d done it a hundred times before,\\n\\n19\\n00:01:41,000 --> 00:01:43,400\\nAnd he didn\\'t think anything was unusual\\n\\n20\\n00:01:43,000 --> 00:01:46,400\\nwhen the driver struck up a friendly conversation.\\n\\n21\\n00:01:46,600 --> 00:01:48,400\\nIn fact, he seemed like a real nice guy.\\n\\n22\\n00:01:48,600 --> 00:01:51,400\\nHe asked Jimmy if he played baseball in the park often. \\n\\n22\\n00:01:51,600 --> 00:01:54,100\\nJimmy told him they practiced three times a week\\n\\n23\\n00:01:54,300 --> 00:01:56,400\\nand played a rival group on Friday afternoon.\\n\\n24\\n00:01:56,600 --> 00:01:58,400\\nThe stranger was a good listener, too.\\n\\n25\\n00:01:58,600 --> 00:02:00,400\\nand it only seemed minutes before\\n\\n26\\n00:02:00,600 --> 00:02:02,400\\nthey pulled up in front of Jimmy\\'s house.\\n\\n27\\n00:02:07,000 --> 00:02:09,100\\nWhen Jimmy got out,\\n\\n28\\n00:02:09,300 --> 00:02:11,400\\nthe stranger gave him a friendly pat.\\n\\n29\\n00:02:14,600 --> 00:02:16,400\\nThen he told him he\\'d see him again,\\n\\n30\\n00:02:16,600 --> 00:02:19,400\\nas he always drove by the park on his way home.\\n\\n31\\n00:02:34,600 --> 00:02:36,400\\nSure enough, \\n\\n32\\n00:02:36,600 --> 00:02:38,400\\nthe following day, when Jimmy finished playing ball, \\n\\n33\\n00:02:38,600 --> 00:02:41,400\\nwell, the man was there waiting.\\n\\n34\\n00:02:54,000 --> 00:02:55,400\\nThey stopped at a drive-in,\\n\\n35\\n00:02:55,600 --> 00:02:57,400\\nand the stranger treated him to a Coke.\\n\\n36\\n00:02:57,800 --> 00:02:59,400\\nDuring their conversation,\\n\\n37\\n00:02:59,600 --> 00:03:01,400\\nhe told several off-color jokes.\\n\\n38\\n00:03:01,600 --> 00:03:03,400\\nBut Jimmy had heard others before;\\n\\n39\\n00:03:03,600 --> 00:03:06,400\\nand, well, it made him feel big to so easily\\n\\n40\\n00:03:06,600 --> 00:03:08,400\\nwin the confidence of an older person.\\n\\n41\\n00:03:21,600 --> 00:03:24,400\\nThe following Saturday, they went fishing together.\\n\\n42\\n00:03:24,600 --> 00:03:27,400\\nBy now, they were using first names.\\n\\n43\\n00:03:27,600 --> 00:03:29,400\\nRalph said it was more friendly.\\n\\n44\\n00:03:37,000 --> 00:03:40,400\\nJimmy hadn\\'t enjoyed himself so much in a long time.\\n\\n45\\n00:03:45,000 --> 00:03:46,400\\nThen, during lunch,\\n\\n46\\n00:03:46,600 --> 00:03:48,400\\nRalph showed him some pornographic pictures.\\n\\n47\\n00:03:48,600 --> 00:03:51,400\\nJimmy knew he shouldn\\'t be interested,\\n\\n48\\n00:03:51,600 --> 00:03:52,400\\nbut, well, he was curious.\\n\\n49\\n00:03:52,600 --> 00:03:54,400\\nWhat Jimmy didn\\'t know was that Ralph was sick.\\n\\n50\\n00:03:54,600 --> 00:03:57,400\\nA sickness that was not visible like smallpox\\n\\n51\\n00:03:57,600 --> 00:04:00,400\\nbut no less dangerous and contagious:\\n\\n52\\n00:04:00,600 --> 00:04:02,400\\na sickness of the mind.\\n\\n53\\n00:04:03,000 --> 00:04:05,400\\nYou see, Ralph was a homosexual...\\n\\n54\\n00:04:05,600 --> 00:04:08,400\\na person who demands an intimate relationship\\n\\n55\\n00:04:08,600 --> 00:04:10,400\\nwith members of their own sex.\\n\\n56\\n00:04:13,000 --> 00:04:15,400\\nBut by now, Jimmy felt a fondness for Ralph;\\n\\n56\\n00:04:15,600 --> 00:04:17,400\\nand they continued to go places together.\\n\\n57\\n00:04:17,600 --> 00:04:21,400\\nRalph was generous and took Jimmy many interesting places \\n\\n58\\n00:04:21,000 --> 00:04:23,400\\nand did many nice things for him.\\n\\n59\\n00:04:27,000 --> 00:04:30,400\\nHe bought presents and even gave him money,\\n\\n60\\n00:04:30,600 --> 00:04:33,400\\nbut payments were expected in return.\\n\\n61\\n00:04:33,600 --> 00:04:37,400\\nYou see, Jimmy hadn\\'t recognized Ralph’s approach soon enough.\\n\\n62\\n00:04:37,600 --> 00:04:40,400\\nWhen Ralph first asked Jimmy to go fishing alone, \\n\\n63\\n00:04:40,600 --> 00:04:43,400\\nhe should have discussed it with his parents or teacher.\\n\\n64\\n00:04:45,000 --> 00:04:46,800\\n\"Police station\" [Sign]\\n\\n65\\n00:04:47,600 --> 00:04:49,200\\nFinally, Jimmy told his parents;\\n\\n66\\n00:04:49,400 --> 00:04:52,400\\nand they reported it to the Juvenile authorities.\\n\\n65\\n00:04:52,600 --> 00:04:54,400\\nRalph was arrested,\\n\\n67\\n00:04:54,600 --> 00:04:56,400\\nand Jimmy was released on probation\\n\\n68\\n00:04:56,600 --> 00:04:59,400\\nin the custody of his parents.\\n\\n69\\n00:05:00,600 --> 00:05:03,400\\nBut all homosexuals are not passive.\\n\\n70\\n00:05:03,600 --> 00:05:06,400\\nSome resort to violence, as in the case of Mike Merritt.\\n\\n71\\n00:05:13,000 --> 00:05:15,400\\nIn the heat of competition,\\n\\n72\\n00:05:15,600 --> 00:05:18,400\\nno one noticed the man who sat and watched.\\n\\n73\\n00:05:18,600 --> 00:05:21,400\\nAnd when the game broke up and the others left,\\n\\n74\\n00:05:21,600 --> 00:05:24,400\\nMike decided to stay and practice a little longer.\\n\\n75\\n00:05:33,000 --> 00:05:35,400\\nThe stranger joined him. He was friendly;\\n\\n76\\n00:05:35,600 --> 00:05:38,400\\nand, well, it was better than playing alone.\\n\\n77\\n00:05:42,000 --> 00:05:45,400\\nThen after a few shots, Mike realized he had already\\n\\n78\\n00:05:45,600 --> 00:05:48,400\\noverstayed his time, and suggested he had better leave.\\n\\n79\\n00:05:48,600 --> 00:05:50,400\\nThe stranger told him if he’d like to stay longer,\\n\\n80\\n00:05:50,600 --> 00:05:53,400\\nhe\\'d be glad to drive him home when they finished.\\n\\n81\\n00:05:53,600 --> 00:05:55,400\\nSounded great to Mike!\\n\\n82\\n00:05:55,600 --> 00:05:57,400\\nA chance to play longer and get a ride home, too!\\n\\n83\\n00:06:15,000 --> 00:06:17,400\\nWhen they finished, the stranger told him he\\'d make\\n\\n84\\n00:06:17,600 --> 00:06:20,400\\na fine player someday if he got lots of practice.\\n\\n85\\n00:06:20,600 --> 00:06:25,400\\nThe companionship, the praise, the friendly attitude dispelled\\n\\n86\\n00:06:25,600 --> 00:06:29,400\\nany misgivings Mike might have had about going with a stranger.\\n\\n87\\n00:06:29,600 --> 00:06:31,400\\nHe probably never realized until too late\\n\\n88\\n00:06:31,600 --> 00:06:33,400\\nthat he was riding in the shadow of death.\\n\\n89\\n00:06:33,600 --> 00:06:35,400\\nBut sometime that evening,\\n\\n90\\n00:06:35,600 --> 00:06:38,400\\nMike Merritt traded his life for a newspaper headline.\\n\\n91\\n00:06:46,000 --> 00:06:48,400\\nAs Denny and Jerry got the papers ready \\n\\n92\\n00:06:48,600 --> 00:06:50,400\\nfor Jerry’s afternoon delivery, \\n\\n93\\n00:06:50,600 --> 00:06:52,400\\nthey only casually noticed the two boys that \\n\\n94\\n00:06:52,600 --> 00:06:54,400\\nraced by in the afternoon traffic.\\n\\n95\\n00:06:55,600 --> 00:06:56,400\\nAnd they didn\\'t pay much attention to the car \\n\\n96\\n00:06:56,600 --> 00:06:59,200\\nthat drew up shortly afterwards,\\n\\n97\\n00:06:59,400 --> 00:07:01,400\\nuntil the man called them over.\\n\\n98\\n00:07:05,600 --> 00:07:07,400\\nHad two boys been by on bicycles?\\n\\n99\\n00:07:07,600 --> 00:07:08,700\\nThe boys nodded they had.\\n\\n100\\n00:07:08,900 --> 00:07:10,400\\nCould they recognize them if they saw them again?\\n\\n101\\n00:07:10,600 --> 00:07:12,400\\nWell, Denny guessed he could.\\n\\n102\\n00:07:12,600 --> 00:07:15,400\\n\"Then, hop in!\" the man said. \"Those are stolen bikes!\"\\n\\n103\\n00:07:15,600 --> 00:07:17,400\\nWithout giving it another thought, Denny got in; and the car sped away.\\n\\n104\\n00:07:17,600 --> 00:07:21,400\\nJerry watched. He’d been told many times \\n\\n105\\n00:07:21,000 --> 00:07:25,400\\nif a friend got in a car with a stranger to write down the license number.\\n\\n106\\n00:07:25,000 --> 00:07:27,800\\nIt didn\\'t seem to apply, but...\\n\\n107\\n00:07:28,000 --> 00:07:30,400\\nwell, fortunately, he marked it down.\\n\\n108\\n00:07:39,000 --> 00:07:41,400\\nWhen he delivered a paper to Denny\\'s house,\\n\\n109\\n00:07:41,600 --> 00:07:43,400\\nhe asked his mother if they caught the boys\\n\\n110\\n00:07:43,600 --> 00:07:46,400\\nthat had stolen the bicycles.\\n\\n111\\n00:07:46,600 --> 00:07:48,400\\nDenny hadn\\'t returned, so he told her the story.\\n\\n112\\n00:07:48,600 --> 00:07:51,400\\nand gave her the paper with the license number\\n\\n113\\n00:07:58,00 --> 00:08:00,400\\nBeing a careful parent, she decided to call the police.\\n\\n114\\n00:08:00,600 --> 00:08:03,400\\nJerry supplied the necessary information\\n\\n115\\n00:08:03,600 --> 00:08:06,400\\nand the stranger\\'s car was quickly spotted. \\n\\n116\\n00:08:06,600 --> 00:08:09,400\\nIt was a good example of how important it is to always\\n\\n117\\n00:08:09,600 --> 00:08:12,400\\nget the license number and description of any stranger \\n\\n118\\n00:08:12,600 --> 00:08:16,400\\nwho takes a young person off alone, no matter what they tell you.\\n\\n119\\n00:08:27,000 --> 00:08:31,400\\nPublic restrooms can often be a hangout for the homosexual.\\n\\n120\\n00:08:31,600 --> 00:08:34,400\\nBobby and his friends hadn\\'t noticed the man \\n\\n121\\n00:08:34,600 --> 00:08:36,400\\nwho had been in the restroom when they changed.\\n\\n122\\n00:08:36,600 --> 00:08:39,600\\nAnd as it was late, he suggested they take the shortcut under the pier.\\n\\n123\\n00:08:39,800 --> 00:08:43,400\\nBut the others preferred to take the more traveled way home.\\n\\n124\\n00:09:01,000 --> 00:09:04,400\\nWhen Bobby recognized the stranger as the man in the restroom, \\n\\n125\\n00:09:04,600 --> 00:09:08,400\\nthe shortcut under the pier didn\\'t seem like a good idea at all.\\n\\n126\\n00:09:16,000 --> 00:09:20,400\\nAfter all, it’s more fun to stay with your friends anyway.\\n\\n127\\n00:09:20,600 --> 00:09:24,400\\nBobby had made a wise decision. It may have saved his life.\\n\\n128\\n00:09:27,000 --> 00:09:29,400\\nThe decision is always yours...\\n\\n129\\n00:09:29,600 --> 00:09:32,400\\n...and your whole future may depend on making the right one.\\n\\n130\\n00:09:33,600 --> 00:09:35,400\\nSo, no matter where you meet a stranger,\\n\\n131\\n00:09:35,600 --> 00:09:38,400\\nbe careful if they are too friendly \\n\\n132\\n00:09:38,600 --> 00:09:40,400\\nif try to win your confidence too quickly \\n\\n133\\n00:09:40,600 --> 00:09:42,400\\nand if they become overly personal.\\n\\n134\\n00:09:42,600 --> 00:09:45,400\\nOne never knows when the homosexual is about.\\n\\n135\\n00:09:45,600 --> 00:09:48,400\\nHe may appear normal, and it may be too late \\n\\n136\\n00:09:48,600 --> 00:09:51,400\\nwhen you discover he is mentally ill.\\n\\n137\\n00:09:51,600 --> 00:09:54,400\\nSo keep with your group, and don\\'t go off alone with strangers\\n\\n138\\n00:09:54,600 --> 00:09:58,400\\nunless you have the permission of your parent or teacher.\\n\\n139\\n00:10:05,000 --> 00:10:09,400\\nThe End A Sid Davis Production',\n", + " 'bytes': 11104,\n", + " 'sha1': '3myp120yyyejlrpmyoskez0nvt10k3a',\n", + " 'parent_id': 189745054,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91237785,\n", + " 'timestamp': '2013-02-22T16:37:32Z',\n", + " 'user': {'id': 472568, 'text': 'Wizardist'},\n", + " 'page': {'id': 24805311,\n", + " 'title': \"Artist's impression of the evolution of a hot high-mass binary star.ogv.be-tarask.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'test, will be finished soon',\n", + " 'text': '1\\n00:00:03,000 --> 00:00:16,000\\nБальшыня вельмі гарачых і яскравых зорак знаходзяцца ў блізкіх парах.\\n\\n2\\n00:00:18,000 --> 00:00:24,000\\nГэтыя масіўныя зоркі маюць кароткае жыцьцё і эвалюцыянуюць хутка.\\n\\n3\\n00:00:26,000 --> 00:00:30,400\\nГэтае мастацкае ўвасабленьне адлюстроўвае тыповае жыцьцё такіх яскравых пар.\\n\\n4\\n00:00:33,000 --> 00:00:38,000\\nПершая зорка пачынае «высмоктваць» рэчыва з другой.',\n", + " 'bytes': 621,\n", + " 'sha1': 'gdlmvrilab583fe6z2bx2fw6wqd14bs',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91272401,\n", + " 'timestamp': '2013-02-22T23:28:49Z',\n", + " 'user': {'id': 12488, 'text': 'Barcex'},\n", + " 'page': {'id': 24818303,\n", + " 'title': 'Madrid - Manifestación antidesahucios - Botella al contenedor - 130216.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,000 --> 00:00:08,000 La Botella, al contenedor'\",\n", + " 'text': '1\\n00:00:01,000 --> 00:00:08,000\\nLa Botella, al contenedor',\n", + " 'bytes': 57,\n", + " 'sha1': '8ifuou5vmsl7rsa5x8301t401rgl12s',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91272661,\n", + " 'timestamp': '2013-02-22T23:37:16Z',\n", + " 'user': {'id': 12488, 'text': 'Barcex'},\n", + " 'page': {'id': 24818315,\n", + " 'title': 'Madrid - Manifestación antidesahucios - Botella al contenedor - 130216.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:08,000\\nThe <i>Botella</i> goes to the waste container\\n<i>(Botella: Spanish for bottle)</i>',\n", + " 'bytes': 115,\n", + " 'sha1': '6i976y13huj2t2fkg23uujheha5r21v',\n", + " 'parent_id': 91272612,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 189745059,\n", + " 'timestamp': '2016-03-08T03:14:56Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 24833865,\n", + " 'title': 'BoysBewarecolorizedVersion.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:03,400\\n<i>Boys Beware</i>\\n\\n2\\n00:00:5,000 --> 00:00:7,400\\n\"Police station\" [Building] \"Police zone\" [Street sign]\\n\\n3\\n00:00:10,000 --> 00:00:13,400\\n\"Police\" [Sign] \"Shelter →\" [Sign]\\n\\n4\\n00:00:29,000 --> 00:00:31,400\\nI\\'m Lieutenant Williams,\\n\\n5\\n00:00:31,600 --> 00:00:34,400\\na police officer attached to the Juvenile Division. \\n\\n6\\n00:00:34,600 --> 00:00:36,600\\nI\\'m on my way to Monroe Junior High School \\n\\n7\\n00:00:36,800 --> 00:00:38,800\\nto talk to a group of young people.\\n\\n8\\n00:00:39,000 --> 00:00:41,400\\nThat looks innocent enough, doesn\\'t it? \\n\\n9\\n00:00:41,000 --> 00:00:43,400\\nLots of young people hitchhike.\\n\\n10\\n00:00:43,600 --> 00:00:46,400\\nSeems like a good way to get from one place to another.\\n\\n11\\n00:00:46,600 --> 00:00:49,400\\nBut sometimes, there are dangers involved that never meet the eye.\\n\\n12\\n00:00:52,000 --> 00:00:55,400\\nLet\\'s take the case of Jimmy Barnes.\\n\\n13\\n00:00:55,600 --> 00:00:59,400\\nJimmy played baseball all afternoon, and he didn\\'t feel like \\n\\n14\\n00:00:59,600 --> 00:01:02,400\\nwalking home, so he decided to thumb a ride.\\n\\n15\\n00:01:10,000 --> 00:01:13,400\\nHe\\'d done it a hundred times before,\\n\\n16\\n00:01:13,000 --> 00:01:15,400\\nAnd he didn\\'t think anything was unusual\\n\\n17\\n00:01:15,000 --> 00:01:18,400\\nwhen the driver struck up a friendly conversation.\\n\\n18\\n00:01:18,600 --> 00:01:20,400\\nIn fact, he seemed like a real nice guy.\\n\\n19\\n00:01:20,600 --> 00:01:23,400\\nHe asked Jimmy if he played baseball in the park often. \\n\\n20\\n00:01:23,600 --> 00:01:25,100\\nJimmy told him they practiced three times a week\\n\\n21\\n00:01:25,300 --> 00:01:28,400\\nand played a rival group on Friday afternoon.\\n\\n22\\n00:01:28,600 --> 00:01:30,400\\nThe stranger was a good listener, too.\\n\\n23\\n00:01:30,600 --> 00:01:32,400\\nand it only seemed minutes before\\n\\n24\\n00:01:32,600 --> 00:01:35,400\\nthey pulled up in front of Jimmy\\'s house.\\n\\n25\\n00:01:39,000 --> 00:01:40,100\\nWhen Jimmy got out,\\n\\n26\\n00:01:40,300 --> 00:01:43,400\\nthe stranger gave him a friendly pat.\\n\\n27\\n00:01:45,600 --> 00:01:47,400\\nThen he told him he\\'d see him again,\\n\\n28\\n00:01:47,600 --> 00:01:50,400\\nas he always drove by the park on his way home.\\n\\n29\\n00:02:06,000 --> 00:02:07,400\\nSure enough, \\n\\n30\\n00:02:07,600 --> 00:02:09,400\\nthe following day, when [Jimmy] finished playing ball, \\n\\n31\\n00:02:09,600 --> 00:02:12,400\\nwell, the man was there waiting.\\n\\n32\\n00:02:24,000 --> 00:02:25,400\\nThey stopped at a drive-in,\\n\\n33\\n00:02:25,600 --> 00:02:28,400\\nand the stranger treated him to a Coke.\\n\\n34\\n00:02:28,800 --> 00:02:29,400\\nDuring their conversation,\\n\\n35\\n00:02:29,600 --> 00:02:31,400\\nhe told several off-color jokes.\\n\\n36\\n00:02:31,600 --> 00:02:33,400\\nBut Jimmy had heard others before;\\n\\n37\\n00:02:33,600 --> 00:02:35,400\\nand, well, it made him feel big to so easily\\n\\n38\\n00:02:35,600 --> 00:02:38,400\\nwin the confidence of an older person.\\n\\n39\\n00:02:51,600 --> 00:02:54,400\\nThe following Saturday, they went fishing together.\\n\\n40\\n00:02:54,600 --> 00:02:56,400\\nBy now, they were using first names.\\n\\n41\\n00:02:56,600 --> 00:02:59,400\\nRalph said it was more friendly.\\n\\n42\\n00:03:07,000 --> 00:03:10,400\\nJimmy hadn\\'t enjoyed himself so much in a long time.\\n\\n43\\n00:03:14,000 --> 00:03:16,400\\nThen, during lunch,\\n\\n44\\n00:03:16,600 --> 00:03:18,400\\nRalph showed him some pornographic pictures.\\n\\n45\\n00:03:18,600 --> 00:03:20,400\\nJimmy knew he shouldn\\'t be interested,\\n\\n46\\n00:03:20,600 --> 00:03:22,400\\nbut, well, he was curious.\\n\\n47\\n00:03:22,600 --> 00:03:25,400\\nWhat Jimmy didn\\'t know was that Ralph was sick.\\n\\n48\\n00:03:25,600 --> 00:03:28,400\\nA sickness that was not visible like smallpox\\n\\n49\\n00:03:28,600 --> 00:03:31,400\\nbut no less dangerous and contagious:\\n\\n50\\n00:03:31,600 --> 00:03:33,400\\na sickness of the mind.\\n\\n51\\n00:03:33,000 --> 00:03:35,400\\nYou see, Ralph was a homosexual...\\n\\n52\\n00:03:35,600 --> 00:03:38,400\\na person who demands an intimate relationship\\n\\n53\\n00:03:38,600 --> 00:03:41,400\\nwith members of their own sex.\\n\\n54\\n00:03:42,000 --> 00:03:45,400\\nBut by now, Jimmy felt a fondness for Ralph;\\n\\n55\\n00:03:45,600 --> 00:03:48,400\\nand they continued to go places together.\\n\\n56\\n00:03:48,600 --> 00:03:51,400\\nRalph was generous and took Jimmy many interesting places \\n\\n57\\n00:03:51,000 --> 00:03:54,400\\nand did many nice things for him.\\n\\n58\\n00:03:57,000 --> 00:04:00,400\\nHe bought presents and even gave him money,\\n\\n59\\n00:04:00,600 --> 00:04:03,400\\nbut payments were expected in return.\\n\\n60\\n00:04:03,600 --> 00:04:07,400\\nYou see, Jimmy hadn\\'t recognized Ralph\\'s approach soon enough.\\n\\n61\\n00:04:07,600 --> 00:04:10,400\\nWhen Ralph first asked Jimmy to go fishing alone, \\n\\n62\\n00:04:10,600 --> 00:04:13,400\\nhe should have discussed it with his parents or teacher.\\n\\n63\\n00:04:15,000 --> 00:04:16,800\\n\"Police station\" [Sign]\\n\\n64\\n00:04:17,600 --> 00:04:19,200\\nFinally, Jimmy told his parents;\\n\\n65\\n00:04:19,400 --> 00:04:22,400\\nand they reported it to the Juvenile authorities.\\n\\n66\\n00:04:22,600 --> 00:04:24,400\\nRalph was arrested,\\n\\n67\\n00:04:24,600 --> 00:04:26,400\\nand Jimmy was released on probation\\n\\n68\\n00:04:26,600 --> 00:04:29,400\\nin the custody of his parents.\\n\\n69\\n00:04:30,600 --> 00:04:33,400\\nBut all homosexuals are not passive.\\n\\n70\\n00:04:33,600 --> 00:4:36,400\\nSome resort to violence, as in the case of Mike Merritt.\\n\\n71\\n00:04:43,000 --> 00:04:45,400\\nIn the heat of competition,\\n\\n72\\n00:04:45,600 --> 00:04:48,400\\nno one noticed the man who sat and watched.\\n\\n73\\n00:04:48,600 --> 00:04:51,400\\nAnd when the game broke up and the others left,\\n\\n74\\n00:04:51,600 --> 00:04:54,400\\nMike decided to stay and practice a little longer.\\n\\n75\\n00:05:03,000 --> 00:05:05,400\\nThe stranger joined him. He was friendly;\\n\\n76\\n00:05:05,600 --> 00:05:08,400\\nand, well, it was better than playing alone.\\n\\n77\\n00:05:12,000 --> 00:05:15,400\\nThen after a few shots, Mike realized he had already\\n\\n78\\n00:05:15,000 --> 00:05:18,400\\noverstayed his time, and suggested he had better leave.\\n\\n79\\n00:05:18,600 --> 00:05:21,400\\nThe stranger told him if he’d like to stay longer,\\n\\n80\\n00:05:21,600 --> 00:05:23,400\\nhe\\'d be glad to drive him home when they finished.\\n\\n81\\n00:05:23,600 --> 00:05:25,400\\nSounded great to Mike!\\n\\n82\\n00:05:25,600 --> 00:05:27,400\\nA chance to play longer and get a ride home, too!\\n\\n83\\n00:05:45,000 --> 00:05:47,400\\nWhen they finished, the stranger told him he\\'d make\\n\\n84\\n00:05:47,600 --> 00:05:50,400\\na fine player someday if he got lots of practice.\\n\\n85\\n00:05:50,600 --> 00:05:55,400\\nThe companionship, the praise, the friendly attitude dispelled\\n\\n86\\n00:05:55,600 --> 00:05:59,400\\nany misgivings Mike might have had about going with a stranger.\\n\\n87\\n00:05:59,600 --> 00:06:01,400\\nHe probably never realized until too late\\n\\n88\\n00:06:01,600 --> 00:06:03,400\\nthat he was riding in the shadow of death.\\n\\n89\\n00:06:03,600 --> 00:06:05,400\\nBut sometime that evening,\\n\\n90\\n00:06:05,600 --> 00:06:08,400\\nMike Merritt traded his life for a newspaper headline.\\n\\n91\\n00:06:16,000 --> 00:06:18,400\\nAs Denny and Jerry got the papers ready \\n\\n92\\n00:06:18,600 --> 00:06:20,400\\nfor Jerry\\'s afternoon delivery, \\n\\n93\\n00:06:20,600 --> 00:06:22,400\\nthey only casually noticed the two boys that \\n\\n94\\n00:06:22,600 --> 00:06:24,400\\nraced by in the afternoon traffic.\\n\\n95\\n00:06:25,600 --> 00:06:26,400\\nAnd they didn\\'t pay much attention to the car \\n\\n96\\n00:06:26,600 --> 00:06:29,200\\nthat drew up shortly afterwards,\\n\\n97\\n00:06:29,400 --> 00:06:31,400\\nuntil the man called them over.\\n\\n98\\n00:06:35,600 --> 00:06:37,400\\nHad two boys been by on bicycles?\\n\\n99\\n00:06:37,600 --> 00:06:38,700\\nThe boys nodded they had.\\n\\n100\\n00:06:38,900 --> 00:06:40,400\\nCould they recognize them if they saw them again?\\n\\n101\\n00:06:40,600 --> 00:06:42,400\\nWell, Denny guessed he could.\\n\\n102\\n00:06:42,600 --> 00:06:45,400\\n\"Then, hop in!\" the man said. \"Those are stolen bikes!\"\\n\\n103\\n00:06:45,600 --> 00:06:47,400\\nWithout giving it another thought, Denny got in; and the car sped away.\\n\\n104\\n00:06:47,600 --> 00:06:51,400\\nJerry watched. He\\'d been told many times \\n\\n105\\n00:06:51,000 --> 00:06:55,400\\nif a friend got in a car with a stranger to write down the license number.\\n\\n106\\n00:06:55,000 --> 00:06:57,800\\nIt didn\\'t seem to apply, but...\\n\\n107\\n00:06:58,000 --> 00:07:00,400\\nwell, fortunately, he marked it down.\\n\\n108\\n00:07:09,000 --> 00:07:11,400\\nWhen we delivered a paper to Denny\\'s house,\\n\\n109\\n00:07:11,600 --> 00:07:13,400\\nhe asked his mother if they caught the boys\\n\\n110\\n00:07:13,600 --> 00:07:16,400\\nthat had stolen the bicycles.\\n\\n111\\n00:07:16,600 --> 00:07:18,400\\nDenny hadn\\'t returned, so he told her the story.\\n\\n112\\n00:07:18,600 --> 00:07:21,400\\nand gave her the paper with the license number\\n\\n113\\n00:07:28,00 --> 00:07:30,400\\nBeing a careful parent, she decided to call the police.\\n\\n114\\n00:07:30,600 --> 00:07:33,400\\nJerry supplied the necessary information\\n\\n115\\n00:07:33,600 --> 00:07:36,400\\nand the stranger\\'s car was quickly spotted. \\n\\n116\\n00:07:36,600 --> 00:07:39,400\\nIt was a good example of how important it is to always\\n\\n117\\n00:07:39,600 --> 00:07:42,400\\nget the license number and description of any stranger \\n\\n118\\n00:07:42,600 --> 00:07:46,400\\nwho takes a young person off alone, no matter what they tell you.\\n\\n119\\n00:07:57,000 --> 00:08:01,400\\nPublic restrooms can often be a hangout for the homosexual.\\n\\n120\\n00:08:01,600 --> 00:08:04,400\\nBobby and his friends hadn\\'t noticed the man \\n\\n121\\n00:08:04,600 --> 00:08:06,400\\nwho had been in the restroom when they changed.\\n\\n122\\n00:08:06,600 --> 00:08:09,600\\nAnd as it was late, he suggested they take the shortcut under the pier.\\n\\n123\\n00:08:09,800 --> 00:08:13,400\\nBut the others preferred to take the more traveled way home.\\n\\n124\\n00:08:31,000 --> 00:08:34,400\\nWhen Bobby recognized the stranger as the man in the restroom, \\n\\n125\\n00:08:34,600 --> 00:08:38,400\\nthe shortcut under the pier didn\\'t seem like a good idea at all.\\n\\n126\\n00:08:46,000 --> 00:08:50,400\\nAfter all, it’s more fun to stay with your friends anyway.\\n\\n127\\n00:08:50,600 --> 00:08:54,400\\nBobby had made a wise decision. It may have saved his life.\\n\\n128\\n00:08:57,000 --> 00:08:59,400\\nThe decision is always yours...\\n\\n129\\n00:08:59,600 --> 00:09:02,400\\n...and your whole future may depend on making the right one.\\n\\n130\\n00:09:03,600 --> 00:09:05,400\\nSo, no matter where you meet a stranger,\\n\\n131\\n00:09:05,600 --> 00:09:08,400\\nbe careful if they are too friendly \\n\\n132\\n00:09:08,600 --> 00:09:10,400\\nif try to win your confidence too quickly \\n\\n133\\n00:09:10,600 --> 00:09:12,400\\nand if they become overly personal.\\n\\n134\\n00:09:12,600 --> 00:09:15,400\\nOne never knows when the homosexual is about.\\n\\n135\\n00:09:15,600 --> 00:09:18,400\\nHe may appear normal, and it may be too late \\n\\n136\\n00:09:18,600 --> 00:09:21,400\\nwhen you discover he is mentally ill.\\n\\n137\\n00:09:21,600 --> 00:09:24,400\\nSo keep with your group, and don\\'t go off alone with strangers\\n\\n138\\n00:09:24,600 --> 00:09:28,400\\nunless you have the permission of your parent or teacher.\\n\\n139\\n00:9:35,000 --> 00:9:39,400\\nThe End A Sid Davis Production',\n", + " 'bytes': 10848,\n", + " 'sha1': 'l2yowxwnwselw8jju67qhb5x9kffx2x',\n", + " 'parent_id': 189744605,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 189745090,\n", + " 'timestamp': '2016-03-08T03:15:14Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 24835123,\n", + " 'title': 'BoysAware1973.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:05,400\\nSid Davis Productions Presents\\n\\n2\\n00:00:05,600 --> 00:00:12,400\\n<i>Boys Aware</i>\\n\\n3\\n00:00:12,600 --> 00:00:16,400\\nProduced with the co-operation of the Inglewood Unified School District\\n\\n4\\n00:00:16,600 --> 00:00:20,400\\nand the Inglewood Police Department.\\n\\n5\\n00:00:32,000 --> 00:00:35,400\\n\"Police\" [Marker on car]\\n\\n7\\n00:00:56,000 --> 00:00:58,400\\nI\\'m Lieutenant Williams,\\n\\n8\\n00:00:58,600 --> 00:01:01,400\\na police officer attached to the Juvenile Division. \\n\\n9\\n00:01:01,600 --> 00:01:03,600\\nI\\'m on my way to Monroe Junior High School \\n\\n10\\n00:01:03,800 --> 00:01:06,400\\nto talk to a group of young people.\\n\\n11\\n00:01:06,500 --> 00:01:08,400\\nThat looks innocent enough, doesn\\'t it? \\n\\n12\\n00:01:08,600 --> 00:01:10,400\\nLots of young people hitchhike.\\n\\n13\\n00:01:10,600 --> 00:01:13,400\\nSeems like a good way to get from one place to another.\\n\\n14\\n00:01:13,600 --> 00:01:17,400\\nBut sometimes, there are dangers involved that never meet the eye.\\n\\n15\\n00:01:19,000 --> 00:01:22,400\\nLet\\'s take the case of Jimmy Barnes.\\n\\n16\\n00:01:22,600 --> 00:01:25,400\\nJimmy played baseball all afternoon, and he didn\\'t feel like \\n\\n17\\n00:01:25,600 --> 00:01:28,400\\nwalking home, so he decided to thumb a ride.\\n\\n18\\n00:01:37,600 --> 00:01:39,800\\nHe\\'d done it a hundred times before,\\n\\n19\\n00:01:40,000 --> 00:01:41,600\\nAnd he didn\\'t think anything was unusual\\n\\n20\\n00:01:41,800 --> 00:01:44,800\\nwhen the driver struck up a friendly conversation.\\n\\n21\\n00:01:45,000 --> 00:01:47,400\\nIn fact, he seemed like a real nice guy.\\n\\n22\\n00:01:47,600 --> 00:01:50,400\\nHe asked Jimmy if he played baseball in the park often. \\n\\n22\\n00:01:50,600 --> 00:01:53,100\\nJimmy told him they practiced three times a week\\n\\n23\\n00:01:53,300 --> 00:01:55,400\\nand played a rival group on Friday afternoon.\\n\\n24\\n00:01:55,600 --> 00:01:57,400\\nThe stranger was a good listener, too.\\n\\n25\\n00:01:57,600 --> 00:01:59,400\\nand it only seemed minutes before\\n\\n26\\n00:01:59,600 --> 00:02:01,400\\nthey pulled up in front of Jimmy\\'s house.\\n\\n27\\n00:02:06,600 --> 00:02:08,400\\nWhen Jimmy got out,\\n\\n28\\n00:02:08,600 --> 00:02:11,400\\nthe stranger gave him a friendly pat.\\n\\n29\\n00:02:13,600 --> 00:02:15,400\\nThen he told him he\\'d see him again,\\n\\n30\\n00:02:15,600 --> 00:02:18,400\\nas he always drove by the park on his way home.\\n\\n31\\n00:02:33,600 --> 00:02:35,400\\nSure enough, \\n\\n32\\n00:02:35,600 --> 00:02:37,400\\nthe following day, when Jimmy finished playing ball, \\n\\n33\\n00:02:37,600 --> 00:02:40,400\\nwell, the man was there waiting.\\n\\n34\\n00:02:53,000 --> 00:02:54,400\\nThey stopped at a drive-in,\\n\\n35\\n00:02:54,600 --> 00:02:56,400\\nand the stranger treated him to a Coke.\\n\\n36\\n00:02:56,800 --> 00:02:58,400\\nDuring their conversation,\\n\\n37\\n00:02:58,600 --> 00:03:00,400\\nhe told several off-color jokes.\\n\\n38\\n00:03:00,600 --> 00:03:02,400\\nBut Jimmy had heard others before;\\n\\n39\\n00:03:02,600 --> 00:03:05,400\\nand, well, it made him feel big to so easily\\n\\n40\\n00:03:05,600 --> 00:03:07,400\\nwin the confidence of an older person.\\n\\n41\\n00:03:20,600 --> 00:03:23,400\\nThe following Saturday, they went fishing together.\\n\\n42\\n00:03:23,600 --> 00:03:26,400\\nBy now, they were using first names.\\n\\n43\\n00:03:26,600 --> 00:03:28,400\\nRalph said it was more friendly.\\n\\n44\\n00:03:36,000 --> 00:03:39,400\\nJimmy hadn\\'t enjoyed himself so much in a long time.\\n\\n45\\n00:03:44,000 --> 00:03:45,400\\nThen, during lunch,\\n\\n46\\n00:03:45,600 --> 00:03:47,400\\nRalph showed him some pornographic pictures.\\n\\n47\\n00:03:47,600 --> 00:03:50,400\\nJimmy knew he shouldn\\'t be interested,\\n\\n48\\n00:03:50,600 --> 00:03:51,400\\nbut, well, he was curious.\\n\\n49\\n00:03:51,600 --> 00:03:53,400\\nWhat Jimmy didn\\'t know was that Ralph was sick.\\n\\n50\\n00:03:53,600 --> 00:03:56,400\\nA sickness that was not visible like smallpox\\n\\n51\\n00:03:56,600 --> 00:03:59,400\\nbut no less dangerous and contagious:\\n\\n52\\n00:03:59,600 --> 00:04:01,400\\na sickness of the mind.\\n\\n53\\n00:04:02,000 --> 00:04:04,400\\nYou see, Ralph was a homosexual...\\n\\n54\\n00:04:04,600 --> 00:04:07,400\\na person who demands an intimate relationship\\n\\n55\\n00:04:07,600 --> 00:04:09,400\\nwith members of their own sex.\\n\\n56\\n00:04:12,000 --> 00:04:14,400\\nBut by now, Jimmy felt a fondness for Ralph;\\n\\n56\\n00:04:14,600 --> 00:04:16,400\\nand they continued to go places together.\\n\\n57\\n00:04:16,600 --> 00:04:20,400\\nRalph was generous and took Jimmy many interesting places \\n\\n58\\n00:04:20,000 --> 00:04:22,400\\nand did many nice things for him.\\n\\n59\\n00:04:26,000 --> 00:04:29,400\\nHe bought presents and even gave him money,\\n\\n60\\n00:04:29,600 --> 00:04:32,400\\nbut payments were expected in return.\\n\\n61\\n00:04:32,600 --> 00:04:36,400\\nYou see, Jimmy hadn\\'t recognized Ralph’s approach soon enough.\\n\\n62\\n00:04:36,600 --> 00:04:39,400\\nWhen Ralph first asked Jimmy to go fishing alone, \\n\\n63\\n00:04:39,600 --> 00:04:42,400\\nhe should have discussed it with his parents or teacher.\\n\\n64\\n00:04:44,000 --> 00:04:45,800\\n\"Police\" [Sign]\\n\\n65\\n00:04:46,600 --> 00:04:48,200\\nFinally, Jimmy told his parents;\\n\\n66\\n00:04:48,400 --> 00:04:51,400\\nand they reported it to the Juvenile authorities.\\n\\n65\\n00:04:51,600 --> 00:04:53,400\\nRalph was arrested,\\n\\n67\\n00:04:53,600 --> 00:04:55,400\\nand Jimmy was released on probation\\n\\n68\\n00:04:55,600 --> 00:04:58,400\\nin the custody of his parents.\\n\\n69\\n00:05:00,600 --> 00:05:02,400\\nBut all homosexuals are not passive.\\n\\n70\\n00:05:02,600 --> 00:05:05,400\\nSome resort to violence, as in the case of Mike Merritt.\\n\\n71\\n00:05:12,000 --> 00:05:14,400\\nIn the heat of competition,\\n\\n72\\n00:05:14,600 --> 00:05:17,400\\nno one noticed the man who sat and watched.\\n\\n73\\n00:05:17,600 --> 00:05:20,400\\nAnd when the game broke up and the others left,\\n\\n74\\n00:05:20,600 --> 00:05:23,400\\nMike decided to stay and practice a little longer.\\n\\n75\\n00:05:32,000 --> 00:05:34,400\\nThe stranger joined him. He was friendly;\\n\\n76\\n00:05:34,600 --> 00:05:37,400\\nand, well, it was better than playing alone.\\n\\n77\\n00:05:41,000 --> 00:05:44,400\\nThen after a few shots, Mike realized he had already\\n\\n78\\n00:05:44,600 --> 00:05:47,400\\noverstayed his time, and suggested he had better leave.\\n\\n79\\n00:05:47,600 --> 00:05:49,400\\nThe stranger told him if he’d like to stay longer,\\n\\n80\\n00:05:49,600 --> 00:05:52,400\\nhe\\'d be glad to drive him home when they finished.\\n\\n81\\n00:05:52,600 --> 00:05:54,400\\nSounded great to Mike!\\n\\n82\\n00:05:54,600 --> 00:05:56,400\\nA chance to play longer and get a ride home, too!\\n\\n83\\n00:06:14,000 --> 00:06:16,400\\nWhen they finished, the stranger told him he\\'d make\\n\\n84\\n00:06:16,600 --> 00:06:19,400\\na fine player someday if he got lots of practice.\\n\\n85\\n00:06:19,600 --> 00:06:24,400\\nThe companionship, the praise, the friendly attitude dispelled\\n\\n86\\n00:06:24,600 --> 00:06:28,400\\nany misgivings Mike might have had about going with a stranger.\\n\\n87\\n00:06:28,600 --> 00:06:30,400\\nHe probably never realized until too late\\n\\n88\\n00:06:30,600 --> 00:06:32,400\\nthat he was riding in the shadow of death.\\n\\n89\\n00:06:32,600 --> 00:06:34,400\\nBut sometime that evening,\\n\\n90\\n00:06:34,600 --> 00:06:37,400\\nMike Merritt traded his life for a newspaper headline.\\n\\n91\\n00:06:45,000 --> 00:06:47,400\\nAs Denny and Jerry got the papers ready \\n\\n92\\n00:06:47,600 --> 00:06:49,400\\nfor Jerry\\'s afternoon delivery, \\n\\n93\\n00:06:49,600 --> 00:06:51,400\\nthey only casually noticed the two boys that \\n\\n94\\n00:06:51,600 --> 00:06:53,400\\nraced by in the afternoon traffic.\\n\\n95\\n00:06:54,600 --> 00:06:55,400\\nAnd they didn\\'t pay much attention to the car \\n\\n96\\n00:06:55,600 --> 00:06:58,200\\nthat drew up shortly afterwards,\\n\\n97\\n00:06:58,400 --> 00:07:00,400\\nuntil the man called them over.\\n\\n98\\n00:07:04,600 --> 00:07:06,400\\nHad two boys been by on bicycles?\\n\\n99\\n00:07:06,600 --> 00:07:07,700\\nThe boys nodded they had.\\n\\n100\\n00:07:07,900 --> 00:07:09,400\\nCould they recognize them if they saw them again?\\n\\n101\\n00:07:09,600 --> 00:07:11,400\\nWell, Denny guessed he could.\\n\\n102\\n00:07:11,600 --> 00:07:14,400\\n\"Then, hop in!\" the man said. \"Those are stolen bikes!\"\\n\\n103\\n00:07:14,600 --> 00:07:16,400\\nWithout giving it another thought, Denny got in; and the car sped away.\\n\\n104\\n00:07:16,600 --> 00:07:20,400\\nJerry watched. He’d been told many times \\n\\n105\\n00:07:20,000 --> 00:07:23,800\\nif a friend got in a car with a stranger to write down the license number.\\n\\n106\\n00:07:24,000 --> 00:07:26,800\\nIt didn\\'t seem to apply, but...\\n\\n107\\n00:07:27,000 --> 00:07:29,400\\nwell, fortunately, he marked it down.\\n\\n108\\n00:07:38,000 --> 00:07:40,400\\nWhen we delivered a paper to Denny\\'s house,\\n\\n109\\n00:07:40,600 --> 00:07:42,400\\nhe asked his mother if they caught the boys\\n\\n110\\n00:07:42,600 --> 00:07:45,400\\nthat had stolen the bicycles.\\n\\n111\\n00:07:45,600 --> 00:07:47,400\\nDenny hadn\\'t returned, so he told her the story.\\n\\n112\\n00:07:47,600 --> 00:07:50,400\\nand gave her the paper with the license number\\n\\n113\\n00:07:57,00 --> 00:07:59,400\\nBeing a careful parent, she decided to call the police.\\n\\n114\\n00:07:59,600 --> 00:08:02,400\\nJerry supplied the necessary information\\n\\n115\\n00:08:02,600 --> 00:08:05,400\\nand the stranger\\'s car was quickly spotted. \\n\\n116\\n00:08:05,600 --> 00:08:08,400\\nIt was a good example of how important it is to always\\n\\n117\\n00:08:08,600 --> 00:08:11,400\\nget the license number and description of any stranger \\n\\n118\\n00:08:11,600 --> 00:08:15,400\\nwho takes a young person off alone, no matter what they tell you.\\n\\n119\\n00:08:26,000 --> 00:08:30,400\\nPublic restrooms can often be a hangout for the homosexual.\\n\\n120\\n00:08:30,600 --> 00:08:33,400\\nBobby and his friends hadn\\'t noticed the man \\n\\n121\\n00:08:33,600 --> 00:08:35,400\\nwho had been in the restroom when they changed.\\n\\n122\\n00:08:35,600 --> 00:08:38,600\\nAnd as it was late, he suggested they take the shortcut under the pier.\\n\\n123\\n00:08:38,800 --> 00:08:42,400\\nBut the others preferred to take the more traveled way home.\\n\\n124\\n00:09:00,000 --> 00:09:03,400\\nWhen Bobby recognized the stranger as the man in the restroom, \\n\\n125\\n00:09:03,600 --> 00:09:07,400\\nthe shortcut under the pier didn\\'t seem like a good idea at all.\\n\\n126\\n00:09:15,000 --> 00:09:19,400\\nAfter all, it’s more fun to stay with your friends anyway.\\n\\n127\\n00:09:19,600 --> 00:09:23,400\\nBobby had made a wise decision. It may have saved his life.\\n\\n128\\n00:09:26,000 --> 00:09:28,400\\nThe decision is always yours...\\n\\n129\\n00:09:28,600 --> 00:09:31,400\\n...and your whole future may depend on making the right one.\\n\\n130\\n00:09:32,600 --> 00:09:34,400\\nSo, no matter where you meet a stranger,\\n\\n131\\n00:09:34,600 --> 00:09:37,400\\nbe careful if they are too friendly \\n\\n132\\n00:09:37,600 --> 00:09:39,400\\nif try to win your confidence too quickly \\n\\n133\\n00:09:39,600 --> 00:09:41,400\\nand if they become overly personal.\\n\\n134\\n00:09:41,600 --> 00:09:44,400\\nOne never knows when the homosexual is about.\\n\\n135\\n00:09:44,600 --> 00:09:47,400\\nHe may appear normal, and it may be too late \\n\\n136\\n00:09:47,600 --> 00:09:50,400\\nwhen you discover he is mentally ill.\\n\\n137\\n00:09:50,600 --> 00:09:53,400\\nSo keep with your group, and don\\'t go off alone with strangers\\n\\n138\\n00:09:53,600 --> 00:09:57,400\\nunless you have the permission of your parent or teacher.\\n\\n139\\n00:10:06,000 --> 00:10:09,400\\nThe End A Sid Davis Production',\n", + " 'bytes': 10989,\n", + " 'sha1': 'r441mbaktibbyy4s724ywzp3y6g2lgl',\n", + " 'parent_id': 189744613,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93179225,\n", + " 'timestamp': '2013-03-24T06:00:01Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 24837606,\n", + " 'title': 'Sextortionagent interview.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"Reword so it doesn't take up as much of the screen\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,400\\nSextorsión es lo que se conoce comúnmente como\\n\\n2\\n00:00:04,600 --> 00:00:07,400\\nindividuos que son victimizados\\n\\n3\\n00:00:07,600 --> 00:00:09,400\\nestán siendo extorsionados;\\n\\n4\\n00:00:09,600 --> 00:00:12,400\\nes lo que comúnmente se refiere como extorsión, pero\\n\\n5\\n00:00:012,600 --> 00:00:18,400 \\nla ganancia final para los extorsionadores es\\n\\n6\\n00:00:18,600 --> 00:00:23,400\\nalgo que está relacionado con alguna actividad sexual, se trate de\\n\\n7\\n00:00:023,600 --> 00:00:26,400\\nimágenes o vídeos, \\n\\n8\\n00:00:26,600 --> 00:00:29,400\\npero es generalmente algo que está asociado con el sexo.\\n\\n9\\n00:00:29,600 --> 00:00:33,400\\nEs decir, te estoy extorsionando por algo de carácter sexual.\\n\\n10\\n00:00:33,600 --> 00:00:37,400\\nLos niños tienden a ser menos cautelosos\\n\\n11\\n00:00:37,600 --> 00:00:40,400\\ny más confiados de las personas en internet.\\n\\n12\\n00:00:40,600 --> 00:00:44,400\\nAsocian a las personas en internet con otras personas muy similares a ellos,\\n\\n13\\n00:00:044,600 --> 00:00:47,400\\nde alrededor de la misma edad. Por lo tanto,\\n\\n14\\n00:00:47,600 --> 00:00:49,900\\nno son muy temerosos de peligros potenciales.\\n\\n15\\n00:00:50,100 --> 00:00:53,400\\nHay personas que entablan amistad con un niño.\\n\\n16\\n00:00:53,600 --> 00:00:56,400\\nCreen que están chateando con otros niños.\\n\\n17\\n00:00:56,600 --> 00:01:01,400\\nY a menudo, los niños son engañados para que envien imágenes de si mismos \\n\\n18\\n00:01:01,600 --> 00:01:05,400\\na otra persona que creen que tiene una edad similar.\\n\\n19\\n00:01:05,600 --> 00:01:09,400\\nY una vez que estos individuos tienen estas imágenes, pues, quieren más fotos. \\n\\n20\\n00:01:09,600 --> 00:01:14,400\\nLas usan en cumplimiento de sus actividades criminales.\\n\\n21\\n00:01:14,600 --> 00:01:17,400\\nUna vez que tienen estas imágenes, son capaces de decirle\\n\\n22\\n00:01:17,600 --> 00:01:20,400\\na la víctima o al niño,\\n\\n23\\n00:01:20,600 --> 00:01:24,400\\n“Quiero más,” o, “Quiero que hagan x, y, y z.\\n\\n24\\n00:01:24,600 --> 00:01:28,400\\ny si no haces lo que te piden te dicen que van a compartir las fotografías\\n\\n25\\n00:01:28,600 --> 00:01:32,400\\ncon tus compañeros de clase o con los miembros de tu familia.\"\\n\\n26\\n00:01:32,600 --> 00:01:36,400\\nY a menudo, los niños se avergüenzan,\\n\\n27\\n00:01:36,600 --> 00:01:42,400\\nespecialmente creyendo que contribuyeron de alguna manera a su victimización.\\n\\n28\\n00:01:42,600 --> 00:01:46,400\\nPor temor a meterse en problemas si reportan el delito,\\n\\n29\\n00:01:46,600 --> 00:01:51,400\\nlos jóvenes continúan enviando lo que los criminales solicitan.\\n\\n30\\n00:01:51,600 --> 00:01:55,400\\nLo que suele ocurrir es que la victimización nunca termina.\\n\\n31\\n00:01:55,600 --> 00:02:01,400\\nNos encontramos con situaciones donde los individuos responsables de esta actividad delictiva\\n\\n32\\n00:02:01,600 --> 00:02:07,400\\ncrean sitios web y envian hiperenlaces a sus amigos\\n\\n33\\n00:02:07,600 --> 00:02:11,400\\ny a miembros de sus familias, de nuevo mostrando un cierto nivel o\\n\\n34\\n00:02:11,600 --> 00:02:14,400\\nsentido de dominio sobre la víctima diciendo,\\n\\n35\\n00:02:14,600 --> 00:02:19,400\\n“Esto es lo que tengo sobre ti, y si no sigues haciendo lo que digo \\n\\n36\\n00:02:19,600 --> 00:02:22,400\\nestas son las cosas que puedo hacer.”\\n\\n37\\n00:02:22,600 --> 00:02:27,400\\nSon maestros en la explotación de los vulnerables.\\n\\n38\\n00:02:27,600 --> 00:02:30,400\\nEngañan a las personas para que abran un archivo adjunto.\\n\\n39\\n00:02:30,600 --> 00:02:34,400\\nUna de las formas que suelen utilizar es enviar una foto de una niña.\\n\\n40\\n00:02:34,600 --> 00:02:37,400\\nY ella llevaba sujetador y bragas. Y\\n\\n41\\n00:02:37,600 --> 00:02:40,400\\ntiene el pelo sobre la cara y no se puede ver como luce.\\n\\n42\\n00:02:40,600 --> 00:02:43,400\\nY dirán algo a lo largo de las líneas,\\n\\n43\\n00:02:43,600 --> 00:02:47,400\\n“Vi esta foto tuya en un sitio web. Si no eres tú, simplemente haz caso omiso.” \\n\\n44\\n00:02:47,600 --> 00:02:51,400\\nPero muchas de estas víctimas no se dan cuenta de que hay\\n\\n45\\n00:02:51,600 --> 00:02:55,400\\nun programa troyano incrustado dentro de la imagen. \\n\\n46\\n00:02:55,600 --> 00:02:58,400\\nTodos los niños mirarán la fotografía. Los niños son curiosos por naturaleza.\\n\\n47\\n00:02:58,600 --> 00:03:03,400\\nY ni siquiera se dan cuenta de que algo puede estar embebido en esa foto que miró.\\n\\n48\\n00:03:03,600 --> 00:03:07,400\\nCuando Connolly [un sextorsionador] y Dickerson [un otro sextorsionador] tenían acceso a su ordenador,\\n\\n49\\n00:03:07,600 --> 00:03:09,400\\nhacían un par de cosas.\\n\\n50\\n00:03:09,600 --> 00:03:12,400\\nUna gran cantidad de veces simplemente se sentaban y miraban.\\n\\n51\\n00:03:12,600 --> 00:03:15,400\\nY tenían la capacidad de activar la cámara web.\\n\\n52\\n00:03:15,600 --> 00:03:19,400\\nAsí que irían a ver a estas víctimas vestirse y desvestirse y\\n\\n53\\n00:03:19,600 --> 00:03:22,400\\nhacer distintas cosas. Y lo filmarían.\\n\\n54\\n00:03:22,600 --> 00:03:26,400\\nY a veces tomarían niños haciendo cosas o cambiándose de ropa.\\n\\n55\\n00:03:26,600 --> 00:03:31,400\\nA veces mostrarían estos videos o imágenes en cumplimiento de la explotación.\\n\\n56\\n00:03:31,600 --> 00:03:36,400\\nAdemás, una vez que los tenían, tenían acceso a listas de amigos, por lo que eran capaces de decir:\\n\\n57\\n00:03:36,600 --> 00:03:41,400\\n“Si no te tomas fotografías, o no te filmas, \\n\\n58\\n00:03:41,600 --> 00:03:45,400\\nveo que tienes una dirección de correo electrónico de tu abuela.\\n\\n59\\n00:03:45,600 --> 00:03:48,400\\nPues, voy a poner este pequeño show para tu abuela, y\\n\\n60\\n00:03:48,600 --> 00:03:51,400\\nestoy seguro de que, ya sabes, no estará muy orgullosa de tu forma de actuar.”\\n\\n61\\n00:03:51,600 --> 00:03:54,400\\nY muchos de estos chicos harían esto.\\n\\n62\\n00:03:54,600 --> 00:03:58,400\\nHoy en día hay tanto más malware\\n\\n63\\n00:03:58,600 --> 00:04:02,400\\nhay tanto más malware por ahí, y muchos más\\n\\n64\\n00:04:02,600 --> 00:04:05,400\\nprogramas que permiten a las personas acceder a su ordenador\\n\\n65\\n00:04:05,600 --> 00:04:10,400\\nque no se puede ser demasiado cauteloso nunca más. Una de las cosas [deben decirse] que,\\n\\n66\\n00:04:10,600 --> 00:04:13,400\\nsobre todo cuando se habla a los padres, es\\n\\n66\\n00:04:13,600 --> 00:04:16,400\\nque deben hablar con sus hijos.\\n\\n67\\n00:04:16,600 --> 00:04:20,400\\nDebe hablar con sus hijos acerca de estas cosas.\\n\\n68\\n00:04:20,600 --> 00:04:23,400\\nNo se puede ser demasiado cuidadoso. Realmente no se puede confiar…\\n\\n69\\n00:04:23,600 --> 00:04:25,400\\nDebe tener cuidado de con quién se están comunicando.\\n\\n70\\n00:04:25,600 --> 00:04:29,400\\nSiempre tener cuidado: número uno.\\n\\n71\\n00:04:29,600 --> 00:04:32,400\\nNúmero dos: los niños tienen que ser capaces de hablar con sus padres\\n\\n72\\n00:04:32,600 --> 00:04:35,400\\ny los padres tienen que ser capaces de hablar con sus niños.\\n\\n73\\n00:04:35,600 --> 00:04:38,400\\nSi no sabes de quien es, no lo abras.\\n\\n74\\n00:04:38,600 --> 00:04:43,400\\nTen cuidado con ciertos archivos adjuntos.\\n\\n75\\n00:04:43,600 --> 00:04:47,400\\nY, al final,\\n\\n76\\n00:04:47,600 --> 00:04:50,400\\nsi algo llegara a suceder, si fueras victimizado,\\n\\n77\\n00:04:50,600 --> 00:04:55,400\\ndile a alguien, díselo a tus padres. Dile a un adulto. Dile a un maestro.\\n\\n78\\n00:04:55,600 --> 00:05:00,400\\nIncluso si eres un adulto y has sido víctima, no temas llamar a la policía.\\n\\n79\\n00:05:00,600 --> 00:05:06,400\\nDickerson tenía—tenía aproximadamente 230 gigabytes de material.\\n\\n80\\n00:05:06,600 --> 00:05:09,400\\nEn ese momento era una cantidad enorme.\\n\\n81\\n00:05:09,600 --> 00:05:15,400\\nConnolly tenía casi un terabyte de material.\\n\\n82\\n00:05:15,600 --> 00:05:21,400\\nY la cosa es que muchos de esos niños estaban justo en alguna carpeta en alguna parte.\\n\\n83\\n00:05:21,600 --> 00:05:24,400\\nFue una carpeta en un computadora.\\n\\n84\\n00:05:24,600 --> 00:05:30,400\\nNingún nombre. Ningún nombre de usuario. Solo imágenes y vídeos en un carpeta. \\n\\n85\\n00:05:30,600 --> 00:05:34,400\\nY parte de lo que siento que es mi responsabilidad es\\n\\n86\\n00:05:34,600 --> 00:05:37,400\\nhablar con cualquiera que esté dispuesto a escuchar\\n\\n87\\n00:05:37,600 --> 00:05:41,400\\nporque sé que hay muchas más víctimas que se preguntan, \\n\\n88\\n00:05:41,600 --> 00:05:44,400\\n“Me pregunto qué pasó con aquellos tipos” o, “¿Tengo que tener miedo?”\\n\\n89\\n00:05:44,600 --> 00:05:47,400\\nSi conoces a alguien o si se encuentran en una situación similar,\\n\\n90\\n00:05:47,600 --> 00:05:51,400\\no si eres padre, habla con tus hijos acerca de esto.',\n", + " 'bytes': 8329,\n", + " 'sha1': '3b5j362vttwe8ar5zmkd4jk47cn6xvv',\n", + " 'parent_id': 92381224,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91373835,\n", + " 'timestamp': '2013-02-24T09:17:38Z',\n", + " 'user': {'id': 25480, 'text': 'Ainali'},\n", + " 'page': {'id': 24839386,\n", + " 'title': 'Editing basics - Uploading and adding images.webm.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,000 --> 00:00:06,500 Denna film går igenom grunderna för att ladda upp bilder til Wikimedia Commons 2 00:00:06,700 --> 00:00:09,200 och lägga ti...'\",\n", + " 'text': '1\\n00:00:01,000 --> 00:00:06,500\\nDenna film går igenom grunderna för att ladda upp bilder til Wikimedia Commons \\n\\n2\\n00:00:06,700 --> 00:00:09,200\\noch lägga till dem till Wikipedia-artiklar.\\n\\n3\\n00:00:09,400 --> 00:00:13,500\\nTa den här artikeln som exempel: secondary lens.\\n\\n4\\n00:00:13,700 --> 00:00:18,500\\nDet handlar om fotografi men har inga foton. Det ska vi fixa!\\n\\n5\\n00:00:18,700 --> 00:00:21,500\\nVi använder en bild som jag har skapat.\\n\\n6\\n00:00:21,700 --> 00:00:24,000\\nFör att lägga till den i artikeln behöver vi ladda upp den\\n\\n7\\n00:00:24,100 --> 00:00:26,200\\ntill Wikimedia Commons.\\n\\n8\\n00:00:26,500 --> 00:00:27,200\\nTiall att börja med:\\n\\n9\\n00:00:27,400 --> 00:00:31,000\\nWikimedia Commons är till för bilder som du har skapat själv,\\n\\n10\\n00:00:31,300 --> 00:00:36,000\\nsom har skapats av andra och uttryckligen har släptts under en Wikipedia-kompatibel licens,\\n\\n11\\n00:00:36,300 --> 00:00:40,500\\neller bilder i den kulturella allmänningen som inte någon har upphovsrätt till.\\n\\n12\\n00:00:40,800 --> 00:00:42,000\\nFör att ladda upp en fil\\n\\n11\\n00:00:42,300 --> 00:00:45,000\\ngå till commons.wikimedia.org.\\n\\n12\\n00:00:45,300 --> 00:00:48,000\\nSe till att logga in om du inte redan har gjort det.\\n\\n13\\n00:00:48,300 --> 00:00:50,300\\nDu använder samma konto som på Wikipedia.\\n\\n14\\n00:00:51,000 --> 00:00:53,600\\nFör att starta, gå till uppladdningsguiden\\n\\n15\\n00:00:53,800 --> 00:00:56,800\\ngenom att klicka på länken \"Ladda upp fil\" till vänster.\\n\\n16\\n00:00:57,000 --> 00:01:00,000\\nDen första sidan av guiden är en illustration med Puzzly!,\\n\\n17\\n00:01:00,300 --> 00:01:04,000\\nsom går igenom vilka bilder som är tillåtna på Commons och vilka som inte är det.\\n\\n18\\n00:01:04,300 --> 00:01:08,000\\nUnder illustrationen, klicka Nästa för att gå till uppladdningssidan.\\n\\n19\\n00:01:08,300 --> 00:01:14,000\\nKlicka på \"Välj mediafil att donera\" för att hitta en fil på din dator att ladda upp.\\n\\n20\\n00:01:14,300 --> 00:01:18,000\\nEfter att den har laddats upp är du redo att gå till licensväljaren.\\n\\n21\\n00:01:18,300 --> 00:01:22,000\\nOm det är ditt eget verk skriv in ditt namn eller användarnamn\\n\\n22\\n00:01:22,300 --> 00:01:25,600\\n--på det sätt som du vill bli omnämnd när folk använder bilden--\\n\\n23\\n00:01:25,800 --> 00:01:27,000\\noch tryck Nästa.\\n\\n24\\n00:01:27,300 --> 00:01:30,500\\nNu är det dags för titeln på bilden och en beskrivning.\\n\\n25\\n00:01:30,700 --> 00:01:31,500\\nFör titeln\\n\\n26\\n00:01:31,700 --> 00:01:34,500\\nvälj något konsict, beskrivande\\n\\n27\\n00:01:34,700 --> 00:01:37,700\\noch specifikt nog för att särskilja den från liknande bilder.\\n\\n28\\n00:01:37,900 --> 00:01:39,500\\nTill beskrivningen\\n\\n29\\n00:01:39,700 --> 00:01:42,000\\nlägg till så mycket detaljer du kan,\\n\\n30\\n00:01:42,200 --> 00:01:44,500\\nvar och hur bilden gjordes,\\n\\n31\\n00:01:44,700 --> 00:01:46,500\\nvilket ämne det berör,\\n\\n32\\n00:01:46,700 --> 00:01:49,000\\noch allt annat som en läsare kan tänkas vilja veta.\\n\\n33\\n00:01:49,300 --> 00:01:53,000\\nDu kan också lägga till bilden till en eller flera kategorier på Commons\\n\\n33\\n00:01:53,300 --> 00:01:58,000\\n-- testa genom att kika på liknande bilder för att se vilka kategorier som kan vara lämpliga.\\n\\n34\\n00:01:58,300 --> 00:02:00,500\\nOm du trycker nästa nu kommer uppladdningen att slutföras,\\n\\n35\\n00:02:00,700 --> 00:02:05,000\\noch verket blir tillgängligt för att använda på Wikipedia.\\n\\n36\\n00:02:05,300 --> 00:02:07,000\\nPå den sista sidan i guiden ser du \\n\\n37\\n00:02:07,300 --> 00:02:10,000\\nkoden för att lägga till verket i en Wikipedia-artikel,\\n\\n38\\n00:02:10,300 --> 00:02:13,000\\noch en URL för att komma till filsidan,\\n\\n39\\n00:02:13,300 --> 00:02:17,000\\ndär du kan redigera beskrivningen och ladda upp nyare versioner av filen.\\n\\n40\\n00:02:17,300 --> 00:02:19,500\\nDu kan kopiera wikikoden\\n\\n41\\n00:02:19,700 --> 00:02:21,000\\noch klistra in den i artikeln\\n\\n42\\n00:02:21,300 --> 00:02:23,500\\noch lägga till en bildtext.\\n\\n43\\n00:02:23,700 --> 00:02:27,000\\nDet grundläggande formatet för att lägga till en bild i en artikel är denna:\\n\\n44\\n00:02:27,300 --> 00:02:29,200\\nstarta med hakparenteser, sedan\\n\\n45\\n00:02:29,400 --> 00:02:31,200\\nnamnet på filen, sedan\\n\\n46\\n00:02:31,400 --> 00:02:36,200\\nett rakt streck och ordet thumb -- vilket ger den standardiserade miniatyrformatet --\\n\\n47\\n00:02:36,500 --> 00:02:37,500\\nsedan ett rakt streck till,\\n\\n48\\n00:02:37,700 --> 00:02:39,000\\noch sedan bildtexten\\n\\n47\\n00:02:39,200 --> 00:02:43,000\\nsom ska förklara kopplingen till artikeltexten,\\n\\n47\\n00:02:43,200 --> 00:02:46,000\\noch avsluta med två hakparenterser.\\n\\n48\\n00:02:46,200 --> 00:02:48,000\\nNär du har lagt till bilden,\\n\\n49\\n00:02:48,200 --> 00:02:50,000\\nskrive en redigeringsbeskrivning och spara sidan,\\n\\n50\\n00:02:50,200 --> 00:02:51,500\\noch det var allt!\\n\\n51\\n00:02:51,700 --> 00:02:54,000\\nVi har lagt till en ny bild på Wikipedia.\\n\\n52\\n00:02:54,500 --> 00:02:57,000\\nTack! Hejdå!',\n", + " 'bytes': 4827,\n", + " 'sha1': 'b877g0vt9100u6g7me5rzuo92p0qv7s',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91378203,\n", + " 'timestamp': '2013-02-24T10:33:44Z',\n", + " 'user': {'text': '142.136.146.226'},\n", + " 'page': {'id': 24840287,\n", + " 'title': 'Goodbye, Glaciers.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:04,000\\nThere are roughly 200,000 glaciers worldwide,\\n\\n2\\n00:00:04,200 --> 00:00:08,000\\neach represented by a small yellow dot on this globe.\\n\\n3\\n00:00:08,800 --> 00:00:11,999\\nHere, we take a closer look at glaciers in North and South America,\\n\\n4\\n00:00:12,000 --> 00:00:15,000\\nwhere scientists found roughly 25% of the world's melting\\n\\n5\\n00:00:16,000 --> 00:00:19,500\\ntook place between 2003, and 2010.\\n\\n6\\n00:00:22,000 --> 00:00:24,000\\nWe begin in South America,\\n\\n7\\n00:00:24,200 --> 00:00:29,000\\nwhere glaciers in Patagonia lost 23 billion tonnes of ice each year.\\n\\n8\\n00:00:32,400 --> 00:00:34,600\\nIn the northern hemisphere,\\n\\n9\\n00:00:34,800 --> 00:00:40,000\\nglaciers in southern Alaska showed annual losses that totalled 46 billion tonnes.\\n\\n10\\n00:00:43,800 --> 00:00:46,000\\nAnd over in the Canadian Arctic,\\n\\n11\\n00:00:46,200 --> 00:00:50,000\\n67 billion tonnes of ice melted each year.\",\n", + " 'bytes': 906,\n", + " 'sha1': 'slq5uchozbdz93xiqe2cnzwa1hrx5lt',\n", + " 'parent_id': 91378175,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 320274703,\n", + " 'timestamp': '2018-09-15T13:17:27Z',\n", + " 'user': {'text': '2001:DA8:201D:1101:59E4:55B5:38B9:AE16'},\n", + " 'page': {'id': 24854146,\n", + " 'title': 'Girls beware.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Slight edit to fix overlapping text between lines 21 and 22',\n", + " 'text': '1\\n00:00:02,000 --> 00:00:06,400\\nSid Davis Productions Presents\\n\\n2\\n00:00:06,600 --> 00:00:13,400\\n<i>Girls Beware</i>\\n\\n3\\n00:00:13,600 --> 00:00:17,400\\nProduced with the cooperation of the Inglewood Police Department\\n\\n4\\n00:00:17,600 --> 00:00:21,400\\nand the Inglewood Unified School District.\\n\\n5\\n00:00:28,000 --> 00:00:31,400\\n\"Norma Neufner Policewoman\" [Nametag]\\n\\n6\\n00:00:36,000 --> 00:00:37,800\\nI\\'m Norma Neufner, policewoman, \\n\\n7\\n00:00:37,800 --> 00:00:40,400\\nattached to the Juvenile Division.\\n\\n8\\n00:00:40,600 --> 00:00:42,400\\nI\\'m on a call from a very worried mother\\n\\n9\\n00:00:42,600 --> 00:00:44,400\\nwhose daughter is missing.\\n\\n10\\n00:00:44,600 --> 00:00:47,400\\nHer daughter\\'s name is Judy Miller.\\n\\n11\\n00:00:55,600 --> 00:00:57,400\\nJudy enjoys babysitting but there weren\\'t\\n\\n12\\n00:00:57,600 --> 00:00:59,400\\nenough jobs among the people she knew, so\\n\\n13\\n00:00:59,600 --> 00:01:02,400\\nshe decided to advertise at the supermarket for extra work.\\n\\n14\\n00:01:11,600 --> 00:01:13,400\\nLate the following afternoon the phone rang\\n\\n15\\n00:01:13,600 --> 00:01:15,400\\nand Judy was offered a job for that evening\\n\\n16\\n00:01:15,600 --> 00:01:17,400\\nThe man told her he and his wife were going out to dinner\\n\\n17\\n00:01:17,600 --> 00:01:20,400\\nand their regular sitter couldn\\'t pick her up in 15 minutes.\\n\\n18\\n00:01:32,600 --> 00:01:34,400\\nJudy\\'s mother hadn\\'t returned when it was time to go,\\n\\n19\\n00:01:34,600 --> 00:01:37,400\\nso she left a message by the telephone.\\n\\n20\\n00:01:50,600 --> 00:01:52,400\\nWhen her mother came home, she found Judy\\'s note\\n\\n21\\n00:01:52,600 --> 00:01:54,400\\nand called the number to let Judy know\\n\\n22\\n00:01:54,600 --> 00:01:57,400\\nthat she was home in case she wanted anything.\\n\\n23\\n00:02:06,600 --> 00:02:08,400\\nA woman answered but she didn\\'t know anything about Judy\\n\\n24\\n00:02:08,600 --> 00:02:11,400\\nand told Mrs. Miller that she must have the wrong number.\\n\\n25\\n00:02:29,600 --> 00:02:31,400\\nBy midnight Mrs. Miller was really worried.\\n\\n26\\n00:02:31,600 --> 00:02:34,400\\nShe phoned the police and was transferred to Juvenile.\\n\\n27\\n00:02:35,600 --> 00:02:37,400\\nI took the necessary information and assured her\\n\\n28\\n00:02:37,600 --> 00:02:39,400\\nwe\\'d do everything we could.\\n\\n29\\n00:02:39,600 --> 00:02:41,400\\nShe\\'d have to try to be patient and wait.\\n\\n30\\n00:02:41,600 --> 00:02:43,400\\nThe waiting list was almost a week.\\n\\n31\\n00:02:45,600 --> 00:02:47,400\\nThen the report came in.\\n\\n32\\n00:02:47,600 --> 00:02:49,400\\nJudy\\'s [dead] body had been found on a lonely desert road.\\n\\n33\\n00:02:53,600 --> 00:02:55,400\\nThe most difficult part of my job is\\n\\n34\\n00:02:55,600 --> 00:02:58,400\\nbringing bad news to parents.\\n\\n35\\n00:03:01,600 --> 00:03:03,400\\nYou can never find the right words to tell\\n\\n36\\n00:03:03,600 --> 00:03:05,400\\na mother [that] her daughter has been murdered.\\n\\n37\\n00:03:05,600 --> 00:03:07,400\\nJudy hadn\\'t done anything wrong.\\n\\n38\\n00:03:07,600 --> 00:03:09,400\\nShe\\'d only been careless...\\n\\n39\\n00:03:09,600 --> 00:03:11,400\\nCareless about whom she trusted.\\n\\n40\\n00:03:11,600 --> 00:03:13,400\\nIn itself there had been nothing wrong about\\n\\n41\\n00:03:13,600 --> 00:03:15,400\\navdertising for a job, but it lead her\\n\\n42\\n00:03:15,600 --> 00:03:17,400\\nto trusting a person she knew nothing about.\\n\\n43\\n00:03:17,600 --> 00:03:19,400\\nA mentally sick person who used her innocent ad[vertisement]\\n\\n44\\n00:03:19,600 --> 00:03:21,400\\nas an introduction to his act of violence.\\n\\n45\\n00:03:27,600 --> 00:03:29,400\\nBeing safe is often no more than \\n\\n46\\n00:03:29,600 --> 00:03:31,400\\napplying good judgment in everyday life.\\n\\n47\\n00:03:32,000 --> 00:03:34,400\\nOne night while Barbara was babysitting the doorbell rang\\n\\n48\\n00:03:35,600 --> 00:03:38,400\\nShe didn\\'t open the door but called and asked who it was\\n\\n49\\n00:03:39,600 --> 00:03:41,400\\nA stranger said his car had broken down\\n\\n50\\n00:03:41,600 --> 00:03:43,400\\nand could\\'a(?) use the phone\\n\\n51\\n00:03:43,600 --> 00:03:45,400\\nBarbara was very polite but she told him she was babysitting\\n\\n52\\n00:03:45,600 --> 00:03:47,400\\nand was expecting a call from her parents.\\n\\n53\\n00:03:47,600 --> 00:03:50,400\\nHowever she was sure the next door neighbors were home\\n\\n54\\n00:03:50,600 --> 00:03:52,400\\nand perhaps he could use their phone.\\n\\n55\\n00:03:52,600 --> 00:03:54,400\\nThe stranger thanked her and left.\\n\\n56\\n00:03:55,600 --> 00:03:57,400\\nNow Barbara had been polite and helpful \\n\\n57\\n00:03:57,600 --> 00:03:59,400\\nbut she hadn\\'t taken any chances.\\n\\n58\\n00:03:59,600 --> 00:04:01,400\\nAnd when her father called, she was safe.\\n\\n59\\n00:04:19,600 --> 00:04:22,400\\nFriday night was movie time for Sally and Elizabeth.\\n\\n60\\n00:04:22,600 --> 00:04:25,400\\nTheir parents alternated weeks taking them and picking them up.\\n\\n61\\n00:04:27,600 --> 00:04:29,400\\nFriendships are easily made in a crowded theater\\n\\n62\\n00:04:29,600 --> 00:04:31,400\\nand when two older boys struck up a conversation\\n\\n63\\n00:04:31,600 --> 00:04:34,400\\nand moved next to them, they were secretly pleased.\\n\\n64\\n00:04:45,600 --> 00:04:47,400\\nAt intermission Sally found it flattering to have her friend\\n\\n65\\n00:04:47,600 --> 00:04:49,400\\nsee her in the company of older boys.\\n\\n66\\n00:04:49,600 --> 00:04:51,400\\nAnd when they asked if they could take the girls home\\n\\n67\\n00:04:51,600 --> 00:04:53,400\\nShe was all for it.\\n\\n66\\n00:04:53,600 --> 00:04:55,400\\nShe asked Elizabeth to call her folks and tell them\\n\\n68\\n00:04:55,600 --> 00:04:57,400\\nthat they could ride with their friends\\' parents.\\n\\n69\\n00:04:57,600 --> 00:05:00,400\\nElizabeth was tempted but decided it wouldn\\'t be right.\\n\\n70\\n00:05:01,600 --> 00:05:03,400\\nSally was disappointed.\\n\\n71\\n00:05:15,600 --> 00:05:17,400\\nWhen the show was over and they were leaving,\\n\\n72\\n00:05:17,600 --> 00:05:19,400\\nthe boys suggested that if Elizabeth couldn\\'t go with them,\\n\\n73\\n00:05:19,600 --> 00:05:21,400\\nwhy didn\\'t Sally come?\\n\\n74\\n00:05:21,600 --> 00:05:23,400\\nSally thought it was a great idea\\n\\n75\\n00:05:23,600 --> 00:05:25,400\\nand asked Elizabeth to tell her folks that\\n\\n76\\n00:05:25,600 --> 00:05:27,400\\nher parents had picked her up.\\n\\n77\\n00:05:27,600 --> 00:05:30,400\\nElizabeth didn\\'t like the idea but Sally insisted.\\n\\n80\\n00:05:33,600 --> 00:05:36,400\\nSo, Elizabeth left alone. \\n\\n81\\n00:05:40,600 --> 00:05:42,400\\nNot any of the boys she went with had a car,\\n\\n82\\n00:05:42,600 --> 00:05:45,400\\nso it was fun riding with the older fellows.\\n\\n83\\n00:05:48,600 --> 00:05:50,400\\nBut when they drove right past her house \\n\\n84\\n00:05:50,600 --> 00:05:53,400\\nshe became concerned.\\n\\n83\\n00:05:58,600 --> 00:06:01,400\\nWhen they arrived at Lookout Peak she was frightened.\\n\\n84\\n00:06:01,600 --> 00:06:03,400\\nShe tried to convince herself that there was nothing to worry about,\\n\\n85\\n00:06:03,600 --> 00:06:05,400\\nbut when they parked off the road she knew\\n\\n86\\n00:06:05,600 --> 00:06:08,400\\nshe had gotten herself into something she couldn\\'t handle.\\n\\n87\\n00:06:11,600 --> 00:06:14,400\\nAt midnight her parents became alarmed and called the Nelsons.\\n\\n88\\n00:06:14,600 --> 00:06:17,400\\nYes, Elizabeth was home. Hadn\\'t they picked up Sally?\\n\\n89\\n00:06:17,600 --> 00:06:19,400\\nNo. Over an hour ago?\\n\\n90\\n00:06:19,600 --> 00:06:21,400\\nOf course she can talk to Elizabeth.\\n\\n91\\n00:06:21,600 --> 00:06:24,400\\nBetween guilty tears Elizabeth told what had happened.\\n\\n92\\n00:06:27,600 --> 00:06:31,400\\nSally had been found dazedly walking down the road from Lookout Peak.\\n\\n93\\n00:06:31,600 --> 00:06:34,400\\nIt was a night they\\'ll long remember.\\n\\n94\\n00:06:34,600 --> 00:06:37,400\\nIn fact, Sally may never be able to forget it. [She had been raped]\\n\\n95\\n00:06:38,600 --> 00:06:40,400\\nOften seemingly innocent places can turn out to be \\n\\n96\\n00:06:40,600 --> 00:06:43,400\\njust where wrong associations are made.\\n\\n97\\n00:06:43,600 --> 00:06:46,400\\nMary met Robert at just such a place.\\n\\n98\\n00:06:46,600 --> 00:06:48,400\\nRobert frequented the malt shop in his spare time\\n\\n99\\n00:06:48,600 --> 00:06:51,400\\nwhich was considerable as he finished high school and didn\\'t work.\\n\\n100\\n00:06:52,600 --> 00:06:54,400\\nHere he sought out the company of younger teenagers\\n\\n101\\n00:06:54,600 --> 00:06:57,400\\nbecause he wasn\\'t accepted by those of his own age group.\\n\\n102\\n00:06:58,600 --> 00:07:00,400\\nMary and her girlfriend could always be found\\n\\n103\\n00:07:00,600 --> 00:07:03,400\\nat the malt shop after school.\\n\\n104\\n00:07:08,600 --> 00:07:10,400\\nMary had seen Robert before\\n\\n105\\n00:07:10,600 --> 00:07:12,400\\nand thought he was very good-looking.\\n\\n106\\n00:07:12,600 --> 00:07:14,400\\nSo she was naturally flattered when he\\n\\n107\\n00:07:14,600 --> 00:07:17,400\\nsingled her out and struck up a friendly conversation.\\n\\n108\\n00:07:17,600 --> 00:07:19,400\\nHe was fun to talk to and they discussed\\n\\n109\\n00:07:19,600 --> 00:07:21,400\\neverything from cars to movie stars.\\n\\n110\\n00:07:21,600 --> 00:07:23,400\\nWhen he offered her a ride home\\n\\n111\\n00:07:23,600 --> 00:07:25,400\\nshe was only too happy to accept.\\n\\n112\\n00:07:54,600 --> 00:07:56,400\\nThey drove around for awhile and talked.\\n\\n113\\n00:07:56,600 --> 00:07:58,400\\nMary was a good listener and Bob [nickname of Robert] enjoyed \\n\\n114\\n00:07:58,600 --> 00:08:00,400\\nnothing more than talking about himself.\\n\\n115\\n00:08:04,600 --> 00:08:06,400\\nMary knew her mother would be upset if she \\n\\n116\\n00:08:06,600 --> 00:08:08,400\\ncame home with an older boy, so Bob\\n\\n117\\n00:08:08,600 --> 00:08:10,400\\ndropped her at the corner.\\n\\n118\\n00:08:20,600 --> 00:08:23,400\\nAfter that they saw a good deal of each other.\\n\\n119\\n00:08:23,600 --> 00:08:25,400\\nAt first Bob was willing to see her at the malt shop.\\n\\n120\\n00:08:25,600 --> 00:08:28,400\\nBut as time went on he became jealous of her friends.\\n\\n121\\n00:08:28,600 --> 00:08:31,400\\nand insisted on their spending more time alone.\\n\\n122\\n00:08:52,600 --> 00:08:54,400\\nThey began to go to secluded places\\n\\n123\\n00:08:54,600 --> 00:08:56,400\\nand their relationship became more intimate.\\n\\n124\\n00:08:56,600 --> 00:08:58,400\\nMary knew things were getting out of hand \\n\\n125\\n00:08:58,600 --> 00:09:00,400\\nbecause Bob became more and more demanding.\\n\\n126\\n00:09:00,600 --> 00:09:02,400\\nBut not wishing to lose his friendship\\n\\n127\\n00:09:02,600 --> 00:09:04,400\\nor the prestige she enjoyed from her friends\\n\\n128\\n00:09:04,600 --> 00:09:06,400\\nfor having an older boyfriend,\\n\\n129\\n00:09:06,600 --> 00:09:08,400\\nshe complied with his desire.\\n\\n130\\n00:09:14,600 --> 00:09:17,400\\nThen Mary found she was in trouble [euphemism for pregnant used at the time] and had to tell her parents.\\n\\n131\\n00:09:17,600 --> 00:09:19,400\\nBut now it was too late for advice and\\n\\n132\\n00:09:19,600 --> 00:09:21,400\\nMary had to be taken out of school and\\n\\n133\\n00:09:21,600 --> 00:09:24,400\\nplaced in the guidance of juvenile authorities.\\n\\n134\\n00:09:24,600 --> 00:09:27,400\\nUnfortunately, Mary\\'s story is not an unusual one.\\n\\n135\\n00:09:27,600 --> 00:09:30,400\\nToo many young girls are flattered by the attention of older boys\\n\\n136\\n00:09:30,600 --> 00:09:33,400\\nand don\\'t realize until too late that these boys\\n\\n137\\n00:09:33,600 --> 00:09:36,400\\nwho cannot compete in their own age group,\\n\\n138\\n00:09:36,600 --> 00:09:38,400\\nare often not well-adjusted and demand too much\\n\\n139\\n00:09:38,600 --> 00:09:41,400\\nin a relationship with a younger girl.\\n\\n140\\n00:09:41,600 --> 00:09:43,400\\nYou see, it\\'s often the things that are done without\\n\\n141\\n00:09:43,600 --> 00:09:46,400\\nthinking that get young people into trouble.\\n\\n142\\n00:09:46,600 --> 00:09:48,400\\nTrying to move too quickly into a world of grownups\\n\\n143\\n00:09:48,600 --> 00:09:50,400\\nwith a young person\\'s fate often causes heartache\\n\\n144\\n00:09:50,600 --> 00:09:53,400\\nand disaster.\\n\\n145\\n00:09:56,600 --> 00:10:00,400\\nThe End A Sid Davis Production',\n", + " 'bytes': 11501,\n", + " 'sha1': 'b9m9oqzt904e19tc273cf89cv7pz5ls',\n", + " 'parent_id': 127462411,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 588225390,\n", + " 'timestamp': '2021-09-02T23:28:10Z',\n", + " 'user': {'id': 7458080, 'text': 'SilSinn9821'},\n", + " 'page': {'id': 24856066,\n", + " 'title': 'StrangeOnesFullRez.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'adding words that were missed by the original ear transcriber',\n", + " 'text': '1\\n00:00:01,000 --> 00:00:04,400\\nSid Davis Productions Presents\\n\\n2\\n00:00:04,600 --> 00:00:6,400\\n<i>The Strange Ones</i>\\n\\n3\\n00:00:8,600 --> 00:00:10,400\\nThis film was produced with the cooperation \\n\\n4\\n00:00:10,600 --> 00:00:13,400\\nof the Culver City Police Department.\\n\\n5\\n00:00:29,600 --> 00:00:32,400\\nThis is Karen. She is eight years old\\n\\n6\\n00:00:32,600 --> 00:00:34,400\\nand she is on her way home from school\\n\\n7\\n00:00:36,600 --> 00:00:38,400\\nEvery day she passes this store \\n\\n8\\n00:00:38,600 --> 00:00:40,400\\nwith a wonderful candy counter\\n\\n9\\n00:00:40,600 --> 00:00:42,400\\nand every once in a while her mother\\n\\n10\\n00:00:42,600 --> 00:00:44,400\\ngives her a dime [$0.10] for a treat. \\n\\n11\\n00:00:46,600 --> 00:00:48,400\\nAnd Karen always stops at the store even\\n\\n12\\n00:00:48,600 --> 00:00:50,400\\nif it\\'s only to window shop.\\n\\n13\\n00:00:52,600 --> 00:00:54,400\\nOf course Karen\\'s parents have told her\\n\\n14\\n00:00:54,600 --> 00:00:57,400\\nnever to take money or candy from a stranger\\n\\n15\\n00:00:57,600 --> 00:00:59,400\\nor let him touch her.\\n\\n16\\n00:00:59,600 --> 00:01:01,400\\nBut right now it looks as though she\\n\\n17\\n00:01:01,600 --> 00:01:04,400\\nhas forgotten these basic rules.\\n\\n18\\n00:01:04,600 --> 00:01:07,400\\nBut Karen\\'s friend the salesgirl hasn\\'t forgotten, \\n\\n19\\n00:01:07,600 --> 00:01:09,400\\nand wonders who the stranger is \\n\\n20\\n00:01:09,600 --> 00:01:11,400\\nthat is buying candy for her,\\n\\n21\\n00:01:11,600 --> 00:01:14,400\\nand why.\\n\\n22\\n00:01:14,600 --> 00:01:16,400\\nKaren, having already forgotten\\n\\n23\\n00:01:16,600 --> 00:01:18,400\\none of her parent\\'s warnings\\n\\n24\\n00:01:18,600 --> 00:01:21,400\\nfinds it easy to forget another:\\n\\n25\\n00:01:21,600 --> 00:01:23,400\\nNever to go anywhere with a stranger,\\n\\n26\\n00:01:23,600 --> 00:01:25,400\\nor accept rides with people you\\n\\n27\\n00:01:25,600 --> 00:01:27,400\\ndon\\'t know, no matter\\n\\n28\\n00:01:27,600 --> 00:01:29,400\\nwhat they tell you.\\n\\n29\\n00:01:31,600 --> 00:01:34,400\\nThis time, Karen is lucky.\\n\\n30\\n00:01:33,600 --> 00:01:35,400\\nHer friend does what you should do\\n\\n31\\n00:01:35,600 --> 00:01:37,400\\nin a situation like this.\\n\\n32\\n00:01:37,600 --> 00:01:39,400\\nShe takes down the license number\\n\\n33\\n00:01:39,600 --> 00:01:41,400\\nof the car and the description of\\n\\n34\\n00:01:41,600 --> 00:01:44,400\\nthe stranger, and calls the police.\\n\\n35\\n00:01:52,600 --> 00:01:55,400\\nHer information is sent out by police radio...\\n\\n36\\n00:02:02,600 --> 00:02:05,400\\n...to officers all over town....\\n\\n37\\n00:02:11,600 --> 00:02:13,400\\n...so that they can be on the lookout\\n\\n38\\n00:02:13,600 --> 00:02:16,400\\nfor the car with Karen and the stranger.\\n\\n39\\n00:02:34,600 --> 00:02:37,400\\nAt home, Karen\\'s mother is beginning to get worried. \\n\\n40\\n00:02:37,600 --> 00:02:39,400\\nShe is waiting and waiting,\\n\\n41\\n00:02:41,600 --> 00:02:43,400\\nbut no Karen.\\n\\n44\\n00:02:44,600 --> 00:02:46,400\\nShe knows just how long it takes Karen\\n\\n45\\n00:02:46,600 --> 00:02:48,400\\nto get home from school,\\n\\n46\\n00:02:48,600 --> 00:02:51,400\\nbut she is already half an hour late.\\n\\n47\\n00:02:56,600 --> 00:02:59,400\\n[Culver City Police]\\n\\n48\\n00:03:48,600 --> 00:03:50,400\\nSo because Karen\\'s friend remembered\\n\\n49\\n00:03:50,600 --> 00:03:53,400\\nto take down the car\\'s license number,\\n\\n40\\n00:03:53,600 --> 00:03:56,400\\neverything turned out alright.\\n\\n41\\n00:03:56,600 --> 00:03:58,400\\nAnd Karen, of course, knew\\n\\n42\\n00:03:58,600 --> 00:04:00,400\\nher telephone number, so that\\n\\n43\\n00:04:00,600 --> 00:04:02,400\\nthe policeman could call her mother right away\\n\\n44\\n00:04:02,600 --> 00:04:04,400\\nto come and get her.\\n\\n45\\n00:04:06,600 --> 00:04:08,400\\nMy name is Mrs. Perkins, \\n\\n46\\n00:04:08,600 --> 00:04:11,400\\nand I am a policewoman.\\n\\n47\\n00:04:11,600 --> 00:04:13,400\\nWe had a while to wait\\n\\n48\\n00:04:13,600 --> 00:04:15,400\\nfor Karen\\'s mother to come and get her,\\n\\n49\\n00:04:15,600 --> 00:04:17,400\\nso this was a good chance for me to\\n\\n50\\n00:04:17,600 --> 00:04:19,400\\ntell Karen of some of the dangers\\n\\n51\\n00:04:19,600 --> 00:04:21,400\\nchildren her age must\\n\\n52\\n00:04:21,600 --> 00:04:23,400\\nbe on the lookout for.\\n\\n53\\n00:04:25,600 --> 00:04:27,400\\nMost people in the world are good and \\n\\n54\\n00:04:27,600 --> 00:04:29,400\\nnice, but unfortunately\\n\\n55\\n00:04:29,600 --> 00:04:32,400\\nthere are some strange ones,\\n\\n56\\n00:04:32,600 --> 00:04:35,400\\nand these strange ones are sick.\\n\\n57\\n00:04:35,600 --> 00:04:37,400\\nNot sick with a cold or measles\\n\\n58\\n00:04:37,600 --> 00:04:39,400\\nor anything like that,\\n\\n59\\n00:04:39,600 --> 00:04:41,400\\nbut sick in the mind.\\n\\n60\\n00:04:41,600 --> 00:04:44,400\\nWe call them \"mentally ill.\"\\n\\n61\\n00:04:48,600 --> 00:04:50,400\\nNow many boys and girls enjoy playing\\n\\n62\\n00:04:51,600 --> 00:04:52,400\\nin areas like this.\\n\\n63\\n00:04:52,600 --> 00:04:54,400\\nThey explore interesting places \\n\\n63\\n00:04:54,600 --> 00:04:56,400\\nand make up games to play by themselves.\\n\\n64\\n00:05:02,600 --> 00:05:05,400\\nBut you never know when there might be a strange one around.\\n\\n65\\n00:05:12,600 --> 00:05:14,400\\nSometimes we become so involved\\n\\n66\\n00:05:14,600 --> 00:05:16,400\\nin what we are doing that we can\\'t\\n\\n67\\n00:05:16,600 --> 00:05:18,400\\nsee the danger.\\n\\n68\\n00:05:20,600 --> 00:05:22,400\\nAnd even if this little boy had\\n\\n69\\n00:05:22,600 --> 00:05:24,400\\nseen the man, how could he know\\n\\n70\\n00:05:24,600 --> 00:05:26,400\\nthat he was a strange one?\\n\\n71\\n00:05:26,600 --> 00:05:28,400\\nThere\\'s no way to tell. The strange ones \\n\\n72\\n00:05:28,600 --> 00:05:31,400\\nlook just like everyone else.\\n\\n73\\n00:05:37,600 --> 00:05:39,400\\nIt is wise to avoid playing in deserted\\n\\n74\\n00:05:39,600 --> 00:05:41,400\\nareas like this, especially\\n\\n75\\n00:05:41,600 --> 00:05:44,400\\nwhen you are alone.\\n\\n76\\n00:05:46,600 --> 00:05:48,400\\nI explained to Karen that you should\\n\\n77\\n00:05:48,600 --> 00:05:50,400\\nnot play in any area where there are no other\\n\\n78\\n00:05:50,600 --> 00:05:52,400\\npeople around, and you must also\\n\\n79\\n00:05:52,600 --> 00:05:55,400\\nbe on your guard even when you are in Downtown,\\n\\n80\\n00:05:55,600 --> 00:05:57,400\\nlike this little girl.\\n\\n81\\n00:05:57,600 --> 00:05:59,400\\nShe\\'s running an errand for her mother.\\n\\n82\\n00:06:02,600 --> 00:06:04,400\\nWhen a stranger stops her and asks directions\\n\\n83\\n00:06:04,600 --> 00:06:06,400\\nshe politely and courteously\\n\\n84\\n00:06:06,600 --> 00:06:08,400\\ngives him the information.\\n\\n85\\n00:06:14,600 --> 00:06:16,400\\nBut when he asks her to go with him,\\n\\n86\\n00:06:16,600 --> 00:06:18,400\\nof course she says no, politely\\n\\n87\\n00:06:18,600 --> 00:06:21,400\\nexcuses herself, and goes on her way.\\n\\n88\\n00:06:23,600 --> 00:06:25,400\\nNever go with strangers when they\\n\\n89\\n00:06:25,600 --> 00:06:27,400\\nask for directions, and if there\\n\\n90\\n00:06:27,600 --> 00:06:30,400\\nis any trouble, just call out for help.\\n\\n91\\n00:06:31,600 --> 00:06:33,400\\nAnd if you see any of your friends about\\n\\n92\\n00:06:33,600 --> 00:06:36,400\\nto make a mistake, you can help.\\n\\n93\\n00:06:44,600 --> 00:06:46,400\\nIt\\'s always a good idea when you go\\n\\n94\\n00:06:46,600 --> 00:06:48,400\\nto the park, or the movies,\\n\\n95\\n00:06:48,600 --> 00:06:50,400\\nor even to the store, to take\\n\\n96\\n00:06:50,600 --> 00:06:53,400\\nalong a friend.\\n\\n97\\n00:06:53,600 --> 00:06:55,400\\nAnd when you are at the park, play in\\n\\n98\\n00:06:55,600 --> 00:06:58,400\\nthe areas that are set aside as playgrounds.\\n\\n99\\n00:07:00,600 --> 00:07:02,400\\nDo not hang around the restrooms.\\n\\n100\\n00:07:02,600 --> 00:07:04,400\\nAnd if you see any of your playmates\\n\\n101\\n00:07:04,600 --> 00:07:06,400\\nabout to get into trouble,\\n\\n102\\n00:07:06,600 --> 00:07:08,400\\nget help from a police officer\\n\\n103\\n00:07:08,600 --> 00:07:10,400\\nor someone you know.\\n\\n104\\n00:07:24,600 --> 00:07:26,400\\nJust as these children did.\\n\\n105\\n00:07:26,600 --> 00:07:29,400\\nThey ran and found the little girl\\'s mother\\n\\n106\\n00:07:40,600 --> 00:07:43,400\\nNot only [do you] have to look out for yourself\\n\\n107\\n00:07:43,600 --> 00:07:45,400\\nbut for the little children who don\\'t know any better,\\n\\n108\\n00:07:45,600 --> 00:07:47,400\\nwho can\\'t understand that \\n\\n109\\n00:07:47,600 --> 00:07:50,400\\nsome people are sick in the mind.\\n\\n110\\n00:07:50,600 --> 00:07:52,400\\nThere are so many ways you can get into\\n\\n111\\n00:07:52,600 --> 00:07:54,400\\ntrouble with the strange ones,\\n\\n112\\n00:07:54,600 --> 00:07:57,400\\nand one of the quickest is by hitchhiking.\\n\\n113\\n00:07:59,600 --> 00:08:01,400\\nIt is a wise young man who\\n\\n114\\n00:08:01,600 --> 00:08:04,400\\nknows not to hitch rides with strangers.\\n\\n115\\n00:08:04,600 --> 00:08:06,400\\nThere are so many things that can happen, other\\n\\n116\\n00:08:06,600 --> 00:08:09,400\\nthan your getting a quick ride home.\\n\\n117\\n00:08:09,600 --> 00:08:12,400\\nThe man may be drunk and get into an accident,\\n\\n118\\n00:08:12,600 --> 00:08:16,400\\nor he may be just a bad driver,\\n\\n119\\n00:08:16,600 --> 00:08:18,400\\nor, a strange one with no intention\\n\\n120\\n00:08:18,600 --> 00:08:20,400\\nof taking you home.\\n\\n121\\n00:08:20,600 --> 00:08:22,400\\nIf you ever see any of your friends\\n\\n122\\n00:08:22,600 --> 00:08:24,400\\nhitchhiking, and cannot stop them,\\n\\n123\\n00:08:24,600 --> 00:08:27,400\\nget the license number of the car.\\n\\n124\\n00:08:27,600 --> 00:08:30,400\\nAnd remember not to take shortcuts,\\n\\n125\\n00:08:30,600 --> 00:08:34,400\\nespecially through alleys or empty side streets.\\n\\n126\\n00:08:52,600 --> 00:08:54,400\\nYou never know when a strange one might\\n\\n127\\n00:08:54,600 --> 00:08:56,400\\napproach you, and it may never happen,\\n\\n128\\n00:08:52,600 --> 00:08:59,400\\nbut it is far better to be on the safe side.\\n\\n129\\n00:08:59,600 --> 00:09:02,400\\nBe on your guard, and know what to look out for,\\n\\n130\\n00:09:09,600 --> 00:09:12,400\\nlike this little girl in the movie theater.\\n\\n131\\n00:09:20,600 --> 00:09:23,400\\nShe remembers what her parents told her:\\n\\n132\\n00:09:24,600 --> 00:09:27,400\\nNever let a stranger touch you or put his hands on you.\\n\\n133\\n00:09:34,600 --> 00:09:36,400\\nShe told the usher in the theater,\\n\\n134\\n00:09:36,600 --> 00:09:39,400\\nand this man won\\'t bother anyone again.\\n\\n135\\n00:09:39,600 --> 00:09:41,400\\nI think Karen can see now\\n\\n136\\n00:09:41,600 --> 00:09:43,400\\nhow foolish she was, and if it\\n\\n137\\n00:09:43,600 --> 00:09:45,400\\nhadn\\'t been for her friend\\n\\n138\\n00:09:45,600 --> 00:09:47,400\\nremembering the right thing to do, how\\n\\n139\\n00:09:47,600 --> 00:09:50,400\\nmuch trouble she might have been in.\\n\\n141\\n00:09:52,600 --> 00:09:54,400\\nKaren will remember never to\\n\\n142\\n00:09:54,600 --> 00:09:56,400\\naccept gifts or rides from strangers,\\n\\n143\\n00:09:56,600 --> 00:09:58,400\\nand now she knows to stay clear of\\n\\n144\\n00:09:58,600 --> 00:10:00,400\\ndeserted places.\\n\\n145\\n00:10:00,600 --> 00:10:02,400\\nWell, Karen\\'s adventure has made her\\n\\n146\\n00:10:02,600 --> 00:10:04,400\\na wiser little girl, \\n\\n147\\n00:10:04,600 --> 00:10:07,400\\nand I hope you have become wiser too.\\n\\n148\\n00:10:10,600 --> 00:10:13,400\\nThe End A Sid Davis Production',\n", + " 'bytes': 10646,\n", + " 'sha1': 'ij5c1l4el3j7b1a7pta14x82rtis30p',\n", + " 'parent_id': 189753114,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 189655535,\n", + " 'timestamp': '2016-03-07T07:01:22Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 24864946,\n", + " 'title': 'Dangerousstranger.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'How on earth did I transcribe it like this?',\n", + " 'text': '1\\n00:00:00,400 --> 00:00:02,400\\n\\'\\'The Dangerous Stranger\\'\\'\\n\\n2\\n00:00:02,600 --> 00:00:4,400\\nWritten and photographed by Orville H. Hampton \\n\\n3\\n00:00:4,600 --> 00:00:6,400\\nAssociate Producer Cinesound Recording\\n\\n4\\n00:00:6,600 --> 00:00:8,400\\nProduced and Directed by Sid Davis\\n\\n5\\n00:00:8,600 --> 00:00:10,400\\nThis picture was produced with the counsel and assistance\\n\\n6\\n00:00:10,600 --> 00:00:12,400\\nof the Police Department, City of Los Angeles.\\n\\n7\\n00:00:12,600 --> 00:00:14,400\\nActors appear as a public service; we acknowledge \\n\\n8\\n00:00:14,600 --> 00:00:16,400\\nthe cooperation of the Ben Bard Drama Studio, Hollywood.\\n\\n9\\n00:00:20,600 --> 00:00:22,400\\nKids,\\n\\n10\\n00:00:22,600 --> 00:00:24,400\\nI\\'ve got a couple of pretty important things I\\'m gonna tell you.\\n\\n11\\n00:00:24,600 --> 00:00:26,400\\nI want you to love them.\\n\\n12\\n00:00:26,600 --> 00:00:28,400\\nAnd I sure wouldn\\'t want them to get into any trouble.\\n\\n13\\n00:00:28,600 --> 00:00:31,400\\n[...]more than your parents would want anything to happen[...]\\n\\n14\\n00:00:31,600 --> 00:00:33,400\\nWhat I\\'d like to talk about\\n\\n14\\n00:00:33,600 --> 00:00:35,400\\nGetting into trouble\\n\\n15\\n00:00:37,600 --> 00:00:39,400\\nYou\\'ve heard your mothers and fathers talking or\\n\\n16\\n00:00:39,600 --> 00:00:42,400\\nseeing the newspapers about things that happen\\n\\n17\\n00:00:42,600 --> 00:00:45,400\\nto other little boys and girls, haven\\'t you?\\n\\n18\\n00:00:46,600 --> 00:00:49,400\\nTheir mothers and fathers never saw them again\\n\\n19\\n00:00:49,600 --> 00:00:52,400\\nI know you wouldn\\'t wanna do that to your folks.\\n\\n20\\n00:00:52,600 --> 00:00:55,400\\nBut sometimes boys and girls forget what\\n\\n21\\n00:00:55,600 --> 00:00:57,400\\ntheir parents and teachers tell them\\n\\n22\\n00:00:57,600 --> 00:00:59,400\\nabout strangers.\\n\\n23\\n00:00:59,600 --> 00:01:02,400\\nAnd there\\'s always the wise guy\\n\\n24\\n00:01:02,600 --> 00:01:05,400\\nwho thinks he knows it all.\\n\\n25\\n00:01:11,600 --> 00:01:13,400\\nRemember the kids who get in trouble with strangers\\n\\n26\\n00:01:13,600 --> 00:01:15,400\\nare those who forget what they\\'ve been told,\\n\\n27\\n00:01:15,600 --> 00:01:17,400\\nand the ones who think they know more than\\n\\n28\\n00:01:17,600 --> 00:01:19,400\\ntheir parents and teachers.\\n\\n29\\n00:01:19,600 --> 00:01:21,400\\nI heard about the same things.\\n\\n30\\n00:01:21,600 --> 00:01:23,400\\nWhy don\\'t we all just\\n\\n31\\n00:01:23,600 --> 00:01:25,400\\nsee how some of the other boys and girls\\n\\n32\\n00:01:25,600 --> 00:01:27,400\\ngot mixed up with strangers.\\n\\n33\\n00:01:27,600 --> 00:01:30,400\\nso we can make sure it doesn\\'t happen to [us/you?]\\n\\n34\\n00:01:32,600 --> 00:01:34,400\\nRemember the story about the little girl in the paper?\\n\\n35\\n00:01:36,600 --> 00:01:38,400\\nHello, little lady!\\n\\n36\\n00:01:38,600 --> 00:01:40,400\\nAll alone, aren\\'t ya[you]?\\n\\n37\\n00:01:40,600 --> 00:01:42,400\\nWant\\'cha[Want a] ride?\\n\\n38\\n00:01:42,600 --> 00:01:45,400\\nI\\'ll buy you some ice cream.\\n\\n39\\n00:01:50,600 --> 00:01:52,400\\n\"Fear Cal.[California] Girl, Victim of Kidnap\" [Newspaper headline]\\n\\n40\\n00:01:52,600 --> 00:01:54,400\\nWell, nobody ever saw her again.\\n\\n41\\n00:01:54,600 --> 00:01:57,400\\nIt was in the headlines and on the radio.\\n\\n42\\n00:01:57,600 --> 00:01:59,400\\nYou probably heard it.\\n\\n43\\n00:01:59,600 --> 00:02:01,400\\n\"The police believe she was kidnapped.\\n\\n44\\n00:02:01,600 --> 00:02:03,400\\nThey have no clues to the identity of the stranger in the shabby car. \\n\\n45\\n00:02:03,600 --> 00:02:06,400\\nNobody has thought to take the license number of the car,\\n\\n46\\n00:02:06,600 --> 00:02:08,400\\nand if you see any little girl...\"\\n\\n47\\n00:02:08,600 --> 00:02:10,400\\nThat\\'s the way it happened,\\n\\n48\\n00:02:10,600 --> 00:02:13,400\\nAnd just look at how sad it made her mother and father.\\n\\n49\\n00:02:13,600 --> 00:02:15,400\\nI had to tell them about it.\\n\\n50\\n00:02:15,600 --> 00:02:17,400\\nAll because she forgot \\n\\n51\\n00:02:17,600 --> 00:02:20,400\\nwhat they had told her about strangers.\\n\\n52\\n00:02:25,600 --> 00:02:27,400\\nNow let\\'s look at some of the places\\n\\n53\\n00:02:27,600 --> 00:02:30,400\\nand some of the ways you might run into trouble.\\n\\n54\\n00:02:30,600 --> 00:02:32,400\\nLet\\'s see what we should do\\n\\n55\\n00:02:32,600 --> 00:02:34,400\\nif anything happens.\\n\\n50\\n00:02:34,600 --> 00:02:37,400\\nHere\\'s one: a lonely alley\\n\\n51\\n00:02:37,600 --> 00:02:39,400\\nAnybody [wouldn\\'t] try to arm you with\\n\\n52\\n00:02:39,600 --> 00:02:41,400\\na lot of other kids around, wouldn\\'t it?\\n\\n53\\n00:02:41,600 --> 00:02:43,400\\nWhat kind of a kid would a\\n\\n54\\n00:02:43,600 --> 00:02:46,400\\nman like that look for?\\n\\n55\\n00:02:51,600 --> 00:02:54,400\\nThat\\'s right. A wise guy,\\n\\n56\\n00:02:54,600 --> 00:02:56,400\\nlike Jimmy here,\\n\\n57\\n00:02:56,600 --> 00:02:58,400\\nwho thinks he knows everything.\\n\\n58\\n00:02:58,600 --> 00:03:00,400\\nMaybe he won\\'t get into any trouble.\\n\\n59\\n00:03:00,600 --> 00:03:03,400\\nBut he sure[is] takin\\' a chance.\\n\\n60\\n00:03:06,600 --> 00:03:09,400\\nI don\\'t think it\\'s worth it. Do you?\\n\\n61\\n00:03:11,600 --> 00:03:13,400\\nNow here\\'s a place you always meet\\n\\n62\\n00:03:13,600 --> 00:03:15,400\\na lot of friends, like the cowboy\\n\\n63\\n00:03:15,600 --> 00:03:17,400\\nup on the screen,\\n\\n64\\n00:03:17,600 --> 00:03:20,400\\nand the manager.\\n\\n65\\n00:03:20,600 --> 00:03:22,400\\nWhat if somebody says hello to you or\\n\\n66\\n00:03:22,600 --> 00:03:24,400\\nsmiles, well that\\'s alright.\\n\\n67\\n00:03:24,600 --> 00:03:25,400\\nMost everybody likes kids. \\n\\n68\\n00:03:25,600 --> 00:03:28,400\\nWhether they are strangers or whether they know you.\\n\\n69\\n00:03:28,600 --> 00:03:30,400\\nBut watch this man!\\n\\n70\\n00:03:32,600 --> 00:03:34,400\\nHe followed the little girl into the theater.\\n\\n71\\n00:03:34,600 --> 00:03:36,400\\nHe isn\\'t just an ordinary stranger \\n\\n72\\n00:03:36,600 --> 00:03:38,400\\nwho likes kids.\\n\\n73\\n00:03:38,600 --> 00:03:41,400\\nHe might make trouble.\\n\\n74\\n00:03:52,600 --> 00:03:55,400\\nWatch...\\n\\n75\\n00:03:56,600 --> 00:03:59,400\\n...how he put his arm around her.\\n\\n76\\n00:03:59,600 --> 00:04:01,400\\nNever let anybody do that except\\n\\n77\\n00:04:01,600 --> 00:04:04,400\\nyour own family. No stranger!\\n\\n78\\n00:04:04,600 --> 00:04:06,400\\nThank goodness this little girl is smart.\\n\\n79\\n00:04:06,600 --> 00:04:08,400\\nShe changed her seat.\\n\\n80\\n00:04:08,600 --> 00:04:10,400\\nJust what her parents [told her] to do.\\n\\n81\\n00:04:10,600 --> 00:04:12,400\\nThat\\'s exactly what you should do.\\n\\n82\\n00:04:12,600 --> 00:04:15,400\\n[another]? What\\'ll she do now?\\n\\n83\\n00:04:15,600 --> 00:04:18,400\\nThat\\'s right! Get the usher.\\n\\n84\\n00:04:18,600 --> 00:04:20,400\\nIf this should ever happen to you,\\n\\n85\\n00:04:20,600 --> 00:04:22,400\\ndo the same thing.\\n\\n86\\n00:04:22,600 --> 00:04:24,400\\nThe usher will make sure\\n\\n87\\n00:04:24,600 --> 00:04:26,400\\nnone of the kids is ever bothered\\n\\n88\\n00:04:26,600 --> 00:04:29,400\\nby that man again.\\n\\n89\\n00:04:31,600 --> 00:04:33,400\\nYou see how it works?\\n\\n90\\n00:04:33,600 --> 00:04:35,400\\nIf you just remember what you\\'ve been told\\n\\n91\\n00:04:35,600 --> 00:04:37,400\\nand don\\'t be a wise guy,\\n\\n92\\n00:04:37,600 --> 00:04:39,400\\nit\\'s easy to stay out of trouble.\\n\\n93\\n00:04:39,600 --> 00:04:41,400\\nFor instance, in a place like this park.\\n\\n93\\n00:04:43,600 --> 00:04:45,400\\nThis little girl\\'s mother told her never\\n\\n94\\n00:04:45,600 --> 00:04:47,400\\nto take candy from strangers.\\n\\n95\\n00:04:47,600 --> 00:04:49,400\\nWell... she forgot.\\n\\n96\\n00:04:50,600 --> 00:04:52,400\\nBut her brother didn\\'t.\\n\\n97\\n00:04:52,600 --> 00:04:55,400\\nHe started to yell and the man ran away.\\n\\n99\\n00:04:55,600 --> 00:04:57,400\\nHe was afraid of a policeman.\\n\\n100\\n00:04:57,600 --> 00:05:00,400\\nRemember that kid that saw good tricks.\\n\\n101\\n00:05:03,600 --> 00:05:06,400\\nHello, Sally! I\\'m a friend of your mother.\\n\\n102\\n00:05:06,600 --> 00:05:08,400\\nShe sent me to bring you home.\\n\\n103\\n00:05:08,600 --> 00:05:11,400\\nCome on!\\n\\n104\\n00:05:16,600 --> 00:05:18,400\\nNow Sally\\'s mother told her\\n\\n105\\n00:05:18,600 --> 00:05:20,400\\nnever to ride home with a stranger.\\n\\n106\\n00:05:20,600 --> 00:05:22,400\\nBut Sally forgot too!\\n\\n107\\n00:05:27,600 --> 00:05:29,400\\nIt was only because her b[rother] was smart and took \\n\\n108\\n00:05:29,600 --> 00:05:31,400\\nthe l[icense] number that Sally ever got home.\\n\\n109\\n00:05:31,600 --> 00:05:33,400\\nNow we\\'ve seen some dumb bunnies so far, haven\\'t we?\\n\\n110\\n00:05:33,600 --> 00:05:35,400\\nBut these are the dumbest of all:\\n\\n111\\n00:05:35,600 --> 00:05:37,400\\nThe hitchhikers.\\n\\n112\\n00:05:37,600 --> 00:05:39,400\\nWhy? Well even if\\n\\n113\\n00:05:39,600 --> 00:05:41,400\\nthe driver doesn\\'t mean any harm,\\n\\n114\\n00:05:41,600 --> 00:05:44,400\\nand you\\'re just plain lucky if he doesn\\'t,\\n\\n115\\n00:05:44,600 --> 00:05:46,400\\nHe may be a reckless driver\\n\\n116\\n00:05:46,600 --> 00:05:48,400\\nor a speeder.\\n\\n117\\n00:05:50,600 --> 00:05:52,400\\nThis car might have bad brakes.\\n\\n118\\n00:05:52,600 --> 00:05:54,400\\nThe hitchhiker doesn\\'t know.\\n\\n119\\n00:05:54,600 --> 00:05:57,400\\nHe just goes right along anyway.\\n\\n120\\n00:05:59,600 --> 00:06:01,400\\nWell, these kids aren\\'t gonna\\n\\n121\\n00:06:01,600 --> 00:06:03,400\\nbe so lucky. Too bad.\\n\\n122\\n00:06:03,600 --> 00:06:06,400\\nThey asked for trouble and they\\'re getting it.\\n\\n123\\n00:06:08,600 --> 00:06:10,400\\nThank goodness one of the boys\\n\\n124\\n00:06:10,600 --> 00:06:12,400\\nkept his head.\\n\\n125\\n00:06:12,600 --> 00:06:15,400\\nHe took the license number of the car,\\n\\n126\\n00:06:15,600 --> 00:06:18,400\\nand another boy saw a squad car coming down the next street.\\n\\n127\\n00:06:27,600 --> 00:06:29,400\\nMaybe the little girl can still be rescued.\\n\\n128\\n00:06:29,600 --> 00:06:31,400\\n\"Police\" [On automobile]\\n\\n129\\n00:06:33,600 --> 00:06:35,400\\nIf they can get the radio alarm\\n\\n130\\n00:06:35,600 --> 00:06:37,400\\nout quick enough.\\n\\n131\\n00:06:39,600 --> 00:06:41,400\\nJust think, if they hadn\\'t been hitching rides\\n\\n132\\n00:06:41,600 --> 00:06:43,400\\nthis needn\\'t have happened at all.\\n\\n133\\n00:06:43,600 --> 00:06:46,400\\nBut that doesn\\'t help much now, does it?\\n\\n134\\n00:06:53,600 --> 00:06:55,400\\nThat\\'s lucky! Two motorcycle policemen\\n\\n135\\n00:06:55,600 --> 00:06:58,400\\ngot the alarm.\\n\\n136\\n00:06:58,600 --> 00:07:01,400\\nAnd there they go after him!\\n\\n137\\n00:07:10,600 --> 00:07:13,400\\nJust remember, whether you\\'re a boy or a girl,\\n\\n138\\n00:07:16,600 --> 00:07:18,400\\nThat might be you in that car\\n\\n139\\n00:07:18,600 --> 00:07:20,400\\nif you hitch rides.\\n\\n140\\n00:07:36,600 --> 00:07:38,400\\nLook at that! They got him!\\n\\n141\\n00:07:38,600 --> 00:07:40,400\\nThis little girl is very, very lucky!\\n\\n142\\n00:07:40,600 --> 00:07:42,400\\nWho knows what might have happened if\\n\\n143\\n00:07:42,600 --> 00:07:44,400\\none boy hadn\\'t been smart enough\\n\\n144\\n00:07:44,600 --> 00:07:46,400\\nto take the license number. \\n\\n145\\n00:07:46,600 --> 00:07:48,400\\nIsn\\'t it silly to worry your parents\\n\\n146\\n00:07:48,600 --> 00:07:50,400\\nand take chances like that?\\n\\n147\\n00:07:50,600 --> 00:07:53,400\\nWell, gang, what did we learn from all this?\\n\\n148\\n00:07:53,600 --> 00:07:55,400\\nMaybe Dodo here can show us!\\n\\n149\\n00:07:55,600 --> 00:07:58,400\\nHe does everything wrong.\\n\\n150\\n00:08:00,600 --> 00:08:03,400\\nIf Dodo meets a stranger in a lonely alley,\\n\\n151\\n00:08:03,600 --> 00:08:05,400\\nhe just goes right along with him.\\n\\n152\\n00:08:09,600 --> 00:08:11,400\\nOr at the movies,\\n\\n153\\n00:08:11,600 --> 00:08:13,400\\nDodo\\'s[Dodo is] friends with anybody,\\n\\n154\\n00:08:13,600 --> 00:08:15,400\\nstranger or not. Isn\\'t that dumb?\\n\\n155\\n00:08:17,600 --> 00:08:19,400\\nSure, her parents tell her not to,\\n\\n156\\n00:08:19,600 --> 00:08:22,400\\nbut Miss Dodo thinks she\\'s smart.\\n\\n157\\n00:08:25,600 --> 00:08:27,400\\nShe thinks they don\\'t know what they\\'re talking about.\\n\\n158\\n00:08:27,600 --> 00:08:30,400\\nYou know what a Dodo is?\\n\\n159\\n00:08:30,600 --> 00:08:33,400\\nA Dodo is an extinct bird.\\n\\n160\\n00:08:33,600 --> 00:08:35,400\\nThat means it isn\\'t alive anymore.\\n\\n161\\n00:08:35,600 --> 00:08:37,400\\nThat\\'s the way this Dodo\\'s going to be:\\n\\n162\\n00:08:37,600 --> 00:08:39,400\\nExtinct.\\n\\n163\\n00:08:39,600 --> 00:08:41,400\\nTaking all those chances.\\n\\n164\\n00:08:41,600 --> 00:08:43,400\\n\"Dunce\" [on hat] \"I take chances\" and \"I use my head\" [Signs]\\n\\n165\\n00:08:43,600 --> 00:08:45,400\\nWell, who do you want to be like, kids?\\n\\n166\\n00:08:45,600 --> 00:08:47,400\\nA dumb dodo or a really smart kid?\\n\\n167\\n00:08:49,600 --> 00:08:51,400\\nWell, that\\'s about what I had to tell you.\\n\\n168\\n00:08:51,600 --> 00:08:53,400\\nJust remember those two things\\n\\n169\\n00:08:53,600 --> 00:08:55,400\\nto do what your teachers and parents tell you\\n\\n170\\n00:08:55,600 --> 00:08:57,400\\nand to be a really smart kid,\\n\\n171\\n00:08:57,600 --> 00:09:00,400\\nnot a dumb dodo.\\n\\n172\\n00:09:00,600 --> 00:09:02,400\\nIf you do, it\\'ll be pretty hard\\n\\n173\\n00:09:02,600 --> 00:09:04,400\\nto get into trouble.\\n\\n174\\n00:09:04,600 --> 00:09:06,400\\nWell, kids, I\\'ll be seein\\' ya[seeing you].\\n\\n175\\n00:09:14,600 --> 00:09:17,400\\nThe End A Sid Davis Production',\n", + " 'bytes': 12493,\n", + " 'sha1': '6rc23pt1gxj8w2p9jujj5bz064iwgdo',\n", + " 'parent_id': 189654863,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 193389175,\n", + " 'timestamp': '2016-04-15T19:38:57Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 24867527,\n", + " 'title': 'GangBoy.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:04,400\\nSid Davis Productions Presents\\n\\n2\\n00:00:14,000 --> 00:00:18,400\\n\\'\\'Gang Boy\\'\\'\\n\\n3\\n00:00:19,000 --> 00:00:23,400\\nFeaturing Curly Riviera as Danny\\n\\n4\\n00:00:26,600 --> 00:00:28,400\\nAcknowledgement\\n\\n5\\n00:00:28,600 --> 00:00:30,400\\nWe gratefully acknowledge the valuable contributions\\n\\n6\\n00:00:30,400 --> 00:00:32,400\\nmade to this film by the following clubs;\\n\\n7\\n00:00:32,600 --> 00:00:34,400\\nRed Hearts, Red Dragons, Sharkies, Vikings, Lancers;\\n\\n8\\n00:00:34,600 --> 00:00:36,400\\nby Karl Holton, Probation Officer, Judge William B. McKesson,\\n\\n9\\n00:00:36,600 --> 00:00:38,400\\nby the Pomona Board of Education and\\n\\n10\\n00:00:38,600 --> 00:00:40,400\\nthe Pomona Police Department.\\n\\n11\\n00:00:50,000 --> 00:00:54,400\\nProduced and Photographed by Sid Davis\\n\\n12\\n00:00:56,600 --> 00:01:00,400\\nWritten and Directed by Arthur Swerdloff\\n\\n13\\n00:01:03,600 --> 00:01:06,400\\nThe \"gang boy\" is a phenomenon of youth.\\n\\n14\\n00:01:07,600 --> 00:01:09,400\\nLet\\'s get outta [out of] here!\\n\\n13\\n00:01:09,600 --> 00:01:12,400\\nHe belongs to every race, every creed\\n\\n14\\n00:01:12,600 --> 00:01:14,400\\nand every color. He is the symptom of\\n\\n15\\n00:01:14,600 --> 00:01:16,400\\na sickness in society.\\n\\n16\\n00:01:16,600 --> 00:01:18,400\\nWe\\'ll get \\'em tonight!\\n\\n17\\n00:01:21,600 --> 00:01:23,400\\nThis Peppertree Gang\\n\\n18\\n00:01:23,600 --> 00:01:25,400\\nnow has fifteen shotguns,\\n\\n19\\n00:01:25,600 --> 00:01:27,400\\nthree hand grenades,\\n\\n20\\n00:01:27,600 --> 00:01:29,400\\na keg of black powder,\\n\\n21\\n00:01:29,600 --> 00:01:32,400\\nand sixty sticks of dynamite.\\n\\n22\\n00:01:32,600 --> 00:01:34,400\\nThis morning they blew the top off \\n\\n23\\n00:01:34,600 --> 00:01:36,400\\na palm tree on Palomino Road.\\n\\n24\\n00:01:36,600 --> 00:01:38,400\\nThat\\'s the picture.\\n\\n25\\n00:01:38,600 --> 00:01:40,400\\nAnd it\\'s not pretty.\\n\\n26\\n00:01:40,600 --> 00:01:42,400\\nThese kids are about to get \\n\\n25\\n00:01:42,600 --> 00:01:44,400\\ninto a gang war that will \\n\\n25\\n00:01:44,600 --> 00:01:46,400\\nruin every one of their lives. \\n\\n26\\n00:01:46,600 --> 00:01:48,400\\nAnd we\\'re going to do everything\\n\\n27\\n00:01:48,600 --> 00:01:50,400\\nin our power to prevent it.\\n\\n28\\n00:01:50,600 --> 00:01:53,400\\nPlace all extra patrols that we have on duty, Captain.\\n\\n29\\n00:01:53,600 --> 00:01:55,400\\nKeep these groups from gathering\\n\\n30\\n00:01:55,600 --> 00:01:57,400\\nat any location in the city.\\n\\n31\\n00:01:59,600 --> 00:02:01,400\\nAnd Kerson, see if you can\\n\\n32\\n00:02:01,600 --> 00:02:04,400\\nget the leaders together here at the station.\\n\\n33\\n00:02:04,600 --> 00:02:07,400\\nMaybe we can talk this thing out.\\n\\n34\\n00:02:09,600 --> 00:02:11,400\\nThey\\'re coming tonight, Danny.\\n\\n35\\n00:02:14,600 --> 00:02:16,400\\nThey\\'re gonna break up the dance.\\n\\n36\\n00:02:17,600 --> 00:02:20,400\\nHey, Danny. Can I have a word with ya?\\n\\n37\\n00:02:21,600 --> 00:02:23,400\\nDon\\'t listen to them, Danny!\\n\\n38\\n00:02:23,600 --> 00:02:25,400\\nToo late now!\\n\\n39\\n00:02:25,600 --> 00:02:27,400\\nComin\\' to see the Pepper Tree.\\n\\n40\\n00:02:27,600 --> 00:02:29,400\\nShut up!\\n\\n41\\n00:02:29,600 --> 00:02:32,400\\nOkay, Lieutenant. I\\'ll listen.\\n\\n42\\n00:02:32,600 --> 00:02:34,400\\nIt won\\'t do no good.\\n\\n43\\n00:02:35,600 --> 00:02:37,400\\nI know a truce won\\'t solve the problem.\\n\\n44\\n00:02:37,600 --> 00:02:39,400\\nBut it will delay the fighting.\\n\\n45\\n00:02:39,600 --> 00:02:41,400\\nWhat do you say?\\n\\n46\\n00:02:41,600 --> 00:02:43,400\\nI\\'ll think it over.\\n\\n47\\n00:02:44,600 --> 00:02:46,400\\nI walked around for hours.\\n\\n48\\n00:02:46,600 --> 00:02:50,400\\nAnd then some inner force drove me up here to the dam.\\n\\n49\\n00:02:50,600 --> 00:02:53,400\\nIn a small, dark corner\\n\\n50\\n00:02:53,600 --> 00:02:56,400\\nmy mind had remembered something.\\n\\n51\\n00:02:56,600 --> 00:02:59,400\\nSomething that would help me to decide.\\n\\n52\\n00:03:00,600 --> 00:03:02,400\\nBut I couldn\\'t get at it.\\n\\n53\\n00:03:02,600 --> 00:03:04,400\\nI tried to think back.\\n\\n54\\n00:03:05,600 --> 00:03:06,400\\nTo figure...\\n\\n55\\n00:03:06,600 --> 00:03:09,400\\nHow and why I became a gang boy.\\n\\n56\\n00:03:10,600 --> 00:03:13,400\\nBut all I could think of was that...\\n\\n57\\n00:03:13,600 --> 00:03:16,400\\nMy gang began with poor but healthy kids.\\n\\n58\\n00:03:16,600 --> 00:03:18,400\\nAnd that we seemed to come together\\n\\n59\\n00:03:18,600 --> 00:03:21,400\\nbecause of a battle that each of us\\n\\n60\\n00:03:21,600 --> 00:03:24,400\\nwas fighting within himself...\\n\\n61\\n00:03:24,600 --> 00:03:27,400\\nand with the angry world around him.\\n\\n62\\n00:03:28,600 --> 00:03:30,40\\nGet him, Danny.\\n\\n63\\n00:03:30,600 --> 00:03:33,40\\nGet him and shoot him. Get him!\\n\\n64\\n00:03:34,600 --> 00:03:35,40\\nGet him, Danny.\\n\\n65\\n00:03:39,600 --> 00:03:42,40\\nIt was a battle I could feel myself losing.\\n\\n66\\n00:03:42,600 --> 00:03:44,40\\nEven when I was winning a fight.\\n\\n67\\n00:03:44,600 --> 00:03:46,40\\nCome on! Knock this off.\\n\\n68\\n00:03:46,600 --> 00:03:48,40\\nLeave me alone!\\n\\n68\\n00:03:48,600 --> 00:03:50,40\\nNow, wait a minute.\\n\\n69\\n00:03:50,600 --> 00:03:52,40\\nI only want to help you.\\n\\n70\\n00:03:52,600 --> 00:03:54,40\\nI don\\'t need no help.\\n\\n71\\n00:03:54,600 --> 00:03:56,40\\nLeave me alone.\\n\\n72\\n00:03:56,600 --> 00:03:58,40\\nBut how could I accept help from him?\\n\\n72\\n00:03:58,600 --> 00:04:00,40\\nWhen all that I time I thought he too was\\n\\n73\\n00:04:00,600 --> 00:04:03,40\\npart of the angry world I was fighting?\\n\\n76\\n00:04:06,600 --> 00:04:07,40\\nYou!\\n\\n78\\n00:04:07,600 --> 00:04:08,40\\nNo!\\n\\n79\\n00:04:09,600 --> 00:04:11,40\\nAt this age you couldn\\'t call us a gang.\\n\\n80\\n00:04:11,600 --> 00:04:13,40\\nWe were just a bunch of kids playing together.\\n\\n81\\n00:04:13,600 --> 00:04:15,40\\nReady or not, here I come!\\n\\n82\\n00:04:15,600 --> 00:04:17,40\\nWhenever a kid\\'s real world is a wreckyard...\\n\\n83\\n00:04:17,600 --> 00:04:19,40\\nWhen it brings him unhappiness...\\n\\n84\\n00:04:19,600 --> 00:04:23,40\\nHe has a wonderful escape hatch.\\n\\n85\\n00:04:23,600 --> 00:04:25,40\\nHis imagination.\\n\\n86\\n00:04:25,600 --> 00:04:28,40\\nAnd if you step into his world with his mind,\\n\\n87\\n00:04:28,600 --> 00:04:31,40\\nYou will see it quickly change into \\n\\n88\\n00:04:31,600 --> 00:04:34,40\\na beautiful, exciting world of fantasy.\\n\\n89\\n00:04:36,600 --> 00:04:39,40\\nAll at once the wreckyard is an African jungle,\\n\\n90\\n00:04:39,600 --> 00:04:41,40\\ncrawling with big game.\\n\\n91\\n00:04:41,600 --> 00:04:43,40\\nAnd every kid becomes his own favorite animal.\\n\\n92\\n00:04:45,600 --> 00:04:47,40\\nIn that disguise he can as he wishes...\\n\\n93\\n00:04:47,600 --> 00:04:49,40\\nGrowl back at the world.\\n\\n94\\n00:04:50,600 --> 00:04:52,40\\nOr hide from it.\\n\\n95\\n00:04:53,600 --> 00:04:56,40\\nPlaying in places like this got us into trouble.\\n\\n96\\n00:04:58,600 --> 00:05:01,40\\nAnd this conflict made us pals in a never-ending\\n\\n97\\n00:05:01,600 --> 00:05:04,40\\nbattle with the big, powerful adult authority.\\n\\n98\\n00:05:04,600 --> 00:05:06,40\\nIn such a state of mind,\\n\\n99\\n00:05:06,600 --> 00:05:08,40\\nwe got many false ideas about the world from\\n\\n100\\n00:05:08,600 --> 00:05:11,40\\nthings we saw in some movies and comic books.\\n\\n101\\n00:05:14,600 --> 00:05:16,40\\n(laugh)\\n\\n102\\n00:05:16,600 --> 00:05:18,40\\nYou\\'ve got any money?\\n\\n103\\n00:05:18,600 --> 00:05:21,40\\nBut nobody can afford to buy no toys.\\n\\n104\\n00:05:21,600 --> 00:05:23,40\\nWhat can a kid do?\\n\\n105\\n00:05:23,600 --> 00:05:25,40\\nPlenty.\\n\\n106\\n00:05:31,600 --> 00:05:34,40\\nWe explored the large world around us.\\n\\n107\\n00:05:34,600 --> 00:05:36,40\\nAnd we found a million noisy,\\n\\n108\\n00:05:36,600 --> 00:05:38,40\\nmoving, colorful objects.\\n\\n109\\n00:05:38,600 --> 00:05:40,40\\nHey, look here!\\n\\n110\\n00:05:40,600 --> 00:05:42,40\\nSparkling and flashing,\\n\\n111\\n00:05:43,600 --> 00:05:45,40\\nto fascinate our searching eyes,\\n\\n112\\n00:05:45,600 --> 00:05:47,40\\nand to entice our nimble fingers.\\n\\n113\\n00:05:49,600 --> 00:05:52,40\\nBut to us then, stealing was not a crime.\\n\\n114\\n00:05:53,600 --> 00:05:55,40\\nIt was both a game...\\n\\n115\\n00:05:55,600 --> 00:05:57,40\\nThat one there.\\n\\n116\\n00:05:57,600 --> 00:05:59,40\\nThis one?\\n\\n117\\n00:05:59,600 --> 00:06:01,40\\nLet\\'s go!\\n\\n118\\n00:06:01,600 --> 00:06:03,40\\nC\\'mon!',\n", + " 'bytes': 7815,\n", + " 'sha1': 'qmxody4kwwy1egszwe8qd14uunn5s7g',\n", + " 'parent_id': 193388561,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91513537,\n", + " 'timestamp': '2013-02-26T10:45:36Z',\n", + " 'user': {'id': 2666121, 'text': 'NVZ2013'},\n", + " 'page': {'id': 24871548,\n", + " 'title': 'La Despedida.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:58,000 --> 00:01:03,400\\nOye alma la tristeza\\n\\n2\\n00:01:03,500 --> 00:01:08,400\\nY la amarga despedida\\n\\n3\\n00:01:08,600 --> 00:01:13,600\\nQue en la Madre de pureza\\n\\n4\\n00:01:13,800 --> 00:01:18,500\\nHizo de Jesús la vida\\n\\n5\\n00:01:18,501 --> 00:01:26,350\\nPostrar ante su grandeza\\n\\n6\\n00:01:26,500 --> 00:01:31,440\\nContempla cual dolorida\\n\\n7\\n00:01:31,620 --> 00:01:36,640\\nNuestra Madre soberana\\n\\n8\\n00:01:36,710 --> 00:01:41,360\\nLlorando se despedía\\n\\n9\\n00:01:41,550 --> 00:01:46,340\\nDel Hijo de sus entrañas\\n\\n10\\n00:01:46,510 --> 00:01:51,100\\nY esta suerte decía\\n\\n11\\n00:01:54,600 --> 00:01:59,420\\nAdios, Jesús amoroso\\n\\n12\\n00:01:59,530 --> 00:02:04,420\\nAdios, claro sol del alba\\n\\n13\\n00:02:04,590 --> 00:02:09,730\\nAdios, celestial esposo\\n\\n14\\n00:02:09,770 --> 00:02:14,370\\nDe tu Divina Palma\\n\\n15\\n00:02:14,470 --> 00:02:19,110\\nDe mi vientre fruto hermoso\\n\\n16\\n00:03:08,500 --> 00:03:13,420\\nAdios, lucero inmortal\\n\\n17\\n00:03:13,660 --> 00:03:18,550\\nAdios, lumbre de mis ojos\\n\\n18\\n00:03:18,830 --> 00:03:23,670\\nNo me dejes cual rosal\\n\\n19\\n00:03:23,780 --> 00:03:27,580\\nEntre espina y entre abrojos\\n\\n20\\n00:03:28,630 --> 00:03:33,400\\nEn una pena mortal\\n\\n21\\n00:03:36,770 --> 00:03:41,340\\nHijo que a morir te vas\\n\\n22\\n00:03:41,730 --> 00:03:46,500\\nAdios fin de mis suspiros\\n\\n23\\n00:03:46,770 --> 00:03:51,440\\nYa no te vere jamás\\n\\n24\\n00:03:51,870 --> 00:03:56,400\\nPues naci para serviros\\n\\n25\\n00:03:56,630 --> 00:04:01,400\\nY para penar na más.',\n", + " 'bytes': 1428,\n", + " 'sha1': '680qv2aqs563y0yupiaco63emejj2gk',\n", + " 'parent_id': 91512765,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91533929,\n", + " 'timestamp': '2013-02-26T17:32:10Z',\n", + " 'user': {'id': 2655056, 'text': 'Ruby12345678'},\n", + " 'page': {'id': 24880557,\n", + " 'title': 'Ru-Lenin.ogg.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:02,400 Vladimir Ilich Ulianov 2 00:00:02,500 --> 00:00:04,000 Lenin'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,400\\nVladimir Ilich Ulianov \\n2 \\n00:00:02,500 --> 00:00:04,000\\nLenin',\n", + " 'bytes': 96,\n", + " 'sha1': 'bko1bcu6zolg1tz25dnmldh8obn5d3b',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 612671224,\n", + " 'timestamp': '2021-12-08T21:21:35Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 24926676,\n", + " 'title': 'La Donna E Mobile Rigoletto.ogg.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'added more timings for better readabilitiy when the file embedded in articles',\n", + " 'text': \"1\\n00:00:11,303 --> 00:00:13,535\\nLa donna è mobile\\n\\n2\\n00:00:13,584 --> 00:00:15,917\\nQual piuma al vento\\n\\n3\\n00:00:15,951 --> 00:00:19,066\\nMuta d'accento\\n\\n4\\n00:00:19,116 --> 00:00:21,898\\nE di pensiero\\n\\n5\\n00:00:21,949 --> 00:00:24,181\\nSempre un amabile\\n\\n6\\n00:00:24,215 --> 00:00:26,431\\nLeggiadro viso\\n\\n7\\n00:00:26,480 --> 00:00:29,462\\nIn pianto o in riso\\n\\n8\\n00:00:29,496 --> 00:00:32,296\\nÈ menzognero\\n\\n9\\n00:00:32,345 --> 00:00:34,744\\nLa donna è mobil\\n\\n10\\n00:00:34,796 --> 00:00:36,915\\nQual piuma al vento\\n\\n11\\n00:00:36,949 --> 00:00:43,205\\nMuta d'accento\\n\\n12\\n00:00:43,238 --> 00:00:45,837\\nE di pensier\\n\\n13\\n00:00:48,667 --> 00:00:50,989\\nE di pensier\\n\\n14\\n00:00:52,259 --> 00:00:59,923\\nE di pensier\\n\\n15\\n00:01:10,199 --> 00:01:12,547\\nÈ sempre misero\\n\\n16\\n00:01:12,570 --> 00:01:15,131\\nChi a lei s'affida\\n\\n17\\n00:01:15,198 --> 00:01:18,063\\nChi le confida\\n\\n18\\n00:01:18,112 --> 00:01:21,062\\nMal cauto il cuore\\n\\n19\\n00:01:21,128 --> 00:01:23,427\\nPur mai non sentesi\\n\\n20\\n00:01:23,478 --> 00:01:25,827\\nFelice appieno\\n\\n21\\n00:01:25,860 --> 00:01:29,279\\nChi su quel seno\\n\\n22\\n00:01:29,308 --> 00:01:32,828\\nNon liba amore\\n\\n23\\n00:01:32,878 --> 00:01:35,044\\nLa donna è mobil\\n\\n24\\n00:01:35,094 --> 00:01:37,393\\nQual piuma al vento\\n\\n25\\n00:01:37,443 --> 00:01:44,457\\nMuta d'accento\\n\\n26\\n00:01:44,507 --> 00:01:47,449\\nE di pensier\\n\\n27\\n00:01:50,131 --> 00:01:52,130\\nE di pensier\\n\\n28\\n00:01:54,846 --> 00:02:02,812\\nE di\\n\\n29\\n00:02:03,451 --> 00:02:07,788\\npensier\",\n", + " 'bytes': 1431,\n", + " 'sha1': 'ha8a6ff1x1d5k2lcwv5b3gubmj1mpca',\n", + " 'parent_id': 308008466,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92277042,\n", + " 'timestamp': '2013-03-09T12:55:49Z',\n", + " 'user': {'id': 421596, 'text': 'Vivaelcelta'},\n", + " 'page': {'id': 24958128,\n", + " 'title': 'Editing basics - Uploading and adding images.webm.gl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:06,500\\nEsta presentación ensina os pasos básicos para subir imaxes na Wikimedia Commons \\n\\n2\\n00:00:06,700 --> 00:00:09,200\\ne engadilas ós artigos da Wikipedia.\\n\\n3\\n00:00:09,400 --> 00:00:13,500\\nColle este artigo, por exemplo: \"Lente secundaria\".\\n\\n4\\n00:00:13,700 --> 00:00:18,500\\nÉ un tema sobre fotografía que non ten ningunha foto. Vamos amañar isto!\\n\\n5\\n00:00:18,700 --> 00:00:21,500\\nImos usar unha imaxe orixinal que fixen eu.\\n\\n6\\n00:00:21,700 --> 00:00:24,000\\nPara engadila ó artigo temos que cargala\\n\\n7\\n00:00:24,100 --> 00:00:26,200\\nna Wikimedia Commons.\\n\\n8\\n00:00:26,500 --> 00:00:27,200\\nComecemos polo principio.\\n\\n9\\n00:00:27,400 --> 00:00:31,000\\nA Wikimedia Commons é só para obras orixinais feitas por ti,\\n\\n10\\n00:00:31,300 --> 00:00:36,000\\nobras doutras persoas que foron liberadas explicitamente baixo unha licenza compatible coa Wikipedia\\n\\n11\\n00:00:36,300 --> 00:00:40,500\\nou obras que están no dominio público e que non están cubertas por ningún dereito de autoría.\\n\\n12\\n00:00:40,800 --> 00:00:42,000\\nPara subir un ficheiro,\\n\\n11\\n00:00:42,300 --> 00:00:45,000\\nvai a commons.wikimedia.org.\\n\\n12\\n00:00:45,300 --> 00:00:48,000\\nAsegúrate de entrar co teu usuario e contrasinal se aínda non o fixeches.\\n\\n13\\n00:00:48,300 --> 00:00:50,300\\nUsarás a mesma conta que tes na Wikipedia.\\n\\n14\\n00:00:51,000 --> 00:00:53,600\\nPara comezar, vai ó Asistente de cargas\\n\\n15\\n00:00:53,800 --> 00:00:56,800\\npremendo na ligazón \"Cargar o ficheiro\" na esquerda.\\n\\n16\\n00:00:57,000 --> 00:01:00,000\\nA primeira páxina do asistente é un cómic, presentando a Puzzly!,\\n\\n17\\n00:01:00,300 --> 00:01:04,000\\nque ensina o que está permitido en Commons e o que non.\\n\\n18\\n00:01:04,300 --> 00:01:08,000\\nDebaixo do cómic, preme no botón \"Seguinte\" para pasar á páxina de carga.\\n\\n19\\n00:01:08,300 --> 00:01:14,000\\nPremendo en \"Seleccione o ficheiro multimedia que queira compartir\" poderás seleccionar no teu ordenador o ficheiro que queres subir.\\n\\n20\\n00:01:14,300 --> 00:01:18,000\\nUnha vez cargado, podes seleccionar a licenza coa que queres compartir o ficheiro.\\n\\n21\\n00:01:18,300 --> 00:01:22,000\\nSe é unha obra túa, simplemente pon o teu nome ou o teu nome de usuario,\\n\\n22\\n00:01:22,300 --> 00:01:25,600\\nsempre que queiras que se mostre o teu nome cando alguén use a túa imaxe,\\n\\n23\\n00:01:25,800 --> 00:01:27,000\\ne preme en \"Seguinte\".\\n\\n24\\n00:01:27,300 --> 00:01:30,500\\nAgora é o momento de escribir o título e a descrición da imaxe.\\n\\n25\\n00:01:30,700 --> 00:01:31,500\\nPara o título\\n\\n26\\n00:01:31,700 --> 00:01:34,500\\nusa algo conciso, descritivo\\n\\n27\\n00:01:34,700 --> 00:01:37,700\\ne que sexa específico abondo para diferencialo de imaxes similares.\\n\\n28\\n00:01:37,900 --> 00:01:39,500\\nPara a descrición\\n\\n29\\n00:01:39,700 --> 00:01:42,000\\nengade tódolos detalles que poidas:\\n\\n30\\n00:01:42,200 --> 00:01:44,500\\nonde e como se fixo a imaxe;\\n\\n31\\n00:01:44,700 --> 00:01:46,500\\ncal é o tema da imaxe;\\n\\n32\\n00:01:46,700 --> 00:01:49,000\\ne tódolos detalles que poidan querer saber as persoas que vexan esa imaxe.\\n\\n33\\n00:01:49,300 --> 00:01:53,000\\nTamén podes engadir a imaxe a unha ou máis categorías da Wikimedia Commons.\\n\\n33\\n00:01:53,300 --> 00:01:58,000\\nIntenta buscar imaxes similares para atopar as categorías apropiadas.\\n\\n34\\n00:01:58,300 --> 00:02:00,500\\nNeste punto, ao premer en \"Seguinte\" completarás a carga\\n\\n35\\n00:02:00,700 --> 00:02:05,000\\ne a imaxe estará dispoñible para usala na Wikipedia.\\n\\n36\\n00:02:05,300 --> 00:02:07,000\\nNa última páxina do asistente atoparás\\n\\n37\\n00:02:07,300 --> 00:02:10,000\\no código para engadir a imaxe a un artigo da Wikipedia\\n\\n38\\n00:02:10,300 --> 00:02:13,000\\ne un enderezo URL para acceder á páxina do ficheiro,\\n\\n39\\n00:02:13,300 --> 00:02:17,000\\nonde podes editar a descrición ou cargar novas versións do ficheiro.\\n\\n40\\n00:02:17,300 --> 00:02:19,500\\nPodes copiar o código wiki \\n\\n41\\n00:02:19,700 --> 00:02:21,000\\ne pegalo no artigo,\\n\\n42\\n00:02:21,300 --> 00:02:23,500\\ne logo engadir un pé de foto.\\n\\n43\\n00:02:23,700 --> 00:02:27,000\\nO formato básico para poñer unha imaxe nun artigo é este:\\n\\n44\\n00:02:27,300 --> 00:02:29,200\\ndous corchetes de apertura, logo \\n\\n45\\n00:02:29,400 --> 00:02:31,200\\no nome do ficheiro, despois \\n\\n46\\n00:02:31,400 --> 00:02:36,200\\nunha barra vertical e a palabra \"miniatura\" ou \"thumb\" (que fai que a imaxe se mostre no formato estándar)\\n\\n47\\n00:02:36,500 --> 00:02:37,500\\nlogo outra barra vertical,\\n\\n48\\n00:02:37,700 --> 00:02:39,000\\ne logo o pé de foto,\\n\\n47\\n00:02:39,200 --> 00:02:43,000\\nque debe ter unha conexión clara co texto do artigo,\\n\\n47\\n00:02:43,200 --> 00:02:46,000\\ne logo dous corchetes de peche.\\n\\n48\\n00:02:46,200 --> 00:02:48,000\\nUnha vez engadida a imaxe,\\n\\n49\\n00:02:48,200 --> 00:02:50,000\\npon un resumo de edición e garda a páxina.\\n\\n50\\n00:02:50,200 --> 00:02:51,500\\nE xa está!\\n\\n51\\n00:02:51,700 --> 00:02:54,000\\nXa engadimos unha nova imaxe á Wikipedia.\\n\\n52\\n00:02:54,500 --> 00:02:57,000\\nGrazas! Adeus!',\n", + " 'bytes': 4913,\n", + " 'sha1': '81aj5dwy768nh3d59faqlyjvto90vhu',\n", + " 'parent_id': 91853167,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 122460706,\n", + " 'timestamp': '2014-04-28T00:20:54Z',\n", + " 'user': {'text': '147.133.204.133'},\n", + " 'page': {'id': 24961712,\n", + " 'title': 'Fermi Observations of Dwarf Galaxies Provide New Insights on Dark Matter.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"Okay, now we're good. FERMI -> Fermi this time. Still same comma and subtitle timing issues as before.\",\n", + " 'text': \"1\\n00:00:10,000 --> 00:00:17,000\\nFor the past 40 years, astronomers have known that something about the cosmos doesn't add up.\\n\\n2\\n00:00:17,000 --> 00:00:21,000\\nFirst in galaxy clusters and then within individual galaxies.\\n\\n3\\n00:00:21,000 --> 00:00:28,000\\nThey found that visible matter - stars, gas, and dust - cannot account for the motions they observe.\\n\\n4\\n00:00:28,000 --> 00:00:34,000\\nNo one knows what this missing mass, now called dark matter, actually is.\\n\\n5\\n00:00:34,000 --> 00:00:41,000\\nBut studies by NASA's WMAP spacecraft of the cosmic microwave background, the oldest light in the Universe, show how much is out there.\\n\\n6\\n00:00:41,000 --> 00:00:46,000\\nDark matter outnumbers ordinary matter by four to one.\\n\\n7\\n00:00:46,000 --> 00:00:55,000\\nThe WMAP results also hint that dark matter likely takes the form of an as yet undiscovered subatomic particle.\\n\\n8\\n00:00:55,000 --> 00:01:05,000\\nWIMPs represent one hypothesized class of these particles. They neither absorb nor emit light, and don't interact strongly with other particles.\\n\\n9\\n00:01:05,000 --> 00:01:09,000\\nBut when they encounter each other, they annihilate and make gamma rays.\\n\\n10\\n00:01:09,000 --> 00:01:14,000\\nThat's where NASA's Fermi Gamma Ray Telescope comes in. \\n\\n11\\n00:01:14,000 --> 00:01:21,000\\nTwo years of scanning the sky with Fermi's Large Area Telescope have set the strongest limits yet for WIMP dark matter.\\n\\n12\\n00:01:21,000 --> 00:01:29,000\\nThe best place to look for gamma ray dark matter annihilation? The most boring galaxies around, called dwarf spheroidals.\\n\\n13\\n00:01:29,000 --> 00:01:38,000\\nThese faint, tiny galaxies contain impressive amounts of dark matter. But they contain no gamma ray emitting objects, and little gas or star formation.\\n\\n14\\n00:01:38,000 --> 00:01:46,000\\nIn the currently accepted cosmology the first structures formed as the gravitation of dark matter corraled normal matter.\\n\\n15\\n00:01:46,000 --> 00:01:53,000\\nSimulations show that the largest structures formed in this way were comparable to the dwarf spheroidal galaxies we see today.\\n\\n16\\n00:01:53,000 --> 00:01:59,000\\nIt's thought that the large galaxies, like our own, were built of from collisions among these dwarfs.\\n\\n17\\n00:02:00,000 --> 00:02:08,000\\nUsing two years of data Fermi scientists explored ten dwarf galaxies for any sign of gamma rays from WIMP annihilation.\\n\\n18\\n00:02:08,000 --> 00:02:16,000\\nIn this graph the dashed line marks the sweet spot where conventional expectations for WIMP dark matter align with what we know about our universe.\\n\\n19\\n00:02:16,000 --> 00:02:24,000\\nEven when scientists combine all of the Fermi data from all ten of the dwarfs they see no sign of gamma rays.\\n\\n20\\n00:02:24,000 --> 00:02:34,000\\nThis limit shrinks the box where WIMP-based dark matter may be found, and for the first time shows that the cosmology we know essentially eliminates some WIMP types.\\n\\n21\\n00:02:35,000 --> 00:02:47,000\\nThe longer Fermi operates, the better its ability to either box in the nature of dark matter or to find actual evidence of what it is. And the discovery of more dwarf galaxies will make this search even more sensitive.\\n\\n22\\n00:02:48,000 --> 00:02:55,000\\nAlthough nondescript, dwarf spheroidal galaxies may have been the first large structures to form in the Universe.\\n\\n23\\n00:02:55,000 --> 00:03:02,000\\nNow they've taken center-stage in the drama to solve one of astronomy's greatest mysteries.\",\n", + " 'bytes': 3394,\n", + " 'sha1': '7sbx1n5n1lt2xpgm3m3vm91envm9bvs',\n", + " 'parent_id': 122460593,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91970486,\n", + " 'timestamp': '2013-03-05T02:18:30Z',\n", + " 'user': {'id': 568922, 'text': 'Raylton P. Sousa'},\n", + " 'page': {'id': 24987286,\n", + " 'title': 'The State of Wikipedia by JESS3.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:01,114 --> 00:00:05,414 (O estado da Wikipédia)\\n\\n<!--1.1 00:00:05,414 --*> 00:00:06,414 (Narrador: Jimmy Wales, fundador da Wikipedia) --> \\n\\n2 00:00:06,414 --> 00:00:08,000 (Wikipedia, a enciclopédia livre)\\n\\n3 00:00:08,000 --> 00:00:11,100 A Wikipédia é um dos sites mais importantes na Internet nos dias atuais\\n\\n4 00:00:11,100 --> 00:00:16,000 mas você pode se surpreender ao saber que começou como um projeto secundário de outra enciclopédia online.\\n\\n5 00:00:16,000 --> 00:00:22,300 Era chamada de Nupedia, pretendia ser uma enciclopédia tradicional escrita por especialistas\\n\\n6 00:00:22,300 --> 00:00:27,500 gratuito e online - mas apenas uma pessoa tinha autoridade sobre a publicação final e nunca decolou completamente.\\n\\n7 00:00:30,000 --> 00:00:36,300 Como o fundador da Nupedia, eu liderei uma equipe para estabalecer um time de exploração de tipos de artigos potenciais para Nupedia.\\n\\n8 00:00:36,300 --> 00:00:42,500 Nós usamos uma nova plataforma de software para tornar a colaboração mais fácil - a wiki - Wikipedia.\\n\\n9 00:00:45,000 --> 00:00:48,500 Ela se tornou a maneira perfeita de escrever muitas páginas, muito rapidamente.\\n\\n10 00:00:48,500 --> 00:00:52,900 Muito em breve, Nupedia não poderia mais manter-se e a Wikipedia tomaria o centro do palco.\\n\\n11 00:00:53,100 --> 00:00:58,700 Estávamos criando não apenas uma enciclopédia de conteúdo livre, mas uma \"enciclopédia livre que todos podem editar\".\\n\\n12 00:00:58,800 --> 00:01:04,500 Versões em outros idiomas apareceram rapidamente - mais de 270 na última contagem\\n\\n13 00:01,04,600 --> 00:01:08,900 E logo em seguida projetos irmãos como Wikisource, Wikinotícias e Wikcionário.\\n\\n14 00:01:08,900 --> 00:01:15,200 Em 2003, eu criei a Fundação Wikimedia para garantir que a Wikipedia poderia manter o seu próprio crescimento.\\n15 00:01:15,200 --> 00:01:18,800 Wikipedia recebe quase 400 milhões de visitantes a cada mês\\n\\n16 00:01:18,900 --> 00:01:22,200 e a lista de sites visitados com mais frequência é muito curta e muito famosa.\\n\\n17 00:01:22,300 --> 00:01:27,950 A Wikipedia comemora seu décimo aniversário em janeiro de 2011\\n\\n18 00:01:28,000 --> 00:01:31,500 e nestes 10 anos tornou-se um dos sites mais populares do mundo.\\n\\n19 00:01:31,500 --> 00:01:37,400 Eu ainda conduzo a comunidade e a Fundação Wikimedia a nos ajudar a fazer Wikipedia que ela é hoje.\\n\\n20 00:01:37,500 --> 00:01:39,300 Quem edita a Wikipedia?\\n\\n21 00:01:39,350 --> 00:01:44,000 Ao longo do tempo, aproximadamente 1,2 milhões de pessoas editaram a Wikipedia.\\n\\n22 00:01:44,000 --> 00:01:49,990 Até 2010, existiam mais de 11 milhões de edições mensais em todas Wikipédias em todos os idiomas.\\n\\n23 00:01:50,000 --> 00:01:55,200 De acordo com uma pesquisa, temos cerca de duas vezes mais doutores em comparação ao público em geral.\\n\\n24 00:01:55,300 --> 00:02:03,200 Na Wikipédia em Inglês quase 50% não têm religião e 14,6% dos editores franceses afirmam crer em Pastafarianismo.\\n\\n25 00:02:03,300 --> 00:02:06,100 Seria justo dizer que a maioria dos wikipedistas não editam habitualmente.\\n\\n26 00:02:06,200 --> 00:02:11,300 Um dos motivos, talvez, é que a editar uma única página é fácil, mas ficar muito envolvido é mais difícil.\\n\\n27 00:02:11,400 --> 00:02:16,400 A comunidade é definida por mais de 200 políticas, recomendações e ensaios combinados.\\n\\n28 00:02:16,400 --> 00:02:20,100 para não falar das discussões e comentários, comitês e avisos,\\n\\n29 00:02:20,100 --> 00:02:21,400 WikiProjetos e muito mais.\\n\\n30 00:02:21,500 --> 00:02:25,350 Todo conteúdo publicado no site é decidido por colaboradores voluntários da Wikipedia.\\n\\n31 00:02:25,350 --> 00:02:28,900 A Fundação Wikimedia não tem nenhum papel editorial.\\n\\n32 00:02:29,800 --> 00:02:33,400 O trabalho da Fundação é manter os servidores funcionando e as luzes acesas, mas há mais do que isso.\\n\\n33 00:02:33,400 --> 00:02:36,300 A Fundação também está crescendo presença da Wikipedia no mundo\\n\\n34 00:02:36,400 --> 00:02:43,200 mais centros de armazenamento de dados para acelerar a Wikipedia no mundo todo e até mesmo trazendo seu primeiro escritório fora dos Estados Unidos, para a Índia.\\n\\n35 00:02:43,300 --> 00:02:46,800 Wikipedia já é muito popular no Ocidente e no Norte.\\n\\n36 00:02:46,800 --> 00:02:50,700 Um novo desafio vai ser fazer Wikipedia disponível para o mundo em desenvolvimento também.\\n\\n37 00:02:50,750 --> 00:02:54,500 A Fundação é uma organização não governamental e funciona inteiramente com doações.\\n\\n38 00:02:54,600 --> 00:03:00,200 algumas vem de empresas e corporações, mas a grande maioria de seus milhões de editores e leitores.\\n\\n39 00:03:00,200 --> 00:03:05,300 O que já foi realizado é increditável, mas a Wikipedia está longe de estar completa.\\n\\n40 00:03:05,300 --> 00:03:09,500 Como qualquer leitor sabe, alguns artigos são muito bons, mas alguns não são.\\n\\n41 00:03:09,600 --> 00:03:11,200 Wikipedia ainda precisa de muito trabalho.\\n\\n42 00:03:11,300 --> 00:03:13,500 Contudo, este é um novo desafio.\\n\\n43 00:03:13,500 --> 00:03:17,400 Não apenas construir uma enciclopédia do zero, mas torná-la melhor\\n\\n44 00:03:17,400 --> 00:03:22,500 mais precisa, mais confiável. Não apenas ampla, mas profunda.\\n\\n45 00:03:22,650 --> 00:03:27,000 Nunca houve nada parecido com a Wikipedia antes, e seu horizonte futuro é muito, muito distante.\\n\\n46 00:03:27,100 --> 00:03:31,300 Como a Wikipedia entra em sua segunda década, cabe a todos nós, ter certeza que ficará ainda melhor.\\n\\n47 00:03:27,300 --> 00:03:35,000 (Wikipedia, a enciclopédia livre)\\n\\n<!-- 47.1 00:03:36,200 --*> 00:03:37,200 (Narrado por Jimmy Wales, fundador da Wikipedia.) -->\\n\\n<!-- 47.2 00:03:37,200 --*> 00:03:38,200 (Dirigido por Jesse Thomas.) -->\\n\\n48 00:03:39,000 --> 00:03:41,500 (A JESS3 Production)',\n", + " 'bytes': 5815,\n", + " 'sha1': '8qxc1quzwo53viyaol9m477o2emtcei',\n", + " 'parent_id': 91969571,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92023370,\n", + " 'timestamp': '2013-03-05T22:57:23Z',\n", + " 'user': {'text': '216.38.130.163'},\n", + " 'page': {'id': 24999298,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'start page',\n", + " 'text': \"\\n1\\n00:00:00,800 --> 00:00:03,500\\nHi! I'm Trevor, and I'm helping to build a VisualEditor for Wikipedia.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nAnyone can edit Wikipedia, but most who try are easily confused\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\nbecause Wikipedia's old code is pretty hard to understand.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nIt was awesome when we created it twelve years ago,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nbut if we're going to get the sum of all human knowledge to everyone,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\nwe've got to make it easier to share.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nVisualEditor is the biggest change to Wikipedia we've ever made.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nIt makes writing on Wikipedia like writing a paper for class or sending an email.\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nIt's still a little buggy,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nbut if you want a sneak peek at how Wikipedia is going to work in the near future,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\nCreate an account on English Wikipedia.\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nGo to your preferences, and turn on the Alpha Version of the VisualEditor.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nYou can even help us by using it, and then sending us feedback.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nSo please, join us in making the sum of all human knowledge easier to share.\",\n", + " 'bytes': 1333,\n", + " 'sha1': '309b1r0twqixuglfv7epohmq6jq0lqk',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 431883556,\n", + " 'timestamp': '2020-07-08T19:42:27Z',\n", + " 'user': {'id': 2073340, 'text': 'Jdx'},\n", + " 'page': {'id': 25013925,\n", + " 'title': 'TSA- How It Works.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/177.249.194.106|177.249.194.106]] ([[User talk:177.249.194.106|talk]]) to last revision by 81.36.189.211',\n", + " 'text': '1\\n00:00:00 --> 00:00:04,12\\n\\n\\nAdvanced imaging technology enhances security by detecting both metallic and non-metallic threat items concealed under layers of clothing. With advanced imaging technology like this one TSA is able to proactively stay ahead of evolving threats to ensure your safety.\\n. \\nTSA currently uses two types of imaging technology. One type – millimeter wave – uses electromagnetic waves to generate a black and white image similar to a fuzzy image negative. The other type – backscatter – uses, low level X-ray to create an image that resembles a chalk etching. Both technologies produce an image in seconds.\\n\\nImaging Technology also reduces the need for additional screening while protecting your privacy.\\n\\nImaging Technology looks for any items metallic and non-metallic that may be anywhere on the body. Before going through this technology, we strongly recommend removing ALL items from your pockets and certain accessories that you might be wearing, including your wallet, belt, bulky jewelry, money, keys, and cell phone. Removing all of these items will reduce your chances of needing additional screening after you exit the machine. \\n\\nThe officer who looks at your images cannot see you. So any irregularity that appears on the screen will require inspection to determine what it is. To avoid the chance of leaving any of your personal items behind, we recommend that you place them in your carry-on bag prior to entering the checkpoint.\\n\\nThis technology is optional for all passengers. If a passenger prefers, they can opt for alternative screening. At airports, TSA posts multiple signs informing passengers about how the technology works. \\n\\nAgain, this technology is optional, but many passengers prefer to pass through it, versus receiving alternative screening. In fact, in TSA pilots, over 98 percent of passengers who are presented the option prefer it over other types of screening.\\n\\nThe officer who assists the passenger at the machine never sees the images the technology produces. The image is evaluated for security by a second officer who is remotely located in a secure resolution room and would never see the passenger.\\n\\nA privacy filter is applied to blur all images to protect the passenger identity. This technology cannot store, print, transmit or save images. In fact all machines are delivered to the airport with this functions disabled.\\n\\nMillimeter wave units emit thousands of times less energy than a regular cell phone. \\n\\nThe radiation received from screening with the current TSA backscatter technology is less than the radiation received from two minutes of flight in an airplane. \\n\\nThe dose limits are set to protect all members of the public, which include individuals who may be more susceptible to radiation-induced health effects, such as pregnant women, children, and persons receiving radiation treatment for medical conditions.\\n\\nYour Safety is Our Priority\\nAdvanced imaging technology is just one of TSA’s many layers of security – all of them working to protect our nation’s transportation system and keep you secure while you fly. Your safety is our priority.',\n", + " 'bytes': 3147,\n", + " 'sha1': '1554yfivezbin1bdrx2ouqf1sbicja8',\n", + " 'parent_id': 424761110,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92224145,\n", + " 'timestamp': '2013-03-08T14:47:40Z',\n", + " 'user': {'text': '88.236.75.53'},\n", + " 'page': {'id': 25035837,\n", + " 'title': 'En-us-could.ogg.tr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01\\nOlabilir.',\n", + " 'bytes': 37,\n", + " 'sha1': '3o7fq4f56lgbvk65a6u6hbw2osw89bm',\n", + " 'parent_id': 92224118,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94142094,\n", + " 'timestamp': '2013-04-07T17:49:43Z',\n", + " 'user': {'id': 74418, 'text': 'KRLS'},\n", + " 'page': {'id': 25051594,\n", + " 'title': 'Editing basics - Uploading and adding images.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'tipo',\n", + " 'text': '1\\n00:00:01,000 --> 00:00:06,500\\nEsta presentación enseña los pasos básicos para subir imágenes en Wikimedia Commons \\n\\n2\\n00:00:06,700 --> 00:00:09,200\\ny añadirlas en los artículos de Wikipedia.\\n\\n3\\n00:00:09,400 --> 00:00:13,500\\nCoge este artículo, por ejemplo: \"Lente secundaria\".\\n\\n4\\n00:00:13,700 --> 00:00:18,500\\nEs un tema sobre la fotografía que no tiene ninguna foto. ¡Vamos a arreglar esto!\\n\\n5\\n00:00:18,700 --> 00:00:21,500\\nVamos a usar una imagen original que hice yo.\\n\\n6\\n00:00:21,700 --> 00:00:24,000\\nPara añadirla al artículo tenemos que subirla\\n\\n7\\n00:00:24,100 --> 00:00:26,200\\nen Wikimedia Commons.\\n\\n8\\n00:00:26,500 --> 00:00:27,200\\nEmpecemos por el principio.\\n\\n9\\n00:00:27,400 --> 00:00:31,000\\nWikimedia Commons es solo para obras originales hechas por ti,\\n\\n10\\n00:00:31,300 --> 00:00:36,000\\nobras de otras personas que fueron liberadas explícitamente bajo una licencia compatible con Wikipedia\\n\\n11\\n00:00:36,300 --> 00:00:40,500\\nu obras que están en el dominio público y que no están cubiertas por ningún derecho de autor.\\n\\n12\\n00:00:40,800 --> 00:00:42,000\\nPara subir un archivo,\\n\\n11\\n00:00:42,300 --> 00:00:45,000\\nve a commons.wikimedia.org.\\n\\n12\\n00:00:45,300 --> 00:00:48,000\\nAsegúrate de iniciar sesión si aún no lo hiciste.\\n\\n13\\n00:00:48,300 --> 00:00:50,300\\nUsarás la misma cuenta que tienes en Wikipedia.\\n\\n14\\n00:00:51,000 --> 00:00:53,600\\nPara empezar, ve al Asistente de subidas\\n\\n15\\n00:00:53,800 --> 00:00:56,800\\nhaciendo clic en el enlace \"Subir un archivo\" en la izquierda.\\n\\n16\\n00:00:57,000 --> 00:01:00,000\\nLa primera página del asistente es un cómico, ¡presentando a Puzzly!,\\n\\n17\\n00:01:00,300 --> 00:01:04,000\\nque enseña lo que está permitido en Commons y lo que no.\\n\\n18\\n00:01:04,300 --> 00:01:08,000\\nDebajo del cómic, haz clic en el botón \"Siguiente\" para pasar a la siguiente página de carga.\\n\\n19\\n00:01:08,300 --> 00:01:14,000\\nHaciendo clic en \"Selecciona un archivo multimedia para compartilo\" podrás seleccionar en tu ordenador el archivo que quieras subir.\\n\\n20\\n00:01:14,300 --> 00:01:18,000\\nUna vez subido, podrás seleccionar la licencia con la que quieres compartir el archivo.\\n\\n21\\n00:01:18,300 --> 00:01:22,000\\nSi la obra es tuya, solo tienes que poner tu nombre o nombre de usuario,\\n\\n22\\n00:01:22,300 --> 00:01:25,600\\nsiempre que quieras que se muestre tu nombre de usuario cuando alguien use tu imagen,\\n\\n23\\n00:01:25,800 --> 00:01:27,000\\ny haz clic en \"Siguiente\".\\n\\n24\\n00:01:27,300 --> 00:01:30,500\\nAhora es el momento de escribir el título y la descripción de la imagen.\\n\\n25\\n00:01:30,700 --> 00:01:31,500\\nPara el título\\n\\n26\\n00:01:31,700 --> 00:01:34,500\\nusa algo conciso, descriptivo\\n\\n27\\n00:01:34,700 --> 00:01:37,700\\ny que sea lo suficientemente específico para diferenciarlo de imágenes similares.\\n\\n28\\n00:01:37,900 --> 00:01:39,500\\nPara la descripción\\n\\n29\\n00:01:39,700 --> 00:01:42,000\\nañade todos los detalles que puedas:\\n\\n30\\n00:01:42,200 --> 00:01:44,500\\ndónde y cómo se hizo la imagen;\\n\\n31\\n00:01:44,700 --> 00:01:46,500\\ncual es el tema de la imagen;\\n\\n32\\n00:01:46,700 --> 00:01:49,000\\ny todos los detalles que puedan querer saber las personas que ven esa imagen.\\n\\n33\\n00:01:49,300 --> 00:01:53,000\\nTambién puedes añadir la imagen a una o más categorías de Wikimedia Commons.\\n\\n33\\n00:01:53,300 --> 00:01:58,000\\nIntenta buscar imágenes similares para encontrar las categorías apropiadas.\\n\\n34\\n00:01:58,300 --> 00:02:00,500\\nEn este punto, al hacer clic en \"Siguiente\" completarás la subida\\n\\n35\\n00:02:00,700 --> 00:02:05,000\\ny la imagen estará disponible para usarla en Wikipedia.\\n\\n36\\n00:02:05,300 --> 00:02:07,000\\nEn la última página del asistente encontrarás\\n\\n37\\n00:02:07,300 --> 00:02:10,000\\nel código para añadir la imagen a un artículo de Wikipedia\\n\\n38\\n00:02:10,300 --> 00:02:13,000\\ny una dirección URL para acceder a la página de archivo,\\n\\n39\\n00:02:13,300 --> 00:02:17,000\\ndonde puedes editar la descripción o subir nuevas versiones del archivo.\\n\\n40\\n00:02:17,300 --> 00:02:19,500\\nPodes copiar el código wiki \\n\\n41\\n00:02:19,700 --> 00:02:21,000\\ny pegarlo en el artículo,\\n\\n42\\n00:02:21,300 --> 00:02:23,500\\ny después añadir un pie de foto.\\n\\n43\\n00:02:23,700 --> 00:02:27,000\\nEl formato básico para poner una imagen en un artículo es este:\\n\\n44\\n00:02:27,300 --> 00:02:29,200\\ndos corchetes de apertura, luego \\n\\n45\\n00:02:29,400 --> 00:02:31,200\\nel nombre del archivo, después\\n\\n46\\n00:02:31,400 --> 00:02:36,200\\nuna barra vertical y la palabra \"miniatura\" o \"thumb\" (que hace que la imagen se muestre en el formato estándar)\\n\\n47\\n00:02:36,500 --> 00:02:37,500\\nluego otra barra vertical,\\n\\n48\\n00:02:37,700 --> 00:02:39,000\\ny después el pie de foto,\\n\\n47\\n00:02:39,200 --> 00:02:43,000\\nque debe tener una conexión clara con el texto del artículo,\\n\\n47\\n00:02:43,200 --> 00:02:46,000\\ny después dos corchetes de cierre.\\n\\n48\\n00:02:46,200 --> 00:02:48,000\\nUna vez añadida la imagen,\\n\\n49\\n00:02:48,200 --> 00:02:50,000\\npon un resumen de edición y guarda la página,\\n\\n50\\n00:02:50,200 --> 00:02:51,500\\n¡y ya está!\\n\\n51\\n00:02:51,700 --> 00:02:54,000\\nYa hemos añadido una nueva imagen a Wikipedia.\\n\\n52\\n00:02:54,500 --> 00:02:57,000\\n¡Gracias! ¡Adiós!',\n", + " 'bytes': 5120,\n", + " 'sha1': 'hx5x8cy04b4zwqc1x185hlp58qt1qg7',\n", + " 'parent_id': 92292377,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 627923763,\n", + " 'timestamp': '2022-02-05T15:39:31Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25057551,\n", + " 'title': 'Mohamed Atta to ATC-2.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments, new text division for better readability',\n", + " 'text': \"1\\n00:00:00,050 --> 00:00:02,236\\nMohamed Atta: Nobody move, please.\\n\\n2\\n00:00:02,269 --> 00:00:04,473\\nWe are going back to the airport.\\n\\n3\\n00:00:05,011 --> 00:00:07,537\\nDon't try to make any stupid moves.\",\n", + " 'bytes': 202,\n", + " 'sha1': 'nzm9j2ydp8btol7gxhmcy1z1l82yhw4',\n", + " 'parent_id': 622111064,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 589350407,\n", + " 'timestamp': '2021-09-07T02:27:54Z',\n", + " 'user': {'text': '122.150.93.142'},\n", + " 'page': {'id': 25071706,\n", + " 'title': 'Neil Armstrong, small step for man (reversed).ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00 --> 00:00:02\\nSmall step for man\\n\\n2\\n00:00:02 --> 00:00:04\\nMan will spacewalk',\n", + " 'bytes': 86,\n", + " 'sha1': 'en3iqizgzpz5llx6hj71pldhtt1klme',\n", + " 'parent_id': 362656346,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92400993,\n", + " 'timestamp': '2013-03-11T14:50:02Z',\n", + " 'user': {'id': 1547075, 'text': 'Illegitimate Barrister'},\n", + " 'page': {'id': 25076725,\n", + " 'title': 'Pronunciation of \"Gaithersburg\" (city in Maryland).ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:00,850\\nGaithersburg',\n", + " 'bytes': 44,\n", + " 'sha1': '5mogalklqfxnghgtaw2z0xa575y8lfa',\n", + " 'parent_id': 92400588,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 378696111,\n", + " 'timestamp': '2019-12-01T21:32:22Z',\n", + " 'user': {'id': 1547075, 'text': 'Illegitimate Barrister'},\n", + " 'page': {'id': 25090730,\n", + " 'title': 'Star Spangled Banner instrumental.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:03,500\\nO say, can you see\\n\\n2\\n00:00:03,555 --> 00:00:07,700\\nby the dawn's early light\\n\\n3\\n00:00:07,900 --> 00:00:12,000\\nWhat so proudly we hailed\\n\\n4\\n00:00:12,500 --> 00:00:16,100\\nat the twilight's last gleaming?\\n\\n5\\n00:00:16,600 --> 00:00:20,400\\nWhose broad stripes and bright stars\\n\\n6\\n00:00:20,900 --> 00:00:24,600\\nthrough the perilous fight,\\n\\n7\\n00:00:25,100 --> 00:00:28,900\\nO'er the ramparts we watched,\\n\\n8\\n00:00:29,400 --> 00:00:33,200\\nwere so gallantly streaming?\\n\\n9\\n00:00:33,700 --> 00:00:37,500\\nAnd the rockets' red glare,\\n\\n10\\n00:00:37,500 --> 00:00:40,000\\nthe bombs bursting in air,\\n\\n11\\n00:00:40,000 --> 00:00:45,000\\nGave proof through the night\\n\\n12\\n00:00:45,000 --> 00:00:49,000\\nthat our flag was still there;\\n\\n13\\n00:00:49,000 --> 00:00:55,700\\nO say does that star-spangled\\n\\n14\\n00:00:56,200 --> 00:01:00,000\\nbanner yet wave,\\n\\n15\\n00:01:00,000 --> 00:01:06,000\\nO'er the land of the free\\n\\n16\\n00:01:06,000 --> 00:01:16,500\\nand the home of the brave?\",\n", + " 'bytes': 976,\n", + " 'sha1': '4vhktmxqkzj8o85tqj00yoxgeqszv3z',\n", + " 'parent_id': 378696051,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 418844272,\n", + " 'timestamp': '2020-05-12T21:47:36Z',\n", + " 'user': {'id': 9105228, 'text': 'EnjoyYourLifeYouLive'},\n", + " 'page': {'id': 25097641,\n", + " 'title': 'Himno Nacional Mexicano instrumental.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Deleted tripe apostrophes, same place as previous edit',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,400\\nMexicanos, al grito de guerra\\n\\n2\\n00:00:04,600 --> 00:00:08,800\\nel acero aprestad y el bridón,\\n\\n3\\n00:00:09,000 --> 00:00:13,200\\ny retiemble en sus centros la tierra\\n\\n4\\n00:00:13,400 --> 00:00:17,800\\nal sonoro rugir del cañón.\\n\\n5\\n00:00:19,000 --> 00:00:22,800\\nY retiemble en sus centros la tierra\\n\\n6\\n00:00:23,000 --> 00:00:27,200\\nal sonoro rugir del cañón.\\n\\n7\\n00:00:27,400 --> 00:00:31,000\\nCiña ¡Oh, Patria! tus sienes de oliva\\n\\n8\\n00:00:31,800 --> 00:00:37,000\\nde la paz el arcángel divino,\\n\\n9\\n00:00:37,200 --> 00:00:41,800\\nque en el cielo tu eterno destino\\n\\n10\\n00:00:42,000 --> 00:00:46,800\\npor el dedo de Dios se escribió:\\n\\n11\\n00:00:47,000 --> 00:00:51,200\\nMás si osare un extraño enemigo\\n\\n12\\n00:00:51,600 --> 00:00:56,400\\nprofanar con su planta tu suelo,\\n\\n13\\n00:00:56,800 --> 00:01:01,600\\npiensa ¡Oh Patria querida! que el cielo\\n\\n14\\n00:01:01,800 --> 00:01:03,400\\nun soldado en cada hijo te dió.\\n\\n15\\n00:01:04,000 --> 00:01:09,800\\n<b>¡Un soldado en cada hijo te dió!</b>\\n\\n16\\n00:01:11,200 --> 00:01:15,800\\nMexicanos, al grito de guerra\\n\\n17\\n00:01:16,000 --> 00:01:20,000\\nel acero aprestad y el bridón,\\n\\n18\\n00:01:20,200 --> 00:01:24,800\\ny retiemble en sus centros la tierra\\n\\n19\\n00:01:25,000 --> 00:01:28,200\\nal sonoro rugir del cañón.\\n\\n20\\n00:01:29,800 --> 00:01:34,400\\nY retiemble en sus centros la tierra\\n\\n21\\n00:01:34,800 --> 00:01:40,000\\nal sonoro rugir del cañón.',\n", + " 'bytes': 1413,\n", + " 'sha1': 'tpkbez2isbzcpw1hrcomts1gmyl050s',\n", + " 'parent_id': 418843346,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92534818,\n", + " 'timestamp': '2013-03-13T23:50:55Z',\n", + " 'user': {'id': 2291919, 'text': 'Cherus'},\n", + " 'page': {'id': 25110091,\n", + " 'title': 'Ru-30-буква-Ь.ogg.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with 'мягкий знак'\",\n", + " 'text': 'мягкий знак',\n", + " 'bytes': 21,\n", + " 'sha1': 'nmglxwu6brc9mu3uulht2pbljl9f7vo',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92534849,\n", + " 'timestamp': '2013-03-13T23:52:25Z',\n", + " 'user': {'id': 2291919, 'text': 'Cherus'},\n", + " 'page': {'id': 25110097,\n", + " 'title': 'Ru-28-буква-Ъ.ogg.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with 'твёрдый знак'\",\n", + " 'text': 'твёрдый знак',\n", + " 'bytes': 23,\n", + " 'sha1': '58tvayaxjaqo71qzfnwvsrt5nox6ke4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92543182,\n", + " 'timestamp': '2013-03-14T01:58:33Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25111079,\n", + " 'title': 'Eric Walter - voix.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 Hello, my name is Éric Walter, I was born in Paris, 2 00:00:05,200 --> 00:00:11,000 and I am the secretary general of Hadopi s...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nHello, my name is Éric Walter, I was born in Paris,\\n\\n2\\n00:00:05,200 --> 00:00:11,000\\nand I am the secretary general of Hadopi since 1 March 2010.',\n", + " 'bytes': 178,\n", + " 'sha1': '2na6cbz500k422ttze6dd0naq274a6p',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92553027,\n", + " 'timestamp': '2013-03-14T09:04:18Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25113596,\n", + " 'title': 'The movie ALMA — In Search of our Cosmic Origins.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'ENG SUB',\n", + " 'text': '1\\n00:00:05,000 --> 00:00:14,000\\nALMA\\n\\n2\\n00:00:15,000 --> 00:00:26,000\\nIn Search of Our Cosmic Origins\\n\\n3\\n00:00:36,500 --> 00:00:42,000\\nHigh on the desolate Chajnantor Plateau in the Chilean Andes.\\n\\n4\\n00:00:43,000 --> 00:00:45,000\\nOne of the harshest environments on Earth.\\n\\n5\\n00:00:45,500 --> 00:00:47,040\\nAmid volcanoes ...\\n\\n6\\n00:00:47,459 --> 00:00:49,000\\nDesert plains ...\\n\\n7\\n00:00:49,200 --> 00:00:50,690\\nAnd bitter winds ...\\n\\n8\\n00:00:51,000 --> 00:00:57,300\\nALMA — the Atacama Large Millimeter/sub-millimeter Array — is ready.\\n\\n9\\n00:01:07,000 --> 00:01:10,500\\nAstronomers and scientists all over the globe \\n\\n10\\n00:01:10,500 --> 00:01:15,000\\nhave been eagerly anticipating this moment for decades.\\n\\n11\\n00:01:15,190 --> 00:01:19,430\\nALMA is the world’s largest astronomical project. \\n\\n12\\n00:01:19,430 --> 00:01:22,620\\nBut it is not a conventional telescope. \\n\\n13\\n00:01:22,620 --> 00:01:26,640\\nInstead of collecting and analysing visible light \\n\\n14\\n00:01:26,640 --> 00:01:31,400\\nit looks in a different and largely unmapped part of the spectrum.\\n\\n15\\n00:01:40,240 --> 00:01:43,100\\nBy opening a new window on the cosmos,\\n\\n16\\n00:01:43,500 --> 00:01:50,760\\nALMA explores one of the last frontiers of astronomy — the cold and distant Universe.\\n\\n17\\n00:01:53,000 --> 00:01:58,950\\nAll in search of answers to some of the deepest questions about our cosmic origins.\\n\\n18\\n00:01:58,950 --> 00:02:01,600\\nHow do stars and planets form?\\n\\n19\\n00:02:01,600 --> 00:02:04,490\\nHow did the first galaxies form?\\n\\n20\\n00:02:07,000 --> 00:02:10,979\\nThe Chajnantor Plateau in North Chile. \\n\\n21\\n00:02:12,000 --> 00:02:17,640\\nDespite the — literally! — breath-taking altitude of 5000 metres above sea level,\\n\\n22\\n00:02:17,640 --> 00:02:20,220\\nALMA has flourished.\\n\\n23\\n00:02:20,220 --> 00:02:23,000\\nOver the last few years, \\n\\n24\\n00:02:23,000 --> 00:02:27,740\\nmore than 50 antennas have been installed across the high desert plain.\\n\\n25\\n00:02:29,060 --> 00:02:34,230\\nALMA is a unique, giant telescope built in a partnership\\n\\n26\\n00:02:34,230 --> 00:02:39,800\\nbetween Europe, North America and East Asia, in cooperation with Chile.\\n\\n27\\n00:02:41,320 --> 00:02:46,000\\nSixty-six state-of-the-art antennas will observe the Universe \\n\\n28\\n00:02:46,000 --> 00:02:49,160\\nat millimetre and submillimetre wavelengths \\n\\n29\\n00:02:50,500 --> 00:02:54,380\\n— one thousand times longer than visible wavelengths.\\n\\n30\\n00:02:55,920 --> 00:02:59,220\\nThis light reaches us from some of the coldest \\n\\n31\\n00:02:59,220 --> 00:03:02,780\\nand most distant objects in the Universe.\\n\\n32\\n00:03:04,160 --> 00:03:06,970\\nWater vapour in the atmosphere blocks \\n\\n33\\n00:03:06,970 --> 00:03:09,480\\nthese faint whispers from the hidden Universe,\\n\\n34\\n00:03:09,480 --> 00:03:15,500\\nso to collect them we have to go to to an extremely high and dry site \\n\\n35\\n00:03:15,500 --> 00:03:18,680\\n— like Chajnantor.\\n\\n36\\n00:03:24,610 --> 00:03:26,270\\nThe Birth of ALMA\\n\\n37\\n00:03:26,720 --> 00:03:30,550\\nThe origin of the ALMA project dates back decades.\\n\\n38\\n00:03:31,000 --> 00:03:35,090\\nScientists from Europe, North America and East Asia \\n\\n39\\n00:03:35,090 --> 00:03:39,490\\ndeveloped three individual concepts for new, large telescopes\\n\\n40\\n00:03:39,490 --> 00:03:42,920\\nfor millimetre and submillimetre observations. \\n\\n41\\n00:03:43,670 --> 00:03:47,680\\nEventually these concepts were merged into one.\\n\\n42\\n00:03:48,760 --> 00:03:53,080\\nBig science takes big global collaborations. \\n\\n43\\n00:03:53,080 --> 00:03:57,920\\nTogether countries can achieve what they cannot do alone.\\n\\n44\\n00:03:59,360 --> 00:04:03,960\\nThe whole is greater than the sum of its parts.\\n\\n45\\n00:04:04,290 --> 00:04:08,110\\nThe ALMA project was born!\\n\\n46\\n00:04:11,000 --> 00:04:14,760\\nFinding the Right Site\\n\\n47\\n00:04:20,279 --> 00:04:22,940\\nThis new telescope needed a home, \\n\\n48\\n00:04:22,940 --> 00:04:26,520\\nand eyes turned to Chajnantor.\\n\\n49\\n00:04:26,870 --> 00:04:31,600\\nEvery aspect of the site, from the astronomical to the meteorological, \\n\\n50\\n00:04:31,600 --> 00:04:35,720\\nwas thoroughly tested and the atmosphere monitored daily.\\n\\n51\\n00:04:35,840 --> 00:04:42,440\\nThe conclusion: Chajnantor was the perfect place for ALMA. \\n\\n52\\n00:04:46,640 --> 00:04:50,300\\nBreaking Ground\\n\\n53\\n00:04:51,500 --> 00:04:55,910\\nConstruction began in 2003 with the groundbreaking \\n\\n54\\n00:04:55,910 --> 00:04:58,770\\nfor ALMA’s Array Operations Site. \\n\\n55\\n00:05:06,920 --> 00:05:11,670\\nConditions here at an altitude of 5000 metres above sea level\\n\\n56\\n00:05:11,670 --> 00:05:14,620\\nare harsh and very challenging.\\n\\n57\\n00:05:16,860 --> 00:05:19,400\\nStrong winds.\\n\\n58\\n00:05:20,420 --> 00:05:22,880\\nLow temperatures.\\n\\n59\\n00:05:23,680 --> 00:05:26,540\\nIntense ultraviolet radiation.\\n\\n60\\n00:05:27,040 --> 00:05:30,080\\nAnd a desperately thin atmosphere.\\n\\n61\\n00:05:30,680 --> 00:05:35,290\\nSo thin that to work here people need supplementary oxygen\\n\\n62\\n00:05:35,290 --> 00:05:38,760\\nand have to undergo rigorous health checks.\\n\\n63\\n00:05:41,880 --> 00:05:46,460\\nForging the tools\\n\\n64\\n00:05:48,360 --> 00:05:51,440\\nThe production of ALMA’s antennas has been shared \\n\\n65\\n00:05:51,440 --> 00:05:53,680\\nbetween the three ALMA partners.\\n\\n66\\n00:05:55,140 --> 00:05:59,540\\nThree prototypes were put through their paces at the ALMA Test Facility, \\n\\n67\\n00:05:59,540 --> 00:06:03,440\\non the Very Large Array site, in the USA.\\n\\n68\\n00:06:05,030 --> 00:06:10,900\\nThe 66 antennas on the high plateau are a critical part of ALMA. \\n\\n69\\n00:06:12,240 --> 00:06:17,410\\nTheir big dishes collect the faint millimetre waves from space.\\n\\n70\\n00:06:17,480 --> 00:06:21,070\\nThese antennas are truly the state-of-the-art.\\n\\n71\\n00:06:22,740 --> 00:06:28,400\\nTheir surfaces are accurate to much less than the thickness of a sheet of paper.\\n\\n72\\n00:06:30,170 --> 00:06:37,360\\nThey can move precisely enough to pick out a golf ball at a distance of 15 kilometres.\\n\\n73\\n00:06:39,760 --> 00:06:45,320\\nAnd they must survive, exposed to the elements, on Chajnantor!\\n\\n74\\n00:06:58,470 --> 00:07:03,700\\nTwenty-five antennas have been provided by the European Southern Observatory,\\n\\n75\\n00:07:04,150 --> 00:07:08,220\\n25 by the US National Radio Astronomy Observatory, \\n\\n76\\n00:07:08,220 --> 00:07:13,800\\nand 16 by the National Astronomical Observatory of Japan.\\n\\n77\\n00:07:20,520 --> 00:07:22,620\\nIn a truly global endeavour, \\n\\n78\\n00:07:22,620 --> 00:07:27,700\\nthe antenna components were constructed in several locations around the world,\\n\\n79\\n00:07:27,700 --> 00:07:30,700\\nsent to Chile to be assembled \\n\\n80\\n00:07:44,360 --> 00:07:47,780\\nand then tested at the Operations Support Facility, \\n\\n81\\n00:07:47,780 --> 00:07:51,600\\nin readiness for their first time observing the sky.\\n\\n82\\n00:07:55,790 --> 00:07:58,420\\nLinking the First Antennas\\n\\n83\\n00:07:59,950 --> 00:08:04,930\\nThe first ALMA antenna was accepted and shortly thereafter \\n\\n84\\n00:08:04,930 --> 00:08:08,750\\ntwo antennas were successfully linked together. \\n\\n85\\n00:08:12,120 --> 00:08:16,410\\nDetectors in each antenna register the finest nuances \\n\\n86\\n00:08:16,410 --> 00:08:19,710\\nof the faint signals collected by the dishes.\\n\\n87\\n00:08:21,600 --> 00:08:25,040\\nThese detectors are the most sensitive of their kind\\n\\n88\\n00:08:25,040 --> 00:08:27,520\\nand are cooled using helium gas\\n\\n89\\n00:08:27,520 --> 00:08:31,280\\nto just four degrees above absolute zero.\\n\\n90\\n00:08:34,890 --> 00:08:37,100\\nReaching New Heights\\n\\n91\\n00:08:41,470 --> 00:08:44,750\\nThe first completed antenna makes its way \\n\\n92\\n00:08:44,750 --> 00:08:46,840\\nup to the Array Operations Site.\\n\\n93\\n00:08:48,160 --> 00:08:52,500\\nTwo custom-built transporter vehicles — Otto and Lore —\\n\\n94\\n00:08:52,500 --> 00:08:55,740\\nmove the 100-tonne antennas around.\\n\\n95\\n00:08:56,440 --> 00:08:59,580\\nOtto carefully climbs the winding road, \\n\\n96\\n00:08:59,580 --> 00:09:02,210\\ncarrying the high-tech antenna up\\n\\n97\\n00:09:02,210 --> 00:09:05,000\\nto its final home on the high plateau. \\n\\n98\\n00:09:06,260 --> 00:09:10,400\\nThis first antenna was soon joined by many more.\\n\\n99\\n00:09:14,220 --> 00:09:16,340\\nBeating Expectations\\n\\n100\\n00:09:18,240 --> 00:09:21,550\\nThe first observations using two, and then three\\n\\n101\\n00:09:21,550 --> 00:09:23,900\\nantennas in unison were made.\\n\\n102\\n00:09:24,950 --> 00:09:27,480\\nKey tests for the ALMA array.\\n\\n103\\n00:09:28,580 --> 00:09:31,400\\nAnd all passed with flying colours!\\n\\n104\\n00:09:35,230 --> 00:09:38,030\\nMillimetre and submillimetre wavelengths \\n\\n105\\n00:09:38,030 --> 00:09:41,750\\ngive astronomers a unique window on the Universe.\\n\\n106\\n00:09:42,540 --> 00:09:45,780\\nBut to see them with the sharpness astronomers need, \\n\\n107\\n00:09:45,780 --> 00:09:48,890\\na single-dish telescope would have to be \\n\\n108\\n00:09:48,890 --> 00:09:52,890\\nkilometres across (and impossible to build)!\\n\\n109\\n00:09:53,200 --> 00:09:57,250\\nInstead, ALMA uses 66 separate antennas\\n\\n110\\n00:09:57,250 --> 00:09:59,720\\nwhich can be spread out over the plain \\n\\n111\\n00:09:59,720 --> 00:10:03,700\\nwith separations of up to 16 kilometres.\\n\\n112\\n00:10:04,520 --> 00:10:08,210\\nThe antennas are linked and their signals combined. \\n\\n113\\n00:10:08,510 --> 00:10:13,960\\nThe result: one giant telescope as wide as the whole array, \\n\\n114\\n00:10:13,960 --> 00:10:19,500\\nobserving with unprecedented sensitivity and resolution.\\n\\n115\\n00:10:24,200 --> 00:10:27,080\\nMaking sense of these intertwined signals \\n\\n116\\n00:10:27,080 --> 00:10:31,440\\ntakes the highest-altitude supercomputer in the world.\\n\\n117\\n00:10:32,180 --> 00:10:35,040\\nWith 134 million processors, \\n\\n118\\n00:10:35,040 --> 00:10:39,400\\nperforming 17 quadrillion operations per second \\n\\n119\\n00:10:39,400 --> 00:10:42,860\\n— as many as the fastest supercomputer in the world —\\n\\n120\\n00:10:42,920 --> 00:10:45,840\\nthe ALMA correlator, on Chajnantor, \\n\\n121\\n00:10:45,840 --> 00:10:50,150\\ncombines and compares the signals from every antenna.\\n\\n122\\n00:10:56,430 --> 00:11:00,110\\nAs more and more antennas arrive at Chajnantor, \\n\\n123\\n00:11:00,110 --> 00:11:05,270\\nthe Operations Support Facility, the control centre of the observatory,\\n\\n124\\n00:11:05,270 --> 00:11:11,840\\ntakes shape at the slightly more hospitable altitude of 2900 metres.\\n\\n125\\n00:11:13,000 --> 00:11:15,960\\nThe site is busy around the clock.\\n\\n126\\n00:11:15,960 --> 00:11:18,260\\nOperating the telescope.\\n\\n127\\n00:11:18,260 --> 00:11:22,430\\nTesting and maintaining antennas and other equipment.\\n\\n128\\n00:11:23,590 --> 00:11:25,880\\nAnd home for the ALMA staff\\n\\n129\\n00:11:25,880 --> 00:11:29,550\\nduring their day- and night-shifts at the observatory.\\n\\n130\\n00:11:39,230 --> 00:11:41,670\\nSantiago Central Offices\\n\\n131\\n00:11:44,040 --> 00:11:46,840\\nIn the capital of the host nation, Chile,\\n\\n132\\n00:11:46,840 --> 00:11:50,760\\nthe ALMA Santiago Central Offices were built. \\n\\n133\\n00:11:53,470 --> 00:11:57,200\\nHere the technical, scientific and administrative staff \\n\\n134\\n00:11:57,200 --> 00:12:00,450\\nof the Joint ALMA Office is working.\\n\\n135\\n00:12:09,670 --> 00:12:11,560\\nProving Excellence\\n\\n136\\n00:12:14,320 --> 00:12:17,280\\nEven before the construction stage was complete,\\n\\n137\\n00:12:17,280 --> 00:12:20,630\\nthe first scientific observations began \\n\\n138\\n00:12:20,630 --> 00:12:23,120\\nwith a partial array of antennas.\\n\\n139\\n00:12:24,480 --> 00:12:27,400\\nALMA had opened its eyes! \\n\\n140\\n00:12:33,430 --> 00:12:36,220\\nThousands of scientists from around the world\\n\\n141\\n00:12:36,220 --> 00:12:41,200\\ncompeted to be among the lucky few to use the facilities first.\\n\\n142\\n00:12:43,560 --> 00:12:46,230\\nEven with just 16 antennas\\n\\n143\\n00:12:46,230 --> 00:12:51,000\\nALMA was already the most powerful telescope of its kind.\\n\\n144\\n00:12:57,610 --> 00:13:02,240\\nThe first scientific observations fulfilled everyone’s hopes.\\n\\n145\\n00:13:06,120 --> 00:13:08,020\\nThe Antennae Galaxies, \\n\\n146\\n00:13:08,020 --> 00:13:12,550\\na pair of colliding galaxies with dramatically distorted shapes.\\n\\n147\\n00:13:13,640 --> 00:13:17,070\\nVisible light can show us the stars in the galaxies,\\n\\n148\\n00:13:17,070 --> 00:13:21,600\\nbut ALMA reveals the clouds of cold, dense gas\\n\\n149\\n00:13:21,600 --> 00:13:24,660\\nfrom which new stars are born.\\n\\n150\\n00:13:30,320 --> 00:13:35,430\\nThe heart of the distinctive galaxy Centaurus A. \\n\\n151\\n00:13:35,430 --> 00:13:41,040\\nALMA peers through the opaque dust lanes that obscure its centre.\\n\\n152\\n00:13:45,960 --> 00:13:50,460\\nA view of the nearby star Fomalhaut provides clues \\n\\n153\\n00:13:50,460 --> 00:13:53,880\\nas to how planetary systems form and evolve.\\n\\n154\\n00:13:57,400 --> 00:14:01,610\\nCosmic dust grains found around a brown dwarf \\n\\n155\\n00:14:01,610 --> 00:14:03,450\\nsuggest that rocky planets \\n\\n156\\n00:14:03,450 --> 00:14:07,220\\nmight even be more common in our Universe than we thought.\\n\\n157\\n00:14:11,180 --> 00:14:14,320\\nSugar molecules, spotted around a young, \\n\\n158\\n00:14:14,320 --> 00:14:16,790\\nSun-like star for the first time: \\n\\n159\\n00:14:16,790 --> 00:14:20,720\\nthe building blocks of life in the right place, at the right time, \\n\\n160\\n00:14:20,720 --> 00:14:24,800\\nto be part of new planets forming around the star.\\n\\n161\\n00:14:29,330 --> 00:14:35,780\\nAn unexpected spiral structure in the material around the old star R Sculptoris \\n\\n162\\n00:14:35,780 --> 00:14:39,480\\nrevealed the secrets of this dying star.\\n\\n163\\n00:14:44,740 --> 00:14:46,950\\nVast streams of gas \\n\\n164\\n00:14:46,950 --> 00:14:48,480\\nflowing across a gap \\n\\n165\\n00:14:48,480 --> 00:14:52,140\\nin the disc of material around a young star.\\n\\n166\\n00:14:52,140 --> 00:14:55,200\\nA key stage in the birth of giant planets, \\n\\n167\\n00:14:55,200 --> 00:14:58,120\\nobserved for the first time.\\n\\n168\\n00:14:58,120 --> 00:15:02,800\\nAnd all this before the array was fully complete!\\n\\n169\\n00:15:05,240 --> 00:15:07,520\\nTowards New Horizons\\n\\n170\\n00:15:10,270 --> 00:15:13,830\\nALMA’s inauguration celebrates its coming of age. \\n\\n171\\n00:15:13,830 --> 00:15:16,340\\nThe journey has been a long one. \\n\\n172\\n00:15:16,340 --> 00:15:18,670\\nALMA has grown from an idea,\\n\\n173\\n00:15:18,670 --> 00:15:20,520\\nto a construction project, \\n\\n174\\n00:15:20,520 --> 00:15:22,960\\nto a fully operational observatory,\\n\\n175\\n00:15:22,960 --> 00:15:27,600\\nand to a truly global scientific partnership.\\n\\n176\\n00:15:36,750 --> 00:15:40,730\\nIn the serene and lonely beauty of the Chilean Atacama desert, \\n\\n177\\n00:15:40,730 --> 00:15:43,220\\nALMA is ready for the future. \\n\\n178\\n00:15:43,830 --> 00:15:46,440\\nBy using this marvellous telescope,\\n\\n179\\n00:15:46,440 --> 00:15:49,440\\nthe world’s astronomers will peer deep\\n\\n180\\n00:15:49,440 --> 00:15:52,600\\ninto the hidden secrets of the cosmos.\\n\\n181\\n00:15:53,040 --> 00:15:58,160\\nIn search of our own cosmic origins!\\n\\n182\\n00:16:03,680 --> 00:16:09,720\\nALMA\\n\\n183\\n00:16:18,240 --> 00:16:22,840\\nTo all those whose curiosity drives them to ask the biggest questions\\n\\n184\\n00:16:23,480 --> 00:16:28,930\\nTranscription by ESO; translation by —',\n", + " 'bytes': 14669,\n", + " 'sha1': 'so41ph4o9810n4bd3lsiaow5xmhowo6',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92553107,\n", + " 'timestamp': '2013-03-14T09:06:31Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25113635,\n", + " 'title': 'The movie ALMA — In Search of our Cosmic Origins.ogv.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'cs sub',\n", + " 'text': '1\\n00:00:05,000 --> 00:00:14,000\\nALMA\\n\\n2\\n00:00:15,000 --> 00:00:26,000\\nPátrání po našich kosmických kořenech\\n\\n3\\n00:00:36,500 --> 00:00:42,000\\nNa pusté náhorní plošině Chajnantor v chilských Andách\\n\\n4\\n00:00:43,000 --> 00:00:45,000\\nV jednou z nejdrsnějších míst na Zemi.\\n\\n5\\n00:00:45,500 --> 00:00:47,040\\nObklopena vulkány ...\\n\\n6\\n00:00:47,459 --> 00:00:49,000\\npouští ...\\n\\n7\\n00:00:49,200 --> 00:00:50,690\\nvystavena ostrým větrům ...\\n\\n8\\n00:00:51,000 --> 00:00:57,300\\nje připravena ALMA – Atacama Large Millimeter/sub-millimeter Array.\\n\\n9\\n00:01:07,000 --> 00:01:10,500\\nAstronomové a vědci z celé zeměkoule\\n\\n10\\n00:01:10,500 --> 00:01:15,000\\nnetrpělivě čekali na tento okamžik celá desetiletí.\\n\\n11\\n00:01:15,190 --> 00:01:19,430\\nALMA je největší astronomický projekt světa.\\n\\n12\\n00:01:19,430 --> 00:01:22,620\\nNení to však klasický dalekohled.\\n\\n13\\n00:01:22,620 --> 00:01:26,640\\nNamísto soustřeďování a analýzy viditelného světla\\n\\n14\\n00:01:26,640 --> 00:01:31,400\\nsleduje jiné, dosud většinou nezmapované části spektra.\\n\\n15\\n00:01:40,240 --> 00:01:43,100\\nDíky otevření nového okna do vesmíru\\n\\n16\\n00:01:43,500 --> 00:01:50,760\\nmůže ALMA zkoumat jedno z posledních neznámých astronomických území – chladný a vzdálený vesmír,\\n\\n17\\n00:01:53,000 --> 00:01:58,950\\naby hledala odpovědi na základní otázky týkající se našich kosmických kořenů.\\n\\n18\\n00:01:58,950 --> 00:02:01,600\\nJak vznikají hvězdy a planety?\\n\\n19\\n00:02:01,600 --> 00:02:04,490\\nJak se vytvořily první galaxie?\\n\\n20\\n00:02:07,000 --> 00:02:10,979\\nNáhorní plošina Chajnantor na severu Chile.\\n\\n21\\n00:02:12,000 --> 00:02:17,640\\nNavzdory výšce 5000 metrů nad mořem, která - doslova! - bere dech,\\n\\n22\\n00:02:17,640 --> 00:02:20,220\\nALMA úspěšně vyrostla.\\n\\n23\\n00:02:20,220 --> 00:02:23,000\\nBěhem posledních několika let\\n\\n24\\n00:02:23,000 --> 00:02:27,740\\nbylo na pouštní planinu instalováno více než 50 antén.\\n\\n25\\n00:02:29,060 --> 00:02:34,230\\nALMA je jedinečný obří teleskop vybudovaný v partnerství\\n\\n26\\n00:02:34,230 --> 00:02:39,800\\nmezi Evropu, severní Amerikou a východní Asií a ve spolupráci s Chile.\\n\\n27\\n00:02:41,320 --> 00:02:46,000\\nSoustava 66 nejmodernějších antén bude pozorovat vesmír\\n\\n28\\n00:02:46,000 --> 00:02:49,160\\nv milimetrových a submilimetrových vlnových délkách\\n\\n29\\n00:02:50,500 --> 00:02:54,380\\n- tisíckrát delších než má viditelné světlo.\\n\\n30\\n00:02:55,920 --> 00:02:59,220\\nToto záření k nám vysílají jedny z nejchladnějších\\n\\n31\\n00:02:59,220 --> 00:03:02,780\\na nejvzdálenějších objektů ve vesmíru.\\n\\n32\\n00:03:04,160 --> 00:03:06,970\\nVodní pára v atmosféře tento\\n\\n33\\n00:03:06,970 --> 00:03:09,480\\nslabý šum neviditelného vesmíru nepropouští.\\n\\n34\\n00:03:09,480 --> 00:03:15,500\\nChceme-li jej přijímat, musíme najít nějaké extrémně vysoko položené a suché místo\\n\\n35\\n00:03:15,500 --> 00:03:18,680\\n– jako je Chajnantor.\\n\\n36\\n00:03:24,610 --> 00:03:26,270\\nZrození projektu ALMA\\n\\n37\\n00:03:26,720 --> 00:03:30,550\\nPočátky projektu ALMA se datují do doby před desítkami let.\\n\\n38\\n00:03:31,000 --> 00:03:35,090\\nVědci z Evropy, severní Ameriky a východní Asie\\n\\n39\\n00:03:35,090 --> 00:03:39,490\\nvytvořili tři nezávislé koncepce nových velkých teleskopů\\n\\n40\\n00:03:39,490 --> 00:03:42,920\\npro pozorování v milimetrovém a submilimetrovém oboru.\\n\\n41\\n00:03:43,670 --> 00:03:47,680\\nNakonec byly tyto koncepce sloučeny dohromady.\\n\\n42\\n00:03:48,760 --> 00:03:53,080\\nVelká věda vyžaduje velkou globální spolupráci.\\n\\n43\\n00:03:53,080 --> 00:03:57,920\\nSpolečně mohou jednotlivé země dosáhnout toho, co by samy nedokázaly.\\n\\n44\\n00:03:59,360 --> 00:04:03,960\\nCelek je větší než součet jeho částí.\\n\\n45\\n00:04:04,290 --> 00:04:08,110\\nZrodil se projekt ALMA!\\n\\n46\\n00:04:11,000 --> 00:04:14,760\\nHledání správného místa\\n\\n47\\n00:04:20,279 --> 00:04:22,940\\nNový teleskop potřeboval svůj domov\\n\\n48\\n00:04:22,940 --> 00:04:26,520\\na oči všech se obrátily na Chajnantor.\\n\\n49\\n00:04:26,870 --> 00:04:31,600\\nVšechny aspekty stanoviště, od astronomických po meteorologické,\\n\\n50\\n00:04:31,600 --> 00:04:35,720\\nbyly důkladně testovány, atmosféra byla monitorována denně.\\n\\n51\\n00:04:35,840 --> 00:04:42,440\\nZávěr: Chajnantor je pro observatoř ALMA ideální místo.\\n\\n52\\n00:04:46,640 --> 00:04:50,300\\nZákladní kámen\\n\\n53\\n00:04:51,500 --> 00:04:55,910\\nStavba začala v roce 2003 položením základního kamene\\n\\n54\\n00:04:55,910 --> 00:04:58,770\\nna tzv. Operačním stanovišti ALMA.\\n\\n55\\n00:05:06,920 --> 00:05:11,670\\nPodmínky jsou tady ve výšce 5000 metrů nad mořem\\n\\n56\\n00:05:11,670 --> 00:05:14,620\\ndrsné a hodně náročné.\\n\\n57\\n00:05:16,860 --> 00:05:19,400\\nOstré větry.\\n\\n58\\n00:05:20,420 --> 00:05:22,880\\nNízké teploty.\\n\\n59\\n00:05:23,680 --> 00:05:26,540\\nIntenzivní UV záření.\\n\\n60\\n00:05:27,040 --> 00:05:30,080\\nA nesmírně řídký vzduch.\\n\\n61\\n00:05:30,680 --> 00:05:35,290\\nTak řídký, že lidé potřebují podpůrný kyslík\\n\\n62\\n00:05:35,290 --> 00:05:38,760\\na musí podstupovat přísné zdravotní testy.\\n\\n63\\n00:05:41,880 --> 00:05:46,460\\nKonstrukce strojů\\n\\n64\\n00:05:48,360 --> 00:05:51,440\\nNa výrobě antén se podílí\\n\\n65\\n00:05:51,440 --> 00:05:53,680\\ntři partneři projektu ALMA.\\n\\n66\\n00:05:55,140 --> 00:05:59,540\\nTři prototypy byly vyzkoušeny na testovacím pracovišti\\n\\n67\\n00:05:59,540 --> 00:06:03,440\\nna observatoři VLA v USA.\\n\\n68\\n00:06:05,030 --> 00:06:10,900\\n66 antén na náhorní plošině představuje klíčovou část projektu ALMA.\\n\\n69\\n00:06:12,240 --> 00:06:17,410\\nJejich velké paraboly zachycují slabé milimetrové vlny přicházející z kosmu.\\n\\n70\\n00:06:17,480 --> 00:06:21,070\\nAntény představují skutečnou současnou špičku.\\n\\n71\\n00:06:22,740 --> 00:06:28,400\\nNerovnosti na jejich přesném povrchu jsou mnohem menší než tloušťka listu papíru.\\n\\n72\\n00:06:30,170 --> 00:06:37,360\\nJejich pohyb je tak přesný, že zaměří golfový míček na vzdálenost 15 km.\\n\\n73\\n00:06:39,760 --> 00:06:45,320\\nA musí snést podmínky, jimž je vystavuje Chajnantor!\\n\\n74\\n00:06:58,470 --> 00:07:03,700\\nEvropská jižní observatoř dodala 25 antén,\\n\\n75\\n00:07:04,150 --> 00:07:08,220\\ndalších 25 dodala americká Národní radioastronomická observatoř\\n\\n76\\n00:07:08,220 --> 00:07:13,800\\na 16 Japonská národní astronomická observatoř.\\n\\n77\\n00:07:20,520 --> 00:07:22,620\\nJe to skutečně globální úsilí,\\n\\n78\\n00:07:22,620 --> 00:07:27,700\\nčásti antén byly vyráběny v rozličných částech světa,\\n\\n79\\n00:07:27,700 --> 00:07:30,700\\ndopraveny ke kompletaci v Chile\\n\\n80\\n00:07:44,360 --> 00:07:47,780\\na poté testovány ve Středisku operační podpory\\n\\n81\\n00:07:47,780 --> 00:07:51,600\\naby byly připraveny na první pozorování oblohy.\\n\\n82\\n00:07:55,790 --> 00:07:58,420\\nPrvní spojení\\n\\n83\\n00:07:59,950 --> 00:08:04,930\\nKrátce po otestování a přijetí první antény ALMA\\n\\n84\\n00:08:04,930 --> 00:08:08,750\\nbyly mezi sebou propojeny dvě antény.\\n\\n85\\n00:08:12,120 --> 00:08:16,410\\nDetektory každé z antén zaznamenávají nejjemnější nuance\\n\\n86\\n00:08:16,410 --> 00:08:19,710\\nve slabém signálu zachyceném parabolami.\\n\\n87\\n00:08:21,600 --> 00:08:25,040\\nJde o nejcitlivější detektory tohoto druhu.\\n\\n88\\n00:08:25,040 --> 00:08:27,520\\nJsou chlazeny héliem na teplotu\\n\\n89\\n00:08:27,520 --> 00:08:31,280\\npouhých 4 stupňů nad absolutní nulou.\\n\\n90\\n00:08:34,890 --> 00:08:37,100\\nDobytí nových výšek\\n\\n91\\n00:08:41,470 --> 00:08:44,750\\nPrvní zkompletovaná anténa právě stoupá\\n\\n92\\n00:08:44,750 --> 00:08:46,840\\nna Operační stanoviště ALMA.\\n\\n93\\n00:08:48,160 --> 00:08:52,500\\nDva speciálně zkonstruované transportéry - Otto a Lore -\\n\\n94\\n00:08:52,500 --> 00:08:55,740\\nstěhují stotunové antény tam a zpět.\\n\\n95\\n00:08:56,440 --> 00:08:59,580\\nOtto opatrně stoupá serpentinami silnice\\n\\n96\\n00:08:59,580 --> 00:09:02,210\\na dopravuje hi-tech anténu\\n\\n97\\n00:09:02,210 --> 00:09:05,000\\ndo jejího nového domova na náhorní plošině,\\n\\n98\\n00:09:06,260 --> 00:09:10,400\\nPrvní anténu brzy následovaly další.\\n\\n99\\n00:09:14,220 --> 00:09:16,340\\nPřekonaná očekávání\\n\\n100\\n00:09:18,240 --> 00:09:21,550\\nPrvní pozorování s využitím dvou a poté tří\\n\\n101\\n00:09:21,550 --> 00:09:23,900\\nantén společně\\n\\n102\\n00:09:24,950 --> 00:09:27,480\\npředstavovala pro soustavu ALMA klíčový test.\\n\\n103\\n00:09:28,580 --> 00:09:31,400\\nA všechny prošly bez ztráty kytičky!\\n\\n104\\n00:09:35,230 --> 00:09:38,030\\nMilimetrové a submilimetrové vlny\\n\\n105\\n00:09:38,030 --> 00:09:41,750\\nposkytují astronomům jedinečné okno do vesmíru.\\n\\n106\\n00:09:42,540 --> 00:09:45,780\\nAle zobrazit je s ostrostí, jakou astronomové potřebují,\\n\\n107\\n00:09:45,780 --> 00:09:48,890\\nby vyžadovalo parabolickou anténu o průměru\\n\\n108\\n00:09:48,890 --> 00:09:52,890\\nněkolika kilometrů. A takovou nelze postavit!\\n\\n109\\n00:09:53,200 --> 00:09:57,250\\nALMA namísto toho využívá 66 antén,\\n\\n110\\n00:09:57,250 --> 00:09:59,720\\njež mohou být rozmístěny na náhorní plošině\\n\\n111\\n00:09:59,720 --> 00:10:03,700\\nve vzájemných vzdálenostech až 16 kilometrů.\\n\\n112\\n00:10:04,520 --> 00:10:08,210\\nAntény jsou propojeny a jejich signál se skládá dohromady.\\n\\n113\\n00:10:08,510 --> 00:10:13,960\\nVýsledek: obří dalekohled velký jako celá soustava,\\n\\n114\\n00:10:13,960 --> 00:10:19,500\\ns nevídanou citlivostí a rozlišovací schopností.\\n\\n115\\n00:10:24,200 --> 00:10:27,080\\nTyto vzájemně propojené signály činí srozumitelnými\\n\\n116\\n00:10:27,080 --> 00:10:31,440\\nnejvýše položený superpočítač na světě.\\n\\n117\\n00:10:32,180 --> 00:10:35,040\\nMá 134 miliónů procesorů\\n\\n118\\n00:10:35,040 --> 00:10:39,400\\na pracuje rychlostí 17 biliard operací za sekundu\\n\\n119\\n00:10:39,400 --> 00:10:42,860\\n- srovnatelnou s nejrychlejšími superpočítači světa.\\n\\n120\\n00:10:42,920 --> 00:10:45,840\\nTento tzv. ALMA korelátor na Chajnantoru\\n\\n121\\n00:10:45,840 --> 00:10:50,150\\nkombinuje a porovnává signály od každé z antén.\\n\\n122\\n00:10:56,430 --> 00:11:00,110\\nSpolu s anténami přibývajícími na plošině Chajnantor\\n\\n123\\n00:11:00,110 --> 00:11:05,270\\nrostlo také Středisko operační podpory, řídící centrum observatoře,\\n\\n124\\n00:11:05,270 --> 00:11:11,840\\nkteré se nachází v poněkud snesitelnější nadmořské výšce 2900 m.\\n\\n125\\n00:11:13,000 --> 00:11:15,960\\nTady je rušno 24 hodin denně.\\n\\n126\\n00:11:15,960 --> 00:11:18,260\\nŘídí se odsud práce teleskopu,\\n\\n127\\n00:11:18,260 --> 00:11:22,430\\ntestují a opravují se tady antény a další zařízení\\n\\n128\\n00:11:23,590 --> 00:11:25,880\\nJe tu také domov pro personál observatoře, jenž se střídá\\n\\n129\\n00:11:25,880 --> 00:11:29,550\\nběhem denních a nočních směn na observatoři.\\n\\n130\\n00:11:39,230 --> 00:11:41,670\\nCentrum v Santiagu\\n\\n131\\n00:11:44,040 --> 00:11:46,840\\nV hlavním městě hostitelské země Chile\\n\\n132\\n00:11:46,840 --> 00:11:50,760\\nbylo zřízeno Centrum projektu ALMA.\\n\\n133\\n00:11:53,470 --> 00:11:57,200\\nPracují zde technici, vědci a administrativní\\n\\n134\\n00:11:57,200 --> 00:12:00,450\\npersonál observatoře ALMA.\\n\\n135\\n00:12:09,670 --> 00:12:11,560\\nOsvědčení kvality\\n\\n136\\n00:12:14,320 --> 00:12:17,280\\nJeště před dokončením stavby\\n\\n137\\n00:12:17,280 --> 00:12:20,630\\nzačala první vědecká pozorování\\n\\n138\\n00:12:20,630 --> 00:12:23,120\\npomocí části antén soustavy.\\n\\n139\\n00:12:24,480 --> 00:12:27,400\\nALMA otevřela oči!\\n\\n140\\n00:12:33,430 --> 00:12:36,220\\nTisíce vědců z celého světa\\n\\n141\\n00:12:36,220 --> 00:12:41,200\\nse snažily být mezi hrstkou prvních šťastlivců pracující na observatoři.\\n\\n142\\n00:12:43,560 --> 00:12:46,230\\nUž s pouhými 16 anténami\\n\\n143\\n00:12:46,230 --> 00:12:51,000\\nbyla ALMA nejvýkonnějším teleskopem tohoto druhu.\\n\\n144\\n00:12:57,610 --> 00:13:02,240\\nPrvní vědecká pozorování dokonale splnila všechna očekávání.\\n\\n145\\n00:13:06,120 --> 00:13:08,020\\nGalaxie Tykadla,\\n\\n146\\n00:13:08,020 --> 00:13:12,550\\ndvojice kolidujících galaxií podivuhodně deformovaných tvarů.\\n\\n147\\n00:13:13,640 --> 00:13:17,070\\nViditelné světlo nám v galaxiích ukáže hvězdy,\\n\\n148\\n00:13:17,070 --> 00:13:21,600\\nale ALMA odhalí oblaka chladného hustého plynu\\n\\n149\\n00:13:21,600 --> 00:13:24,660\\nz nějž se rodí nové hvězdy.\\n\\n150\\n00:13:30,320 --> 00:13:35,430\\nJádro pozoruhodné galaxie Centaurus A.\\n\\n151\\n00:13:35,430 --> 00:13:41,040\\nALMA proniká skrz neprůhledné prachové pásy, jež zakrývají její centrum.\\n\\n152\\n00:13:45,960 --> 00:13:50,460\\nPohled na blízkou hvězdu Fomalhaut pomáhá napovědět\\n\\n153\\n00:13:50,460 --> 00:13:53,880\\njak se rodí a vyvíjejí planetární soustavy. \\n\\n154\\n00:13:57,400 --> 00:14:01,610\\nZrnka prachu objevená v okolí hnědého trpaslíka\\n\\n155\\n00:14:01,610 --> 00:14:03,450\\nnaznačují, že kamenné planety\\n\\n156\\n00:14:03,450 --> 00:14:07,220\\nby mohly být ve vesmíru četnější než jsme se domnívali.\\n\\n157\\n00:14:11,180 --> 00:14:14,320\\nMolekuly cukrů poprvé zaznamenané v okolí\\n\\n158\\n00:14:14,320 --> 00:14:16,790\\nmladé hvězdy podobné Slunci:\\n\\n159\\n00:14:16,790 --> 00:14:20,720\\nstavební kameny života na správném místě ve správný čas,\\n\\n160\\n00:14:20,720 --> 00:14:24,800\\naby se mohly stát součástí nových planet.\\n\\n161\\n00:14:29,330 --> 00:14:35,780\\nPřekvapivý spirální útvar v látce obklopující starou hvězdu R Sculptoris\\n\\n162\\n00:14:35,780 --> 00:14:39,480\\npoodhalil tajemství umírající hvězdy.\\n\\n163\\n00:14:44,740 --> 00:14:46,950\\nŠiroké proudy plynu\\n\\n164\\n00:14:46,950 --> 00:14:48,480\\ntáhnoucí se přes dutinu\\n\\n165\\n00:14:48,480 --> 00:14:52,140\\nv disku obklopujícím mladou hvězdu.\\n\\n166\\n00:14:52,140 --> 00:14:55,200\\nDůležité stadium zrodu obřích planet\\n\\n167\\n00:14:55,200 --> 00:14:58,120\\npozorované vůbec poprvé.\\n\\n168\\n00:14:58,120 --> 00:15:02,800\\nA to všechno ještě před plným dokončením soustavy!\\n\\n169\\n00:15:05,240 --> 00:15:07,520\\nVstříc novým obzorům\\n\\n170\\n00:15:10,270 --> 00:15:13,830\\nInaugurace observatoře ALMA je oslavou dosažení dospělosti.\\n\\n171\\n00:15:13,830 --> 00:15:16,340\\nCesta byla dlouhá.\\n\\n172\\n00:15:16,340 --> 00:15:18,670\\nALMA vyrostla z myšlenky\\n\\n173\\n00:15:18,670 --> 00:15:20,520\\npřes konstrukční projekt\\n\\n174\\n00:15:20,520 --> 00:15:22,960\\nk plně funkční observatoři\\n\\n175\\n00:15:22,960 --> 00:15:27,600\\na k opravdu globálnímu vědeckému partnerství.\\n\\n176\\n00:15:36,750 --> 00:15:40,730\\nV tiché a liduprázdné kráse chilské poušti Atacama\\n\\n177\\n00:15:40,730 --> 00:15:43,220\\nje ALMA připravena k budoucím výzvám.\\n\\n178\\n00:15:43,830 --> 00:15:46,440\\nDíky tomuto podivuhodnému přístroji budou moci\\n\\n179\\n00:15:46,440 --> 00:15:49,440\\nastronomové z celého světa odhalovat\\n\\n180\\n00:15:49,440 --> 00:15:52,600\\nhluboce ukrytá tajemství kosmu.\\n\\n181\\n00:15:53,040 --> 00:15:58,160\\nPátrání po našich kosmických kořenech!\\n\\n182\\n00:16:03,680 --> 00:16:09,720\\nALMA\\n\\n183\\n00:16:18,240 --> 00:16:22,840\\nVšem, jež zvídavost nutí klást ty největší otázky\\n\\n184\\n00:16:23,480 --> 00:16:28,930\\nText titulků ESO; překlad Jan Veselý - Hvězdárna a planetárium v Hradci Králové',\n", + " 'bytes': 14986,\n", + " 'sha1': 't7dpc57i108ug7u0ptpen7h8roev22v',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92553150,\n", + " 'timestamp': '2013-03-14T09:08:56Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25113647,\n", + " 'title': 'The movie ALMA — In Search of our Cosmic Origins.ogv.is.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'is sub',\n", + " 'text': '1\\n00:00:05,000 --> 00:00:14,000\\nALMA\\n\\n2\\n00:00:15,000 --> 00:00:26,000\\nÍ leit að uppruna okkar í alheiminum\\n\\n3\\n00:00:36,500 --> 00:00:42,000\\nHátt á hinni afskekktu Chajnantor hásléttu í Andesfjöllum Chile.\\n\\n4\\n00:00:43,000 --> 00:00:45,000\\nEinu harðneskjulegasta umhverfi á Jörðinni.\\n\\n5\\n00:00:45,500 --> 00:00:47,040\\nInnan um eldfjöll ...\\n\\n6\\n00:00:47,459 --> 00:00:49,000\\neyðimerkursléttur ...\\n\\n7\\n00:00:49,200 --> 00:00:50,690\\nog napra vinda ...\\n\\n8\\n00:00:51,000 --> 00:00:57,300\\ner ALMA — Atacama Large Millimeter/submillimeter Array — tilbúin.\\n\\n9\\n00:01:07,000 --> 00:01:10,500\\nStjörnufræðingar og vísindamenn frá öllum heimshornum\\n\\n10\\n00:01:10,500 --> 00:01:15,000\\nhafa beðið í ofvæni eftir þessari stund í áratugi.\\n\\n11\\n00:01:15,190 --> 00:01:19,430\\nALMA er stærsta stjarnvísindaverkefni heims.\\n\\n12\\n00:01:19,430 --> 00:01:22,620\\nEn þetta er enginn venjulegur sjónauki.\\n\\n13\\n00:01:22,620 --> 00:01:26,640\\nÍ stað þess að safna og greina sýnilegt ljós\\n\\n14\\n00:01:26,640 --> 00:01:31,400\\nskoðar hann gerólíkt og svo til ókannað svið rafsegulrófsins.\\n\\n15\\n00:01:40,240 --> 00:01:43,100\\nMeð því að opna nýjan glugga út í alheiminn,\\n\\n16\\n00:01:43,500 --> 00:01:50,760\\nkannar ALMA eitt af síðustu ókönnuðu sviðum stjörnufræðinnar — hinn kalda og fjarlæga alheim.\\n\\n17\\n00:01:53,000 --> 00:01:58,950\\nAllt í leit að svörum við sumum af okkar dýpstu spurningum um uppruna okkar í alheiminum.\\n\\n18\\n00:01:58,950 --> 00:02:01,600\\nHvernig verða stjörnur og reikistjörnur til?\\n\\n19\\n00:02:01,600 --> 00:02:04,490\\nHvernig mynduðust fyrstu vetrarbrautirnar?\\n\\n20\\n00:02:07,000 --> 00:02:10,979\\nChajnantor hásléttan í norðurhluta Chile.\\n\\n21\\n00:02:12,000 --> 00:02:17,640\\nÞrátt fyrir að vera í 5.000 metra hæð yfir sjávarmáli\\n\\n22\\n00:02:17,640 --> 00:02:20,220\\nhefur ALMA blómstrað.\\n\\n23\\n00:02:20,220 --> 00:02:23,000\\nUndanfarin ár\\n\\n24\\n00:02:23,000 --> 00:02:27,740\\nhefur meira en 50 loftnetum við komið fyrir á þessa hálægu eyðimerkursléttu.\\n\\n25\\n00:02:29,060 --> 00:02:34,230\\nALMA er einstakur risasjónauki, smíðaður í samstarfi\\n\\n26\\n00:02:34,230 --> 00:02:39,800\\nEvrópu, Norður Ameríku og austur Asíu í samvinnu við Chile.\\n\\n27\\n00:02:41,320 --> 00:02:46,000\\nSextíu og sex hágæða loftnet munu kanna alheiminn\\n\\n28\\n00:02:46,000 --> 00:02:49,160\\ná millímetra og hálfsmillímetra bylgjulengdum\\n\\n29\\n00:02:50,500 --> 00:02:54,380\\n— þúsund sinnum lengri bylgjulengdir en augað nemur.\\n\\n30\\n00:02:55,920 --> 00:02:59,220\\nÞetta ljós berst okkur frá sumum af köldustu\\n\\n31\\n00:02:59,220 --> 00:03:02,780\\nog fjarlægustu fyrirbærum alheims.\\n\\n32\\n00:03:04,160 --> 00:03:06,970\\nVatnsgufa í lofthjúpi Jarðar gleypir\\n\\n33\\n00:03:06,970 --> 00:03:09,480\\nþetta daufa hvískur utan úr hinum dulda alheimi,\\n\\n34\\n00:03:09,480 --> 00:03:15,500\\nsvo til að safna því verðum við að fara á mjög háan og þurran stað\\n\\n35\\n00:03:15,500 --> 00:03:18,680\\n— eins og Chajnantor.\\n\\n36\\n00:03:24,610 --> 00:03:26,270\\nALMA verður til\\n\\n37\\n00:03:26,720 --> 00:03:30,550\\nUppruna ALMA verkefnisins má rekja áratugi aftur í tímann.\\n\\n38\\n00:03:31,000 --> 00:03:35,090\\nVísindamenn frá Evrópu, Norður Ameríku og austur Asíu\\n\\n39\\n00:03:35,090 --> 00:03:39,490\\nþróuðu þrjár mismunandi hugmyndir um nýja, stóra sjónauka\\n\\n40\\n00:03:39,490 --> 00:03:42,920\\nfyrir millímetra- og hálfsmillímetra mælingar.\\n\\n41\\n00:03:43,670 --> 00:03:47,680\\nAð lokum urðu þessar hugmyndir að einni.\\n\\n42\\n00:03:48,760 --> 00:03:53,080\\nStór vísindaverkefni krefjast hnattræns samstarfs.\\n\\n43\\n00:03:53,080 --> 00:03:57,920\\nSaman geta þjóðirnar afrekað það sem þær gætu ekki einar.\\n\\n44\\n00:03:59,360 --> 00:04:03,960\\nHeildin er betri en summa hlutanna.\\n\\n45\\n00:04:04,290 --> 00:04:08,110\\nALMA verkefnið varð til!\\n\\n46\\n00:04:11,000 --> 00:04:14,760\\nAð finna réttan stað\\n\\n47\\n00:04:20,279 --> 00:04:22,940\\nFinna þurfti heimili fyrir þennan nýja sjónauka\\n\\n48\\n00:04:22,940 --> 00:04:26,520\\nog augu manna beindust að Chajnantor.\\n\\n49\\n00:04:26,870 --> 00:04:31,600\\nAllir þættir staðarins, allt frá stjarnfræðilegum til veðurfræðilegra,\\n\\n50\\n00:04:31,600 --> 00:04:35,720\\nvoru kannaðir ítarlega og daglegar mælingar á lofthjúpnum gerðar.\\n\\n51\\n00:04:35,840 --> 00:04:42,440\\nNiðurstaðan: Chajnantor var fullkominn staður fyrir ALMA.\\n\\n52\\n00:04:46,640 --> 00:04:50,300\\nBrautin rudd\\n\\n53\\n00:04:51,500 --> 00:04:55,910\\nSmíði hófst árið 2003 þegar brautin var rudd\\n\\n54\\n00:04:55,910 --> 00:04:58,770\\nað starfsstöð ALMA.\\n\\n55\\n00:05:06,920 --> 00:05:11,670\\nHér í 5.000 metra hæð yfir sjávarmáli eru aðstæður\\n\\n56\\n00:05:11,670 --> 00:05:14,620\\nharðneskjulegar og mjög krefjandi.\\n\\n57\\n00:05:16,860 --> 00:05:19,400\\nSterkir vindar.\\n\\n58\\n00:05:20,420 --> 00:05:22,880\\nLágur lofthiti.\\n\\n59\\n00:05:23,680 --> 00:05:26,540\\nMikil útfjólublá geislun.\\n\\n60\\n00:05:27,040 --> 00:05:30,080\\nOg loftið örþunnt.\\n\\n61\\n00:05:30,680 --> 00:05:35,290\\nSvo þunnt að starfsfólkið hér þurfti aukasúrefni\\n\\n62\\n00:05:35,290 --> 00:05:38,760\\nog ganga í gegnum strangar læknisskoðanir.\\n\\n63\\n00:05:41,880 --> 00:05:46,460\\nTækin smíðuð\\n\\n64\\n00:05:48,360 --> 00:05:51,440\\nFramleiðslu á loftnetum ALMA var deilt\\n\\n65\\n00:05:51,440 --> 00:05:53,680\\ná milli hinna þriggja aðstandenda ALMA.\\n\\n66\\n00:05:55,140 --> 00:05:59,540\\nÞrjár frumgerðir voru prófaðar á prófunarstað ALMA\\n\\n67\\n00:05:59,540 --> 00:06:03,440\\nhjá Very Large Array í Bandaríkjunum.\\n\\n68\\n00:06:05,030 --> 00:06:10,900\\nLoftnetin 66 á hásléttunni eru ómissandi hlutar af ALMA.\\n\\n69\\n00:06:12,240 --> 00:06:17,410\\nLoftnetin safna daufu millímetra geisluninni utan úr geimnum.\\n\\n70\\n00:06:17,480 --> 00:06:21,070\\nÞetta eru fyrsta flokks loftnet.\\n\\n71\\n00:06:22,740 --> 00:06:28,400\\nÓjöfnur á yfirborðum þeirra eru minni en sem nemur þykkt pappírsarkar.\\n\\n72\\n00:06:30,170 --> 00:06:37,360\\nÞau er hægt að hreyfa nógu nákvæmlega til að nema golfkúlu í 15 kílómetra fjarlægð.\\n\\n73\\n00:06:39,760 --> 00:06:45,320\\nOg þau þurfa að standast náttúruöflin á Chajnantor!\\n\\n74\\n00:06:58,470 --> 00:07:03,700\\nStjörnustöð Evrópulanda á suðurhveli lagði til tuttugu og fimm loftnet\\n\\n75\\n00:07:04,150 --> 00:07:08,220\\nNational Radio Astronomy Observatory í Bandaríkjunum önnur 25\\n\\n76\\n00:07:08,220 --> 00:07:13,800\\nog 16 komu frá National Astronomical Observatory of Japan.\\n\\n77\\n00:07:20,520 --> 00:07:22,620\\nViðleitnin var sannarlega hnattræn\\n\\n78\\n00:07:22,620 --> 00:07:27,700\\nþví mismunandi hlutar loftnetanna voru smíðaðir á nokkrum stöðum í heiminum,\\n\\n79\\n00:07:27,700 --> 00:07:30,700\\nsend til Chile til samsetningar\\n\\n80\\n00:07:44,360 --> 00:07:47,780\\nog síðan prófuð í þjónustumiðstöðinni\\n\\n81\\n00:07:47,780 --> 00:07:51,600\\nþar sem þau voru búin undir fyrstu mælingar á himinhvolfinu.\\n\\n82\\n00:07:55,790 --> 00:07:58,420\\nFyrstu loftnetin tengd saman\\n\\n83\\n00:07:59,950 --> 00:08:04,930\\nFyrsta loftnet ALMA var samþykkt og skömmu síðar\\n\\n84\\n00:08:04,930 --> 00:08:08,750\\ntókst að tengja tvö loftnet saman.\\n\\n85\\n00:08:12,120 --> 00:08:16,410\\nNemar í hverju loftneti skrásetja fínustu blæbrigði\\n\\n86\\n00:08:16,410 --> 00:08:19,710\\ndaufu merkjanna sem loftnetin safna.\\n\\n87\\n00:08:21,600 --> 00:08:25,040\\nNemarnir eru þeir næmustu sinnar tegundar\\n\\n88\\n00:08:25,040 --> 00:08:27,520\\nog eru kældir með helíumgasi\\n\\n89\\n00:08:27,520 --> 00:08:31,280\\nniður í aðeins fjórar gráður yfir alkul.\\n\\n90\\n00:08:34,890 --> 00:08:37,100\\nNýjum hæðum náð\\n\\n91\\n00:08:41,470 --> 00:08:44,750\\nFyrstu tilbúnu loftnetin eru á leið\\n\\n92\\n00:08:44,750 --> 00:08:46,840\\nupp í stjórnstöð raðarinnar.\\n\\n93\\n00:08:48,160 --> 00:08:52,500\\nTveir sérsmíðaðir flutningabílar — Otto og Lore —\\n\\n94\\n00:08:52,500 --> 00:08:55,740\\nflytja 100 tonna loftnetin til og frá.\\n\\n95\\n00:08:56,440 --> 00:08:59,580\\nOtto ekur varfærnislega upp hlykkjóttan veginn\\n\\n96\\n00:08:59,580 --> 00:09:02,210\\nog flytur hátækniloftnetið upp\\n\\n97\\n00:09:02,210 --> 00:09:05,000\\ná hásléttuna.\\n\\n98\\n00:09:06,260 --> 00:09:10,400\\nÍ kjölfar þessa fyrsta loftnetsins komu fljótlega mörg önnur.\\n\\n99\\n00:09:14,220 --> 00:09:16,340\\nAð standast væntingar\\n\\n100\\n00:09:18,240 --> 00:09:21,550\\nFyrstu athuganirnar með tveimur og síðan þremur\\n\\n101\\n00:09:21,550 --> 00:09:23,900\\nloftnetum í einu voru gerðar.\\n\\n102\\n00:09:24,950 --> 00:09:27,480\\nÞetta var lykilpróf fyrir ALMA röðina.\\n\\n103\\n00:09:28,580 --> 00:09:31,400\\nOg öll stóðust það með glæsibrag!\\n\\n104\\n00:09:35,230 --> 00:09:38,030\\nMillímetra og hálfsmillímetra bylgjulengdir\\n\\n105\\n00:09:38,030 --> 00:09:41,750\\ngefa stjörnufræðingum einstaka sýn á alheiminn.\\n\\n106\\n00:09:42,540 --> 00:09:45,780\\nEn til að fá þá skerpu sem stjörnufræðingar krefjast,\\n\\n107\\n00:09:45,780 --> 00:09:48,890\\nþyrfti stakur sjónauki að vera\\n\\n108\\n00:09:48,890 --> 00:09:52,890\\nnokkrir kílómetrar í þvermál og ógjörlegt að smíða!\\n\\n109\\n00:09:53,200 --> 00:09:57,250\\nÞess í stað notar ALMA 66 aðskilin loftnet\\n\\n110\\n00:09:57,250 --> 00:09:59,720\\nsem hægt er að dreifa yfir sléttuna\\n\\n111\\n00:09:59,720 --> 00:10:03,700\\nmeð allt að 16 kílómetra hámarksbili.\\n\\n112\\n00:10:04,520 --> 00:10:08,210\\nLoftnetin eru tengd saman og merkin sem þau nema sameinuð.\\n\\n113\\n00:10:08,510 --> 00:10:13,960\\nAfraksturinn er einn risasjónauki, jafnstór röðinni allri,\\n\\n114\\n00:10:13,960 --> 00:10:19,500\\nmeð meiri næmni og upplausn en áður hefur þekkst.\\n\\n115\\n00:10:24,200 --> 00:10:27,080\\nAð skilja þessi samtvinnuðu merki\\n\\n116\\n00:10:27,080 --> 00:10:31,440\\nkrefst hjálpar hálægustu ofurtölvu heims.\\n\\n117\\n00:10:32,180 --> 00:10:35,040\\nMeð 134 milljónir örgjörva\\n\\n118\\n00:10:35,040 --> 00:10:39,400\\nsem gera 17 billjarða útreikninga á sekúndu\\n\\n119\\n00:10:39,400 --> 00:10:42,860\\n— jafn marga og öflugasta ofurtölva í heiminum —\\n\\n120\\n00:10:42,920 --> 00:10:45,840\\nsameinar ALMA ofurtölvan á Chajnantor\\n\\n121\\n00:10:45,840 --> 00:10:50,150\\nog ber saman merkin frá öllum loftnetunum.\\n\\n122\\n00:10:56,430 --> 00:11:00,110\\nÞegar sífellt fleiri loftnet bætast við á Chajnantor,\\n\\n123\\n00:11:00,110 --> 00:11:05,270\\ntekur þjónustumiðstöðin, stjórnstöð stjörnustöðvarinnar,\\n\\n124\\n00:11:05,270 --> 00:11:11,840\\ná sig mynd í aðeins þægilegri hæð eða 2.900 metra yfir sjávarmáli.\\n\\n125\\n00:11:13,000 --> 00:11:15,960\\nStaðurinn er iðandi af fólki allan sólarhringinn\\n\\n126\\n00:11:15,960 --> 00:11:18,260\\nsem stjórnar sjónaukanum,\\n\\n127\\n00:11:18,260 --> 00:11:22,430\\nsér um prófanir og viðhald á loftnetum og öðrum búnaði.\\n\\n128\\n00:11:23,590 --> 00:11:25,880\\nOg er híbýli starfsfólks ALMA\\n\\n129\\n00:11:25,880 --> 00:11:29,550\\ná dag- og næturvöktum í stjörnustöðinni.\\n\\n130\\n00:11:39,230 --> 00:11:41,670\\nSkrifstofurnar í Santiago\\n\\n131\\n00:11:44,040 --> 00:11:46,840\\nÍ Santiago, höfuðborg gestaþjóðarinnar Chile\\n\\n132\\n00:11:46,840 --> 00:11:50,760\\nvoru byggðar aðalskrifstofur ALMA.\\n\\n133\\n00:11:53,470 --> 00:11:57,200\\nHér starfa tæknimenn, vísindamenn og stjórnendur\\n\\n134\\n00:11:57,200 --> 00:12:00,450\\nsameiginlegrar skrifstofu ALMA.\\n\\n135\\n00:12:09,670 --> 00:12:11,560\\nSýnt fram á yfirburði\\n\\n136\\n00:12:14,320 --> 00:12:17,280\\nÁður en smíði sjónaukans lauk\\n\\n137\\n00:12:17,280 --> 00:12:20,630\\nhófust fyrstu mælingar\\n\\n138\\n00:12:20,630 --> 00:12:23,120\\nmeð hluta loftnetanna.\\n\\n139\\n00:12:24,480 --> 00:12:27,400\\nALMA hafði opnað augun!\\n\\n140\\n00:12:33,430 --> 00:12:36,220\\nMörg þúsund vísindamenn, hvaðanæva að úr heiminum,\\n\\n141\\n00:12:36,220 --> 00:12:41,200\\nkepptust um að vera á meðal fárra útvalinna sem fengju að nota sjónaukann fyrst.\\n\\n142\\n00:12:43,560 --> 00:12:46,230\\nÞótt loftnetin væru að 16 talsins\\n\\n143\\n00:12:46,230 --> 00:12:51,000\\nvar ALMA þegar orðinn öflugasti sjónauki sinnar tegundar.\\n\\n144\\n00:12:57,610 --> 00:13:02,240\\nFyrstu mælingar uppfylltu vonir og væntingar allra.\\n\\n145\\n00:13:06,120 --> 00:13:08,020\\nLoftnetsvetrarbrautirnar,\\n\\n146\\n00:13:08,020 --> 00:13:12,550\\ntvær mjög bjagaðar vetrarbrautir að rekast saman.\\n\\n147\\n00:13:13,640 --> 00:13:17,070\\nÍ sýnilegu ljósi sjáum við stjörnurnar í vetrarbrautunum\\n\\n148\\n00:13:17,070 --> 00:13:21,600\\nen ALMA sýnir köldu, þéttu gasskýin\\n\\n149\\n00:13:21,600 --> 00:13:24,660\\nsem nýjar stjörnur myndast úr.\\n\\n150\\n00:13:30,320 --> 00:13:35,430\\nHjarta vetrarbrautarinnar Centaurus A.\\n\\n151\\n00:13:35,430 --> 00:13:41,040\\nALMA skyggnist í gegnum ógegnsæjar rykslæður sem hylja miðjuna.\\n\\n152\\n00:13:45,960 --> 00:13:50,460\\nMynd af nálægri stjörnu, Fomalhaut, veitir vísbendingar\\n\\n153\\n00:13:50,460 --> 00:13:53,880\\num myndun og þróun sólkerfa.\\n\\n154\\n00:13:57,400 --> 00:14:01,610\\nGeimryk sem fannst umhverfis brúnan dverg\\n\\n155\\n00:14:01,610 --> 00:14:03,450\\nbendir til þess að bergreikistjörnur\\n\\n156\\n00:14:03,450 --> 00:14:07,220\\ngætu jafnvel verið mun algengari í alheiminum en við töldum.\\n\\n157\\n00:14:11,180 --> 00:14:14,320\\nSykursameindir fundust í kringum unga\\n\\n158\\n00:14:14,320 --> 00:14:16,790\\nstjörnu á borð við sólina í fyrsta sinn:\\n\\n159\\n00:14:16,790 --> 00:14:20,720\\nByggingareiningar lífs á réttum stað, á réttum tíma\\n\\n160\\n00:14:20,720 --> 00:14:24,800\\ntil að vera hlutar af nýjum reikistjörnum í mótun umhverfis stjörnuna.\\n\\n161\\n00:14:29,330 --> 00:14:35,780\\nÓvænt þyrilbygging í efninu í kringum öldnu stjörnuna R Sculptoris\\n\\n162\\n00:14:35,780 --> 00:14:39,480\\nopinberar leyndardóma deyjandi stjörnu.\\n\\n163\\n00:14:44,740 --> 00:14:46,950\\nMiklir straumar úr gasi\\n\\n164\\n00:14:46,950 --> 00:14:48,480\\nflæða yfir geil\\n\\n165\\n00:14:48,480 --> 00:14:52,140\\ní efnisskífunni í kringum unga stjörnu.\\n\\n166\\n00:14:52,140 --> 00:14:55,200\\nLykilstig í myndun risareikistjarna\\n\\n167\\n00:14:55,200 --> 00:14:58,120\\nséð í fyrsta sinn.\\n\\n168\\n00:14:58,120 --> 00:15:02,800\\nOg allt þetta áður en röðin var fullkláruð!\\n\\n169\\n00:15:05,240 --> 00:15:07,520\\nÍ átt að nýjum sjóndeildarhring\\n\\n170\\n00:15:10,270 --> 00:15:13,830\\nVígsla ALMA markar tilkomu sjónaukans.\\n\\n171\\n00:15:13,830 --> 00:15:16,340\\nFerðin hefur verið löng.\\n\\n172\\n00:15:16,340 --> 00:15:18,670\\nALMA hefur vaxið úr hugmynd\\n\\n173\\n00:15:18,670 --> 00:15:20,520\\ní verkefni í smíðum\\n\\n174\\n00:15:20,520 --> 00:15:22,960\\nyfir í fullstarfhæfa stjörnustöð\\n\\n175\\n00:15:22,960 --> 00:15:27,600\\nog sannarlega í hnattrænt vísindasamstarf.\\n\\n176\\n00:15:36,750 --> 00:15:40,730\\nÍ kyrrlátri en afskekktri fegurð Atacamaeyðimerkurinnar í Chile\\n\\n177\\n00:15:40,730 --> 00:15:43,220\\ner ALMA tiilbúin fyrir framtíðina.\\n\\n178\\n00:15:43,830 --> 00:15:46,440\\nMeð þessum stórkostlega sjónauka\\n\\n179\\n00:15:46,440 --> 00:15:49,440\\nmunu stjörnufræðingar um allan heim skyggnast dýpra\\n\\n180\\n00:15:49,440 --> 00:15:52,600\\ninn í falda leyndardóma alheimsins.\\n\\n181\\n00:15:53,040 --> 00:15:58,160\\nÍ leit að uppruna okkar í alheiminum!\\n\\n182\\n00:16:03,680 --> 00:16:09,720\\nALMA\\n\\n183\\n00:16:18,240 --> 00:16:22,840\\nTil allra þeirra sem drifnir eru áfram af forvitninni til að spyrja stærstu spurninganna.\\n\\n184\\n00:16:23,480 --> 00:16:28,930\\nHandrit: ESO; þýðing: Sævar Helgi Bragason',\n", + " 'bytes': 14949,\n", + " 'sha1': 'feb5lw6ekcshvo7pas0zwbgrl24xw0f',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92553168,\n", + " 'timestamp': '2013-03-14T09:09:56Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25113649,\n", + " 'title': 'The movie ALMA — In Search of our Cosmic Origins.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:05,000 --> 00:00:14,000 ALMA 2 00:00:15,000 --> 00:00:26,000 En Busca de Nuestros Orígenes Cósmicos 3 00:00:36,500 --> 00:00:42,000 En lo alto del i...'\",\n", + " 'text': '1\\n00:00:05,000 --> 00:00:14,000\\nALMA\\n\\n2\\n00:00:15,000 --> 00:00:26,000\\nEn Busca de Nuestros Orígenes Cósmicos\\n\\n3\\n00:00:36,500 --> 00:00:42,000\\nEn lo alto del inhóspito Llano de Chajnantor en los Andes chilenos.\\n\\n4\\n00:00:43,000 --> 00:00:45,000\\nUno de los ambientes más hostiles en la Tierra.\\n\\n5\\n00:00:45,500 --> 00:00:47,040\\nEn medio de volcanes...\\n\\n6\\n00:00:47,459 --> 00:00:49,000\\nValles desiertos...\\n\\n7\\n00:00:49,200 --> 00:00:50,690\\nFuertes vientos...\\n\\n8\\n00:00:51,000 --> 00:00:57,300\\nALMA — el Atacama Large Millimeter/sub-millimeter Array — está listo.\\n\\n9\\n00:01:07,000 --> 00:01:10,500\\nAstrónomos y científicos de todo el mundo\\n\\n10\\n00:01:10,500 --> 00:01:15,000\\nhan estado esperando con impaciencia este momento durante décadas.\\n\\n11\\n00:01:15,190 --> 00:01:19,430\\nALMA es el proyecto astronómico más grande del mundo.\\n\\n12\\n00:01:19,430 --> 00:01:22,620\\nPero no es un telescopio convencional.\\n\\n13\\n00:01:22,620 --> 00:01:26,640\\nEn lugar de captar y analizar luz visible\\n\\n14\\n00:01:26,640 --> 00:01:31,400\\nobserva una parte del espectro diferente y mayormente inexplorada.\\n\\n15\\n00:01:40,240 --> 00:01:43,100\\nAl abrir una nueva ventana en el cosmos,\\n\\n16\\n00:01:43,500 --> 00:01:50,760\\nALMA explora una de las últimas fronteras de la astronomía — el Universo frío y lejano.\\n\\n17\\n00:01:53,000 --> 00:01:58,950\\nTodo en busca de respuestas a algunas de las preguntas más profundas sobre nuestros orígenes cósmicos.\\n\\n18\\n00:01:58,950 --> 00:02:01,600\\n¿Cómo se forman las estrellas y planetas?\\n\\n19\\n00:02:01,600 --> 00:02:04,490\\n¿Cómo se formaron las primeras galaxias?\\n\\n20\\n00:02:07,000 --> 00:02:10,979\\nEl Llano de Chajnantor en el norte de Chile.\\n\\n21\\n00:02:12,000 --> 00:02:17,640\\nA pesar de su altitud de 5.000 metros sobre el nivel de mar que — ¡literalmente! — deja sin aliento,\\n\\n22\\n00:02:17,640 --> 00:02:20,220\\nALMA ha florecido.\\n\\n23\\n00:02:20,220 --> 00:02:23,000\\nDurante los últimos años,\\n\\n24\\n00:02:23,000 --> 00:02:27,740\\nmás de 50 antenas han sido instaladas a lo largo del alto y desierto valle.\\n\\n25\\n00:02:29,060 --> 00:02:34,230\\nALMA es un telescopio gigante único construido en una asociación\\n\\n26\\n00:02:34,230 --> 00:02:39,800\\nentre Europa, Norteamérica y Asia del Este, en cooperación con Chile.\\n\\n27\\n00:02:41,320 --> 00:02:46,000\\nSesenta y seis antenas de última generación observarán el Universo\\n\\n28\\n00:02:46,000 --> 00:02:49,160\\nen longitudes de onda milimétricas y submilimétricas\\n\\n29\\n00:02:50,500 --> 00:02:54,380\\n— mil veces más largas que las longitudes de onda visibles.\\n\\n30\\n00:02:55,920 --> 00:02:59,220\\nEsta luz nos alcanza desde algunos de los objetos\\n\\n31\\n00:02:59,220 --> 00:03:02,780\\nmás fríos y lejanos del Universo.\\n\\n32\\n00:03:04,160 --> 00:03:06,970\\nEl vapor de agua en la atmósfera bloquea\\n\\n33\\n00:03:06,970 --> 00:03:09,480\\nestos débiles susurros del Universo oculto,\\n\\n34\\n00:03:09,480 --> 00:03:15,500\\nasí que para captarlos hay que ir a un sitio extremadamente alto y seco\\n\\n35\\n00:03:15,500 --> 00:03:18,680\\n— como Chajnantor.\\n\\n36\\n00:03:24,610 --> 00:03:26,270\\nEl Nacimiento de ALMA\\n\\n37\\n00:03:26,720 --> 00:03:30,550\\nEl origen del proyecto ALMA se remonta a décadas.\\n\\n38\\n00:03:31,000 --> 00:03:35,090\\nCientíficos de Europa, Norteamérica y Asia del Este\\n\\n39\\n00:03:35,090 --> 00:03:39,490\\ndesarrollaron tres conceptos individuales para grandes y nuevos telescopios\\n\\n40\\n00:03:39,490 --> 00:03:42,920\\npara observaciones milimétricas y submilimétricas.\\n\\n41\\n00:03:43,670 --> 00:03:47,680\\nFinalmente, estos conceptos se unieron en uno.\\n\\n42\\n00:03:48,760 --> 00:03:53,080\\nLa gran ciencia necesita colaboraciones internacionales.\\n\\n43\\n00:03:53,080 --> 00:03:57,920\\nEn conjunto los países pueden lograr lo que no pueden hacer solos.\\n\\n44\\n00:03:59,360 --> 00:04:03,960\\nEl todo es más que la suma de sus partes.\\n\\n45\\n00:04:04,290 --> 00:04:08,110\\n¡El proyecto ALMA nació!\\n\\n46\\n00:04:11,000 --> 00:04:14,760\\nBuscando el Sitio Adecuado\\n\\n47\\n00:04:20,279 --> 00:04:22,940\\nEste nuevo telescopio necesitaba un hogar,\\n\\n48\\n00:04:22,940 --> 00:04:26,520\\ny los ojos se volvieron a Chajnantor.\\n\\n49\\n00:04:26,870 --> 00:04:31,600\\nCada aspecto del sitio, desde los astronómicos a los meteorológicos,\\n\\n50\\n00:04:31,600 --> 00:04:35,720\\nfueron probados completamente y la atmósfera monitoreada diariamente.\\n\\n51\\n00:04:35,840 --> 00:04:42,440\\nLa conclusión: Chajnantor era el lugar perfecto para ALMA.\\n\\n52\\n00:04:46,640 --> 00:04:50,300\\nAbriendo camino\\n\\n53\\n00:04:51,500 --> 00:04:55,910\\nLa construcción comenzó en 2003 con la colocación de la primera piedra\\n\\n54\\n00:04:55,910 --> 00:04:58,770\\ndel Sitio de Operaciones del Conjunto de ALMA.\\n\\n55\\n00:05:06,920 --> 00:05:11,670\\nLas condiciones aquí, a una altitud de 5.000 metros sobre el nivel del mar,\\n\\n56\\n00:05:11,670 --> 00:05:14,620\\nson duras y muy exigentes.\\n\\n57\\n00:05:16,860 --> 00:05:19,400\\nFuertes vientos.\\n\\n58\\n00:05:20,420 --> 00:05:22,880\\nBajas temperaturas.\\n\\n59\\n00:05:23,680 --> 00:05:26,540\\nRadiación ultravioleta extrema.\\n\\n60\\n00:05:27,040 --> 00:05:30,080\\nY una atmósfera terriblemente escasa.\\n\\n61\\n00:05:30,680 --> 00:05:35,290\\nTan escasa que para trabajar aquí la gente necesita oxígeno suplementario\\n\\n62\\n00:05:35,290 --> 00:05:38,760\\ny tiene que someterse a rigurosos controles de salud.\\n\\n63\\n00:05:41,880 --> 00:05:46,460\\nForjando las herramientas\\n\\n64\\n00:05:48,360 --> 00:05:51,440\\nLa producción de las antenas de ALMA se ha compartido\\n\\n65\\n00:05:51,440 --> 00:05:53,680\\nentre los tres socios de ALMA.\\n\\n66\\n00:05:55,140 --> 00:05:59,540\\nLos tres prototipos fueron puestos a prueba en el Sitio de Pruebas de ALMA,\\n\\n67\\n00:05:59,540 --> 00:06:03,440\\nen el Very Large Array, en Estados Unidos.\\n\\n68\\n00:06:05,030 --> 00:06:10,900\\nLas 66 antenas en el altiplano son una parte crítica de ALMA.\\n\\n69\\n00:06:12,240 --> 00:06:17,410\\nSus grandes discos captan las débiles ondas milimétricas provenientes del espacio.\\n\\n70\\n00:06:17,480 --> 00:06:21,070\\nEstas antenas son de última generación.\\n\\n71\\n00:06:22,740 --> 00:06:28,400\\nSus superficies tienen una precisión superior a la el grosor de una hoja de papel.\\n\\n72\\n00:06:30,170 --> 00:06:37,360\\nSe pueden mover con la precisión suficiente para distinguir una pelota de golf a una distancia de 15 kilómetros.\\n\\n73\\n00:06:39,760 --> 00:06:45,320\\n¡Y tienen que sobrevivir a la intemperie en Chajnantor!\\n\\n74\\n00:06:58,470 --> 00:07:03,700\\nVeinticinco antenas han sido proporcionadas por el Observatorio Europeo Austral,\\n\\n75\\n00:07:04,150 --> 00:07:08,220\\n25 por el National Radio Astronomy Observatory de Estados Unidos,\\n\\n76\\n00:07:08,220 --> 00:07:13,800\\ny 16 por el National Astronomical Observatory de Japón.\\n\\n77\\n00:07:20,520 --> 00:07:22,620\\nEn un esfuerzo verdaderamente mundial,\\n\\n78\\n00:07:22,620 --> 00:07:27,700\\nlos componentes de las antenas fueron construidos en varios lugares alrededor del mundo,\\n\\n79\\n00:07:27,700 --> 00:07:30,700\\nenviados a Chile para ser ensamblados\\n\\n80\\n00:07:44,360 --> 00:07:47,780\\ny luego probados en el Centro de Operaciones,\\n\\n81\\n00:07:47,780 --> 00:07:51,600\\nen preparación para su primera observación del cielo.\\n\\n82\\n00:07:55,790 --> 00:07:58,420\\nConectando las Primeras Antenas\\n\\n83\\n00:07:59,950 --> 00:08:04,930\\nLa primera antena de ALMA fue aceptada y poco después\\n\\n84\\n00:08:04,930 --> 00:08:08,750\\ndos antenas fueron conectadas exitosamente.\\n\\n85\\n00:08:12,120 --> 00:08:16,410\\nLos detectores de cada antena registran los matices más finos\\n\\n86\\n00:08:16,410 --> 00:08:19,710\\nde las débiles señales captadas por los platos.\\n\\n87\\n00:08:21,600 --> 00:08:25,040\\nEstos detectores son los más sensibles de su tipo\\n\\n88\\n00:08:25,040 --> 00:08:27,520\\ny son enfriados usando helio gaseoso\\n\\n89\\n00:08:27,520 --> 00:08:31,280\\na unos cuatro grados sobre el cero absoluto.\\n\\n90\\n00:08:34,890 --> 00:08:37,100\\nAlcanzando Nuevas Alturas\\n\\n91\\n00:08:41,470 --> 00:08:44,750\\nLa primera entena completada recorrió su camino\\n\\n92\\n00:08:44,750 --> 00:08:46,840\\nhasta el Sitio de Operaciones del Conjunto.\\n\\n93\\n00:08:48,160 --> 00:08:52,500\\nLos dos transportadores hechos a medida — Otto y Lore —\\n\\n94\\n00:08:52,500 --> 00:08:55,740\\ntrasladan las antenas de 100 toneladas.\\n\\n95\\n00:08:56,440 --> 00:08:59,580\\nOtto asciende cuidadosamente el sinuoso camino,\\n\\n96\\n00:08:59,580 --> 00:09:02,210\\nllevando la antena de alta tecnología\\n\\n97\\n00:09:02,210 --> 00:09:05,000\\nhasta su hogar en el altiplano.\\n\\n98\\n00:09:06,260 --> 00:09:10,400\\nEsta primera antena pronto se unió a muchas más.\\n\\n99\\n00:09:14,220 --> 00:09:16,340\\nSuperando las Expectativas\\n\\n100\\n00:09:18,240 --> 00:09:21,550\\nSe realizaron las primeras observaciones usando dos,\\n\\n101\\n00:09:21,550 --> 00:09:23,900\\ny luego tres antenas al unísono.\\n\\n102\\n00:09:24,950 --> 00:09:27,480\\nPruebas clave para el conjunto ALMA.\\n\\n103\\n00:09:28,580 --> 00:09:31,400\\n¡Y todas superadas exitosamente!\\n\\n104\\n00:09:35,230 --> 00:09:38,030\\nLas longitudes de onda milimétricas y submilimétricas\\n\\n105\\n00:09:38,030 --> 00:09:41,750\\ndan a los astrónomos una ventana única hacia el Universo.\\n\\n106\\n00:09:42,540 --> 00:09:45,780\\nPero para ver con la nitidez que los astrónomos necesitan,\\n\\n107\\n00:09:45,780 --> 00:09:48,890\\n¡Un telecopio de un disco único debería tener\\n\\n108\\n00:09:48,890 --> 00:09:52,890\\nkilómetros de diámetro (imposible de construir)!\\n\\n109\\n00:09:53,200 --> 00:09:57,250\\nEn su lugar, ALMA usa 66 antenas separadas\\n\\n110\\n00:09:57,250 --> 00:09:59,720\\nque pueden extenderse sobre el valle\\n\\n111\\n00:09:59,720 --> 00:10:03,700\\ncon separaciones de hasta 16 kilómetros.\\n\\n112\\n00:10:04,520 --> 00:10:08,210\\nLas antenas son conectadas y sus señales combinadas.\\n\\n113\\n00:10:08,510 --> 00:10:13,960\\nEl resultado: un telescopio gigante tan ancho como el conjunto completo,\\n\\n114\\n00:10:13,960 --> 00:10:19,500\\nobservando con una sensibilidad y resolución sin precedentes.\\n\\n115\\n00:10:24,200 --> 00:10:27,080\\nDar sentido a estas señales entrelazadas\\n\\n116\\n00:10:27,080 --> 00:10:31,440\\nnecesita el supercomputador de mayor altitud en el mundo.\\n\\n117\\n00:10:32,180 --> 00:10:35,040\\nCon 134 millones de procesadores,\\n\\n118\\n00:10:35,040 --> 00:10:39,400\\nrealizando 17 mil billones de operaciones por segundo\\n\\n119\\n00:10:39,400 --> 00:10:42,860\\n— tantas como el supercomputador más rápido del mundo —\\n\\n120\\n00:10:42,920 --> 00:10:45,840\\nel correlacionador de ALMA, en Chajnantor,\\n\\n121\\n00:10:45,840 --> 00:10:50,150\\ncombina y compara las señales de cada antena.\\n\\n122\\n00:10:56,430 --> 00:11:00,110\\nA medida que más y más antenas llegan a Chajnantor,\\n\\n123\\n00:11:00,110 --> 00:11:05,270\\nel Centro de Operaciones, el centro de control del observatorio,\\n\\n124\\n00:11:05,270 --> 00:11:11,840\\ntoma forma a la altitud un poco más acogedora de 2.900 metros.\\n\\n125\\n00:11:13,000 --> 00:11:15,960\\nEl sitio está repleto las 24 horas del día.\\n\\n126\\n00:11:15,960 --> 00:11:18,260\\nOperando el telescopio.\\n\\n127\\n00:11:18,260 --> 00:11:22,430\\nProbando y dando mantenimiento a las antenas y otros equipos.\\n\\n128\\n00:11:23,590 --> 00:11:25,880\\nY es el hogar del personal de ALMA\\n\\n129\\n00:11:25,880 --> 00:11:29,550\\ndurante sus turnos de día y noche en el observatorio.\\n\\n130\\n00:11:39,230 --> 00:11:41,670\\nOficinas Centrales en Santiago\\n\\n131\\n00:11:44,040 --> 00:11:46,840\\nEn la capital del país anfitrión, Chile,\\n\\n132\\n00:11:46,840 --> 00:11:50,760\\nfueron construidas las Oficinas Centrales de ALMA en Santiago.\\n\\n133\\n00:11:53,470 --> 00:11:57,200\\nAquí, el personal técnico, científico y administrativo\\n\\n134\\n00:11:57,200 --> 00:12:00,450\\nde la Oficina Conjunta ALMA está trabajando.\\n\\n135\\n00:12:09,670 --> 00:12:11,560\\nDemostrando Excelencia\\n\\n136\\n00:12:14,320 --> 00:12:17,280\\nIncluso antes que la etapa de construcción fuese completada,\\n\\n137\\n00:12:17,280 --> 00:12:20,630\\ncomenzaron las primeras observaciones científicas\\n\\n138\\n00:12:20,630 --> 00:12:23,120\\ncon un conjunto parcial de antenas.\\n\\n139\\n00:12:24,480 --> 00:12:27,400\\n¡ALMA había abierto sus ojos!\\n\\n140\\n00:12:33,430 --> 00:12:36,220\\nMiles de científicos de todo el mundo\\n\\n141\\n00:12:36,220 --> 00:12:41,200\\ncompitieron para estar entre los pocos afortunados para usar por primera vez las instalaciones.\\n\\n142\\n00:12:43,560 --> 00:12:46,230\\nIncluso con solo 16 antenas\\n\\n143\\n00:12:46,230 --> 00:12:51,000\\nALMA ya era el telescopio más poderoso de su clase.\\n\\n144\\n00:12:57,610 --> 00:13:02,240\\nLas primeras observaciones científicas cumplieron las expectativas de todos.\\n\\n145\\n00:13:06,120 --> 00:13:08,020\\nLas Galaxias de las Antenas,\\n\\n146\\n00:13:08,020 --> 00:13:12,550\\nun par de galaxias en colisión con formas dramáticamente distorsionadas.\\n\\n147\\n00:13:13,640 --> 00:13:17,070\\nLa luz visible puede mostrarnos las estrellas en las galaxias,\\n\\n148\\n00:13:17,070 --> 00:13:21,600\\npero ALMA revela las nubes de gas frío y denso\\n\\n149\\n00:13:21,600 --> 00:13:24,660\\na partir del que nacen nuevas estrellas.\\n\\n150\\n00:13:30,320 --> 00:13:35,430\\nEl corazón del la inconfundible galaxia Centaurus A.\\n\\n151\\n00:13:35,430 --> 00:13:41,040\\nALMA ve a través de las opacas líneas de polvo que ocultan su centro.\\n\\n152\\n00:13:45,960 --> 00:13:50,460\\nUna visión de la cercana estrella Fomalhaut proporciona pistas\\n\\n153\\n00:13:50,460 --> 00:13:53,880\\nde cómo se forman y evolucionan los sistemas planetarios.\\n\\n154\\n00:13:57,400 --> 00:14:01,610\\nLos granos de polvo cósmico encontrados alrededor de una enana marrón\\n\\n155\\n00:14:01,610 --> 00:14:03,450\\nsugieren que los planetas rocosos\\n\\n156\\n00:14:03,450 --> 00:14:07,220\\npueden ser más comunes en nuestro Universo de lo que pensábamos.\\n\\n157\\n00:14:11,180 --> 00:14:14,320\\nLas moléculas de azúcar, detectadas alrededor de una estrella joven\\n\\n158\\n00:14:14,320 --> 00:14:16,790\\nsimilar al Sol por primera vez:\\n\\n159\\n00:14:16,790 --> 00:14:20,720\\nlos bloques fundamentales de la vida en el lugar adecuado, en el momento adecuado,\\n\\n160\\n00:14:20,720 --> 00:14:24,800\\npara ser parte de los nuevos planetas que se forman alrededor de la estrella.\\n\\n161\\n00:14:29,330 --> 00:14:35,780\\nUna estructura espiral inesperada en el material alrededor de la vieja estrella R Sculptoris\\n\\n162\\n00:14:35,780 --> 00:14:39,480\\nrevelaron los secretos de esta estrella moribunda.\\n\\n163\\n00:14:44,740 --> 00:14:46,950\\nEnormes chorros de gas\\n\\n164\\n00:14:46,950 --> 00:14:48,480\\nfluyendo a través de un espacio\\n\\n165\\n00:14:48,480 --> 00:14:52,140\\nen el disco de material alrededor de una estrella joven.\\n\\n166\\n00:14:52,140 --> 00:14:55,200\\nUna etapa clave en el nacimiento de los planetas gigantes,\\n\\n167\\n00:14:55,200 --> 00:14:58,120\\nobservada por primera vez.\\n\\n168\\n00:14:58,120 --> 00:15:02,800\\n¡Y todo esto antes que el conjunto estuviese completamente terminado!\\n\\n169\\n00:15:05,240 --> 00:15:07,520\\nHacia Nuevos Horizontes\\n\\n170\\n00:15:10,270 --> 00:15:13,830\\nLa inauguración de ALMA celebra su madurez.\\n\\n171\\n00:15:13,830 --> 00:15:16,340\\nEl viaje ha sido largo.\\n\\n172\\n00:15:16,340 --> 00:15:18,670\\nALMA ha crecido desde una idea,\\n\\n173\\n00:15:18,670 --> 00:15:20,520\\na un proyecto en construcción,\\n\\n174\\n00:15:20,520 --> 00:15:22,960\\na un observatorio completamente operativo,\\n\\n175\\n00:15:22,960 --> 00:15:27,600\\ny a una colaboración científica verdaderamente mundial.\\n\\n176\\n00:15:36,750 --> 00:15:40,730\\nEn la serena y solitaria belleza del desierto chileno de Atacama,\\n\\n177\\n00:15:40,730 --> 00:15:43,220\\nALMA está listo para el futuro.\\n\\n178\\n00:15:43,830 --> 00:15:46,440\\nUsando este maravilloso telescopio,\\n\\n179\\n00:15:46,440 --> 00:15:49,440\\nlos astrónomos del mundo profundizarán\\n\\n180\\n00:15:49,440 --> 00:15:52,600\\nen los secretos ocultos del cosmos.\\n\\n181\\n00:15:53,040 --> 00:15:58,160\\n¡En busca de nuestros orígenes cósmicos!\\n\\n182\\n00:16:03,680 --> 00:16:09,720\\nALMA\\n\\n183\\n00:16:18,240 --> 00:16:22,840\\nA todos aquellos cuya curiosidad los lleva a hacer las preguntas más grandes\\n\\n184\\n00:16:23,480 --> 00:16:28,930\\nTranscripción por ESO; traducción por Felipe Campos.',\n", + " 'bytes': 15611,\n", + " 'sha1': '8w4ycapribbozis3cf6we7b7pqz2gbi',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92553197,\n", + " 'timestamp': '2013-03-14T09:11:23Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25113656,\n", + " 'title': 'The movie ALMA — In Search of our Cosmic Origins.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:05,000 --> 00:00:14,000 ALMA 2 00:00:15,000 --> 00:00:26,000 Em Busca das Nossas Origens Cósmicas 3 00:00:36,500 --> 00:00:42,000 No alto do desolado...'\",\n", + " 'text': '1\\n00:00:05,000 --> 00:00:14,000\\nALMA\\n\\n2\\n00:00:15,000 --> 00:00:26,000\\nEm Busca das Nossas Origens Cósmicas\\n\\n3\\n00:00:36,500 --> 00:00:42,000\\nNo alto do desolado Planalto de Chajnantor nos Andes chilenos.\\n\\n4\\n00:00:43,000 --> 00:00:45,000\\nUm dos mais hostis ambientes na Terra.\\n\\n5\\n00:00:45,500 --> 00:00:47,040\\nPor entre vulcões ...\\n\\n6\\n00:00:47,459 --> 00:00:49,000\\nPlanícies desertas ...\\n\\n7\\n00:00:49,200 --> 00:00:50,690\\nE ventos agrestes ...\\n\\n8\\n00:00:51,000 --> 00:00:57,300\\nALMA — o Atacama Large Milimeter/sub-milimeter Array — está pronto.\\n\\n9\\n00:01:07,000 --> 00:01:10,500\\nAstrónomos e cientistas por todo o globo\\n\\n10\\n00:01:10,500 --> 00:01:15,000\\nansiavam por este momento há décadas.\\n\\n11\\n00:01:15,190 --> 00:01:19,430\\nALMA é o maior projeto astronómico do mundo.\\n\\n12\\n00:01:19,430 --> 00:01:22,620\\nMas não se trata de um telescópio convencional.\\n\\n13\\n00:01:22,620 --> 00:01:26,640\\nEm vez de recolher e analisar a luz visível\\n\\n14\\n00:01:26,640 --> 00:01:31,400\\nolha para uma outra parte do espectro largamente inexplorada.\\n\\n15\\n00:01:40,240 --> 00:01:43,100\\nAo abrir uma nova janela para o cosmos,\\n\\n16\\n00:01:43,500 --> 00:01:50,760\\no ALMA explora uma das últimas fronteiras da astronomia — o Universo frio e distante.\\n\\n17\\n00:01:53,000 --> 00:01:58,950\\nTudo em busca de respostas para algumas das mais profundas questões sobre as nossas origens cósmicas.\\n\\n18\\n00:01:58,950 --> 00:02:01,600\\nComo se formam as estrelas e os planetas?\\n\\n19\\n00:02:01,600 --> 00:02:04,490\\nComo se formaram as primeiras galáxias?\\n\\n20\\n00:02:07,000 --> 00:02:10,979\\nO Planalto de Chajnantor no norte do Chile.\\n\\n21\\n00:02:12,000 --> 00:02:17,640\\nApesar da altitude de — literalmente! — cortar a respiração a 5000 metros acima do nível do mar\\n\\n22\\n00:02:17,640 --> 00:02:20,220\\no ALMA floresceu.\\n\\n23\\n00:02:20,220 --> 00:02:23,000\\nAo longo dos últimos anos,\\n\\n24\\n00:02:23,000 --> 00:02:27,740\\nmais de 50 antenas foram instaladas ao longo do planalto deserto.\\n\\n25\\n00:02:29,060 --> 00:02:34,230\\nALMA é um telescópio gigante e único, construído numa parceria\\n\\n26\\n00:02:34,230 --> 00:02:39,800\\nentre a Europa, a América do Norte e o Leste Asiático, em cooperação com o Chile.\\n\\n27\\n00:02:41,320 --> 00:02:46,000\\nSessenta e seis antenas com tecnologia de ponta irão observar o Universo\\n\\n28\\n00:02:46,000 --> 00:02:49,160\\nem comprimentos de onda milimétricos e submilimétricos\\n\\n29\\n00:02:50,500 --> 00:02:54,380\\n— mil vezes mais longos do que comprimentos de onda visíveis.\\n\\n30\\n00:02:55,920 --> 00:02:59,220\\nEsta luz chega até nós desde alguns dos mais frios\\n\\n31\\n00:02:59,220 --> 00:03:02,780\\ne distantes objetos no Universo.\\n\\n32\\n00:03:04,160 --> 00:03:06,970\\nO vapor de água na atmosfera bloqueia\\n\\n33\\n00:03:06,970 --> 00:03:09,480\\nestes leves sussurros do Universo oculto,\\n\\n34\\n00:03:09,480 --> 00:03:15,500\\nportanto para captá-los temos que ir para um local extremamente elevado e seco\\n\\n35\\n00:03:15,500 --> 00:03:18,680\\n— como Chajnantor.\\n\\n36\\n00:03:24,610 --> 00:03:26,270\\nO Nascimento do ALMA\\n\\n37\\n00:03:26,720 --> 00:03:30,550\\nA origem do projecto ALMA data de há décadas atrás.\\n\\n38\\n00:03:31,000 --> 00:03:35,090\\nCientistas da Europa, América do Norte e Leste Asiático\\n\\n39\\n00:03:35,090 --> 00:03:39,490\\ndesenvolveram três conceitos individuais para novos, grandes telescópios\\n\\n40\\n00:03:39,490 --> 00:03:42,920\\npara observações em milímetro e submilímetro.\\n\\n41\\n00:03:43,670 --> 00:03:47,680\\nEventualmente estes conceitos fundiram-se num só.\\n\\n42\\n00:03:48,760 --> 00:03:53,080\\nCiência em grande requer grandes colaborações globais.\\n\\n43\\n00:03:53,080 --> 00:03:57,920\\nJuntos, os países conseguem alcançar o que não conseguem fazer sozinhos.\\n\\n44\\n00:03:59,360 --> 00:04:03,960\\nO todo é maior que a soma das partes.\\n\\n45\\n00:04:04,290 --> 00:04:08,110\\nO projecto ALMA nasceu!\\n\\n46\\n00:04:11,000 --> 00:04:14,760\\nEncontrando o Sítio Certo\\n\\n47\\n00:04:20,279 --> 00:04:22,940\\nEste novo telescópio precisava de um lar,\\n\\n48\\n00:04:22,940 --> 00:04:26,520\\ne os olhares viraram-se para Chajnantor.\\n\\n49\\n00:04:26,870 --> 00:04:31,600\\nCada um dos aspetos do local, desde astronómicos a meteorológicos,\\n\\n50\\n00:04:31,600 --> 00:04:35,720\\nfoi intensivamente testado e a atmosfera foi monitorizada diariamente\\n\\n51\\n00:04:35,840 --> 00:04:42,440\\nA conclusão: Chajnantor era o lugar perfeito para o ALMA.\\n\\n52\\n00:04:46,640 --> 00:04:50,300\\nAbrindo Caminho\\n\\n53\\n00:04:51,500 --> 00:04:55,910\\nA construção começou em 2003 com a colocação da primeira pedra\\n\\n54\\n00:04:55,910 --> 00:04:58,770\\npara o centro de operações do ALMA.\\n\\n55\\n00:05:06,920 --> 00:05:11,670\\nAqui, a uma altura de 5000 metros acima do nível do mar, as condições\\n\\n56\\n00:05:11,670 --> 00:05:14,620\\nsão duras e extremamente desafiantes.\\n\\n57\\n00:05:16,860 --> 00:05:19,400\\nVentos fortes.\\n\\n58\\n00:05:20,420 --> 00:05:22,880\\nBaixas temperaturas.\\n\\n59\\n00:05:23,680 --> 00:05:26,540\\nIntensa radiação ultravioleta.\\n\\n60\\n00:05:27,040 --> 00:05:30,080\\nE uma atmosfera desesperadamente fina.\\n\\n61\\n00:05:30,680 --> 00:05:35,290\\nTão fina que, para trabalhar aqui, as pessoas precisam de oxigénio suplementar\\n\\n62\\n00:05:35,290 --> 00:05:38,760\\ne têm que se submeter a rigorosos testes de saúde.\\n\\n63\\n00:05:41,880 --> 00:05:46,460\\nForjando as Ferramentas\\n\\n64\\n00:05:48,360 --> 00:05:51,440\\nA produção das antenas do ALMA foi partilhada\\n\\n65\\n00:05:51,440 --> 00:05:53,680\\nentre os três parceiros.\\n\\n66\\n00:05:55,140 --> 00:05:59,540\\nTrês protótipos foram postos em marcha nas instalações de testes do ALMA,\\n\\n67\\n00:05:59,540 --> 00:06:03,440\\nno Very Large Array, nos EUA.\\n\\n68\\n00:06:05,030 --> 00:06:10,900\\nAs 66 antenas no elevado planalto constituem uma parte crítica do ALMA.\\n\\n69\\n00:06:12,240 --> 00:06:17,410\\nOs seus grandes discos recolhem as ténues ondas milimétricas do espaço.\\n\\n70\\n00:06:17,480 --> 00:06:21,070\\nEstas antenas são verdadeiramente o estado-da-arte.\\n\\n71\\n00:06:22,740 --> 00:06:28,400\\nAs suas superfícies têm uma precisão ao nível da espessura de uma folha de papel.\\n\\n72\\n00:06:30,170 --> 00:06:37,360\\nElas conseguem mover-se com exatidão suficiente para apanhar uma bola de golfe a uma distância de 15 quilómetros.\\n\\n73\\n00:06:39,760 --> 00:06:45,320\\nE têm de sobreviver, expostas aos elementos, em Chajnantor!\\n\\n74\\n00:06:58,470 --> 00:07:03,700\\nVinte e cinco antenas foram fornecidas pelo Observatório Europeu do Sul,\\n\\n75\\n00:07:04,150 --> 00:07:08,220\\n25 pelo Observatório Nacional de Rádio Astronomia dos Estados Unidos,\\n\\n76\\n00:07:08,220 --> 00:07:13,800\\ne 16 pelo Observatório Astronómico do Japão.\\n\\n77\\n00:07:20,520 --> 00:07:22,620\\nNuma saga verdadeiramente global,\\n\\n78\\n00:07:22,620 --> 00:07:27,700\\nos componentes de cada antena foram construídos em diversas localizações à volta do mundo,\\n\\n79\\n00:07:27,700 --> 00:07:30,700\\nenviadas para o Chile para serem montadas\\n\\n80\\n00:07:44,360 --> 00:07:47,780\\ne depois testadas no complexo de apoio às operações.\\n\\n81\\n00:07:47,780 --> 00:07:51,600\\na postos para a sua primeira observação do céu.\\n\\n82\\n00:07:55,790 --> 00:07:58,420\\nLigando as Primeiras Antenas\\n\\n83\\n00:07:59,950 --> 00:08:04,930\\nA primeira antena do ALMA foi aceite e pouco depois\\n\\n84\\n00:08:04,930 --> 00:08:08,750\\nduas antenas foram ligadas em conjunto com sucesso.\\n\\n85\\n00:08:12,120 --> 00:08:16,410\\nDetetores em cada antena registaram as finas nuances\\n\\n86\\n00:08:16,410 --> 00:08:19,710\\ndos ténues sinais captados pelos discos.\\n\\n87\\n00:08:21,600 --> 00:08:25,040\\nEstes detetores são os mais sensíveis da sua espécie\\n\\n88\\n00:08:25,040 --> 00:08:27,520\\ne são arrefecidos usando gás hélio\\n\\n89\\n00:08:27,520 --> 00:08:31,280\\na apenas quatro graus acima do zero absoluto.\\n\\n90\\n00:08:34,890 --> 00:08:37,100\\nAlcançando Novas Alturas\\n\\n91\\n00:08:41,470 --> 00:08:44,750\\nA primeira antena a ser concluída percorre o seu caminho\\n\\n92\\n00:08:44,750 --> 00:08:46,840\\naté ao centro de operações.\\n\\n93\\n00:08:48,160 --> 00:08:52,500\\nDois veículos de construção personalizada — Otto e Lore —\\n\\n94\\n00:08:52,500 --> 00:08:55,740\\ndeslocam as antenas de 100 toneladas.\\n\\n95\\n00:08:56,440 --> 00:08:59,580\\nO Otto sobe cuidadosamente a estrada sinuosa,\\n\\n96\\n00:08:59,580 --> 00:09:02,210\\ncarregando a antena de alta tecnologia\\n\\n97\\n00:09:02,210 --> 00:09:05,000\\naté à sua casa final no planalto.\\n\\n98\\n00:09:06,260 --> 00:09:10,400\\nA primeira antena foi em breve acompanhada por muitas mais.\\n\\n99\\n00:09:14,220 --> 00:09:16,340\\nUltrapassando Expetativas\\n\\n100\\n00:09:18,240 --> 00:09:21,550\\nAs primeiras observações utilizando duas, e depois três\\n\\n101\\n00:09:21,550 --> 00:09:23,900\\nantenas em uníssono foram realizadas.\\n\\n102\\n00:09:24,950 --> 00:09:27,480\\nTestes importantes para o complexo ALMA.\\n\\n103\\n00:09:28,580 --> 00:09:31,400\\nE todos passaram com distinção!\\n\\n104\\n00:09:35,230 --> 00:09:38,030\\nOs comprimentos de onda milimétricos e submilimétricos\\n\\n105\\n00:09:38,030 --> 00:09:41,750\\nproporcionam aos astrónomos uma janela única no Universo.\\n\\n106\\n00:09:42,540 --> 00:09:45,780\\nMas para os vermos com a nitidez de que os astrónomos precisam,\\n\\n107\\n00:09:45,780 --> 00:09:48,890\\num telescópio de um único disco teria que ter\\n\\n108\\n00:09:48,890 --> 00:09:52,890\\nquilómetros de diâmetro (e ser impossível de construir)!\\n\\n109\\n00:09:53,200 --> 00:09:57,250\\nEm vez disso, o ALMA usa 66 antenas individuais\\n\\n110\\n00:09:57,250 --> 00:09:59,720\\nque podem ser espalhadas por toda a planície\\n\\n111\\n00:09:59,720 --> 00:10:03,700\\ncom uma separação de até 16 quilómetros.\\n\\n112\\n00:10:04,520 --> 00:10:08,210\\nAs antenas são ligadas e os seus sinais combinados.\\n\\n113\\n00:10:08,510 --> 00:10:13,960\\nO resultado: um telescópio gigante tão amplo quanto todo o conjunto,\\n\\n114\\n00:10:13,960 --> 00:10:19,500\\nobservando com sensibilidade e resolução sem precedentes.\\n\\n115\\n00:10:24,200 --> 00:10:27,080\\nFazer sentido destes sinais entrelaçados\\n\\n116\\n00:10:27,080 --> 00:10:31,440\\nrequer o supercomputador a maior altitude no mundo.\\n\\n117\\n00:10:32,180 --> 00:10:35,040\\nCom 134 milhões de processadores,\\n\\n118\\n00:10:35,040 --> 00:10:39,400\\nrealizando 17 mil biliões de operações por segundo\\n\\n119\\n00:10:39,400 --> 00:10:42,860\\n— tantas como o supercomputador mais rápido do mundo —\\n\\n120\\n00:10:42,920 --> 00:10:45,840\\no correlacionador do ALMA, em Chajnantor,\\n\\n121\\n00:10:45,840 --> 00:10:50,150\\ncombina e compara os sinais de cada uma das antenas.\\n\\n122\\n00:10:56,430 --> 00:11:00,110\\nConforme mais e mais antenas chegam a Chajnantor,\\n\\n123\\n00:11:00,110 --> 00:11:05,270\\nas instalações de apoio às operações, o centro de controlo do observatório,\\n\\n124\\n00:11:05,270 --> 00:11:11,840\\nvão ganhando forma na ligeiramente mais acolhedora altitude de 2900 metros.\\n\\n125\\n00:11:13,000 --> 00:11:15,960\\nO local é movimentado a toda a hora.\\n\\n126\\n00:11:15,960 --> 00:11:18,260\\nOperar o Telescópio.\\n\\n127\\n00:11:18,260 --> 00:11:22,430\\nTestar e manter as antenas e restante equipamento.\\n\\n128\\n00:11:23,590 --> 00:11:25,880\\nE acolher o pessoal do ALMA\\n\\n129\\n00:11:25,880 --> 00:11:29,550\\ndurante os seus turnos diários e noturnos no observatório.\\n\\n130\\n00:11:39,230 --> 00:11:41,670\\nEscritórios Centrais de Santiago\\n\\n131\\n00:11:44,040 --> 00:11:46,840\\nNa capital da nação anfitriã, o Chile,\\n\\n132\\n00:11:46,840 --> 00:11:50,760\\nforam construídos os escritórios centrais do ALMA de Santiago.\\n\\n133\\n00:11:53,470 --> 00:11:57,200\\nAqui trabalham o pessoal técnico, científico e administrativo\\n\\n134\\n00:11:57,200 --> 00:12:00,450\\ndos escritórios conjuntos do ALMA.\\n\\n135\\n00:12:09,670 --> 00:12:11,560\\nComprovando Excelência\\n\\n136\\n00:12:14,320 --> 00:12:17,280\\nMesmo antes da fase de construção estar completa,\\n\\n137\\n00:12:17,280 --> 00:12:20,630\\ntiveram início as primeiras observações científicas\\n\\n138\\n00:12:20,630 --> 00:12:23,120\\ncom uma parte das antenas.\\n\\n139\\n00:12:24,480 --> 00:12:27,400\\nO ALMA abriu os seus olhos!\\n\\n140\\n00:12:33,430 --> 00:12:36,220\\nMilhares de cientistas de todo o mundo\\n\\n141\\n00:12:36,220 --> 00:12:41,200\\ncompetiram para serem dos primeiros felizardos a utilizar o complexo.\\n\\n142\\n00:12:43,560 --> 00:12:46,230\\nMesmo com 16 antenas apenas\\n\\n143\\n00:12:46,230 --> 00:12:51,000\\no ALMA era já o mais poderoso telescópio do seu género.\\n\\n144\\n00:12:57,610 --> 00:13:02,240\\nAs primeiras observações científicas satisfizeram as esperanças de todos.\\n\\n145\\n00:13:06,120 --> 00:13:08,020\\nAs Galáxias Antennae,\\n\\n146\\n00:13:08,020 --> 00:13:12,550\\num par de galáxias em colisão com formas dramaticamente distorcidas.\\n\\n147\\n00:13:13,640 --> 00:13:17,070\\nA luz visível pode mostrar-nos a luz das estrelas nas galáxias,\\n\\n148\\n00:13:17,070 --> 00:13:21,600\\nmas o ALMA revela as nuvens de gás denso e frio\\n\\n149\\n00:13:21,600 --> 00:13:24,660\\ndas quais as estrelas nascem.\\n\\n150\\n00:13:30,320 --> 00:13:35,430\\nO coração da distinta galáxia Centaurus A.\\n\\n151\\n00:13:35,430 --> 00:13:41,040\\nO ALMA perscruta através das faixas de pó opacas que obscurecem o seu centro.\\n\\n152\\n00:13:45,960 --> 00:13:50,460\\nUma vista da estrela próxima Fomalhaut fornece pistas\\n\\n153\\n00:13:50,460 --> 00:13:53,880\\nacerca de como os sistemas planetários se formam e evolvem.\\n\\n154\\n00:13:57,400 --> 00:14:01,610\\nGrãos de poeira cósmica encontrados ao redor de uma anã castanha\\n\\n155\\n00:14:01,610 --> 00:14:03,450\\nsugerem que planetas rochosos\\n\\n156\\n00:14:03,450 --> 00:14:07,220\\npodem mesmo ser mais comuns no nosso Universo do que pensávamos.\\n\\n157\\n00:14:11,180 --> 00:14:14,320\\nMoléculas de açúcar, detetadas à volta de uma jovem\\n\\n158\\n00:14:14,320 --> 00:14:16,790\\nestrela como o Sol pela primeira vez:\\n\\n159\\n00:14:16,790 --> 00:14:20,720\\nos blocos de construção da vida no lugar certo, à hora certa,\\n\\n160\\n00:14:20,720 --> 00:14:24,800\\npara tomarem parte na formação de novos planetas em torno da estrela.\\n\\n161\\n00:14:29,330 --> 00:14:35,780\\nUma inesperada estrutura em espiral na matéria ao redor da velha estrela R Sculptoris\\n\\n162\\n00:14:35,780 --> 00:14:39,480\\nrevelou os segredos desta estrela moribunda.\\n\\n163\\n00:14:44,740 --> 00:14:46,950\\nVastos jatos de gás\\n\\n164\\n00:14:46,950 --> 00:14:48,480\\nfluindo através de uma abertura\\n\\n165\\n00:14:48,480 --> 00:14:52,140\\nno disco de matéria à volta de uma estrela jovem.\\n\\n166\\n00:14:52,140 --> 00:14:55,200\\nUma fase chave no nascimento de planetas gigantes,\\n\\n167\\n00:14:55,200 --> 00:14:58,120\\nobservada pela primeira vez.\\n\\n168\\n00:14:58,120 --> 00:15:02,800\\nE tudo isto antes do conjunto estar completo!\\n\\n169\\n00:15:05,240 --> 00:15:07,520\\nEm Direção a Novos Horizontes\\n\\n170\\n00:15:10,270 --> 00:15:13,830\\nA inauguração do ALMA celebra a sua maioridade.\\n\\n171\\n00:15:13,830 --> 00:15:16,340\\nA jornada foi longa.\\n\\n172\\n00:15:16,340 --> 00:15:18,670\\nO ALMA cresceu de uma ideia,\\n\\n173\\n00:15:18,670 --> 00:15:20,520\\na um projeto de construção,\\n\\n174\\n00:15:20,520 --> 00:15:22,960\\na um observatório completamente operacional,\\n\\n175\\n00:15:22,960 --> 00:15:27,600\\ne a uma parceria científica verdadeiramente global.\\n\\n176\\n00:15:36,750 --> 00:15:40,730\\nNa serena e solitária beleza do deserto do Atacama no Chile,\\n\\n177\\n00:15:40,730 --> 00:15:43,220\\no ALMA está pronto para o futuro.\\n\\n178\\n00:15:43,830 --> 00:15:46,440\\nAo utilizar este maravilhoso telescópio,\\n\\n179\\n00:15:46,440 --> 00:15:49,440\\nos astrónomos irão olhar profundamente\\n\\n180\\n00:15:49,440 --> 00:15:52,600\\nnos segredos escondidos do cosmos.\\n\\n181\\n00:15:53,040 --> 00:15:58,160\\nEm busca das nossas próprias origens cósmicas!\\n\\n182\\n00:16:03,680 --> 00:16:09,720\\nALMA\\n\\n183\\n00:16:18,240 --> 00:16:22,840\\nA todos aquelas cuja curiosidade leva a fazer as grandes perguntas\\n\\n184\\n00:16:23,480 --> 00:16:28,930\\nTranscrição por ESO; tradução por Paula Santos',\n", + " 'bytes': 15446,\n", + " 'sha1': 'i7sdskqflpbqlb7ozcwauwjr5ynvf5l',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92553942,\n", + " 'timestamp': '2013-03-14T09:35:01Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25113940,\n", + " 'title': 'ESOcast 51 All Systems Go for Highest Altitude Supercomputer.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,000 --> 00:00:07,000 One of the most powerful supercomputers in the world 2 00:00:07,000 --> 00:00:11,000 has now been fully installed and tested ...'\",\n", + " 'text': '1\\n00:00:03,000 --> 00:00:07,000\\nOne of the most powerful supercomputers in the world\\n\\n2\\n00:00:07,000 --> 00:00:11,000\\nhas now been fully installed and tested \\n\\n3\\n00:00:11,000 --> 00:00:14,000\\nat its remote, high altitude site\\n\\n4\\n00:00:14,000 --> 00:00:16,000\\nin the Andes of northern Chile.\\n\\n5\\n00:00:17,000 --> 00:00:21,000\\nThis marks one of the major remaining milestones\\n\\n6\\n00:00:21,000 --> 00:00:23,000\\ntoward completion of ALMA,\\n\\n7\\n00:00:23,000 --> 00:00:28,000\\nthe Atacama Large Millimeter/submillimeter Array.\\n\\n8\\n00:00:29,000 --> 00:00:32,000\\nThe ALMA correlator turns ALMA\\'s\\n\\n9\\n00:00:32,000 --> 00:00:37,000\\nmany antennas into one giant telescope.\\n\\n10\\n00:00:42,000 --> 00:00:44,000\\nThis is the ESOcast!\\n\\n11\\n00:00:44,000 --> 00:00:48,000\\nCutting-edge science and life behind the scenes\\n\\n12\\n00:00:48,000 --> 00:00:52,000\\nat ESO, the European Southern Observatory.\\n\\n13\\n00:01:01,000 --> 00:01:06,000\\nALMA is the most elaborate ground-based telescope in history\\n\\n14\\n00:01:06,000 --> 00:01:11,000\\nand is composed of an array of 66 dish-shaped antennas.\\n\\n15\\n00:01:12,000 --> 00:01:15,000\\nIts supercomputer, or correlator,\\n\\n16\\n00:01:15,000 --> 00:01:18,000\\nis a component of crucial importance.\\n\\n17\\n00:01:19,000 --> 00:01:22,000\\nFor ALMA to work, the faint celestial signals\\n\\n18\\n00:01:22,000 --> 00:01:26,000\\ncollected by each antenna must be combined \\n\\n19\\n00:01:26,000 --> 00:01:28,000\\nwith those from every other antenna.\\n\\n20\\n00:01:30,000 --> 00:01:34,000\\nThe correlator\\'s processors will continually combine and compare\\n\\n21\\n00:01:34,000 --> 00:01:38,000\\nthe data from up to 64 of the antennas in the ALMA array,\\n\\n22\\n00:01:38,000 --> 00:01:42,000\\nwhich are separated by up to 16 kilometres,\\n\\n23\\n00:01:42,000 --> 00:01:46,000\\nenabling the antennas to work together\\n\\n24\\n00:01:46,000 --> 00:01:49,000\\nas a single, enormous, telescope.\\n\\n25\\n00:01:50,000 --> 00:01:53,000\\nThe ALMA correlator has over\\n\\n26\\n00:01:53,000 --> 00:01:59,000\\n134 million processors, and performs up to an unbelievable \\n\\n27\\n00:01:59,000 --> 00:02:03,000\\n17 quadrillion operations per second.\\n\\n28\\n00:02:03,000 --> 00:02:08,000\\nThat is 17 thousand million million!\\n\\n29\\n00:02:10,000 --> 00:02:14,000\\nThe correlator was built specifically for this task,\\n\\n30\\n00:02:14,000 --> 00:02:18,000\\nbut the number of calculations per second is comparable\\n\\n31\\n00:02:18,000 --> 00:02:21,000\\nto the performance of the fastest general-purpose\\n\\n32\\n00:02:21,000 --> 00:02:24,000\\nsupercomputers in the world.\\n\\n33\\n00:02:25,000 --> 00:02:29,000\\nThis unique processing challenge needed innovative design,\\n\\n34\\n00:02:29,000 --> 00:02:33,000\\nboth for the individual components and for the overall\\n\\n35\\n00:02:33,000 --> 00:02:36,000\\narchitecture of the correlator.\\n\\n36\\n00:02:38,000 --> 00:02:41,000\\nThe initial design of the correlator,\\n\\n37\\n00:02:41,000 --> 00:02:44,000\\nas well as its construction and installation,\\n\\n38\\n00:02:44,000 --> 00:02:48,000\\nwas led by the US National Radio Astronomy Observatory,\\n\\n39\\n00:02:48,000 --> 00:02:52,000\\nthe lead North American partner in ALMA.\\n\\n40\\n00:02:53,000 --> 00:02:57,000\\nThe correlator project was funded by the US National Science Foundation,\\n\\n41\\n00:02:57,000 --> 00:03:01,000\\nwith contributions from ESO.\\n\\n42\\n00:03:01,000 --> 00:03:05,000\\nAs the European partner in ALMA, ESO\\n\\n43\\n00:03:05,000 --> 00:03:08,000\\nalso provided a key part of the correlator:\\n\\n44\\n00:03:08,000 --> 00:03:13,000\\nan entirely new and versatile digital filtering system,\\n\\n45\\n00:03:13,000 --> 00:03:15,000\\nconceived and built in Europe,\\n\\n46\\n00:03:15,000 --> 00:03:20,000\\nwas incorporated into the initial NRAO design.\\n\\n47\\n00:03:22,000 --> 00:03:26,000\\nThe University of Bordeaux designed and built a set\\n\\n48\\n00:03:26,000 --> 00:03:32,000\\nof 550 state-of-the-art digital filter circuit boards for ESO.\\n\\n49\\n00:03:32,000 --> 00:03:36,000\\nWith these filters, the light that ALMA sees\\n\\n50\\n00:03:36,000 --> 00:03:39,000\\ncan be split up into 32 times more wavelength ranges\\n\\n51\\n00:03:39,000 --> 00:03:42,000\\nthan in the initial design,\\n\\n52\\n00:03:42,000 --> 00:03:48,000\\nallowing astronomers to flexibly \"slice and dice\" the spectrum of light.\\n\\n53\\n00:03:50,000 --> 00:03:55,000\\nAs well as enormous technical challenges in building the correlator,\\n\\n54\\n00:03:55,000 --> 00:04:00,000\\nthe extreme location of the system was also a factor.\\n\\n55\\n00:04:01,000 --> 00:04:03,000\\nThe correlator is housed in the ALMA\\n\\n56\\n00:04:03,000 --> 00:04:06,000\\nArray Operations Site Technical Building,\\n\\n57\\n00:04:06,000 --> 00:04:10,000\\nthe highest-altitude high-tech building in the world.\\n\\n58\\n00:04:11,000 --> 00:04:16,000\\nAt 5000 metres altitude, the air is thin, meaning that\\n\\n59\\n00:04:16,000 --> 00:04:21,000\\ntwice the normal airflow is necessary to cool the supercomputer.\\n\\n60\\n00:04:23,000 --> 00:04:28,000\\nThe thin air also makes it impossible to use spinning computer disk drives,\\n\\n61\\n00:04:28,000 --> 00:04:31,000\\nas their read/write heads rely on\\n\\n62\\n00:04:31,000 --> 00:04:36,000\\na cushion of air to stop them crashing into their platters.\\n\\n63\\n00:04:36,000 --> 00:04:40,000\\nFurthermore, the correlator had to be designed to withstand\\n\\n64\\n00:04:40,000 --> 00:04:44,000\\nearthquakes, which are common in this region.\\n\\n65\\n00:04:46,000 --> 00:04:49,000\\nALMA began science observations in 2011\\n\\n66\\n00:04:49,000 --> 00:04:52,000\\nwith a partial array of antennas.\\n\\n67\\n00:04:53,000 --> 00:04:56,000\\nA section of the correlator was already in use\\n\\n68\\n00:04:56,000 --> 00:04:59,000\\nto combine the signals from these antennas,\\n\\n69\\n00:04:59,000 --> 00:05:02,000\\nbut now the full system is complete,\\n\\n70\\n00:05:02,000 --> 00:05:08,000\\nready for ALMA to begin observations with a larger number of antennas.\\n\\n71\\n00:05:12,000 --> 00:05:15,000\\nThe successful installation of the new supercomputer\\n\\n72\\n00:05:15,000 --> 00:05:21,000\\nmarks an important step toward the completion of ALMA in the near future.\\n\\n73\\n00:05:23,000 --> 00:05:27,000\\nBy using the array\\'s unparalleled observational power,\\n\\n74\\n00:05:27,000 --> 00:05:34,000\\nscientists will gain new insights into the hidden wonders of the Universe.\\n\\n75\\n00:05:41,000 --> 00:05:45,000\\nESOcast is produced by ESO, the European Southern Observatory www.eso.org\\n\\n76\\n00:05:45,000 --> 00:05:49,000\\nESO, the European Southern Observatory, is the pre-eminent intergovernmental science and technology organisation in astronomy,\\n\\n77\\n00:05:49,000 --> 00:05:52,000\\ndesigning, constructing and operating the world’s most advanced ground-based telescopes.\\n\\n78\\n00:05:55,000 --> 00:05:59,000\\nTranscription by ESO ; translation by —',\n", + " 'bytes': 6494,\n", + " 'sha1': 'cr073fxsg84odrico5hlj0p4yykd8u1',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92553985,\n", + " 'timestamp': '2013-03-14T09:35:46Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25113965,\n", + " 'title': 'ESOcast 51 All Systems Go for Highest Altitude Supercomputer.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,000 --> 00:00:07,000 Un des plus puissants super-ordinateurs au monde 2 00:00:07,000 --> 00:00:11,000 est maintenant installé et complètement test...'\",\n", + " 'text': '1\\n00:00:03,000 --> 00:00:07,000\\nUn des plus puissants super-ordinateurs au monde\\n\\n2\\n00:00:07,000 --> 00:00:11,000\\nest maintenant installé et complètement testé\\n\\n3\\n00:00:11,000 --> 00:00:14,000\\ndans un endroit isolé à très haute altitude\\n\\n4\\n00:00:14,000 --> 00:00:16,000\\ndans les Andes, au nord du Chili.\\n\\n5\\n00:00:17,000 --> 00:00:21,000\\nCeci constitue une des dernières étapes majeures\\n\\n6\\n00:00:21,000 --> 00:00:23,000\\nde la finalisation de ALMA,\\n\\n7\\n00:00:23,000 --> 00:00:28,000\\nou Atacama Large Millimeter/submillimeter Array.\\n\\n8\\n00:00:29,000 --> 00:00:32,000\\nLe corrélateur de ALMA transforme ses\\n\\n9\\n00:00:32,000 --> 00:00:37,000\\nnombreuses antennes en un télescope géant.\\n\\n10\\n00:00:42,000 --> 00:00:44,000\\nVoici l\\'ESOcast !\\n\\n11\\n00:00:44,000 --> 00:00:48,000\\nLa science et la vie quotidienne à l\\'ESO,\\n\\n12\\n00:00:48,000 --> 00:00:52,000\\nl\\'Observatoire européen austral.\\n\\n13\\n00:01:01,000 --> 00:01:06,000\\nALMA est le télescope terrestre le plus élaboré jamais conçu.\\n\\n14\\n00:01:06,000 --> 00:01:11,000\\nIl est composé d\\'un réseau de 66 antennes circulaires.\\n\\n15\\n00:01:12,000 --> 00:01:15,000\\nSon super-ordinateur, ou corrélateur,\\n\\n16\\n00:01:15,000 --> 00:01:18,000\\nest un composant d\\'une importance capitale.\\n\\n17\\n00:01:19,000 --> 00:01:22,000\\nPour qu\\'ALMA fonctionne, les faibles signaux célestes\\n\\n18\\n00:01:22,000 --> 00:01:26,000\\ncaptés par chaque antenne doivent être combinés\\n\\n19\\n00:01:26,000 --> 00:01:28,000\\navec ceux de toutes les autres antennes.\\n\\n20\\n00:01:30,000 --> 00:01:34,000\\nLes processeurs du corrélateur combinent et comparent en permanence\\n\\n21\\n00:01:34,000 --> 00:01:38,000\\nles données de 64 des antennes du réseau ALMA,\\n\\n22\\n00:01:38,000 --> 00:01:42,000\\nqui peuvent être distantes de 16 kilomètres,\\n\\n23\\n00:01:42,000 --> 00:01:46,000\\npermettant aux antennes de fonctionner ensemble\\n\\n24\\n00:01:46,000 --> 00:01:49,000\\ncomme un seul énorme télescope.\\n\\n25\\n00:01:50,000 --> 00:01:53,000\\nLe corrélateur de ALMA possède plus de\\n\\n26\\n00:01:53,000 --> 00:01:59,000\\n134 millions de processeurs, et exécute jusqu\\'au nombre incroyable\\n\\n27\\n00:01:59,000 --> 00:02:03,000\\nde 17 quadrillions d\\'opérations par seconde.\\n\\n28\\n00:02:03,000 --> 00:02:08,000\\nCela représente 17 mille millions de millions !\\n\\n29\\n00:02:10,000 --> 00:02:14,000\\nLe corrélateur a été construit spécialement pour cette tâche,\\n\\n30\\n00:02:14,000 --> 00:02:18,000\\nmais le nombre de calculs par seconde est comparable\\n\\n31\\n00:02:18,000 --> 00:02:21,000\\nà la performance des plus rapides super-ordinateurs\\n\\n32\\n00:02:21,000 --> 00:02:24,000\\ndu monde.\\n\\n33\\n00:02:25,000 --> 00:02:29,000\\nCe défi informatique unique a nécessité un design innovant,\\n\\n34\\n00:02:29,000 --> 00:02:33,000\\nà la fois pour les composants individuels et pour \\n\\n35\\n00:02:33,000 --> 00:02:36,000\\nl\\'architecture globale du corrélateur.\\n\\n36\\n00:02:38,000 --> 00:02:41,000\\nLa conception initiale du corrélateur,\\n\\n37\\n00:02:41,000 --> 00:02:44,000\\nainsi que sa construction et son installation,\\n\\n38\\n00:02:44,000 --> 00:02:48,000\\nont été menées par le National Radio Astronomy Observatory des États-Unis,\\n\\n39\\n00:02:48,000 --> 00:02:52,000\\nle principal partenaire nord-américain de ALMA.\\n\\n40\\n00:02:53,000 --> 00:02:57,000\\nLe projet a été financé par la National Science Foundation américaine,\\n\\n41\\n00:02:57,000 --> 00:03:01,000\\navec des contributions de l\\'ESO.\\n\\n42\\n00:03:01,000 --> 00:03:05,000\\nEn tant que partenaire européen de ALMA, l\\'ESO\\n\\n43\\n00:03:05,000 --> 00:03:08,000\\na aussi fourni un composant-clé du corrélateur :\\n\\n44\\n00:03:08,000 --> 00:03:13,000\\nun système entièrement nouveau et multi-usages de filtrage digital,\\n\\n45\\n00:03:13,000 --> 00:03:15,000\\nconçu et fabriqué en Europe,\\n\\n46\\n00:03:15,000 --> 00:03:20,000\\na été incorporé au design original du NRAO.\\n\\n47\\n00:03:22,000 --> 00:03:26,000\\nL\\'Université de Bordeaux a conçu et construit un ensemble\\n\\n48\\n00:03:26,000 --> 00:03:32,000\\nde 550 cartes électroniques de filtrage digital dernier cri pour l\\'ESO.\\n\\n49\\n00:03:32,000 --> 00:03:36,000\\nAvec ces filtres, la lumière que voit ALMA\\n\\n50\\n00:03:36,000 --> 00:03:39,000\\npeut être divisée en 32 fois plus de longueurs d\\'onde\\n\\n51\\n00:03:39,000 --> 00:03:42,000\\nque dans le design d\\'origine,\\n\\n52\\n00:03:42,000 --> 00:03:48,000\\npermettant aux astronomes de \"découper\" le spectre de lumière de manière très flexible.\\n\\n53\\n00:03:50,000 --> 00:03:55,000\\nSi la construction du corrélateur présentait d\\'énormes défis techniques,\\n\\n54\\n00:03:55,000 --> 00:04:00,000\\nle lieu extrême de son installation a aussi dû être pris en compte.\\n\\n55\\n00:04:01,000 --> 00:04:03,000\\nLe corrélateur est situé dans le bâtiment technique\\n\\n56\\n00:04:03,000 --> 00:04:06,000\\ndu site opérationnel du réseau de ALMA,\\n\\n57\\n00:04:06,000 --> 00:04:10,000\\nle bâtiment high-tech le plus haut du monde.\\n\\n58\\n00:04:11,000 --> 00:04:16,000\\nÀ 5000 mètres d\\'altitude, l\\'air est raréfié, ce qui signifie\\n\\n59\\n00:04:16,000 --> 00:04:21,000\\nqu\\'il faut faire circuler deux fois plus d\\'air pour refroidir le super-ordinateur.\\n\\n60\\n00:04:23,000 --> 00:04:28,000\\nL\\'air raréfié rend impossible l\\'utilisation de disques durs rotatifs,\\n\\n61\\n00:04:28,000 --> 00:04:31,000\\ncar leurs têtes de lecture/écriture ont besoin\\n\\n62\\n00:04:31,000 --> 00:04:36,000\\nd\\'un coussin d\\'air pour les empêcher de se fracasser contre les plateaux.\\n\\n63\\n00:04:36,000 --> 00:04:40,000\\nDe plus, le corrélateur doit pouvoir résister aux\\n\\n64\\n00:04:40,000 --> 00:04:44,000\\ntremblements de terre, communs dans cette région.\\n\\n65\\n00:04:46,000 --> 00:04:49,000\\nLes observations scientifiques de ALMA ont commencé en 2011\\n\\n66\\n00:04:49,000 --> 00:04:52,000\\navec un réseau partiel d\\'antennes.\\n\\n67\\n00:04:53,000 --> 00:04:56,000\\nUne partie du corrélateur était déjà en fonctionnement\\n\\n68\\n00:04:56,000 --> 00:04:59,000\\npour combiner les signaux de ces antennes,\\n\\n69\\n00:04:59,000 --> 00:05:02,000\\nmais désormais le système complet est prêt,\\n\\n70\\n00:05:02,000 --> 00:05:08,000\\npour que ALMA commence ses observations avec un nombre d\\'antennes plus important.\\n\\n71\\n00:05:12,000 --> 00:05:15,000\\nL\\'installation réussie du nouveau super-ordinateur\\n\\n72\\n00:05:15,000 --> 00:05:21,000\\nmarque une étape importante vers la finalisation de ALMA dans un futur proche.\\n\\n73\\n00:05:23,000 --> 00:05:27,000\\nEn utilisant la puissance d\\'observation inégalée du réseau d\\'antennes, \\n\\n74\\n00:05:27,000 --> 00:05:34,000\\nles scientifiques pourront lever le voile sur les merveilles cachées de l\\'Univers.\\n\\n75\\n00:05:41,000 --> 00:05:45,000\\nL\\'ESOcast est produit par l\\'ESO, l\\'Observatoire européen austral.\\n\\n76\\n00:05:45,000 --> 00:05:49,000\\nL\\'ESO, l\\'Observatoire européen austral, est la principale organisation intergouvernementale scientifique et technologique d\\'astronomie en Europe.\\n\\n77\\n00:05:49,000 --> 00:05:52,000\\nElle conçoit, construit et opère les télescopes terrestres les plus avancés au monde.\\n\\n78\\n00:05:55,000 --> 00:05:59,000\\nTranscription : ESO ; traduction : Stéphane Marteau',\n", + " 'bytes': 6908,\n", + " 'sha1': '26x0dtvhzfu459gig71410car4vqvjj',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92554007,\n", + " 'timestamp': '2013-03-14T09:36:20Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25113976,\n", + " 'title': 'ESOcast 51 All Systems Go for Highest Altitude Supercomputer.ogv.is.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,000 --> 00:00:07,000 Ein öflugasta ofurtölva heims 2 00:00:07,000 --> 00:00:11,000 hefur verið sett upp og prófuð 3 00:00:11,000 --> 00:00:14,...'\",\n", + " 'text': '1\\n00:00:03,000 --> 00:00:07,000\\nEin öflugasta ofurtölva heims\\n\\n2\\n00:00:07,000 --> 00:00:11,000\\nhefur verið sett upp og prófuð\\n\\n3\\n00:00:11,000 --> 00:00:14,000\\ná afskekktum stað, hátt yfir sjávarmáli\\n\\n4\\n00:00:14,000 --> 00:00:16,000\\ní Andesfjöllunum í norðurhluta Chile.\\n\\n5\\n00:00:17,000 --> 00:00:21,000\\nUppsetningin er mikilvægur áfangi í átt til þes\\n\\n6\\n00:00:21,000 --> 00:00:23,000\\nað ljúka smíði ALMA,\\n\\n7\\n00:00:23,000 --> 00:00:28,000\\nAtacama Large Millimeter/submillimeter Array.\\n\\n8\\n00:00:29,000 --> 00:00:32,000\\nALMA ofurtölvan breytir loftnetum\\n\\n9\\n00:00:32,000 --> 00:00:37,000\\nALMA í einn risasjónauka.\\n\\n10\\n00:00:42,000 --> 00:00:44,000\\nÞetta er ESOcast!\\n\\n11\\n00:00:44,000 --> 00:00:48,000\\nVísindi í fremstu röð og lífið á bak við tjöldin\\n\\n12\\n00:00:48,000 --> 00:00:52,000\\nhjá ESO, Stjörnustöð Evrópulanda á suðurhveli.\\n\\n13\\n00:01:01,000 --> 00:01:06,000\\nALMA er ein flóknasta stjörnustöð heims frá upphafi\\n\\n14\\n00:01:06,000 --> 00:01:11,000\\nog samanstendur af röð 66 loftneta.\\n\\n15\\n00:01:12,000 --> 00:01:15,000\\nOfurtölva sjónaukans, eða fylgnisían,\\n\\n16\\n00:01:15,000 --> 00:01:18,000\\ner mjög mikilvægur hluti hans.\\n\\n17\\n00:01:19,000 --> 00:01:22,000\\nTil að ALMA virki, verður að sameina\\n\\n18\\n00:01:22,000 --> 00:01:26,000\\nmerkin sem hvert loftnet nemur utan úr geimnum\\n\\n19\\n00:01:26,000 --> 00:01:28,000\\nvið merki allra hinna loftnetanna.\\n\\n20\\n00:01:30,000 --> 00:01:34,000\\nOfurtölvan sameinar að lokum og ber stöðugt saman\\n\\n21\\n00:01:34,000 --> 00:01:38,000\\ngögn frá allt að 64 af loftnetum ALMA raðarinnar,\\n\\n22\\n00:01:38,000 --> 00:01:42,000\\nsem allt að 16 kílómetra skilja í sundur,\\n\\n23\\n00:01:42,000 --> 00:01:46,000\\nog gerir loftnetunum kleift að vinna saman\\n\\n24\\n00:01:46,000 --> 00:01:49,000\\nsem einn risavaxinn sjónauki.\\n\\n25\\n00:01:50,000 --> 00:01:53,000\\nALMA ofurtölvan hefur meira en\\n\\n26\\n00:01:53,000 --> 00:01:59,000\\n134 milljónir örgjörva og gerir, þótt ótrúlegt megi virðar,\\n\\n27\\n00:01:59,000 --> 00:02:03,000\\n17 billjarða útreikninga á sekúndu.\\n\\n28\\n00:02:03,000 --> 00:02:08,000\\nÞað er 17 þúsund milljón milljón!\\n\\n29\\n00:02:10,000 --> 00:02:14,000\\nTölvan var smíðuð sérstaklega til þessa verks\\n\\n30\\n00:02:14,000 --> 00:02:18,000\\nen fjöldi útreikninga á sekúndu er sambærilegur við\\n\\n31\\n00:02:18,000 --> 00:02:21,000\\ngetu hröðustu almennu\\n\\n32\\n00:02:21,000 --> 00:02:24,000\\nofurtölva í heiminum.\\n\\n33\\n00:02:25,000 --> 00:02:29,000\\nÞessi einstaka reiknigeta krafðist frumlegrar hönnunar,\\n\\n34\\n00:02:29,000 --> 00:02:33,000\\nbæði fyrir staka hluta og heildaruppbyggingu\\n\\n35\\n00:02:33,000 --> 00:02:36,000\\nofurtölvunnar.\\n\\n36\\n00:02:38,000 --> 00:02:41,000\\nUpphafleg hönnun tölvunnar,\\n\\n37\\n00:02:41,000 --> 00:02:44,000\\nsem og smíði hennar og uppsetning,\\n\\n38\\n00:02:44,000 --> 00:02:48,000\\nvar í höndun National Radio Astronomy Observatory í Bandaríkjunum,\\n\\n39\\n00:02:48,000 --> 00:02:52,000\\nnorður-ameríska þátttakandans í ALMA.\\n\\n40\\n00:02:53,000 --> 00:02:57,000\\nNational Science Foundation í Bandaríkjunum fjármagnaði ofurtölvuna\\n\\n41\\n00:02:57,000 --> 00:03:01,000\\nauk þess sem ESO lagði sín lóð á vogarskálarnar.\\n\\n42\\n00:03:01,000 --> 00:03:05,000\\nESO, sem evrópski þátttakandinn í ALMA,\\n\\n43\\n00:03:05,000 --> 00:03:08,000\\nlagði einnig til lykilhluti í tölvuna:\\n\\n44\\n00:03:08,000 --> 00:03:13,000\\nGlænýtt og fjölhæft stafrænt síukerfi,\\n\\n45\\n00:03:13,000 --> 00:03:15,000\\nsem fundið var upp og búið til í Evrópu,\\n\\n46\\n00:03:15,000 --> 00:03:20,000\\nvar sett inn í upphaflegu hönnun NRAO.\\n\\n47\\n00:03:22,000 --> 00:03:26,000\\nBordeauxháskóli hannaði og smíðaði kerfi\\n\\n48\\n00:03:26,000 --> 00:03:32,000\\n550 fyrsta flokks stafrænna rafrásarsía fyrir ESO.\\n\\n49\\n00:03:32,000 --> 00:03:36,000\\nMeð þessum síum er hægt að kljúfa ljósið\\n\\n50\\n00:03:36,000 --> 00:03:39,000\\nsem ALMA sér í 32 sinnum fleiri tíðnisvið\\n\\n51\\n00:03:39,000 --> 00:03:42,000\\nen í upprunalegu hönnuninni,\\n\\n52\\n00:03:42,000 --> 00:03:48,000\\nsem gerir stjörnufræðingum kleift að grannskoða litróf ljóssins.\\n\\n53\\n00:03:50,000 --> 00:03:55,000\\nFyrir utan tæknilegar áskoranir við smíði tölvunnar\\n\\n54\\n00:03:55,000 --> 00:04:00,000\\nvar harðneskjuleg staðsetning kerfisins önnur hindrun.\\n\\n55\\n00:04:01,000 --> 00:04:03,000\\nOfurtölvan er hýst í tæknibyggingu\\n\\n56\\n00:04:03,000 --> 00:04:06,000\\nstjórnstöðvar ALMA,\\n\\n57\\n00:04:06,000 --> 00:04:10,000\\nhálægustu hátæknibyggingu heims.\\n\\n58\\n00:04:11,000 --> 00:04:16,000\\nÍ 5.000 metra hæð er loftið þunnt sem þýðir\\n\\n59\\n00:04:16,000 --> 00:04:21,000\\nað tvöfalt meira loftflæði en venjulega þarf til að kæla ofurtölvuna.\\n\\n60\\n00:04:23,000 --> 00:04:28,000\\nÞunna loftið útilokar líka notkun diskadrifa sem snúast,\\n\\n61\\n00:04:28,000 --> 00:04:31,000\\nþví höfuð skrifarans og lesarans krefst\\n\\n62\\n00:04:31,000 --> 00:04:36,000\\nloftpúða til að koma í veg fyrir að þeir rekist á plöturnar.\\n\\n63\\n00:04:36,000 --> 00:04:40,000\\nÞað sem meira er þarf ofurtölvan að standast jarðskjálfta\\n\\n64\\n00:04:40,000 --> 00:04:44,000\\nsem eru algengir á þessu svæði.\\n\\n65\\n00:04:46,000 --> 00:04:49,000\\nALMA hóf rannsóknir árið 2011\\n\\n66\\n00:04:49,000 --> 00:04:52,000\\nmeð hluta loftnetanna.\\n\\n67\\n00:04:53,000 --> 00:04:56,000\\nHluti ofurtölvunnar var þá þegar í notkun\\n\\n68\\n00:04:56,000 --> 00:04:59,000\\nog sameinaði merkin frá þessum loftnetum\\n\\n69\\n00:04:59,000 --> 00:05:02,000\\nen kerfið er nú tilbúið\\n\\n70\\n00:05:02,000 --> 00:05:08,000\\ntil þess að ALMA hefji rannsóknir með fleiri loftnetum.\\n\\n71\\n00:05:12,000 --> 00:05:15,000\\nVelheppnuð uppsetning nýju ofurtölvunnar\\n\\n72\\n00:05:15,000 --> 00:05:21,000\\ner mikilvægt skref í átt til þess að ljúka smíði ALMA í nátinni framtíð.\\n\\n73\\n00:05:23,000 --> 00:05:27,000\\nMeð óviðjafnanlegri greinigetu raðarinnar\\n\\n74\\n00:05:27,000 --> 00:05:34,000\\nmunu stjörnufræðingar öðlast nýja innsýn í hulin undur alheimsins.\\n\\n75\\n00:05:41,000 --> 00:05:45,000\\nESOcast er framleitt af ESO, Stjörnustöð Evrópulanda á suðurhveli www.eso.org\\n\\n76\\n00:05:45,000 --> 00:05:49,000\\nESO, Stjörnustöð Evrópulanda á suðurhveli, eru fremstu fjölþjóðlegu vísinda- og tæknisamtök í stjörnufræði\\n\\n77\\n00:05:49,000 --> 00:05:52,000\\nsem hannar, smíðar og starfrækir öflugustu stjörnusjónauka heims.\\n\\n78\\n00:05:55,000 --> 00:05:59,000\\nHandrit ESO; þýðing: Sævar Helgi Bragason',\n", + " 'bytes': 6357,\n", + " 'sha1': '4xy9i7qkf1uzx3382zx0ulvf25yhfpp',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92554022,\n", + " 'timestamp': '2013-03-14T09:36:41Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25113986,\n", + " 'title': 'ESOcast 51 All Systems Go for Highest Altitude Supercomputer.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,000 --> 00:00:07,000 Uno dei supercomputer più potenti al mondo 2 00:00:07,000 --> 00:00:11,000 è stato installato e testato 3 00:00:11,000 --> 0...'\",\n", + " 'text': '1\\n00:00:03,000 --> 00:00:07,000\\nUno dei supercomputer più potenti al mondo\\n\\n2\\n00:00:07,000 --> 00:00:11,000\\nè stato installato e testato\\n\\n3\\n00:00:11,000 --> 00:00:14,000\\nsul sito remoto e ad alta quota\\n\\n4\\n00:00:14,000 --> 00:00:16,000\\nsulle Ande del Cile settentrionale.\\n\\n5\\n00:00:17,000 --> 00:00:21,000\\nQuesto segna uno dei grandi traguardi\\n\\n6\\n00:00:21,000 --> 00:00:23,000\\nal completamento dell\\'ALMA,\\n\\n7\\n00:00:23,000 --> 00:00:28,000\\nl\\'Atacama Large Millimeter / submillimeter Array.\\n\\n8\\n00:00:29,000 --> 00:00:32,000\\nIl correlatore di ALMA trasforma\\n\\n9\\n00:00:32,000 --> 00:00:37,000\\nle molte antenne in un unico telescopio gigante.\\n\\n10\\n00:00:42,000 --> 00:00:44,000\\nSiete su ESOcast! \\n\\n11\\n00:00:44,000 --> 00:00:48,000\\nScienza all\\'avanguardia e vita dietro le quinte nell\\'ESO,\\n\\n12\\n00:00:48,000 --> 00:00:52,000\\nl\\'Osservatorio Europeo Australe,\\n\\n13\\n00:01:01,000 --> 00:01:06,000\\nALMA è il telescopio con base a terra più elaborato della storia\\n\\n14\\n00:01:06,000 --> 00:01:11,000\\ned è comporsto da una schiera di 66 antenne\\n\\n15\\n00:01:12,000 --> 00:01:15,000\\nIl supercomputer, o correlatore,\\n\\n16\\n00:01:15,000 --> 00:01:18,000\\nè un componente di fondamentale importanza.\\n\\n17\\n00:01:19,000 --> 00:01:22,000\\nPer permettere il funzionamento dell\\'ALMA, i deboli segnali celesti\\n\\n18\\n00:01:22,000 --> 00:01:26,000\\nraccolti da ciascuna antenna deve essere combinati\\n\\n19\\n00:01:26,000 --> 00:01:28,000\\ncon quelli di ogni altra antenna.\\n\\n20\\n00:01:30,000 --> 00:01:34,000\\nI processori del correlatore combineranno e confronteranno continuamente\\n\\n21\\n00:01:34,000 --> 00:01:38,000\\ni dati di fino a 64 delle antenne della schiera ALMA,\\n\\n22\\n00:01:38,000 --> 00:01:42,000\\nseparate da un massimo di 16 kilometri,\\n\\n23\\n00:01:42,000 --> 00:01:46,000\\nconsentendo alle antenne di lavorare insieme\\n\\n24\\n00:01:46,000 --> 00:01:49,000\\ncome un unico, enorme, telescopio.\\n\\n25\\n00:01:50,000 --> 00:01:53,000\\nIl correlatore di ALMA ha più di\\n\\n26\\n00:01:53,000 --> 00:01:59,000\\n134 milioni di processori, ed esegue fino ad un incredibile numero \\n\\n27\\n00:01:59,000 --> 00:02:03,000\\ndi 17 quadrilioni di operazioni al secondo\\n\\n28\\n00:02:03,000 --> 00:02:08,000\\nQuindi 17 mila milioni di milioni!\\n\\n29\\n00:02:10,000 --> 00:02:14,000\\nIl correlatore è stato costruito appositamente per questo compito,\\n\\n30\\n00:02:14,000 --> 00:02:18,000\\nma il numero di calcoli al secondo è paragonabile\\n\\n31\\n00:02:18,000 --> 00:02:21,000\\nalle performance del più veloce\\n\\n32\\n00:02:21,000 --> 00:02:24,000\\nsupercomputer per impieghi generali del mondo.\\n\\n33\\n00:02:25,000 --> 00:02:29,000\\nQuesta sfida di elaborazione unica necessita un design innovativo,\\n\\n34\\n00:02:29,000 --> 00:02:33,000\\nsia per i singoli componenti che per la complessiva\\n\\n35\\n00:02:33,000 --> 00:02:36,000\\narchitettura del correlatore.\\n\\n36\\n00:02:38,000 --> 00:02:41,000\\nIl progetto iniziale del correlatore,\\n\\n37\\n00:02:41,000 --> 00:02:44,000\\ncosì come la sua costruzione ed installazione,\\n\\n38\\n00:02:44,000 --> 00:02:48,000\\nsono stati condotti dall\\'US National Radio Astronomy Observatory,\\n\\n39\\n00:02:48,000 --> 00:02:52,000\\nIl principale partner Nordamericano al progetto ALMA\\n\\n40\\n00:02:53,000 --> 00:02:57,000\\nIl progetto del correlatore è stato finanziato dalla National Science Foundation,\\n\\n41\\n00:02:57,000 --> 00:03:01,000\\ncon il contributo ESO.\\n\\n42\\n00:03:01,000 --> 00:03:05,000\\nIn qualità di partner europeo al progetto ALMA, l\\'ESO\\n\\n43\\n00:03:05,000 --> 00:03:08,000\\nha anche fornito una parte fondamentale del correlatore:\\n\\n44\\n00:03:08,000 --> 00:03:13,000\\nun sistema di filtraggio digitale versatile e completamente nuovo,\\n\\n45\\n00:03:13,000 --> 00:03:15,000\\nconcepito e costruito in Europa,\\n\\n46\\n00:03:15,000 --> 00:03:20,000\\nè stato incorporato nel progetto iniziale NRAO.\\n\\n47\\n00:03:22,000 --> 00:03:26,000\\nL\\'Università di Bordeaux ha progettato e costruito un set\\n\\n48\\n00:03:26,000 --> 00:03:32,000\\ndi 550 filtri digitali d\\'avanguardia.\\n\\n49\\n00:03:32,000 --> 00:03:36,000\\nCon questi filtri, la luce catturata da ALMA\\n\\n50\\n00:03:36,000 --> 00:03:39,000\\npuò essere suddivisa in 32 lunghezze d\\'onda in più\\n\\n51\\n00:03:39,000 --> 00:03:42,000\\nrispetto al progetto iniziale,\\n\\n52\\n00:03:42,000 --> 00:03:48,000\\npermettendo agli astronomi di \"fare a dadini\" lo spettro della luce.\\n\\n53\\n00:03:50,000 --> 00:03:55,000\\nOltre alle enormi sfide tecniche nella costruzione del correlatore,\\n\\n54\\n00:03:55,000 --> 00:04:00,000\\nla posizione estrema del sistema causava problemi.\\n\\n55\\n00:04:01,000 --> 00:04:03,000\\nIl correlatore è alloggiato \\n\\n56\\n00:04:03,000 --> 00:04:06,000\\nNel sito di costruzione dell\\'ALMA\\n\\n57\\n00:04:06,000 --> 00:04:10,000\\nl\\'edificio high-tech più ad alta quota del mondo.\\n\\n58\\n00:04:11,000 --> 00:04:16,000\\nA 5000 metri di altitudine, l\\'aria è sottile, il che significa che\\n\\n59\\n00:04:16,000 --> 00:04:21,000\\nper raffreddare il supercomputer è necessaria il doppio della corrente d\\'aria\\n\\n60\\n00:04:23,000 --> 00:04:28,000\\nL\\'aria sottile rende anche impossibile l\\'utilizzo di dischi girevoli per i computer\\n\\n61\\n00:04:28,000 --> 00:04:31,000\\ncome la loro lettura e scrittura si basa\\n\\n62\\n00:04:31,000 --> 00:04:36,000\\nsu un cuscinetto d\\'aria per tenerli in posizione.\\n\\n63\\n00:04:36,000 --> 00:04:40,000\\nInoltre, il correlatore doveva essere progettato per resistere\\n\\n64\\n00:04:40,000 --> 00:04:44,000\\nai terremoti, fenomeni comuni in questa regione.\\n\\n65\\n00:04:46,000 --> 00:04:49,000\\nL\\'ALMA ha iniziato a produrre osservazione scientifiche nel 2011\\n\\n66\\n00:04:49,000 --> 00:04:52,000\\ncon una schiera di antenne ancora parziale.\\n\\n67\\n00:04:53,000 --> 00:04:56,000\\nUna sezione del correlatore era già in uso\\n\\n68\\n00:04:56,000 --> 00:04:59,000\\nper combinare i segnali da queste antenne,\\n\\n69\\n00:04:59,000 --> 00:05:02,000\\nma ora l\\'intero sistema è completo,\\n\\n70\\n00:05:02,000 --> 00:05:08,000\\npronto per le osservazione ALMA con un numero maggiore di antenne.\\n\\n71\\n00:05:12,000 --> 00:05:15,000\\nLa corretta installazione del nuovo supercomputer\\n\\n72\\n00:05:15,000 --> 00:05:21,000\\nsegna un passo importante verso il completamento di ALMA in un prossimo futuro.\\n\\n73\\n00:05:23,000 --> 00:05:27,000\\nUsando l\\'impareggiabile potere di osservazione della schiera\\n\\n74\\n00:05:27,000 --> 00:05:34,000\\ngli scienziati aquisiranno nuove conoscenze sulle meraviglie nascoste dell\\'Universo\\n\\n75\\n00:05:41,000 --> 00:05:45,000\\nESOcast è prodotto da ESO, l\\'European Southern Observatory www.eso.org\\n\\n76\\n00:05:45,000 --> 00:05:49,000\\nESO - European Southern Observatory - è la principale organizzazione intergovernativa per la scienza e la tecnologia astronomica\\n\\n77\\n00:05:49,000 --> 00:05:52,000\\ne progetta, costruisce e gestisce gli osservatori astronomici più avanzati del mondo.\\n\\n78\\n00:05:55,000 --> 00:05:59,000\\nTrascrizione da ESO, traduzione di Laura Ghiretti',\n", + " 'bytes': 6661,\n", + " 'sha1': 'oq45qmyti6menfgcp88izrl35w4194w',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92554070,\n", + " 'timestamp': '2013-03-14T09:37:31Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25114017,\n", + " 'title': 'ESOcast 51 All Systems Go for Highest Altitude Supercomputer.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,000 --> 00:00:07,000 Uno de los supercomputadores más poderosos del mundo 2 00:00:07,000 --> 00:00:11,000 ha sido instalado y probado completamente...'\",\n", + " 'text': '1\\n00:00:03,000 --> 00:00:07,000\\nUno de los supercomputadores más poderosos del mundo\\n\\n2\\n00:00:07,000 --> 00:00:11,000\\nha sido instalado y probado completamente\\n\\n3\\n00:00:11,000 --> 00:00:14,000\\nen su remoto sitio de gran altitud\\n\\n4\\n00:00:14,000 --> 00:00:16,000\\nen los Andes del norte de Chile.\\n\\n5\\n00:00:17,000 --> 00:00:21,000\\nEsto marca uno de los importantes hitos restantes\\n\\n6\\n00:00:21,000 --> 00:00:23,000\\nhacia la terminación de ALMA.\\n\\n7\\n00:00:23,000 --> 00:00:28,000\\nel Atacama Large Millimeter/submillimeter Array.\\n\\n8\\n00:00:29,000 --> 00:00:32,000\\nEl correlacionador de ALMA convierte\\n\\n9\\n00:00:32,000 --> 00:00:37,000\\nlas muchas antenas de ALMA en un telescopio gigante.\\n\\n10\\n00:00:42,000 --> 00:00:44,000\\n¡Este es el ESOcast!\\n\\n11\\n00:00:44,000 --> 00:00:48,000\\nCiencia de vanguardia y vida cotidiana\\n\\n12\\n00:00:48,000 --> 00:00:52,000\\nen ESO, el Observatorio Europeo Austral.\\n\\n13\\n00:01:01,000 --> 00:01:06,000\\nALMA es el telescopio basado en tierra más complejo de la historia\\n\\n14\\n00:01:06,000 --> 00:01:11,000\\ny está compuesto de un conjunto de 66 antenas con forma de plato.\\n\\n15\\n00:01:12,000 --> 00:01:15,000\\nSu supercomputador, o correlacionador,\\n\\n16\\n00:01:15,000 --> 00:01:18,000\\nes un componente de crucial importancia.\\n\\n17\\n00:01:19,000 --> 00:01:22,000\\nPara que ALMA funcione, las débiles señales celestes\\n\\n18\\n00:01:22,000 --> 00:01:26,000\\nrecolectadas por cada antena deben ser combinadas\\n\\n19\\n00:01:26,000 --> 00:01:28,000\\ncon las señales de las otras antenas.\\n\\n20\\n00:01:30,000 --> 00:01:34,000\\nLos procesadores del correlacionador combinarán y compararán continuamente\\n\\n21\\n00:01:34,000 --> 00:01:38,000\\nlos datos de hasta 64 de las antenas en el conjunto ALMA,\\n\\n22\\n00:01:38,000 --> 00:01:42,000\\nque están separadas por hasta 16 kilómetros,\\n\\n23\\n00:01:42,000 --> 00:01:46,000\\npermitiendo a las antenas trabajar juntas\\n\\n24\\n00:01:46,000 --> 00:01:49,000\\ncomo un único y enorme telescopio.\\n\\n25\\n00:01:50,000 --> 00:01:53,000\\nEl correlacionador de ALMA tiene más de\\n\\n26\\n00:01:53,000 --> 00:01:59,000\\n134 millones de procesadores, y realiza hasta unos increíbles\\n\\n27\\n00:01:59,000 --> 00:02:03,000\\n17 mil billones de operaciones por segundo.\\n\\n28\\n00:02:03,000 --> 00:02:08,000\\n¡Esto es 17 mil millones de millones!\\n\\n29\\n00:02:10,000 --> 00:02:14,000\\nEl correlacionador fue construido específicamente para esta tarea,\\n\\n30\\n00:02:14,000 --> 00:02:18,000\\npero la cantidad de cálculos por segundo es comparable\\n\\n31\\n00:02:18,000 --> 00:02:21,000\\nal desempeño de los supercomputadores de propósito general\\n\\n32\\n00:02:21,000 --> 00:02:24,000\\nmás rápidos del mundo.\\n\\n33\\n00:02:25,000 --> 00:02:29,000\\nEste desafío único de procesamiento necesitó un diseño innovador,\\n\\n34\\n00:02:29,000 --> 00:02:33,000\\ntanto para los componentes individuales como para la arquitectura\\n\\n35\\n00:02:33,000 --> 00:02:36,000\\ncompleta del correlacionador.\\n\\n36\\n00:02:38,000 --> 00:02:41,000\\nEl diseño inicial del correlacionador,\\n\\n37\\n00:02:41,000 --> 00:02:44,000\\nasí como su construcción e instalación,\\n\\n38\\n00:02:44,000 --> 00:02:48,000\\nfue dirigido por al Observatorio de Radio Astronomía Nacional de Estados Unidos,\\n\\n39\\n00:02:48,000 --> 00:02:52,000\\nel principal socio norteamericano de ALMA.\\n\\n40\\n00:02:53,000 --> 00:02:57,000\\nEl proyecto del correlacionador fue financiado por la Fundación Nacional de Ciencia de Estados Unidos,\\n\\n41\\n00:02:57,000 --> 00:03:01,000\\ncon colaboración de ESO.\\n\\n42\\n00:03:01,000 --> 00:03:05,000\\nComo el socio europeo de ALMA, ESO\\n\\n43\\n00:03:05,000 --> 00:03:08,000\\ntambién proporcionó una pieza clave del correlacionador,\\n\\n44\\n00:03:08,000 --> 00:03:13,000\\nun sistema de filtrado digital completamente nuevo y versátil,\\n\\n45\\n00:03:13,000 --> 00:03:15,000\\nconcebido y construido en Europa,\\n\\n46\\n00:03:15,000 --> 00:03:20,000\\nfue incorporado en el diseño inicial de NRAO.\\n\\n47\\n00:03:22,000 --> 00:03:26,000\\nLa Universidad de Burdeos diseñó y construyó un conjunto\\n\\n48\\n00:03:26,000 --> 00:03:32,000\\nde 550 placas de circuitos de filtros digitales de última generación para ESO.\\n\\n49\\n00:03:32,000 --> 00:03:36,000\\nCon estos filtros, la luz que ALMA ve\\n\\n50\\n00:03:36,000 --> 00:03:39,000\\npuede ser dividida en 32 veces más rangos de longitud de onda\\n\\n51\\n00:03:39,000 --> 00:03:42,000\\nque en el diseño original,\\n\\n52\\n00:03:42,000 --> 00:03:48,000\\npermitiendo a los astrónomos \"dividir\" de manera flexible el espectro de luz.\\n\\n53\\n00:03:50,000 --> 00:03:55,000\\nAdemás de los enormes desafíos técnicos de construir el correlacionador,\\n\\n54\\n00:03:55,000 --> 00:04:00,000\\nla ubicación extrema del sistema también fue un factor.\\n\\n55\\n00:04:01,000 --> 00:04:03,000\\nEl correlacionador se encuentra en\\n\\n56\\n00:04:03,000 --> 00:04:06,000\\nel Edificio Técnico del Sitio de Operaciones del Conjunto,\\n\\n57\\n00:04:06,000 --> 00:04:10,000\\nel edificio de alta tecnología de mayor altitud en el mundo.\\n\\n58\\n00:04:11,000 --> 00:04:16,000\\nA 5.000 metros de altitud, el aire es menos denso, lo que significa que\\n\\n59\\n00:04:16,000 --> 00:04:21,000\\nes necesario el doble del flujo normal de aire para enfriar el supercomputador.\\n\\n60\\n00:04:23,000 --> 00:04:28,000\\nEl aire menos denso también hace imposible usar unidades de disco de rotación,\\n\\n61\\n00:04:28,000 --> 00:04:31,000\\nya que sus cabezas de lectura/escritura descansan en\\n\\n62\\n00:04:31,000 --> 00:04:36,000\\nuna almohadilla de aire para evitar que golpeen sus bandejas.\\n\\n63\\n00:04:36,000 --> 00:04:40,000\\nAdemás, el correlacionador tenía que ser diseñado para resistir\\n\\n64\\n00:04:40,000 --> 00:04:44,000\\nsismos, que son comunes en esta región.\\n\\n65\\n00:04:46,000 --> 00:04:49,000\\nALMA comenzó sus observaciones científicas en 2011\\n\\n66\\n00:04:49,000 --> 00:04:52,000\\ncon un conjunto parcial de antenas.\\n\\n67\\n00:04:53,000 --> 00:04:56,000\\nUna sección del correlacionador ya estaba en uso\\n\\n68\\n00:04:56,000 --> 00:04:59,000\\npara combinar la señales de esas antenas,\\n\\n69\\n00:04:59,000 --> 00:05:02,000\\npero ahora el sistema completo está terminado,\\n\\n70\\n00:05:02,000 --> 00:05:08,000\\nlisto para que ALMA comience las observaciones con una cantidad mayor de antenas.\\n\\n71\\n00:05:12,000 --> 00:05:15,000\\nLa instalación exitosa del nuevo supercomputador\\n\\n72\\n00:05:15,000 --> 00:05:21,000\\nmarca un paso importante hacia la terminación de ALMA en el futuro cercano.\\n\\n73\\n00:05:23,000 --> 00:05:27,000\\nMediante el uso del inigualable poder observacional del conjunto,\\n\\n74\\n00:05:27,000 --> 00:05:34,000\\nlos científicos obtendrán nuevos conocimientos sobre las maravillas ocultas del Universo.\\n\\n75\\n00:05:41,000 --> 00:05:45,000\\nESOcast es producido por ESO, el Observatorio Europeo Austral www.eso.org\\n\\n76\\n00:05:45,000 --> 00:05:49,000\\nESO, el Observatorio Europeo Austral, es la principal organización intergubernamental de ciencia y tecnología en astronomía,\\n\\n77\\n00:05:49,000 --> 00:05:52,000\\nenfocada al diseño, construcción y operación de los telescopios terrestres más avanzados del mundo.\\n\\n78\\n00:05:55,000 --> 00:05:59,000\\nTranscripción por ESO; traducción por Felipe Campos.',\n", + " 'bytes': 6940,\n", + " 'sha1': 'il4wi5z58tw6ldeesfjtaxt740eqjw9',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92554113,\n", + " 'timestamp': '2013-03-14T09:38:02Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25114048,\n", + " 'title': 'ESOcast 51 All Systems Go for Highest Altitude Supercomputer.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,000 --> 00:00:07,000 Um dos supercomputadores mais poderosos do mundo 2 00:00:07,000 --> 00:00:11,000 está agora completamente instalado e testado ...'\",\n", + " 'text': '1\\n00:00:03,000 --> 00:00:07,000\\nUm dos supercomputadores mais poderosos do mundo\\n\\n2\\n00:00:07,000 --> 00:00:11,000\\nestá agora completamente instalado e testado\\n\\n3\\n00:00:11,000 --> 00:00:14,000\\nem um lugar remoto de grandes altitudes\\n\\n4\\n00:00:14,000 --> 00:00:16,000\\nnos Andes, ao Norte do Chile\\n\\n5\\n00:00:17,000 --> 00:00:21,000\\nIsto sinaliza um dos maiores marcos restantes\\n\\n6\\n00:00:21,000 --> 00:00:23,000\\nem direção à finalização do ALMA,\\n\\n7\\n00:00:23,000 --> 00:00:28,000\\no Atacama Large Millimeter/submillimeter Array. \\n\\n8\\n00:00:29,000 --> 00:00:32,000\\nO CORRELATOR do alma transforma\\n\\n9\\n00:00:32,000 --> 00:00:37,000\\nsuas muitas antenas em um telescópio gigante\\n\\n10\\n00:00:42,000 --> 00:00:44,000\\nEste é o ESOcast!\\n\\n11\\n00:00:44,000 --> 00:00:48,000\\nCiência de ponta e a vida por trás das câmeras\\n\\n12\\n00:00:48,000 --> 00:00:52,000\\nNo ESO, o Observatório Europeu do Sul\\n\\n13\\n00:01:01,000 --> 00:01:06,000\\nO ALMA é o telescópio terrestre mais elaborado da história\\n\\n14\\n00:01:06,000 --> 00:01:11,000\\ne é composto de uma pletora de 66 antenas em forma de prato\\n\\n15\\n00:01:12,000 --> 00:01:15,000\\nSeu supercomputador, ou CORRELATOR,\\n\\n16\\n00:01:15,000 --> 00:01:18,000\\né um componente de extrema importância.\\n\\n17\\n00:01:19,000 --> 00:01:22,000\\nPara o trabalho do ALMA, os mais fracos sinais celestiais\\n\\n18\\n00:01:22,000 --> 00:01:26,000\\ncoletados por cada antena devem ser combinados\\n\\n19\\n00:01:26,000 --> 00:01:28,000\\ncom aqueles de cada uma das outras antenas.\\n\\n20\\n00:01:30,000 --> 00:01:34,000\\nOs processadores do CORRELATOR vão então combinar e comparar continuamente\\n\\n21\\n00:01:34,000 --> 00:01:38,000\\nos dados de até 64 das antenas do ALMA\\n\\n22\\n00:01:38,000 --> 00:01:42,000\\nque estão separadas umas das outras por até 16 quilômetros \\n\\n23\\n00:01:42,000 --> 00:01:46,000\\npossibilitando as antenas trabalhar juntas\\n\\n24\\n00:01:46,000 --> 00:01:49,000\\ncomo um único e enorme telescópio\\n\\n25\\n00:01:50,000 --> 00:01:53,000\\no CORRELATOR do ALMA tem cerca de \\n\\n26\\n00:01:53,000 --> 00:01:59,000\\n134 milhões de processadores, e trabalha até incríveis\\n\\n27\\n00:01:59,000 --> 00:02:03,000\\n17 quadrilhões de operações por segundo. \\n\\n28\\n00:02:03,000 --> 00:02:08,000\\nIsto são 17 mil milhões de milhões!\\n\\n29\\n00:02:10,000 --> 00:02:14,000\\nO CORRELATOR foi construído especificamente para esta tarefa,\\n\\n30\\n00:02:14,000 --> 00:02:18,000\\nmas o número de cálculos por segundo é comparável\\n\\n31\\n00:02:18,000 --> 00:02:21,000\\nà performance dos mais rápidos\\n\\n32\\n00:02:21,000 --> 00:02:24,000\\nsupercomputadores de uso geral do mundo. \\n\\n33\\n00:02:25,000 --> 00:02:29,000\\nEste desafio único de processamento precisou de um projeto inovador,\\n\\n34\\n00:02:29,000 --> 00:02:33,000\\ntanto para os componentes individuais quanto para o conjunto\\n\\n35\\n00:02:33,000 --> 00:02:36,000\\nda arquitetura do CORRELATOR. \\n\\n36\\n00:02:38,000 --> 00:02:41,000\\nTanto o projeto inicial do CORRELATOR,\\n\\n37\\n00:02:41,000 --> 00:02:44,000\\nquanto sua construção e instalação,\\n\\n38\\n00:02:44,000 --> 00:02:48,000\\nforam liderados pelo Observatório Nacional de Radioastronomia Norte-Americano,\\n\\n39\\n00:02:48,000 --> 00:02:52,000\\no maior parceiro norte-americano do ALMA. \\n\\n40\\n00:02:53,000 --> 00:02:57,000\\nO projeto do CORRELATOR foi financiado pela Fundação Nacional de Ciência dos Estados Unidos,\\n\\n41\\n00:02:57,000 --> 00:03:01,000\\ncom contribuições do ESO. \\n\\n42\\n00:03:01,000 --> 00:03:05,000\\nComo o parceiro europeu do ALMA, o ESO\\n\\n43\\n00:03:05,000 --> 00:03:08,000\\ntambém providenciou uma parte crucial do CORRELATOR: \\n\\n44\\n00:03:08,000 --> 00:03:13,000\\num sistema de filtragem digital completamente novo e versátil,\\n\\n45\\n00:03:13,000 --> 00:03:15,000\\nconcebido e construído na Europa,\\n\\n46\\n00:03:15,000 --> 00:03:20,000\\nque foi incorporado ao projeto inicial do Observatório de Radioastronomia americano. \\n\\n47\\n00:03:22,000 --> 00:03:26,000\\nA Universidade de Bordeaux desenhou e construiu um conjunto\\n\\n48\\n00:03:26,000 --> 00:03:32,000\\nde 550 placas de circuito de filtros digitais com tecnologia de ponta para o ESO.\\n\\n49\\n00:03:32,000 --> 00:03:36,000\\nCom estes filtros, a luz que o ALMA vê\\n\\n50\\n00:03:36,000 --> 00:03:39,000\\npode ser dividida em até 32 vezes mais variações de comprimentos de onda\\n\\n51\\n00:03:39,000 --> 00:03:42,000\\ndo que no projeto inicial,\\n\\n52\\n00:03:42,000 --> 00:03:48,000\\npermitindo aos astrônomos mais flexibilidade para \"fatiar e cortar\\' o espectro da luz.\\n\\n53\\n00:03:50,000 --> 00:03:55,000\\nAssim como os enormes desafios técnicos em se construir o CORRELATOR, \\n\\n54\\n00:03:55,000 --> 00:04:00,000\\na localização extrema do sistema também foi um fator. \\n\\n55\\n00:04:01,000 --> 00:04:03,000\\nO CORRELATOR está abrigado \\n\\n56\\n00:04:03,000 --> 00:04:06,000\\nno Prédio de Operações Técnicas do ALMA,\\n\\n57\\n00:04:06,000 --> 00:04:10,000\\no lugar mais alto do mundo a abrigar um prédio de alta tecnologia.\\n\\n58\\n00:04:11,000 --> 00:04:16,000\\nA 5000 metros de altitude, o ar é rarefeito, o que significa que\\n\\n59\\n00:04:16,000 --> 00:04:21,000\\né necessária uma corrente de ar duas vezes mais forte que o normal para desaquecer o supercomputador\\n\\n60\\n00:04:23,000 --> 00:04:28,000\\nO ar fino também torna impossível o uso de drives giratórios de computador,\\n\\n61\\n00:04:28,000 --> 00:04:31,000\\nporque suas cabeças de leitura e escrita dependem de \\n\\n62\\n00:04:31,000 --> 00:04:36,000\\numa camada de ar que impede que se choquem com suas placas. \\n\\n63\\n00:04:36,000 --> 00:04:40,000\\nAlém do mais, o CORRELATOR teve de ser projetado para suportar\\n\\n64\\n00:04:40,000 --> 00:04:44,000\\nterremotos, que são comuns nesta região. \\n\\n65\\n00:04:46,000 --> 00:04:49,000\\nO ALMA começou suas observações científicas em 2011\\n\\n66\\n00:04:49,000 --> 00:04:52,000\\ncom um diâmetro parcial de antenas. \\n\\n67\\n00:04:53,000 --> 00:04:56,000\\nUma seção do CORRELATOR já estava em uso\\n\\n68\\n00:04:56,000 --> 00:04:59,000\\npara combinar os sinais dessas antenas,\\n\\n69\\n00:04:59,000 --> 00:05:02,000\\nmas agora o sistema inteiro está completo,\\n\\n70\\n00:05:02,000 --> 00:05:08,000\\npronto para o ALMA começar suas observações com um maior número de antenas. \\n\\n71\\n00:05:12,000 --> 00:05:15,000\\nA instalação bem-sucedida do novo supercomputador\\n\\n72\\n00:05:15,000 --> 00:05:21,000\\nmarcam um passo importante em direção à finalização do ALMA em um futuro próximo. \\n\\n73\\n00:05:23,000 --> 00:05:27,000\\nAtravés do uso de um poder observacional sem paralelos,\\n\\n74\\n00:05:27,000 --> 00:05:34,000\\ncientistas vão ganhar novas impressões sobre as maravilhas escondidas do Universo. \\n\\n75\\n00:05:41,000 --> 00:05:45,000\\no ESOcast é produzido pelo ESO, o Observatório Europeu do Sul www.eso.org\\n\\n76\\n00:05:45,000 --> 00:05:49,000\\no ESO, o Observatório Europeu do Sul, é uma proeminente organização intergovenamental de ciência e tecnologia em astronomia,\\n\\n77\\n00:05:49,000 --> 00:05:52,000\\nque projeta, constrói e opera os telescópios terrestres mais avançados do mundo.\\n\\n78\\n00:05:55,000 --> 00:05:59,000\\nTranscrição por ESO; tradução de Meghie Rodrigues',\n", + " 'bytes': 6920,\n", + " 'sha1': 'c9cqdblryiz4loesceh2naxwxk0wian',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92554140,\n", + " 'timestamp': '2013-03-14T09:38:45Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25114064,\n", + " 'title': 'ESOcast 51 All Systems Go for Highest Altitude Supercomputer.ogv.tr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,000 --> 00:00:07,000 Dünyanın en güçlü süper bilgisayarlarından bir tanesi 2 00:00:07,000 --> 00:00:11,000 Kuzey Şili'nin Andları'nda, 3 0...'\",\n", + " 'text': \"1\\n00:00:03,000 --> 00:00:07,000\\nDünyanın en güçlü süper bilgisayarlarından bir tanesi\\n\\n2\\n00:00:07,000 --> 00:00:11,000\\nKuzey Şili'nin Andları'nda,\\n\\n3\\n00:00:11,000 --> 00:00:14,000\\nuzak ve yüksek rakımlı tepelerinde, şu anda\\n\\n4\\n00:00:14,000 --> 00:00:16,000\\nkurulmuş ve test edilmiş bir halde bulunmaktadır.\\n\\n5\\n00:00:17,000 --> 00:00:21,000\\nBu, ALMA`nın, Atacama Büyük Milimetre ve Milimetre-altı Dizgesi'nin\\n\\n6\\n00:00:21,000 --> 00:00:23,000\\ntamamlanması yolunda geri kalan\\n\\n7\\n00:00:23,000 --> 00:00:28,000\\nen önemli aşamalardan bir tanesidir.\\n\\n8\\n00:00:29,000 --> 00:00:32,000\\nALMA bağdaştırıcısı, ALMA`nın çok sayıdaki antenlerini\\n\\n9\\n00:00:32,000 --> 00:00:37,000\\ntek bir dev teleskop haline getirir.\\n\\n10\\n00:00:42,000 --> 00:00:44,000\\nBu bir ESOcast yayınıdır!\\n\\n11\\n00:00:44,000 --> 00:00:48,000\\nEn son teknoloji ürünü bilim ve ESO'nun perde arkasındaki hayatı.\\n\\n12\\n00:00:48,000 --> 00:00:52,000\\nAvrupa Güney Gözlemevi.\\n\\n13\\n00:01:01,000 --> 00:01:06,000\\nALMA, tarihteki en donanımlı yer-tabanlı teleskop olup,\\n\\n14\\n00:01:06,000 --> 00:01:11,000\\n66 adet çanak anten dizgesinden oluşmuştur.\\n\\n15\\n00:01:12,000 --> 00:01:15,000\\nSüperbilgisayarı ya da bağdaştırıcısı\\n\\n16\\n00:01:15,000 --> 00:01:18,000\\nhayati öneme sahip bir cihazdır.\\n\\n17\\n00:01:19,000 --> 00:01:22,000\\nALMA'nın çalışması için her bir antenden toplanan\\n\\n18\\n00:01:22,000 --> 00:01:26,000\\nzayıf kozmik sinyaller, diğer her bir antenden gelen\\n\\n19\\n00:01:26,000 --> 00:01:28,000\\nsinyaller ile birleştirilmelidir.\\n\\n20\\n00:01:30,000 --> 00:01:34,000\\nBağdaştırıcının işlemcileri sürekli bir şekilde,\\n\\n21\\n00:01:34,000 --> 00:01:38,000\\nbirbirinden en fazla 16 km. mesafe ile ayrılmıs, ALMA dizgesindeki\\n\\n22\\n00:01:38,000 --> 00:01:42,000\\n64 kadar antenden gelen bilgiyi biraraya getirecek ve karşılaştıracak,\\n\\n23\\n00:01:42,000 --> 00:01:46,000\\nve antenlerin birlikte tek bir büyük teleskop gibi\\n\\n24\\n00:01:46,000 --> 00:01:49,000\\nçalışmalarını sağlayacak.\\n\\n25\\n00:01:50,000 --> 00:01:53,000\\nALMA bağdaştırıcıları,\\n\\n26\\n00:01:53,000 --> 00:01:59,000\\n134 milyon işlemci üzerine kuruludur ve\\n\\n27\\n00:01:59,000 --> 00:02:03,000\\ninanılmaz bir sayı olan 17 katrilyon işlem gerçekleştirir.\\n\\n28\\n00:02:03,000 --> 00:02:08,000\\nBu 17 000 milyon milyon demek!\\n\\n29\\n00:02:10,000 --> 00:02:14,000\\nBağdaştırıcı özel olarak bu görev için tasarlanmıştır,\\n\\n30\\n00:02:14,000 --> 00:02:18,000\\nfakat, saniyedeki hesaplamaların sayısı,\\n\\n31\\n00:02:18,000 --> 00:02:21,000\\ndünyadaki en hızlı genel amaçli süper bilgisayarların\\n\\n32\\n00:02:21,000 --> 00:02:24,000\\nperformanslarıyla başa baş gider.\\n\\n33\\n00:02:25,000 --> 00:02:29,000\\nBu eşsiz işlem zorluğunun hem tek tek bileşenler için\\n\\n34\\n00:02:29,000 --> 00:02:33,000\\nhem de bağdaştırıcının tamamının imarı için\\n\\n35\\n00:02:33,000 --> 00:02:36,000\\nyaratıcı bir dizayna ihtiyacı vardı.\\n\\n36\\n00:02:38,000 --> 00:02:41,000\\nBağdaştırıcının başlangıç dizaynı,\\n\\n37\\n00:02:41,000 --> 00:02:44,000\\nimalatı ve montajı dahil,\\n\\n38\\n00:02:44,000 --> 00:02:48,000\\nALMA`nın önde gelen Kuzey Amerikalı ortaği,\\n\\n39\\n00:02:48,000 --> 00:02:52,000\\nABD Ulusal Radyo Astronomi Gözlemevi tarafından yürütüldü.\\n\\n40\\n00:02:53,000 --> 00:02:57,000\\nBağdaştırıcı projesi mali olarak, ESO`nun da katkıları ile, ABD Ulusal Bilim Kurumu\\n\\n41\\n00:02:57,000 --> 00:03:01,000\\ntarafından desteklendi.\\n\\n42\\n00:03:01,000 --> 00:03:05,000\\nALMA`nın Avrupalı ortağı olarak ESO,\\n\\n43\\n00:03:05,000 --> 00:03:08,000\\naynı zamanda bağdaştırıcının çok önemli bir kısmını sağladı:\\n\\n44\\n00:03:08,000 --> 00:03:13,000\\nAvrupa`da tasarlanıp yapılan, tamamen yeni ve\\n\\n45\\n00:03:13,000 --> 00:03:15,000\\nçok amaçlı bir filtreleme sistemi\\n\\n46\\n00:03:15,000 --> 00:03:20,000\\nbaşlangıçtaki NRAO dizaynına katıldı.\\n\\n47\\n00:03:22,000 --> 00:03:26,000\\nBordeaux Üniversitesi, ESO için, 550 adet\\n\\n48\\n00:03:26,000 --> 00:03:32,000\\ngelişmiş dijital bir filtre devre elemanından oluşan seti tasarlayıp yaptı.\\n\\n49\\n00:03:32,000 --> 00:03:36,000\\nBu filtreler ile, ALMA'nın gördüğü ışık\\n\\n50\\n00:03:36,000 --> 00:03:39,000\\nbaşlangıçtaki dizaydan 32 kat daha fazla ara dalgaboyu\\n\\n51\\n00:03:39,000 --> 00:03:42,000\\nskalasına bölünebilecek.\\n\\n52\\n00:03:42,000 --> 00:03:48,000\\nböylece gökbilimciler, ışığın tayfını rahatça bölüp inceleyebilecek.\\n\\n53\\n00:03:50,000 --> 00:03:55,000\\nBağdaştırıcının yapımında karşılaşılan büyük teknik zorlukların yanısıra,\\n\\n54\\n00:03:55,000 --> 00:04:00,000\\nsistemin kurulduğu olağandışı yerleşke bir diğer unsurdu.\\n\\n55\\n00:04:01,000 --> 00:04:03,000\\nBağdaştırıcı, ALMA Dizge İşlemleri Mevkisi Teknik Binası'na,\\n\\n56\\n00:04:03,000 --> 00:04:06,000\\ndünyadaki en yüksek rakım\\n\\n57\\n00:04:06,000 --> 00:04:10,000\\nileri teknoloji binasına yerleştirildi.\\n\\n58\\n00:04:11,000 --> 00:04:16,000\\n5000 metre yükseklikte, hava incedir, yani\\n\\n59\\n00:04:16,000 --> 00:04:21,000\\nsüper bilgisayari soğutmak için iki kat hava akımı gerekir.\\n\\n60\\n00:04:23,000 --> 00:04:28,000\\nİnce hava, ayrıca, bilgisayar disk sürücülerinin dönmesini imkansız hale getirir.\\n\\n61\\n00:04:28,000 --> 00:04:31,000\\nçünkü oku/yaz başlıkları\\n\\n62\\n00:04:31,000 --> 00:04:36,000\\nplaklarıyla çarpışmayı engellemek için bir hava minderine dayanırlar.\\n\\n63\\n00:04:36,000 --> 00:04:40,000\\nDahası, bağdaştırıcı, bu bölgede sıkça meydana gelen\\n\\n64\\n00:04:40,000 --> 00:04:44,000\\ndepremlere dayanıklı olmak zorundaydı.\\n\\n65\\n00:04:46,000 --> 00:04:49,000\\nALMA, anten dizgelerinin bir kısmıyla bilimsel gözlemlerine\\n\\n66\\n00:04:49,000 --> 00:04:52,000\\n2011 yılında başladı.\\n\\n67\\n00:04:53,000 --> 00:04:56,000\\nbağdaştırıcıların bir bölümü bu antenlerden gelen\\n\\n68\\n00:04:56,000 --> 00:04:59,000\\nsinyalleri birleştirmek için zaten kullanımdaydı.\\n\\n69\\n00:04:59,000 --> 00:05:02,000\\nfakat, sistem herşeyiyle şimdi tamamlandı,\\n\\n70\\n00:05:02,000 --> 00:05:08,000\\nve çok sayıdaki antenleri ile ALMA için gözlemlere başlamaya hazır durumda.\\n\\n71\\n00:05:12,000 --> 00:05:15,000\\nYeni süper bilgisayarların başarılı bir şekilde kurulumu\\n\\n72\\n00:05:15,000 --> 00:05:21,000\\nyakın gelecekte ALMA`nın tamamlanması yönündeki önemli bir adımı işaret eder.\\n\\n73\\n00:05:23,000 --> 00:05:27,000\\nDizgelerin paralel olmayan gözlemsel gücünü kullanarak,\\n\\n74\\n00:05:27,000 --> 00:05:34,000\\nbilim insanları Evrenin gizli harikalarına yeni anlamlar kazandıracaklar.\\n\\n75\\n00:05:41,000 --> 00:05:45,000\\nESOcast ESO, Avrupa Güney Gözlemevi tarafından yayınlanmaktadır.\\n\\n76\\n00:05:45,000 --> 00:05:49,000\\nESO, Avrupa Güney Gözlemevi, astronomi alanındaki seçkin hükümetlerarası bilim ve teknoloji organizasyonu olarak...\\n\\n77\\n00:05:49,000 --> 00:05:52,000\\ndünyanın en gelişmiş yer tabanlı teleskoplarını tasarlayan, inşa eden ve işleten bir kuruluştur.\\n\\n78\\n00:05:55,000 --> 00:05:59,000\\nUyarlama: ESO; Çeviri: Fahri Öztürk (JBCA, Manchester / ESON Türkiye Ekibi)\",\n", + " 'bytes': 6943,\n", + " 'sha1': 'snl4py9qdch2oylm4jar1i21n296puj',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92554240,\n", + " 'timestamp': '2013-03-14T09:40:04Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25114118,\n", + " 'title': 'The movie ALMA — In Search of our Cosmic Origins.ogv.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:05,000 --> 00:00:14,000 ALMA 2 00:00:15,000 --> 00:00:26,000 Αναζητώντας τις Κοσμικές μας Καταβολές 3 00:00:36,500 -...'\",\n", + " 'text': \"1\\n00:00:05,000 --> 00:00:14,000\\nALMA\\n\\n2\\n00:00:15,000 --> 00:00:26,000\\nΑναζητώντας τις Κοσμικές μας Καταβολές\\n\\n3\\n00:00:36,500 --> 00:00:42,000\\nΨηλά στο απομονωμένο υψίπεδο του Τσαχναντόρ στις Χιλιανές Άνδεις.\\n\\n4\\n00:00:43,000 --> 00:00:45,000\\nΜία από τις πιο αφιλόξενες περιοχές της Γης.\\n\\n5\\n00:00:45,500 --> 00:00:47,040\\nΑνάμεσα σε ηφαίστεια ...\\n\\n6\\n00:00:47,459 --> 00:00:49,000\\nΈρημες εκτάσεις ...\\n\\n7\\n00:00:49,200 --> 00:00:50,690\\nΚαι ψυχρούς ανέμους ...\\n\\n8\\n00:00:51,000 --> 00:00:57,300\\nΤο ALMA - το Μεγάλο Σύμπλεγμα Χιλιοστομετρικής και Υποχιλιοστομετρικής παρατήρησης της Ατακάμα - είναι έτοιμο.\\n\\n9\\n00:01:07,000 --> 00:01:10,500\\nΑστρονόμοι και επιστήμονες απ' όλο το κόσμο\\n\\n10\\n00:01:10,500 --> 00:01:15,000\\nανέμεναν ανυπόμονα αυτή τη στιγμή για δεκαετίες.\\n\\n11\\n00:01:15,190 --> 00:01:19,430\\nΤο ALMA είναι το μεγαλύτερο αστρονομικό παρατηρητήριο στο κόσμο.\\n\\n12\\n00:01:19,430 --> 00:01:22,620\\nΌμως δεν είναι ένα συμβατικό τηλεσκόπιο.\\n\\n13\\n00:01:22,620 --> 00:01:26,640\\nΑντί να συλλέγει και να αναλύει ορατό φως\\n\\n14\\n00:01:26,640 --> 00:01:31,400\\nπαρατηρεί σε ένα διαφορετικό και εν γένει αχαρτογράφητο τμήμα του φάσματος.\\n\\n15\\n00:01:40,240 --> 00:01:43,100\\nΑνοίγοντας ένα νέο παράθυρο στο Σύμπαν,\\n\\n16\\n00:01:43,500 --> 00:01:50,760\\nτο ALMA εξερευνεί ένα από τα τελευταία σύνορα της αστρονομίας - το ψυχρό και μακρινό Σύμπαν.\\n\\n17\\n00:01:53,000 --> 00:01:58,950\\nΑναζητά απαντήσεις σε μερικά από τα δυσκολότερα ερωτήματα για τις κοσμικές μας καταβολές.\\n\\n18\\n00:01:58,950 --> 00:02:01,600\\nΠώς δημιουργούνται τα άστρα και οι πλανήτες;\\n\\n19\\n00:02:01,600 --> 00:02:04,490\\nΠώς σχηματίστηκαν οι πρώτοι γαλαξίες;\\n\\n20\\n00:02:07,000 --> 00:02:10,979\\nΤο Υψίπεδο του Τσαχναντόρ στη Βόρεια Χιλή.\\n\\n21\\n00:02:12,000 --> 00:02:17,640\\nΣτα 5000 μέτρα πάνω από την επιφάνεια της θάλασσας όπου - κυριολεκτικά !!!- σου κόβεται η ανάσα,\\n\\n22\\n00:02:17,640 --> 00:02:20,220\\nτο ALMA ωρίμασε.\\n\\n23\\n00:02:20,220 --> 00:02:23,000\\nΤα τελευταία χρόνια,\\n\\n24\\n00:02:23,000 --> 00:02:27,740\\nπερισσότερες από 50 κεραίες έχουν εγκατασταθεί στο έρημο υψίπεδο.\\n\\n25\\n00:02:29,060 --> 00:02:34,230\\nΤο ALMA είναι ένα μοναδικό, γιγάντιο τηλεσκόπιο, κοινοπραξία\\n\\n26\\n00:02:34,230 --> 00:02:39,800\\nτης Ευρώπης, της Β. Αμερικής και της Αν. Ασίας σε συνεργασία με τη Χιλή.\\n\\n27\\n00:02:41,320 --> 00:02:46,000\\nΕξήντα έξι κεραίες τεχνολογίας αιχμής, θα παρατηρούν το Σύμπαν\\n\\n28\\n00:02:46,000 --> 00:02:49,160\\nσε χιλιοστομετρικά και υποχιλιοστομετρικά μήκη κύματος\\n\\n29\\n00:02:50,500 --> 00:02:54,380\\n- χίλιες φορές μεγαλύτερα από τα ορατά μήκη κύματος.\\n\\n30\\n00:02:55,920 --> 00:02:59,220\\nΤο φως που φτάνει από μερικά από τα ψυχρότερα\\n\\n31\\n00:02:59,220 --> 00:03:02,780\\nκαι πλέον μακρινά αντικείμενα στο Σύμπαν.\\n\\n32\\n00:03:04,160 --> 00:03:06,970\\nΟι ατμοσφαιρικοί υδρατμοί αποκρύπτουν\\n\\n33\\n00:03:06,970 --> 00:03:09,480\\nαυτούς τους ασθενείς ψιθύρους από το κρυφό Σύμπαν,\\n\\n34\\n00:03:09,480 --> 00:03:15,500\\nκαι για να τους συλλέξουμε πρέπει να πάμε σε πολύ ψηλά και ξηρά μέρη\\n\\n35\\n00:03:15,500 --> 00:03:18,680\\n- όπως το Τσαχναντόρ.\\n\\n36\\n00:03:24,610 --> 00:03:26,270\\nΗ Γέννηση του ALMA\\n\\n37\\n00:03:26,720 --> 00:03:30,550\\nΤα σχέδια για το ALMA ξεκίνησαν πριν από δεκαετίες.\\n\\n38\\n00:03:31,000 --> 00:03:35,090\\nΕπιστήμονες από την Ευρώπη, τη Β. Αμερική και την Αν. Ασία\\n\\n39\\n00:03:35,090 --> 00:03:39,490\\nανέπτυξαν τρία διαφορετικά σχέδια για νέα, μεγάλα τηλεσκόπια\\n\\n40\\n00:03:39,490 --> 00:03:42,920\\nγια χιλιοστομετρικές και υποχιλιοστομετρικές παρατηρήσεις.\\n\\n41\\n00:03:43,670 --> 00:03:47,680\\nΤελικά τα τρία σχέδια συνενώθηκαν σε ένα.\\n\\n42\\n00:03:48,760 --> 00:03:53,080\\nΗ Μεγάλη Επιστήμη απαιτεί τη παγκόσμια συνεργασία.\\n\\n43\\n00:03:53,080 --> 00:03:57,920\\nΟι χώρες μπορούν μαζί να πετύχουν ότι δε μπορούν να καταφέρουν μόνες τους.\\n\\n44\\n00:03:59,360 --> 00:04:03,960\\nΤο σύνολο είναι ισχυρότερο από το άθροισμα των μελών του.\\n\\n45\\n00:04:04,290 --> 00:04:08,110\\nΤο σχέδιο ALMA γεννήθηκε!\\n\\n46\\n00:04:11,000 --> 00:04:14,760\\nΒρίσκοντας το Κατάλληλο Τόπο\\n\\n47\\n00:04:20,279 --> 00:04:22,940\\nΤο νέο τηλεσκόπιο χρειαζόταν ένα σπίτι,\\n\\n48\\n00:04:22,940 --> 00:04:26,520\\nκαι το βλέμμα στράφηκε στο Τσαχναντόρ.\\n\\n49\\n00:04:26,870 --> 00:04:31,600\\nΌλες οι αστρονομικές και μετεωρολογικές συνθήκες για αυτό,\\n\\n50\\n00:04:31,600 --> 00:04:35,720\\nδοκιμάστηκαν διεξοδικά και η ατμόσφαιρα μετρούνταν καθημερινά.\\n\\n51\\n00:04:35,840 --> 00:04:42,440\\nΤο συμπέρασμα: το Τσαχναντόρ ήταν τέλειο για το ALMA.\\n\\n52\\n00:04:46,640 --> 00:04:50,300\\nΘεμελίωση\\n\\n53\\n00:04:51,500 --> 00:04:55,910\\nΗ κατασκευή ξεκίνησε το 2003 με τη θεμελίωση\\n\\n54\\n00:04:55,910 --> 00:04:58,770\\nτου Κέντρου Λειτουργίας του Συμπλέγματος ALMA.\\n\\n55\\n00:05:06,920 --> 00:05:11,670\\nΟι συνθήκες εδώ σε υψόμετρο 5000 μέτρων πάνω από τη θάλασσα\\n\\n56\\n00:05:11,670 --> 00:05:14,620\\nείναι δύσκολες και επικίνδυνες.\\n\\n57\\n00:05:16,860 --> 00:05:19,400\\nΙσχυροί άνεμοι.\\n\\n58\\n00:05:20,420 --> 00:05:22,880\\nΧαμηλές θερμοκρασίες.\\n\\n59\\n00:05:23,680 --> 00:05:26,540\\nΈντονη υπεριώδης ακτινοβολία.\\n\\n60\\n00:05:27,040 --> 00:05:30,080\\nΚαι απελπιστικά λεπτή ατμόσφαιρα.\\n\\n61\\n00:05:30,680 --> 00:05:35,290\\nΤόσο λεπτή ώστε οι εργάτες χρειάζονταν συμπληρωματικό οξυγόνο\\n\\n62\\n00:05:35,290 --> 00:05:38,760\\nκαι εξονυχιστική ιατρική παρακολούθηση.\\n\\n63\\n00:05:41,880 --> 00:05:46,460\\nΚατασκευάζοντας τα Eργαλεία\\n\\n64\\n00:05:48,360 --> 00:05:51,440\\nΗ παραγωγή των κεραιών του ALMA κατανεμήθηκε\\n\\n65\\n00:05:51,440 --> 00:05:53,680\\nμεταξύ των τριών εταίρων του ALMA.\\n\\n66\\n00:05:55,140 --> 00:05:59,540\\nΤρία πρωτότυπα πέρασαν ελέγχους στις Εγκαταστάσεις Δοκιμών του ALMA\\n\\n67\\n00:05:59,540 --> 00:06:03,440\\nστο χώρο του Very Large Array, στις ΗΠΑ.\\n\\n68\\n00:06:05,030 --> 00:06:10,900\\nΟι 66 κεραίες στο υψίπεδο αποτελούν ένα κρίσιμο τμήμα του ALMA.\\n\\n69\\n00:06:12,240 --> 00:06:17,410\\nΟι μεγάλοι δίσκοι τους συλλέγουν τα αμυδρά χιλιοστομετρικά κύματα από το διάστημα.\\n\\n70\\n00:06:17,480 --> 00:06:21,070\\nΟι κεραίες αυτές αποτελούν πραγματικά τεχνολογία αιχμής.\\n\\n71\\n00:06:22,740 --> 00:06:28,400\\nΗ ακρίβεια κατασκευής της επιφάνειάς του είναι πολύ μικρότερη από το πάχος ενός φύλλου χαρτιού.\\n\\n72\\n00:06:30,170 --> 00:06:37,360\\nΜπορούν να μετακινούνται με τέτοια ακρίβεια ώστε να βρίσκουν ένα μπαλάκι του γκολφ σε απόσταση 15 χλμ.\\n\\n73\\n00:06:39,760 --> 00:06:45,320\\nΚαι πρέπει να επιβιώσουν, εκτεθειμένες στις καιρικές συνθήκες του Τσαχναντόρ!\\n\\n74\\n00:06:58,470 --> 00:07:03,700\\nΕικοσιπέντε κεραίες έχουν παραδοθεί από το Ευρωπαϊκό Νότιο Παρατηρητήριο,\\n\\n75\\n00:07:04,150 --> 00:07:08,220\\n25 από το Εθνικό Παρατηρητήριο Ραδιοαστρονομίας των ΗΠΑ,\\n\\n76\\n00:07:08,220 --> 00:07:13,800\\nκαι 16 από το Εθνικό Αστεροσκοπείο της Ιαπωνίας.\\n\\n77\\n00:07:20,520 --> 00:07:22,620\\nΣε μία πραγματικά παγκόσμια προσπάθεια,\\n\\n78\\n00:07:22,620 --> 00:07:27,700\\nτα στοιχεία των κεραιών κατασκευάστηκαν σε διάφορες περιοχές του κόσμου,\\n\\n79\\n00:07:27,700 --> 00:07:30,700\\nκαι απεστάλησαν στη Χιλή για συναρμολόγηση\\n\\n80\\n00:07:44,360 --> 00:07:47,780\\nκαι εν συνεχεία δοκιμάστηκαν στις Εγκαταστάσεις Υποστήριξης Λειτουργίας,\\n\\n81\\n00:07:47,780 --> 00:07:51,600\\nπροετοιμάζοντάς τις για την πρώτη ουράνια παρατήρησή τους.\\n\\n82\\n00:07:55,790 --> 00:07:58,420\\nΣυνδέοντας τις Πρώτες Κεραίες\\n\\n83\\n00:07:59,950 --> 00:08:04,930\\nΗ πρώτη κεραία του ALMA εγκαταστάθηκε και σύντομα\\n\\n84\\n00:08:04,930 --> 00:08:08,750\\nδύο κεραίες διασυνδέθηκαν με επιτυχία.\\n\\n85\\n00:08:12,120 --> 00:08:16,410\\nΟι ανιχνευτές κάθε κεραίας κατέγραψαν τις αμυδρές λεπτομέρειες\\n\\n86\\n00:08:16,410 --> 00:08:19,710\\nτων ασθενών σημάτων που συλλέχθηκαν από τους δίσκους.\\n\\n87\\n00:08:21,600 --> 00:08:25,040\\nΑυτοί οι ανιχνευτές είναι οι πιο ευαίσθητοι του είδους τους\\n\\n88\\n00:08:25,040 --> 00:08:27,520\\nκαι ψύχονται με υγρό ήλιο\\n\\n89\\n00:08:27,520 --> 00:08:31,280\\nστους τέσσερις μόλις βαθμούς πάνω από το απόλυτο μηδέν.\\n\\n90\\n00:08:34,890 --> 00:08:37,100\\nΦτάνοντας σε Νέα Ύψη\\n\\n91\\n00:08:41,470 --> 00:08:44,750\\nΗ πρώτη πλήρης κεραία φτάνει στο\\n\\n92\\n00:08:44,750 --> 00:08:46,840\\nχώρο εγκατάστασης του συμπλέγματος.\\n\\n93\\n00:08:48,160 --> 00:08:52,500\\nΔύο ειδικά οχήματα μεταφοράς - τα Όττο και Λόρε -\\n\\n94\\n00:08:52,500 --> 00:08:55,740\\nμετακινούν τις 100 τόνων κεραίες.\\n\\n95\\n00:08:56,440 --> 00:08:59,580\\nΤο Όττο ανεβαίνει προσεκτικά τον ελικοειδή δρόμο,\\n\\n96\\n00:08:59,580 --> 00:09:02,210\\nμεταφέροντας τη προηγμένη κεραία ψηλά\\n\\n97\\n00:09:02,210 --> 00:09:05,000\\nστο τελικό χώρο εγκατάστασής της στο υψίπεδο.\\n\\n98\\n00:09:06,260 --> 00:09:10,400\\nΗ πρώτη κεραία σύντομα συμπληρώθηκε με πολλές ακόμα.\\n\\n99\\n00:09:14,220 --> 00:09:16,340\\nΞεπερνώντας τις Προσδοκίες\\n\\n100\\n00:09:18,240 --> 00:09:21,550\\nΠραγματοποιήθηκαν οι πρώτες παρατηρήσεις χρησιμοποιώντας \\n\\n101\\n00:09:21,550 --> 00:09:23,900\\nσυνδυαστικά δύο και μετά τρεις κεραίες.\\n\\n102\\n00:09:24,950 --> 00:09:27,480\\nΟι κρισιμότερες δοκιμές για το σύμπλεγμα ALMA.\\n\\n103\\n00:09:28,580 --> 00:09:31,400\\nΌλες επιτυχείς και με άριστα αποτελέσματα!\\n\\n104\\n00:09:35,230 --> 00:09:38,030\\nΤα χιλιοστομετρικά και υποχιλιοστομετρικά μήκη κύματος\\n\\n105\\n00:09:38,030 --> 00:09:41,750\\nανοίγουν για τους αστρονόμους ένα μοναδικό παράθυρο στο Σύμπαν.\\n\\n106\\n00:09:42,540 --> 00:09:45,780\\nΑλλά για να παρατηρήσουμε με την ευκρίνεια που χρειάζονται οι αστρονόμοι\\n\\n107\\n00:09:45,780 --> 00:09:48,890\\nένα τηλεσκόπιο ενός δίσκου θα έπρεπε να έχει\\n\\n108\\n00:09:48,890 --> 00:09:52,890\\nδιάμετρο χιλιομέτρων (και θα ήταν αδύνατη η κατασκευή του)!\\n\\n109\\n00:09:53,200 --> 00:09:57,250\\nΑντ' αυτού, το ALMA χρησιμοποιεί 66 ξεχωριστές κεραίες\\n\\n110\\n00:09:57,250 --> 00:09:59,720\\nοι οποίες μπορούν να διασκορπιστούν στο υψίπεδο\\n\\n111\\n00:09:59,720 --> 00:10:03,700\\nσε αποστάσεις μεταξύ τους ως και 16 χιλιόμετρα.\\n\\n112\\n00:10:04,520 --> 00:10:08,210\\nΟι κεραίες συνδέονται και τα σήματά τους συνδυάζονται.\\n\\n113\\n00:10:08,510 --> 00:10:13,960\\nΤο αποτέλεσμα: ένα γιγάντιο τηλεσκόπιο μεγάλο όσο όλο το σύμπλεγμα,\\n\\n114\\n00:10:13,960 --> 00:10:19,500\\nτο οποίο παρατηρεί με ανεπανάληπτη ευαισθησία και ευκρίνεια.\\n\\n115\\n00:10:24,200 --> 00:10:27,080\\nΗ αξιοποίηση όλων αυτών των συνδυασμένων σημάτων\\n\\n116\\n00:10:27,080 --> 00:10:31,440\\nαπαιτεί έναν υπερυπολογιστή στο ψηλότερο σημείο του κόσμου.\\n\\n117\\n00:10:32,180 --> 00:10:35,040\\nΜε 134 εκατομμύρια επεξεργαστές,\\n\\n118\\n00:10:35,040 --> 00:10:39,400\\nνα πραγματοποιούν 17 τετράκις εκατομ. λειτουργίες ανά δευτερόλεπτο\\n\\n119\\n00:10:39,400 --> 00:10:42,860\\n— όσες και ο γρηγορότερος υπερυπολογιστής στο κόσμο —\\n\\n120\\n00:10:42,920 --> 00:10:45,840\\nο συσχετιστής του ALMA, στο Τσαχναντόρ,\\n\\n121\\n00:10:45,840 --> 00:10:50,150\\nσυνδυάζει και συγκρίνει τα σήματα από όλες τις κεραίες.\\n\\n122\\n00:10:56,430 --> 00:11:00,110\\nΚαθώς ολοένα περισσότερες κεραίες φτάνουν στο Τσαχναντόρ,\\n\\n123\\n00:11:00,110 --> 00:11:05,270\\nη Εγκατάσταση Υποστήριξης Λειτουργίας, το κέντρο ελέγχου του παρατηρητηρίου,\\n\\n124\\n00:11:05,270 --> 00:11:11,840\\nαρχίζει να παίρνει σχήμα στο λίγο πιο φιλόξενο υψόμετρο των 2900 μέτρων.\\n\\n125\\n00:11:13,000 --> 00:11:15,960\\nΟι εργασίες συνεχίζονται σε 24ωρη βάση.\\n\\n126\\n00:11:15,960 --> 00:11:18,260\\nΛειτουργία του Τηλεσκοπίου.\\n\\n127\\n00:11:18,260 --> 00:11:22,430\\nΔοκιμές και συντήρηση των κεραιών και του λοιπού εξοπλισμού.\\n\\n128\\n00:11:23,590 --> 00:11:25,880\\nΚαι σπίτι για το προσωπικό του ALMA\\n\\n129\\n00:11:25,880 --> 00:11:29,550\\nγια τη διάρκεια πρωινών και νυχτερινών βαρδιών στο παρατηρητήριο.\\n\\n130\\n00:11:39,230 --> 00:11:41,670\\nΚεντρικά Γραφεία στο Σαντιάγο\\n\\n131\\n00:11:44,040 --> 00:11:46,840\\nΣτη πρωτεύουσα του κράτους που το φιλοξενεί, της Χιλής\\n\\n132\\n00:11:46,840 --> 00:11:50,760\\nκατασκευάστηκαν τα Κεντρικά Γραφεία του ALMA, στο Σαντιάγο.\\n\\n133\\n00:11:53,470 --> 00:11:57,200\\nΕδώ εργάζεται το τεχνικό, επιστημονικό και διοικητικό \\n\\n134\\n00:11:57,200 --> 00:12:00,450\\nπροσωπικό της Κοινοπραξίας του ALMA.\\n\\n135\\n00:12:09,670 --> 00:12:11,560\\nΑποδεικνύοντας την Αριστεία\\n\\n136\\n00:12:14,320 --> 00:12:17,280\\nΑκόμη και πριν την ολοκλήρωση του σταδίου της κατασκευής,\\n\\n137\\n00:12:17,280 --> 00:12:20,630\\nξεκίνησαν οι πρώτες επιστημονικές παρατηρήσεις\\n\\n138\\n00:12:20,630 --> 00:12:23,120\\nμε ένα μικρό σύμπλεγμα κεραιών.\\n\\n139\\n00:12:24,480 --> 00:12:27,400\\nΤο ALMA άνοιξε τα μάτια του!\\n\\n140\\n00:12:33,430 --> 00:12:36,220\\nΧιλιάδες επιστήμονες από όλο το κόσμο\\n\\n141\\n00:12:36,220 --> 00:12:41,200\\nσυναγωνίζονταν για να είναι ανάμεσα στους πρώτους που θα χρησιμοποιούσαν τις εγκαταστάσεις.\\n\\n142\\n00:12:43,560 --> 00:12:46,230\\nΑκόμη και με μόνο 16 κεραίες\\n\\n143\\n00:12:46,230 --> 00:12:51,000\\nτο ALMA ήταν ήδη το ισχυρότερο τηλεσκόπιο του είδους του.\\n\\n144\\n00:12:57,610 --> 00:13:02,240\\nΟι πρώτες επιστημονικές παρατηρήσεις εξεπλήρωσαν τις ελπίδες όλων.\\n\\n145\\n00:13:06,120 --> 00:13:08,020\\nΟι Γαλαξίες Κεραίες,\\n\\n146\\n00:13:08,020 --> 00:13:12,550\\nένα ζεύγος συγκρουόμενων γαλαξιών με δραματικά παραμορφωμένο σχήμα.\\n\\n147\\n00:13:13,640 --> 00:13:17,070\\nΤο ορατό φως εμφανίζει τα άστρα στους γαλαξίες,\\n\\n148\\n00:13:17,070 --> 00:13:21,600\\nόμως το ALMA αποκαλύπτει τα νέφη πυκνού, ψυχρού αερίου\\n\\n149\\n00:13:21,600 --> 00:13:24,660\\nαπό τα οποία γεννιούνται νέα άστρα.\\n\\n150\\n00:13:30,320 --> 00:13:35,430\\nΗ καρδιά του χαρακτηριστικού γαλαξία Κενταύρου Α.\\n\\n151\\n00:13:35,430 --> 00:13:41,040\\nΤο ALMA διαπερνά τις αδιαφανείς λωρίδες σκόνης που κρύβουν το κέντρο του.\\n\\n152\\n00:13:45,960 --> 00:13:50,460\\nΗ εικόνα του κοντινού άστρου Fomalhaut μας δίνει στοιχεία\\n\\n153\\n00:13:50,460 --> 00:13:53,880\\nγια το τρόπο σχηματισμού και εξέλιξης πλανητικών συστημάτων.\\n\\n154\\n00:13:57,400 --> 00:14:01,610\\nΚοσμικοί κόκκοι σκόνης γύρω από ένα καφέ νάνο\\n\\n155\\n00:14:01,610 --> 00:14:03,450\\nυποδηλώνουν ότι οι βραχώδεις πλανήτες\\n\\n156\\n00:14:03,450 --> 00:14:07,220\\nίσως είναι περισσότερο συνηθισμένοι απ' όσο υπολογίζαμε στο Σύμπαν.\\n\\n157\\n00:14:11,180 --> 00:14:14,320\\nΜόρια σακχάρων, εντοπίστηκαν για πρώτη φορά\\n\\n158\\n00:14:14,320 --> 00:14:16,790\\nγύρω από ένα νεαρό άστρο σαν τον Ήλιο μας,\\n\\n159\\n00:14:16,790 --> 00:14:20,720\\nτα δομικά στοιχεία της ζωής στο σωστό σημείο, τη κατάλληλη στιγμή,\\n\\n160\\n00:14:20,720 --> 00:14:24,800\\nώστε να αποτελέσουν μέρος των νέων πλανητών που δημιουργούνται γύρω του.\\n\\n161\\n00:14:29,330 --> 00:14:35,780\\nΜία απρόσμενη σπειροειδής δομή στο υλικό γύρω από το γηραιό άστρο R του Γλύπτη\\n\\n162\\n00:14:35,780 --> 00:14:39,480\\nαποκαλύπτει τα μυστικά ενός ετοιμοθάνατου άστρου.\\n\\n163\\n00:14:44,740 --> 00:14:46,950\\nΕκτεταμένα ρεύματα αερίου\\n\\n164\\n00:14:46,950 --> 00:14:48,480\\nσε ροή γύρω από ένα χάσμα\\n\\n165\\n00:14:48,480 --> 00:14:52,140\\nστο δίσκο ύλης γύρω από ένα νεαρό άστρο.\\n\\n166\\n00:14:52,140 --> 00:14:55,200\\nΈνα κρίσιμο στάδιο στη δημιουργία γιγάντιων πλανητών,\\n\\n167\\n00:14:55,200 --> 00:14:58,120\\nπαρατηρείται για πρώτη φορά.\\n\\n168\\n00:14:58,120 --> 00:15:02,800\\nΚαι όλα αυτά πριν ολοκληρωθεί το σύμπλεγμα!\\n\\n169\\n00:15:05,240 --> 00:15:07,520\\nΑνοίγοντας Νέους Ορίζοντες\\n\\n170\\n00:15:10,270 --> 00:15:13,830\\nΤα εγκαίνια του ALMA σηματοδοτούν την ενηλικίωσή του.\\n\\n171\\n00:15:13,830 --> 00:15:16,340\\nΤο ταξίδι ήταν μεγάλο.\\n\\n172\\n00:15:16,340 --> 00:15:18,670\\nΤο ALMA μεγάλωσε από μία ιδέα,\\n\\n173\\n00:15:18,670 --> 00:15:20,520\\nσε ένα κατασκευαστικό έργο,\\n\\n174\\n00:15:20,520 --> 00:15:22,960\\nσε ένα πλήρως λειτουργικό παρατηρητήριο,\\n\\n175\\n00:15:22,960 --> 00:15:27,600\\nκαι μία πραγματικά παγκόσμια επιστημονική σύμπραξη.\\n\\n176\\n00:15:36,750 --> 00:15:40,730\\nΣτη γαλήνια και μοναχική ομορφιά της Χιλιανής ερήμου Ατακάμα,\\n\\n177\\n00:15:40,730 --> 00:15:43,220\\nτο ALMA είναι έτοιμο για το μέλλον.\\n\\n178\\n00:15:43,830 --> 00:15:46,440\\nΧρησιμοποιώντας αυτό το θαυμάσιο τηλεσκόπιο,\\n\\n179\\n00:15:46,440 --> 00:15:49,440\\nαστρονόμοι απ' όλο το κόσμο θα παρατηρήσουν\\n\\n180\\n00:15:49,440 --> 00:15:52,600\\nσε βάθος τα κρυμμένα μυστικά του Σύμπαντος.\\n\\n181\\n00:15:53,040 --> 00:15:58,160\\nΑναζητώντας τις κοσμικές μας καταβολές!\\n\\n182\\n00:16:03,680 --> 00:16:09,720\\nALMA\\n\\n183\\n00:16:18,240 --> 00:16:22,840\\nΣε όλους αυτούς που η περιέργεια τους, τους κάνει να θέτουν τα μεγαλύτερα ερωτήματα.\\n\\n184\\n00:16:23,480 --> 00:16:28,930\\nΚείμενα: ESO - Μετάφραση: Μανώλης Ζούλιας\",\n", + " 'bytes': 22789,\n", + " 'sha1': '92ltlhx2tpg6xoscyhdxlz2xvpdyxae',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92612237,\n", + " 'timestamp': '2013-03-15T09:23:06Z',\n", + " 'user': {'id': 293, 'text': 'Raymond'},\n", + " 'page': {'id': 25122435,\n", + " 'title': 'Errichtung des Besichtigungsbauwerks.webm.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'fix',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nBau des Besichtigungsbauwerks für das eingestürzte Historische Archiv der Stadt Köln: Pfahlgründung für eine Bohrpfahlwand\\n\\n2\\n00:00:07,000 --> 00:00:17,000\\nEin Drehbohrgerät, Modell Bauer BG 40, gründet einen Bohrpfahl\\n\\n3\\n00:00:40,000 --> 00:00:50,000\\nDer Kastenbohrer wird geleert\\n\\n4\\n00:00:57,000 --> 00:01:10,000\\nPer Kran wird ein neues Bohrrohr herangeführt\\n\\n5\\n00:01:14,000 --> 00:01:37,000\\nDie Transportvorrichtung wird gelöst\\n\\n6\\n00:01:52,000 --> 00:02:35,000\\nDas Drehbohrgerät „greift“ sich das neue Bohrrohr\\n\\n7\\n00:03:00,000 --> 00:03:33,000\\nDas neue Bohrrohr wird auf das vorhandene Bohrrohr aufgesetzt\\n\\n8\\n00:03:35,000 --> 00:03:50,000\\nDie beiden Bohrrohre werden miteinander verschraubt\\n\\n9\\n00:03:52,000 --> 00:04:05,000\\nDie Bohrung wird fortgeführt',\n", + " 'bytes': 802,\n", + " 'sha1': 'j0hmoqgeqxxc84w2rgxu4f7i3eb8ghm',\n", + " 'parent_id': 92612222,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92833541,\n", + " 'timestamp': '2013-03-18T19:58:07Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25177760,\n", + " 'title': 'Wiki feel stupid v2.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:0,600 --> 00:00:2,400 Wikimedia Wikipedia Editing Usability Study 2 00:00:2,600 --> 00:00:4,400 Editing Makes Me Feel Stupid 3 00:00:4,600 --> 00:00:7...'\",\n", + " 'text': \"1\\n00:00:0,600 --> 00:00:2,400\\nWikimedia Wikipedia Editing Usability Study\\n\\n2\\n00:00:2,600 --> 00:00:4,400\\nEditing Makes Me Feel Stupid\\n\\n3\\n00:00:4,600 --> 00:00:7,400\\nSee if we can... oh, OK.\\n\\n4\\n00:00:10,600 --> 00:00:13,400\\nSo, basically, OK, so my first expectation\\n\\n5\\n00:00:13,600 --> 00:00:16,400\\nwas kind of, a little bit more user-friendly,\\n\\n6\\n00:00:16,600 --> 00:00:19,400\\nthis looks like, uh, for example,\\n\\n7\\n00:00:19,600 --> 00:00:22,400\\nI'm not sure what these two are for, and I'm guessing\\n\\n8\\n00:00:22,600 --> 00:00:25,400\\nthat these two might be to make that as a link,\\n\\n9\\n00:00:25,600 --> 00:00:28,400\\nas I see it on several, uh several occasions.\",\n", + " 'bytes': 658,\n", + " 'sha1': 'pvixhvq5g1qkjnh15ocv797d5c24xbf',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92840543,\n", + " 'timestamp': '2013-03-18T22:28:34Z',\n", + " 'user': {'id': 1701223, 'text': 'VGrigas (WMF)'},\n", + " 'page': {'id': 25179534,\n", + " 'title': 'The Wikipedia Education Program.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,261 --> 00:00:03,292 A lot of students feel that their learning in school is... 2 00:00:05,046 --> 00:00:08,536 kind of useless, because they put al...'\",\n", + " 'text': \"1\\n00:00:00,261 --> 00:00:03,292\\nA lot of students feel that their learning in school is...\\n\\n2\\n00:00:05,046 --> 00:00:08,536\\nkind of useless, because they put all this effort and time into coming up with \\n\\n3\\n00:00:08,536 --> 00:00:12,666\\na great research paper, and they turn it in, and it just ends up in somebody's drawer.\\n\\n4\\n00:00:12,666 --> 00:00:16,461\\nBut with a Wikipedia assignment, they put it onto an article,\\n\\n5\\n00:00:16,461 --> 00:00:20,358\\non Wikipedia and thousands if not tens of thousands of people end up seeing their work\\n\\n6\\n00:00:20,358 --> 00:00:22,924\\nWikipedia is an encyclopedia that anyone can edit.\\n\\n7\\n00:00:22,924 --> 00:00:25,318\\nOn Wikipedia everything is published live,\\n\\n8\\n00:00:26,472 --> 00:00:28,429\\nso as students are working to develop their articles,\\n\\n9\\n00:00:28,429 --> 00:00:32,813\\nThey are getting constant feedback sometimes from the Wikipedia editing community.\\n\\n10\\n00:00:32,813 --> 00:00:36,813\\nOur students are learning how to edit Wikipedia as part of their coursework\\n\\n11\\n00:00:36,813 --> 00:00:40,734\\nand they are assisted by Wikipedia ambassadors who are trained by our program.\\n\\n12\\n00:00:40,734 --> 00:00:46,573\\nMore than 500 classes have participated world-wide so far,\\n\\n13\\n00:00:46,573 --> 00:00:49,619\\nWe are constantly adding new classes.\\n\\n14\\n00:00:49,619 --> 00:00:54,124\\nBack in fall 2010, we had a student who was participating in a course at Georgetown University\\n\\n15\\n00:00:54,124 --> 00:00:58,563\\nwhere he re-wrote the article on the National Democratic Party of Egypt\\n\\n16\\n00:00:58,563 --> 00:01:01,922\\nThis was before the revolution in Egypt\\n\\n17\\n00:01:01,922 --> 00:01:02,812\\nabout two months before it.\\n\\n18\\n00:01:02,812 --> 00:01:08,053\\nWhen the revolution started happening, as the protestors were taking to the streets in Cairo\\n\\n19\\n00:01:08,053 --> 00:01:12,145\\nPeople all around the world turned to Wikipedia to learn about the political party\\n\\n20\\n00:01:12,145 --> 00:01:14,936\\nthat president Mubarak was affiliated with. \\n\\n21\\n00:01:14,936 --> 00:01:18,857\\nAnd what they found there was the article that this student had written.\\n\\n22\\n00:01:18,857 --> 00:01:21,107\\nI did, I wrote the article - the whole thing\\n\\n23\\n00:01:22,107 --> 00:01:25,822\\nand it's something that isn't in a stasis.\\n\\n24\\n00:01:25,822 --> 00:01:27,405\\nI mean it's information that's changing. \\n\\n25\\n00:01:27,405 --> 00:01:33,536\\nI quoted news articles which again are very temporal and related to now\\n\\n26\\n00:01:33,536 --> 00:01:37,583\\nand yeah I will go back in a few months to make sure that\\n\\n27\\n00:01:37,583 --> 00:01:43,922\\nwhen the next president is elected, if it's not what I say in the article\\n\\n28\\n00:01:43,922 --> 00:01:46,479\\nthat I change it to make sure! (laughs)\",\n", + " 'bytes': 2702,\n", + " 'sha1': 'o697r1ddnq12zkuywwum1i8arw72yb4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 530982678,\n", + " 'timestamp': '2021-02-06T20:44:15Z',\n", + " 'user': {'id': 2366229, 'text': 'Achim55'},\n", + " 'page': {'id': 25232095,\n", + " 'title': 'Me at the zoo.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/188.163.81.234|188.163.81.234]] ([[User talk:188.163.81.234|talk]]) to last revision by JudgeDeadd',\n", + " 'text': \"\\ufeff1\\n00:00:01,300 --> 00:00:04,400\\nAll right, so here we are\\nin front of the elephants,\\n\\n2\\n00:00:04,400 --> 00:00:09,166\\nthe cool thing about these guys\\nis that they have really,\\n\\n3\\n00:00:09,166 --> 00:00:12,699\\nreally, really long trunks,\\n\\n4\\n00:00:12,699 --> 00:00:17,000\\nand that's, that's cool.\\n\\n5\\n00:00:17,000 --> 00:00:18,766\\nAnd that's pretty much all there is to say.\",\n", + " 'bytes': 374,\n", + " 'sha1': '7pfn65wnx0arl630hkrkkmrxkgxpt5o',\n", + " 'parent_id': 530698690,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93095789,\n", + " 'timestamp': '2013-03-22T16:38:54Z',\n", + " 'user': {'text': '2.185.56.169'},\n", + " 'page': {'id': 25233268,\n", + " 'title': 'Linus pronounces linux (english).oga.fa.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:05,400\\nسلام من لینوس تورووالدز هستم و لینوکس را اینگونه ('''لینوکس''') تلفظ میکنم\",\n", + " 'bytes': 161,\n", + " 'sha1': 'q9uk6obbzpoaj7s0j65ffkolwjttlbn',\n", + " 'parent_id': 93095718,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 629929095,\n", + " 'timestamp': '2022-02-15T08:16:26Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25233523,\n", + " 'title': 'Mazurek Dabrowskiego.ogg.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,234\\nВвеки Польша не погибнет,\\n\\n2\\n00:00:03,296 --> 00:00:06,000\\nЕсли мы живем!\\n\\n3\\n00:00:06,600 --> 00:00:09,793\\nТo что враги у нас отняли,\\n\\n4\\n00:00:09,843 --> 00:00:12,764\\nСаблями вернём!\\n\\n5\\n00:00:13,242 --> 00:00:16,548\\nМарш, марш Домбровский!\\n\\n6\\n00:00:16,597 --> 00:00:19,500\\nИз Италии в Польшу!\\n\\n7\\n00:00:19,757 --> 00:00:23,243\\nС народом и страною,\\n\\n8\\n00:00:23,263 --> 00:00:26,225\\nЖить одной судьбою!\\n\\n9\\n00:00:26,691 --> 00:00:29,986\\nМарш, марш Домбровский!\\n\\n10\\n00:00:30,037 --> 00:00:33,460\\nИз Италии в Польшу!\\n\\n11\\n00:00:33,503 --> 00:00:36,891\\nС народом и страною,\\n\\n12\\n00:00:36,925 --> 00:00:40,278\\nЖить одной судьбою!',\n", + " 'bytes': 847,\n", + " 'sha1': 'i07dbqml1we5nsbj8dcj5bur2ew6p9q',\n", + " 'parent_id': 629842811,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93122572,\n", + " 'timestamp': '2013-03-23T06:49:09Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 25239526,\n", + " 'title': '2012-04 Halberstadt Friedhof←Hauptbahnhof.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:02:20,400 Friedhof ◄(im Betriebshof)► 2 00:02:20,440 --> 00:02:32,680 Friedhof 3 00:02:54,720 --> 00:03:45,120 Zuckerfabrik 4 00:04...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:02:20,400\\nFriedhof\\n◄(im Betriebshof)►\\n\\n2\\n00:02:20,440 --> 00:02:32,680\\nFriedhof\\n\\n3\\n00:02:54,720 --> 00:03:45,120\\nZuckerfabrik\\n\\n4\\n00:04:36,960 --> 00:04:48,320\\nGröperstraße\\n\\n5\\n00:05:47,520 --> 00:06:00,040\\nHoher Weg\\n\\n6\\n00:06:35,600 --> 00:08:35,520\\nHolzmarkt\\n\\n7\\n00:08:35,560 --> 00:08:50,880\\nHolzmarkt\\n◄(nur Ampelstopp)►\\n\\n8\\n00:08:50,920 --> 00:09:01,000\\nHolzmarkt\\n\\n9\\n00:09:29,760 --> 00:09:46,800\\nFischmarkt\\n\\n10\\n00:10:05,680 --> 00:11:22,120\\nKühlinger Straße\\n\\n11\\n00:11:56,160 --> 00:12:08,720\\nHeinrich-Heine-Platz\\n\\n12\\n00:13:15,680 --> 00:13:47,040\\nRichard-Wagner-Straße\\n\\n13\\n00:14:18,080 --> 00:14:32,520\\nHauptbahnhof',\n", + " 'bytes': 650,\n", + " 'sha1': 'aj8trfehaf6uc6ft37uvqxa5saegrca',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93124597,\n", + " 'timestamp': '2013-03-23T07:51:28Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 25239793,\n", + " 'title': '2012-04 Halberstadt Hauptbahnhof←Sargstedter Weg.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:14,720 Hauptbahnhof 2 00:00:57,600 --> 00:01:20,160 Beckerstraße 3 00:01:48,120 --> 00:02:22,840 Richard-Wagner-Straße 4 00:03:19,...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:14,720\\nHauptbahnhof\\n\\n2\\n00:00:57,600 --> 00:01:20,160\\nBeckerstraße\\n\\n3\\n00:01:48,120 --> 00:02:22,840\\nRichard-Wagner-Straße\\n\\n4\\n00:03:19,680 --> 00:04:27,920\\nHeinrich-Heine-Platz\\n\\n5\\n00:04:27,960 --> 00:04:47,480\\nHeinrich-Heine-Platz\\n◄(nur Ampelstopp)►\\n\\n6\\n00:04:47,520 --> 00:04:52,200\\nHeinrich-Heine-Platz\\n\\n7\\n00:09:34,200 --> 00:09:48,480\\nErich-Weinert-Straße\\n\\n8\\n00:09:48,520 --> 00:10:29,280\\nErich-Weinert-Straße\\n◄(nur Ampelstopp)►\\n\\n9\\n00:10:29,320 --> 00:10:34,400\\nErich-Weinert-Straße\\n\\n10\\n00:11:13,520 --> 00:11:43,000\\nLandratsamt\\n\\n11\\n00:12:11,000 --> 00:12:42,000\\nKlusstraße\\n\\n12\\n00:13:23,720 --> 00:13:52,120\\nHerbingstraße\\n\\n13\\n00:14:27,040 --> 00:14:48,800\\nWesterhäuser Straße\\n\\n14\\n00:15:28,800 --> 00:15:40,280\\nSpiegelstraße\\n\\n15\\n00:17:08,160 --> 00:17:26,040\\nHeinrich-Julius-Straße\\n\\n16\\n00:17:51,280 --> 00:18:16,320\\nHolzmarkt\\n\\n17\\n00:18:16,360 --> 00:18:18,680\\nHolzmarkt\\n◄(nur Ampelstopp)►\\n\\n18\\n00:18:18,760 --> 00:18:22,040\\nHolzmarkt\\n\\n19\\n00:18:48,160 --> 00:19:09,080\\nHoher Weg\\n\\n20\\n00:20:01,920 --> 00:20:27,200\\nJohannesbrunnen\\n\\n21\\n00:20:56,160 --> 00:21:06,840\\nVoigtei\\n\\n22\\n00:21:38,680 --> 00:21:57,800\\nTorteich\\n\\n23\\n00:22:47,440 --> 00:23:02,160\\nSargstedter Weg',\n", + " 'bytes': 1208,\n", + " 'sha1': 'otbfmhrxp6opu44qqs0q8dklfgvaqh4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93126335,\n", + " 'timestamp': '2013-03-23T08:54:23Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 25240074,\n", + " 'title': '2012-04 Halberstadt Sargstedter Weg←Herbingstraße←Hauptbahnhof.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:51,040 Sargstedter Weg 2 00:01:12,960 --> 00:01:51,640 Torteich 3 00:02:28,320 --> 00:02:38,600 Voigtei 4 00:03:06,240 --> 00:03:19,...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:51,040\\nSargstedter Weg\\n\\n2\\n00:01:12,960 --> 00:01:51,640\\nTorteich\\n\\n3\\n00:02:28,320 --> 00:02:38,600\\nVoigtei\\n\\n4\\n00:03:06,240 --> 00:03:19,760\\nJohannesbrunnen\\n\\n5\\n00:04:00,000 --> 00:04:23,520\\nHoher Weg\\n\\n6\\n00:04:50,120 --> 00:05:09,600\\nHolzmarkt\\n\\n7\\n00:05:09,640 --> 00:05:20,560\\nHolzmarkt\\n◄(nur Ampelstopp)►\\n\\n8\\n00:05:20,600 --> 00:05:29,400\\nHolzmarkt\\n\\n9\\n00:05:53,360 --> 00:06:06,680\\nHeinrich-Julius-Straße\\n\\n10\\n00:06:49,440 --> 00:07:00,960\\nSpiegelstraße\\n\\n11\\n00:07:47,480 --> 00:08:08,520\\nWesterhäuser Straße\\n\\n12\\n00:08:50,160 --> 00:10:01,000\\nHerbingstraße\\n\\n13\\n00:10:59,280 --> 00:11:16,400\\nKlusstraße\\n\\n14\\n00:11:47,960 --> 00:12:13,240\\nLandratsamt\\n\\n15\\n00:14:43,640 --> 00:14:56,600\\nErich-Weinert-Straße\\n\\n16\\n00:15:56,640 --> 00:16:07,080\\nHeinrich-Heine-Platz\\n\\n17\\n00:16:44,720 --> 00:17:06,160\\nRichard-Wagner-Straße\\n\\n18\\n00:17:35,840 --> 00:17:48,120\\nHauptbahnhof',\n", + " 'bytes': 892,\n", + " 'sha1': 'rzqk12409gh5ez3ej0cn88olovsn0wz',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93127834,\n", + " 'timestamp': '2013-03-23T09:31:27Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 25240318,\n", + " 'title': '2012-04 Halberstadt Hauptbahnhof←Friedhof.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:11,800 Hauptbahnhof 2 00:00:34,080 --> 00:00:51,480 Beckerstraße 3 00:01:17,720 --> 00:01:43,240 Richard-Wagner-Straße 4 00:02:26,...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:11,800\\nHauptbahnhof\\n\\n2\\n00:00:34,080 --> 00:00:51,480\\nBeckerstraße\\n\\n3\\n00:01:17,720 --> 00:01:43,240\\nRichard-Wagner-Straße\\n\\n4\\n00:02:26,400 --> 00:02:38,520\\nHeinrich-Heine-Platz\\n\\n5\\n00:04:28,480 --> 00:04:43,360\\nKühlinger Straße\\n\\n6\\n00:05:14,920 --> 00:05:28,600\\nFischmarkt\\n\\n7\\n00:06:43,160 --> 00:10:09,120\\nHolzmarkt\\n\\n8\\n00:10:09,160 --> 00:10:14,080\\nHolzmarkt\\n◄(nur Ampelstopp)►\\n\\n9\\n00:10:14,120 --> 00:10:20,400\\nHolzmarkt\\n\\n10\\n00:10:49,200 --> 00:11:14,400\\nHoher Weg\\n\\n11\\n00:11:55,680 --> 00:12:12,760\\nGröperstraße\\n\\n12\\n00:13:07,680 --> 00:13:20,760\\nZuckerfabrik\\n\\n13\\n00:13:43,480 --> 00:13:56,560\\nFriedhof',\n", + " 'bytes': 632,\n", + " 'sha1': 'lopz8xa25oyfr5p38eebvckalhqxohh',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93131569,\n", + " 'timestamp': '2013-03-23T10:48:07Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 25241132,\n", + " 'title': '2012-04 Halberstadt Johannesbrunnen←Klus←Heinrich-Heine-Platz.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:29,280 --> 00:01:01,640 Hoher Weg 2 00:01:42,080 --> 00:02:41,240 Holzmarkt 3 00:02:41,280 --> 00:02:46,720 Holzmarkt ◄(nur Ampelstopp)► 4 00:02:...'\",\n", + " 'text': '1\\n00:00:29,280 --> 00:01:01,640\\nHoher Weg\\n\\n2\\n00:01:42,080 --> 00:02:41,240\\nHolzmarkt\\n\\n3\\n00:02:41,280 --> 00:02:46,720\\nHolzmarkt\\n◄(nur Ampelstopp)►\\n\\n4\\n00:02:46,760 --> 00:02:58,560\\nHolzmarkt\\n\\n5\\n00:03:29,240 --> 00:03:43,560\\nHeinrich-Julius-Straße\\n\\n6\\n00:04:41,760 --> 00:04:54,520\\nSpiegelstraße\\n\\n7\\n00:05:52,800 --> 00:06:06,080\\nWesterhäuser Straße\\n\\n8\\n00:06:54,960 --> 00:11:02,960\\nHerbingstraße\\n\\n9\\n00:11:56,160 --> 00:12:19,680\\nAm Sommerbad\\n\\n10\\n00:13:21,920 --> 00:13:43,840\\nKirschallee\\n\\n11\\n00:14:36,480 --> 00:15:49,080\\nKlus\\n\\n12\\n00:16:44,520 --> 00:16:57,080\\nKirschallee\\n\\n13\\n00:18:12,000 --> 00:18:24,760\\nAm Sommerbad\\n\\n14\\n00:19:03,360 --> 00:19:19,720\\nHerbingstraße\\n\\n15\\n00:20:04,920 --> 00:20:24,000\\nKlusstraße\\n\\n16\\n00:21:04,000 --> 00:21:32,920\\nLandratsamt\\n\\n17\\n00:22:25,320 --> 00:22:47,200\\nErich-Weinert-Straße\\n\\n18\\n00:23:27,360 --> 00:23:29,880\\nHeinrich-Heine-Platz',\n", + " 'bytes': 877,\n", + " 'sha1': '7nfjsb8nwyxtr1kvr90wr9myjcmh4ed',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93134362,\n", + " 'timestamp': '2013-03-23T11:42:42Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 25241574,\n", + " 'title': '2012-04 Halberstadt Landratsamt←Spiegelstraße.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:07,680 Landratsamt 2 00:00:48,960 --> 00:01:15,120 Klusstraße 3 00:02:23,600 --> 00:02:51,200 Herbingstraße 4 00:03:45,120 --> 00:...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:07,680\\nLandratsamt\\n\\n2\\n00:00:48,960 --> 00:01:15,120\\nKlusstraße\\n\\n3\\n00:02:23,600 --> 00:02:51,200\\nHerbingstraße\\n\\n4\\n00:03:45,120 --> 00:04:07,640\\nWesterhäuser Straße',\n", + " 'bytes': 191,\n", + " 'sha1': 'c48zq7o4zlacs6qp4w03y0tmhqjlyy3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93136067,\n", + " 'timestamp': '2013-03-23T12:26:42Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 25242031,\n", + " 'title': '2012-04 Halberstadt Bahnübergang Straßenbahn % Eisenbahn in der Westerhäuser Straße.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:34,480 ←\\xa0Halberstadt Oststraße →\\xa0Halberstadt-Spiegelsberge ↑\\xa0Herbingstraße ↓\\xa0Westerhäuser Straße 2 00:00:34,560 --> 00...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:34,480\\n←\\xa0Halberstadt Oststraße\\n→\\xa0Halberstadt-Spiegelsberge\\n↑\\xa0Herbingstraße\\n↓\\xa0Westerhäuser Straße\\n\\n2\\n00:00:34,560 --> 00:00:59,560\\n↗\\xa0Westerhäuser Straße\\n↘\\xa0Halberstadt Oststraße\\n\\n3\\n00:00:59,640 --> 00:01:21,480\\n↑\\xa0Halberstadt-Spiegelsberge',\n", + " 'bytes': 289,\n", + " 'sha1': 'hcpyfd7xwbp4npkklncwhyhzxwx3e10',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93136115,\n", + " 'timestamp': '2013-03-23T12:28:08Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 25242046,\n", + " 'title': '2012-04 Halberstadt Bahnübergang Straßenbahn % Eisenbahn in der Klusstraße.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:15,160 ↑\\xa0Halberstadt Oststraße 2 00:00:15,240 --> 00:00:59,880 ↗\\xa0Halberstadt Oststraße ↖\\xa0Klusstraße ↘\\xa0Herbingstraße 3...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:15,160\\n↑\\xa0Halberstadt Oststraße\\n\\n2\\n00:00:15,240 --> 00:00:59,880\\n↗\\xa0Halberstadt Oststraße\\n↖\\xa0Klusstraße\\n↘\\xa0Herbingstraße\\n\\n3\\n00:01:03,720 --> 00:01:40,280\\n↑\\xa0Herbingstraße',\n", + " 'bytes': 210,\n", + " 'sha1': 'r7rr1pb9bxcuq8eepstyp0o13xweuha',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94133885,\n", + " 'timestamp': '2013-04-07T15:34:49Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25247532,\n", + " 'title': 'Sextortionagent interview.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'WhisperToMe moved page [[File talk:Sextortionagent interview.ogg/French]] to [[TimedText:Sextortionagent interview.ogg.fr.srt]]',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,400\\nSextorsion est ce qui est communément appelé\\n\\n2\\n00:00:04,600 --> 00:00:07,400\\nune situation où des personnes sont victimes,\\n\\n3\\n00:00:07,600 --> 00:00:09,400\\nils sont victimes d\\'extorsion;\\n\\n4\\n00:00:09,600 --> 00:00:12,400\\nc\\'est ce que nous appelons communément extorsion, mais\\n\\n5\\n00:00:012,600 --> 00:00:18,400\\nle but ultime pour les extorqueurs est\\n\\n6\\n00:00:18,600 --> 00:00:23,400\\nlié à une activité sexuelle. Que ce soit\\n\\n7\\n00:00:023,600 --> 00:00:26,400\\nphotos ou vidéos ou autre, \\n\\n8\\n00:00:26,600 --> 00:00:29,400\\nmais c\\'est généralement quelque chose qui est sexuel.\\n\\n9\\n00:00:29,600 --> 00:00:33,400\\nPar example je vous fais chanter pour quelque chose de nature sexuelle.\\n\\n10\\n00:00:33,600 --> 00:00:37,400\\nLes enfants ont tendance à être moins prudents\\n\\n11\\n00:00:37,600 --> 00:00:40,400\\net plus confiants des personnes sur Internet.\\n\\n12\\n00:00:40,600 --> 00:00:44,400\\nIls assimilent beaucoup d\\'autres gens en ligne comme s\\'ile etaient comme eux-mêmes,\\n\\n13\\n00:00:044,600 --> 00:00:47,400\\nqui auraient environ le même âge. Donc,\\n\\n14\\n00:00:47,600 --> 00:00:49,900\\nils n\\'ont pas peur des dangers potentiels.\\n\\n15\\n00:00:50,100 --> 00:00:53,400\\nSouvent il y a des individus qui créent une amitié avec des enfants.\\n\\n16\\n00:00:53,600 --> 00:00:56,400\\nLes enfants pensent qu\\'ils discutent avec d\\'autres enfants.\\n\\n17\\n00:00:56,600 --> 00:01:01,400\\nEt souvent ces enfants sont persuadés d\\'envoyer des photos d\\'eux-mêmes \\n\\n18\\n00:01:01,600 --> 00:01:05,400\\nà quelqu\\'un d\\'autre qu\\'ils croient être du même âge.\\n\\n19\\n00:01:05,600 --> 00:01:09,400\\nEt une fois que ces personnes ont ces photos, alors, ils veulent d\\'autres photos. \\n\\n20\\n00:01:09,600 --> 00:01:14,400\\nC\\'est ce qu\\'ils utilisent dans la poursuite de leurs activités criminelles.\\n\\n21\\n00:01:14,600 --> 00:01:17,400\\nUne fois qu\\'ils ont ces photos, alors ils sont en mesure de dire\\n\\n22\\n00:01:17,600 --> 00:01:20,400\\nà la victime ou à l\\'enfant,\\n\\n23\\n00:01:20,600 --> 00:01:24,400\\n“Je veux plus,” ou, “Je veux que tu fasses x, y, et z.\\n\\n24\\n00:01:24,600 --> 00:01:28,400\\nEt si tu ne le fais pas je vais prendre ces photos et je vais\\n\\n25\\n00:01:28,600 --> 00:01:32,400\\nles envoyer à tes camarades de classe. Je vais les envoyer à ta famille.”\\n\\n26\\n00:01:32,600 --> 00:01:36,400\\nEt souvent, les enfants sont gênés,\\n\\n27\\n00:01:36,600 --> 00:01:42,400\\nen particulier, ils pensent qu\\'ils ont en quelque sorte contribué à leur victimisation.\\n\\n28\\n00:01:42,600 --> 00:01:46,400\\nDonc, craignant qu\\'ils auront des ennuis s\\'ils le signalent,\\n\\n29\\n00:01:46,600 --> 00:01:51,400\\nils continuent la victimisation et envoyent aux individus ce qu\\'ils demandent.\\n\\n30\\n00:01:51,600 --> 00:01:55,400\\nIl arrive souvent que, la victimisation ne s\\'arrête jamais.\\n\\n31\\n00:01:55,600 --> 00:02:01,400\\nNous avons vu des situations où les criminels\\n\\n32\\n00:02:01,600 --> 00:02:07,400\\ncréent réellement des sites web et envoyent en effet des hyperliens à des amis \\n\\n33\\n00:02:07,600 --> 00:02:11,400\\net à des membres de la familles, demontrant à nouveau un\\n\\n34\\n00:02:11,600 --> 00:02:14,400\\nsentiment de domination certaine sur la victime, pour dire,\\n\\n35\\n00:02:14,600 --> 00:02:19,400\\n“Je te tiens, avec ceci, et si tu ne continues pas à faire ce que je dis, \\n\\n36\\n00:02:19,600 --> 00:02:22,400\\nvoila les choses que je peux faire.”\\n\\n37\\n00:02:22,600 --> 00:02:27,400\\nIls sont passés maîtres dans l\\'exploitation de personnes vulnérables.\\n\\n38\\n00:02:27,600 --> 00:02:30,400\\nIls peuvent convaincre quelqu\\'un d\\'ouvrir une pièce jointe.\\n\\n39\\n00:02:30,600 --> 00:02:34,400\\nUne des méthodes communes était qu\\'ils envoyait une photo d\\'une fille.\\n\\n40\\n00:02:34,600 --> 00:02:37,400\\nEt elle portait un soutien-gorge et culottes. Et\\n\\n41\\n00:02:37,600 --> 00:02:40,400\\nelle avait ses cheveux masquant son visage et on ne pouvait pas voir à quoi elle ressemblait.\\n\\n42\\n00:02:40,600 --> 00:02:43,400\\nEt ils disaient quelque chose comme,\\n\\n43\\n00:02:43,600 --> 00:02:47,400\\n“J\\'ai vu cette photo de toi sur un site web. Si ce n\\'est pas toi, ignore simplement.” \\n\\n44\\n00:02:47,600 --> 00:02:51,400\\nAlors, ce que beaucoup de ces victimes n\\'ont pas compris c\\'est\\n\\n45\\n00:02:51,600 --> 00:02:55,400\\nil y avait un un cheval de Troie intégré dans l\\'image.\\n\\n46\\n00:02:55,600 --> 00:02:58,400\\nTous les enfants ouvraient l\\'image. Les enfants sont curieux par nature.\\n\\n47\\n00:02:58,600 --> 00:03:03,400\\nEt ils ne se rendent pas compte que quelque chose pourrait être intégrée dans cette image qu\\'ils regardent.\\n\\n48\\n00:03:03,600 --> 00:03:07,400\\nUne fois que Connolly [un sextortioniste] et Dickerson [un autre sextortioniste] ont eu accès à leur ordinateur,\\n\\n49\\n00:03:37,600 --> 00:03:09,400\\nils faisaient une ou deux choses.\\n\\n50\\n00:03:09,600 --> 00:03:12,400\\nSouvent tout simplement ils observent.\\n\\n51\\n00:03:12,600 --> 00:03:15,400\\nCar ils ont obtenu la possibilité d\\'activer leur webcam.\\n\\n52\\n00:03:15,600 --> 00:03:19,400\\nAlors ils verraient ces victimes s\\'habiller et se déshabiller\\n\\n53\\n00:03:19,600 --> 00:03:22,400\\net faire d\\'autres choses. Et ils enregistraient ces actes.\\n\\n54\\n00:03:22,600 --> 00:03:26,400\\nEt certaines fois ils auraient des enregistrement d\\'enfants faisant certaines choses our se changeant.\\n\\n55\\n00:03:26,600 --> 00:03:31,400\\nParfois ils montrent ces vidéos ou ces photos dans la poursuite de l\\'exploitation.\\n\\n56\\n00:03:31,600 --> 00:03:36,400\\nAussi, une fois qu\\'ils avaient accès à leurs listes de contacts, ils peuvent dire,\\n\\n57\\n00:03:36,600 --> 00:03:41,400\\n“Si tu ne prends pas de photos de toi-même, ou si tu ne fais pas des films de toi-même, \\n\\n58\\n00:03:41,600 --> 00:03:45,400\\nJ\\'ai vue que tu as une adresse e-mail de ta grand-mère.\\n\\n59\\n00:03:45,600 --> 00:03:48,400\\nEt bien, je vais monter ce petit spectacle pour ta grand-mère, et\\n\\n60\\n00:03:48,600 --> 00:03:51,400\\nje suis persuadé qu\\'elle ne serait pas très fière de la façon dont tu agis, tu sais.”\\n\\n61\\n00:03:51,600 --> 00:03:54,400\\nEt beaucoup de ces enfants le feraient.\\n\\n62\\n00:03:54,600 --> 00:03:58,400\\nAujourd\\'hui, il y a tellement d\\'autres logiciels malveillants\\n\\n63\\n00:03:58,600 --> 00:04:02,400\\nil y a beaucoup d\\'autres logiciels malveillants sur Internet, et \\n\\n64\\n00:04:02,600 --> 00:04:05,400\\ntant d\\'autres programmes qui permettent aux gens d\\'accéder à votre ordinateur,\\n\\n65\\n00:04:05,600 --> 00:04:10,400\\nvous ne pouvez plus être trop prudent. Une des choses,\\n\\n66\\n00:04:10,600 --> 00:04:13,400\\nparticulièrement quand on parle aux parents, est\\n\\n66\\n00:04:13,600 --> 00:04:16,400\\nque vous devez avoir un dialogue ouvert avec vos enfants.\\n\\n67\\n00:04:16,600 --> 00:04:20,400\\nVous devez parler à vos enfants à ce sujet.\\n\\n68\\n00:04:20,600 --> 00:04:23,400\\n\"Tu ne peux pas être trop prudent. Tu ne peux vraiment pas faire confiance…\\n\\n69\\n00:04:23,600 --> 00:04:25,400\\ntu dois être prudent avec qui tu communiques.\\n\\n70\\n00:04:25,600 --> 00:04:29,400\\nSois toujours prudent.\" Premièrement.\\n\\n71\\n00:04:29,600 --> 00:04:32,400\\nDeuxiemement: les enfants ont besoin d\\'être en mesure de parler aux parents\\n\\n72\\n00:04:32,600 --> 00:04:35,400\\net les parents ont besoin d\\'être en mesure de parler aux enfants.\\n\\n73\\n00:04:35,600 --> 00:04:38,400\\n\"Si tu ne sais pas de qui vient quelque chose, ne l\\'ouvres pas.\\n\\n74\\n00:04:38,600 --> 00:04:43,400\\nMéfies-toi des pièces jointes.\"\\n\\n75\\n00:04:43,600 --> 00:04:47,400\\nEt, finalement,\\n\\n76\\n00:04:47,600 --> 00:04:50,400\\n\"Si quelque chose arrive, si tu as été victime,\\n\\n77\\n00:04:50,600 --> 00:04:55,400\\ndis le à quelqu\\'un, dis le à tes parents. Dis le à un adulte. Dis le à un enseignant.\"\\n\\n78\\n00:04:55,600 --> 00:05:00,400\\nMême si vous êtes un adulte et vous êtes victime, n\\'ayez pas peur d\\'appeler la police.\\n\\n79\\n00:05:00,600 --> 00:05:06,400\\nDickerson avait - il avait environ 230 gigaoctets de documents.\\n\\n80\\n00:05:06,600 --> 00:05:09,400\\nEt pour l\\'époque, c\\'était énorme.\\n\\n81\\n00:05:09,600 --> 00:05:15,400\\nConnolly avait près d\\'un téraoctet de documents.\\n\\n82\\n00:05:15,600 --> 00:05:21,400\\nEt le pire c\\'est que, beaucoup de ces enfants sont juste un dossier quelque part.\\n\\n83\\n00:05:21,600 --> 00:05:24,400\\nIls étaient un dossier sur un ordinateur.\\n\\n84\\n00:05:24,600 --> 00:05:30,400\\nSans nom. Sans nom d\\'utilisateur. Seulement des images et vidéos, dans un dossier. \\n\\n85\\n00:05:30,600 --> 00:05:34,400\\nEt une partie de ce que je crois être ma responsabilité, c\\'est\\n\\n86\\n00:05:34,600 --> 00:05:37,400\\nde parler à qui que ce soit qui est prêt à écouter\\n\\n87\\n00:05:37,600 --> 00:05:41,400\\nparce que je sais qu\\'il y a quelque part plus de victimes qui se demandent, \\n\\n88\\n00:05:41,600 --> 00:05:44,400\\n“Je me demande ce qui est arrivé à ces gars-là?” ou, “Dois-je encore avoir peur?”\\n\\n89\\n00:05:44,600 --> 00:05:47,400\\nSi vous connaissez quelqu\\'un qui est, ou vous-même êtes dans une situation similaire,\\n\\n90\\n00:05:47,600 --> 00:05:51,400\\nou si vous êtes un parent, parlez de ce sujet à vos enfants.',\n", + " 'bytes': 8835,\n", + " 'sha1': '6bhg0x3fu96i3l1fyf1mdu113g2cutq',\n", + " 'parent_id': 94123582,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93192155,\n", + " 'timestamp': '2013-03-24T12:41:26Z',\n", + " 'user': {'id': 293, 'text': 'Raymond'},\n", + " 'page': {'id': 25255505,\n", + " 'title': 'Verlegung Stolperstein Historisches Rathaus Köln.WebM.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'en text',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nLaying a \"Stolperstein\" in the pavement in front of the historic town hall of Cologne by Gunter Demnig.',\n", + " 'bytes': 135,\n", + " 'sha1': 'sje7segj1ib975coku76zcts042rj2u',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93236285,\n", + " 'timestamp': '2013-03-25T07:33:38Z',\n", + " 'user': {'id': 2333435, 'text': 'Ace Frahm~commonswiki'},\n", + " 'page': {'id': 25266100,\n", + " 'title': 'Pie In The Sky.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Trying to put every code on one line, to make captions work in IE9 player',\n", + " 'text': \"1 00:00:00,000 --> 00:00:03,000 Long-haired preachers come out every night \\n\\n2 00:00:03,000 --> 00:00:07,000 Try to tell you what's wrong and what's right\\n\\n3 00:00:07,000 --> 00:00:11,000 But when asked how 'bout something to eat \\n\\n4 00:00:11,000 --> 00:00:15,000 They will answer in voices so sweet \\n\\n5 00:00:15,000 --> 00:00:19,000 You will eat, bye and bye\\n\\n6 00:00:19,000 --> 00:00:22,000 In that glorious land above the sky \\n\\n7 00:00:22,000 --> 00:00:26,000 Work and pray, live on hay \\n\\n8 00:00:26,000 --> 00:00:29,000 You'll get pie in the sky when you die \\n\\n9 00:00:29,000 --> 00:00:32,000 And the Starvation Army, they play \\n\\n10 00:00:32,000 --> 00:00:36,000 And they sing and they clap and they pray \\n\\n11 00:00:36,000 --> 00:00:39,000 Till they get all your coin on the drum \\n\\n12 00:00:39,000 --> 00:00:43,000 Then they tell you when you're on the bum \\n\\n13 00:00:43,000 --> 00:00:47,000 You will eat, bye and bye\\n\\n14 00:00:47,000 --> 00:00:50,000 In that glorious land above the sky \\n\\n15 00:00:50,000 --> 00:00:53,000 Work and pray, live on hay \\n\\n16 00:00:53,000 --> 00:00:57,000 You'll get pie in the sky when you die \\n\\n17 00:00:57,000 --> 00:01:00,000 Holy Rollers and Jumpers come out \\n\\n18 00:01:00,000 --> 00:01:04,000 And they holler, they jump and they shout \\n\\n19 00:01:04,000 --> 00:01:07,000 Give your money to Jesus, they say \\n\\n20 00:01:07,000 --> 00:01:11,000 He will cure all diseases today \\n\\n21 00:01:11,000 --> 00:01:15,000 You will eat, bye and bye\\n\\n22 00:01:15,000 --> 00:01:18,000 In that glorious land above the sky \\n\\n23 00:01:18,000 --> 00:01:20,000 Work and pray, live on hay \\n\\n24 00:01:20,000 --> 00:01:24,000 You'll get pie in the sky when you die \\n\\n25 00:01:24,000 --> 00:01:27,000 If you fight hard for children and wife\\n\\n26 00:01:27,000 --> 00:01:30,000 Try to get something good in this life \\n\\n27 00:01:30,000 --> 00:01:34,000 You're a sinner and bad man, they tell \\n\\n28 00:01:34,000 --> 00:01:37,000 When you die you will sure go to hell. \\n\\n29 00:01:37,000 --> 00:01:41,000 You will eat, bye and bye\\n\\n30 00:01:41,000 --> 00:01:44,000 In that glorious land above the sky \\n\\n31 00:01:44,000 --> 00:01:47,000 Work and pray, live on hay \\n\\n32 00:01:47,000 --> 00:01:51,000 You'll get pie in the sky when you die \\n\\n33 00:01:51,000 --> 00:01:54,000 Workingmen of all countries, unite \\n\\n34 00:01:54,000 --> 00:01:57,000 Side by side we for freedom will fight \\n\\n35 00:01:57,000 --> 00:02:00,000 When the world and its wealth we have gained \\n\\n36 00:02:00,000 --> 00:02:04,000 To the grafters we'll sing this refrain \\n\\n37 00:02:04,000 --> 00:02:07,000 You will eat, bye and bye \\n\\n38 00:02:07,000 --> 00:02:10,000 When you've learned how to cook and how to fry \\n\\n39 00:02:10,000 --> 00:02:13,000 Chop some wood, 'twill do you good \\n\\n40 00:02:13,000 --> 00:02:21,000 Then you'll eat in the sweet bye and bye\",\n", + " 'bytes': 2829,\n", + " 'sha1': '8q3rxyfn56gkob74j5tvq7qzlax5zqq',\n", + " 'parent_id': 93235862,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 113643954,\n", + " 'timestamp': '2014-01-11T12:31:48Z',\n", + " 'user': {'text': '60.225.169.74'},\n", + " 'page': {'id': 25285071,\n", + " 'title': 'M h set terminates cityrail.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\n\"Chime\"\\n\\n2\\n00:00:01,000 --> 00:00:03,000\\nThis train terminates here.\\n\\n3\\n00:00:03,000 --> 00:00:07,000\\nCould all passengers please alight from the train.\\n\\n4\\n00:00:07,500 --> 00:00:12,000\\nThis train terminates at CENTRAL.',\n", + " 'bytes': 251,\n", + " 'sha1': 'ra8vjfi4ujaddrm2ox60trnd0tew0x3',\n", + " 'parent_id': 93301801,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 570948708,\n", + " 'timestamp': '2021-06-24T00:15:54Z',\n", + " 'user': {'id': 285765, 'text': 'Michael Bednarek'},\n", + " 'page': {'id': 25295404,\n", + " 'title': 'Hino-Nacional-Brasil-instrumental-mec.ogg.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Revert to revision 373067397 dated 2019-11-03 09:04:58 by Jdx: rvv.',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,500\\nEspera o Brasil que todos cumprais com o vosso dever\\n\\n2\\n00:00:04,000 --> 00:00:07,500\\nEia! Avante, brasileiros! Sempre avante\\n\\n3\\n00:00:08,000 --> 00:00:11,500\\nGravai com buril nos pátrios anais do vosso poder\\n\\n4\\n00:00:12,000 --> 00:00:15,500\\nEia! Avante, brasileiros! Sempre avante\\n\\n5\\n00:00:16,000 --> 00:00:19,000\\nServi o Brasil sem esmorecer, com ânimo audaz\\n\\n5\\n00:00:19,500 --> 00:00:21,400\\nCumpri o dever na guerra e na paz\\n\\n6\\n00:00:21,800 --> 00:00:23,500\\nÀ sombra da lei, à brisa gentil\\n\\n7\\n00:00:24,000 --> 00:00:26,500\\nO lábaro erguei do belo Brasil\\n\\n8\\n00:00:26,800 --> 00:00:29,500\\nEia! sus, oh, sus!\\n\\n9\\n00:00:30,900 --> 00:00:38,800\\nOuviram do Ipiranga as margens plácidas,\\nDe um povo heroico o brado retumbante\\n\\n10\\n00:00:39,100 --> 00:00:47,500\\nE o sol da Liberdade, em raios fúlgidos,\\nBrilhou no céu da Pátria nesse instante.\\n\\n11\\n00:00:47,700 --> 00:00:55,000\\nSe o penhor dessa igualdade,\\nConseguimos conquistar com braço forte,\\n\\n12\\n00:00:55,500 --> 00:01:03,000\\nEm teu seio, ó Liberdade,\\nDesafia o nosso peito a própria morte!\\n\\n13\\n00:01:04,500 --> 00:01:07,000\\nÓ Pátria amada,\\nIdolatrada,\\nSalve! Salve!\\n\\n14\\n00:01:07,500 --> 00:01:15,000\\nBrasil, um sonho intenso, um raio vívido,\\nDe amor e de esperança à terra desce,\\n\\n15\\n00:01:15,500 --> 00:01:24,000\\nSe em teu formoso céu, risonho e límpido,\\nA imagem do Cruzeiro resplandece.\\n\\n16\\n00:01:24,500 --> 00:01:32,000\\nGigante pela própria natureza,\\nÉs belo, és forte, impávido colosso,\\n\\n17\\n00:01:32,500 --> 00:01:36,500\\nE o teu futuro espelha essa grandeza.\\n\\n18\\n00:01:37,000 --> 00:01:39,500\\nTerra adorada\\n\\n19\\n00:01:40,000 --> 00:01:43,500\\nEntre outras mil,\\nÉs tu, Brasil,\\nÓ Pátria amada!\\n\\n20\\n00:01:44,000 --> 00:01:46,000\\nDos filhos deste solo\\nÉs mãe gentil,\\n\\n21\\n00:01:46,800 --> 00:01:48,500\\nPátria amada,\\nBrasil!\\n\\n22\\n00:01:49,500 --> 00:01:57,500\\nDeitado eternamente em berço esplêndido,\\nAo som do mar e à luz do céu profundo,\\n\\n23\\n00:01:57,500 --> 00:02:05,500\\nFulguras, ó Brasil, florão da América,\\nIluminado ao sol do Novo Mundo!\\n\\n24\\n00:02:06,500 --> 00:02:14,500\\nDo que a terra mais garrida,\\nTeus risonhos, lindos campos têm mais flores,\\n\\n25\\n00:02:15,500 --> 00:02:22,500\\nNossos bosques têm mais vida,\\nNossa vida no teu seio mais amores.\\n\\n26\\n00:02:23,500 --> 00:02:27,500\\nÓ Pátria amada,\\nIdolatrada,\\nSalve! Salve!\\n\\n27\\n00:02:28,500 --> 00:02:35,500\\nBrasil, de amor eterno seja símbolo,\\nO lábaro que ostentas estrelado,\\n\\n28\\n00:02:36,500 --> 00:02:43,500\\nE diga o verde-louro dessa flâmula\\n- Paz no futuro e glória no passado.\\n\\n29\\n00:02:44,500 --> 00:02:52,500\\nMas se ergues da justiça a clava forte,\\nVerás que um filho teu não foge à luta,\\n\\n30\\n00:02:53,500 --> 00:02:55,500\\nNem teme, quem te adora, a própria morte.\\n\\n31\\n00:02:56,000 --> 00:02:58,500\\nTerra adorada\\n\\n32\\n00:02:59,000 --> 00:03:01,500\\nEntre outras mil,\\nÉs tu, Brasil,\\nÓ Pátria amada!\\n\\n33\\n00:03:02,000 --> 00:03:04,500\\nDos filhos deste solo,\\nÉs mãe gentil,\\n\\n34\\n00:03:05,000 --> 00:03:07,500\\nPátria amada,\\nBrasil!',\n", + " 'bytes': 3020,\n", + " 'sha1': 'mie8gh5k479ku0pfo43yakb3w7wye08',\n", + " 'parent_id': 570721706,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 126674434,\n", + " 'timestamp': '2014-06-15T08:20:16Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 25295608,\n", + " 'title': 'Hino Nacional Brasileiro Coral BDMG.ogg.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/177.179.214.139|177.179.214.139]] ([[User talk:177.179.214.139|talk]]) to last revision by Duplode',\n", + " 'text': '1\\n00:00:28,600 --> 00:00:35,900\\nOuviram do Ipiranga as margens plácidas,\\nDe um povo heroico o brado retumbante\\n\\n2\\n00:00:37,000 --> 00:00:43,600\\nE o sol da Liberdade, em raios fúlgidos,\\nBrilhou no céu da Pátria nesse instante.\\n\\n3\\n00:00:44,100 --> 00:00:51,600\\nSe o penhor dessa igualdade,\\nConseguimos conquistar com braço forte,\\n\\n4\\n00:00:52,200 --> 00:00:59,700\\nEm teu seio, ó Liberdade,\\nDesafia o nosso peito a própria morte!\\n\\n5\\n00:01:00,000 --> 00:01:04,200\\nÓ Pátria amada,\\nIdolatrada,\\nSalve! Salve!\\n\\n6\\n00:01:04,300 --> 00:01:11,600\\nBrasil, um sonho intenso, um raio vívido,\\nDe amor e de esperança à terra desce,\\n\\n7\\n00:01:12,100 --> 00:01:19,600\\nSe em teu formoso céu, risonho e límpido,\\nA imagem do Cruzeiro resplandece.\\n\\n8\\n00:01:20,400 --> 00:01:28,000\\nGigante pela própria natureza,\\nÉs belo, és forte, impávido colosso,\\n\\n9\\n00:01:28,400 --> 00:01:31,800\\nE o teu futuro espelha essa grandeza.\\n\\n10\\n00:01:32,000 --> 00:01:33,600\\nTerra adorada\\n\\n11\\n00:01:34,100 --> 00:01:37,600\\nEntre outras mil,\\nÉs tu, Brasil,\\nÓ Pátria amada!\\n\\n12\\n00:01:37,900 --> 00:01:40,800\\nDos filhos deste solo\\nÉs mãe gentil,\\n\\n13\\n00:01:41,100 --> 00:01:44,100\\nPátria amada,\\nBrasil!\\n\\n14\\n00:02:13,800 --> 00:02:21,300\\nDeitado eternamente em berço esplêndido,\\nAo som do mar e à luz do céu profundo,\\n\\n15\\n00:02:21,800 --> 00:02:29,400\\nFulguras, ó Brasil, florão da América,\\nIluminado ao sol do Novo Mundo!\\n\\n16\\n00:02:29,700 --> 00:02:37,600\\nDo que a terra mais garrida,\\nTeus risonhos, lindos campos têm mais flores,\\n\\n17\\n00:02:37,900 --> 00:02:45,500\\nNossos bosques têm mais vida,\\nNossa vida no teu seio mais amores.\\n\\n18\\n00:02:45,900 --> 00:02:49,900\\nÓ Pátria amada,\\nIdolatrada,\\nSalve! Salve!\\n\\n19\\n00:02:50,100 --> 00:02:57,500\\nBrasil, de amor eterno seja símbolo,\\nO lábaro que ostentas estrelado,\\n\\n20\\n00:02:58,100 --> 00:03:05,500\\nE diga o verde-louro dessa flâmula\\n- Paz no futuro e glória no passado.\\n\\n21\\n00:03:06,200 --> 00:03:14,000\\nMas se ergues da justiça a clava forte,\\nVerás que um filho teu não foge à luta,\\n\\n22\\n00:03:14,400 --> 00:03:17,900\\nNem teme, quem te adora, a própria morte.\\n\\n23\\n00:03:18,000 --> 00:03:19,800\\nTerra adorada\\n\\n24\\n00:03:20,000 --> 00:03:23,600\\nEntre outras mil,\\nÉs tu, Brasil,\\nÓ Pátria amada!\\n\\n25\\n00:03:23,800 --> 00:03:26,900\\nDos filhos deste solo,\\nÉs mãe gentil,\\n\\n26\\n00:03:27,100 --> 00:03:29,900\\nPátria amada,\\nBrasil!',\n", + " 'bytes': 2365,\n", + " 'sha1': 'gompsqb7d9ni4im67uf1tmwezjrtcgo',\n", + " 'parent_id': 126289400,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93349258,\n", + " 'timestamp': '2013-03-27T08:01:26Z',\n", + " 'user': {'text': '101.98.190.115'},\n", + " 'page': {'id': 25298778,\n", + " 'title': 'Açaí.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:24,400 Açaí.'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:24,400\\nAçaí.',\n", + " 'bytes': 39,\n", + " 'sha1': 'cntdntgoq72afzl0wqt5i53wfau6am6',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 276202139,\n", + " 'timestamp': '2018-01-02T20:35:08Z',\n", + " 'user': {'id': 1438826, 'text': 'Hazhk'},\n", + " 'page': {'id': 25300858,\n", + " 'title': 'God Defend New Zealand instrumental.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"The general practice is to avoid splitting up the text too much. The timings are now a little off, so I've reverted back.\",\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:06,000\\nGod of Nations, at thy feet;\\n\\n2\\n00:00:06,000 --> 00:00:13,000\\nin the bonds of love we meet.\\n\\n3\\n00:00:13,000 --> 00:00:20,000\\nHear our voices, we entreat.\\n\\n4\\n00:00:20,000 --> 00:00:26,000\\nGod defend our free land.\\n\\n5\\n00:00:26,000 --> 00:00:34,000\\nGuard Pacific's triple star,\\n\\n6\\n00:00:34,000 --> 00:00:41,000\\nfrom the shafts of strife and war.\\n\\n7\\n00:00:41,000 --> 00:00:50,000\\nMake her praises heard afar,\\n\\n8\\n00:00:50,000 --> 00:01:00,000\\nGod defend New Zealand!\",\n", + " 'bytes': 493,\n", + " 'sha1': '89dloi9g8ppuj8qni67gjeal42ripk0',\n", + " 'parent_id': 275776663,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93390194,\n", + " 'timestamp': '2013-03-27T16:42:45Z',\n", + " 'user': {'text': '177.192.59.70'},\n", + " 'page': {'id': 25308632,\n", + " 'title': 'Apollo13problem.ogg.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,000 --> 00:00:04,800 Ei, Houston, temos um problema aqui. 2 00:00:05,000 --> 00:00:8,800 Por favor, diga de novo. 3 00:00:09,000 --> 00:00:11,000 H...'\",\n", + " 'text': '1\\n00:00:01,000 --> 00:00:04,800\\nEi, Houston, temos um problema aqui.\\n\\n2\\n00:00:05,000 --> 00:00:8,800\\nPor favor, diga de novo.\\n\\n3\\n00:00:09,000 --> 00:00:11,000\\nHouston, temos um problema.',\n", + " 'bytes': 186,\n", + " 'sha1': 'hzbzkp3cxdzfxud549gifted4jpd1ot',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93454274,\n", + " 'timestamp': '2013-03-28T16:09:08Z',\n", + " 'user': {'text': '81.167.120.183'},\n", + " 'page': {'id': 25327718,\n", + " 'title': 'Pronunciation of the swedish word lagom.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,001 --> 00:00:02,000\\nLagom.\\n\\n2\\n00:00:02,001 --> 00:00:06,000\\nThe temperature is lagom.',\n", + " 'bytes': 97,\n", + " 'sha1': 'il7dx8y7wcm464fswzbmboo8qxtwr1i',\n", + " 'parent_id': 93454190,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93482390,\n", + " 'timestamp': '2013-03-28T21:55:46Z',\n", + " 'user': {'id': 234501, 'text': 'Sporti'},\n", + " 'page': {'id': 25334739,\n", + " 'title': 'Ukaz!.webm.hr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:03,500 --> 00:00:07,700 Molim sve one koji sujeluju u javnom okupljanju ,a nisu prijavljeni 1 00:00:08,200 --> 00:00:12,500 da prestanu narušavati ja...'\",\n", + " 'text': '0\\n00:00:03,500 --> 00:00:07,700\\nMolim sve one koji sujeluju u javnom okupljanju ,a nisu prijavljeni \\n\\n1\\n00:00:08,200 --> 00:00:12,500\\nda prestanu narušavati javni red i mir.\\n\\n2\\n00:00:14,200 --> 00:00:16,000\\nNaređujem vam,\\n\\n3\\n00:00:16,300 --> 00:00:20,500\\nda prestanete narušavati javni red i mir.\\n\\n4\\n00:00:21,000 --> 00:00:24,500\\n(Možemo reći što hoćemo do 10)\\n\\n5\\n00:00:26,000 --> 00:00:27,500\\n(Tko nije registriran?)\\n\\n6\\n00:00:29,800 --> 00:00:32,100\\n(Hoćete koristiti opet suzavce ?)\\n\\n7\\n00:00:34,000 --> 00:00:36,500\\n(napravite to ponovno danas, kao što ste i jučer )\\n\\n8\\n00:00:38,000 --> 00:00:40,000\\n(ne možete biti takvi ignoranti (budale))\\n\\n9\\n00:00:43,400 --> 00:00:48,199\\nNaređujem vam da prestanete narušavati javni red i mir!\\n\\n10\\n00:00:48,500 --> 00:00:53,200\\nAko ne prestanete, morati ćemo poduzeti prisilne drastične mjere.\\n\\n11\\n00:01:06,000 --> 00:01:08,400\\nVi ste na našoj strani!\\n\\n12\\n00:01:15,000 --> 00:01:16,800\\n(Mi smo u miru.)\\n\\n13\\n00:01:21,000 --> 00:01:22,400\\nDosta nam je!\\n\\n14\\n00:01:22,800 --> 00:01:24,000\\nVlade!\\n\\n15\\n00:01:25,500 --> 00:01:27,600\\nPolicajci,vi ste dobri!\\n\\n16\\n00:01:29,200 --> 00:01:31,300\\nDosta nam je naše Vlade!\\n\\n17\\n00:01:33,500 --> 00:01:35,500\\nJa sam isto državni službenik!\\n\\n18\\n00:01:36,200 --> 00:01:37,800\\nDržimo se zajedno!\\n\\n19\\n00:01:38,200 --> 00:01:39,800\\nNemojte se boriti protiv nas!\\n\\n20\\n00:01:41,000 --> 00:01:42,800\\nSjebali su našu zemlju!\\n\\n21\\n00:01:45,000 --> 00:01:50,200\\nNaređujem vam ponovno da prestanete narušavati javni red i mir!\\n\\n22\\n00:01:57,000 --> 00:02:05,200\\nAko ne prestenete narušavati javni red i mir,\\nmorati ćemo poduzeti prisilne drastične mjere�',\n", + " 'bytes': 1640,\n", + " 'sha1': '0rc2g9whyq4d40dzn4gh7rcbzpwlm2i',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93482394,\n", + " 'timestamp': '2013-03-28T21:55:49Z',\n", + " 'user': {'id': 234501, 'text': 'Sporti'},\n", + " 'page': {'id': 25334743,\n", + " 'title': 'Ukaz!.webm.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:03,500 --> 00:00:07,700 Vyzývám všechny účastníky nepovoleného shromáždění, 1 00:00:08,200 --> 00:00:12,500 aby zanechali rušení veřejné...'\",\n", + " 'text': '0\\n00:00:03,500 --> 00:00:07,700\\nVyzývám všechny účastníky nepovoleného shromáždění,\\n\\n1\\n00:00:08,200 --> 00:00:12,500\\naby zanechali rušení veřejného pořádku a klidu.\\n\\n2\\n00:00:14,200 --> 00:00:16,000\\nRozkazuji vám, \\n\\n3\\n00:00:16,300 --> 00:00:20,500\\nabyste přestali s rušením veřejného pořádku a klidu.\\n\\n4\\n00:00:21,000 --> 00:00:24,500\\n(do deseti hodin můžem dávat najevo své mínění!)\\n\\n5\\n00:00:26,000 --> 00:00:27,500\\n(jak není přihlášený?)\\n\\n6\\n00:00:29,800 --> 00:00:32,100\\n(to do nás zas vypustíte slzák?)\\n\\n7\\n00:00:34,000 --> 00:00:36,500\\n(udělejte to ještě dneska..., včera to bylo to samé)\\n\\n8\\n00:00:38,000 --> 00:00:40,000\\n(nemůžete být takoví ignoranti)\\n\\n9\\n00:00:43,400 --> 00:00:48,199\\nRozkazuji vám, abyste přestali s rušením veřejného pořádku a klidu!\\n\\n10\\n00:00:48,500 --> 00:00:53,200\\nV opačném případě budou použity donucovací prostředky!\\n\\n11\\n00:01:06,000 --> 00:01:08,400\\nVšak vy jste též na naší straně!\\n\\n12\\n00:01:15,000 --> 00:01:16,800\\n(klidně stojíme)\\n\\n13\\n00:01:21,000 --> 00:01:22,400\\nMáme vás dost!\\n\\n14\\n00:01:22,800 --> 00:01:24,000\\nVlády!\\n\\n15\\n00:01:25,500 --> 00:01:27,600\\nPolicajti jste v pohodě!\\n\\n16\\n00:01:29,200 --> 00:01:31,300\\nDost vás máme vlády!\\n\\n17\\n00:01:33,500 --> 00:01:35,500\\nJá jsem taky veřejný sektor!\\n\\n18\\n00:01:36,200 --> 00:01:37,800\\nBudem držet s policajtama! \\n\\n19\\n00:01:38,200 --> 00:01:39,800\\nNe bojujte proti nám!\\n\\n20\\n00:01:41,000 --> 00:01:42,800\\nZkurvili nám stát!\\n\\n21\\n00:01:45,000 --> 00:01:50,200\\nZnova rozkazuji, abyste přestali s rušením veřejného pořádku a klidu!\\n\\n22\\n00:01:57,000 --> 00:02:05,200\\nJestliže nepřestanete s rušením veřejného pořádku a klidu, \\nbudou použity donucovací prostředky�',\n", + " 'bytes': 1742,\n", + " 'sha1': 'cmee0b69oe063czwigmbhyz5cf8ma58',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93482396,\n", + " 'timestamp': '2013-03-28T21:55:51Z',\n", + " 'user': {'id': 234501, 'text': 'Sporti'},\n", + " 'page': {'id': 25334744,\n", + " 'title': 'Ukaz!.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:03,500 --> 00:00:07,700 I urge all participants of the public meeting - which is not registered 1 00:00:08,200 --> 00:00:12,500 to stop violating publi...'\",\n", + " 'text': '0\\n00:00:03,500 --> 00:00:07,700\\nI urge all participants of the public meeting - which is not registered\\n\\n1\\n00:00:08,200 --> 00:00:12,500\\nto stop violating public peace and order!\\n\\n2\\n00:00:14,200 --> 00:00:16,000\\nI order you, \\n\\n3\\n00:00:16,300 --> 00:00:20,500\\nto stop violating public peace and order.\\n\\n4\\n00:00:21,000 --> 00:00:24,500\\n(we can express our opinion after 10pm)\\n\\n5\\n00:00:26,000 --> 00:00:27,500\\n(who’s not registered?)\\n\\n6\\n00:00:29,800 --> 00:00:32,100\\n(Will you use tear gas again?)\\n\\n7\\n00:00:34,000 --> 00:00:36,500\\n(do it again today, like you did yesterday)\\n\\n8\\n00:00:38,000 --> 00:00:40,000\\n(you can’t be so ignorant)\\n\\n9\\n00:00:43,400 --> 00:00:48,199\\nI order you to stop violating public peace and order! \\n\\n10\\n00:00:48,500 --> 00:00:53,200\\nIf you don’t stop, coercive measures will be used!\\n\\n11\\n00:01:06,000 --> 00:01:08,400\\nYou are on our side!\\n\\n12\\n00:01:15,000 --> 00:01:16,800\\n(We stand in peace)\\n\\n13\\n00:01:21,000 --> 00:01:22,400\\nWe have enough!\\n\\n14\\n00:01:22,800 --> 00:01:24,000\\nOf government!\\n\\n15\\n00:01:25,500 --> 00:01:27,600\\nCops you are good!\\n\\n16\\n00:01:29,200 --> 00:01:31,300\\nWe have enough of our government!\\n\\n17\\n00:01:33,500 --> 00:01:35,500\\nI am also public serveant!\\n\\n18\\n00:01:36,200 --> 00:01:37,800\\nLet’s stick with the police! \\n\\n19\\n00:01:38,200 --> 00:01:39,800\\nDon’t fight against us!\\n\\n20\\n00:01:41,000 --> 00:01:42,800\\nThey fucked up our country!\\n\\n21\\n00:01:45,000 --> 00:01:50,200\\nI order again to stop violating public peace and order! \\n\\n22\\n00:01:57,000 --> 00:02:05,200\\nIf you don’t stop violating public peace and order, \\ncoercive measures will be used!',\n", + " 'bytes': 1600,\n", + " 'sha1': 'oxkcp28asi7fx6g081zcd25gfoo5cwf',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93482398,\n", + " 'timestamp': '2013-03-28T21:55:53Z',\n", + " 'user': {'id': 234501, 'text': 'Sporti'},\n", + " 'page': {'id': 25334745,\n", + " 'title': 'Ukaz!.webm.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:03,500 --> 00:00:07,700 Καλώ όλους τους συμμετέχοντες της δημόσιας συνάντησης - η οποία δεν έχ...'\",\n", + " 'text': '0\\n00:00:03,500 --> 00:00:07,700\\nΚαλώ όλους τους συμμετέχοντες της δημόσιας συνάντησης - η οποία δεν έχει καταχωρηθεί\\n\\n1\\n00:00:08,200 --> 00:00:12,500\\nνα σταματήσετε να παραβιάζετε την δημόσια ειρήνη και ευταξία!\\n\\n2\\n00:00:14,200 --> 00:00:16,000\\nΣας διατάζω,\\n\\n3\\n00:00:16,300 --> 00:00:20,500\\nνα σταματήσετε να παραβιάζετε την δημόσια ειρήνη και ευταξία\\n\\n4\\n00:00:21,000 --> 00:00:24,500\\n(μπορούμε να εκφράσουμε τη γνώμη μας μετά τις 22:00)\\n\\n5\\n00:00:26,000 --> 00:00:27,500\\n(Ποιος δεν είναι εγγεγραμμένος?)\\n\\n6\\n00:00:29,800 --> 00:00:32,100\\n(Θα κάνετε χρήση δακρυγόνων και πάλι?)\\n\\n7\\n00:00:34,000 --> 00:00:36,500\\n(κάντε το και πάλι σήμερα, όπως κάνατε χθες)\\n\\n8\\n00:00:38,000 --> 00:00:40,000\\n(δεν μπορείτε να είστε τόσο αδαείς)\\n\\n9\\n00:00:43,400 --> 00:00:48,199\\nΣας διατάζω να σταματήσετε να παραβιάζετε την δημόσια ειρήνη και ευταξία!\\n\\n10\\n00:00:48,500 --> 00:00:53,200\\nΑν δεν σταματήσετε, αναγκαστικά μέτρα θα χρησιμοποιηθούν!\\n\\n11\\n00:01:06,000 --> 00:01:08,400\\n(Είστε στο πλευρό μας!)\\n\\n12\\n00:01:15,000 --> 00:01:16,800\\n(Βρισκόμαστε εδώ ειρηνικά)\\n\\n13\\n00:01:21,000 --> 00:01:22,400\\nΑνεχτήκαμε αρκετά!\\n\\n14\\n00:01:22,800 --> 00:01:24,000\\nΑπό την Κυβέρνηση\\n\\n15\\n00:01:25,500 --> 00:01:27,600\\nΜπάτσοι είσαστε καλοί\\n\\n16\\n00:01:29,200 --> 00:01:31,300\\nΑνεχτήκαμε αρκετά από την κυβέρνηση!\\n\\n17\\n00:01:33,500 --> 00:01:35,500\\nείμαι και εγώ δημόσιος υπάλληλος!\\n\\n18\\n00:01:36,200 --> 00:01:37,800\\nΑς κάτσουμε μαζί με την αστυνομία!\\n\\n19\\n00:01:38,200 --> 00:01:39,800\\nΜην πολεμάτε εναντίον μας!\\n\\n20\\n00:01:41,000 --> 00:01:42,800\\nΠηδήξαν την χώρα μας!\\n\\n21\\n00:01:45,000 --> 00:01:50,200\\nΣας διατάζω ξανά να σταματήσετε να παραβιάζετε την δημόσια ειρήνη και ευταξία!\\n\\n22\\n00:01:57,000 --> 00:02:05,200\\nΑν δεν σταματήσετε τις παραβιάσεις της δημόσιας ειρήνης και της τάξης,\\nαναγκαστικά μέτρα θα χρησιμοποιηθούν�',\n", + " 'bytes': 2608,\n", + " 'sha1': '6fhgnqf84mgvikva1ts14cmrsn6h9da',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93482399,\n", + " 'timestamp': '2013-03-28T21:55:55Z',\n", + " 'user': {'id': 234501, 'text': 'Sporti'},\n", + " 'page': {'id': 25334746,\n", + " 'title': 'Ukaz!.webm.iw.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:03,500 --> 00:00:07,700 אני קורא לכל המשתתפים במפגש הציבורי - שאינם רשומים 1 00:00:08,200 --> 00:00:12,500 ל...'\",\n", + " 'text': '0\\n00:00:03,500 --> 00:00:07,700\\nאני קורא לכל המשתתפים במפגש הציבורי - שאינם רשומים\\n\\n1\\n00:00:08,200 --> 00:00:12,500\\nלהפסיק להפר את שלום וסדר ציבורי!\\n\\n2\\n00:00:14,200 --> 00:00:16,000\\nאני מצווה עליך\\n\\n3\\n00:00:16,300 --> 00:00:20,500\\nלהפסיק להפר את שלום וסדר ציבורי.\\n\\n4\\n00:00:21,000 --> 00:00:24,500\\n(אנחנו יכולים להביע את דעתנו לאחר 22:00)\\n\\n5\\n00:00:26,000 --> 00:00:27,500\\n(מי שלא נרשם?)\\n\\n6\\n00:00:29,800 --> 00:00:32,100\\n(האם אתה משתמש בגז מדמיע שוב?)\\n\\n7\\n00:00:34,000 --> 00:00:36,500\\n(תעשה את זה שוב היום, כמו שעשית אתמול)\\n\\n8\\n00:00:38,000 --> 00:00:40,000\\n(אתה לא יכול להיות כל כך בורה)\\n\\n9\\n00:00:43,400 --> 00:00:48,199\\nאני מצווה עליך להפסיק להפר את שלום וסדר ציבורי!\\n\\n10\\n00:00:48,500 --> 00:00:53,200\\nאם לא תפסיק,יהיה שימוש באמצעי כפייה !\\n\\n11\\n00:01:06,000 --> 00:01:08,400\\nאתה נמצא בצד שלנו!\\n\\n12\\n00:01:15,000 --> 00:01:16,800\\n(אנחנו עומדים בשלום)\\n\\n13\\n00:01:21,000 --> 00:01:22,400\\nהספיק לנו!\\n\\n14\\n00:01:22,800 --> 00:01:24,000\\nמהממשלה!\\n\\n15\\n00:01:25,500 --> 00:01:27,600\\nשוטרים אתם טובים!\\n\\n16\\n00:01:29,200 --> 00:01:31,300\\nהספיק לנו מהממשלה שלנו!\\n\\n17\\n00:01:33,500 --> 00:01:35,500\\nגם אני משרת את הציבור!\\n\\n18\\n00:01:36,200 --> 00:01:37,800\\nבואו נצמד להערכות המשטרה!\\n\\n19\\n00:01:38,200 --> 00:01:39,800\\nאל תילחמו נגדנו!\\n\\n20\\n00:01:41,000 --> 00:01:42,800\\nהם דפקו את המדינה שלנו!\\n\\n21\\n00:01:45,000 --> 00:01:50,200\\nאני מזמין שוב להפסיק להפר את שלום וסדר ציבורי!\\n\\n22\\n00:01:57,000 --> 00:02:05,200\\nאם לא תפסיקו להפר את שלום וסדר ציבורי,\\nיהיה שימוש באמצעי כפייה�',\n", + " 'bytes': 1964,\n", + " 'sha1': 's69xadrzlk6iglogfx14slb82h5c4it',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93482401,\n", + " 'timestamp': '2013-03-28T21:55:58Z',\n", + " 'user': {'id': 234501, 'text': 'Sporti'},\n", + " 'page': {'id': 25334748,\n", + " 'title': 'Ukaz!.webm.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:03,500 --> 00:00:07,700 Invito tutti i participanti di questo comizio, chi non sono denunciati, 1 00:00:08,200 --> 00:00:12,500 per fermare trasgredir...'\",\n", + " 'text': \"0\\n00:00:03,500 --> 00:00:07,700\\nInvito tutti i participanti di questo comizio, \\nchi non sono denunciati,\\n\\n1\\n00:00:08,200 --> 00:00:12,500\\nper fermare trasgredire ordine pubblico e pace.\\n\\n2\\n00:00:14,200 --> 00:00:16,000\\nVi ordino\\n0:00:16.300,0:00:20.500\\nper fermare trasgredire ordine pubblico e pace.\\n\\n3\\n00:00:21,000 --> 00:00:24,500\\n(fino a dieci ora possiamo dire il nostro opinione!)\\n\\n4\\n00:00:26,000 --> 00:00:27,500\\n(come non e' denunciato?)\\n\\n5\\n00:00:29,800 --> 00:00:32,100\\n(buttate nuovamente il gas lakrimogeno a noi?)\\n\\n6\\n00:00:34,000 --> 00:00:36,500\\n(fate anche oggiÉ uguale come ieri)\\n\\n7\\n00:00:38,000 --> 00:00:40,000\\n(non potete essere cosi ignoranti)\\n\\n8\\n00:00:43,400 --> 00:00:48,199\\nVi ordino per fermare trasgredire ordine pubblico e pace!\\n\\n9\\n00:00:48,500 --> 00:00:53,200\\nSe no usiamo i mezzi coercitivi!\\n\\n10\\n00:01:06,000 --> 00:01:08,400\\nAnche voi siete a nostra parte!\\n\\n11\\n00:01:15,000 --> 00:01:16,800\\n(tranquillamente siamo in piedi)\\n\\n12\\n00:01:21,000 --> 00:01:22,400\\nSiamo stufi!\\n\\n13\\n00:01:22,800 --> 00:01:24,000\\nGoverno!\\n\\n14\\n00:01:25,500 --> 00:01:27,600\\nPolizziotti siete buoni!\\n\\n15\\n00:01:29,200 --> 00:01:31,300\\nSiamo stufi di governo!\\n\\n16\\n00:01:33,500 --> 00:01:35,500\\nAnch' io sono settore pubblico!\\n\\n17\\n00:01:36,200 --> 00:01:37,800\\nSiamo con polizziotti!\\n\\n18\\n00:01:38,200 --> 00:01:39,800\\nNon lottare contra noi!\\n\\n19\\n00:01:41,000 --> 00:01:42,800\\nAvete scopato il nostro stato!\\n\\n20\\n00:01:45,000 --> 00:01:50,200\\nVi ordino per fermare trasgredire ordine pubblico e pace!\\n\\n21\\n00:01:57,000 --> 00:02:05,200\\nSe non fermate, usiamo i mezzi coercitivi!\",\n", + " 'bytes': 1575,\n", + " 'sha1': 'rjcjhl1um56bnte90xs1sii06dbphxs',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93482404,\n", + " 'timestamp': '2013-03-28T21:56:00Z',\n", + " 'user': {'id': 234501, 'text': 'Sporti'},\n", + " 'page': {'id': 25334750,\n", + " 'title': 'Ukaz!.webm.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:03,500 --> 00:00:07,700 Ги повикувам сите учесници на собирот, кој не е пријавен, 1 00:00:08,200 --> 00:0...'\",\n", + " 'text': '0\\n00:00:03,500 --> 00:00:07,700\\nГи повикувам сите учесници на собирот, кој не е пријавен,\\n\\n1\\n00:00:08,200 --> 00:00:12,500\\nда престанат со кршењето на јавниот ред и мир.\\n\\n2\\n00:00:14,200 --> 00:00:16,000\\nВи наредувам,\\n\\n3\\n00:00:16,300 --> 00:00:20,500\\nда престанете со кршењето на јавниот ред и мир.\\n\\n4\\n00:00:21,000 --> 00:00:24,500\\n(до десет часот можеме да го изразуваме своето мислење!)\\n\\n5\\n00:00:26,000 --> 00:00:27,500\\n(како не е пријавен?)\\n\\n6\\n00:00:29,800 --> 00:00:32,100\\n(пак ли ќе фрлате солзавец по нас?)\\n\\n7\\n00:00:34,000 --> 00:00:36,500\\n(ајде и нас денес ..., вчера ионака исто направивте)\\n\\n8\\n00:00:38,000 --> 00:00:40,000\\n(не можете да бидете толку игнорантни)\\n\\n9\\n00:00:43,400 --> 00:00:48,199\\nВи наредувам да престанете со кршење на јавниот ред и мир!\\n\\n10\\n00:00:48,500 --> 00:00:53,200\\nВо спротивно ќе бидат употребени присилни средства!\\n\\n11\\n00:01:06,000 --> 00:01:08,400\\nИ вие сте на наша страна!\\n\\n12\\n00:01:15,000 --> 00:01:16,800\\n(мирно стоиме)\\n\\n13\\n00:01:21,000 --> 00:01:22,400\\nДоста ни е од вас!\\n\\n14\\n00:01:22,800 --> 00:01:24,000\\nВладата!\\n\\n15\\n00:01:25,500 --> 00:01:27,600\\nДобри сте полицајци!\\n\\n16\\n00:01:29,200 --> 00:01:31,300\\nДоста ни е од владата!\\n\\n17\\n00:01:33,500 --> 00:01:35,500\\nИ јас сум јавен сектор!\\n\\n18\\n00:01:36,200 --> 00:01:37,800\\nАјде со полицајците да бидеме!\\n\\n19\\n00:01:38,200 --> 00:01:39,800\\nНе борете се против нас!\\n\\n20\\n00:01:41,000 --> 00:01:42,800\\nНи ја поебаа државата!\\n\\n21\\n00:01:45,000 --> 00:01:50,200\\nПовторно ви наредувам, да престанете со кршење на јавниот ред и мир!\\n\\n22\\n00:01:57,000 --> 00:02:05,200\\nАко не престанете со кршење на јавниот ред и мир, ќе бидат употребени присилни средства�',\n", + " 'bytes': 2300,\n", + " 'sha1': '6dljgasujg6x0xtcwv5cy3aikq7py4h',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93482406,\n", + " 'timestamp': '2013-03-28T21:56:02Z',\n", + " 'user': {'id': 234501, 'text': 'Sporti'},\n", + " 'page': {'id': 25334751,\n", + " 'title': 'Ukaz!.webm.sl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:03,500 --> 00:00:07,700 Pozivam vse udeležence shoda, ki ni prijavljen, 1 00:00:08,200 --> 00:00:12,500 da prenehate s kršitvami javnega reda in miru...'\",\n", + " 'text': '0\\n00:00:03,500 --> 00:00:07,700\\nPozivam vse udeležence shoda, ki ni prijavljen,\\n\\n1\\n00:00:08,200 --> 00:00:12,500\\nda prenehate s kršitvami javnega reda in miru.\\n\\n2\\n00:00:14,200 --> 00:00:16,000\\nUkazujem Vam, \\n\\n3\\n00:00:16,300 --> 00:00:20,500\\nda prenehate s kršitvami javnega reda in miru.\\n\\n4\\n00:00:21,000 --> 00:00:24,500\\n(do desete ure lahko izražamo svoje mnenje!)\\n\\n5\\n00:00:26,000 --> 00:00:27,500\\n(kako ni prijavljen?)\\n\\n6\\n00:00:29,800 --> 00:00:32,100\\n(kaj boste spet solzilec zabrisali v nas?)\\n\\n7\\n00:00:34,000 --> 00:00:36,500\\n(dajte še nas danes …., saj ste včeraj isto)\\n\\n8\\n00:00:38,000 --> 00:00:40,000\\n(ne morte bit tko ignorantski)\\n\\n9\\n00:00:43,400 --> 00:00:48,199\\nUkazujem Vam, da prenehate s kršitvami javnega reda in miru! \\n\\n10\\n00:00:48,500 --> 00:00:53,200\\nV nasprotnem primeru bodo uporabljena prisilna sredstva!\\n\\n11\\n00:01:06,000 --> 00:01:08,400\\nTut vi ste na naši strani!\\n\\n12\\n00:01:15,000 --> 00:01:16,800\\n(mirno stojimo)\\n\\n13\\n00:01:21,000 --> 00:01:22,400\\nDost vas mamo!\\n\\n14\\n00:01:22,800 --> 00:01:24,000\\nVlade!\\n0:01:25.500,0:01:27.600\\nPolicaji dobri ste!\\n\\n15\\n00:01:29,200 --> 00:01:31,300\\nDost vas mamo vlade!\\n\\n16\\n00:01:33,500 --> 00:01:35,500\\nTudi jaz sem javni sektor!\\n\\n17\\n00:01:36,200 --> 00:01:37,800\\nDajmo s policaji držat! \\n\\n18\\n00:01:38,200 --> 00:01:39,800\\nNe se borit proti nam!\\n\\n19\\n00:01:41,000 --> 00:01:42,800\\nZjebal so nam državo!\\n\\n20\\n00:01:45,000 --> 00:01:50,200\\nPonovno ukazujem, da prenehate s kršitvami javnega reda in miru! \\n\\n21\\n00:01:57,000 --> 00:02:05,200\\nV kolikor ne boste prenehali s kršitvami javnega reda in miru, \\nbodo uporabljena prisilna sredstva!�',\n", + " 'bytes': 1608,\n", + " 'sha1': '5i5mfqr1780uzf1xd9xs4oh9tuqcr2y',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 629940141,\n", + " 'timestamp': '2022-02-15T09:35:09Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25340178,\n", + " 'title': 'Mazurek Dabrowskiego.ogg.fa.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,234\\nلهستان هنوز از دست نرفته است\\n\\n2\\n00:00:03,296 --> 00:00:06,000\\nتا زمانی که ما زنده ایم\\n\\n3\\n00:00:06,600 --> 00:00:09,793\\nآنگاه که بیگانه تصرفش کند\\n\\n4\\n00:00:09,843 --> 00:00:12,764\\nما باید با سر شمشیر پس بگیریم\\n\\n5\\n00:00:13,242 --> 00:00:16,548\\nبه پیش، به پیش، دوبرووسکی\\n\\n6\\n00:00:16,597 --> 00:00:19,500\\nاز ایتالیا به لهستان\\n\\n7\\n00:00:19,757 --> 00:00:23,243\\nبگذار اکنون به ملت بپیوندیم\\n\\n8\\n00:00:23,263 --> 00:00:26,225\\nتحت فرمان تو\\n\\n9\\n00:00:26,691 --> 00:00:29,986\\nبه پیش، به پیش، دوبرووسکی\\n\\n10\\n00:00:30,037 --> 00:00:33,460\\nاز ایتالیا به لهستان\\n\\n11\\n00:00:33,503 --> 00:00:36,891\\nبگذار اکنون به ملت بپیوندیم\\n\\n12\\n00:00:36,925 --> 00:00:40,278\\nتحت فرمان تو',\n", + " 'bytes': 909,\n", + " 'sha1': '2iivcvgi55eypzz57j6kh4xs6p414p2',\n", + " 'parent_id': 93504786,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93548786,\n", + " 'timestamp': '2013-03-29T17:07:32Z',\n", + " 'user': {'text': '207.108.208.247'},\n", + " 'page': {'id': 25348161,\n", + " 'title': 'WWII submarine dive klaxon.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:04,000 Awooga. Awooga. Awooga. Awooga.'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\nAwooga. Awooga. Awooga. Awooga.',\n", + " 'bytes': 63,\n", + " 'sha1': 'l4htsx1ysxar4l7ky6ndq49m60ejc71',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93582232,\n", + " 'timestamp': '2013-03-30T07:21:02Z',\n", + " 'user': {'id': 899664, 'text': 'DonRumata'},\n", + " 'page': {'id': 25355978,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'субтитры к [[s:Обращение к польскому народу]]',\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nДорогие друзья. \\nУважаемые граждане Республики Польша.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nЯ и все граждане России\\nпотрясены страшной трагедией —\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nгибелью Президента Республики Польша\\nЛеха Качиньского,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\nего супруги Марии,\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\nвсех польских граждан,\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nнаходившихся на борту самолета\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nпотерпевшего катастрофу.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nВ эти дни мы вместе проводили\\nпоминальные мероприятия в Катыни,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nвместе скорбели по жертвам\\nтоталитарных времен.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nЛех Качиньский летел в Россию,\\nчтобы лично отдать дань памяти\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nпогибшим польским офицерам\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\nи как Президент,\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\nи как гражданин своей страны.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nВсе россияне разделяют с вами\\nскорбь и траур.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nОбещаю, что все обстоятельства\\nэтой трагедии\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nбудут расследованы самым тщательным образом\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nв теснейшем взаимодействии\\nс польской стороной.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nМною даны исчерпывающие указания\\nправоохранительным структурам.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nОт имени российского народа\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nвыражаю самые глубокие,\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\nсамые искренние соболезнования\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nпольскому народу,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nчувства сострадания и поддержки\\nродным и близким погибших.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nВ понедельник 12 апреля в России\\nбудет объявлен национальный траур.',\n", + " 'bytes': 2625,\n", + " 'sha1': 'pr2kmtlkj0w8zrjkxc63k6sh1yreglm',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93583040,\n", + " 'timestamp': '2013-03-30T07:35:48Z',\n", + " 'user': {'id': 899664, 'text': 'DonRumata'},\n", + " 'page': {'id': 25356061,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Dmitry Medvedev addressed the People of Poland',\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDear friends,\\ndear citizens of the Republic of Poland.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nI and all citizens of Russia\\nare shocked by the terrible tragedy\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nthat occurred, the death of the President\\nof the Republic of Poland Lech Kaczynski,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\nhis wife Maria,\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\nand all Polish citizens\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\non board the plane\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nthat crashed near Smolensk.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nThese days we have been holding\\njoint commemorative events at Katyn\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nand together we grieved for the victims\\nof the totalitarian past.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nLech Kaczynski flew to Russia\\nto personally pay tribute\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nto the perished Polish officers\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\nboth as President\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\nand as their fellow citizen.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nAll Russians share your grief and mourning.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nI promise that all the circumstances\\nof this tragedy\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nwill be investigated with utmost care\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nin close collaboration with\\nthe Polish authorities.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nI have given comprehensive orders to \\nthis effect to law enforcement agencies.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nOn behalf of the people of Russia,\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nI want to express my deepest,\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\nmost heartfelt condolences\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nto the people of Poland,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nand my empathy and support \\nto families and friends of the victims.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nMonday April 12, 2010 will be declared \\na national day of mourning in Russia.',\n", + " 'bytes': 1894,\n", + " 'sha1': 'l6kt1m7aj03oba4en2u2zwvaxd2a3y3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93584070,\n", + " 'timestamp': '2013-03-30T08:03:16Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25356253,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash crop.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Duplicate Russian subtitles from non crop version',\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nДорогие друзья. \\nУважаемые граждане Республики Польша.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nЯ и все граждане России\\nпотрясены страшной трагедией —\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nгибелью Президента Республики Польша\\nЛеха Качиньского,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\nего супруги Марии,\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\nвсех польских граждан,\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nнаходившихся на борту самолета\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nпотерпевшего катастрофу.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nВ эти дни мы вместе проводили\\nпоминальные мероприятия в Катыни,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nвместе скорбели по жертвам\\nтоталитарных времен.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nЛех Качиньский летел в Россию,\\nчтобы лично отдать дань памяти\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nпогибшим польским офицерам\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\nи как Президент,\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\nи как гражданин своей страны.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nВсе россияне разделяют с вами\\nскорбь и траур.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nОбещаю, что все обстоятельства\\nэтой трагедии\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nбудут расследованы самым тщательным образом\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nв теснейшем взаимодействии\\nс польской стороной.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nМною даны исчерпывающие указания\\nправоохранительным структурам.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nОт имени российского народа\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nвыражаю самые глубокие,\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\nсамые искренние соболезнования\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nпольскому народу,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nчувства сострадания и поддержки\\nродным и близким погибших.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nВ понедельник 12 апреля в России\\nбудет объявлен национальный траур.',\n", + " 'bytes': 2625,\n", + " 'sha1': 'pr2kmtlkj0w8zrjkxc63k6sh1yreglm',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93584093,\n", + " 'timestamp': '2013-03-30T08:04:04Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25356260,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash crop.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Duplicate from non crop version',\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDear friends,\\ndear citizens of the Republic of Poland.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nI and all citizens of Russia\\nare shocked by the terrible tragedy\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nthat occurred, the death of the President\\nof the Republic of Poland Lech Kaczynski,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\nhis wife Maria,\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\nand all Polish citizens\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\non board the plane\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nthat crashed near Smolensk.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nThese days we have been holding\\njoint commemorative events at Katyn\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nand together we grieved for the victims\\nof the totalitarian past.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nLech Kaczynski flew to Russia\\nto personally pay tribute\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nto the perished Polish officers\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\nboth as President\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\nand as their fellow citizen.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nAll Russians share your grief and mourning.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nI promise that all the circumstances\\nof this tragedy\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nwill be investigated with utmost care\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nin close collaboration with\\nthe Polish authorities.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nI have given comprehensive orders to \\nthis effect to law enforcement agencies.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nOn behalf of the people of Russia,\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nI want to express my deepest,\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\nmost heartfelt condolences\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nto the people of Poland,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nand my empathy and support \\nto families and friends of the victims.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nMonday April 12, 2010 will be declared \\na national day of mourning in Russia.',\n", + " 'bytes': 1894,\n", + " 'sha1': 'l6kt1m7aj03oba4en2u2zwvaxd2a3y3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93584677,\n", + " 'timestamp': '2013-03-30T08:17:09Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25356359,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Use Polish transcript at http://kremlin.ru/transcripts/7423',\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDrodzy przyjaciele.\\nSzanowni obywatele Rzeczypospolitej Polskiej.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nJa i wszyscy obywatele Rosji\\njesteśmy głęboko wstrząśnięci straszną tragedią\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nśmiercią Prezydenta Rzeczypospolitej Polskiej Lecha Kaczyńskiego,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\njego żony Marii\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\ni wszystkich obywateli polskich, \\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nktórzy znajdowali się na \\n\\n7\\n00:00:22,137 --> 00:00:23,677\\npokładzie rozbitego samolotu.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nW ostatnich dniach wspólnie organizowaliśmy uroczystości rocznicowe w Katyniu,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nrazem składaliśmy hołd ofiarom totalitaryzmu.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nKaczyński leciał do Rosji, aby osobiście oddać cześć pamięci\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nzabitych polskich oficerów \\n\\n12\\n00:00:41,004 --> 00:00:42,919\\njako Prezydent,\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\na także jako obywatel swojego kraju.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nWszyscy Rosjanie łączą się z wami w cierpieniu i żałobie.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nObiecuję, że okoliczności tej tragedii \\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nzostaną jak najdokładniej zbadane \\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nw ścisłej współpracy ze stroną polską.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nOrgany ścigania otrzymały ode mnie wyczerpujące instrukcje.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nW imieniu narodu rosyjskiego\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nskładam najgłębsze\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\ni najszczersze wyrazy współczucia\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nnarodowi polskiemu,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nprzekazując także wyrazy solidarności i wsparcia rodzinom i bliskim ofiar.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nW poniedziałek 12 kwietnia w Rosji zostanie ogłoszona żałoba narodowa.',\n", + " 'bytes': 1929,\n", + " 'sha1': 'l7bvsytai0f4edkdi3nus1la5uaue3s',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93584713,\n", + " 'timestamp': '2013-03-30T08:18:01Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25356366,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash crop.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Used Polish transcript',\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDrodzy przyjaciele.\\nSzanowni obywatele Rzeczypospolitej Polskiej.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nJa i wszyscy obywatele Rosji\\njesteśmy głęboko wstrząśnięci straszną tragedią\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nśmiercią Prezydenta Rzeczypospolitej Polskiej Lecha Kaczyńskiego,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\njego żony Marii\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\ni wszystkich obywateli polskich, \\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nktórzy znajdowali się na \\n\\n7\\n00:00:22,137 --> 00:00:23,677\\npokładzie rozbitego samolotu.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nW ostatnich dniach wspólnie organizowaliśmy uroczystości rocznicowe w Katyniu,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nrazem składaliśmy hołd ofiarom totalitaryzmu.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nKaczyński leciał do Rosji, aby osobiście oddać cześć pamięci\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nzabitych polskich oficerów \\n\\n12\\n00:00:41,004 --> 00:00:42,919\\njako Prezydent,\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\na także jako obywatel swojego kraju.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nWszyscy Rosjanie łączą się z wami w cierpieniu i żałobie.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nObiecuję, że okoliczności tej tragedii \\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nzostaną jak najdokładniej zbadane \\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nw ścisłej współpracy ze stroną polską.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nOrgany ścigania otrzymały ode mnie wyczerpujące instrukcje.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nW imieniu narodu rosyjskiego\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nskładam najgłębsze\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\ni najszczersze wyrazy współczucia\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nnarodowi polskiemu,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nprzekazując także wyrazy solidarności i wsparcia rodzinom i bliskim ofiar.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nW poniedziałek 12 kwietnia w Rosji zostanie ogłoszona żałoba narodowa.',\n", + " 'bytes': 1929,\n", + " 'sha1': 'l7bvsytai0f4edkdi3nus1la5uaue3s',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 416998982,\n", + " 'timestamp': '2020-05-04T07:15:38Z',\n", + " 'user': {'id': 2073340, 'text': 'Jdx'},\n", + " 'page': {'id': 25356438,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash (Polish language).ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/80.68.229.77|80.68.229.77]] ([[User talk:80.68.229.77|talk]]) to last revision by WhisperToMe',\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDrodzy przyjaciele.\\nSzanowni obywatele Rzeczypospolitej Polskiej.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nJa i wszyscy obywatele Rosji\\njesteśmy głęboko wstrząśnięci straszną tragedią\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nśmiercią Prezydenta Rzeczypospolitej Polskiej Lecha Kaczyńskiego,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\njego żony Marii\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\ni wszystkich obywateli polskich, \\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nktórzy znajdowali się na \\n\\n7\\n00:00:22,137 --> 00:00:23,677\\npokładzie rozbitego samolotu.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nW ostatnich dniach wspólnie organizowaliśmy uroczystości rocznicowe w Katyniu,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nrazem składaliśmy hołd ofiarom totalitaryzmu.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nKaczyński leciał do Rosji, aby osobiście oddać cześć pamięci\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nzabitych polskich oficerów \\n\\n12\\n00:00:41,004 --> 00:00:42,919\\njako Prezydent,\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\na także jako obywatel swojego kraju.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nWszyscy Rosjanie łączą się z wami w cierpieniu i żałobie.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nObiecuję, że okoliczności tej tragedii \\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nzostaną jak najdokładniej zbadane \\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nw ścisłej współpracy ze stroną polską.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nOrgany ścigania otrzymały ode mnie wyczerpujące instrukcje.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nW imieniu narodu rosyjskiego\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nskładam najgłębsze\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\ni najszczersze wyrazy współczucia\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nnarodowi polskiemu,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nprzekazując także wyrazy solidarności i wsparcia rodzinom i bliskim ofiar.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nW poniedziałek 12 kwietnia w Rosji zostanie ogłoszona żałoba narodowa.',\n", + " 'bytes': 1929,\n", + " 'sha1': 'l7bvsytai0f4edkdi3nus1la5uaue3s',\n", + " 'parent_id': 409138517,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93585150,\n", + " 'timestamp': '2013-03-30T08:29:55Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25356444,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash (Polish language).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,700 --> 00:00:06,160 Dear friends, dear citizens of the Republic of Poland. 2 00:00:06,596 --> 00:00:12,096 I and all citizens of Russia are shocked...'\",\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDear friends,\\ndear citizens of the Republic of Poland.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nI and all citizens of Russia\\nare shocked by the terrible tragedy\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nthat occurred, the death of the President\\nof the Republic of Poland Lech Kaczynski,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\nhis wife Maria,\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\nand all Polish citizens\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\non board the plane\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nthat crashed near Smolensk.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nThese days we have been holding\\njoint commemorative events at Katyn\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nand together we grieved for the victims\\nof the totalitarian past.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nLech Kaczynski flew to Russia\\nto personally pay tribute\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nto the perished Polish officers\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\nboth as President\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\nand as their fellow citizen.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nAll Russians share your grief and mourning.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nI promise that all the circumstances\\nof this tragedy\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nwill be investigated with utmost care\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nin close collaboration with\\nthe Polish authorities.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nI have given comprehensive orders to \\nthis effect to law enforcement agencies.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nOn behalf of the people of Russia,\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nI want to express my deepest,\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\nmost heartfelt condolences\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nto the people of Poland,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nand my empathy and support \\nto families and friends of the victims.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nMonday April 12, 2010 will be declared \\na national day of mourning in Russia.',\n", + " 'bytes': 1894,\n", + " 'sha1': 'l6kt1m7aj03oba4en2u2zwvaxd2a3y3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93585168,\n", + " 'timestamp': '2013-03-30T08:30:19Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25356446,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash (Polish language).ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,700 --> 00:00:06,160 Дорогие друзья. Уважаемые граждане Республики Польша. 2 00:00:06,596 --> 00:00:1...'\",\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nДорогие друзья. \\nУважаемые граждане Республики Польша.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nЯ и все граждане России\\nпотрясены страшной трагедией —\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nгибелью Президента Республики Польша\\nЛеха Качиньского,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\nего супруги Марии,\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\nвсех польских граждан,\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nнаходившихся на борту самолета\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nпотерпевшего катастрофу.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nВ эти дни мы вместе проводили\\nпоминальные мероприятия в Катыни,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nвместе скорбели по жертвам\\nтоталитарных времен.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nЛех Качиньский летел в Россию,\\nчтобы лично отдать дань памяти\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nпогибшим польским офицерам\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\nи как Президент,\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\nи как гражданин своей страны.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nВсе россияне разделяют с вами\\nскорбь и траур.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nОбещаю, что все обстоятельства\\nэтой трагедии\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nбудут расследованы самым тщательным образом\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nв теснейшем взаимодействии\\nс польской стороной.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nМною даны исчерпывающие указания\\nправоохранительным структурам.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nОт имени российского народа\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nвыражаю самые глубокие,\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\nсамые искренние соболезнования\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nпольскому народу,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nчувства сострадания и поддержки\\nродным и близким погибших.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nВ понедельник 12 апреля в России\\nбудет объявлен национальный траур.',\n", + " 'bytes': 2625,\n", + " 'sha1': 'pr2kmtlkj0w8zrjkxc63k6sh1yreglm',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93591078,\n", + " 'timestamp': '2013-03-30T10:20:50Z',\n", + " 'user': {'id': 2765562, 'text': 'Valjean & Javert'},\n", + " 'page': {'id': 25357500,\n", + " 'title': 'En-Hamlet.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:05,400\\nThis file contains the spoken version of a Wikipedia article\\n\\n\\n1\\n00:00:05,500 --> 00:00:09,600\\non Hamlet, recorded by user ''karltalk'' on 26th October 2011.\",\n", + " 'bytes': 189,\n", + " 'sha1': 'nkk010y6dfs6w4m9h413ivy67zybvqk',\n", + " 'parent_id': 93590918,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93607599,\n", + " 'timestamp': '2013-03-30T16:13:33Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25361590,\n", + " 'title': 'MevEnglishscrolltext.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,700 --> 00:00:06,160 Дорогие друзья. Уважаемые граждане Республики Польша. 2 00:00:06,596 --> 00:00:1...'\",\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nДорогие друзья. \\nУважаемые граждане Республики Польша.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nЯ и все граждане России\\nпотрясены страшной трагедией —\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nгибелью Президента Республики Польша\\nЛеха Качиньского,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\nего супруги Марии,\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\nвсех польских граждан,\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nнаходившихся на борту самолета\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nпотерпевшего катастрофу.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nВ эти дни мы вместе проводили\\nпоминальные мероприятия в Катыни,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nвместе скорбели по жертвам\\nтоталитарных времен.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nЛех Качиньский летел в Россию,\\nчтобы лично отдать дань памяти\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nпогибшим польским офицерам\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\nи как Президент,\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\nи как гражданин своей страны.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nВсе россияне разделяют с вами\\nскорбь и траур.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nОбещаю, что все обстоятельства\\nэтой трагедии\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nбудут расследованы самым тщательным образом\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nв теснейшем взаимодействии\\nс польской стороной.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nМною даны исчерпывающие указания\\nправоохранительным структурам.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nОт имени российского народа\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nвыражаю самые глубокие,\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\nсамые искренние соболезнования\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nпольскому народу,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nчувства сострадания и поддержки\\nродным и близким погибших.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nВ понедельник 12 апреля в России\\nбудет объявлен национальный траур.',\n", + " 'bytes': 2625,\n", + " 'sha1': 'pr2kmtlkj0w8zrjkxc63k6sh1yreglm',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93607620,\n", + " 'timestamp': '2013-03-30T16:14:05Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25361603,\n", + " 'title': 'MevEnglishscrolltext.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,700 --> 00:00:06,160 Drodzy przyjaciele. Szanowni obywatele Rzeczypospolitej Polskiej. 2 00:00:06,596 --> 00:00:12,096 Ja i wszyscy obywatele Rosji ...'\",\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDrodzy przyjaciele.\\nSzanowni obywatele Rzeczypospolitej Polskiej.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nJa i wszyscy obywatele Rosji\\njesteśmy głęboko wstrząśnięci straszną tragedią\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nśmiercią Prezydenta Rzeczypospolitej Polskiej Lecha Kaczyńskiego,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\njego żony Marii\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\ni wszystkich obywateli polskich, \\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nktórzy znajdowali się na \\n\\n7\\n00:00:22,137 --> 00:00:23,677\\npokładzie rozbitego samolotu.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nW ostatnich dniach wspólnie organizowaliśmy uroczystości rocznicowe w Katyniu,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nrazem składaliśmy hołd ofiarom totalitaryzmu.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nKaczyński leciał do Rosji, aby osobiście oddać cześć pamięci\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nzabitych polskich oficerów \\n\\n12\\n00:00:41,004 --> 00:00:42,919\\njako Prezydent,\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\na także jako obywatel swojego kraju.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nWszyscy Rosjanie łączą się z wami w cierpieniu i żałobie.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nObiecuję, że okoliczności tej tragedii \\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nzostaną jak najdokładniej zbadane \\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nw ścisłej współpracy ze stroną polską.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nOrgany ścigania otrzymały ode mnie wyczerpujące instrukcje.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nW imieniu narodu rosyjskiego\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nskładam najgłębsze\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\ni najszczersze wyrazy współczucia\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nnarodowi polskiemu,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nprzekazując także wyrazy solidarności i wsparcia rodzinom i bliskim ofiar.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nW poniedziałek 12 kwietnia w Rosji zostanie ogłoszona żałoba narodowa.',\n", + " 'bytes': 1929,\n", + " 'sha1': 'l7bvsytai0f4edkdi3nus1la5uaue3s',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93607640,\n", + " 'timestamp': '2013-03-30T16:14:26Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25361613,\n", + " 'title': 'MevEnglishscrolltext.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,700 --> 00:00:06,160 Dear friends, dear citizens of the Republic of Poland. 2 00:00:06,596 --> 00:00:12,096 I and all citizens of Russia are shocked...'\",\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDear friends,\\ndear citizens of the Republic of Poland.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nI and all citizens of Russia\\nare shocked by the terrible tragedy\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nthat occurred, the death of the President\\nof the Republic of Poland Lech Kaczynski,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\nhis wife Maria,\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\nand all Polish citizens\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\non board the plane\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nthat crashed near Smolensk.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nThese days we have been holding\\njoint commemorative events at Katyn\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nand together we grieved for the victims\\nof the totalitarian past.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nLech Kaczynski flew to Russia\\nto personally pay tribute\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nto the perished Polish officers\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\nboth as President\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\nand as their fellow citizen.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nAll Russians share your grief and mourning.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nI promise that all the circumstances\\nof this tragedy\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nwill be investigated with utmost care\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nin close collaboration with\\nthe Polish authorities.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nI have given comprehensive orders to \\nthis effect to law enforcement agencies.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nOn behalf of the people of Russia,\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nI want to express my deepest,\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\nmost heartfelt condolences\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nto the people of Poland,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nand my empathy and support \\nto families and friends of the victims.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nMonday April 12, 2010 will be declared \\na national day of mourning in Russia.',\n", + " 'bytes': 1894,\n", + " 'sha1': 'l6kt1m7aj03oba4en2u2zwvaxd2a3y3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601932811,\n", + " 'timestamp': '2021-10-25T07:02:46Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25362688,\n", + " 'title': 'Dmitry Medvedev and Vladimir Putin - 2010 Polish Air Force Tu-154 crash.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'an update of timings and the sentences division with the subtitling standarts',\n", + " 'text': '1\\n00:00:00,583 --> 00:00:05,136\\nД. Медведев: Произошла трагедия, \\nочень серьёзная трагедия:\\n\\n2\\n00:00:05,488 --> 00:00:09,356\\nпогиб Президент Польши, его супруга,\\n\\n3\\n00:00:09,694 --> 00:00:12,223\\nзначительное число польских граждан,\\n\\n4\\n00:00:12,268 --> 00:00:16,256\\nкоторые летели к нам в Смоленскую область.\\n\\n5\\n00:00:17,571 --> 00:00:20,550\\nЯ подписал распоряжение\\nо создании правительственной комиссии,\\n\\n6\\n00:00:20,582 --> 00:00:24,611\\nкоторую возглавит\\nПредседатель Правительства.\\n\\n7\\n00:00:26,002 --> 00:00:30,821\\nКроме того, мною даны поручения\\nправоохранительным органам –\\n\\n8\\n00:00:31,202 --> 00:00:35,889\\nСледственному комитету, Генеральной\\nпрокуратуре, специальным службам –\\n\\n9\\n00:00:35,913 --> 00:00:38,787\\nпровести максимально\\nтщательное расследование\\n\\n10\\n00:00:38,795 --> 00:00:45,385\\nвсех обстоятельств этой трагедии\\nв кооперации с польскими партнёрами,\\n\\n11\\n00:00:45,442 --> 00:00:50,753\\nс тем чтобы вместе и в соответствии\\nс нашим законодательством,\\n\\n12\\n00:00:50,793 --> 00:00:53,289\\nсоответственно\\nс польским законодательством\\n\\n13\\n00:00:53,309 --> 00:00:57,000\\nтщательно расследовать все обстоятельства\\nэтого трагического происшествия.\\n\\n14\\n00:00:58,298 --> 00:01:02,226\\nИ конечно, мы должны\\nсделать всё для того, чтобы\\n\\n15\\n00:01:02,244 --> 00:01:04,964\\nвсе организационно-технические решения,\\n\\n16\\n00:01:04,982 --> 00:01:07,736\\nкоторые сопровождают\\nтакого рода происшествия,\\n\\n17\\n00:01:07,754 --> 00:01:10,740\\nбыли сделаны максимально тщательно,\\n\\n18\\n00:01:10,771 --> 00:01:14,494\\nв плотном контакте\\nс нашими польскими партнёрами.\\n\\n19\\n00:01:14,759 --> 00:01:18,424\\nЯ разговаривал по телефону\\n\\n20\\n00:01:18,455 --> 00:01:23,275\\nи с маршалом сейма Польши,\\n\\n21\\n00:01:23,321 --> 00:01:26,110\\nон сейчас исполняет\\nобязанности Президента,\\n\\n22\\n00:01:26,151 --> 00:01:32,033\\nи с Премьер-министром, с тем чтобы\\nорганизовать все необходимые процедуры.\\n\\n23\\n00:01:32,047 --> 00:01:33,578\\nЯ знаю, Владимир Владимирович,\\n\\n24\\n00:01:33,607 --> 00:01:36,495\\nчто Вы тоже разговаривали\\nс Председателем Правительства.\\n\\n25\\n00:01:36,526 --> 00:01:38,816\\nЧто собираются польские коллеги делать?\\n\\n26\\n00:01:39,809 --> 00:01:42,460\\nВ. Путин: Действительно,\\nэто ужасная трагедия.\\n\\n27\\n00:01:45,240 --> 00:01:49,583\\nЯ разговаривал с Премьер-министром,\\n\\n28\\n00:01:50,807 --> 00:01:52,878\\nвыразил свои соболезнования.\\n\\n29\\n00:01:56,248 --> 00:01:58,244\\nМы с Вами только что говорили,\\n\\n30\\n00:01:58,251 --> 00:02:01,034\\nчто ничего подобного\\nу нас никогда не было.\\n\\n31\\n00:02:06,000 --> 00:02:13,225\\nПремьер Польши выразил пожелание\\nприехать на место трагедии.\\n\\n32\\n00:02:14,643 --> 00:02:20,498\\nЯ поеду, встречу его там,\\nмы вместе побываем на месте катастрофы.\\n\\n33\\n00:02:22,251 --> 00:02:28,220\\nТолько что я подписал распоряжение\\nо составе правительственной комиссии.\\n\\n34\\n00:02:30,841 --> 00:02:34,583\\nКонечно, тела погибших\\nмы будем перевозить в Москву\\n\\n35\\n00:02:36,191 --> 00:02:37,867\\nдля опознания,\\n\\n36\\n00:02:38,890 --> 00:02:42,218\\nи здесь же будет организовано\\nвсё необходимое\\n\\n37\\n00:02:42,265 --> 00:02:47,851\\nдля того, чтобы встретить родственников,\\nтех, кто захочет и сможет приехать,\\n\\n38\\n00:02:49,297 --> 00:02:52,911\\nорганизовать всю другую работу, связанную\\n\\n39\\n00:02:57,228 --> 00:03:00,357\\nс реализацией планов работы этой комиссии.\\n\\n40\\n00:03:01,842 --> 00:03:04,786\\nЯ сегодня уже переговорил с мэром Москвы.\\n\\n41\\n00:03:05,707 --> 00:03:08,342\\nВ Москве будет создан специальный штаб,\\n\\n42\\n00:03:10,715 --> 00:03:15,448\\nинформация о котором будет\\nв средствах массовой информации.\\n\\n43\\n00:03:18,588 --> 00:03:23,822\\nТранспортные службы\\nбудут работать таким образом,\\n\\n44\\n00:03:23,864 --> 00:03:28,416\\nчтобы минимизировать\\n\\n45\\n00:03:28,461 --> 00:03:31,054\\nлюбые издержки, связанные с перемещением.\\n\\n46\\n00:03:32,000 --> 00:03:35,072\\nМинистерство иностранных дел\\nРоссийской Федерации\\n\\n47\\n00:03:35,102 --> 00:03:41,250\\nсделает всё, что от него зависит,\\nдля того чтобы без всяких проволочек,\\n\\n48\\n00:03:41,281 --> 00:03:44,765\\nбез какой бы то ни было волокиты\\nобеспечить визовую поддержку\\n\\n49\\n00:03:44,785 --> 00:03:48,279\\nтем гражданам Польши,\\nкоторые захотят приехать в Россию.\\n\\n50\\n00:03:53,487 --> 00:03:57,161\\nСказать нечего, можно только\\n\\n51\\n00:03:57,206 --> 00:04:00,818\\nпосочувствовать, искренне\\nпосочувствовать семьям погибших.\\n\\n52\\n00:04:00,880 --> 00:04:04,784\\nД. Медведев: Да, это страшная трагедия,\\nдействительно беспрецедентная.\\n\\n53\\n00:04:07,265 --> 00:04:12,739\\nМы договорились, что будем\\nв плотном режиме контактов\\n\\n54\\n00:04:12,808 --> 00:04:16,718\\nи с исполняющим обязанности Президента,\\nи с Премьер-министром,\\n\\n55\\n00:04:16,793 --> 00:04:19,487\\nи со всеми, кто будет принимать участие\\n\\n56\\n00:04:19,559 --> 00:04:21,761\\nи в скорбных процедурах,\\n\\n57\\n00:04:21,807 --> 00:04:25,321\\nи просто помогать\\nродным и близким погибших,\\n\\n58\\n00:04:25,340 --> 00:04:27,760\\nкоторые приедут в Москву на опознание.\\n\\n59\\n00:04:27,805 --> 00:04:29,246\\nПродолжим это делать.\\n\\n60\\n00:04:29,318 --> 00:04:32,165\\nВ. Путин: Дмитрий Анатольевич,\\nна место трагедии\\n\\n61\\n00:04:33,695 --> 00:04:41,251\\nпрямо за несколько минут туда\\n\\n62\\n00:04:41,312 --> 00:04:46,160\\nприбыла наша делегация, которая\\nпо Вашему поручению, встречала во главе\\n\\n63\\n00:04:46,242 --> 00:04:51,347\\nс полномочным представителем Президента\\nРоссийской Федерации Полтавченко.\\n\\n64\\n00:04:52,000 --> 00:04:56,217\\nОни уже были на месте крушения самолёта.\\n\\n65\\n00:04:57,404 --> 00:05:01,154\\nСейчас там находится и Министр\\nпо чрезвычайным ситуациям,\\n\\n66\\n00:05:01,229 --> 00:05:03,286\\nМинистр транспорта,\\n\\n67\\n00:05:03,339 --> 00:05:06,412\\nпредставители Министерства\\nздравоохранения, все службы работают.\\n\\n68\\n00:05:06,484 --> 00:05:10,070\\nД. Медведев: Хорошо. Я с Полтавченко\\nговорил как раз практически с первым,\\n\\n69\\n00:05:10,108 --> 00:05:12,399\\nпотому что он был ещё до спасателей,\\n\\n70\\n00:05:12,435 --> 00:05:16,677\\nв числе тех кто побывал на месте\\nэтой ужасной катастрофы.\\n\\n71\\n00:05:17,000 --> 00:05:18,504\\nБудем работать.',\n", + " 'bytes': 8725,\n", + " 'sha1': 'drfioy4dc9oswww9opnsyal9u8saikx',\n", + " 'parent_id': 93652529,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601932896,\n", + " 'timestamp': '2021-10-25T07:03:06Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25369158,\n", + " 'title': 'Dmitry Medvedev and Vladimir Putin - 2010 Polish Air Force Tu-154 crash.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,583 --> 00:00:05,136\\nPresident Dmitry Medvedev: A tragedy,\\na very serious tragedy has occurred.\\n\\n2\\n00:00:05,488 --> 00:00:09,356\\nThe President of Poland, his wife,\\n\\n3\\n00:00:09,694 --> 00:00:12,223\\nand a considerable number\\nof Polish citizens\\n\\n4\\n00:00:12,268 --> 00:00:16,256\\nwho were flying to Russia,\\nto Smolensk Region, died.\\n\\n5\\n00:00:17,571 --> 00:00:20,550\\nI signed an order establishing\\na government commission\\n\\n6\\n00:00:20,582 --> 00:00:24,611\\nto be headed by the Prime Minister.\\n\\n7\\n00:00:26,002 --> 00:00:30,821\\nI also have instructed\\nthe law enforcement agencies –\\n\\n8\\n00:00:30,847 --> 00:00:33,564\\n[the Prosecutor General’s Office]\\nInvestigative Committee,\\n\\n9\\n00:00:33,564 --> 00:00:36,135\\nthe Prosecutor General’s Office,\\nthe special services –\\n\\n10\\n00:00:36,135 --> 00:00:38,787\\nto conduct the most thorough\\ninvestigation possible\\n\\n11\\n00:00:38,795 --> 00:00:41,670\\ninto all the circumstances of this tragedy\\n\\n12\\n00:00:41,744 --> 00:00:46,720\\nand to do so in cooperation\\nwith their Polish colleagues.\\n\\n13\\n00:00:46,803 --> 00:00:52,790\\nTogether, in accordance\\nwith both Russian and Polish law,\\n\\n14\\n00:00:52,894 --> 00:00:55,394\\nthey will therefore be able\\nto investigate thoroughly\\n\\n15\\n00:00:55,406 --> 00:00:57,546\\nall the circumstances\\nof this tragic incident.\\n\\n16\\n00:00:58,298 --> 00:01:02,226\\nAnd of course, we must do\\neverything to ensure\\n\\n17\\n00:01:02,244 --> 00:01:04,964\\nthat all organizational\\nand technical measures\\n\\n18\\n00:01:04,982 --> 00:01:07,736\\nthat necessarily accompany such incidents\\n\\n19\\n00:01:07,754 --> 00:01:10,740\\nare exhaustive\\n\\n20\\n00:01:10,771 --> 00:01:14,494\\nand taken in close contact\\nwith our Polish partners.\\n\\n21\\n00:01:14,759 --> 00:01:18,424\\nI talked on the phone\\n\\n22\\n00:01:18,455 --> 00:01:23,275\\nwith Marshal of the Polish Sejm\\n[Bronislaw Komorowski],\\n\\n23\\n00:01:23,321 --> 00:01:26,110\\ncurrently acting head of state,\\n\\n24\\n00:01:26,151 --> 00:01:29,092\\nand the Polish\\nPrime Minister [Donald Tusk]\\n\\n25\\n00:01:29,092 --> 00:01:32,033\\nin order to arrange\\nall necessary proceedings.\\n\\n26\\n00:01:32,047 --> 00:01:33,578\\nI know that you\\n\\n27\\n00:01:33,607 --> 00:01:36,495\\nalso spoke with Mr Tusk.\\n\\n28\\n00:01:36,526 --> 00:01:39,490\\nWhat steps are our Polish\\ncolleagues planning to make?\\n\\n29\\n00:01:39,699 --> 00:01:42,802\\nPrime Minister Vladimir Putin:\\nIndeed, this is a terrible tragedy.\\n\\n30\\n00:01:45,240 --> 00:01:49,583\\nI talked to the Prime Minister [of Poland]\\n\\n31\\n00:01:50,807 --> 00:01:52,878\\nand expressed my condolences.\\n\\n32\\n00:01:56,248 --> 00:01:58,244\\nAs we just discussed,\\n\\n33\\n00:01:58,251 --> 00:02:01,034\\nnothing like this [tragedy]\\nhas ever happened before.\\n\\n34\\n00:02:06,000 --> 00:02:13,225\\nThe Prime Minister of Poland expressed\\nhis desire to visit the crash site.\\n\\n35\\n00:02:14,643 --> 00:02:20,498\\nI’ll meet him and together we will\\nvisit the site of the disaster.\\n\\n36\\n00:02:22,251 --> 00:02:23,960\\nI have just signed an order\\n\\n37\\n00:02:23,960 --> 00:02:26,368\\non the composition\\nof the government commission\\n\\n38\\n00:02:26,368 --> 00:02:28,755\\n[to investigate\\nthe circumstances of the crash].\\n\\n39\\n00:02:30,841 --> 00:02:34,583\\nOf course, the bodies\\nwill be brought to Moscow\\n\\n40\\n00:02:36,191 --> 00:02:37,867\\nfor identification\\n\\n41\\n00:02:38,890 --> 00:02:42,218\\nand then we will arrange\\neverything necessary\\n\\n42\\n00:02:42,265 --> 00:02:45,211\\nto meet the relatives [of the victims],\\n\\n43\\n00:02:45,256 --> 00:02:47,912\\nthose who are willing\\nand able to come to Russia.\\n\\n44\\n00:02:49,297 --> 00:02:52,911\\nWe will also organise\\nall other work involved in\\n\\n45\\n00:02:57,228 --> 00:03:00,357\\nimplementing the commission’s action plan.\\n\\n46\\n00:03:01,842 --> 00:03:05,338\\nToday I have already spoken\\nwith the Mayor of Moscow [Yury Luzhkov].\\n\\n47\\n00:03:05,707 --> 00:03:08,342\\nIn Moscow a special headquarters\\nwill be set up,\\n\\n48\\n00:03:10,715 --> 00:03:15,448\\nthe [contact] details of which will be\\ncommunicated to the public via media.\\n\\n49\\n00:03:18,588 --> 00:03:23,822\\nThe carriers will operate so\\n\\n50\\n00:03:23,864 --> 00:03:28,416\\nas to minimize\\n\\n51\\n00:03:28,461 --> 00:03:31,054\\nall travel costs.\\n\\n52\\n00:03:32,000 --> 00:03:35,072\\nThe Ministry of Foreign Affairs\\nof the Russian Federation\\n\\n53\\n00:03:35,102 --> 00:03:41,250\\nwill do its best to ensure\\nthat without delay\\n\\n54\\n00:03:41,281 --> 00:03:44,765\\nor red tape those citizens of Poland\\nwho wish to come to Russia\\n\\n55\\n00:03:44,785 --> 00:03:48,279\\nwill receive the necessary visa support.\\n\\n56\\n00:03:53,487 --> 00:03:57,161\\nThere is nothing to say.\\nOne can only sympathize,\\n\\n57\\n00:03:57,206 --> 00:04:00,818\\ntruly sympathize\\nwith the bereaved families.\\n\\n58\\n00:04:00,880 --> 00:04:03,239\\nDmitry Medvedev: Yes,\\nthis is a horrible tragedy –\\n\\n59\\n00:04:03,283 --> 00:04:04,784\\nan unprecedented one.\\n\\n60\\n00:04:07,265 --> 00:04:12,739\\nWe agreed that we would\\nproceed in a close contact\\n\\n61\\n00:04:12,808 --> 00:04:16,718\\nwith the Acting President of Poland\\nand the Prime Minister,\\n\\n62\\n00:04:16,793 --> 00:04:19,487\\nand with all who participate\\n\\n63\\n00:04:19,559 --> 00:04:21,761\\nin mourning practices,\\n\\n64\\n00:04:21,807 --> 00:04:25,213\\nand simply help the families\\nand friends of the victims\\n\\n65\\n00:04:25,236 --> 00:04:27,760\\nwho travel to Moscow\\nfor the bodies’ identification.\\n\\n66\\n00:04:27,805 --> 00:04:29,246\\nWe will continue to do it.\\n\\n67\\n00:04:29,318 --> 00:04:32,515\\nVladimir Putin: Our delegation\\narrived on the scene of the accident\\n\\n68\\n00:04:33,695 --> 00:04:41,251\\njust a few minutes ago\\n\\n69\\n00:04:41,312 --> 00:04:43,564\\nand, according to your instruction,\\n\\n70\\n00:04:43,587 --> 00:04:46,520\\nfirst met with Presidential\\nPlenipotentiary Envoy\\n\\n71\\n00:04:46,552 --> 00:04:51,347\\n[to the Central Federal District\\nGeorgy] Poltavchenko.\\n\\n72\\n00:04:52,000 --> 00:04:56,217\\nThey went directly to the crash site.\\n\\n73\\n00:04:57,404 --> 00:05:01,224\\nThe Emergencies Minister [Sergei Shoigu],\\nTransport Minister [Igor Levitin]\\n\\n74\\n00:05:01,267 --> 00:05:04,428\\nand representatives of the Healthcare\\nMinistry are all there now:\\n\\n75\\n00:05:04,469 --> 00:05:06,409\\nall ministries and agencies are working.\\n\\n76\\n00:05:06,442 --> 00:05:10,070\\nDmitry Medvedev: Good. Mr Poltavchenko\\nwas actually the first one I spoke to,\\n\\n77\\n00:05:10,108 --> 00:05:12,399\\nbecause he was able to get to the site\\n\\n78\\n00:05:12,435 --> 00:05:16,677\\nof this awful disaster\\nbefore the rescue teams.\\n\\n79\\n00:05:17,000 --> 00:05:18,504\\nWe will keep working.',\n", + " 'bytes': 6323,\n", + " 'sha1': 'tmg6akk0kthmdu28dozadlt3unuuuc0',\n", + " 'parent_id': 93910736,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 670146888,\n", + " 'timestamp': '2022-06-30T21:17:00Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25384685,\n", + " 'title': 'Russian Anthem chorus.ogg.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'мда уж — Undo revision 670076035 by [[Special:Contribs/2A01:CB1D:40B:9800:B46D:E464:51F1:340|2A01:CB1D:40B:9800:B46D:E464:51F1:340]]',\n", + " 'text': '1\\n00:00:03,000 --> 00:00:09,339\\nРоссия — священная наша держава,\\n\\n2\\n00:00:09,500 --> 00:00:15,600\\nРоссия — любимая наша страна.\\n\\n3\\n00:00:15,825 --> 00:00:22,528\\nМогучая воля, великая слава —\\n\\n4\\n00:00:22,594 --> 00:00:29,378\\nТвоё достоянье на все времена!\\n\\n5\\n00:00:29,803 --> 00:00:36,269\\nСлавься, Отечество\\n\\n6\\n00:00:36,536 --> 00:00:42,601\\nнаше свободное,\\n\\n7\\n00:00:42,900 --> 00:00:49,478\\nБратских народов союз вековой,\\n\\n8\\n00:00:49,700 --> 00:00:56,306\\nПредками данная\\n\\n9\\n00:00:56,400 --> 00:01:02,978\\nмудрость народная!\\n\\n10\\n00:01:03,100 --> 00:01:09,370\\nСлавься, страна! Мы гордимся тобой!\\n\\n11\\n00:01:09,700 --> 00:01:16,315\\nОт южных морей до полярного края\\n\\n12\\n00:01:16,400 --> 00:01:22,941\\nРаскинулись наши леса и поля.\\n\\n13\\n00:01:23,043 --> 00:01:29,764\\nОдна ты на свете! Одна ты такая —\\n\\n14\\n00:01:29,900 --> 00:01:36,775\\nХранимая Богом родная земля!\\n\\n15\\n00:01:36,900 --> 00:01:43,550\\nСлавься, Отечество\\n\\n16\\n00:01:43,744 --> 00:01:50,138\\nнаше свободное,\\n\\n17\\n00:01:50,200 --> 00:01:57,018\\nБратских народов союз вековой,\\n\\n18\\n00:01:57,100 --> 00:02:04,000\\nПредками данная\\n\\n19\\n00:02:04,107 --> 00:02:10,569\\nмудрость народная!\\n\\n20\\n00:02:10,900 --> 00:02:17,162\\nСлавься, страна! Мы гордимся тобой!\\n\\n21\\n00:02:17,400 --> 00:02:23,873\\nШирокий простор для мечты и для жизни\\n\\n22\\n00:02:24,000 --> 00:02:30,516\\nГрядущие нам открывают года.\\n\\n23\\n00:02:30,700 --> 00:02:37,443\\nНам силу даёт наша верность Отчизне.\\n\\n24\\n00:02:37,600 --> 00:02:44,537\\nТак было, так есть и так будет всегда!\\n\\n25\\n00:02:44,700 --> 00:02:51,490\\nСлавься, Отечество\\n\\n26\\n00:02:51,637 --> 00:02:57,773\\nнаше свободное,\\n\\n27\\n00:02:58,000 --> 00:03:05,018\\nБратских народов союз вековой,\\n\\n28\\n00:03:05,200 --> 00:03:12,050\\nПредками данная\\n\\n29\\n00:03:12,135 --> 00:03:18,789\\nмудрость народная!\\n\\n30\\n00:03:18,900 --> 00:03:21,816\\nСлавься, страна!\\n\\n31\\n00:03:21,869 --> 00:03:29,613\\nМы гордимся тобой!',\n", + " 'bytes': 2504,\n", + " 'sha1': '61yujhpljv3t0rkehdbrkpkv0157pg2',\n", + " 'parent_id': 670076035,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 354309641,\n", + " 'timestamp': '2019-06-13T05:25:28Z',\n", + " 'user': {'id': 1547075, 'text': 'Illegitimate Barrister'},\n", + " 'page': {'id': 25386380,\n", + " 'title': 'United States Navy Band - La Bayamesa.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:17,000 --> 00:00:21,400\\nHasten to battle, men of Bayamo!\\n\\n2\\n00:00:21,400 --> 00:00:24,600\\nThe motherland looks proudly to you;\\n\\n3\\n00:00:24,600 --> 00:00:30,800\\nDo not fear a glorious death,\\n\\n4\\n00:00:30,800 --> 00:00:33,400\\nBecause to die for the motherland is to live\\n\\n5\\n00:00:33,800 --> 00:00:38,400\\nTo live in chains is to live,\\n\\n6\\n00:00:38,400 --> 00:00:43,900\\nIn dishonor and ignominy,\\n\\n7\\n00:00:43,900 --> 00:00:47,800\\nHear the call of the bugle;\\n\\n8\\n00:00:47,800 --> 00:00:51,500\\nHasten, brave ones, to arms!\\n\\n9\\n00:00:51,700 --> 00:00:56,200\\nTo live in chains is to live\\n\\n10\\n00:00:56,300 --> 00:01:00,000\\nIn dishonor and ignominy,\\n\\n11\\n00:01:00,200 --> 00:01:04,600\\nHear the call of the bugle;\\n\\n12\\n00:01:04,800 --> 00:01:09,500\\nHasten, brave all, to arms!',\n", + " 'bytes': 766,\n", + " 'sha1': 'e8z65c9rk2id9mdc35aiphhb8lt70ph',\n", + " 'parent_id': 354309602,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93745526,\n", + " 'timestamp': '2013-04-01T12:41:34Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 25391662,\n", + " 'title': 'Na vrhu brda, Pelišac.915.ogv.hr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:5,000\\nBarinski vrhovi\\n\\n2\\n00:00:07,000 --> 00:00:13,000\\nruševine kapele\\n\\n3\\n00:00:17,000--> 00:00:22,000\\nPlaninski lanac -pogled na istok\\n\\n4\\n00:00:27,000 --> 00:00:35,000\\nPogled na zapad',\n", + " 'bytes': 210,\n", + " 'sha1': 'bgsm47242b0mfnsmbdpxsicedurnz51',\n", + " 'parent_id': 93744821,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93745750,\n", + " 'timestamp': '2013-04-01T12:45:08Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 25391863,\n", + " 'title': 'Na vrhu brda, Pelišac.915.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:5,000 Barinski summits 2 00:00:07,000 --> 00:00:13,000 ruins of St. Elias chapel at the highest summit of Pelješac 3 00:00:17,000-->...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:5,000\\nBarinski summits\\n\\n2\\n00:00:07,000 --> 00:00:13,000\\nruins of St. Elias chapel at the highest summit of Pelješac\\n\\n3\\n00:00:17,000--> 00:00:22,000\\nMountain range towards east\\n\\n4\\n00:00:27,000 --> 00:00:35,000\\nMountain range towards west',\n", + " 'bytes': 262,\n", + " 'sha1': 'lffwkvwb76cn8y77xxif9c8p2zxy3i7',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93787379,\n", + " 'timestamp': '2013-04-01T21:55:56Z',\n", + " 'user': {'text': '201.74.2.20'},\n", + " 'page': {'id': 25400819,\n", + " 'title': 'Pt-Portugues.ogg.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:20,000 --> 00:00:24,400 Purtugueix 2 00:00:24,600 --> 00:00:27,800 Português'\",\n", + " 'text': '1\\n00:00:20,000 --> 00:00:24,400\\nPurtugueix\\n\\n2\\n00:00:24,600 --> 00:00:27,800\\nPortuguês',\n", + " 'bytes': 86,\n", + " 'sha1': 'rbwxcpdw0wbhbn8fzaqtoqjg3ph8l3b',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 617284829,\n", + " 'timestamp': '2021-12-29T11:37:12Z',\n", + " 'user': {'id': 8768226, 'text': 'Kartonpiyer'},\n", + " 'page': {'id': 25411767,\n", + " 'title': 'Istiklâl Marsi instrumetal.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'The word \"Ancak\" is used to indicate that the star belongs to the nation and only. The closest English alternative to this is \"Solely\". This is also how it\\'s used in other translations.',\n", + " 'text': \"1\\n00:00:5,000 --> 00:00:10,000\\nFear not and be not dismayed,\\n\\n2\\n00:00:10,000 --> 00:00:16,000\\nthis crimson flag will never fade.\\n\\n3\\n00:00:16,000 --> 00:00:23,000\\nIt is the last hearth that is burning for my nation, and we know for sure \\n\\n4\\n00:00:23,000 --> 00:00:28,000\\nthat it will never fail.\\n\\n5\\n00:00:28,000 --> 00:00:33,000\\nIt is my nation's star, shining forever\\n\\n6\\n00:00:33,000 --> 00:00:40,000\\nIt is mine; and solely belongs to my nation.\\n\\n7\\n00:00:40,000 --> 00:00:45,000\\nFrown not, fair crescent, for \\n\\n8\\n00:00:45,000 --> 00:00:51,000\\nI am ready to die for you.\\n\\n9\\n00:00:51,000 --> 00:00:58,000\\nSmile now upon my heroic nation, leave this anger, lest the blood\\n\\n10\\n00:00:58,000 --> 00:01:03,000\\nshed for thee be unblessed.\\n\\n11\\n00:01:03,000 --> 00:01:14,000\\nFreedom is my nation's right, freedom for us who worship God and seek what is right.\",\n", + " 'bytes': 849,\n", + " 'sha1': 'gdc64uj9jvd7j673h1r5btgacelyqda',\n", + " 'parent_id': 163646298,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94271815,\n", + " 'timestamp': '2013-04-09T18:22:30Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25423057,\n", + " 'title': 'Sextortionagent interview.ogg.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '<!--This uses the official transcript of \"[http://www.fbi.gov/news/stories/2012/february/sextortion_021012/special-agent_021012 Special Agent Nickolas Savage Discusses ‘Sextortion’].\" ([http://www.webcitation.org/6Ea7keg5V Archive]) which has removed the [[:en:filler (linguistics)|filler]] and grammatical errors-->\\n\\n1\\n00:00:00,000 --> 00:00:04,400\\n性勒索通常指\\n\\n2\\n00:00:04,600 --> 00:00:07,400\\n个人受到侵害\\n\\n3\\n00:00:07,600 --> 00:00:09,400\\n并被勒索\\n\\n4\\n00:00:09,600 --> 00:00:12,400\\n这就是我们通常说的勒索罪\\n\\n5\\n00:00:012,600 --> 00:00:18,400\\n敲诈者的成果是\\n\\n6\\n00:00:18,600 --> 00:00:23,400\\n与性交相关的东西,无论是\\n\\n7\\n00:00:023,600 --> 00:00:26,400\\n照片或短片或,\\n\\n8\\n00:00:26,600 --> 00:00:29,400\\n通常来说就是与性相关的东西。\\n\\n9\\n00:00:29,600 --> 00:00:33,400\\n就是说我本质上是勒索您的性行为。\\n\\n10\\n00:00:33,600 --> 00:00:37,400\\n孩子们往往是不够谨慎\\n\\n11\\n00:00:37,600 --> 00:00:40,400\\n总信任网上的人\\n\\n12\\n00:00:40,600 --> 00:00:44,400\\n他们总将与自己相似的人关联起来\\n\\n13\\n00:00:044,600 --> 00:00:47,400\\n大约同年纪。 所以\\n\\n14\\n00:00:47,600 --> 00:00:49,900\\n他们对潜在的危险并不是特别小心。\\n\\n15\\n00:00:50,100 --> 00:00:53,400\\n很多时候,你必须自己决定和什么孩子交好朋友。\\n\\n16\\n00:00:53,600 --> 00:00:56,400\\n他们认为与其他孩子聊天。\\n\\n17\\n00:00:56,600 --> 00:01:01,400\\n通常, 儿童被诱骗发送自己的照片\\n\\n18\\n00:01:01,600 --> 00:01:05,400\\n给他们认为年龄可能相似的陌生人。\\n\\n19\\n00:01:05,600 --> 00:01:09,400\\n一旦这些人有了这些照片,他们就想要更多照片。\\n\\n20\\n00:01:09,600 --> 00:01:14,400\\n这就是促使犯罪行动的原因了。\\n\\n21\\n00:01:14,600 --> 00:01:17,400\\n一旦他们有了这些照片, 然后他们可以说\\n\\n22\\n00:01:17,600 --> 00:01:20,400\\n受害者或孩子,\\n\\n23\\n00:01:20,600 --> 00:01:24,400\\n“我要多一点,”或“我要你作x,y和z。\\n\\n24\\n00:01:24,600 --> 00:01:28,400\\n如果你不做, 我就会把这些照片,\\n\\n25\\n00:01:28,600 --> 00:01:32,400\\n我将它们发给你的同学。 我将它们寄到你家里。”\\n\\n26\\n00:01:32,600 --> 00:01:36,400\\n通常情况下,孩子们都会非常尴尬,\\n\\n27\\n00:01:36,600 --> 00:01:42,400\\n这些想法促使了他们被害。\\n\\n28\\n00:01:42,600 --> 00:01:46,400\\n因此,他担心寄出这些东西可能对他造成麻烦,\\n\\n29\\n00:01:46,600 --> 00:01:51,400\\n他们将继续受害并发送照片。\\n\\n30\\n00:01:51,600 --> 00:01:55,400\\n经常发生的是受害永远不会停止。\\n\\n31\\n00:01:55,600 --> 00:02:01,400\\n我们看到的这类情况下,罪犯\\n\\n32\\n00:02:01,600 --> 00:02:07,400\\n建立网站并将网址发给朋友\\n\\n33\\n00:02:07,600 --> 00:02:11,400\\n和家人,\\n\\n34\\n00:02:11,600 --> 00:02:14,400\\n他们再一次表现出优势并对受害者说,\\n\\n35\\n00:02:14,600 --> 00:02:19,400\\n“这是我对你的, 如果你不继续做什么的话, \\n\\n36\\n00:02:19,600 --> 00:02:22,400\\n这些都是你可以做的事情。”\\n\\n37\\n00:02:22,600 --> 00:02:27,400\\n他们是利用弱势群体的人。\\n\\n38\\n00:02:27,600 --> 00:02:30,400\\n他们会诱骗人们打开附件。\\n\\n39\\n00:02:30,600 --> 00:02:34,400\\n常见的方式之一:他们会发送一个女孩的照片。\\n\\n40\\n00:02:34,600 --> 00:02:37,400\\n她穿着胸罩和内裤。\\n\\n41\\n00:02:37,600 --> 00:02:40,400\\n她的头发遮住了她的脸所以你看不到她的外表。\\n\\n42\\n00:02:40,600 --> 00:02:43,400\\n他们会说类似于下面的东西,\\n\\n43\\n00:02:43,600 --> 00:02:47,400\\n“我在网站上看到你的这张照片。 如果这不是你的,你可以忽略该消息。” \\n\\n44\\n00:02:47,600 --> 00:02:51,400\\n那么,这些受害者有很多没有实现\\n\\n45\\n00:02:51,600 --> 00:02:55,400\\n有一个特洛伊木马嵌入的图片。 \\n\\n46\\n00:02:55,600 --> 00:02:58,400\\n孩子们看了照片,他们天生就很好奇。\\n\\n47\\n00:02:58,600 --> 00:03:03,400\\n他们甚至没有意识到有东西可能被嵌入在该照片中,于是点开看。\\n\\n48\\n00:03:03,600 --> 00:03:07,400\\n一旦Connolly[一个性勒索]和Dickerson[另一个性勒索]进入到他们的电脑,\\n\\n49\\n00:03:07,600 --> 00:03:09,400\\n他们会做几件事情。\\n\\n50\\n00:03:09,600 --> 00:03:12,400\\n很多时候,他们只是坐下来,看着。\\n\\n51\\n00:03:12,600 --> 00:03:15,400\\n他们有能力把你的摄像头。\\n\\n52\\n00:03:15,600 --> 00:03:19,400\\n因此,他们将看到这些受害者穿衣和脱衣,\\n\\n53\\n00:03:19,600 --> 00:03:22,400\\n只是做不同的事情。 他们将录影这些事件。\\n\\n54\\n00:03:22,600 --> 00:03:26,400\\n有时他们会赶上孩子们做的事情,或赶上孩子换衣服。\\n\\n55\\n00:03:26,600 --> 00:03:31,400\\n有时他们会显示这些视频或图片在进一步的剥削。\\n\\n56\\n00:03:31,600 --> 00:03:36,400\\n此外,一旦他们有他们访问好友列表,使他们能够说,\\n\\n57\\n00:03:36,600 --> 00:03:41,400\\n“如果你不把自己的照片或如果你不把你不把自己的这些电影,\\n\\n58\\n00:03:41,600 --> 00:03:45,400\\n我注意到你有你的祖母的一个电子邮件地址。\\n\\n59\\n00:03:45,600 --> 00:03:48,400\\n好吧,我会为你奶奶一起把这个小节目,和\\n\\n60\\n00:03:48,600 --> 00:03:51,400\\n我相信她不会,你知道,你的行为方式感到非常自豪。”\\n\\n61\\n00:03:51,600 --> 00:03:54,400\\n许多这些孩子们将做到这一点。\\n\\n62\\n00:03:54,600 --> 00:03:58,400\\n今天有这么多的恶意软件\\n\\n63\\n00:03:58,600 --> 00:04:02,400\\n有这么多的恶意软件在那里, \\n\\n64\\n00:04:02,600 --> 00:04:05,400\\n和那么多的程序允许人们访问您的电脑,\\n\\n65\\n00:04:05,600 --> 00:04:10,400\\n你不能过于谨慎。 其中的事情,\\n\\n66\\n00:04:10,600 --> 00:04:13,400\\n尤其是在对父母喋喋不休之前,\\n\\n66\\n00:04:13,600 --> 00:04:16,400\\n你需要有这个开放的对话与你的孩子。\\n\\n67\\n00:04:16,600 --> 00:04:20,400\\n你需要有你的孩子谈谈这些事情。\\n\\n68\\n00:04:20,600 --> 00:04:23,400\\n你可以小心也不为过. 你真的不能相信…\\n\\n69\\n00:04:23,600 --> 00:04:25,400\\n你要小心你沟通的人。\\n\\n70\\n00:04:25,600 --> 00:04:29,400\\n你需要始终持小心: 这是第一点。\\n\\n71\\n00:04:29,600 --> 00:04:32,400\\n第二点是: 孩子们需要的是能够跟父母谈谈。\\n\\n72\\n00:04:32,600 --> 00:04:35,400\\n父母需要的是能够跟孩子们也谈谈。\\n\\n73\\n00:04:35,600 --> 00:04:38,400\\n如果你不知道一个文件的来源, 不要打开附件。\\n\\n74\\n00:04:38,600 --> 00:04:43,400\\n小心某些附件!\\n\\n75\\n00:04:43,600 --> 00:04:47,400\\n最后一点,\\n\\n76\\n00:04:47,600 --> 00:04:50,400\\n如果事件发生, 如果你是受害者,\\n\\n77\\n00:04:50,600 --> 00:04:55,400\\n告诉别人, 告诉你父母。 告诉大人。 告诉老师。\\n\\n78\\n00:04:55,600 --> 00:05:00,400\\n即使你是成年人和受害人, 不要害怕打电话报警。\\n\\n79\\n00:05:00,600 --> 00:05:06,400\\nDickerson有了—他有了左右230吉字节的资料。\\n\\n80\\n00:05:06,600 --> 00:05:09,400\\n这样的力量是很大的。\\n\\n81\\n00:05:09,600 --> 00:05:15,400\\nConnolly有了几乎1太字节的资料。\\n\\n82\\n00:05:15,600 --> 00:05:21,400\\n对于儿童,通常是一个文件夹的地方。\\n\\n83\\n00:05:21,600 --> 00:05:24,400\\n在电脑目录中。\\n\\n84\\n00:05:24,600 --> 00:05:30,400\\n没有名字。 没有用户名。 它只有照片和短片在一个目录。\\n\\n85\\n00:05:30,600 --> 00:05:34,400\\n我觉得我的一部分的责任是\\n\\n86\\n00:05:34,600 --> 00:05:37,400\\n告诉愿意听的人\\n\\n87\\n00:05:37,600 --> 00:05:41,400\\n因为我知道还有更的受害者想知道, \\n\\n88\\n00:05:41,600 --> 00:05:44,400\\n“我知道发生了什么事那些家伙?”或“我还需要害怕吗?”\\n\\n89\\n00:05:44,600 --> 00:05:47,400\\n如果你知道有人在这种情况或如果你在这种情况\\n\\n90\\n00:05:47,600 --> 00:05:51,400\\n或者如果你是一个父母一方, 你该谈论这你孩子们这个问题。',\n", + " 'bytes': 7753,\n", + " 'sha1': '1sw44os9wpjbzpksz9oe50aqcfnzepp',\n", + " 'parent_id': 93905402,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 608235498,\n", + " 'timestamp': '2021-11-19T08:57:40Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25425867,\n", + " 'title': 'Песня Хорста Весселя.ogg.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'update',\n", + " 'text': \"1\\n00:00:07,000 --> 00:00:14,726\\nDie Fahne hoch!\\nDie Reihen fest geschlossen!\\n\\n2\\n00:00:15,400 --> 00:00:21,609\\nSA marschiert mit ruhig festem Schritt.\\n\\n3\\n00:00:22,363 --> 00:00:30,200\\nKam'raden, die Rotfront\\nund Reaktion erschossen,\\n\\n4\\n00:00:30,720 --> 00:00:36,949\\nMarschier'n im Geist\\nin unser'n Reihen mit.\\n\\n5\\n00:00:37,876 --> 00:00:45,307\\nKam'raden, die Rotfront\\nund Reaktion erschossen,\\n\\n6\\n00:00:46,156 --> 00:00:52,463\\nMarschier'n im Geist\\nin unser'n Reihen mit.\\n\\n7\\n00:00:54,538 --> 00:01:01,819\\nDie Straße frei den braunen Bataillonen!\\n\\n8\\n00:01:02,718 --> 00:01:08,983\\nDie Straße frei dem Sturmabteilungsmann!\\n\\n9\\n00:01:09,759 --> 00:01:17,240\\nEs schau'n aufs Hakenkreuz\\nvoll Hoffnung schon Millionen,\\n\\n10\\n00:01:18,090 --> 00:01:24,519\\nDer Tag der freiheit\\nund für Brot bricht an.\\n\\n11\\n00:01:25,247 --> 00:01:32,828\\nEs schau'n aufs Hakenkreuz\\nvoll Hoffnung schon Millionen,\\n\\n12\\n00:01:33,456 --> 00:01:40,020\\nDer Tag der freiheit\\nund für Brot bricht an.\\n\\n13\\n00:01:42,103 --> 00:01:49,457\\nZum letzen Mal wird Sturmalarm geblasen,\\n\\n14\\n00:01:50,500 --> 00:01:56,612\\nZum Kampfe steh'n wir alle schon bereit.\\n\\n15\\n00:01:57,502 --> 00:02:05,150\\nSchon flattern Hitlerfahnen\\nüber allen Straßen,\\n\\n16\\n00:02:05,869 --> 00:02:12,282\\nDie Knechtschaft dauert\\nnur noch kurze Zeit.\\n\\n17\\n00:02:13,265 --> 00:02:20,814\\nSchon flattern Hitlerfahnen\\nüber allen Straßen,\\n\\n18\\n00:02:21,528 --> 00:02:28,066\\nDie Knechtschaft dauert\\nnur noch kurze Zeit.\\n\\n19\\n00:02:29,982 --> 00:02:37,539\\nDie Fahne hoch!\\nDie Reihen fest geschlossen!\\n\\n20\\n00:02:38,422 --> 00:02:44,783\\nSA marschiert mit ruhig festem Schritt.\\n\\n21\\n00:02:45,517 --> 00:02:52,981\\nKam'raden, die Rotfront\\nund Reaktion erschossen,\\n\\n22\\n00:02:53,909 --> 00:03:00,272\\nMarschier'n im Geist\\nin unser'n Reihen mit.\\n\\n23\\n00:03:01,206 --> 00:03:08,687\\nKam'raden, die Rotfront\\nund Reaktion erschossen,\\n\\n24\\n00:03:09,531 --> 00:03:16,045\\nMarschier'n im Geist\\nin unser'n Reihen mit.\",\n", + " 'bytes': 1911,\n", + " 'sha1': '7ly860ngkklwovx948i5ypcwc7f9pz5',\n", + " 'parent_id': 93883195,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 372088182,\n", + " 'timestamp': '2019-10-27T05:13:14Z',\n", + " 'user': {'id': 8287260, 'text': '芄蘭'},\n", + " 'page': {'id': 25426015,\n", + " 'title': 'National Anthem of the Republic of China.ogg.zh-tw.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:16,000\\n三民主義\\u3000吾黨所宗\\n\\n2\\n00:00:16,500 --> 00:00:32,500\\n以建民國\\u3000以進大同\\n\\n3\\n00:00:32,500 --> 00:00:40,000\\n咨爾多士\\u3000為民前鋒\\n\\n4\\n00:00:40,000 --> 00:00:48,000\\n夙夜匪懈\\u3000主義是從\\n\\n5\\n00:00:48,000 --> 00:01:04,000\\n矢勤矢勇\\u3000必信必忠\\n\\n6\\n00:01:04,000 --> 00:01:23,000\\n一心一德\\u3000貫徹始終',\n", + " 'bytes': 364,\n", + " 'sha1': 'hfkv0uyyoln176iaz83xv0j2u2mjkji',\n", + " 'parent_id': 371960402,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94271828,\n", + " 'timestamp': '2013-04-09T18:22:45Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25431762,\n", + " 'title': 'Sextortionagent interview.ogg.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '<!--This uses the official transcript of \"[http://www.fbi.gov/news/stories/2012/february/sextortion_021012/special-agent_021012 Special Agent Nickolas Savage Discusses ‘Sextortion’].\" ([http://www.webcitation.org/6Ea7keg5V Archive]) which has removed the [[:en:filler (linguistics)|filler]] and grammatical errors-->\\n\\n1\\n00:00:00,000 --> 00:00:04,400\\n性勒索通常指\\n\\n2\\n00:00:04,600 --> 00:00:07,400\\n個人受到侵害\\n\\n3\\n00:00:07,600 --> 00:00:09,400\\n並被勒索\\n\\n4\\n00:00:09,600 --> 00:00:12,400\\n這就是我們通常說的勒索罪\\n\\n5\\n00:00:012,600 --> 00:00:18,400\\n敲詐者的成果是\\n\\n6\\n00:00:18,600 --> 00:00:23,400\\n與性交相關的東西,無論是\\n\\n7\\n00:00:023,600 --> 00:00:26,400\\n照片或短片或,\\n\\n8\\n00:00:26,600 --> 00:00:29,400\\n通常來說就是與性相關的東西。\\n\\n9\\n00:00:29,600 --> 00:00:33,400\\n就是說我本質上是勒索您的性行為。\\n\\n10\\n00:00:33,600 --> 00:00:37,400\\n孩子們往往是不夠謹慎\\n\\n11\\n00:00:37,600 --> 00:00:40,400\\n總信任網上的人\\n\\n12\\n00:00:40,600 --> 00:00:44,400\\n他們總將與自己相似的人關聯起來\\n\\n13\\n00:00:044,600 --> 00:00:47,400\\n大約同年紀。 所以\\n\\n14\\n00:00:47,600 --> 00:00:49,900\\n他們對潛在的危險並不是特別小心。\\n\\n15\\n00:00:50,100 --> 00:00:53,400\\n很多時候,你必須自己決定和什麼孩子交好朋友。\\n\\n16\\n00:00:53,600 --> 00:00:56,400\\n他們認為與其他孩子聊天。\\n\\n17\\n00:00:56,600 --> 00:01:01,400\\n通常, 兒童被誘騙發送自己的照片\\n\\n18\\n00:01:01,600 --> 00:01:05,400\\n給他們認為年齡可能相似的陌生人。\\n\\n19\\n00:01:05,600 --> 00:01:09,400\\n一旦這些人有了這些照片,他們就想要更多照片。\\n\\n20\\n00:01:09,600 --> 00:01:14,400\\n這就是促使犯罪行動的原因了。\\n\\n21\\n00:01:14,600 --> 00:01:17,400\\n一旦他們有了這些照片, 然后他們可以說\\n\\n22\\n00:01:17,600 --> 00:01:20,400\\n受害者或孩子,\\n\\n23\\n00:01:20,600 --> 00:01:24,400\\n“我要多一點,”或“我要你作x,y和z。\\n\\n24\\n00:01:24,600 --> 00:01:28,400\\n如果你不做, 我就會把這些照片,\\n\\n25\\n00:01:28,600 --> 00:01:32,400\\n我將它們發給你的同學。 我將它們寄到你家裡。”\\n\\n26\\n00:01:32,600 --> 00:01:36,400\\n通常情況下,孩子們都會非常尷尬,\\n\\n27\\n00:01:36,600 --> 00:01:42,400\\n這些想法促使了他們被害。\\n\\n28\\n00:01:42,600 --> 00:01:46,400\\n因此,他擔心寄出這些東西可能對他造成麻煩,\\n\\n29\\n00:01:46,600 --> 00:01:51,400\\n他們將繼續受害並發送照片。\\n\\n30\\n00:01:51,600 --> 00:01:55,400\\n經常發生的是受害永遠不會停止。\\n\\n31\\n00:01:55,600 --> 00:02:01,400\\n我們看到的這類情況下,罪犯\\n\\n32\\n00:02:01,600 --> 00:02:07,400\\n建立網站並將網址發給朋友\\n\\n33\\n00:02:07,600 --> 00:02:11,400\\n和家人,\\n\\n34\\n00:02:11,600 --> 00:02:14,400\\n他們再一次表現出優勢並對受害者說,\\n\\n35\\n00:02:14,600 --> 00:02:19,400\\n“這是我對你的, 如果你不繼續做什麼的話, \\n\\n36\\n00:02:19,600 --> 00:02:22,400\\n這些都是你可以做的事情。”\\n\\n37\\n00:02:22,600 --> 00:02:27,400\\n他們是利用弱勢群體的人。\\n\\n38\\n00:02:27,600 --> 00:02:30,400\\n他們會誘騙人們打開附件。\\n\\n39\\n00:02:30,600 --> 00:02:34,400\\n常見的方式之一:他們會發送一個女孩的照片。\\n\\n40\\n00:02:34,600 --> 00:02:37,400\\n她穿著胸罩和內褲。\\n\\n41\\n00:02:37,600 --> 00:02:40,400\\n她的頭發遮住了她的臉所以你看不到她的外表。\\n\\n42\\n00:02:40,600 --> 00:02:43,400\\n他們會說類似於下面的東西,\\n\\n43\\n00:02:43,600 --> 00:02:47,400\\n“我在網站上看到你的這張照片。 如果這不是你的,你可以忽略該消息。” \\n\\n44\\n00:02:47,600 --> 00:02:51,400\\n那麼,這些受害者有很多沒有實現\\n\\n45\\n00:02:51,600 --> 00:02:55,400\\n有一個特洛伊木馬嵌入的圖片。 \\n\\n46\\n00:02:55,600 --> 00:02:58,400\\n孩子們看了照片,他們天生就很好奇。\\n\\n47\\n00:02:58,600 --> 00:03:03,400\\n他們甚至沒有意識到有東西可能被嵌入在該照片中,於是點開看。\\n\\n48\\n00:03:03,600 --> 00:03:07,400\\n一旦Connolly[一個性勒索]和Dickerson[另一個性勒索]進入到他們的電腦,\\n\\n49\\n00:03:07,600 --> 00:03:09,400\\n他們會做幾件事情。\\n\\n50\\n00:03:09,600 --> 00:03:12,400\\n很多時候,他們隻是坐下來,看著。\\n\\n51\\n00:03:12,600 --> 00:03:15,400\\n他們有能力把你的攝像頭。\\n\\n52\\n00:03:15,600 --> 00:03:19,400\\n因此,他們將看到這些受害者穿衣和脫衣,\\n\\n53\\n00:03:19,600 --> 00:03:22,400\\n隻是做不同的事情。 他們將錄影這些事件。\\n\\n54\\n00:03:22,600 --> 00:03:26,400\\n有時他們會趕上孩子們做的事情,或趕上孩子換衣服。\\n\\n55\\n00:03:26,600 --> 00:03:31,400\\n有時他們會顯示這些視頻或圖片在進一步的剝削。\\n\\n56\\n00:03:31,600 --> 00:03:36,400\\n此外,一旦他們有他們訪問好友列表,使他們能夠說,\\n\\n57\\n00:03:36,600 --> 00:03:41,400\\n“如果你不把自己的照片或如果你不把你不把自己的這些電影,\\n\\n58\\n00:03:41,600 --> 00:03:45,400\\n我注意到你有你的祖母的一個電子郵件地址。\\n\\n59\\n00:03:45,600 --> 00:03:48,400\\n好吧,我會為你奶奶一起把這個小節目,和\\n\\n60\\n00:03:48,600 --> 00:03:51,400\\n我相信她不會,你知道,你的行為方式感到非常自豪。”\\n\\n61\\n00:03:51,600 --> 00:03:54,400\\n許多這些孩子們將做到這一點。\\n\\n62\\n00:03:54,600 --> 00:03:58,400\\n今天有這麼多的惡意軟件\\n\\n63\\n00:03:58,600 --> 00:04:02,400\\n有這麼多的惡意軟件在那裡, \\n\\n64\\n00:04:02,600 --> 00:04:05,400\\n和那麼多的程序允許人們訪問您的電腦,\\n\\n65\\n00:04:05,600 --> 00:04:10,400\\n你不能過於謹慎。 其中的事情,\\n\\n66\\n00:04:10,600 --> 00:04:13,400\\n尤其是在對父母喋喋不休之前,\\n\\n66\\n00:04:13,600 --> 00:04:16,400\\n你需要有這個開放的對話與你的孩子。\\n\\n67\\n00:04:16,600 --> 00:04:20,400\\n你需要有你的孩子談談這些事情。\\n\\n68\\n00:04:20,600 --> 00:04:23,400\\n你可以小心也不為過. 你真的不能相信…\\n\\n69\\n00:04:23,600 --> 00:04:25,400\\n你要小心你溝通的人。\\n\\n70\\n00:04:25,600 --> 00:04:29,400\\n你需要始終持小心: 這是第一點。\\n\\n71\\n00:04:29,600 --> 00:04:32,400\\n第二點是: 孩子們需要的是能夠跟父母談談。\\n\\n72\\n00:04:32,600 --> 00:04:35,400\\n父母需要的是能夠跟孩子們也談談。\\n\\n73\\n00:04:35,600 --> 00:04:38,400\\n如果你不知道一個文件的來源, 不要打開附件。\\n\\n74\\n00:04:38,600 --> 00:04:43,400\\n小心某些附件!\\n\\n75\\n00:04:43,600 --> 00:04:47,400\\n最后一點,\\n\\n76\\n00:04:47,600 --> 00:04:50,400\\n如果事件發生, 如果你是受害者,\\n\\n77\\n00:04:50,600 --> 00:04:55,400\\n告訴別人, 告訴你父母。 告訴大人。 告訴老師。\\n\\n78\\n00:04:55,600 --> 00:05:00,400\\n即使你是成年人和受害人, 不要害怕打電話報警。\\n\\n79\\n00:05:00,600 --> 00:05:06,400\\nDickerson有了—他有了左右230吉字節的資料。\\n\\n80\\n00:05:06,600 --> 00:05:09,400\\n這樣的力量是很大的。\\n\\n81\\n00:05:09,600 --> 00:05:15,400\\nConnolly有了幾乎1太字節的資料。\\n\\n82\\n00:05:15,600 --> 00:05:21,400\\n對於兒童,通常是一個文件夾的地方。\\n\\n83\\n00:05:21,600 --> 00:05:24,400\\n在電腦目錄中。\\n\\n84\\n00:05:24,600 --> 00:05:30,400\\n沒有名字。 沒有用戶名。 它隻有照片和短片在一個目錄。\\n\\n85\\n00:05:30,600 --> 00:05:34,400\\n我覺得我的一部分的責任是\\n\\n86\\n00:05:34,600 --> 00:05:37,400\\n告訴願意聽的人\\n\\n87\\n00:05:37,600 --> 00:05:41,400\\n因為我知道還有更的受害者想知道, \\n\\n88\\n00:05:41,600 --> 00:05:44,400\\n“我知道發生了什麼事那些家伙?”或“我還需要害怕嗎?”\\n\\n89\\n00:05:44,600 --> 00:05:47,400\\n如果你知道有人在這種情況或如果你正在遭受這種情況\\n\\n90\\n00:05:47,600 --> 00:05:51,400\\n或者如果你是一個父母一方, 你該談論這你孩子們這個問題。',\n", + " 'bytes': 7762,\n", + " 'sha1': 'jvqu4ppr65c0qih2jw2oq68u9kbboqk',\n", + " 'parent_id': 93949675,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93927178,\n", + " 'timestamp': '2013-04-03T21:19:30Z',\n", + " 'user': {'text': '66.191.10.234'},\n", + " 'page': {'id': 25436430,\n", + " 'title': 'En-us-dies.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:20,000 --> 00:00:24,400 dies 2 00:00:24,600 --> 00:00:27,800 dies'\",\n", + " 'text': '1\\n00:00:20,000 --> 00:00:24,400\\ndies\\n\\n2\\n00:00:24,600 --> 00:00:27,800\\ndies',\n", + " 'bytes': 74,\n", + " 'sha1': '4zmkdxsrsmovwc5u9k6666k0amz1wk1',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93939843,\n", + " 'timestamp': '2013-04-04T03:29:18Z',\n", + " 'user': {'text': '177.177.108.215'},\n", + " 'page': {'id': 25439937,\n", + " 'title': 'AC Cobra (1964).ogg.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:16 VRUM VRUM VRUM VRUUUUUUUUUUUUM VRUM POFF'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:16\\nVRUM VRUM VRUM VRUUUUUUUUUUUUM VRUM POFF',\n", + " 'bytes': 68,\n", + " 'sha1': 'mpby24r8gewvnabupu1anusxu3qvbzd',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93990674,\n", + " 'timestamp': '2013-04-04T23:15:34Z',\n", + " 'user': {'text': '74.88.56.144'},\n", + " 'page': {'id': 25452720,\n", + " 'title': 'En-us-bamboo.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:20,00--> 00:00:24,400 Bamboo 2 00:00:24,600--> 00:00:27,800 Bamboo'\",\n", + " 'text': '1\\n00:00:20,00--> 00:00:24,400\\nBamboo\\n\\n2\\n00:00:24,600--> 00:00:27,800\\nBamboo',\n", + " 'bytes': 75,\n", + " 'sha1': 'dwmx1j3ejit80l4no8frx6015ooys6t',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93995279,\n", + " 'timestamp': '2013-04-05T02:31:04Z',\n", + " 'user': {'id': 2057325, 'text': 'Tuankiet65'},\n", + " 'page': {'id': 25453719,\n", + " 'title': 'Me at the zoo.webm.vi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:01,300 --> 00:00:04,400 Được rồi, hiện chúng ta đang đứng trước những con voi, 2 00:00:04,400 --> 00:00:09,166 điều thú vị v...'\",\n", + " 'text': '\\ufeff1\\n00:00:01,300 --> 00:00:04,400\\nĐược rồi, hiện chúng ta đang đứng\\ntrước những con voi,\\n\\n2\\n00:00:04,400 --> 00:00:09,166\\nđiều thú vị về những con voi này là chúng có\\n\\n3\\n00:00:09,166 --> 00:00:12,699\\ncái vòi rất dài,\\n\\n4\\n00:00:12,699 --> 00:00:17,000\\nvà điều đó thật thú vị.\\n\\n5\\n00:00:17,000 --> 00:00:18,766\\nVà có lẽ đã hết điều để nói.',\n", + " 'bytes': 399,\n", + " 'sha1': '71ljjhmpjetrrtgl0l4kgbi627nhl6j',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94036392,\n", + " 'timestamp': '2013-04-05T22:10:05Z',\n", + " 'user': {'text': '72.197.181.99'},\n", + " 'page': {'id': 25466164,\n", + " 'title': 'En-us-thus.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:20,000 --> 00:00:24,400 thus 2 00:00:24,600 --> 00:00:27,800 thus'\",\n", + " 'text': '1\\n00:00:20,000 --> 00:00:24,400\\nthus\\n\\n2\\n00:00:24,600 --> 00:00:27,800\\nthus',\n", + " 'bytes': 74,\n", + " 'sha1': 'kjcs1j75mzi2fvigsq3d3vigsznmhqm',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 629515959,\n", + " 'timestamp': '2022-02-13T08:59:43Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25469000,\n", + " 'title': 'Wikipedia video tutorial-2-Reliability-en.ogv.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments, new text division for better readability, also, removed not translated Romanian text.',\n", + " 'text': '1\\n00:00:01,169 --> 00:00:03,461\\nOlá, eu sou Tereza.\\n\\n2\\n00:00:03,503 --> 00:00:05,130\\nObrigado por assistir nosso vídeo,\\n\\n3\\n00:00:05,152 --> 00:00:08,300\\nque explica como qualquer pessoa\\npode contribuir com o Wikipedia,\\n\\n4\\n00:00:08,300 --> 00:00:10,794\\na maior e melhor\\nenciclopédia livre do mundo.\\n\\n5\\n00:00:11,282 --> 00:00:12,487\\nComo você deve saber,\\n\\n6\\n00:00:12,531 --> 00:00:15,515\\né possível a qualquer um editar\\nqualquer artigo no Wikipedia.\\n\\n7\\n00:00:15,550 --> 00:00:17,830\\nTudo que você precisa fazer\\né clicar em \"Editar\",\\n\\n8\\n00:00:17,875 --> 00:00:19,989\\nalterar o texto e clicar em \"Salvar\".\\n\\n9\\n00:00:20,019 --> 00:00:23,506\\nMas isto não fornece dar asta nu\\nvă oferă mijloacele de a rescrie istoria.\\n\\n10\\n00:00:23,516 --> 00:00:27,444\\nPelo contrário eu gostaria de explicar\\ncomo o Wikipedia mantém sua integridade\\n\\n11\\n00:00:27,479 --> 00:00:29,912\\ndeși oricine o poate\\nmodifica atât de ușor.\\n\\n12\\n00:00:30,280 --> 00:00:33,525\\nComo muitos programas de computador,\\no programa por trás do Wikipedia\\n\\n13\\n00:00:33,555 --> 00:00:36,501\\npossui muitas ferramentas\\nque a maioria dos leitores não sabem.\\n\\n14\\n00:00:36,541 --> 00:00:42,237\\nEu irei falar sobre 2 destas ferramentas\\nque foram especificamente construídas.\\n\\n15\\n00:00:42,761 --> 00:00:45,828\\nA primeira ferramenta\\né chamada \"Mudanças recentes\".\\n\\n16\\n00:00:47,228 --> 00:00:51,481\\nNo menu à sua esquerda, você\\nencontrará o link para mudanças recentes.\\n\\n17\\n00:00:52,458 --> 00:00:54,218\\nA seguir não há tradução!\\nO seguinte texto está em romeno :)\\n\\n<!--18-->\\n00:00:54,248 --> 00:00:57,428\\npe Wikipedia în limba dumneavoastră.\\n\\n<!--19-->\\n00:00:57,459 --> 00:01:00,106\\nHaideți să ne uităm\\nla primul articol din listă.\\n\\n20\\n00:01:00,208 --> 00:01:04,241\\nDacă apăsați din nou pe \"Schimbări\\nrecente\", la doar câteva secunde,\\n\\n21\\n00:01:04,259 --> 00:01:06,888\\nveți vedea că articolul respectiv\\na ajuns mai jos\\n\\n22\\n00:01:07,835 --> 00:01:09,805\\nși toate articolele de mai\\n\\n23\\n00:01:09,832 --> 00:01:13,708\\nsus au fost modificate\\nsau create în ultimele 4 secunde.\\n\\n24\\n00:01:14,670 --> 00:01:17,566\\nEste ceea ce eu numesc\\n\"pulsul Wikipediei\".\\n\\n25\\n00:01:17,596 --> 00:01:19,359\\nDestul de impresionant, nu?\\n\\n26\\n00:01:19,677 --> 00:01:21,505\\nHaideți să ne întoarcem la articol.\\n\\n27\\n00:01:22,269 --> 00:01:24,889\\nCând apăsați pe legătura \"diff\",\\n\\n28\\n00:01:24,931 --> 00:01:27,491\\nveți vedea schimbările\\nfăcute asupra articolului.\\n\\n29\\n00:01:27,770 --> 00:01:30,211\\nCe vedeți pe ecran sunt\\nversiunea anterioară\\n\\n30\\n00:01:30,260 --> 00:01:32,846\\nși versiunea modificată\\nuna lângă cealaltă.\\n\\n31\\n00:01:33,534 --> 00:01:36,824\\nÎn acest fel, toate schimbările\\nsunt transparente.\\n\\n32\\n00:01:36,948 --> 00:01:40,555\\nComunitatea de utilizatori va urmări\\ncu atenție toate schimbările\\n\\n33\\n00:01:40,593 --> 00:01:43,305\\nși va corecta informațiile false.\\n\\n34\\n00:01:44,073 --> 00:01:48,740\\nAcesta este una din multele metode\\nde a asigura calitatea Wikipediei.\\n\\n35\\n00:01:48,888 --> 00:01:51,139\\nCealaltă unealtă despre\\ncare vreau să vă vorbesc\\n\\n36\\n00:01:51,166 --> 00:01:56,246\\neste o listă personalizată de schimbări\\nrecente, numită \"Pagini urmărite\".\\n\\n37\\n00:01:56,652 --> 00:01:58,664\\nPentru a obtine o listă\\nde pagini urmărite,\\n\\n38\\n00:01:58,694 --> 00:02:00,668\\nva trebui să aveți un cont de utilizator.\\n\\n39\\n00:02:00,758 --> 00:02:05,244\\nDar nu vă îngrijorați!\\nE rapid, simplu si gratuit!\\n\\n40\\n00:02:07,384 --> 00:02:10,967\\nApăsați pe această legătură\\nși urmăriți instrucțiunile.\\n\\n41\\n00:02:13,684 --> 00:02:16,261\\nDar cum îmi creez\\nlista de pagini urmărite?\\n\\n42\\n00:02:16,291 --> 00:02:18,269\\nPăi, este cel mai bine să creați lista\\n\\n43\\n00:02:18,291 --> 00:02:20,531\\ncu articolele interesante\\npentru dumneavoastră.\\n\\n44\\n00:02:21,101 --> 00:02:23,254\\nEu, de exemplu:\\n\\n45\\n00:02:23,271 --> 00:02:26,534\\nîmi plac câinii!...\\n\\n46\\n00:02:28,304 --> 00:02:31,848\\nCaut permanent articole noi despre câini.\\n\\n47\\n00:02:33,113 --> 00:02:34,767\\nUn Labrador!\\n\\n48\\n00:02:34,777 --> 00:02:37,977\\nPriviți-i fața! Trebuie să vă placă!\\n\\n49\\n00:02:38,420 --> 00:02:40,207\\nHaideți să mergem la acest articol.\\n\\n50\\n00:02:40,772 --> 00:02:45,505\\nDa! Sigur vreau să urmăresc toate\\nschimbările făcute la acest articol.\\n\\n51\\n00:02:45,715 --> 00:02:48,501\\nAșa că apăs pe \"urmărește\"\\n(steluța de lângă căutare)\\n\\n52\\n00:02:49,251 --> 00:02:53,179\\nși acest articol este adăugat\\nîn lista de pagini urmărite\\n\\n53\\n00:02:53,239 --> 00:02:57,589\\npe care o pot vedea apăsând pe...\\n\"Pagini urmărite\".\\n\\n54\\n00:02:58,737 --> 00:03:01,417\\nCând cineva editează\\nun articol din listă,\\n\\n55\\n00:03:01,448 --> 00:03:03,256\\nveti putea vedea acest lucru\\n\\n56\\n00:03:03,298 --> 00:03:04,779\\nși cu un singur clic\\n\\n57\\n00:03:04,808 --> 00:03:06,722\\nputeți vedea cine a făcut schimbările\\n\\n58\\n00:03:07,530 --> 00:03:09,913\\nși ce schimbări au făcut.\\n\\n59\\n00:03:11,860 --> 00:03:16,191\\nApropo, nu doar eu am pagina despre\\nLabrador pe lista de pagini urmărite.\\n\\n60\\n00:03:16,279 --> 00:03:22,887\\nNu, sunt sigur că multe mii de iubitori\\nde câini urmăresc această pagină.\\n\\n61\\n00:03:22,921 --> 00:03:24,297\\nMă refer la câine.\\n\\n62\\n00:03:25,203 --> 00:03:28,222\\nAcestea au fost două din multele unelte\\n\\n63\\n00:03:28,256 --> 00:03:30,706\\nfolosite pentru\\na menține calitatea Wikipediei.\\n\\n64\\n00:03:31,029 --> 00:03:34,697\\nDar cea mai bună metodă pentru a asigura\\nîn continuare calitatea Wikipedie\\n\\n65\\n00:03:34,731 --> 00:03:39,537\\neste să creștem numărul editorilor\\ncare contribuie cu cunoștințele lor.\\n\\n66\\n00:03:40,034 --> 00:03:42,980\\nCu cât mai mulți editori sunt,\\ncu atât mai bună este calitatea.\\n\\n67\\n00:03:42,993 --> 00:03:47,011\\nAșa că vă rugăm să vă alăturați\\nsuperbului grup de cunoștințe omenești\\n\\n68\\n00:03:47,067 --> 00:03:50,355\\nși ajutati-ne să progresăm\\noriunde este posibil.\\n\\n69\\n00:03:50,432 --> 00:03:52,008\\nMulțumim că ne-ați urmărit!\\n\\n70\\n00:03:52,054 --> 00:03:54,027\\nLa revedere și mult noroc!',\n", + " 'bytes': 5936,\n", + " 'sha1': 'svbimm1wc261jrutzef0mv2o0pg68g3',\n", + " 'parent_id': 94047068,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94116961,\n", + " 'timestamp': '2013-04-07T10:25:49Z',\n", + " 'user': {'text': '2.50.27.238'},\n", + " 'page': {'id': 25486645,\n", + " 'title': 'Wien1.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,400 Wien'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,400\\nWien',\n", + " 'bytes': 36,\n", + " 'sha1': '404dag3aankb8g5pj7zgamebgjff8f1',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 620103645,\n", + " 'timestamp': '2022-01-08T08:09:21Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25488533,\n", + " 'title': 'Jana Gana Mana instrumental.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments, new text division for better readability',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:04,398\\nThou art the ruler\\nof the minds of all people,\\n\\n2\\n00:00:04,416 --> 00:00:07,805\\nDispenser of India's destiny.\\n\\n3\\n00:00:08,000 --> 00:00:13,213\\nThy name rouses the hearts\\nof Punjab, Sindh, Gujarat, and Maratha,\\n\\n4\\n00:00:13,246 --> 00:00:17,275\\nOf the Dravida, Utkala and Bengal;\\n\\n5\\n00:00:17,518 --> 00:00:20,092\\nIt echoes in the hills\\nof the Vindhyas and Himalayas,\\n\\n6\\n00:00:20,118 --> 00:00:22,217\\nMingles in the music\\nof the Jamuna and Ganges\\n\\n7\\n00:00:22,241 --> 00:00:26,239\\nAnd is chanted by the waves\\nof the Indian Sea.\\n\\n8\\n00:00:26,663 --> 00:00:31,135\\nThey pray for thy blessings\\nand sing thy praise.\\n\\n9\\n00:00:31,204 --> 00:00:35,556\\nThe saving of all people\\nwaits in thy hand,\\n\\n10\\n00:00:35,597 --> 00:00:40,039\\nThou dispenser of India's destiny.\\n\\n11\\n00:00:40,331 --> 00:00:44,696\\nThou art the ruler\\nof the minds of all people,\\n\\n12\\n00:00:44,763 --> 00:00:48,812\\nDispenser of India's destiny.\\n\\n13\\n00:00:48,900 --> 00:00:56,293\\nVictory, victory, victory to thee.\\n\\n14\\n00:00:56,747 --> 00:01:02,062\\nVictory, victory, victory to thee.\",\n", + " 'bytes': 1066,\n", + " 'sha1': '7fsmye4n7x4qvczohqa9vzdzexh5rxv',\n", + " 'parent_id': 262298647,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 653751305,\n", + " 'timestamp': '2022-05-04T07:14:05Z',\n", + " 'user': {'text': '2409:4040:E9E:556:0:0:7548:2704'},\n", + " 'page': {'id': 25488733,\n", + " 'title': 'Jana Gana Mana instrumental.ogg.hi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Added Latin Translation of Text',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\nजन गण मन अधिनायक जय हे\\nJana Gana Mana Adhinayaka Jaya He\\n\\n2\\n00:00:04,000 --> 00:00:08,000\\nभारत भाग्यविधाता\\nBharat Bhagya Vidhata\\n\\n3\\n00:00:08,000 --> 00:00:13,000\\nपंजाब सिन्धु गुजरात मराठा\\nPunjab, Sindh, Gujarat, Maratha\\n\\n4\\n00:00:13,000 --> 00:00:17,000\\nद्राविड़ उत्कल बंगा\\nDravida Utkala Banga\\n\\n5\\n00:00:17,000 --> 00:00:22,000\\nविन्ध्य हिमाचल यमुना गंगा\\nVindhya Himachal Yamuna Ganga\\n\\n6\\n00:00:22,000 --> 00:00:26,000\\nउच्छल जलधि तरंगा\\nUchhal Jaladhi Tiranga\\n\\n7\\n00:00:26,000 --> 00:00:31,000\\nतव शुभ नामे जागे\\nTava Subha Name Jage\\n\\n8\\n00:00:31,000 --> 00:00:35,000\\nतव शुभ आशीष मागे\\nTava Subha Aashish Mage\\n\\n9\\n00:00:35,000 --> 00:00:40,000\\nगाहे तव जयगाथा\\nGahe Tava Jaya Gatha\\n\\n10\\n00:00:40,000 --> 00:00:45,000\\nजन गण मंगलदायक जय हे\\nJana Gana Mangala Dayaka Jaye He\\n\\n11\\n00:00:45,000 --> 00:00:48,000\\nभारत भाग्यविधाता\\nBharat Bhagya Vidhata\\n\\n12\\n00:00:48,900 --> 00:00:56,000\\nजय हे, जय हे, जय हे\\nJaya He, Jaya He, Jaya He\\n\\n13\\n00:00:56,800 --> 00:01:02,000\\nजय जय जय जय हे!\\nJaya, Jaya, Jaya, Jaya He!',\n", + " 'bytes': 1415,\n", + " 'sha1': 'jj3uy5dmvk18dbr19o459fqi420x2g5',\n", + " 'parent_id': 94125289,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 152427507,\n", + " 'timestamp': '2015-03-08T05:19:22Z',\n", + " 'user': {'text': '179.155.116.155'},\n", + " 'page': {'id': 25491921,\n", + " 'title': 'Deutschlandlied-novocals.ogg.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Fixed a problem were the German subtitles was the Portuguese instead.',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,000\\nEinigkeit und Recht und Freiheit\\n\\n2\\n00:00:06,001 --> 00:00:11,800\\nFür das deutsche Vaterland!\\n\\n3\\n00:00:12,000 --> 00:00:17,000\\nDanach lasst uns alle streben,\\n\\n4\\n00:00:17,001 --> 00:00:22,800\\nBrüderlich mit Herz und Hand!\\n\\n5\\n00:00:23,000 --> 00:00:28,000\\nEinigkeit und Recht und Freiheit\\n\\n6\\n00:00:28,001 --> 00:00:33,800\\nSind des Glückes Unterpfand:\\n\\n7\\n00:00:34,000 --> 00:00:39,000\\nBlüh im Glanze dieses Glückes,\\n\\n8\\n00:00:39,001 --> 00:00:44,500\\nBlühe, deutsches Vaterland!\\n\\n9\\n00:00:44,600 --> 00:00:49,900\\nBlüh im Glanze dieses Glückes,\\n\\n10\\n00:00:50,000 --> 00:00:57,000\\nBlühe, deutsches Vaterland!',\n", + " 'bytes': 640,\n", + " 'sha1': 'bbglxn2nnj2ep5w3eri23o2z0abb43g',\n", + " 'parent_id': 152427370,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94148432,\n", + " 'timestamp': '2013-04-07T19:23:41Z',\n", + " 'user': {'id': 2095803, 'text': 'PaliGol'},\n", + " 'page': {'id': 25493616,\n", + " 'title': 'Editing basics - Uploading and adding images.webm.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:06,500\\nAquesta presentació ens acosta als principis bàsics per carregar imatges a Wikimedia Commons\\n\\n2\\n00:00:06,700 --> 00:00:09,200\\ni afegir-les als articles de la Viquipèdia.\\n\\n3\\n00:00:09,400 --> 00:00:13,500\\nPrenem com a exemple l\\'article \"Lent secundària\".\\n\\n4\\n00:00:13,700 --> 00:00:18,500\\nÉs un tema sobre fotografia que no disposa de cap foto. Solucionem-ho!\\n\\n5\\n00:00:18,700 --> 00:00:21,500\\nUtilitzarem una imatge original que he fet jo.\\n\\n6\\n00:00:21,700 --> 00:00:24,000\\nPer afegir-la a l\\'article, abans l\\'haurem de carregar\\n\\n7\\n00:00:24,100 --> 00:00:26,200\\na Wikimedia Commons.\\n\\n8\\n00:00:26,500 --> 00:00:27,200\\nEl primer és el primer.\\n\\n9\\n00:00:27,400 --> 00:00:31,000\\nWikimedia Commons només alberga obres originals fetes per un mateix,\\n\\n10\\n00:00:31,300 --> 00:00:36,000\\nobres d\\'altres que han estat explícitament alliberades sota una llicència compatible amb la Viquipèdia\\n\\n11\\n00:00:36,300 --> 00:00:40,500\\ni obres de domini públic que no estan protegides per cap dret d\\'autor.\\n\\n12\\n00:00:40,800 --> 00:00:42,000\\nPer carregar un fitxer,\\n\\n11\\n00:00:42,300 --> 00:00:45,000\\nentra a commons.wikimedia.org.\\n\\n12\\n00:00:45,300 --> 00:00:48,000\\nAssegura\\'t d\\'iniciar sessió, si és que encara no ho has fet.\\n\\n13\\n00:00:48,300 --> 00:00:50,300\\nUtilitzaràs el mateix compte que tens a la Viquipèdia.\\n\\n14\\n00:00:51,000 --> 00:00:53,600\\nPer començar, vés a l\\'Auxiliar de càrrega\\n\\n15\\n00:00:53,800 --> 00:00:56,800\\nclicant l\\'enllaç de l\\'esquerra «Carrega un fitxer».\\n\\n16\\n00:00:57,000 --> 00:01:00,000\\nLa primera pàgina de l\\'auxiliar és un còmic, protagonitzat per Puzzly,\\n\\n17\\n00:01:00,300 --> 00:01:04,000\\nque ens ensenya el que està permès a Commons i el que no.\\n\\n18\\n00:01:04,300 --> 00:01:08,000\\nSota el còmic, clica \"Següent\" per anar a la pàgina de càrrega.\\n\\n19\\n00:01:08,300 --> 00:01:14,000\\nEn clicar \"Escolliu un fitxer multimèdia per compartir\" podràs buscar un arxiu del teu ordinador per carregar.\\n\\n20\\n00:01:14,300 --> 00:01:18,000\\nUna vegada carregat, ha arribat l\\'hora de prosseguir amb l\\'alliberament de la llicència.\\n\\n21\\n00:01:18,300 --> 00:01:22,000\\nSi és un treball propi, només has de posar el teu nom o el teu nom d\\'usuari,\\n\\n22\\n00:01:22,300 --> 00:01:25,600\\n(tal i com desitgis ser acreditat quan la gent utilitzi la imatge)\\n23\\n00:01:25,800 --> 00:01:27,000\\ni prem Següent.\\n\\n24\\n00:01:27,300 --> 00:01:30,500\\nAra és l\\'hora d\\'afegir un títol i una descripció pel fitxer.\\n\\n25\\n00:01:30,700 --> 00:01:31,500\\nPer al títol\\n\\n26\\n00:01:31,700 --> 00:01:34,500\\nescull un text concís, descriptiu\\n\\n27\\n00:01:34,700 --> 00:01:37,700\\ni suficientment específic per diferenciar-lo d\\'imatges similars.\\n\\n28\\n00:01:37,900 --> 00:01:39,500\\nPer a la descripció,\\n\\n29\\n00:01:39,700 --> 00:01:42,000\\nafegeix tants detalls com sigui possible:\\n\\n30\\n00:01:42,200 --> 00:01:44,500\\non i com es va fer la imatge;\\n\\n31\\n00:01:44,700 --> 00:01:46,500\\nquin és el tema de la imatge;\\n\\n32\\n00:01:46,700 --> 00:01:49,000\\ni tots els detalls que puguin voler saber les persones que vegin la imatge.\\n\\n33\\n00:01:49,300 --> 00:01:53,000\\nTambé pots afegir la imatge a una o més categories de Wikimedia Commons\\n\\n33\\n00:01:53,300 --> 00:01:58,000\\n-- intenta navegar per imatges semblans per triar la categoria més adequada.\\n\\n34\\n00:01:58,300 --> 00:02:00,500\\nEn aquest punt, prem Següent per acabar la càrrega,\\n\\n35\\n00:02:00,700 --> 00:02:05,000\\nllavors la imatge ja hauria d\\'estar disponible per a usar-la a la Viquipèdia.\\n\\n36\\n00:02:05,300 --> 00:02:07,000\\nA l\\'última pàgina del tutorial, trobaràs\\n\\n37\\n00:02:07,300 --> 00:02:10,000\\ncodi per afegir la imatge a l\\'article de la Viquipèdia,\\n\\n38\\n00:02:10,300 --> 00:02:13,000\\ni la direcció URL per anar a la pàgina del fitxer,\\n\\n39\\n00:02:13,300 --> 00:02:17,000\\non podràs editar la descripció o carregar versions més recents d\\'aquest fitxer.\\n\\n40\\n00:02:17,300 --> 00:02:19,500\\nPots copiar el codi wiki\\n\\n41\\n00:02:19,700 --> 00:02:21,000\\ni enganxar-lo directament a l\\'article,\\n\\n42\\n00:02:21,300 --> 00:02:23,500\\ni llavors afegir una llegenda de la imatge.\\n\\n43\\n00:02:23,700 --> 00:02:27,000\\nLa manera bàsica d\\'afegir una imatge en un article és la següent:\\n\\n44\\n00:02:27,300 --> 00:02:29,200\\nobrir dos parèntesis quadrats, després\\n\\n45\\n00:02:29,400 --> 00:02:31,200\\ninserir el nom del fitxer de la imatge, després\\n\\n46\\n00:02:31,400 --> 00:02:36,200\\nuna barra vertical | i la paraula thumb -- la qual posa la imatge en el format estàndard de miniatura --\\n\\n47\\n00:02:36,500 --> 00:02:37,500\\ndesprés una altra barra vertical |,\\n\\n48\\n00:02:37,700 --> 00:02:39,000\\ni després el text de la imatge,\\n\\n47\\n00:02:39,200 --> 00:02:43,000\\nel qual hauria de ser explícit en relació amb el text de l\\'article que acompanya,\\n\\n47\\n00:02:43,200 --> 00:02:46,000\\ni finalment tancar els dos parèntesis quadrats.\\n\\n48\\n00:02:46,200 --> 00:02:48,000\\nUna vegada afegida la imatge,\\n\\n49\\n00:02:48,200 --> 00:02:50,000\\nposa un resum de la modificació, desa la pàgina\\n\\n50\\n00:02:50,200 --> 00:02:51,500\\ni ja està!\\n\\n51\\n00:02:51,700 --> 00:02:54,000\\nJa hem afegit una nova imatge a la Viquipèdia.\\n\\n52\\n00:02:54,500 --> 00:02:57,000\\nMoltes Gràcies i adéu!',\n", + " 'bytes': 5104,\n", + " 'sha1': 'ei6fomyp6cnetmmags96f1yctyi0lby',\n", + " 'parent_id': 94148166,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 633706696,\n", + " 'timestamp': '2022-02-28T18:08:59Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25514608,\n", + " 'title': 'NorthAmericanBusySignal.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'This is not a place for your opinion on the sound. Please consider to create account in Twitter to share the sound with any your thoughts on that. Thanks! — Undo revision 633700040 by [[Special:Contributions/96.5.120.250|96.5.120.250]] ([[User talk:96.5.120.250|talk]])',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,000\\n[Beep beep beep]',\n", + " 'bytes': 48,\n", + " 'sha1': 'jilrpcmrrccwp22lxtcr0jkrdzus9zn',\n", + " 'parent_id': 633700040,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94251676,\n", + " 'timestamp': '2013-04-09T11:23:47Z',\n", + " 'user': {'text': '62.132.128.114'},\n", + " 'page': {'id': 25522877,\n", + " 'title': 'Pl-stront.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:02,000 stront'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,000\\nstront',\n", + " 'bytes': 38,\n", + " 'sha1': '0earjv0x8axo6md5sosh96ispi0473g',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 335690408,\n", + " 'timestamp': '2019-01-21T07:31:27Z',\n", + " 'user': {'text': '58.222.50.195'},\n", + " 'page': {'id': 25526928,\n", + " 'title': 'Марш энтузиастов.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:09,000 --> 00:00:22,000\\nIn every day work of great building,\\nIn the merry rumble, flames and the peals,\\nHello, you country of heroes,\\nA country of dreamers, a country of thinkers.\\n\\n2\\n00:00:23,000 --> 00:00:35,500\\nAcross the steppe, across the forests,\\nFrom the tropics all the way to the pole,\\nYou spread out, my boundless homeland\\nMy indestructible land of birth.\\n\\n3\\n00:00:36,900 --> 00:01:05,000\\nOn sea or land, we know no obstacles,\\nWe fear not icebergs, not the clouds,\\nThe flame of our hearts, the banner of our country\\nWe will carry across worlds and ages!\\n\\n4\\n00:01:06,500 --> 00:01:18,500\\nIs it for us to stand in place?\\nWe are always right in our darings,\\nOur work is a matter of honor,\\nA matter of valor and a glorious exploit.\\n\\n5\\n00:01:19,000 --> 00:01:32,000\\nWhether you're leaning a work-bench,\\nOr cutting out stone from a wall,\\nA dream of wonderment, still unclear to you,\\nIs calling you ever ahead.\\n\\n6\\n00:01:33,900 --> 00:02:02,000\\nOn sea or land, we know no obstacles,\\nWe fear not icebergs, not the clouds,\\nThe flame of our hearts, the banner of our country\\nWe will carry across worlds and ages!\\n\\n7\\n00:02:03,900 --> 00:02:15,800\\nOur world was created wonderfully.\\nThe work of centuries has been done in years,\\nWe grasp our happiness by rights,\\nWe love with gusto, and sing like children.\\n\\n8\\n00:02:16,000 --> 00:02:29,000\\nAnd our stars of scarlet\\nGlitter, like newer before,\\nAbove all other countries, and the oceans\\nLike a dream that has come true.\\n\\n9\\n00:02:30,000 --> 00:03:00,000\\nOn sea or land, we know no obstacles,\\nWe fear not icebergs, not the clouds,\\nThe flame of our hearts, the banner of our country\\nWe will carry across worlds and ages!\",\n", + " 'bytes': 1670,\n", + " 'sha1': 'shll2a50dwr82visxyj1fylzaiwd8y4',\n", + " 'parent_id': 297398898,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94329094,\n", + " 'timestamp': '2013-04-10T20:46:05Z',\n", + " 'user': {'id': 578190, 'text': 'Palu'},\n", + " 'page': {'id': 25543393,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash (Polish language).ogv.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'new (translate: [[s:cs:Poselství polskému národu]])',\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDrazí přátelé,\\nvážení občané Polské republiky.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nJá i všichni občané Ruska\\njsme otřeseni strašnou tragédií,\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\ntragickou smrtí presidenta\\nPolské republiky Lecha Kaczyńského,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\njeho ženy Marie\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\na všech polských občanů\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nnacházejících se na palubě\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nletadla postiženého katastrofou.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nV těchto dnech jsme společně\\norganizovali smuteční slavnost v Katyni,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nspolečně jsme truchlili pro oběti totalitní éry.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nLech Kaczyński letěl do Ruska,\\naby vzdal osobně hold\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\npolským důstojníkům, kteří tam zahynuli\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\njako president\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\ni jako občan své země.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nVšichni Rusové se s vámi dělí o žal a smutek.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nSlibuji, že všechny okolnosti této tragédie\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nbudou vyšetřeny velmi pečlivě\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nv úzké spolupráci s polskou stranou.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nOsobně jsem zadal podrobné pokyny\\nvyšetřovacím orgánům.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nVe jménu ruského národa\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nvyjadřuji nejhlubší\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\na nejupřímnější soustrast\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\npolskému národu,\\n \\n23\\n00:01:20,197 --> 00:01:24,293\\npocit soucitu a podpory rodinám\\na blízkým obětí.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nV pondělí 12. dubna bude v Rusku\\nvyhlášen národní smutek.',\n", + " 'bytes': 1839,\n", + " 'sha1': 'fvzkuw9ihmdj7nwqiqopwpehzbqyhw0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 659544215,\n", + " 'timestamp': '2022-05-28T14:17:22Z',\n", + " 'user': {'id': 4975233, 'text': 'Mykhal'},\n", + " 'page': {'id': 25543570,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash.ogv.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '−harmful whitespace',\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDrazí přátelé,\\nvážení občané Polské republiky.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nJá i všichni občané Ruska\\njsme otřeseni strašnou tragédií,\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\ntragickou smrtí presidenta\\nPolské republiky Lecha Kaczyńského,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\njeho ženy Marie\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\na všech polských občanů\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nnacházejících se na palubě\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nletadla postiženého katastrofou.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nV těchto dnech jsme společně\\norganizovali smuteční slavnost v Katyni,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nspolečně jsme truchlili pro oběti totalitní éry.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nLech Kaczyński letěl do Ruska,\\naby vzdal osobně hold\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\npolským důstojníkům, kteří tam zahynuli\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\njako president\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\ni jako občan své země.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nVšichni Rusové se s vámi dělí o žal a smutek.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nSlibuji, že všechny okolnosti této tragédie\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nbudou vyšetřeny velmi pečlivě\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nv úzké spolupráci s polskou stranou.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nOsobně jsem zadal podrobné pokyny\\nvyšetřovacím orgánům.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nVe jménu ruského národa\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nvyjadřuji nejhlubší\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\na nejupřímnější soustrast\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\npolskému národu,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\npocit soucitu a podpory rodinám\\na blízkým obětí.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nV pondělí 12. dubna bude v Rusku\\nvyhlášen národní smutek.',\n", + " 'bytes': 1834,\n", + " 'sha1': 'mhd1dal8teu4qdfvzop49j2j8yd04wb',\n", + " 'parent_id': 94329669,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94409535,\n", + " 'timestamp': '2013-04-12T17:49:34Z',\n", + " 'user': {'text': '216.38.130.161'},\n", + " 'page': {'id': 25564911,\n", + " 'title': 'Unterstützen Sie Wikipedia.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,00\\nMein liebstes Wikipediawort? *Pfff.\\n\\n2\\n00:00:05,001 --> 00:00:09,00\\nESM – Europäischer Stabilitätsmechanismus\\n\\n3\\n00:00:09,001 --> 00:00:11,00\\nKoboldmakis\\n\\n4\\n00:00:11,001 --> 00:00:12,00\\nFukushima\\n\\n5\\n00:00:12,001 --> 00:00:14,00\\nUh! Lichtfeldkamera\\n\\n6\\n00:00:14,001 --> 00:00:16,00\\nPolymerase-Kettenreaktion\\n\\n7\\n00:00:16,001 --> 00:00:18,00\\nFußwurzelarthrose\\n\\n8\\n00:00:18,001 --> 00:00:20,00\\nWusste ich besser Bescheid als mein Hausarzt\\n\\n9\\n00:00:20,001 --> 00:00:24,00\\nDann ist man bei Fiskalpakt, bei Rettungsschirm\\n\\n10\\n00:00:24,001 --> 00:00:26,00\\nund am Ende ist man selber Experte\\n\\n11\\n00:00:26,001 --> 00:00:28,00\\nKaffeklatsch\\n\\n12\\n00:00:28,001 --> 00:00:30,00\\nIndigo-Kinder\\n\\n13\\n00:00:30,001 --> 00:00:31,00\\nAserbaidschan\\n\\n14\\n00:00:31,001 --> 00:00:33,30\\nIst halt so ein kleines *pff Ding\\n\\n15\\n00:00:33,301 --> 00:00:35,00\\nSocial Entrepreneur\\n\\n16\\n00:00:35,001 --> 00:00:38,30\\nMeine Eltern mussten nachschlagen, aber jetzt wissen sie, was ich tue\\n\\n17\\n00:00:38,301 --> 00:00:41,00\\nIch wusste gleich, dass mein Kind etwas Besonderes ist\\n\\n18\\n00:00:41,001 --> 00:00:44,00\\nVor allem hätte die Dimension gar nicht in eine Zeitung gepasst\\n\\n19\\n00:00:44,001 --> 00:00:47,00\\nWenn ich unterwegs bin, was wissen möchte, möchte ich es sofort wissen\\n\\n20\\n00:00:47,001 --> 00:00:51,00\\nBevor ich Fachliteratur kaufe, hol ich mir hier erst mal ein großen Überblick\\n\\n21\\n00:00:51,001 --> 00:00:53,00\\nHat mir beim Studium sehr geholfen\\n\\n22\\n00:00:53,001 --> 00:00:55,00\\nTut mir leid, mir fällt nichts ein.\\n\\n23\\n00:00:55,000 --> 00:00:58,00\\nIch benutze es jeden Tag. Es ist wie Frühstücken und Zähneputzen.\\n\\n24\\n00:00:58,001 --> 00:01:02,00\\nMal ehrlich. Können Sie sich eine Welt ohne Wikipedia vorstellen? \\n\\n25\\n00:01:03,001 --> 00:01:06,00\\nAlso, ich kann das nicht. Wikipedia ist so wichtig für uns alle. \\n\\n26\\n00:01:06,001 --> 00:01:08,00\\nWikipedia hilft uns, wenn wir Informationen brauchen. \\n\\n27\\n00:01:08,001 --> 00:01:12,00\\nHilft uns, wenn wir Wissen suchen. Aber Wikipedia ist nicht selbstverständlich. \\n\\n28\\n00:01:12,001 --> 00:01:17,00\\nWikipedia ist getragen von ehrenamtlichen, aber wir haben Kosten. \\n\\n29\\n00:01:17,001 --> 00:01:22,00\\nFür den Betrieb der Webseite, für die Entwicklung der Software, für Programme, rund um die Förderung Freien Wissens.\\n\\n30\\n00:01:22,001 --> 00:01:29,00\\nEbay nimmt Gebühren. Google und Facebook schalten Werbung. Warum macht das eigentlich Wikipedia nicht?\\n\\n31\\n00:01:29,001 --> 00:01:33,00\\nWir finanzieren uns über Spenden. Leser spenden für Wikipedia. Leser, wie sie. \\n\\n32\\n00:01:33,001 --> 00:01:38,00\\nUnd deswegen bitte ich sie heute, um ihre Spende für Wikipedia. \\n\\n33\\n00:01:38,001 --> 00:01:41,00\\nSorgen sie dafür, dass Wikipedia auch in Zukunft für uns da ist. \\n\\n34\\n00:01:41,001 --> 00:01:43,00\\nSeien sie jetzt für Wikipedia da. \\n\\n35\\n00:01:43,001 --> 00:01:45,00\\nDankeschön.\\n\\n35\\n00:01:45,001 --> 00:01:47,00\\n*Wikipedia soll kostenlos und unabhängig bleiben. Helfen sie mit.',\n", + " 'bytes': 2950,\n", + " 'sha1': 'hs9rfii9nt6wd3u6sj9kd08twg003q9',\n", + " 'parent_id': 94408864,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94475244,\n", + " 'timestamp': '2013-04-13T20:10:36Z',\n", + " 'user': {'id': 2656222, 'text': 'PiusImpavidus'},\n", + " 'page': {'id': 25578387,\n", + " 'title': 'Door toename automatisering in krantenbedrijf verdwijnt het oude zettersvak Weeknummer, 77-14 - Open Beelden - 13160.ogv.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'One word misheard',\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:03,000\\nDe automatisering in de dagbladwereld, waarbij\\n\\n2\\n00:00:03,000 --> 00:00:05,500\\nlood verdrongen wordt door de elektronica, leidt\\n\\n3\\n00:00:05,500 --> 00:00:08,000\\nop dit ogenblik tot ingrijpende veranderingen,\\n\\n4\\n00:00:08,000 --> 00:00:10,500\\nzowel op technisch gebied als voor het grafisch personeel.\\n\\n5\\n00:00:11,000 --> 00:00:14,000\\nHet oude ambacht wordt meer en meer verdrongen door de computer.\\n\\n6\\n00:00:15,000 --> 00:00:17,500\\nNog altijd begint het maken van een krant op de redactie,\\n\\n7\\n00:00:17,500 --> 00:00:20,000\\nwaar de meeste artikelen worden geschreven.\\n\\n8\\n00:00:20,000 --> 00:00:22,500\\nSedert de eeuwwisseling werden de teksten dan gezet\\n\\n9\\n00:00:22,500 --> 00:00:25,000\\nmet behulp van de Linotype zetmachine,\\n\\n10\\n00:00:25,000 --> 00:00:27,500\\nwaarin alle door zetter aangeslagen letters \\n\\n11\\n00:00:27,500 --> 00:00:30,000\\nonmiddelijk in loden regels worden gegoten\\n\\n12\\n00:00:30,000 --> 00:00:32,500\\nvolgens een vernuftig gietprocedé, dat zich\\n\\n13\\n00:00:32,500 --> 00:00:35,000\\nvoor een deel aan de waarneming onttrekt.\\n\\n14\\n00:00:40,500 --> 00:00:44,000\\nDe gegoten regels worden automatisch tot kolommen gevormd.\\n\\n15\\n00:00:46,000 --> 00:00:48,500\\nHoewel ook hier in de loop der tijd een automatisering\\n\\n16\\n00:00:48,500 --> 00:00:51,000\\nkwam met behulp van ponsbanden, moesten bijvoorbeeld\\n\\n17\\n00:00:51,000 --> 00:00:54,500\\nde grote kopletters nog altijd met de hand worden gezet.\\n\\n18\\n00:00:56,500 --> 00:00:59,000\\nDe rangschikking van koppen, artikelen en foto's\\n\\n19\\n00:00:59,000 --> 00:01:01,500\\nin de pagina's gebeurt door de opmakers.\\n\\n20\\n00:01:02,000 --> 00:01:04,500\\nDeze bezitten een grote vaardigheid in het\\n\\n21\\n00:01:04,500 --> 00:01:08,000\\nsnel lezen van teksten die in spiegelschrift en op de kop staan.\\n\\n22\\n00:01:12,000 --> 00:01:14,5000\\nDe correctie van ook maar één verkeerd gezette letter\\n\\n23\\n00:01:14,500 --> 00:01:17,500\\nvraagt de vervanging van minstens een hele regel.\\n\\n24\\n00:01:27,000 --> 00:01:29,500\\nEen in de computer gebrachte tekst kan met een druk\\n\\n25\\n00:01:29,500 --> 00:01:32,000\\nop een knop weer worden opgeroepen en aanvullingen,\\n\\n26\\n00:01:32,000 --> 00:01:34,500\\nopschuivingen of verbeteringen kunnen\\n\\n27\\n00:01:34,500 --> 00:01:37,000\\nmet grote snelheid worden aangebracht.\\n\\n28\\n00:01:43,000 --> 00:01:45,500\\nDe computer bestuurt een fotozetmachine,\\n\\n29\\n00:01:45,500 --> 00:01:48,000\\ndie kolommen en teksten, waaronder ook \\n\\n30\\n00:01:48,000 --> 00:01:50,500\\nde kopregels, met een snelheid van 150 tekens\\n\\n31\\n00:01:50,500 --> 00:01:53,500\\nper seconde op fotografisch papier afdrukt.\\n\\n32\\n00:01:56,000 --> 00:01:58,500\\nDe opmaker heeft alleen nog een mes nodig om de teksten\\n\\n33\\n00:01:58,500 --> 00:02:01,000\\nvan het inmiddels gegomde fotopapier op de gewenste\\n\\n34\\n00:02:01,000 --> 00:02:02,500\\nplaatsen aan te brengen.\\n\\n35\\n00:02:02,500 --> 00:02:05,000\\nUiteraard heeft de invoering van deze nieuwe techniek\\n\\n36\\n00:02:05,000 --> 00:02:07,500\\ngevolgen gehad voor de grafici van de oude school.\\n\\n37\\n00:02:07,500 --> 00:02:10,000\\nVoor sommigen betekende het vervroegde pensionering,\\n\\n38\\n00:02:10,000 --> 00:02:13,000\\nvoor velen omscholing naar een nieuw grafisch beroep.\\n\\n39\\n00:02:15,000 --> 00:02:17,500\\nNadat van elke complete pagina een fotonegatief is gemaakt\\n\\n40\\n00:02:17,500 --> 00:02:20,000\\nwordt dit langs fotografische weg overgebracht\\n\\n41\\n00:02:20,000 --> 00:02:22,500\\nop een laagje vloeibaar kunsthars.\\n\\n42\\n00:02:24,000 --> 00:02:27,000\\nDeze kunststof drukplaat wordt vervolgens gemonteerd op\\n\\n43\\n00:02:27,000 --> 00:02:31,500\\néén van de cilinders van de rotatiepers waarmee de krant gedrukt wordt.\\n\\n44\\n00:02:32,000 --> 00:02:34,500\\nDaar waar dagbladdrukkerijen in een overgangsfase verkeren\\n\\n45\\n00:02:34,500 --> 00:02:37,000\\ntreft men kunststof en loden drukplaten\\n\\n46\\n00:02:37,000 --> 00:02:39,500\\nvaak nog naast elkaar op de cilinders aan.\\n\\n47\\n00:02:39,500 --> 00:02:43,500\\nMaar het lood zal binnen afzienbare tijd overal verdwijnen.\\n\\n48\\n00:02:48,000 --> 00:02:50,500\\nDe fantastische snelheid van 60.000 kranten\\n\\n49\\n00:02:50,500 --> 00:02:53,000\\nper uur, waarmee deze pers een hele oplage in zeer\\n\\n50\\n00:02:53,000 --> 00:02:55,500\\nkorte tijd eruit gooit, accentueert de betekenis\\n\\n51\\n00:02:55,500 --> 00:02:58,500\\ndie de krantenwereld hecht aan snelheid.\\n\\n52\\n00:02:58,500 --> 00:03:01,000\\nDoor de nieuwe elektronische zet- en opmaaktechnieken\\n\\n53\\n00:03:01,000 --> 00:03:03,500\\nzal het laatste nieuws nu nog sneller\\n\\n54\\n00:03:03,500 --> 00:03:06,500\\nbij de lezers kunnen zijn.\",\n", + " 'bytes': 4463,\n", + " 'sha1': 'n53cv1hxaiaaxjygdlv5cbm54ztm9xj',\n", + " 'parent_id': 94471853,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94486283,\n", + " 'timestamp': '2013-04-14T01:00:31Z',\n", + " 'user': {'id': 2656222, 'text': 'PiusImpavidus'},\n", + " 'page': {'id': 25581273,\n", + " 'title': 'Door toename automatisering in krantenbedrijf verdwijnt het oude zettersvak Weeknummer, 77-14 - Open Beelden - 13160.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'correction',\n", + " 'text': '1\\n00:00:00,500 --> 00:00:03,000\\nThe automation in the newspaper world, where\\n\\n2\\n00:00:03,000 --> 00:00:05,500\\nlead is being replaced by electronics, leads\\n\\n3\\n00:00:05,500 --> 00:00:08,000\\nat this moment to far reaching changes, both in\\n\\n4\\n00:00:08,000 --> 00:00:10,500\\ntechnology and for the personnel in the printing business.\\n\\n5\\n00:00:11,000 --> 00:00:14,000\\nThe old handicraft is increasingly being replaced by the computer.\\n\\n6\\n00:00:15,000 --> 00:00:17,500\\nAs before the making of a newspaper begins at the\\n\\n7\\n00:00:17,500 --> 00:00:20,000\\neditorial office, where most of the articles are written.\\n\\n8\\n00:00:20,000 --> 00:00:22,500\\nSince the turn of the century the texts were typeset\\n\\n9\\n00:00:22,500 --> 00:00:25,000\\nwith the use of the Linotype typesetting machine,\\n\\n10\\n00:00:25,000 --> 00:00:27,500\\nin which all letters hit by the typesetter\\n\\n11\\n00:00:27,500 --> 00:00:30,000\\nare immediately cast into lead lines,\\n\\n12\\n00:00:30,000 --> 00:00:32,500\\naccording to an ingeneous casting process,\\n\\n13\\n00:00:32,500 --> 00:00:35,000\\nthat is partially hidden from view.\\n\\n14\\n00:00:40,500 --> 00:00:44,000\\nThe cast lines are automatically assembled to columns.\\n\\n15\\n00:00:46,000 --> 00:00:48,500\\nAlthough even here automation came in the course of time\\n\\n16\\n00:00:48,500 --> 00:00:51,000\\nwith the help of punched ribbons, the large title letters\\n\\n17\\n00:00:51,000 --> 00:00:54,500\\nstill had to be typeset manually.\\n\\n18\\n00:00:56,500 --> 00:00:59,000\\nThe ordering of heads, articles and photographs\\n\\n19\\n00:00:59,000 --> 00:01:01,500\\non the pages is performed by the lay-out men.\\n\\n20\\n00:01:02,000 --> 00:01:04,500\\nThese men possess a great skill in\\n\\n21\\n00:01:04,500 --> 00:01:08,000\\nquickly reading of texts which are mirrored and upside down.\\n\\n22\\n00:01:12,000 --> 00:01:14,5000\\nThe corrections of just one misplaced character\\n\\n23\\n00:01:14,500 --> 00:01:17,500\\nrequires the replacement of at least an entire line.\\n\\n23.5\\n00:01:23,000 --> 00:01:25,000\\nold typesetters profession disappears\\n\\n23.8\\n00:01:25,000 --> 00:01:27,000\\nyour newspaper is being typeset by a computer\\n\\n24\\n00:01:27,000 --> 00:01:29,500\\nA text that has been put into a computer can be\\n\\n25\\n00:01:29,500 --> 00:01:32,000\\nrecalled with a push on a button and additions,\\n\\n26\\n00:01:32,000 --> 00:01:34,500\\nmovements or corrections can be\\n\\n27\\n00:01:34,500 --> 00:01:37,000\\nperformed at hight speed.\\n\\n28\\n00:01:43,000 --> 00:01:45,500\\nThe computer controls a photo typesetting machine,\\n\\n29\\n00:01:45,500 --> 00:01:48,000\\nthat can print columns and texts, including\\n\\n30\\n00:01:48,000 --> 00:01:50,500\\nthe head lines, on photographic paper\\n\\n31\\n00:01:50,500 --> 00:01:53,500\\nat a speed of 150 characters per second.\\n\\n32\\n00:01:56,000 --> 00:01:58,500\\nThe lay-out man only needs a knive to put the texts from the\\n\\n33\\n00:01:58,500 --> 00:02:01,000\\nphotographic paper, that has been covered with a layer of\\n\\n34\\n00:02:01,000 --> 00:02:02,500\\ngum arabic, onto the right spot.\\n\\n35\\n00:02:02,500 --> 00:02:05,000\\nOf course the introduction of this new technique\\n\\n36\\n00:02:05,000 --> 00:02:07,500\\nhas had consequences for the old-school graphical designers.\\n\\n37\\n00:02:07,500 --> 00:02:10,000\\nFor some it meant early retirement, for many\\n\\n38\\n00:02:10,000 --> 00:02:13,000\\nretraining for a new graphical profession.\\n\\n39\\n00:02:15,000 --> 00:02:17,500\\nAfter a negative has been made of every complete page,\\n\\n40\\n00:02:17,500 --> 00:02:20,000\\nthis is transferred photographically onto\\n\\n41\\n00:02:20,000 --> 00:02:22,500\\na layer of liquid synthetic resin.\\n\\n42\\n00:02:24,000 --> 00:02:27,000\\nThis plastic printing sheet is then affixed on one of\\n\\n43\\n00:02:27,000 --> 00:02:31,500\\nthe cilinders of the rolling press used for printing the newspaper.\\n\\n44\\n00:02:32,000 --> 00:02:34,500\\nThere where the newspaper printing shops are in a transition phase\\n\\n45\\n00:02:34,500 --> 00:02:37,000\\none can often still find plastic and lead\\n\\n46\\n00:02:37,000 --> 00:02:39,500\\nprinting sheets next to each other on the cilinders.\\n\\n47\\n00:02:39,500 --> 00:02:43,500\\nBut lead will disappear from everywhere within the foreseeable future.\\n\\n48\\n00:02:48,000 --> 00:02:50,500\\nThe great rate of 60,000 newspapers per hour, at which\\n\\n49\\n00:02:50,500 --> 00:02:53,000\\nthis printing press turns out a complete edition in\\n\\n50\\n00:02:53,000 --> 00:02:55,500\\na very short time, signifies the care for speed\\n\\n51\\n00:02:55,500 --> 00:02:58,500\\nthat the newspaper community has.\\n\\n52\\n00:02:58,500 --> 00:03:01,000\\nDue to the new electronic typesetting and lay-out\\n\\n53\\n00:03:01,000 --> 00:03:03,500\\ntechniques the latest news will now reach\\n\\n54\\n00:03:03,500 --> 00:03:06,500\\nthe reader even faster.',\n", + " 'bytes': 4582,\n", + " 'sha1': 'smh6a7ap0d4toh5ntqui3bhgaetww0z',\n", + " 'parent_id': 94486251,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 668171080,\n", + " 'timestamp': '2022-06-25T00:56:43Z',\n", + " 'user': {'id': 10869468, 'text': '28daniel'},\n", + " 'page': {'id': 25604546,\n", + " 'title': 'HaydnGottErhalteFranzDenKaiserQuartetVersionPianoReduction.ogg.de-at.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,000\\nGott erhalte Franz, den Kaiser,(Jahr 1797 Version)\\nGott erhalte, Gott beschütze! (Jahr 1854 - 1918 Version)\\n\\n2\\n00:00:06,000 --> 00:00:12,000\\nUnsern guten Kaiser Franz!\\nUnsern Kaiser, unser Land!\\n\\n3\\n00:00:12,000 --> 00:00:18,000\\nLange lebe Franz, der Kaiser,\\nMächtig durch des Glaubens Stütze,\\n\\n4\\n00:00:18,000 --> 00:00:24,000\\nIn des Glückes hellstem Glanz!\\nFührt er uns mit weiser Hand!\\n\\n5\\n00:00:24,000 --> 00:00:30,000\\nIhm erblühen Lorbeerreiser\\nLasst uns seiner Väter Krone\\n\\n6\\n00:00:30,000 --> 00:00:36,000\\nWo er geht, zum Ehrenkranz!\\nSchirmen wider jeden Feind!\\n\\n7\\n00:00:36,000 --> 00:00:42,000\\nGott erhalte Franz, den Kaiser,\\nInnig bleibt mit Habsburgs Throne\\n\\n8\\n00:00:42,000 --> 00:00:48,000\\nUnsern guten Kaiser Franz!\\nÖsterreichs Geschick vereint!\\n\\n9\\n00:00:48,000 --> 00:00:54,000\\nGott erhalte Franz, den Kaiser,\\nInnig bleibt mit Habsburgs Throne\\n\\n10\\n00:00:54,000 --> 00:01:00,000\\nUnsern guten Kaiser Franz!\\nÖsterreichs Geschick vereint!',\n", + " 'bytes': 984,\n", + " 'sha1': '7b3ptii8nxkv6xp0ctz1vmvdnpz9ijz',\n", + " 'parent_id': 348748750,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 228871823,\n", + " 'timestamp': '2017-01-06T22:08:12Z',\n", + " 'user': {'id': 2073340, 'text': 'Jdx'},\n", + " 'page': {'id': 25626791,\n", + " 'title': 'Dial up modem noises.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/107.0.85.130|107.0.85.130]] ([[User talk:107.0.85.130|talk]]) to last revision by 212.219.59.228',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,190\\n(No signal)\\n\\n2\\n00:00:01,190 --> 00:00:02,190\\n(US Dial Tone)\\n\\n3\\n00:00:02,190 --> 00:00:04,100\\nDTMF: 1 (570)-234-0003\\n\\n4\\n00:00:26,600 --> 00:00:28,450\\n(No Signal)',\n", + " 'bytes': 192,\n", + " 'sha1': '8hclw8ya6r1s6b1tmenv67xwp4jsbif',\n", + " 'parent_id': 228772970,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 611701447,\n", + " 'timestamp': '2021-12-03T19:31:45Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25632073,\n", + " 'title': 'Pripyat 1986.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall subtitles update',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:01,520\\nAttention!\\n\\n2\\n00:00:01,554 --> 00:00:03,868\\nAttention. Attention!\\n\\n3\\n00:00:03,917 --> 00:00:06,267\\nAttention. Attention!\\n\\n4\\n00:00:09,000 --> 00:00:11,496\\nAttention. Attention!\\n\\n5\\n00:00:12,000 --> 00:00:14,308\\nDear comrades,\\n\\n6\\n00:00:14,794 --> 00:00:18,509\\nthe City Counsel of People's Deputies\\n\\n7\\n00:00:18,542 --> 00:00:22,058\\ninforms that due to an accident\\n\\n8\\n00:00:22,070 --> 00:00:27,197\\nat Chernobyl nuclear power plant\\nin the city of Pripyat\\n\\n9\\n00:00:27,220 --> 00:00:32,779\\nadverse radiation levels have evolved.\\n\\n10\\n00:00:33,506 --> 00:00:37,263\\nParty and Soviet bodies,\\n\\n11\\n00:00:37,300 --> 00:00:42,306\\nmilitary units are taking\\nnecessary measures.\\n\\n12\\n00:00:43,000 --> 00:00:49,142\\nHowever, in order to provide\\ncomplete safety for the people,\\n\\n13\\n00:00:49,175 --> 00:00:52,145\\nespecially for children,\\n\\n14\\n00:00:52,199 --> 00:00:59,446\\nit is necessary to temporarily\\nevacuate city residents\\n\\n15\\n00:00:59,497 --> 00:01:03,298\\nto evacuation points in Kyiv oblast.\\n\\n16\\n00:01:04,000 --> 00:01:07,752\\nIn order to do this,\\nto each apartment house\\n\\n17\\n00:01:07,785 --> 00:01:11,702\\ntoday, April 27,\\n\\n18\\n00:01:11,752 --> 00:01:16,236\\nstarting at 2:00 p.m.\\n\\n19\\n00:01:16,285 --> 00:01:20,226\\nstarting at 2:00 p.m.\\n\\n20\\n00:01:20,280 --> 00:01:22,969\\nbuses will be provided\\n\\n21\\n00:01:23,018 --> 00:01:29,467\\nescorted by Militsiya\\nand members of the city's Ispolkom.\\n\\n22\\n00:01:30,439 --> 00:01:35,252\\nIt is recommended to take with you: IDs,\\n\\n23\\n00:01:35,286 --> 00:01:38,207\\nbasic necessities\\n\\n24\\n00:01:38,243 --> 00:01:42,829\\nand foodstuff for the first time.\\n\\n25\\n00:01:44,000 --> 00:01:48,512\\nHeads of enterprises and public offices\\n\\n26\\n00:01:48,538 --> 00:01:54,093\\nhave designated vital personnel who stay\\n\\n27\\n00:01:54,118 --> 00:01:58,500\\nto ensure the normal\\nfunctioning of the city.\\n\\n28\\n00:01:59,217 --> 00:02:03,132\\nAll apartment houses during the evacuation\\n\\n29\\n00:02:03,165 --> 00:02:06,754\\nwill be guarded by Militsiya.\\n\\n30\\n00:02:07,223 --> 00:02:11,633\\nComrades, while temporarily\\nleaving your houses\\n\\n31\\n00:02:11,667 --> 00:02:14,827\\nplease, do not forget to close windows,\\n\\n32\\n00:02:14,894 --> 00:02:18,458\\nto turn off all electrical\\nand gas appliances,\\n\\n33\\n00:02:18,520 --> 00:02:21,547\\nto close water taps.\\n\\n34\\n00:02:21,848 --> 00:02:24,732\\nPlease remain calm,\\n\\n35\\n00:02:24,765 --> 00:02:31,218\\nbe organized and maintain order\\nwhen executing the temporary evacuation.\",\n", + " 'bytes': 2414,\n", + " 'sha1': 'gpf4x1vblhfvr8f9ji966388o08irzc',\n", + " 'parent_id': 266647051,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95019100,\n", + " 'timestamp': '2013-04-23T16:30:46Z',\n", + " 'user': {'text': '50.89.243.20'},\n", + " 'page': {'id': 25635056,\n", + " 'title': 'President Obama speaks on explosions in Boston (2013-04-15).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Spelling error',\n", + " 'text': \"1\\n00:00:00,595 --> 00:00:02,995\\nGood afternoon, everybody.\\n\\n2\\n00:00:04,205 --> 00:00:07,160\\nEarlier today, I was briefed\\nby my homeland security team\\n\\n3\\n00:00:07,161 --> 00:00:09,163\\non the events in Boston.\\n\\n4\\n00:00:09,163 --> 00:00:13,004\\nWe're continuing to monitor \\nand respond to the situation as it unfolds,\\n\\n5\\n00:00:13,816 --> 00:00:16,836\\nand I've directed the full resources\\nof the federal government\\n\\n6\\n00:00:16,837 --> 00:00:19,338\\nto help state and local authorities \\nprotect our people,\\n\\n7\\n00:00:20,223 --> 00:00:23,218\\nincrease security around \\nthe United States as necessary,\\n\\n8\\n00:00:23,319 --> 00:00:25,347\\nand investigate what happened.\\n\\n9\\n00:00:25,857 --> 00:00:27,946\\nThe American people \\nwill say a prayer for Boston tonight,\\n\\n10\\n00:00:27,946 --> 00:00:31,495\\nand Michelle and I send our\\ndeepest thoughts and prayers\\n\\n11\\n00:00:31,496 --> 00:00:37,048\\nto the families of the victims \\nin the wake of this senseless loss.\\n\\n12\\n00:00:37,048 --> 00:00:39,092\\nWe don't yet have all the answers.\\n\\n13\\n00:00:39,488 --> 00:00:43,455\\nBut we do know that multiple people\\nhave been wounded, some gravely,\\n\\n14\\n00:00:43,456 --> 00:00:45,869\\nin the explosions at the Boston Marathon.\\n\\n15\\n00:00:45,869 --> 00:00:52,099\\nI've spoken to FBI Director Muller, \\nand Secretary of Homeland Security Napolitano,\\n\\n16\\n00:00:52,099 --> 00:00:56,680\\nand they're mobilising the appropriate resources \\nto investigate and to respond.\\n\\n17\\n00:00:56,680 --> 00:01:01,815\\nI've updated leaders of Congress in both parties,\\nand we reaffirmed that, on days like this,\\n\\n18\\n00:01:01,815 --> 00:01:03,595\\nthere are no Republicans or Democrats,\\n\\n19\\n00:01:03,896 --> 00:01:06,678\\nwe are Americans, \\nunited in concern for our fellow citizens.\\n\\n20\\n00:01:07,078 --> 00:01:11,890\\nI've also spoken with Governor Patrick, \\nand Mayor Menino,\\n\\n21\\n00:01:11,890 --> 00:01:15,877\\nand made it clear that they have\\nevery single federal resource necessary\\n\\n22\\n00:01:15,878 --> 00:01:18,553\\nto care for the victims\\nand counsel the families.\\n\\n23\\n00:01:18,553 --> 00:01:23,495\\nAnd above all, I made clear to them\\nthat all Americans stand with the people of Boston.\\n\\n24\\n00:01:23,495 --> 00:01:29,868\\nBoston police, firefighters, and first responders,\\nas well as the National Guard,\\n\\n25\\n00:01:29,868 --> 00:01:33,778\\nresponded heroically, \\nand continue to do so as we speak.\\n\\n26\\n00:01:33,778 --> 00:01:39,162\\nIt's a reminder that so many Americans \\nserve and sacrifice on our behalf every single day\\n\\n27\\n00:01:39,162 --> 00:01:43,632\\nwithout regard to their own safety,\\nin dangerous and difficult circumstances,\\n\\n28\\n00:01:43,632 --> 00:01:50,640\\nand we salute all those who assisted in responding \\nso quickly and professionally to this tragedy.\\n\\n29\\n00:01:50,640 --> 00:01:54,002\\nWe still do not know who did this or why,\\n\\n30\\n00:01:54,002 --> 00:01:58,300\\nand people shouldn't jump to conclusions\\nbefore we have all the facts.\\n\\n31\\n00:01:58,300 --> 00:02:02,405\\nBut, make no mistake -\\nwe will get to the bottom of this.\\n\\n32\\n00:02:02,405 --> 00:02:06,869\\nAnd we will find out who did this,\\nwe'll find out why they did this.\\n\\n33\\n00:02:06,869 --> 00:02:12,420\\nAny responsible individuals,\\nany responsible groups,\\n\\n34\\n00:02:12,420 --> 00:02:15,308\\nwill feel the full weight of justice.\\n\\n35\\n00:02:15,608 --> 00:02:20,147\\nToday is a holiday in Massachusetts.\\nPatriots' Day.\\n\\n36\\n00:02:20,147 --> 00:02:25,585\\nIt's a day that celebrates\\nthe free and fiercely independent spirit\\n\\n37\\n00:02:25,585 --> 00:02:29,856\\nthat this great American city of Boston \\nhas reflected from the earliest days of our nation.\\n\\n38\\n00:02:29,856 --> 00:02:32,855\\nAnd it's a day that draws the world\\nto Boston's streets,\\n\\n39\\n00:02:32,855 --> 00:02:35,599\\nin a spirit of friendly competition.\\n\\n40\\n00:02:35,599 --> 00:02:40,830\\nBoston is a tough and resilient town,\\nso are its people,\\n\\n41\\n00:02:41,030 --> 00:02:44,005\\nI'm supremely confident that\\nBostonians will pull together,\\n\\n42\\n00:02:44,005 --> 00:02:47,296\\ntake care of each other,\\nand move forward as one proud city,\\n\\n43\\n00:02:47,296 --> 00:02:53,097\\nand as they do, the American people will be with them,\\nevery single step of the way.\\n\\n44\\n00:02:53,097 --> 00:02:56,714\\nYou should anticipate that,\\nas we get more information,\\n\\n45\\n00:02:56,714 --> 00:03:00,696\\nour teams will provide you briefings;\\n\\n46\\n00:03:00,696 --> 00:03:04,271\\nwe're still in the investigation stage at this point,\\n\\n47\\n00:03:04,271 --> 00:03:06,356\\nbut I just want to reiterate:\\n\\n48\\n00:03:06,356 --> 00:03:10,542\\nWe will find out who did this, \\nand we will hold them accountable.\\n\\n49\\n00:03:11,586 --> 00:03:13,586\\nThank you very much.\",\n", + " 'bytes': 4581,\n", + " 'sha1': 'f0mzt09lchnpyobx1rvwcazet8pke5h',\n", + " 'parent_id': 94678990,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94683104,\n", + " 'timestamp': '2013-04-17T16:10:51Z',\n", + " 'user': {'text': '212.122.223.68'},\n", + " 'page': {'id': 25636738,\n", + " 'title': 'Deutschlandlied-novocals.ogg.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,400\\nJedność i prawo i wolność\\n\\n2\\n00:00:06,900 --> 00:00:11,700\\nDla niemieckiej ojczyzny,\\n\\n3\\n00:00:11,900 --> 00:00:17,700\\nDo tego wszyscy dążmy\\n\\n4\\n00:00:17,900 --> 00:00:22,700\\nPo bratersku, sercem i czynem.\\n\\n5\\n00:00:22,900 --> 00:00:28,400\\nJedność i prawo i wolność\\n\\n6\\n00:00:28,700 --> 00:00:33,800\\nSą gwarancją szczęścia.\\n\\n7\\n00:00:33,900 --> 00:00:39,500\\nKwitnij w blasku tego szczęścia\\n\\n8\\n00:00:39,700 --> 00:00:44,600\\nKwitnij, niemiecka ojczyzno',\n", + " 'bytes': 493,\n", + " 'sha1': 'd5kizivvj2wpwh1kr87fj4y0rjnnmfb',\n", + " 'parent_id': 94683050,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94755373,\n", + " 'timestamp': '2013-04-19T00:02:26Z',\n", + " 'user': {'text': '81.36.252.169'},\n", + " 'page': {'id': 25659610,\n", + " 'title': 'President Obama on Death of Osama bin Laden.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,704 --> 00:00:02,175\\nBuenas tardes\\n\\n2\\n00:00:02,175 --> 00:00:06,952\\nEsta noche, puedo informar al pueblo estadounidense y al mundo\\n\\n3\\n00:00:06,952 --> 00:00:11,3\\nque los Estados Unidos ha llevado a cabo una operación que mató a Osama bin Laden\\n\\n4\\n00:00:11,3 --> 00:00:13,672\\nEl líder de Al-Qaeda\\n\\n5\\n00:00:13,672 --> 00:00:21,359\\ny el terrorista que fue responsable de la muerte de miles de personas inocentes, mujeres, y niños.\\n\\n6\\n00:00:21,359 --> 00:00:25,204\\nQue fue hace casi 10 años que el brillante día de septiembre se oscureció.\\n\\n7\\n00:00:25,204 --> 00:00:29,216\\npor el peor ataque contra el pueblo estadounidense de nuestra historia.\\n\\n8\\n00:00:29,216 --> 00:00:33,994\\nLas imágenes del 9/11 están grabadas en nuestra memoria nacional.\\n\\n9\\n00:00:33,994 --> 00:00:38,775\\nAviones secuestrados que atraviesan las nubes en el cielo de Septiembre\\n\\n10\\n00:00:38,775 --> 00:00:41,784\\nel colapso de las torres gemelas en el suelo\\n\\n11\\n00:00:41,784 --> 00:00:45,059\\nhumo negro arriba del Pentágono\\n\\n12\\n00:00:45,059 --> 00:00:49,47\\nlos restos del vuelo 93 en Shanksville, Pennsylvania\\n\\n13\\n00:00:49,47 --> 00:00:55,554\\ndonde las acciones heroicas de los ciudadanos guardan aún más angustia y destrucción\\n\\n14\\n00:00:55,554 --> 00:01:00,301\\nSin embargo, sabemos que las peores imágenes son aquellas que eran invisibles al mundo\\n\\n15\\n00:01:00,301 --> 00:01:03,175\\nla silla vacía en la mesa\\n\\n16\\n00:01:03,175 --> 00:01:07,355\\nde los niños que se vieron forzados a crecer sin su madre o su padre\\n\\n17\\n00:01:07,355 --> 00:01:12,534\\npadres que no saben la sensación del abrazo de su hijo\\n\\n18\\n00:01:12,534 --> 00:01:16,279\\ncasi tres mil ciudadanos tomados de nosotros\\n\\n19\\n00:01:16,279 --> 00:01:19,79\\ndejando un enorme agujero en nuestros corazones\\n\\n20\\n00:01:19,79 --> 00:01:22,998\\nEn el 11 de Septiembre de 2001\\n\\n21\\n00:01:22,998 --> 00:01:24,933\\nen nuestro tiempo de aflicción\\n\\n22\\n00:01:24,933 --> 00:01:27,41\\nEl pueblo de Estados Unidos se reunió\\n\\n23\\n00:01:27,41 --> 00:01:29,248\\nOfrecimos a nuestros vecinos una mano\\n\\n24\\n00:01:29,248 --> 00:01:32,255\\ny ofrecimos a los heridos nuestra sangre\\n\\n25\\n00:01:32,255 --> 00:01:35,465\\nReafirmamos nuestros lazos entre sí\\n\\n26\\n00:01:35,465 --> 00:01:39,007\\ny nuestro amor por la comunidad y el país\\n\\n27\\n00:01:39,007 --> 00:01:41,749\\nEse día, sin importar de dónde venimos\\n\\n28\\n00:01:41,749 --> 00:01:43,753\\nlo que a Dios oramos\\n\\n29\\n00:01:43,753 --> 00:01:46,262\\nde qué raza o grupo étnico éramos,\\n\\n30\\n00:01:46,262 --> 00:01:50,741\\nnos unimos como una familia americana\\n\\n31\\n00:01:50,741 --> 00:01:54,752\\nTambién estábamos unidos en nuestra determinación de proteger a nuestra nación\\n\\n32\\n00:01:54,752 --> 00:02:00,332\\ny para llevar a los que cometieron este brutal ataque a la justicia\\n\\n33\\n00:02:00,332 --> 00:02:04,378\\nAprendimos rápidamente que los ataques del 9/11 se llevaron a cabo por Al-Qaeda.\\n\\n34\\n00:02:04,378 --> 00:02:06,984\\nuna organización encabezada por Osama bin Laden\\n\\n35\\n00:02:06,984 --> 00:02:09,826\\nque había declarado abiertamente la guerra a Estados Unidos\\n\\n36\\n00:02:09,826 --> 00:02:14,506\\ny se ha comprometido a matar inocentes en nuestro país y en todo el mundo\\n\\n37\\n00:02:14,506 --> 00:02:17,346\\nY así nos fuimos a la guerra contra Al-Qaeda\\n\\n38\\n00:02:17,346 --> 00:02:22,694\\npara proteger a nuestros ciudadanos, nuestros amigos y nuestros aliados.\\n\\n39\\n00:02:22,694 --> 00:02:27,91\\nEn los últimos diez años, gracias al trabajo incansable y heroico de nuestro ejército\\n\\n40\\n00:02:27,91 --> 00:02:32,856\\ny nuestros profesionales de la lucha contra el terrorismo, hemos dado grandes pasos en ese esfuerzo\\n\\n41\\n00:02:32,856 --> 00:02:37,233\\nhemos alterado los ataques terroristas y fortalecido nuestra defensa de la patria\\n\\n42\\n00:02:37,233 --> 00:02:39,809\\nEn Afganistán, hemos eliminado el gobierno Talibán\\n\\n43\\n00:02:39,809 --> 00:02:43,789\\nque había dado bin Laden y Al-Qaeda refugio seguro y apoyo\\n\\n44\\n00:02:43,789 --> 00:02:46,595\\nY todo el mundo, trabajamos con nuestros amigos y aliados\\n\\n45\\n00:02:46,595 --> 00:02:49,536\\npara capturar o matar a decenas de terroristas de Al-Qaeda\\n\\n46\\n00:02:49,536 --> 00:02:54,315\\nentre ellos varios que fueron parte de la parcela 11/9\\n\\n47\\n00:02:54,315 --> 00:02:57,323\\nSin embargo, Osama bin Laden evitó ser capturado\\n\\n48\\n00:02:57,323 --> 00:03:01,301\\ny escapó a través de la frontera Afgana hacia Pakistán\\n\\n49\\n00:03:01,301 --> 00:03:04,543\\nMientras tanto, Al-Qaeda continuó operando desde esa frontera\\n\\n50\\n00:03:04,543 --> 00:03:09,123\\ny operar a través de sus filiales en todo el mundo\\n\\n51\\n00:03:09,123 --> 00:03:11,496\\ny así poco después de asumir el cargo\\n\\n52\\n00:03:11,496 --> 00:03:15,039\\nDirigí Leon Panetta, el director de la CIA,\\n\\n53\\n00:03:15,039 --> 00:03:20,756\\npara hacer la matanza o captura de Bin Laden la primera prioridad de nuestra guerra contra Al-Qaeda\\n\\n54\\n00:03:20,756 --> 00:03:26,071\\nincluso mientras continuamos nuestros esfuerzos más amplios para desbaratar, desmantelar y derrotar a su red\\n\\n55\\n00:03:26,071 --> 00:03:33,256\\nLuego, en agosto pasado, después de años de arduo trabajo por nuestra comunidad de inteligencia\\n\\n56\\n00:03:33,256 --> 00:03:36,7\\nMe informaron sobre una posible pista a Bin Laden\\n\\n57\\n00:03:36,7 --> 00:03:41,646\\nEstaba lejos de ser cierta, y tomó muchos meses para ejecutar este hilo a tierra\\n\\n58\\n00:03:41,646 --> 00:03:44,055\\nMe reuní varias veces con mi equipo de seguridad nacional\\n\\n59\\n00:03:44,055 --> 00:03:48,231\\ncomo hemos desarrollado más información acerca de la posibilidad de que habíamos ubicado a bin Laden\\n\\n60\\n00:03:48,231 --> 00:03:52,41\\nescondido dentro de un recinto en el interior de Pakistán\\n\\n61\\n00:03:52,41 --> 00:03:58,227\\nY, por último, la semana pasada, decidí que teníamos la suficiente inteligencia para tomar medidas\\n\\n62\\n00:03:58,227 --> 00:04:03,942\\ny autorizó una operación para atrapar a Osama bin Laden y llevarlo ante la justicia\\n\\n63\\n00:04:03,942 --> 00:04:10,124\\nHoy, bajo mi dirección, los Estados Unidos lanzaron una operación dirigida contra ese compuesto\\n\\n64\\n00:04:10,124 --> 00:04:13,268\\nen Abbottabad, Pakistán.\\n\\n65\\n00:04:13,268 --> 00:04:18,783\\nEl pequeño equipo de estadounidenses llevó a cabo la operación con extraordinario coraje y capacidad.\\n\\n66\\n00:04:18,783 --> 00:04:21,323\\nNingún estadounidense resultó perjudicado.\\n\\n67\\n00:04:21,323 --> 00:04:24,799\\nSe encargaron de evitar víctimas civiles\\n\\n68\\n00:04:24,799 --> 00:04:27,573\\nDespués de un tiroteo, mataron a Osama bin Laden\\n\\n69\\n00:04:27,573 --> 00:04:31,283\\ny tomaron custodia de su cuerpo.\\n\\n70\\n00:04:31,283 --> 00:04:36,063\\nDurante más de dos décadas, Bin Laden ha sido el líder y símbolo de Al-Qaeda\\n\\n71\\n00:04:36,063 --> 00:04:41,011\\ny ha continuado los ataques complot contra nuestro país y nuestros amigos y aliados.\\n\\n72\\n00:04:41,011 --> 00:04:44,585\\nLa muerte de Bin Laden marca el logro más significativo hasta la fecha\\n\\n73\\n00:04:44,585 --> 00:04:47,729\\nen el esfuerzo de nuestras naciones para derrotar a Al-Qaeda\\n\\n74\\n00:04:47,729 --> 00:04:50,772\\nSin embargo, su muerte no marca el final de nuestro esfuerzo\\n\\n75\\n00:04:50,772 --> 00:04:54,982\\nNo hay duda de que Al-Qaeda continuará con los ataques en contra de nosotros\\n\\n76\\n00:04:54,982 --> 00:05:00,799\\ndebemos, y lo haremos, permanecer vigilantes en casa y en el extranjero\\n\\n77\\n00:05:00,799 --> 00:05:08,254\\nAl hacerlo, también debemos reafirmar que los Estados Unidos no está y nunca estará en guerra con el Islam.\\n\\n78\\n00:05:08,254 --> 00:05:13,802\\nHe dejado claro, al igual que lo hizo el presidente Bush poco después del 9/11,\\n\\n79\\n00:05:13,802 --> 00:05:18,078\\nque nuestra guerra no es contra el Islam, que Bin Laden no era un líder musulmán\\n\\n80\\n00:05:18,078 --> 00:05:21,022\\nera un asesino en masa de musulmanes.\\n\\n81\\n00:05:21,188 --> 00:05:24,096\\nEn efecto, Al-Qaeda sacrificaron decenas de musulmanes en muchos países\\n\\n82\\n00:05:24,096 --> 00:05:26,169\\nincluyendo la nuestra.\\n\\n83\\n00:05:26,169 --> 00:05:31,441\\nAsí que su desaparición debe ser bienvenida por todos los que creen en la paz y la dignidad humana.\\n\\n84\\n00:05:32,395 --> 00:05:34,706\\nCon los años, he manifestado en repetidas ocasiones\\n\\n85\\n00:05:34,706 --> 00:05:39,654\\nque íbamos a tomar medidas dentro de Pakistán si sabíamos que Bin Laden estaba.\\n\\n86\\n00:05:40,146 --> 00:05:41,925\\nEso es lo que hemos hecho.\\n\\n87\\n00:05:42,079 --> 00:05:47,628\\nPero es importante señalar que nuestra cooperación antiterrorista con Pakistán ayudó a llevarnos a bin Laden\\n\\n88\\n00:05:48,397 --> 00:05:50,789\\ny el compuesto donde se escondía.\\n\\n89\\n00:05:51,004 --> 00:05:54,3\\nDe hecho, Bin Laden había declarado la guerra a Pakistán, así\\n\\n90\\n00:05:54,73 --> 00:05:57,613\\ny ordenó ataques contra el pueblo Paquistaní.\\n\\n91\\n00:05:57,89 --> 00:06:04,658\\nEsta noche, me llamó el presidente Zardari, y mi equipo también ha hablado con sus homólogos paquistaníes.\\n\\n92\\n00:06:05,043 --> 00:06:09,455\\nEstán de acuerdo en que este es un día bueno e histórico para nuestras dos naciones\\n\\n93\\n00:06:09,455 --> 00:06:13,399\\ny en el futuro, es esencial que Pakistán continúe\\n\\n94\\n00:06:13,399 --> 00:06:17,711\\na unirse a nosotros en la lucha contra al-Qaeda y sus afiliados.\\n\\n95\\n00:06:18,48 --> 00:06:21,074\\nEl pueblo estadounidense no eligió esta lucha.\\n\\n96\\n00:06:21,074 --> 00:06:23,208\\nLlegó a nuestras costas.\\n\\n97\\n00:06:23,716 --> 00:06:27,358\\nTodo comenzó con la masacre sin sentido de nuestros ciudadanos.\\n\\n98\\n00:06:27,911 --> 00:06:32,914\\nDespués de casi diez años de servicio, lucha y sacrificio\\n\\n99\\n00:06:33,36 --> 00:06:35,831\\nque conocemos bien los costos de la guerra.\\n\\n100\\n00:06:36,831 --> 00:06:43,95\\nEstos esfuerzos pesan sobre mí cada vez que, como Comandante en Jefe, tiene que firmar una carta a una familia que ha perdido a un ser querido\\n\\n101\\n00:06:43,95 --> 00:06:48,897\\no mirar a los ojos a un miembro del servicio que ha sido herido gravemente.\\n\\n102\\n00:06:48,897 --> 00:06:51,803\\nAsí que los estadounidenses entienden los costos de la guerra.\\n\\n103\\n00:06:52,203 --> 00:06:56,684\\nSin embargo, como país, nunca vamos a tolerar nuestra seguridad está amenazada\\n\\n104\\n00:06:56,684 --> 00:06:59,979\\nni permanecer de brazos cruzados cuando nuestra gente ha sido asesinada.\\n\\n105\\n00:07:00,441 --> 00:07:03,907\\nSeremos implacables en la defensa de nuestros ciudadanos\\n\\n106\\n00:07:03,907 --> 00:07:06,245\\ny nuestros amigos y aliados.\\n\\n107\\n00:07:06,245 --> 00:07:09,352\\nSeremos fieles a los valores que nos hacen ser quienes somos\\n\\n108\\n00:07:09,967 --> 00:07:16,273\\ny en noches como ésta, podemos decir a las familias que han perdido a sus seres queridos con el terrorismo de al-Qaeda:\\n\\n109\\n00:07:16,273 --> 00:07:19,114\\nSe ha hecho justicia.\\n\\n110\\n00:07:20,252 --> 00:07:25,523\\nHoy damos gracias a los innumerables profesionales de inteligencia y lucha contra el terrorismo que han trabajado incansablemente\\n\\n111\\n00:07:25,523 --> 00:07:27,894\\npara lograr este resultado.\\n\\n112\\n00:07:28,063 --> 00:07:32,617\\nEl pueblo estadounidense no ve su trabajo, ni saben sus nombres\\n\\n113\\n00:07:32,986 --> 00:07:39,295\\npero esta noche, sienten la satisfacción de su trabajo y el resultado de su búsqueda de la justicia.\\n\\n114\\n00:07:39,772 --> 00:07:42,952\\nDamos gracias por los hombres que llevaron a cabo esta operación\\n\\n115\\n00:07:42,952 --> 00:07:47,92\\nya que ejemplifican el profesionalismo, el patriotismo y valentía sin igual\\n\\n116\\n00:07:47,92 --> 00:07:50,417\\nde los que sirven a nuestro país.\\n\\n117\\n00:07:50,417 --> 00:07:57,12\\nY son parte de una generación que ha llevado la parte más pesada de la carga desde ese día de septiembre.\\n\\n\\n118\\n00:07:57,12 --> 00:08:01,448\\nPor último, quisiera decir a las familias que perdieron a seres queridos el 11/9\\n\\n119\\n00:08:01,833 --> 00:08:04,416\\nque nunca hemos olvidado su pérdida\\n\\n120\\n00:08:04,723 --> 00:08:08,47\\nni flaqueado en nuestro compromiso para ver que hacemos lo que sea necesario\\n\\n121\\n00:08:08,47 --> 00:08:11,342\\npara prevenir otro ataque a nuestras costas.\\n\\n122\\n00:08:11,727 --> 00:08:17,41\\nY esta noche, vamos a pensar de nuevo a la sensación de unidad que prevaleció en el 9/11.\\n\\n123\\n00:08:17,81 --> 00:08:21,13\\nSé que tiene, a veces, deshilachados.\\n\\n124\\n00:08:21,884 --> 00:08:25,896\\nSin embargo, el logro de hoy es un testimonio de la grandeza de nuestro país\\n\\n125\\n00:08:26,203 --> 00:08:28,932\\ny la determinación del pueblo estadounidense.\\n\\n126\\n00:08:29,916 --> 00:08:33,387\\nLa causa de asegurar nuestro país no está completa, pero\\n\\n127\\n00:08:33,387 --> 00:08:39,049\\nesta noche nos recuerda una vez más que Estados Unidos puede hacer lo que ponemos a nuestra mente.\\n\\n128\\n00:08:39,941 --> 00:08:41,758\\nEsa es la historia de nuestra historia.\\n\\n129\\n00:08:42,512 --> 00:08:45,185\\nYa sea por la búsqueda de la prosperidad para nuestra gente\\n\\n130\\n00:08:45,569 --> 00:08:48,443\\no la lucha por la igualdad de todos los ciudadanos\\n\\n131\\n00:08:49,043 --> 00:08:52,389\\nnuestro compromiso de defender nuestros valores en el extranjero\\n\\n132\\n00:08:52,774 --> 00:08:56,231\\ny nuestros sacrificios para hacer del mundo un lugar más seguro.\\n\\n133\\n00:08:57,492 --> 00:09:01,964\\nRecordemos que podemos hacer estas cosas no sólo por la riqueza o el poder\\n\\n134\\n00:09:02,21 --> 00:09:04,787\\nsino por lo que somos.\\n\\n135\\n00:09:04,987 --> 00:09:06,24\\nUna nación\\n\\n136\\n00:09:06,378 --> 00:09:07,382\\nbajo Dios\\n\\n137\\n00:09:07,782 --> 00:09:08,849\\nindivisible\\n\\n138\\n00:09:09,018 --> 00:09:09,988\\ncon la libertad\\n\\n139\\n00:09:09,988 --> 00:09:11,91\\ny la justicia para todos.\\n\\n140\\n00:09:12,649 --> 00:09:13,945\\nGracias.\\n\\n141\\n00:09:13,945 --> 00:09:15,193\\nQue Dios los bendiga.\\n\\n142\\n00:09:15,193 --> 00:09:17,008\\nY que Dios bendiga a los Estados Unidos de América.',\n", + " 'bytes': 13540,\n", + " 'sha1': '0k4kbrr0gbm5fyxd3ynaatywzyxsnq8',\n", + " 'parent_id': 94754366,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96651582,\n", + " 'timestamp': '2013-05-21T10:29:23Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 25661915,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.hr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nzastava s pogledom na Orebić\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\nplaninski lanac gledan s vrha Pelješca prema istoku\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić sa Vižanice\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić sa sjeverozapada\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nPelješac gledan sa kanala\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\ngolet iznad Orebića\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\ngolet iznad Orebića\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\nKapetani i škoji sa Bile ploce\\n\\n9\\n00:00:36,000 --> 00:00:39,800\\nOskorušno s Vitera\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda s Vitera\\n\\n11\\n00:00:44,000 --> 00:00:47,800\\nKapetani sa zapada\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nVinogradi na jugu\\n\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj sa zapada\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nDonja Nakovana sa Gradine\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nKorcula sa gradine\\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nNa Supinama iznad Mokala\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić sa Mokala\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomje i Pijavicino sa zapada\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nsamostan u Podgorju sa sjeveroistoka\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nsamostan u Podgorju sa sjeverozapada\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić sa Supina\\n\\n22\\n00:01:28,000 --> 00:01:31,800\\nMokalo i Postup sa Supina\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\nKlanac Pratnjice\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić sa sjevera\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić sa sjeverozapada\\n\\n26\\n00:01:44,000 --> 00:01:47,800\\nbrdo Žrnovnica\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić sa sjevera\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nPogled na Orebić izmedu 2 stine\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nVižanica-jugoistocna padina\\n\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\nUvala Divna\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nPelješka Duba gledana s vrha brda\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nBarinski vrhovi i Žrnovska Banja u pozadini\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\npogled s Pelješca na zapad\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nGornja Vrucica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton i solana\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nDonja Vrucica s juga (Mokalo)\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nSamostan u Kuni gledan s juga\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nzapušteni vinogradi gledani s Vlaštice\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina sa zapada\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRuskovici sa sjevera\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nselo Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nselo Lovište\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\npadina Vlaštice\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\nkriž na vrhu Pelješca',\n", + " 'bytes': 2723,\n", + " 'sha1': 'le8t65rl971oaoc7e3x41opjy6qahy7',\n", + " 'parent_id': 94767074,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96651345,\n", + " 'timestamp': '2013-05-21T10:24:15Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 25664720,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\nPanorama photos of Pelješac. Pictures taken in period 2009-2013\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nFlag with a view towards Orebić\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\nmountain range viewed from the top of the peninsula to the east\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić from Vižanica\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić from the northwest\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nPeninsula as viewed from the channel\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\nbarren land above Orebić\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\nbarren land above Orebić\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\n\"Kapetani\" and islands from \"Bila ploča\" (white panel)\\n\\n9\\n00:00:36,000 --> 00:00:39,800\\nOskorušno from Viter\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda from Viter\\n\\n11\\n00:00:44,000 --> 00:00:47,800\\n\"Kapetani\" from the West\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nVineyards on the south\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj from the west\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nLower Nakovana from Gradina\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nKorčula from Gradina\\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nOn Supine above Mokalo\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić from Mokalo\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomje and Pijavičino from the west\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nmonastery in Podgorje from the northeast \\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nmonastery in Podgorje from the northwest \\n\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić from Supine\\n\\n22\\n00:01:28,000 --> 00:01:31,800\\nMokalo and Postup from Supine\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\nridge Pratnjice\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić from the north\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić from the northwest\\n\\n26\\n00:01:44,000 --> 00:01:47,800\\nHill Žrnovnica\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić from the north\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nView of Orebić between 2 rocks\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nVižanica-southeast slopes\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\nbay of Divna\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nPelješka Duba viewed from the summit of Pelješac\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nBarinski peaks and Žrnovska Banja in background\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\nview from the peninsula to the west\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nGornja Vrućica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton and salt works\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nDonja Vrućica from south (Mokalo range)\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nMonastery in Kuna Pelješka viewed from the south\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nneglected vineyards seen from Vlaštica\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina from the west\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRuskovići from the north\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nvillage of Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nvillage of Lovište\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nslopes of Vlaštica\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\ncross on the top of Pelješac',\n", + " 'bytes': 2997,\n", + " 'sha1': '41wwao6d164lhx1ysmay8g4uw507v5n',\n", + " 'parent_id': 96443395,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784377,\n", + " 'timestamp': '2013-04-19T13:26:03Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665915,\n", + " 'title': 'What is Bitcoin?.webm.ar.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,195 --> 00:00:01,250 ما هو البتكوين ؟ 1 00:00:01,488 --> 00:00:04,999 بتكوين هو أول عملة رقمية لامركزية 2 ...'\",\n", + " 'text': '0\\n00:00:00,195 --> 00:00:01,250\\nما هو البتكوين ؟\\n\\n1\\n00:00:01,488 --> 00:00:04,999\\nبتكوين هو أول عملة رقمية لامركزية\\n\\n2\\n00:00:05,039 --> 00:00:06,555\\nالبتكوين هو عملة رقمية\\n\\n3\\n00:00:06,605 --> 00:00:07,656\\nيمكنك إرسالها عبر الإنترنت\\n\\n4\\n00:00:07,969 --> 00:00:09,179\\nمقارنة بالبدائل الأخرى\\n\\n5\\n00:00:09,179 --> 00:00:11,328\\nتتمتع البتكوين بعدد من المزايا\\n\\n6\\n00:00:11,563 --> 00:00:13,998\\nيتم نقل البتكوين بشكل مباشر من شخص إلى آخر\\n\\n7\\n00:00:14,048 --> 00:00:14,648\\nعبر الإنترنت\\n\\n8\\n00:00:14,698 --> 00:00:15,781\\nبدون المرور عبر بنك\\n\\n9\\n00:00:15,831 --> 00:00:16,756\\nأو دار مقاصة\\n\\n10\\n00:00:17,070 --> 00:00:18,632\\nكنتيجة, الرسوم أقل بكثير\\n\\n11\\n00:00:18,682 --> 00:00:20,195\\nيمكن إستخدامها في أي دولة\\n\\n12\\n00:00:20,245 --> 00:00:21,651\\nلا يمكن تجميد حسابك\\n\\n13\\n00:00:21,651 --> 00:00:22,771\\nولا توجد أي شروط للإستخدام\\n\\n14\\n00:00:22,821 --> 00:00:24,023\\nأو حدود إعتباطية على المبالغ المستخدمة\\n\\n15\\n00:00:25,703 --> 00:00:27,651\\nدعونا نلقي نظرة على كيفية العمل\\n\\n16\\n00:00:27,833 --> 00:00:29,921\\nيتم توليد البتكوين في كل أنحاء الإنترنت\\n\\n17\\n00:00:29,972 --> 00:00:33,407\\nبواسطة أي شخص يستخدم برنامج مجانى يسمى\\nب\"مستخرج البتكوين\"\\n\\n18\\n00:00:33,457 --> 00:00:35,279\\nيتطلب إستخراج البتكوين قدر محدد من العمل\\n\\n19\\n00:00:35,279 --> 00:00:36,661\\nللعثور على كل مجموعة من البتكوين\\n\\n20\\n00:00:36,986 --> 00:00:39,279\\nتقوم الشبكة بتحديد قدر العمل المطلوب تلقائياَ\\n\\n21\\n00:00:39,279 --> 00:00:43,194\\nبحيث يتم توليد البتكوين بمعدل محدود وسهل التنبؤ به\\n\\n22\\n00:00:44,084 --> 00:00:46,330\\nيتم تخزين عملات البتكوين الخاصة بك في محفظتك الرقمية\\n\\n23\\n00:00:46,330 --> 00:00:49,055\\nوهو نظام مألوف لمستخدمي الخدمات المصرفية عبر الإنترنت\\n\\n24\\n00:00:49,105 --> 00:00:50,450\\nعندما تقوم بإرسال بتكوين\\n\\n25\\n00:00:50,501 --> 00:00:52,190\\nتتم إضافة توقيع إلكتروني\\n\\n26\\n00:00:52,482 --> 00:00:53,458\\nبعد دقائق\\n\\n27\\n00:00:53,509 --> 00:00:55,688\\nيقوم أحد برامج مستخرج البتكوين بمراجعة المعاملة\\n\\n28\\n00:00:55,696 --> 00:00:58,251\\nويتم تخزينها في الشبكة بدون تسجيل أي بيانات شخصية\\nوبشكل لا يسمح بمسحها\\n\\n29\\n00:00:58,353 --> 00:01:00,702\\nبرنامج البتكوين مفتوح المصدر بالكامل\\n\\n30\\n00:01:00,752 --> 00:01:02,671\\nو يمكن لأي شخص مراجعة المصدر\\n\\n31\\n00:01:02,883 --> 00:01:04,505\\nتأثير البتكوين على المعاملات المالية\\n\\n32\\n00:01:04,504 --> 00:01:06,604\\nيماثل تأثير الإنترنت على النشر\\n\\n33\\n00:01:06,783 --> 00:01:08,898\\nعند توافر سوق عالمية متاحة للجميع\\n\\n34\\n00:01:09,016 --> 00:01:10,836\\nتزدهر الأفكار المتميزة\\n\\n35\\n00:01:11,633 --> 00:01:14,890\\nدعونا ننظر إلى بعض الأمثلة على الإستخدامات الحالية البتكوين\\n\\n36\\n00:01:15,125 --> 00:01:16,847\\nيمكنك شراء ألعاب الفيديو\\n\\n37\\n00:01:16,892 --> 00:01:17,878\\nهدايا\\n\\n38\\n00:01:17,908 --> 00:01:18,612\\nكتب\\n\\n39\\n00:01:18,649 --> 00:01:19,470\\nخوادم\\n\\n40\\n00:01:19,656 --> 00:01:21,462\\nأو حتى جوارب مصنوعة من وبر الألبكة\\n\\n41\\n00:01:21,552 --> 00:01:23,209\\nهناك عدد من أسواق الصرف\\n\\n42\\n00:01:23,209 --> 00:01:24,470\\nيمكنك إستخدامها لتحويل البتكوين الخاص بك\\n\\n43\\n00:01:24,470 --> 00:01:25,073\\nإلى دولار أمريكي\\n\\n44\\n00:01:25,073 --> 00:01:25,503\\nيورو\\n\\n45\\n00:01:25,504 --> 00:01:26,237\\nو عملات أخرى\\n\\n46\\n00:01:26,237 --> 00:01:29,976\\nالبتكوين طريقة ممتازة للشركات الصغيرة و الأعمال الحرة\\nللحصول على عملاء\\n\\n47\\n00:01:30,147 --> 00:01:32,304\\nلا توجد أي تكلفة للبدء بقبول البتكوين\\n\\n48\\n00:01:32,304 --> 00:01:33,768\\nجميع المعاملات نهائية و بلا رسوم\\n\\n49\\n00:01:33,768 --> 00:01:36,383\\nو ستحصل على عملاء أكثر من مستخدمي البتكوين\\n\\n50\\n00:01:37,023 --> 00:01:38,976\\nللحصول على البتكوين الأولى لك, و لمزيد من المعلومات\\n\\n51\\n00:01:38,977 --> 00:01:41,386\\nزر موقع\\nweusecoins.com',\n", + " 'bytes': 4767,\n", + " 'sha1': '9kfu0wscuy9ojo08o28kdb5ufph7928',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784379,\n", + " 'timestamp': '2013-04-19T13:26:05Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665917,\n", + " 'title': 'What is Bitcoin?.webm.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Que es Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin es la primera 2 00:00:02,902 --> 00:00:04,968 moneda digital descentra...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nQue es Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin es la primera\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\nmoneda digital descentralitzada.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nEls bitcoins son monedes digitals\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nque pots enviar\\na través d\\'Internet.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nComparat amb la resta\\nd\\'alternatives,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nBitcoin té nombrosos\\navantatges.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nEls bitcoins son transferits\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\ndirectament de persona\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\na persona\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\na través de la xarxa\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nsense pasar\\nper un banc\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\no un altre intermediari.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nAixó significa que les comissions\\nsón molt més petites,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\npots utilitzar-ho\\na qualsevol país,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nel teu compte no pot\\nser congelat\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\ni no hi han\\nprerequisits\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\no límits arbitraris.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nMirem com funciona!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nEls bitcoins son generats\\na tot Internet\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nper cualsevol\\namb un programa gratuït\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nanomenat \"Bitcoin miner\".\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nCrear bitcoins requereix\\nuna certa quantitat de treball\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nper cada bloc de monedes.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nAquesta quantitat\\ns\\'adjusta automaticament\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\nper la xarxa\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nper tal que els bitcoins\\nsempre siguin creats\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\na un ratio predictible\\ny limitat.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nEls teus bitcoins es guardan\\na la teva cartera digital\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nque et resultarà familiar\\nsi utilitzes banca digital.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nQuan transfereixes bitcoins,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nuna firma electrònica\\nes afegida.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nPasats uns minuts\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nla transacció es\\nverificada per un \"miner\"\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\ni es permanent i\\nanonimament enmagatzemada\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\nper la xarxa.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nEl software de Bitcoin es\\ncompletament obert\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\ni qualsevol pot\\nrevisar el codi.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin està\\ncanviant les finances\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nde la mateixa manera que la web\\nha canviat el periodisme.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nQuan qualsevol\\nte accés\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\nal mercat global,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nfloreixen grans idees.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nMirem\\nalguns exemples\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nde com els bitcoins\\ns\\'estan utilitzan avui en dia:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nPots comprar\\nvideojocs,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\nregals,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nllibres,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nservidors\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\ni mitjons d\\'alpaca.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nExisteixen diverses cases de canvi\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\non pots intercanviar\\nels teus bitcoins\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\nper dòlars,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neuros\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\ni més.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nels bitcoins son\\nuna gran manera\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\nper que petits negocis\\ni autònoms\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\nrebin publicitat.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nNo costa res\\ncomençar a acceptar-los,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nno hi ha càrrecs ni comissions\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\ni rebràs\\nnegoci adicional\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nde la economia Bitcoin.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nPels teus primers bitcoins i\\nmés informació, visita:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4087,\n", + " 'sha1': '2axbwixgo91bm3opl7pn2xu0as243nr',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784381,\n", + " 'timestamp': '2013-04-19T13:26:07Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665918,\n", + " 'title': 'What is Bitcoin?.webm.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Co je Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin je první 2 00:00:02,902 --> 00:00:04,968 decentralizovaná elektronick...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nCo je Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin je první\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\ndecentralizovaná elektronická měna.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcoiny jsou digitální mince\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nkteré můžete posílat\\nskrz Internet.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nVe srovnání s ostatními\\nalternativami,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nmají Bitcoiny\\nněkolik výhod.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoiny lze převádět\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\npřímo od člověka\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\nke člověku\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nskrze Internet\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nbez nutností\\nvyužívat banku\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\nnebo jiného prostředníka.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nTo znamená, že poplatky\\njsou mnohem nižší,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nmůžete jimi platit\\nve všech zemích světa,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nVáš účet nemůže být zmrazen\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\na neexistují žádné omezení\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\nnebo zbytečné limity.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nPojďme se podívat, jak to celé funguje!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nBitcoiny jsou vytvářeny\\nnapříč celým Internetem\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nlidmi, kteří provozují\\nvolně dostupnou aplikaci\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nzvanou Bitcoin miner.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nPro nalezení každé sady mincí\\nvyžaduje těžení\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nurčité množsví práce.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nToto množství je\\nautomaticky upravováno\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\nsamotnou sítí tak,\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\naby byly Bitcoiny\\nvždy vytvářeny\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\nv předem známé\\na omezené míře.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nVaše Bitcoiny jsou uloženy\\nv elektronické peněžence,\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nkterá je velmi podobná\\nběžnému online bankovnictví.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nKdyž převádíte Bitcoiny,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nk příkazu se přidá\\ndigitální podpis.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nPo pár minutách\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nje příkaz zpracován\\nBitcoin minerem\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\na je trvale\\na anonymně uložen\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\ndo sítě.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nZdrojové kódy Bitcoin aplikace\\njsou zcela otevřeny,\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\ntakže aplikaci může\\nkdokoliv zkontrolovat.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin zcela mění\\nsvět financí\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nstejným způsobem, jakým web\\nzměnil způsob komunikace.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nPokud může mít\\nna globální trh\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\npřístup opravdu kdokoliv,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nzačnou vzniknout skvělé nápady.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nPojďme se podívat\\nna pár příkladů,\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\njak jsou již dnes\\nBitcoiny používány:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nMůžete si za ně objednat\\npočítačové hry,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\ndárky,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nknihy,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\npočítače\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\na ponožky z alpaky.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nExistuje několik směnáren\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\nkde můžete vyměnit Bitcoiny\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\nza dolary,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neura\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\na další.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nBitcoiny stojí za pozornost\\n\\n56\\n00:01:27,410 --> 00:01:30,146\\npředevším drobným podnikatelům\\na nezávislým pracovníkům.\\n\\n57\\n00:01:30,388 --> 00:01:32,346\\nZačít přijímat Bitcoiny\\nnestojí vůbec nic,\\n\\n58\\n00:01:32,378 --> 00:01:33,713\\nnejsou zde žádné poplatky\\nnebo smluvní dodatky.\\n\\n59\\n00:01:33,745 --> 00:01:35,419\\nMůžete však získát\\nzcela nové klienty\\n\\n60\\n00:01:35,420 --> 00:01:36,774\\nz rozvíjející se Bitcoin ekonomiky.\\n\\n61\\n00:01:36,985 --> 00:01:39,295\\nPro Vaše první Bitcoiny\\na více informací, navštivte:\\n\\n62\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4259,\n", + " 'sha1': '70twa5euwkc5w10pfaql507wd63hnyd',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784382,\n", + " 'timestamp': '2013-04-19T13:26:08Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665919,\n", + " 'title': 'What is Bitcoin?.webm.da.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Hvad er Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin er den første 2 00:00:02,902 --> 00:00:04,968 decentraliserede digit...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nHvad er Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin er den første\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\ndecentraliserede digitale valuta.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcoins er digitale mønter\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\ndu kan sende\\nover internettet.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nSammenlignet med\\nalternativerne,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nhar Bitcoins en række\\nfordele.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoins overføres\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\ndirekte fra person\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\ntil person\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nvia nettet\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nuden at gå\\ngennem en bank\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\neller et clearingkontor.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nDet betyder, at gebyrerne\\ner meget lavere,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nat du kan bruge dem\\ni alle lande,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\ndin konto kan\\nikke fryses,\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\nog der er ingen krav\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\neller arbitrære grænser.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nLad os se,\\nhvordan det virker!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nBitcoins genereres\\noveralt på internettet\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\naf enhver, der\\nkører et gratis program\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nkaldet en Bitcoin-miner.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nAt minere kræver en\\nbestemt mængde arbejde\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nfor hver blok af mønter.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nDenne mængde\\njusteres automatisk\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\naf netværket,\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nsåledes Bitcoins\\naltid skabes\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\ni et forudsigeligt\\nog begrænset tempo.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nDine Bitcoins opbevares\\ni din digitale pung,\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nsom måske ser bekendt ud,\\nhvis du allerede bruger netbank.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nNår du overfører Bitcoins,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\ntilføjes en\\nelektronisk signatur.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nEfter et par minutter\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nbliver transaktionen\\nbekræftet af en minør\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nog permanent og\\nanonymt gemt\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\ni netværket.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nBitcoin-softwaren er\\nfuldstændig open source,\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\nog enhver kan\\ntjekke koden efter.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin er ved at \\nændre finansverdenen,\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\npå samme måde som internettet \\nændrede udgivelse af eget materiale.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nNår alle\\nhar adgang\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\ntil et globalt marked,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nblomstrer gode idéer.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nLad os se\\nnogle eksempler på,\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nhvordan Bitcoins\\nallerede bruges i dag:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nDu kan købe\\ncomputerspil,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\ngaver,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nbøger,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nservere\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\nog alpaca-sokker.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nDer findes adskillige valutabørser\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\nhvor du kan handle\\ndine Bitcoins\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\nfor dollar,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neuro\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\nmed mere.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nBitcoins er\\nen rigtig god måde\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\nfor små virksomheder\\nog freelancere\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\nat blive bemærket på.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nDet koster ingenting at\\nbegynde at tage imod dem,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nder er ingen tilbageførsler\\neller gebyrer,\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\nog du får\\nflere kunder\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nfra Bitcoin-økonomien.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nFå dine første Bitcoins samt\\nmere information på:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4036,\n", + " 'sha1': 'a3z8tew3u9yqe6vds92an09hyxai92b',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784384,\n", + " 'timestamp': '2013-04-19T13:26:09Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665921,\n", + " 'title': 'What is Bitcoin?.webm.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Wat is Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin is de eerste 2 00:00:02,902 --> 00:00:04,968 decentrale, digitale munt...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nWat is Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin is de eerste\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\ndecentrale, digitale munteenheid.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcoins zijn digitale munten\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\ndie je kan versturen\\nvia het Internet.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nVergeleken met andere\\nalternatieven\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nhebben Bitcoins een\\naantal voordelen.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoins worden direct verstuurd,\\n\\n8\\n00:00:12,750 --> 00:00:13,800\\nvan persoon naar persoon,\\n\\n9\\n00:00:13,992 --> 00:00:14,744\\nvia het internet.\\n\\n10\\n00:00:14,759 --> 00:00:15,797\\nZonder tussenkomst van een bank,\\n\\n11\\n00:00:15,798 --> 00:00:16,880\\nof andere centrale instantie.\\n\\n12\\n00:00:17,145 --> 00:00:18,786\\nDe transactiekosten zijn\\nhierdoor erg laag,\\n\\n13\\n00:00:18,831 --> 00:00:20,316\\nje kan ze in elk land gebruiken,\\n\\n14\\n00:00:20,339 --> 00:00:21,706\\nje rekening kan niet geblokkeerd worden,\\n\\n15\\n00:00:21,792 --> 00:00:22,893\\nen er zijn geen voorwaarden,\\n\\n16\\n00:00:22,933 --> 00:00:23,950\\nof limieten.\\n\\n17\\n00:00:25,952 --> 00:00:27,585\\nLaten we eens kijken hoe het werkt!\\n\\n18\\n00:00:27,795 --> 00:00:29,880\\nBitcoins worden gegenereerd op het internet\\n\\n19\\n00:00:29,935 --> 00:00:31,599\\ndoor iedereen die de gratis\\n\\n20\\n00:00:31,650 --> 00:00:33,000\\nBitcoin miner software gebruikt.\\n\\n21\\n00:00:33,445 --> 00:00:35,224\\nMining kost een bepaalde \\nhoeveelheid werk\\n\\n22\\n00:00:35,239 --> 00:00:36,693\\nvoor elke gegenereerde Bitcoin.\\n\\n23\\n00:00:36,968 --> 00:00:38,250\\nDe hoeveelheid gegenereerde \\nBitcoins wordt automatisch\\n\\n24\\n00:00:38,273 --> 00:00:39,750\\ndoor het netwerk aangepast,\\n\\n25\\n00:00:39,773 --> 00:00:41,300\\nzodat er nooit teveel of te weinig\\n\\n26\\n00:00:41,350 --> 00:00:43,310\\nBitcoins worden aangemaakt.\\n\\n27\\n00:00:44,146 --> 00:00:46,370\\nJe Bitcoins worden opgeslagen\\nin je digitale portemonnee,\\n\\n28\\n00:00:46,503 --> 00:00:49,096\\ndat komt je misschien bekend \\nvoor van internet-bankieren.\\n\\n29\\n00:00:49,222 --> 00:00:50,409\\nAls je Bitcoins verstuurt\\n\\n30\\n00:00:50,456 --> 00:00:52,292\\nwordt er een digitale handtekening\\naan de transactie toegevoegd.\\n\\n31\\n00:00:52,550 --> 00:00:53,413\\nNa een paar minuten\\n\\n32\\n00:00:53,446 --> 00:00:55,464\\nwordt de transactie gecontroleerd\\ndoor een Bitcoin miner\\n\\n33\\n00:00:55,566 --> 00:00:57,071\\nen permanent en anomien opgeslagen\\n\\n34\\n00:00:57,072 --> 00:00:58,237\\nin het Bitcoin netwerk.\\n\\n35\\n00:00:58,301 --> 00:01:00,652\\nDe Bitcoin software is open source\\n\\n36\\n00:01:00,704 --> 00:01:02,439\\ndus iedereen kan de broncode bekijken.\\n\\n37\\n00:01:02,924 --> 00:01:04,541\\nBitcoin verandert de financiele wereld\\n\\n38\\n00:01:04,563 --> 00:01:06,607\\nzoals het internet de\\nuitgeverijen heeft wakker geschud.\\n\\n39\\n00:01:06,818 --> 00:01:08,014\\nAls iedereen toegang heeft\\n\\n40\\n00:01:08,015 --> 00:01:09,060\\ntot een globale markt,\\n\\n41\\n00:01:09,146 --> 00:01:10,966\\nkrijgen ideeen de vrije ruimte.\\n\\n42\\n00:01:11,624 --> 00:01:12,698\\nLaten we eens kijken\\n\\n43\\n00:01:12,706 --> 00:01:15,069\\nhoe je Bitcoins nu al kan gebruiken:\\n\\n44\\n00:01:15,201 --> 00:01:16,895\\nJe kan er videogames mee kopen,\\n\\n45\\n00:01:16,913 --> 00:01:17,676\\nkadootjes,\\n\\n46\\n00:01:17,811 --> 00:01:18,374\\nboeken,\\n\\n47\\n00:01:18,474 --> 00:01:19,365\\nservers,\\n\\n48\\n00:01:19,623 --> 00:01:21,411\\nen zelfs alpaca wollen sokken.\\n\\n49\\n00:01:21,498 --> 00:01:23,200\\nEr zijn meerdere Bitcoin exchanges\\n\\n50\\n00:01:23,208 --> 00:01:24,411\\nwaar je Bitcoins kan verhandelen:\\n\\n51\\n00:01:24,427 --> 00:01:24,990\\nVoor dollars,\\n\\n52\\n00:01:24,997 --> 00:01:25,466\\neuros,\\n\\n53\\n00:01:25,490 --> 00:01:25,997\\nen meer.\\n\\n54\\n00:01:26,295 --> 00:01:27,394\\nBitcoins zijn een goede manier\\n\\n55\\n00:01:27,410 --> 00:01:29,033\\nvoor kleine bedrijven\\nen freelancers\\n\\n56\\n00:01:29,050 --> 00:01:30,146\\nom op te vallen.\\n\\n57\\n00:01:30,146 --> 00:01:32,745\\nBitcoin transacties zijn kosteloos\\nen kunnen niet teruggedraaid worden,\\n\\n58\\n00:01:32,745 --> 00:01:33,745\\ner zijn geen transactiekosten,\\n\\n59\\n00:01:33,745 --> 00:01:35,419\\nen de Bitcoin economie zelf\\n\\n60\\n00:01:35,420 --> 00:01:36,774\\nzorgt weer voor extra inkomsten.\\n\\n61\\n00:01:36,985 --> 00:01:39,295\\nVoor je eerste Bitcoins en \\nmeer informatie bezoek:\\n\\n62\\n00:01:39,312 --> 00:01:40,750\\nweusecoins.com\\n\\n63\\n00:01:40,750 --> 00:01:50,000\\nVertaling: www.Bitcoinspot.nl\\n -',\n", + " 'bytes': 4238,\n", + " 'sha1': 'ay6zxtnjw1japhn8idx8o681nw9qaxv',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784385,\n", + " 'timestamp': '2013-04-19T13:26:11Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665922,\n", + " 'title': 'What is Bitcoin?.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 What is Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin is the first 2 00:00:02,902 --> 00:00:04,968 decentralized digital cu...'\",\n", + " 'text': \"0\\n00:00:00,210 --> 00:00:01,546\\nWhat is Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin is the first\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\ndecentralized digital currency.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcoins are digital coins\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nyou can send\\nthrough the Internet.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nCompared to other\\nalternatives,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nBitcoins have a number\\nof advantages.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoins are transferred\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\ndirectly from person\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\nto person\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nvia the net\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nwithout going\\nthrough a bank\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\nor clearinghouse.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nThis means that the fees\\nare much lower,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nyou can use them\\nin every country,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nyour account cannot\\nbe frozen\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\nand there are no\\nprerequisites\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\nor arbitrary limits.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nLet's look at how it works!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nBitcoins are generated\\nall over the Internet\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nby anybody running\\na free application\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\ncalled a Bitcoin miner.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nMining requires a certain\\namount of work\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nfor each block of coins.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nThis amount is\\nautomatically adjusted\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\n by the network\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nsuch that Bitcoins\\nare always created\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\nat a predictable\\nand limited rate.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nYour Bitcoins are stored\\nin your digital wallet\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nwhich might look familiar\\nif you use online banking.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nWhen you transfer Bitcoins,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nan electronic signature\\nis added.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nAfter a few minutes\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nthe transaction is\\nverified by a miner\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nand permanently and\\nanonymously stored\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\nin the network.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nThe Bitcoin software is\\ncompletely open source\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\nand anybody can\\nreview the code.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin is\\nchanging finance\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nthe same way the web\\nchanged publishing.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nWhen everyone\\nhas access\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\nto a global market,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\ngreat ideas flourish.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nLet's look at\\nsome examples\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nof how Bitcoins are\\nalready used today:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nYou can purchase\\nvideo games,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\ngifts,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nbooks,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nservers\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\nand alpaca socks.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nSeveral currency exchanges exist\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\nwhere you can trade\\nyour Bitcoins\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\nfor dollars,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neuros\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\nand more.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nBitcoins are\\na great way\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\nfor small businesses\\nand freelancers\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\nto get noticed.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nIt doesn't cost anything to\\nstart accepting them,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nthere are no chargebacks or fees\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\nand you'll get\\nadditional business\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nfrom the Bitcoin economy.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nFor your first Bitcoins and\\nmore information, visit:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com\",\n", + " 'bytes': 3984,\n", + " 'sha1': 'ql1wfvzddwoj873jr62le2rev9zmbo1',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784388,\n", + " 'timestamp': '2013-04-19T13:26:12Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665924,\n", + " 'title': 'What is Bitcoin?.webm.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Mikä on Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin on ensimmäinen 2 00:00:02,902 --> 00:00:04,968 hajautettu digitaali...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nMikä on Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin on ensimmäinen\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\nhajautettu digitaalinen valuutta.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcoinit ovat digitaalisia kolikoita\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\njoita voi lähettää Internetin yli.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nMuihin vaihtoehtoihin verrattuna\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nBitcoineilla on useita etuja.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoinit lähetetään\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\nsuoraan ihmiseltä\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\ntoiselle\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nnetin kautta\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nilman, että ne menevät pankin\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\ntai maksunvälittäjän läpi.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nTämä tarkoittaa, että kulut\\novat paljon pienemmät,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nvoit käyttää niitä\\nkaikkialla,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nrahojasi ei voida jäädyttää\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\neikä käytölle ole mitään \\nvaatimuksia\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\ntai mielivaltaisia rajoituksia.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nKatsotaanpas miten tämä toimii!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nBitcoinit luodaan\\njoka puolella Internetiä,\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nkuka tahansa voi luoda bitcoineja, \\nilmaisella ohjelmalla\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nnimeltä Bitcoin-louhija.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nLouhiminen vaatii tietyn\\nmäärän työtä\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\njokaisen lohkon ratkaisemiseksi.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nBitcoin-verkko säätää tämän\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\nmäärän automaattisesti\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nsellaiseksi, että bitcoineja\\nluodaan\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\nennustettavissa olevalla\\nja rajoitetulla nopeudella.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nBitcoinisi talletetaan\\ndigitaaliseen lompakkoosi\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\njoka voi näyttää tutulta\\nverkkopankkeja käyttäville.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nKun teet Bitcoin-siirron,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nsiihen lisätään sähköinen allekirjoitus.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nMuutaman minuutin kuluttua\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nlouhija vahvistaa siirron\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nja tallentaa sen pysyvästi\\nja anonyymisti\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\nBitcoin-verkkoon.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nBitcoin ohjelmisto on täysin\\navointa lähdekoodia\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\njoten kuka tahansa voi \\ntarkistaa koodin.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin on muuttamassa rahaliikenteen\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nkuten Internet muutti julkaisemisen.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nKun jokaisella on mahdollisuus\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\nolla mukana maailmanlaajuisessa\\nkaupassa,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nloistavat ideat menestyvät.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nTässä on muutamia esimerkkejä\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nsiitä miten bitcoineja\\nkäytetään jo tänä päivänä:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nVoit ostaa\\npelejä,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\nlahjoja,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nkirjoja,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nservereitä\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\nja Alpaca-sukkia.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nOn olemassa useita vaihtopörssejä,\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\njoissa voit vaihtaa\\nbitcoinisi\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\ndollareiksi,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neuroiksi\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\ntai joksikin muuksi valuutaksi.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nBitcoinit ovat\\npienyrityksille\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\nja freelancereille\\nloistava tapa\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\ntulla huomatuksi.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nEi maksa mitään\\nalkaa hyväksyä bitcoineja,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nei ole takaisinmaksuja\\ntai kuluja\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\nja saat lisää\\nasiakkaita\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nBitcoin-harrastajien keskuudesta.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nHankkiaksesi ensimmäiset bitcoinisi\\ntai saadaksesi lisää tietoa, avaa:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4252,\n", + " 'sha1': 'jv7tnne8ljlk2sbxnj93fe3xzs5ujm4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784389,\n", + " 'timestamp': '2013-04-19T13:26:14Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665925,\n", + " 'title': 'What is Bitcoin?.webm.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 C'est quoi, bitcoin ? 1 00:00:01,609 --> 00:00:02,901 Bitcoin est la première 2 00:00:02,902 --> 00:00:04,968 devise monétai...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nC\\'est quoi, bitcoin ?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin est la première\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\ndevise monétaire électronique décentralisée.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nLes bitcoins sont des jetons électroniques\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nque vous pouvez envoyez à travers internet.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nPar rapport aux autres monnaies électroniques,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nles bitcoins ont plusieurs avantages.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nLes bitcoins se transmettent\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\ndirectement d\\'une personne\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\nà une autre\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nà travers le réseau\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nsans passer par une banque\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\nou une chambre de compensation.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nCela signifie que les frais de transaction\\nsont bien moindres,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nque vous pouvez les utiliser dans n\\'importe\\nquel pays,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nque votre compte ne peut pas être bloqué,\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\net qu\\'il n\\'y a pas de conditions préalables\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\nou de limites arbitraire.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nVoyons comment cela fonctionne !\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nLes bitcoins sont générés\\nà travers tout le réseau\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\npar n\\'importe quel personne\\nfaisant tourner une application\\nlibre\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nappelée \"un extracteur de bitcoin\".\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nL\\'extraction recquiert un minimum\\nde travail\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\npour chaque bloc de transactions.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nLa difficulté est automatiquement\\najustée\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\n par le réseau\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nde telle sorte que les bitcoins\\nsont toujours générés\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\nselon un rythme prédictible\\net limité.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nVos bitcoins sont stockés\\ndans votre portefeuille électronique\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nqui peut vous sembler familier\\nsi vous utiliser des banques\\nen ligne.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nQuand vous transférez des bitcoins,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nune signature électronique est\\najoutée.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nAprès quelques minutes\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nla transaction est\\nvérifiée par un extracteur\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\npuis stockée de façon anonyme\\net permanente\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\ndans le réseau.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nBitcoin est un logiciel libre\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\ndonc n\\'importe qui peut inspecter\\nson code source.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin change la finance\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nde la même façon que le web\\nchange l\\'édition.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nQuand tout le monde a accès\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\nà un marché global,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nde grandes idées apparaissent.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nVoyons quelques exemples\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nmontrant comment les bitcoins\\nsont d\\'ores et déjà utilisés:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nVous pouvez acheter des jeux vidéos,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\ndes cadeaux,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\ndes livres,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\ndes serveurs informatiques,\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\net bien sûr des chaussettes en Alpaca.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nPlusieurs sites d\\'échanges existent\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\noù vous pouvez échangez vos bitcoins\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\ncontre des dollars,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\ndes euros,\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\nou autre.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nLes bitcoins sont un\\nexcellent moyen\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\npour les petites entreprises\\net pour les autoentrepreneurs\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\nde se faire remarquer.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nCela ne coute rien de \\ncommencer à les accepter,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nil n\\'y a pas de frais divers\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\net vous pourez faire des affaires\\ncomplémentaires\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nà partir de l\\'économie bitcoin.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nPour obtenir vos premiers bitcoins,\\nrendez-vous sur:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4522,\n", + " 'sha1': 'lju9raf3uscotsy6jekeantfs5rrf5k',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784391,\n", + " 'timestamp': '2013-04-19T13:26:15Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665926,\n", + " 'title': 'What is Bitcoin?.webm.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Was ist Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin ist die erste 2 00:00:02,902 --> 00:00:04,968 dezentralisierte digita...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nWas ist Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin ist die erste\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\ndezentralisierte digitale Währung.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcoins sind digitale Münzen\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\ndie du über das Internet\\nversenden kannst.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nIm Vergleich zu anderen\\nAlternativen\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nhaben Bitcoins\\neinige Vorteile:\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoins werden direkt\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\nvon Person\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\nzu Person\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\ndurchs Internet übertragen,\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nohne den Umweg über\\neine Bank oder eine\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\nAbrechnungsstelle nehmen zu müssen.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nDas bedeutet, dass die Gebühren\\nviel geringer sind.\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nDu kannst sie in jedem\\nLand benutzen,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nund dein Guthaben kann\\nnicht eingefroren werden.\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\nEs gibt auch keine\\nsonstigen Bedingungen\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\noder künstliche Einschränkungen.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nLass uns sehen,\\nwie das funktioniert!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nBitcoins werden verteilt\\nüber das Internet generiert.\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nJeder kann mitmachen,\\nindem er eine Software startet:\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nden Bitcoin-Miner.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nDer Miner benötigt einen\\ngewissen Aufwand, um einen\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nBlock von Münzen zu erzeugen.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nDieser Aufwand wird automatisch\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\nvom Netzwerk angepasst,\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nsodass Bitcoins stets\\nmit einer vorhersehbaren\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\nund beschränkten\\nRate erstellt werden.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nDeine Bitcoins sind in deiner\\ndigitalen Geldbörse gespeichert,\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nähnlich wie du es vom Online-\\nBanking her kennst.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nWenn du Bitcoins überweist\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nwird eine elektronische\\nSignatur hinzugefügt.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nNach ein paar Minuten\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nwird die Transaktion durch\\neinen Miner bestätigt\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nund permanent und anonym\\nim Netzwerk\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\ngespeichert.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nDie Bitcoin-Software ist\\nkomplett Opensource,\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\nsodass jeder den Quellcode\\nüberprüfen kann.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin ändert das\\nFinanzsystem\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nso wie es das Web mit\\nden Inhalten tat!\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nWenn jeder Zugriff auf\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\neinen globalen Markt hat\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nkönnen großartige Ideen sprießen.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nHier sind ein paar Beispiele\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nwie Bitcoins schon heute\\nverwendet werden:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nDu kannst Videospiele,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\nGeschenke,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nBücher,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nServer,\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\nund Alpaka-Socken kaufen.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nMehrere Wechselstuben\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\nermöglichen den Eintausch\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\nfür Dollar,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\nEuro,\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\nund weitere Währungen.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nBitcoins sind großartig,\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\nkleine Unternehmen und\\nSelbstständige\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\nbekannt zu machen.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nEs kostet nichts, sie als\\nZahlungsmittel zu akzeptieren.\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nEs gibt werder Rückbuchungen\\nnoch Gebühren,\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\ndafür erhältst du\\nweitere Kunden aus\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nder Bitcoin-Community.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nDeine ersten Bitcoins und\\nweitere Informationen findest\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\ndu auf: weusecoins.com',\n", + " 'bytes': 4274,\n", + " 'sha1': 'cv4mufibd9nl1r4e85bfg93yqwp4le2',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784392,\n", + " 'timestamp': '2013-04-19T13:26:17Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665927,\n", + " 'title': 'What is Bitcoin?.webm.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,533 Τι είναι το Bitcoin; 1 00:00:01,609 --> 00:00:04,805 Το Bitcoin είναι το πρώτο αποκεντρωμέν...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,533\\nΤι είναι το Bitcoin;\\n\\n1\\n00:00:01,609 --> 00:00:04,805\\nΤο Bitcoin είναι το πρώτο\\nαποκεντρωμένο, ψηφιακό νόμισμα.\\n\\n2\\n00:00:04,900 --> 00:00:07,844\\nΤα bitcoins είναι ψηφιακά κέρματα\\nπου μπορείτε να στείλετε μέσω του Διαδικτύου.\\n\\n3\\n00:00:07,951 --> 00:00:11,337\\nΣε σύγκριση με άλλες εναλλακτικές λύσεις,\\nτο Bitcoin έχει πολλά πλεονεκτήματα.\\n\\n4\\n00:00:11,492 --> 00:00:13,992\\nΤα bitcoins μεταφέρονται άμεσα\\nαπό άτομο σε άτομο\\n\\n5\\n00:00:13,992 --> 00:00:14,759\\nμέσω του δικτύου\\n\\n6\\n00:00:14,759 --> 00:00:15,759\\nχωρίς να μεσολαβήσει τράπεζα\\n\\n7\\n00:00:15,798 --> 00:00:16,845\\nή άλλος διαμεσολαβητής.\\n\\n8\\n00:00:17,145 --> 00:00:18,845\\nΑυτό σημαίνει ότι οι προμήθειες\\nείναι πολύ μικρότερες\\n\\n9\\n00:00:18,846 --> 00:00:20,339\\nΜπορείτε να το χρησιμοποιήσετε\\nσε οποιαδήποτε χώρα,\\n\\n10\\n00:00:20,339 --> 00:00:21,738\\nο λογαριασμός σας\\nδεν μπορεί να παγώσει\\n\\n11\\n00:00:21,792 --> 00:00:24,738\\nκαι δεν υπάρχουν προϋποθέσεις\\nή αυθαίρετα όρια.\\n\\n12\\n00:00:25,952 --> 00:00:27,795\\nΑς δούμε πώς λειτουργεί!\\n\\n13\\n00:00:27,795 --> 00:00:30,595\\nΤα bitcoins παράγονται σε ολόκληρο\\nτο Διαδίκτυο από τον καθένα\\n\\n14\\n00:00:30,635 --> 00:00:33,410\\nπου τρέχει το δωρεάν πρόγραμμα\\nπου ονομάζεται \"Εξόρυξη Bitcoin\".\\n\\n15\\n00:00:33,445 --> 00:00:36,611\\nΗ εξόρυξη bitcoins απαιτεί ένα ορισμένο\\nποσό εργασίας για κάθε μπλοκ κερμάτων.\\n\\n16\\n00:00:36,968 --> 00:00:39,427\\nΤο ποσό αυτό είναι αυτόματα\\nρυθμίζεται από το δίκτυο\\n\\n17\\n00:00:39,462 --> 00:00:41,187\\nέτσι ώστε τα bitcoins\\nπάντοτε να δημιουργούνται\\n\\n18\\n00:00:41,222 --> 00:00:43,929\\nσε μια προβλέψιμη και\\nπεριορισμένη αναλογία.\\n\\n19\\n00:00:44,146 --> 00:00:46,146\\nΤα Bitcoin σας αποθηκεύονται\\nστο ψηφιακό πορτοφόλι σας\\n\\n20\\n00:00:46,503 --> 00:00:49,222\\nπου θα σας φανεί οικείο αν\\nχρησιμοποιείτε ψηφιακές τράπεζες.\\n\\n21\\n00:00:49,222 --> 00:00:50,222\\nΌταν μεταφέρετε τα bitcoins,\\n\\n22\\n00:00:50,456 --> 00:00:52,456\\nπροστίθεται μια ηλεκτρονική υπογραφή.\\n\\n23\\n00:00:52,550 --> 00:00:55,565\\nΜετά από λίγα λεπτά η συναλλαγή\\nεπαληθεύεται από έναν \"εξορύκτη\"\\n\\n24\\n00:00:55,601 --> 00:00:58,018\\nκαι αποθηκεύεται μόνιμα\\nκαι ανώνυμα στο δίκτυο.\\n\\n25\\n00:00:58,101 --> 00:01:00,701\\nΤο λογισμικό του Bitcoin είναι\\nαπολύτως ανοικτού κώδικα\\n\\n26\\n00:01:00,704 --> 00:01:02,704\\nκαι ο καθένας μπορεί\\nνα ελέγξει τον κώδικα.\\n\\n27\\n00:01:02,924 --> 00:01:04,563\\nΤο Bitcoin αλλάζει τα οικονομικά\\n\\n28\\n00:01:04,563 --> 00:01:06,563\\nμε τον ίδιο τρόπο που το\\nδιαδίκτυο άλλαξε τις εκδόσεις.\\n\\n29\\n00:01:06,818 --> 00:01:09,093\\nΌταν όλοι έχουν πρόσβαση\\nσε μια παγκόσμια αγορά,\\n\\n30\\n00:01:09,146 --> 00:01:10,846\\nμεγάλες ιδέες\\nμπορούν να ανθίσουν.\\n\\n31\\n00:01:11,624 --> 00:01:12,705\\nΑς δούμε μερικά παραδείγματα\\n\\n32\\n00:01:12,706 --> 00:01:15,200\\nπως τα bitcoin ήδη\\nχρησιμοποιούνται σήμερα:\\n\\n33\\n00:01:15,200 --> 00:01:16,800\\nΜπορείτε να αγοράσετε\\nβίντεο-παιχνίδια,\\n\\n34\\n00:01:16,913 --> 00:01:17,811\\nδώρα,\\n\\n35\\n00:01:17,811 --> 00:01:18,685\\nβιβλία,\\n\\n36\\n00:01:18,685 --> 00:01:19,623\\nδιακομιστές,\\n\\n37\\n00:01:19,623 --> 00:01:21,498\\nκαι κάλτσες αλπακά.\\n\\n38\\n00:01:21,498 --> 00:01:23,208\\nΥπάρχουν αρκετά\\nανταλλακτήρια νομίσματος\\n\\n39\\n00:01:23,208 --> 00:01:24,508\\nόπου μπορείτε να\\nανταλλάξετε τα bitcoin σας\\n\\n40\\n00:01:24,527 --> 00:01:26,300\\nγια δολάρια, ευρώ και άλλα.\\n\\n41\\n00:01:26,335 --> 00:01:28,294\\nΤα bitcoin είναι ένας πολύ καλός\\nτρόπος να προβληθούν\\n\\n42\\n00:01:28,310 --> 00:01:30,195\\nοι μικρές επιχειρήσεις και\\nοι ελεύθεροι επαγγελματίες.\\n\\n43\\n00:01:30,388 --> 00:01:32,378\\nΔεν κοστίζει τίποτα να\\nαρχίσετε να τα δέχεστε,\\n\\n44\\n00:01:32,378 --> 00:01:33,778\\nδεν υπάρχουν χρεώσεις\\nή προμήθειες\\n\\n45\\n00:01:33,845 --> 00:01:36,725\\nκαι μπορείτε να πάρετε εξτρά δουλειές\\nαπό την Bitcoin οικονομία.\\n\\n46\\n00:01:36,985 --> 00:01:39,312\\nΓια τα πρώτα bitcoin σας και\\nπερισσότερες πληροφορίες,\\n\\n47\\n00:01:39,312 --> 00:01:41,000\\nεπισκεφθείτε την ιστοσελίδα:\\nweusecoins.com',\n", + " 'bytes': 5378,\n", + " 'sha1': 'im549xv86k95s49wcj964er8dmq8kjr',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784394,\n", + " 'timestamp': '2013-04-19T13:26:19Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665929,\n", + " 'title': 'What is Bitcoin?.webm.iw.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 אז מה זה בעצם מטביט? 1 00:00:01,609 --> 00:00:02,901 מטביט הוא המטבע הדיגיטלי 2 00:00:02,9...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nאז מה זה בעצם מטביט?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nמטביט הוא המטבע הדיגיטלי\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\nהמבוזר הראשון.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nמטביטים הינם \\nמטבעות דיגיטליים\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nאשר ניתן לשלוח \\nדרך האינטרנט.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nלמטביט מספר יתרונות\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nלעומת האלטרנטיבות הקיימות.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nמטביטים מועברים\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\nבאופן ישיר\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\nמאדם לאדם\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nדרך האינטרנט\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nללא מעבר דרך בנק\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\nאו מערכת סליקה כלשהיא.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nהמשמעות היא שהעמלות נמוכות בצורה משמעותית,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nניתן להשתמש בהם בכל מדינה,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nלא ניתן להקפיא את חשבונכם,\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\nואין שום מגבלות שרירותיות\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\nאו דרישות כלשהן.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nבואו ונראה איך זה עובד!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nמטביטים נוצרים\\nע\"י משתמשים מכל העולם\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nהמריצים תוכנה\\nחינמית הנקראת\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\n\"כורה מטביטים\".\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nפעולת הכרייה דורשת\\nכמות עבודה מסויימת\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nעבור כל בלוק של מטביטים.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nכמות זו משתנה\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\n אוטומטית ע\"י הרשת\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nכך שקצב ייצור\\nהמטביטים הינו\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\nצפוי מראש ומוגבל.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nהמטביטים שמורים\\nבארנק הדיגיטלי שלכם\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nהמעוצב בדומה למערכות \\nמקוונות לניהול חשבונות בנק.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nכל פעם כשאתם מעבירים מטביט\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nנוספת חתימה אלקטרונית.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nההעברה מאושרת על ידי\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\n\"כורה מטביטים\"\\nתוך זמן קצר\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nומאוחסנת ברשת \\nבאופן אנונימי\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\nובלתי הפיך.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nתוכנת המטביט הינה פרוייקט\\nקוד פתוח מא\\' עד ת\\',\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\nכך שכל אחד יכול לבחון אותו.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nמטביט משנה את שוק ההון\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nכמו שהרשת שינתה את עולם הפרסום וההוצא לאור.\\n\\n40\\n00:01:06,818 --> 00:01:09,060\\nכאשר לכל אחד ואחת ניתנת הגישה לשוק הגלובלי,\\n\\n41\\n00:01:09,146 --> 00:01:10,966\\n או אז רעיונות גדולים יכולים להתפשט ולפרוח.\\n\\n42\\n00:01:11,624 --> 00:01:13,198\\nכמה דוגמאות\\nלדרכים בהם\\n\\n43\\n00:01:13,206 --> 00:01:15,069\\nניתן להשתמש במטביט\\nכבר היום:\\n\\n44\\n00:01:15,201 --> 00:01:16,895\\nאפשר לקנות משחקי וידאו,\\n\\n45\\n00:01:16,913 --> 00:01:17,676\\nמתנות,\\n\\n46\\n00:01:17,811 --> 00:01:18,474\\nספרים,\\n\\n47\\n00:01:18,685 --> 00:01:19,365\\nשרתי רשת,\\n\\n48\\n00:01:19,623 --> 00:01:21,411\\nוגרבי אלפקה.\\n\\n49\\n00:01:21,498 --> 00:01:23,200\\nקיימים חלפני כספים\\n\\n50\\n00:01:23,208 --> 00:01:24,411\\nהמאפשרים החלפת מטביט\\n\\n51\\n00:01:24,427 --> 00:01:24,990\\nעבור דולר,\\n\\n52\\n00:01:24,997 --> 00:01:25,466\\nאירו,\\n\\n53\\n00:01:25,490 --> 00:01:25,997\\nועוד.\\n\\n54\\n00:01:26,295 --> 00:01:27,394\\nמטביט הינו\\nאמצעי מעולה\\n\\n55\\n00:01:27,410 --> 00:01:30,146\\nעבור עצמאים ועסקים\\n קטנים לקבל פרסום.\\n\\n56\\n00:01:30,388 --> 00:01:32,346\\nעלות השימוש בהם אפסית,\\n\\n57\\n00:01:32,378 --> 00:01:33,713\\nללא שום עמלות או ביטולים,\\n\\n58\\n00:01:33,745 --> 00:01:35,419\\nותזכו להנות מעסקים\\n\\n59\\n00:01:35,420 --> 00:01:36,774\\nעם קהילת המטביט \\nההולכת וגודלת.\\n\\n60\\n00:01:36,985 --> 00:01:39,295\\nכדי לקבל את המטביטים הראשונים\\nשלכם ולמידע נוסף בקרו ב-\\n\\n61\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4793,\n", + " 'sha1': '8y9hanawexqcclywnyhc4cbli8aiiws',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784396,\n", + " 'timestamp': '2013-04-19T13:26:20Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665931,\n", + " 'title': 'What is Bitcoin?.webm.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Che cos'e' Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin e' la prima 2 00:00:02,902 --> 00:00:04,968 moneta digitale decent...'\",\n", + " 'text': \"0\\n00:00:00,210 --> 00:00:01,546\\nChe cos'e' Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin e' la prima\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\nmoneta digitale decentralizzata.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nI Bitcoin sono soldi digitali\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nPuoi inviarli\\nattraverso Internet.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nAl confronto con\\nle altre monete,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nBitcoin ha numerosi\\nvantaggi.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nI Bitcoin sono trasferiti\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\ndirettamente da persona\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\na persona\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nvia rete\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nsenza passare\\nper una banca\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\no camera di compensazione.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nQuesto significa che i\\ncosti sono assai miniri,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\npuoi usarli in\\ntutte le nazioni,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nil tuo account non\\npuo' essere congelato\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\ne non ci sono\\nprerequisiti\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\no limiti arbitrari.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nVediamo come funziona!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nI Bitcoin sono generati\\ntutti attraverso Internet\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nda chiunque esegua\\nun'applicazione gratuita\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nchiamata minatore Bitcoin.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nMinare richiede una certa\\nquantita' di lavoro\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nper ogni blocco di monete.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nQuesta quantita' viene\\naggiustata automaticamente\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\ndal network.\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nQuesti Bitcoin sono\\nsempre creati\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\nsecondo un limite\\nrateale prestabilito.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nI tuoi Bitcoin si trovano\\nnel tuo portamonete digitale.\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nche ti sembrera' famigliare\\nse gia' usi le banche online.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nQuando trasferisci Bitcoin,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nviene aggiunta\\nuna firma digitale.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nDopo pochi minuti\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nil trasferimento viene\\nverificarto da un minatore\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nviene poi salvato permanentemente\\ne anonimamente\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\nsul network.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nIl software Bitcoin e'\\ncompletamente open source\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\ne chiunque puo'\\nverificarne il codice.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin cambia\\nla finanza\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nnello stesso modo in cui il web\\nha cambiato l'editoria.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nQuando tutti\\nhanno accesso\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\nal mercato globale,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nfioriscono grandi idee.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nGuardiamo ad alcuni esempi\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nsu come i Bitcoin sono\\ngia' usati tutt'oggi:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nPuoi comprare\\nvideo games,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\nregali,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nlibri,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nserver\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\ne calze di alpaca.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nEsistono diversi cambisti\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\ndove puoi scambiare\\ni tuoi Bitcoin\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\nper dollari,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neuro\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\ne molto altro.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nI Bitcoin sono\\nun ottimo modo\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\ncon cui le piccole imprese\\ne liberi professionisti\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\npossono farsi notare.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nNon costa nulla\\niniziare ad accettarli,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nnon ci sono costi\\ndi ritorno o tasse\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\ne scoprirete altri affari\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nsul mercato Bitcoin.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nPer i tuoi primi Bitcoin e\\naltre informazioni, visita:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com e bitcoin.org\",\n", + " 'bytes': 4106,\n", + " 'sha1': 'ltxdyty6d62zqbc1zmnws8iz5u9ob54',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784397,\n", + " 'timestamp': '2013-04-19T13:26:22Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665932,\n", + " 'title': 'What is Bitcoin?.webm.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Bitcoinとは? 1 00:00:01,609 --> 00:00:02,901 Bitcoinは初めての 2 00:00:02,902 --> 00:00:04,968 デジタル通貨です...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nBitcoinとは?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoinは初めての\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\nデジタル通貨です。\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcoinはインターネットを通し\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\n送信できる\\nデジタルコインです。\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\n他の代替通貨に比べて、\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nBitcoinにはいくつかの\\n利点があります。\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoinはインターネットを通じ\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\n個人同士で\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\n直接取引\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nでき、\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\n銀行や手形交換所を\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\n通す必要もありません。\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nこれにより手数料が非常に\\n低く抑えられ、\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nどの国でも使用でき、\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\n口座を凍結される\\n心配もありません。\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\n使用においての\\n必須条件や\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\n制限もありません。\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nではどのような仕組みか見てみましょう!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nBitcoinはインターネット上の\\nあらゆる場所で\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nBitcoinを採掘できる\\n無料のアプリケーションを\\n使用しているすべてのユーザーによって\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\n生成されています\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\n各ブロックのコインを採掘するには\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nそれなりの作業量が必要です。\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nこの作業量は自動的に\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\nネットワークにより調整されています\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nこれによりBitcoinは常に\\n一定で\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\n適切な量が生成されます。\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nあなたのBitcoinは\\nオンライン銀行口座のような\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nデジタル財布に蓄えられます。\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nBitcoinを送信すると\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\n電子署名が添付されます。\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\n数分後\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nBitcoin 採掘アプリケーションによって\\n取引が認証されます。\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nそしてネットワークに\\n匿名で永久に\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\n保存されます。\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nBitcoinソフトウェアは\\nオープンソースのため\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\nだれでもコードを\\n見ることができます。\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoinはネットが書物の発行を\\n変えたように\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\n金融も変えています。\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\n多くの人がアクセスできる\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\nグローバル市場では、\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\n様々な良質なアイディアが発展します。\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nではBitcoinがどのように\\n使用されているか\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nいくつかの例を\\n見てみましょう\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nゲームを購入したり、\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\nプレゼント、\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\n本、\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nサーバー、\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\nアルパカ用の靴下だって。\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nBitcoinにはいくつかの\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\n通貨へ変換できます。\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\nドル、\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\nユーロ、\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\n他にもいろいろあります。\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nBitcoinは\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\n小規模ビジネスやフリーランスなどに\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\n注目されるのに最適です。\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nBitcoinを受け付けるのに\\n費用はかかりません、\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\n引き落としや費用はなく\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\nBitcoin経済により\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\n新たなビジネスを得られます。\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nBitcoinに関する情報はこちら\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4582,\n", + " 'sha1': 'dzjroq8bpwaof5krt21lw8eqytt1rcq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784398,\n", + " 'timestamp': '2013-04-19T13:26:23Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665933,\n", + " 'title': 'What is Bitcoin?.webm.ko.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 비트 코인(Bit Coin)이란 무엇인가? 1 00:00:01,609 --> 00:00:02,901 비트 코인은 첫번째로 2 00:00:02,902 --> 0...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\n비트 코인(Bit Coin)이란 무엇인가?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\n비트 코인은 첫번째로\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\n만들어진 디지털 화폐이다.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\n비트코인은 디지털 코인이며\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\n인터넷을 통해 보낼수 있다.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\n다른 기존의 통화들과 비교해서\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\n비트코인은 많은 장점들이 있다.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\n비트코인은 은행이나\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\n다른 대행업체를\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\n거치지 않고\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\n직접적으로 인터넷을 통해\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\n개인 대 개인으로\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\n거래를 할 수 있다\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\n그래서 수수료가 은행이나 다른 대행업체에 비해 아주 저렴하다.\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\n어느 나라에서든지\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\n사용이 가능하며\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\n사용하는 구좌는 자격요건이 제한이 없으며\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\n구좌가 동결되거나 독점적인 제한이 없다.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\n어떻게 사용하는가?\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\n비트코인은 누구든지 비트코인 마인너(Bitcoin Miner)라고\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\n부르는 매체를 사용하여\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\n인터넷을 통하여 발행 할 수 있다.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\n비트코인 네트웍스는 \"코인 생성\" 옵션을 \\n\\n23\\n00:00:35,239 --> 00:00:36,693\\n선택한 소프트웨어를 작동하는 누구가에게\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\n한 묶음의 새로운 비트코인을 시간당 6번 정도씩\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\n 무작위로 생성해 배분한다. \\n\\n26\\n00:00:39,273 --> 00:00:40,724\\n소프트웨어를 작동하는 사람은 누구나 비트코인 묽음을 받을 수 있으며\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\n발행금액은 네트웍에 의해 자동적으로 조정되어 예측과 조정이 가능하다.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\n비트코인은 온라인 뱅킹처럼 사용자의 전자지갑에 저장 할 수 있으며\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\n거래할때 전자 싸인이 필요하다\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\n결제 몇분후에 거래내역이 비트코인 마인너(Bitcoin Miner)에게\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\n검증되고\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\n네트웍에\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\n자동적으로\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\n차명으로 영구히\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\n저장된다.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\n비트 코인 운용 소트트 웨어는 완전하게 오프되어 있어\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\n누구든지 그 코드를 검사 할 수 있다.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\n비트코인은\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\n웹시장에서 통용되는것과 다른 통화와 똑같이\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\n일반 경제에서 사용되고 있고\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\n모두가 글로벌 시장에서 사용할때 그것에 대한\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\n좋은 아이디어가 넘칠것이다.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\n그 예로는\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\n오늘날 이미 비트코인을\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\n비디오 게임\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\n선물\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\n서적\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\n서버\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\n양발들을 구매하는데 사용되고 있다.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\n또한 비트코인은\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\n사용자가 사용할 수 있게\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\n달러화\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\n유로화\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\n그밖에 다른 국제 통화로\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\n바꾸어 통용되고 있고\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\n소규모 사업, 프리랜스 사업에도\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\n사용되고 있다.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\n비트코인을 받는데\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\n부가적인 비용과 수수료가 부과되지 않으며\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\n비트코인 경제를 통해서\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\n여러분들은 사업면에서 여러가지 혜택을 볼 것이다.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\n처음 비트코인을 접하는 사람들은 보다 자세한 정보를 얻기위해서는\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nwww.weusecoins.com을 방문하시길 바람니다.',\n", + " 'bytes': 4752,\n", + " 'sha1': '3dzxptr4xv2w3mw5r7gbdrh0kcoir1w',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784400,\n", + " 'timestamp': '2013-04-19T13:26:25Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665935,\n", + " 'title': 'What is Bitcoin?.webm.lt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Kas yra Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin yra pirmoji 2 00:00:02,902 --> 00:00:04,968 decentralizuota skaitmeni...'\",\n", + " 'text': \"0\\n00:00:00,210 --> 00:00:01,546\\nKas yra Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin yra pirmoji\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\ndecentralizuota skaitmeninė valiuta.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcoins yra skaitmeninės monetos\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nkurias gali siųsti\\nper internetą.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nLyginant su kitomis\\nalternatyvomis,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nBitcoins turi daug\\nprivalumų.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoins yra persiunčiami\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\ntiesiai iš žmogaus\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\nkitam žmogui\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nper internetą\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nnereikia net \\neiti į banką\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\nar kita instituciją.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nTai reiškia, kad mokesčiai\\nyra daug mažesni,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\njuos gali naudoti\\nvisose šalyse,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\ntavo sąskaita negali būti\\nužšaldyta,\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\nnėra jokių\\npapildomų sąlygų\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\nar kitų apribojimų.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nPažiūrėkime kaip tai veikia!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nBitcoins yra generuojami\\nvisame internete.\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nTai gali daryti bet kas\\nnaudodamasis nemokamu klientu\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nvadinamu Bitcoin generatorium.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nGeneravimas reikalauja tam\\ntikro kiekio darbų\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nkiekvienam monetų blokui \\npagaminti.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nDarbų kiekis yra \\nautomatiškai koreguojamas\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\nviso tinklo\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nkad Bitcoins\\nbūtų sukurti\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\ntam tikru greičiu ir \\nribotu kiekiu.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nJūsų Bitcoins yra talpinami\\nJūsų skaitmeninėje piniginėje\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nkuri yra labai panaši\\nį internetinę bankininkystę.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nKai darote pavedimą Bitcoins,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nelektroninis parašas\\npridedamas.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nPo kelių minučių\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\npavedimai yra\\npatvirtinami generuotojų\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nkurie yra nuolatos\\nanonimiškai patalpinti\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\ntinkle.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nBitcoin programa yra\\nvisiškai atviro kodo\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\nir kiekvienas gali\\nperžiūrėti kodą.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin keičia\\nfinansus\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\ntaip pat kaip internetas\\nkeičia leidybą.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nKai kiekvienas \\nturi prisijungimą\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\nprie tarptautinių rinkų -\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nnuostabios idėjos klesti.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nPasižiūrėkime į kai\\nkuriuos pavyzdžius\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nkaip Bitcoin yra\\nnaudojami šendien:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nJūs galite nusipirkti\\nvideo žaidimų,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\ndovanų,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nknygų,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nvietą serveriuose\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\nir net kojinių.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nYra keletas valiutų keityklų\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\nkur Jūs galite prekiauti ir\\nuž savo Bitcons\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\npirkt dolerius\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neurus\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\nir dar daugiau.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nBitcoin yra\\npuikus būdas\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\nmažam verslui\\nar freelance'eriams\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\nbūt pastebėtiems.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nPradėt atsiskaitynėt\\nnieko nekainuoja,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nnėra jokių papildomų sąlygų\\nir mokesčių\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\nir Jūs turėsite\\npapildomą verslą\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\niš Bitcoin ekonomikos.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nNorite gauti savo pirmąji Bitcoin\\nar sužinoti daugiau, apsilankykite:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com\",\n", + " 'bytes': 4193,\n", + " 'sha1': 'cp6bi0s1e6ld97jgdsipvd6c0j71jat',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784401,\n", + " 'timestamp': '2013-04-19T13:26:26Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665936,\n", + " 'title': 'What is Bitcoin?.webm.no.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Hva er Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin er den første 2 00:00:02,902 --> 00:00:04,968 desentraliserte digital...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nHva er Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin er den første\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\ndesentraliserte digitale valuta.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcons er digitale mynter\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nsom du kan sende\\nvia Internett.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nSammenlignet med andre \\nalternativer,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nså har Bitcoins en rekke\\nfordeler.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoins kan overføres\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\ndirekte fra person\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\ntil person\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nvia Internett\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nuten å gå\\ngjennom en bank\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\neller en klareringssentral.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nDette betyr at avgifter\\nvil være mye lavere,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\ndu kan bruke de\\ni alle land,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\ndin konto vil aldri\\nbli sperret\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\nog det er ingen\\nforutsetninger\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\neller arbitrære begrensninger.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nLa oss se hvordan det virker!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nBitcoins kan genereres\\nover alt på Internett\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nav alle som bruker\\nen gratis programvare\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nkalt Bitcoin miner.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nMining krever en \\nviss arbeidsmengde\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nfor hver blokk av mynter.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nDenne mengden er \\nautomatisk justert \\n\\n25\\n00:00:38,273 --> 00:00:39,249\\nav nettverket\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nslik at Bitcoins \\nalltid vil bli opprettet\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\ntil en forutsigbar\\nog begrenset kurs.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nDine Bitcoins er lagret\\ni din digitale lommebok \\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nsom vil se kjent ut\\nhvis du er vant til å bruke nettbank.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nNår du overfører Bitconis,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nvil en elektronisk signatur\\nbli dannet.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nEtter noen få minutter\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\ner transaksjonen \\nverifisert av en miner\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nog permanent og \\nanonymt lagret\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\ni nettverket.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nBitconis programvare er basert\\npå åpen kildekode\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\nog hvem som helst kan \\nundersøke koden.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin\\nforandrer finans \\n\\n39\\n00:01:04,563 --> 00:01:06,607\\npå samme måte som Internett\\nendret publisering.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nNår alle \\nhar tilgang\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\ntil et globalt marked\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nvil gode ideer blomstre.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nLa oss se på\\nnoen eksempler\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\npå hvordan Bitcoins\\nallerede blir brukt i dag:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nDu kan handle\\ndataspill,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\ngaver,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nbøker,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\ndatautstyr\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\nog alpaca sokker.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nEn rekke valutaer kan brukes\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\nslik at du kan omsette\\ndine Bitcoins\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\ni dollar,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neuro\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\nog mange flere.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nBitcoins er \\nen fin mulighet\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\nfor små forretninger\\nog frilansere\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\ntil å bli lagt merke til.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nDet koster ingenting å \\nkomme i gang,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\ndet er ingen tilbakeføringer\\neller avgifter\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\nog du vil få \\ntilleggs virksomhet\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nfra Bitcon økonomien.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nFor å komme i gang med Bitcoin\\nog for mer informasjon, besøk:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4078,\n", + " 'sha1': 'iyj84tlvxojok35bouvllgxi8v896t8',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784402,\n", + " 'timestamp': '2013-04-19T13:26:28Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665937,\n", + " 'title': 'What is Bitcoin?.webm.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Czym jest Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin to pierwsza 2 00:00:02,902 --> 00:00:04,968 niezależna cyfrowa wal...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nCzym jest Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin to pierwsza\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\nniezależna cyfrowa waluta.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitmonety to cyfrowe monety\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nktóre możesz przesyłać\\nprzez Internet\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nPorównując je \\nz innymi walutami\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nBitmonety mają dużo zalet\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nSą one przesyłane\\n\\n8\\n00:00:12,545 --> 00:00:13,984\\nbezpośrednio od osoby\\ndo osoby\\n\\n9\\n00:00:13,992 --> 00:00:14,744\\nprzez Internet\\n\\n10\\n00:00:14,759 --> 00:00:15,797\\nbez potrzeby chodzenia\\ndo banku\\n\\n11\\n00:00:15,798 --> 00:00:16,880\\nczy kantoru.\\n\\n12\\n00:00:17,145 --> 00:00:18,786\\nOznacza to, że opłaty \\nsą dużo niższe,\\n\\n13\\n00:00:18,831 --> 00:00:20,316\\nmożesz ich używać wszędzie,\\n\\n14\\n00:00:20,339 --> 00:00:21,706\\nnikt nie zablokuje Ci konta,\\n\\n15\\n00:00:21,792 --> 00:00:22,893\\ni nie ma żadnych dodatkowych\\n\\n16\\n00:00:22,933 --> 00:00:23,950\\nwymagań czy ograniczeń.\\n\\n17\\n00:00:25,952 --> 00:00:27,585\\nZobaczmy jak to działa!\\n\\n18\\n00:00:27,795 --> 00:00:29,880\\nBitmonety wytwarzają\\nużytkownicy Internetu\\n\\n19\\n00:00:29,935 --> 00:00:31,479\\ndzięki darmowej\\naplikacji\\n\\n20\\n00:00:31,513 --> 00:00:33,333\\nw procesie zwanym \"minowaniem\".\\n(ang. \"mining\")\\n\\n21\\n00:00:33,445 --> 00:00:35,224\\nMinowanie wymaga określonego\\nnakładu pracy\\n\\n22\\n00:00:35,239 --> 00:00:36,693\\nna każdą paczkę monet.\\n\\n23\\n00:00:36,968 --> 00:00:38,250\\nIlość tej pracy jest\\ndopasowywana automatycznie\\n\\n24\\n00:00:38,273 --> 00:00:39,249\\nprzez sieć w taki sposób\\n\\n25\\n00:00:39,273 --> 00:00:40,724\\nże monety są\\nzawsze tworzone\\n\\n26\\n00:00:40,740 --> 00:00:43,310\\nw z góry ustalony\\ni przewidywalny sposób.\\n\\n27\\n00:00:44,146 --> 00:00:46,370\\nBitmonety są przechowywane\\nw cyfrowym portfelu\\n\\n28\\n00:00:46,503 --> 00:00:49,096\\ntak jak robią to dziś\\nbanki internetowe.\\n\\n29\\n00:00:49,222 --> 00:00:50,409\\nGdy chcesz przesłać Bitmonety,\\n\\n30\\n00:00:50,456 --> 00:00:52,292\\ndodawany zostaje\\ncyfrowy podpis.\\n\\n31\\n00:00:52,550 --> 00:00:53,413\\nPo kilku minutach\\n\\n32\\n00:00:53,446 --> 00:00:55,464\\ntransakcja jest weryfikowana\\nprzez minera, po czym\\n\\n33\\n00:00:55,566 --> 00:00:57,071\\njest trwale i anonimowo\\nprzechowywana\\n\\n34\\n00:00:57,072 --> 00:00:58,237\\nw całej sieci.\\n\\n35\\n00:00:58,301 --> 00:01:00,652\\nOprogramowanie Bitcoin jest\\ncałkowicie otwarte\\n\\n36\\n00:01:00,704 --> 00:01:02,439\\ni każdy może\\nprzejrzeć jego kod.\\n\\n37\\n00:01:02,924 --> 00:01:04,541\\nBitcoin zmienia finanse\\n\\n38\\n00:01:04,563 --> 00:01:06,607\\ntak jak Internet zmienił\\nwydawnictwa prasowe.\\n\\n39\\n00:01:06,818 --> 00:01:08,014\\nGdy każdy ma \\njednakowy dostęp\\n\\n40\\n00:01:08,015 --> 00:01:09,060\\ndo globalnego rynku,\\n\\n41\\n00:01:09,146 --> 00:01:10,966\\npowstaje wiele\\nfajnych pomysłów.\\n\\n42\\n00:01:11,624 --> 00:01:13,198\\nZobaczmy teraz, jak\\nw praktyce\\n\\n43\\n00:01:13,206 --> 00:01:15,069\\nBitcoin jest używany\\njuż dzisiaj:\\n\\n44\\n00:01:15,201 --> 00:01:16,895\\nMożesz płacić nim\\nza gry komputerowe,\\n\\n45\\n00:01:16,913 --> 00:01:17,676\\nprezenty,\\n\\n46\\n00:01:17,811 --> 00:01:18,474\\nksiążki,\\n\\n47\\n00:01:18,685 --> 00:01:19,365\\nserwery,\\n\\n48\\n00:01:19,623 --> 00:01:21,411\\ni... skarperki z owczej wełny.\\n\\n49\\n00:01:21,498 --> 00:01:23,200\\nIstnieje kilka kantorów,\\nw których możesz\\n\\n50\\n00:01:23,208 --> 00:01:24,411\\nwymieniać Bitmonety \\nna inne waluty:\\n\\n51\\n00:01:24,427 --> 00:01:24,990\\ndolary,\\n\\n52\\n00:01:24,997 --> 00:01:25,466\\neuro,\\n\\n53\\n00:01:25,490 --> 00:01:25,997\\nczy złotówki.\\n\\n54\\n00:01:26,295 --> 00:01:27,394\\nBitcoin to świetny sposób\\n\\n55\\n00:01:27,410 --> 00:01:29,033\\ndla małych firm\\ni freelancerów\\n\\n56\\n00:01:29,050 --> 00:01:30,146\\nby zostać zauważonym.\\n\\n57\\n00:01:30,388 --> 00:01:32,346\\nAkceptowanie ich nic\\nnie kosztuje,\\n\\n58\\n00:01:32,378 --> 00:01:33,713\\nnie ma żadnych opłat ani zwrotów\\n\\n59\\n00:01:33,745 --> 00:01:35,419\\na w dodatku masz\\ndarmową reklamę\\n\\n60\\n00:01:35,420 --> 00:01:36,774\\ndzięki ekosystemowi Bitcoin.\\n\\n61\\n00:01:36,985 --> 00:01:39,295\\nJeśli chcesz uzyskać więcej\\ninformacji, odwiedź stronę:\\n\\n62\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com\\n(lub bitcoin.pl)',\n", + " 'bytes': 4092,\n", + " 'sha1': 'fi8ikyilbpkyrsc0hydhlt6oyrn3hnq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784403,\n", + " 'timestamp': '2013-04-19T13:26:30Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665938,\n", + " 'title': 'What is Bitcoin?.webm.pt-BR.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 O que é Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin é a primeira 2 00:00:02,902 --> 00:00:04,968 moeda digital descentr...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nO que é Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin é a primeira\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\nmoeda digital descentralizada.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcoins são moedas digitais\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nque você pode\\nenviar pela Internet.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nComparadas a outras\\nalternativas,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nBitcoins têm várias\\nvantagens.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoins são transferidas\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\ndiretamente de uma pessoa\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\nà outra\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\npela Internet.\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nSem passar por\\num banco\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\nou outro\\nintermediário.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nIsso significa que as taxas\\nsão muito menores,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nvocê pode usá-las\\nem qualquer país,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nsua conta não pode\\nser congelada\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\ne não existem\\npré-requisitos\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\nou limites arbitrários.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nVamos ver como funciona!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nBitcoins são geradas\\nna internet\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\npor qualquer pessoa rodando\\numa aplicação gratuita\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nchamada minerador Bitcoin.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nA mineração requer um\\ncerto trabalho\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\npara cada bloco de moedas.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nA dificuldade é\\najustada automaticamente\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\npela rede\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nde forma que Bitcoins\\nsejam criadas\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\nnuma taxa limitada\\ne previsível.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nSuas Bitcoins são guardadas\\nem sua carteira digital\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nque lhe será familiar\\ncaso já tenha usado internet banking.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nQuando você transfere suas moedas,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\numa assinatura digital\\né criada.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nDentro de alguns minutos\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\na transação será verificada\\npor um minerador\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\ne permanente e\\nanonimamente salva\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\nna rede.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nO software Bitcoin é\\ncompletamente livre\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\ne qualquer pessoa\\npode revisar seu código.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin está\\nmudando as finanças\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nda mesma forma que a web\\nmudou a imprensa.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nQuando todos\\ntêm acesso\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\na um mercado global,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\ngrandes idéias germinam.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nVejamos alguns\\nexemplos\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nde como Bitcoins são\\nusadas hoje:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nVocê pode comprar\\njogos,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\npresentes,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nlivros,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nservidores\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\ne meias de alpaca.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nHá muitos mercados de câmbio\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\nonde você pode trocar\\nsuas Bitcoins\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\npor dólares,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neuros\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\nou mais.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nBitcoins são uma\\ngrande maneira\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\npara pequenos empresários\\ne autônomos\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\nse fazerem notar.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nNão custa nada para\\ncomeçar a aceitá-las,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nnão há reversões ou taxas\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\ne você fará\\nnegócios adicionais\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\ncom a economia Bitcoin.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nPara adquirir suas primeiras Bitcoins\\ne mais informações:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4066,\n", + " 'sha1': 'lo357o78qruj7gu9nhsu91mbpzkde3t',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784404,\n", + " 'timestamp': '2013-04-19T13:26:31Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665939,\n", + " 'title': 'What is Bitcoin?.webm.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Что такое биткоин? 1 00:00:01,609 --> 00:00:02,901 Биткоин - это первая 2 00:00:02,902 --> 00:0...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nЧто такое биткоин?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nБиткоин - это первая\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\nдецентрализованная цифровая валюта.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nБиткоины - это цифровые монетки,\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nкоторые вы можете отправить через интернет\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nВ сравнении с другими валютами,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nу биткоинов есть ряд преимуществ.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nБиткоины передаются\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\nнепосредственно от пользователя\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\nк пользователю\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nчерез сеть,\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nне проходя через банк\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\nили процессинговый центр.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nЭто означает: маленькие комиссии,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nвы можете использовать\\nбиткоины в любой стране,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nваш счет не может быть заблокирован\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\nи нет каких-либо обязательных условий\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\nили других ограничений.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nДавайте посмотрим как это работает!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nБиткоины генерируются в интернете\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nкаждым, кто запустил\\nбесплатное приложение,\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nназываемое генератором биткоинов.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nГенерирование требует от компьютера\\nвыполнить определённую работу\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nс каждым блоком монет.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nЭтот объём регулируется автоматически\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\nсетью\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nтак, что всегда создаётся\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\nограниченное и предсказуемое число биткоинов.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nВаши биткоины хранятся в вашем цифровом кошельке\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nкоторый наверняка вам знаком,\\nесли вы пользовались интернет-банкингом\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nКогда вы передаете Биткоины,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nк ним добавляется цифровая подпись.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nСпустя несколько минут\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nтранзакция подтверждается генератором\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nи навсегда\\nанонимно сохраняется\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\nв сети.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nПрограммное обеспечение для работы с биткоинами имеет открытый исходный код\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\nи кто угодно может просмотреть код.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nБиткоин меняет финансы\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nтакже как интернет\\nизменил печать.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nКогда у каждого\\nесть доступ\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\nк мировому рынку,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nтогда процветают великие идеи.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nДавайте рассмотрим несколько примеров\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nтого как биткоины уже\\nиспользуются сегодня:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nВы можете купить\\nвидеоигры,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\nподарки,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nкниги,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nсерверы,\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\nи носки из альпаки.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nСуществует несколько валютных бирж,\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\nгде вы можете торговать биткоинами\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\nза доллары,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\nевро\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\nи так далее...\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nБиткоины - это\\nотличный способ\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\nдля малого бизнеса\\nи фрилансеров\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\nвыделиться.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nНичего не стоит начать их приём,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nздесь нет возвратов и\\nпроцентов за транзакцию\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\nи вы получите\\nразвитие бизнеса\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nот биткоин-экономики.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nЧтобы получить больше информации\\nи ваши первые биткоины посетите:',\n", + " 'bytes': 5705,\n", + " 'sha1': 'discb691n7ji2b75dfuqrxahei5tgj6',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784406,\n", + " 'timestamp': '2013-04-19T13:26:33Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665940,\n", + " 'title': 'What is Bitcoin?.webm.es-ES.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Que es Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin es la primera 2 00:00:02,902 --> 00:00:04,968 moneda digital descentra...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nQue es Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin es la primera\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\nmoneda digital descentralizada.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nLos bitcoins son monedas digitales\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nque puedes enviar\\na través de Internet.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nComparado con otras\\nalternativas,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nBitcoin tiene numerosas\\nventajas.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nLos bitcoins son transferidos\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\ndirectamente de persona\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\na persona\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\na través de la red\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nsin pasar\\npor un banco\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\nu otro intermediario.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nEsto significa que las comisiones\\nson mucho menores,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\npuedes usarlo\\nen cualquier país,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\ntu cuenta no puede\\nser congelada\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\ny no hay\\nprerequisitos\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\no limites arbitrarios.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nMiremos como funciona!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nLos bitcoins son generados\\nen todo Internet\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\npor cualquiera\\ncon un programa gratuito\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nllamdado \"Bitcoin miner\".\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nCrear bitcoins requiere\\nuna cierta cantidad de trabajo\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\npara cada bloque de monedas.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nEsta cantidad\\nse ajusta automaticamente\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\npor la red\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\npara que los bitcoins\\nsiempre sean creados\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\na un ratio predecible\\ny limitado.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nTus bitcoins se guardan\\nen tu billetera digital\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nque te resultará familiar\\nsi usas banca digital.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nCuando transfieres bitcoins,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nuna firma electrónica\\nes añadida.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nPasados unos minutos\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nla transación es\\nverificada por un \"miner\"\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\ny es permante y\\nanonimamente alamacenada\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\npor la red.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nEl software de Bitcoin es\\ncompletamente abierto\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\ny cualquiera puede\\nrevisar el código.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin está\\ncambiando las finanzas\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nde la misma manera que la web\\nha cambiado el periodismo.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nCuando cualquiera\\ntiene acceso\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\nal mercado global,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nflorecen grandes ideas.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nMiremos\\nalgunos ejemplos\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nde como los bitcoins\\nestán usandose hoy en día:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nPuedes comprar\\nvideojuegos,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\nregalos,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nlibros,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nservidores\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\ny calcetines de alpaca.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nExisten varias casas de cambio\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\ndonde puedes intercambiar\\ntus bitcoins\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\npor dolares,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neuros\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\ny más.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nLos bitcoins son\\nuna gran forma\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\npara que pequeños negocios\\ny autónomos\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\nreciban publicidad.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nNo cuesta nada\\nempezar a aceptarlos,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nno hay cargos o comisiones\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\ny recibirás\\nnegocio adicional\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nde la economía Bitcoin.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nPara tus primeros bitcoins y\\nmás información, visita:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4090,\n", + " 'sha1': '69wyizlmop6apl9yuuw6w58m2vzlssu',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784407,\n", + " 'timestamp': '2013-04-19T13:26:34Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665941,\n", + " 'title': 'What is Bitcoin?.webm.tr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,609 Bitcoin (bitsikke) nedir? 1 00:00:01,609 --> 00:00:02,902 Bitsikke merkezi olmayan 2 00:00:02,902 --> 00:00:05,000 ilk dijital...'\",\n", + " 'text': \"0\\n00:00:00,210 --> 00:00:01,609\\nBitcoin (bitsikke) nedir?\\n\\n1\\n00:00:01,609 --> 00:00:02,902\\nBitsikke merkezi olmayan\\n\\n2\\n00:00:02,902 --> 00:00:05,000\\nilk dijital para birimidir.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitsikke internet üzerinden\\n\\n4\\n00:00:06,138 --> 00:00:07,951\\ngönderilebilen dijital bir para birimidir.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nAlternatifleriyle kıyaslandığında\\n\\n6\\n00:00:09,333 --> 00:00:11,492\\nbitsikkelerin çeşitli avantajları vardır.\\n\\n7\\n00:00:11,492 --> 00:00:12,545\\nBitsikkeler\\n\\n8\\n00:00:12,545 --> 00:00:13,312\\narada herhangir bir\\n\\n9\\n00:00:13,312 --> 00:00:13,992\\nbanka veya takas kurumu olmadan\\n\\n10\\n00:00:13,992 --> 00:00:14,759\\ninternet üzerinden\\n\\n11\\n00:00:14,759 --> 00:00:15,798\\ndirekt olarak kişiden kişiye\\n\\n12\\n00:00:15,798 --> 00:00:17,145\\ntransfer edilebilirler.\\n\\n13\\n00:00:17,145 --> 00:00:18,831\\nBu şu demek, transfer ücretleri çok düşük,\\n\\n14\\n00:00:18,831 --> 00:00:20,339\\nher ülkede kullanılabilir,\\n\\n15\\n00:00:20,339 --> 00:00:21,791\\nhesabınız kimse tarafından dondurulamaz,\\n\\n16\\n00:00:21,792 --> 00:00:22,933\\nve hiçbir kullanım önkoşulu\\n\\n17\\n00:00:22,933 --> 00:00:25,952\\nya da keyfi sınırlama yoktur.\\n\\n18\\n00:00:25,952 --> 00:00:27,795\\nŞimdi nasıl çalıştığına bakalım!\\n\\n19\\n00:00:27,795 --> 00:00:29,935\\nBitsikkeler bitsikke madencisi adı verilen ücretsiz uygulamayı\\n\\n20\\n00:00:29,935 --> 00:00:31,512\\ninternete bağlı olarak koşan\\n\\n21\\n00:00:31,513 --> 00:00:33,445\\nherkes tarafından yaratılabilir.\\n\\n22\\n00:00:33,445 --> 00:00:35,239\\nMadencilik, her sikke bloğu için\\n\\n23\\n00:00:35,239 --> 00:00:36,968\\nbelirli bir iş yükü gerektirir.\\n\\n24\\n00:00:36,968 --> 00:00:38,273\\nBu miktar,\\n\\n25\\n00:00:38,273 --> 00:00:39,273\\nbitsikkeler öngörülebilir ve limitli bir oranda\\n\\n26\\n00:00:39,273 --> 00:00:40,740\\nyaratılacak şekilde\\n\\n27\\n00:00:40,740 --> 00:00:44,146\\nağ tarafından ayarlanır.\\n\\n28\\n00:00:44,146 --> 00:00:46,503\\nBitsikkeleriniz, internet bankacılığından alışkın olduğumuz\\n\\n29\\n00:00:46,503 --> 00:00:49,222\\ndijital cüzdanlarda saklanır.\\n\\n30\\n00:00:49,222 --> 00:00:50,456\\nBitsikkelerinizi transfer ettiğinizde\\n\\n31\\n00:00:50,456 --> 00:00:52,550\\nelektronik bir imza eklenir.\\n\\n32\\n00:00:52,550 --> 00:00:53,446\\nBirkaç dakika sonra\\n\\n33\\n00:00:53,446 --> 00:00:55,565\\ntransfer işlemi bir madenci tarafından onaylanır,\\n\\n34\\n00:00:55,566 --> 00:00:57,072\\nve onay, kalıcı ve anonim olarak\\n\\n35\\n00:00:57,072 --> 00:00:58,301\\nağda saklanır.\\n\\n36\\n00:00:58,301 --> 00:01:00,704\\nBitsikke uygulaması tamamen açık kaynak kodludur\\n\\n37\\n00:01:00,704 --> 00:01:02,924\\nve isteyen herkes kodu gözden geçirebilir.\\n\\n38\\n00:01:02,924 --> 00:01:04,563\\nBitsikke, web'in yayıncılığı değiştirdiği gibi\\n\\n39\\n00:01:04,563 --> 00:01:06,818\\nfinansı değiştirmektedir.\\n\\n40\\n00:01:06,818 --> 00:01:08,015\\nHerkes global bir pazara\\n\\n41\\n00:01:08,015 --> 00:01:09,146\\nerişim sahibi olduğunda\\n\\n42\\n00:01:09,146 --> 00:01:11,624\\nharika fikirler gelişebilir.\\n\\n43\\n00:01:11,624 --> 00:01:13,205\\nŞimdi bitsikkelerin bugünkü kullanımlarıyla ilgili\\n\\n44\\n00:01:13,206 --> 00:01:15,201\\nbazı örneklere göz atalım.\\n\\n45\\n00:01:15,201 --> 00:01:16,913\\nVideo oyunlar satın alabilirsiniz,\\n\\n46\\n00:01:16,913 --> 00:01:17,811\\nhediyeler,\\n\\n47\\n00:01:17,811 --> 00:01:18,685\\nkitaplar,\\n\\n48\\n00:01:18,685 --> 00:01:19,623\\nsunucular\\n\\n49\\n00:01:19,623 --> 00:01:21,498\\nve yün çoraplar.\\n\\n50\\n00:01:21,498 --> 00:01:23,208\\nBitsikkelerinizi\\n\\n51\\n00:01:23,208 --> 00:01:24,426\\ndolar, avro ve diğer kurlara\\n\\n52\\n00:01:24,427 --> 00:01:24,997\\ndönüştürebileceğiniz\\n\\n53\\n00:01:24,997 --> 00:01:25,490\\nkur dönüşüm aracıları mevcuttur.\\n\\n54\\n00:01:25,490 --> 00:01:26,295\\nkur dönüşüm aracıları mevcuttur.\\n\\n55\\n00:01:26,295 --> 00:01:27,410\\nBitsikkeler küçük ölçekli iş yerleri\\n\\n56\\n00:01:27,410 --> 00:01:29,050\\nve serbet çalışanların\\n\\n57\\n00:01:29,050 --> 00:01:30,387\\nfarkedilmesi için harika bir yoldur.\\n\\n58\\n00:01:30,388 --> 00:01:32,378\\nBitsikke kabul etmeye başlamak için herhangi bir\\n\\n59\\n00:01:32,378 --> 00:01:33,745\\nbaşlangıç maliyeti, ekstra ücretlendirme ve geri para ibrazı yoktur\\n\\n60\\n00:01:33,745 --> 00:01:35,420\\nayrıca bitsikke ekonomisindekilerinden\\n\\n61\\n00:01:35,420 --> 00:01:36,985\\ndaha fazla iş alabilirsiniz.\\n\\n62\\n00:01:36,985 --> 00:01:39,312\\nİlk bitsikkelerinizi edinmek ve daha fazla bilgi almak için\\n\\n63\\n00:01:39,312 --> 03:59:59,000\\nweusecoins.com adresini ziyaret ediniz.\",\n", + " 'bytes': 4366,\n", + " 'sha1': 'azjsdy313cfwmcyw3f4ty1gxeok7qza',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94792202,\n", + " 'timestamp': '2013-04-19T16:40:30Z',\n", + " 'user': {'id': 2789958, 'text': 'PauloFianiBacila'},\n", + " 'page': {'id': 25668264,\n", + " 'title': 'Br-AcademiaBrasileiraDeLetras.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:03,400 Brazilian Academy of Letters'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,400\\nBrazilian Academy of Letters',\n", + " 'bytes': 60,\n", + " 'sha1': 'tf3hr7hw0okpw0qjwi5cd2v78jendsc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606350788,\n", + " 'timestamp': '2021-11-09T09:22:33Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25668972,\n", + " 'title': 'Yeager supersonic flight 1947.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Yeager supersonic flight 1947.ogg.zh-hant.srt]] to [[TimedText:Yeager supersonic flight 1947.ogv.zh-hant.srt]]: rename of the original file',\n", + " 'text': '0 \\n00:00:00,000 --> 00:00:05,500\\n1947年十月,在加州慕洛沙漠飛行試驗中心\\n\\n1\\n00:00:06,000 --> 00:00:09,500 \\nXS-1這架飛機創造了歷史\\n\\n2 \\n00:00:10,000 --> 00:00:13,500 \\n而它的駕駛員,則是查克·葉格上尉(Charles E. Yeager.) \\n\\n3 \\n00:00:14,000 --> 00:00:18,500 \\n這架飛機以及這位駕駛員 即將進行第一次\\n\\n4 \\n00:00:19,000 --> 00:00:22,000 \\n超越音速的水平飛行。\\n\\n5 \\n00:00:25,000 --> 00:00:27,100 \\n一架B-29轟炸機將會先將XS-1送到空中 \\n\\n6 \\n00:00:27,200 --> 00:00:32,000 \\n然後將他在35,000 英呎的空中發射。 \\n\\n7 \\n00:00:33,000 --> 00:00:34,500 \\nXS-1 並不是一架軍機\\n\\n8 \\n00:00:35,000 --> 00:00:37,500 \\n而是一座「飛行的實驗室」\\n \\n9 \\n00:00:38,000 --> 00:00:40,500 \\n他是設計來測試超音速飛行對飛行器的影響\\n\\n10 \\n00:00:42,000 --> 00:00:44,500 \\n他由四具火箭引擎推進\\n\\n11 \\n00:00:45,000 --> 00:00:48,500 \\n它的無載重量不超過5,000磅\\n\\n12 \\n00:00:49,000 --> 00:00:53,000 \\n但卻搭載著8000磅的燃料 \\n\\n13 \\n00:00:54,000 --> 00:00:56,500 \\nB-29轟炸機創造了許多讓人難忘的事蹟\\n\\n14 \\n00:00:57,000 --> 00:01:01,500 \\n但這次任務可說是前無來者。\\n\\n15 \\n00:01:02,000 --> 00:01:06,000 \\n而以前也從來沒有一架飛機做過XS-1將要完成的任務\\n\\n16 \\n00:01:16,000 --> 00:01:17,500 \\n在水平飛行中突破音障\\n\\n17 \\n00:01:18,000 --> 00:01:20,500 \\n這將是非常驚人的壯舉\\n\\n18 \\n00:01:21,000 --> 00:01:27,000 \\n而這也將給空軍帶來關於新推進系統的有用資訊\\n\\n19 \\n00:01:28,000 --> 00:01:29,500 \\n查克·葉格登上了XS-1\\n\\n20 \\n00:01:30,000 --> 00:01:33,000 \\n而在這個小小的飛行器中,這次的飛行將不會持續很久\\n\\n21 \\n00:01:34,000 --> 00:01:37,500 \\n在全速推進情況下飛行不會持續超過兩分半鐘\\n\\n22 \\n00:01:38,000 --> 00:01:41,000 \\n這次飛行將會十分快速\\n\\n23 \\n00:01:59,000 --> 00:02:01,000 \\n預備! \\n\\n24 \\n00:02:01,000 --> 00:02:02,500 \\n雷達小組也已經就緒\\n\\n25 \\n00:02:03,000 --> 00:02:05,500 \\n做好計時的準備。 雷達是唯一\\n\\n26 \\n00:02:06,000 --> 00:02:09,000 \\n在極高的空中為飛行器測速的方法。\\n\\n27 \\n00:02:14,000 --> 00:02:14,500 \\n他起航了!\\n\\n28 \\n00:02:15,000 --> 00:02:19,000 \\n歷史性的一次重要飛行\\n\\n29 \\n00:02:24,000 --> 00:02:25,500 \\n現在他已經接近了音障\\n\\n30 \\n00:02:26,000 --> 00:02:32,000 \\n音速在 35,000高空中是每小時660英里. \\n\\n31 \\n00:02:33,000 --> 00:02:36,500 \\n這個重要的時刻,穿越了音障 \\n\\n32 \\n00:02:37,000 --> 00:02:39,500 \\n這將是水平飛行的第一次,\\n\\n33 \\n00:02:40,000 --> 00:02:48,500 \\n第一次人類進行超越音速的的飛行。\\n\\n34 \\n00:02:49,000 --> 00:02:53,500 \\n這次飛行為查克·葉格上尉帶來了名聲, 而這架歷史性的飛機— XS-1 \\n\\n35 \\n00:02:54,000 --> 00:02:59,000 \\n則在史密斯森研究中心獲得了一個展示的空間。',\n", + " 'bytes': 2857,\n", + " 'sha1': 'n4mjotcn2dzqczeloyoypyhc7sok0rm',\n", + " 'parent_id': 94794726,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96448295,\n", + " 'timestamp': '2013-05-18T13:02:09Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 25694829,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\nPanorama fotos von Pelješac (2009-2013)\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nFlagge mit Blick Orebić\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\nGebirge von der Spitze der Halbinsel im Osten gesehen\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić aus Vižanica\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić aus dem Nordwesten\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nHalbinsel Pelješac als aus dem Kanal angesehen\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\nÖdland oberhalb Orebić\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\nÖdland oberhalb Orebić\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\n\"Kapetani\" und die Inseln von \"Bila Ploča\" (weiße Platte)\\n\\n9\\n00:00:36,000 --> 00:00:39,800\\nOskorušno aus Viter\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda aus Viter\\n\\n11\\n00:00:44,000 --> 00:00:47,800\\n\"Kapetani\" aus dem Westen\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nWeinberge im Süden\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj aus dem Westen\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nNieder Nakovana von Gradina\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nKorčula aus Gradina\\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nAuf Supine über Mokalo\\n\\n17.\\n00:01:08,000 --> 00:01:11,800\\nOrebić von Mokalo\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomje und Pijavičino aus dem Westen\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nKloster in Podgorje aus dem Nordosten\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nKloster in Podgorje aus dem Nordwesten\\n\\n\\n21.\\n00:01:24,000 --> 00:01:27,800\\nOrebić aus Supine\\n\\n22.\\n00:01:28,000 --> 00:01:31,800\\nMokalo und Postup aus Supine\\n\\n23.\\n00:01:32,000 --> 00:01:35,800\\nGrat Pratnjice\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić aus dem Norden\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić aus dem Nordwesten\\n\\n26.\\n00:01:44,000 --> 00:01:47,800\\nBerg Žrnovnica\\n\\n27.\\n00:01:48,000 --> 00:01:51,800\\nOrebić aus dem Norden\\n\\n28.\\n00:01:52,000 --> 00:01:55,800\\nAnsicht von Orebić zwischen 2 Felsen\\n\\n29.\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31.\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nVižanica-Südosthänge\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\nBucht von Divna\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nPelješka Duba vom Gipfel des Pelješac aus gesehen\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nBarinski Spitzen und Žrnovska Banja im Hintergrund\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\nBlick von der Halbinsel im Westen\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nGornja Vrućica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton und Salinen\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nDonja Vrućica von Süden (Mokalo Bereich)\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nKloster in Kuna Pelješka angesehen aus dem Süden\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nvernachlässigt Weinberge von Vlastica gesehen\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina aus dem Westen\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRuskovići aus dem Norden\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nDorf Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nDorf Lovište\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nHängen Vlaštica\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\nKreuz auf der Spitze von Pelješac',\n", + " 'bytes': 2969,\n", + " 'sha1': 'b9f43l7b7i2dyivwuw0ty5ae550mmjo',\n", + " 'parent_id': 94901093,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96447916,\n", + " 'timestamp': '2013-05-18T12:49:54Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 25694960,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\npanorama fotos de Pelješac. Fotos tomadas en el periodo 2009-2013\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nBandiera con la vista hacia Orebić\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\ncordillera vista desde la parte superior de la península hacia el este\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić desde Vižanica\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić desde el noroeste\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nPenínsula como se ve desde el canal\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\ntierra estéril por encima de Orebić\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\ntierra estéril por encima de Orebić\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\n\"Kapetani\" y las islas de \"Bila ploča\" (\"panel blanco\")\\n\\n9\\n00:00:36,000 --> 00:00:39,800\\nOskorušno desde Viter\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda desde Viter\\n\\n11\\n00:00:44,000 --> 00:00:47,800\\n\"Kapetani\" desde Occidente\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nViñedos en el sur\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj desde el oeste\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nBaja Nakovana desde Gradina\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nKorčula desde Gradina\\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nEn posición supina encima Mokalo\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić desde Mokalo\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomje y Pijavičino desde el oeste\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nmonasterio en Podgorje desde el noreste\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nmonasterio en Podgorje desde el noroeste\\n\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić desde Supine\\n\\n22\\n00:01:28,000 --> 00:01:31,800\\nMokalo y Postup desde Supino\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\ncresta Pratnjice\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić desde el norte\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić desde el noroeste\\n\\n26\\n00:01:44,000 --> 00:01:47,800\\nColina Žrnovnica\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić desde el norte\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nVista de Orebić entre 2 rocas\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nVižanica-sureste pendientes\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\nbahía de Divna\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nPelješka Duba vista desde mas alto pico de Pelješac\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nPicos Barinski y Žrnovska Banja en segundo plano\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\nvista desde la península hacia el oeste\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nGornja Vrućica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton y salinas\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nDonja Vrućica de sur (rango Mokalo)\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nMonasterio en Kuna Pelješka visto desde el sur\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nviñedos abandonados visto desde Vlaštica\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina desde el oeste\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRuskovići desde el norte\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\npueblo de Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\npueblo de Lovište\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nladeras de Vlaštica\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\ncruz en el pico de Pelješac',\n", + " 'bytes': 3050,\n", + " 'sha1': 'bzsqez7v4h4nbjkrqaacsl2qjl84dxg',\n", + " 'parent_id': 96443427,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97519598,\n", + " 'timestamp': '2013-06-03T13:35:39Z',\n", + " 'user': {'id': 83322, 'text': 'Alexanderps'},\n", + " 'page': {'id': 25714948,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,800\\nAs fotos panorâmicas do Pelješac. Tirados no período de 2009-2013\\n\\n2\\n00:00:04,000 --> 00:00:07,800\\nBandeira com vista a Orebić\\n\\n3\\n00:00:08,000 --> 00:00:11,800\\nVista para a montanha a partir do topo da península para o leste\\n\\n4\\n00:00:12,000 --> 00:00:15,800\\nOrebić a partir de Vižanica\\n\\n5\\n00:00:16,000 --> 00:00:19,800\\nOrebić a partir do noroeste\\n\\n6\\n00:00:20,000 --> 00:00:23,800\\nPenínsula vista do canal\\n\\n7\\n00:00:24,000 --> 00:00:27,800\\nTerra árida sobre Orebić\\n\\n8\\n00:00:28,000 --> 00:00:31,800\\nTerra árida sobre Orebić\\n\\n9\\n00:00:32,000 --> 00:00:35,800\\n\"Kapetani\" e as ilhas de \"Bila Ploča\" (\"Painel Branco\")\\n\\n10\\n00:00:36,000 --> 00:00:39,800\\nOskorušno a partir de Viter\\n\\n11\\n00:00:40,000 --> 00:00:43,800\\nZagruda a partir de Viter\\n\\n12\\n00:00:44,000 --> 00:00:47,800\\n\"Kapetani\" pelo Oeste\\n\\n13\\n00:00:48,000 --> 00:00:51,800\\nVinhedos no Sul\\n\\n14\\n00:00:52,000 --> 00:00:55,800\\nViganj a partir do oeste\\n\\n15\\n00:00:56,000 --> 00:00:59,800\\nBaixa Nakovana de Gradina\\n\\n16\\n00:01:00,000 --> 00:01:03,800\\nKorčula a partir de Gradina\\n\\n17\\n00:01:04,000 --> 00:01:07,800\\nEm Supine sobre Mokalo \\n\\n18\\n00:01:08,000 --> 00:01:11,800\\nOrebić a partir de Mokalo\\n\\n19\\n00:01:12,000 --> 00:01:15,800\\nPotomje e Pijavičino pelo oeste\\n\\n20\\n00:01:16,000 --> 00:01:19,800\\nMosteiro em Podgorje visto pelo nordeste\\n\\n21\\n00:01:20,000 --> 00:01:23,800\\nMosteiro em Podgorje visto pelo noroeste\\n\\n22\\n00:01:24,000 --> 00:01:27,800\\nOrebić a partir de Supine\\n\\n23\\n00:01:28,000 --> 00:01:31,800\\nMokalo e Postup a partir de Supine\\n\\n24\\n00:01:32,000 --> 00:01:35,800\\nSerra de Pratnjice\\n\\n25\\n00:01:36,000 --> 00:01:39,800\\nOrebić a partir do norte\\n\\n26\\n00:01:40,000 --> 00:01:43,800\\nOrebić a partir do noroeste\\n\\n27\\n00:01:44,000 --> 00:01:47,800\\nColina Žrnovnica\\n\\n28\\n00:01:48,000 --> 00:01:51,800\\nOrebić a partir do norte\\n\\n29\\n00:01:52,000 --> 00:01:55,800\\nVista de Orebić entre duas rochas\\n\\n30\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n31\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n32\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n33\\n00:02:08,000 --> 00:02:11,800\\nVižanica-encostas do sudoeste\\n\\n34\\n00:02:12,000 --> 00:02:15,800\\nBaía Divna\\n\\n35\\n00:02:16,000 --> 00:02:19,800\\nDuba Pelješka, vista a partir do cume de Pelješac\\n\\n36\\n00:02:20,000 --> 00:02:23,800\\nPicos Barinski e Žrnovska Banja ao fundo\\n\\n37\\n00:02:24,000 --> 00:02:27,800\\nVista da península a oeste\\n\\n38\\n00:02:28,000 --> 00:02:31,800\\nGornja Vrućica\\n\\n39\\n00:02:32,000 --> 00:02:35,800\\nSton e algumas salinas\\n\\n40\\n00:02:36,000 --> 00:02:39,800\\nDonja Vrućica pela vista sul (serra de Mokalo)\\n\\n41\\n00:02:40,000 --> 00:02:43,800\\nMosteiro em Kuna Pelješka visto a partir do sul\\n\\n42\\n00:02:44,000 --> 00:02:47,800\\nVinhas abandonadas-vista de Vlaštica\\n\\n43\\n00:02:48,000 --> 00:02:51,800\\nJanjina a partir do oeste\\n\\n44\\n00:02:52,000 --> 00:02:55,800\\nRuskovići a partir do norte\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nAldeia Lovište \\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nAldeia Lovište \\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nEncostas de Vlaštica \\n\\n47\\n00:03:08,000 --> 00:03:11,800\\nCruz no topo de Pelješac',\n", + " 'bytes': 3037,\n", + " 'sha1': 'plgr5tjqpgogc6arip34ph7i6uf1ft3',\n", + " 'parent_id': 97519359,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96448680,\n", + " 'timestamp': '2013-05-18T13:15:11Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 25721534,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\nLe foto panoramiche di Pelješac. Foto scatate nel periodo 2009-2013\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nBandiera nella vista di Orebić\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\npaesaggio montagnero di penisola visto ad est\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić da Vižanica\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić da nord-ovest\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nPenisola vista dal canale\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\nterra arida sopra Orebić\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\nterra arida sopra Orebić\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\n\"Kapetani\" e le isole \"Bila ploča\" (\"pannello bianco\")\\n\\n9\\n00:00:36,000 --> 00:00:39,800\\nOskorušno da Viter\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda vista da Viter\\n\\n11\\n00:00:44,000 --> 00:00:47,800\\n\"Kapetani\" dall\\'Occidente\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nVigneti a Sud\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj da ovest\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nBassa Nakovana vista da Gradina\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nKorcula dal Gradina\\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nSopra Mokalo supina\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić da Mokalo\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomje e Pijavičino da ovest\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nMonastero Podgorje da nord-est\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nMonastero Podgorje da nord-ovest\\n\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić da Supine\\n\\n22\\n00:01:28,000 --> 00:01:31,800\\nMokalo e Postup da Supine\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\ncresta di Pratnjice \\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić da nord\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić da nord-ovest\\n\\n26\\n00:01:44,000 --> 00:01:47,800\\ncollina Žrnovnica\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić da nord\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nVissta di Orebić tra due rocce\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nVižanica-sud-est da sci\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\ngolfo di Divna\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nDuba Pelješka vista da più alto picco Peljesac\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nCime e Žrnovska Banja Barinski sfondo\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\nvista dalla penisola ad ovest\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nGornja Vrućica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton e saline\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nDonja Vrućica da sud (campo Mokalo)\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nMonastero in Kuna Pelješka visto da sud\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nvigneti abbandonati visti da Vlaštica\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina da ovest\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRuskovići da nord\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nVillaggio di Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nVillaggio di Lovište\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nVlaštica pendii\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\ncroce al culmine di Peljesac',\n", + " 'bytes': 2857,\n", + " 'sha1': 'r89fi3vstgvzov79d4yy0hggvjpuw43',\n", + " 'parent_id': 96448641,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 589620348,\n", + " 'timestamp': '2021-09-08T10:00:15Z',\n", + " 'user': {'id': 2366229, 'text': 'Achim55'},\n", + " 'page': {'id': 25732053,\n", + " 'title': 'Arirang.ogg.ko.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Revert to revision 95030205 dated 2013-04-23 21:18:37 by Ryuch using [[:en:Wikipedia:Tools/Navigation_popups|popups]]',\n", + " 'text': '1\\n00:00:10,1000 --> 00:00:31,3100\\n아리랑 아리랑 아라리요 아리랑 고개로 넘어간다.\\n\\n2\\n00:00:31,3100 --> 00:00:56,5600\\n나를 버리고 가시는 님은 십리도 못가서 발병난다.\\n\\n3\\n00:00:56,5600 --> 00:01:23,8300\\n아리랑 아리랑 아라리요 아리랑 고개로 넘어간다.',\n", + " 'bytes': 305,\n", + " 'sha1': 'bmtzuboh87dd95wkt4iy2dgkqekyq37',\n", + " 'parent_id': 589565194,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95344131,\n", + " 'timestamp': '2013-04-29T21:29:01Z',\n", + " 'user': {'id': 1178694, 'text': 'Rillke'},\n", + " 'page': {'id': 25739400,\n", + " 'title': 'En-us-blue.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Protected TimedText:En-us-blue.ogg.en.srt: Transcription finished. ([Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite))',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,400\\nBlue',\n", + " 'bytes': 36,\n", + " 'sha1': '2l0uvwer7vouvuin06b56n4h22cz4hv',\n", + " 'parent_id': 95060934,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 525922884,\n", + " 'timestamp': '2021-01-14T16:30:01Z',\n", + " 'user': {'text': '77.43.132.149'},\n", + " 'page': {'id': 25751651,\n", + " 'title': 'SOS morse code.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:01,500\\nS ...\\n\\n2\\n00:00:01,600 --> 00:00:02,700\\nO ---\\n\\n3\\n00:00:02,800 --> 00:00:03,300\\nS ...',\n", + " 'bytes': 115,\n", + " 'sha1': 'rhvv0vun5wcjmdcwbh07o1vf274atm2',\n", + " 'parent_id': 474377455,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 687890254,\n", + " 'timestamp': '2022-09-11T01:58:17Z',\n", + " 'user': {'id': 10672571, 'text': 'Rowandigitalphotography'},\n", + " 'page': {'id': 25777305,\n", + " 'title': 'United States Navy Band - God Save the King.oga.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:11,000 --> 00:00:18,000\\nGod save our gracious King,\\n\\n2\\n00:00:18,000 --> 00:00:25,000\\nLong live our noble King,\\n\\n3\\n00:00:25,000 --> 00:00:30,000\\nGod save the King.\\n\\n4\\n00:00:32,700 --> 00:00:39,000\\nSend him victorious,\\n\\n5\\n00:00:39,000 --> 00:00:46,000\\nHappy and glorious,\\n\\n6\\n00:00:46,000 --> 00:00:53,000\\nLong to reign over us,\\n\\n7\\n00:00:53,500 --> 00:01:01,000\\nGod save the King!',\n", + " 'bytes': 385,\n", + " 'sha1': 'kpl6qnm2u8uxd2n19e6fca0tlcjtx00',\n", + " 'parent_id': 687885852,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95188380,\n", + " 'timestamp': '2013-04-27T06:55:45Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25777342,\n", + " 'title': 'Eric Walter - voix.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 Hola, mi nombre es Éric Walter, nací en París, 2 00:00:05,200 --> 00:00:11,000 y soy el secretario general de Hadopi desde e...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nHola, mi nombre es Éric Walter, nací en París,\\n\\n2\\n00:00:05,200 --> 00:00:11,000\\ny soy el secretario general de Hadopi desde el 1 de marzo.',\n", + " 'bytes': 173,\n", + " 'sha1': '0erjff8ek7of9ft97x7aid47ghcy85d',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95189494,\n", + " 'timestamp': '2013-04-27T07:38:47Z',\n", + " 'user': {'id': 55568, 'text': 'Littletung'},\n", + " 'page': {'id': 25777754,\n", + " 'title': 'Elephants Dream (high quality).ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:15,000 --> 00:00:17,951 我們可以看到左邊有... 2 00:00:18,166 --> 00:00:20,083 我們可以看到右邊有... 3 00:00:20,119 --> 00:00:21,962 ...'\",\n", + " 'text': '1\\n00:00:15,000 --> 00:00:17,951\\n我們可以看到左邊有...\\n\\n2\\n00:00:18,166 --> 00:00:20,083\\n我們可以看到右邊有...\\n\\n3\\n00:00:20,119 --> 00:00:21,962\\n...the head-snarlers\\n\\n4\\n00:00:21,999 --> 00:00:24,368\\n一切都是安全的。\\n完全安全。\\n\\n5\\n00:00:24,582 --> 00:00:27,035\\nEmo?\\n\\n6\\n00:00:28,206 --> 00:00:29,996\\n小心!\\n\\n7\\n00:00:47,037 --> 00:00:48,494\\n你有沒有受傷?\\n\\n8\\n00:00:51,994 --> 00:00:53,949\\n我想沒有。\\n你呢?\\n\\n9\\n00:00:55,160 --> 00:00:56,985\\n我很好。\\n\\n10\\n00:00:57,118 --> 00:01:01,111\\n站起來。\\nEmo,這裡不安全。\\n\\n11\\n00:01:02,034 --> 00:01:03,573\\n我們走吧。\\n\\n12\\n00:01:03,610 --> 00:01:05,114\\n接下來呢?\\n\\n13\\n00:01:05,200 --> 00:01:09,146\\n你會看到的!\\n\\n14\\n00:01:16,032 --> 00:01:18,022\\nEmo.\\n這邊走。\\n\\n15\\n00:01:34,237 --> 00:01:35,481\\n跟我走!\\n\\n16\\n00:02:11,106 --> 00:02:12,480\\nEmo,快點!\\n\\n17\\n00:02:48,059 --> 00:02:49,930\\n你一點都不專心!\\n\\n18\\n00:02:50,142 --> 00:02:54,052\\n我只是想接...\\n...電話。\\n\\n19\\n00:02:54,974 --> 00:02:57,972\\nEmo,你看,\\n我的意思是聽。\\n\\n20\\n00:02:59,140 --> 00:03:02,008\\n你必須學會聽。\\n\\n21\\n00:03:03,140 --> 00:03:04,965\\n這不是什麼遊戲。\\n\\n22\\n00:03:05,056 --> 00:03:09,345\\n你,我的意思是我們,\\n我們很容易從這裡消失。\\n\\n23\\n00:03:10,014 --> 00:03:13,959\\n聽著,\\n聽機器的聲音。\\n\\n24\\n00:03:18,054 --> 00:03:20,009\\n聽聽你自\\u200b\\u200b己的呼吸。\\n\\n25\\n00:04:27,001 --> 00:04:28,956\\n好了,你一點都不累嗎?\\n\\n26\\n00:04:29,084 --> 00:04:30,909\\n累? ! ?\\n\\n27\\n00:04:31,126 --> 00:04:34,491\\nEmo,這個機器就好像時鐘的發條。\\n\\n28\\n00:04:35,083 --> 00:04:37,074\\n在這裡只要走錯一步...\\n\\n29\\n00:04:37,166 --> 00:04:39,121\\n...你就會摔成肉泥\\n\\n30\\n00:04:40,958 --> 00:04:42,004\\n但這不是 -\\n\\n31\\n00:04:42,041 --> 00:04:46,034\\n肉泥,Emo!\\n這就是你想要的,肉泥?\\n\\n32\\n00:04:47,040 --> 00:04:48,995\\nEmo,你的人生目標...\\n\\n33\\n00:04:50,081 --> 00:04:51,953\\n...肉泥?\\n\\n34\\n00:05:41,156 --> 00:05:43,028\\nEmo,閉上眼睛。\\n\\n35\\n00:05:44,156 --> 00:05:46,027\\n為什麼?\\n- 馬上!\\n\\n36\\n00:05:51,155 --> 00:05:52,102\\n好吧。\\n\\n37\\n00:05:53,113 --> 00:05:54,688\\n很好。\\n\\n38\\n00:05:59,070 --> 00:06:02,103\\n你在左邊看到什麼了,Emo?\\n\\n39\\n00:06:04,028 --> 00:06:05,899\\n什麼都沒有。\\n- 真的?\\n\\n40\\n00:06:06,027 --> 00:06:07,105\\n不,根本沒有什麼。\\n\\n41\\n00:06:07,944 --> 00:06:11,984\\n那你的右邊呢,\\n你有沒有在你的右邊看到什麼,Emo?\\n\\n42\\n00:06:13,151 --> 00:06:16,102\\n一樣的,Proog。完全一樣...\\n\\n43\\n00:06:16,942 --> 00:06:19,098\\n...什麼都沒有!\\n- 非常好。\\n\\n44\\n00:06:40,105 --> 00:06:42,724\\n聽,Proog!你聽到沒有!\\n\\n45\\n00:06:43,105 --> 00:06:44,894\\n我們可以到這裡嗎?\\n\\n46\\n00:06:44,979 --> 00:06:47,894\\n那裡?\\n那裡不安全,Emo。\\n\\n47\\n00:06:49,145 --> 00:06:52,013\\n但是...\\n- 相信我,那裡不安全。\\n\\n48\\n00:06:53,020 --> 00:06:54,145\\n也許我可以...\\n\\n49\\n00:06:54,181 --> 00:06:55,969\\n不。\\n\\n50\\n00:06:57,102 --> 00:06:59,934\\n不!\\n\\n51\\n00:07:00,144 --> 00:07:03,058\\n還有什麼問題嗎,Emo?\\n\\n52\\n00:07:03,976 --> 00:07:05,090\\n不。\\n\\n53\\n00:07:09,059 --> 00:07:10,089\\nEmo?\\n\\n54\\n00:07:11,142 --> 00:07:13,058\\nEmo,為什麼...\\n\\n55\\n00:07:13,095 --> 00:07:14,022\\nEmo...\\n\\n56\\n00:07:14,058 --> 00:07:18,003\\n...為什麼你看不到\\n這個地方的美麗之處?\\n\\n57\\n00:07:18,141 --> 00:07:20,048\\n它的運作之道。\\n\\n58\\n00:07:20,140 --> 00:07:23,895\\n它是多麼完美。\\n\\n59\\n00:07:23,932 --> 00:07:26,964\\n不,Proog,我看不到。\\n\\n60\\n00:07:27,056 --> 00:07:29,970\\n我看不到,因為它什麼都沒有。\\n\\n61\\n00:07:31,055 --> 00:07:34,965\\n而我為什麼要用我的生命\\n來相信一個不存在的事物?\\n\\n62\\n00:07:35,055 --> 00:07:36,926\\n好了,你可以告訴我嗎?\\n\\n63\\n00:07:37,054 --> 00:07:38,926\\n回答我。\\n\\n64\\n00:07:42,970 --> 00:07:44,000\\nProog...\\n\\n65\\n00:07:45,053 --> 00:07:46,985\\n...你這個變態!\\n\\n66\\n00:07:47,022 --> 00:07:48,918\\n離我遠點。\\n\\n67\\n00:07:52,052 --> 00:07:54,884\\n不! Emo!那是陷阱!\\n\\n68\\n00:07:55,135 --> 00:07:56,931\\n啊,這是陷阱!\\n\\n69\\n00:07:56,968 --> 00:08:01,043\\n在左邊你可以看到\\n巴比倫空中花園!\\n\\n70\\n00:08:01,967 --> 00:08:03,957\\n這怎麼會是個陷阱呢?\\n\\n71\\n00:08:05,050 --> 00:08:06,922\\n不,Emo。\\n\\n72\\n00:08:09,008 --> 00:08:12,088\\n在右邊你可以看到...\\n...猜猜是什麼...\\n\\n73\\n00:08:12,924 --> 00:08:14,665\\n...羅德島太陽神銅像!\\n\\n74\\n00:08:15,132 --> 00:08:16,053\\n不!\\n\\n75\\n00:08:16,090 --> 00:08:21,919\\n羅德島太陽神銅像\\n它在這裡等你,Proog。\\n\\n76\\n00:08:51,001 --> 00:08:52,923\\n它在這裡...\\n\\n77\\n00:08:52,959 --> 00:08:56,040\\n我告訴你吧,\\nEmo...\\n\\n78\\n00:08:57,000 --> 00:08:59,867\\n...它在。',\n", + " 'bytes': 4738,\n", + " 'sha1': 'r531u5d5g397uew4gdazb5qmyeseyh7',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95190606,\n", + " 'timestamp': '2013-04-27T08:02:00Z',\n", + " 'user': {'id': 55568, 'text': 'Littletung'},\n", + " 'page': {'id': 25778071,\n", + " 'title': 'Elephants Dream.ogg.zh.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:Elephants Dream (high quality).ogv.zh.srt',\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Littletung moved page [[TimedText:Elephants Dream.ogg.zh.srt]] to [[TimedText:Elephants Dream (high quality).ogv.zh.srt]]',\n", + " 'text': '#REDIRECT [[TimedText:Elephants Dream (high quality).ogv.zh.srt]]',\n", + " 'bytes': 65,\n", + " 'sha1': 'g61zpqywpa53tufq936v3g39244lvqv',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 643194759,\n", + " 'timestamp': '2022-03-22T21:48:47Z',\n", + " 'user': {'id': 9562670, 'text': 'Cutlass'},\n", + " 'page': {'id': 25779617,\n", + " 'title': 'U.S. Navy Band, Advance Australia Fair (instrumental).ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'there was an attempt',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:05,000\\nAustralians all let us rejoice \\n\\n2\\n00:00:05,000 --> 00:00:10,000\\nFor we are one and free\\n\\n3\\n00:00:10,000 --> 00:00:15,000\\nWe've golden soil and wealth for toil\\n\\n4\\n00:00:15,000 --> 00:00:20,000\\nOur home is girt by sea\\n\\n5\\n00:00:20,000 --> 00:00:25,000\\nOur land abounds in nature's gifts\\n\\n6\\n00:00:25,000 --> 00:00:30,000\\nOf beauty rich and rare\\n\\n7\\n00:00:30,000 --> 00:00:35,000\\nIn history's page, let every stage\\n\\n8\\n00:00:35,000 --> 00:00:40,000\\nAdvance Australia Fair\\n\\n9\\n00:00:40,000 --> 00:00:45,000\\nIn joyful strains then let us sing\\n\\n10\\n00:00:45,000 --> 00:00:52,000\\nAdvance Australia Fair!\",\n", + " 'bytes': 623,\n", + " 'sha1': 's1v0p9x5u8goqnzjbuqx69sktvjpgua',\n", + " 'parent_id': 591335861,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 661395555,\n", + " 'timestamp': '2022-06-04T06:14:09Z',\n", + " 'user': {'text': '2400:4050:82A3:2100:598D:6C5B:F310:FC4F'},\n", + " 'page': {'id': 25791139,\n", + " 'title': 'Kimi ga Yo instrumental.ogg.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:09,000\\n君が代は\\n\\n2\\n00:00:09,000 --> 00:00:20,000\\n千代に八千代に\\n\\n3\\n00:00:20,000 --> 00:00:30,000\\nさざれ石の\\n\\n4\\n00:00:30,000 --> 00:00:40,000\\n巌となりて\\n\\n5\\n00:00:40,000 --> 00:00:58,000\\n苔の生すまで',\n", + " 'bytes': 249,\n", + " 'sha1': '8bbg4qie37ewp3zbpxme2mf73o55raa',\n", + " 'parent_id': 654391102,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 400963261,\n", + " 'timestamp': '2020-03-02T16:01:10Z',\n", + " 'user': {'id': 8430642, 'text': 'RalvahKaset'},\n", + " 'page': {'id': 25791193,\n", + " 'title': 'United States Navy Band - Nokoreach.ogg.km.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:08,000\\nសូមពួកទេវព្តា រក្សាមហាក្សត្រយើង\\n\\n2\\n00:00:08,000 --> 00:00:16,000\\nអោយបានរុងរឿង ដោយជ័យមង្គលសិរីសួស្តី\\n\\n3\\n00:00:16,000 --> 00:00:25,000\\nយើងខ្ញុំព្រះអង្គ សូមជ្រកក្រោមម្លប់ព្រះបារមី\\n\\n4\\n00:00:25,000 --> 00:00:34,000\\nនៃព្រះនរបតី វង្សក្សត្រាដែលសាងប្រាសាទថ្ម\\n\\n5\\n00:00:35,000 --> 00:00:41,000\\nគ្រប់គ្រងដែនខ្មែរ បុរាណថ្កើងថ្កាន។\\n\\n6\\n00:00:42,000 --> 00:00:50,000\\nប្រាសាទសិលា កំបាំងកណ្តាលព្រៃ\\n\\n7\\n00:00:50,000 --> 00:00:58,000\\nគួរអោយស្រមៃ នឹកដល់យសស័ក្តិមហានគរ\\n\\n8\\n00:00:58,000 --> 00:01:08,000\\nជាតិខ្មែរដូចថ្ម គង់វង្សនៅល្អរឹងប៉ឹងជំហរ\\n\\n9\\n00:01:08,000 --> 00:01:17,000\\nយើងសង្ឃឹមពរ ភ័ព្វព្រេងសំណាងរបស់កម្ពុជា\\n\\n10\\n00:01:18,000 --> 00:01:27,000\\nមហារដ្ឋកើតមាន យូរអង្វែងហើយ។',\n", + " 'bytes': 1354,\n", + " 'sha1': '36k7v8jpy2yc91svmtm396kr10z7s1w',\n", + " 'parent_id': 95233806,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95234265,\n", + " 'timestamp': '2013-04-28T05:35:18Z',\n", + " 'user': {'id': 117688, 'text': 'Billytanghh'},\n", + " 'page': {'id': 25791333,\n", + " 'title': 'O Canada.ogg.en-ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:03,000 O Canada! 2 00:00:03,000 --> 00:00:08,000 Our home and native land! 3 00:00:08,000 --> 00:00:15,000 True patriot love in all t...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,000\\nO Canada!\\n\\n2\\n00:00:03,000 --> 00:00:08,000\\nOur home and native land!\\n\\n3\\n00:00:08,000 --> 00:00:15,000\\nTrue patriot love in all thy sons command.\\n\\n4\\n00:00:16,000 --> 00:00:20,000\\nWith glowing hearts we see thee rise,\\n\\n5\\n00:00:20,000 --> 00:00:24,000\\nThe True North strong and free!\\n\\n6\\n00:00:24,000 --> 00:00:26,000\\nFrom far and wide,\\n\\n7\\n00:00:26,000 --> 00:00:33,000\\nO Canada, we stand on guard for thee.\\n\\n8\\n00:00:33,000 --> 00:00:41,000\\nGod keep our land glorious and free!\\n\\n9\\n00:00:41,000 --> 00:00:48,000\\nO Canada, we stand on guard for thee.\\n\\n10\\n00:00:49,000 --> 00:00:57,000\\nO Canada, we stand on guard for thee.',\n", + " 'bytes': 648,\n", + " 'sha1': '90p85evyhigjv7x2qtilxjwya9ge0kk',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 139047649,\n", + " 'timestamp': '2014-11-09T08:32:41Z',\n", + " 'user': {'id': 1216133, 'text': 'Champion'},\n", + " 'page': {'id': 25791357,\n", + " 'title': 'O Canada.ogg.frc.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'TheChampionMan1234 moved page [[TimedText:O Canada.ogg.fr.srt]] to [[TimedText:O Canada.ogg.frc.srt]]: More specific variety',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:03,000\\nÔ Canada!\\n\\n2\\n00:00:03,000 --> 00:00:08,000\\nTerre de nos aïeux,\\n\\n3\\n00:00:08,000 --> 00:00:15,000\\nTon front est ceint de fleurons glorieux!\\n\\n4\\n00:00:16,000 --> 00:00:20,000\\nCar ton bras sait porter l'épée,\\n\\n5\\n00:00:20,000 --> 00:00:24,000\\nIl sait porter la croix!\\n\\n6\\n00:00:24,000 --> 00:00:26,000\\nTon histoire est une épopée\\n\\n7\\n00:00:26,000 --> 00:00:33,000\\nDes plus brillants exploits.\\n\\n8\\n00:00:33,000 --> 00:00:41,000\\nEt ta valeur, de foi trempée,\\n\\n9\\n00:00:41,000 --> 00:00:48,000\\nProtégera nos foyers et nos droits.\\n\\n10\\n00:00:49,000 --> 00:00:57,000\\nProtégera nos foyers et nos droits.\",\n", + " 'bytes': 627,\n", + " 'sha1': 'aeb3dw37zurl097cu8ivfspycunuqgf',\n", + " 'parent_id': 95234348,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95314261,\n", + " 'timestamp': '2013-04-29T11:28:49Z',\n", + " 'user': {'id': 5100, 'text': 'Fuzheado'},\n", + " 'page': {'id': 25814701,\n", + " 'title': 'GLAM Wiki US 2013 Boot Camp - David Ferriero.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'start',\n", + " 'text': '1\\n00:00:03,000 --> 00:00:08,400\\nDavid Ferriero, Archivist of the United States',\n", + " 'bytes': 78,\n", + " 'sha1': '90eh51yb87al90tidmbvno03oh5prys',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 329858363,\n", + " 'timestamp': '2018-11-30T09:59:15Z',\n", + " 'user': {'text': '139.193.107.234'},\n", + " 'page': {'id': 25846648,\n", + " 'title': 'Pink noise.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:10,000\\n(pink noise)',\n", + " 'bytes': 44,\n", + " 'sha1': 'lzh8jbulyavuymteezwx6svswra0ssw',\n", + " 'parent_id': 329858317,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95442596,\n", + " 'timestamp': '2013-05-01T11:26:29Z',\n", + " 'user': {'id': 1728326, 'text': 'MuhdNurHidayat'},\n", + " 'page': {'id': 25848025,\n", + " 'title': 'Thank You from the Children of OLPC.ogg.ms.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Updated timecodes',\n", + " 'text': '1\\n00:00:23,000 --> 00:00:26,500\\nSaya juga menggunakan XO untuk\\n\\n2\\n00:00:26,500 --> 00:00:28,500\\nmenangkap gambar di rumah.\\n\\n3\\n00:00:28,500 --> 00:00:30,500\\nSaya juga guna XO untuk buat pengiraan matematik.\\n\\n4\\n00:00:30,500 --> 00:00:34,500\\nSaya juga melukis di atas XO ini.\\n\\n5\\n00:00:34,500 --> 00:00:37,500\\nJadi, saya ingin ucap terima kasih kepada mereka yang membawa XO ke sini.\\n\\n6\\n00:00:37,500 --> 00:00:39,500\\nMereka patut bawa lebih banyak XO\\n\\n7\\n00:00:39,500 --> 00:00:41,000\\nuntuk abang dan kakak saya,\\n\\n8\\n00:00:41,000 --> 00:00:43,500\\ndan orang lain di rumah saya,\\n\\n9\\n00:00:43,500 --> 00:00:45,500\\njadi saya sangat berterima kasih kepada mereka.\\n\\n10\\n00:00:45,500 --> 00:00:48,500\\nSaya suka komputer riba saya, terima kasih.\\n\\n11\\n00:00:48,500 --> 00:00:52,500\\nTerima kasih.',\n", + " 'bytes': 777,\n", + " 'sha1': 'qo0j47kel4n5o8epd0du79aplzbnamm',\n", + " 'parent_id': 95442452,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95444145,\n", + " 'timestamp': '2013-05-01T11:53:03Z',\n", + " 'user': {'id': 1728326, 'text': 'MuhdNurHidayat'},\n", + " 'page': {'id': 25848304,\n", + " 'title': 'Thank You from the Children of OLPC.ogg.zh-my.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:23,000 --> 00:00:26,500\\n我也用这XO\\n\\n2\\n00:00:26,500 --> 00:00:28,500\\n来在家里拍照。\\n\\n3\\n00:00:28,500 --> 00:00:30,500\\n我也用来算数学。\\n\\n4\\n00:00:30,500 --> 00:00:34,500\\n我也用来画画。\\n\\n5\\n00:00:34,500 --> 00:00:37,500\\n所以,我想要谢那个带这XO来这儿的人们。\\n\\n6\\n00:00:37,500 --> 00:00:39,500\\n他们应该带多XO\\n\\n7\\n00:00:39,500 --> 00:00:41,000\\n给我的兄弟姐妹,\\n\\n8\\n00:00:41,000 --> 00:00:43,500\\n和我家人们,\\n\\n9\\n00:00:43,500 --> 00:00:45,500\\n所以我要谢他们。\\n\\n10\\n00:00:45,500 --> 00:00:48,500\\n我很喜欢我的手提电脑,谢谢。\\n\\n11\\n00:00:48,500 --> 00:00:52,500\\n谢谢。',\n", + " 'bytes': 647,\n", + " 'sha1': 'e80m4gihbdzbb78dhfplzj6iik985f4',\n", + " 'parent_id': 95444006,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 127968921,\n", + " 'timestamp': '2014-07-02T09:04:56Z',\n", + " 'user': {'id': 1607850, 'text': 'Buernia'},\n", + " 'page': {'id': 25851144,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,800 -->00:00:03,500\\n你好!我是特离谱。我帮维基百科制作了可视化编辑器。\\n\\n2\\n00:00:03,505 -->00:00:07,505\\n任何人都可以编辑维基百科,但新手往往很难下手,\\n\\n3\\n00:00:07,762 -->00:00:11,262\\n因为维基百科的页面代码是非常难以理解的。\\n\\n4\\n00:00:11,287 -->00:00:14,787\\n我们12年前创建维基百科时,真是令人兴奋,\\n\\n5\\n00:00:14,925 -->00:00:16,925\\n但是如果我们希望所有人都参与到维基的建设中,\\n\\n6\\n00:00:17,327 -->00:00:19,327\\n我们应该要让人们更容易编辑维基百科。\\n\\n7\\n00:00:19,360 -->00:00:22,360\\n推出可视化编辑器是我们所见过的维基百科的最大的变化了。\\n\\n8\\n00:00:22,604 -->00:00:27,104\\n它使编辑维基百科就像写论文或发电子邮件一样简单。\\n\\n9\\n00:00:27,196 -->00:00:28,696\\n它仍然有些小问题,\\n\\n10\\n00:00:28,962 -->00:00:31,962\\n但如果你想先睹为快,看看将来可以怎么样编辑维基,\\n\\n11\\n00:00:32,207 -->00:00:34,207\\n不妨就在维基百科上创建一个帐户吧。\\n\\n12\\n00:00:34,518 -->00:00:38,018\\n到参数设置、编辑、在启用可视化编辑器前打勾。\\n\\n13\\n00:00:38,296 -->00:00:42,296\\n你使用可视化编辑器后可以给我们反馈意见,帮助我们完善它。\\n\\n14\\n00:00:42,622 -->00:00:46,122\\n最后,希望你加入我们,让所有人的知识都可以共享。',\n", + " 'bytes': 1373,\n", + " 'sha1': 'h5imf80hrarot47ung8isospvxe9hzq',\n", + " 'parent_id': 95457300,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 127968933,\n", + " 'timestamp': '2014-07-02T09:05:18Z',\n", + " 'user': {'id': 1607850, 'text': 'Buernia'},\n", + " 'page': {'id': 25851158,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.zh-cn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,800 -->00:00:03,500\\n你好!我是特雷弗。我正在帮助维基百科制作可视化编辑器。\\n\\n2\\n00:00:03,505 -->00:00:07,505\\n任何人都可以编辑维基百科,但新手往往不知所从,\\n\\n3\\n00:00:07,762 -->00:00:11,262\\n因为维基百科的旧代码十分难以理解。\\n\\n4\\n00:00:11,287 -->00:00:14,787\\n它在我们12年前创建维基百科时的确很棒,\\n\\n5\\n00:00:14,925 -->00:00:16,925\\n但是如果我们要将人类知识的总和向所有人分享,\\n\\n6\\n00:00:17,327 -->00:00:19,327\\n我们应该要让人们分享知识变得更加容易。\\n\\n7\\n00:00:19,360 -->00:00:22,360\\n推出可视化编辑器是我们所见过维基百科的最大变化了。\\n\\n8\\n00:00:22,604 -->00:00:27,104\\n它使编辑维基百科就像写论文或发电子邮件一样简单。\\n\\n9\\n00:00:27,196 -->00:00:28,696\\n它仍然有些小问题,\\n\\n10\\n00:00:28,962 -->00:00:31,962\\n但如果你想先睹为快,看看将来可以怎样编辑维基,\\n\\n11\\n00:00:32,207 -->00:00:34,207\\n不妨就在维基百科上创建一个帐户吧。\\n\\n12\\n00:00:34,518 -->00:00:38,018\\n进入参数设置,单击编辑,然后在启用可视化编辑器前打勾。\\n\\n13\\n00:00:38,296 -->00:00:42,296\\n你使用可视化编辑器时还能给我们提供反馈意见,帮助我们完善它。\\n\\n14\\n00:00:42,622 -->00:00:46,122\\n最后,加入我们吧,让所有人的知识都可以共享。',\n", + " 'bytes': 1376,\n", + " 'sha1': 'snoa0cz0600hsadey97z5aqss75uxvr',\n", + " 'parent_id': 99370040,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 109566724,\n", + " 'timestamp': '2013-11-13T13:29:22Z',\n", + " 'user': {'id': 284676, 'text': 'Skiper'},\n", + " 'page': {'id': 25851863,\n", + " 'title': \"Hymne National de Côte d'Ivoire.ogg.fr.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,500 --> 00:00:05,800\\nSalut Ô terre d’espérance!\\n\\n2\\n00:00:6,000 --> 00:00:09,900\\nPays de l’hospitalité.\\n\\n3\\n00:00:10,750 --> 00:00:14,800\\nTes légions remplies de vaillance,\\n\\n4\\n00:00:14,850 --> 00:00:19,100\\nont relevé ta dignité.\\n\\n5\\n00:00:19,900 --> 00:00:24,000\\nTes fils, chère Côte d’Ivoire,\\n\\n6\\n00:00:24,200 --> 00:00:28,900\\nfiers artisans de ta grandeur,\\n\\n7\\n00:00:29,200 --> 00:00:33,000\\ntous rassemblés et pour ta gloire,\\n\\n8\\n00:00:33,100 --> 00:00:38,000\\nte bâtiront dans le bonheur.\\n\\n9\\n00:00:38,200 --> 00:00:42,600\\nFiers ivoiriens le pays nous appelle.\\n\\n10\\n00:00:42,600 --> 00:00:47,020\\nSi nous avons, dans la paix, ramené la liberté,\\n\\n11\\n00:00:47,020 --> 00:00:52,000\\nnotre devoir sera d’être un modèle\\n\\n12\\n00:00:52,000 --> 00:00:56,800\\nde l’espérance promise à l’humanité\\n\\n13\\n00:00:56,800 --> 00:01:01,350\\nen forgeant, unis dans la foi nouvelle,\\n\\n14\\n00:01:01,400 --> 00:01:07,500\\nla patrie de la vraie fraternité.',\n", + " 'bytes': 959,\n", + " 'sha1': 'keb2u461g6aq2xff3utjld9rraati3h',\n", + " 'parent_id': 99980006,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 205242817,\n", + " 'timestamp': '2016-08-31T13:30:39Z',\n", + " 'user': {'id': 53794, 'text': 'Hedwig in Washington'},\n", + " 'page': {'id': 25871849,\n", + " 'title': 'Jabberwocky-UK.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/168.9.24.58|168.9.24.58]] ([[User talk:168.9.24.58|talk]]) to last revision by 201.141.75.182',\n", + " 'text': '1\\n00:00:01,000 --> 00:00:10,000\\n\\'Twas brillig, and the slithy toves\\nDid gyre and gimble in the wabe;\\nAll mimsy were the borogoves,\\nAnd the mome raths outgrabe.\\n\\n2\\n00:00:10,000 --> 00:00:20,000\\n\"Beware the Jabberwock, my son!\\nThe jaws that bite, the claws that catch!\\nBeware the Jubjub bird, and shun\\nThe frumious Bandersnatch!\"\\n\\n3\\n00:00:20,000 --> 00:00:29,000\\nHe took his vorpal sword in hand:\\nLong time the manxome foe he sought—\\nSo rested he by the Tumtum tree,\\nAnd stood awhile in thought.\\n\\n4\\n00:00:29,000 --> 00:00:37,500\\nAnd as in uffish thought he stood,\\nThe Jabberwock, with eyes of flame,\\nCame whiffling through the tulgey wood,\\nAnd burbled as it came!\\n\\n5\\n00:00:37,500 --> 00:00:46,500\\nOne,two! One,two! and through and through\\nThe vorpal blade went snicker-snack!\\nHe left it dead,and with its head\\nHe went galumphing back.\\n\\n6 \\n00:00:46,500 --> 00:00:55,500\\n\"And hast thou slain the Jabberwock?\\nCome to my arms, my beamish boy!\\nO frabjous day! Callooh! Callay!\"\\nHe chortled in his joy.\\n\\n7\\n00:00:55,500 --> 00:00:66,500\\n\\'Twas brillig, and the slithy toves\\nDid gyre and gimble in the wabe;\\nAll mimsy were the borogoves,\\nAnd the mome raths outgrabe.',\n", + " 'bytes': 1157,\n", + " 'sha1': '9kjzkit2x5z71bogwadbv8km42wc3gv',\n", + " 'parent_id': 205242616,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95740132,\n", + " 'timestamp': '2013-05-06T20:34:29Z',\n", + " 'user': {'text': '76.111.23.130'},\n", + " 'page': {'id': 25939117,\n", + " 'title': 'Ru-кошка.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:02,000 Koshka - Cat - Кошка'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,000\\nKoshka - Cat - Кошка',\n", + " 'bytes': 57,\n", + " 'sha1': 'h67cgbqdm9xv0ux4ksgkqmm3ttajf1p',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 128875837,\n", + " 'timestamp': '2014-07-13T10:31:16Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 26005426,\n", + " 'title': 'Bibiana spiega quello che facciamo-YouTube.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'McZusatz moved page [[TimedText:Bibiana spiega quello che facciamo-YouTube.webm]] to [[TimedText:Bibiana spiega quello che facciamo-YouTube.webm.en.srt]] without leaving a redirect',\n", + " 'text': \"\\n1\\n00:00:00.420 --> 00:00:05.560\\nI am Bibiana Esperanza Chiquillo , \\nthe coordinator of international cooperation\\n\\n2\\n00:00:05.560 --> 00:00:08.200\\nand public-private\\npartnerships\\n\\n3\\n00:00:08.200 --> 00:00:15.200\\nfor the Social Integration Secretariat.\\n\\n4\\n00:00:20.020 --> 00:00:27.020\\nNow we are working with Armadilla ,\\nan Italian social cooperative,\\n\\n5\\n00:00:29.699 --> 00:00:36.699\\nin a International cooperation project\\nfinanced by the European Union, \\n\\n6\\n00:00:43.659 --> 00:00:50.659\\nthe efforts being done in the world\\nto achieve the millennium development goals.\\n\\n7\\n00:00:51.219 --> 00:00:58.219\\nthey are now here because in Colombia,\\nparticularly in Bogota',\\n\\n8\\n00:00:58.879 --> 00:01:03.459\\nbecause they are interested to cover the projects\\nfor the enforcements of the rights of the unprivileged, \\n\\n9\\n00:01:03.459 --> 00:01:10.459\\nand the programs\\nfor food security.\\n\\n10\\n00:01:14.880 --> 00:01:21.880\\nThey want to show\\nhow we alleviate poverty\\n\\n11\\n00:01:27.539 --> 00:01:28.409\\nWith the footage they collect\\nthey will make a television program\\n\\n12\\n00:01:28.409 --> 00:01:34.439\\nthey will show the reality\\nof the work in progress for the Millennium Development Goals,\\n\\n13\\n00:01:34.439 --> 00:01:38.729\\nnot just \\nthe institutional policies,\\n\\n14\\n00:01:38.729 --> 00:01:41.710\\nbut the ground reality of the people\\nwho work and benefice from the activities.\",\n", + " 'bytes': 1371,\n", + " 'sha1': 'hzfj9l4nwtnege08a6lu5bw57be20hl',\n", + " 'parent_id': 128875797,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 128875862,\n", + " 'timestamp': '2014-07-13T10:31:48Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 26005694,\n", + " 'title': 'Bibiana spiega quello che facciamo-YouTube.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'McZusatz moved page [[TimedText:Bibiana spiega quello che facciamo-YouTube.webmsd.webm.es.srt]] to [[TimedText:Bibiana spiega quello che facciamo-YouTube.webm.es.srt]] without leaving a redirect',\n", + " 'text': '\\n1\\n00:00:00.270 --> 00:00:02.480\\nBibiana Esperanza Chiquillo es mi nombre,\\n\\n2\\n00:00:02.480 --> 00:00:06.860\\nsoy la persona que coordina el tema de cooperaciòn internacional\\n\\n3\\n00:00:06.860 --> 00:00:08.659\\ny alianzas publico-privadas de la Secretaria de Integraciòn Social\\n\\n4\\n00:00:08.659 --> 00:00:10.269\\nen esta oportunidad presentamos una propuesta\\n\\n5\\n00:00:10.269 --> 00:00:12.489\\nque hemos venido tratando desde el año anterior,\\n\\n6\\n00:00:12.489 --> 00:00:15.909\\ny es una propuesta de una cooperativa\\nsocial italiana que se llama Armadilla\\n\\n7\\n00:00:15.909 --> 00:00:17.240\\nacercaron a nosotros, nos contactaron\\n\\n8\\n00:00:17.240 --> 00:00:21.330\\ny es esta organización internacional\\n\\n9\\n00:00:21.330 --> 00:00:22.929\\ndenominada Armadilla\\n\\n10\\n00:00:22.929 --> 00:00:26.210\\nnos explican que aplicaron a un proyecto con la\\nunión europea\\n\\n11\\n00:00:26.210 --> 00:00:29.400\\nen donde se está convocando a hacer el\\nseguimiento de los objetivos de\\n\\n\\n12\\n00:00:29.400 --> 00:00:31.759\\ndesarrollo del milenio en diferentes\\npaíses\\n\\n13\\n00:00:31.759 --> 00:00:35.800\\nentre estos países del mundo, africa\\nIndia,Arabia uno de\\nlos escogidos es Colombia\\n\\n14\\n00:00:35.800 --> 00:00:39.870\\nporque se enteraron que en Colombia\\nparticularmente en Bogotá\\n\\n15\\n00:00:39.870 --> 00:00:43.380\\nse tenian unos proyectos importantes\\n\\n16\\n00:00:43.380 --> 00:00:47.290\\ncomo la garantía de los derechos\\n\\n17\\n00:00:47.290 --> 00:00:48.699\\ny uno de esos programas interesantes\\n\\n18\\n00:00:48.699 --> 00:00:51.280\\nes el de la seguridad alimentaria\\n\\n19\\n00:00:51.280 --> 00:00:53.450\\nque son solo una parte de los problemas\\nde esta zona\\n\\n20\\n00:00:53.450 --> 00:00:58.130\\ny además comentamos que no solo trabajamos\\nel tema del hambre y la pobreza\\n\\n21\\n00:00:58.130 --> 00:01:00.3\\ndesde esta secretaria que\\n\\n22\\n00:01:00.350 --> 00:01:02.020\\nmira mas alla’ de resolver la \\n pobreza y el hambre\\n\\n23\\n00:01:02.020 --> 00:01:04.360\\nsino también lograr impactar\\n\\n24\\n00:01:04.360 --> 00:01:07.960\\notros procesos sociales desde escenarios\\ntan importantes como son los comedores\\n\\n25\\n00:01:07.960 --> 00:01:09.200\\ncomunitarios y asambleas\\n\\n26\\n00:01:09.200 --> 00:01:11.549\\ntratamos también el tema \\nde los niños y de las niñas \\n\\n27\\n00:01:11.549 --> 00:01:14.720\\nque es otro tema importante de \\neste pais\\n\\n28\\n00:01:14.720 --> 00:01:18.130\\ny que esta en la agenda de todas\\nlas regiones \\n\\n29\\n00:01:18.130 --> 00:01:22.530\\nellos nos explicaron que haran\\nun documental que sera un\\nprograma de televisión \\n\\n30\\n00:01:22.530 --> 00:01:25.130\\npara mostrar la realidad de este tipo de\\ndesarrollo social teniendo en cuenta\\n\\n31\\n00:01:25.130 --> 00:01:27.410\\nsiempre los objetivos del milenio\\n\\n32\\n00:01:27.410 --> 00:01:31.800\\na través de formas alternativas,\\nes decir que vayan más allá de lo institucional\\n\\n33\\n00:01:31.800 --> 00:01:33.990\\nentonces la idea es mostrar ese aspecto\\n\\n34\\n00:01:33.990 --> 00:01:38.100\\npero también para que se presenten\\nlos avances desde la\\n\\n35\\n00:01:38.100 --> 00:01:40.300\\ncooperación internacional\\n\\n36\\n00:01:40.300 --> 00:01:41.710\\nprecisamente desde este sitio',\n", + " 'bytes': 3073,\n", + " 'sha1': 'jp8kipue6577jt3jy268qyj5yzmw976',\n", + " 'parent_id': 96106953,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 599903258,\n", + " 'timestamp': '2021-10-18T21:23:18Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 26049045,\n", + " 'title': 'Wikipedia video tutorial-2-Reliability-en.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall update',\n", + " 'text': '1\\n00:00:01,169 --> 00:00:03,461\\nHello there, I\\'m Teresa.\\n\\n2\\n00:00:03,503 --> 00:00:05,180\\nThanks for watching our video,\\n\\n3\\n00:00:05,212 --> 00:00:07,780\\nwhich explains how anyone\\ncan contribute to Wikipedia,\\n\\n4\\n00:00:07,780 --> 00:00:10,794\\nthe worlds biggest and best,\\nfree encyclopedia.\\n\\n5\\n00:00:11,282 --> 00:00:15,515\\nAs you may know, it\\'s possible for anyone\\nto edit any article on Wikipedia.\\n\\n6\\n00:00:15,570 --> 00:00:19,989\\nAll you have to do is click \"Edit\",\\nchange the text, and click \"Save\".\\n\\n7\\n00:00:20,049 --> 00:00:23,234\\nBut this doesn\\'t provide anyone\\nwith the means to rewrite history.\\n\\n8\\n00:00:23,266 --> 00:00:27,444\\nOn the contrary, I would like to explain\\nhow Wikipedia retains its integrity,\\n\\n9\\n00:00:27,479 --> 00:00:29,912\\nalthough anyone can modify it so easily.\\n\\n10\\n00:00:30,510 --> 00:00:33,456\\nLike most computer programs,\\nthe program behind Wikipedia\\n\\n11\\n00:00:33,505 --> 00:00:36,089\\nhas many tools that most readers\\ndon\\'t know about.\\n\\n12\\n00:00:36,111 --> 00:00:38,281\\nI\\'m going to tell you\\nabout two of those tools\\n\\n13\\n00:00:38,337 --> 00:00:42,237\\nthat have been specifically constructed\\nto ensure the reliability of Wikipedia.\\n\\n14\\n00:00:42,761 --> 00:00:45,828\\nThe first tool is called \"Recent changes.\"\\n\\n15\\n00:00:47,228 --> 00:00:51,481\\nIn the menu to your left,\\nyou\\'ll find the link to recent changes.\\n\\n16\\n00:00:52,458 --> 00:00:54,218\\nThis is a list of every change\\n\\n17\\n00:00:54,248 --> 00:00:57,428\\nthat has been recently made\\non your language version of Wikipedia.\\n\\n18\\n00:00:57,459 --> 00:01:00,106\\nLets look at this first article\\non the top of the list.\\n\\n19\\n00:01:00,208 --> 00:01:04,241\\nIf I click again on \"Recent changes\",\\njust a few seconds later,\\n\\n20\\n00:01:04,259 --> 00:01:06,888\\nthen you see that this article\\nis already way down here\\n\\n21\\n00:01:07,835 --> 00:01:09,805\\nand all those other articles above\\n\\n22\\n00:01:09,832 --> 00:01:13,708\\nhave either been created \\nor modified in the last four seconds.\\n\\n23\\n00:01:14,670 --> 00:01:17,566\\nThis is what I refer to\\nas the \"pulse of Wikipedia\".\\n\\n24\\n00:01:17,596 --> 00:01:19,359\\nPretty impressive, don\\'t you think?\\n\\n25\\n00:01:19,677 --> 00:01:21,258\\nLets go back to the article.\\n\\n26\\n00:01:22,269 --> 00:01:24,889\\nWhen you click here on \"differences\",\\n\\n27\\n00:01:24,931 --> 00:01:27,491\\nyou will see all of the changes\\nthat have been made.\\n\\n28\\n00:01:27,770 --> 00:01:32,846\\nWhat you see here are the previous version\\nand the new modified version side by side.\\n\\n29\\n00:01:33,534 --> 00:01:36,824\\nThis way, all of the changes\\nare totally transparent.\\n\\n30\\n00:01:36,948 --> 00:01:40,633\\nThe alert and active community\\nwill carefully watch for modifications\\n\\n31\\n00:01:40,633 --> 00:01:43,305\\nand correct any false information.\\n\\n32\\n00:01:44,073 --> 00:01:46,227\\nThis is just one of many effective ways\\n\\n33\\n00:01:46,237 --> 00:01:48,740\\nto maintain the integrity\\nof Wikipedia\\'s content.\\n\\n34\\n00:01:48,968 --> 00:01:51,139\\nThe other tool that\\nI want to tell you about\\n\\n35\\n00:01:51,166 --> 00:01:56,246\\nis a personalized recent changes list, \\nor what we refer to as a \"Watchlist\".\\n\\n36\\n00:01:56,780 --> 00:02:00,501\\nNow to get a watchlist you will have\\nto open up a user account.\\n\\n37\\n00:02:00,708 --> 00:02:05,244\\nBut don\\'t panic! It\\'s quick,\\nit\\'s painless, and it\\'s free!\\n\\n38\\n00:02:07,384 --> 00:02:10,967\\nYou just click on this link\\nand follow the instructions.\\n\\n39\\n00:02:13,684 --> 00:02:16,261\\nBut how do I create my own watchlist?\\n\\n40\\n00:02:16,291 --> 00:02:20,531\\nWell, it\\'s best to create a watchlist\\nfor your own particular field of interest.\\n\\n41\\n00:02:21,101 --> 00:02:23,254\\nTake me for example.\\n\\n42\\n00:02:23,271 --> 00:02:25,446\\nI love dogs...\\n\\n43\\n00:02:25,467 --> 00:02:27,198\\ncanines that is.\\n\\n44\\n00:02:28,304 --> 00:02:31,848\\nI\\'m constantly on the lookout\\nfor any new articles about dogs.\\n\\n45\\n00:02:33,113 --> 00:02:34,767\\nA Labrador retriever!\\n\\n46\\n00:02:34,777 --> 00:02:37,977\\nLook at that face! You gotta love it!\\n\\n47\\n00:02:38,420 --> 00:02:40,207\\nLets click on this article.\\n\\n48\\n00:02:40,772 --> 00:02:43,125\\nYes! I definitely want to read\\n\\n49\\n00:02:43,147 --> 00:02:45,505\\nand follow any changes\\nmade to this article.\\n\\n50\\n00:02:45,715 --> 00:02:48,501\\nSo I just click \"watch\".\\n\\n51\\n00:02:49,251 --> 00:02:53,179\\nand this article has now been magically\\nadded to my personal watchlist,\\n\\n52\\n00:02:53,239 --> 00:02:57,589\\nwhich I can read at any time\\nby clicking here on \"watchlist\".\\n\\n53\\n00:02:58,737 --> 00:03:01,417\\nWhenever anyone edits\\nan article on your watchlist,\\n\\n54\\n00:03:01,448 --> 00:03:03,256\\nyou\\'ll be able to see it\\n\\n55\\n00:03:03,298 --> 00:03:04,779\\nand with one click\\n\\n56\\n00:03:04,808 --> 00:03:06,722\\nyou\\'ll see who made the changes\\n\\n57\\n00:03:07,530 --> 00:03:09,913\\nand what changes they made.\\n\\n58\\n00:03:11,860 --> 00:03:13,703\\nBy the way, it\\'s not only me\\n\\n59\\n00:03:13,727 --> 00:03:16,191\\nwho has this Labrador retriever\\non their watchlist.\\n\\n60\\n00:03:16,279 --> 00:03:19,728\\nNo, I\\'m confident that thousands\\nof dog lovers around the world\\n\\n61\\n00:03:19,768 --> 00:03:22,887\\nhave this beautiful face\\non their watchlist too.\\n\\n62\\n00:03:22,921 --> 00:03:24,297\\nI mean the dog.\\n\\n63\\n00:03:25,203 --> 00:03:30,706\\nSo those were only two of the many tools\\nused to maintain the quality of Wikipedia.\\n\\n64\\n00:03:31,029 --> 00:03:34,697\\nBut the very best way to ensure\\nthe ongoing quality of Wikipedia\\n\\n65\\n00:03:34,731 --> 00:03:36,825\\nis to increase the number of editors\\n\\n66\\n00:03:36,833 --> 00:03:39,537\\nwho contribute with\\ntheir own special expertise.\\n\\n67\\n00:03:40,184 --> 00:03:42,550\\nThe more editors, the higher the quality.\\n\\n68\\n00:03:42,993 --> 00:03:47,011\\nSo please join the superb\\nand unique pool of human knowledge\\n\\n69\\n00:03:47,067 --> 00:03:50,355\\nand help to grow bigger\\nand better wherever possible.\\n\\n70\\n00:03:50,432 --> 00:03:52,008\\nThanks for joining us!\\n\\n71\\n00:03:52,054 --> 00:03:54,027\\nGoodbye, and good luck!',\n", + " 'bytes': 5823,\n", + " 'sha1': 'kt1mt4oafyd62wvnkczkk8iy921llvp',\n", + " 'parent_id': 96104466,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96660184,\n", + " 'timestamp': '2013-05-21T13:45:27Z',\n", + " 'user': {'id': 555072, 'text': 'PrimeHunter'},\n", + " 'page': {'id': 26062424,\n", + " 'title': 'A through Z in Morse code.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'tweak timing again',\n", + " 'text': '1\\n00:00:01,000 --> 00:00:02,000\\nA · –\\n\\n2\\n00:00:02,000 --> 00:00:03,000\\nB – · · ·\\n\\n3\\n00:00:03,800 --> 00:00:04,800\\nC – · – ·\\n\\n4\\n00:00:05,600 --> 00:00:06,600\\nD – · ·\\n\\n5\\n00:00:06,700 --> 00:00:07,700\\nE ·\\n\\n6\\n00:00:07,900 --> 00:00:08,900\\nF · · – ·\\n\\n7\\n00:00:09,500 --> 00:00:10,500\\nG – – ·\\n\\n8\\n00:00:11,000 --> 00:00:12,000\\nH · · · ·\\n\\n9\\n00:00:12,000 --> 00:00:13,000\\nI · ·\\n\\n10\\n00:00:13,500 --> 00:00:14,500\\nJ · – – –\\n\\n11\\n00:00:15,500 --> 00:00:16,500\\nK – · –\\n\\n12\\n00:00:17,500 --> 00:00:18,500\\nL · – · ·\\n\\n13\\n00:00:18,500 --> 00:00:19,500\\nM – –\\n\\n14\\n00:00:20,000 --> 00:00:21,000\\nN – ·\\n\\n15\\n00:00:21,000 --> 00:00:22,000\\nO – – –\\n\\n16\\n00:00:23,000 --> 00:00:24,000\\nP · – – ·\\n\\n17\\n00:00:24,800 --> 00:00:25,800\\nQ – – · –\\n\\n18\\n00:00:26,700 --> 00:00:27,700\\nR · – ·\\n\\n19\\n00:00:28,000 --> 00:00:29,000\\nS · · ·\\n\\n20\\n00:00:29,500 --> 00:00:30,500\\nT –\\n\\n21\\n00:00:30,500 --> 00:00:31,500\\nU · · –\\n\\n22\\n00:00:31,900 --> 00:00:32,900\\nV · · · –\\n\\n23\\n00:00:33,500 --> 00:00:34,500\\nW · – –\\n\\n24\\n00:00:35,000 --> 00:00:36,000\\nX – · · –\\n\\n25\\n00:00:36,800 --> 00:00:37,800\\nY – · – –\\n\\n26\\n00:00:38,500 --> 00:00:39,500\\nZ – – · ·',\n", + " 'bytes': 1209,\n", + " 'sha1': '6jw7zdqznml2z142o13bsku307zvutk',\n", + " 'parent_id': 96659827,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96222371,\n", + " 'timestamp': '2013-05-14T15:10:54Z',\n", + " 'user': {'text': '88.196.88.60'},\n", + " 'page': {'id': 26080565,\n", + " 'title': 'Kamasutra.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:09,000 Kamasutra'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:09,000\\nKamasutra',\n", + " 'bytes': 41,\n", + " 'sha1': 'esfpojydwt9zbut3ba4js75834392am',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96310021,\n", + " 'timestamp': '2013-05-16T03:40:51Z',\n", + " 'user': {'text': '67.82.165.49'},\n", + " 'page': {'id': 26109214,\n", + " 'title': \"Billy Murray - You're a Grand Old Flag.ogg.en.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:18,000 --> 00:00:26,000\\nThere\\'s a feeling comes a-stealing,\\nand it sets my brain a-reeling,\\nwhen I\\'m listening to the music of a military band.\\n\\n2\\n00:00:26,100 --> 00:00:34,000\\nTunes like \"Yankee Doodle\"\\nsimply sets me off my noodle,\\nit\\'s that patriotic something that no one can understand.\\n\\n3\\n00:00:34,100 --> 00:00:40,900\\nWay down south, in the land of cotton,\\nmelody untiring,\\nain\\'t that inspiring?\\n\\n4\\n00:00:41,000 --> 00:00:48,000\\nHurrah! Hurrah! We\\'ll join the jubilee!\\nAnd that\\'s going some, for the Yankees, by gum!\\n\\n5\\n00:00:48,100 --> 00:00:55,000\\nRed, white and blue, hats off to you!\\nHonest, you\\'re a grand old flag!\\n\\n6\\n00:00:55,100 --> 00:01:02,000\\nYou\\'re a grand old flag,\\nthough you\\'re torn to a rag,\\nand forever in peace may you wave.\\n\\n7\\n00:01:02,100 --> 00:01:09,000\\nYou\\'re the emblem of,\\nthe land I love.\\nThe home of the free and the brave.\\n\\n8\\n00:01:09,100 --> 00:01:16,000\\nEv\\'ry heart beats true\\non the Red, White and Blue,\\nwhere there\\'s never a boast or brag.\\n\\n9\\n00:01:16,100 --> 00:01:24,000\\nBut should auld acquaintance be forgot,\\nkeep your eye on the grand old flag.\\n\\n10\\n00:01:24,100 --> 00:01:31,000\\nYou\\'re a grand old flag,\\nthough you\\'re torn to a rag,\\nand forever in peace may you wave.\\n\\n11\\n00:01:31,100 --> 00:01:38,000\\nYou\\'re the emblem of,\\nthe land I love.\\nThe home of the free and the brave.\\n\\n12\\n00:01:38,100 --> 00:01:46,000\\nEv\\'ry heart beats true\\non the Red, White and Blue,\\nwhere there\\'s never a boast or brag.\\n\\n13\\n00:01:46,100 --> 00:01:54,000\\nBut should auld acquaintance be forgot,\\nkeep your eye on the grand old flag.',\n", + " 'bytes': 1561,\n", + " 'sha1': '2ukneybo887jprzglpymlh2uzuzb89f',\n", + " 'parent_id': 96309984,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 580418290,\n", + " 'timestamp': '2021-08-13T12:29:08Z',\n", + " 'user': {'id': 6385668, 'text': 'Armonthap'},\n", + " 'page': {'id': 26110371,\n", + " 'title': 'Thai National Anthem - US Navy Band.ogg.th.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,320\\nประเทศไทยรวมเลือดเนื้อชาติเชื้อไทย\\n\\n2\\n00:00:05,320 --> 00:00:10,500\\nเป็นประชารัฐ ไผทของไทยทุกส่วน\\n\\n3\\n00:00:10,500 --> 00:00:15,760\\nอยู่ดำรงคงไว้ได้ทั้งมวล\\n\\n4\\n00:00:15,760 --> 00:00:21,160\\nด้วยไทยล้วนหมาย รักสามัคคี\\n\\n5\\n00:00:21,160 --> 00:00:26,640\\nไทยนี้รักสงบ แต่ถึงรบไม่ขลาด\\n\\n6\\n00:00:26,640 --> 00:00:31,880\\nเอกราชจะไม่ให้ใครข่มขี่\\n\\n7\\n00:00:31,880 --> 00:00:37,420\\nสละเลือดทุกหยาดเป็นชาติพลี\\n\\n8\\n00:00:37,420 --> 00:00:43,080\\nเถลิงประเทศชาติไทยทวี มีชัย ชโย',\n", + " 'bytes': 920,\n", + " 'sha1': 'g2lnl37009nlktn0ce8f4q5dz5q113u',\n", + " 'parent_id': 96313190,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96313460,\n", + " 'timestamp': '2013-05-16T06:43:58Z',\n", + " 'user': {'id': 171081, 'text': 'Xiengyod~commonswiki'},\n", + " 'page': {'id': 26110434,\n", + " 'title': 'Thai Royal Anthem - US Navy Band.ogg.th.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,460\\nข้าวรพุทธเจ้า\\n\\n2\\n00:00:05,900 --> 00:00:11,360\\nเอามโนและศิระกราน\\n\\n3\\n00:00:11,740 --> 00:00:17,260\\nนบพระภูมิบาล บุญดิเรก\\n\\n4\\n00:00:17,660 --> 00:00:29,120\\nเอกบรมจักริน พระสยามินทร์ พระยศยิ่งยง\\n\\n5\\n00:00:29,580 --> 00:00:35,220\\nเย็นศิระเพราะพระบริบาล\\n\\n6\\n00:00:35,660 --> 00:00:41,360\\nผลพระคุณ ธ รักษา\\n\\n7\\n00:00:41,800 --> 00:00:49,680\\nปวงประชาเป็นสุขศานต์ ขอบันดาล\\n\\n8\\n00:00:49,680 --> 00:00:53,400\\nธ ประสงค์ใด\\n\\n9\\n00:00:53,400 --> 00:01:00,040\\nจงสฤษดิ์ดัง หวังวรหฤทัย\\n\\n10\\n00:01:00,040 --> 00:01:06,380\\nดุจถวายชัย ชโย',\n", + " 'bytes': 930,\n", + " 'sha1': 't3ax6j0mv8g5akvrbt76ddwjsuns27w',\n", + " 'parent_id': 96313363,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96372256,\n", + " 'timestamp': '2013-05-17T03:41:09Z',\n", + " 'user': {'id': 117688, 'text': 'Billytanghh'},\n", + " 'page': {'id': 26128710,\n", + " 'title': 'God Defend New Zealand instrumental.ogg.mi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:06,000 E Ihowā Atua, 2 00:00:06,000 --> 00:00:13,000 O ngā iwi mātou rā 3 00:00:13,000 --> 00:00:20,000 Āta whakarangona; 4 00:...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,000\\nE Ihowā Atua,\\n\\n2\\n00:00:06,000 --> 00:00:13,000\\nO ngā iwi mātou rā\\n\\n3\\n00:00:13,000 --> 00:00:20,000\\nĀta whakarangona;\\n\\n4\\n00:00:20,000 --> 00:00:26,000\\nMe aroha noa\\n\\n5\\n00:00:26,000 --> 00:00:34,000\\nKia hua ko te pai;\\n\\n6\\n00:00:34,000 --> 00:00:41,000\\nKia tau tō atawhai;\\n\\n7\\n00:00:41,000 --> 00:00:50,000\\nManaakitia mai\\n\\n8\\n00:00:50,000 --> 00:01:00,000\\nAotearoa',\n", + " 'bytes': 395,\n", + " 'sha1': 'lremm31ne6zjln6qnwl34cgop3b0w5v',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 589551006,\n", + " 'timestamp': '2021-09-08T00:42:36Z',\n", + " 'user': {'id': 285765, 'text': 'Michael Bednarek'},\n", + " 'page': {'id': 26138288,\n", + " 'title': 'La Marseillaise.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Undo revision 589539100 by [[Special:Contribs/2603:7000:7740:9133:24DE:8B69:A780:25C6|2603:7000:7740:9133:24DE:8B69:A780:25C6]]: was correct.',\n", + " 'text': \"\\n1\\n00:00:00,000 --> 00:00:03,700\\nAllons enfants de la Patrie,\\n\\n2\\n00:00:03,700 --> 00:00:08,000\\nLe jour de gloire est arrivé!\\n\\n3\\n00:00:08,000 --> 00:00:12,000\\nContre nous de la tyrannie,\\n\\n4\\n00:00:12,000 --> 00:00:16,000\\nL'étendard sanglant est levé,\\n\\n5\\n00:00:16,000 --> 00:00:20,000\\nL'étendard sanglant est levé!\\n\\n6\\n00:00:20,000 --> 00:00:24,000\\nEntendez-vous dans les campagnes\\n\\n7\\n00:00:24,000 --> 00:00:28,000\\nMugir ces féroces soldats?\\n\\n8\\n00:00:28,000 --> 00:00:32,000\\nIls viennent jusque dans vos bras\\n\\n9\\n00:00:32,000 --> 00:00:37,000\\nÉgorger vos fils, vos compagnes!\\n\\n10\\n00:00:37,000 --> 00:00:41,000\\nAux armes, citoyens,\\n\\n11\\n00:00:41,000 --> 00:00:45,000\\nFormez vos bataillons,\\n\\n12\\n00:00:45,000 --> 00:00:50,000\\nMarchons, marchons!\\n\\n13\\n00:00:50,000 --> 00:00:53,700\\nQu'un sang impur\\n\\n14\\n00:00:53,700 --> 00:00:58,000\\nAbreuve nos sillons !\\n\\n15\\n00:00:59,000 --> 00:01:02,000\\nAux armes, citoyens,\\n\\n16\\n00:01:02,000 --> 00:01:06,000\\nFormez vos bataillons,\\n\\n17\\n00:01:06,000 --> 00:01:10,000\\nMarchons, marchons!\\n\\n18\\n00:01:10,000 --> 00:01:14,000\\nQu'un sang impur\\n\\n19\\n00:01:14,000 --> 00:01:19,000\\nAbreuve nos sillons !\\n\\n20\\n00:01:19,000 --> 00:01:23,000\\nQue veut cette horde d'esclaves\\n\\n21\\n00:01:23,000 --> 00:01:27,000\\nDe traîtres,de rois conjurés ?\",\n", + " 'bytes': 1256,\n", + " 'sha1': 'dkieujxkp81g4b62bvkzsjxodnkeqrz',\n", + " 'parent_id': 589539100,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97840196,\n", + " 'timestamp': '2013-06-09T08:51:57Z',\n", + " 'user': {'id': 2010648, 'text': 'TsamiW'},\n", + " 'page': {'id': 26155889,\n", + " 'title': 'Yochai Benkler - On Autonomy, Control and Cultural Experience.ogg.he.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\n0\\n00:00:00,000 --> 00:00:05,000 \\nראיון עם יוחאי בנקלר\\n\\n1\\n00:00:06,080 --> 00:00:08,040 \\nכשאני אומר אוטונומיה של משתמש, מה שאני מתכוון\\n\\n2\\n00:00:08,040 --> 00:00:15,920 \\nברמה הפשוטה ביותר, שאנשים יכולים לעשות יותר לעצמם\\n\\n3\\n00:00:15,920 --> 00:00:19,920 \\nבעצמם, מבלי שיצטרכו לבקש רשות\\n\\n4\\n00:00:19,920 --> 00:00:27,800 \\nומבלי שיצטרכו להכפיף את המעשים שלהם\\n\\n5\\n00:00:27,800 --> 00:00:29,840 \\nלשליטתו של מישהו.\\n\\n6\\n00:00:30,280 --> 00:00:39,480\\nמה שאירע בכלכלת המידע התעשייתי הוא\\n\\n7\\n00:00:39,480 --> 00:00:49,480 \\nשאנשים עברו ממצב בו הם היו יחסית חופשיים לעשות שימוש בכמות מוגבלת\\n\\n8\\n00:00:49,480 --> 00:00:55,440 \\nשל חומרים שהיו ברשותם, במעגלים החברתיים שהיו פתוחים לשיח\\n\\n9\\n00:00:55,440 --> 00:01:01,280\\nמשפחה, חברים, בד\"כ מקומות קטנים לרוב האנשים -\\n\\n10\\n00:01:01,480 --> 00:01:05,800\\nלמודל תעשייתי של הפקה תרבותית\\n\\n11\\n00:01:05,840 --> 00:01:08,480 \\nבו החומרים הופקו על ידי\\n\\n12\\n00:01:08,480 --> 00:01:15,400\\nקבוצה של [[w:he:מפיק|מפיקים]] בעלי מקצוע ששלטו בחווייה\\n\\n13\\n00:01:15,400 --> 00:01:22,400 \\nובכך הפכו את האדם היחיד לקולט פסיבי של השיח התרבותי.\\n\\n14\\n00:01:22,600 --> 00:01:29,600 \\nכך קרה שהמאמצים לקחת את החומרים האלה ולייצרם מחדש\\n\\n15\\n00:01:29,600 --> 00:01:32,480 \\nאו להשתתף כדובר בשיח התרבותי\\n\\n16\\n00:01:32,520 --> 00:01:37,640 \\nחייבו קבלת רשות.\\n\\n17\\n00:01:38,000 --> 00:01:45,200 \\nמה שאנחנו רואים כעת הוא שבאמצעות שילוב של טכנולוגיית מחשב\\n\\n18\\n00:01:45,120 --> 00:01:52,040 \\nשכוללת עיבוד דיגיטלי וטכנולוגיית רישות,\\n\\n19\\n00:01:52,520 --> 00:01:56,080 \\nאנשים יכולים להשתתף\\n\\n20\\n00:01:56,520 --> 00:02:01,520 \\nבסביבה התרבותית ובסביבת המידע, להפוך סביבות אלה לשלהם\\n\\n21\\n00:02:01,520 --> 00:02:04,760 \\nולהשתמש בהן כ\"רדי מייד\" - חומרי בסיס לביטוי עצמי שלהם.\\n\\n22\\n00:02:04,760 --> 00:02:07,800 \\nלחפש בעצמם, לייצר מסרים\\n\\n23\\n00:02:07,800 --> 00:02:11,320 \\nלהקים את הקהילות שלהם כשנחוץ שיתוף פעולה עם אחרים.\\n\\n24\\n00:02:11,520 --> 00:02:16,480 \\nולא להסתמך על מספר מוגבל של מימסדים קיימים\\n\\n25\\n00:02:17,000 --> 00:02:20,840 \\nאו על קבוצה של חומרים [[w:he:זכויות יוצרים|שאסור להשתמש בהם]]\\n\\n26\\n00:02:20,920 --> 00:02:25,760 \\nבלי לשאול: \"אפשר בבקשה להשתמש בזה?\"\\n\\n27\\n00:02:25,760 --> 00:02:27,080 \\n\"אפשר בבקשה ליצור?\".\\n\\n28\\n00:02:27,200 --> 00:02:30,800 \\nWhat happens when people can do more for and\\nמה שקורה כשאנשים יכולים לעשות יותר לעצמם\\n\\n29\\n00:02:30,800 --> 00:02:35,040 \\nובשביל עצמם, מה שקורה הוא שכוחות קיימים\\n\\n30\\n00:02:35,600 --> 00:02:38,240 \\n- בעיקר חברות מסחריות, אבל במקומות מסויימים גם ממשלות -\\n\\n31\\n00:02:38,840 --> 00:02:44,880 \\nששולטים בחוויה, אלה שבעבר היה צורך לבקש את רשותם,\\n\\n32\\n00:02:45,200 --> 00:02:47,440 \\nמתנגדים לשינוי, מכיוון\\n\\n33\\n00:02:47,440 --> 00:02:49,720 \\nשהם רוצים להמשיך לשלוט.\\n\\n34\\n00:02:49,800 --> 00:02:52,760 \\nאם אתה יכול לשלוט - אתה רוצה לשלוט.\\n\\n35\\n00:02:54,360 --> 00:03:01,080 \\nכיום אנחנו רואים סוגים שונים של מאבקים,\\n\\n36\\n00:03:01,160 --> 00:03:04,240 \\nכמה מהם מודעים לגמרי לעצמם,\\n\\n37\\n00:03:04,360 --> 00:03:08,480 \\nאני חושב, למשל, שהמאבק שניהלה [[w:he:הוליווד|הוליווד]] להרחבת\\n\\n38\\n00:03:08,560 --> 00:03:13,640 ההגבלות הטכנולוגיות על השימוש בחומרי תרבות\\n\\n39\\n00:03:13,680 --> 00:03:16,400 \\n[[w:he:ניהול זכויות דיגיטלי|ניהול זכויות דיגיטלי]], [[w:en:Trusted Computing|מערכות מוגנות]]\\n\\n40\\n00:03:16,440 --> 00:03:18,840 \\nהוא מאבק מודע לעצמו.\\n\\n41\\n00:03:18,880 --> 00:03:27,440 \\nמאבקים אחרים פחות מודעים, מבוססים יותר על חרדות\\n\\n42\\n00:03:27,440 --> 00:03:30,800 \\nומבטאים חרדות. למשל\\n\\n43\\n00:03:30,800 --> 00:03:35,600 \\nדאגה עקבית ומתמשכת בנושא אבטחה באינטרנט\\n\\n44\\n00:03:35,760 --> 00:03:39,560 \\n\"מה יקרה אם מישהו יפצח את מערכת המחשב שלך?\"\\n\\n45\\n00:03:39,560 --> 00:03:43,120 \\nהתעסקות בלתי פוסקת בנושאי איכות,\\n\\n46\\n00:03:43,080 --> 00:03:44,760 \\nמאיפה נקבל איכות טובה\\n\\n47\\n00:03:44,760 --> 00:03:51,120 \\nושעורי הטעויות ב[[w:he:ויקיפדיה|ויקיפדיה]], כל אלה ביטויים הרבה יותר תת-הכרתיים\\n\\n48\\n00:03:51,200 --> 00:03:55,320 \\nשל פחד שגורם להצדקה\\n\\n49\\n00:03:55,520 --> 00:04:00,520 \\nשל מערכת השליטה הישנה.\\n\\n50\\n00:04:00,520 --> 00:04:04,320 \\nבגלל פעולות טכנולוגיות וחברתיות,\\n\\n51\\n00:04:04,520 --> 00:04:11,120 \\nבגלל מאפיינים טכנולוגיים ומנהגים חברתיים\\n\\n52\\n00:04:11,400 --> 00:04:17,160 \\nשהולכים ומתפשטים ברשתות השיתופיות.\\n\\n53\\n00:04:17,680 --> 00:04:25,040 \\nוכך, לפעמים אנחנו רואים מאמץ לגרום לשינויים חוקיים\\n\\n54\\n00:04:25,280 --> 00:04:30,640 \\nודרישה לשליטה חוקית כאשר למעשה כבר אין בכך כל צורך.\\n\\n55\\n00:04:30,680 --> 00:04:36,640 \\nלפעמים אנחנו רואים ... אני לא אגיד \"תעמולה\",\\n\\n56\\n00:04:36,680 --> 00:04:41,600 \\nאבל נקרא לזה \"דיון ציבורי\" ו\"חקיקה ציבורית\"\\n\\n57\\n00:04:41,600 --> 00:04:47,400 \\nשנובעים מחרדה, ושואפים לחזק\\n\\n58\\n00:04:47,400 --> 00:04:51,480 \\nאת השולטים המסורתיים.\\n\\n59\\n00:04:51,480 --> 00:04:55,080 \\nמורים אומרים לתלמידים שלהם לא להשתמש בוויקיפדיה\\n\\n60\\n00:04:55,720 --> 00:05:02,040 \\nכיוון ששימוש כזה מערער את התחושה ש\"אני המורה\\n\\n61\\n00:05:02,200 --> 00:05:06,120 \\nואני יודע בדיוק איזה חומרים אישרתי לשימוש\\n\\n62\\n00:05:06,120 --> 00:05:07,720 \\nואיזה ניתן לאשר.\"\\n\\n63\\n00:05:07,800 --> 00:05:13,160 \\nאני רגיל לראות ילדים פונים לסמכות\\n\\n64\\n00:05:13,200 --> 00:05:16,120 \\nבמקום להידרש לכמה מקורות.\\n\\n65\\n00:05:16,360 --> 00:05:20,280 \\nאני רוצה ללמד אותם שיראו את זה כמקור\\n\\n66\\n00:05:20,680 --> 00:05:24,400 \\nאבל לא כמקור של סמכות. מקור של תובנות,\\n\\n67\\n00:05:24,400 --> 00:05:28,920 \\nהתקדמות אפשרית בחקירה שכל הזמן מטילה ספק.\\n\\n68\\n00:05:29,000 --> 00:05:34,400 \\nמערכת מבוזרת מחייבת\\n\\n69\\n00:05:34,440 --> 00:05:38,480 \\nאת כולנו להפוך להיות כל הזמן קוראים ספקנות.\\n\\n70\\n00:05:38,480 --> 00:05:43,200 \\nוזה שינוי יסודי מהמערכת התרבותית המסורתית\\n\\n71\\n00:05:43,200 --> 00:05:46,840 \\nשבה היינו אומרים: \"איך אדע שזה נכון?\"\\n\\n72\\n00:05:46,840 --> 00:05:50,960 \\nומשיבים: \"תלוי מי אמר את זה ואיפה זה התפרסם!\" ומחפשים מקור של סמכות.\\n\\n73\\n00:05:51,000 --> 00:05:53,520 \\nשיאשר שזוהי אכן סמכות.\\n\\n74\\n00:05:53,880 --> 00:05:58,920 \\nבמקום זה עלי לפתח יכולות חדשות\\n\\n75\\n00:05:59,200 --> 00:06:04,720 \\nשל חיפוש בחמישה מקורות, הענקת רמות שונות של משקל לכל מקור\\n\\n76\\n00:06:04,720 --> 00:06:08,920 \\nואז יש לי בטחון סביר שהתשובה הנכונה\\n\\n77\\n00:06:08,920 --> 00:06:15,400 \\nהיא א\\' ולא ב\\', בלי שאעניק סמכות מלאה לאף אחד מהמקורות.\\n\\n78\\n00:06:15,400 --> 00:06:19,800 \\nזאת נקודה נוספת של שליטה, נסיון\\n\\n79\\n00:06:19,800 --> 00:06:24,720 \\nלגרום לאנשים שימשיכו לחשוב שהם זקוקים\\n\\n80\\n00:06:24,720 --> 00:06:29,080 \\nלסמכות של המומחה, לאדם אחראי\\n\\n81\\n00:06:29,080 --> 00:06:33,600 \\nשיגיד לך מה טוב ומה לא טוב, מה איכות גבוהה ומה איכות ירודה\\n\\n82\\n00:06:33,600 --> 00:06:38,280 \\nעל איזה מידע ראוי לסמוך ועל איזה מידע לא.\\n\\n83\\n00:06:38,280 --> 00:06:42,240 \\nוזה תחום אחר שבו ישנם בעלי שליטה,\\n\\n84\\n00:06:42,280 --> 00:06:49,200 \\nבהקשר הזה אני חושב שהם פחות מתוכננים\\n\\n85\\n00:06:49,200 --> 00:06:53,400 \\nמאשר בהקשר של הוליווד, שמנסה לנהל את הזכויות הדיגיטליות.\\n\\n86\\n00:06:53,560 --> 00:07:02,760 \\nאני חושב שגם זה סוג של נסיון לשימור עצמי.\\n\\n87\\n00:07:03,200 --> 00:07:08,080 \\nאבל זה מבטא גם אמונה עמוקה\\n\\n88\\n00:07:08,080 --> 00:07:12,520 \\nבכך שאנשים מסוימים שמחזיקים בתפקידים מסויימים\\n\\n89\\n00:07:12,520 --> 00:07:16,280 \\nהם הדוברים הסמכותיים של הסדר הישן\\n\\n90\\n00:07:16,280 --> 00:07:20,840 \\nוהם ממשיכים להחזיק בערכים שעשו אותם בעלי סמכות\\n\\n91\\n00:07:20,840 --> 00:07:25,120 \\nושהפכו את הסמכות שלהם לבעלת חשיבות. זוהי התנגדות תרבותית\\n\\n92\\n00:07:25,120 --> 00:07:31,600 \\nיותר משהיא מעשית או חוקית.\\n\\n93\\n00:07:31,680 --> 00:07:37,080 \\nאבל רואים גם התנגדות מצד משתתפים אחרים, שהיו בעלי תפקידי\\n\\n94\\n00:07:37,080 --> 00:07:42,800 \\nשליטה במודלים הישנים ומנסים לשמר\\n\\n95\\n00:07:42,800 --> 00:07:45,880 \\nאת יתרונם כשולטים\\n\\n96\\n00:07:45,920 --> 00:07:48,120 \\nבאמצעות מערכות שונות של הגבלה.\\n\\n97\\n00:07:48,120 --> 00:07:50,120\\nתרגמה מאנגלית: סימה שמעוני',\n", + " 'bytes': 10400,\n", + " 'sha1': 'hipxvcq0xayca72lm5iigxi21jm06a5',\n", + " 'parent_id': 97840030,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96779692,\n", + " 'timestamp': '2013-05-23T09:31:35Z',\n", + " 'user': {'text': '46.253.35.136'},\n", + " 'page': {'id': 26188833,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\nFotos panoràmiques de Pelješac. Fotos fetes entre 2009-2013\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nBandera amb vista cap a Orebić\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\nVista de la serralada des de la part superior de la península cap a l\\'est\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić des de Vižanica\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić des del nord-oest\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nVista de la península des del canal\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\nTerra estèril per sobre d\\'Orebić\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\nTerra estèril per sobre d\\'Orebić\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\n\"Kapetani\" i les illes de \"Bila ploča\" (\"panell blanc\")\\n\\n9\\n00:00:36,000 --> 00:00:39,800\\nOskorušno des de Viter\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda des de Viter\\n\\n11\\n00:00:44,000 --> 00:00:47,800\\n\"Kapetani\" des d\\'Occident\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nVinyes al sud\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj des de l\\'oest\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nBaixa Nakovana des de Gradina\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nKorčula des de Gradina\\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nA Supine sobre Mokalo\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić des de Mokalo\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomje i Pijavičino des de l\\'oest\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nMonestir a Podgorje des del nord-est\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nMonestir a Podgorje des del nord-oest\\n\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić des de Supine\\n\\n22\\n00:01:28,000 --> 00:01:31,800\\nMokalo i Postup des de Supino\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\nCresta de Pratnjice\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić des del nord\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić des del nord-oest\\n\\n26\\n00:01:44,000 --> 00:01:47,800\\nPujol de Žrnovnica\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić des del nord\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nVista d\\'Orebić entre 2 roques\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nPendents del sud-est de Vižanica\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\nBadia de Divna\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nPelješka Duba vista des del pic més alt de Pelješac\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nPics Barinski i Žrnovska Banja en segon pla\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\nVista des de la península cap a l\\'oest\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nGornja Vrućica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton i salines\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nDonja Vrućica del sud (rang Mokalo)\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nMonestir a Kuna Pelješka vist des del sud\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nVinyes abandonades vistes des de Vlaštica\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina des de l\\'oest\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRuskovići des del nord\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nPoble de Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nPoble de Lovište\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nVessants de Vlaštica\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\nCreu en el pic més gran de Pelješac',\n", + " 'bytes': 3021,\n", + " 'sha1': 'pvl3ivli1pjfkfkewasyys5xslff73d',\n", + " 'parent_id': 96567556,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96651920,\n", + " 'timestamp': '2013-05-21T10:36:29Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 26188886,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\nPelješac des photos panoramiques. Photos prises dans la période 2009-2013\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nBandiera en vue de Orebić\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\nvue sur la montagne depuis le sommet de la péninsule à l\\'est\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić à partir de Vižanica\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić du nord-ouest\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nPéninsule vu depuis le canal\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\nterre aride au-dessus de Orebić\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\nterre aride au-dessus de Orebić\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\n\"Kapetanje\" et les îles de \"Bila ploča\" (\"panneau blanc\")\\n\\n9\\n00:00:36,000 --> 00:00:39,800\\nOskorusno de Viterbi\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda de Viter\\n\\n11\\n00:00:44,000 --> 00:00:47,800\\n\"Kapetani\" de l\\'Occident\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nVignobles du Sud\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj de l\\'ouest\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nFaible Nakovana de Gradina\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nKorčula de Gradina\\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nAu-dessus Mokalo dos\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić à partir de Mokalo\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomje et Pijaviino de l\\'ouest\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nPodgorje monastère du nord-est\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nPodgorje monastère du nord-ouest\\n\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić à partir de Supine\\n\\n22\\n00:01:28,000 --> 00:01:31,800\\nMokalo et Postup de Supino\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\nPratnjice crête\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić du nord\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić du nord-ouest\\n\\n26\\n00:01:44,000 --> 00:01:47,800\\nColline Žrnovnica\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić du nord\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nVoir Orebić entre deux rochers\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nPentes Vižanica-sud-est\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\nBay Divna\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nDuba Pelješka plus haut pic vue de Pelješac\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nPics et Žrnovska Banja Barinski fond\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\nvoir à partir de la péninsule à l\\'ouest\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nGornja Vrućica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton et sel\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nDonja Vrućica sud (plage Mokalo)\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nMonastère dans Kuna Pelješka vue du sud\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nvignobles abandonnés vu de Vlastica\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina de l\\'ouest\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRuskovići du nord\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nvillage Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nvillage Lovište\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nPentes de Vlaštica\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\nCroix dans le plus grand pic de Pelješac',\n", + " 'bytes': 2927,\n", + " 'sha1': 'jl86f9czl3x17qn06pw25o2ksxi8140',\n", + " 'parent_id': 96567730,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 128786473,\n", + " 'timestamp': '2014-07-12T12:47:17Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 26189623,\n", + " 'title': 'What are the factors that generate poverty?-- TVP.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'McZusatz moved page [[TimedText:What are the factors that generate poverty]] to [[TimedText:What are the factors that generate poverty?-- TVP.webm.en.srt]]',\n", + " 'text': \"\\n1\\n00:00:04.330 --> 00:00:11.330\\nThe main factor of poverty is the poverty\\nexisting in people?s minds\\n\\n2\\n00:00:11.980 --> 00:00:18.980\\nor instance, a farmer with 10 acres land who\\nsays that he has no food for the next two\\n\\n3\\n00:00:26.029 --> 00:00:26.800\\nmonths.\\n\\n4\\n00:00:26.800 --> 00:00:31.539\\nPeople's mind sets will need to be changed.\\n\\n5\\n00:00:31.539 --> 00:00:38.539\\nSo long as people continue to feel dependency,\\nthey will not be able to develop.\\n\\n6\\n00:00:46.760 --> 00:00:53.760\\nWe will need to uproot the cause of poverty\\nby supporting people in exploring new ways\\n\\n7\\n00:01:00.790 --> 00:01:06.159\\nof improving their livelihoods.\\nWe need to revive small enterprises run by\\n\\n8\\n00:01:06.159 --> 00:01:10.530\\ncraftsmen that have been displaced by modern\\nproducts manufactured by bigger\\n\\n9\\n00:01:10.530 --> 00:01:17.530\\ncompanies, like clay tea cups that were made\\nby potters or ropes that are now replaced\\n\\n10\\n00:01:19.100 --> 00:01:24.510\\nby plastic ones made by bigger\\ncompanies.\\n\\n11\\n00:01:24.510 --> 00:01:31.510\\nf we want to remove poverty in the villages,\\nwe will have to revive small rural industries,\\n\\n12\\n00:01:49.960 --> 00:01:56.960\\npromote these products and motivate\\nthe villagers.\",\n", + " 'bytes': 1198,\n", + " 'sha1': 'bdk895jw46krptp8dmffq793yj2a8rz',\n", + " 'parent_id': 96571027,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96651793,\n", + " 'timestamp': '2013-05-21T10:33:19Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 26213468,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,000 --> 00:00:03,800 Panoramiczne zdjęcia półwyspie Peljesac. Malowane w latach 2009-2013 1 00:00:04,000 --> 00:00:07,800 Flag widokiem Orebić ...'\",\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\nPanoramiczne zdjęcia półwyspie Peljesac. Malowane w latach 2009-2013\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nFlag widokiem Orebić\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\npasmo górskie widziane z góry półwyspu na wschód\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić z Vižanice\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić od północnego zachodu\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nPeninsula patrząc od kanału\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\njałowej ziemi nad miastem\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\njałowej ziemi nad miastem\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\nCaptains i wyspy z panelem Bile\\n\\n9\\n00:00:36,000 --> 00:00:39,800\\nOskorušno z Viter\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda z Viter\\n\\n11.\\n00:00:44,000 --> 00:00:47,800\\n\"kapetani\" z Zachodu\\n\\n12.\\n00:00:48,000 --> 00:00:51,800\\nWinnice w południowej\\n\\n13.\\n00:00:52,000 --> 00:00:55,800\\nViganj z zachodu\\n\\n14.\\n00:00:56,000 --> 00:00:59,800\\nDolna Nakovana z Cytadeli\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nKorčula z ruin\\n\\n16.\\n00:01:04,000 --> 00:01:07,800\\nW pozycji leżącej powyżej Mokalo\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić z Mokalo\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomje i Pijavičino z zachodu\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nKlasztor w północno-wschodniej Podgorje\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nKlasztor w północno-zachodniej Podgorje\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić z Supina\\n\\n22.\\n00:01:28,000 --> 00:01:31,800\\nMokalo i uczta Supina\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\nPratnjice Gorge\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić od północy\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić od północnego zachodu\\n\\n26\\n00:01:44,000 --> 00:01:47,800\\npagórek Žrnovnica\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić od północy\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nZobacz Orebić między 2 Stine\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32.\\n00:02:08,000 --> 00:02:11,800\\nVižanica-południowy wschód stoki\\n\\n\\n33.\\n00:02:12,000 --> 00:02:15,800\\nDivna bay\\n\\n34.\\n00:02:16,000 --> 00:02:19,800\\nPelješka Duba oglądany ze szczytu wzgórza\\n\\n35.\\n00:02:20,000 --> 00:02:23,800\\nSzczyty Barinski i Žrnovska Banja tło\\n\\n36.\\n00:02:24,000 --> 00:02:27,800\\nWidok z półwyspu na zachód\\n\\n37.\\n00:02:28,000 --> 00:02:31,800\\nGórna Vrucica\\n\\n38.\\n00:02:32,000 --> 00:02:35,800\\nSton i baseny solankowe\\n\\n39.\\n00:02:36,000 --> 00:02:39,800\\nDolna gorączka z południa (Mokalo)\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nKlasztor w Kuni patrząc od południa\\n\\n41.\\n00:02:44,000 --> 00:02:47,800\\nzaniedbane winnice oglądali z uprawnieniami\\n\\n42.\\n00:02:48,000 --> 00:02:51,800\\nJanjina z zachodu\\n\\n43.\\n00:02:52,000 --> 00:02:55,800\\nRusković północ\\n\\n44.\\n00:02:56,000 --> 00:02:59,800\\nwieś Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nwieś Lovište\\n\\n46.\\n00:03:04,000 --> 00:03:07,800\\nstoki przywileje\\n\\n47.\\n00:03:08,000 --> 00:03:11,800\\nKrzyż na szczycie Pelješac',\n", + " 'bytes': 2903,\n", + " 'sha1': 'svl294bdj4dl67sfhu1vrqry8cp4yfi',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96679019,\n", + " 'timestamp': '2013-05-21T19:46:24Z',\n", + " 'user': {'text': '190.224.110.163'},\n", + " 'page': {'id': 26221489,\n", + " 'title': 'La Marseillaise.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\n¡Marchemos, hijos de la patria,\\n\\n2\\n00:00:04,000 --> 00:00:08,000\\nEl día de gloria ha llegado!\\n\\n3\\n00:00:08,000 --> 00:00:11,000\\nContra nosotros la tiranía,\\n\\n4\\n00:00:11,000 --> 00:00:20,000\\nEl estandarte sangriento se ha alzado,\\n\\n5\\n00:00:20,000 --> 00:00:24,000\\n¿Escucháis vosotros en las campiñas,\\n\\n6\\n00:00:24,000 --> 00:00:28,000\\nrugir a esos feroces soldados?\\n\\n7\\n00:00:28,000 --> 00:00:32,000\\nellos vienen hasta vuestros brazos,\\n\\n8\\n00:00:32,000 --> 00:00:37,000\\nA degollar a nuestros hijos y compañeras!\\n\\n9\\n00:00:37,000 --> 00:00:42,000\\n¡A las armas, ciudadanos!\\n\\n10\\n00:00:42,000 --> 00:00:45,000\\n¡Formad vuestros batallones!\\n\\n11\\n00:00:45,000 --> 00:00:49,000\\nMarchad, marchad,\\n\\n12\\n00:00:49,000 --> 00:00:53,000\\n¡Que una sangre impura\\n\\n13\\n00:00:53,000 --> 00:00:56,000\\nempape nuestro camino!\\n\\n14\\n00:00:57,000 --> 00:01:02,000\\n¡A las armas, ciudadanos!\\n\\n15\\n00:01:02,000 --> 00:01:06,000\\n¡Formad vuestros batallones!\\n\\n16\\n00:01:06,000 --> 00:01:10,000\\nMarchad, marchad,\\n\\n17\\n00:01:10,000 --> 00:01:14,000\\n¡Que una sangre impura\\n\\n18\\n00:01:14,000 --> 00:01:18,000\\nempape nuestro camino!',\n", + " 'bytes': 1126,\n", + " 'sha1': 'tkefl5qinuklcdntxuyt91wr3iqhq1d',\n", + " 'parent_id': 96678763,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96766375,\n", + " 'timestamp': '2013-05-23T01:42:29Z',\n", + " 'user': {'id': 2895512, 'text': 'Loteclat'},\n", + " 'page': {'id': 26249781,\n", + " 'title': 'Castle Entrance Piano 01.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with 'Castle Entrance Piano 01'\",\n", + " 'text': 'Castle Entrance Piano 01',\n", + " 'bytes': 24,\n", + " 'sha1': '2y9nnmkfnrl70v6svx9p87zjp2lt7vg',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96775077,\n", + " 'timestamp': '2013-05-23T07:44:06Z',\n", + " 'user': {'id': 2062180, 'text': 'Ramakrishnan.nikhil'},\n", + " 'page': {'id': 26252064,\n", + " 'title': 'Expedition 35 Welcome Ceremony.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,800 --> 00:00:05,003 [ Silence ] 2 00:00:05,003 --> 00:00:14,080 [ Helicopter Taking Off ] 3 00:00:20,518 --> 00:00:29,594 [ Outside Noise ] 4 00:...'\",\n", + " 'text': \"1\\n00:00:00,800 --> 00:00:05,003\\n[ Silence ]\\n\\n2\\n00:00:05,003 --> 00:00:14,080\\n[ Helicopter Taking Off ]\\n\\n3\\n00:00:20,518 --> 00:00:29,594\\n[ Outside Noise ]\\n\\n4\\n00:00:31,030 --> 00:00:40,106\\n[ Truck Idling ]\\n\\n5\\n00:01:00,493 --> 00:01:09,034\\n[ Background Conversations ]\\n\\n6\\n00:01:09,034 --> 00:01:10,136\\n>> I can see you're walking on your own.\\n\\n7\\n00:01:10,135 --> 00:01:11,269\\nVery nice.\\n\\n8\\n00:01:11,269 --> 00:01:12,837\\n[ Truck Idling and Background Conversations ]\\n\\n9\\n00:01:12,837 --> 00:01:14,506\\nHello.\\n\\n10\\n00:01:14,507 --> 00:01:23,582\\n[ Background Conversations ]\\n\\n11\\n00:01:25,016 --> 00:01:34,092\\n[ Sirens ]\\n\\n12\\n00:01:37,530 --> 00:01:46,605\\n[ Static Background ]\\n\\n13\\n00:01:49,040 --> 00:01:51,242\\n[ Background Conversations ]\\n\\n14\\n00:01:51,242 --> 00:01:55,381\\nWelcome to the land of Kazakhstan, and allow me\\n\\n15\\n00:01:55,381 --> 00:01:59,552\\nto present you with a little souvenir.\\n\\n16\\n00:01:59,552 --> 00:02:02,487\\nRoman has done this before, so he knows the routine.\\n\\n17\\n00:02:02,487 --> 00:02:09,027\\n[ Background Conversations ]\\n\\n18\\n00:02:09,027 --> 00:02:13,498\\nSo allow me to present you with our traditional coat.\\n\\n19\\n00:02:13,498 --> 00:02:22,040\\n[ Background Conversations ]\\n\\n20\\n00:02:22,040 --> 00:02:25,510\\nThe crew is into music, we've been told.\\n\\n21\\n00:02:25,510 --> 00:02:30,382\\n[ Background Conversations ]\\n\\n22\\n00:02:30,382 --> 00:02:31,349\\nOh thank you.\\n\\n23\\n00:02:31,349 --> 00:02:32,150\\nVery nice.\\n\\n24\\n00:02:32,151 --> 00:02:32,850\\n[ Foreign Language Spoken ]\\n\\n25\\n00:02:32,850 --> 00:02:39,425\\n>> You stay there Chris.\\n\\n26\\n00:02:39,425 --> 00:02:40,659\\n>> Yes or no.\\n\\n27\\n00:02:40,658 --> 00:02:42,026\\n[Foreign Language Spoken]\\n\\n28\\n00:02:42,026 --> 00:02:51,102\\n[ Background Conversations ]\\n\\n29\\n00:03:05,150 --> 00:03:13,759\\n>> The representatives from the Kursk Region made these for you,\\n\\n30\\n00:03:13,758 --> 00:03:20,765\\nand in honor of your return to earth.\\n\\n31\\n00:03:20,765 --> 00:03:24,135\\nSo this is for you, and good luck in the future.\\n\\n32\\n00:03:24,135 --> 00:03:26,305\\n[ Background Conversations ]\\n\\n33\\n00:03:26,305 --> 00:03:27,939\\nDoes it look like me?\\n\\n34\\n00:03:27,939 --> 00:03:29,875\\nYes. It looks exactly like you.\\n\\n35\\n00:03:29,875 --> 00:03:31,075\\n>> [Foreign Language Spoken]\\n\\n36\\n00:03:31,075 --> 00:03:35,013\\n>> You already have 7 million views on YouTube.\\n\\n37\\n00:03:35,014 --> 00:03:35,914\\n>> Okay.\\n\\n38\\n00:03:35,913 --> 00:03:36,714\\n>> That's a lot.\\n\\n39\\n00:03:36,715 --> 00:03:37,983\\n>> [Foreign Language Spoken]\\n\\n40\\n00:03:37,983 --> 00:03:43,989\\n>> And that's a good song.\\n\\n41\\n00:03:43,989 --> 00:03:47,526\\nI'm glad that other people appreciate it.\\n\\n42\\n00:03:47,526 --> 00:03:56,602\\n[ Background Conversations ]\\n\\n43\\n00:04:01,006 --> 00:04:06,544\\nIt's very important for humanity to be in space,\\n\\n44\\n00:04:06,544 --> 00:04:13,284\\nand it felt like music there, and it was a big part\\n\\n45\\n00:04:13,284 --> 00:04:17,322\\nof my life, and so I'm glad to know that I have millions\\n\\n46\\n00:04:17,322 --> 00:04:20,591\\nof viewa on YouTube, because it allows me\\n\\n47\\n00:04:20,591 --> 00:04:22,493\\nto share my experience.\\n\\n48\\n00:04:22,494 --> 00:04:30,135\\n[ Background Conversations ]\\n\\n49\\n00:04:30,134 --> 00:04:35,173\\nSometimes we have a spare minute or two,\\n\\n50\\n00:04:35,173 --> 00:04:43,147\\nand so I played instruments, especially my favorite songs.\\n\\n51\\n00:04:43,148 --> 00:04:48,721\\nThis was the last question, thank you very much.\\n\\n52\\n00:04:48,721 --> 00:04:52,458\\nWe are done with questions.\\n\\n53\\n00:04:52,458 --> 00:04:54,460\\nOne more please.\\n\\n54\\n00:04:54,459 --> 00:04:56,995\\nNo, that is sufficient.\\n\\n55\\n00:04:58,230 --> 00:05:00,232\\nWhat about the [inaudible] situation.\\n\\n56\\n00:05:00,232 --> 00:05:06,271\\nWas it difficult?\\n\\n57\\n00:05:06,271 --> 00:05:11,143\\nWe have a very good team,\\n\\n58\\n00:05:11,142 --> 00:05:17,482\\nand we worked well together resolving any issues\\n\\n59\\n00:05:17,483 --> 00:05:20,519\\nthat may arise, and I think we had a very good\\n\\n60\\n00:05:20,519 --> 00:05:22,788\\nsuccessful flight.\\n\\n61\\n00:05:22,788 --> 00:05:23,622\\nSmile.\\n\\n62\\n00:05:23,622 --> 00:05:24,723\\n>> [ Foreign Language Spoken ]\\n\\n63\\n00:05:24,723 --> 00:05:28,927\\n>> Thank you very much everyone.\\n\\n64\\n00:05:28,927 --> 00:05:31,096\\n>>Tom, first of all welcome back.\\n\\n65\\n00:05:31,096 --> 00:05:31,764\\n>> Thanks very much.\\n\\n66\\n00:05:31,764 --> 00:05:33,198\\nGood to be back.\\n\\n67\\n00:05:33,197 --> 00:05:34,599\\nSo I guess I'll start with his.\\n\\n68\\n00:05:34,600 --> 00:05:36,969\\nThe last couple of days on orbit were going to be kind of calm\\n\\n69\\n00:05:36,968 --> 00:05:38,704\\nwith you guys getting sort of packed up and ready\\n\\n70\\n00:05:38,704 --> 00:05:39,838\\nto come back to earth.\\n\\n71\\n00:05:39,838 --> 00:05:41,439\\nThat kind of changed a little bit, didn't it?\\n\\n72\\n00:05:41,439 --> 00:05:42,774\\n>> Oh yes.\\n\\n73\\n00:05:42,774 --> 00:05:46,477\\nWe were shocked the day before the space walk to wake up\\n\\n74\\n00:05:46,478 --> 00:05:49,747\\nand find out we're going to actually start cleaning\\n\\n75\\n00:05:49,747 --> 00:05:52,151\\nout the airlock and go all the way through execution\\n\\n76\\n00:05:52,151 --> 00:05:54,319\\nof a spacewalk in 48 hours.\\n\\n77\\n00:05:54,319 --> 00:05:57,556\\nAnd I don't know if that's ever been done before on station,\\n\\n78\\n00:05:57,555 --> 00:05:58,356\\nwith the station crew.\\n\\n79\\n00:05:58,357 --> 00:05:59,491\\nSo that was very exciting.\\n\\n80\\n00:05:59,490 --> 00:06:01,826\\n>> As always, I liked to actually have to get up\\n\\n81\\n00:06:01,826 --> 00:06:05,197\\nand do that, and you guys had trained for it, but what was it\\n\\n82\\n00:06:05,197 --> 00:06:06,264\\nlike to actually get up there\\n\\n83\\n00:06:06,264 --> 00:06:08,901\\nand actually do the spacewalk itself?\\n\\n84\\n00:06:08,901 --> 00:06:11,370\\n>> It was surprisingly relaxing.\\n\\n85\\n00:06:11,370 --> 00:06:13,372\\nThe ground had done such great preparation for us.\\n\\n86\\n00:06:13,372 --> 00:06:15,206\\nWe had a busy day the day before getting ready.\\n\\n87\\n00:06:15,206 --> 00:06:18,009\\nSo when we woke up, Chris Cassidy, and Chris Hadfield\\n\\n88\\n00:06:18,009 --> 00:06:21,447\\nand I, we just got to looked at each other and said, this is it.\\n\\n89\\n00:06:21,447 --> 00:06:22,848\\nThis is amazing.\\n\\n90\\n00:06:22,848 --> 00:06:27,052\\nI just went by the timeline, felt safe, didn't feel rushed.\\n\\n91\\n00:06:27,052 --> 00:06:30,222\\nA little bit tired, but it's very exciting.\\n\\n92\\n00:06:30,221 --> 00:06:32,356\\n>> So besides that, when you look back on your time\\n\\n93\\n00:06:32,357 --> 00:06:33,926\\non board the space station, what are you going\\n\\n94\\n00:06:33,925 --> 00:06:36,728\\nto remember the most about it?\\n\\n95\\n00:06:36,728 --> 00:06:37,663\\n>> Two things.\\n\\n96\\n00:06:37,663 --> 00:06:39,031\\nMy relationship with people.\\n\\n97\\n00:06:39,031 --> 00:06:41,165\\nNot just the crew, which is one of the biggest impressions,\\n\\n98\\n00:06:41,165 --> 00:06:43,235\\nbut the relationship with the people on the ground.\\n\\n99\\n00:06:43,235 --> 00:06:46,271\\nAll those voices from around the world almost become your crew\\n\\n100\\n00:06:46,271 --> 00:06:49,608\\nmates, even though there's no face necessarily associated\\n\\n101\\n00:06:49,608 --> 00:06:50,809\\nwith them.\\n\\n102\\n00:06:50,809 --> 00:06:53,612\\nBut you get the feeling of this huge team effort.\\n\\n103\\n00:06:53,612 --> 00:06:59,051\\nWe got a lot of experimental work done,\\n\\n104\\n00:06:59,050 --> 00:07:00,985\\nrefurbishing experiments and getting some data\\n\\n105\\n00:07:00,985 --> 00:07:04,021\\nfor the ground, and working together as a whole team,\\n\\n106\\n00:07:04,021 --> 00:07:05,324\\nincluding with everyone\\n\\n107\\n00:07:05,324 --> 00:07:07,091\\non the ground is what I'm going to remember the most.\\n\\n108\\n00:07:07,091 --> 00:07:08,293\\n>> So last question.\\n\\n109\\n00:07:08,293 --> 00:07:09,528\\nWhat are your thoughts and what was the experience\\n\\n110\\n00:07:09,528 --> 00:07:10,896\\nlike on board the Soyuz?\\n\\n111\\n00:07:10,896 --> 00:07:12,064\\nI guess a little bit different then the space shuttle was,\\n\\n112\\n00:07:12,064 --> 00:07:13,232\\nright?\\n\\n113\\n00:07:13,232 --> 00:07:15,801\\n>> Yes. Definitely exciting ride on the Soyuz.\\n\\n114\\n00:07:15,800 --> 00:07:17,902\\nI highly recommend it.\\n\\n115\\n00:07:17,903 --> 00:07:20,572\\nThe landing is completely different from the shuttle.\\n\\n116\\n00:07:20,572 --> 00:07:24,042\\nA lot of spinning and rocking.\\n\\n117\\n00:07:24,041 --> 00:07:25,009\\nJust exciting.\\n\\n118\\n00:07:25,009 --> 00:07:26,677\\nI don't know if the come was going,\\n\\n119\\n00:07:26,677 --> 00:07:29,514\\nbut we were just shouting out, woohoo most of the time\\n\\n120\\n00:07:29,514 --> 00:07:30,848\\nbecause it's so much fun.\\n\\n121\\n00:07:30,848 --> 00:07:33,185\\n>> Well welcome back, and we'll see you back in Houston.\\n\\n122\\n00:07:33,185 --> 00:07:33,886\\n>> Thanks Josh.\\n\\n123\\n00:07:33,886 --> 00:07:34,552\\nReally good to be back.\\n\\n124\\n00:07:34,552 --> 00:07:35,487\\nThanks.\\n\\n125\\n00:07:35,487 --> 00:07:41,493\\n[ Silence ]\",\n", + " 'bytes': 8777,\n", + " 'sha1': '80vgb3865fvelhck4o43157w65wqfoc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96789588,\n", + " 'timestamp': '2013-05-23T12:35:30Z',\n", + " 'user': {'id': 274, 'text': 'Kaganer'},\n", + " 'page': {'id': 26256941,\n", + " 'title': '¿Qué es Wikipedia?.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"\\ufeff1\\n00:00:04,250 --> 00:00:05,500\\nПривет!\\n\\n2\\n00:00:05,650 --> 00:00:07,500\\nМеня зовут Мариана и я хочу рассказть вам о Википедии.\\n\\n3\\n00:00:07,840 --> 00:00:09,500\\nУверена, что вы знаете про неё и пользуетесь ею,\\n\\n4\\n00:00:09,750 --> 00:00:12,000\\nно знаете ли вы, что она собой представляет? ...\\n\\n5\\n00:00:12,000 --> 00:00:13,000\\nИ как она создаётся?\\n\\n6\\n00:00:13,360 --> 00:00:16,050\\nХоть это и выглядит искажением идеи энциклопедии,\\n\\n7\\n00:00:16,300 --> 00:00:18,500\\nздесь преследуется та же цель, что и в традиционных энциклопедиях:\\n\\n8\\n00:00:18,750 --> 00:00:22,250\\n«Собрание всех человеческих знаний воедино на систематической основе».\\n\\n9\\n00:00:22,500 --> 00:00:25,800\\nОднако, у Википедии есть несколько важных отличий\\n\\n10\\n00:00:25,700 --> 00:00:27,750\\nот традиционных энциклопедий.\\n\\n11\\n00:00:27,610 --> 00:00:28,400\\nНапример,\\n\\n12\\n00:00:28,400 --> 00:00:31,250\\nона развивается благодаря тысячам добровольцев,\\n\\n13\\n00:00:31,500 --> 00:00:35,500\\nнацеленых на то, чтобы донести знания до каждого человека на планете,\\n\\n14\\n00:00:35,500 --> 00:00:36,600\\nи при этом — на его собственном языке.\\n\\n15\\n00:00:36,650 --> 00:00:37,840\\nКак это достигается?\\n\\n16\\n00:00:37,850 --> 00:00:41,500\\nКакими правилами руководствуются ''википедисты''?\\n\\n17\\n00:00:41,750 --> 00:00:43,800\\nОб этом мы сейчас и расскажем.\\n\\n18\\n00:00:49,000 --> 00:00:52,800\\nЛюбой может добавить или изменить содержание Википедии,\\n\\n19\\n00:00:52,900 --> 00:00:55,800\\nно с условием, что она по-прежнему остаётся энциклопедией.\\n\\n20\\n00:00:55,800 --> 00:00:59,455\\nТак что здесь не допускаются ни оригинальные исследования, ни эссе.\\n\\n21\\n00:00:59,455 --> 00:01:02,000\\nСтатьи должны отвечать всеобщим интересам,\\n\\n22\\n00:01:02,000 --> 00:01:05,200\\nи поэтому следует избегать незначимой информации.\\n\\n23\\n00:01:05,200 --> 00:01:06,950\\nЭто и есть первое правило,\\n\\n24\\n00:01:06,950 --> 00:01:08,500\\nили, как говорят ''википедисты'',\\n\\n25\\n00:01:08,500 --> 00:01:09,400\\n«первый столп»,\\n\\n26\\n00:01:09,400 --> 00:01:10,450\\nна котором основана Википедия.\\n\\n27\\n00:01:13,100 --> 00:01:15,600\\nЭту энциклопедию пишет множество добровольцев.\\n\\n28\\n00:01:15,600 --> 00:01:18,200\\nЛюди с различным жизненным опытом,\\n\\n29\\n00:01:18,200 --> 00:01:19,100\\nразных убеждений,\\n\\n30\\n00:01:19,100 --> 00:01:20,450\\nс разными идеями.\\n\\n31\\n00:01:20,900 --> 00:01:24,900\\nВикипедия не склоняется ни к какой частной точке зрения;\\n\\n32\\n00:01:25,150 --> 00:01:28,650\\nно пытается охватить информацию из всех возможных точек зрения.\\n\\n33\\n00:01:28,900 --> 00:01:31,250\\nЭто второй столп,\\n\\n34\\n00:01:31,250 --> 00:01:33,250\\nкоторый называется «нейтральной точкой зрения» (НТЗ).\\n\\n35\\n00:01:35,000 --> 00:01:38,000\\nТретий столп отражает тот факт, что Викиепедия состоит из свободных материалов.\\n\\n36\\n00:01:38,400 --> 00:01:41,100\\nЕё тексты доступны для использования, изменения и распространения в любых целях,\\n\\n37\\n00:01:41,350 --> 00:01:43,400\\nпри условии, что корректно указывается источник\\n\\n38\\n00:01:43,400 --> 00:01:46,100\\nи сохраняется та же самая лицензия «Creative Commons».\\n\\n39\\n00:01:46,350 --> 00:01:49,600\\nЛицензия изображений может быть иной,\\n\\n40\\n00:01:49,850 --> 00:01:52,600\\nно всегда допускающей копирование и повторное использование.\\n\\n41\\n00:01:53,300 --> 00:01:56,300\\nВ таких случаях, нужно прочитать условия каждой конкретной лицензии,\\n\\n42\\n00:01:56,300 --> 00:01:58,500\\nчтобы понять, какие права она предоставляет и какие обязанности налагает.\\n\\n43\\n00:02:01,500 --> 00:02:04,300\\nВзаимодействие такого количества людей может приводить к спорам.\\n\\n44\\n00:02:04,550 --> 00:02:08,650\\nСледовательно, четвертый столп заключается в том, что участники должны быть вежливы друг с другом,\\n\\n45\\n00:02:08,650 --> 00:02:10,200\\nи предполагать в других добрые намерения.\\n\\n46\\n00:02:10,200 --> 00:02:13,900\\nВ основе этого проекта — толерантность и вежливость.\\n\\n47\\n00:02:16,800 --> 00:02:19,500\\nВ Википедии нет чётких правил.\\n\\n48\\n00:02:19,750 --> 00:02:21,250\\nМожет показаться странным,\\n\\n49\\n00:02:20,800 --> 00:02:23,300\\nно на самом деле в этом состоит пятый столп этой энциклопедии.\\n\\n50\\n00:02:23,320 --> 00:02:27,000\\nЧтобы принять участие, от вас требуется только здравый смысл\\n\\n51\\n00:02:27,000 --> 00:02:30,200\\nи уважение к другим википедистам, участвующим в этом приключении.\\n\\n52\\n00:02:30,450 --> 00:02:32,500\\nЛюбой может добавить что-то своё.\\n\\n53\\n00:02:32,750 --> 00:02:34,750\\nНекоторые развивают весь комплекс статей,\\n\\n54\\n00:02:34,750 --> 00:02:37,300\\nтогда как другие делают мелкие исправления орфографических ошибок.\\n\\n55\\n00:02:37,300 --> 00:02:40,000\\nВы тоже можете помочь в создании, редактировании и исправлении статей.\\n\\n56\\n00:02:41,000 --> 00:02:42,000\\nВсе изменения обратимы,\\n\\n57\\n00:02:42,000 --> 00:02:46,250\\nпоэтому если вы сделаете что-то не то — всегда можно вернуться к предыдущей версии.\\n\\n58\\n00:02:46,300 --> 00:02:48,500\\nПравьте смело! Вы википедист!\",\n", + " 'bytes': 7033,\n", + " 'sha1': 'ij5ynkyp2yjfy0604839ahj51z5xwme',\n", + " 'parent_id': 96789434,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96973729,\n", + " 'timestamp': '2013-05-25T23:51:21Z',\n", + " 'user': {'id': 2829625, 'text': 'Fort123'},\n", + " 'page': {'id': 26268108,\n", + " 'title': 'Qc-peut-être.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,400\\npeut-être (accent québécois)',\n", + " 'bytes': 63,\n", + " 'sha1': 'c35hf1kajupgaklzj0gc43cgd670m91',\n", + " 'parent_id': 96827438,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96978400,\n", + " 'timestamp': '2013-05-26T01:47:50Z',\n", + " 'user': {'id': 2829625, 'text': 'Fort123'},\n", + " 'page': {'id': 26268268,\n", + " 'title': 'Qc-fête.oga.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,000\\nfête (accent québécois)',\n", + " 'bytes': 58,\n", + " 'sha1': '2g59x1ur4q7bh8jtl233rmr6bqkudz0',\n", + " 'parent_id': 96827552,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99949929,\n", + " 'timestamp': '2013-07-13T13:20:17Z',\n", + " 'user': {'text': '198.105.113.97'},\n", + " 'page': {'id': 26268307,\n", + " 'title': 'FRQC-tête.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Undo revision 99949923 by [[Special:Contributions/198.105.113.97|198.105.113.97]] ([[User talk:198.105.113.97|talk]])',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\ntête (accent québécois)',\n", + " 'bytes': 58,\n", + " 'sha1': '3z4vynszqno9snh0f2ei94p6m24zg8r',\n", + " 'parent_id': 99949923,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 692835209,\n", + " 'timestamp': '2022-09-29T01:44:27Z',\n", + " 'user': {'id': 11458406, 'text': 'HelpingWithGrammaly'},\n", + " 'page': {'id': 26268495,\n", + " 'title': 'Soviet Anthem Instrumental 1955.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'null, NaN, Unknown.',\n", + " 'text': '1\\n00:00:03,800 --> 00:00:10,300\\nUnbreakable Union of freeborn Republics\\n\\n2\\n00:00:10,300 --> 00:00:17,600\\nGreat Russia has welded forever to stand!\\n\\n3\\n00:00:17,600 --> 00:00:24,6\\nCreated in struggle by will of the Peoples,\\n\\n4\\n00:00:24,600 --> 00:00:31,800\\nUnited and Mighty, our Soviet Land!\\n\\n5\\n00:00:31,800 --> 00:00:45,500\\nSing to our Motherland, Free, and Undying,\\n\\n6\\n00:00:45,500 --> 00:00:52,222\\nFriendship of people is a reliable stronghold!\\n\\n7\\n00:00:52,222 --> 00:01:06,200\\nFlag of the Soviets, Flag of the people,\\n\\n8\\n00:01:06,111 --> 00:01:30,000\\nFrom Victory to Victory lead us on!',\n", + " 'bytes': 589,\n", + " 'sha1': 'oltievgcmylqqjufcq0jptrry77we5c',\n", + " 'parent_id': 692835072,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 193429056,\n", + " 'timestamp': '2016-04-16T13:26:52Z',\n", + " 'user': {'id': 277061, 'text': 'Mendaliv'},\n", + " 'page': {'id': 26271149,\n", + " 'title': 'ReaganBeginsBombingRussia.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'shift timing around a little',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:04,800\\nMy fellow Americans, I'm pleased to tell you today that I've signed legislation...\\n\\n2\\n00:00:05,000 --> 00:00:09,800\\n...that will outlaw Russia forever. We begin bombing in five minutes.\",\n", + " 'bytes': 217,\n", + " 'sha1': '42kbj4ummsnrs9gkvl6ahdec0wdszpl',\n", + " 'parent_id': 193428372,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97262563,\n", + " 'timestamp': '2013-05-30T00:33:51Z',\n", + " 'user': {'id': 2829625, 'text': 'Fort123'},\n", + " 'page': {'id': 26274794,\n", + " 'title': 'FR-Tard (Gaspésie).ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,999\\ntard (accent québécois)',\n", + " 'bytes': 57,\n", + " 'sha1': 'cj4xgs2ksrok0xcdgsca82bh4qja3t3',\n", + " 'parent_id': 96849003,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96867223,\n", + " 'timestamp': '2013-05-24T17:01:43Z',\n", + " 'user': {'text': '92.149.104.74'},\n", + " 'page': {'id': 26279959,\n", + " 'title': 'Fr-W-fr-Paris.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:99,999 W'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:99,999\\nW',\n", + " 'bytes': 33,\n", + " 'sha1': 'rs5dmnbyycgglaxofnjuflke50s4yp3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 630409789,\n", + " 'timestamp': '2022-02-17T15:49:58Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 26300886,\n", + " 'title': 'National Anthem of Russia (2000), instrumental, one verse.ogg.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments, new text division for better readability, added the version in the Latin script',\n", + " 'text': \"1\\n00:00:04,210 --> 00:00:10,703\\nРоссия – священная наша держава,\\nRossiya – svyashchennaya nasha derzhava,\\n\\n2\\n00:00:10,736 --> 00:00:17,278\\nРоссия – любимая наша страна.\\nRossiya – lyubimaya nasha strana.\\n\\n3\\n00:00:17,532 --> 00:00:24,195\\nМогучая воля, великая слава –\\nMoguchaya volya, velikaya slava –\\n\\n4\\n00:00:24,273 --> 00:00:30,777\\nТвоё достоянье на все времена!\\nTvoyo dostoyan'ye na vse vremena!\\n\\n5\\n00:00:31,481 --> 00:00:37,809\\nСлавься, Отечество\\nSlav'sya, Otechestvo\\n\\n6\\n00:00:38,522 --> 00:00:44,301\\nнаше свободное,\\nnashe svobodnoye,\\n\\n7\\n00:00:45,286 --> 00:00:51,536\\nБратских народов союз вековой,\\nBratskikh narodov soyuz vekovoy,\\n\\n8\\n00:00:52,196 --> 00:00:58,497\\nПредками данная\\nPredkami dannaya\\n\\n9\\n00:00:59,178 --> 00:01:05,533\\nмудрость народная!\\nmudrost' narodnaya!\\n\\n10\\n00:01:06,243 --> 00:01:08,746\\nСлавься, страна!\\nSlav'sya, strana!\\n\\n11\\n00:01:08,797 --> 00:01:16,199\\nМы гордимся тобой!\\nMy gordimsya toboy!\",\n", + " 'bytes': 1136,\n", + " 'sha1': '41z6xsf7vxj73jqdm2dwcu674wox3jt',\n", + " 'parent_id': 572557525,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 126991002,\n", + " 'timestamp': '2014-06-19T06:45:10Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 26320005,\n", + " 'title': '2012-06 Brandenburg an der Havel~Hohenstücken Betriebshof←Anton-Saefkow-Allee.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Rückwärtsfahrer moved page [[TimedText:2012-06 Brandenburg an der Havel Hohenstücken Betriebshof←Anton -Saefkow-Allee.ogv.de.srt]] to [[TimedText:2012-06 Brandenburg an der Havel~Hohenstücken Betriebshof←Anton-Saefkow-Allee.ogv.de.srt]]: Anpass...',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:17,800\\nHohenstücken Betriebshof\\n\\n2\\n00:01:32,280 --> 00:01:49,080\\nAm Silokanal\\n\\n3\\n00:02:21,000 --> 00:02:56,160\\nRotdornweg\\n\\n4\\n00:03:38,040 --> 00:04:02,360\\nGördenallee\\n\\n5\\n00:04:30,200 --> 00:04:47,480\\nGeranienweg\\n\\n6\\n00:05:07,560 --> 00:06:00,040\\nBahnhof Görden\\n\\n7\\n00:06:35,640 --> 00:07:21,480\\nWaldcafé Görden\\n\\n8\\n00:08:35,040 --> 00:09:00,800\\nAsklepios-Klinik\\n\\n9\\n00:09:40,520 --> 00:10:08,680\\nKaltenhausener Weg\\n\\n10\\n00:10:38,560 --> 00:10:50,080\\nAnton-Saefkow-Allee',\n", + " 'bytes': 494,\n", + " 'sha1': 'ats9c4fvrh88b3hzyp1ku7fibphswl1',\n", + " 'parent_id': 96994127,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97010628,\n", + " 'timestamp': '2013-05-26T13:26:00Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 26324739,\n", + " 'title': 'Brandenburg an der Havel~Anton-Saefkow-Allee←Hauptbahnhof←Magdeburger Straße % Oberlandesgericht.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:20,600 Anton-Saefkow-Allee 2 00:00:52,600 --> 00:00:59,800 Kaltenhausener Weg 3 00:01:41,960 --> 00:02:22,360 Asklepios-Klinik 4 00:...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:20,600\\nAnton-Saefkow-Allee\\n\\n2\\n00:00:52,600 --> 00:00:59,800\\nKaltenhausener Weg\\n\\n3\\n00:01:41,960 --> 00:02:22,360\\nAsklepios-Klinik\\n\\n4\\n00:03:42,200 --> 00:04:24,240\\nWaldcafé Görden\\n\\n5\\n00:04:58,080 --> 00:06:08,320\\nBahnhof Görden\\n\\n6\\n00:06:28,040 --> 00:06:50,920\\nGeranienweg\\n\\n7\\n00:07:18,960 --> 00:07:52,280\\nGördenallee\\n\\n8\\n00:08:37,880 --> 00:09:04,440\\nRotdornweg\\n\\n9\\n00:09:33,200 --> 00:10:00,760\\nAm Silokanal\\n\\n10\\n00:11:51,560 --> 00:12:20,720\\nAugust-Bebel-Straße\\n\\n11\\n00:13:23,000 --> 00:15:42,080\\nFontanestraße\\n\\n12\\n00:16:18,400 --> 00:16:42,720\\nKarl-Marx-Straße\\n\\n13\\n00:17:09,640 --> 00:18:00,960\\nFouquéstraße\\xa0/ Fachhochschule\\n\\n14\\n00:18:29,320 --> 00:18:53,000\\nMagdeburger Straße\\xa0/ Oberlandesgericht\\n\\n15\\n00:19:41,800 --> 00:20:27,760\\nNicolaiplatz\\n\\n16\\n00:20:49,960 --> 00:21:55,360\\nLuckenberger Straße\\n\\n17\\n00:22:23,560 --> 00:22:52,240\\nKanalstraße\\n\\n18\\n00:25:01,480 --> 00:25:25,480\\nJacobstraße\\n\\n19\\n00:25:49,480 --> 00:26:31,680\\nSteinstraße\\xa0/ Kino\\n\\n20\\n00:26:54,280 --> 00:28:50,640\\nNeustädtischer Markt\\n\\n21\\n00:29:22,640 --> 00:29:48,000\\nSt.-Annen-Straße\\n\\n22\\n00:30:31,560 --> 00:30:57,240\\nGeschwister-Scholl-Straße\\n\\n23\\n00:31:29,960 --> 00:35:53,920\\nHauptbahnhof\\n\\n24\\n00:36:18,280 --> 00:36:32,080\\nBlumenstraße\\n\\n25\\n00:36:57,960 --> 00:37:31,760\\nGroße Gartenstraße\\n\\n26\\n00:39:31,720 --> 00:39:58,440\\nKanalstraße\\n\\n27\\n00:40:32,680 --> 00:41:47,840\\nLuckenberger Straße\\n\\n28\\n00:42:09,800 --> 00:43:07,280\\nNicolaiplatz\\n\\n29\\n00:43:45,160 --> 00:43:48,720\\nMagdeburger Straße\\xa0/ Oberlandesgericht',\n", + " 'bytes': 1526,\n", + " 'sha1': 'j1m6m3ilvhnoab8ow35ubtm6n82trfv',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97014530,\n", + " 'timestamp': '2013-05-26T14:20:45Z',\n", + " 'user': {'text': '198.105.120.22'},\n", + " 'page': {'id': 26325754,\n", + " 'title': \"Qc-p't-être.ogg.fr.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:01,300 p’t-être (accent québécois)'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,300\\np’t-être (accent québécois)',\n", + " 'bytes': 64,\n", + " 'sha1': 't7tj6nkavwfgzd0sn6mumk9sslj9oc7',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97017775,\n", + " 'timestamp': '2013-05-26T14:57:26Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 26326439,\n", + " 'title': '2012-06 Brandenburg an der Havel~Magdeburger Straße % Oberlandesgericht←Hauptbahnhof←Hohenstücken Nord.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:07,360 Magdeburger Straße\\xa0/ Oberlandesgericht 2 00:00:52,800 --> 00:02:07,280 Nicolaiplatz 3 00:02:47,520 --> 00:03:15,920 Ritterst...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:07,360\\nMagdeburger Straße\\xa0/ Oberlandesgericht\\n\\n2\\n00:00:52,800 --> 00:02:07,280\\nNicolaiplatz\\n\\n3\\n00:02:47,520 --> 00:03:15,920\\nRitterstraße\\xa0/ Museum\\n\\n4\\n00:03:56,640 --> 00:04:24,360\\nJahrtausendbrücke\\n\\n5\\n00:04:46,520 --> 00:05:20,520\\nHauptstraße\\n\\n6\\n00:05:50,120 --> 00:07:15,560\\nNeustädtischer Markt\\n\\n7\\n00:07:36,480 --> 00:08:12,920\\nSteinstraße\\xa0/ Kino\\n\\n8\\n00:08:32,400 --> 00:09:06,400\\nJacobstraße\\n\\n9\\n00:09:19,880 --> 00:09:48,880\\nGroße Gartenstraße\\n\\n10\\n00:10:24,960 --> 00:10:48,200\\nBlumenstraße\\n\\n11\\n00:11:21,040 --> 00:13:57,040\\nHauptbahnhof\\n\\n12\\n00:14:18,160 --> 00:14:33,280\\nGeschwister-Scholl-Straße\\n\\n13\\n00:15:15,800 --> 00:15:50,920\\nSt.-Annen-Straße\\n\\n14\\n00:16:17,400 --> 00:17:21,120\\nNeustädtischer Markt\\n\\n15\\n00:17:47,720 --> 00:18:25,840\\nHauptstraße\\n\\n16\\n00:18:51,840 --> 00:19:08,000\\nJahrtausendbrücke\\n\\n17\\n00:19:47,520 --> 00:20:15,840\\nRitterstraße\\xa0/ Museum\\n\\n18\\n00:20:45,360 --> 00:21:34,960\\nNicolaiplatz\\n\\n19\\n00:22:04,320 --> 00:22:19,320\\nMagdeburger Straße\\xa0/ Oberlandesgericht\\n\\n20\\n00:22:56,160 --> 00:23:35,400\\nFouquéstraße\\xa0/ Fachhochschule\\n\\n21\\n00:23:58,280 --> 00:24:28,880\\nKarl-Marx-Straße\\n\\n22\\n00:24:59,440 --> 00:25:39,000\\nFontanestraße\\n\\n23\\n00:26:28,080 --> 00:26:47,040\\nAugust-Bebel-Straße\\n\\n24\\n00:27:42,840 --> 00:28:40,880\\nHohenstücken Betriebshof\\n\\n25\\n00:29:21,400 --> 00:30:05,680\\nWillibald-Alexis-Straße\\n\\n26\\n00:30:44,480 --> 00:31:16,480\\nRosa-Luxemburg-Allee\\n\\n27\\n00:31:48,160 --> 00:32:27,320\\nTschirchdamm\\n\\n28\\n00:33:01,880 --> 00:33:08,800\\nHohenstücken Nord',\n", + " 'bytes': 1523,\n", + " 'sha1': 'bdlm20i5e0ari4zopc2hz7uyzt87x4l',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97022504,\n", + " 'timestamp': '2013-05-26T15:41:20Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 26327341,\n", + " 'title': '2012-06 Brandenburg an der Havel~Hohenstücken Nord←Nicolaiplatz.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:17,120 Hohenstücken Nord 2 00:00:57,800 --> 00:01:30,240 Tschirchdamm 3 00:02:06,480 --> 00:02:37,720 Rosa-Luxemburg-Allee 4 00:03:...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:17,120\\nHohenstücken Nord\\n\\n2\\n00:00:57,800 --> 00:01:30,240\\nTschirchdamm\\n\\n3\\n00:02:06,480 --> 00:02:37,720\\nRosa-Luxemburg-Allee\\n\\n4\\n00:03:11,240 --> 00:03:50,280\\nWillibald-Alexis-Straße\\n\\n5\\n00:04:34,160 --> 00:05:34,320\\nHohenstücken Betriebshof\\n\\n6\\n00:06:20,680 --> 00:06:42,360\\nAugust-Bebel-Straße\\n\\n7\\n00:07:39,800 --> 00:08:14,480\\nFontanestraße\\n\\n8\\n00:08:58,040 --> 00:09:25,880\\nKarl-Marx-Straße\\n\\n9\\n00:09:52,320 --> 00:10:48,120\\nFouquéstraße\\xa0/ Fachhochschule\\n\\n10\\n00:11:16,320 --> 00:11:43,000\\nMagdeburger Straße\\xa0/ Oberlandesgericht\\n\\n11\\n00:12:19,680 --> 00:12:31,320\\nNicolaiplatz',\n", + " 'bytes': 608,\n", + " 'sha1': 'arn52vjans1hjnu6qz7xua72hzixkvl',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97024237,\n", + " 'timestamp': '2013-05-26T16:08:51Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 26328015,\n", + " 'title': '2012-06 Brandenburg an der Havel~Magdeburger Straße % Oberlandesgericht←Rotdornweg.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:18,640 Magdeburger Straße\\xa0/ Oberlandesgericht 2 00:00:47,520 --> 00:01:23,600 Fouquéstraße\\xa0/ Fachhochschule 3 00:01:47,440 --> 0...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:18,640\\nMagdeburger Straße\\xa0/ Oberlandesgericht\\n\\n2\\n00:00:47,520 --> 00:01:23,600\\nFouquéstraße\\xa0/ Fachhochschule\\n\\n3\\n00:01:47,440 --> 00:02:16,120\\nKarl-Marx-Straße\\n\\n4\\n00:02:48,680 --> 00:04:40,880\\nFontanestraße\\n\\n5\\n00:05:31,360 --> 00:06:00,760\\nAugust-Bebel-Straße\\n\\n6\\n00:07:40,840 --> 00:08:09,840\\nAm Silokanal\\n\\n7\\n00:08:43,440 --> 00:08:49,080\\nRotdornweg',\n", + " 'bytes': 381,\n", + " 'sha1': 'jh328nsjtr8mlha7xw01bpbuis969wc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97038255,\n", + " 'timestamp': '2013-05-26T19:58:19Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 26332349,\n", + " 'title': '2012-06 Brandenburg an der Havel~Geranienweg←Hohenstücken Betriebshof.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:06,520 Geranienweg 2 00:00:35,160 --> 00:00:53,600 Gördenallee 3 00:01:40,720 --> 00:01:59,440 Rotdornweg 4 00:02:28,560 --> 00:02:...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,520\\nGeranienweg\\n\\n2\\n00:00:35,160 --> 00:00:53,600\\nGördenallee\\n\\n3\\n00:01:40,720 --> 00:01:59,440\\nRotdornweg\\n\\n4\\n00:02:28,560 --> 00:02:47,560\\nAm Silokanal\\n\\n5\\n00:04:16,880 --> 00:04:23,320\\nHohenstücken Betriebshof',\n", + " 'bytes': 238,\n", + " 'sha1': 'cexrww1g05ydqrpb2mxapcl336vs3e3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 126990742,\n", + " 'timestamp': '2014-06-19T06:35:24Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 26335042,\n", + " 'title': '2012-06 Brandenburg an der Havel~Ritterstraße Museum←Hauptbahnhof←Quenzbrücke←Hauptstraße.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Rückwärtsfahrer moved page [[TimedText:Brandenburg an der Havel~Ritterstraße Museum←Hauptbahnhof←Quenzbrücke←Hauptstraße.ogv.de.srt]] to [[TimedText:2012-06 Brandenburg an der Havel~Ritterstraße Museum←Hauptbahnhof←Quenzbrücke←Haupts...',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:07,160\\nRitterstraße\\xa0/ Museum\\n\\n2\\n00:00:49,920 --> 00:01:23,760\\nJahrtausendbrücke\\n\\n3\\n00:01:52,880 --> 00:02:27,160\\nHauptstraße\\n\\n4\\n00:02:58,920 --> 00:03:53,160\\nNeustädtischer Markt\\n\\n5\\n00:04:39,560 --> 00:05:10,720\\nSt.-Annen-Straße\\n\\n6\\n00:05:56,520 --> 00:06:24,120\\nGeschwister-Scholl-Straße\\n\\n7\\n00:06:49,880 --> 00:08:32,240\\nHauptbahnhof\\n\\n8\\n00:08:55,200 --> 00:09:26,560\\nBlumenstraße\\n\\n9\\n00:09:53,400 --> 00:10:27,040\\nGroße Gartenstraße\\n\\n10\\n00:10:45,600 --> 00:11:17,360\\nJacobstraße\\n\\n11\\n00:11:48,000 --> 00:12:35,120\\nSteinstraße\\xa0/ Kino\\n\\n12\\n00:13:02,400 --> 00:14:08,200\\nNeustädtischer Markt\\n\\n13\\n00:14:39,320 --> 00:15:15,840\\nHauptstraße\\n\\n14\\n00:15:46,080 --> 00:16:03,160\\nJahrtausendbrücke\\n\\n15\\n00:16:52,800 --> 00:17:26,680\\nRitterstraße\\xa0/ Museum\\n\\n16\\n00:17:59,920 --> 00:18:59,120\\nNicolaiplatz\\n\\n17\\n00:19:30,720 --> 00:19:54,800\\nMagdeburger Straße\\xa0/ Oberlandesgericht\\n\\n18\\n00:20:24,480 --> 00:21:16,640\\nFouquéstraße\\xa0/ Fachhochschule\\n\\n19\\n00:21:56,960 --> 00:22:43,800\\nBahnhof Altstadt\\n\\n20\\n00:23:16,320 --> 00:23:56,440\\nDreifertstraße\\n\\n21\\n00:24:37,440 --> 00:25:09,360\\nSüdtor\\n\\n22\\n00:25:37,440 --> 00:26:10,280\\nFrankenstraße\\n\\n23\\n00:26:31,200 --> 00:26:59,200\\nHessenweg\\n\\n24\\n00:27:20,480 --> 00:27:51,280\\nAm Stadion\\xa0/ Industriemuseum\\n\\n25\\n00:28:02,680 --> 00:29:30,960\\nQuenzbrücke\\n\\n26\\n00:29:46,560 --> 00:30:30,280\\nAm Stadion\\xa0/ Industriemuseum\\n\\n27\\n00:30:54,040 --> 00:31:25,880\\nHessenweg\\n\\n28\\n00:31:49,920 --> 00:32:21,800\\nFrankenstraße\\n\\n29\\n00:32:45,400 --> 00:33:17,840\\nSüdtor\\n\\n30\\n00:33:59,400 --> 00:34:38,160\\nDreifertstraße\\n\\n31\\n00:35:11,400 --> 00:35:42,440\\nBahnhof Altstadt\\n\\n32\\n00:36:23,520 --> 00:37:10,160\\nFouquéstraße\\xa0/ Fachhochschule\\n\\n33\\n00:37:59,520 --> 00:38:22,600\\nMagdeburger Straße\\xa0/ Oberlandesgericht\\n\\n34\\n00:39:24,000 --> 00:40:40,760\\nNicolaiplatz\\n\\n35\\n00:41:14,400 --> 00:41:50,800\\nRitterstraße\\xa0/ Museum\\n\\n36\\n00:42:29,280 --> 00:42:58,200\\nJahrtausendbrücke\\n\\n37\\n00:43:24,600 --> 00:43:27,920\\nHauptstraße',\n", + " 'bytes': 1965,\n", + " 'sha1': '6aev1vzw6243knl1zhh1k4z7om0i7l0',\n", + " 'parent_id': 126990670,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 525638652,\n", + " 'timestamp': '2021-01-12T23:26:21Z',\n", + " 'user': {'id': 5617889, 'text': 'Sabelöga'},\n", + " 'page': {'id': 26346604,\n", + " 'title': '¿Qué es Wikipedia?.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\ufeff1\\n00:00:04,250 --> 00:00:05,500\\nHej!\\n\\n2\\n00:00:05,650 --> 00:00:07,500\\nJag heter Mariana, och jag ska berätta om Wikipedia.\\n\\n3\\n00:00:07,840 --> 00:00:09,500\\nJag är säker på att du känner till och använder Wikipedia -\\n\\n4\\n00:00:09,750 --> 00:00:12,000\\n- men vet du verkligen hur det fungerar?\\n\\n5\\n00:00:12,000 --> 00:00:13,000\\nOch hur det är uppbyggt?\\n\\n6\\n00:00:13,360 --> 00:00:16,050\\nTrots att det ser ut som ett väldigt besynnerligt uppslagsverk,\\n\\n7\\n00:00:16,300 --> 00:00:18,500\\neftersträvar det samma mål som traditionella uppslagsverk:\\n\\n8\\n00:00:18,750 --> 00:00:22,250\\n\"Förena all mänsklig kunskap på ett systematiskt sätt\".\\n\\n9\\n00:00:22,500 --> 00:00:25,800\\nWikipedia har dock några viktiga skillnader\\n\\n10\\n00:00:25,700 --> 00:00:27,650\\ngentemot traditionella uppslagsverk.\\n\\n11\\n00:00:27,650 --> 00:00:28,400\\nTill exempel,\\n\\n12\\n00:00:28,400 --> 00:00:31,250\\ndet är utvecklat av tusentals frivilliga\\n\\n13\\n00:00:31,500 --> 00:00:35,500\\nmed målet att skänka kunskap till varenda person på planeten,\\n\\n14\\n00:00:35,500 --> 00:00:36,600\\npå deras eget språk.\\n\\n15\\n00:00:36,650 --> 00:00:37,840\\nHur uppnås detta?\\n\\n16\\n00:00:37,850 --> 00:00:41,500\\nVilka är reglerna som organiserar och vägleder \"wikipedianer\"?\\n\\n17\\n00:00:41,750 --> 00:00:43,800\\nDet är ämnet för den här videon.\\n\\n18\\n00:00:49,000 --> 00:00:52,800\\nVemsomhelst kan lägga till eller korrigera innehåll,\\n\\n19\\n00:00:52,900 --> 00:00:55,800\\nmen man måste föstå att det fortfarande är ett uppslagsverk.\\n\\n20\\n00:00:55,800 --> 00:00:59,455\\nSå varken originalforskning eller uppsatser accepteras här.\\n\\n21\\n00:00:59,455 --> 00:01:02,000\\nArtiklarna ska förmedla allmänintresse,\\n\\n22\\n00:01:02,000 --> 00:01:05,200\\noch kortlivad information bör undvikas.\\n\\n23\\n00:01:05,200 --> 00:01:06,950\\nDet är den första regeln,\\n\\n24\\n00:01:06,950 --> 00:01:08,500\\neller som \"wikipedianer\" kallar den:\\n\\n25\\n00:01:08,500 --> 00:01:09,400\\nDen första pelaren\\n\\n26\\n00:01:09,400 --> 00:01:12,000\\ngenom vilken detta uppslagsverk fungerar.\\n\\n27\\n00:01:13,100 --> 00:01:15,600\\nEtt antal frivilliga skriver detta uppslagsverk.\\n\\n28\\n00:01:15,600 --> 00:01:18,200\\nMänniskor med olika bakgrund,\\n\\n29\\n00:01:18,200 --> 00:01:19,100\\nolika tro,\\n\\n30\\n00:01:19,100 --> 00:01:20,450\\nolika idéer.\\n\\n31\\n00:01:20,900 --> 00:01:24,900\\nWikipedia ska inte ta ställning;\\n\\n32\\n00:01:25,150 --> 00:01:28,650\\nmen ska försöka innehålla information från alla möjliga synvinklar.\\n\\n33\\n00:01:28,900 --> 00:01:31,250\\nDet är därför den andra pelaren\\n\\n34\\n00:01:31,250 --> 00:01:33,250\\nkallas: Neutral synvinkel\\n\\n35\\n00:01:35,000 --> 00:01:38,000\\nDen tredje pelaren handlar om att Wikipedias innehåll är fritt.\\n\\n36\\n00:01:38,400 --> 00:01:41,100\\nTexterna får användas, ändras, och spridas oavsett syfte,\\n\\n37\\n00:01:41,350 --> 00:01:43,400\\nså länge som källan är korrekt angiven\\n\\n38\\n00:01:43,400 --> 00:01:46,100\\noch samma \"Creative Commons\"-licens behålls.\\n\\n39\\n00:01:46,350 --> 00:01:49,600\\nLicenserna kan variera på bilderna,\\n\\n40\\n00:01:49,850 --> 00:01:52,600\\nmen kopiering och återanvändning är alltid tillåten.\\n\\n41\\n00:01:53,300 --> 00:01:56,300\\nI dessa fall måste varje enskild licens läsas\\n\\n42\\n00:01:56,300 --> 00:01:58,500\\nför att man ska kunna förstå vilka skyldig- och rättigheter som gäller.\\n\\n43\\n00:02:01,500 --> 00:02:04,300\\nAtt så många människor interagerar kan skapa konflikter.\\n\\n44\\n00:02:04,550 --> 00:02:08,650\\nDärav den fjärde pelaren, som säger att användare ska vara respektfulla mot varandra,\\n\\n45\\n00:02:08,650 --> 00:02:10,200\\noch förutsätta goda avsikter.\\n\\n46\\n00:02:10,200 --> 00:02:13,900\\nTolerans och artighet är fundamentala för projektet.\\n\\n47\\n00:02:16,800 --> 00:02:19,500\\nWikipedia har inga strikta regler.\\n\\n48\\n00:02:19,750 --> 00:02:21,050\\nDet kan tyckas märkligt,\\n\\n49\\n00:02:21,050 --> 00:02:23,300\\nmen det är faktiskt uppslagsverkets femte pelare.\\n\\n50\\n00:02:23,320 --> 00:02:27,000\\nDet enda som krävs för att du ska kunna delta är sunt förnuft\\n\\n51\\n00:02:27,000 --> 00:02:30,200\\noch respekt för andra wikipedianer ombord på detta äventyr.\\n\\n52\\n00:02:30,450 --> 00:02:32,500\\nVemsomhelst kan bidraga med något.\\n\\n53\\n00:02:32,750 --> 00:02:34,750\\nEn del utvecklar långa, komplexa artiklar\\n\\n54\\n00:02:34,750 --> 00:02:37,300\\nmedan andra rättar små stavfel.\\n\\n55\\n00:02:37,300 --> 00:02:40,000\\nDu kan också hjälpa till genom att skapa, redigera och rätta artiklar.\\n\\n56\\n00:02:41,000 --> 00:02:42,000\\nRedigeringar går att ångra,\\n\\n57\\n00:02:42,000 --> 00:02:46,250\\nså om något blir fel kan man alltid gå tillbaka till en tidigare version.\\n\\n58\\n00:02:46,300 --> 00:02:48,500\\nVar järv! Var wikipedian!',\n", + " 'bytes': 4587,\n", + " 'sha1': '35nsn1t1zz77y3b5owz4mavos8y8fzk',\n", + " 'parent_id': 525637903,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101564124,\n", + " 'timestamp': '2013-08-09T11:50:54Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26346791,\n", + " 'title': \"Amandine Bourgeois - L'enfer et moi presentation (Français).ogv.sv.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,230 --> 00:00:01,000\\nHej!\\n\\n2\\n00:00:01,000 --> 00:00:03,000\\nJag heter Amandine Bourgeois.\\n\\n3\\n00:00:03,001 --> 00:00:05,492\\nMin låt \"L\\'enfer et moi\" tävlar i\\n\\n4\\n00:00:05,492 --> 00:00:09,138\\nEurovision Song Contest i Malmö 2013.',\n", + " 'bytes': 240,\n", + " 'sha1': 'fxtk26wqv1a06wmuy05ywshtex87i49',\n", + " 'parent_id': 101564021,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101589766,\n", + " 'timestamp': '2013-08-09T21:33:24Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26347144,\n", + " 'title': 'Loreen presenting herself in Swedish.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:03,295\\nJag heter Loreen, och jag vann med -\\n\\n2\\n00:00:03,295 --> 00:00:05,725\\n- världens bästa låt,\\n<i>Euphoria</i>.',\n", + " 'bytes': 143,\n", + " 'sha1': 'n0nplsma89brp55opr9w2od99mtakkc',\n", + " 'parent_id': 97890675,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 125271077,\n", + " 'timestamp': '2014-05-30T09:44:23Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 26366995,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.eu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\nPelješacen argazki panoramikoak. 2009-2013 aldian egindako argazkiak\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nBandera, atzean Orebić herria duela\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\nMendilerroa penintsula burutik ekialdera ikusita\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić Vižanicatik \\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić ipar-mendebaldetik ikusita \\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nPenintsula kanaletik ikusita\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\nOrebić gainetik lur antzu\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\nLur harritsua Orebićetik gora\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\n\"Kapetani\" eta uharteak \"Bila ploča\"tik (\\'lauza zuria\\') \\n\\n9\\n00:00:36,000 --> 00:00:39,800\\nOskorušno Viter-etik \\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda Viter-etik \\n\\n11\\n00:00:44,000 --> 00:00:47,800\\n\"Kapetani\" mendebaldetik\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nHegoaldeko mahastiak\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj mendebaldetik ikusita\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nNakovana Barrena Kastrotik \\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nKorčula Kastrotik ikusita \\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nSupine Mokalotik gora\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić Mokalotik ikusita \\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomje eta Pijavičino mendebaldetik ikusita\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nPodgorjeko monasterioa ipar-ekialdetik ikusita\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nPodgorjeko monasterioa ipar-mendebaldetik ikusita\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić Supinetik ikusita \\n\\n22\\n00:01:28,000 --> 00:01:31,800\\nMokalo eta Postup Supinetik ikusita\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\nPratnjice mendigunea\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić iparraldetik ikusita \\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić ipar-mendebaldetik ikusita \\n\\n26\\n00:01:44,000 --> 00:01:47,800\\nŽrnovnica muinoa\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić iparraldetik ikusita\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nOrebić bi harkaitz artetik ikusita\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nVižanica, hego-ekialdeko hegala\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\nDivnako Badia\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nPelješka Duba Pelješacen gailurretik ikusita\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nBarinski gailurrak eta Žrnovska Banja atzealdean\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\nPenintsularen ikuspegia mendebaldera\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nGornja Vrućica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton, ondoan gatzaga duela\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nDonja Vrućica hegoaldetik, Mokalo mendilerrotik ikusita\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nKuna Pelješkako monasterioa hegoaldetik ikusita\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nUtzitako mahastiak Vlaštica ikusita\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina mendebaldetik ikusita\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRuskovići iparraldetik ikusita \\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nLovište iparraldetik ikusita\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nLovište herria\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nVlašticaren maldak\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\nPelješacen gailurreko gurutzea',\n", + " 'bytes': 3131,\n", + " 'sha1': '4un9q3p0bdvj7x3zwfa7bqrqpykpxos',\n", + " 'parent_id': 123807618,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 182400700,\n", + " 'timestamp': '2015-12-21T01:51:20Z',\n", + " 'user': {'id': 1128209, 'text': 'Didym'},\n", + " 'page': {'id': 26370027,\n", + " 'title': 'Leipzig.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/195.41.180.129|195.41.180.129]] ([[User talk:195.41.180.129|talk]]) to last revision by 195.240.116.54',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,400\\nLeipzig',\n", + " 'bytes': 39,\n", + " 'sha1': 'pdfy3xh0bhqo852lf4637d37bmnf5wx',\n", + " 'parent_id': 180091368,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101584989,\n", + " 'timestamp': '2013-08-09T20:02:51Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26421368,\n", + " 'title': 'Eyþór Ingi - Ég á líf presentation (Íslenska).ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,128 --> 00:00:00,669\\nHallå!\\n\\n2\\n00:00:00,669 --> 00:00:02,847\\nJag heter Eyþór, och...\\n\\n3\\n00:00:02,847 --> 00:00:05,369\\nLåten heter \"Ég á líf\".',\n", + " 'bytes': 159,\n", + " 'sha1': 'lsa3ne2bh9eywzos7ugal2ia5fi0uvn',\n", + " 'parent_id': 101514418,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101585089,\n", + " 'timestamp': '2013-08-09T20:04:45Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26421429,\n", + " 'title': 'Eyþór Ingi - Ég á líf presentation (Íslenska).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,128 --> 00:00:00,669\\nHello!\\n\\n2\\n00:00:00,669 --> 00:00:02,847\\nMy name is Eyþór, and...\\n\\n3\\n00:00:02,847 --> 00:00:05,369\\nThe name of the song is \"Ég á líf\".',\n", + " 'bytes': 170,\n", + " 'sha1': '5r9bsm2xyh04qx471s9btf3dspdhhq4',\n", + " 'parent_id': 101514521,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101588683,\n", + " 'timestamp': '2013-08-09T21:13:34Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26421465,\n", + " 'title': 'Robin Stjernberg - You presentation (svenska).ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,259 --> 00:00:01,096\\nHej allihopa!\\n\\n2\\n00:00:01,096 --> 00:00:02,116\\nRobin Stjernberg heter jag -\\n\\n3\\n00:00:02,116 --> 00:00:07,792\\n- och jag representerar Sverige i Eurovision Song Contest 2013, med min låt som heter \"You\".',\n", + " 'bytes': 234,\n", + " 'sha1': '5u2smst8k0pdlsylbfnafuqxm0if2vg',\n", + " 'parent_id': 97351826,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101588788,\n", + " 'timestamp': '2013-08-09T21:15:37Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26421554,\n", + " 'title': 'Robin Stjernberg - You presentation (svenska).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,259 --> 00:00:01,096\\nHi everybody!\\n\\n2\\n00:00:01,096 --> 00:00:02,116\\nMy name is Robin Stjernberg -\\n\\n3\\n00:00:02,116 --> 00:00:07,792\\n- and I represent Sweden in the Eurovision Song Contest 2013, with my song, titled \"You\".',\n", + " 'bytes': 231,\n", + " 'sha1': 'b1iohyiq2bnuzm43oakjcfybwy6poco',\n", + " 'parent_id': 97351864,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101589974,\n", + " 'timestamp': '2013-08-09T21:36:08Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26422205,\n", + " 'title': 'Loreen presenting herself in Swedish.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:03,295\\nMy name is Loreen, and I won with...\\n\\n2\\n00:00:03,295 --> 00:00:05,725\\n...the best song in the world:\\n<i>Euphoria</i>.',\n", + " 'bytes': 149,\n", + " 'sha1': '45wdtdxrhpm7e1gjm7wh7az16r58ucw',\n", + " 'parent_id': 97890823,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101585621,\n", + " 'timestamp': '2013-08-09T20:13:26Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26437026,\n", + " 'title': 'El Sueño de Morfeo - Contigo hasta el final presentation (Español).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,182 --> 00:00:01,566\\nHi, I\\'m David.\\n\\n2\\n00:00:01,566 --> 00:00:02,619\\nHello, I\\'m Juan.\\n\\n3\\n00:00:02,619 --> 00:00:05,257\\nHi, I\\'m Raquel. We are El Sueño de Morfeo.\\n\\n4\\n00:00:05,257 --> 00:00:09,519\\n...and \"Contigo hasta el final\" is our song in the Eurovision 2013.',\n", + " 'bytes': 274,\n", + " 'sha1': 'aql5mnpbfr19ip6cxl1olste6wdfnbt',\n", + " 'parent_id': 101565223,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97412613,\n", + " 'timestamp': '2013-06-01T11:46:40Z',\n", + " 'user': {'id': 2789307, 'text': 'Ruan123'},\n", + " 'page': {'id': 26438117,\n", + " 'title': 'Qc-caisse.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,020\\ncaisse (accent québécois)',\n", + " 'bytes': 59,\n", + " 'sha1': 'osyzuryeqdt8gqsj8ddx04dcoecoh2t',\n", + " 'parent_id': 97412556,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97443013,\n", + " 'timestamp': '2013-06-01T23:39:24Z',\n", + " 'user': {'id': 603043, 'text': 'MisterSanderson'},\n", + " 'page': {'id': 26446842,\n", + " 'title': 'Page-Curation-Video.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Cutting the dialogues into smaller pieces, to reduce pollution on the video screen.',\n", + " 'text': \"1\\n00:00:01,000 --> 00:00:03,000\\nWelcome to Page Curation on Wikipedia! \\n\\n2\\n00:00:03,500 --> 00:00:12,000\\nThis new feature aims to give curators better tools for reviewing new pages on Wikipedia -- as well as help page creators improve their articles. \\n\\n3\\n00:00:13,000 --> 00:00:23,000\\nCurrently, page patrol tools like this one make it difficult to review new pages quickly and accurately, and can be frustrating for both patrollers and creators. \\n\\n4\\n00:00:23,500 --> 00:00:32,000\\nPage Curation aims to offer a better experience, by providing two integrated tools: the New Pages Feed and the Curation Toolbar.\\n\\n5\\n00:00:32,500 --> 00:00:34,000\\nHere's how they work.\\n\\n6\\n00:00:34,500 --> 00:00:39,000\\nThe New Pages Feed lets you quickly see what new pages have just been created on Wikipedia.\\n\\n7\\n00:00:40,500 --> 00:00:45,000\\nHelpful information is provided for each new page, with a color-coded icon showing its status.\\n\\n8\\n00:00:46,000 --> 00:00:51,000\\nFor example, this page was just marked as reviewed, as shown by its green icon.\\n\\n9\\n00:00:51,000 --> 00:00:56,500\\nAnd this page is still unreviewed, with several possible issues highlighted in red.\\n\\n10\\n00:00:57,500 --> 00:01:07,000\\nThe New Pages Feed can be sorted by date, or filtered by a variety of criteria, so you can easily find articles to review by type -- or even by user name. \\n\\n11\\n00:01:07,500 --> 00:01:14,000\\nIf you're an autoconfirmed editor on Wikipedia, click on the 'Review' button to examine any page on this list.\\n\\n12\\n00:01:14,500 --> 00:01:20,000\\nThis takes you to the article you selected, and shows a Curation bar at the right edge of the page.\\n\\n13\\n00:01:20,500 --> 00:01:35,000\\nThis toolbar includes a number of useful tools for reviewing new pages: you can get page info, contact page creators, mark a page as reviewed, add tags, mark the page for deletion — or jump to the next page on the list. \\n\\n14\\n00:01:36,500 --> 00:01:38,500\\nLet's go over these tools one at a time.\\n\\n15\\n00:01:39,000 --> 00:01:51,500\\nPage Info lets you view information about this page, including its status, its creator and last reviewer, as well as possible issues, such as lack of categories or references -- and the page history. \\n\\n16\\n00:01:53,000 --> 00:01:58,000\\n'WikiLove' lets you send a message to page editors, to show your appreciation for their work.\\n\\n17\\n00:01:58,500 --> 00:02:05,000\\nYou can quickly select which editors to thank, then pick the award of your choice and post it with your comment on their talk pages.\\n\\n18\\n00:02:06,000 --> 00:02:13,000\\nOnce you've reviewed a page, you can 'mark it as reviewed’, to let others know that you have checked it and did not find any serious problems.\\n\\n19\\n00:02:13,500 --> 00:02:21,000\\nIf you like, you can also add a personal message on the creator's talk page to greet them or help them improve the article.\\n\\n20\\n00:02:21,500 --> 00:02:26,000\\nA green icon then appears, so that other patrollers know they don't need to review this page. \\n\\n21\\n00:02:27,000 --> 00:02:34,000\\nIf you find issues with this page, you can quickly add maintenance tags such as this one, so other editors know what to fix.\\n\\n22\\n00:02:34,500 --> 00:02:40,000\\nYou can select as many tags as needed, and add them to the page all at once.\\n\\n23\\n00:02:41,000 --> 00:02:47,000\\nIf you think a page violates Wikipedia's policies, you can 'mark it for deletion' with this special tool.\\n\\n24\\n00:02:47,500 --> 00:02:52,500\\nThis will tag that page, so administrators can easily find it and delete it. \\n\\n25\\n00:02:53,500 --> 00:03:00,000\\nFinally, you can use the 'Next tool to jump to the next page in your list, until you find another article to review.\\n\\n26\\n00:03:01,500 --> 00:03:04,000\\nSo that's Page Curation in a nutshell.\\n\\n27\\n00:03:04,500 --> 00:03:08,000\\nFor more information, click on the 'Learn more' links.\\n\\n28\\n00:03:09,000 --> 00:03:13,500\\nThis first set of curation tools was designed in collaboration with the Wikipedia community.\\n\\n29\\n00:03:14,000 --> 00:03:23,000\\nWe aimed to create an experience that's easy to use by curators, while providing better feedback for creators, so they can improve Wikipedia together.\\n\\n30\\n00:03:23,500 --> 00:03:27,000\\nWe hope you'll find Page Curation useful. Enjoy ...\",\n", + " 'bytes': 4177,\n", + " 'sha1': '43yjgeur0is9g9fadoiltxdh6i11bet',\n", + " 'parent_id': 97442524,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 271945633,\n", + " 'timestamp': '2017-12-14T07:38:57Z',\n", + " 'user': {'id': 1037472, 'text': 'Edslov'},\n", + " 'page': {'id': 26473379,\n", + " 'title': 'Salve, Oh Patria.oga.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:37,000 --> 00:00:41,000\\n¡Salve, oh Patria, mil veces!, ¡Oh Patria!\\n\\n2\\n00:00:41,000 --> 00:00:45,000\\n¡gloria a ti!¡gloria a ti!,\\n¡gloria a ti!¡gloria ti!\\n\\n3\\n00:00:45,100 --> 00:00:51,100\\nya tu pecho, tu pecho rebosa!,\\n\\n4\\n00:00:51,200 --> 00:00:54,400\\n¡gozo y paz, ya tu pecho rebosa!\\n\\n5\\n00:00:54,500 --> 00:00:59,400\\ny tu frente, tu frente radiosa\\n\\n6\\n00:00:59,500 --> 00:01:04,400\\nmás que el sol contemplamos lucir!\\n\\n7\\n00:01:04,500 --> 00:01:08,400\\ny tu frente, tu frente radiosa\\n\\n8\\n00:01:08,500 --> 00:01:12,400\\nmás que el sol contemplamos lucir!\\n\\n9\\n00:01:12,100 --> 00:01:22,400\\n\\n\\n10\\n00:01:22,500 --> 00:01:27,500\\n\\n\\n11\\n00:01:27,600 --> 00:01:33,000\\n\\n\\n12\\n00:01:35,000 --> 00:01:39,000\\nLos primeros los hijos del suelo\\n\\n13\\n00:01:40,100 --> 00:01:43,300\\nque, soberbio; el Pichincha decora\\n\\n14\\n00:01:44,400 --> 00:01:48,000\\nte aclamaron por siempre señora\\n\\n15\\n00:01:48,1000 --> 00:01:53,400\\ny vertieron su sangre por ti.\\n\\n16\\n00:01:53,500 --> 00:01:57,400\\nDios miró y aceptó el holocausto,\\n\\n17\\n00:01:57,500 --> 00:02:02,100\\ny esa sangre fue germen fecundo\\n\\n18\\n00:02:02,200 --> 00:02:07,700\\nde otros héroes que, atónito, el mundo\\n\\n19\\n00:02:07,800 --> 00:02:10,100\\nvio en tu torno a millares surgir\\n\\n20\\n00:02:10,200 --> 00:02:16,000\\nDios miró y aceptó el holocausto,\\n\\n21\\n00:02:16,100 --> 00:02:21,300\\ny esa sangre fue germen fecundo\\n\\n22\\n00:02:21,400 --> 00:02:25,000\\nde otros héroes que, atónito, el mundo\\n\\n23\\n00:02:25,100 --> 00:02:28,500\\nvio en tu torno a millares surgir\\n\\n23\\n00:02:28,600 --> 00:02:38,500\\na millares surgir, a millares surgir\\n\\n24\\n00:02:40,000 --> 00:02:44,400\\n¡Salve, oh Patria, mil veces!, ¡Oh Patria!\\n\\n25\\n00:02:44,500 --> 00:02:48,400\\n¡gloria a ti!¡gloria a ti!,\\n¡gloria a ti!¡gloria ti!\\n\\n27\\n00:02:48,500 --> 00:02:53,000\\nya tu pecho, tu pecho rebosa!,\\n\\n28\\n00:02:53,001 --> 00:02:57,000\\n¡gozo y paz, ya tu pecho rebosa!\\n\\n29\\n00:02:57,001 --> 00:03:02,000\\ny tu frente, tu frente radiosa\\n\\n30\\n00:03:02,100 --> 00:03:06,000\\nmás que el sol contemplamos lucir!\\n\\n31\\n00:03:06,100 --> 00:03:12,000\\nya tu pecho, tu pecho rebosa!,\\n\\n32\\n00:03:12,100 --> 00:03:16,000\\nmás que el sol contemplamos lucir!\\n\\n33\\n00:03:16,001 --> 00:03:20,100\\ny tu frente, tu frente radiosa\\n\\n34\\n00:03:20,200 --> 00:03:25,000\\nmás que el sol contemplamos lucir!\\n\\n35\\n00:03:25,100 --> 00:03:30,000\\nya tu pecho, tu pecho rebosa!,\\n\\n36\\n00:03:30,100 --> 00:03:34,000\\nmás que el sol contemplamos lucir!',\n", + " 'bytes': 2409,\n", + " 'sha1': '86afjrvzwdu10xs0amosb9mhsy4464d',\n", + " 'parent_id': 271069957,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 128875722,\n", + " 'timestamp': '2014-07-13T10:30:14Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 26501435,\n", + " 'title': \"Amandine Bourgeois - L'enfer et moi presentation (Français).ogv.fr.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': \"McZusatz moved page [[TimedText:Amandine Bourgeois - L'enfer et moi presentation (French).ogv.fr.srt]] to [[TimedText:Amandine Bourgeois - L'enfer et moi presentation (Français).ogv.fr.srt]] without leaving a redirect\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:01,499\\nBonjour,\\n\\n2\\n00:00:01,500 --> 00:00:03,000\\nJe m’appelle Amandine Bourgeois\\n\\n3\\n00:00:03,001 --> 00:00:05,000\\net je vais chanter « L’enfer et moi »\\n\\n4\\n00:00:05,001 --> 00:00:08,000\\nà l’''Eurovision Song Contest'' à Malmö\\n\\n4\\n00:00:08,001 --> 00:00:09,000\\nen 2013.\",\n", + " 'bytes': 302,\n", + " 'sha1': '1tgrcvyckszshald6cakutcddo1li4o',\n", + " 'parent_id': 97637098,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 293652419,\n", + " 'timestamp': '2018-03-25T12:30:00Z',\n", + " 'user': {'id': 1178893, 'text': 'Garam'},\n", + " 'page': {'id': 26509598,\n", + " 'title': 'The National Anthem of the Republic of Korea.ogg.ko.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:13,000\\n동해물과 백두산이 마르고 닳도록\\n\\n2\\n00:00:13,500 --> 00:00:26,500\\n하느님이 보우하사 우리나라 만세\\n\\n3\\n00:00:27,700 --> 00:00:41,000\\n무궁화 삼천리 화려강산\\n\\n4\\n00:00:41,500 --> 00:00:55,000\\n대한 사람 대한으로 길이 보전하세',\n", + " 'bytes': 302,\n", + " 'sha1': '765dsw5hdw5r21ogdnr3qxe5xzxfew3',\n", + " 'parent_id': 100877205,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 127729753,\n", + " 'timestamp': '2014-06-29T08:11:04Z',\n", + " 'user': {'id': 69480, 'text': 'Joshua'},\n", + " 'page': {'id': 26519284,\n", + " 'title': 'The Brabanconne.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'change lyrics to current version',\n", + " 'text': '1\\n00:00:04,000 --> 00:00:09,000\\nÔ Belgique, ô mère chérie\\n\\n2\\n00:00:09,000 --> 00:00:13,000\\nÀ toi nos cœurs, à toi nos bras\\n\\n3\\n00:00:13,000 --> 00:00:17,000\\nÀ toi notre sang, ô Patrie !\\n\\n4\\n00:00:17,000 --> 00:00:22,000\\nNous le jurons tous, tu vivras !\\n\\n4\\n00:00:22,000 --> 00:00:27,000\\nTu vivras toujours grande et belle\\n\\n5\\n00:00:27,000 --> 00:00:31,000\\nEt ton invincible unité\\n\\n6\\n00:00:31,000 --> 00:00:36,000\\nAura pour devise immortelle :\\n\\n7\\n00:00:36,000 --> 00:00:41,000\\nLe Roi, la Loi, la Liberté !\\n\\n8\\n00:00:41,000 --> 00:00:45,000\\nAura pour devise immortelle :\\n\\n9\\n00:00:45,000 --> 00:00:50,000\\nLe Roi, la Loi, la Liberté !\\n\\n10\\n00:00:50,000 --> 00:00:55,000\\nLe Roi, la Loi, la Liberté !\\n\\n11\\n00:00:55,000 --> 00:01:03,000\\nLe Roi, la Loi, la Liberté !',\n", + " 'bytes': 765,\n", + " 'sha1': 'hhm2o7y9wigk4fcgxq5fc4aixuuixx8',\n", + " 'parent_id': 97769819,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97710789,\n", + " 'timestamp': '2013-06-06T21:35:04Z',\n", + " 'user': {'id': 1178694, 'text': 'Rillke'},\n", + " 'page': {'id': 26519614,\n", + " 'title': '\"One Day in Berlin\" - Visit of John F. Kennedy, president of the United States in Berlin, 1963.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '+4',\n", + " 'text': '1\\n00:00:13,000 --> 00:00:25,500\\nTwo thousand years ago, two thousand years ago the proudest boast was \"civis Romanus sum.\"\\n\\n2\\n00:00:26,000 --> 00:00:37,800\\nToday, in the world of freedom, the proudest boast is \"Ich bin ein Berliner.\"\\n\\n3\\n00:00:38,200 --> 00:00:41,500\\nIt was a great day in the history of Berlin\\n\\n4\\n00:00:41,500 --> 00:00:44,500\\nJune, 26 1963\\n\\n100\\n00:15:20,000 --> 00:15:24,400\\nI am proud\\n\\n102\\n00:15:24,400 --> 00:15:27,400\\nto come to this city\\n\\n103\\n00:15:27,400 --> 00:15:31,000\\nas the guest of your distinguished Mayor,\\n\\n104\\n00:15:31,000 --> 00:15:38,000\\nwho has symbolized throughout the world the fighting spirit of West Berlin.\\n\\n105\\n00:15:38,000 --> 00:15:47,000\\nAnd I am proud\\n\\n106\\n00:15:47,000 --> 00:15:53,000\\nAnd I am proud to visit the Federal Republic\\n\\n107\\n00:15:53,000 --> 00:15:59,000\\nwith your distinguished Chancellor who for so many years\\n\\n108\\n00:15:59,000 --> 00:16:06,000\\nhas committed Germany to democracy and freedom and progress,\\n\\n110\\n00:16:07,487 --> 00:16:18,500\\nand to come here in the company of my fellow American, General Clay, who\\n\\n111\\n00:16:22,000 --> 00:16:32,023\\nwho has been in this city during its great moments of crisis and will come again if ever needed.\\n\\n112\\n00:16:44,300 --> 00:16:57,200\\nTwo thousand years ago, two thousand years ago the proudest boast was \"civis Romanus sum.\"\\n\\n113\\n00:16:57,200 --> 00:17:07,000\\nToday, in the world of freedom, the proudest boast is \"Ich bin ein Berliner.\"\\n\\n114\\n00:17:14,000 --> 00:17:25,500\\nI …, I …, I appreciate, I appreciate my interpreter translating my German!\\n\\n115\\n00:17:38,000 --> 00:17:47,000\\nThere are many people in the world who really don\\'t understand, or say they don\\'t,\\n\\n116\\n00:17:47,000 --> 00:17:54,500\\nwhat is the great issue between the free world and the Communist world.\\n\\n117\\n00:17:55,000 --> 00:17:58,000\\nLet them come to Berlin!\\n\\n118\\n00:18:05,500 --> 00:18:15,500\\nThere are some who say …, there are some who say that communism is the wave of the future.\\n\\n119\\n00:18:15,500 --> 00:18:18,000\\nLet them come to Berlin!\\n\\n120\\n00:18:20,288 --> 00:18:27,379\\nAnd there are some who say in Europe and elsewhere we can work\\n\\n121\\n00:18:27,379 --> 00:18:32,742\\nwith the Communists. Let them come to Berlin!\\n\\n122\\n00:18:36,527 --> 00:18:47,673\\nAnd there are even a few who say that it\\'s true that communism is an evil system,\\n\\n123\\n00:18:47,673 --> 00:18:52,712\\nbut it permits us to make economic progress.\\n\\n124\\n00:18:52,712 --> 00:18:58,958\\nLass\\' sie nach Berlin kommen! Let them come to Berlin!\\n\\n125\\n00:19:04,484 --> 00:19:14,605\\nFreedom has many difficulties and democracy is not perfect, but we have never had\\n\\n126\\n00:19:14,605 --> 00:19:18,950\\nto put a wall up to keep our people in, to prevent them from leaving us.\\n\\n127\\n00:19:29,120 --> 00:19:39,700\\nI want to say, on behalf of my countrymen, who live many miles away\\n\\n128\\n00:19:39,700 --> 00:19:48,283\\non the other side of the Atlantic, who are far distant from you, that they take the greatest pride\\n\\n129\\n00:19:48,283 --> 00:19:58,032\\nthat they have been able to share with you, even from a distance, the story of the last 18 years.\\n\\n130\\n00:19:58,032 --> 00:20:10,188\\nI know of no town, no city, that has been besieged for 18 years that still lives\\n\\n131\\n00:20:10,188 --> 00:20:19,070\\nwith the vitality and the force, and the hope and the determination of the city of West Berlin.\\n\\n132\\n00:20:33,001 --> 00:20:43,195\\nWhile the wall is the most obvious and vivid demonstration of the failures of the Communist system,\\n\\n133\\n00:20:43,195 --> 00:20:53,467\\nfor all the world to see, we take no satisfaction in it, for it is, as your Mayor has said,\\n\\n134\\n00:20:53,467 --> 00:21:01,652\\nan offense not only against history but an offense against humanity, separating families,\\n\\n135\\n00:21:01,652 --> 00:21:10,952\\ndividing husbands and wives and brothers and sisters, and dividing a people who wish to be joined together.\\n\\n136\\n00:21:17,662 --> 00:21:28,552\\nWhat is true of this city is true of Germany—real, lasting peace in Europe can never be assured\\n\\n137\\n00:21:28,552 --> 00:21:37,216\\nas long as one German out of four is denied the elementary right of free men,\\n\\n138\\n00:21:37,216 --> 00:21:48,260\\nand that is to make a free choice. In 18 years of peace and good faith, this generation\\n\\n139\\n00:21:48,260 --> 00:21:57,293\\nof Germans has earned the right to be free, including the right to unite their families\\n\\n140\\n00:21:57,293 --> 00:22:03,466\\nand their nation in lasting peace, with good will to all people.\\n\\n141\\n00:22:14,400 --> 00:22:21,505\\nYou live in a defended island of freedom, but your life is part of the main.\\n\\n142\\n00:22:21,505 --> 00:22:28,741\\nSo let me ask you, as I close, to lift your eyes beyond the dangers of today,\\n\\n143\\n00:22:28,741 --> 00:22:35,286\\nto the hopes of tomorrow, beyond the freedom merely of this city of Berlin,\\n\\n144\\n00:22:35,286 --> 00:22:41,266\\nor your country of Germany, to the advance of freedom everywhere,\\n\\n145\\n00:22:41,266 --> 00:22:46,888\\nbeyond the wall to the day of peace with justice,\\n\\n146\\n00:22:46,888 --> 00:22:52,939\\nbeyond yourselves and ourselves to all mankind.\\n\\n147\\n00:22:52,939 --> 00:23:01,438\\nFreedom is indivisible, and when one man is enslaved, all are not free.\\n\\n148\\n00:23:01,438 --> 00:23:09,466\\nWhen all are free, then we can look forward to that day when this city will be\\n\\n149\\n00:23:09,466 --> 00:23:15,802\\njoined as one and this country and this great Continent of Europe in a peaceful\\n\\n150\\n00:23:15,802 --> 00:23:24,231\\nand hopeful globe. When that day finally comes, as it will, the people of West Berlin\\n\\n151\\n00:23:24,231 --> 00:23:33,766\\ncan take sober satisfaction in the fact that they were in the front lines for almost two decades.\\n\\n152\\n00:23:49,764 --> 00:24:02,443\\nAll free men, wherever they may live, are citizens of Berlin, and, therefore, as a free man,\\n\\n153\\n00:24:02,443 --> 00:24:08,445\\nI take pride in the words \"Ich bin ein Berliner!\"',\n", + " 'bytes': 5869,\n", + " 'sha1': 'sq3yxc9sl8tlhd061vylzjgs2xiynka',\n", + " 'parent_id': 97710429,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601107204,\n", + " 'timestamp': '2021-10-22T12:59:25Z',\n", + " 'user': {'id': 4008733, 'text': 'JhsBot'},\n", + " 'page': {'id': 26530462,\n", + " 'title': 'National Flag Anthem of the Republic of China piano version.oga.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'JhsBot moved page [[TimedText:National Flag Anthem of the Republic of China.ogg.zh-hant.srt]] to [[TimedText:National Flag Anthem of the Republic of China piano version.oga.zh-hant.srt]] without leaving a redirect: Moved because the [[File:National Flag Anthem of the Republic of China piano version.oga|file it belongs to]] was moved',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,000\\n山川壯麗、物產豐隆\\n\\n2\\n00:00:06,000 --> 00:00:12,000\\n炎黃世冑,東亞稱雄\\n\\n3\\n00:00:12,000 --> 00:00:19,000\\n毋自暴自棄、毋故步自封\\n\\n4\\n00:00:19,000 --> 00:00:25,000\\n光我民族,促進大同\\n\\n5\\n00:00:25,000 --> 00:00:31,000\\n創業維艱,緬懷諸先烈\\n\\n6\\n00:00:31,000 --> 00:00:38,000\\n守成不易,莫徒務近功\\n\\n7\\n00:00:38,000 --> 00:00:44,000\\n同心同德,貫徹始終\\n\\n8\\n00:00:44,000 --> 00:00:51,000\\n青天白日滿地紅\\n\\n9\\n00:00:51,000 --> 00:00:58,000\\n同心同德,貫徹始終\\n\\n10\\n00:00:58,000 --> 00:01:06,000\\n青天白日滿地紅',\n", + " 'bytes': 609,\n", + " 'sha1': '79daq113wda2yacd515j74ptpz2za45',\n", + " 'parent_id': 371958061,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97758076,\n", + " 'timestamp': '2013-06-07T19:16:52Z',\n", + " 'user': {'id': 2280090, 'text': 'Rahulkepapa'},\n", + " 'page': {'id': 26535914,\n", + " 'title': 'Sarva shiksha abhiyan, kasturba gandhi balika vidyalaya.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:06,861 According to the last census, 300 million Indians could not read or write, of which 200 million were women. 2 00:00:06,861 --> ...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,861\\nAccording to the last census, 300 million Indians could not read or write, of which 200 million were women.\\n\\n2\\n00:00:06,861 --> 00:00:10,942\\nPeople don\\'t like girls much.\\n\\n3\\n00:00:10,942 --> 00:00:14,666\\nWhat would you like to be when you\\'re grown up?\\n\\n4\\n00:00:14,666 --> 00:00:16,211\\nI\\'d like to be a pilot.\\n\\n5\\n00:00:16,211 --> 00:00:17,208\\nA pilot\\n\\n6\\n00:00:17,208 --> 00:00:19,007\\nWhy?\\n\\n7\\n00:00:19,115 --> 00:00:21,592\\nI want to roam the skies.\\n\\n8\\n00:00:21,592 --> 00:00:25,784\\nReally. How nice. So you want to fly? Where do you want to fly?\\n\\n9\\n00:00:25,784 --> 00:00:29,573\\nIn the skies. In the skies.\\n\\n10\\n00:00:31,896 --> 00:00:36,295\\nIn 2002, India enacted the historic 86th Indian Constitutional Amendment Act\\n\\n11\\n00:00:36,295 --> 00:00:41,222\\nthat declared elementary education as a Fundamental Right for all children.\\n\\n12\\n00:00:41,222 --> 00:00:44,340\\nWith 304 million Indian citizens still non-literate,\\n\\n13\\n00:00:44,340 --> 00:00:46,782\\nthe educational challenge couldn\\'t be addressed merely with\\n\\n14\\n00:00:46,782 --> 00:00:52,851\\ndeclarations of rights. So, the Indian Government launched the Sarva Shiksha Abhiyan, the programme of \\'Education for All\".\\n\\n15\\n00:00:53,435 --> 00:00:56,414\\nGood morning Ma\\'am.\\n\\n16\\n00:00:56,414 --> 00:00:58,908\\nSit down girls.\\n\\n17\\n00:00:59,600 --> 00:01:04,977\\nLargely funded by the Indian government, this programme has received around 250 million Euros\\n\\n18\\n00:01:04,977 --> 00:01:07,702\\nfrom the World Bank and the European Union.\\n\\n19\\n00:01:08,009 --> 00:01:14,899\\nIn 2009, the Indian Parliament took a further step and passed ‚ÄúThe Right of Children to Free and Compulsory Education Act‚Äù.\\n\\n20\\n00:01:15,606 --> 00:01:18,321\\nand delegated all Indian States\\n\\n21\\n00:01:18,490 --> 00:01:20,914\\nthe duty to provide free and compulsory education to all children\\n\\n22\\n00:01:20,914 --> 00:01:24,612\\nbetween 6 and 14 years old. And in order to increase the enrolment of girls\\n\\n23\\n00:01:24,612 --> 00:01:27,456\\nin primary schools, the Indian government set up 3600 residential schools\\n\\n24\\n00:01:27,456 --> 00:01:31,307\\nacross the country for 6 to 14 year old girls\\n\\n25\\n00:01:31,307 --> 00:01:33,517\\nfrom the most marginalized communities.\\n\\n26\\n00:01:33,517 --> 00:01:36,222\\nOur team went to one such school in Sarnath,\\n\\n27\\n00:01:36,222 --> 00:01:40,414\\na town associated with Lord Buddha and located in the Northern Indian state of Uttar Pradesh.\\n\\n28\\n00:01:40,414 --> 00:01:44,056\\nHere, besides the academic curricula, girls learn life skills\\n\\n29\\n00:01:44,056 --> 00:01:48,073\\nand performing arts. They learn their rights and they learn to defend themselves.\\n\\n30\\n00:01:48,073 --> 00:01:51,657\\nThey understand their role and value in family and society and they acquire\\n\\n31\\n00:01:51,657 --> 00:01:56,489\\nself-confidence. They learn to be proud of being women.\\n\\n32\\n00:01:58,874 --> 00:02:01,783\\nNowadays, we see that\\n\\n33\\n00:02:01,783 --> 00:02:04,941\\nthat girls are married off when they really young.\\n\\n34\\n00:02:04,941 --> 00:02:07,994\\nIn villages, parents marry off their children at a very young age.\\n\\n35\\n00:02:07,994 --> 00:02:11,355\\nWe will have to talk to people about this issue.\\n\\n36\\n00:02:12,063 --> 00:02:13,976\\nBirds, birds, they keep flying;\\n\\n37\\n00:02:14,038 --> 00:02:18,323\\nBirds! birds! they keep flying;\\n\\n38\\n00:02:18,323 --> 00:02:23,844\\nHappily, Happily, they sing\\n\\n39\\n00:02:25,460 --> 00:02:30,241\\nfrom among them one flies away. So, how many remain? Zero\\n\\n40\\n00:02:31,165 --> 00:02:33,599\\nI believe we are doing something that\\n\\n41\\n00:02:33,599 --> 00:02:39,416\\nvery few people are able to do. Most teachers go and teach\\n\\n42\\n00:02:39,416 --> 00:02:42,846\\nand earn money. I also earn money\\n\\n43\\n00:02:42,846 --> 00:02:48,277\\nbut along with it, I receive a lot of sympathy and affection\\n\\n44\\n00:02:48,277 --> 00:02:51,580\\nfrom these children.\\n\\n45\\n00:02:51,580 --> 00:02:53,501\\nThese were children whose lives were earlier being wasted.\\n\\n46\\n00:02:53,501 --> 00:02:56,022\\nWe are bringing these children together and we are preparing them as good citizens;\\n\\n47\\n00:02:56,022 --> 00:03:00,335\\nand so our society and our country will really be able to develop\\n\\n48\\n00:03:00,335 --> 00:03:06,914\\nFour small birds used to eat pomegranate\\n\\n49\\n00:03:08,560 --> 00:03:10,990\\nNo one used to teach us in the school where I used to study earlier.\\n\\n50\\n00:03:10,990 --> 00:03:18,941\\nThe teacher used to come and sit on her chair and never used to bother about the students\\n\\n51\\n00:03:18,941 --> 00:03:21,539\\neven if they were fighting and hitting each other.\\n\\n52\\n00:03:21,539 --> 00:03:27,342\\nThis is why I used to stay at home and not go to school\\n\\n53\\n00:03:27,342 --> 00:03:35,459\\nThen when news about this school was published in the newspapers, my aunt got me enrolled in this school\\n\\n54\\n00:03:35,459 --> 00:03:38,748\\nand I came to study here\\n\\n55\\n00:03:39,502 --> 00:03:46,141\\nWe get notebooks here and pens and pencils.\\n\\n56\\n00:03:46,141 --> 00:03:51,582\\nIf we don\\'t have something and we ask out teachers, they immediately give it to us.\\n\\n57\\n00:03:51,582 --> 00:03:57,834\\nOur teachers always tell us not to worry and ask us to share our desires and wishes with them. They say, \"we are here for you, don\\'t worry\"\\n\\n58\\n00:03:59,664 --> 00:04:02,520\\nSometimes, we even call them \"Mummy\".\\n\\n59\\n00:04:03,182 --> 00:04:07,831\\nMany families are unable to send their children to schools because they cannot pay the fees.\\n\\n60\\n00:04:07,831 --> 00:04:12,783\\nThey feel that they must first organise for their food and then think of educating their children.\\n\\n61\\n00:04:12,783 --> 00:04:18,678\\nSo our government decided to enrol such girls into schools, girls belonged to families living below the poverty line;\\n\\n62\\n00:04:18,678 --> 00:04:20,862\\nyoung girls aged between 6 to 14 years old,\\n\\n63\\n00:04:20,862 --> 00:04:25,422\\nthat have studied upto 1 or 2 or 3 Grade; that are school drop outs\\n\\n64\\n00:04:25,422 --> 00:04:33,744\\nand decided that such girls should be enroled and in such a place where they can stay away from home in a residential school\\n\\n65\\n00:04:33,744 --> 00:04:37,096\\nfor 24 hours a day\\n\\n66\\n00:04:37,096 --> 00:04:43,342\\nwhere their lodging, food, study is taken care of\\n\\n67\\n00:04:43,342 --> 00:04:46,143\\nso that the child can live in a conducive environment\\n\\n68\\n00:04:46,143 --> 00:04:50,302\\nand develops her skills fully.\\n\\n69\\n00:04:50,302 --> 00:04:56,781\\nMy parents has always said that however poor they may be,\\n\\n70\\n00:04:56,781 --> 00:04:58,912\\nthey would be always ready to give up everything they have just for educating us girls\\n\\n71\\n00:04:58,912 --> 00:05:01,781\\nso that we have the opportunity to study and achieve glory\\n\\n72\\n00:05:01,842 --> 00:05:09,742\\nNowadays, parents know that girls can achieve excellence and enter any profession\\n\\n73\\n00:05:09,742 --> 00:05:14,543\\nAnd our parents even tell us that we are more important for them than sons would have been\\n\\n74\\n00:05:14,543 --> 00:05:15,861\\nand that we must study as much as we want\\n\\n75\\n00:05:15,861 --> 00:05:19,571\\neven if they might have to sell their homes to fund our studies\\n\\n76\\n00:05:19,571 --> 00:05:25,462\\nOne day a man came to our village in search of an address written on a piece of paper\\n\\n77\\n00:05:25,462 --> 00:05:34,501\\nNo one was able to help him, so the gentleman asked me if I could help.\\n\\n78\\n00:05:34,501 --> 00:05:40,502\\nI saw the address written on a black sign board on the street\\n\\n79\\n00:05:40,502 --> 00:05:45,022\\nand explained to him how he could reach the place he was looking for. He thanked me in English.\\n\\n80\\n00:05:45,022 --> 00:05:46,622\\nGirls who were sitting nearby started giggling\\n\\n81\\n00:05:46,622 --> 00:05:49,060\\nand when I asked them why they were laughing, they asked me what he said to me.\\n\\n82\\n00:05:49,060 --> 00:05:57,537\\nI told them that he had said \"Thankyou\". They said they had thought he had said something abusive\\n\\n83\\n00:05:57,537 --> 00:06:00,354\\nParents, of our students, know\\n\\n84\\n00:06:00,354 --> 00:06:02,184\\nthat child marriage is wrong.\\n\\n85\\n00:06:02,184 --> 00:06:08,428\\nThey say that children in their communities are married off young\\n\\n86\\n00:06:08,428 --> 00:06:12,400\\nand that neighbours criticise them for sending their girls off to schools instead of getting them married.\\n\\n87\\n00:06:12,492 --> 00:06:15,619\\nbut parents understand this value\\n\\n88\\n00:06:15,619 --> 00:06:17,987\\nand say that they want their daughters to study and not to marry them off young\\n\\n89\\n00:06:20,199 --> 00:06:22,523\\nSo, slowly the mind set of our parents, towards their girls, is changing\\n\\n90\\n00:06:35,771 --> 00:06:43,345\\nEducation is the only means through which we can search for and lead out the talents of these children\\n\\n91\\n00:06:43,345 --> 00:06:46,308\\nbecause these will be the children who will build the nation.\\n\\n92\\n00:06:49,185 --> 00:06:51,554\\n37% of the kids in class V\\n\\n93\\n00:06:51,554 --> 00:06:56,664\\ncannot read a text meant for Class II. Now, if you say that therefore the money\\n\\n94\\n00:06:56,664 --> 00:06:59,902\\nand the benefits aren\\'t reaching the target population\\n\\n95\\n00:06:59,902 --> 00:07:02,902\\nin one sense you are right. But what can a government do?\\n\\n96\\n00:07:02,902 --> 00:07:07,176\\nIt sets up schools, it hires teachers. So, we say you need more\\n\\n97\\n00:07:07,176 --> 00:07:09,944\\nparent teacher involvement. You must have the local community\\n\\n98\\n00:07:09,944 --> 00:07:16,248\\nforcing accountability. Teachers must be made to teach.\\n\\n99\\n00:07:16,248 --> 00:07:19,342\\nYou know that these are things that are not just done by governments\\n\\n100\\n00:07:19,342 --> 00:07:23,166\\nThese are things that are done by social pressure, by social awareness,\\n\\n101\\n00:07:28,782 --> 00:07:28,862\\nWhen the constitution was framed in 1950, the argument was made\\n\\n102\\n00:07:28,862 --> 00:07:34,617\\nthat education was not a fundamental right.\\n\\n103\\n00:07:35,125 --> 00:07:41,256\\nbecause the government then said that we don\\'t have the financial resources\\n\\n104\\n00:07:41,256 --> 00:07:48,059\\nto ensure education. India\\'s population in 1950 was around 350 million.\\n\\n105\\n00:07:48,059 --> 00:07:49,780\\nNow, of course, we are over a billion\\n\\n106\\n00:07:49,780 --> 00:07:52,900\\nBut even in those days also the government said that we didn\\'t have the\\n\\n107\\n00:07:52,900 --> 00:07:54,776\\nfinancial resources, so give us ten years. And within ten years\\n\\n108\\n00:07:54,776 --> 00:07:58,085\\nwe will progressively see that all children are in school\\n\\n109\\n00:07:58,085 --> 00:08:02,979\\n1960 came, 1970 came, 1980 came, 1990 came\\n\\n110\\n00:08:02,979 --> 00:08:07,782\\nthe same arguments- we don\\'t have the financial resources\\n\\n111\\n00:08:07,782 --> 00:08:10,943\\nand in the meantime, what were you seeing?\\n\\n112\\n00:08:10,943 --> 00:08:17,022\\nIndia was becoming absolutely corporate; a country for higher education\\n\\n113\\n00:08:17,022 --> 00:08:25,300\\nThe Indian Institutes of Technology, the IITs, are very well known. The Indian Institutes for Management, the IIMs,\\n\\n114\\n00:08:25,300 --> 00:08:27,422\\nI studied in IIM Ahmedabad\\n\\n115\\n00:08:27,422 --> 00:08:30,222\\nThey were fantastic institutions. They turned out the best managers\\n\\n116\\n00:08:30,222 --> 00:08:33,585\\nwho are now all over the world doing exceptionally well\\n\\n117\\n00:08:33,585 --> 00:08:37,340\\nSo, when you look at these kinds of higher institutions, India did very well\\n\\n118\\n00:08:37,340 --> 00:08:41,100\\nbut the neglect of basic education and schooling was unforgivable\\n\\n119\\n00:08:41,100 --> 00:08:44,862\\nAnd it took the civil society movement\\n\\n120\\n00:08:44,862 --> 00:08:50,176\\nthe Right ot Education movement- years and years of pushing and pushing and pushing\\n\\n121\\n00:08:50,176 --> 00:08:54,068\\nuntil it was made a fundamental right in 2003.\\n\\n122\\n00:08:54,237 --> 00:08:57,269\\nI am a daughter, I am a daughter.\\n\\n123\\n00:08:57,269 --> 00:08:59,217\\nI will become a star\\n\\n124\\n00:08:59,217 --> 00:09:01,074\\nI will become a star....\\n\\n125\\n00:09:01,120 --> 00:09:04,780\\nAlthough India still has a long way to go,\\n\\n126\\n00:09:04,780 --> 00:09:07,420\\nwith only 8 million children out of school in 2009, it has started\\n\\n127\\n00:09:07,420 --> 00:09:11,100\\nwalking on the path towards ensuring the right to education for each Indian child.\\n\\n128\\n00:09:11,100 --> 00:09:17,397\\nIn fact, most Indians believe that education for all is the best investment\\n\\n129\\n00:09:17,397 --> 00:09:20,022\\nthat families and Governments can make. The benefits of such investments\\n\\n130\\n00:09:20,022 --> 00:09:20,942\\nwill be enjoyed by all.\\n\\n131\\n00:09:20,942 --> 00:09:23,182\\nI will climb up on my own feet\\n\\n132\\n00:09:23,182 --> 00:09:23,980\\nI will see the world\\n\\n133\\n00:09:23,980 --> 00:09:27,222\\nCan India afford these high levels of investments in basic health and education?\\n\\n134\\n00:09:27,222 --> 00:09:31,781\\nbut above all, the fundamental way of posing the question is\\n\\n135\\n00:09:31,781 --> 00:09:35,222\\nCan India afford not to invest in basic health,\\n\\n136\\n00:09:35,222 --> 00:09:39,222\\nbasic education, basic nutrition and such essentials of life?\\n\\n137\\n00:09:39,222 --> 00:09:41,000\\nSubtitles by the Amara.org community',\n", + " 'bytes': 12907,\n", + " 'sha1': '71w92jae7c3fgcu86236pcb9m6dq7zy',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97758166,\n", + " 'timestamp': '2013-06-07T19:20:15Z',\n", + " 'user': {'id': 2280090, 'text': 'Rahulkepapa'},\n", + " 'page': {'id': 26535938,\n", + " 'title': 'Sarva shiksha abhiyan, kasturba gandhi balika vidyalaya.webm.hi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 -> 00:00:06,861 पिछली जनगणना के अनुसार, 300 करोड़ भारतीयों को नहीं ...'\",\n", + " 'text': '1\\n00:00:00,000 -> 00:00:06,861\\nपिछली जनगणना के अनुसार, 300 करोड़ भारतीयों को नहीं पढ़ सकता है या 200 मिलियन महिलाएं भी थीं, जिनमें से लिखना.\\n\\n2\\n00:00:06,861 -> 00:00:10,942\\nलोग ज्यादा लड़कियों को पसंद नहीं है.\\n\\n3\\n00:00:10,942 -> 00:00:14,666\\nक्या आप आप बड़े हो रहे हैं जब होना चाहते हैं?\\n\\n4\\n00:00:14,666 -> 00:00:16,211\\nमैं एक पायलट बनना चाहते हैं.\\n\\n5\\n00:00:16,211 -> 00:00:17,208\\nएक पायलट\\n\\n6\\n00:00:17,208 -> 00:00:19,007\\nक्यों?\\n\\n7\\n00:00:19,115 -> 00:00:21,592\\nमैं आसमान घूमने के लिए चाहते हैं.\\n\\n8\\n00:00:21,592 -> 00:00:25,784\\nसच में. कितना अच्छा. तो तुम उड़ करना चाहते हैं? आप कहां उड़ करना चाहते हैं?\\n\\n9\\n00:00:25,784 -> 00:00:29,573\\nआसमान में. आसमान में.\\n\\n10\\n00:00:31,896 -> 00:00:36,295\\n2002 में, भारत के ऐतिहासिक 86 वें भारतीय संविधान संशोधन अधिनियम अधिनियमित\\n\\n11\\n00:00:36,295 -> 00:00:41,222\\nकि सभी बच्चों के लिए एक मौलिक अधिकार के रूप में प्राथमिक शिक्षा की घोषणा की.\\n\\n12\\n00:00:41,222 -> 00:00:44,340\\nअभी भी निरक्षर 304 मिलियन भारतीय नागरिकों के साथ,\\n\\n13\\n00:00:44,340 -> 00:00:46,782\\nशैक्षिक चुनौती के साथ केवल संबोधित नहीं किया जा सकता है\\n\\n14\\n00:00:46,782 -> 00:00:52,851\\nअधिकार की घोषणाओं. इसलिए भारत सरकार ने सर्व शिक्षा अभियान, सभी के लिए शिक्षा के कार्यक्रम \\'का शुभारंभ किया.\\n\\n15\\n00:00:53,435 -> 00:00:56,414\\nमैडम सुप्रभात.\\n\\n16\\n00:00:56,414 -> 00:00:58,908\\nलड़कियों बैठ जाओ.\\n\\n17\\n00:00:59,600 -> 00:01:04,977\\nमोटे तौर पर भारत सरकार द्वारा वित्त पोषित इस कार्यक्रम मिलियन लगभग 250 यूरो प्राप्त हुआ है\\n\\n18\\n00:01:04,977 -> 00:01:07,702\\nविश्व बैंक और यूरोपीय संघ से.\\n\\n19\\n00:01:08,009 -> 00:01:14,899\\nवर्ष 2009 में भारतीय संसद ने एक कदम और आगे ले गया और पारित, नि: शुल्क एवं अनिवार्य शिक्षा अधिनियम, Au को बच्चों के अधिकार authe.\\n\\n20\\n00:01:15,606 -> 00:01:18,321\\nऔर सभी भारतीय राज्यों प्रत्यायोजित\\n\\n21\\n00:01:18,490 -> 00:01:20,914\\nसभी बच्चों को मुफ्त और अनिवार्य शिक्षा उपलब्ध कराने के लिए शुल्क\\n\\n22\\n00:01:20,914 -> 00:01:24,612\\n6 के बीच और 14 साल पुरानी है. और आदेश में लड़कियों का नामांकन बढ़ाने के लिए\\n\\n23\\n00:01:24,612 -> 00:01:27,456\\nप्राथमिक विद्यालयों में, भारत सरकार ने 3600 आवासीय विद्यालय की स्थापना\\n\\n24\\n00:01:27,456 -> 00:01:31,307\\n6 से 14 साल पुराने लड़कियों के लिए देश भर में\\n\\n25\\n00:01:31,307 -> 00:01:33,517\\nसबसे उपेक्षित समुदायों से.\\n\\n26\\n00:01:33,517 -> 00:01:36,222\\nहमारी टीम सारनाथ में ऐसे ही एक स्कूल के पास गया\\n\\n27\\n00:01:36,222 -> 00:01:40,414\\nएक शहर में भगवान बुद्ध के साथ जुड़े रहे हैं और उत्तर प्रदेश के उत्तरी भारतीय राज्य में स्थित है.\\n\\n28\\n00:01:40,414 -> 00:01:44,056\\nइधर, शैक्षिक पाठ्यक्रम के अलावा, लड़कियों के जीवन कौशल सीखना\\n\\n29\\n00:01:44,056 -> 00:01:48,073\\nऔर प्रदर्शन कला. वे अपने अधिकारों को जानने के लिए और वे खुद का बचाव करना सीखो.\\n\\n30\\n00:01:48,073 -> 00:01:51,657\\nवे परिवार और समाज में उनकी भूमिका और मूल्य को समझते हैं और उन्हें हासिल\\n\\n31\\n00:01:51,657 -> 00:01:56,489\\nआत्मविश्वास. वे महिलाओं के होने का गर्व होना सीखना.\\n\\n32\\n00:01:58,874 -> 00:02:01,783\\nआजकल, हम देखते हैं कि\\n\\n33\\n00:02:01,783 -> 00:02:04,941\\nवे वास्तव में युवा जब कि लड़कियों की शादी कर रहे हैं.\\n\\n34\\n00:02:04,941 -> 00:02:07,994\\nगांवों में, माता पिता एक बहुत ही कम उम्र में अपने बच्चों की शादी.\\n\\n35\\n00:02:07,994 -> 00:02:11,355\\nहम इस मुद्दे के बारे में लोगों से बात करनी होगी.\\n\\n36\\n00:02:12,063 -> 00:02:13,976\\nपक्षी, पक्षियों, वे उड़ान रखने;\\n\\n37\\n00:02:14,038 -> 00:02:18,323\\nपक्षी! पक्षियों! वे उड़ान रखने;\\n\\n38\\n00:02:18,323 -> 00:02:23,844\\nखुशी से, खुशी से, वे गाते\\n\\n39\\n00:02:25,460 -> 00:02:30,241\\nदूर उन के बीच में से एक मक्खियों. तो, कितने बने हुए हैं? शून्य\\n\\n40\\n00:02:31,165 -> 00:02:33,599\\nमैं हम जानते हैं कि कुछ कर रहे हैं विश्वास\\n\\n41\\n00:02:33,599 -> 00:02:39,416\\nबहुत कम लोगों को ऐसा करने में सक्षम हैं. अधिकांश शिक्षकों को जाना और सिखाने\\n\\n42\\n00:02:39,416 -> 00:02:42,846\\nऔर पैसा कमाते हैं. मैं भी पैसे कमाने\\n\\n43\\n00:02:42,846 -> 00:02:48,277\\nलेकिन इसके साथ साथ, मैं सहानुभूति और स्नेह का एक बहुत कुछ प्राप्त\\n\\n44\\n00:02:48,277 -> 00:02:51,580\\nइन बच्चों से.\\n\\n45\\n00:02:51,580 -> 00:02:53,501\\nये जिनके जीवन पहले बर्बाद किया जा रहा थे बच्चे थे.\\n\\n46\\n00:02:53,501 -> 00:02:56,022\\nहम एक साथ इन बच्चों को ला रहे हैं और हम अच्छे नागरिक के रूप में उन्हें तैयारी कर रहे हैं;\\n\\n47\\n00:02:56,022 -> 00:03:00,335\\nऔर इसलिए हमारे समाज और हमारे देश वास्तव में विकसित करने में सक्षम हो जाएगा\\n\\n48\\n00:03:00,335 -> 00:03:06,914\\nअनार खाने के लिए इस्तेमाल किया चार छोटे पक्षियों\\n\\n49\\n00:03:08,560 -> 00:03:10,990\\nकोई भी मुझे लगता है कि पहले का अध्ययन किया जहां स्कूल में हमें सिखाने के लिए इस्तेमाल किया.\\n\\n50\\n00:03:10,990 -> 00:03:18,941\\nशिक्षक आते हैं और उसे कुर्सी पर बैठते थे और छात्रों के बारे में चिंता करने के लिए इस्तेमाल कभी नहीं\\n\\n51\\n00:03:18,941 -> 00:03:21,539\\nवे लड़ रहे हैं और एक दूसरे को मार रहे थे, भले ही.\\n\\n52\\n00:03:21,539 -> 00:03:27,342\\nयह मैं घर पर रहने के लिए इस्तेमाल क्यों है और स्कूल जाने के लिए नहीं\\n\\n53\\n00:03:27,342 -> 00:03:35,459\\nइस स्कूल के बारे में खबर समाचार पत्रों में प्रकाशित किया गया था तब, जब मेरी चाची मुझे इस स्कूल में दाखिला मिल गया\\n\\n54\\n00:03:35,459 -> 00:03:38,748\\nऔर मैं यहां अध्ययन करने के लिए आया था\\n\\n55\\n00:03:39,502 -> 00:03:46,141\\nहम यहाँ नोटबुक और कलम और पेंसिल मिलता है.\\n\\n56\\n00:03:46,141 -> 00:03:51,582\\nहम कुछ भी नहीं है और हम शिक्षकों को बाहर पूछना, वे तुरंत इसे हमें दे.\\n\\n57\\n00:03:51,582 -> 00:03:57,834\\nहमारे शिक्षकों को हमेशा चिंता और उनके साथ हमारी इच्छाओं और इच्छाओं को साझा करने के लिए हमें पूछने के लिए नहीं हमें बताओ. वे \"चिंता मत करो, हम तुम्हारे लिए यहाँ हैं कहते हैं,\"\\n\\n58\\n00:03:59,664 -> 00:04:02,520\\nकभी कभी, हम भी उन्हें \\'माँ\\' कहते हैं.\\n\\n59\\n00:04:03,182 -> 00:04:07,831\\nकई परिवारों वे फीस का भुगतान नहीं कर सकते हैं क्योंकि स्कूलों में अपने बच्चों को भेजने में असमर्थ हैं.\\n\\n60\\n00:04:07,831 -> 00:04:12,783\\nउन्होंने कहा कि वे पहली बार अपने बच्चों को शिक्षित करने के बारे में सोच तो उनके भोजन के लिए संगठित और चाहिए कि लग रहा है.\\n\\n61\\n00:04:12,783 -> 00:04:18,678\\nहमारे सरकारी स्कूलों में इस तरह लड़कियों को भर्ती करने का फैसला किया तो, लड़कियों के गरीबी रेखा से नीचे रहने वाले परिवारों के थे;\\n\\n62\\n00:04:18,678 -> 00:04:20,862\\n6 से 14 वर्ष के बीच आयु वर्ग के युवा लड़कियों,\\n\\n63\\n00:04:20,862 -> 00:04:25,422\\nकि 1 या 2 या 3 ग्रेड तक अध्ययन किया है, स्कूल छोड़ बहिष्कार कर रहे हैं कि\\n\\n64\\n00:04:25,422 -> 00:04:33,744\\nऔर ऐसी लड़कियों enroled किया जाना चाहिए और इस तरह एक जगह में, जहां वे एक आवासीय स्कूल में घर से दूर रह सकते हैं कि फैसला किया\\n\\n65\\n00:04:33,744 -> 00:04:37,096\\n24 घंटे एक दिन के लिए\\n\\n66\\n00:04:37,096 -> 00:04:43,342\\nउनके आवास, भोजन, अध्ययन का ध्यान रखा जाता है जहां\\n\\n67\\n00:04:43,342 -> 00:04:46,143\\nबच्चे को एक अनुकूल माहौल में रह सकते हैं तो\\n\\n68\\n00:04:46,143 -> 00:04:50,302\\nऔर पूरी तरह से अपने कौशल विकसित करता है.\\n\\n69\\n00:04:50,302 -> 00:04:56,781\\nमेरे माता पिता ने हमेशा की तरह, वे हो सकता है लेकिन गरीब ने कहा है कि\\n\\n70\\n00:04:56,781 -> 00:04:58,912\\nवे हमेशा सिर्फ हमें लड़कियों को शिक्षित करने के लिए वे सब कुछ देने के लिए तैयार हो जाएगा\\n\\n71\\n00:04:58,912 -> 00:05:01,781\\nहम महिमा का अध्ययन करने और प्राप्त करने का अवसर है ताकि\\n\\n72\\n00:05:01,842 -> 00:05:09,742\\nआजकल, माता - पिता लड़कियों उत्कृष्टता प्राप्त करने और किसी भी पेशे में प्रवेश कर सकते हैं कि पता\\n\\n73\\n00:05:09,742 -> 00:05:14,543\\nऔर हमारे माता पिता भी हम बेटों गया होता की तुलना में उनके लिए अधिक महत्वपूर्ण है कि हमें बताओ\\n\\n74\\n00:05:14,543 -> 00:05:15,861\\nहम चाहते हैं के रूप में हम जितना अध्ययन करना चाहिए और कि\\n\\n75\\n00:05:15,861 -> 00:05:19,571\\nवे हमारे अध्ययन निधि के लिए अपने घरों को बेचने के लिए हो सकता है, भले ही\\n\\n76\\n00:05:19,571 -> 00:05:25,462\\nएक दिन एक आदमी कागज के एक टुकड़े पर लिखी एक पते की खोज में हमारे गांव के लिए आया था\\n\\n77\\n00:05:25,462 -> 00:05:34,501\\nकोई भी उसे मदद कर रहा था, तो मैं मदद कर सकता है यदि सज्जन ने मुझसे पूछा.\\n\\n78\\n00:05:34,501 -> 00:05:40,502\\nमैं सड़क पर एक काले रंग के साइन बोर्ड पर लिखा पता देखा\\n\\n79\\n00:05:40,502 -> 00:05:45,022\\nऔर वह देख रहा था जगह तक पहुंच सकता है कि कैसे उसे समझाया. उन्होंने कहा कि अंग्रेजी में मुझे धन्यवाद दिया.\\n\\n80\\n00:05:45,022 -> 00:05:46,622\\nपास में बैठे थे जो लड़कियों काढ़ शुरू\\n\\n81\\n00:05:46,622 -> 00:05:49,060\\nऔर वे हँस रहे थे क्यों मैं ने उन से पूछा, जब वे वह मुझसे क्या कहा था मुझसे पूछा.\\n\\n82\\n00:05:49,060 -> 00:05:57,537\\nमुझे लगता है वह \"ठनक\" ने कहा था कि उन्हें बताया. उन्होंने कहा कि वे वह अपमानजनक कुछ कहा था, सोचा था, कहा\\n\\n83\\n00:05:57,537 -> 00:06:00,354\\nमाता पिता, हमारे छात्रों का पता है,\\n\\n84\\n00:06:00,354 -> 00:06:02,184\\nकि बाल विवाह गलत है.\\n\\n85\\n00:06:02,184 -> 00:06:08,428\\nवे अपने समुदायों में बच्चों जवान की शादी कर रहे हैं का कहना है कि\\n\\n86\\n00:06:08,428 -> 00:06:12,400\\nऔर कहा कि पड़ोसी देशों के स्कूलों को बंद कर उनकी लड़कियों को भेजने के बजाय उन्हें शादी हो रही है के लिए उन्हें आलोचना.\\n\\n87\\n00:06:12,492 -> 00:06:15,619\\nलेकिन माता - पिता इस मूल्य को समझने\\n\\n88\\n00:06:15,619 -> 00:06:17,987\\nऔर वे अपनी बेटियों को उन्हें युवा बंद का अध्ययन करने और शादी करने के लिए नहीं चाहते हैं का कहना है कि\\n\\n89\\n00:06:20,199 -> 00:06:22,523\\nतो, धीरे धीरे हमारे माता - पिता का मन बनाया, उनकी लड़कियों के प्रति बदल रहा है,\\n\\n90\\n00:06:35,771 -> 00:06:43,345\\nशिक्षा हम के लिए खोज और इन बच्चों की प्रतिभा को बाहर का नेतृत्व कर सकते हैं, जिसके माध्यम से ही मतलब है\\n\\n91\\n00:06:43,345 -> 00:06:46,308\\nइन राष्ट्र का निर्माण होगा जो बच्चों को हो जाएगा.\\n\\n92\\n00:06:49,185 -> 00:06:51,554\\nवर्ग वी में बच्चों के 37%\\n\\n93\\n00:06:51,554 -> 00:06:56,664\\nद्वितीय श्रेणी के लिए बने एक पाठ नहीं पढ़ सकते हैं. अब, आप उस इसलिए पैसे का कहना है कि अगर\\n\\n94\\n00:06:56,664 -> 00:06:59,902\\nऔर लाभ लक्षित जनसंख्या से नहीं पहुंच पा रहे हैं\\n\\n95\\n00:06:59,902 -> 00:07:02,902\\nएक अर्थ में है कि आप सही कर रहे हैं. लेकिन एक सरकार क्या कर सकते हैं?\\n\\n96\\n00:07:02,902 -> 00:07:07,176\\nयह स्कूलों सेट, यह शिक्षकों को काम देता है. तो, हम आपको अधिक जरूरत है\\n\\n97\\n00:07:07,176 -> 00:07:09,944\\nमाता पिता शिक्षक भागीदारी. आप स्थानीय समुदाय होनी चाहिए\\n\\n98\\n00:07:09,944 -> 00:07:16,248\\nजवाबदेही मजबूर. शिक्षकों को पढ़ाने के लिए किया जाना चाहिए.\\n\\n99\\n00:07:16,248 -> 00:07:19,342\\nआप ये सिर्फ सरकारों द्वारा नहीं किया जाता है कि बातें कर रहे हैं कि पता\\n\\n100\\n00:07:19,342 -> 00:07:23,166\\nये सामाजिक जागरूकता, सामाजिक दबाव के द्वारा किया जाता है कि बातें कर रहे हैं\\n\\n101\\n00:07:28,782 -> 00:07:28,862\\nसंविधान 1950 में फंसाया गया था, तर्क दिया गया था\\n\\n102\\n00:07:28,862 -> 00:07:34,617\\nकि शिक्षा एक मौलिक अधिकार नहीं था.\\n\\n103\\n00:07:35,125 -> 00:07:41,256\\nसरकार तो हम वित्तीय संसाधन नहीं है कि कहा क्योंकि\\n\\n104\\n00:07:41,256 -> 00:07:48,059\\nशिक्षा सुनिश्चित करने के लिए. 1950 में भारत की जनसंख्या 350 मिलियन के आसपास थी.\\n\\n105\\n00:07:48,059 -> 00:07:49,780\\nअब, ज़ाहिर है, हम कर रहे हैं एक अरब से अधिक\\n\\n106\\n00:07:49,780 -> 00:07:52,900\\nलेकिन फिर भी उन दिनों में भी सरकार को हम नहीं था कि कहा\\n\\n107\\n00:07:52,900 -> 00:07:54,776\\nवित्तीय संसाधनों, तो हमें दस साल दे. और दस साल के भीतर\\n\\n108\\n00:07:54,776 -> 00:07:58,085\\nहम उत्तरोत्तर सभी बच्चों को स्कूल में हैं देखेंगे\\n\\n109\\n00:07:58,085 -> 00:08:02,979\\n1960 आया 1970 1980, आया, आया, 1990 में आया था\\n\\n110\\n00:08:02,979 -> 00:08:07,782\\nएक ही तर्क है, हम वित्तीय संसाधन नहीं है\\n\\n111\\n00:08:07,782 -> 00:08:10,943\\nऔर इस बीच में, आप क्या देख रहे थे?\\n\\n112\\n00:08:10,943 -> 00:08:17,022\\nभारत बिल्कुल कॉर्पोरेट होता जा रहा था, एक देश में उच्च शिक्षा के लिए\\n\\n113\\n00:08:17,022 -> 00:08:25,300\\nभारतीय प्रौद्योगिकी संस्थान, आईआईटी, बहुत अच्छी तरह से जाना जाता है. प्रबंधन के लिए भारतीय संस्थानों, आईआईएम,\\n\\n114\\n00:08:25,300 -> 00:08:27,422\\nमैं आईआईएम अहमदाबाद में अध्ययन\\n\\n115\\n00:08:27,422 -> 00:08:30,222\\nवे शानदार संस्थानों थे. वे सबसे अच्छे प्रबंधकों निकला\\n\\n116\\n00:08:30,222 -> 00:08:33,585\\nसब जो असाधारण अच्छी तरह से कर रही है दुनिया भर में अब कर रहे हैं\\n\\n117\\n00:08:33,585 -> 00:08:37,340\\nतो, अगर आप उच्च संस्थानों के इन प्रकार को देखें, तो भारत में बहुत अच्छा प्रदर्शन किया था\\n\\n118\\n00:08:37,340 -> 00:08:41,100\\nलेकिन बुनियादी शिक्षा और स्कूली शिक्षा की उपेक्षा अक्षम्य था\\n\\n119\\n00:08:41,100 -> 00:08:44,862\\nऔर यह नागरिक समाज आंदोलन ले लिया\\n\\n120\\n00:08:44,862 -> 00:08:50,176\\nराइट ओ.टी. शिक्षा आंदोलन साल और धक्का और धक्का और धक्का का साल\\n\\n121\\n00:08:50,176 -> 00:08:54,068\\nयह 2003 में एक मौलिक अधिकार बनाया गया था जब तक.\\n\\n122\\n00:08:54,237 -> 00:08:57,269\\nमैं एक बेटी हूँ, मैं एक बेटी हूँ.\\n\\n123\\n00:08:57,269 -> 00:08:59,217\\nमैं एक सितारा बन जाएगा\\n\\n124\\n00:08:59,217 -> 00:09:01,074\\nमैं एक सितारा हो जाएगा ....\\n\\n125\\n00:09:01,120 -> 00:09:04,780\\nभारत अभी भी एक लंबा रास्ता तय किया है,\\n\\n126\\n00:09:04,780 -> 00:09:07,420\\n2009 में स्कूल के बाहर केवल 8 लाख बच्चों के साथ, यह शुरू कर दिया है\\n\\n127\\n00:09:07,420 -> 00:09:11,100\\nप्रत्येक भारतीय बच्चे के लिए शिक्षा के अधिकार को सुनिश्चित करने की दिशा पथ पर चल रहा है.\\n\\n128\\n00:09:11,100 -> 00:09:17,397\\nवास्तव में, ज्यादातर भारतीयों को सभी के लिए शिक्षा सबसे अच्छा निवेश का मानना \\u200b\\u200bहै कि\\n\\n129\\n00:09:17,397 -> 00:09:20,022\\nकि परिवारों और सरकारों बना सकते हैं. इस तरह के निवेश का लाभ\\n\\n130\\n00:09:20,022 -> 00:09:20,942\\nसभी ने आनंद लिया जाएगा.\\n\\n131\\n00:09:20,942 -> 00:09:23,182\\nमैं अपने खुद के पैर पर चढ़ जाएगा\\n\\n132\\n00:09:23,182 -> 00:09:23,980\\nमैं दुनिया को देखना होगा\\n\\n133\\n00:09:23,980 -> 00:09:27,222\\nभारत बुनियादी स्वास्थ्य और शिक्षा के क्षेत्र में निवेश के इन उच्च स्तर को बर्दाश्त कर सकते हैं?\\n\\n134\\n00:09:27,222 -> 00:09:31,781\\nलेकिन सब से ऊपर, प्रश्न प्रस्तुत की मौलिक रास्ता है\\n\\n135\\n00:09:31,781 -> 00:09:35,222\\nभारत, बुनियादी स्वास्थ्य में निवेश करने के लिए नहीं बर्दाश्त कर सकते हैं\\n\\n136\\n00:09:35,222 -> 00:09:39,222\\nबुनियादी शिक्षा, बुनियादी पोषण और जीवन की ऐसी अनिवार्य है?\\n\\n137\\n00:09:39,222 -> 00:09:41,000\\nAmara.org समुदाय द्वारा मूवी',\n", + " 'bytes': 25669,\n", + " 'sha1': 'pinqwbclz990kbc6sxptre474aned66',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97939657,\n", + " 'timestamp': '2013-06-10T20:31:40Z',\n", + " 'user': {'id': 2280090, 'text': 'Rahulkepapa'},\n", + " 'page': {'id': 26536002,\n", + " 'title': 'Sarva shiksha abhiyan, kasturba gandhi balika vidyalaya.webm.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 -> 00:00:06,861\\nSecondo l\\'ultimo censimento, 300 milioni di indiani non sanno né leggere né scrivere, di questi 300 milioni, 200 sono donne.\\n\\n2\\n00:00:06,861 -> 00:00:10,942\\nAlla gente non piacciono le ragazze. \\n\\n3\\n00:00:10,942 -> 00:00:14,666\\nCosa ti piacerebbe essere da grande?\\n4\\n00:00:14,666 -> 00:00:16,211\\nMi piacerebbe essere un pilota.\\n\\n5\\n00:00:16,211 -> 00:00:17,208\\nUn pilota?\\n\\n6\\n00:00:17,208 -> 00:00:19,007\\nE perché?\\n\\n7\\n00:00:19,115 -> 00:00:21,592\\nVoglio vagare nei cieli.\\n\\n8\\n00:00:21,592 -> 00:00:25,784\\nDavvero? Che bello. Così ti piacerebbe volare? Dove vuoi volare?\\n\\n9\\n00:00:25,784 -> 00:00:29,573\\nNei cieli. Nei cieli.\\n\\n10\\n00:00:31,896 -> 00:00:36,295\\nNel 2002, il governo indiano ha emendato la costituzione promulgando il noto ‘Eighty-Sixth amendment act’ (l’ottantaseiesimo atto di emendamento) \\n\\n11\\n00:00:36,295 -> 00:00:41,222\\nil quale ha dichiarato l’istruzione elementare un diritto fondamentale per tutti i bambini.\\n\\n12\\n00:00:41,222 -> 00:00:44,340\\nCon 304 milioni di cittadini indiani ancora non alfabetizzati,\\n\\n13\\n00:00:44,340 -> 00:00:46,782\\nla sfida per l’educazione non è solo un problema di \\n\\n14\\n00:00:46,782 -> 00:00:52,851\\ndichiarazioni dei diritti umani. Per questo motivo, il governo indiano ha lanciato il Sarva Shiksha Abhiyan, il programma di \\'Educazione per tutti \".\\n\\n15\\n00:00:53,435 -> 00:00:56,414\\nBuongiorno signora.\\n\\n16\\n00:00:56,414 -> 00:00:58,908\\nSedetevi ragazze.\\n\\n17\\n00:00:59,600 -> 00:01:04,977\\nPerlopiù finanziato dal governo indiano, questo programma ha ricevuto circa 250 milioni di euro\\n\\n18\\n00:01:04,977 -> 00:01:07,702\\ndalla Banca Mondiale e l\\'Unione Europea.\\n\\n19\\n00:01:08,009 -> 00:01:14,899\\nNel 2009, il Parlamento indiano ha fatto un ulteriore passo in avanti ed ha promulgato un decreto che garantiva il diritto di tutti i bambini ad un’educazione gratuita e obbligatoria \\n\\n20\\n00:01:15,606 -> 00:01:18,321\\ne delegava a tutti gli Stati indiani\\n\\n21\\n00:01:18,490 -> 00:01:20,914\\nil dovere di fornire un’istruzione gratuita e obbligatoria a tutti i bambini\\n\\n22\\n00:01:20,914 -> 00:01:24,612\\ntra i 6 e 14 anni. Inoltre, al fine di aumentare l\\'iscrizione delle bambine\\n\\n23\\n00:01:24,612 -> 00:01:27,456\\nnelle scuole elementari, il governo indiano ha istituito, in tutto il paese, 3.600 scuole residenziali\\n\\n24\\n00:01:27,456 -> 00:01:31,307\\nper ragazze dai 6 a 14 anni \\n\\n25\\n00:01:31,307 -> 00:01:33,517\\nProvenienti dalle comunità più emarginate.\\n\\n26\\n00:01:33,517 -> 00:01:36,222\\nLa nostra squadra è andata in una di queste scuole, a Sarnath,\\n\\n27\\n00:01:36,222 -> 00:01:40,414\\nuna città associata con il Signore Buddha e che si trova nello stato indiano dell\\'Uttar Pradesh.\\n\\n28\\n00:01:40,414 -> 00:01:44,056\\nQui, oltre al curriculum accademico, le ragazze imparano strategie di vita\\n\\n29\\n00:01:44,056 -> 00:01:48,073\\ne le arti dello spettacolo; imparano a conoscere i loro diritti e imparano a difendersi.\\n\\n30\\n00:01:48,073 -> 00:01:51,657\\nInoltre, qui, comprendono il proprio ruolo e il proprio valore nella famiglia e nella società, acquistando in tal modo\\n\\n31\\n00:01:51,657 -> 00:01:56,489\\nfiducia in se stesse. Le ragazze imparano ad essere orgogliose di essere donne.\\n\\n32\\n00:01:58,874 -> 00:02:01,783\\nAncora oggi, vediamo \\n\\n33\\n00:02:01,783 -> 00:02:04,941\\nragazze che vengono maritate da giovanissime.\\n\\n34\\n00:02:04,941 -> 00:02:07,994\\nNei villaggi, i genitori fanno sposare i loro figli quando sono ancora molto giovani.\\n\\n35\\n00:02:07,994 -> 00:02:11,355\\nBisognerà parlare con la gente di questo problema.\\n\\n36\\n00:02:12,063 -> 00:02:13,976\\nUccelli, uccelli, continuano a volare;\\n\\n37\\n00:02:14,038 -> 00:02:18,323\\nUccelli! uccelli! continuano a volare;\\n\\n38\\n00:02:18,323 -> 00:02:23,844\\nFelicemente, Felicemente, cantano\\n\\n39\\n00:02:25,460 -> 00:02:30,241\\ne tra loro uno ne vola via. Quindi, quanti ne restano? Zero\\n\\n40\\n00:02:31,165 -> 00:02:33,599\\nIo credo che stiamo facendo qualcosa che\\n\\n41\\n00:02:33,599 -> 00:02:39,416\\npochissime persone sono in grado di fare. La maggior parte degli insegnanti vanno, insegnano\\n\\n42\\n00:02:39,416 -> 00:02:42,846\\ne guadagnano denaro. Anche io ho uno stipendio\\n\\n43\\n00:02:42,846 -> 00:02:48,277\\nma insieme a questo ricevo tanta simpatia e affetto\\n\\n44\\n00:02:48,277 -> 00:02:51,580\\nda questi bambini.\\n\\n45\\n00:02:51,580 -> 00:02:53,501\\nLe vite di questi bambini, prima, venivano sprecate.\\n\\n46\\n00:02:53,501 -> 00:02:56,022\\nRecuperando questi bambini, li stiamo preparando ad essere buoni cittadini;\\n\\n47\\n00:02:56,022 -> 00:03:00,335\\ne così la nostra società e il nostro paese saranno davvero in grado di svilupparsi. \\n\\n48\\n00:03:00,335 -> 00:03:06,914\\nQuattro piccoli uccelli erano soli mangiare un melograno.\\n\\n49\\n00:03:08,560 -> 00:03:10,990\\nNella scuola dove studiavo prima, nessuno ci insegnava qualcosa. \\n\\n50\\n00:03:10,990 -> 00:03:18,941\\nL\\'insegnante si sedeva sulla sua sedia e non si preoccupava mai degli studenti\\n\\n51\\n00:03:18,941 -> 00:03:21,539\\nanche se litigavano e si davano le botte tra loro.\\n\\n52\\n00:03:21,539 -> 00:03:27,342\\nÈ per questo che stano a casa e non andavo a scuola. \\n\\n53\\n00:03:27,342 -> 00:03:35,459\\nPoi, quando i giornali hanno pubblicato un articolo su questa scuola, mia zia mi ci ha iscritta \\n\\n54\\n00:03:35,459 -> 00:03:38,748\\ne sono venuta a studiare qui\\n\\n55\\n00:03:39,502 -> 00:03:46,141\\nQui, riceviamo quaderni, penne e matite.\\n\\n56\\n00:03:46,141 -> 00:03:51,582\\nSe non abbiamo qualcosa lo chiediamo e le insegnanti ce lo danno immediatamente. \\n\\n57\\n00:03:51,582 -> 00:03:57,834\\nI nostri insegnanti ci dicono sempre di non preoccuparci, di chiedere e di condividere i nostri desideri con loro; ci dicono: \"noi siamo qui per te, non ti preoccupare\"\\n\\n58\\n00:03:59,664 -> 00:04:02,520\\nA volte, addirittura chiamiamo le maestre “mamma”.\\n\\n59\\n00:04:03,182 -> 00:04:07,831\\nIn molti casi le famiglie non mandano i figli a scuola perché non possono permettersi le rette scolastiche. \\n\\n60\\n00:04:07,831 -> 00:04:12,783\\nSentono che devono prima pensare al loro nutrimento e poi alla loro educazione.\\n\\n61\\n00:04:12,783 -> 00:04:18,678\\nPer questo, il nostro governo ha deciso di iscrivere le ragazze in queste scuole. Queste ragazze appartenevano a famiglie che vivono al di sotto della soglia di povertà;\\n\\n62\\n00:04:18,678 -> 00:04:20,862\\nsono giovani ragazze di età compresa tra i 6 e i 14 anni,\\n\\n63\\n00:04:20,862 -> 00:04:25,422\\nche hanno studiato fino alla 1 o 2 o 3 elementare e che hanno abbandonato gli studi.\\n\\n64\\n00:04:25,422 -> 00:04:33,744\\nIl governo, quindi, ha deciso che queste ragazze dovrebbero essere iscritte in un posto dove possono stare lontano da casa, cioè in una scuola residenziale,\\n\\n65\\n00:04:33,744 -> 00:04:37,096\\naperta 24 ore al giorno,\\n\\n66\\n00:04:37,096 -> 00:04:43,342\\nche si occupa del loro alloggio,del cibo, e dello studio \\n67\\n00:04:43,342 -> 00:04:46,143\\nin modo che le bambine possano vivere in un ambiente favorevole\\n\\n68\\n00:04:46,143 -> 00:04:50,302\\nsviluppando liberamente le proprie abilità. \\n\\n69\\n00:04:50,302 -> 00:04:56,781\\nI miei genitori hanno sempre detto che per quanto poveri possano essere,\\n\\n70\\n00:04:56,781 -> 00:04:58,912\\nsarebbero sempre pronti a rinunciare a tutto quello che hanno per la mia educazione\\n\\n71\\n00:04:58,912 -> 00:05:01,781\\nin modo che io abbia la possibilità di studiare e di raggiungere i miei obiettivi. \\n\\n72\\n00:05:01,842 -> 00:05:09,742\\nAl giorno d\\'oggi, i genitori sanno che le ragazze possono raggiungere l\\'eccellenza e inserirsi in qualsiasi professione.\\n\\n73\\n00:05:09,742 -> 00:05:14,543\\nI nostri genitori ci dicono anche che per loro siamo più importanti di quanto non sarebbero stati dei figli maschi\\n\\n74\\n00:05:14,543 -> 00:05:15,861\\ne che quindi dobbiamo studiare quanto vogliamo\\n\\n75\\n00:05:15,861 -> 00:05:19,571\\nanche se dovesse significare vendere la loro case per finanziare i nostri studi.\\n\\n76\\n00:05:19,571 -> 00:05:25,462\\nUn giorno un uomo è arrivato nel nostro paese in cerca di un indirizzo scritto su un pezzo di carta.\\n\\n77\\n00:05:25,462 -> 00:05:34,501\\nNessuno è stato in grado di aiutarlo. Per questo il signore ha chiesto a me se potevo aiutarlo.\\n\\n78\\n00:05:34,501 -> 00:05:40,502\\nAvevo visto l\\'indirizzo scritto su un cartello bianco sulla strada\\n\\n79\\n00:05:40,502 -> 00:05:45,022\\ne gli ho spiegato come raggiungere il luogo che cercava. Mi ha ringraziato in inglese.\\n\\n80\\n00:05:45,022 -> 00:05:46,622\\nLe ragazze che erano sedute vicino a me subito dopo cominciarono a ridacchiare\\n\\n81\\n00:05:46,622 -> 00:05:49,060\\ne quando ho chiesto loro perché stavano ridendo, mi hanno chiesto che cosa mi avesse detto l’uomo. \\n\\n82\\n00:05:49,060 -> 00:05:57,537\\nHo detto loro che aveva detto \"Grazie\"; loro mi risposero che avevano pensato mi avesse detto qualcosa di abusivo. \\n\\n83\\n00:05:57,537 -> 00:06:00,354\\nI genitori dei nostri studenti sanno\\n\\n84\\n00:06:00,354 -> 00:06:02,184\\nche far sposare i bambini è sbagliato;\\n\\n85,\\n00:06:02,184 -> 00:06:08,428\\nCi raccontano che, nelle loro comunità, i bambini vengono fatti sposare da giovanissimi \\n\\n86\\n00:06:08,428 -> 00:06:12,400\\ne che i vicini li criticano per il fatto che mandano le loro ragazze a scuole invece di farle sposare.\\n\\n87\\n00:06:12,492 -> 00:06:15,619\\nAl contrario i genitori delle nostre alunne comprendono il valore dello studio\\n\\n88\\n00:06:15,619 -> 00:06:17,987\\ne dicono che vogliono far studiare le loro figlie invece di farle sposare da giovanissime. \\n\\n89\\n00:06:20,199 -> 00:06:22,523\\nIn questo modo, lentamente, l’atteggiamento mentale dei nostri genitori verso le loro ragazze, sta cambiando.\\n\\n90\\n00:06:35,771 -> 00:06:43,345\\nL\\'educazione è l\\'unico mezzo attraverso il quale possiamo cercare di tirare fuori i talenti di queste bambine \\n\\n91\\n00:06:43,345 -> 00:06:46,308\\nperché queste saranno le ragazze che potranno costruire la nostra nazione.\\n\\n92,\\n00:06:49,185 -> 00:06:51,554\\nIl 37% dei bambini in 5 elementare\\n93\\n00:06:51,554 -> 00:06:56,664\\nnon sono in grado di leggere un testo pensato per la 2 elementare. Ora, se uno quindi critica il governo dicendo che il denaro\\n\\n94\\n00:06:56,664 -> 00:06:59,902\\ne i benefici non raggiungono la popolazione target\\n\\n95\\n00:06:59,902 -> 00:07:02,902\\nin un certo senso ha ragione. Ma cosa può fare il governo?\\n\\n96\\n00:07:02,902 -> 00:07:07,176\\nUn governo costruisce le scuole, assume gli insegnanti ma c’è bisogno di qualcos’altro, come ad esempio \\n97\\n00:07:07,176 -> 00:07:09,944\\nil coinvolgimento di insegnanti e genitori insieme. È necessario che la comunità locale\\n\\n98\\n00:07:09,944 -> 00:07:16,248\\nrichieda alle autorità un senso di responsabilità. Gli insegnanti devono essere fatti per insegnare.\\n\\n99\\n00:07:16,248 -> 00:07:19,342\\nQueste sono cose che non sono solo messe in atto dai governi.\\n\\n100\\n00:07:19,342 -> 00:07:23,166\\nQueste sono cose che si ottengono attraverso la pressione sociale e con una consapevolezza per il sociale.\\n\\n101\\n00:07:28,782 -> 00:07:28,862\\nQuando nel 1950 fu promulgata la Costituzione, si disse\\n\\n102\\n00:07:28,862 -> 00:07:34,617\\nche l\\'istruzione non era un diritto fondamentale\\n\\n103\\n00:07:35,125 -> 00:07:41,256\\nperché il governo non aveva le risorse finanziarie\\n\\n104\\n00:07:41,256 -> 00:07:48,059\\nal fine di garantire l\\'istruzione. Allora la popolazione indiana era di circa 350 milioni.\\n\\n105\\n00:07:48,059 -> 00:07:49,780\\nOra, naturalmente, ci sono più di un miliardo di persone in India.\\n\\n106\\n00:07:49,780 -> 00:07:52,900\\nDunque il governo disse che, anche allora, non avevano le \\n\\n107\\n00:07:52,900 -> 00:07:54,776\\nrisorse finanziarie adatte, e che dunque dovevamo aspettare dieci anni e che poi nel giro di dieci anni\\n\\n108\\n00:07:54,776 -> 00:07:58,085\\ntutti i bambini avrebbero avuto un posto a scuola.\\n\\n109\\n00:07:58,085 -> 00:08:02,979\\nIl 1960 è arrivato, poi il 1970, il 1980 e anche il 1990.\\n\\n110\\n00:08:02,979 -> 00:08:07,782\\nSempre gli stessi argomenti: non abbiamo le risorse finanziarie.\\n\\n111\\n00:08:07,782 -> 00:08:10,943\\nPerò nel frattempo, a cosa stavamo assistendo?\\n\\n112\\n00:08:10,943 -> 00:08:17,022\\nL’India stava assumendo un ruolo sempre più aziendale; stava diventando un paese per l\\'istruzione superiore.\\n\\n113\\n00:08:17,022 -> 00:08:25,300\\n‘L’Istituto indiano di tecnologia’, le IIt, è molto conosciuto così come ‘l’Istituto indiano di Gestione’, i IIMS.\\n\\n114\\n00:08:25,300 -> 00:08:27,422\\nHo studiato al IIM di Ahmedabad.\\n\\n115\\n00:08:27,422 -> 00:08:30,222\\nErano istituzioni fantastici. Hanno formato i migliori gestori\\n\\n116\\n00:08:30,222 -> 00:08:33,585\\nche sono richiesti ormai in tutto il mondo.\\n\\n117\\n00:08:33,585 -> 00:08:37,340\\nSe si prendono in considerazione questi istituti superiori, l\\'India ha raggiunto degli ottimi obiettivi\\n\\n118\\n00:08:37,340 -> 00:08:41,100\\nma la negligenza nei confronti dell’istruzione di base e il progetto di scolarizzazione era di certo imperdonabile.\\n\\n119\\n00:08:41,100 -> 00:08:44,862\\nCi sono voluti il movimento della società civile e\\n\\n120\\n00:08:44,862 -> 00:08:50,176\\nil movimento per il ‘Diritto all’educazione’- poi anni e anni di pressione, pressione e pressione\\n121\\n00:08:50,176 -> 00:08:54,068\\nfino a che, il diritto all’educazione, non è stato reso un diritto fondamentale nel 2003.\\n\\n122\\n00:08:54,237 -> 00:08:57,269\\nSono una figlia, io sono una figlia.\\n\\n123\\n00:08:57,269 -> 00:08:59,217\\nDiventerò una star.\\n\\n124\\n00:08:59,217 -> 00:09:01,074\\nDiventerò una star ....\\n\\n125\\n00:09:01,120 -> 00:09:04,780\\nAnche se l\\'India ha ancora una lunga strada da percorrere,\\n\\n126\\n00:09:04,780 -> 00:09:07,420\\ncon 8 milioni di bambini ancora non iscritti a scuola nel 2009, il paese si sta incamminando\\n\\n127\\n00:09:07,420 -> 00:09:11,100\\nsul sentiero per garantire il diritto all\\'istruzione ad ogni bambino indiano.\\n\\n128\\n00:09:11,100 -> 00:09:17,397\\nIn realtà, la maggior parte degli indiani crede che l\\'istruzione per tutti sia il miglior investimento\\n\\n129\\n00:09:17,397 -> 00:09:20,022\\nche le famiglie ed i governi possano fare. I benefici di tali investimenti\\n\\n130\\n00:09:20,022 -> 00:09:20,942\\nsaranno apprezzati da tutti.\\n\\n131\\n00:09:20,942 -> 00:09:23,182\\nSalirò sui miei piedi.\\n\\n132\\n00:09:23,182 -> 00:09:23,980\\nVedrò il mondo.\\n\\n133\\n00:09:23,980 -> 00:09:27,222\\nL’India può permettersi i costi di questi investimenti nella sanità e nell’istruzione di base?\\n\\n134\\n00:09:27,222 -> 00:09:31,781\\nma, soprattutto, un modo migliore di porre la domanda è\\n\\n135\\n00:09:31,781 -> 00:09:35,222\\nl’India può permettersi di non investire nella sanità di base,\\n\\n136\\n00:09:35,222 -> 00:09:39,222\\nnell’istruzione elementare, nella nutrizione di base e nelle questioni essenziali per la vita?\\n\\n137\\n00:09:39,222 -> 00:09:41,000\\nSottotitoli da parte della comunità Amara.org',\n", + " 'bytes': 14403,\n", + " 'sha1': '4yepviz3iisgzmdm60tt3oen3q0ey80',\n", + " 'parent_id': 97939555,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101588954,\n", + " 'timestamp': '2013-08-09T21:18:51Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26544483,\n", + " 'title': 'Robin Stjernberg - You presentation (svenska).ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,259 --> 00:00:01,096\\nHallo an alle!\\n\\n2\\n00:00:01,096 --> 00:00:02,116\\nIch heiße Robin Stjernberg -\\n\\n3\\n00:00:02,116 --> 00:00:07,792\\n- und Ich repräsentiere Schweden im der Eurovision Song Contest 2013, mit meinem Song mit dem Titel \"You\".',\n", + " 'bytes': 250,\n", + " 'sha1': 'pyfxbdexbycimzg5rf8g9m7ka15v6la',\n", + " 'parent_id': 97795884,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101589127,\n", + " 'timestamp': '2013-08-09T21:22:19Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26544637,\n", + " 'title': 'Robin Stjernberg - You presentation (svenska).ogv.hu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,259 --> 00:00:01,096\\nHello mindenki!\\n\\n2\\n00:00:01,096 --> 00:00:02,116\\nAz én nevem Robin Stjernberg -\\n\\n3\\n00:00:02,116 --> 00:00:07,792\\n- és én képviselem Svédországot a 2013-as Eurovíziós Dalfesztiválon, a \"You\" című dalommal.',\n", + " 'bytes': 247,\n", + " 'sha1': 'mhhdkrjkyhupop4gwoikb1ocp65ffdv',\n", + " 'parent_id': 97796439,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101589333,\n", + " 'timestamp': '2013-08-09T21:26:12Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26544868,\n", + " 'title': 'Ryan Dolan - Only Love Survives presentation.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,100 --> 00:00:00,836\\nHello!\\n\\n2\\n00:00:00,836 --> 00:00:04,542\\nMy name is Ryan Dolan, and I\\'m singing \"Only Love Survives\".',\n", + " 'bytes': 132,\n", + " 'sha1': 'iyz3o07dowr5nf0nhb9erp8tlbmila5',\n", + " 'parent_id': 97797155,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101589393,\n", + " 'timestamp': '2013-08-09T21:27:25Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26544876,\n", + " 'title': 'Ryan Dolan - Only Love Survives presentation.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,100 --> 00:00:00,836\\nHallå!\\n\\n2\\n00:00:00,836 --> 00:00:04,542\\nJag heter Ryan Dolan, och jag sjunger \"Only Love Survives\".',\n", + " 'bytes': 132,\n", + " 'sha1': '0pyg910rck1bh7d6n71akpsoy6z6xff',\n", + " 'parent_id': 97797180,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101564271,\n", + " 'timestamp': '2013-08-09T11:53:51Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26544894,\n", + " 'title': \"Amandine Bourgeois - L'enfer et moi presentation (Français).ogv.en.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,230 --> 00:00:01,000\\nHello!\\n\\n2\\n00:00:01,000 --> 00:00:03,000\\nMy name is Amandine Bourgeois.\\n\\n3\\n00:00:03,001 --> 00:00:05,492\\nMy song \"L\\'enfer et moi\" is competing in -\\n\\n4\\n00:00:05,492 --> 00:00:09,138\\n- the Eurovision Song Contest in Malmö, 2013.',\n", + " 'bytes': 258,\n", + " 'sha1': '47ty0i7x1g6rwf42kxpbd966yyk0z1r',\n", + " 'parent_id': 97797241,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101587717,\n", + " 'timestamp': '2013-08-09T20:52:31Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26545139,\n", + " 'title': \"Marco Mengoni - L'essenziale presentation (Italiano).ogv.en.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,345 --> 00:00:02,560\\nHi, I\\'m Marco Mengoni.\\n\\n2\\n00:00:02,560 --> 00:00:06,713\\nThe title of my song is\\n\"L\\'essenziale\".',\n", + " 'bytes': 127,\n", + " 'sha1': 'kblw01j4gtw0mojvwzojlo0k2jqropf',\n", + " 'parent_id': 97798612,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101587790,\n", + " 'timestamp': '2013-08-09T20:54:03Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26545170,\n", + " 'title': \"Marco Mengoni - L'essenziale presentation (Italiano).ogv.sv.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,345 --> 00:00:02,560\\nHej, jag heter Marco Mengoni.\\n\\n2\\n00:00:02,560 --> 00:00:06,713\\nMin låt heter\\n\"L\\'essenziale\".',\n", + " 'bytes': 125,\n", + " 'sha1': 'saurbx8enja0n29uiz1kkdfi5hs0mcz',\n", + " 'parent_id': 97798580,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97798952,\n", + " 'timestamp': '2013-06-08T14:35:11Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26545279,\n", + " 'title': 'Stefan Caplan.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:00,391 --> 00:00:03,572 Ja, hej! Jag heter Stefan Caplan och kommer från Mölndal - 2 00:00:03,572 --> 00:00:07,613 - som är en del utav \"Västra Gö...\\'',\n", + " 'text': '1\\n00:00:00,391 --> 00:00:03,572\\nJa, hej! Jag heter Stefan Caplan och kommer från Mölndal -\\n\\n2\\n00:00:03,572 --> 00:00:07,613\\n- som är en del utav \"Västra Götaland, västra\", som valkretsen heter.\\n\\n3\\n00:00:07,613 --> 00:00:13,215\\nJag kom in i Riksdagen 2010 och sitter i Försvarsutskottet.\\n\\n4\\n00:00:13,215 --> 00:00:17,976\\nOch jag har, tack och lov, bara fått ett utskott som jag kan lägga min tid och kraft i.',\n", + " 'bytes': 416,\n", + " 'sha1': 'joqxq9qqx0tjogn28njrwt3bhv7pfy0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101585834,\n", + " 'timestamp': '2013-08-09T20:16:40Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26545392,\n", + " 'title': 'El Sueño de Morfeo - Contigo hasta el final presentation (Español).ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,182 --> 00:00:01,566\\nHej, jag heter David.\\n\\n2\\n00:00:01,566 --> 00:00:02,619\\nHejsan! Jag heter Juan.\\n\\n3\\n00:00:02,619 --> 00:00:05,257\\nHej, jag heter Raquel. Vi är El Sueño de Morfeo.\\n\\n4\\n00:00:05,257 --> 00:00:09,519\\n...och \"Contigo hasta el final\" är vår låt i Eurovision 2013.',\n", + " 'bytes': 292,\n", + " 'sha1': 'kh80ja7li9ve5t9uht219luy04sjaqf',\n", + " 'parent_id': 97799341,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101586335,\n", + " 'timestamp': '2013-08-09T20:25:13Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26545569,\n", + " 'title': 'El Sueño de Morfeo - Contigo hasta el final presentation (Español).ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,182 --> 00:00:01,566\\n¡Hola! Soy David.\\n\\n2\\n00:00:01,566 --> 00:00:02,619\\nMuy buena. Soy Juan.\\n\\n3\\n00:00:02,619 --> 00:00:05,257\\n¡Hola! Soy Raquel. Somos El Sueño de Morfeo.\\n\\n4\\n00:00:05,257 --> 00:00:09,519\\n...Y \"Contigo hasta el final\" es nuestra canción para Eurovision 2013.',\n", + " 'bytes': 289,\n", + " 'sha1': 'g2tj8ncac024tfeuoe2n3wlbcej2ld0',\n", + " 'parent_id': 97800022,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101587662,\n", + " 'timestamp': '2013-08-09T20:51:13Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26545817,\n", + " 'title': \"Marco Mengoni - L'essenziale presentation (Italiano).ogv.it.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,345 --> 00:00:02,560\\nCiao! Sono Marco Mengoni.\\n\\n2\\n00:00:02,560 --> 00:00:06,713\\nQuesto è il titolo della mia canzone:\\n\"L\\'essenziale\".',\n", + " 'bytes': 145,\n", + " 'sha1': '05k4fsd9dh41dqgldijl74cyg8f9o4l',\n", + " 'parent_id': 97800957,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101585058,\n", + " 'timestamp': '2013-08-09T20:04:09Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26552564,\n", + " 'title': 'Eyþór Ingi - Ég á líf presentation (Íslenska).ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,128 --> 00:00:00,669\\nHallo!\\n\\n2\\n00:00:00,669 --> 00:00:02,847\\nIch heiße Eyþór, und...\\n\\n3\\n00:00:02,847 --> 00:00:05,369\\nDer Song heißt \"Ég á líf\".',\n", + " 'bytes': 162,\n", + " 'sha1': 'k0nbdvtgjx57389wcz5ryvknjd94ee6',\n", + " 'parent_id': 101514478,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101589492,\n", + " 'timestamp': '2013-08-09T21:28:24Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26552591,\n", + " 'title': 'Ryan Dolan - Only Love Survives presentation.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,100 --> 00:00:00,836\\nHallo!\\n\\n2\\n00:00:00,836 --> 00:00:04,542\\nIch heiße Ryan Dolan, und ich singe \"Only Love Survives\".',\n", + " 'bytes': 130,\n", + " 'sha1': 'pgggii9wbl58pxzr4lq03ibzekz441t',\n", + " 'parent_id': 97825444,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101564502,\n", + " 'timestamp': '2013-08-09T11:59:34Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26557703,\n", + " 'title': \"Cezar - It's My Life presentation (Română).ogv.ro.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1\\n00:00:00,160 --> 00:00:01,153\\nSalut!\\n\\n2\\n00:00:01,153 --> 00:00:03,361\\nSunt Cezar din România -\\n\\n3\\n00:00:03,361 --> 00:00:07,261\\n- și cânt la Eurovision piesa „It's My Life”.\",\n", + " 'bytes': 182,\n", + " 'sha1': '7vtdvadvjda8vyscxgr4c9uxfk4kn3m',\n", + " 'parent_id': 97967394,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101564595,\n", + " 'timestamp': '2013-08-09T12:02:01Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26557761,\n", + " 'title': \"Cezar - It's My Life presentation (Română).ogv.sv.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,160 --> 00:00:01,153\\nHej!\\n\\n2\\n00:00:01,153 --> 00:00:03,361\\nJag är Cezar, från Rumänien -\\n\\n3\\n00:00:03,361 --> 00:00:07,261\\n- och i Eurovision sjunger jag låten \"It\\'s My Life\".',\n", + " 'bytes': 189,\n", + " 'sha1': '3t8wdbdi3x8h8zfn7yvdp049tvuldxn',\n", + " 'parent_id': 97892182,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101564983,\n", + " 'timestamp': '2013-08-09T12:11:54Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26558071,\n", + " 'title': \"Cezar - It's My Life presentation (Română).ogv.en.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,160 --> 00:00:01,153\\nHello!\\n\\n2\\n00:00:01,153 --> 00:00:03,361\\nI\\'m Cezar, from Romania -\\n\\n3\\n00:00:03,361 --> 00:00:07,261\\n- and i sing the Eurovision song \"It\\'s My Life\".',\n", + " 'bytes': 179,\n", + " 'sha1': '3nwfgkhq81kxsnyrq1tfn0rhkuz3nww',\n", + " 'parent_id': 97892173,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97931407,\n", + " 'timestamp': '2013-06-10T17:41:49Z',\n", + " 'user': {'text': '79.10.180.60'},\n", + " 'page': {'id': 26559767,\n", + " 'title': 'NREGA.webm.hi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:03,596 -> 00:00:05,034\\nभारत सामाजिक नीति के क्षेत्र में अग्रणी है और कई लोग इसे मान्यता देना भूल जाते हैं कि;\\n\\n2\\n00:00:05,034 -> 00:00:10,700\\n क्योंकि हम इस देश के इस देश की आर्थिक क्षेत्र में हुए \\n\\n3\\n00:00:10,700 -> 00:00:14,017\\nअद्भुत उपलब्धियों से मंत्रमुग्ध हैं \\n\\n\\n4\\n00:00:14,017 -> 00:00:16,192\\nजबरदस्त आर्थिक समृद्धि और प्रगति\\n\\n5\\n00:00:16,192 -> 00:00:20,477\\nलेकिन मानव विकास के विचार और एमडीजी कहते हैं की यह पर्याप्त नहीं है .\\n\\n6\\n00:00:20,477 -> 00:00:23,771\\nसमाचार पत्र केवल भारत के विकास की कहानी पर कवर स्टोरी नहीं कर सकते\\n.\\n\\n7\\n00:00:23,771 -> 00:00:27,968\\nआपको लोगों के जीवन में क्या हो रहा है उस पर नजर भी रखनी है.\\n\\n8\\n00:00:27,968 -> 00:00:32,083\\nक्या हम विश्वास के साथ खड़े हो के कह सकते हैं की भारत मे पर्यावरण बेहतर है ?\\n\\n9\\n00:00:32,083 -> 00:00:35,568\\nक्या हम विश्वास के साथ खड़े हो के कह सकते हैं की \\nस्कूली शिक्षा की गुणवत्ता में सुधार हुआ है?\\n\\n10\\n00:00:35,568 -> 00:00:40,205\\nक्या भारत आत्मविश्वास से खड़े हो के कह सकतता हैं की \\nपीने के पानी के लिए उपयोग बहुत बेहतर है?\\n\\n11\\n00:00:40,205 -> 00:00:43,936\\nसमाज में प्रगति मानव विकास के इन संकेतकों के द्वारा परखा जाना चाहिए.\\n\\n12\\n00:00:43,936 -> 00:00:46,772\\nप्रधान होने का क्या मतलब है?\\n\\n13\\n00:00:48,836 -> 00:00:51,819\\nप्रधान होबे का मतलब है मेरे गाँव की गरीबी दूर हो \\n\\n14\\n00:00:51,819 -> 00:00:54,637\\nमें जन जन तक पहुंचू सबकी सेवा करूँ ख्याल करूँ \\n\\n15\\n00:00:54,637 -> 00:00:57,836\\nमेरे गाँव में क्या चीज़ की जरुरत है \\n\\n16\\n00:00:57,836 -> 00:01:00,866\\nउसे मैं पंचायत से दिलवाउं \\n\\n17\\n00:01:00,866 -> 00:01:06,751\\nआर्थिक लाभ वितरित करने के लिए आदेश में\\n2005 में अधिक समान विकास,, भारत\\n\\n18\\n00:01:06,751 -> 00:01:10,702\\nसरकार ने महात्मा गांधी राष्ट्रीय पारित\\nग्रामीण रोजगार गारंटी अधिनियम के फलस्वरूप\\n\\n19\\n00:01:10,702 -> 00:01:15,235\\nएक महत्वाकांक्षी कार्यक्रम शुरू किया\\nहर साल कम से कम 100 दिनों के लिए रोजगार देने की एक कानूनी गारंटी प्रदान करते हैं\\n\\n20\\n00:01:15,235 -> 00:01:21,349\\nसांविधिक न्यूनतम मजदूरी पर,\\nसभी ग्रामीण परिवार के सभी वयस्क सदस्यों के लिए,\\n\\n21\\n00:01:21,349 -> 00:01:24,636\\nजो कि विकास योजनाओं में काम करने को तैयार थे\\nजिनके अपने समुदायों के लिए भी ये फायदेमंद है.\\n\\n22\\n00:02:06,213 -> 00:02:07,944\\nरोजगार गारंटी अधिनियम एक अधिनियम है के लोगों को गारंटी देता है \\n\\n23\\n00:02:07,944 -> 00:02:08,809\\nकी 15 दिनों के भीतर स्थानीय सार्वजनिक कार्यों में उन्हें नियोजित किया जाना है.\\n\\n24\\n00:02:08,809 -> 00:02:09,242\\nवे काम के लिए आते हैं और अगर रोजगार नहीं मिलता है, तो रोजगार भत्ता दिया जाता है.\\n\\n25\\n00:02:09,242 -> 00:02:09,458\\nयह एक बहुत ही प्रगतिशील कानून है,वास्तव में बहुत ही अनोखी ,. एक राजनीतिक चमत्कार सा हो गया था जो.\\n\\n26\\n00:02:09,458 -> 00:02:09,566\\nहमारी टीम वाराणसी, उत्तर प्रदेश के उत्तरी भारतीय राज्य में स्थित शहर के पास एक गांव का दौरा किया.\\n\\n27\\n00:02:09,566 -> 00:02:09,620\\nइधर, एक स्थानीय गैर सरकारी संगठन, महिला स्वरोजगार समिति, या एमएसएस, गांव महिलाओं के बीच जागरूकता बढ़ाने को गई है\\n\\n28\\n00:02:09,620 -> 00:02:09,647\\nआयोजन स्वयं सहायता समूहों, नेतृत्व कौशल प्रशिक्षण आयोजित करने और महिलाओं के उपयोग नरेगा, की मदद\\n\\n29\\n00:02:09,647 -> 00:02:09,661\\nग्रामीण रोजगार गारंटी योजना भारत सरकार द्वारा शुरू की.\\n\\n30\\n00:02:09,661 -> 00:02:09,675\\nभारतीय संविधान में लिखा है, नरेगा में महिलाओं की भागीदारी होनी चाहिए 33% होनी चाहिए.\\n\\n31\\n00:02:09,675 -> 00:02:13,635\\nऔर आप नीमरखौना की ग्राम पंचायत में इस का एक वास्तविक जीवन उदाहरण देख रहे हैं.\\n\\n32\\n00:02:18,937 -> 00:02:30,833\\nआप देख सकते हैं, यहां कामकाजी महिलाओं की संख्या अधिक हैं.\\n\\n33\\n00:02:30,833 -> 00:02:32,601\\nहम इस गांव में कुछ महिलाओं के साक्षात्कार किया और उन से पूछा की कैसे उनके जीवन बदल गया था\\n\\n34\\n00:02:32,601 -> 00:02:33,485\\nनरेगा के लिए काम करने के बाद और महिला स्वरोजगार समिति जैसे गैर सरकारी संगठनों के साथ.\\n\\n35\\n00:02:33,485 -> 00:02:34,369\\nपैसा निकल के घर लेन से बहुत काम कर सकते हैं \\n\\n36\\n00:02:34,369 -> 00:02:37,886\\nउदाहरण के लिए हमारे पास पर्याप्त पैसा नहीं है इसलिए हमारे बच्चों को प्राथमिक स्कूल के बाद बाहर पढाना छोड़ दिया है.\\n\\n37\\n00:02:37,886 -> 00:02:42,645\\nवे महंगे हैं क्योंकि हम अच्छे स्कूलों के लिए उन्हें नहीं भेज सकते हैं .. तो, मैंने अपने पति से कहा\\n\\n38\\n00:02:42,645 -> 00:02:45,024\\nमैं नरेगा में काम करती हुं स्कूल भुगतान के लिए और बच्चे का खर्च तुम चलाओ.\\n\\n39\\n00:02:47,404 -> 00:02:49,501\\nप्रगति का एक बहुत बनाया गया है. जहां पहले भोजन और दवाओं के लिए कोई पैसा नहीं था , अब वहाँ है.\\n\\n40\\n00:02:49,501 -> 00:02:54,168\\nजहां पहले हम, साक्षर और जनता में विश्वास के साथ बात करने में सक्षम नहीं थे\\n\\n41\\n00:02:54,168 -> 00:02:55,871\\nअब हम भी गांव के प्रधान बन के खड़े हो सकते हैं. और यहां तक \\u200b\\u200b कि उन्हे तंग करने की हिम्मत कर सक्ते हैं\\n\\n42\\n00:02:55,871 -> 00:02:56,722\\nयह एक कानून है. यह सिर्फ एक योजना नहीं है बल्कि एक क़ानूनी अधिकार है. और मुझे लगता है कि यह वास्तव में अद्भुत हो सकता है \\n\\n43\\n00:02:56,722 -> 00:02:57,148\\nसिर्फ़ सुरक्षा उपलब्ध कराने के मामले में ही नहीं,.\\n\\n44\\n00:02:57,148 -> 00:02:57,361\\nपहला उद्देश्य बिल्कुल लोगों के लिए कुछ सामाजिक सुरक्षा के प्रकार प्रदान करने का है\\n\\n45\\n00:02:57,361 -> 00:02:57,467\\nलेकिन यह भी बहुत सारे दिलचस्प, सामाजिक, आर्थिक और राजनीतिक परिवर्तन ला सकता है.\\n\\n46 \\n00:02:57,467 -> 00:02:57,520\\nयह माइग्रेशन को कम कर देता है, क्योंकि यह स्थानीय संस्थाओं के माध्यम से कार्यान्वित किया जाता है इस के माध्यम से एक नया जीवन देता है. \\n\\n47\\n00:02:57,520 -> 00:02:57,547\\nयह कानून, महिलाओं को घरों से बाहर आने के लिए और सार्वजनिक क्षेत्र का हिस्सा बनने के लिए मदद करता है\\n\\n48\\n00:03:38,430 -> 00:03:41,903\\nअब तक सबसे बड़ी चुनौती है अपने घरों के बाहर महिलाओं को लाना हीं सबसे बड़ी चुनौती है \\n\\n49\\n00:03:41,903 -> 00:03:41,953\\n\\nक्योंकि वो हमेशा घूँघट में रही हैं जो हमारी भारतीय संस्कृति है \\n50\\n00:03:54,176 -> 00:03:56,569\\nमैं अपने घर के बाहर कभी नहीं गया था, इसलिए मैं अपने चार दीवारों के बाहर क्या हुआ पता नहीं था.\\n\\n51\\n00:03:56,569 -> 00:04:01,227\\nमैंने सोचा कि .एनजीओ लोग अपने पैसे के साथ भाग गया होगा \\n\\n52\\n00:04:01,227 -> 00:04:03,104\\nमैने सोचा की बैठ के के उनकी बात सुनने से अपना समय बर्बाद करने के बजाय अपने घर के काम करन सही है।\\n\\n53\\n00:04:03,104 -> 00:04:09,367\\nतो, मैंने उन्हें प्रोत्साहित नहीं किया.\\n\\n54\\n00:04:15,500 -> 00:04:26,360\\nउस समय मेरे कई बार मन करने पे भी वे लोग आते रह गये. वे लोग अपने फायदे के लिए ही आते थे. \\n\\n55\\n00:04:26,360 -> 00:04:40,296\\nपर धीरे धीरे इनकी बातें सुन के मुझे एहसास हुआ की नहीं जो ये लोग कह रहे है वो सही है. \\n\\n56\\n00:04:40,296 -> 00:04:49,767\\nतो, मैं उनके साथ काम करने के लिए अपने दैनिक गतिविधियों से समय निकाल लिया.\\n\\n57\\n00:04:49,767 -> 00:04:59,089\\nहम छोटे गतिविधियों कर रही है और कुछ पैसे कमाने शुरू कर दिया.\\n\\n58\\n00:04:59,089 -> 00:05:06,269\\nहमने एक महिलाओं की समूह बनाया.\\n\\n59\\n00:05:06,269 -> 00:05:13,450\\nयह हमारी सामूहिक आवाज़ और शक्ति में वृद्धि हुई.\\n\\n60\\n00:05:13,450 -> 00:05:25,433\\nउस मुझे ये लगा की इस चार दिवारी के बाहर इस दुनिया में थोडा सा अपनी मर्जी से जीने का हक भी मिला और \\n\\n61\\n00:05:25,433 -> 00:05:27,421\\n मैं अन्य महिलाओं को भी वो अधिकार दिलाने का हक मिला \\n\\n62\\n00:05:27,421 -> 00:05:28,415\\nऔर उनकी इच्छा के अनुसार उनके जीवन जीने की महिलाओं को समझ आ गयी \\n\\n63\\n00:05:28,415 -> 00:05:29,410\\nमहिलाओं के नेतृत्व कौशल और विश्वास हासिल हो जाता है, तो वे समझते हैं\\n\\n64\\n00:05:29,410 -> 00:05:31,369\\nनरेगा वएक कानून है ,और हमारा उसमे सहयोग करना और उसमे जिनकी जो जरूरते हैं वो हक पाना ये ज़िम्मेदरी पंचायत के नागरिक होने के नाते महिलाओं की भी बनती है \\n\\n65\\n00:05:31,369 -> 00:06:49,423\\nऔर हमें और दूसरों को अपने अधिकारों का उपयोग और उनकी जरूरतों को पूरा करने के लिए समर्थन करते हैं.\\n\\n66\\n00:06:49,423 -> 00:07:01,995\\nलेकिन रोजगार गारंटी अधिनियम के बारे में अलग क्या है\\n\\n67\\n00:07:01,995 -> 00:07:08,281\\nवो बेहतर शासन और जवाबदेही सुनिश्चित करने के लिए जो अधीनियम के खंड हैं वो है। \\n\\n68\\n00:07:08,281 -> 00:07:11,424\\nसामाजिक अंकेक्षण, जो यह लोगों द्वारा कार्यक्रम के कामकाज की अंकेक्षण अनिवार्य है\\n\\n69\\n00:07:11,424 -> 00:07:12,996\\nऔर वास्तव में सरकार भी लगातार सामाजिक अंकेक्षण प्रोत्साहित कर रही है.\\n\\n70\\n00:07:12,996 -> 00:07:13,782\\nलोगों के समूह एक गांव में जा सकते हैं, एक सार्वजनिक सभा के लिए कहते हैं, खातों के लिए पूछते हैं \\n\\n71\\n00:07:13,782 -> 00:07:14,175\\nलोगों से पूछते हैं की उनके मजदूरी का भुगतान किया गया है की नहीं \\n72\\n00:07:14,175 -> 00:07:14,371\\nआप काम के लिए 100 दिनों पाने वाले थे. क्या यह हो रह है?\\n\\n73\\n00:07:14,371 -> 00:07:14,469\\nक्या आपको एक नौकरी की पेशकश की थी?\\n\\n74\\n00:07:14,469 -> 00:07:14,518\\nतो, यह एक बड़ा अंतर बना रही है.\\n\\n75\\n00:07:14,518 -> 00:07:14,543\\nनरेगा रोजगार गारंटी योजना आलोचनाओं और विवादों से घिरी हुई है \\n\\n76\\n00:07:14,543 -> 00:07:14,555\\nकुप्रबंधन, प्रभावहीनता और गरीबी के मुख्या कारणों पर कम प्रभाव के चलते \\n\\n77\\n00:07:14,555 -> 00:07:14,561\\nकार्यक्रम अच्छी तरह से कार्यान्वित किया जाता है, तो वे अच्छी तरह से झारखंड के ग्रामीण अर्थव्यवस्था को बदल सकता है.\\n\\n78\\n00:07:14,561 -> 00:07:14,564\\nदूसरी ओर, झारखंड भारत की सबसे भ्रष्ट और आपराधिक राज्यों में से एक है.\\n\\n79\\n00:07:14,564 -> 00:07:14,566\\nऔर रोजगार गारंटी की जमीनी हकीकत काफी निराशाजनक है.\\n\\n80\\n00:07:20,238 -> 00:07:22,387\\nयह लोग कहते आसानी से मिल जाता है की \"बेहतर कार्यक्रम \\'तैयार किया जा सकता है ,\\n\\n81\\n00:07:22,387 -> 00:07:23,461\\nयह वास्तव में डिजाइन और प्रभावी ढंग से इन कार्यक्रमों को लागू कर सकते हैं, जो लोगों को खोजने के लिए उतना आसान नहीं है.\\n\\n82\\n00:07:23,461 -> 00:07:23,998\\nमेरा मानना \\u200b\\u200bहै कि अगर काम संगठित रूप से किया जाये और मजबूत संगठनों का गठन किया जाये , \\n\\n83\\n00:07:23,998 -> 00:07:24,267\\nतो यह भविष्य के लिए बहुत बड़ा अवसर है.\\n\\n84\\n00:07:24,267 -> 00:07:24,401\\nतो वे इस कार्यक्रम को बचाने और यह काम करने में सक्षम हो जाएगा.\\n\\n85\\n00:07:24,401 -> 00:07:24,468\\nउसकी सफलता यही है की पहले इसे संघटित किया गया और उनकी जरुरतें देखी गयी और उनका ज्ञान बढाया गया उनकी क्षमता बढाई गयी \\n\\n86\\n00:07:24,468 -> 00:07:24,536\\nतब उनके अन्दर एक नेतृत्व की क्षमता आई अब उनको ये पता है की इस कानून में ये लिखा है और हमें ये ऐसे मिलेगा \\n\\n87\\n00:07:24,536 -> 00:07:24,554\\nऔर मेरा ये पक्का विस्वास है की भारत में एक बहुत बड़ा लोकतान्त्रिक स्थल है \\n\\n88\\n00:07:24,554 -> 00:07:24,563\\nजो की अभी जितना उपयोग हो रहा है उससे ज्यादा उपयोग किया जा सकता है इस तरह के बदलाव लेन के लिए \\n\\n89\\n00:07:24,563 -> 00:07:24,573\\nतो, मूल रूप से मैं खुद को इस सब का एक छोटा सा हिस्सा होने के रूप में देखता हूँ \\n\\n90\\n00:07:24,573 -> 00:07:29,204\\nइसी में अकादमिक अनुसन्धान, बदलाव लाने वाले नीति निर्धारक और जरुरी सामाजिक आन्दोलन साथ में आएंगे \\n\\n91\\n00:07:29,204 -> 00:07:33,835\\nमेरा दिल यही कह रहा है',\n", + " 'bytes': 20618,\n", + " 'sha1': 'mm58abzhoy19owwkhr6c8q8gk3s55py',\n", + " 'parent_id': 97853240,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97853339,\n", + " 'timestamp': '2013-06-09T12:01:31Z',\n", + " 'user': {'id': 2280090, 'text': 'Rahulkepapa'},\n", + " 'page': {'id': 26559780,\n", + " 'title': 'NREGA.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,596 --> 00:00:05,034 India is in the forefront of social policy and many people forget that; 2 00:00:05,034 --> 00:00:10,700 to recognize that; bec...'\",\n", + " 'text': '1\\n00:00:03,596 --> 00:00:05,034\\nIndia is in the forefront of social policy and many people forget that;\\n\\n2\\n00:00:05,034 --> 00:00:10,700\\nto recognize that; because we\\'re quite\\nmesmerized by the wonderful achievements on\\n\\n3\\n00:00:10,700 --> 00:00:14,017\\nthe economic front of this country.\\n\\n4\\n00:00:14,017 --> 00:00:16,192\\nTremendous economic prosperity and progress\\n\\n5\\n00:00:16,192 --> 00:00:20,477\\nbut the human development idea and the MDGs say that it\\'s not enough.\\n\\n6\\n00:00:20,477 --> 00:00:23,771\\nThe newspapers cannot jost cover the\\ngrowth story of India.\\n\\n7\\n00:00:23,771 --> 00:00:27,968\\nyou also have to look at what is happening to the lives of people.\\n\\n8\\n00:00:27,968 --> 00:00:32,083\\nCan we confidently stand up and say that the environment is better in India?\\n\\n9\\n00:00:32,083 --> 00:00:35,568\\nCan we confidently stand up and say\\nthe quality of schooling has improved?\\n\\n10\\n00:00:35,568 --> 00:00:40,205\\nCan India confidently stand up and say\\nthat the access to drinking water is much better?\\n\\n11\\n00:00:40,205 --> 00:00:43,936\\nProgress in society has to be judged by these indicators of human development.\\n\\n12\\n00:00:43,936 --> 00:00:46,772\\nWhat does being an elected village head mean for you?\\n\\n13\\n00:00:48,836 --> 00:00:51,819\\nBeing a village head means to remove poverty among women\\n\\n14\\n00:00:51,819 --> 00:00:54,637\\nthat I am able to reach all people, to serve them\\n\\n15\\n00:00:54,637 --> 00:00:57,836\\nand to care for them, to see what my village needs\\n\\n16\\n00:00:57,836 --> 00:01:00,866\\nand to get the village council to address these needs\\n\\n17\\n00:01:00,866 --> 00:01:06,751\\nIn order to distribute the benefits of economic\\ngrowth more equitably, in 2005, the Indian\\n\\n18\\n00:01:06,751 --> 00:01:10,702\\nGovernment passed the Mahatma Gandhi National\\nRural Employment Guarantee Act, and consequently\\n\\n19\\n00:01:10,702 --> 00:01:15,235\\nlaunched an ambitious programme that would\\nprovide a legal guarantee for 100 days of\\n\\n20\\n00:01:15,235 --> 00:01:21,349\\nemployment every year, at the statutory minimum\\nwage, to all adult members of all rural households\\n\\n21\\n00:01:21,349 --> 00:01:24,636\\nthat were willing to work in development schemes\\nbeneficial to their communities.\\n\\n22\\n00:02:06,213 --> 00:02:07,944\\nThe Employment Guarantee Act is an Act that gives people\\n\\n23\\n00:02:07,944 --> 00:02:08,809\\nthe right to be employed in local public works within 15 days.\\n\\n24\\n00:02:08,809 --> 00:02:09,242\\nIf they apply for work and if they don\\'t get employment, then they have to be given an employment allowance.\\n\\n25\\n00:02:09,242 --> 00:02:09,458\\nThis is a very progressive legislation; very unique actually.; which was a bit of a political miracle.\\n\\n26\\n00:02:09,458 --> 00:02:09,566\\nOur team visited a village near Varanasi, a town located in the Northern Indian state of Uttar Pradesh.\\n\\n27\\n00:02:09,566 --> 00:02:09,620\\nHere, a local NGO, the Mahila Swarojgar Samiti, or MSS, has been raising awareness amongst village women,\\n\\n28\\n00:02:09,620 --> 00:02:09,647\\norganising self help groups, conducting leadership skills training and helping women access NREGA,\\n\\n29\\n00:02:09,647 --> 00:02:09,661\\nthe rural employment guarantee scheme launched by the Indian government.\\n\\n30\\n00:02:09,661 --> 00:02:09,675\\nAs is written in the Indian constitution, women\\'s participation in NREGA should be should be 33%.\\n\\n31\\n00:02:09,675 --> 00:02:13,635\\nAnd you are seeing a real life example of this in the village panchayat of Neemrakhauna.\\n\\n32\\n00:02:18,937 --> 00:02:30,833\\nAs you can see, the number of women working here are more.\\n\\n33\\n00:02:30,833 --> 00:02:32,601\\nWe interviewed some women in this village and asked them how their lives had changed\\n\\n34\\n00:02:32,601 --> 00:02:33,485\\nafter working for NREGA and with NGOs like the Mahila Swarojgar Samiti.\\n\\n35\\n00:02:33,485 --> 00:02:34,369\\nWhen you bring home money, you can get a lot of work done.\\n\\n36\\n00:02:34,369 --> 00:02:37,886\\nFor instance our children have to drop out after primary school because we don\\'t have enough money.\\n\\n37\\n00:02:37,886 --> 00:02:42,645\\nWe cannot send them to good schools because they are expensive.. So, I told my husband\\n\\n38\\n00:02:42,645 --> 00:02:45,024\\nthat he should look after household expenses and that I would work in NREGA and pay for the school.\\n\\n39\\n00:02:47,404 --> 00:02:49,501\\nA lot of progress has been made. Where earlier there was no money for food and medicines, there is now.\\n\\n40\\n00:02:49,501 --> 00:02:54,168\\nWhere earlier we were not literate and not able to speak with confidence in public,\\n\\n41\\n00:02:54,168 --> 00:02:55,871\\nnow we can even stand up to the village head. and even dare to tease him.\\n\\n42\\n00:02:55,871 --> 00:02:56,722\\nIt is a law. It is not just a scheme. And I think it could really have wonderful\\n\\n43\\n00:02:56,722 --> 00:02:57,148\\neffects, not just in terms of providing security.\\n\\n44\\n00:02:57,148 --> 00:02:57,361\\nThe first objective ofcourse is to provide some kind of social security to people\\n\\n45\\n00:02:57,361 --> 00:02:57,467\\nbut it can also bring about a lot of very interesting social, economic and political change.\\n\\n46\\n00:02:57,467 --> 00:02:57,520\\nbecause it reduces migration, it is implemented through local institutions that have a new lease of life through this\\n\\n47\\n00:02:57,520 --> 00:02:57,547\\nlaw, because it helps women to come out of the households and to become part of the public sphere\\n\\n48\\n00:03:38,430 --> 00:03:41,903\\nThe biggest challenge is to bring women outside their homes because until now\\n\\n49\\n00:03:41,903 --> 00:03:41,953\\nthey have stayed behind veils as required in our culture\\n\\n50\\n00:03:54,176 --> 00:03:56,569\\nI had never been outside my home, so I didn\\'t know what happened outside its four walls.\\n\\n51\\n00:03:56,569 --> 00:04:01,227\\nI thought that the NGO people would have run away with my money.\\n\\n52\\n00:04:01,227 --> 00:04:03,104\\nI felt that if I sat and listened to them, I would have wasted my time instead of doing my household work.\\n\\n53\\n00:04:03,104 --> 00:04:09,367\\nSo, I did not encourage them.\\n\\n54\\n00:04:15,500 --> 00:04:26,360\\nI used to tell them not to waste their time with me but their team kept coming back.\\n\\n55\\n00:04:26,360 --> 00:04:40,296\\nI slowly realised that what they were telling me was right. It was in my benefit.\\n\\n56\\n00:04:40,296 --> 00:04:49,767\\nSo, I took out time from my daily activities to work with them.\\n\\n57\\n00:04:49,767 --> 00:04:59,089\\nWe started doing small activities and earning some money.\\n\\n58\\n00:04:59,089 --> 00:05:06,269\\nThe we made a women\\'s collective.\\n\\n59\\n00:05:06,269 --> 00:05:13,450\\nThis increased our collective voice and power.\\n\\n60\\n00:05:13,450 --> 00:05:25,433\\nI felt that by going outside the four walls of my home, I was able to exercise my right to live according to my will\\n\\n61\\n00:05:25,433 --> 00:05:27,421\\nand I was also able to help other women exercise their rights\\n\\n62\\n00:05:27,421 --> 00:05:28,415\\nand to share knowledge with women on how to live their lives according to their will.\\n\\n63\\n00:05:28,415 --> 00:05:29,410\\nWhen women gain leadership skills and confidence, they understand\\n\\n64\\n00:05:29,410 --> 00:05:31,369\\nthat NREGA is a law wherein they, and their communities, must fulfill their responsibilities as citizens of their village\\n\\n65\\n00:05:31,369 --> 00:06:49,423\\nand support us and others to access their rights and fulfill their needs.\\n\\n66\\n00:06:49,423 --> 00:07:01,995\\nBut what is distinct about the Employment Guarantee Act\\n\\n67\\n00:07:01,995 --> 00:07:08,281\\nare the clauses to ensure better governance and accountability.\\n\\n68\\n00:07:08,281 --> 00:07:11,424\\nSocial audit, which means that it is an audit by people, of the functioning of the programme is mandatory\\n\\n69\\n00:07:11,424 --> 00:07:12,996\\nSo, everyone, and in fact the government is also, proactively encouraging social audits.\\n\\n70\\n00:07:12,996 --> 00:07:13,782\\nGroups of people can go to a village, ask for the accounts, call for a public meeting\\n\\n71\\n00:07:13,782 --> 00:07:14,175\\nand ask people if they were paid the wages they were assured\\n\\n72\\n00:07:14,175 --> 00:07:14,371\\nYou were supposed to get 100 days of work. Are you getting it?\\n\\n73\\n00:07:14,371 --> 00:07:14,469\\nWere you offered a job when you went to ask for it?\\n\\n74\\n00:07:14,469 --> 00:07:14,518\\nSo, its making a huge difference.\\n\\n75\\n00:07:14,518 --> 00:07:14,543\\nThe NREGA employment guarantee scheme has been surrounded by criticisms and controversies\\n\\n76\\n00:07:14,543 --> 00:07:14,555\\naround mismanagement, poor effectiveness and its limited impact on the drivers of poverty.\\n\\n77\\n00:07:14,555 --> 00:07:14,561\\nAnd if the programme is well implemented, they could well transform the rural economy of Jharkhand.\\n\\n78\\n00:07:14,561 --> 00:07:14,564\\nOn the other hand, Jharkhand is one of the most corrupt and criminalised states of India.\\n\\n79\\n00:07:14,564 --> 00:07:14,566\\nAnd the ground reality of the Employment Guarantee is quite dismal.\\n\\n80\\n00:07:20,238 --> 00:07:22,387\\nWhile it is easy to find people who say that \"better programmes\" could be designed,\\n\\n81\\n00:07:22,387 --> 00:07:23,461\\nit is not as easy to find people who can actually design and enforce these programmes effectively.\\n\\n82\\n00:07:23,461 --> 00:07:23,998\\nMy feeling is that if the work was organised and formed strong organisations,\\n\\n83\\n00:07:23,998 --> 00:07:24,267\\nAnd this is the really big opportunity for the future.\\n\\n84\\n00:07:24,267 --> 00:07:24,401\\nthen they would be able to save the programme and make it work.\\n\\n85\\n00:07:24,401 --> 00:07:24,468\\nIts success is in the fact that it was organised well, people\\'s needs were assesses and their knowledge and capacity was built.\\n\\n86\\n00:07:24,468 --> 00:07:24,536\\nOnly then, did they acquire leadership and learn what was written in the legislation and how they would get it.\\n\\n87\\n00:07:24,536 --> 00:07:24,554\\nI really believe that in India there is a huge democratic space that can be used much more than it is used\\n\\n88\\n00:07:24,554 --> 00:07:24,563\\nat the moment to bring about that kind of change.\\n\\n89\\n00:07:24,563 --> 00:07:24,573\\nSo, basically I see myself as being a small part of all that.\\n\\n90\\n00:07:24,573 --> 00:07:29,204\\nAnd that\\'s where things like research, influencing policy makers and being part of social movements, all come together.\\n\\n91\\n00:07:29,204 --> 00:07:33,835\\nand that\\'s where my heart is.',\n", + " 'bytes': 10169,\n", + " 'sha1': 'f0av1fl6b74zf9duzyx2q4rgk8qlavy',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97886182,\n", + " 'timestamp': '2013-06-09T20:50:22Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26568328,\n", + " 'title': 'Krista Siegfrids - Marry Me presentation (suomeksi).ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,373 --> 00:00:04,402\\nMä oon Krista Siegfrids, ja tän biisin kappaleen nimi on \"Marry Me\".',\n", + " 'bytes': 102,\n", + " 'sha1': 'j14eqie3rv6hhuzdr10vcbtqdt4jr7m',\n", + " 'parent_id': 97886086,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97886167,\n", + " 'timestamp': '2013-06-09T20:50:04Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26568341,\n", + " 'title': 'Krista Siegfrids - Marry Me presentation (suomeksi).ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:00,373 --> 00:00:04,402 Jag är Krista Siegfrids, och den här låten heter \"Marry Me\".\\'',\n", + " 'text': '1\\n00:00:00,373 --> 00:00:04,402\\nJag är Krista Siegfrids, och den här låten heter \"Marry Me\".',\n", + " 'bytes': 95,\n", + " 'sha1': 'od3hhe5lob0pgj26zlp24ohypfo5vel',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97886207,\n", + " 'timestamp': '2013-06-09T20:50:56Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26568352,\n", + " 'title': 'Krista Siegfrids - Marry Me presentation (suomeksi).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:00,373 --> 00:00:04,402 I am Krista Siegfrids, and the name of this song is \"Marry Me\".\\'',\n", + " 'text': '1\\n00:00:00,373 --> 00:00:04,402\\nI am Krista Siegfrids, and the name of this song is \"Marry Me\".',\n", + " 'bytes': 95,\n", + " 'sha1': 'qk8i5r2ksv9itibjwgqfnqqk8uy7otc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97887352,\n", + " 'timestamp': '2013-06-09T21:08:49Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26568639,\n", + " 'title': 'Krista Siegfrids - Marry Me presentation (suomeksi).ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,373 --> 00:00:04,402\\nIch bin Krista Siegfrids, und dieser Song heißt \"Marry Me\".',\n", + " 'bytes': 92,\n", + " 'sha1': '0caddwqk2bu0i6u0tqhy19op807r91x',\n", + " 'parent_id': 97887178,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101564197,\n", + " 'timestamp': '2013-08-09T11:52:27Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26569235,\n", + " 'title': \"Amandine Bourgeois - L'enfer et moi presentation (Français).ogv.de.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,230 --> 00:00:01,000\\nHallo!\\n\\n2\\n00:00:01,000 --> 00:00:03,000\\nIch heiße Amandine Bourgeois.\\n\\n3\\n00:00:03,001 --> 00:00:05,492\\nMeinem Song \"L\\'enfer et moi\" konkurriert im -\\n\\n4\\n00:00:05,492 --> 00:00:09,138\\n- dem Eurovision Song Contest im Malmö 2013.',\n", + " 'bytes': 260,\n", + " 'sha1': '2yy44w5x0ybji4zh2n3owdli0svgaor',\n", + " 'parent_id': 97889595,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101590166,\n", + " 'timestamp': '2013-08-09T21:39:43Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26569518,\n", + " 'title': 'Loreen presenting herself in Swedish.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:03,295\\nIch heiße Loreen, und ich gewann mit...\\n\\n2\\n00:00:03,295 --> 00:00:05,725\\n...dem besten Lied der Welt:\\n<i>Euphoria</i>.',\n", + " 'bytes': 151,\n", + " 'sha1': '0olt495zsi1nup2hw217zl64sp9676v',\n", + " 'parent_id': 97972068,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101564664,\n", + " 'timestamp': '2013-08-09T12:03:41Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26569962,\n", + " 'title': \"Cezar - It's My Life presentation (Română).ogv.de.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,160 --> 00:00:01,153\\nHallo!\\n\\n2\\n00:00:01,153 --> 00:00:03,361\\nIch bin Cezar, aus Rumänien -\\n\\n3\\n00:00:03,361 --> 00:00:07,261\\n- und ich singe das Eurovision Lied \"It\\'s My Life\".',\n", + " 'bytes': 187,\n", + " 'sha1': '548h7kqmrta924mhbocbzphqq232yyk',\n", + " 'parent_id': 97892165,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97902252,\n", + " 'timestamp': '2013-06-10T05:58:07Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 26572513,\n", + " 'title': 'BellSouth denies phone records were handed over to the NSA.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,200 --> 00:00:05,400\\nBellSouth denies phone records were handed over to the NSA\\n\\n2\\n00:00:05,600 --> 00:00:07,800\\nFrom Wikinews - the free news source\\n\\n3\\n00:00:07,600 --> 00:00:10,400\\nat wikinews.org\\n\\n4\\n00:00:10,600 --> 00:00:13,400\\nBellSouth, said in a statement yesterday that the telephone company\\n\\n5\\n00:00:13,600 --> 00:00:16,400\\ndid not hand over customer call records\\n\\n6\\n00:00:16,600 --> 00:00:18,400\\nto the National Security Agency or NSA.\\n\\n7\\n00:00:18,600 --> 00:00:22,400\\nOn May 11th, 2006, USA Today reported that\\n\\n8\\n00:00:22,600 --> 00:00:25,400\\nthe NSA collected millions of call logs\\n\\n9\\n00:00:25,600 --> 00:00:28,400\\nfrom telecommunications companies in 2001\\n\\n10\\n00:00:28,600 --> 00:00:31,400\\nunder a contract that it allegedly had with the NSA.\\n\\n11\\n00:00:31,600 --> 00:00:35,400\\nBellSouth said that they conducted a \"internal review\"\\n\\n12\\n00:00:35,600 --> 00:00:38,400\\nand that the review \"confirmed no such contract exists\\n\\n13\\n00:00:38,600 --> 00:00:42,400\\nand we have not provided bulk customer calling records\\n\\n14\\n00:00:42,600 --> 00:00:45,400\\nto the NSA,\" said Jeff Battcher, spokesman for BellSouth.\\n\\n15\\n00:00:45,600 --> 00:00:48,400\\n\"We do not believe that any final review\\n\\n16\\n00:00:48,600 --> 00:00:51,400\\nwill turn up anything different from what we have currently found.\\n\\n17\\n00:00:51,600 --> 00:00:54,400\\nThere is no link between the NSA and BellSouth that\\n\\n18\\n00:00:54,600 --> 00:00:57,400\\nwe can find in what we feel is a very exhaustive review.\\n\\n19\\n00:00:57,600 --> 00:00:59,400\\nWe wouldn\\'t have made this bold statement if\\n\\n20\\n00:00:59,600 --> 00:01:02,400\\nwe weren\\'t confident about this,\" added Battcher.\\n\\n21\\n00:01:02,600 --> 00:01:05,400\\nAT&T and Verizon Communications were also\\n\\n22\\n00:01:05,600 --> 00:01:07,400\\nsaid to have handed over customer call logs,\\n\\n23\\n00:01:07,600 --> 00:01:09,400\\nbut Verizon said on Friday that they don\\'t\\n\\n24\\n00:01:09,600 --> 00:01:11,400\\n\"and will not, provide any government agency \\n\\n25\\n00:01:11,600 --> 00:01:14,400\\nunfettered access to our customer records\\n\\n26\\n00:01:14,600 --> 00:01:16,400\\nor provide information to the government under\\n\\n27\\n00:01:16,600 --> 00:01:20,400\\ncircumstances that would allow a fishing expedition.\"\\n\\n28\\n00:01:20,600 --> 00:01:23,400\\nOn Monday, Massachusetts Representative Edward Markey\\n\\n29\\n00:01:23,600 --> 00:01:27,400\\nof the House Energy and Commerce subcommittee on telecommunications\\n\\n30\\n00:01:27,600 --> 00:01:31,400\\nasked for help from the Federal Communications Commission or FCC,\\n\\n31\\n00:01:31,600 --> 00:01:35,400\\nto investigate whether Verizon, AT&T, and BellSouth\\n\\n32\\n00:01:35,600 --> 00:01:40,400\\nviolated privacy rights under communication laws and regulations.\\n\\n33\\n00:01:40,600 --> 00:01:42,400\\nThis sound file and all text in the article\\n\\n34\\n00:01:42,600 --> 00:01:46,400\\nare released into the public domain.',\n", + " 'bytes': 2824,\n", + " 'sha1': 'kfyh8cxmxqscnc8qbj23eauxu3cn8hx',\n", + " 'parent_id': 97902240,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 643621176,\n", + " 'timestamp': '2022-03-24T09:25:51Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 26573890,\n", + " 'title': 'Hatikvah instrumental.ogg.he.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments',\n", + " 'text': '1\\n00:00:00,093 --> 00:00:06,538\\nכל עוד בלבב פנימה\\n\\n2\\n00:00:06,777 --> 00:00:13,305\\nנפש יהודי הומייה\\n\\n3\\n00:00:13,477 --> 00:00:20,513\\nולפאתי מזרח קדימה\\n\\n4\\n00:00:21,034 --> 00:00:27,761\\nעין לציון צופיה\\n\\n5\\n00:00:28,257 --> 00:00:34,784\\nעוֹד לֹא אָבְדָה תִּקְוָתֵנוּ\\n\\n6\\n00:00:35,231 --> 00:00:42,025\\nהַתִּקְוָה בַּת שְׁנוֹת אַלְפַּיִם\\n\\n7\\n00:00:42,479 --> 00:00:48,808\\nלִהְיוֹת עַם חָפְשִׁי בְּאַרְצֵנוּ\\n\\n8\\n00:00:49,542 --> 00:00:56,255\\nאֶרֶץ צִיּוֹן וִירוּשָׁלַיִם\\n\\n9\\n00:00:57,022 --> 00:01:03,239\\nלִהְיוֹת עַם חָפְשִׁי בְּאַרְצֵנוּ\\n\\n10\\n00:01:04,258 --> 00:01:12,993\\nאֶרֶץ צִיּוֹן וִירוּשָׁלַיִם',\n", + " 'bytes': 818,\n", + " 'sha1': '86zkc8uzssc8wqvwjtoke32u1jjizvz',\n", + " 'parent_id': 531669272,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101586067,\n", + " 'timestamp': '2013-08-09T20:20:35Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26574167,\n", + " 'title': 'El Sueño de Morfeo - Contigo hasta el final presentation (Español).ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,182 --> 00:00:01,566\\nHallo, Ich bin David.\\n\\n2\\n00:00:01,566 --> 00:00:02,619\\nGuten tag, ich bin Juan.\\n\\n3\\n00:00:02,619 --> 00:00:05,257\\nHallo, Ich bin Raquel. Wir sind \"El Sueño de Morfeo\" -\\n\\n4\\n00:00:05,257 --> 00:00:09,519\\n- und \"Contigo hasta el final\" ist unser Lied in der Eurovision 2013.',\n", + " 'bytes': 303,\n", + " 'sha1': 'gov2rr7oti2odfv9woyn54fz12n9wn2',\n", + " 'parent_id': 97907690,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 512186455,\n", + " 'timestamp': '2020-11-12T16:07:55Z',\n", + " 'user': {'id': 1056739, 'text': 'Andreyyshore'},\n", + " 'page': {'id': 26578929,\n", + " 'title': 'Aliona Moon - O Mie presentation (Română).ogv.ro.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"Again, the sentence doesn't end there.\",\n", + " 'text': '1\\n00:00:00,580 --> 00:00:02,591\\nSalut! Sunt Aliona Moon din Moldova\\n\\n2\\n00:00:02,591 --> 00:00:05,612\\nși piesa mea pentru Eurovision este „O mie”.',\n", + " 'bytes': 150,\n", + " 'sha1': '40w9dgwj5ou9jehwqkcfh6o1249uo5a',\n", + " 'parent_id': 101515276,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 594592968,\n", + " 'timestamp': '2021-09-30T08:58:03Z',\n", + " 'user': {'id': 2366229, 'text': 'Achim55'},\n", + " 'page': {'id': 26581951,\n", + " 'title': 'United States Navy Band - O Canada.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/88.249.65.182|88.249.65.182]] ([[User talk:88.249.65.182|talk]]) to last revision by RA0808',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\nO Canada!\\n\\n2\\n00:00:04,000 --> 00:00:11,000\\nOur home and native land!\\n\\n3\\n00:00:11,000 --> 00:00:21,000\\nTrue patriot love in all of us command.\\n\\n4\\n00:00:21,000 --> 00:00:26,000\\nWith glowing hearts we see thee rise,\\n\\n5\\n00:00:26,000 --> 00:00:32,000\\nThe True North strong and free!\\n\\n6\\n00:00:32,000 --> 00:00:34,500\\nFrom far and wide,\\n\\n7\\n00:00:34,500 --> 00:00:43,000\\nO Canada, we stand on guard for thee.\\n\\n8\\n00:00:43,000 --> 00:00:53,000\\nGod keep our land glorious and free!\\n\\n9\\n00:00:53,000 --> 00:01:04,000\\nO Canada, we stand on guard for thee.\\n\\n10\\n00:01:04,000 --> 00:01:18,000\\nO Canada, we stand on guard for thee.',\n", + " 'bytes': 645,\n", + " 'sha1': 'ef0xuwkkeo72shx0bwrksj0p3fyi33v',\n", + " 'parent_id': 594574647,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 224762871,\n", + " 'timestamp': '2016-12-01T01:23:02Z',\n", + " 'user': {'text': '68.191.37.27'},\n", + " 'page': {'id': 26581965,\n", + " 'title': 'United States Navy Band - O Canada.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:04,000\\nÔ Canada!\\n\\n2\\n00:00:04,000 --> 00:00:11,000\\nTerre de nos aïeux,\\n\\n3\\n00:00:11,000 --> 00:00:21,000\\nTon front est ceint de fleurons glorieux!\\n\\n4\\n00:00:21,000 --> 00:00:26,000\\nCar ton bras sait porter l'épée,\\n\\n5\\n00:00:26,000 --> 00:00:32,000\\nIl sait porter la croix!\\n\\n6\\n00:00:32,000 --> 00:00:37,000\\nTon histoire est une épopée\\n\\n7\\n00:00:37,000 --> 00:00:43,000\\nDes plus brillants exploits.\\n\\n8\\n00:00:43,000 --> 00:00:53,000\\nEt ta valeur, de foi trempée,\\n\\n9\\n00:00:53,000 --> 00:01:04,000\\nProtégera nos foyers et nos droits.\\n\\n10\\n00:01:04,000 --> 00:01:18,000\\nProtégera nos foyers et nos droits.\",\n", + " 'bytes': 627,\n", + " 'sha1': 'ma06aueh1a1unnkhqj228lv95kg4sst',\n", + " 'parent_id': 97931615,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 512186770,\n", + " 'timestamp': '2020-11-12T16:09:56Z',\n", + " 'user': {'id': 1056739, 'text': 'Andreyyshore'},\n", + " 'page': {'id': 26584594,\n", + " 'title': 'Aliona Moon - O Mie presentation (Română).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'more natural phrasing',\n", + " 'text': '1\\n00:00:00,580 --> 00:00:02,591\\nHello! I\\'m Aliona Moon from Moldova\\n\\n2\\n00:00:02,591 --> 00:00:05,612\\nand my song for Eurovision is called <i>\"O mie\"<i>.',\n", + " 'bytes': 152,\n", + " 'sha1': 'by3bvcpymvmna2ismbv3u4ej0aq1c4b',\n", + " 'parent_id': 101515838,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101515767,\n", + " 'timestamp': '2013-08-08T15:12:58Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26584629,\n", + " 'title': 'Aliona Moon - O Mie presentation (Română).ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,580 --> 00:00:02,591\\nHej!\\nJag är Aliona Moon från Moldavien\\n\\n2\\n00:00:02,591 --> 00:00:05,612\\noch min låt i Eurovision heter <i>\"O mie\"<i>.',\n", + " 'bytes': 152,\n", + " 'sha1': 'gcsoi1waut2u3zi974whkzoo039q6pd',\n", + " 'parent_id': 97967361,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101515908,\n", + " 'timestamp': '2013-08-08T15:15:20Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26584855,\n", + " 'title': 'Aliona Moon - O Mie presentation (Română).ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,580 --> 00:00:02,591\\nHallo!\\nIch bin Aliona Moon aus Moldawien\\n\\n2\\n00:00:02,591 --> 00:00:05,612\\nund mein Lied in der Eurovision heißt <i>\"O mie\"<i>.',\n", + " 'bytes': 159,\n", + " 'sha1': '0aawii2r4mzdmsizxxlw41ibpoxmxk0',\n", + " 'parent_id': 101515872,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97960316,\n", + " 'timestamp': '2013-06-11T08:33:06Z',\n", + " 'user': {'id': 1998184, 'text': 'Tacsipacsi'},\n", + " 'page': {'id': 26591638,\n", + " 'title': 'Pl-Budapeszt.ogg.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:00,900 Budapeszt'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:00,900\\nBudapeszt',\n", + " 'bytes': 41,\n", + " 'sha1': 'shv0zcoweaf6wi49j6c9zmrmfaptwf7',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101590041,\n", + " 'timestamp': '2013-08-09T21:37:24Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26593694,\n", + " 'title': 'Loreen presenting herself in Swedish.ogv.ro.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:03,295\\nMă numesc Loreen și am câștigat cu...\\n\\n2\\n00:00:03,295 --> 00:00:05,725\\n...cel mai bun cântec din lume:\\n„Euphoria”.',\n", + " 'bytes': 155,\n", + " 'sha1': '5soybed6xrlf1v9w1k524gswlgi18id',\n", + " 'parent_id': 97967049,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97967863,\n", + " 'timestamp': '2013-06-11T12:01:44Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26593904,\n", + " 'title': 'Gianluca - Tomorrow presentation (Malti).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:00,092 --> 00:00:01,084 Hello! I\\'m Gianluca - 2 00:00:01,084 --> 00:00:04,205 - and I represent Malta with the song <i>\"Tomorrow\"<i>.\\'',\n", + " 'text': '1\\n00:00:00,092 --> 00:00:01,084\\nHello! I\\'m Gianluca -\\n\\n2\\n00:00:01,084 --> 00:00:04,205\\n- and I represent Malta with the song <i>\"Tomorrow\"<i>.',\n", + " 'bytes': 142,\n", + " 'sha1': '208e2dq51xs7qtskxn9wme8sg126cvr',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97967886,\n", + " 'timestamp': '2013-06-11T12:02:50Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26593911,\n", + " 'title': 'Gianluca - Tomorrow presentation (Malti).ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:00,092 --> 00:00:01,084 Hej! Jag heter Gianluca - 2 00:00:01,084 --> 00:00:04,205 - och jag representerar Malta med låten <i>\"Tomorrow\"<i>.\\'',\n", + " 'text': '1\\n00:00:00,092 --> 00:00:01,084\\nHej! Jag heter Gianluca -\\n\\n2\\n00:00:01,084 --> 00:00:04,205\\n- och jag representerar Malta med låten <i>\"Tomorrow\"<i>.',\n", + " 'bytes': 149,\n", + " 'sha1': 'ewpg763m1g9vrkhgv27yv43oav6vd7n',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97968032,\n", + " 'timestamp': '2013-06-11T12:08:28Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26593961,\n", + " 'title': 'Gianluca - Tomorrow presentation (Malti).ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:00,092 --> 00:00:01,084 Hallo! Ich bin Gianluca - 2 00:00:01,084 --> 00:00:04,205 - und ich präsentiere Malta mit dem Lied <i>\"Tomorrow\"<i>.\\'',\n", + " 'text': '1\\n00:00:00,092 --> 00:00:01,084\\nHallo! Ich bin Gianluca -\\n\\n2\\n00:00:01,084 --> 00:00:04,205\\n- und ich präsentiere Malta mit dem Lied <i>\"Tomorrow\"<i>.',\n", + " 'bytes': 150,\n", + " 'sha1': '3l6wcz25b8htk71edgkelkoekciwxf2',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 98008967,\n", + " 'timestamp': '2013-06-12T02:46:22Z',\n", + " 'user': {'text': '70.79.47.231'},\n", + " 'page': {'id': 26604518,\n", + " 'title': '439 Friesland.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,200\\nFriesland',\n", + " 'bytes': 41,\n", + " 'sha1': 'e0qz0ocaxy03f2zew96tcas5lcxiu41',\n", + " 'parent_id': 98008932,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 98031503,\n", + " 'timestamp': '2013-06-12T11:45:28Z',\n", + " 'user': {'text': '139.0.163.84'},\n", + " 'page': {'id': 26613586,\n", + " 'title': 'Thank You from the Children of OLPC.ogg.id.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'This is a subtitle for Indonesian, edited from Malaysian.',\n", + " 'text': '1\\n00:00:23,000 --> 00:00:26,500\\nSaya juga menggunakan XO untuk\\n\\n2\\n00:00:26,500 --> 00:00:28,500\\nmengambil gambar di rumah.\\n\\n3\\n00:00:28,500 --> 00:00:30,500\\nSaya juga menggunakan XO untuk membantu saya dalam matematika.\\n\\n4\\n00:00:30,500 --> 00:00:34,500\\nSaya juga menggambar dengan XO ini.\\n\\n5\\n00:00:34,500 --> 00:00:37,500\\nJadi, saya ingin mengucapkan banyak terima kasih kepada mereka yang membawa XO ke sini.\\n\\n6\\n00:00:37,500 --> 00:00:39,500\\nMereka harus membawa lebih banyak XO\\n\\n7\\n00:00:39,500 --> 00:00:41,000\\nuntuk adik dan kakak saya,\\n\\n8\\n00:00:41,000 --> 00:00:43,500\\ndan orang lain di rumah saya,\\n\\n9\\n00:00:43,500 --> 00:00:45,500\\njadi saya sangat berterima kasih kepada mereka.\\n\\n10\\n00:00:45,500 --> 00:00:48,500\\nSaya suka komputer jinjing saya, terima kasih.\\n\\n11\\n00:00:48,500 --> 00:00:52,500\\nTerima kasih.',\n", + " 'bytes': 811,\n", + " 'sha1': '9dq5w0748x023qt9d9l3qn04aixhbgk',\n", + " 'parent_id': 98031451,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 139724165,\n", + " 'timestamp': '2014-11-16T22:38:08Z',\n", + " 'user': {'id': 3437004, 'text': 'Mavrikant'},\n", + " 'page': {'id': 26651280,\n", + " 'title': 'Ussr Azerbaijan Anthem.ogg.az.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:09,500\\nAzərbaycan! Çiçəklənən Respublika, şanlı diyar!\\n\\n2\\n00:00:09,700 --> 00:00:018,100\\nQadir sovet ellərində həm azadsan, həm bəxtiyar.\\n\\n3\\n00:00:018,300 --> 00:00:027,000\\nOktyabrdan qüvvət alıb sən qovuşdun səadətə,\\n\\n4\\n00:00:027,100 --> 00:00:035,000\\nAlqış olsun bu hünərə, alqış olsun bu qüdrətə!\\n\\n5\\n00:00:035,400 --> 00:00:043,300\\nYolumuz Lenin yoludur, partiyadır rəhbərimiz,\\n\\n6\\n00:00:043,700 --> 00:00:051,600\\nKommunizmin günəşile nurlanacaq səhərimiz.\\n\\n7\\n00:00:018,300 --> 00:00:027,000\\nBiz gədirik gələcəye qaliblərin cərgəsində,\\n\\n8\\n00:00:018,300 --> 00:00:027,000\\nYaşa, yaşa Azərbaycan, böyük sovet ölkəsində!\\n\\n9\\n00:00:018,300 --> 00:00:027,000\\nOdlar yurdu! Bu ağ günlər el gücünün bəhrəsidir,\\n\\n10\\n00:00:018,300 --> 00:00:027,000\\nQehrəmanlıq, bir də hünər azad insan həvəsidir.\\n\\n11\\n00:00:018,300 --> 00:00:027,000\\nNəsillərdən-nəsillərə yadigardır dəyaneətin,\\n\\n12\\n00:00:018,300 --> 00:00:027,000\\nKommunizmə gedirik biz, sıra möhkəm, addım mətin.\\n\\n13\\n00:00:018,300 --> 00:00:027,000\\nYolumuz Lenin yoludur, partiyadır rəhbərimiz,\\n\\n14\\n00:00:018,300 --> 00:00:027,000\\nKommunizmin günəşile nurlanacaq səhərimiz.\\n\\n15\\n00:00:018,300 --> 00:00:027,000\\nBiz gədirik gələcəye qaliblərin cərgəsində,\\n\\n16\\n00:00:018,300 --> 00:00:027,000\\nYaşa, yaşa Azərbaycan, böyük sovet ölkəsində!\\n\\n17\\n00:00:018,300 --> 00:00:027,000\\nRəşadətli rus xalqıdır dostluq, birlik bayraqdarı,\\n\\n18\\n00:00:018,300 --> 00:00:027,000\\nMüqəddəsdir, sarsılmazdır dost əllərin bu ilqarı.\\n\\n19\\n00:00:018,300 --> 00:00:027,000\\nQardaş xalqlar birliyindən aldıq gücü, qüdrəti biz,\\n\\n20\\n00:00:018,300 --> 00:00:027,000\\nQoy var olsun bu ittifaq -- şanlı Sovet Vətenimiz! \\n\\n21\\n00:00:018,300 --> 00:00:027,000\\nYolumuz Lenin yoludur, partiyadır rəhbərimiz,\\n\\n22\\n00:00:018,300 --> 00:00:027,000\\nKommunizmin günəşile nurlanacaq səhərimiz.\\n\\n23\\n00:00:018,300 --> 00:00:027,00\\nBiz gədirik gələcəye qaliblərin cərgəsində,\\n\\n24\\n00:00:018,300 --> 00:00:027,000\\nYaşa, yaşa Azərbaycan, böyük sovet ölkəsində!',\n", + " 'bytes': 2129,\n", + " 'sha1': 'j3chruj2kdj9k8w7gbhxqa1m78bk16s',\n", + " 'parent_id': 119712553,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 211732957,\n", + " 'timestamp': '2016-11-02T17:46:24Z',\n", + " 'user': {'text': '168.8.249.165'},\n", + " 'page': {'id': 26655148,\n", + " 'title': 'US NAVY Band - Kaba Ma Kyei.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00-0:10\\nPya Ma Ta Lu La Mhuay Ne Mche Uwe.\\n\\n2\\n0:10-0:15\\nDo Pye, Do Mye.\\n\\n3\\n0:15-0:19\\nMya La Kha Halan Nuayen Dyan Ze Bo.\\n\\n4\\n0:19-0:25\\nSu Pu Ti Ni Mya Wada Fyu Sin De Pye.\\n\\n5\\n0:25-0:30.\\nDo Pye, Do Mye.\\n\\n6\\n0:30-0:33\\nRyi Daun Zu Wuemye Tiden Le.\\n\\n7\\n0:33-0:39\\nWuedei Tan Pyu Be.\\n\\n8\\n0:39-0:41\\nTai Dein Zo Le.\\n\\n9\\n0:41-0:45\\nKaba Ma Myama Pye!\\n\\n10\\n0:45-0:49\\nDo Abo Bwa Wuemue Si Mo Tchi Mya No Be.\\n\\n11\\n0:49-0:53\\nKaba Ma Myenma Pye!\\n\\n12\\n0:53-0:57\\nDo Abo Bwa Wuemue Si Mo Tchi Mya No Be.\\n\\n13\\n0:57-1:03\\nPya Dan Zugo Eue Pe Lo Do Ka Gwe Mele.\\n\\n14\\n1:03-1:08\\nDa Do Pye Da Do Mye Do Pan De Mye.\\n\\n15\\n1:08-1:12\\nDo Pye, Do Mye.\\n\\n16\\n1:12-1:18\\nGobo Go Ni Na Zwa Do Dadwe!\\n\\n17\\n1:18-1:20\\nTan Shan Ba Zo Le.\\n\\n18\\n1:20-1:30\\nDo To Wun Be Wuepo Ta Mye.',\n", + " 'bytes': 730,\n", + " 'sha1': 'qarvd1n87v14gspv94hqufil1ifiwll',\n", + " 'parent_id': 182765301,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 98199770,\n", + " 'timestamp': '2013-06-14T23:29:11Z',\n", + " 'user': {'id': 154385, 'text': 'Victorgrigas'},\n", + " 'page': {'id': 26669972,\n", + " 'title': 'Ntsika Kellem of Sinenjongo High School - Wikipedia means help to me.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:04,000 --> 00:00:06,000\\nThis means help to me\\n\\n2\\n00:00:06,001 --> 00:00:011,000\\nBecause, like, I know that those people who are trying to do this to us\\n\\n3\\n00:00:011,001 --> 00:00:014,000\\nlike, are trying to open doors for us\\n\\n4\\n00:00:014,001 --> 00:00:018,000\\nso that we can search on Wikipedia, free.\\n\\n5\\n00:00:019,501 --> 00:00:020,500\\nso...\\n\\n6\\n00:00:021,501 --> 00:00:025,000\\n...and it means alot to me - Wikipedia.\\n\\n7\\n00:00:025,001 --> 00:00:026,500\\n(Camera Operator) Why?\\n\\n8\\n00:00:027,001 --> 00:00:035,000\\nBecause (laughs) it's like I get the information there, it's a source of information to me.\\n\\n9\\n00:00:035,001 --> 00:00:040,000\\nAny question that I have, it's the answer.\",\n", + " 'bytes': 688,\n", + " 'sha1': 'hnft415ap2tmve2kqmkv3uyr5a2jszf',\n", + " 'parent_id': 98199752,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 102383029,\n", + " 'timestamp': '2013-08-21T15:01:15Z',\n", + " 'user': {'id': 734848, 'text': 'Googledance'},\n", + " 'page': {'id': 26707213,\n", + " 'title': 'Himno a cochabamba.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Agreado el resto de la letra',\n", + " 'text': '1\\n00:00:12,000 --> 00:00:19,000\\nBrilla el sol de septiembre radiante\\n\\n2\\n00:00:19,000 --> 00:00:23,000\\nreflejando la gloria inmortal\\n\\n3\\n00:00:24,000 --> 00:00:31,000\\ndel gran pueblo que firme y constante (bis)\\n\\n4\\n00:00:32,000 --> 00:00:36,000\\nfue primero (bis)\\n\\n5\\n00:00:37,000 --> 00:00:41,000\\nen la lucha marcial\\n\\n6\\n00:00:42,000 --> 00:00:46,000\\nfue primero (bis)\\n\\n7\\n00:00:47,000 --> 00:00:51,000\\nen la lucha marcial\\n\\n8\\n00:00:55,000 --> 00:01:02,000\\nLibertad del Tunari en la cumbre\\n\\n9\\n00:01:03,000 --> 00:01:06,000\\nya su solio por siempre fijo; \\n\\n\\n10\\n00:01:07,000 --> 00:01:14,000\\nla cadena de vil servidumbre Cochabamba esforzada rompió. \\n\\n\\n11\\n00:01:15,000 --> 00:01:24,000\\nDe sus hijos el noble ardimiento su altivez y denuedo sin par\\n\\n12\\n00:01:25,000 --> 00:01:35,000\\ndespertaron el bélico aliento de cien pueblos que van a luchar\\n\\n13\\n00:01:36,000 --> 00:01:37,000\\na luchar\\n\\n14\\n00:01:40,000 --> 00:01:45,000\\nBrilla el sol de septiembre radiante\\n\\n15\\n00:01:47,000 --> 00:01:50,000\\nreflejando la gloria inmortal\\n\\n16\\n00:01:51,000 --> 00:01:59,000\\ndel gran pueblo que firme y constante (bis)\\n\\n17\\n00:02:00,000 --> 00:02:03,000\\nfue primero (bis)\\n\\n18\\n00:02:05,000 --> 00:02:08,000\\nen la lucha marcial\\n\\n19\\n00:02:09,000 --> 00:02:14,000\\nfue primero (bis)\\n\\n20\\n00:02:15,000 --> 00:02:21,000\\nen la lucha marcial\\n\\n21\\n00:02:24,000 --> 00:02:31,000\\nTranscrito por Googledance: en Benimamet, España',\n", + " 'bytes': 1391,\n", + " 'sha1': 'jadzwtmy0jzcu3hlyj55tb7nzxyo9hf',\n", + " 'parent_id': 102381679,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 98449873,\n", + " 'timestamp': '2013-06-18T21:31:56Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 26747746,\n", + " 'title': 'The Dickson Baseball Dictionary -LOC-.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'm',\n", + " 'text': '0\\n00:00:01,709 --> 00:00:06,470\\nFemale Speaker:\\nFrom the Library of Congress, in Washington, D.C.\\n\\n1\\n00:00:06,470 --> 00:00:09,450\\n\\n\\n2\\n00:00:15,450 --> 00:00:20,179\\nGuy Lamolinara:\\nGood afternoon everyone, and welcome to our\\n\\n3\\n00:00:20,179 --> 00:00:25,319\\n\"Books and Beyond\" program today. I\\'m Guy\\nLamolinara and I\\'m the communications officer\\n\\n4\\n00:00:25,319 --> 00:00:29,308\\nfor the Center for the Book. And for those\\nof you who don\\'t know about the Center for\\n\\n5\\n00:00:29,309 --> 00:00:34,829\\nthe Book, we\\'re the reading promotion unit\\nof the Library of Congress, and we\\'ve established\\n\\n6\\n00:00:34,829 --> 00:00:40,140\\na state center for the book in every state\\nin the Union and also in all the U.S. territories.\\n\\n7\\n00:00:40,140 --> 00:00:46,149\\nIn fact, if you\\'re going to the Virgin Islands,\\nwe\\'re establishing even as I speak a Center\\n\\n8\\n00:00:46,149 --> 00:00:51,760\\nfor the Book in the Virgin Islands, and that\\'s\\nwhere John Cole is right now, our Center\\'s\\n\\n9\\n00:00:51,760 --> 00:00:52,399\\ndirector.\\n\\n10\\n00:00:52,399 --> 00:00:53,030\\n[laughter]\\n\\n11\\n00:00:53,030 --> 00:00:58,140\\nAlso, I want to remind you about the National\\nBook Festival -- this will be our ninth one,\\n\\n12\\n00:00:58,140 --> 00:01:04,339\\ncoming up on September 26, and it will be\\non the National Mall, as it always is. And\\n\\n13\\n00:01:04,339 --> 00:01:09,590\\nthe Center for the Book is the part of the\\nLibrary that organizes the author\\'s program,\\n\\n14\\n00:01:09,590 --> 00:01:15,710\\nand we also oversee the Pavilion of the States.\\nOur \"Books and Beyond\" programs feature authors\\n\\n15\\n00:01:15,710 --> 00:01:19,548\\nwho have used the collections of the Library\\nof Congress in their works.\\n\\n16\\n00:01:19,549 --> 00:01:24,060\\nToday\\'s speaker, Paul Dickson, really couldn\\'t\\nhave come at a better time, talking about\\n\\n17\\n00:01:24,060 --> 00:01:30,479\\nbaseball and his baseball dictionary. Following\\nthe program, Paul will sign copies of his\\n\\n18\\n00:01:30,479 --> 00:01:35,549\\nbook, and he will also answer questions, and\\nthe book is for sale in the back of the room.\\n\\n19\\n00:01:35,549 --> 00:01:40,439\\nI just should tell you that this program is\\nbeing recorded for Web cast, so if you ask\\n\\n20\\n00:01:40,439 --> 00:01:44,029\\na question, you\\'ll automatically be part of\\nthat Web cast.\\n\\n21\\n00:01:44,030 --> 00:01:49,259\\nToday, Paul is going to discuss the third\\nedition of his monumental work, \"The Dickson\\n\\n22\\n00:01:49,259 --> 00:01:54,829\\nBaseball Dictionary.\" Ordinarily, you might\\nnot think a dictionary would be a fun thing\\n\\n23\\n00:01:54,829 --> 00:02:00,119\\nto read, but that\\'s not the case with Paul\\'s\\ndictionary. If you love baseball, this is\\n\\n24\\n00:02:00,119 --> 00:02:05,759\\nreally essential for your library, and also\\nit\\'s essential for anybody who loves language,\\n\\n25\\n00:02:05,759 --> 00:02:12,560\\nbecause baseball, really -- the terms in baseball\\nhave permeated our language. In \"The Washington\\n\\n26\\n00:02:12,560 --> 00:02:18,970\\nPost,\" just this past Thursday, David Broder\\ndedicated a column to Paul\\'s dictionary, calling\\n\\n27\\n00:02:18,970 --> 00:02:23,550\\nit a wonderful companion volume for the nights\\nwhen there are rainouts or the days when our\\n\\n28\\n00:02:23,550 --> 00:02:26,470\\nfavorite teams are traveling.\"\\n\\n29\\n00:02:26,470 --> 00:02:31,620\\nToday I was just happening to be looking through\\nthe book, and I saw a curious expression called\\n\\n30\\n00:02:31,620 --> 00:02:36,830\\n\"automobile squint.\" And according to Paul\\nDickson, that refers to the theory, in the\\n\\n31\\n00:02:36,830 --> 00:02:42,470\\nearly days of the automobile, that driving\\nwould adversely affect a ball player\\'s eye.\\n\\n32\\n00:02:42,470 --> 00:02:49,310\\nAccording to a report in the St. Louis Post-Dispatch\\nof 1910, \"Tris Speaker\\'s batting notch has\\n\\n33\\n00:02:49,310 --> 00:02:54,920\\nfallen considerably, and the automobile craze\\nis to blame for it.\" So please join me in\\n\\n34\\n00:02:54,920 --> 00:02:58,190\\nwelcoming Paul Dickson.\\n\\n35\\n00:02:58,190 --> 00:03:00,690\\n[applause]\\n\\n36\\n00:03:00,690 --> 00:03:07,690\\nPaul Dickson:\\nGot a little unpacking to do here. [laughs]\\n\\n37\\n00:03:15,020 --> 00:03:22,020\\nThank you very much, and I will talk about\\nthe Library in the ninth inning of this little\\n\\n38\\n00:03:22,430 --> 00:03:27,470\\ntalk today, just before we go to questions.\\n\\n39\\n00:03:27,470 --> 00:03:34,470\\nThe dictionary pretty much started 25 years\\nago this spring. In 1984 I was at a ball game\\n\\n40\\n00:03:38,450 --> 00:03:44,790\\nat Memorial Stadium with my older son. We\\nwere just seeing, you know, a Sunday afternoon\\n\\n41\\n00:03:44,790 --> 00:03:49,579\\ngame, and he kept saying to me, \"You know,\\nDad, why do they -- why is it this way?\" and\\n\\n42\\n00:03:49,580 --> 00:03:55,030\\n\"Why do they call it a dugout?\" and \"Why do\\nthey say shortstop?\" and why is it this and\\n\\n43\\n00:03:55,030 --> 00:04:00,910\\nwhy -- you know, the whole game -- \"Why do\\ntwo teams have different uniforms?\" and \"What\\'s\\n\\n44\\n00:04:00,910 --> 00:04:05,180\\nthat called, what are those funny socks with\\nthe no toes and no heels called?\" He\\'d always\\n\\n45\\n00:04:05,180 --> 00:04:09,010\\n-- he just, you know, as a 9-year old -- I\\nthink he was nine then -- would do is they\\n\\n46\\n00:04:09,010 --> 00:04:11,459\\njust have -- they just don\\'t stop questioning.\\n\\n47\\n00:04:11,460 --> 00:04:16,650\\nAnd I said, \"Look, we\\'ll go to the library\\nMonday morning, and we\\'ll go over to the reference\\n\\n48\\n00:04:16,649 --> 00:04:20,948\\nsection, and we\\'ll pick out a big fat baseball\\ndictionary, it\\'s probably green in color,\\n\\n49\\n00:04:20,949 --> 00:04:24,430\\nand we\\'ll look up all this stuff and find\\nout where all of it came from.\" And, of course,\\n\\n50\\n00:04:24,430 --> 00:04:29,139\\nthere was no such book. And I had been publishing\\nbooks by then, and my son -- my two sons really\\n\\n51\\n00:04:29,139 --> 00:04:34,449\\nbrought me back to baseball. I had been an\\navid, avid fan as a kid, and then as other\\n\\n52\\n00:04:34,449 --> 00:04:39,289\\nthings came along -- girls and mortgages and\\nother things -- I sort of got away from it.\\n\\n53\\n00:04:39,289 --> 00:04:44,870\\nBut it was when my kids, when I saw the game\\nagain through my children\\'s eyes, my two sons\\'\\n\\n54\\n00:04:44,870 --> 00:04:49,860\\neyes, it was just remarkable, and it got me\\ninto baseball writing. I\\'ve subsequently done\\n\\n55\\n00:04:49,860 --> 00:04:54,849\\nnine \"bat and ball\" books -- I say \"bat and\\nball\" because I\\'ve written one book on softball\\n\\n56\\n00:04:54,849 --> 00:04:59,810\\nand eight books on baseball, so I can make\\nthat claim.\\n\\n57\\n00:04:59,810 --> 00:05:06,460\\nSo, by starting this thing in \\'84, I went\\nto a number of publishers, one of whom -- I\\n\\n58\\n00:05:06,460 --> 00:05:12,789\\nproposed a book of 3,000 terms, and I worked\\non a very extensive head list -- always using\\n\\n59\\n00:05:12,789 --> 00:05:16,270\\nthe Library, by the way, looking at -- this\\nis way before there was Google, or the Internet,\\n\\n60\\n00:05:16,270 --> 00:05:19,710\\nor anything else -- but looking at, looking,\\ntrying to go through old periodicals, trying\\n\\n61\\n00:05:19,710 --> 00:05:23,669\\nto find 19th century terms, et cetera. I came\\nup with the idea that there would be probably\\n\\n62\\n00:05:23,669 --> 00:05:30,240\\nabout 3,000 terms, which was mind-boggling,\\nbecause the first publisher I went to, and\\n\\n63\\n00:05:30,240 --> 00:05:33,580\\nI proposed a -- I can\\'t remember the word\\nlength, but the number of pages -- my first\\n\\n64\\n00:05:33,580 --> 00:05:37,440\\npublisher, which was then, that I went to\\nwith it, was Doubleday, and in those days\\n\\n65\\n00:05:37,440 --> 00:05:41,780\\n-- I got this wonderful rejection letter from\\nthe editor. He said, \"Look, we own our own\\n\\n66\\n00:05:41,780 --> 00:05:47,818\\nplant now, and we\\'re not that good at gluing\\nbooks together. It\\'s a glue problem, not a\\n\\n67\\n00:05:47,819 --> 00:05:48,479\\ncontent problem.\"\\n\\n68\\n00:05:48,479 --> 00:05:48,830\\n[laughter]\\n\\n69\\n00:05:48,830 --> 00:05:54,469\\nSo I got my first rejection because of technological\\nreasons beyond my control. But I did go to\\n\\n70\\n00:05:54,469 --> 00:06:00,490\\na reference publisher, Facts on File, and\\nwe contracted it. We did a lot of work on\\n\\n71\\n00:06:00,490 --> 00:06:06,110\\nit, I brought a lot of people in, including\\nall the people at the Hall of Fame, and people\\n\\n72\\n00:06:06,110 --> 00:06:10,479\\nat the Library here, and other places. Put\\ntogether a small team of about a dozen to\\n\\n73\\n00:06:10,479 --> 00:06:15,969\\n15 helpers who really worked, helped me get\\nthat first edition out. The first edition\\n\\n74\\n00:06:15,969 --> 00:06:22,969\\ncame out in \\'89. That edition came out with\\n5,000 entries, which was pretty colossal;\\n\\n75\\n00:06:22,999 --> 00:06:29,999\\nit\\'s a big fat book. That book immediately\\nset off almost a storm of people showing up\\n\\n76\\n00:06:32,139 --> 00:06:37,969\\nand wanting to help me with the next book.\\nThings from umpires, people who were formerly\\n\\n77\\n00:06:37,969 --> 00:06:43,009\\numpires; people who were studying 19th-century\\nbaseball, people who were studying statistics.\\n\\n78\\n00:06:43,009 --> 00:06:48,900\\nPeople who gave vast amounts of time; my editor,\\nwho\\'s here today, Skip McAfee had spent literally\\n\\n79\\n00:06:48,900 --> 00:06:53,888\\n-- he became my editor at that point, and\\nbecame -- I would say thousands of hours had\\n\\n80\\n00:06:53,889 --> 00:07:00,430\\nbeen put into the book, and many other people,\\neven in the early days, dozens of dozens,\\n\\n81\\n00:07:00,430 --> 00:07:03,969\\nmaybe hundreds of hours, in some cases, doing\\nthe work.\\n\\n82\\n00:07:03,969 --> 00:07:09,719\\nThe second edition came out, again, on the\\n\"nine\" -- \\'89, then \\'99. We got up to 7,500,\\n\\n83\\n00:07:09,719 --> 00:07:16,719\\n7,200 -- something like that -- entries, and\\nthen, you know, I said, \"That\\'s it. It\\'s the\\n\\n84\\n00:07:17,080 --> 00:07:20,550\\ndefinitive work, that\\'s enough, we\\'re done.\\nYou know, there\\'s nothing else to be done\\n\\n85\\n00:07:20,550 --> 00:07:26,110\\nhere.\" And of course, I was absolutely dead\\nwrong, because then a whole new group of ideas\\n\\n86\\n00:07:26,110 --> 00:07:31,689\\nstarted coming in. There was a mushrooming\\nof statistics, of statistical terminology\\n\\n87\\n00:07:31,689 --> 00:07:37,139\\nthat came into play at that time, and it was\\nphenomenal. There was more and more stuff.\\n\\n88\\n00:07:37,139 --> 00:07:41,180\\nThere were more and more Spanish terms creeping\\ninto the language of baseball, there were\\n\\n89\\n00:07:41,180 --> 00:07:46,439\\nJapanese terms starting to come into baseball.\\nAnd because of the digitization of documents,\\n\\n90\\n00:07:46,439 --> 00:07:53,439\\nthere were more people doing 19th and 18th-century\\nresearch on protoypical or proto-ball, prototypical\\n\\n91\\n00:07:55,419 --> 00:07:56,650\\nballs of baseball.\\n\\n92\\n00:07:56,650 --> 00:08:02,068\\nSo I had scholars, by the time I finished\\nwith this edition -- again, it\\'s like a collective\\n\\n93\\n00:08:02,069 --> 00:08:08,289\\nsnowball going down a hill and picking up\\nmore snow -- if you look in the back of the\\n\\n94\\n00:08:08,289 --> 00:08:13,710\\nbook, you\\'ll find 350 people who were willing\\nto help me with this book. There are probably\\n\\n95\\n00:08:13,710 --> 00:08:20,710\\nhalf a dozen names from the Library, but there\\nare librarians, there are baseball -- just\\n\\n96\\n00:08:21,189 --> 00:08:26,259\\nplain old baseball fans, who would read their\\nlocal paper and mark terms as they came up;\\n\\n97\\n00:08:26,259 --> 00:08:31,389\\nother people who listened. But it also includes\\nsome of the top names in baseball scholarship.\\n\\n98\\n00:08:31,389 --> 00:08:35,930\\nI mentioned Skip; John Thorne, Peter Morris\\n-- there are a number of names, if you look\\n\\n99\\n00:08:35,929 --> 00:08:42,929\\nback there and you\\'ve done any reading on\\nsort of the scholarly side of baseball, there\\'s\\n\\n100\\n00:08:43,000 --> 00:08:47,400\\na \"who\\'s who\" back there of those people.\\nAnd then there are people who threw themselves\\n\\n101\\n00:08:47,400 --> 00:08:52,970\\ninto this very openly. David Shulman, who\\'s\\nprobably one of the most famous of all the\\n\\n102\\n00:08:52,970 --> 00:08:58,910\\nlinguistic researchers, who died in his 90s\\na few years ago; David was profiled in \"60\\n\\n103\\n00:08:58,910 --> 00:09:05,910\\nMinutes\" a couple months before he died, he\\nwas major profiled in \"The New Yorker.\" David\\n\\n104\\n00:09:06,180 --> 00:09:10,870\\nhad also been a code-breaker in World War\\nII, and had written his first article on baseball\\n\\n105\\n00:09:10,870 --> 00:09:12,780\\nslang in 1939.\\n\\n106\\n00:09:12,780 --> 00:09:18,790\\nSo, I put together this team of people that\\nwas, even to me, remarkable, and the only\\n\\n107\\n00:09:18,790 --> 00:09:23,000\\nmetaphor I could come up with to explain it\\nwas Tom Sawyer and the fence. You know, when\\n\\n108\\n00:09:23,000 --> 00:09:26,380\\nTom Sawyer is painting the white fence, and\\neverybody is saying, \"What are you doing Tom?\"\\n\\n109\\n00:09:26,380 --> 00:09:31,810\\nAnd he says \"Oh, I\\'m having the best time\\nof my life painting this fence.\" And so I\\n\\n110\\n00:09:31,810 --> 00:09:37,959\\nsort of picked up people that way, and it\\'s\\nbeen almost -- if I was in your seat listening\\n\\n111\\n00:09:37,960 --> 00:09:42,840\\nto me saying that I recruited 350 people that\\nI didn\\'t have to pay, and who are all mostly\\n\\n112\\n00:09:42,840 --> 00:09:49,840\\npleased as punch to be in the book, including,\\nyou know, top lexicographers -- John Morse,\\n\\n113\\n00:09:50,710 --> 00:09:55,530\\nGrant Barrett, and I mean, up and down the\\nline, Erin McKean -- these are all people\\n\\n114\\n00:09:55,530 --> 00:10:01,699\\nthat kicked in, and these are people -- Jesse\\nSheidlower, the OED people have really helped\\n\\n115\\n00:10:01,700 --> 00:10:06,040\\nme a lot on this, I mean, on a personal level.\\n\\n116\\n00:10:06,040 --> 00:10:10,860\\nSo, it\\'s been remarkable, the fact that just\\nthis civilian, this guy, you know, gets all\\n\\n117\\n00:10:10,860 --> 00:10:14,510\\nthese -- and there are probably more PhDs\\n-- you could probably staff a small university\\n\\n118\\n00:10:14,510 --> 00:10:16,980\\nwith the PhDs who have helped with this book.\\n\\n119\\n00:10:16,980 --> 00:10:17,380\\n[laughter]\\n\\n120\\n00:10:17,380 --> 00:10:23,650\\nSo I just -- [laughs] I take that all -- and\\nthe question, of course, becomes how can there\\n\\n121\\n00:10:23,650 --> 00:10:30,650\\nbe -- well, the exactly number -- I have to\\nwrite this down. There\\'s exactly 10,687 definitions\\n\\n122\\n00:10:30,740 --> 00:10:37,740\\nin the book -- no, entries; 10,687 entries,\\n12,358 definitions. The reason is many of\\n\\n123\\n00:10:42,680 --> 00:10:49,530\\nthese terms have multiple meanings. There\\nare 15 baseball meanings of \"hook,\" 13 meanings\\n\\n124\\n00:10:49,530 --> 00:10:54,900\\nof \"slot,\" 11 of \"break,\" \"cut\" -- there are\\ncertain terms like this which in face have\\n\\n125\\n00:10:54,900 --> 00:11:00,990\\nspecific baseball meanings. And when you start\\nlooking at language, you begin to realize\\n\\n126\\n00:11:00,990 --> 00:11:05,770\\nthat words that vastly different meanings\\nwithin the context of even one small area.\\n\\n127\\n00:11:05,770 --> 00:11:12,770\\nFor example, \"in\" has multiple meanings: the\\ninfield is in, \"Is this relief pitcher going\\n\\n128\\n00:11:14,880 --> 00:11:21,670\\nto go in tonight?\" et cetera, et cetera. So\\n\"in\" starts to be based on more than one meaning\\n\\n129\\n00:11:21,670 --> 00:11:23,180\\nwithin the context of baseball.\\n\\n130\\n00:11:23,180 --> 00:11:29,359\\nThe one that got me started really thinking\\nthis way; the word with the most meanings\\n\\n131\\n00:11:29,360 --> 00:11:36,360\\nin the Oxford English Dictionary is \"set,\"\\nwhich has 137 meanings as a noun and a verb.\\n\\n132\\n00:11:39,110 --> 00:11:44,680\\nEverything from \"Boolean set,\" to \"set your\\nhair,\" to a \"set\" in tennis, but each 137\\n\\n133\\n00:11:44,680 --> 00:11:50,579\\nseparate meanings of \"set.\" So it becomes\\nsort of a wonderful sort of drill in looking\\n\\n134\\n00:11:50,580 --> 00:11:57,140\\nat language as it exists. The 10,000 is fascinating,\\nbecause the general rule of thumb is that\\n\\n135\\n00:11:57,140 --> 00:12:04,140\\na person pretty much with a high school education\\nworking day-to-day is about 10,000 words,\\n\\n136\\n00:12:05,390 --> 00:12:09,790\\nthat their daily vocabulary is about -- you\\nknow, the one they need to get up in the morning\\n\\n137\\n00:12:09,790 --> 00:12:13,480\\nto get to work, at home, do whatever they\\nhave to do, is about 10,000 words. So when\\n\\n138\\n00:12:13,480 --> 00:12:17,280\\nyou realize, this is just 10,000 words for\\nbaseball, that\\'s pretty extraordinary.\\n\\n139\\n00:12:17,280 --> 00:12:23,980\\nAnd the question is: how come? How come baseball\\nhas worked like this? How come it has taken\\n\\n140\\n00:12:23,980 --> 00:12:28,530\\non this sort of aura? I mean, you couldn\\'t\\ndo -- I mean, this book is 4.2 pounds.\\n\\n141\\n00:12:28,530 --> 00:12:29,300\\n[laughter]\\n\\n142\\n00:12:29,300 --> 00:12:36,300\\nYou know, it\\'s a mess, and we had to cut it\\nat the end. There\\'s 635,000 words, individual\\n\\n143\\n00:12:36,410 --> 00:12:43,410\\nwords, and you know, it\\'s a massive thing.\\nAnd again, it\\'s been 25 years in the works.\\n\\n144\\n00:12:43,930 --> 00:12:49,410\\nI often pinch myself and I say, \"Why is this?\\nWhy is this not true of other things? Why\\n\\n145\\n00:12:49,410 --> 00:12:51,670\\nis this true of baseball in particular?\"\\n\\n146\\n00:12:51,670 --> 00:12:56,550\\nI think one of the reasons was the way baseball\\ndeveloped and the importance of baseball with\\n\\n147\\n00:12:56,550 --> 00:13:01,300\\nthe development of newspapers in America.\\nBaseball and newspapers were meant for each\\n\\n148\\n00:13:01,300 --> 00:13:07,130\\nother, and in the early days, when you had\\ntelegraph and no other means of communicating\\n\\n149\\n00:13:07,130 --> 00:13:13,000\\nbetween cities, the box score of a baseball\\ngame could be sent from one coast to the other\\n\\n150\\n00:13:13,000 --> 00:13:18,980\\novernight so the morning paper would have\\nthe box score from that game, because it was\\n\\n151\\n00:13:18,980 --> 00:13:23,570\\nvery easy to transmit those numbers, and they\\nwere based on a formula. So you had this very\\n\\n152\\n00:13:23,570 --> 00:13:30,410\\nearly business with that. The other thing\\nyou had very early was a certain intense interest\\n\\n153\\n00:13:30,410 --> 00:13:35,209\\nin putting your best writers on baseball,\\nand this went right into this century, that\\n\\n154\\n00:13:35,210 --> 00:13:41,620\\nyou would pick the guys with the best sort\\nof use of metaphor, the best use of colorful\\n\\n155\\n00:13:41,620 --> 00:13:48,030\\nlanguage, because baseball has since needed\\nvariation in order to really become interesting\\n\\n156\\n00:13:48,030 --> 00:13:53,890\\nto read about. That whole business -- and\\nof course, at the same time there was a huge\\n\\n157\\n00:13:53,890 --> 00:13:59,040\\nmovement, which came out of the University\\nof Chicago around 1920, when there was a \"pure\\n\\n158\\n00:13:59,040 --> 00:14:05,260\\nEnglish\" movement in this country, and there\\nwere long editorials. Some newspapers tried\\n\\n159\\n00:14:05,260 --> 00:14:11,720\\nto ban baseball slang from the sports sections.\\nThe idea that it was going to somehow poison\\n\\n160\\n00:14:11,720 --> 00:14:16,840\\nthe ability of young people to communicate,\\nbecause they were reading these sports sections\\n\\n161\\n00:14:16,840 --> 00:14:22,490\\nthat were using all this slang, and using\\nwords like \"slugger,\" you know, and \"the brakes,\"\\n\\n162\\n00:14:22,490 --> 00:14:27,460\\nand these highly slang-y terms. So it was\\nsort of like mathematicians opposing the box\\n\\n163\\n00:14:27,460 --> 00:14:34,460\\nscores because it would give the kids a bad\\nidea of what math is really like. It was insane.\\n\\n164\\n00:14:34,840 --> 00:14:35,090\\n[laughter]\\n\\n165\\n00:14:35,090 --> 00:14:39,460\\nAnd it was also the liberals -- it was \"The\\nNation\" magazine got aboard this thing, University\\n\\n166\\n00:14:39,460 --> 00:14:43,670\\nof Chicago saying \"You\\'ve got to stop all\\nthis baseball slang, we\\'ll ruin our children.\"\\n\\n167\\n00:14:43,670 --> 00:14:44,920\\n[laughter]\\n\\n168\\n00:14:44,920 --> 00:14:51,890\\nAnd of course, that goes all the way through\\ninto the famous business with Dizzy Dean using\\n\\n169\\n00:14:51,890 --> 00:14:57,870\\nthe word \"ain\\'t,\" in the depths of the Depression\\nhe\\'s chastised on the radio by somebody who\\n\\n170\\n00:14:57,870 --> 00:15:03,510\\nwas -- Bergen Evans or somebody -- who was\\na user of perfect English, and said that he\\n\\n171\\n00:15:03,510 --> 00:15:07,819\\nshould use \"ain\\'t\" on the radio, and Dizzy\\nsaid, \"A lot of people who ain\\'t saying ain\\'t,\\n\\n172\\n00:15:07,820 --> 00:15:10,910\\nain\\'t making a living.\"\\n\\n173\\n00:15:10,910 --> 00:15:12,260\\n[laughter]\\n\\n174\\n00:15:12,260 --> 00:15:18,040\\nAnd I think the other big influence was the\\nbroadcasters. I mean, the early days of radio,\\n\\n175\\n00:15:18,040 --> 00:15:25,040\\nthere was nothing like it. You had these big-city\\nteams bringing in these Southerners, who were\\n\\n176\\n00:15:26,190 --> 00:15:32,340\\njust tripping over their own metaphors. And\\nyou know, you\\'ve got Red Smith, and Mel Allen,\\n\\n177\\n00:15:32,340 --> 00:15:37,880\\nand Arch MacDonald, and all these phrases\\n-- Red Barber, I said Red Smith, who was also\\n\\n178\\n00:15:37,880 --> 00:15:44,260\\na great writer, but Red Barber -- and Barber\\nbrought in all of these sort of Southern-isms\\n\\n179\\n00:15:44,260 --> 00:15:49,600\\ninto Brooklyn. And he would talk about, you\\nknow, \"being in the catbird seat,\" and the\\n\\n180\\n00:15:49,600 --> 00:15:55,510\\nbases being \"FOBs -- full of Brooklyns,\" and\\nArch Macdonald would talk about \"ducks on\\n\\n181\\n00:15:55,510 --> 00:16:01,170\\nthe pond.\" And this carried through, and it\\nstill carries through today. And many places\\n\\n182\\n00:16:01,170 --> 00:16:07,010\\nin this country, the baseball on the radio\\nis vastly more colorful than baseball on television,\\n\\n183\\n00:16:07,010 --> 00:16:11,610\\nbecause you know -- you have in your mind,\\nyou know exactly what the dimensions are out\\n\\n184\\n00:16:11,610 --> 00:16:16,580\\nthere. So everything else becomes metaphoric,\\nand everything else sort of becomes colorful,\\n\\n185\\n00:16:16,580 --> 00:16:19,840\\nand everything -- you\\'re filling time, but\\nyou\\'re also -- there\\'s a certain poetry to\\n\\n186\\n00:16:19,840 --> 00:16:25,620\\nit. So baseball was vastly expanded by the\\nbroadcasters, and again, almost every city\\n\\n187\\n00:16:25,620 --> 00:16:30,290\\nin the country. \"Well, I grew up in...\" -- you\\nname a city. \"I grew up in St. Louis.\" \"Oh,\\n\\n188\\n00:16:30,290 --> 00:16:37,290\\nI remember so-and-so, that was the great announcer.\"\\nAnd even Harry Kalas who died two days ago\\n\\n189\\n00:16:37,320 --> 00:16:41,550\\nwas one of these guys, was a broadcaster that\\neverybody just loved. And so that\\'s another\\n\\n190\\n00:16:41,550 --> 00:16:44,680\\nreason for all of this.\\n\\n191\\n00:16:44,680 --> 00:16:49,260\\nThe other thing that\\'s amazing is the ability\\nof baseball to create new terminology. I was\\n\\n192\\n00:16:49,260 --> 00:16:53,200\\njust -- in the new edition, I just picked\\na couple things that I just loved that were\\n\\n193\\n00:16:53,200 --> 00:17:00,120\\nin the new edition. One of my favorites is\\n\"peacocking,\" and peacocking is a sort of\\n\\n194\\n00:17:00,120 --> 00:17:04,849\\na manifestation that players, starting with\\nRicky Henderson and some others who do it,\\n\\n195\\n00:17:04,849 --> 00:17:09,708\\nwhen they go to the plate they start peacocking\\nwith their jerseys, they pull them out like\\n\\n196\\n00:17:09,709 --> 00:17:14,129\\nthis. And for some reason, somebody picked\\nup the term, created the term \"peacocking\"\\n\\n197\\n00:17:14,128 --> 00:17:18,039\\nfor this, when they go like this. And I\\'m\\nsure it has something to do with ventilation,\\n\\n198\\n00:17:18,039 --> 00:17:22,730\\nor superstition or something else, but it\\'s\\njust a wonderful term. And another one I love\\n\\n199\\n00:17:22,730 --> 00:17:28,569\\nis \"top-stepper,\" which is usually a relief\\npitcher, but a pitcher who makes his manger\\n\\n200\\n00:17:28,569 --> 00:17:34,620\\nor his pitching coach so nervous that he stands\\non the top step of the dugout to watch him.\\n\\n201\\n00:17:34,620 --> 00:17:36,399\\n[laughter]\\n\\n202\\n00:17:36,399 --> 00:17:43,399\\nAnd there\\'s another one, a nice one is \"loogy,\"\\nwhich is a lefty one-out guy, meaning a left-handed\\n\\n203\\n00:17:44,090 --> 00:17:51,090\\nreliever who comes in for one out. And the\\none we have a lot of fun with is \"Bugs Bunny\\n\\n204\\n00:17:51,610 --> 00:17:56,529\\nchange-up,\" and that came in a couple years\\nago, and it basically -- what it is, it\\'s\\n\\n205\\n00:17:56,529 --> 00:18:02,970\\na ball that appears to be a fast ball, but\\njust as it gets into the sort of outer extreme\\n\\n206\\n00:18:02,970 --> 00:18:09,970\\nof the base of the wheelhouse, where the batter\\nwill swing, it stops just momentarily -- appears\\n\\n207\\n00:18:11,360 --> 00:18:16,229\\nto stop momentarily, you know, for an infinitesimal\\nfraction of a second -- and then continues\\n\\n208\\n00:18:16,230 --> 00:18:23,230\\nin a bit slower. And it has -- it\\'s an illusion,\\net cetera, but certain pitchers were -- they\\'d\\n\\n209\\n00:18:25,700 --> 00:18:31,070\\nsay, \"He was throwing the Bugs Bunny change-up.\"\\nAnd it took a lot of work, and really work\\n\\n210\\n00:18:31,070 --> 00:18:36,990\\nI did with William Safire, we actually -- he\\nput me on it, and we got working on it, and\\n\\n211\\n00:18:36,990 --> 00:18:43,990\\nSafire -- and we came up with a 1946 Bugs\\nBunny cartoon in which Bugs is playing the\\n\\n212\\n00:18:44,649 --> 00:18:50,620\\nGashouse Gorillas, it\\'s a \"Looney Tunes\" cartoon,\\nand Bugs throws this one pitch, and these\\n\\n213\\n00:18:50,620 --> 00:18:55,350\\nmonstrous guys can\\'t hit it, because it stops,\\nand their timing is thrown off. So he strikes\\n\\n214\\n00:18:55,350 --> 00:18:59,330\\nout the side with this one pitch, so hence\\nBugs Bunny change-up.\\n\\n215\\n00:18:59,330 --> 00:19:06,269\\nAnd you know, again, there are a lot of others,\\nsome of which, again, are more humorous than\\n\\n216\\n00:19:06,269 --> 00:19:11,879\\nanything else. Tug McGraw -- who I interviewed\\nfor the second edition, before he passed away\\n\\n217\\n00:19:11,879 --> 00:19:17,299\\n-- McGraw had these wonderful names for every\\npitch in the business. He had a Jameson, which\\n\\n218\\n00:19:17,299 --> 00:19:19,168\\nwas neat and straight, it was a fastball.\\n\\n219\\n00:19:19,169 --> 00:19:19,639\\n[laughter]\\n\\n220\\n00:19:19,639 --> 00:19:25,360\\nAnd he was the one who came up with the Linda\\nRonstadt fastball -- Linda Ronstadt fastball\\n\\n221\\n00:19:25,360 --> 00:19:28,418\\nis \"Blue Bayou\" -- one that \"blew by you.\"\\n\\n222\\n00:19:28,419 --> 00:19:28,840\\n[laughter]\\n\\n223\\n00:19:28,840 --> 00:19:35,658\\nAnd then the Peggy Lee fastball, which is\\n\"Is That All There Is?\"\\n\\n224\\n00:19:35,659 --> 00:19:36,879\\n[laughter]\\n\\n225\\n00:19:36,879 --> 00:19:41,980\\nBut these go back, I mean there are a lot\\nof earlier ones, too. They are playful. I\\n\\n226\\n00:19:41,980 --> 00:19:47,100\\nmean, Satchel Paige had his various pitches,\\nand hesitation pitches, and so this goes -- there\\'s\\n\\n227\\n00:19:47,100 --> 00:19:52,019\\na whole history of this sort of playfulness\\nwith baseball language. There are also, in\\n\\n228\\n00:19:52,019 --> 00:19:58,440\\ndoing this book, there are some tremendous\\nsurprises, and I\\'ll list a couple of them,\\n\\n229\\n00:19:58,440 --> 00:20:04,360\\none of which is that a lot of these terms,\\nwhich seem that they were born into baseball,\\n\\n230\\n00:20:04,360 --> 00:20:10,590\\nactually came out of something else. I mean,\\nthe earliest uses of \"grand slam\" is in bridge,\\n\\n231\\n00:20:10,590 --> 00:20:16,830\\ncontract bridge. Rubber game -- when we say,\\nyou know, of the three-game series, each team\\n\\n232\\n00:20:16,830 --> 00:20:20,699\\nis one-one, and the third game is the rubber\\ngame. That\\'s a bridge term. And it came into\\n\\n233\\n00:20:20,700 --> 00:20:25,460\\nbaseball in the 1860s, but it has always been\\n-- you know, that was a borrowing from bridge.\\n\\n234\\n00:20:25,460 --> 00:20:29,869\\nThe borrowings were everywhere. I mean, you\\'ve\\ngot \"double-header,\" going originally to a\\n\\n235\\n00:20:29,869 --> 00:20:35,509\\nrailroad train with two engines, two locomotives,\\nall the early uses of that. There are ones\\n\\n236\\n00:20:35,509 --> 00:20:40,769\\nthat -- \"hit and run\" is another one, sadly,\\nin the news in a baseball context, because\\n\\n237\\n00:20:40,769 --> 00:20:47,080\\nof last week\\'s fatality, but \"hit and run\"\\nwas a baseball term before it was a name for\\n\\n238\\n00:20:47,080 --> 00:20:53,408\\na traffic felony, for a vehicular felony.\\nAnother one -- I think the most curious one\\n\\n239\\n00:20:53,409 --> 00:20:57,889\\nis \"jazz,\" and there\\'s -- we have, I don\\'t\\nknow, about three or four columns on the word\\n\\n240\\n00:20:57,889 --> 00:21:04,090\\n\"jazz\" and how all the early uses of \"jazz\"\\n-- and we brought in some major scholars:\\n\\n241\\n00:21:04,090 --> 00:21:11,090\\nGerald Cohen, who is probably the leading\\nexpert on etymology in the country. Gerald\\n\\n242\\n00:21:11,600 --> 00:21:18,600\\ncame in with this, a lot of the work is his.\\nBut all the early uses of \"jazz\" are in baseball,\\n\\n243\\n00:21:19,940 --> 00:21:26,940\\nand they only transmute to music in 1916,\\nbut before then, a team is jazzed, the team\\n\\n244\\n00:21:29,080 --> 00:21:33,840\\nmay have no skill, but it has plenty of jazz.\\nAnd these were appearing in the papers, you\\n\\n245\\n00:21:33,840 --> 00:21:38,899\\ncould go through the microfilm and see evidence\\nof the word jazz showing up before it shows\\n\\n246\\n00:21:38,899 --> 00:21:43,678\\nup in music. So, that\\'s been really an interesting\\nthing.\\n\\n247\\n00:21:43,679 --> 00:21:48,139\\nAnother thing I want to just go over a little\\nbit is, there are a couple of terms -- everybody\\n\\n248\\n00:21:48,139 --> 00:21:52,240\\nsays to me, \"What are your favorites? You\\nknow, what are the things that you really\\n\\n249\\n00:21:52,240 --> 00:21:59,240\\nlike?\" And I think the three that I get the\\nmost fun out of -- one of them is \"home run.\"\\n\\n250\\n00:22:00,149 --> 00:22:07,149\\n\"Home run\" is very interesting, because \"home\\nrun\" starts very early, but it\\'s not -- it\\n\\n251\\n00:22:07,779 --> 00:22:13,600\\nstarts in the 1850s, but early, early citations\\n-- again, these are things I found here at\\n\\n252\\n00:22:13,600 --> 00:22:20,600\\nthe library -- all the early citations for\\n\"home run\" are from horse racing, which is\\n\\n253\\n00:22:20,610 --> 00:22:25,719\\nfascinating, because it became -- it was sort\\nof the same as home stretch, but it was sort\\n\\n254\\n00:22:25,720 --> 00:22:32,600\\nof an unencumbered, free sort of finishing\\nof the race. And that -- of course, home run\\n\\n255\\n00:22:32,600 --> 00:22:39,600\\nis interesting because it has all these other\\nmeanings, ranging from -- there\\'s a set of\\n\\n256\\n00:22:39,730 --> 00:22:44,389\\nsexual, sort of, accomplishments that ends\\nwith a \"home run,\" that teenagers know all\\n\\n257\\n00:22:44,389 --> 00:22:46,129\\nabout, or they used to know about.\\n\\n258\\n00:22:46,129 --> 00:22:46,379\\n[laughter]\\n\\n259\\n00:22:46,379 --> 00:22:53,379\\nI assume they do today. All the way to business-like\\nstock, with -- I mean, I\\'ve seen a Wall Street\\n\\n260\\n00:22:53,610 --> 00:22:59,549\\ndictionary that says, you know, \"home run:\\na stock with an unimaginable capital gain;\\n\\n261\\n00:22:59,549 --> 00:23:05,119\\na home run.\" And of course, it\\'s [unintelligible].\\nTo some degree, has been supplanted by \"slam\\n\\n262\\n00:23:05,119 --> 00:23:10,009\\ndunk,\" but \"slam dunk\" is something a little\\nbit easier, I think, than a \"home run\". A\\n\\n263\\n00:23:10,009 --> 00:23:14,869\\n\"home run\" is really a big accomplishment.\\nSo I just -- and we\\'ve done -- there\\'s a long\\n\\n264\\n00:23:14,869 --> 00:23:19,918\\nexplanation of the development of the term,\\nand how it evolved over the years.\\n\\n265\\n00:23:19,919 --> 00:23:26,919\\nAnother one that I just love to talk about\\nis the term \"at bat, on deck, in the hold.\"\\n\\n266\\n00:23:28,909 --> 00:23:34,480\\nAnd we put a lot of research into this, and\\nbasically tracked it back to a particular\\n\\n267\\n00:23:34,480 --> 00:23:41,480\\ngame played in Belfast, Maine in 1889, I think\\n-- yeah, 1889 -- in which the Boston Red Sox\\n\\n268\\n00:23:44,379 --> 00:23:50,629\\nwere traveling in an exhibition series through\\nNew England, and they took on a team called\\n\\n269\\n00:23:50,629 --> 00:23:57,629\\nthe Belfast Pastimes of Belfast, Maine. And\\nin the process of beating the Pastimes 35\\n\\n270\\n00:23:57,830 --> 00:24:04,110\\nto 1, in this baseball game, the announcer\\n-- in those days, the scorekeeper actually\\n\\n271\\n00:24:04,110 --> 00:24:07,639\\ngave the -- they would say, they would announce\\nthe next inning, and each team had its own\\n\\n272\\n00:24:07,639 --> 00:24:12,699\\nscorekeeper. And the scorekeeper would get\\nup and say, \"At bat, next, next.\" And then\\n\\n273\\n00:24:12,700 --> 00:24:19,700\\nthe guy who was the scorekeeper for the Pastimes,\\nwho was a sailor, according to the original\\n\\n274\\n00:24:20,509 --> 00:24:26,399\\ndescription -- and of course, Belfast is a\\nseagoing town -- and he says, he gets up and\\n\\n275\\n00:24:26,399 --> 00:24:32,639\\nhe says, \"At bat so-and-so, on deck so-and-so,\\nin the hold so-and-so,\" as in the dugout,\\n\\n276\\n00:24:32,639 --> 00:24:37,899\\nstill in the hold of his ship. And what happens\\nis the Boston writers who were up there pick\\n\\n277\\n00:24:37,899 --> 00:24:43,779\\nthis up and take it back, and it starts showing\\nup in the papers, and all of a sudden that\\n\\n278\\n00:24:43,779 --> 00:24:46,759\\nbecomes the way, that\\'s transmogrified.\\n\\n279\\n00:24:46,759 --> 00:24:53,360\\nAnd again, a lot of this business about doing\\netymological research -- and I actually was\\n\\n280\\n00:24:53,360 --> 00:24:58,199\\nup, I actually went to Belfast, Maine and\\nwent digging through the papers, and found\\n\\n281\\n00:24:58,200 --> 00:25:02,789\\nrecollections of that game by people actually\\non that field and hearing it for the first\\n\\n282\\n00:25:02,789 --> 00:25:06,860\\ntime. I couldn\\'t find the actual original\\ngame -- I couldn\\'t find the game, but I couldn\\'t\\n\\n283\\n00:25:06,860 --> 00:25:11,039\\nfind mention, but I found, later, other people\\nwho had been at the game saying, \"That was\\n\\n284\\n00:25:11,039 --> 00:25:16,950\\nthe game they first used this term.\" So that\\nwas how all of this was recalled.\\n\\n285\\n00:25:16,950 --> 00:25:23,950\\nAnother one that\\'s an awful lot of fun is\\n\"fungo,\" which comes in, it\\'s kind of a practice\\n\\n286\\n00:25:24,379 --> 00:25:29,789\\nhit, a practice game, you know, hitting the\\nball up in the air, sort of a catch game.\\n\\n287\\n00:25:29,789 --> 00:25:36,789\\nAnd what\\'s amazing about that is that term\\ncomes in in 1867, and there are five really\\n\\n288\\n00:25:37,929 --> 00:25:44,929\\nstrong camps of lexicographers, etymologists,\\nthose people who study language, there are\\n\\n289\\n00:25:45,879 --> 00:25:52,879\\nfive camps on \"fungo.\" One of them is this\\nextruded thing, which I have a hard time with,\\n\\n290\\n00:25:53,090 --> 00:25:57,449\\nwhich is \"fungible,\" which sort of, like,\\nit\\'s a replacement for the other one. I\\'m\\n\\n291\\n00:25:57,450 --> 00:26:03,519\\nnot really cool on that, but I -- I have to\\ngive the scholars their room to play. The\\n\\n292\\n00:26:03,519 --> 00:26:07,700\\nother is that it comes from fungus, meaning\\nthat it was made of a cheaper wood; the \"fungo\"\\n\\n293\\n00:26:07,700 --> 00:26:12,289\\nbat was usually a cheaper bat and it didn\\'t\\ncost as much, and you know, it was just meant\\n\\n294\\n00:26:12,289 --> 00:26:18,399\\nfor a one-arm flip like this. The other, which\\nis the people at the Dictionary of American\\n\\n295\\n00:26:18,399 --> 00:26:24,518\\nRegional English, they have picked as their\\netymology that it comes from the German word\\n\\n296\\n00:26:24,519 --> 00:26:30,399\\n\"fangen,\" \"to catch.\" But there is also a\\nfaction in the Dictionary of American Regional\\n\\n297\\n00:26:30,399 --> 00:26:37,360\\nEnglish who has talked about the Scottish\\nverb \"feng\" [spelled phonetically], which\\n\\n298\\n00:26:37,360 --> 00:26:39,498\\nis \"to pitch,\" or \"to toss.\"\\n\\n299\\n00:26:39,499 --> 00:26:46,499\\nThe one I think -- the one that makes the\\nmost sense is there\\'s an old cricket term\\n\\n300\\n00:26:46,739 --> 00:26:50,950\\nwhich also follows an old street game, an\\nold Scottish street term, which is \"fungo,\"\\n\\n301\\n00:26:50,950 --> 00:26:56,149\\nwhich is, like, \"have a fun go at it.\" And\\nin cricket, there\\'s a very early term for\\n\\n302\\n00:26:56,149 --> 00:27:01,080\\na practice swing, in which you would say,\\n\"Take a fun go\" -- in other words, take a\\n\\n303\\n00:27:01,080 --> 00:27:06,918\\nbat at it, just for the fun of it. Very interesting\\nuse of the word \"fung,\" but you see actually\\n\\n304\\n00:27:06,919 --> 00:27:13,919\\nearly cricket descriptions, cricket games,\\nwhich said \"The batter took a few fun gos.\"\\n\\n305\\n00:27:18,519 --> 00:27:22,159\\nThere\\'s also a Scottish street game that says\\n\"One, two, three, go, fun go\" that sort of\\n\\n306\\n00:27:22,159 --> 00:27:28,509\\nfits into that as well. So, again, it\\'s -- and\\nI\\'m sure, sometime next week I will get a\\n\\n307\\n00:27:28,509 --> 00:27:33,619\\nletter from somebody saying \"My grandfather\\ncame from Aberdeen, had written this in his\\n\\n308\\n00:27:33,619 --> 00:27:37,350\\nbook in such and such a year.\"\\n\\n309\\n00:27:37,350 --> 00:27:44,350\\nThe other one, I think, that causes the most\\ninterest along the way has been \"fan\". The\\n\\n310\\n00:27:44,580 --> 00:27:49,449\\npredominant belief, including the Oxford English\\nDictionary and others, is that \"fan\" is a\\n\\n311\\n00:27:49,450 --> 00:27:55,109\\nclipped form of \"fanatic,\" and there\\'s some\\nsignificant backup to that. Another recent\\n\\n312\\n00:27:55,109 --> 00:28:01,210\\n-- and again, the book has -- I think we have\\neight or nine columns on the etymology of\\n\\n313\\n00:28:01,210 --> 00:28:04,369\\nthe word \"fan,\" so there\\'s a lot of scholarship\\nthat went into each of these explanations,\\n\\n314\\n00:28:04,369 --> 00:28:11,369\\nI\\'m giving you the sort of quick and dirty.\\nThe other is -- it\\'s sort of a synonym for\\n\\n315\\n00:28:13,830 --> 00:28:20,168\\n\"windbag,\" or like a fan, you know, bellowing\\nlike a fan, creating a lot of air. And Peter\\n\\n316\\n00:28:20,169 --> 00:28:25,919\\nMorris, who delivered a scholarly paper, a\\nvery fine paper, believes in this, and has\\n\\n317\\n00:28:25,919 --> 00:28:32,570\\nattestations and has his own proof. The one\\nthat I find the most interesting is -- and\\n\\n318\\n00:28:32,570 --> 00:28:39,330\\nmaybe the most romantically inclined to go\\nwith -- is \"fan\" comes from the word \"fancy\".\\n\\n319\\n00:28:39,330 --> 00:28:44,279\\nAnd this word starts showing up in 1818.\\n\\n320\\n00:28:44,279 --> 00:28:49,109\\nThere\\'s a British writer named Pierce Egan,\\nall of whose books I have looked at here.\\n\\n321\\n00:28:49,109 --> 00:28:54,149\\nThey\\'re remarkable, but Pierce Egan was a\\nBritish journalist who pretty much invented\\n\\n322\\n00:28:54,150 --> 00:28:58,840\\n-- two things he invented was: basically sports\\nwriting, he was the first beat sports writer\\n\\n323\\n00:28:58,840 --> 00:29:05,418\\nin the world. And he was also the first newspaper\\nperson to basically use slang as opposed to\\n\\n324\\n00:29:05,419 --> 00:29:10,869\\nthe King\\'s English. He would write very slangy.\\nHe wrote about cockfighting -- he only wrote\\n\\n325\\n00:29:10,869 --> 00:29:15,309\\nabout the lower sports, he wrote about cockfighting,\\nand he came up with terms like \"battle royale\"\\n\\n326\\n00:29:15,309 --> 00:29:20,389\\nor \"the cock of the walk,\" and he had this\\nwonderful, punchy sort of thing. And he loved\\n\\n327\\n00:29:20,389 --> 00:29:25,369\\nto write about prize-fighting, and he virtually\\ninvented the language of prize-fighting. He\\n\\n328\\n00:29:25,369 --> 00:29:31,939\\nwould cover -- he didn\\'t cover fox hunting\\nand the elite sports, he covered bull baiting\\n\\n329\\n00:29:31,940 --> 00:29:36,679\\nand pigeon racing and cockfighting and prize-fighting.\\n\\n330\\n00:29:36,679 --> 00:29:41,989\\nBut Egan, who had this marvelous -- if I was\\nyounger, I would do a biography of Pierce\\n\\n331\\n00:29:41,989 --> 00:29:47,679\\nEgan, but that\\'s another story -- but he had\\nthis group that he derided, a group he called\\n\\n332\\n00:29:47,679 --> 00:29:54,679\\n\"the fancy\". And the fancy were basically\\nnoblemen who slummed in London and went to\\n\\n333\\n00:29:55,799 --> 00:30:02,799\\nprize-fights and went to cockfights and were\\nsort of dissipated guys. They drank, they\\n\\n334\\n00:30:03,429 --> 00:30:10,429\\nwere kind in the movies that put this perfumed\\nhandkerchief up their sleeve. And he would\\n\\n335\\n00:30:10,559 --> 00:30:16,340\\ntalk about them derisively, alternately as\\n\"the fancy boys,\" but then it became \"the\\n\\n336\\n00:30:16,340 --> 00:30:22,369\\nfancy,\" and then over time, you start to see\\nthings showing -- and that goes across the\\n\\n337\\n00:30:22,369 --> 00:30:28,040\\nworld to America. So it\\'s this sort of elite\\ngroup of people who are slumming and betting\\n\\n338\\n00:30:28,040 --> 00:30:35,040\\n-- they bet heavily, the fancy boys bet heavily\\n-- and that it morphs into \"fanc\" as slang,\\n\\n339\\n00:30:35,940 --> 00:30:42,940\\n\"the fancy fanc\". And Mencken, H.L. Mencken\\nin \"American Language,\" he basically has a\\n\\n340\\n00:30:43,409 --> 00:30:48,899\\nscholar that he found who first brought this\\nup, and Mencken actually goes on the side\\n\\n341\\n00:30:48,899 --> 00:30:55,899\\nof the \"fanc\". So I just thought those, just\\nto go through a couple of my favorite ones.\\n\\n342\\n00:30:56,690 --> 00:31:02,799\\nSo I think I want to say something about the\\nlanguage -- and I\\'m aware of the time here,\\n\\n343\\n00:31:02,799 --> 00:31:08,679\\nbecause I don\\'t want to [inaudible]. I think\\nthe thing about baseball which is remarkable,\\n\\n344\\n00:31:08,679 --> 00:31:15,330\\nand one of the other reasons the language\\nis so rich -- I think one thing is that it\\n\\n345\\n00:31:15,330 --> 00:31:22,330\\ntranscends eras, that basically the language\\nis -- we are told, for example, every decade\\n\\n346\\n00:31:22,659 --> 00:31:27,489\\nsomeone writes a column in some newspaper\\nand says, \"You know, the old terms are gone.\\n\\n347\\n00:31:27,489 --> 00:31:32,879\\nWe never hear of a \\'Texas leaguer\\' anymore,\\nor a \\'dying quail,\\' or we never hear the words\\n\\n348\\n00:31:32,879 --> 00:31:39,879\\n\\'cup of coffee\\' for a guy with a small turn\\nin the majors. And we never hear \\'can of corn\\'\\n\\n349\\n00:31:39,940 --> 00:31:42,299\\nfor a loping fly ball.\"\\n\\n350\\n00:31:42,299 --> 00:31:46,359\\nAnd of course, as soon as that column comes\\nout, about a week later Vince Scully\\'s on\\n\\n351\\n00:31:46,359 --> 00:31:50,529\\nthe radio saying \"Well, we got a big picket\\nfence out there, and we got a can of corn,\"\\n\\n352\\n00:31:50,529 --> 00:31:56,929\\nand all of this stuff, because it keeps returning\\nitself. It\\'s almost like it turns itself over\\n\\n353\\n00:31:56,929 --> 00:32:03,929\\nand go back to this sort of bucolic terminology\\nof, you know, farmboys in baggy pants running\\n\\n354\\n00:32:06,859 --> 00:32:12,210\\naround a pasture playing a kid\\'s game. I mean,\\nso that\\'s sort of -- what intrigues me is\\n\\n355\\n00:32:12,210 --> 00:32:16,590\\nthat stuff really doesn\\'t die, it sort of\\ngoes into hibernation and then comes out again\\n\\n356\\n00:32:16,590 --> 00:32:19,499\\nwhen somebody needs a new set of metaphors.\\n\\n357\\n00:32:19,499 --> 00:32:25,350\\nSpeaking of metaphors, baseball is absolutely\\na metaphoric circus. We compiled a list here,\\n\\n358\\n00:32:25,350 --> 00:32:28,119\\nit\\'s got over 100 -- these are just food terms\\n--\\n\\n359\\n00:32:28,119 --> 00:32:29,509\\n[laughter]\\n\\n360\\n00:32:29,509 --> 00:32:36,509\\n-- that have gone into baseball. \"Apple knocker,\"\\n\"banana boat,\" \"banana stock,\" \"grapefruit,\"\\n\\n361\\n00:32:36,580 --> 00:32:43,580\\n\"grapefruit league.\" You could go to \"cup\\nof coffee,\" \"strawberry,\" \"rasberry,\" which\\n\\n362\\n00:32:43,789 --> 00:32:50,789\\ncomes out of baseball; and all of these have\\nsome nice piece of etymology to them. But\\n\\n363\\n00:32:51,799 --> 00:32:58,549\\nthe food terms -- and of course, there\\'s a\\ncouple animal terms. Maybe 20 less than the\\n\\n364\\n00:32:58,549 --> 00:33:05,549\\nfood terms, but it\\'s just a way of sort of\\nshowing that the game itself, it just loves\\n\\n365\\n00:33:06,889 --> 00:33:07,289\\nmetaphors.\\n\\n366\\n00:33:07,289 --> 00:33:13,489\\nSo something like the aforementioned can of\\ncorn for that ball that lopes out of the sky\\n\\n367\\n00:33:13,489 --> 00:33:20,330\\nand into the fielder\\'s glove is probably an\\nallusion -- this one that\\'s very difficult\\n\\n368\\n00:33:20,330 --> 00:33:26,918\\nto prove, but the folkloric explanation was\\nthe old grocer with the hook, you know, the\\n\\n369\\n00:33:26,919 --> 00:33:31,460\\ngrabber that he would use in the old time\\ngrocery store; he\\'d pull out his apron, and\\n\\n370\\n00:33:31,460 --> 00:33:33,950\\nthe can of corn would tumble down into the\\napron.\\n\\n371\\n00:33:33,950 --> 00:33:39,979\\nOr \"cup of coffee\" was -- \"so and so just\\nhad a cup of coffee with the Royals,\" you\\n\\n372\\n00:33:39,979 --> 00:33:44,330\\nknow, just came up at the end of the season\\nfor a couple days. Didn\\'t really get into\\n\\n373\\n00:33:44,330 --> 00:33:47,658\\nthe game, but you know, we brought him up\\nfor a cup of coffee. And it\\'s just -- it\\'s\\n\\n374\\n00:33:47,659 --> 00:33:54,659\\nsuch a bucolic sort of non-threatening -- I\\nmean, it sounds like George Carlin, but everybody\\n\\n375\\n00:33:54,779 --> 00:34:00,220\\nelse has a \"locker room\" but baseball has\\na \"clubhouse\". You know, it\\'s that business.\\n\\n376\\n00:34:00,220 --> 00:34:01,909\\n[laughter]\\n\\n377\\n00:34:01,909 --> 00:34:06,999\\nI think the other thing that\\'s really interesting\\nabout the language is that it has become our\\n\\n378\\n00:34:06,999 --> 00:34:13,998\\nlanguage. There are literally hundreds and\\nhundreds of terms that are baseball, and we\\n\\n379\\n00:34:14,339 --> 00:34:20,960\\nsay every day. \"Batting average,\" \"bean,\"\\n\"bench,\" \"benchwarmer,\" \"bonehead,\" et cetera.\\n\\n380\\n00:34:20,960 --> 00:34:25,339\\nWe go on and on about, you know, somebody\\n-- if you watch the Sunday morning shows,\\n\\n381\\n00:34:25,339 --> 00:34:32,168\\nthe talking heads, \"Well, this guy\\'s coming\\nin in relief,\" \"He\\'s got to take his turn\\n\\n382\\n00:34:32,168 --> 00:34:38,949\\nat the plate,\" \"the Obama administration hasn\\'t\\ngotten to first base on appointments yet,\"\\n\\n383\\n00:34:38,949 --> 00:34:45,949\\nand if you start to deconstruct all that Sunday\\nmorning talk, wow, [laughs] there\\'s just baseball\\n\\n384\\n00:34:47,049 --> 00:34:48,288\\nall over it.\\n\\n385\\n00:34:48,289 --> 00:34:53,710\\nAnd I tried to come up with sort of a turning\\npoint when all this changed, and a lot of\\n\\n386\\n00:34:53,710 --> 00:34:58,420\\nit seems to appear -- the beginning of it,\\nthat I can find -- there\\'s probably earlier\\n\\n387\\n00:34:58,420 --> 00:35:03,750\\nexamples, but the first time I really see\\nit used is by Franklin D. Roosevelt in the\\n\\n388\\n00:35:03,750 --> 00:35:09,559\\nfireside chats. And Roosevelt would basically\\n-- he knew he was talking -- he knew he was\\n\\n389\\n00:35:09,559 --> 00:35:14,280\\na man of sort of Aristocratic, for lack of\\na better term, breeding and high education,\\n\\n390\\n00:35:14,280 --> 00:35:19,319\\nbut he\\'s got a country that\\'s in the dumps,\\nand he\\'s got to -- he doesn\\'t want to talk\\n\\n391\\n00:35:19,319 --> 00:35:24,980\\nto the country about caucuses and filibusters\\nand that stuff. He wants to talk to them in\\n\\n392\\n00:35:24,980 --> 00:35:29,470\\na language they can understand, so he can\\nsay, \"Well, my box score with Congress is\\n\\n393\\n00:35:29,470 --> 00:35:33,390\\nnot very good,\" or \"This legislation\\'s rounding\\nthird and I\\'m going to need your help to bring\\n\\n394\\n00:35:33,390 --> 00:35:39,400\\nit home.\" And he would use that sort of imagery.\\nAnd from then on, it was used sporadically\\n\\n395\\n00:35:39,400 --> 00:35:39,900\\nby presidents.\\n\\n396\\n00:35:39,900 --> 00:35:45,589\\nPresident Eisenhower is another one. Eisenhower\\nthrew in a lot of football -- no golf, but\\n\\n397\\n00:35:45,589 --> 00:35:48,400\\nhe would throw in a lot of football -- but\\nif you go look through some of Eisenhower\\'s\\n\\n398\\n00:35:48,400 --> 00:35:55,400\\nspeeches, he talks about it in terms of baseball.\\nAnd so I -- again, I think that helped -- there\\n\\n399\\n00:35:56,640 --> 00:36:02,598\\nwas sort of this process by which we began\\nto see baseball in terms of our own lives.\\n\\n400\\n00:36:02,599 --> 00:36:08,650\\nIt\\'s slow enough, and it\\'s also long enough\\n--- you know, it\\'s 162 game season. It\\'s not\\n\\n401\\n00:36:08,650 --> 00:36:13,390\\nlike a football game that\\'s every Sunday,\\nit\\'s like day-in-day-out for the sort of the\\n\\n402\\n00:36:13,390 --> 00:36:18,490\\nharvest part of the year, the part where we\\'re\\nplanting crops through the time we\\'re harvesting.\\n\\n403\\n00:36:18,490 --> 00:36:25,490\\nAnd so a lot of the way it\\'s done, the batting\\naverages, the fact that baseball finds a way\\n\\n404\\n00:36:25,930 --> 00:36:30,210\\nto -- there are two games the same day, or\\nyou have two singles in a row; they\\'re \"back-to-back\\n\\n405\\n00:36:30,210 --> 00:36:33,900\\nsingles\". That\\'s a baseball term. You don\\'t\\nthink of the things that have now -- \"the\\n\\n406\\n00:36:33,900 --> 00:36:38,530\\nbreaks,\" the breaks of the game, \"he got all\\nthe breaks.\" \"Game face.\" These are things\\n\\n407\\n00:36:38,530 --> 00:36:43,109\\nwe don\\'t think about any more as baseball\\nterms, but that\\'s where they come from.\\n\\n408\\n00:36:43,109 --> 00:36:45,598\\nSo I\\'m going to tell you -- there\\'s just two\\nother things, and then we\\'ll go to the questions,\\n\\n409\\n00:36:45,599 --> 00:36:50,119\\nif that makes sense. The two other things\\nI want to talk about is I\\'ve been doing a\\n\\n410\\n00:36:50,119 --> 00:36:54,650\\nlot of radio and things with this book, because\\nit\\'s just been out for less than a month,\\n\\n411\\n00:36:54,650 --> 00:37:00,410\\nand everybody says, \"Is there going to be\\na fourth edition?\" Well, that would be -- let\\n\\n412\\n00:37:00,410 --> 00:37:07,410\\nme see, \\'89, \\'99, 2009 -- 2019. And people\\nare already coming through with stuff. Very\\n\\n413\\n00:37:12,200 --> 00:37:15,230\\ngood stuff is starting to come in again, and\\npeople are saying, \"Oh, there\\'s that statistic\\n\\n414\\n00:37:15,230 --> 00:37:21,210\\nyou didn\\'t have in the book.\" So we\\'re skipping\\nor gearing up for the inevitable, which is,\\n\\n415\\n00:37:21,210 --> 00:37:26,980\\nyou know, another version, which would mean\\n-- I\\'m 70 this summer, so I\\'ll be 80 -- or\\n\\n416\\n00:37:26,980 --> 00:37:28,930\\nmy kids will take it over. One of the things\\nI did --\\n\\n417\\n00:37:28,930 --> 00:37:29,328\\n[laughter]\\n\\n418\\n00:37:29,329 --> 00:37:35,289\\nWhen I started this process, and this is a\\nperson confessing to you of an enormous immodesty,\\n\\n419\\n00:37:35,289 --> 00:37:38,770\\nand I\\'ll do it anyhow, but one of the things\\nI had in the back of my head when I was many\\n\\n420\\n00:37:38,770 --> 00:37:44,859\\nyears younger, 25 years ago, I said, \"Boy,\\nwouldn\\'t it be cool to create a piece of American\\n\\n421\\n00:37:44,859 --> 00:37:51,859\\nreference and that you became, like Roget\\nmaybe or Webster, where you would brand this\\n\\n422\\n00:37:51,869 --> 00:37:55,250\\nthing.\" And my first publisher was aghast,\\nwhen I went to Facts on File. They wanted\\n\\n423\\n00:37:55,250 --> 00:38:00,740\\nto call it the \"Facts on File Baseball Dictionary.\"\\nI said, \"Not on my watch, you don\\'t.\"\\n\\n424\\n00:38:00,740 --> 00:38:01,339\\n[laughter]\\n\\n425\\n00:38:01,339 --> 00:38:07,359\\nSo, and my two sons who are very -- one of\\nthem just built a Web site for the book called\\n\\n426\\n00:38:07,359 --> 00:38:14,359\\nbaseballdictionary.com, so they\\'re in Double\\nA right now, getting ready to go into the\\n\\n427\\n00:38:15,230 --> 00:38:15,690\\ngame.\\n\\n428\\n00:38:15,690 --> 00:38:16,150\\n[laughter]\\n\\n429\\n00:38:16,150 --> 00:38:22,039\\nI just want to talk about the Library for\\na second. When I first came to Washington\\n\\n430\\n00:38:22,039 --> 00:38:29,039\\nin the late \\'60s, I was sent down here to\\ncover Gemini and Apollo for NASA, and I was\\n\\n431\\n00:38:31,760 --> 00:38:34,150\\ndoing a lot of freelance. I started coming\\nto the Library at night. I wasn\\'t married,\\n\\n432\\n00:38:34,150 --> 00:38:41,089\\nI was here in town. I just couldn\\'t believe\\nmy eyes -- and I\\'d used the New York Public\\n\\n433\\n00:38:41,089 --> 00:38:45,808\\nLibrary before -- it just, it was unbelievable,\\nand there was nothing I couldn\\'t do here.\\n\\n434\\n00:38:45,809 --> 00:38:50,829\\nAnd I kept -- you know, I hate that when papers,\\nthe newspapers will say something like \"so\\n\\n435\\n00:38:50,829 --> 00:38:56,720\\nand so discovered -- hidden in the stacks\\nof the Library of Congress he found this document.\"\\n\\n436\\n00:38:56,720 --> 00:39:00,470\\nThere are people in the Library who are trying\\nto get you to look at the document.\\n\\n437\\n00:39:00,470 --> 00:39:00,720\\n[laughter]\\n\\n438\\n00:39:00,520 --> 00:39:04,759\\n\"I found this obscure document!\" Doesn\\'t it\\nmake him sound like Marco Polo going into\\n\\n439\\n00:39:04,760 --> 00:39:07,150\\nthe stacks, or something.\\n\\n440\\n00:39:07,150 --> 00:39:07,750\\n[laughter]\\n\\n441\\n00:39:07,750 --> 00:39:13,910\\nBut the fact is I still find this place magic,\\nand I\\'ve used it. I have -- I\\'ll do one more\\n\\n442\\n00:39:13,910 --> 00:39:18,420\\ntiny bit of immodesty -- I have five books\\ncoming out this year, which is a fluke, because\\n\\n443\\n00:39:18,420 --> 00:39:22,780\\nthis one I\\'ve been working on for 25 years.\\nHere\\'s a book from Johns Hopkins which comes\\n\\n444\\n00:39:22,780 --> 00:39:27,960\\nout next month, which I\\'ve been working on\\nfor six years; but it\\'s just a fluke of time\\n\\n445\\n00:39:27,960 --> 00:39:34,140\\nthat they all came out together. But every\\none of those books has basically a major component\\n\\n446\\n00:39:34,140 --> 00:39:38,970\\nfrom this Library. And it\\'s not just the regular\\ngoing in and putting in the call slip and\\n\\n447\\n00:39:38,970 --> 00:39:42,439\\ngetting out the book, it\\'s the next level\\nhere.\\n\\n448\\n00:39:42,440 --> 00:39:47,539\\nI\\'m working on a biography now, my first biography.\\nI\\'m doing Bill Veck, who is a very interesting\\n\\n449\\n00:39:47,539 --> 00:39:54,539\\ncharacter in the history of baseball. And\\nI found, in the Library -- now, I didn\\'t find\\n\\n450\\n00:39:55,520 --> 00:40:02,520\\nit, it was in the catalogue -- but I listened\\nto 305 broadcasts that Bill Veck did for Armed\\n\\n451\\n00:40:03,950 --> 00:40:10,049\\nForces radio in the \\'50s, and I sat in one\\nof those broadcast booths on the first floor\\n\\n452\\n00:40:10,049 --> 00:40:17,049\\nhere, and for 2 1/2 days I listened to this\\nguy. And by the end of the 2 1/2 days, I could\\n\\n453\\n00:40:17,880 --> 00:40:24,660\\ntalk like him, I knew exactly how he said,\\ntalked about things. He never said \"woman,\"\\n\\n454\\n00:40:24,660 --> 00:40:30,460\\nhe always said \"the female of the species.\"\\nHe never said -- he never used nicknames.\\n\\n455\\n00:40:30,460 --> 00:40:35,359\\nSo when he said \"Satchel Paige,\" he didn\\'t\\nsay \"Satchel Paige,\" he said \"Leroy Paige.\"\\n\\n456\\n00:40:35,359 --> 00:40:41,058\\nI got a key -- I got more understanding of\\nthat guy from his recordings, and from what\\n\\n457\\n00:40:41,059 --> 00:40:46,920\\nI discovered, what the people in the department\\ntold me, that I was the first one to ever\\n\\n458\\n00:40:46,920 --> 00:40:51,539\\nask for them. Because they had to put them\\non some carrier so I could listen to them\\n\\n459\\n00:40:51,539 --> 00:40:56,359\\non the thing. But the other thing is, in photography,\\nthe \"Look\" magazine collection -- 3 million\\n\\n460\\n00:40:56,359 --> 00:41:01,029\\nphotographs. And I found extraordinary material\\non this one man.\\n\\n461\\n00:41:01,029 --> 00:41:08,020\\nThere is no other place that I know of in\\nthe country where you go -- you go through\\n\\n462\\n00:41:08,020 --> 00:41:11,880\\nthe obvious really quickly. I mean, the databases\\nare cool beyond belief, and they make Google\\n\\n463\\n00:41:11,880 --> 00:41:17,299\\nlook like nursery school. They\\'ve got these\\nphenomenal and very expensive databases, and\\n\\n464\\n00:41:17,299 --> 00:41:22,180\\nall that\\'s wonderful. You could probably get\\na lot of that at a top university library.\\n\\n465\\n00:41:22,180 --> 00:41:29,180\\nBut what\\'s really remarkable is the extent\\nto which this place holds on to American life,\\n\\n466\\n00:41:30,000 --> 00:41:36,579\\nand holds on to it with grace and a tremendous\\nability to share. I mean, I\\'ve tried to use\\n\\n467\\n00:41:36,579 --> 00:41:41,299\\nthe British museum, and you\\'re just a writer.\\nI\\'m not -- I don\\'t have an advanced degree\\n\\n468\\n00:41:41,299 --> 00:41:44,869\\nor something -- you know, well, then maybe.\\nHere, it doesn\\'t matter.\\n\\n469\\n00:41:44,869 --> 00:41:48,720\\nAnd I think the other thing is, you\\'ve got\\n-- I mean, even on things like [unintelligible]\\n\\n470\\n00:41:48,720 --> 00:41:53,890\\n\"All the newspapers are digitized.\" Well,\\nif we go with the digitization, which is now\\n\\n471\\n00:41:53,890 --> 00:41:59,670\\nthe trend, we\\'re going to end up with a very\\nelite view of the world, because if you\\'re\\n\\n472\\n00:41:59,670 --> 00:42:04,369\\n-- let\\'s say you\\'re looking at New York City.\\nNow every library in the country has the ProQuest,\\n\\n473\\n00:42:04,369 --> 00:42:07,880\\nthey have \"The New York Times\" back to the\\nfirst issue, they have \"The Wall Street Journal\"\\n\\n474\\n00:42:07,880 --> 00:42:12,270\\nback to the first issue, they have, you know,\\n\"The Washington Post\" back to the first issue.\\n\\n475\\n00:42:12,270 --> 00:42:17,500\\nBut who\\'s going to digitize \"The Washington\\nStar\"? Or \"The New York Herald-Tribune\"? Or\\n\\n476\\n00:42:17,500 --> 00:42:23,069\\n\"The New York Daily News\"? Or the second,\\nthird, fourth and fifth papers in all these\\n\\n477\\n00:42:23,069 --> 00:42:28,049\\ntowns. And a lot of times it was that second\\npaper, with a much more of a blue-collar audience\\n\\n478\\n00:42:28,049 --> 00:42:34,170\\nand much more of an attempt to please, and\\nbe a little bit anti-establishment in the\\n\\n479\\n00:42:34,170 --> 00:42:39,460\\nface of \"The New York Times.\" I remember when\\nI was a kid, when the Salk vaccine -- I grew\\n\\n480\\n00:42:39,460 --> 00:42:41,730\\nup in a neighborhood ravaged by polio, and\\n\"The\\n\\n481\\n00:42:41,730 --> 00:42:47,589\\nNew York Herald-Tribune\" has this huge second\\ncoming headline: \"Polio Solved!\" You know,\\n\\n482\\n00:42:47,589 --> 00:42:51,240\\nI\\'m going to school screaming and yelling,\\nlike, you know, \"Polio Solved!\" And all my\\n\\n483\\n00:42:51,240 --> 00:42:54,589\\nneighbor kids, all the kids in the neighborhood\\nread \"The New York Times.\" And \"The New York\\n\\n484\\n00:42:54,589 --> 00:43:00,210\\nTimes,\" on page A72: \"West Coast researcher\\nbelieves he may have new clue to polio.\"\\n\\n485\\n00:43:00,210 --> 00:43:00,460\\n[laughter]\\n\\n486\\n00:43:00,450 --> 00:43:05,419\\nAnd that was Jonas Salk. And so, you lived\\na different life through these other papers.\\n\\n487\\n00:43:05,420 --> 00:43:09,339\\nSo I think the fact of the matter is -- I\\nmean, that place downstairs where you do the\\n\\n488\\n00:43:09,339 --> 00:43:15,058\\nmicrophone, man, that\\'s just one of the best\\nplaces in the world. And so I just want to\\n\\n489\\n00:43:15,059 --> 00:43:18,190\\nuse this time as an opportunity to thank the\\nLibrary. I\\'ve been using it, I\\'ve written\\n\\n490\\n00:43:18,190 --> 00:43:23,200\\n-- I\\'ll be probably up to 54 books by the\\nend of the year, and I just want to thank\\n\\n491\\n00:43:23,200 --> 00:43:28,210\\nthe Library for making it possible for me\\nto make a living. And also, a lot of the quality\\n\\n492\\n00:43:28,210 --> 00:43:33,809\\nthat goes into these things comes right out\\nof this building or the ones across the street.\\n\\n493\\n00:43:33,809 --> 00:43:34,720\\n[applause]\\n\\n494\\n00:43:34,720 --> 00:43:38,359\\nSo, questions? Yes, sir.\\n\\n495\\n00:43:38,359 --> 00:43:45,359\\nMale Speaker:\\nCould you tell us where the term \"K\" comes\\n\\n496\\n00:43:48,380 --> 00:43:50,980\\nfrom for a strikeout?\\n\\n497\\n00:43:50,980 --> 00:43:55,779\\nPaul Dickson:\\nThat goes back to Henry Chadwick and his original\\n\\n498\\n00:43:55,779 --> 00:44:02,779\\ndescription. And again, Dave Kelly and I found\\nthe original -- there are lot of -- Chadwick,\\n\\n499\\n00:44:04,279 --> 00:44:07,869\\nwho was the guy that put together a lot of\\nthe early rules, he was a British journalist\\n\\n500\\n00:44:07,869 --> 00:44:12,900\\nwho came to this country. And there are many\\ntheories about \"K,\" but the one that wins\\n\\n501\\n00:44:12,900 --> 00:44:19,740\\nthe day is that Chadwick, in creating his\\nearly scoring system, picked the letter \"K\"\\n\\n502\\n00:44:19,740 --> 00:44:26,740\\nas the dominant sound in \"strike\". And it\\nwas annotation, which he explains later; he\\n\\n503\\n00:44:26,960 --> 00:44:30,670\\nput it in first, and then somebody asked him\\nlater how did it come about. And he said he\\n\\n504\\n00:44:30,670 --> 00:44:35,950\\ndidn\\'t want to use \"S\" or \"SO\" because it\\nlooked too much like \"single\" or something,\\n\\n505\\n00:44:35,950 --> 00:44:40,730\\nbut \"K\" was just this perfect thing. And he\\nalso -- it was suggested by somebody at the\\n\\n506\\n00:44:40,730 --> 00:44:44,980\\ntime that he also like the sort of the symmetry\\nof the three strokes for the K. When you\\'re\\n\\n507\\n00:44:44,980 --> 00:44:49,490\\nwriting it in the book, you have three strikes;\\nyou know, three pen marks.\\n\\n508\\n00:44:49,490 --> 00:44:49,939\\nYes, sir.\\n\\n509\\n00:44:49,940 --> 00:44:52,180\\nMale Speaker:\\nSpeaking of scoring systems, why do you suppose\\n\\n510\\n00:44:52,180 --> 00:44:58,190\\nto this day Major League Baseball doesn\\'t\\neven have a standard scorecard or standard\\n\\n511\\n00:44:58,190 --> 00:44:59,079\\nscoring system?\\n\\n512\\n00:44:59,079 --> 00:45:01,859\\nPaul Dickson:\\nBecause, as Thomas Boswell -- I did a book\\n\\n513\\n00:45:01,859 --> 00:45:06,170\\non keeping score, so as Thomas Boswell once\\nsaid, \"It\\'s an inalienable right of every\\n\\n514\\n00:45:06,170 --> 00:45:08,410\\nAmerican to keep his own scoring system.\"\\n\\n515\\n00:45:08,410 --> 00:45:11,000\\n[laughter and applause]\\n\\n516\\n00:45:11,000 --> 00:45:17,170\\nAnd I found, when I did research on the scoring\\nbook -- again, next door -- one of the most\\n\\n517\\n00:45:17,170 --> 00:45:24,170\\ncurious things that I found was a scorebook\\ninvented by L.L. Bean for the television age.\\n\\n518\\n00:45:25,329 --> 00:45:32,329\\nAnd apparently L.L. Bean -- one day, Ted Williams\\ncomes into L.L. Bean in Freeport, Maine and\\n\\n519\\n00:45:32,660 --> 00:45:36,970\\nword goes up to the old man that Ted Williams\\nis in the lobby, or downstairs buying fishing\\n\\n520\\n00:45:36,970 --> 00:45:43,129\\nrods. And Bean comes downstairs and says,\\n\"That scoring system is no good, it doesn\\'t\\n\\n521\\n00:45:43,130 --> 00:45:49,599\\nwork for T.V.\" So with Ted Williams advice,\\nBean creates his own scoring system. It was\\n\\n522\\n00:45:49,599 --> 00:45:51,520\\ntotally worthless, but --\\n\\n523\\n00:45:51,520 --> 00:45:52,210\\n[laughter]\\n\\n524\\n00:45:52,210 --> 00:45:55,990\\nSo I think -- the other thing, a lot of the\\nstuff is Chadwick. A lot of the numbering\\n\\n525\\n00:45:55,990 --> 00:46:01,578\\nof the places around the bases. But I found\\nthat a lot of -- I\\'ve been in broadcast booths\\n\\n526\\n00:46:01,579 --> 00:46:06,960\\nwhere I would have thought that this would\\nbe all digitized, and there are still guys\\n\\n527\\n00:46:06,960 --> 00:46:12,680\\nwho basically do the hand scorecard and they\\nmake -- they have all different kinds of notations.\\n\\n528\\n00:46:12,680 --> 00:46:19,578\\nYou know, notations for spectacular catches\\n-- and the beauty of the scorekeeping is it\\'s\\n\\n529\\n00:46:19,579 --> 00:46:24,680\\ntotally indigenous to baseball. And I remember\\nsitting with a friend of mine who was much\\n\\n530\\n00:46:24,680 --> 00:46:29,160\\nolder, and he knew I was working on a book\\non scorekeeping, and he said, \"Wait here,\"\\n\\n531\\n00:46:29,160 --> 00:46:33,450\\nand he went -- he was about five houses away\\n-- and he came back with a scorecard from\\n\\n532\\n00:46:33,450 --> 00:46:38,669\\nthe last time the New York Giants played the\\nBrooklyn Dodgers in New York; the last time\\n\\n533\\n00:46:38,670 --> 00:46:40,520\\nthey both played. And he said, \"I was at that\\ngame.\"\\n\\n534\\n00:46:40,520 --> 00:46:46,410\\nAnd he gets up there, and it was almost like\\nwatching, like, a rabbi, or --\\n\\n535\\n00:46:46,410 --> 00:46:46,660\\n[laughter]\\n\\n536\\n00:46:46,569 --> 00:46:48,849\\n-- the Jewish praying, or whatever. And he\\'s\\nalmost like -- here he\\'s going, he\\'s rocking\\n\\n537\\n00:46:48,849 --> 00:46:55,740\\nback and forth, and he\\'s going -- and he was\\ncalling the game, from this piece of cheap\\n\\n538\\n00:46:55,740 --> 00:47:00,359\\npulp paper that he had done so many years\\nago. It was amazing. And he called the whole\\n\\n539\\n00:47:00,359 --> 00:47:05,490\\ngame. Holy cow. \"What, he got a single? How\\ndid he get a single?\"\\n\\n540\\n00:47:05,490 --> 00:47:06,118\\nYou know, but --\\n\\n541\\n00:47:06,119 --> 00:47:08,609\\nMale Speaker:\\nI score old games and I\\'ve yet to find the\\n\\n542\\n00:47:08,609 --> 00:47:09,440\\nperfect scorecard to use.\\n\\n543\\n00:47:09,440 --> 00:47:09,890\\nPaul Dickson:\\nBut that\\'s, like, the holy grail.\\n\\n544\\n00:47:09,890 --> 00:47:10,140\\n[laughter]\\n\\n545\\n00:47:09,890 --> 00:47:11,720\\nThat\\'s sort of the fun of it.\\n\\n546\\n00:47:11,720 --> 00:47:13,490\\nMale Speaker:\\nWhat\\'s the best baseball word that\\'s been\\n\\n547\\n00:47:13,490 --> 00:47:13,799\\ninvented in this century?\\n\\n548\\n00:47:13,799 --> 00:47:14,049\\nPaul Dickson:\\nOh...\\n\\n549\\n00:47:14,039 --> 00:47:14,289\\n[laughter]\\n\\n550\\n00:47:14,119 --> 00:47:18,670\\nMan. The best baseball word?\\n\\n551\\n00:47:18,670 --> 00:47:24,510\\nMale Speaker:\\nSecret sauce.\\n\\n552\\n00:47:24,510 --> 00:47:30,349\\nPaul Dickson:\\nSecret sauce.\\n\\n553\\n00:47:30,349 --> 00:47:31,809\\n[laughter]\\n\\n554\\n00:47:31,809 --> 00:47:34,170\\nWhich is a statistical term. Tell us.\\n\\n555\\n00:47:34,170 --> 00:47:35,559\\nMale Speaker:\\n[inaudible]\\n\\n556\\n00:47:35,559 --> 00:47:39,559\\nPaul Dickson:\\nOkay. We\\'re going to read you -- this wasn\\'t\\n\\n557\\n00:47:39,559 --> 00:47:46,559\\nadvertised as a reading. We\\'re going to do\\nit from the book.\\n\\n558\\n00:47:46,760 --> 00:47:47,910\\n[laughter]\\n\\n559\\n00:47:47,910 --> 00:47:54,910\\nYou know, people say to me, \"Oh, you say on\\npage 687...\"\\n\\n560\\n00:48:01,750 --> 00:48:02,910\\n[laughter]\\n\\n561\\n00:48:02,910 --> 00:48:04,058\\nOkay:\\n\\n562\\n00:48:04,059 --> 00:48:09,640\\nSecret Sauce: the three ingredients that most\\nreliably predict post-season success -- a\\n\\n563\\n00:48:09,640 --> 00:48:12,960\\nhigh strikeout rate [spelled phonetically]\\nfor the pitching staff, adjusted for a team\\'s\\n\\n564\\n00:48:12,960 --> 00:48:18,000\\nleague and ballpark; quality of defense such\\nas fielding units above average in a reliable\\n\\n565\\n00:48:18,000 --> 00:48:21,420\\nclosure, as measured by wins expected above\\nreplacement --\\n\\n566\\n00:48:21,420 --> 00:48:28,420\\n-- this is one of these terms that has come\\nin with the advent of sabermetrics and almost\\n\\n567\\n00:48:28,650 --> 00:48:35,650\\na maniacal interest in statistics. My favorite\\none of the new statistical terms is a term\\n\\n568\\n00:48:38,029 --> 00:48:45,029\\ncalled PECOTA, which reminds you of Billy\\nPecota the in-fielder. And PECOTA is all-caps,\\n\\n569\\n00:48:45,769 --> 00:48:52,769\\nand it stands for \"Player Empirical Comparison\\nand Optimization Text Algorithm.\" Needless\\n\\n570\\n00:48:54,099 --> 00:49:01,099\\nto say, I had great help on the statistical\\nterms in this book by a leading statistician\\n\\n571\\n00:49:01,390 --> 00:49:05,578\\nfrom the University of Delaware, who is the\\nbig expert on baseball statistics, because\\n\\n572\\n00:49:05,579 --> 00:49:12,579\\nI can\\'t -- things like -- terms like that\\nI couldn\\'t have written myself, I need somebody\\n\\n573\\n00:49:13,299 --> 00:49:19,640\\nelse to sort of say what exactly was there.\\nBecause it\\'s almost like higher math, or physics\\n\\n574\\n00:49:19,640 --> 00:49:24,660\\nor something, the way that\\'s going.\\n\\n575\\n00:49:24,660 --> 00:49:28,609\\nMale Speaker:\\nHave you heard the new one, AGI? This kid\\n\\n576\\n00:49:28,609 --> 00:49:33,180\\nMcCarthy just wrote a book about playing single-A\\nball in Ogden, Utah, and AGI is a statistic\\n\\n577\\n00:49:33,180 --> 00:49:36,519\\nthat pitchers use. It\\'s an \"Almost Got in\\nthe Game.\"\\n\\n578\\n00:49:36,519 --> 00:49:37,049\\n[laughter]\\n\\n579\\n00:49:37,049 --> 00:49:43,670\\nPaul Dickson:\\nThat\\'s like Phil Rizzuto\\'s \"WW\" in his scorecard.\\n\\n580\\n00:49:43,670 --> 00:49:47,839\\nHe\\'d say, \"WW: Wasn\\'t Watching.\"\\n\\n581\\n00:49:47,839 --> 00:49:48,670\\n[laughter]\\n\\n582\\n00:49:48,670 --> 00:49:50,339\\nYes, sir.\\n\\n583\\n00:49:50,339 --> 00:49:57,339\\nMale Speaker:\\nWhat\\'s the derivation of the \"golden sombrero\"?\\n\\n584\\n00:49:57,849 --> 00:50:02,630\\nPaul Dickson:\\nIt comes from a hat trick, and it may in fact\\n\\n585\\n00:50:02,630 --> 00:50:09,630\\nbe a Hispanic influence on the game, because\\n-- one of the things -- I wrote another book,\\n\\n586\\n00:50:10,019 --> 00:50:13,950\\nwhich is called \"The Unwritten Rules of Baseball,\"\\nand I talked to a lot of people about some\\n\\n587\\n00:50:13,950 --> 00:50:17,149\\nof the unwritten rules about ethnicity; the\\nunwritten rule that kept African-Americans\\n\\n588\\n00:50:17,150 --> 00:50:23,529\\nout of the game, and also there was a rule\\nthat -- pretty much unwritten rule -- that\\n\\n589\\n00:50:23,529 --> 00:50:29,170\\nyou couldn\\'t have too many Latin players on\\nyour team, because they tended to be too happy-go-lucky\\n\\n590\\n00:50:29,170 --> 00:50:34,769\\nand such. And of course, that was -- it was\\na cultural difference. Often an Anglo player\\n\\n591\\n00:50:34,769 --> 00:50:38,319\\nwould come back with his head down and say,\\n\"I just struck out at the end of the world.\"\\n\\n592\\n00:50:38,319 --> 00:50:43,950\\nA Latin guy would say, \"Next time I\\'m going\\nto knock it out of here,\" you know, with his\\n\\n593\\n00:50:43,950 --> 00:50:50,109\\nhead up. So I think terms like \"golden sombrero\"\\ncame out of that sort of, \"Hey, you know,\\n\\n594\\n00:50:50,109 --> 00:50:56,730\\nI struck out three times, I struck out four\\ntimes.\" And the \"platinum sombrero\" is five\\n\\n595\\n00:50:56,730 --> 00:50:58,480\\ntimes, but it shows up -- it starts showing\\nup in \\'80s.\\n\\n596\\n00:50:58,480 --> 00:50:58,730\\n[laughter]\\n\\n597\\n00:50:58,480 --> 00:51:00,470\\nMale Speaker:\\nYou alluded to the connection between baseball\\n\\n598\\n00:51:00,470 --> 00:51:07,470\\nlanguage and newspaper, and with the demise\\nof so many papers, and the decline in baseball\\n\\n599\\n00:51:11,099 --> 00:51:18,099\\ncoverage in newspapers, should we be worried\\nabout the language in baseball?\\n\\n600\\n00:51:19,069 --> 00:51:22,619\\nPaul Dickson:\\nI\\'m not sure. I mean, they\\'ll probably find\\n\\n601\\n00:51:22,619 --> 00:51:28,900\\na new -- try to find a new outlet. I have\\na lot -- I\\'m on Facebook with a lot of baseball\\n\\n602\\n00:51:28,900 --> 00:51:35,450\\nwriters, and they\\'re filing outside the games,\\nnow. Tyler Kempner, the \"New York Times\" guy\\n\\n603\\n00:51:35,450 --> 00:51:40,640\\nwho covers the Yankees, is on Facebook writing\\nabout stuff in spring training that doesn\\'t\\n\\n604\\n00:51:40,640 --> 00:51:47,400\\nshow up in \"The New York Times.\" So, the new\\nmedia is -- it at once is a curse to the written\\n\\n605\\n00:51:47,400 --> 00:51:52,480\\nword, but it\\'s also, in another sense, it\\ngives it a new flexibility. So I\\'m not terribly\\n\\n606\\n00:51:52,480 --> 00:51:52,880\\ndepressed.\\n\\n607\\n00:51:52,880 --> 00:51:57,190\\nBut little things bother me, like the fact\\nthat \"The Washington Post\" decides not to\\n\\n608\\n00:51:57,190 --> 00:52:00,809\\ncover the Orioles anymore, you know, which\\nis a little bit parochial.\\n\\n609\\n00:52:00,809 --> 00:52:01,059\\n[laughter]\\n\\n610\\n00:52:00,920 --> 00:52:01,990\\nMale Speaker:\\nAlong those same lines, do you think that\\n\\n611\\n00:52:01,990 --> 00:52:08,990\\nthe bred of announcers today, within the last\\n20 years, is significantly less colorful than\\n\\n612\\n00:52:12,619 --> 00:52:15,990\\nthe old [inaudible].\\n\\n613\\n00:52:15,990 --> 00:52:21,939\\nPaul Dickson:\\nI think that\\'s true to a point, but Vin Scully\\n\\n614\\n00:52:21,940 --> 00:52:28,660\\nis still working; you got John Miller, who\\'s\\nwonderful. There are some people outside the\\n\\n615\\n00:52:28,660 --> 00:52:34,149\\nbig cities who are doing a wonderful job;\\nsome of the double-A, triple-A announcers\\n\\n616\\n00:52:34,150 --> 00:52:38,200\\nare doing some really interesting work. I\\nkeep hearing little bits from friends who\\n\\n617\\n00:52:38,200 --> 00:52:42,710\\nsay, \"You\\'ve got to hear this guy now,\" you\\nknow, somewhere out in Oregon or somewhere.\\n\\n618\\n00:52:42,710 --> 00:52:47,510\\nI think the tradition is still there. I think\\nwhat\\'s been bled out is television is bleeding\\n\\n619\\n00:52:47,510 --> 00:52:53,510\\na lot of it out, because the demands of so\\nmany ads, the pace of the game changes with\\n\\n620\\n00:52:53,510 --> 00:53:00,089\\nthe advertising, and -- but I think the urge\\nis still there.\\n\\n621\\n00:53:00,089 --> 00:53:07,089\\nMale Speaker:\\nWho do you think of as the best color man\\n\\n622\\n00:53:08,579 --> 00:53:08,930\\nin baseball?\\n\\n623\\n00:53:08,930 --> 00:53:09,799\\nPaul Dickson:\\nYou mean historically?\\n\\n624\\n00:53:09,799 --> 00:53:10,319\\nMale Speaker:\\nYeah.\\n\\n625\\n00:53:10,319 --> 00:53:12,190\\nPaul Dickson:\\nOof, I don\\'t know. I grew up in New York,\\n\\n626\\n00:53:12,190 --> 00:53:16,849\\nyou know, so I\\'d be hearing Red Barber and\\nMel Allen, I loved those guys. I think it\\'s\\n\\n627\\n00:53:16,849 --> 00:53:20,410\\nwhere you grew up. And you couldn\\'t beat those\\ntwo --\\n\\n628\\n00:53:20,410 --> 00:53:21,848\\nMale Speaker:\\n[inaudible]\\n\\n629\\n00:53:21,849 --> 00:53:25,200\\nPaul Dickson:\\nOf the announcers, I think John Miller\\'s the\\n\\n630\\n00:53:25,200 --> 00:53:32,200\\nbest. And he hasn\\'t been sullied, he hasn\\'t\\nbeen dampened by television, which often happens.\\n\\n631\\n00:53:33,339 --> 00:53:34,839\\n[applause]\\n\\n632\\n00:53:34,839 --> 00:53:40,109\\nFemale Speaker:\\nThis has been a presentation of the Library\\n\\n633\\n00:53:40,109 --> 00:53:42,619\\nof Congress. Visit us, at loc.gov.\\n\\n634\\n00:53:42,619 --> 00:53:43,589\\n[end transcript]',\n", + " 'bytes': 71062,\n", + " 'sha1': 'n8eyim581isjubprcfz3wmrwxo1fi7p',\n", + " 'parent_id': 98449001,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 98501478,\n", + " 'timestamp': '2013-06-19T20:20:19Z',\n", + " 'user': {'id': 2808134, 'text': 'Jamaican college grad'},\n", + " 'page': {'id': 26761809,\n", + " 'title': 'Green anoles in a territorial fight.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with 'note how the anoles bite at each others heads and the scars recieved from the battle'\",\n", + " 'text': 'note how the anoles bite at each others heads and the scars recieved from the battle',\n", + " 'bytes': 84,\n", + " 'sha1': 'c557ah8sh9pbmfabj8gb2gne0j17lxb',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99255564,\n", + " 'timestamp': '2013-07-01T15:27:20Z',\n", + " 'user': {'id': 14396, 'text': 'Aktron'},\n", + " 'page': {'id': 26769987,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'some corrections',\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\nPanoramatické fotografie poloostrova Pelješac. Fotografováno v letech 2009-2013\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nVýhled na Orebić a vlajka\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\npohled z pohoří v horní části poloostrova\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić z Vižanice\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić od severozápadu\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nPoloostrov při pohledu z kanálu\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\nneúrodná půda nad městem\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\nneúrodná půda nad městem\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\nPrůsmyk kapetani a ostrovy s Bile ploče\\n\\n9.\\n00:00:36,000 --> 00:00:39,800\\nOskorušno z pohoří Viter\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda z pohoří Viter\\n\\n11\\n00:00:44,000 --> 00:00:47,800\\nPrůsmyk Kapetani\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nVinice na jižní straně\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj od západu\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nDolní Nakovana, pohled od kaštelu\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nPohled na Korčulu od trosek kaštela\\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nVleže nad Mokalou\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić s Mokalou\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomja a Pijavićino od západu\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nklášter v severovýchodním Podgorje\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nKlášter v severozápadní Podgorje\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić ze Supina\\n\\n22\\n00:01:28,000 --> 00:01:31,800\\nMokalo a Supino\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\nSoutěska Pratnjice\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić od severu\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić od severozápadu\\n\\n26\\n00:01:44,000 --> 00:01:47,800\\nVrchol Žrnovnica\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić od severu\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nPohled na Orebić\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nVižanica- svahy na jihovýchodu\\n\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\nKrásná zátoka\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nPelješka Duba při pohledu z vrcholu kopce\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nBarinské vrcholy a Žrnovska Banja v pozadí\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\npohled z poloostrova na západě\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nHorní Vručica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton a solné pánve\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nHorský hřeben Mokalo s vesnicí Donja Vručica \\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nKlášter Kuni, pohled z jihu\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nzanedbané, ale opravované vinice\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina od západu\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRusković sever\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nObec Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nObec Lovište\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nsvahy na pravé straně\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\nkříž na vrcholu Pelješac',\n", + " 'bytes': 2911,\n", + " 'sha1': 'kik83ue7t8jp9iudvtkij7nf1rknlet',\n", + " 'parent_id': 98547801,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 118570701,\n", + " 'timestamp': '2014-03-09T02:02:20Z',\n", + " 'user': {'id': 502443, 'text': 'AMPERIO'},\n", + " 'page': {'id': 26781170,\n", + " 'title': 'Soviet Anthem Instrumental 1955.ogg.gl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:03,800 --> 00:00:10,300\\nUnión indestrutible de Repúblicas Libres\\n\\n2\\n00:00:10,300 --> 00:00:17,600\\nque uniu por sempre á gran Rusia!\\n\\n3\\n00:00:17,600 --> 00:00:24,6\\nLonga vida á obra creada polo pobo,\\n\\n4\\n00:00:24,600 --> 00:00:31,800\\nUnida e forte Unión Soviética!\\n\\n5\\n00:00:31,800 --> 00:00:45,500\\nCantémoslle á patria, fogar do libre,\\n\\n6\\n00:00:45,500 --> 00:00:52,500\\nmestura de pobos en grande irmandade!\\n\\n7\\n00:00:52,500 --> 00:01:06,200\\npartido de Lenin, a forza do pobo\\n\\n8\\n00:01:06,200 --> 00:01:30,000\\nlévanos ao triunfo do comunismo!',\n", + " 'bytes': 554,\n", + " 'sha1': '0lf7e4zcb4h914dllbeq9uf44tcrfpw',\n", + " 'parent_id': 98553257,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 144136691,\n", + " 'timestamp': '2014-12-26T01:45:18Z',\n", + " 'user': {'id': 1216133, 'text': 'Champion'},\n", + " 'page': {'id': 26816329,\n", + " 'title': 'Anthem of Europe (US Navy instrumental long version).ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:09,600 --> 00:00:13,700\\nJoyful, joyful, we adore Thee,\\n\\n2\\n00:00:13,700 --> 00:00:17,000\\nGod of glory, Lord of love;\\n\\n3\\n00:00:17,000 --> 00:00:21,070\\nhearts unfold like flow'rs before Thee,\\n\\n4\\n00:00:21,070 --> 00:00:24,570\\nOpening to the Sun above,\\n\\n5\\n00:00:24,570 --> 00:00:29,170\\nMelt the clouds of sin and sadness;\\n\\n6\\n00:00:29,170 --> 00:00:32,670\\ndrive the dark of doubt away;\\n\\n7\\n00:00:32,670 --> 00:00:37,030\\nGiver of immortal gladness,\\n\\n8\\n00:00:37,030 --> 00:00:40,700\\nfill us with the light of day!\\n\\n9\\n00:00:40,700 --> 00:00:45,100\\nMelt the clouds of sin and sadness;\\n\\n10\\n00:00:45,100 --> 00:00:48,870\\ndrive the dark of doubt away;\\n\\n11\\n00:00:48,870 --> 00:00:53,530\\nGiver of immortal gladness,\\n\\n12\\n00:00:53,530 --> 00:00:57,230\\nfill us with the light of day!\\n\\n13\\n00:00:57,230 --> 00:01:01,400\\nAll Thy works with joy surround Thee,\\n\\n14\\n00:01:01,400 --> 00:01:04,670\\nearth and heav'n reflect Thy rays,\\n\\n15\\n00:01:04,670 --> 00:01:09,000\\nstars and angels sing around Thee,\\n\\n16\\n00:01:09,000 --> 00:01:13,130\\ncenter of unbroken praise:\\n\\n17\\n00:01:13,130 --> 00:01:16,700\\nField and forest, vale and mountain,\\n\\n18\\n00:01:16,700 --> 00:01:20,400\\nFlow'ry meadow, flashing sea,\\n\\n19\\n00:01:20,400 --> 00:01:24,500\\nchanting bird and flowing fountain,\\n\\n20\\n00:01:24,500 --> 00:01:28,170\\ncall us to rejoice in Thee.\\n\\n21\\n00:01:28,170 --> 00:01:32,170\\nField and forest, vale and mountain,\\n\\n22\\n00:01:32,170 --> 00:01:35,970\\nFlow'ry meadow, flashing sea,\\n\\n23\\n00:01:36,970 --> 00:01:40,200\\nchanting bird and flowing fountain,\\n\\n24\\n00:01:40,200 --> 00:01:43,900\\ncall us to rejoice in Thee.\",\n", + " 'bytes': 1577,\n", + " 'sha1': 'air2yy051eutbxrvda2fcrov273622b',\n", + " 'parent_id': 144058834,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 541143740,\n", + " 'timestamp': '2021-03-10T16:01:37Z',\n", + " 'user': {'text': '141.193.118.3'},\n", + " 'page': {'id': 26828563,\n", + " 'title': 'Poacher.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:000 --> 0:00 --> 0:15\\n\"Liconshire Poacher\" Plays\\n2 \\n0:15 --> 0:26\\nZero, two, five, eight, eight.',\n", + " 'bytes': 104,\n", + " 'sha1': '7dmbl4o895httvinqbp3eg4wp8knnza',\n", + " 'parent_id': 541143232,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 153951761,\n", + " 'timestamp': '2015-03-19T13:07:24Z',\n", + " 'user': {'id': 2335816, 'text': 'Great Brightstar'},\n", + " 'page': {'id': 26843934,\n", + " 'title': 'Dmitry Medvedev address on 26 August 2008 regarding Abkhazia & South Ossetia.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:01,160 --> 00:00:06,399\\nMy dear fellow countrymen, citizens of Russia!\\n\\n1\\n00:00:06,399 --> 00:00:13,399\\nYou are no doubt well aware of the tragedy\\nof South Ossetia. The night-time execution-style\\n\\n2\\n00:00:19,699 --> 00:00:26,699\\nbombardment of Tskhinval by the Georgian troops\\nresulted in the deaths of hundreds of our\\n\\n3\\n00:00:28,750 --> 00:00:35,750\\ncivilians. Among the dead were the Russian\\npeacekeepers, who gave their lives in fulfilling\\n\\n4\\n00:00:37,290 --> 00:00:42,170\\ntheir duty to protect women, children and\\nthe elderly.\\n\\n5\\n00:00:42,170 --> 00:00:49,170\\nThe Georgian leadership, in violation of the\\nUN Charter and their obligations under international\\n\\n6\\n00:00:49,760 --> 00:00:55,440\\nagreements and contrary to the voice of reason,\\nunleashed an armed conflict victimizing innocent\\n\\n7\\n00:00:55,440 --> 00:01:00,640\\ncivilians. The same fate lay in store for\\nAbkhazia. Obviously, they in Tbilisi hoped\\n\\n8\\n00:01:00,640 --> 00:01:07,640\\nfor a blitz-krieg that would have confronted\\nthe world community with an accomplished fact.\\n\\n9\\n00:01:08,120 --> 00:01:15,120\\nThe most inhuman way was chosen to achieve\\nthe objective — annexing South Ossetia through\\n\\n10\\n00:01:16,950 --> 00:01:21,520\\nthe annihilation of a whole people.\\n\\n11\\n00:01:21,520 --> 00:01:28,520\\nThat was not the first attempt to do this.\\nIn 1991, President Gamsahourdia of Georgia,\\n\\n12\\n00:01:30,140 --> 00:01:37,140\\nhaving proclaimed the motto \"Georgia for Georgians\"\\n— just think about it! — ordered attacks\\n\\n13\\n00:01:42,850 --> 00:01:49,850\\non the cities of Sukhum and Tskhinval. The\\nresult then was thousands of killed people,\\n\\n14\\n00:01:50,300 --> 00:01:56,270\\ndozens of thousands of refugees and devastated\\nvillages. And it was Russia who at that time\\n\\n15\\n00:01:56,270 --> 00:02:01,030\\nput an end to the eradication of the Abkhaz\\nand Ossetian peoples. Our country came forward\\n\\n16\\n00:02:01,030 --> 00:02:04,110\\nas a mediator and peacekeeper insisting on\\na political settlement. In doing so we were\\n\\n17\\n00:02:04,110 --> 00:02:08,389\\ninvariably guided by the recognition of Georgia\\'s\\nterritorial integrity.\\n\\n18\\n00:02:08,389 --> 00:02:10,630\\nThe Georgian leadership chose another way.\\nDisrupting the negotiating process, ignoring\\n\\n19\\n00:02:10,630 --> 00:02:14,549\\nthe agreements achieved, committing political\\nand military provocations, attacking the peacekeepers\\n\\n20\\n00:02:14,550 --> 00:02:17,560\\n— all these actions grossly violated the\\nregime established in conflict zones with\\n\\n21\\n00:02:17,560 --> 00:02:20,560\\nthe support of the United Nations and OSCE.\\n\\n22\\n00:02:20,560 --> 00:02:23,600\\nRussia continually displayed calm and patience.\\nWe repeatedly called for returning to the\\n\\n23\\n00:02:23,600 --> 00:02:28,700\\nnegotiating table and did not deviate from\\nthis position of ours even after the unilateral\\n\\n24\\n00:02:28,700 --> 00:02:33,049\\nproclamation of Kosovo\\'s independence. However\\nour persistent proposals to the Georgian side\\n\\n25\\n00:02:33,050 --> 00:02:38,450\\nto conclude agreements with Abkhazia and South\\nOssetia on the non-use of force remained unanswered.\\n\\n26\\n00:02:38,450 --> 00:02:43,970\\nRegrettably, they were ignored also by NATO\\nand even at the United Nations.\\n\\n27\\n00:02:43,970 --> 00:02:50,970\\nIt stands quite clear now: a peaceful resolution\\nof the conflict was not part of Tbilisi\\'s\\n\\n28\\n00:02:52,570 --> 00:02:56,709\\nplan. The Georgian leadership was methodically\\npreparing for war, while the political and\\n\\n29\\n00:02:56,710 --> 00:03:03,240\\nmaterial support provided by their foreign\\nguardians only served to reinforce the perception\\n\\n30\\n00:03:03,240 --> 00:03:05,000\\nof their own impunity.\\n\\n31\\n00:03:05,000 --> 00:03:12,000\\nTbilisi made its choice during the night of\\nAugust 8, 2008. Saakashvili opted for genocide\\n\\n32\\n00:03:14,390 --> 00:03:20,130\\nto accomplish his political objectives. By\\ndoing so he himself dashed all the hopes for\\n\\n33\\n00:03:20,130 --> 00:03:25,740\\nthe peaceful coexistence of Ossetians, Abkhazians\\nand Georgians in a single state. The peoples\\n\\n34\\n00:03:25,740 --> 00:03:32,740\\nof South Ossetia and Abkhazia have several\\ntimes spoken out at referendums in favor of\\n\\n35\\n00:03:34,490 --> 00:03:40,270\\nindependence for their republics. It is our\\nunderstanding that after what has happened\\n\\n36\\n00:03:40,270 --> 00:03:45,000\\nin Tskhinval and what has been planned for\\nAbkhazia they have the right to decide their\\n\\n37\\n00:03:45,000 --> 00:03:45,380\\ndestiny by themselves.\\n\\n38\\n00:03:45,380 --> 00:03:51,870\\nThe Presidents of South Ossetia and Abkhazia,\\nbased on the results of the referendums conducted\\n\\n39\\n00:03:51,870 --> 00:03:58,870\\nand on the decisions taken by the Parliaments\\nof the two republics, appealed to Russia to\\n\\n40\\n00:04:04,060 --> 00:04:07,520\\nrecognize the state sovereignty of South Ossetia\\nand Abkhazia. The Federation Council and the\\n\\n41\\n00:04:07,520 --> 00:04:14,520\\nState Duma voted in support of those appeals.\\n\\n42\\n00:04:16,069 --> 00:04:23,069\\nA decision needs to be taken based on the\\nsituation on the ground. Considering the freely\\n\\n43\\n00:04:26,930 --> 00:04:31,160\\nexpressed will of the Ossetian and Abkhaz\\npeoples and being guided by the provisions\\n\\n44\\n00:04:31,160 --> 00:04:37,350\\nof the UN Charter, the 1970 Declaration on\\nthe Principles of International Law Governing\\n\\n45\\n00:04:37,350 --> 00:04:41,520\\nFriendly Relations Between States, the CSCE\\nHelsinki Final Act of 1975 and other fundamental\\n\\n46\\n00:04:41,520 --> 00:04:46,750\\ninternational instruments, I signed Decrees\\non the recognition by the Russian Federation\\n\\n47\\n00:04:46,750 --> 00:04:48,389\\nof South Ossetia\\'s and Abkhazia\\'s independence.\\n\\n48\\n00:04:48,389 --> 00:04:55,389\\nRussia calls on other states to follow its\\nexample. This is not an easy choice to make,\\n\\n49\\n00:04:56,630 --> 00:05:03,630\\nbut it represents the only possibility to\\nsave human lives.',\n", + " 'bytes': 5769,\n", + " 'sha1': 'jmvexq759g1wpwjj5oxi7lwfi45cp71',\n", + " 'parent_id': 98765302,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 153951764,\n", + " 'timestamp': '2015-03-19T13:07:26Z',\n", + " 'user': {'id': 2335816, 'text': 'Great Brightstar'},\n", + " 'page': {'id': 26843935,\n", + " 'title': 'Dmitry Medvedev address on 26 August 2008 regarding Abkhazia & South Ossetia.ogg.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:01,160 --> 00:00:03,400\\nД.МЕДВЕДЕВ: Уважаемые граждане\\nРоссии!\\n\\n1\\n00:00:03,400 --> 00:00:08,600\\nВы, безусловно, знаете о\\nтрагедии Южной Осетии:\\n\\n2\\n00:00:08,600 --> 00:00:12,179\\nночной расстрел Цхинвала\\nгрузинскими войсками привел\\n\\n3\\n00:00:12,179 --> 00:00:18,350\\nк гибели сотен наших мирных\\nграждан, погибли российские\\n\\n4\\n00:00:18,350 --> 00:00:23,460\\nмиротворцы, до конца выполнившие\\nсвой долг по защите женщин,\\n\\n5\\n00:00:23,460 --> 00:00:26,320\\nдетей и стариков.\\n\\n6\\n00:00:26,320 --> 00:00:30,179\\nГрузинское руководство\\nв нарушение Устава ООН,\\n\\n7\\n00:00:30,179 --> 00:00:34,550\\nсвоих обязательств по международным\\nсоглашениям, вопреки здравому\\n\\n8\\n00:00:34,550 --> 00:00:39,430\\nсмыслу развязало вооружённый\\nконфликт, жертвами которого\\n\\n9\\n00:00:39,430 --> 00:00:46,430\\nстали мирные люди. Эта же\\nучасть ждала Абхазию. Очевидно,\\n\\n10\\n00:00:46,480 --> 00:00:48,828\\nв Тбилиси рассчитывали\\nна блицкриг, который поставил\\n\\n11\\n00:00:48,829 --> 00:00:53,820\\nбы мировое сообщество перед\\nсвершившимся фактом. Был\\n\\n12\\n00:00:53,820 --> 00:00:57,829\\nвыбран самый бесчеловечный\\nспособ добиться своей цели\\n\\n13\\n00:00:57,829 --> 00:01:02,960\\n— присоединить Южную Осетию\\nценой уничтожения целого\\n\\n14\\n00:01:02,960 --> 00:01:03,370\\nнарода.\\n\\n15\\n00:01:03,370 --> 00:01:10,370\\nЭто была не первая попытка.\\nВ 1991 году президент Грузии\\n\\n16\\n00:01:10,540 --> 00:01:14,950\\nГамсахурдия с призывом\\n«Грузия — для грузин» — только\\n\\n17\\n00:01:14,950 --> 00:01:18,370\\nвдумайтесь в эти слова\\n— приказал штурмовать Сухум\\n\\n18\\n00:01:18,370 --> 00:01:24,600\\nи Цхинвал. Тысячи погибших,\\nдесятки тысяч беженцев,\\n\\n19\\n00:01:24,600 --> 00:01:29,669\\nразорённые сёла — вот к\\nчему тогда это привело.\\n\\n20\\n00:01:29,670 --> 00:01:32,740\\nИменно Россия в тот момент\\nостановила истребление\\n\\n21\\n00:01:32,740 --> 00:01:36,890\\nабхазского и осетинского\\nнародов. Наша страна стала\\n\\n22\\n00:01:36,890 --> 00:01:40,680\\nпосредником и миротворцем,\\nдобиваясь политического\\n\\n23\\n00:01:40,680 --> 00:01:44,960\\nурегулирования. При этом\\nмы неизменно исходили из\\n\\n24\\n00:01:44,960 --> 00:01:49,970\\nпризнания территориальной\\nцелостности Грузии.\\n\\n25\\n00:01:49,970 --> 00:01:54,020\\nГрузинское руководство\\nвыбрало другой путь: срыв\\n\\n26\\n00:01:54,020 --> 00:01:58,380\\nпереговорного процесса,\\nигнорирование достигнутых\\n\\n27\\n00:01:58,380 --> 00:02:02,770\\nдоговорённостей, политические\\nи военные провокации, нападения\\n\\n28\\n00:02:02,770 --> 00:02:06,250\\nна миротворцев — всё это\\nгрубо нарушало режим в\\n\\n29\\n00:02:06,250 --> 00:02:12,590\\nзонах конфликта, установленный\\nпри поддержке ООН и ОБСЕ.\\n\\n30\\n00:02:12,590 --> 00:02:17,090\\nРоссия проявляла выдержку\\nи терпение. Мы неоднократно\\n\\n31\\n00:02:17,090 --> 00:02:20,770\\nпризывали вернуться за\\nстол переговоров и не отошли\\n\\n32\\n00:02:20,770 --> 00:02:24,830\\nот своей позиции даже после\\nодностороннего провозглашения\\n\\n33\\n00:02:24,830 --> 00:02:29,960\\nнезависимости Косово. Но\\nнаши настойчивые предложения\\n\\n34\\n00:02:29,960 --> 00:02:33,230\\nк грузинской стороне заключить\\nс Абхазией и Южной Осетией\\n\\n35\\n00:02:33,230 --> 00:02:38,019\\nдоговорённости о неприменении\\nсилы остались без ответа.\\n\\n36\\n00:02:38,020 --> 00:02:45,020\\nК сожалению, их проигнорировали\\nи в НАТО, и даже в ООН.\\n\\n37\\n00:02:45,030 --> 00:02:48,370\\nСейчас понятно: мирное\\nразрешение конфликта в\\n\\n38\\n00:02:48,370 --> 00:02:52,750\\nпланы Тбилиси не входило\\n— грузинское руководство\\n\\n39\\n00:02:52,750 --> 00:02:56,530\\nметодично готовилось к\\nвойне, а политическая и\\n\\n40\\n00:02:56,530 --> 00:03:00,090\\nматериальная поддержка\\nвнешних покровителей только\\n\\n41\\n00:03:00,090 --> 00:03:04,290\\nукрепляла ощущение собственной\\nбезнаказанности.\\n\\n42\\n00:03:04,290 --> 00:03:10,069\\nВ ночь на 8 августа 2008 года\\nв Тбилиси сделали свой\\n\\n43\\n00:03:10,069 --> 00:03:13,970\\nвыбор: Саакашвили избрал\\nгеноцид для решения своих\\n\\n44\\n00:03:13,970 --> 00:03:19,650\\nполитических задач. Этим\\nон собственноручно перечеркнул\\n\\n45\\n00:03:19,650 --> 00:03:25,650\\nвсе надежды на мирное существование\\nосетин, абхазов и грузин\\n\\n46\\n00:03:25,650 --> 00:03:30,890\\nв одном государстве. Народы\\nЮжной Осетии и Абхазии\\n\\n47\\n00:03:30,890 --> 00:03:34,458\\nнеоднократно высказывались\\nна референдумах в поддержку\\n\\n48\\n00:03:34,459 --> 00:03:39,840\\nнезависимости своих республик.\\nМы понимаем, что после того,\\n\\n49\\n00:03:39,840 --> 00:03:43,459\\nчто произошло в Цхинвале\\nи планировалось в Абхазии,\\n\\n50\\n00:03:43,459 --> 00:03:46,209\\nони имеют право решить\\nсвою судьбу сами.\\n\\n51\\n00:03:46,209 --> 00:03:50,980\\nПрезиденты Южной Осетии\\nи Абхазии, основываясь\\n\\n52\\n00:03:50,980 --> 00:03:54,649\\nна результатах референдумов\\nи решениях республиканских\\n\\n53\\n00:03:54,650 --> 00:03:59,180\\nпарламентов, обратились\\nк России с просьбой о признании\\n\\n54\\n00:03:59,180 --> 00:04:03,640\\nгосударственного суверенитета\\nЮжной Осетии и Абхазии.\\n\\n55\\n00:04:03,640 --> 00:04:08,359\\nСовет Федерации и Государственная\\nДума проголосовали в поддержку\\n\\n56\\n00:04:08,360 --> 00:04:11,380\\nэтих обращений.\\n\\n57\\n00:04:11,380 --> 00:04:16,649\\nИсходя из сложившейся ситуации\\nнеобходимо принять решение.\\n\\n58\\n00:04:16,649 --> 00:04:19,940\\nУчитывая свободное волеизъявление\\nосетинского и абхазского\\n\\n59\\n00:04:19,940 --> 00:04:25,000\\nнародов, руководствуясь\\nположениями Устава ООН,\\n\\n60\\n00:04:25,000 --> 00:04:31,160\\nдекларацией 1970 года о принципах\\nмеждународного права, касающихся\\n\\n61\\n00:04:31,160 --> 00:04:36,070\\nдружественных отношений\\nмежду государствами, Хельсинкским\\n\\n62\\n00:04:36,070 --> 00:04:42,060\\nЗаключительным актом СБСЕ\\n1975 года, другими основополагающими\\n\\n63\\n00:04:42,060 --> 00:04:47,410\\nмеждународными документами\\n— я подписал указы о признании\\n\\n64\\n00:04:47,410 --> 00:04:51,630\\nРоссийской Федерацией\\nнезависимости Южной Осетии\\n\\n65\\n00:04:51,630 --> 00:04:55,200\\nи независимости Абхазии.\\n\\n66\\n00:04:55,200 --> 00:04:58,070\\nРоссия призывает другие\\nгосударства последовать\\n\\n67\\n00:04:58,070 --> 00:05:03,440\\nеё примеру. Это нелёгкий\\nвыбор, но это единственная\\n\\n68\\n00:05:03,440 --> 00:05:05,969\\nвозможность сохранить\\nжизни людей.',\n", + " 'bytes': 8848,\n", + " 'sha1': '0wlwo973evtxir9e0s33181a1x5mzlx',\n", + " 'parent_id': 98765319,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 283493958,\n", + " 'timestamp': '2018-01-28T13:44:37Z',\n", + " 'user': {'text': '78.131.202.173'},\n", + " 'page': {'id': 26886708,\n", + " 'title': 'Star Spangled Banner instrumental.ogg.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00 --> 00:00:04\\nO, powiedz, czy widzisz\\n\\n2\\n00:00:04 --> 00:00:07\\nw pierwszym świetle świtu\\n\\n3\\n00:00:09 --> 00:00:11\\nCośmy tak dumnie sławili\\n\\n4\\n00:00:12 --> 00:00:15\\nw ostatnim blasku zmierzchu\\n\\n5\\n00:00:17 --> 00:00:20\\nNa czyje to pasy i błyszczące gwiazdy\\n\\n6\\n00:00:21 --> 00:00:24\\nw szaleńczej walce\\n\\n7\\n00:00:25 --> 00:00:29\\nPonad szańcami spoglądaliśmy,\\n\\n8\\n00:00:30 --> 00:00:33\\njak dumnie łopotały\\n\\n9\\n00:00:34 --> 00:00:38\\nOślepiająca czerwień rakiet,\\n\\n10\\n00:00:38 --> 00:00:42\\nbomby rozdzierające powietrze\\n\\n11\\n00:00:43 --> 00:00:46\\nDowodziły przez całą noc,\\n\\n12\\n00:00:47 --> 00:00:50\\nże nasz sztandar ciągle tam trwa.\\n\\n13\\n00:00:51 --> 00:00:56\\nO, powiedz, czy jeszcze gwiaździsty\\n\\n14\\n00:00:57 --> 00:01:02\\nsztandar powiewa\\n\\n15\\n00:01:03 --> 00:01:08\\nPonad krajem wolnych,\\n\\n16\\n00:01:09 --> 00:01:16\\nojczyzną dzielnych ludzi?',\n", + " 'bytes': 858,\n", + " 'sha1': 'ht303mpo0wocy1wqisuqv23jy2f73ik',\n", + " 'parent_id': 185692092,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 98951979,\n", + " 'timestamp': '2013-06-27T06:27:28Z',\n", + " 'user': {'id': 52724, 'text': 'Sergey kudryavtsev'},\n", + " 'page': {'id': 26900565,\n", + " 'title': 'Ru-лошадь.ogg.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:01,300 лошадь'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,300\\nлошадь',\n", + " 'bytes': 44,\n", + " 'sha1': 'hq4ydjc5o79snynujgifnfetoxtik0u',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 98968067,\n", + " 'timestamp': '2013-06-27T11:48:17Z',\n", + " 'user': {'id': 1435078, 'text': 'రహ్మానుద్దీన్'},\n", + " 'page': {'id': 26906758,\n", + " 'title': 'Type in Telugu on Telugu Wikipedia.webm.te.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,400\\nతెలుగు వికీపీడియాలో తెలుగులో ఎలా టైపు చేయాలి?<br />\\n<small>(రూపొందించినది:Psubhashish, అనువాదం : రహ్మానుద్దీన్)<br />\\nలైసెన్స్ : CC-BY-SA 3.0</small>\\n\\n2\\n00:00:04,600 --> 00:00:06,800\\nte.wikipedia.org వద్ద వికీపీడియాను సందర్శించండి\\n\\n3\\n00:00:06,000 --> 00:00:08,400\\nవెతుకు అని ఉన్న సెర్చ్ బార్ పై క్లిక్ చేయండి\\n\\n4\\n00:00:09,600 --> 00:00:16,800\\nకీబోర్డ్ బొమ్మ పై క్లిక్ చేసి \"తెలుగు\"ను ఎంచుకోండి\\n\\n5\\n00:00:17,000 --> 00:00:25,400\\nమీకు సౌకర్యంగా ఉండే కీబోర్డ్ రకాన్ని(లిప్యంతరీకరణ లేదా ఇ\\u200dన్స్క్రిప్ట్ లేదా ఇ\\u200dన్స్క్రిప్ట్ 2) ను ఎంచుకోండి\\n\\n6\\n00:00:26,600 --> 00:00:34,800\\nతెలుగు వికీపీడియాలో మార్పులు చేయండి, తెలుగులోనే టైపు చేయండి :)',\n", + " 'bytes': 1321,\n", + " 'sha1': '26njc2wbvwqd4y5umptto058giypp58',\n", + " 'parent_id': 98967980,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 98968437,\n", + " 'timestamp': '2013-06-27T11:54:01Z',\n", + " 'user': {'id': 1435078, 'text': 'రహ్మానుద్దీన్'},\n", + " 'page': {'id': 26907042,\n", + " 'title': 'Type in Telugu on Telugu Wikimedia projects.webm.te.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'changed timing',\n", + " 'text': '1\\n00:00:03,600 --> 00:00:06,800\\nte.wikipedia.org వద్ద వికీపీడియాను సందర్శించండి\\n\\n2\\n00:00:06,000 --> 00:00:08,400\\nవెతుకు అని ఉన్న సెర్చ్ బార్ పై క్లిక్ చేయండి\\n\\n3\\n00:00:09,600 --> 00:00:16,800\\nకీబోర్డ్ బొమ్మ పై క్లిక్ చేసి \"తెలుగు\"ను ఎంచుకోండి\\n\\n4\\n00:00:17,000 --> 00:00:25,400\\nమీకు సౌకర్యంగా ఉండే కీబోర్డ్ రకాన్ని(లిప్యంతరీకరణ లేదా ఇ\\u200dన్స్క్రిప్ట్ లేదా ఇ\\u200dన్స్క్రిప్ట్ 2) ను ఎంచుకోండి\\n\\n5\\n00:00:26,600 --> 00:00:34,800\\nతెలుగు వికీపీడియాలో మార్పులు చేయండి, తెలుగులోనే టైపు చేయండి :)',\n", + " 'bytes': 977,\n", + " 'sha1': 'i7mxnfzgw2qqcrfls4kik8q7o6d18va',\n", + " 'parent_id': 98968270,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 98968679,\n", + " 'timestamp': '2013-06-27T11:58:56Z',\n", + " 'user': {'id': 1435078, 'text': 'రహ్మానుద్దీన్'},\n", + " 'page': {'id': 26907221,\n", + " 'title': 'Type in Telugu on Telugu Wikimedia projects.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,400\\nHow to type Telugu on Telugu Wikipedia\\n\\n2\\n00:00:03,000 --> 00:00:04,400\\n(Production by User:Psubhashish, Translation: User:రహ్మానుద్దీన్)\\n\\n3\\n00:00:04,600 --> 00:00:06,800\\nVisit Telugu Wikipedia at te.wikipedia.org\\n\\n4\\n00:00:06,000 --> 00:00:08,400\\nClick on the search bar\\n\\n5\\n00:00:09,600 --> 00:00:16,800\\nClick on the Keyboard icon and select \"తెలుగు\"\\n\\n6\\n00:00:17,000 --> 00:00:25,400\\nSelect the layout (లిప్యంతరీకరణ/ఇ\\u200dన్స్క్రిప్ట్ /ఇ\\u200dన్స్క్రిప్ట్ 2)\\n\\n7\\n00:00:26,600 --> 00:00:34,800\\nKeep typing, keep Editing Telugu Wikipedia :)',\n", + " 'bytes': 679,\n", + " 'sha1': '9qzqf9kz98wbhgb8awrbf6jv1nbe4jk',\n", + " 'parent_id': 98968663,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 444368896,\n", + " 'timestamp': '2020-08-28T06:46:34Z',\n", + " 'user': {'id': 291679, 'text': 'Anon126'},\n", + " 'page': {'id': 26911437,\n", + " 'title': 'WWV time signal - 20090904.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'fix announcement at 15:02 UTC',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:08,000\\nAt the tone , fifteen hours , zero minute , coordinated universal time ( UTC) *beeps* \\n\\n2\\n00:00:09,100 --> 00:00:15,000\\nNational Institute of Standards and Technology time: this is Radio Station WWV, Fort Collins Colorado, \\n\\n3\\n00:00:15,000 --> 00:00:23,000\\nbroadcasting on internationally allocated standard carrier frequencies of two-point-five, five, ten, fifteen, \\n\\n4\\n00:00:23,000 --> 00:00:29,000\\nand twenty megahertz, providing time of day, standard time interval, and other related information. Inquiries regarding \\n\\n5\\n00:00:29,000 --> 00:00:37,000\\nthese transmissions may be directed to the National Institute of Standards and Technology, Radio Station WWV, 2000 East \\n\\n6\\n00:00:37,000 --> 00:00:42,200\\nCounty Road 58, Fort Collins, Colorado, 80524.\\n\\n7\\n00:01:01,200 --> 00:01:08,300 \\nAt the tone , fifteen hours , one minute , coordinated universal time (UTC) *beeps*\\n\\n8\\n00:02:00,100 --> 00:02:08\\nAt the tone , fifteen hours , two minutes , coordinated universal time (UTC) *beeps*',\n", + " 'bytes': 1019,\n", + " 'sha1': '0p3s6sqkgm83iw9qnjkubl7dtgzaey9',\n", + " 'parent_id': 414120507,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99141906,\n", + " 'timestamp': '2013-06-29T23:29:49Z',\n", + " 'user': {'text': '109.10.10.239'},\n", + " 'page': {'id': 26963798,\n", + " 'title': 'En-us-sketch.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:01,000 Sketch'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nSketch',\n", + " 'bytes': 38,\n", + " 'sha1': '1qfwqxp20s6ckraegz5697jrwv4k0ab',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99150353,\n", + " 'timestamp': '2013-06-30T01:59:03Z',\n", + " 'user': {'text': '36.74.20.143'},\n", + " 'page': {'id': 26965957,\n", + " 'title': 'Crazytales-soundtest.ogg.id.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:03,300 Mary Mempunyai Seekor Anak Kambing 2 00:00:03,300 --> 00:00:05,000 Yang memiliki Bulu Putih, Seputih salju 3 00:00:06,000 --> ...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,300\\nMary Mempunyai Seekor Anak Kambing\\n\\n2\\n00:00:03,300 --> 00:00:05,000\\nYang memiliki Bulu Putih, Seputih salju\\n\\n3\\n00:00:06,000 --> 00:00:09,600\\nDan kemana-mana Mary pergi, Anak kambing akan ikut',\n", + " 'bytes': 223,\n", + " 'sha1': '1k5jg1p15ylwgmvb7gx1yar0vg0fqgx',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99217313,\n", + " 'timestamp': '2013-07-01T01:38:35Z',\n", + " 'user': {'id': 2743376, 'text': 'Iggoul2'},\n", + " 'page': {'id': 26984553,\n", + " 'title': 'Labrador barking on command.theora.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,800 --> 00:00:05,000 [Ladrido] 2 00:00:05,000 --> 00:00:06,000 HABLAR. 3 00:00:06,000 --> 00:00:07,000 [Ladrido de nuevo]'\",\n", + " 'text': '1\\n00:00:03,800 --> 00:00:05,000\\n[Ladrido]\\n\\n2\\n00:00:05,000 --> 00:00:06,000\\nHABLAR.\\n\\n3\\n00:00:06,000 --> 00:00:07,000\\n[Ladrido de nuevo]',\n", + " 'bytes': 134,\n", + " 'sha1': 'tkrtrnxz2sehluaex4virpx8764ybzi',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99235276,\n", + " 'timestamp': '2013-07-01T09:22:36Z',\n", + " 'user': {'text': '130.209.144.234'},\n", + " 'page': {'id': 26988601,\n", + " 'title': 'Bright College Years.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,200 Bright College years, with pleasure rife, 2 00:00:05,300 --> 00:00:09,200 The shortest, gladdest years of life; 3 00:00:09,300...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,200\\nBright College years, with pleasure rife,\\n\\n2\\n00:00:05,300 --> 00:00:09,200\\nThe shortest, gladdest years of life;\\n\\n3\\n00:00:09,300 --> 00:00:14,200\\nHow swiftly are ye gliding by!\\n\\n4\\n00:00:14,300 --> 00:00:18,200\\nOh, why doth time so quickly fly?\\n\\n5\\n00:00:18,300 --> 00:00:23,200\\nThe seasons come, the seasons go,\\n\\n6\\n00:00:23,300 --> 00:00:28,200\\nThe earth is green or white with snow,\\n\\n7\\n00:00:28,300 --> 00:00:37,200\\nBut time and change shall naught avail\\n\\n8\\n00:00:37,300 --> 00:00:47,200\\nTo break the friendships formed at Yale.\\n\\n9\\n00:00:47,300 --> 00:00:52,200\\nIn after years, should troubles rise\\n\\n10\\n00:00:52,300 --> 00:00:57,200\\nTo cloud the blue of sunny skies,\\n\\n11\\n00:00:57,300 --> 00:01:03,200\\nHow bright will seem, through mem\\'ry\\'s haze\\n\\n12\\n00:01:03,300 --> 00:01:07,200\\nThose happy, golden, bygone days!\\n\\n13\\n00:01:07,300 --> 00:01:13,200\\nOh, let us strive that ever we\\n\\n14\\n00:01:13,300 --> 00:01:18,200\\nMay let these words our watch-cry be,\\n\\n15\\n00:01:18,300 --> 00:01:29,200\\nWhere\\'er upon life\\'s sea we sail:\\n\\n16\\n00:01:29,300 --> 00:01:39,200\\n\"For God, for Country and for Yale!\"',\n", + " 'bytes': 1120,\n", + " 'sha1': 'ecn23f7zlwshcnwmhrpxmz1twf2ulns',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 140215909,\n", + " 'timestamp': '2014-11-22T04:08:56Z',\n", + " 'user': {'id': 1216133, 'text': 'Champion'},\n", + " 'page': {'id': 27018067,\n", + " 'title': 'Star Spangled Banner instrumental.ogg.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1\\n00:00:00 --> 00:00:04\\nDi' dunque che alle prime\\n\\n2\\n00:00:04 --> 00:00:07\\nluci dell'alba puoi vedere\\n\\n3\\n00:00:09 --> 00:00:11\\nCiò che salutammo fieri\\n\\n4\\n00:00:12 --> 00:00:15\\nall'ultimo raggio del crepuscolo?\\n\\n5\\n00:00:17 --> 00:00:20\\nLe cui larghe striscie e brillanti stelle,\\n\\n6\\n00:00:21 --> 00:00:24\\nnella battaglia pericolosa,\\n\\n7\\n00:00:25 --> 00:00:29\\nsui bastioni che guardavamo,\\n\\n8\\n00:00:30 --> 00:00:33\\nsventolavano gagliardamente?\\n\\n9\\n00:00:34 --> 00:00:38\\nE i rossi lampi dei razzi,\\n\\n10\\n00:00:38 --> 00:00:42\\nle bombe che esplodevano in aria\\n\\n11\\n00:00:43 --> 00:00:46\\nHanno dato prova nella notte\\n\\n12\\n00:00:47 --> 00:00:50\\nche la nostra bandiera ancora era là.\\n\\n13\\n00:00:51 --> 00:00:56\\nì dunque, sventola ancora\\n\\n14\\n00:00:57 --> 00:01:02\\nil nostro stendardo brillante di stelle,\\n\\n15\\n00:01:03 --> 00:01:08\\nsulla terra dei liberi\\n\\n16\\n00:01:09 --> 00:01:16\\ne la casa dei forti?\",\n", + " 'bytes': 886,\n", + " 'sha1': '3n138jc2c9by4s52pnhls0f0n78hw5z',\n", + " 'parent_id': 99317009,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 629929227,\n", + " 'timestamp': '2022-02-15T08:17:31Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 27031406,\n", + " 'title': 'Mazurek Dabrowskiego.ogg.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,234\\nJeszcze Polska nie zginęła,\\n\\n2\\n00:00:03,296 --> 00:00:06,000\\nKiedy my żyjemy.\\n\\n3\\n00:00:06,600 --> 00:00:09,793\\nCo nam obca przemoc wzięła,\\n\\n4\\n00:00:09,843 --> 00:00:12,764\\nSzablą odbierzemy.\\n\\n5\\n00:00:13,242 --> 00:00:16,548\\nMarsz, marsz, Dąbrowski,\\n\\n6\\n00:00:16,597 --> 00:00:19,500\\nZ ziemi włoskiej do Polski.\\n\\n7\\n00:00:19,757 --> 00:00:23,243\\nZa twoim przewodem\\n\\n8\\n00:00:23,263 --> 00:00:26,225\\nZłączym się z narodem.\\n\\n9\\n00:00:26,691 --> 00:00:29,986\\nMarsz, marsz, Dąbrowski,\\n\\n10\\n00:00:30,037 --> 00:00:33,460\\nZ ziemi włoskiej do Polski.\\n\\n11\\n00:00:33,503 --> 00:00:36,891\\nZa twoim przewodem\\n\\n12\\n00:00:36,925 --> 00:00:40,278\\nZłączym się z narodem.',\n", + " 'bytes': 695,\n", + " 'sha1': 'tc99xlevydd46juvyqhkaxydfvzax3d',\n", + " 'parent_id': 629841355,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 442667099,\n", + " 'timestamp': '2020-08-24T12:05:44Z',\n", + " 'user': {'id': 5617889, 'text': 'Sabelöga'},\n", + " 'page': {'id': 27035774,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,420 --> 00:00:09,260\\nWikipedia, en trovärdig källa?\\n\\n2\\n00:00:14,720 --> 00:00:20,210\\nJa,mina kära elever , tack för den trevliga\\nveckan. Innan ni går, det postmoderna\\n\\n3\\n00:00:20,010 --> 00:00:26,460\\nsamhället ur ett stoicistiskt perspektiv,\\n475 sidor, till på måndag. Trevlig helg,\\n\\n4\\n00:00:26,660 --> 00:00:28,200\\nTack!\\n\\n5\\n00:00:46,320 --> 00:00:52,440\\nDu är min favoritelev, tack!\\n\\n6\\n00:00:57,320 --> 00:00:59,420\\nFöljande måndag\\n\\n7\\n00:01:12,340 --> 00:01:23,070\\nJag har ju sagt att Wikipedia inte är en\\ntrovärdig källa, ut, ut! Ut ur mitt rum!\\n\\n8\\n00:01:36,860 --> 00:01:53,240\\nÄven du? Jag är besviken, ut, ut!\\n\\n9\\n00:01:58,940 --> 00:02:04,230\\nJag blir så arg, arg. Jag har ju för fasen, fasen!\\n\\n10\\n00:02:19,490 --> 00:02:26,470\\nKänner du igen dig? Du är inte ensam.\\nWikipedia är Sveriges sjätte mest\\n\\n11\\n00:02:26,500 --> 00:02:31,460\\nbesökta sida, så chansen är ganska stor\\natt dina elever går in och hittar fakta och\\n\\n12\\n00:02:31,480 --> 00:02:38,780\\ninformation just där. Det kanske även du\\nsom pedagog gör? Men hur går det då att\\n\\n13\\n00:02:38,800 --> 00:02:42,020\\nveta om en Wikipediaartikel är pålitlig\\neller inte?\\n\\n14\\n00:02:42,610 --> 00:02:50,210\\nJag skulle ge dig tre tips. De tipsen, det\\när Kä, Di och Hi.\\n\\n15\\n00:02:50,420 --> 00:02:56,880\\nKä, det är källor. Det finns längst ner på\\nWikipedias artikel. Titta efter hur många det är.\\n\\n16\\n00:02:57,220 --> 00:02:59,760\\nOm du tycker att det är bra källor.\\n\\n17\\n00:03:00,080 --> 00:03:02,600\\nKlicka dig gärna vidare på en källa för att\\nse var du hamnar. \\n\\n18\\n00:03:03,480 --> 00:03:08,160\\nDen andra, det är Di, det betyder\\ndiskussion. Till varje artikel finns\\n\\n19\\n00:03:08,180 --> 00:03:12,800\\nnämligen en flik, gå in där och titta på\\nvad man pratar om. Pratar man ens om\\n\\n20\\n00:03:12,820 --> 00:03:16,070\\nnånting? Om man gör det man brukar\\nprata om innehåll och struktur. \\n\\n21\\n00:03:16,580 --> 00:03:21,560\\nFinns det diskussion till artikeln, gör det \\noftast artikeln bättre. Det visar många varit inne\\n\\n22\\n00:03:21,660 --> 00:03:24,950\\noch granskat och funderat på vad som\\nstår i artikeln och hur den ska se ut. \\n\\n23\\n00:03:25,780 --> 00:03:32,990\\nDet sista det är Hi, historik. Det också en\\nflik. Kolla där hur många som har lagt till\\n\\n24\\n00:03:33,750 --> 00:03:38,010\\ninformation och tagit bort information. Ju\\nfler som har varit med att bidragit och\\n\\n25\\n00:03:38,130 --> 00:03:43,170\\npratat och diskuterat, desto bättre. Det\\ngör artikeln mycket mer trovärdig. \\n\\n26\\n00:03:44,140 --> 00:03:50,510\\nDet är alltså tre enkla grejer, Kä, Di och Hi. \\nTitta gärna på det här tillsammans med dina\\n\\n27\\n00:03:50,560 --> 00:03:54,820\\nelever för att bedöma en artikels\\ntrovärdighet på Wikipedia. \\n\\n28\\n00:03:55,700 --> 00:03:59,150\\nPå Wikimedia Sverige, där arbetar vi\\nbland annat med utbildningsprogrammet\\n\\n29\\n00:03:59,240 --> 00:04:05,360\\nWikipedia i Utbildning. Hör gärna av dig\\nom du är nyfiken, fundersam eller kanske\\n\\n30\\n00:04:05,870 --> 00:04:11,520\\nskeptisk? Vi vill höra ifrån dig. Det vi gör,\\när att göra Wikipedia mer tillgängligt,\\n\\n31\\n00:04:12,040 --> 00:04:18,150\\nanvändbart och förståeligt. Vi vill\\njättegärna höra ifrån just dig. \\n\\n32\\n00:04:26,190 --> 00:04:29,980\\nWikipedia i utbildning\\n\\n33\\n00:04:32,690 --> 00:04:36,340\\nHar du fått nog av Wikipedia?\\nKan du inte få nog av Wikipedia?\\n\\n34\\n00:04:37,980 --> 00:04:41,430\\nHör av dig till\\nutbildning@wikimedia.se',\n", + " 'bytes': 3432,\n", + " 'sha1': 'qb0riduw6m9itgp9yb8e4tyk88esokq',\n", + " 'parent_id': 442666739,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99369009,\n", + " 'timestamp': '2013-07-03T11:58:27Z',\n", + " 'user': {'id': 2742126, 'text': 'Jan Ainali (WMSE)'},\n", + " 'page': {'id': 27035786,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,270 --> 00:00:10,230 Wikipedia, a trustworthy source? 2 00:00:14,810 --> 00:00:19,650 Well, my dear students, thanks for a nice week. Before you go,...'\",\n", + " 'text': \"1\\n00:00:01,270 --> 00:00:10,230\\nWikipedia, a trustworthy source?\\n\\n2\\n00:00:14,810 --> 00:00:19,650\\nWell, my dear students, thanks for a nice\\nweek. Before you go, the post-modern\\n\\n3\\n00:00:19,720 --> 00:00:25,870\\nsociety from a stoicistisc perspective,\\n475 pages, hand in on Monday.\\n\\n4\\n00:00:26,330 --> 00:00:29,220\\nHave a nice weekend, \\nThank you!\\n\\n5\\n00:00:47,560 --> 00:00:51,760\\nYou are my favorite pupil, thank you!\\n\\n6\\n00:00:57,270 --> 00:00:58,820\\nNext Monday\\n\\n7\\n00:01:12,660 --> 00:01:21,950\\nI told you that Wikipedia is not a credible\\nsource, out, out! Get out of my room!\\n\\n8\\n00:01:38,750 --> 00:01:52,740\\nEven you? I'm disappointed, out, out!\\n\\n9\\n00:01:59,420 --> 00:02:06,960\\nI get so angry, angry. \\nI've bloody well...\\n\\n10\\n00:02:19,160 --> 00:02:25,930\\nDo you recognize yourself? You are not\\nalone. Wikipedia is Swedens sixth most\\n\\n11\\n00:02:26,060 --> 00:02:31,740\\nvisited page, so chances are pretty high\\nthat your students go there to find facts\\n\\n12\\n00:02:31,860 --> 00:02:37,690\\nand information, just there. Perhaps even\\nyou as educator do that?\\n\\n13\\n00:02:38,220 --> 00:02:42,120\\nBut how can you know whether the articles \\non Wikipedia are reliable or not?\\n\\n14\\n00:02:42,530 --> 00:02:49,940\\nI'll give you three tips. The tips, they are\\nSo, Ta and Hi.\\n\\n15\\n00:02:50,890 --> 00:02:54,860\\nSo, it is sources. They exists at the\\nbottom of the Wikipedia articles.\\n\\n16\\n00:02:55,760 --> 00:02:59,700\\nLook at how many it is and if you think they are good sources.\\n\\n17\\n00:02:59,980 --> 00:03:02,960\\nPlease do click through on\\nthe source to see where you end up.\\n\\n18\\n00:03:03,800 --> 00:03:10,630\\nSecond is Ta, this means Talk. For\\neach article, there is a tab, go in and see\\n\\n19\\n00:03:10,710 --> 00:03:14,580\\nwhat people are talking about. Do they\\neven talk about anything? If they are, it is\\n\\n20\\n00:03:14,690 --> 00:03:18,850\\nusually about content and structure. If\\nthere is a discussion about the article, it\\n\\n21\\n00:03:18,920 --> 00:03:22,640\\nusually makes the article better. It shows\\nmany have been in the article and studied\\n\\n22\\n00:03:22,720 --> 00:03:25,250\\nand considered what is in the article and\\nhow it should look like.\\n\\n23\\n00:03:26,020 --> 00:03:33,310\\nLast is Hi, History. That is also a tab.\\nCheck how many have added information\\n\\n24\\n00:03:33,440 --> 00:03:38,340\\nand removed information. The more\\ncontributers and people partaking in\\n\\n25\\n00:03:38,460 --> 00:03:43,080\\ndiscussions, the better.\\nIt makes article a lot more credible.\\n\\n26\\n00:03:44,190 --> 00:03:48,590\\nSo it is three simple things, So, Ta and Hi.\\n\\n27\\n00:03:48,790 --> 00:03:50,340\\nPlease take a look on this together with your\\n\\n28\\n00:03:50,420 --> 00:03:55,460\\nstudents in order to evaluate an article's\\ncredibility on Wikipedia.\\n\\n29\\n00:03:55,720 --> 00:03:59,780\\nOn Wikimedia Sweden, we are working\\nwith the education programme Wikipedia\\n\\n30\\n00:03:59,810 --> 00:04:06,020\\nin Education. Please let us know if you\\nare curious, thoughtful or maybe skeptical?\\n\\n31\\n00:04:06,400 --> 00:04:10,360\\nWe want to hear from you.\\nWhat we do, is to make Wikipedia\\n\\n32\\n00:04:10,460 --> 00:04:18,030\\naccessible, useful and understandable.\\nWe would really like to hear from you.\\n\\n33\\n00:04:24,240 --> 00:04:29,300\\nWikipedia in Education\\n\\n34\\n00:04:32,630 --> 00:04:37,240\\nAre you fed up with Wikipedia?\\nCan you not get enough of Wikipedia?\\n\\n35\\n00:04:37,970 --> 00:04:41,440\\nContact us on\\nutbildning@wikimedia.se\",\n", + " 'bytes': 3369,\n", + " 'sha1': 'mea5jk8iww4m7tl6a3wcv4kcq4qh8n5',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 225690829,\n", + " 'timestamp': '2016-12-10T00:31:26Z',\n", + " 'user': {'id': 1661481, 'text': 'AVIADOR'},\n", + " 'page': {'id': 27041972,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Ligerísima corrección de ortografía.',\n", + " 'text': '1\\n00:00:0,700 --> 00:00:4,400\\nHola, me llamo Trevor y estoy tratando de crear un Editor Visual para Wikipedia.\\n\\n2\\n00:00:4,500 --> 00:00:7,100\\nTodos pueden editar en Wikipedia, pero la mayoría se siente desorientada\\n\\n3\\n00:00:7,100 --> 00:00:11,100\\ndebido a que el código Wiki puede resultar difícil de entender. \\n\\n4\\n00:00:11,200 --> 00:00:13,900\\nCuando lo creamos hace doce años era alucinante,\\n\\n5\\n00:00:14,000 --> 00:00:17,000\\npero si queremos compartir el conocimiento con todos,\\n\\n6\\n00:00:17,900 --> 00:00:19,000\\ndebemos hacerlo más accesible.\\n\\n7\\n00:00:19,100 --> 00:00:23,000\\nEl editor visual es el cambio más importante que hayamos realizado jamás.\\n\\n8\\n00:00:24,000 --> 00:00:27,200\\nSerá como escribir una nota de papel o mandar un e-mail.\\n\\n9\\n00:00:27,100 --> 00:00:28,900\\nAún tiene sus pequeños fallos,\\n\\n10\\n00:00:29,000 --> 00:00:32,000\\npero si quieres saber cómo funcionará la Wikipedia en un futuro más cercano,\\n\\n11\\n00:00:33,000 --> 00:00:34,400\\ncrea una cuenta (por ejemplo) en Wikipedia en inglés,\\n\\n12\\n00:00:35,000 --> 00:00:38,000\\nve a Preferencias y activa la versión Alfa de VisualEditor.\\n\\n13\\n00:00:39,000 --> 00:00:42,100\\nIncluso nos puedes servir de ayuda si realizas alguna prueba y nos envías tus comentarios acerca del programa.\\n\\n14\\n00:00:42,200 --> 00:00:46,000\\nAsí que, por favor: únete a nosotros para que compartir el conocimiento humano sea más fácil.',\n", + " 'bytes': 1391,\n", + " 'sha1': 'l3yjpk627fy06a646qrnjavfvc47pq4',\n", + " 'parent_id': 225337307,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99468079,\n", + " 'timestamp': '2013-07-04T23:38:03Z',\n", + " 'user': {'id': 1561451, 'text': 'Supermicio'},\n", + " 'page': {'id': 27066124,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'fix',\n", + " 'text': \"1\\n00:00:00,800 --> 00:00:03,500\\nCiao! Sono Trevor, e sto aiutando a creare un VisualEditor per Wikipedia.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nTutti possono contribuire a Wikipedia, ma la maggior parte di chi ci prova è facilmente confusa\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\nperché il vecchio codice di Wikipedia è alquanto difficile da comprendere.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nÈ stato fantastico quando l'abbiamo creato dodici anni fa,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nma se abbiamo intenzione di portare la somma di tutta la conoscenza umana a tutti,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\ndobbiamo renderla facile da condividere.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nIl VisualEditor è il più grande cambiamento che abbiamo mai apportato a Wikipedia.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nCiò rende la scrittura su Wikipedia simile allo scrivere un saggio per la scuola o al mandare un'email\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nCi sono ancora un po' di bug,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nma se vuoi un assaggio di come Wikipedia ha intenzione di lavorare nel prossimo futuro,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\nCrea un account sulla Wikipedia in lingua inglese.\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nVai sulle tue preferenze, e attiva la versione alpha del VisualEditor.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nPuoi anche aiutarci usandolo e poi mandandoci un commento.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nQuindi, per favore, unisciti a noi nel rendere la somma di tutta la conoscenza umana facile da condividere.\",\n", + " 'bytes': 1493,\n", + " 'sha1': '7jq8t63wln8zh1z11thg4q2t2ry58wc',\n", + " 'parent_id': 99468043,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99468292,\n", + " 'timestamp': '2013-07-04T23:54:40Z',\n", + " 'user': {'id': 2460843, 'text': 'Revolution will'},\n", + " 'page': {'id': 27066215,\n", + " 'title': 'The National Anthem of the Republic of Korea.ogg.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:13,000 東海が乾き果て、白頭山が磨り減る時まで 2 00:00:13,500 --> 00:00:26,500 神のお護りくださる我が国...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:13,000\\n東海が乾き果て、白頭山が磨り減る時まで\\n\\n2\\n00:00:13,500 --> 00:00:26,500\\n神のお護りくださる我が国、万歳\\n\\n3\\n00:00:27,700 --> 00:00:41,000\\n無窮花、三千里、華麗な山河、\\n\\n3\\n00:00:41,500 --> 00:00:55,000\\n大韓びとよ、大韓をとわに保全せよ',\n", + " 'bytes': 326,\n", + " 'sha1': 'rnmpjew99m1nayjit04xikiyvq4sxs9',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99478347,\n", + " 'timestamp': '2013-07-05T08:40:41Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 27068952,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.sk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\nPanoramatické fotografie polostrova Pelješac. Fotografovanie v rokoch 2009-2013\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nVýhľad na Orebić a vlajka\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\npohľad z pohoria v hornej časti polostrova\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić z Vižanice\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić od severozápadu\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nPolostrov pri pohľade z kanála\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\nneúrodná pôda nad mestom\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\nneúrodná pôda nad mestom\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\nPriesmyk kapetan a ostrovy s Bile Ploče\\n\\n9.\\n00:00:36,000 --> 00:00:39,800\\nOskorusno z pohoria Viter\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda z pohoria Viter\\n\\n11\\n00:00:44,000 --> 00:00:47,800\\nPriesmyk kapetan\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nVinice na južnej strane\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj od západu\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nDolné Nakovana, pohľad od kaštieľa\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nPohľad na Korčulu od trosiek Kaštela\\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nĽahu nad Mokalo\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić s Mokalo\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomja a Pijavicino od západu\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nkláštor v severovýchodnom Podgorje\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nKláštor v severozápadnej Podgorje\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić zo šupín\\n\\n22\\n00:01:28,000 --> 00:01:31,800\\nMokalo a Supino\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\nTiesňava Pratnjice\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić od severu\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić od severozápadu\\n\\n26\\n00:01:44,000 --> 00:01:47,800\\nVrchol Žrnovnica\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić od severu\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nPohľad na Orebić\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nVižanica-svahy na juhovýchodu\\n\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\nKrásna zátoka\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nPelješka Duba pri pohľade z vrcholu kopca\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nBarinské vrcholy a Žrnovska Banja v pozadí\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\npohľad z polostrova na západe\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nHorná Vrucica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton a soľné panvy\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nHorský hrebeň Mokalo s dedinou Donja Vrucica\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nKláštor Kuni, pohľad z juhu\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nzanedbané, ale opravované vinice\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina od západu\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRuskovići sever\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nObec Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nObec Lovište\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nsvahy na pravej strane\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\nkríž na vrchole Pelješac',\n", + " 'bytes': 2896,\n", + " 'sha1': 'f2rr9yh33yxu9l5a19n5lje6up91ifh',\n", + " 'parent_id': 99478300,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 405782143,\n", + " 'timestamp': '2020-03-21T04:49:53Z',\n", + " 'user': {'id': 3788913, 'text': 'Ixocactus'},\n", + " 'page': {'id': 27080515,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'detalhes da tradução',\n", + " 'text': '1\\n00:00:01,270 --> 00:00:10,230\\nWikipédia, uma fonte confiável?\\n\\n2\\n00:00:14,810 --> 00:00:19,650\\nQueridos alunos, obrigada pela semana. \\nMas antes de irem, quero um trabalho sobre a sociedade pós-moderna\\n\\n3\\n00:00:19,720 --> 00:00:25,870\\nsob uma perspectiva estoica, 475 páginas,\\nem minhas mãos na segunda-feira.\\n\\n4\\n00:00:26,330 --> 00:00:29,220\\nTenham um bom fim de semana!\\nObrigada!\\n\\n5\\n00:00:47,560 --> 00:00:51,760\\nVocê é minha aluna predileta,\\nmuito obrigada!\\n\\n6\\n00:00:57,270 --> 00:00:58,820\\nNa segunda-feira seguinte...\\n\\n7\\n00:01:12,660 --> 00:01:21,950\\nJá disse que a Wikipedia não é uma fonte\\nde informações confiável, saia, saia! Saia da minha sala!\\n\\n8\\n00:01:38,750 --> 00:01:52,740\\nAté você? Estou desapontada, saia, saia!\\n\\n9\\n00:01:59,420 --> 00:02:06,960\\nEu fico tão, tão irritada. \\nMas eu vou ficar bem...\\n\\n10\\n00:02:19,160 --> 00:02:25,930\\nVocê se identificou? Você não está\\nsozinho! Wikipédia é a décima página\\n\\n11\\n00:02:26,060 --> 00:02:31,740\\nmais visitada do Brasil, e são grandes \\nas chances de seus estudantes buscarem\\n\\n12\\n00:02:31,860 --> 00:02:37,690\\nfatos e informações nela. Talvez\\naté você professor faça isso!\\n\\n13\\n00:02:38,220 --> 00:02:42,120\\nMas como saber se os artigos da \\nWikipédia são confiáveis ou não?\\n\\n14\\n00:02:42,530 --> 00:02:49,940\\nAtravés de siglas, vou lhe dar três dicas.\\nAs dicas são Fo, Di e Hi.\\n\\n15\\n00:02:50,890 --> 00:02:54,860\\n\"Fo\", para fontes. Elas existem no pé\\ndos artigos da Wikipédia.\\n\\n16\\n00:02:55,760 --> 00:02:59,700\\nOlhe sua quantidade e veja se você as considera boas fontes. \\n\\n17\\n00:02:59,980 --> 00:03:02,960\\nClique na referência\\npara ver onde você irá parar.\\n\\n18\\n00:03:03,800 --> 00:03:10,630\\nA segunda dica é \"Di\", de discussão. Em cada\\nartigo existe uma aba. Clique e veja\\n\\n19\\n00:03:10,710 --> 00:03:14,580\\no que está sendo discutindo.\\nQuando há alguma discussão, normalmente\\n\\n20\\n00:03:14,690 --> 00:03:18,850\\né sobre o conteúdo e estrutura,\\ne tende a tornar o artigo melhor.\\n\\n21\\n00:03:18,920 --> 00:03:22,640\\nDiscussões mostram que muitos\\nacessaram e estudaram o artigo,\\n\\n22\\n00:03:22,720 --> 00:03:25,250\\nconsiderando como e o que deve\\nestar nele apresentado.\\n\\n23\\n00:03:26,020 --> 00:03:33,310\\nPor último temos o \"Hi\", de Histórico, que também é\\numa aba. Confira quantas pessoas já adicionaram\\n\\n24\\n00:03:33,440 --> 00:03:38,340\\ne removeram informação. Quanto\\nmais contribuidores participando, melhor.\\n\\n25\\n00:03:38,460 --> 00:03:43,080\\nIsso tende a aumentar a credibilidade do artigo.\\n\\n26\\n00:03:44,190 --> 00:03:48,590\\nEssas são as três pequenas dicas: Fo, Di e Hi.\\n\\n27\\n00:03:48,790 --> 00:03:50,340\\nPor favor confira as \\ndicas junto de seus\\n\\n28\\n00:03:50,420 --> 00:03:55,460\\nestudantes para avaliar a credibilidade\\nde um artigo na Wikipédia.\\n\\n29\\n00:03:55,720 --> 00:03:59,780\\nNa Wikimedia Suécia estamos trabalhando\\ncom o programa de educação da Wikipédia\\n\\n30\\n00:03:59,810 --> 00:04:06,020\\nPor favor nos contacte caso esteja\\ncurioso, pensativo ou até mesmo cético!?\\n\\n31\\n00:04:06,400 --> 00:04:10,360\\nQueremos ouvi-lo.\\nO que fazemos é tornar a Wikipédia\\n\\n32\\n00:04:10,460 --> 00:04:18,030\\nacessível, útil e compreensível.\\nNós realmente gostaríamos de te ouvir.\\n\\n33\\n00:04:24,240 --> 00:04:29,300\\nWikipédia na Educação\\n\\n34\\n00:04:32,630 --> 00:04:37,240\\nVocê está de saco cheio da Wikipédia?\\nNão aguenta mais a Wikipédia?\\n\\n35\\n00:04:37,970 --> 00:04:41,440\\nContacte-nos em\\nutbildning@wikimedia.se',\n", + " 'bytes': 3431,\n", + " 'sha1': 'p6pmhuxqia4a5gvgb9562ouubh5avu3',\n", + " 'parent_id': 121342970,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99507234,\n", + " 'timestamp': '2013-07-05T17:16:56Z',\n", + " 'user': {'id': 308377, 'text': 'Ravave'},\n", + " 'page': {'id': 27083870,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:0,700 --> 00:00:4,400\\nHola, em dic Trevor i estic tractant d'elaborar un VisualEditor per a la Wikipedia.\\n\\n2\\n00:00:4,500 --> 00:00:7,100\\nTots poden editar en ella, peró la majoría és sent confosa\\n\\n3\\n00:00:7,100 --> 00:00:11,100\\ndegut a que el códi Wiki pot ressultar prou complexa.\\n\\n4\\n00:00:11,200 --> 00:00:13,900\\nFa dotze anys, cuan la vam crear, va ser al·lucinant,\\n\\n5\\n00:00:14,000 --> 00:00:17,000\\nperó si volem compartir el coneixement amb tothom,\\n\\n6\\n00:00:17,900 --> 00:00:19,000\\nhem de fer-la més accesible a tots\\n\\n7\\n00:00:19,100 --> 00:00:23,000\\nEl VisualEditor es el canvi més important que s'haja fet mai.\\n\\n8\\n00:00:24,000 --> 00:00:27,200\\nSerà com escriure una nota a un paper o manar un e-mail.\\n\\n9\\n00:00:27,100 --> 00:00:28,900\\nEncara te les seues errades,\\n\\n10\\n00:00:29,000 --> 00:00:32,000\\nperó si vols saber com funcionará la Wikipedia en un futur més proper,\\n\\n11\\n00:00:33,000 --> 00:00:34,400\\nObri't un compte (per eixemple) a la Wikipedia en anglés,\\n\\n12\\n00:00:35,000 --> 00:00:38,000\\nVes-hi a preferències i activa la versió Alfa del VisualEditor.\\n\\n13\\n00:00:39,000 --> 00:00:42,100\\nTambé ens pots servir d'ajuda si real·litzes una proba i ens envíes els teus comentaris sobre la ferramenta.\\n\\n14\\n00:00:42,200 --> 00:00:46,000\\nAixina que per favor: uneix-te a nosaltres perque pugam compartir el coneixement humá de la manera més fácil.\",\n", + " 'bytes': 1378,\n", + " 'sha1': 'a4mpv8phkifx0ig9feb60ocy41cq3jv',\n", + " 'parent_id': 99507151,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99565771,\n", + " 'timestamp': '2013-07-06T17:30:01Z',\n", + " 'user': {'id': 2309588, 'text': 'RLuts'},\n", + " 'page': {'id': 27100925,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.uk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with ' 1 00:00:00,800 --> 00:00:03,500 Привіт! Мене звати Тревор, я допомагаю створювати Візуальний редакто...'\",\n", + " 'text': '\\n1\\n00:00:00,800 --> 00:00:03,500\\nПривіт! Мене звати Тревор, я допомагаю створювати Візуальний редактор для Вікіпедії.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nКожен може редагувати Вікіпедію, але у більшість з тих, хто намагається, роблять це невпевнено,\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\nтому що розмітка Вікіпедії важка для сприйняття.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nВона була чудова, коли ми створили її дванадцять років тому,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nале якщо ми збираємось зібрати суму всіх людських знань,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\nми повинні зробити все, щоб люди легко могли ними ділитись.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nВізуальний редактор — це найбільша зміна у Вікіпедії, яку ми коли-небудь робили.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nЗа допомогою нього можна дописувати у Вікіпедію так само легко, як писати у шкільну газету, або відправляти email.\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nВін все ще має невеликі помилки,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nале якщо ви хочете подивитись, як Вікіпедія буде працювати найближчим часом,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\nстворіть обліковий запис у Вікіпедії,\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nувійдіть у ваші налаштування і увімкніть альфа-версію Візуального редактора.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nВи можете також допомогти нам, якщо будете використовувати його та надсилати нам свої відгуки.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nТому, будь ласка, приєднуйтесь до нас, щоб ми могли легше зібрати та ділитись сумою усіх людських знань.',\n", + " 'bytes': 2336,\n", + " 'sha1': 'q25zp3b8npuqc2uul25hd1p4dqjwr1b',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99648230,\n", + " 'timestamp': '2013-07-08T00:20:46Z',\n", + " 'user': {'id': 2754992, 'text': 'আফতাবুজ্জামান'},\n", + " 'page': {'id': 27123783,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.bn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'add 2 new',\n", + " 'text': '\\n1\\n00:00:00,800 --> 00:00:03,500\\nহাই! আমি ট্রেভর, এবং আমি উইকিপিডিয়ার জন্য একটি ভিজ্যুয়ালএডিটর নির্মাণে সাহায্য করছি।\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nযে কেউ উইকিপিডিয়া সম্পাদনা করতে পারে, কিন্তু সবচেয়ে বেশি যারা চেষ্টা করে সহজে বিভ্রান্ত হয়\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\nকারণ উইকিপিডিয়ার পুরাতন কোড বুঝা বেশ কঠিন।\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nবারো বছর আগে এটি অসাধারণ ছিল যখন আমরা এটি তৈরি করেছিলাম,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nকিন্তু যদি আমারা সকলের সকল জ্ঞানের সমষ্টি পেতে চাই,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\nআমদের এটা আরও সহজে ভাগ করেছি।\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nভিজ্যুয়ালএডিটর উইকিপিডিয়ায় করা আমাদের সবচেয়ে বড় পরিবর্তন।\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nএটি বিদ্যালয়ে একটি লেখার কাগজে লেখা বা ইমেইল পাঠানোর মত উইকিপিডিয়াকে লেখারযোগ্য করে তোলে।\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nএটা এখনও একটু ত্রুটিযুক্ত,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nকিন্তু আপনি যদি অদূর ভবিষ্যতে উইকিপিডিয়া কিভাবে কাজ করতে যাচ্ছে তা একবার দেখে নিতে চান তাহলে\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\nইংরেজি উইকিপিডিয়াতে একটি অ্যাকাউন্ট তৈরি করুন।\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nআপনার পছন্দসমূহে যান, এবং ভিজ্যুয়ালএডিটরের আলফা সংস্করণ চালু করুন।\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nএমনকি আপনি এটি ব্যবহার করে আমাদের সাহায্য করতে পারেন, এবং তারপর আমাদের প্রতিক্রিয়া প্রেরণ করতে পারেন।\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nতাই দয়া করে, সকল জ্ঞানের সমষ্টি সহজে ভাগাভাগি করার জন্য আমাদের সঙ্গে যোগদান করুন।\\n\\n15\\n00:00:46,122 --> 00:00:52,000\\nbn.wikipedia.org/wiki/উইকিপিডিয়া:ভিজ্যুয়ালএডিটর\\n\\n16\\n00:00:52,000 --> 00:00:54,000\\nউইকিপিডিয়া',\n", + " 'bytes': 3186,\n", + " 'sha1': 'g32652vgj6e7fdck6xitp7f8x5e9mj2',\n", + " 'parent_id': 99648080,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99991686,\n", + " 'timestamp': '2013-07-14T05:40:09Z',\n", + " 'user': {'id': 2787585, 'text': 'CouvGeek'},\n", + " 'page': {'id': 27127876,\n", + " 'title': 'En-us-North Korea.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': \"Correcting 'China' to 'Korea. In the audio clip, the person said Korea.\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,500\\nNorth Korea',\n", + " 'bytes': 43,\n", + " 'sha1': 'r90b8f7ube8b9ymuujo3uskpp80mxpw',\n", + " 'parent_id': 99651885,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99674454,\n", + " 'timestamp': '2013-07-08T12:13:58Z',\n", + " 'user': {'id': 117597, 'text': 'Saper'},\n", + " 'page': {'id': 27133049,\n", + " 'title': 'AAR214-KSFO-Crash.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'till 2:27',\n", + " 'text': \"1\\n00:00:00,169 --> 00:00:03,283\\nAsiana 214 heavy San Francisco tower, runway 28L cleared to land\\n\\n2\\n00:00:03,330 --> 00:00:04,847\\nAlright cleared to land 28L Asiana 214. (Inaudible)\\n\\n3\\n00:00:04,986 --> 00:00:09,374\\nSkywest 5427, fly runway heading, contact NORCAL departures\\n\\n4\\n00:00:09,559 --> 00:00:11,604\\nFly runway heading go over to departures Skywest 5427 good day.\\n\\n5\\n00:00:12,728 --> 00:00:14,061\\nTower, United 85.\\n\\n6\\n00:00:14,646 --> 00:00:17,033\\nUnited 85 go ahead.\\n\\n7\\n00:00:17,726 --> 00:00:21,747\\nThis is United 85 at the end we might need few more minutes, just a heads up.\\n\\n8\\n00:00:21,747 --> 00:00:25,875\\nUnited 85, roger, hold short of runway 28 left, let me know when you're ready.\\n\\n9\\n00:00:25,875 --> 00:00:27,432\\nHold short of 28 left united 85.\\n\\n10\\n00:00:28,373 --> 00:00:32,547\\nSan Francisco tower, Skywest 5452, quiet bridge visual 28 right.\\n\\n11\\n00:00:32,547 --> 00:00:36,169\\n5452 San Francisco tower, runway 28 right cleared to land.\\n\\n12\\n00:00:36,531 --> 00:00:38,523\\nCleared to land 28 right, Skywest 5452.\\n\\n13\\n00:00:39,016 --> 00:00:40,402\\nHorizon 635 heading 235 ... 600 [background: what happened?]\\n\\n14\\n00:00:41,341 --> 00:00:42,078\\n[noise]\\n\\n15\\n00:00:43,109 --> 00:00:43,463\\n[noise]\\n\\n16\\n00:00:43,849 --> 00:00:46,421\\nSan Francisco tower, Skyhawk 737\\n\\n17\\n00:00:46,421 --> 00:00:47,386\\nGo around\\n\\n18\\n00:00:47,386 --> 00:00:49,701\\n500 feet over San Carlos.\\n\\n19\\n00:00:50,517 --> 00:00:52,979\\nSkywest 6389 maintain 3000\\n\\n20\\n00:00:53,088 --> 00:00:54,739\\n280 3000 Skywest 6389\\n\\n21\\n00:00:55,771 --> 00:00:57,593\\nHello? Asiana 214\\n\\n22\\n00:00:57,840 --> 00:01:00,346\\n214 heavy, emergency vehicles are responding.\\n\\n23\\n00:01:00,746 --> 00:01:01,892\\nAsiana 214!\\n\\n24\\n00:01:02,677 --> 00:01:04,359\\nEmergency ... ing\\n\\n25\\n00:01:04,359 --> 00:01:09,235\\nOkay tower, uh... uh.... [Asiana crew unaudible]\\n\\n26\\n00:01:11,220 --> 00:01:16,764\\nCessna 737ZD, San Francisco tower, remain clear of the San Francisco class bravo airspace, contact San Carlos tower.\\n\\n27\\n00:01:17,596 --> 00:01:21,787\\n7ZD contacting San Carlos tower and remaining clear\\n\\n28\\n00:01:22,803 --> 00:01:28,148\\nHelicopter 3SF leaving the bravo airspace in 2 miles, radar services terminated, squawk, maintain VFR, frequency change approved.\\n\\n29\\n00:01:28,347 --> 00:01:29,779\\n3SF, San Francisco tower.\\n\\n30\\n00:01:31,825 --> 00:01:32,414\\nHorizon 6\\n\\n31\\n00:01:33,106 --> 00:01:34,630\\n[ Asiana crew unaudible]\\n\\n32\\n00:01:35,415 --> 00:01:37,390\\nAsiana 214 heavy, San Francisco tower.\\n\\n33\\n00:01:37,728 --> 00:01:41,836\\nIs there someone ... [ Asiana crew unaudible ] .. uh ...\\n\\n34\\n00:01:42,036 --> 00:01:43,374\\n635 is going around.\\n\\n35\\n00:01:43,590 --> 00:01:46,502\\nHorizon 635, fly heading 265, maintain 3100.\\n\\n36\\n00:01:47,175 --> 00:01:49,162\\n265 3100 Horizon 635\\n\\n37\\n00:01:50,644 --> 00:01:51,920\\n[Asiana crew unaudible]\\n\\n38\\n00:01:52,487 --> 00:01:55,965\\nAsiana 214 heavy, emergency vehicles are responding, is everyone on their way.\\n\\n39\\n00:01:56,502 --> 00:01:57,042\\nOkay.\\n\\n40\\n00:01:57,887 --> 00:02:00,328\\nSkywest 5452. San Francisco tower, go around.\\n\\n41\\n00:02:01,250 --> 00:02:02,515\\nSkywest 5452, copy.\\n\\n42\\n00:02:03,392 --> 00:02:06,663\\nSkywest 5452 fly 280 maintain 3000.\\n\\n43\\n00:02:07,324 --> 00:02:09,933\\n280 3000 Skywest 452.\\n\\n44\\n00:02:09,933 --> 00:02:14,461\\nHorizon 635 fly 265 maintain 3100.\\n\\n45\\n00:02:14,461 --> 00:02:17,532\\nYes it's 265 we're on, Horizon 635.\\n\\n46\\n00:02:17,670 --> 00:02:19,712\\nPlease contact NORCAL departure on 135.1\\n\\n47\\n00:02:19,712 --> 00:02:21,451\\n35.1 Horizon 635\\n\\n48\\n00:02:22,420 --> 00:02:26,369\\nSkywest 5452 contact NORCAL departure on 35.1\\n\\n49\\n00:02:26,369 --> 00:02:27,061\\n35.1\",\n", + " 'bytes': 3582,\n", + " 'sha1': 'nj0up22inyfi8hoz01gpmy1f1mvd7y5',\n", + " 'parent_id': 99668239,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 209544080,\n", + " 'timestamp': '2016-10-12T17:11:01Z',\n", + " 'user': {'id': 2754992, 'text': 'আফতাবুজ্জামান'},\n", + " 'page': {'id': 27144202,\n", + " 'title': 'The Impact Of Wikipedia.webm.bn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nউইকিপিডিয়া অলাভজনক, কিন্তু এটি বিশ্বের #৫ ওয়েবসাইট। উইকিপিডিয়ার সকল নিবন্ধ স্বেচ্ছাসেবকদের দ্বারা লিখিত।\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nআমরা তাদের কয়েকজনকে আপনার সাথে পরিচয় করিয়ে দিতে চাই ...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nআমি নেপাল থেকে এসেছি\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nআমি ইরাক থেকে এসেছি\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nআমি এসেছি ভারত থেকে\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nআমি বাইরাম, নিউ জার্সি থেকে\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nআমি বার্মিংহাম, ইংল্যান্ডে থাকি\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nশিকাগো, ইলিনয় -- লা পাজ, বলিভিয়া -- নাইরোবি, কেনিয়া\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nকুয়ালালামপুর, মালয়েশিয়া -- ইতালির মিলান -- দক্ষিণ আফ্রিকা\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nপোল্যান্ড -- জাপান -- আর্মেনিয়া\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nব্রাজিল -- রাশিয়া -- বতসোয়ানা\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nইসরায়েল -- উজবেকিস্তান -- হংকং\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nইস্তানবুল -- মেক্সিকো\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nচাট্টানুগা, টেনেসি\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nAt the beginning of my joining to Wikipedia in 2008, I started many articles.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nOne of them, I think it was about a lady called Mariam Nour.\\xa0\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nWe didn’t have an article about it, so -- and this was my first article.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nSo I forget about it! \\xa0Maybe two or three years later, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nI passed by this article. \\xa0I was shocked. \\xa0\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMore than 100,000 people read this article. \\xa0\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nThey used it, so they got their information from this article. \\xa0They passed by this article, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nso you feel like you affected and influenced more than 100,000 people.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nI was just so terrified when I pushed the \\'edit\\' button for the first time. \\xa0\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nI thought, “Oh my god, I’m going to ruin everything!\\nThat can’t work! \\xa0I can’t do it!”\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia is an \\'open source\\' -- where everyone can throw in his or her idea \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nand then somebody else comes in and polishes on that idea to make it superb.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nThere are thousands of people working every day, every hour, every minute on Wikipedia to improve it.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nA lot of it is the volunteerism. \\xa0This is a unique way to volunteer.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nIt brings together both professionals and amateurs who have a love for a particular topic.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nThe people who had different opinions in the beginning start to collaborate.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nA lot of what you would assume a large Internet corporation would handle \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nis handled by volunteers like me.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nYou just can’t say, “Okay, I’m right, you’re wrong, this is my version of the article!”\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nIf there’s an issue of bias, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nthen somebody has probably flagged it and if not, now I can flag it too.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nYou’ve got hundreds and thousands of people seeing that \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nand correcting it.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nAnd then I push the button and\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom - The journey started and it was great.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nFirst I started with \\'Probability\\'. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nThe first article I started is \\'Probability\\'.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nOne of my main articles I wrote on Wikipedia was \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nthe article on stab wounds.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nI write about fly fishing, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontana history, National Park history, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nUnderutilized crops. Chess players. Biodiversity.\\xa0\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nMilitary history topics. Armenian history. Roman history.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nJudges. Communication. Biographies. Football.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIreland. Pennsylvania. Mostly photography.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Baking, because I love to bake.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nNuclear weapons and radioactivity, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nand whitewater kayaking.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nThere’s all this information that’s out there that’s kind of scattered\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nand we’re putting it together in one place.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nWe are offering free knowledge for everyone, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nin their own language so they can use it.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nEveryone is benefited by this whether they are rich or poor.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nFor-profit companies have different motivations and different requirements. \\xa0\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nFrom the Wikimedia Foundation, I don’t take a salary and I also don’t even take expenses.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\n\\xa0I think it’s very important that I’m able to say quite clearly, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nLook, when I’m asking you for money, I’m not asking you for money for myself --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nI’m asking you for money for the Foundation which is the team who supports this amazing community that I’m a part of.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nআমি মনে করি উইকিপিডিয়া আমাকে সত্যিই বিশ্বে একটি বিশাল পার্থক্য আনতে এই সুযোগ দিয়েছে।\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nএটি আপনার সন্তানদের ভবিষ্যতের জন্য, আপনার ভবিষ্যতের জন্য একটি বিনিয়োগের মত।\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nআপনাকে ধন্যবাদ\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nThe content contained in this video is available under the Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) unless otherwise stated. This work is attributable to: Victor Grigas, Wikimedia Foundation.\\nThe views and opinions expressed in this video are solely those of the individuals appearing in the video and do not necessarily reflect the policies or positions of any company, organization, or institution the individual may be a member of.\\nThe trademarks and logos of the Wikimedia Foundation and any other organization are not included under the terms of this Creative Commons license. Wikimedia trademarks and logos, including \"Wikipedia\" and the puzzle globe logo, are registered trademarks of the Wikimedia Foundation. For more information, please see our Trademark Policy page,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nএই ভিডিওটি ক্রিয়েটিভ কমন্স লাইসেন্সের আওতায় প্রকাশিত হয়।\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nউইকিপিডিয়ার মত, এটি অনুলিপি, পুনঃমিশ্রণ ও ভাগ করার জন্য উন্মুক্ত।',\n", + " 'bytes': 8389,\n", + " 'sha1': 'gn3t0qr5yl717bpvsa32pp1gm97bbjv',\n", + " 'parent_id': 99687924,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 260984302,\n", + " 'timestamp': '2017-10-02T16:55:14Z',\n", + " 'user': {'id': 2754992, 'text': 'আফতাবুজ্জামান'},\n", + " 'page': {'id': 27164284,\n", + " 'title': 'Bangladesh building collapse - WN.ogv.bn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Aftabuzzaman moved page [[TimedText:Bangladesh building collapse - WN.ogg.bn.srt]] to [[TimedText:Bangladesh building collapse - WN.ogv.bn.srt]]',\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:10,400\\n২০১৩ সালে রানা প্লাজা ধসের পর উদ্ধার অভিযানের কিছু ভিডিও চিত্র।\\n\\n2\\n00:00:10,400 --> 00:00:45,400\\n\\n3\\n00:00:45,400 --> 00:00:58,000\\n২০১৩ সালে রানা প্লাজা ধসের পর উদ্ধার অভিযানের কিছু ভিডিও চিত্র।',\n", + " 'bytes': 438,\n", + " 'sha1': 'ihkpb9ok3d8qhrn5l0h5pgq2iw1h1hh',\n", + " 'parent_id': 99739736,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99800629,\n", + " 'timestamp': '2013-07-10T18:02:33Z',\n", + " 'user': {'text': '188.48.32.41'},\n", + " 'page': {'id': 27185662,\n", + " 'title': 'BergenBelsenHatikva.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,000 --> 00:00:10,400 As long as in the heart, within, 2 00:00:11,000 --> 00:00:19,400 A Jewish soul still yearns, 3 00:00:20,000 --> 00:00:26,400 A...'\",\n", + " 'text': '1\\n00:00:01,000 --> 00:00:10,400\\nAs long as in the heart, within,\\n\\n2\\n00:00:11,000 --> 00:00:19,400\\nA Jewish soul still yearns,\\n\\n3\\n00:00:20,000 --> 00:00:26,400\\nAnd onward, towards the ends of the east,\\n\\n4\\n00:00:27,000 --> 00:00:33,400\\nAn eye still looks toward Zion;\\n\\n5\\n00:00:34,000 --> 00:00:39,400\\nOur hope is not yet lost,\\n\\n6\\n00:00:40,000 --> 00:00:45,400\\nThe ancient hope,\\n\\n7\\n00:00:46,000 --> 00:00:52,400\\nTo return to the land of our fathers,\\n\\n8\\n00:00:53,000 --> 00:00:58,400\\nThe city where David encamped.\\n\\n9\\n00:00:59,000 --> 00:01:03,400\\nOur hope is not yet lost,\\n\\n10\\n00:01:04,000 --> 00:01:08,400\\nThe ancient hope,\\n\\n11\\n00:01:09,000 --> 00:01:14,400\\nTo return to the land of our fathers,\\n\\n12\\n00:01:15,300 --> 00:01:20,400\\nThe city where David encamped.',\n", + " 'bytes': 758,\n", + " 'sha1': '3aqxslgkfd3dbjvizm6bvk3sx9ou5u5',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 607629984,\n", + " 'timestamp': '2021-11-16T19:15:03Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 27229846,\n", + " 'title': 'Wanna Work Together? with subtitles - Creative Commons.ogv.uk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall subtitles update',\n", + " 'text': '1\\n00:00:04,774 --> 00:00:08,105\\nХочете творити колективно?\\n\\n2\\n00:00:10,000 --> 00:00:12,324\\nКоли ви ділитесь своєю творчістю,\\n\\n3\\n00:00:12,342 --> 00:00:14,593\\nви даєте можливість людям з усього світу\\n\\n4\\n00:00:14,710 --> 00:00:16,835\\nвикористовувати її, вивчати її,\\n\\n5\\n00:00:16,855 --> 00:00:19,000\\nнадихатись нею.\\n\\n6\\n00:00:19,193 --> 00:00:20,403\\nНаприклад, вчитель,\\n\\n7\\n00:00:20,463 --> 00:00:24,536\\nякий надихає юні серця, надбаннями\\nлюдства й знаннями зі всього світу,\\n\\n8\\n00:00:24,577 --> 00:00:27,770\\nчи мисткиня, яка вибудовує\\nкрасу з маленьких дрібничок,\\n\\n9\\n00:00:27,881 --> 00:00:29,463\\nякі вона знаходить у мережі.\\n\\n10\\n00:00:29,873 --> 00:00:33,416\\nЧи письменник, чиї оповідання\\nвбирають в себе ідеї та образи,\\n\\n11\\n00:00:33,436 --> 00:00:36,173\\nстворені людьми,\\nяких він ніколи навіть не зустрічав.\\n\\n12\\n00:00:36,399 --> 00:00:39,313\\nУсі ці люди знають: коли ви ділитесь\\nсвоїм творчим багатством,\\n\\n13\\n00:00:39,343 --> 00:00:41,208\\nви можете досягнути нечуваних висот.\\n\\n14\\n00:00:41,244 --> 00:00:45,300\\nЦі люди та мільйони людей по всьому світу\\n\\n15\\n00:00:45,333 --> 00:00:49,774\\nспільно працюють, щоб збудувати\\nбагатшу, кращу, живу культуру,\\n\\n16\\n00:00:49,806 --> 00:00:52,195\\nвикористовуючи Creative Commons.\\n\\n17\\n00:00:53,606 --> 00:00:55,386\\nЩоб зрозуміти Creative Commons,\\n\\n18\\n00:00:55,400 --> 00:00:58,126\\nвам потрібно знати дещо про те,\\nяк працює авторське право.\\n\\n19\\n00:00:58,134 --> 00:01:00,766\\nЧи ви знали, що коли ви\\nщо-небудь створюєте, будь-що,\\n\\n20\\n00:01:00,766 --> 00:01:06,489\\nвід світлини чи пісні\\nдо малюнка, фільму, оповідання,\\n\\n21\\n00:01:06,520 --> 00:01:09,318\\nви автоматично отримуєте\\nабсолютні права на цей твір\\n\\n22\\n00:01:09,358 --> 00:01:10,767\\n(«Всі права застережено»)\\n\\n23\\n00:01:10,812 --> 00:01:11,780\\nЦе правда!\\n\\n24\\n00:01:11,810 --> 00:01:15,346\\nАвторське право захищає вашу творчість від\\nвикористання, на яке ви не дали дозволу.\\n\\n25\\n00:01:15,386 --> 00:01:16,790\\n(* «добропорядного використання»)\\n\\n26\\n00:01:16,830 --> 00:01:19,880\\nАле часом повне авторське право\\nобмежує занадто.\\n\\n27\\n00:01:19,900 --> 00:01:23,270\\nА що, як ви свідомо хочете дозволити\\nцим мільйонам мільйонів людей\\n\\n28\\n00:01:23,309 --> 00:01:24,652\\nвикористовувати ваш твір,\\n\\n29\\n00:01:24,682 --> 00:01:27,316\\nщоб вони не мусили щоразу\\nзвертатись до вас за дозволом?\\n\\n30\\n00:01:27,316 --> 00:01:30,160\\nА що, як ви бажаєте, щоб інші люди\\nмогли ділитись вашим твором,\\n\\n31\\n00:01:30,207 --> 00:01:32,940\\nвикористовували його і створювати\\nна його основі нові твори?\\n\\n32\\n00:01:33,020 --> 00:01:34,572\\nНа щастя, є відповідь:\\n\\n33\\n00:01:34,712 --> 00:01:36,522\\nCreative Commons.\\n\\n34\\n00:01:36,765 --> 00:01:39,608\\nМи надаємо вільні ліцензії,\\nякі ви можете використовувати,\\n\\n35\\n00:01:39,620 --> 00:01:44,162\\nщоб повідомити людям, які саме права\\nви бажаєте передати громадськості.\\n\\n36\\n00:01:44,235 --> 00:01:48,051\\nЦе неважко, це займає\\nлише хвилинку і нічого не коштує.\\n\\n37\\n00:01:48,112 --> 00:01:51,519\\nПросто відкрийте нашу веб-сторінку\\nі дайте відповідь на кілька запитань:\\n\\n38\\n00:01:51,539 --> 00:01:53,922\\n«Чи хотіли б ви дозволити комерційне\\nвикористання вашого твору?»\\n\\n39\\n00:01:53,941 --> 00:01:56,123\\nабо «Чи дозволяєте ви редагувати його?»\\n\\n40\\n00:01:56,172 --> 00:01:57,622\\nНа основі ваших відповідей\\n\\n41\\n00:01:57,659 --> 00:01:59,866\\nми підберемо вам ліцензію,\\nяка чітко означує,\\n\\n42\\n00:01:59,890 --> 00:02:02,927\\nщо інші люди зможуть, а що —\\nне зможуть робити з вашим твором.\\n\\n43\\n00:02:03,000 --> 00:02:07,765\\nВи не відмовляєтесь від авторського права,\\nа «шліфуєте» його так, як вигідно вам.\\n\\n44\\n00:02:08,450 --> 00:02:11,798\\nЛаскаво просимо до нового світу,\\nде панує співпраця між людьми!\\n\\n45\\n00:02:12,000 --> 00:02:14,929\\nКілька років тому його ще не існувало.\\n\\n46\\n00:02:15,000 --> 00:02:19,437\\nАле тепер уже є мільйони й мільйони\\nпісень, малюнків, світлин, відео\\n\\n47\\n00:02:19,475 --> 00:02:24,344\\nта текстів, вільних до розповсюдження,\\nвикористання та реміксування —\\n\\n48\\n00:02:24,405 --> 00:02:25,904\\nбезкоштовно.\\n\\n49\\n00:02:26,197 --> 00:02:27,945\\nХочете творити колективно?\\n\\n50\\n00:02:28,163 --> 00:02:29,707\\nПриєднуйтесь до Спільнот —\\n\\n51\\n00:02:29,734 --> 00:02:31,745\\nТворчих Спільнот (Creative Commons).\\n\\n52\\n00:02:34,547 --> 00:02:36,028\\nКінець\\n\\n53\\n00:02:36,238 --> 00:02:38,270\\nАнімація і дизайн\\nRyan Junell - junell.net\\n\\n54\\n00:02:38,310 --> 00:02:40,430\\nМузика і звук\\nLesser - LSR1.com\\n\\n55\\n00:02:40,470 --> 00:02:42,370\\nДикторка - Sara Kraft\\nkraftpurver.com\\n\\n56\\n00:02:42,400 --> 00:02:44,328\\nСценарій Eric Steuer\\ncreativecommons.org\\n\\n57\\n00:02:44,381 --> 00:02:45,625\\nОсоблива подяка\\n\\n58\\n00:02:57,600 --> 00:03:02,000\\nІ всім, хто підтримує Creative Commons,\\nвеликим і маленьким.\\n\\n59\\n00:03:02,505 --> 00:03:06,539\\nДеякі права застережено',\n", + " 'bytes': 6639,\n", + " 'sha1': '7w0gm15yp7tgw3o8ubumjqa4dofhxhf',\n", + " 'parent_id': 99981679,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99957708,\n", + " 'timestamp': '2013-07-13T16:03:49Z',\n", + " 'user': {'id': 294714, 'text': 'Teles'},\n", + " 'page': {'id': 27232087,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\n1\\n00:00:00,800 --> 00:00:03,500\\nOi! Meu nome é Trevor e estou ajudando a construir o VisualEditor para a Wikipédia.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nQualquer um pode editar a Wikipédia, mas muitos que tentam ficam facilmente confusos\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\ndevido ao antigo código da Wikipédia bastante difícil de compreender.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nFoi incrível quando nós o criamos doze anos atrás,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nmas, se quisermos fornecer a soma de todo conhecimento humano para todos,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\ntemos que transformá-lo em algo fácil de compartilhar.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nVisualEditor é a maior mudança na Wikipédia que já fizemos.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nIsso faz com que escrever na Wikipédia seja parecido com escrever uma tarefa da escola ou enviar um e-mail.\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nAinda existem alguns erros,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nmas, se quiser estar à frente e ver como a Wikipédia funcionará num futuro próximo,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\ncrie uma conta na Wikipédia.\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nVá para suas preferências e ative o VisualEditor.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nPode, inclusive, nos ajudar ao usá-lo e enviar comentários sobre ele.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nPor favor, junte-se a nós para fazer a soma de todo conhecimento humano mais fácil de compartilhar.',\n", + " 'bytes': 1441,\n", + " 'sha1': 'ba2gd3a8s8t4lsdy1c8rg14nnk5if60',\n", + " 'parent_id': 99957604,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99957743,\n", + " 'timestamp': '2013-07-13T16:04:39Z',\n", + " 'user': {'id': 294714, 'text': 'Teles'},\n", + " 'page': {'id': 27232131,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with ' 1 00:00:00,800 --> 00:00:03,500 Oi! Meu nome é Trevor e estou ajudando a construir o VisualEditor para a Wikipédia. 2 00:00:03,505 --> 00:00:07,505 Qualquer...'\",\n", + " 'text': '\\n1\\n00:00:00,800 --> 00:00:03,500\\nOi! Meu nome é Trevor e estou ajudando a construir o VisualEditor para a Wikipédia.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nQualquer um pode editar a Wikipédia, mas muitos que tentam ficam facilmente confusos\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\ndevido ao antigo código da Wikipédia bastante difícil de compreender.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nFoi incrível quando nós o criamos doze anos atrás,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nmas, se quisermos fornecer a soma de todo conhecimento humano para todos,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\ntemos que transformá-lo em algo fácil de compartilhar.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nVisualEditor é a maior mudança na Wikipédia que já fizemos.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nIsso faz com que escrever na Wikipédia seja parecido com escrever uma tarefa da escola ou enviar um e-mail.\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nAinda existem alguns erros,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nmas, se quiser estar à frente e ver como a Wikipédia funcionará num futuro próximo,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\ncrie uma conta na Wikipédia.\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nVá para suas preferências e ative o VisualEditor.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nPode, inclusive, nos ajudar ao usá-lo e enviar comentários sobre ele.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nPor favor, junte-se a nós para fazer a soma de todo conhecimento humano mais fácil de compartilhar.',\n", + " 'bytes': 1441,\n", + " 'sha1': 'ba2gd3a8s8t4lsdy1c8rg14nnk5if60',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100061386,\n", + " 'timestamp': '2013-07-15T13:19:03Z',\n", + " 'user': {'id': 2742126, 'text': 'Jan Ainali (WMSE)'},\n", + " 'page': {'id': 27264020,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,270 --> 00:00:10,230 维基百科,是一个可靠的资源吗? 2 00:00:14,810 --> 00:00:19,650 我亲爱的同学们,谢谢愉快的一周...'\",\n", + " 'text': '1 \\n00:00:01,270 --> 00:00:10,230 \\n维基百科,是一个可靠的资源吗?\\n\\n2 \\n00:00:14,810 --> 00:00:19,650 \\n我亲爱的同学们,谢谢愉快的一周。\\n在你们离开前,剖析\\n\\n3 \\n00:00:19,720 --> 00:00:25,870 \\n社会从禁欲者的角度。\\n475页,星期一上交。\\n\\n4 \\n00:00:26,330 --> 00:00:29,220 \\n祝你们有个愉快的周末, \\n谢谢! \\n\\n5 \\n00:00:47,560 --> 00:00:51,760 \\n你是我最爱的学生,谢谢你! \\n\\n6 \\n00:00:57,270 --> 00:00:58,820 \\n下周一 \\n\\n7 \\n00:01:12,660 --> 00:01:21,950 \\n我告诉过你维基百科不是一个可靠的资源,\\n出去,出去!滚出我的房间! \\n\\n8 \\n00:01:38,750 --> 00:01:52,740 \\n你也这样?我非常的失望,出去,出去! \\n\\n9 \\n00:01:59,420 --> 00:02:06,960 \\n我非常的生气,非常生气。 \\n真是气死我了。。。 \\n\\n10 \\n00:02:19,160 --> 00:02:25,930 \\n你能认清你自己吗?你并不是一个人。\\n维基百科是瑞典排名第六 \\n\\n11 \\n00:02:26,060 --> 00:02:31,740 \\n被访问的最多的网页,所以机会是非常大的\\n你的学生去那找一些 \\n\\n12 \\n00:02:31,860 --> 00:02:37,690 \\n真实可靠的信息。也许作为教育者的你\\n也可以这样做呢? \\n\\n13 \\n00:02:38,220 --> 00:02:42,120 \\n但是我们怎么知道维基百科上的文章\\n是可靠的呢? \\n\\n14 \\n00:02:42,530 --> 00:02:49,940 \\n我给你三点建议。它们是\\nSo, Ta and Hi. \\n\\n15 \\n00:02:50,890 --> 00:02:54,860 \\nSo,是英文的资源。他们存在\\n维基百科里文章的最底端。 \\n\\n16 \\n00:02:55,760 --> 00:02:59,700 \\n去看看有多少资源,如果你认为他们是很好的资源。 \\n\\n17 \\n00:02:59,980 --> 00:03:02,960 \\n点进去\\n看看你会被链接到哪里。 \\n\\n18 \\n00:03:03,800 --> 00:03:10,630 \\n第二个是Ta,英文中的讨论。\\n每个文章都有一个标签按钮,进去看看 \\n\\n19 \\n00:03:10,710 --> 00:03:14,580 \\n人们在谈些什么。是不是\\n有些人在自言自语些什么东西?如果是, \\n\\n20 \\n00:03:14,690 --> 00:03:18,850 \\n它通常是一些关于内容和结构的。\\n如果关于文章有个讨论, \\n\\n21 \\n00:03:18,920 --> 00:03:22,640 \\n它通常会使文章变得更好。它证明了\\n有很多人看过文章并且研究了 \\n\\n22 \\n00:03:22,720 --> 00:03:25,250 \\n考虑了文章里有什么,\\n文章看起来怎么样。 \\n\\n23 \\n00:03:26,020 --> 00:03:33,310 \\n最后一个是Hi,是历史。也有一个标签按钮。\\n去看看有多少人添加过信息 \\n\\n24 \\n00:03:33,440 --> 00:03:38,340 \\n有多少人删除过信息。\\n越多人为文章做贡献 \\n\\n25 \\n00:03:38,460 --> 00:03:43,080 \\n参加讨论,文章就会越好。 \\n它会使一个文章更加可信。 \\n\\n26 \\n00:03:44,190 --> 00:03:48,590 \\n以上就是简单的三点建议,资源,讨论和历史 \\n\\n27 \\n00:03:48,790 --> 00:03:50,340 \\n请一起和你的学生看看以上三点 \\n\\n28 \\n00:03:50,420 --> 00:03:55,460 \\n来评价在维基百科上的文章\\n是否可信的。 \\n\\n29 \\n00:03:55,720 --> 00:03:59,780 \\n瑞典维基百科,我们也正在做着\\n一个教育项目—维基百科教育 \\n\\n30 \\n00:03:59,810 --> 00:04:06,020 \\n请让我们知道是否你对它\\n感到好奇,有一些想法或者是有些怀疑? \\n\\n31 \\n00:04:06,400 --> 00:04:10,360 \\n我们希望听到你们的意见。 \\n我们所做的,是让维基百科 \\n\\n32 \\n00:04:10,460 --> 00:04:18,030 \\n易接近的,有用的和易理解的, \\n我们真心希望能得到你们的宝贵意见。 \\n\\n33 \\n00:04:24,240 --> 00:04:29,300 \\n维基百科教育 \\n\\n34 \\n00:04:32,630 --> 00:04:37,240 \\n你已经厌倦了维基百科吗? \\n你还没有从维基百科得到足够的信息吗? \\n\\n35 \\n00:04:37,970 --> 00:04:41,440 \\n联系我们 \\nutbildning@wikimedia.se',\n", + " 'bytes': 3624,\n", + " 'sha1': 'lehqxkjpqt961nj45met1la93jqw5zk',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100298237,\n", + " 'timestamp': '2013-07-19T17:08:13Z',\n", + " 'user': {'id': 20772, 'text': 'Continent'},\n", + " 'page': {'id': 27264975,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '誤字訂正',\n", + " 'text': '\\n1\\n00:00:00,800 --> 00:00:03,500\\nこんにちは、私はトレヴァーといいます\\nウィキペディアのビジュアルエディター開発に携わっています。\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nウィキペディアは誰もが編集できます\\nでも、やってみるとよく分からないと感じる人は多いです\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\nウィキペディアのこれまでの書き方がとても理解しづらいからです\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\n12年前にできたときには良かったんですが\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\n人類が集めたあらゆる知識がすべての人に届くようにしたいなら\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\n送り出すやり方を簡単にしないといけません\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nビジュアルエディターはウィキペディアに対してこれまで行われたうちで最大の変化です\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nこれを使ってウィキペディアに書くと、課題レポートを書いたりメールを送ったりするのと同じようにできます\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nまだ少し不具合もありますが\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nもしウィキペディアが近い将来どうなるかを先取りしてみたいなら\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\n英語版ウィキペディアでアカウントを作って\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\n個人設定に行って、ビジュアルエディターのアルファ版を有効にしてください\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nこれを使った感想や意見を送ってもらえると助かります\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\n私たちといっしょに、人類が集めたあらゆる知識を簡単に送り出せるようにしましょう',\n", + " 'bytes': 1801,\n", + " 'sha1': '6w06hnxshwn9x1u7fdyxdr1nubikdvk',\n", + " 'parent_id': 100064650,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100093375,\n", + " 'timestamp': '2013-07-16T01:50:58Z',\n", + " 'user': {'id': 117688, 'text': 'Billytanghh'},\n", + " 'page': {'id': 27272702,\n", + " 'title': 'Majulah Singapura.ogg.ms.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:04,000 --> 00:00:08,000 Mari kita rakyat Singapura 2 00:00:08,000 --> 00:00:14,000 sama-sama menuju bahagia; 3 00:00:14,000 --> 00:00:20,000 Cita-cita...'\",\n", + " 'text': '1\\n00:00:04,000 --> 00:00:08,000\\nMari kita rakyat Singapura\\n\\n2\\n00:00:08,000 --> 00:00:14,000\\nsama-sama menuju bahagia;\\n\\n3\\n00:00:14,000 --> 00:00:20,000\\nCita-cita kita yang mulia,\\n\\n4\\n00:00:20,000 --> 00:00:24,000\\nberjaya Singapura.\\n\\n5\\n00:00:24,000 --> 00:00:29,000\\nMarilah kita bersatu\\n\\n6\\n00:00:29,000 --> 00:00:34,000\\ndengan semangat yang baru;\\n\\n7\\n00:00:34,000 --> 00:00:40,000\\nSemua kita berseru,\\n\\n8\\n00:00:40,000 --> 00:00:45,000\\nMajulah Singapura,\\n\\n9\\n00:00:45,000 --> 00:00:49,000\\nMajulah Singapura!\\n\\n10\\n00:00:49,000 --> 00:00:54,000\\nMarilah kita bersatu\\n\\n11\\n00:00:54,000 --> 00:00:59,000\\ndengan semangat yang baru;\\n\\n12\\n00:00:59,000 --> 00:01:05,000\\nSemua kita berseru,\\n\\n13\\n00:01:05,000 --> 00:01:10,000\\nMajulah Singapura,\\n\\n14\\n00:01:10,000 --> 00:01:17,000\\nMajulah Singapura!',\n", + " 'bytes': 776,\n", + " 'sha1': '3jfk5cxv1bl0aw555bkawv2t0bsf6g9',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 376799534,\n", + " 'timestamp': '2019-11-21T10:49:19Z',\n", + " 'user': {'id': 2073340, 'text': 'Jdx'},\n", + " 'page': {'id': 27272737,\n", + " 'title': 'Majulah Singapura.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/139.218.96.19|139.218.96.19]] ([[User talk:139.218.96.19|talk]]) to last revision by Billytanghh',\n", + " 'text': '1\\n00:00:04,000 --> 00:00:08,000\\nCome, fellow Singaporeans\\n\\n2\\n00:00:08,000 --> 00:00:14,000\\nLet us progress towards happiness together\\n\\n3\\n00:00:14,000 --> 00:00:20,000\\nMay our noble aspiration bring\\n\\n4\\n00:00:20,000 --> 00:00:24,000\\nSingapore success\\n\\n5\\n00:00:24,000 --> 00:00:29,000\\nCome, let us unite\\n\\n6\\n00:00:29,000 --> 00:00:34,000\\nIn a new spirit\\n\\n7\\n00:00:34,000 --> 00:00:40,000\\nTogether we proclaim\\n\\n8\\n00:00:40,000 --> 00:00:45,000\\nOnward Singapore\\n\\n9\\n00:00:45,000 --> 00:00:49,000\\nOnward Singapore\\n\\n10\\n00:00:49,000 --> 00:00:54,000\\nCome, let us unite\\n\\n11\\n00:00:54,000 --> 00:00:59,000\\nIn a new spirit\\n\\n12\\n00:00:59,000 --> 00:01:05,000\\nTogether we proclaim\\n\\n13\\n00:01:05,000 --> 00:01:10,000\\nOnward Singapore\\n\\n14\\n00:01:10,000 --> 00:01:17,000\\nOnward Singapore',\n", + " 'bytes': 763,\n", + " 'sha1': 'bsepot0lhfxrrcclr8glbbyhq8ueri8',\n", + " 'parent_id': 371477314,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100093656,\n", + " 'timestamp': '2013-07-16T02:00:36Z',\n", + " 'user': {'id': 117688, 'text': 'Billytanghh'},\n", + " 'page': {'id': 27272768,\n", + " 'title': 'Majulah Singapura.ogg.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:04,000 --> 00:00:08,000 来吧,新加坡人民, 2 00:00:08,000 --> 00:00:14,000 让我们共同向幸福迈进; 3 00:00:14,000 --> 00:00:20,000 ...'\",\n", + " 'text': '1\\n00:00:04,000 --> 00:00:08,000\\n来吧,新加坡人民,\\n\\n2\\n00:00:08,000 --> 00:00:14,000\\n让我们共同向幸福迈进;\\n\\n3\\n00:00:14,000 --> 00:00:20,000\\n我们崇高的理想,\\n\\n4\\n00:00:20,000 --> 00:00:24,000\\n要使新加坡成功。\\n\\n5\\n00:00:24,000 --> 00:00:29,000\\n来吧,让我们以新的精神,\\n\\n6\\n00:00:29,000 --> 00:00:34,000\\n团结在一起;\\n\\n7\\n00:00:34,000 --> 00:00:40,000\\n我们齐声欢呼:\\n\\n8\\n00:00:40,000 --> 00:00:45,000\\n前进吧,新加坡!\\n\\n9\\n00:00:45,000 --> 00:00:49,000\\n前进吧,新加坡!\\n\\n10\\n00:00:49,000 --> 00:00:54,000\\n来吧,让我们以新的精神,\\n\\n11\\n00:00:54,000 --> 00:00:59,000\\n团结在一起;\\n\\n12\\n00:00:59,000 --> 00:01:05,000\\n我们齐声欢呼:\\n\\n13\\n00:01:05,000 --> 00:01:10,000\\n前进吧,新加坡!\\n\\n14\\n00:01:10,000 --> 00:01:17,000\\n前进吧,新加坡!',\n", + " 'bytes': 833,\n", + " 'sha1': '39gpj4iajct3lo9g6acf8ce2uv26crc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100093711,\n", + " 'timestamp': '2013-07-16T02:03:58Z',\n", + " 'user': {'id': 117688, 'text': 'Billytanghh'},\n", + " 'page': {'id': 27272781,\n", + " 'title': 'Majulah Singapura.ogg.ta.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:04,000 --> 00:00:08,000 சிங்கப்பூர் மக்கள் நாம் 2 00:00:08,000 --> 00:00:14,000 செல்வொம் ம...'\",\n", + " 'text': '1\\n00:00:04,000 --> 00:00:08,000\\nசிங்கப்பூர் மக்கள் நாம்\\n\\n2\\n00:00:08,000 --> 00:00:14,000\\nசெல்வொம் மகிழ்வை நோக்கியே\\n\\n3\\n00:00:14,000 --> 00:00:20,000\\nசிங்கப்பூரின் வெற்றிதான்\\n\\n4\\n00:00:20,000 --> 00:00:24,000\\nசிறந்த நம் நாட்டமே\\n\\n5\\n00:00:24,000 --> 00:00:29,000\\nஒன்றிணைவோம் அனைவரும்\\n\\n6\\n00:00:29,000 --> 00:00:34,000\\nஓங்கிடும் புத்துணர்வுடன்\\n\\n7\\n00:00:34,000 --> 00:00:40,000\\nமுழுங்குவோம் ஒன்றித்தே\\n\\n8\\n00:00:40,000 --> 00:00:45,000\\nமுன்னேறட்டும் சிங்கப்பூர்\\n\\n9\\n00:00:45,000 --> 00:00:49,000\\nமுன்னேறட்டும் சிங்கப்பூர்\\n\\n10\\n00:00:49,000 --> 00:00:54,000\\nஒன்றிணைவோம் அனைவரும்\\n\\n11\\n00:00:54,000 --> 00:00:59,000\\nஓங்கிடும் புத்துணர்வுடன்\\n\\n12\\n00:00:59,000 --> 00:01:05,000\\nமுழுங்குவோம் ஒன்றித்தே\\n\\n13\\n00:01:05,000 --> 00:01:10,000\\nமுன்னேறட்டும் சிங்கப்பூர்\\n\\n14\\n00:01:10,000 --> 00:01:17,000\\nமுன்னேறட்டும் சிங்கப்பூர்',\n", + " 'bytes': 1411,\n", + " 'sha1': 'rzi59wdv6oynfy3f6bijzgfof8370vx',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 644169345,\n", + " 'timestamp': '2022-03-26T09:25:14Z',\n", + " 'user': {'id': 10962988, 'text': 'Endwise'},\n", + " 'page': {'id': 27275729,\n", + " 'title': 'Trayvon Martin Shooting Call1.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Minor corrections',\n", + " 'text': \"0\\n00:00:00,130 --> 00:00:05,939\\nDispatcher: Sanford Police Department. ...\\nZimmerman: Hey, we've had some break-ins in\\n\\n1\\n00:00:05,940 --> 00:00:12,490\\nmy neighborhood, and there's a real suspicious\\nguy, uh, [near] Retreat View Circle. Um, the\\n\\n2\\n00:00:12,490 --> 00:00:19,220\\nbest address I can give you is 111 Retreat\\nView Circle. This guy looks like he's up to\\n\\n3\\n00:00:19,220 --> 00:00:24,659\\nno good, or he's on drugs or something. It's\\nraining and he's just walking around, looking\\n\\n4\\n00:00:24,659 --> 00:00:27,589\\nabout.\\nDispatcher: Okay, and this guy is he white,\\n\\n5\\n00:00:27,589 --> 00:00:29,749\\nblack, or Hispanic?\\nZimmerman: He looks black.\\n\\n6\\n00:00:29,749 --> 00:00:34,940\\nDispatcher: Did you see what he was wearing?\\nZimmerman: Yeah. A dark hoodie, like a grey\\n\\n7\\n00:00:34,940 --> 00:00:41,940\\nhoodie, and either jeans or sweatpants and\\nwhite tennis shoes. He's, I don't know,\\n\\n8\\n00:00:42,090 --> 00:00:44,990\\nhe was just staring...\\nDispatcher: Okay, he's just walking around\\n\\n9\\n00:00:44,990 --> 00:00:46,040\\nthe area...\\nZimmerman: ...looking at all the houses.\\n\\n10\\n00:00:46,040 --> 00:00:49,150\\nDispatcher: Okay...\\nZimmerman: Now he's just staring at me.\\n\\n11\\n00:00:49,150 --> 00:00:52,410\\nDispatcher: Okay. You said it's 1111 Retreat\\nView? Or 111?\\n\\n12\\n00:00:52,410 --> 00:00:55,180\\nZimmerman: That's the clubhouse...\\nDispatcher: That's the clubhouse. Do you know\\n\\n13\\n00:00:55,180 --> 00:01:00,190\\nwhat the—he's near the clubhouse right now?\\nZimmerman: Yeah, now he's coming towards me.\\n\\n14\\n00:01:00,190 --> 00:01:07,190\\nDispatcher: Okay.\\nZimmerman: He's got his hand in his waistband.\\n\\n15\\n00:01:08,390 --> 00:01:11,149\\nAnd he's a black male.\\nDispatcher: How old would you say he looks?\\n\\n16\\n00:01:11,149 --> 00:01:13,819\\nZimmerman: He's got a button on his shirt.\\nLate teens.\\n\\n17\\n00:01:13,819 --> 00:01:20,819\\nDispatcher: Late teens. Okay.\\nZimmerman: Something's wrong with him. Yup,\\n\\n18\\n00:01:21,729 --> 00:01:23,179\\nhe's coming to check me out. He's got something\\nin his hands. I don't know what his deal is.\\n\\n19\\n00:01:23,179 --> 00:01:25,069\\nDispatcher: Okay, just let me know if he does anything,\\nokay?\\n\\n20\\n00:01:25,069 --> 00:01:29,130\\nZimmerman: How long until you get an officer\\nover here?\\n\\n21\\n00:01:29,130 --> 00:01:36,130\\nDispatcher: Yeah, we've got someone on the\\nway. Just let me know if this guy does anything\\n\\n22\\n00:01:36,929 --> 00:01:43,090\\nelse.\\nZimmerman: Okay. These assholes, they always\\n\\n23\\n00:01:43,090 --> 00:01:50,090\\nget away. When you come to the clubhouse,\\nyou come straight in and make a left. Actually,\\n\\n24\\n00:01:51,880 --> 00:01:56,149\\nyou would go past the clubhouse.\\nDispatcher: So it's on the left-hand side from\\n\\n25\\n00:01:56,149 --> 00:01:59,899\\nthe clubhouse?\\nZimmerman: No, you go in straight through\\n\\n26\\n00:01:59,899 --> 00:02:06,849\\nthe entrance and then you make a left...uh,\\nyou go straight in, don't turn, and make a\\n\\n27\\n00:02:06,849 --> 00:02:10,789\\nleft. Shit, he's running.\\nDispatcher: He's running? Which way is he\\n\\n28\\n00:02:10,789 --> 00:02:13,609\\nrunning?\\nZimmerman: Down towards the other entrance\\n\\n29\\n00:02:13,610 --> 00:02:16,250\\nto the neighborhood.\\nDispatcher: Which entrance is that that he's\\n\\n30\\n00:02:16,250 --> 00:02:18,740\\nheading towards?\\nZimmerman: The back entrance...fucking [disputed/unintelligible]\\n\\n31\\n00:02:18,740 --> 00:02:21,940\\nDispatcher: Are you following him?\\nZimmerman: Yeah.\\n\\n32\\n00:02:21,940 --> 00:02:26,859\\nDispatcher: Okay, we don't need you to do\\nthat.\\n\\n33\\n00:02:26,860 --> 00:02:33,310\\nZimmerman: Okay.\\nDispatcher: All right, sir, what is your name?\\n\\n34\\n00:02:33,310 --> 00:02:39,120\\nZimmerman: George...He ran.\\nDispatcher: All right, George, what's your\\n\\n35\\n00:02:39,120 --> 00:02:41,700\\nlast name?\\nZimmerman: Zimmerman.\\n\\n36\\n00:02:41,700 --> 00:02:45,829\\nDispatcher: And George, what's the phone number\\nyou're calling from?\\n\\n37\\n00:02:45,830 --> 00:02:48,300\\nZimmerman: [redacted]\\nDispatcher: All right, George, we do have\\n\\n38\\n00:02:48,300 --> 00:02:55,300\\nthem on the way. Do you want to meet with\\nthe officer when they get out there?\\n\\n39\\n00:02:55,940 --> 00:02:58,870\\nZimmerman: Yeah.\\nDispatcher: Alright, where you going to meet\\n\\n40\\n00:02:58,870 --> 00:03:03,010\\nwith them at?\\nZimmerman: If they come in through the gate,\\n\\n41\\n00:03:03,010 --> 00:03:10,010\\ntell them to go straight past the club house,\\nand uh, straight past the club house and make\\n\\n42\\n00:03:12,760 --> 00:03:18,420\\na left, and then they go past the mailboxes,\\nyou'll see my truck...[unintelligible]\\n\\n43\\n00:03:18,420 --> 00:03:22,119\\nDispatcher: What address are you parked in\\nfront of?\\n\\n44\\n00:03:22,120 --> 00:03:25,490\\nZimmerman: I don't know. It's a cut through\\nso I don't know the address.\\n\\n45\\n00:03:25,490 --> 00:03:29,100\\nDispatcher: Okay. Do you live in the area?\\nZimmerman: Yeah, I...[unintelligible]\\n\\n46\\n00:03:29,100 --> 00:03:35,680\\nDispatcher: What's your apartment number?\\nZimmerman: It's a home. It's 1950, Oh, crap.\\n\\n47\\n00:03:35,680 --> 00:03:38,660\\nI don't want to give it all out. I don't know\\nwhere this kid is.\\n\\n48\\n00:03:38,660 --> 00:03:41,530\\nDispatcher: Okay. Do you want to just meet\\nwith them right near the mailboxes then?\\n\\n49\\n00:03:41,530 --> 00:03:46,060\\nZimmerman: Yeah, that's fine.\\nDispatcher: All right, George. I'll let them\\n\\n50\\n00:03:46,060 --> 00:03:49,460\\nknow to meet you around there okay?\\nZimmerman: Actually, could you have them call\\n\\n51\\n00:03:49,460 --> 00:03:52,670\\nme and I'll tell them where I'm at?\\nDispatcher: Okay, yeah. That's no problem.\\n\\n52\\n00:03:52,670 --> 00:03:54,709\\nZimmerman: Should I give you my number or\\nyou got it?\\n\\n53\\n00:03:54,710 --> 00:03:57,450\\nDispatcher: Yeah, I got it [redacted]\\nZimmerman: Yeah, you got it.\\n\\n54\\n00:03:57,450 --> 00:04:02,480\\nDispatcher: Okay. No problem. I'll let them\\nknow to call you when they're in the area.\\n\\n55\\n00:04:02,480 --> 00:04:03,629\\nZimmerman: Thanks.\\nDispatcher: You're welcome.\",\n", + " 'bytes': 5836,\n", + " 'sha1': 'r8b429qf39g2bchmk3u3f97umi31s79',\n", + " 'parent_id': 154293812,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100149717,\n", + " 'timestamp': '2013-07-17T04:28:43Z',\n", + " 'user': {'text': '216.229.136.201'},\n", + " 'page': {'id': 27288684,\n", + " 'title': 'Unterstützen Sie Wikipedia.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'This is a translation in progress',\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,00\\nMy favorite word in Wikipedia? *Pfff.\\n\\n2\\n00:00:05,001 --> 00:00:09,00\\nESM – Europäischer Stabilitätsmechanismus\\n\\n3\\n00:00:09,001 --> 00:00:11,00\\nKoboldmakis\\n\\n4\\n00:00:11,001 --> 00:00:12,00\\nFukushima\\n\\n5\\n00:00:12,001 --> 00:00:14,00\\nUh! Lightfield Camera\\n\\n6\\n00:00:14,001 --> 00:00:16,00\\nPolymerase-Kettenreaktion\\n\\n7\\n00:00:16,001 --> 00:00:18,00\\nFußwurzelarthrose\\n\\n8\\n00:00:18,001 --> 00:00:20,00\\nWusste ich besser Bescheid als mein Hausarzt\\n\\n9\\n00:00:20,001 --> 00:00:24,00\\nDann ist man bei Fiskalpakt, bei Rettungsschirm\\n\\n10\\n00:00:24,001 --> 00:00:26,00\\nund am Ende ist man selber Experte\\n\\n11\\n00:00:26,001 --> 00:00:28,00\\nKaffeklatsch\\n\\n12\\n00:00:28,001 --> 00:00:30,00\\nIndigo-Kinder\\n\\n13\\n00:00:30,001 --> 00:00:31,00\\nAserbaidschan\\n\\n14\\n00:00:31,001 --> 00:00:33,30\\nIst halt so ein kleines *pff Ding\\n\\n15\\n00:00:33,301 --> 00:00:35,00\\nSocial Entrepreneur\\n\\n16\\n00:00:35,001 --> 00:00:38,30\\nMeine Eltern mussten nachschlagen, aber jetzt wissen sie, was ich tue\\n\\n17\\n00:00:38,301 --> 00:00:41,00\\nIch wusste gleich, dass mein Kind etwas Besonderes ist\\n\\n18\\n00:00:41,001 --> 00:00:44,00\\nVor allem hätte die Dimension gar nicht in eine Zeitung gepasst\\n\\n19\\n00:00:44,001 --> 00:00:47,00\\nWenn ich unterwegs bin, was wissen möchte, möchte ich es sofort wissen\\n\\n20\\n00:00:47,001 --> 00:00:51,00\\nBevor ich Fachliteratur kaufe, hol ich mir hier erst mal ein großen Überblick\\n\\n21\\n00:00:51,001 --> 00:00:53,00\\nHat mir beim Studium sehr geholfen\\n\\n22\\n00:00:53,001 --> 00:00:55,00\\nTut mir leid, mir fällt nichts ein.\\n\\n23\\n00:00:55,000 --> 00:00:58,00\\nIch benutze es jeden Tag. Es ist wie Frühstücken und Zähneputzen.\\n\\n24\\n00:00:58,001 --> 00:01:02,00\\nMal ehrlich. Können Sie sich eine Welt ohne Wikipedia vorstellen? \\n\\n25\\n00:01:03,001 --> 00:01:06,00\\nAlso, ich kann das nicht. Wikipedia ist so wichtig für uns alle. \\n\\n26\\n00:01:06,001 --> 00:01:08,00\\nWikipedia hilft uns, wenn wir Informationen brauchen. \\n\\n27\\n00:01:08,001 --> 00:01:12,00\\nHilft uns, wenn wir Wissen suchen. Aber Wikipedia ist nicht selbstverständlich. \\n\\n28\\n00:01:12,001 --> 00:01:17,00\\nWikipedia ist getragen von ehrenamtlichen, aber wir haben Kosten. \\n\\n29\\n00:01:17,001 --> 00:01:22,00\\nFür den Betrieb der Webseite, für die Entwicklung der Software, für Programme, rund um die Förderung Freien Wissens.\\n\\n30\\n00:01:22,001 --> 00:01:29,00\\nEbay nimmt Gebühren. Google und Facebook schalten Werbung. Warum macht das eigentlich Wikipedia nicht?\\n\\n31\\n00:01:29,001 --> 00:01:33,00\\nWir finanzieren uns über Spenden. Leser spenden für Wikipedia. Leser, wie sie. \\n\\n32\\n00:01:33,001 --> 00:01:38,00\\nUnd deswegen bitte ich sie heute, um ihre Spende für Wikipedia. \\n\\n33\\n00:01:38,001 --> 00:01:41,00\\nSorgen sie dafür, dass Wikipedia auch in Zukunft für uns da ist. \\n\\n34\\n00:01:41,001 --> 00:01:43,00\\nSeien sie jetzt für Wikipedia da. \\n\\n35\\n00:01:43,001 --> 00:01:45,00\\nDankeschön.\\n\\n35\\n00:01:45,001 --> 00:01:47,00\\n*Wikipedia soll kostenlos und unabhängig bleiben. Helfen sie mit.',\n", + " 'bytes': 2954,\n", + " 'sha1': '9ph4kd7q76oveqw4kjled02fdnfxecb',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100171096,\n", + " 'timestamp': '2013-07-17T14:11:10Z',\n", + " 'user': {'text': '190.64.10.68'},\n", + " 'page': {'id': 27295321,\n", + " 'title': 'United States Navy Band - National Anthem of Uruguay (complete).ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:58,000 --> 00:01:01,800\\nOrientales, la Patria o la tumba\\n\\n2\\n00:01:02,000 --> 00:01:05,200\\nLibertad, o con gloria morir!\\n\\n3\\n00:01:05,400 --> 00:01:08,400\\nOrientales, la Patria o la tumba\\n\\n4\\n00:01:08,600 --> 00:01:11,800\\nLibertad, o con gloria morir!\\n\\n5\\n00:01:12,000 --> 00:01:15,200\\nEs el voto que el alma pronuncia\\n\\n6\\n00:01:15,400 --> 00:01:18,200\\nY que heroicos, sabremos cumplir\\n\\n7\\n00:01:18,400 --> 00:01:21,200\\nEs el voto que el alma pronuncia\\n\\n8\\n00:01:21,400 --> 00:01:25,000\\nY que heroicos, sabremos cumplir!\\n\\n9\\n00:01:25,400 --> 00:01:28,600\\n¡Que sabremos cumplir!\\n\\n10\\n00:01:28,800 --> 00:01:31,600\\nEs el voto que el alma pronuncia\\n\\n11\\n00:01:31,800 --> 00:01:35,000\\nY que heroicos, sabremos cumplir!\\n\\n12\\n00:01:35,400 --> 00:01:38,600\\n¡Que sabremos cumplir!\\n\\n13\\n00:01:39,400 --> 00:01:42,600\\n¡Sabremos cumplir!\\n\\n14\\n00:01:43,200 --> 00:01:49,600\\n¡Sabremos cumplir! ¡Sabremos cumplir!',\n", + " 'bytes': 899,\n", + " 'sha1': '9g1x6vgpl52icyoytjexlfgm0r82eo1',\n", + " 'parent_id': 100170940,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 682867614,\n", + " 'timestamp': '2022-08-16T14:24:09Z',\n", + " 'user': {'text': '115.164.204.129'},\n", + " 'page': {'id': 27295682,\n", + " 'title': 'Negaraku instrumental.ogg.ms.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '.Saya di talian berikut merupakan maklumat .lanjut mengenai perkara tersebut melui .akiah yang tang dalam negeri koperasi ini .sagsat di si amalan kita semua dapat .sambutan hangat pergerauan oleheg .Gurgoer_',\n", + " 'text': '1\\n00:00:08,000 --muralimegarmutu19741641030> 00:00:12,000\\nNegaraku,\\n\\n2\\n00:00:13,000 --> 00:00:19,000\\nTanah tumpahnya darahku,\\n\\n3\\n00:00:20,000 --> 00:00:30,000\\nRakyat hidup, bersatu dan maju,\\n\\n4\\n00:00:32,000 --> 00:00:43,000\\nRahmat bahagia, Tuhan kurniakan,\\n\\n5\\n00:00:44,000 --> 00:00:55,000\\nRaja kita, Selamat bertakhta!\\n\\n6\\n00:00:56,000 --> 00:01:06,000\\nRahmat bahagia, Tuhan kurniakan,\\n\\n7\\n00:01:08,000 --> 00:01:20,000\\nRaja kita, Selamat bertakhta!',\n", + " 'bytes': 448,\n", + " 'sha1': 'hpy1xnox41teq55lbdp16vodz56it1i',\n", + " 'parent_id': 562860502,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100189850,\n", + " 'timestamp': '2013-07-17T21:36:32Z',\n", + " 'user': {'id': 240842, 'text': 'Jean-Frédéric'},\n", + " 'page': {'id': 27302719,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Hop!',\n", + " 'text': '1\\n00:00:01,270 --> 00:00:10,230\\nWikipédia, une source fiable ?\\n\\n2\\n00:00:14,810 --> 00:00:19,650\\nEh bien, mes chers élèves, merci pour cette charmante semaine.\\nAvant de partir, la société\\n\\n3\\n00:00:19,720 --> 00:00:25,870\\npost-moderne dans une perspective stoïcienne,\\n475 pages, à rendre pour lundi.\\n\\n4\\n00:00:26,330 --> 00:00:29,220\\nPassez un bon week-end, \\nMerci !\\n\\n5\\n00:00:47,560 --> 00:00:51,760\\nAh, ma meilleure élève, merci !\\n\\n6\\n00:00:57,270 --> 00:00:58,820\\n<i>Le lundi suivant<i>\\n\\n7\\n00:01:12,660 --> 00:01:21,950\\nJe vous ai dit que Wikipédia n’est pas une source\\nfiable, dehors, dehors ! Sortez de mon bureau !\\n\\n8\\n00:01:38,750 --> 00:01:52,740\\nMême toi ? Je suis déçue, dehors, dehors !\\n\\n9\\n00:01:59,420 --> 00:02:06,960\\nJe suis tellement en colère, en colère.\\nJe dois, je dois…\\n\\n10\\n00:02:19,160 --> 00:02:25,930\\nVous vous reconnaissez ? Vous n’êtes pas seul.\\nWikipédia est le sixième site le plus\\n\\n11\\n00:02:26,060 --> 00:02:31,740\\nvisité en Suède, il y a donc de bonnes chances\\nque vos élèves l’utilisent pour trouver des faits\\n\\n12\\n00:02:31,860 --> 00:02:37,690\\net des informations. Peut-être même que vous,\\nenseignant, le faites aussi ?\\n\\n13\\n00:02:38,220 --> 00:02:42,120\\nMais comment savoir si les articles \\nde Wikipédia sont fiables ou pas ?\\n\\n14\\n00:02:42,530 --> 00:02:49,940\\nJe vous vous donner trois astuces : So, Di, et Hi.\\n\\n15\\n00:02:50,890 --> 00:02:54,860\\nSo, ce sont les sources. Elles sont renseignées au bas\\ndes articles Wikipédia.\\n\\n16\\n00:02:55,760 --> 00:02:59,700\\nRegardez combien il y en a, et si vous estimez que ce sont de bonnes sources.\\n\\n17\\n00:02:59,980 --> 00:03:02,960\\nC’est une bonne idée que de cliquer sur la source\\npour voir où vous arrivez.\\n\\n18\\n00:03:03,800 --> 00:03:10,630\\nLe second est Di, pour Discussion.\\nPour chaque article, il y a un onglet,\\n\\n19\\n00:03:10,710 --> 00:03:14,580\\nallez voir ce dont discutent les gens.\\nIl y a-t-il seulement des discussions ?\\n\\n20\\n00:03:14,690 --> 00:03:18,850\\nSi oui, c’est généralement sur le contenu et la structure des articles.\\nS’il y a une discussion associée à l’article,\\n\\n21\\n00:03:18,920 --> 00:03:22,640\\ncela rend généralement l’article meilleur. Cela montre que \\nbeaucoup de personnes sont passées par l’article, l’ont étudié\\n\\n22\\n00:03:22,720 --> 00:03:25,250\\net ont réfléchi à ce qu’il y a dans l’article et\\nà quoi il devrait ressembler.\\n\\n23\\n00:03:26,020 --> 00:03:33,310\\nLe dernier, c’est Hi, Historique. C’est aussi un onglet.\\nRegardez combien de personnes ont ajouté ou retiré\\n\\n24\\n00:03:33,440 --> 00:03:38,340\\ndes informations. Plus il y a de contributeurs et de personnes \\nprenant part aux discussion, mieux c’est.\\n\\n25\\n00:03:38,460 --> 00:03:43,080\\nCela rend l’article beaucoup plus fiable.\\n\\n26\\n00:03:44,190 --> 00:03:48,590\\nCe sont donc trois choses simples, So, Di, et Hi.\\n\\n27\\n00:03:48,790 --> 00:03:50,340\\nRegardez donc cela ensemble avec vos étudiants\\n\\n28\\n00:03:50,420 --> 00:03:55,460\\npour évaluer la fiabilité d’un article Wikipédia.\\n\\n29\\n00:03:55,720 --> 00:03:59,780\\nÀ Wikimédia Suède, nous travaillons sur un programme\\n« Wikipédia et l’Éducation »\\n\\n30\\n00:03:59,810 --> 00:04:06,020\\nContactez-nous si vous êtes curieux, intriguées,\\nou peut-être sceptiques ?\\n\\n31\\n00:04:06,400 --> 00:04:10,360\\nNous voulons avoir votre avis.\\nCe que nous faisons, c’est rendre Wikipédia\\n\\n32\\n00:04:10,460 --> 00:04:18,030\\nplus accessible, plus utile, plus compréhensible.\\nNous voulons vraiment en discuter avec vous.\\n\\n33\\n00:04:24,240 --> 00:04:29,300\\nWikipedia dans l’Éducation\\n\\n34\\n00:04:32,630 --> 00:04:37,240\\nVous en avez assez de Wikipédia ?\\nVous ne vous lassez pas de Wikipédia ?\\n\\n35\\n00:04:37,970 --> 00:04:41,440\\nContactez-nous à\\nutbildning@wikimedia.se',\n", + " 'bytes': 3731,\n", + " 'sha1': '8jci056yefd4ihwjsalj9ebfxs3eky4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 325873688,\n", + " 'timestamp': '2018-10-30T02:20:36Z',\n", + " 'user': {'text': '200.84.203.161'},\n", + " 'page': {'id': 27305260,\n", + " 'title': 'United States Navy Band - Gloria al Bravo Pueblo.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,000\\n¡Gloria al Bravo Pueblo!\\n\\n2\\n00:00:02,300 --> 00:00:04,200\\nque el yugo lanzó\\n\\n3\\n00:00:05,400 --> 00:00:06,200\\nla Ley respetando\\n\\n4\\n00:00:7,300 --> 00:00:8,200\\nla virtud y honor\\n\\n5\\n00:00:11,000 --> 00:00:12,200\\n¡Gloria al Bravo Pueblo!\\n\\n6\\n00:00:13,400 --> 00:00:14,200\\nque el yugo lanzó\\n\\n7\\n00:00:15,400 --> 00:00:17,200\\nla Ley respetando.\\n\\n8\\n00:00:18,000 --> 00:00:19,200\\nla virtud y honor\\n\\n9\\n00:00:20,300 --> 00:00:21,200\\n¡Abajo cadenas!\\n\\n10\\n00:00:23,000 --> 00:00:25,200\\n¡Abajo cadenas!\\n\\n11\\n00:00:26,000 --> 00:00:27,200\\nGritaba el Señor,\\n\\n12\\n00:00:28,000 --> 00:00:29,200\\nGritaba el Señor..\\n\\n13\\n00:00:31,000 --> 00:00:35,200\\ny el pobre en su\\nchoza, libertad pidió\\n\\n14\\n00:00:36,000 --> 00:00:40,200\\na este Santo nombre,\\ntembló de pavor\\n\\n15\\n00:00:42,000 --> 00:00:46,200\\nel vil egoísmo\\nque otra vez triunfó\\n\\n16\\n00:00:47,000 --> 00:00:49,200\\na este Santo nombre \\n\\n17\\n00:00:50,000 --> 00:00:53,200\\na este Santo nombre \\n\\n18\\n00:00:53,500 --> 00:00:55,200\\ntembló de pavor \\n\\n19\\n00:00:56,000 --> 00:00:57,200\\nel vil egoísmo\\n\\n20\\n00:00:58,400 --> 00:01:00,200\\nque otra vez triunfó\\n\\n21\\n00:01:02,000 --> 00:01:04,200\\nel vil egoísmo \\n\\n22\\n00:01:05,000 --> 00:01:06,200\\nque otra vez triunfó...\\n\\n23\\n00:01:07,100 --> 00:1:10,200\\n¡Gloria al Bravo pueblo!\\n\\n24\\n00:01:10,700 --> 00:01:12,200\\nque el yugo lanzó\\n\\n25\\n00:01:12,000 --> 00:01:15,200\\nla Ley respetando\\n\\n26\\n00:01:16,000 --> 00:01:17,200\\nla virtud y honor \\n\\n27\\n00:01:18,000 --> 00:01:20,200\\n¡Gloria al Bravo pueblo!\\n\\n28\\n00:01:21,000 --> 00:01:23,200\\nque el yugo lanzó\\n\\n29\\n00:01:24,000 --> 00:01:26,200\\nla Ley respetando\\n\\n30\\n00:01:27,000 --> 00:01:29,200\\nla virtud y honor',\n", + " 'bytes': 1661,\n", + " 'sha1': '66k1p4194ctruzypjczl4u1jr23rvft',\n", + " 'parent_id': 272256222,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100333599,\n", + " 'timestamp': '2013-07-20T09:20:48Z',\n", + " 'user': {'id': 1190641, 'text': 'Manojk'},\n", + " 'page': {'id': 27305760,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.ml.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:01,270 --> 00:00:10,230\\n<!--Wikipedia, a trustworthy source?-->വിശ്വസിക്കാവുന്ന ഒരു സ്രോതസ്സാണോ വിക്കിപീഡിയ ?\\n\\n2\\n00:00:14,810 --> 00:00:19,650\\n<!--Well, my dear students, thanks for a nice-->ശരി, എന്റെ കുട്ടികളേ, ഈ നല്ലരൊഴ്ചയ്ക്ക് നന്ദി.\\nBefore you go, the post-modern\\n\\n3\\n00:00:19,720 --> 00:00:25,870\\nsociety from a stoicistisc perspective,\\n475 pages, hand in on Monday.\\n\\n4\\n00:00:26,330 --> 00:00:29,220\\n<!--Have a nice weekend, -->നല്ലൊരാഴ്ച ആശംസിക്കുന്നു, \\n<!--Thank you!-->താങ്ക്\\u200cയൂ !\\n\\n5\\n00:00:47,560 --> 00:00:51,760\\n<!--You are my favorite pupil, thank you!-->നിങ്ങളെന്റെ പ്രിയപ്പെട്ടെ ശിഷ്യരാണ്, നന്ദി\\n\\n6\\n00:00:57,270 --> 00:00:58,820\\n<!--Next Monday-->അടുത്ത തിങ്കളാഴ്ച\\n\\n7\\n00:01:12,660 --> 00:01:21,950\\n<!--I told you that Wikipedia is not a credible-->ഞാന്\\u200d നിന്നോട് പറഞ്ഞിരുന്നില്ലേ വിക്കിപീഡിയ വിശ്വസിനീയമായ\\n<!--source, out, out! Get out of my room!-->സ്രോതസല്ല എന്ന്, പോ, പോ! എന്റെ മുറിയില്\\u200d നിന്ന് പുറത്ത് കടക്ക്\\n\\n8\\n00:01:38,750 --> 00:01:52,740\\n<!--Even you? I'm disappointed, out, out!-->നീയും കൂടി ? ഞാന്\\u200d നിരാശനാണ്, പോ, പോ!\\n\\n\\n9\\n00:01:59,420 --> 00:02:06,960\\nഎനിക്ക് ശരിക്കും ദേഷ്യം വരുന്നു, ദേഷ്യം.<!--I get so angry, angry.--> \\nI've bloody well...\\n\\n10\\n00:02:19,160 --> 00:02:25,930\\nDo you recognize yourself? You are not\\nalone. വിക്കിപീഡിയ is Swedens sixth most\\n\\n11\\n00:02:26,060 --> 00:02:31,740\\nvisited page, so chances are pretty high\\nthat your students go there to find facts\\n\\n12\\n00:02:31,860 --> 00:02:37,690\\nand information, just there. Perhaps even\\nyou as educator do that?\\n\\n13\\n00:02:38,220 --> 00:02:42,120\\nBut how can you know whether the articles \\non വിക്കിപീഡിയ are reliable or not?\\n\\n14\\n00:02:42,530 --> 00:02:49,940\\nI'll give you three tips. The tips, they are\\nSo, Ta and Hi.\\n\\n15\\n00:02:50,890 --> 00:02:54,860\\nSo, it is sources. They exists at the\\nbottom of the വിക്കിപീഡിയ articles.\\n\\n16\\n00:02:55,760 --> 00:02:59,700\\nLook at how many it is and if you think they are good sources.\\n\\n17\\n00:02:59,980 --> 00:03:02,960\\nPlease do click through on\\nthe source to see where you end up.\\n\\n18\\n00:03:03,800 --> 00:03:10,630\\nSecond is Ta, this means Talk. For\\neach article, there is a tab, go in and see\\n\\n19\\n00:03:10,710 --> 00:03:14,580\\nwhat people are talking about. Do they\\neven talk about anything? If they are, it is\\n\\n20\\n00:03:14,690 --> 00:03:18,850\\nusually about content and structure. If\\nthere is a discussion about the article, it\\n\\n21\\n00:03:18,920 --> 00:03:22,640\\nusually makes the article better. It shows\\nmany have been in the article and studied\\n\\n22\\n00:03:22,720 --> 00:03:25,250\\nand considered what is in the article and\\nhow it should look like.\\n\\n23\\n00:03:26,020 --> 00:03:33,310\\nLast is Hi, History. That is also a tab.\\nCheck how many have added information\\n\\n24\\n00:03:33,440 --> 00:03:38,340\\nand removed information. The more\\ncontributers and people partaking in\\n\\n25\\n00:03:38,460 --> 00:03:43,080\\ndiscussions, the better.\\nIt makes article a lot more credible.\\n\\n26\\n00:03:44,190 --> 00:03:48,590\\nSo it is three simple things, So, Ta and Hi.\\n\\n27\\n00:03:48,790 --> 00:03:50,340\\nPlease take a look on this together with your\\n\\n28\\n00:03:50,420 --> 00:03:55,460\\nstudents in order to evaluate an article's\\ncredibility on വിക്കിപീഡിയ.\\n\\n29\\n00:03:55,720 --> 00:03:59,780\\nOn വിക്കിമീഡിയ സ്വീഡൻ, we are working\\nwith the education programme വിക്കിപീഡിയ\\n\\n30\\n00:03:59,810 --> 00:04:06,020\\nin Education. Please let us know if you\\nare curious, thoughtful or maybe skeptical?\\n\\n31\\n00:04:06,400 --> 00:04:10,360\\nWe want to hear from you.\\nWhat we do, is to make വിക്കിപീഡിയ\\n\\n32\\n00:04:10,460 --> 00:04:18,030\\naccessible, useful and understandable.\\nWe would really like to hear from you.\\n\\n33\\n00:04:24,240 --> 00:04:29,300\\nവിക്കിപീഡിയ in Education\\n\\n34\\n00:04:32,630 --> 00:04:37,240\\nAre you fed up with വിക്കിപീഡിയ?\\nCan you not get enough of വിക്കിപീഡിയ?\\n\\n35\\n00:04:37,970 --> 00:04:41,440\\nContact us on\\nutbildning@wikimedia.se\",\n", + " 'bytes': 4730,\n", + " 'sha1': '4bkntb8ru36gyd981yvhwew5frcibrb',\n", + " 'parent_id': 100333421,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100210473,\n", + " 'timestamp': '2013-07-18T09:20:30Z',\n", + " 'user': {'id': 1188897, 'text': 'Arnaugir'},\n", + " 'page': {'id': 27310094,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1\\nLa Viquipèdia, una font fiable?\\n\\n2\\n00:00:14,810 --> 00:00:19,650\\nHola, estimats estudiants, gràcies per aquesta\\ngran setmana. Abans que marxeu, la societat\\n\\n3\\n00:00:19,720 --> 00:00:25,870\\npostmoderna des d'una perspectiva estoica. \\n475 pàgines per entregar el dilluns que ve.\\n\\n4\\n00:00:26,330 --> 00:00:29,220\\nBon cap de setmana,\\ngràcies!\\n\\n5\\n00:00:47,560 --> 00:00:51,760\\nEts la meva alumna preferida, gràcies!\\n\\n6\\n00:00:57,270 --> 00:00:58,820\\nEl dilluns següent\\n\\n7\\n00:01:12,660 --> 00:01:21,950\\nJa et vaig dir que la Viquipèdia no és una font\\ncreïble, fora, fora! Fora del meu despatx!\\n\\n8\\n00:01:38,750 --> 00:01:52,740\\nFins i tot tu? Estic decepcionada, fora, fora!\\n\\n9\\n00:01:59,420 --> 00:02:06,960\\nEstic tan i tan enfadada.\\nNo ho entenen...\\n\\n10\\n00:02:19,160 --> 00:02:25,930\\nEt reconeixes a tu mateix/a? No estàs\\nsol/a. La Viquipèdia és la sisena web\\n\\n11\\n00:02:26,060 --> 00:02:31,740\\nen suec més visitada i, per tant, les possibilitats\\nque els teus estudiants hi vagin per trobar informació\\n\\n12\\n00:02:31,860 --> 00:02:37,690\\ni dades són força elevades. Potser fins i tot\\ntu com a docent, ho fas?\\n\\n13\\n00:02:38,220 --> 00:02:42,120\\nPerò com pots saber si els articles\\nde la Viquipèdia són fiables o no?\\n\\n14\\n00:02:42,530 --> 00:02:49,940\\nEt diré tres tucs. Aquests trucs són\\nRe, Di i Hi.\\n\\n15\\n00:02:50,890 --> 00:02:54,860\\nRe, és Referències. Existeixen al davall\\nde tot els articles de la Viquipèdia.\\n\\n16\\n00:02:55,760 --> 00:02:59,700\\nMira quantes n'hi ha i pensa si apunten a bones fonts.\\n\\n17\\n00:02:59,980 --> 00:03:02,960\\nIntenta fer clic a les referències\\naviam on et porten.\\n\\n18\\n00:03:03,800 --> 00:03:10,630\\nLa segona és Di, que significa Discussió. En\\ncada article hi ha una pestanya, entra-hi\\n\\n19\\n00:03:10,710 --> 00:03:14,580\\ni mira de què parla la gent. Debaten sobre\\nalguna cosa? Si ho fan, sol ser\\n\\n20\\n00:03:14,690 --> 00:03:18,850\\nsobre el contingut i l'estructura. Si hi\\nha una discussió sobre l'article,\\n\\n21\\n00:03:18,920 --> 00:03:22,640\\nnormalment significa que es tracta d'un bon treball. \\nMostra que molta gent ha estat a l'article i ha estudiat\\n\\n22\\n00:03:22,720 --> 00:03:25,250\\ni considerat què hi ha en l'article\\ni com hauria de quedar.\\n\\n23\\n00:03:26,020 --> 00:03:33,310\\nEl darrer és Hi, Historial. També hi ha una\\npestanya. Mira quanta gent ha afegit i ha tret\\n\\n24\\n00:03:33,440 --> 00:03:38,340\\ninformació. Quants més contribuïdors\\ni gent participin en l'article,\\n\\n25\\n00:03:38,460 --> 00:03:43,080\\nmillor serà. Fa un article\\nmolt més creïble.\\n\\n26\\n00:03:44,190 --> 00:03:48,590\\nPer tant, són tres coses simples: Re, Di i Hi.\\n\\n27\\n00:03:48,790 --> 00:03:50,340\\nSi us plau, dóna un cop d'ull a això juntament\\n\\n28\\n00:03:50,420 --> 00:03:55,460\\namb els teus estudiants per avaluar la \\ncredibilitat d'un article de la Viquipèdia.\\n\\n29\\n00:03:55,720 --> 00:03:59,780\\nA Wikimedia Suècia, estem treballant\\namb el programa d'educació de Wikipedia\\n\\n30\\n00:03:59,810 --> 00:04:06,020\\nin Education. Si us plau, diga'ns si t'ha semblat\\ncuriós, t'ha donat per pensar o bé ets escèptic/a?\\n\\n31\\n00:04:06,400 --> 00:04:10,360\\nVolem saber què penses.\\nEl que fem nosaltres és fer la Viquipèdia\\n\\n32\\n00:04:10,460 --> 00:04:18,030\\naccessible, útil i comprensible.\\nRealment voldríem parlar amb tu.\\n\\n33\\n00:04:24,240 --> 00:04:29,300\\nWikipedia in Education\\n\\n34\\n00:04:32,630 --> 00:04:37,240\\nEstàs tip de la Viquipèdia?\\nNo en tens suficient de la Viquipèdia?\\n\\n35\\n00:04:37,970 --> 00:04:41,440\\nContacta'ns a\\nutbildning@wikimedia.se\",\n", + " 'bytes': 3476,\n", + " 'sha1': 'mvs5m3yeee1mu9ttbcwb2xkuruwfd55',\n", + " 'parent_id': 100210436,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 343763061,\n", + " 'timestamp': '2019-03-25T17:35:51Z',\n", + " 'user': {'id': 1067832, 'text': 'Iwan Novirion'},\n", + " 'page': {'id': 27318747,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.id.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'update',\n", + " 'text': '1\\n00:00:01,270 --> 00:00:10,230\\nWikipedia, sumber terpercaya?!\\n\\n2\\n00:00:14,810 --> 00:00:19,650\\nNah, anak-anak, selamat berakhir pekan. Sebelum pulang, makalah tentang \\n\\n3\\n00:00:19,720 --> 00:00:25,920\\nmasyarakat pasca-modern dari perspektif stoikisme, 475 halaman, kumpulkan hari Senin!\\n\\n4\\n00:00:26,330 --> 00:00:29,220\\nSelamat berakhir pekan. Terima kasih!\\n\\n5\\n00:00:47,560 --> 00:00:51,760\\nMurid favorit ku, makasih ya!\\n\\n6\\n00:00:57,270 --> 00:00:58,820\\nHari Seninnya...\\n\\n7\\n00:01:12,660 --> 00:01:21,950\\nSudah saya bilang Wikipedia bukan sumber yang kredibel, keluar, keluar! Keluar dari ruangan ini!\\n\\n8\\n00:01:38,750 --> 00:01:52,740\\nKamu juga? Mengecewakan..., keluar, keluar!\\n\\n9\\n00:01:59,420 --> 00:02:06,960\\nArgh... Ini membuat saya geram, geraaaam! Saya marah...!!! Argh...argh...\\n\\n10\\n00:02:19,160 --> 00:02:25,930\\nAnda pernah mengalaminya? Anda tidak sendiri. Wikipedia adalah situs yang paling\\n\\n11\\n00:02:26,060 --> 00:02:31,740\\nsering dikunjungi, jadi kemungkinannya sangat besar jika murid-murid Anda menjadikannya sebagai sumber referensi\\n\\n12\\n00:02:31,860 --> 00:02:37,690\\ndan mencari informasi dari sana. Bahkan mungkin Anda sebagai pendidik juga melakukannya?\\n\\n13\\n00:02:38,220 --> 00:02:42,120\\nTapi bagaimana Anda bisa tahu artikel dari Wikipedia itu kredibel atau tidak?\\n\\n14\\n00:02:42,530 --> 00:02:49,940\\nSaya akan memberikan 3 tips. Tips tersebut adalah Re, Bi dan Ri.\\n\\n15\\n00:02:50,890 --> 00:02:54,860\\nRe, adalah referensi. Berada di bagian paling bawah dari suatu artikel di Wikipedia.\\n\\n16\\n00:02:55,760 --> 00:02:59,700\\nLihat berapa banyak jumlahnya dan apakah bisa disebut sebagai referensi yang baik.\\n\\n17\\n00:02:59,980 --> 00:03:02,960\\nSilakan klik pada masing-masing referensi tersebut untuk melihat Anda dibawa ke mana.\\n\\n18\\n00:03:03,800 --> 00:03:10,630\\nYang kedua adalah Bi, ini maksudnya Bicara. Setiap artikel ada sebuah tab Halaman Pembicaraan, pergilah ke sana dan perhatikan\\n\\n19\\n00:03:10,710 --> 00:03:14,580\\napa yang dibicarakan. Apa mereka membicarakan sesuatu? Jika ya, itu biasanya\\n\\n20\\n00:03:14,690 --> 00:03:18,850\\ntentang isi dan struktur artikel. Jika ada diskusi tentang artikel tersebut, biasanya\\n\\n21\\n00:03:18,920 --> 00:03:22,640\\nbertujuan membuat artikel lebih baik. Ini akan menjelaskan berapa orang yang tertarik dengan artikel tsb dan mempelajarinya\\n\\n22\\n00:03:22,720 --> 00:03:25,250\\ndan mempertimbangkan apa yang perlu ada di dalamnya serta bagaimana seharusnya artikel tersebut terlihat.\\n\\n23\\n00:03:26,020 --> 00:03:33,310\\nYang terakhir adalah Ri, Riwayat. Ada juga tab untuk Riwayat Penyuntingan. Periksalah berapa orang yang sudah menambahkan informasi\\n\\n24\\n00:03:33,440 --> 00:03:38,340\\natau menghapus informasi. Semakin banyak kontributor dan orang yang terlibat dalam\\n\\n25\\n00:03:38,460 --> 00:03:43,080\\nriwayat penyuntingan, akan semakin baik. Ini akan membuat artikel menjadi lebih kredibel.\\n\\n26\\n00:03:44,190 --> 00:03:48,590\\nJadi ini adalah tiga hal yang sederhana, Re, Bi dan Ri.\\n\\n27\\n00:03:48,790 --> 00:03:50,340\\nSilakan tonton video ini bersama dengan\\n\\n28\\n00:03:50,420 --> 00:03:55,460\\nmurid-murid Anda dalam rangka mengevaluasi kredibilitas suatu artikel pada Wikipedia.\\n\\n29\\n00:03:55,720 --> 00:03:59,780\\nDi Wikimedia Swedia, kita bekerja dengan program pembelajaran Wikipedia\\n\\n30\\n00:03:59,810 --> 00:04:06,020\\ndalam Pendidikan. Mohon sampaikan jika Anda tertarik, jadi berpikir atau mungkin malah jadi skeptis?\\n\\n31\\n00:04:06,400 --> 00:04:10,360\\nKami ingin mendengan kabar dari Anda. Apa yang kami lakukan, adalah membuat Wikipedia\\n\\n32\\n00:04:10,460 --> 00:04:18,030\\ndapat diakses, berguna dan mudah dimengerti. Kami sangat ingin mendengar kabar dari Anda.\\n\\n33\\n00:04:24,240 --> 00:04:29,300\\nWikipedia dalam Pendidikan\\n\\n34\\n00:04:32,630 --> 00:04:37,240\\nApa Anda bosan dengan Wikipedia? Atau Anda merasa kurang puas dengan Wikipedia?\\n\\n35\\n00:04:37,970 --> 00:04:41,440\\nHubungi kami: utbildning@wikimedia.se',\n", + " 'bytes': 3850,\n", + " 'sha1': 'b1owlnazpx2mgedl4pfadhki8e3spb1',\n", + " 'parent_id': 343754817,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100272280,\n", + " 'timestamp': '2013-07-19T09:28:43Z',\n", + " 'user': {'id': 708955, 'text': 'Danmichaelo'},\n", + " 'page': {'id': 27324495,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.nb.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Danmichaelo moved page [[TimedText:Hur tittar du på Wikipedia.webm.no.srt]] to [[TimedText:Hur tittar du på Wikipedia.webm.nb.srt]]: nb is preferred over no I guess',\n", + " 'text': '1\\n00:00:01,270 --> 00:00:10,230\\nWikipedia, en troverdig kilde?! \\n\\n2\\n00:00:14,300 --> 00:00:19,050\\nJa, mine kjære elever, da vil jeg takke for en\\nhyggelig uke. Før dere går; \\n\\n3\\n00:00:19,050 --> 00:00:25,870\\nDet postmoderne samfunnet fra et stoistisk\\nperspektiv, 475 sider, til mandag.\\n\\n4\\n00:00:26,200 --> 00:00:29,220\\nGod helg!\\nTakk!\\n\\n5\\n00:00:47,450 --> 00:00:51,760\\nDu er min yndlingselev, takk!\\n\\n6\\n00:00:57,270 --> 00:00:58,820\\nNeste mandag\\n\\n7\\n00:01:12,660 --> 00:01:21,950\\nJeg har jo sagt at Wikipedia ikke er en\\ntroverdig kilde, ut, ut! Ut av mitt rom!\\n\\n8\\n00:01:38,750 --> 00:01:52,740\\nTil og med du?\\nJeg er skuffet, ut, ut!\\n\\n9\\n00:01:58,050 --> 00:02:06,960\\nÅh, jeg blir så sint, så sint.\\nJeg har jo for faen... faen... åh... åh!\\n\\n10\\n00:02:19,160 --> 00:02:25,930\\nKjenner du deg igjen? Du er ikke alene.\\nWikipedia er sveriges sjette mest\\n\\n11\\n00:02:26,060 --> 00:02:31,740\\nbesøkte nettsted, så sjansene er ganske store\\nfor at dine elevene går dit for å finne faktainformasjon\\n\\n12\\n00:02:31,860 --> 00:02:37,690\\nakkurat der. Kanskje til og med\\ndu som pedagog gjør det?\\n\\n13\\n00:02:38,220 --> 00:02:42,120\\nMen hvordan kan du vite om en\\nWikipedia-artikkel er pålitelig eller ikke?\\n\\n14\\n00:02:42,530 --> 00:02:49,940\\nJeg skal gi deg tre tips. Tipsene er\\nKi, Di og Hi.\\n\\n15\\n00:02:50,890 --> 00:02:54,860\\nKi, det er kilder. De finnes helst nederst\\npå Wikipedia.\\n\\n16\\n00:02:55,760 --> 00:02:59,700\\nSe hvor mange det er,\\nog om det virker som bra kilder.\\n\\n17\\n00:02:59,980 --> 00:03:02,960\\nKlikk deg gjerne videre på en kilde\\nfor å se hvor du havner.\\n\\n18\\n00:03:03,800 --> 00:03:10,630\\nDen andre er Di, det betyr diskusjon. For\\nhver artikkel er det en fane, gå inn der og se\\n\\n19\\n00:03:10,710 --> 00:03:14,580\\nhva folk snakker om. Snakker man i det\\nhele tatt om noe? Hvis man gjør det, pleier\\n\\n20\\n00:03:14,690 --> 00:03:18,850\\nman snakke om innhold og struktur.\\nFinnes det en diskusjon om artikkelen,\\n\\n21\\n00:03:18,920 --> 00:03:22,640\\ngjør det oftest artikkelen bedre. Det viser\\nat mange har vært inne og studert og\\n\\n22\\n00:03:22,720 --> 00:03:25,250\\nvurdert hva som står i artikkelen og\\nhvordan den bør se ut.\\n\\n23\\n00:03:26,020 --> 00:03:33,310\\nDet siste, det er Hi, historikk. Det er også en fane.\\nSjekk hvor mange som har lagt til informasjon\\n\\n24\\n00:03:33,440 --> 00:03:38,340\\nog fjernet informasjon. Jo flere som\\nhar vært med og bidratt og\\n\\n25\\n00:03:38,460 --> 00:03:43,080\\npratet og diskutert, desto bedre.\\nDet gjør artikkelen mye mer troverdig.\\n\\n26\\n00:03:44,190 --> 00:03:48,590\\nDet er altså tre enkle ting: Ki, Di og Hi.\\n\\n27\\n00:03:48,790 --> 00:03:50,340\\nSe gjerne på dette sammen med dine elever\\n\\n28\\n00:03:50,420 --> 00:03:55,460\\nfor å bedømme en artikkels\\ntroverdighet på Wikipedia.\\n\\n29\\n00:03:55,720 --> 00:03:59,780\\nI Wikimedia Sverige arbeider vi blant annet\\nmed utdanningsprogrammet\\n\\n30\\n00:03:59,810 --> 00:04:06,020\\nWikipedia i utdanning. Ta gjerne kontakt\\nom du er nysgjerrig, undrende eller kanskje skeptisk?\\n\\n31\\n00:04:06,400 --> 00:04:10,360\\nVi ønsker å høre fra deg.\\nDet vi gjør er å gjøre Wikipedia\\n\\n32\\n00:04:10,460 --> 00:04:18,030\\nmer tilgjengelig, brukervennlig og forståelig.\\nVi vil veldig gjerne høre fra deg.\\n\\n33\\n00:04:24,240 --> 00:04:29,300\\nWikipedia i utdanning\\n\\n34\\n00:04:32,630 --> 00:04:37,240\\nHar du fått nok av Wikipedia?\\nKan du ikke få nok av Wikipedia?\\n\\n35\\n00:04:37,970 --> 00:04:41,440\\nKontakt oss på\\nutbildning@wikimedia.se',\n", + " 'bytes': 3383,\n", + " 'sha1': 'ayxymvk91c8xiygbfzer6d6nz0p2h3r',\n", + " 'parent_id': 100254389,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100272281,\n", + " 'timestamp': '2013-07-19T09:28:43Z',\n", + " 'user': {'id': 708955, 'text': 'Danmichaelo'},\n", + " 'page': {'id': 27330739,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.no.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:Hur tittar du på Wikipedia.webm.nb.srt',\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Danmichaelo moved page [[TimedText:Hur tittar du på Wikipedia.webm.no.srt]] to [[TimedText:Hur tittar du på Wikipedia.webm.nb.srt]]: nb is preferred over no I guess',\n", + " 'text': '#REDIRECT [[TimedText:Hur tittar du på Wikipedia.webm.nb.srt]]',\n", + " 'bytes': 63,\n", + " 'sha1': 'q59ulf72hd7gnusq22cnot0riuw2f5x',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601135606,\n", + " 'timestamp': '2021-10-22T15:14:00Z',\n", + " 'user': {'id': 4008733, 'text': 'JhsBot'},\n", + " 'page': {'id': 27345479,\n", + " 'title': 'South African national anthem.oga.xh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'JhsBot moved page [[TimedText:South Africa National Anthem.ogg.xh.srt]] to [[TimedText:South African national anthem.oga.xh.srt]] without leaving a redirect: Moved because the [[File:South African national anthem.oga|file it belongs to]] was moved',\n", + " 'text': \"1\\n00:00:03,000 --> 00:00:09,000\\nNkosi sikelel' iAfrika\\n\\n2\\n00:00:10,000 --> 00:00:15,000\\nMaluphakanyisw' uphondo lwayo,\",\n", + " 'bytes': 118,\n", + " 'sha1': '6iecz4h4b3rgtmlfnhyrtgpg4xap294',\n", + " 'parent_id': 101980217,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 344818419,\n", + " 'timestamp': '2019-04-04T04:45:04Z',\n", + " 'user': {'id': 7766564, 'text': 'Munt0'},\n", + " 'page': {'id': 27356964,\n", + " 'title': 'Aaron Swartz - The Network Transformation.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Remove line breaks',\n", + " 'text': \"\\ufeff1\\n00:00:03,200 --> 00:00:08,080\\nThe change in the architecture of the media is completely connected to a change in the architecture of control\\n\\n2\\n00:00:08,119 --> 00:00:11,559\\nWith the broadcast system you have one person in one station\\n\\n3\\n00:00:11,599 --> 00:00:13,719\\ndeciding what gets put out over the airwaves. \\n\\n4\\n00:00:13,800 --> 00:00:17,640\\nWhen you have a distributed network like the internet everybody can be a server.\\n\\n5\\n00:00:17,679 --> 00:00:20,559\\nThere's no distinction between the broadcaster and the receiver:\\n\\n6\\n00:00:20,879 --> 00:00:22,279\\nevery computer does both.\\n\\n7\\n00:00:22,399 --> 00:00:27,079\\nYou can take your home laptop and run a server off of it that can distribute movies and music\\n\\n8\\n00:00:27,120 --> 00:00:31,640\\nand webpages and email in the same way that the biggest computers at Google can.\\n\\n9\\n00:00:31,679 --> 00:00:35,519\\nThere's no fundamental difference between the computers they have in the racks in their server rooms\\n\\n10\\n00:00:31,760 --> 00:00:31,800\\n\\n\\n11\\n00:00:35,520 --> 00:00:36,920\\nand what you have on your desk.\\n\\n12\\n00:00:38,039 --> 00:00:39,560\\nIn the old system of broadcasting, \\n\\n13\\n00:00:39,600 --> 00:00:42,800\\nyou were fundamentally limited by the amount of space in the airwaves\\n\\n14\\n00:00:42,759 --> 00:00:46,439\\nYou could only send out 10 channels over the airwaves in television\\n\\n15\\n00:00:46,439 --> 00:00:48,519\\nor even with cable you had 500 channels.\\n\\n16\\n00:00:48,679 --> 00:00:50,640\\nOn the internet, everybody can have a channel; \\n\\n17\\n00:00:50,759 --> 00:00:53,039\\neveryone can get a blog or a MySpace page;\\n\\n18\\n00:00:53,079 --> 00:00:55,159\\neveryone has a way of expressing themselves\\n\\n19\\n00:00:55,479 --> 00:00:57,719\\nand so what you see now is not a question of\\n\\n20\\n00:00:57,719 --> 00:00:59,119\\nwho gets access to the airwaves, \\n\\n21\\n00:00:59,280 --> 00:01:00,840\\nit's a question of who gets control\\n\\n22\\n00:01:00,840 --> 00:01:02,400\\nover the ways you find people.\\n\\n23\\n00:01:02,799 --> 00:01:05,399\\nYou start seeing power centralising in sites like Google,\\n\\n24\\n00:01:05,439 --> 00:01:08,480\\nthese sort of 'gatekeepers' that tell you where on the internet you want to go\\n\\n25\\n00:01:08,599 --> 00:01:11,559\\nthe people who provide you your sources of news and information.\\n\\n26\\n00:01:11,599 --> 00:01:15,079\\nSo its not only certain people have a license to speak\\n\\n27\\n00:01:15,280 --> 00:01:16,640\\nnow everyone has a license to speak,\\n\\n28\\n00:01:16,680 --> 00:01:17,760\\nit's a question of who gets heard.\\n\\n29\\n00:01:19,400 --> 00:01:22,600\\nSo one of the biggest questions we're facing in a world of many speakers\\n\\n30\\n00:01:22,680 --> 00:01:24,040\\nhow do you find what's good?\\n\\n31\\n00:01:24,040 --> 00:01:27,240\\nAre we gonna go to a system like the old media where you go to CNN\\n\\n32\\n00:01:27,359 --> 00:01:29,239\\nand they pick a handful of people to focus on \\n\\n33\\n00:01:29,280 --> 00:01:30,239\\nand you read what they say\\n\\n34\\n00:01:30,280 --> 00:01:32,040\\nor are we going to go with something more like the internet\\n\\n35\\n00:01:32,200 --> 00:01:35,200\\nwhere everybody has a chance of being heard, a more democratic system. \\n\\n36\\n00:01:35,480 --> 00:01:38,480\\nOne of the most interesting technologies for doing something like that\\n\\n37\\n00:01:38,439 --> 00:01:39,840\\nis a system called collaborative filtering,\\n\\n38\\n00:01:40,079 --> 00:01:43,640\\nwhere everybody expresses their opinions on what they like and what they don't like\\n\\n39\\n00:01:43,680 --> 00:01:47,400\\nand the computer tries to match you up with other people who have similar preferences\\n\\n40\\n00:01:47,439 --> 00:01:50,719\\nand recommend you things that they also like that you didn't know about before.\\n\\n41\\n00:01:50,760 --> 00:01:52,800\\nIt's the same kind of system you see on Amazon\\n\\n42\\n00:01:52,840 --> 00:01:55,159\\nwhere people who bought this book also bought this book.\\n\\n43\\n00:01:55,159 --> 00:01:57,920\\nPeople are trying to experiment that not only with books \\n\\n44\\n00:01:58,000 --> 00:02:01,079\\nbut with blogs, web pages and news stories all across the internet,\\n\\n45\\n00:02:01,120 --> 00:02:04,320\\nthey're trying to find ways and things that you never would have heard of before \\n\\n46\\n00:02:04,400 --> 00:02:05,719\\nand bringing them in front of you.\\n\\n47\\n00:02:06,200 --> 00:02:08,080\\nMass media had this fundamental paradox\\n\\n48\\n00:02:08,400 --> 00:02:10,319\\nbecause it was aiming at a huge audience \\n\\n49\\n00:02:10,360 --> 00:02:12,760\\nbut it wanted to convince everybody they were an individual\\n\\n50\\n00:02:12,759 --> 00:02:15,159\\nso you see all these ads on television all the time like\\n\\n51\\n00:02:15,360 --> 00:02:17,560\\n'buck the trend, buy these jeans' right?\\n\\n52\\n00:02:17,599 --> 00:02:20,039\\nAnd it's on a show that 4 million people are watching,\\n\\n53\\n00:02:20,280 --> 00:02:23,840\\nyou're not going to buck a trend by doing what 4 million other people are. \\n\\n54\\n00:02:24,000 --> 00:02:26,840\\nNow that the internet is actually making these niche things possible\\n\\n55\\n00:02:27,039 --> 00:02:29,039\\nthe mass media is incredibly threatened\\n\\n56\\n00:02:29,400 --> 00:02:32,879\\nno longer this idea of bucking the crowd and being your own\\n\\n57\\n00:02:33,479 --> 00:02:36,280\\nit's no longer just a theory you can actually do it on the internet\\n\\n58\\n00:02:36,280 --> 00:02:40,400\\nAnd what we're starting to see is tools that take power away from the big conglomerates \\n\\n59\\n00:02:40,560 --> 00:02:42,199\\nand start to distribute it to small groups.\\n\\n60\\n00:02:42,479 --> 00:02:47,239\\nAnd so there are a bunch of issues in a system like that there are questions of funding you know,\\n\\n61\\n00:02:47,280 --> 00:02:50,400\\nhow will these small groups get paid and how will the random blogger be able to live\\n\\n62\\n00:02:50,520 --> 00:02:53,400\\nin a way that an investigative journalist can now\\n\\n63\\n00:02:53,599 --> 00:02:55,879\\nbecause there's one giant source of advertising.\\n\\n64\\n00:02:55,919 --> 00:02:59,799\\nYou know there are question finding people, how will I be able to find the stuff I'm interested in,\\n\\n65\\n00:02:59,879 --> 00:03:01,599\\nand the stuff that's trustworthy and reliable\\n\\n66\\n00:03:02,080 --> 00:03:04,719\\nand so for each of these there are new technologies\\n\\n67\\n00:03:04,719 --> 00:03:06,520\\npeople are trying all sorts of different things\\n\\n68\\n00:03:06,680 --> 00:03:08,240\\nand one of the most exciting things about the internet is that\\n\\n69\\n00:03:08,280 --> 00:03:12,400\\nthere is still experimentation in this, since everybody can just go up and start a website\\n\\n70\\n00:03:12,400 --> 00:03:15,640\\nwith a new piece of technology to try and solve one of these problems.\\n\\n71\\n00:03:15,680 --> 00:03:18,640\\nWe're seeing lots of different possibilities, lots of different funding models\\n\\n72\\n00:03:18,680 --> 00:03:22,920\\nlots of different recommendations systems and who knows what will work best.\\n\\n73\\n00:03:23,439 --> 00:03:25,759\\nWe have a chance to try it all and see what falls out.\\n\\n74\\n00:03:25,800 --> 00:03:27,840\\nSo there are a couple of interesting funding models:\\n\\n75\\n00:03:27,879 --> 00:03:30,479\\nOne of course is the sort of standard method of advertising,\\n\\n76\\n00:03:30,599 --> 00:03:35,039\\nyou go to a bunch of big corporate sponsors and instead of having them fund a television show\\n\\n77\\n00:03:35,080 --> 00:03:36,400\\nyou have them fund your webpage.\\n\\n78\\n00:03:36,400 --> 00:03:39,800\\nBut a more interesting one is you do the same thing with niche groups\\n\\n79\\n00:03:40,000 --> 00:03:45,039\\ninstead of going to IBM/Ford or some big company and having them buy a banner out on your site, \\n\\n80\\n00:03:45,120 --> 00:03:47,599\\nyou go to people who actually care about the readers you have.\\n\\n81\\n00:03:47,680 --> 00:03:50,719\\nIf you're a design weblog you go to design companies.\\n\\n82\\n00:03:50,759 --> 00:03:53,719\\nIf you're a politics webblog, you go to other politicians.\\n\\n83\\n00:03:53,879 --> 00:03:58,039\\nYou have a very targeted narrow group of people who are really interested in the subject,\\n\\n84\\n00:03:58,039 --> 00:04:01,120\\nthats an audience advertisers really love.\\n\\n85\\n00:04:01,759 --> 00:04:04,560\\nAnother possibility is to turn directly to your readers for support.\\n\\n86\\n00:04:04,680 --> 00:04:07,719\\nSo you see blogs say, I wanna go on a trip to New Hampshire \\n\\n87\\n00:04:07,719 --> 00:04:10,400\\nto cover the American political conventions.\\n\\n88\\n00:04:10,439 --> 00:04:11,599\\nWill you support me?\\n\\n89\\n00:04:12,000 --> 00:04:13,400\\nAnd the readers pour in money.\\n\\n90\\n00:04:13,400 --> 00:04:16,720\\nThese people are very dedicated if they feel like they have a personal connection\\n\\n91\\n00:04:16,720 --> 00:04:17,800\\nwith the person writing,\\n\\n92\\n00:04:17,800 --> 00:04:20,240\\nso they are eager to spend money to support it! \\n\\n93\\n00:04:21,000 --> 00:04:23,879\\nAnother thing is that you work simply off of volunteer labor,\\n\\n94\\n00:04:23,879 --> 00:04:27,040\\nyou have people who have a day job that's an expert on a subject\\n\\n95\\n00:04:27,040 --> 00:04:30,280\\nand they just enjoy talking about it so they rate stuff in their free time\\n\\n96\\n00:04:30,360 --> 00:04:31,199\\nand publish it on the internet.\\n\\n97\\n00:04:31,439 --> 00:04:33,920\\nOr they have readers who read their site and contribute stuff\\n\\n98\\n00:04:34,000 --> 00:04:36,399\\nand it gets compiled into one exciting source.\\n\\n99\\n00:04:36,680 --> 00:04:39,040\\nSo I think there are lots of different experiments\\n\\n100\\n00:04:39,040 --> 00:04:40,760\\nand people are trying in lots of different ways.\\n\\n101\\n00:04:41,000 --> 00:04:46,480\\nThat's one of the errors you had with television, right, was that television could only provide one level of interest.\\n\\n102\\n00:04:48,600 --> 00:04:51,720\\nIt was funded based on adertising, not on how much people cared about the program.\\n\\n103\\n00:04:52,360 --> 00:04:56,280\\nAdvertisers were going to pay the same no matter how exciting or how compelling \\n\\n104\\n00:04:56,279 --> 00:04:58,119\\nor how interested an audience was in the show\\n\\n105\\n00:04:58,160 --> 00:05:01,880\\nso what you ended up with was fairly boring shows that appealed to lots of people\\n\\n106\\n00:05:01,920 --> 00:05:04,400\\nbecause that's what advertisers wanted\\n\\n107\\n00:05:04,399 --> 00:05:05,919\\nthey wanted lots people watching the shows.\\n\\n108\\n00:05:06,160 --> 00:05:08,280\\nWhereas in a normal market economy what happens is\\n\\n109\\n00:05:08,279 --> 00:05:10,279\\nif you really want something you pay more for it\\n\\n110\\n00:05:10,360 --> 00:05:12,040\\nyou just can't do that with television. \\n\\n111\\n00:05:12,279 --> 00:05:15,399\\nSo one of the interesting things about broadcast is that a lot of what you like \\n\\n112\\n00:05:15,399 --> 00:05:17,039\\ndepends on what other people like\\n\\n113\\n00:05:17,399 --> 00:05:19,239\\nthere are only so many shows out there\\n\\n114\\n00:05:19,240 --> 00:05:20,160\\nthey are all kind of bland\\n\\n115\\n00:05:20,199 --> 00:05:21,839\\nso what happens, you have these megahits\\n\\n116\\n00:05:22,000 --> 00:05:26,920\\nlike American Idol or Lost, where everybody at the water cooler is talking about this show,\\n\\n117\\n00:05:27,000 --> 00:05:29,879\\nso you have to watch it because otherwise you can't keep up with them.\\n\\n118\\n00:05:30,120 --> 00:05:33,399\\nWhenever social factors get involved\\n\\n119\\n00:05:33,560 --> 00:05:35,639\\nyou have this sort of process of rich gets richer\\n\\n120\\n00:05:35,680 --> 00:05:40,040\\none thing takes off because thats what everybody else is doing!\\n\\n121\\n00:05:40,360 --> 00:05:43,720\\nOne nice thing about the internet is that it allows for so much more variety\\n\\n122\\n00:05:43,720 --> 00:05:47,960\\nthat niche products can get so much more attention and interest\\n\\n123\\n00:05:48,000 --> 00:05:50,720\\nSo they've the run the numbers and there is this proven mathematical fact\\n\\n124\\n00:05:50,759 --> 00:05:54,639\\nthat as long as some percentage of what you care about is whether other people\\n\\n125\\n00:05:54,680 --> 00:05:58,040\\nlike it or now you're gonna end up with these patterns of hits and failures.\\n\\n126\\n00:05:58,680 --> 00:06:01,720\\nIf you have two things which are equivalent in quality,\\n\\n127\\n00:06:01,720 --> 00:06:04,640\\nand one of them is liked by one more person than the other one,\\n\\n128\\n00:06:04,680 --> 00:06:06,079\\nyou're going to go that one.\\n\\n129\\n00:06:06,120 --> 00:06:08,399\\nThere's some small chance that you're going to go to that one \\n\\n130\\n00:06:08,399 --> 00:06:09,719\\nand everybody's going to start going to that one\\n\\n131\\n00:06:09,759 --> 00:06:11,120\\nand all of a sudden you have Harry Potter.\\n\\n132\\n00:06:11,160 --> 00:06:14,840\\nThis one book plucked of nowhere that suddenly becomes this humongous mega-hit.\\n\\n133\\n00:06:14,879 --> 00:06:18,079\\nnot because it's a hundred million times better written than every other book\\n\\n134\\n00:06:18,120 --> 00:06:19,840\\nbut simply because everybody's reading it.\\n\\n135\\n00:06:21,000 --> 00:06:22,959\\nAnd putting stuff on the internet doesn't change that,\\n\\n136\\n00:06:23,079 --> 00:06:27,039\\nyou still care about what your friends like, you still wanna read what everybody else is talking about,\\n\\n137\\n00:06:27,040 --> 00:06:30,720\\nyou still wanna do what's popular because you think maybe other people have a valid opinion\\n\\n138\\n00:06:30,759 --> 00:06:34,159\\nand maybe you wanna talk to them about it, maybe you want to join part of this community.\\n\\n139\\n00:06:34,199 --> 00:06:37,240\\nBut whatever your reason is, as long as you care about other people's opinions \\n\\n140\\n00:06:37,240 --> 00:06:38,720\\nyou're going to end up with these hits. \\n\\n141\\n00:06:38,800 --> 00:06:38,840\\nYou just have this social signifier that everybody cares about.\\n\\n142\\n00:06:39,040 --> 00:06:41,640\\nYou just have this social signifier that everybody cares about.\\n\\n143\\n00:06:41,680 --> 00:06:45,040\\nEverybody's watching American Idol doesn't matter how good the show is.\\n\\n144\\n00:06:45,079 --> 00:06:49,279\\nI mean it has to be somewhat decent so people watch it, but once everybody's watching it,\\n\\n145\\n00:06:49,480 --> 00:06:54,160\\nand everybody's talking about it, you know, it suddenly becomes this megahit for no real reason,\\n\\n146\\n00:06:54,199 --> 00:06:56,039\\nright, just because it's a social phenomenon.\\n\\n147\\n00:06:56,079 --> 00:07:00,560\\nAnd what television does, it chops off the tail and it throws away all the other shows \\n\\n148\\n00:07:00,600 --> 00:07:03,400\\npeople would like but don't care enough about to be megahits\\n\\n149\\n00:07:03,399 --> 00:07:06,599\\nand instead pours all of its money into these cheap-to-produce shows.\\n\\n150\\n00:07:06,680 --> 00:07:08,639\\nWell you can't get rid of hits, right,\\n\\n151\\n00:07:08,720 --> 00:07:11,040\\nit's a fact that people would want to do what their friends are doing\\n\\n152\\n00:07:11,040 --> 00:07:15,480\\nyou can't avoid that but what you can do is say there's the whole rest of the world out there\\n\\n153\\n00:07:15,519 --> 00:07:18,719\\nthere's a whole rest of what people care about other than what everybody else is doing.\\n\\n154\\n00:07:19,000 --> 00:07:22,399\\nEverybody has their own particular interests, everybody has something that fascinates them\\n\\n155\\n00:07:22,399 --> 00:07:25,719\\nand what the internet does is it allows them to do that,\\n\\n156\\n00:07:25,720 --> 00:07:29,040\\nto get involved and find other people who share these things.\\n\\n157\\n00:07:29,079 --> 00:07:33,199\\nOne of the exciting things about Wikipedia is that it doesn't just have articles on\\n\\n158\\n00:07:33,240 --> 00:07:36,160\\nyou know, 100 most popular things or 1000 most popular things\\n\\n159\\n00:07:36,199 --> 00:07:39,240\\nyou can pick the most obscure subject in the world and there's an article about it.\\n\\n160\\n00:07:39,279 --> 00:07:43,039\\nBecause for EVERYTHING, there's someone who cares a great deal about it\\n\\n161\\n00:07:43,040 --> 00:07:46,439\\nand that's what television, that's what radio doesn't provide, but the internet does!\\n\\n162\\n00:07:46,600 --> 00:07:50,040\\nIt provides a way for you to get in touch with those other people who really \\n\\n163\\n00:07:50,079 --> 00:07:52,240\\ncare about this completely obscure thing.\\n\\n164\\n00:07:52,480 --> 00:07:56,040\\nIt doesn't just go into the direction of topic, it goes into the direction of time.\\n\\n165\\n00:07:56,040 --> 00:07:58,480\\nYou can go back in time and find all the shows that have been canceled,\\n\\n166\\n00:07:58,519 --> 00:08:00,799\\nfind all the articles that have been deleted,\\n\\n167\\n00:08:00,839 --> 00:08:04,039\\nyou can go back and find everything that has been lost in major culture\\n\\n168\\n00:08:04,040 --> 00:08:05,439\\nand it's got a place on the internet,\\n\\n169\\n00:08:05,480 --> 00:08:09,640\\nYouTube music videos from the 70s and the 80s that you can't find anywhere these days\\n\\n170\\n00:08:09,680 --> 00:08:11,439\\nyou can watch at your leisure.\\n\\n171\\n00:08:11,480 --> 00:08:13,640\\nI think lessening the power of the hits\\n\\n172\\n00:08:13,680 --> 00:08:16,720\\nbringing down the things from the top and making it more egalitarian\\n\\n173\\n00:08:16,720 --> 00:08:18,040\\nis the something we should always strive for\\n\\n174\\n00:08:18,079 --> 00:08:21,039\\nit may be really difficult, it may not be super possible\\n\\n175\\n00:08:21,079 --> 00:08:24,039\\nbut it's something to hope for, to drive for\\n\\n176\\n00:08:24,079 --> 00:08:26,719\\nand what that means is \\n\\n177\\n00:08:26,720 --> 00:08:31,160\\nthrowing away as much as possible, all the things that give you hints about\\n\\n178\\n00:08:31,199 --> 00:08:34,039\\nyou should do this because other people like it.\\n\\n179\\n00:08:34,039 --> 00:08:37,519\\nIt's very tempting when you're building a website or programming system\\n\\n180\\n00:08:37,519 --> 00:08:39,840\\nis to start sorting things that are really popular at the top\\n\\n181\\n00:08:39,879 --> 00:08:43,039\\nbut all that does is, that it makes it less democratic and less fair.\\n\\n182\\n00:08:43,120 --> 00:08:48,240\\nYou have to have continual pressure, to try and pull things from the bottom of the tail up,\\n\\n183\\n00:08:48,279 --> 00:08:51,399\\ngive everybody a chance to look at everything and if you do that,\\n\\n184\\n00:08:51,440 --> 00:08:53,720\\nmaybe you won't get completely rid of hits, \\n\\n185\\n00:08:53,720 --> 00:08:55,639\\nbut you can start to ameliorate some of their problems.\\n\\n186\\n00:08:55,679 --> 00:08:59,279\\nI mean that's one power of data mining is that construct to find obscure subjects\\n\\n187\\n00:08:59,399 --> 00:09:01,840\\nthat you wouldn't have found simply because they are not popular.\\n\\n188\\n00:09:01,879 --> 00:09:03,919\\nYou know, one of the tools of recommendations\\n\\n189\\n00:09:03,919 --> 00:09:06,759\\ncan be to pull you to the less popular stuff down on the tail.\\n\\n190\\n00:09:06,919 --> 00:09:09,919\\nThe random article button on Wikipedia is really cool in this sense:\\n\\n191\\n00:09:10,000 --> 00:09:13,240\\nYou can just wake up every day and read about some completely random topic\\n\\n192\\n00:09:13,240 --> 00:09:17,039\\nthat you'd never would have heard of except for the fact that there's an article on Wikipedia about it,\\n\\n193\\n00:09:17,080 --> 00:09:20,040\\nand boy are there some completely random topics! (interviewer laughs)\",\n", + " 'bytes': 18551,\n", + " 'sha1': 'l0cjc8sgvr0jr6409pncwf0klhlllys',\n", + " 'parent_id': 344817774,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100364780,\n", + " 'timestamp': '2013-07-20T21:18:46Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 27356990,\n", + " 'title': 'Aaron Swartz - The Network Transformation.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:03,001 --> 00:00:08,012 El cambio en la arquitectura de los medios está completamente conectada a un cambio del control 2 00:00:08,012 --> 00:00:11...'\",\n", + " 'text': '\\ufeff1\\n00:00:03,001 --> 00:00:08,012\\nEl cambio en la arquitectura de los medios está completamente conectada a un cambio del control\\n\\n2\\n00:00:08,012 --> 00:00:11,006\\nDentro de los sistemas de difusión se tiene una persona en una estación\\n\\n3\\n00:00:11,006 --> 00:00:13,007\\ndecidiendo que es lo que se transmitirá.\\n\\n4\\n00:00:13,007 --> 00:00:17,067\\nCuando tienes una red distribuida como el internet, todos pueden ser un servidor,\\n\\n5\\n00:00:17,068 --> 00:00:20,088\\nno hay distinción entre el locutor y el receptor,\\n\\n6\\n00:00:20,088 --> 00:00:22,004\\ntodas las computadoras hacen ambas cosas.\\n\\n7\\n00:00:22,004 --> 00:00:27,012\\nPuedes llevarte tu laptop y comenzar un servidor que distribuya películas, música,\\n\\n8\\n00:00:27,012 --> 00:00:31,068\\ny páginas de internet y correo electrónico de la misma manera que las grandes computadoras de Google.\\n\\n9\\n00:00:31,068 --> 00:00:31,076\\nNo hay gran diferencia entre las computadoras que tienen en las salas de servidores de Iraq\\n\\n10\\n00:00:31,076 --> 00:00:35,051\\nNo hay gran diferencia entre las computadoras que tienen en las salas de servidores de Iraq\\n\\n11\\n00:00:35,051 --> 00:00:38,003\\ny la computadora que está en tu escritorio.\\n\\n12\\n00:00:38,003 --> 00:00:39,006\\nEn el antiguo sistema de transmisión\\n\\n13\\n00:00:39,006 --> 00:00:42,076\\nfundamentalmente estabas limitado a la cantidad de espacio en las ondas aéreas,\\n\\n14\\n00:00:42,076 --> 00:00:46,043\\npodías enviar solamente 10 canales en la televisión\\n\\n15\\n00:00:46,043 --> 00:00:48,067\\no, en el caso de cable, hasta 500 canales.\\n\\n16\\n00:00:48,067 --> 00:00:50,076\\nEn internet todos pueden tener un canal,\\n\\n17\\n00:00:50,076 --> 00:00:53,008\\ntodos pueden tener un blog o una página de MySpace,\\n\\n18\\n00:00:53,008 --> 00:00:55,048\\ntodos tienen una manera de expresarse.\\n\\n19\\n00:00:55,048 --> 00:00:57,072\\nEntonces, lo que puede verse ahora no depende de\\n\\n20\\n00:00:57,072 --> 00:00:59,028\\nquien tiene acceso para transmitir,\\n\\n21\\n00:00:59,027 --> 00:01:00,083\\nes cuestión de quién tiene el control\\n\\n22\\n00:01:00,084 --> 00:01:02,008\\nde las maneras en las que encuentras a la gente.\\n\\n23\\n00:01:02,008 --> 00:01:05,043\\nPuede verse la centralización del poder en sitios como Google,\\n\\n24\\n00:01:05,043 --> 00:01:08,006\\nuna especie de guardianes indicando a donde quieres ir,\\n\\n25\\n00:01:08,006 --> 00:01:11,006\\nla gente que te provee de fuentes de información y noticias;\\n\\n26\\n00:01:11,006 --> 00:01:15,028\\nentonces no es que solamente ciertas personas tengan permiso de hablar\\n\\n27\\n00:01:15,028 --> 00:01:16,068\\nahora, todos tienen permitido hablar.\\n\\n28\\n00:01:16,067 --> 00:01:19,003\\nLa cuestión es quien es escuchado.\\n\\n29\\n00:01:19,004 --> 00:01:22,068\\nEntonces, una de las preguntas más importantes en un mundo lleno de gente expresándose\\n\\n30\\n00:01:22,067 --> 00:01:24,003\\n¿Cómo encuentras lo que es realmente bueno?\\n\\n31\\n00:01:24,004 --> 00:01:27,036\\n¿Vamos a ir a un sistema como antes, como CNN?\\n\\n32\\n00:01:27,036 --> 00:01:29,028\\nen donde seleccionan un montón de gente\\n\\n33\\n00:01:29,028 --> 00:01:30,028\\npara enfocarse en ella y lees lo que dicen\\n\\n34\\n00:01:30,028 --> 00:01:32,002\\no ¿vamos a ir por algo más como el internet?\\n\\n35\\n00:01:32,001 --> 00:01:35,048\\nen donde todos tienen oportunidad de ser escuchados, un sistema más democrático.\\n\\n36\\n00:01:35,048 --> 00:01:38,043\\nUno de las tecnologías más interesantes para hacer algo así\\n\\n37\\n00:01:38,043 --> 00:01:40,007\\nes un sistema llamado \"Filtrado colaborativo\"\\n\\n38\\n00:01:40,007 --> 00:01:43,067\\nen donde todos expresan opiniones sobre lo que les gusta o no les gusta\\n\\n39\\n00:01:43,067 --> 00:01:47,043\\ny la computadora crea coincidencias con más personas de preferencias similares a las tuyas\\n\\n40\\n00:01:47,043 --> 00:01:50,075\\ny te recomienda cosas que también les gustan, que tal vez nunca habías conocido.\\n\\n41\\n00:01:50,075 --> 00:01:52,083\\nEs el mismo tipo de sistema que puede verse en Amazon\\n\\n42\\n00:01:52,084 --> 00:01:55,016\\nen donde la gente que compró cierto libro, también compró otro cierto libro;\\n\\n43\\n00:01:55,016 --> 00:01:58,000\\nla gente no solamente trata de experimentar con libros\\n\\n44\\n00:01:58,000 --> 00:02:01,012\\nsino también con blogs, páginas web y noticias por todo el internet,\\n\\n45\\n00:02:01,012 --> 00:02:04,004\\nestán intentando encontrar maneras y cosas que nunca habían visto\\n\\n46\\n00:02:04,004 --> 00:02:06,002\\npara llevarlas a ti.\\n\\n47\\n00:02:06,001 --> 00:02:08,003\\nLos medios masivos tenían esta paradoja fundamental\\n\\n48\\n00:02:08,003 --> 00:02:10,036\\nporque buscaban llegar a una gran audiencia\\n\\n49\\n00:02:10,036 --> 00:02:12,075\\npero, al mismo tiempo, querían convencer a todo el mundo de ser individuos\\n\\n50\\n00:02:12,075 --> 00:02:15,036\\ny pueden verse todos estos anuncios en la televisión todo el tiempo:\\n\\n51\\n00:02:15,036 --> 00:02:17,006\\n\"¡rompe la tendencia, compra estos pantalones!\", ¿cierto?\\n\\n52\\n00:02:17,006 --> 00:02:20,027\\ny pasa en un programa que 4 millones de personas están viendo,\\n\\n53\\n00:02:20,027 --> 00:02:24,000\\nno vas a romper una tendencia haciendo lo que otros 4 millones están haciendo también.\\n\\n54\\n00:02:24,000 --> 00:02:27,003\\nAhora que el internet está, de hecho, haciendo posibles estas cuestiones\\n\\n55\\n00:02:27,003 --> 00:02:29,003\\nlos medios masivos se encuentran increíblemente amenazados.\\n\\n56\\n00:02:29,003 --> 00:02:33,048\\nEsta idea de ir en contra de la multitud y ser tú mismo\\n\\n57\\n00:02:33,048 --> 00:02:36,027\\nno es solamente una teoría, puedes lograrlo en internet\\n\\n58\\n00:02:36,027 --> 00:02:40,055\\ny comienzan a notarse estas herramientas que le restan poder a los grandes conglomerados\\n\\n59\\n00:02:40,056 --> 00:02:42,048\\ny comienzan a ser distribuidas en grupos pequeños.\\n\\n60\\n00:02:42,048 --> 00:02:47,027\\nEntonces hay un montón de cuestiones en un sistema como ese, hay dudas sobre los fondos, ¿sabes?\\n\\n61\\n00:02:47,027 --> 00:02:50,051\\n¿cómo es que se les paga a estos pequeños grupos? y ¿cómo va a vivir el blogger promedio?\\n\\n62\\n00:02:50,051 --> 00:02:53,006\\nDe cierta forma, el hecho de que un periodista investigador ahora pueda\\n\\n63\\n00:02:53,006 --> 00:02:55,092\\nporque hay una gran fuente de publicidad.\\n\\n64\\n00:02:55,092 --> 00:02:59,088\\n¿Sabes?, las preguntas están encontrando a las personas, ¿cómo encontraré la información que me interesa?\\n\\n65\\n00:02:59,087 --> 00:03:02,007\\n¿la información real y fidedigna?\\n\\n66\\n00:03:02,008 --> 00:03:04,072\\nPor cada una de ellas, hay nuevas tecnologías,\\n\\n67\\n00:03:04,072 --> 00:03:06,068\\nla gente está intentando todo tipo de cosas distintas\\n\\n68\\n00:03:06,068 --> 00:03:08,028\\ny dentro de todas las cosas emocionantes del internet\\n\\n69\\n00:03:08,027 --> 00:03:12,003\\nestá el hecho de que aún se experimenta con ello porque todos pueden tener una página web\\n\\n70\\n00:03:12,003 --> 00:03:15,067\\ncon una nueva porción de tecnología que intenta y resuelve uno de esos problemas\\n\\n71\\n00:03:15,068 --> 00:03:18,068\\nEstamos viendo muchísimas posibilidades distintas, muchísimos modelos de financiamiento\\n\\n72\\n00:03:18,068 --> 00:03:23,044\\nmuchísimos sistemas de recomendación y quien sabe cual funcionará mejor.\\n\\n73\\n00:03:23,044 --> 00:03:25,008\\nTenemos la oportunidad de intentarlos todos y ver cual falla.\\n\\n74\\n00:03:25,008 --> 00:03:27,088\\nHay un par de modelos interesantes de financiamiento,\\n\\n75\\n00:03:27,087 --> 00:03:30,006\\nuno, claro está, es el método estándar de publicidad,\\n\\n76\\n00:03:30,006 --> 00:03:35,008\\nvas a un montón de patrocinadores corporativos grandes y, en lugar de que financien un programa de tv\\n\\n77\\n00:03:35,008 --> 00:03:36,004\\nhaces que financien tu página web.\\n\\n78\\n00:03:36,003 --> 00:03:40,000\\nPero el más interesante es aquél en el que se hace lo mismo con grupos de personas\\n\\n79\\n00:03:40,000 --> 00:03:45,012\\ny en lugar de ir a IBM o Ford o a alguna gran compañía para que compren un banner de tu página web,\\n\\n80\\n00:03:45,012 --> 00:03:47,068\\nte acercas a gente que está realmente interesada en tus lectores,\\n\\n81\\n00:03:47,068 --> 00:03:50,076\\nsi tienes un weblog de diseño, te acercas a compañías de diseño;\\n\\n82\\n00:03:50,075 --> 00:03:53,087\\nsi tendrás un blog sobre política, te acercas a otros políticos;\\n\\n83\\n00:03:53,087 --> 00:03:58,003\\nposees un grupo muy específico de personas que están realmente interesadas en el asunto,\\n\\n84\\n00:03:58,003 --> 00:04:01,075\\neso es una audiencia que los publicistas realmente adoran.\\n\\n85\\n00:04:01,075 --> 00:04:04,067\\nOtra posibilidad para conseguir apoyo, es recurrir directamente a tus lectores,\\n\\n86\\n00:04:04,068 --> 00:04:07,072\\nporque puedes ver que en los blogs dice \"Quiero ir a New Hampshire\\n\\n87\\n00:04:07,072 --> 00:04:10,044\\npara cubrir las convenciones sobre política.\\n\\n88\\n00:04:10,044 --> 00:04:12,000\\n¿Me apoyarías?\"\\n\\n89\\n00:04:12,000 --> 00:04:13,003\\ny los lectores donarán su dinero\\n\\n90\\n00:04:13,003 --> 00:04:16,072\\npues al ser tan dedicados, sienten que tienen una especie de conexión personal\\n\\n91\\n00:04:16,072 --> 00:04:17,007\\ncon la persona que está escribiendo.\\n\\n92\\n00:04:17,007 --> 00:04:21,000\\nEstán ansiosos de gastar dinero para apoyarlo.\\n\\n93\\n00:04:21,000 --> 00:04:23,088\\nOtra, es que simplemente hagas trabajo voluntario,\\n\\n94\\n00:04:23,088 --> 00:04:27,004\\ntienes a gente que tiene un trabajo, pero es experta en algún tema\\n\\n95\\n00:04:27,004 --> 00:04:30,036\\ny simplemente disfrutan hablar de ello, entonces se dedican a escribir en su tiempo libre\\n\\n96\\n00:04:30,036 --> 00:04:31,043\\ny lo publican en internet;\\n\\n97\\n00:04:31,043 --> 00:04:34,000\\no tienen lectores en su web y contribuyen con algo\\n\\n98\\n00:04:34,000 --> 00:04:36,067\\ny se junta toda la información en una emocionante fuente.\\n\\n99\\n00:04:36,067 --> 00:04:39,003\\nEntonces creo que hay muchos experimentos interesantes,\\n\\n100\\n00:04:39,004 --> 00:04:41,000\\nla gente está experimentando muchas maneras distintas.\\n\\n101\\n00:04:41,000 --> 00:04:48,005\\nUno de los errores de la televisión, podría proveer un solo nivel de interés,\\n\\n102\\n00:04:48,005 --> 00:04:52,035\\nestaba financiada por la publicidad y no por el nivel de interés que tuviera la gente en el programa.\\n\\n103\\n00:04:52,036 --> 00:04:56,028\\nLos publicistas van a pagar lo mismo sin importar que tan atractivo sea,\\n\\n104\\n00:04:56,028 --> 00:04:58,016\\no que tan interesada se encuentre la audiencia.\\n\\n105\\n00:04:58,016 --> 00:05:01,092\\nEllo desembocaba en programas bastante aburridos que le resultaban atractivos a mucha gente,\\n\\n106\\n00:05:01,091 --> 00:05:04,003\\nporque era lo que los publicistas buscaban,\\n\\n107\\n00:05:04,004 --> 00:05:06,016\\nquerían a mucha gente viendo los programas.\\n\\n108\\n00:05:06,016 --> 00:05:08,028\\nMientras que en una economía de mercado normal, lo que sucedería es\\n\\n109\\n00:05:08,028 --> 00:05:10,036\\nque si realmente quieres algo pagas más por ello,\\n\\n110\\n00:05:10,036 --> 00:05:12,028\\nlo cual no es posible con la televisión.\\n\\n111\\n00:05:12,028 --> 00:05:15,004\\nUna de las cosas más interesantes sobre las transmisiones es que mucho de lo que te gusta\\n\\n112\\n00:05:15,004 --> 00:05:17,004\\ndepende de otras personas.\\n\\n113\\n00:05:17,004 --> 00:05:19,024\\nHay tantos programas de televisión,\\n\\n114\\n00:05:19,024 --> 00:05:20,002\\nhay todo tipo de programas desabridos,\\n\\n115\\n00:05:20,002 --> 00:05:22,000\\nentonces ¿qué pasa?, que tienes estos megahits\\n\\n116\\n00:05:22,000 --> 00:05:27,000\\ncomo American Idol o Lost, todo mundo habla de ellos\\n\\n117\\n00:05:27,000 --> 00:05:30,012\\nentonces también tienes que verlo para no quedar fuera de la conversación.\\n\\n118\\n00:05:30,012 --> 00:05:33,055\\nCualesquiera que sean los factores sociales involucrados,\\n\\n119\\n00:05:33,055 --> 00:05:35,067\\nhay un proceso en el que el rico se enriquece más,\\n\\n120\\n00:05:35,067 --> 00:05:40,036\\nalgo desaparece simplemente porque todo mundo lo está desapareciendo.\\n\\n121\\n00:05:40,036 --> 00:05:43,072\\nUn punto bueno sobre el internet es que permite tanta variedad,\\n\\n122\\n00:05:43,072 --> 00:05:48,000\\nque los productos obtienen mayor atención e interés.\\n\\n123\\n00:05:48,000 --> 00:05:50,076\\nSe han hecho análisis y los números comprueban, como un hecho matemático,\\n\\n124\\n00:05:50,076 --> 00:05:54,068\\nque siempre que un porcentaje de lo que te interesa, esté sin importar si otras personas\\n\\n125\\n00:05:54,067 --> 00:05:58,067\\nles gusta o no, terminarás con estos patrones de hits y fracasos.\\n\\n126\\n00:05:58,067 --> 00:06:01,072\\nSi tienes dos cosas que son equivalentes en calidad,\\n\\n127\\n00:06:01,072 --> 00:06:04,067\\nuna de ellas le gustará más a una persona que a la otra,\\n\\n128\\n00:06:04,067 --> 00:06:06,012\\ntú escogerás aquella,\\n\\n129\\n00:06:06,012 --> 00:06:08,004\\nhay una pequeña oportunidad de que te vayas con esa,\\n\\n130\\n00:06:08,004 --> 00:06:09,076\\ny todo mundo lo hará también.\\n\\n131\\n00:06:09,076 --> 00:06:11,016\\nY de pronto tienes Harry Potter,\\n\\n132\\n00:06:11,016 --> 00:06:14,088\\neste libro que surgió de la nada y que de pronto se convirtió en un hit masivo,\\n\\n133\\n00:06:14,088 --> 00:06:18,012\\nno porque esté mil veces mejor escrito que cualquier libro,\\n\\n134\\n00:06:18,012 --> 00:06:21,000\\nsino simplemente porque todo el mundo está leyéndolo.\\n\\n135\\n00:06:21,000 --> 00:06:23,007\\nY poner cosas en internet no cambia ese hecho,\\n\\n136\\n00:06:23,007 --> 00:06:27,003\\naún te interesa lo que les gusta a tus amigos, aún quieres leer sobre lo que todos hablan,\\n\\n137\\n00:06:27,004 --> 00:06:30,076\\no aún quieres hacer lo que es popular porque piensas que tal vez otras personas tienen una opinión válida\\n\\n138\\n00:06:30,076 --> 00:06:34,002\\ny tal vez quieres hablar con ellos sobre eso, y quieres sentirte parte de esta comunidad.\\n\\n139\\n00:06:34,002 --> 00:06:37,024\\nCualquiera que sea tu razón, mientras te interese la opinión de los demás,\\n\\n140\\n00:06:37,024 --> 00:06:38,007\\nvas a terminar con estos \"hits\".\\n\\n141\\n00:06:38,007 --> 00:06:39,003\\nTienes este significante por el cual todo mundo se interesa.\\n\\n142\\n00:06:39,004 --> 00:06:41,068\\nTienes este significante por el cual todo mundo se interesa.\\n\\n143\\n00:06:41,067 --> 00:06:45,007\\nTodo mundo está viendo American Idol, sin importar lo bueno o malo del programa,\\n\\n144\\n00:06:45,007 --> 00:06:49,048\\ndigo, tiene que estar decente para que la gente lo vea, pero una vez que todos lo ven,\\n\\n145\\n00:06:49,048 --> 00:06:54,002\\nhablan sobre él, se convierte en un megahit sin ninguna razón aparente,\\n\\n146\\n00:06:54,002 --> 00:06:56,007\\nsimplemente porque es un fenómeno social.\\n\\n147\\n00:06:56,007 --> 00:07:00,005\\nY lo que la televisión hace es promover ese programa y quitar los demás\\n\\n148\\n00:07:00,005 --> 00:07:03,003\\nprogramas que a la gente podrían gustarle pero que no les interesa lo suficiente como para que sean megahits.\\n\\n149\\n00:07:03,004 --> 00:07:06,068\\nEntonces se invierte todo el dinero en estos programas baratos.\\n\\n150\\n00:07:06,067 --> 00:07:08,072\\nClaro que no puedes deshacerte de estos hits,\\n\\n151\\n00:07:08,072 --> 00:07:11,004\\nes un hecho que la gente quiere hacer lo que sus amigos,\\n\\n152\\n00:07:11,004 --> 00:07:15,052\\nes inevitable, pero lo que sí se puede es: hay todo un \"resto del mundo\",\\n\\n153\\n00:07:15,052 --> 00:07:19,000\\nun resto del mundo que prefiere hacer algo diferente a lo que todos los demás hacen.\\n\\n154\\n00:07:19,000 --> 00:07:22,004\\nTodos tienen intereses particulares, algo que les fascina,\\n\\n155\\n00:07:22,004 --> 00:07:25,072\\ny lo que hace el internet es darles la oportunidad de hacerlo.\\n\\n156\\n00:07:25,072 --> 00:07:29,007\\nInvolucrarse y encontrar a más gente que comparta sus mismo intereses.\\n\\n157\\n00:07:29,007 --> 00:07:33,024\\nUna de las cosas emocionantes de Wikipedia es que no solamente tiene artículos sobre,\\n\\n158\\n00:07:33,024 --> 00:07:36,002\\nno sé, las 100 cosas más populares o las mil cosas más populares,\\n\\n159\\n00:07:36,002 --> 00:07:39,028\\nsino que además puedes encontrar hasta el tema más extraño en el mundo, ¡ahí está!\\n\\n160\\n00:07:39,028 --> 00:07:43,004\\nPorque para todo, hay alguien muy interesado\\n\\n161\\n00:07:43,004 --> 00:07:46,006\\ny es lo que la televisión y la radio no proveen, pero la internet ¡sí!\\n\\n162\\n00:07:46,005 --> 00:07:50,007\\nProvee una manera en la uno puede ponerse en contacto con todas esas otras personas que realmente\\n\\n163\\n00:07:50,007 --> 00:07:52,048\\nestán interesadas en esta cosa extraña.\\n\\n164\\n00:07:52,048 --> 00:07:56,004\\nNo solamente va en dirección del tema, sino también en dirección del tiempo.\\n\\n165\\n00:07:56,004 --> 00:07:58,052\\nPuedes regresar y encontrar programas cancelados,\\n\\n166\\n00:07:58,052 --> 00:08:00,084\\nencontrar los artículos que han sido \"borrados\",\\n\\n167\\n00:08:00,084 --> 00:08:04,004\\npuedes volver y encontrarlo todo; lo que estaba perdido en la cultura\\n\\n168\\n00:08:04,004 --> 00:08:05,048\\ntiene un lugar en el internet.\\n\\n169\\n00:08:05,048 --> 00:08:09,067\\nYoutube tiene videos de los 70s y 80s casi imposibles de encontrar ahora.\\n\\n170\\n00:08:09,067 --> 00:08:11,048\\nTodos puedes encontrarlos.\\n\\n171\\n00:08:11,048 --> 00:08:13,067\\nCreo que disminuir el poder de los hits,\\n\\n172\\n00:08:13,067 --> 00:08:16,072\\ny bajarlos para hacer todo más igualitario\\n\\n173\\n00:08:16,072 --> 00:08:18,007\\nes algo por lo que deberíamos luchar.\\n\\n174\\n00:08:18,007 --> 00:08:21,007\\nTal vez será muy difícil, puede no ser súper posible\\n\\n175\\n00:08:21,007 --> 00:08:24,007\\npero es algo que puede movernos\\n\\n176\\n00:08:24,007 --> 00:08:26,072\\ny lo que ello significa es\\n\\n177\\n00:08:26,072 --> 00:08:31,002\\ndejar de lado, lo más que se pueda, todas las cosas que se les parezcan, por ejemplo:\\n\\n178\\n00:08:31,002 --> 00:08:34,004\\n\"deberías hacer esto porque a otras personas les gusta\".\\n\\n179\\n00:08:34,004 --> 00:08:37,052\\nEs muy tentador cuando estás construyendo una página web o programando\\n\\n180\\n00:08:37,052 --> 00:08:39,087\\ncomenzar a situar lo popular al principio\\n\\n181\\n00:08:39,087 --> 00:08:43,011\\npero lo único que logras, es hacer todo menos democrático y menos justo,\\n\\n182\\n00:08:43,011 --> 00:08:48,027\\ndeberías querer intentarlo constantemente y llevar lo \"no tan popular\" a donde estaba \"lo popular\",\\n\\n183\\n00:08:48,028 --> 00:08:51,043\\ndar a todos una oportunidad de ver todo y si lo haces,\\n\\n184\\n00:08:51,043 --> 00:08:53,072\\ntal vez no te libres del todo de los hits,\\n\\n185\\n00:08:53,072 --> 00:08:55,067\\npero puedes empezar a hacerlo.\\n\\n186\\n00:08:55,067 --> 00:08:59,004\\nDigo, ese es uno de los poderes de la \"minería de datos\", te ayuda a encontrar temas casi desaparecidos\\n\\n187\\n00:08:59,004 --> 00:09:01,087\\nque no hubieras descubierto simplemente porque no son populares.\\n\\n188\\n00:09:01,087 --> 00:09:03,091\\nUna de las herramientas de recomendación\\n\\n189\\n00:09:03,091 --> 00:09:06,091\\npuede ser que vayas a lo menos popular en el internet.\\n\\n190\\n00:09:06,091 --> 00:09:10,000\\nEl \"artículo aleatorio\" en Wikipedia es muy interesante en este sentido,\\n\\n191\\n00:09:10,000 --> 00:09:13,024\\nal despertar todos los días puedes leer de algún tema desconocido y aleatorio,\\n\\n192\\n00:09:13,024 --> 00:09:17,008\\nalgo de lo que nunca habías escuchado, excepto porque hay un artículo en Wikipedia sobre ello.\\n\\n193\\n00:09:17,008 --> 99:59:59,000\\nY ¡créeme!, realmente hay temas muy extraños en Wikipedia.',\n", + " 'bytes': 18779,\n", + " 'sha1': 'apnsy4aqoz6qg1sayfrmlpm4k0bk9x0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100364817,\n", + " 'timestamp': '2013-07-20T21:19:52Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 27357002,\n", + " 'title': 'Aaron Swartz - The Network Transformation.webm.tr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:03,001 --> 00:00:08,012 Medyanın yapısını değişiyor olması, toplumları kontrol etmenin de değişmesi anlamına geliyor 2 00:00:08,012 --> 0...'\",\n", + " 'text': '\\ufeff1\\n00:00:03,001 --> 00:00:08,012\\nMedyanın yapısını değişiyor olması, toplumları kontrol etmenin de değişmesi anlamına geliyor\\n\\n2\\n00:00:08,012 --> 00:00:11,006\\nYayın mekanizmasında her haber / bilgi istasyonunda bir kişi bulunur\\n\\n3\\n00:00:11,006 --> 00:00:13,007\\nve bu kişi hangi bilginin ve yayının insanlara yayılması gerektiğine karar verir.\\n\\n4\\n00:00:13,007 --> 00:00:17,067\\nInterenet gibi herkesin bilgi kaynağı olabildiği bir ilişki ortamı olduğu zaman\\n\\n5\\n00:00:17,068 --> 00:00:20,088\\nArtık bilgiye ulaşmak isteyen ile ne türlü bilgilerin yayılmasına karar veren ve engelleyen bir mekanizma artık yoktur\\n\\n6\\n00:00:20,088 --> 00:00:22,004\\nVe her bilgisayar artık bunu yapmaktadır.\\n\\n7\\n00:00:22,004 --> 00:00:27,012\\nEvinize bir bilgisayar alıp onu bilgi yaymak için kullanırsanız / server gibi kullanırsanır, bu bilgisayar artık müzik ve filmleri insanlara yayabilme olasılığına ulaşmıştır.\\n\\n8\\n00:00:27,012 --> 00:00:31,068\\nşuanda websiteleri, emailler ve sosyal medya, şuanda dünyanın en büyük bilgisayarları olan google bilgisayarları ile aynı işi yapabilirler.\\n\\n9\\n00:00:31,068 --> 00:00:31,076\\nTemelde bu en büyük bilgisayar ile Iraktaki bilgi odaların /server odaları arasında neredeyse hiç bir fark yoktur.\\n\\n10\\n00:00:31,076 --> 00:00:35,051\\n.\\n\\n11\\n00:00:35,051 --> 00:00:38,003\\nevlerde bulunan bilgisayarlarda aynı özelliğe sahiptirler\\n\\n12\\n00:00:38,003 --> 00:00:39,006\\nEski tip yayın ve bilgi paylaşımında\\n\\n13\\n00:00:39,006 --> 00:00:42,076\\nSizler temelde ne kadar bilginin paylaşıması gerektiğine karar verildiğinden limitli bilgiye ulaşabiliyordunuz.\\n\\n14\\n00:00:42,076 --> 00:00:46,043\\nEn fazla 10 kanal insanlar ile paylaşılabiliyordu\\n\\n15\\n00:00:46,043 --> 00:00:48,067\\nkablolu TVlerde 500 kadar kanal paylaşılıyordu.\\n\\n16\\n00:00:48,067 --> 00:00:50,076\\nInternette is herkes bir kanala sahiptir\\n\\n17\\n00:00:50,076 --> 00:00:53,008\\nHer kes bir blog / site / MYspace sayfalarına sahip olabilirler.\\n\\n18\\n00:00:53,008 --> 00:00:55,048\\nherkesin artık kendi bilgilerini aktarabilir ve kendini ifade edebilir\\n\\n19\\n00:00:55,048 --> 00:00:57,072\\nve şuanda gördüğümüz artık kavadan gelen TV sinyallerinin soru olmaktan çıkmasıdır\\n\\n20\\n00:00:57,072 --> 00:00:59,028\\nsoru olmaktan çıkmasıdır\\n\\n21\\n00:00:59,027 --> 00:01:00,083\\nŞuanda asıl soru bu bilgileri ve paylaşımları\\n\\n22\\n00:01:00,084 --> 00:01:02,008\\nkimin kontrol edeceğidir\\n\\n23\\n00:01:02,008 --> 00:01:05,043\\nŞu anda gücü merkezleştiren google gibi siteleri görmeye başladık\\n\\n24\\n00:01:05,043 --> 00:01:08,006\\nBu siteler bizlere \"Kapı Tutucular\" nereye gitmemiz konusunda yönlendirmeye başladılar\\n\\n25\\n00:01:08,006 --> 00:01:11,006\\nİnsanların sizlere sunduğu haberleri ve bilgileri yönlendirebiliyorlar.\\n\\n26\\n00:01:11,006 --> 00:01:15,028\\nbu sadece bazı insanların konuşma hakları olmadıkları anlamına geliyor\\n\\n27\\n00:01:15,028 --> 00:01:16,068\\nşuanda internet sayesinde artık herkes konuşma lisansına sahip,\\n\\n28\\n00:01:16,067 --> 00:01:19,003\\nŞuanda asıl soru kimin duyulacağı ile ilgili.\\n\\n29\\n00:01:19,004 --> 00:01:22,068\\nEn büyük sorulardan birisi, çok fazla bilgisini ve tecrübesini paylaşmak insan ortaya çıktı.\\n\\n30\\n00:01:22,067 --> 00:01:24,003\\nŞuanda bunlardan hangisinin iyi olduğunu nasıl bulacaksınız?\\n\\n31\\n00:01:24,004 --> 00:01:27,036\\nEski tip medya sistemi olan CNNnin gittiği yoldan mı gideceğiz.\\n\\n32\\n00:01:27,036 --> 00:01:29,028\\nBir kaç insana büyük anlamlar yükleyip, tüm insanları onlara mı odaklatacağız\\n\\n33\\n00:01:29,028 --> 00:01:30,028\\nve onlar ne derse onu mu dinleyeceğiz\\n\\n34\\n00:01:30,028 --> 00:01:32,002\\nveya iherkesin sesini duyurabildiği daha demokratik olan\\n\\n35\\n00:01:32,001 --> 00:01:35,048\\ninternet gibi birşey ile mi yolumuza devam edeceğiz.\\n\\n36\\n00:01:35,048 --> 00:01:38,043\\nŞuanda bir çok teknoloji adı işbirliği yapan filtreleme olan\\n\\n37\\n00:01:38,043 --> 00:01:40,007\\nçok ilgiç bir teknoloji bunu sağlamaktadır.\\n\\n38\\n00:01:40,007 --> 00:01:43,067\\nherkesin kendi fikrini ve neyi sevip sevmediğini gösterdikten sonra buna göre ayırt ederek\\n\\n39\\n00:01:43,067 --> 00:01:47,043\\nbilgisayarlar seni otomatik olarak aynı önceliklere sahip olabileceğin diğer insanlara yönlendirmektedir\\n\\n40\\n00:01:47,043 --> 00:01:50,075\\nsenin daha önce hiç bilmediğin bir şeyi sırf sevdiğin takip ettiğin insanlar seviyor diye tavsiye edebilmektedir.\\n\\n41\\n00:01:50,075 --> 00:01:52,083\\nAynı sistem Amazonda veya diğer alışveriş sitelerinde de vardır\\n\\n42\\n00:01:52,084 --> 00:01:55,016\\nsana senin aldığın kitabı aldığında, bu kitabı alanlar şu kitabı da satın aldı diyerek otomatik olarak tavsiye etmektedir.\\n\\n43\\n00:01:55,016 --> 00:01:58,000\\ninsanlar bu tavsiyeleri sadece kitaplarda değil\\n\\n44\\n00:01:58,000 --> 00:02:01,012\\nbloglar, websiteleri, yeni hikayelerde de tüm internet dünyasında denemektedirler.\\n\\n45\\n00:02:01,012 --> 00:02:04,004\\nOnlar şimdiye kadar hiç duymadığınız ve görmediğiniz şeyleri de\\n\\n46\\n00:02:04,004 --> 00:02:06,002\\nsizin önünüze getirmektedirler.\\n\\n47\\n00:02:06,001 --> 00:02:08,003\\nBüyük medya kuruluşlar büyük paradox ve çelişkidedirler,\\n\\n48\\n00:02:08,003 --> 00:02:10,036\\nçünkü çok fazla sayıda dinleyiciye ulaşmak arzusundadırlar\\n\\n49\\n00:02:10,036 --> 00:02:12,075\\naynı zamanda da herkesin bireysel olduğu konusunda insanları ikna etmeye uğraşmaktadırlar.\\n\\n50\\n00:02:12,075 --> 00:02:15,036\\nŞuanda tüm reklamlarda sürekli olarak\\n\\n51\\n00:02:15,036 --> 00:02:17,006\\n\"para harcatma ve bu kot pantolonu satın almalısın\" trendi mevcuttur, değil mi?\\n\\n52\\n00:02:17,006 --> 00:02:20,027\\nÇünkü o sırada 4 milyon insan o probramı izliyordur,\\n\\n53\\n00:02:20,027 --> 00:02:24,000\\nBu 4 milyon kişi ile trendi kontrol edemezsiniz.\\n\\n54\\n00:02:24,000 --> 00:02:27,003\\nŞuanda internet aslında bu niş şeyleri gerçeklendiriyor\\n\\n55\\n00:02:27,003 --> 00:02:29,003\\neski tip medya bu işten çok fazla korkmuş durumda\\n\\n56\\n00:02:29,003 --> 00:02:33,048\\nartık binlerce insanları kontrol edebildiğiniz ve sizin olan bir topluluk artık yok\\n\\n57\\n00:02:33,048 --> 00:02:36,027\\nartık çok fazla teoriden öte, bunu internetten yapabilirsiniz.\\n\\n58\\n00:02:36,027 --> 00:02:40,055\\nVe biz artık bu gelişmelerin büyük tekel güçlerin, güçlerini kaybettiklerini görmeye başladık\\n\\n59\\n00:02:40,056 --> 00:02:42,048\\nve bu gücün küçük gruplara kaymaya başladığını görmeye başladık.\\n\\n60\\n00:02:42,048 --> 00:02:47,027\\nBu sistemde bazı temel konulardan olan ekonomik olarak bu insanların nasıl gelir elde edeceğidir.\\n\\n61\\n00:02:47,027 --> 00:02:50,051\\nbu durumda bu küçük websitesi, blog sahipleri para kazanacaklar ve hayatta kalacaklardır\\n\\n62\\n00:02:50,051 --> 00:02:53,006\\naraştırmaca gazetecinin yaptığı gibi\\n\\n63\\n00:02:53,006 --> 00:02:55,092\\nçünkü burada çok büyük reklam kaynağı vardır.\\n\\n64\\n00:02:55,092 --> 00:02:59,088\\nBurada insan bulmak sorusu olduğunu biliyoruz, ben ilgilendiğim insanları nasıl bulacağım\\n\\n65\\n00:02:59,087 --> 00:03:02,007\\nve sözüne değer verilebilen ve güvenli insaları\\n\\n66\\n00:03:02,008 --> 00:03:04,072\\nve tüm bunlar için yeni teknolojiler mevcuttur\\n\\n67\\n00:03:04,072 --> 00:03:06,068\\ninsalar farklı ve çeşitli şeyleri denemektedirler\\n\\n68\\n00:03:06,068 --> 00:03:08,028\\ntüm bunlar internet hakkında farklı şeyler söylemektedirler\\n\\n69\\n00:03:08,027 --> 00:03:12,003\\nbu konuda hale deneylemeler devam etmektedir, şuanda herkes bir websitesi veya blog başlatabilmektedir\\n\\n70\\n00:03:12,003 --> 00:03:15,067\\nbunlar yeni teknolojiler ve bu tip sorunları çözmek için çalışmaktadır.\\n\\n71\\n00:03:15,068 --> 00:03:18,068\\nŞuanda para kazanma ile ilgili çok farklı modeller mevcuttur.\\n\\n72\\n00:03:18,068 --> 00:03:23,044\\ngelirmodeli ile ilgili çok fazla tavsiye olduğu gibi hangisinin en iyi çalışağı ile ilgili yorumlar vardır\\n\\n73\\n00:03:23,044 --> 00:03:25,008\\nbiz bunların hepsini denemeli ve hangisinin çalışmadığını denemeli ve görmeliyiz\\n\\n74\\n00:03:25,008 --> 00:03:27,088\\nMeselsa bazı çok ilginç gelir modeli:\\n\\n75\\n00:03:27,087 --> 00:03:30,006\\nTabiki standart reklam modeli\\n\\n76\\n00:03:30,006 --> 00:03:35,008\\nbüyük reklam verren firmalara gidip onlara TV yerine size reklam vermelerine ikna etme\\n\\n77\\n00:03:35,008 --> 00:03:36,004\\nsayfanızı böylece yayında tutabilirsiniz\\n\\n78\\n00:03:36,003 --> 00:03:40,000\\nama daha ilginç olanı niş / özel gruplara odaklanmak\\n\\n79\\n00:03:40,000 --> 00:03:45,012\\nBüyük IBM/FORD gibi firmalara gitmektense ve onların sitenizden banner ve reklam yeri satın almasını sağlamaktansa\\n\\n80\\n00:03:45,012 --> 00:03:47,068\\ndirek olarak sizi okuyan insanlara gidebilirsiniz\\n\\n81\\n00:03:47,068 --> 00:03:50,076\\neğer design ile ilgili bir websitesi ve blog\\'unuz var ise , dizayn firmalarına gidebilirsiniz\\n\\n82\\n00:03:50,075 --> 00:03:53,087\\neğer politik bir blogunuz var ise, politikacılara gidebilirsiniz\\n\\n83\\n00:03:53,087 --> 00:03:58,003\\nÇok dar ama konunuz ile ilgilenen insalara gidebilirsiniz\\n\\n84\\n00:03:58,003 --> 00:04:01,075\\nbu bir izleyici tabanlı reklam verenlerdir ve çok severler\\n\\n85\\n00:04:01,075 --> 00:04:04,067\\ndiğer mümkün olan okuyucularınıza gidip onlardan yardım ve gelir isteyebilirsiniz\\n\\n86\\n00:04:04,068 --> 00:04:07,072\\nbir blog gördünüz, NEW HAMSPSHIRE (Amerikada bir şehir) \\'e Amerkian politik kongresine\\n\\n87\\n00:04:07,072 --> 00:04:10,044\\ngitmek için bütçe yaratmaya çalışıyorum diyen\\n\\n88\\n00:04:10,044 --> 00:04:12,000\\nbeni destekler misiniz (Maddi Olarak)?\\n\\n89\\n00:04:12,000 --> 00:04:13,003\\nve sizin takipçileriniz, okuyucularınız size para dökeceklerdir\\n\\n90\\n00:04:13,003 --> 00:04:16,072\\nbu tip yazarlar site sahipleri, temelden insanlar / takipçileri ile çok güçlü bağları vardır.\\n\\n91\\n00:04:16,072 --> 00:04:17,007\\nkişiler yazılarından dolayı bir bağlantı\\n\\n92\\n00:04:17,007 --> 00:04:21,000\\ninsanlar / takipçileri onu desteklemek için para harcamaya hazırdırlar!\\n\\n93\\n00:04:21,000 --> 00:04:23,088\\nDiğeri ise bu işi gönüllü olarka yapmaktır\\n\\n94\\n00:04:23,088 --> 00:04:27,004\\ntek günlük bilgisini aktaracak bir günlük işi olan insanlar mevcuttur\\n\\n95\\n00:04:27,004 --> 00:04:30,036\\nboş zamanlarında bilgilerini aktarmak için konuşmaktan hoşanan insanlar vardır\\n\\n96\\n00:04:30,036 --> 00:04:31,043\\nve bunu internette yaymaktan hoşlanan insanlar\\n\\n97\\n00:04:31,043 --> 00:04:34,000\\nveya okuyucuları var olan, sitelerini okuyan ve destek olan insanlar\\n\\n98\\n00:04:34,000 --> 00:04:36,067\\nve bu çok heyecanlandırıcı bir gelir kaynağıdır.\\n\\n99\\n00:04:36,067 --> 00:04:39,003\\nBenim düşünce çok fazla ilginç deneylerin olduğu yönündedir,\\n\\n100\\n00:04:39,004 --> 00:04:41,000\\ninsanlar çok fazla değişik yolu deniyorlar\\n\\n101\\n00:04:41,000 --> 00:04:48,005\\nBüyük bir hatalardan birisi TVlerde değil mi, sadece tek bir ilgi çeken noktaya odaklanmaktadırlar\\n\\n102\\n00:04:48,005 --> 00:04:52,035\\nsadece reklam ve ne kadar çok insanın ilgisinin çekileceği üzerine kurulmuş bir sistem\\n\\n103\\n00:04:52,036 --> 00:04:56,028\\nreklam vericiler ne kadar ilginç veya ilgi uyandırdığına bakmadan reklam veriyorlardı\\n\\n104\\n00:04:56,028 --> 00:04:58,016\\nveya izleyicilerin gerçekten programa önem verip vermediklerini bilmeden\\n\\n105\\n00:04:58,016 --> 00:05:01,092\\nbu genelde çok fazla insanın izlediği fakat sıkıcılığı çok fazla kişi taradından da kabul edilen şekilde son buluyordu\\n\\n106\\n00:05:01,091 --> 00:05:04,003\\nçünkü reklam vericilerin istedikleri\\n\\n107\\n00:05:04,004 --> 00:05:06,016\\nçok fazla insanın izlediği programlardı\\n\\n108\\n00:05:06,016 --> 00:05:08,028\\naslında normal market ekonomisinin olduğu ortamda olan şey\\n\\n109\\n00:05:08,028 --> 00:05:10,036\\neğer birşeyi çok fazla istiyorsan çok para ödersin\\n\\n110\\n00:05:10,036 --> 00:05:12,028\\nbunu TV ile yapmak imkansızdır\\n\\n111\\n00:05:12,028 --> 00:05:15,004\\nBu durumda yayınlar ile ilgili çok ilginç olan kısım, çok fazla sevilen şey\\n\\n112\\n00:05:15,004 --> 00:05:17,004\\ndiğer insanların bir şeyi ne kadar sevdiği ile ilgilidir\\n\\n113\\n00:05:17,004 --> 00:05:19,024\\ndışarıda çok fazla Show var\\n\\n114\\n00:05:19,024 --> 00:05:20,002\\nçok fazla kibar olan showlardır bunlar\\n\\n115\\n00:05:20,002 --> 00:05:22,000\\nsonuçta ne olur, bu megahit çok izlenen programlar LOST veya\\n\\n116\\n00:05:22,000 --> 00:05:27,000\\nYetenek Sizsiniz gibi programlar, herkesin hakkında konuştuğu programlar\\n\\n117\\n00:05:27,000 --> 00:05:30,012\\nbu programları izlemek zorundasınız yoksa insanların hep beraber yaptıkları olaylardan uzak kalmış olursunuz\\n\\n118\\n00:05:30,012 --> 00:05:33,055\\nbunu üzerine sosyal faktörlerden olan\\n\\n119\\n00:05:33,055 --> 00:05:35,067\\nbu temel olan zengin daha zengin olur süreci\\n\\n120\\n00:05:35,067 --> 00:05:40,036\\nsadece bir şey, bir program çok ünlü olur ve büyük çıkış yapar çünkü herkes aynı şeyi yapmayı başlar\\n\\n121\\n00:05:40,036 --> 00:05:43,072\\nInternetin bu durumda en güzel yanı insanlara çok fazla çeşit sunmaktadır\\n\\n122\\n00:05:43,072 --> 00:05:48,000\\nniş çok özel konular ve ürünler bile dikkat ve ilgi çekebilirler\\n\\n123\\n00:05:48,000 --> 00:05:50,076\\nBöylece rakamlar konuşur ve bu matematiksel olarak kanıtlanmış bir gerçeklemdir.\\n\\n124\\n00:05:50,076 --> 00:05:54,068\\nSen belirli bir oranda insanın ilgisini, senin odaklandığın konuda çekersen\\n\\n125\\n00:05:54,067 --> 00:05:58,067\\nve eğer diğer insanlarda bunu severler ise sen bu durumda başarılı veya başarısız olarak sonuçlarına ulaşırsın\\n\\n126\\n00:05:58,067 --> 00:06:01,072\\neğer bir birine eşit ve aynı kalitede sunulmuş iki konun var ise\\n\\n127\\n00:06:01,072 --> 00:06:04,067\\nbirisi diğerinden biraz daha fazla insan tarafından bile takip ediliyor olsa\\n\\n128\\n00:06:04,067 --> 00:06:06,012\\nsen doğal olarak daha fazla ilgi\\n\\n129\\n00:06:06,012 --> 00:06:08,004\\nçekene biraz daha fazla şans olduğu için gideceksindir\\n\\n130\\n00:06:08,004 --> 00:06:09,076\\nve herkes aynısını yapmaya başlayacaktır\\n\\n131\\n00:06:09,076 --> 00:06:11,016\\nve en sonunda aniden bir Harry Potter\\'ın olacaktır\\n\\n132\\n00:06:11,016 --> 00:06:14,088\\nBu kitabın ve filmin aniden bu kadar ünlü olmasının sebebi de budur.\\n\\n133\\n00:06:14,088 --> 00:06:18,012\\nHiç bir şekilde diğer binlerce kitaptan daha iyi yazıldığı ile ilgisi yoktur\\n\\n134\\n00:06:18,012 --> 00:06:21,000\\nçok basit olarak herkes bu kitabı okumaya yönelince bu durum oluşmuştur.\\n\\n135\\n00:06:21,000 --> 00:06:23,007\\nBazı şeyleri internete koymak da aynı temeldedir\\n\\n136\\n00:06:23,007 --> 00:06:27,003\\nsen hala arkadaşlarının ne sevdiği ile ilgilenmek durumundasın, sen hala insanların hakkında konuştuğu şeyi okumak istersin\\n\\n137\\n00:06:27,004 --> 00:06:30,076\\nhala populer olanı yapmak istersin çünkü diğer insanların bu konuya odaklanmasının geçerli bir nedeni olduğunu düşünürsün\\n\\n138\\n00:06:30,076 --> 00:06:34,002\\nve belki sen de bu konuda konuşmak istersin, bu topluluğa ait olmak istesin\\n\\n139\\n00:06:34,002 --> 00:06:37,024\\nsebebi ne olursa olsun, sen diğer insanların ne düşündüğünü önemsedikçe\\n\\n140\\n00:06:37,024 --> 00:06:38,007\\nkonular ve internette yayımlanan herşey de aynı şekilde hit olan ve olmayanlar olarak sonuçlanacaktır.\\n\\n141\\n00:06:38,007 --> 00:06:39,003\\nSen sadece insanların sevdikleri şeye odaklanırsın,\\n\\n142\\n00:06:39,004 --> 00:06:41,068\\nbu sosyan bir belirleyicidir\\n\\n143\\n00:06:41,067 --> 00:06:45,007\\nherkes Yetenek Sizsinizi izliyor ise, bu programın ne kadar kaliteli olduğu önemli değildir\\n\\n144\\n00:06:45,007 --> 00:06:49,048\\nDemeye çalıştığım yüksek miktarda insan bu programı izlediğinden, ama bunu izleyip, bu konuda konuşmaya başladıklarında\\n\\n145\\n00:06:49,048 --> 00:06:54,002\\nBiliriz ki çok kısa süre sonunda Megahit olur ve bunun hiç bir sebebi olmaz,\\n\\n146\\n00:06:54,002 --> 00:06:56,007\\nevet doğru, çünkü sadece sosyal bir fenomen ve çok izlenen olmuştur\\n\\n147\\n00:06:56,007 --> 00:07:00,005\\nve TV nin yaptığı, diğer tüm showları yok etmesidir\\n\\n148\\n00:07:00,005 --> 00:07:03,003\\ninsanları bu megahit durumunu kontrol etmek isteselerde kimin megahit olduğu konusunda ilgilenmezler\\n\\n149\\n00:07:03,004 --> 00:07:06,068\\ntüm paralarını bu ucuza üretilmiş showlara aktarırlar\\n\\n150\\n00:07:06,067 --> 00:07:08,072\\nbu konuda hit olma durumunda kaçamazsınız, değil mi?\\n\\n151\\n00:07:08,072 --> 00:07:11,004\\ninsanlar çok basit olarak arkadaşları ne yapıyorlarsa onu yapmak isterler\\n\\n152\\n00:07:11,004 --> 00:07:15,052\\nbu konu doğrudur, faka tüm dünya dışarıda durmaktadır,\\n\\n153\\n00:07:15,052 --> 00:07:19,000\\nçok fazla insan diğer insanların dikkate aldıklarını kesinlikle dikkate alıp onların yaptıkalrını yapacaklarıdır\\n\\n154\\n00:07:19,000 --> 00:07:22,004\\nHerkesin kendine has ilgisi vardır, herkesi heyecanlandıran ve harekete geçiren farklı konular vardır\\n\\n155\\n00:07:22,004 --> 00:07:25,072\\nve internet bu ilgi alanları ile ilgili yapmaya izin vermektedir\\n\\n156\\n00:07:25,072 --> 00:07:29,007\\nbu konuda daha fazla işin içinde olmak için sizin ile ilgili aynı şeyleri düşünen insanlara bulmak gereklidir\\n\\n157\\n00:07:29,007 --> 00:07:33,024\\nWikipedia hakkında çok önemli olan durum sadece içindeki makaleler değildir.\\n\\n158\\n00:07:33,024 --> 00:07:36,002\\nBiliyorsunuz 100lerce veya binlerce çok popüler konu vardır\\n\\n159\\n00:07:36,002 --> 00:07:39,028\\ndünyada hiç bilinmeyen bir konuyu alıp onun ile ilgili bir makale veya yazı bulabilirsiniz\\n\\n160\\n00:07:39,028 --> 00:07:43,004\\nÇünkü herhangi birşey ile ilgilinen dünyanın farklı yerinde bir kişi daha mevcuttur\\n\\n161\\n00:07:43,004 --> 00:07:46,006\\nişte bunu ne radyo ne de Televizyonlar sağlamamaktadırlar\\n\\n162\\n00:07:46,005 --> 00:07:50,007\\nInterner bir şekilde farklı insanlarınilgisini çeken şeye odaklanmanızı ve o konuda\\n\\n163\\n00:07:50,007 --> 00:07:52,048\\nbilgi almanızı sağlar\\n\\n164\\n00:07:52,048 --> 00:07:56,004\\nSadeec bilgi değil ek olarak internet o bilgi ile ilgili zamansal olarak da gerilere gitmenizi sağlayacaktır\\n\\n165\\n00:07:56,004 --> 00:07:58,052\\nÇok eskilere gidip artık kapatılmış ve dinlenmeyen izlenmeyen bilgilere bile ulaşabilirsiniz\\n\\n166\\n00:07:58,052 --> 00:08:00,084\\ntüm silinmiş makalelere bile ulaşabilirsiniz\\n\\n167\\n00:08:00,084 --> 00:08:04,004\\ntüm bu güçlenmiş boğucu kültürde silinmiş bilgilere bile ulaşabilirsiniz\\n\\n168\\n00:08:04,004 --> 00:08:05,048\\nbu bilgiler internette mevcuttur\\n\\n169\\n00:08:05,048 --> 00:08:09,067\\n70lerden 80 lerden kalan müzikleri youtube dan izleyebilirsiniz, bunları başka hiçbir yerde bulamaz ve dinleyemezsiniz\\n\\n170\\n00:08:09,067 --> 00:08:11,048\\nbunu sebestçe izleyebilir ve dinleyebilirsiniz\\n\\n171\\n00:08:11,048 --> 00:08:13,067\\nBence, hitlerin gücünü azaltmanın\\n\\n172\\n00:08:13,067 --> 00:08:16,072\\naşağıda kalmış şeyleri yukarı çıkarmak ve bunları daha eşitlikçi bir zemine getirmek\\n\\n173\\n00:08:16,072 --> 00:08:18,007\\nbizim için çabalanması gereken bir konudur\\n\\n174\\n00:08:18,007 --> 00:08:21,007\\nbu çok zordur ve çok fazla da mümkün olmayabilir\\n\\n175\\n00:08:21,007 --> 00:08:24,007\\nbu konuda ümitlenmek ve bunun için çabalamalıyız\\n\\n176\\n00:08:24,007 --> 00:08:26,072\\nbunun anlamı şudur\\n\\n177\\n00:08:26,072 --> 00:08:31,002\\nhit verilen ve hitleşen çoğu şeyi silip atmalıyız\\n\\n178\\n00:08:31,002 --> 00:08:34,004\\nçünkü bunu diğer insanlar sevdi diye yapmıştın\\n\\n179\\n00:08:34,004 --> 00:08:37,052\\nWebsitesi izlemek ve ve bir sistemi programlamak çok heyecanlandırıcıdır\\n\\n180\\n00:08:37,052 --> 00:08:39,087\\nve bu çok polüler olan şeylerin çok fazla azaltılması çok önemlidir\\n\\n181\\n00:08:39,087 --> 00:08:43,011\\nbu hit konular sistemi daha az demokratik ve daha az eşitlikçi yapmaktadır\\n\\n182\\n00:08:43,011 --> 00:08:48,027\\nSürekli olarak haklarını isteyerek, deneyerek ve dipteki şeyleri yukarı çekerek\\n\\n183\\n00:08:48,028 --> 00:08:51,043\\ntüm insanlara eşit şans vermek çok önemlidir.\\n\\n184\\n00:08:51,043 --> 00:08:53,072\\nbunu yatığımızda belki bu hitlerden kurtulamayız,\\n\\n185\\n00:08:53,072 --> 00:08:55,067\\nAma bu daha az hit almış konuları destekleyerek onların bazı problemlerine çözüm bulabilirsin\\n\\n186\\n00:08:55,067 --> 00:08:59,004\\nDemeya çalıştığım, bilgi kaynaklandırması belirsiz konuları bulup onları inşa etmektir\\n\\n187\\n00:08:59,004 --> 00:09:01,087\\nbu konuları bulmak çok zordur çünkü populer değildirler.\\n\\n188\\n00:09:01,087 --> 00:09:03,091\\nBu tavsiye programlarını biliyorsunuzdur,\\n\\n189\\n00:09:03,091 --> 00:09:06,091\\nbu programlar daha az populer konuları yukarı çekebilirler\\n\\n190\\n00:09:06,091 --> 00:09:10,000\\nMesela Wikipedia da ki herhangi bir konuyu rast gele okuma butonu çok önemlidir\\n\\n191\\n00:09:10,000 --> 00:09:13,024\\nHer sabah uyandığınızda bir tane rast gele bir konu okuyabilirsiniz\\n\\n192\\n00:09:13,024 --> 00:09:17,008\\nBu konu hakkında hiç bilmediğin duymadığın bir Wikipedia konusu olabilir.\\n\\n193\\n00:09:17,008 --> 99:59:59,000\\nve sen, kesinlikle hiç ama hiç bilmediğin rast gele bir konu wikipediada kesinlikle vardır.',\n", + " 'bytes': 20806,\n", + " 'sha1': 'rnskzor2rgvfhny1ukmxjylpqls4spu',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100498677,\n", + " 'timestamp': '2013-07-22T22:42:24Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 27391377,\n", + " 'title': 'US President Barack Obama, surveillance activities, June 2013.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,140 --> 00:00:16,140\\nThey help us prevent terrorist attacks.\\nAnd the modest encroachments on the privacy\\n\\n2\\n00:00:17,010 --> 00:00:21,390\\nthat are involved\\nin getting phone numbers or duration without\\n\\n3\\n00:00:21,390 --> 00:00:28,390\\na name attached\\nand not looking at content, that on net,\\n\\n4\\n00:00:30,279 --> 00:00:32,789\\nit was worth us doing.',\n", + " 'bytes': 357,\n", + " 'sha1': '48sji54rjm1c7wswgyicywubielbhj9',\n", + " 'parent_id': 100498614,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100522926,\n", + " 'timestamp': '2013-07-23T09:48:58Z',\n", + " 'user': {'id': 3029358, 'text': 'Chiatos'},\n", + " 'page': {'id': 27396926,\n", + " 'title': 'The Impact Of Wikipedia.webm.ita.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with ' 1 00:00:00,000 --> 00:00:05,000 Wikipedia è un'organizzazione no profit, ma è il 5° sito web al mondo. Tutti gli articoli su Wikipedia sono scritti da volon...'\",\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia è un\\'organizzazione no profit, ma è il 5° sito web al mondo. Tutti gli articoli su Wikipedia sono scritti da volontari.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nVogliamo presentarvene alcuni...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nIo sono nepalese\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nIo sono irachena\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nIo sono indiana\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nIo sono di Byram, nel New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nIo vivo a Birmingham, in Inghilterra\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La Paz, Bolivia -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malesia -- Milano, in Italia -- Sud Africa\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolonia -- Giappone -- Armenia\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrasile -- Russia -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsraele -- Uzbekistan -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul -- Messico\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nQuando ho iniziato a partecipare a Wikipedia, nel 2008, ho cominciato molti articoli.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nUno, quello dedicato a una donna, Mariam Nour.\\xa0\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nNon c\\'era un articolo su di lei, perciò... -- è stato il mio primo articolo.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nNon mi ricordo, forse due o tre anni dopo,\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nsono capitata su questo articolo. Sono rimasta scioccata!\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nPiù di 10.000 persone avevano letto questo articolo.\\xa0\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nLo avevao usato, avevano tratto le loro informazioni da questo articolo. Erano passate da questo articolo,\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nperciò ti senti di aver influenzato più di 100.000 persone.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nEro terrorizzata quando ho schiacciato il bottone \"modifica\" per la prima volta.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nHo pensato, \"Mio dio, rovinerò tutto! Non può funzionare! Non posso farlo!\"\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia è un \\'open source\\' -- dove tutti possono mettere le loro idee\\n26\\n00:01:29,100 --> 00:01:34,000\\ne poi qualcun altro arriva e fa brillare quell\\'idea in modo da renderla superba.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nCi sono migliaia di persone che lavorano ogni giorno, ogni ora, ogni minuto a Wikipedia per migliorarla. \\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nMolto è lavoro volontario. Questo è un modo unico di fare volontariato.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nMette insieme professionisti e non professionisti che amano un particolare tema.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nLe persone che all\\'inizio hanno diverse opinioni cominciano a collaborare.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nMolto di quello che immagineresti gestito da una grande Società di Internet\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nè gestito da volontari come me.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nNon puoi dire, \"Va bene, io ho ragione, tu hai torno, questa è la mia versione dell\\'articolo!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nSe c\\'è un problema di faziosità,\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nallora qualcuno l\\'ha probabilmente evidenziato e se no posso evidenziarlo io stesso.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nCi sono centinaia di migliaia di persone che lo vedono\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\ne lo correggono.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nE poi ho schiacciato il bottone e...\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom - Il viaggio è cominciato ed è stato grande.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nHo cominciato con \\'Probabilità\\'. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nIl primo articolo che ho cominciato è \\'Probabilità\\'.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nUno dei principali articoli che ho scritto su Wikipedia è\\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nl\\'articolo sulle pugnalate.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nHo scritto sulla pesca con la mosca,\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nStoria del Montana, la storia del Parco Nazionale Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nColture dimenticate. Scacchisti. Biodiversità.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nArgomenti di storia militare. Storia dell\\'Armenia. Storia Romana.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nGiudici. Comunicazione. Biografie. Calcio.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrlanda. Pennsylvania. Soprattutto fotografia.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Cuocere al forno, perché adoro farlo.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nArmi nucleari e radioattività,\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\ne kayak sulle rapide.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nCi sono tutte queste informazioni li fuori, sparpagliate\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\ne noi le mettiamo insieme in un posto.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nOffriamo conoscenza gratuita a tutti,\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nnella loro lingua così possono utilizzarla.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nTutti beneficiano di questo, che siano ricchi o poveri.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nLe società di profitto hanno differenti motivazioni ed esigenze.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nDalla Wikimedia Foundation io non ricevo uno stipendio e nemmeno il rimborso spese.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nPens che sia molto importante per me poter dire chiaramente,\\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nGuarda, quando ti chiedo dei soldi, non sto chiedendo i tuoi soldi per me --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nTi chiedo dei soldi per la Fondazione che è il gruppo che sostiene questa sorprendente comunità di cui faccio parte.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nPenso che Wikipedia mi abbia dato la possibilità di fare una grossa differenza nel mondo.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nE\\' come un investimento per il futuro, per il futuro dei tuoi figli.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nGrazie\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nIl contenuto di questo video è dispoibile sotto la Licenza Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) a meno che non sia previsto altrimenti. Questo lavoro è attributio a: Victor Grigas, Wikimedia Foundation.\\nI punti di vista e le opinioni espresse in questo video appartengono alle persone che appaiono in questo video e non riflettono necessariamente le politiche o le posizioni delle società, organizzazioni o istitutzioni di cui gli individui fanno parte.\\nIl marchio e il logo di Wikimedia Foundation e di qualsiasi altra organizzazione non sono inclusi nei termini della licenza Creative Commons license. Il marchio e il logo Wikimedia, inclusi \"Wikipedia\" e il logo del pianeta puzzle, sono marchi registrati della Wikimedia Foundation. Per maggiori informazioni, vedi la nostra pagina Trademark Policy,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nQuesto video è pubblicato sotto una licenza Creative Commons.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nCome Wikipedia, può essere copiato gratuitamente, remixato e condiviso.',\n", + " 'bytes': 7013,\n", + " 'sha1': 'fqiac8yzk7vu7l0yv4c7wnq6cdccpb6',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100524397,\n", + " 'timestamp': '2013-07-23T10:30:20Z',\n", + " 'user': {'id': 1116977, 'text': 'נו, טוב'},\n", + " 'page': {'id': 27397352,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.he.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,500\\nשלום! אני טרבור, ואני עוזר לבנות עורך חזותי לוויקיפדיה.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nכולם יכולים לערוך את ויקיפדיה, אבל מרבית המנסים מתבלבלים בקלות\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\nוזה כי הקוד המיושן של ויקיפדיה הוא די קשה להבנה.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nזה היה מדהים כשיצרנו אותו לפני 12 שנים,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nאבל אם אנחנו רוצים להנגיש את סך הידע האנושי לכולם,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\nאנחנו חייבים להפוך אותו לקל יותר לשתף.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nהעורך החזותי הוא השינוי הגדול ביותר בוויקיפדיה שאי פעם עשינו.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nהוא הופך את הכתיבה בוויקיפדיה לדומה לכתיבה על נייר בכיתה או שליחת דוא״ל.\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nעדיין קיימים כמה באגים,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nאבל אם אתם רוצים הצצה מוקדמת לאופן בו תעבוד ויקיפדיה בעתיד הקרוב,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\nצרו חשבון בוויקיפדיה האנגלית.\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nהיכנסו להעדפות שלכם, והפעילו את גרסת האלפא של העורך החזותי.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nאתם אפילו יכולים לעזור לנו ע״י שימוש בו ושליחת משוב אלינו.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nאז בבקשה, הצטרפו אלינו בהפיכת הידע האנושי קל יותר לשיתוף.',\n", + " 'bytes': 1777,\n", + " 'sha1': '55qjq164mwkpbpnf5lp0u5h5wagdyl5',\n", + " 'parent_id': 100524338,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 575019559,\n", + " 'timestamp': '2021-07-14T06:36:59Z',\n", + " 'user': {'id': 788958, 'text': 'Perey'},\n", + " 'page': {'id': 27399340,\n", + " 'title': 'Chamberlain-war-declaration.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Tweaked timings. Split one long caption in two. Corrected one word (and -> but).',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:06,400\\nI am speaking to you, from the Cabinet Room, at 10 Downing Street.\\n\\n2\\n00:00:06,600 --> 00:00:14,000\\nThis morning, the British ambassador in Berlin handed the German Government\\n\\n3\\n00:00:14,000 --> 00:00:21,200\\na final note, stating that unless we heard from them by 11 o'clock\\n\\n4\\n00:00:21,400 --> 00:00:30,400\\nthat they were prepared at once to withdraw their troops from Poland, a state of war would exist between us.\\n\\n5\\n00:00:30,600 --> 00:00:37,000\\nI have to tell you now, that no such undertaking has been received,\\n\\n6\\n00:00:37,100 --> 00:00:43,400\\nand that consequently, this country is at war with Germany.\\n\\n7\\n00:00:47,200 --> 00:00:56,400\\nYou can imagine, what a bitter blow it is to me, that all my long struggle to win peace has failed.\\n\\n8\\n00:00:57,000 --> 00:01:04,200\\nYet I cannot believe that there is anything more, or anything different that I could have done\\n\\n9\\n00:01:04,400 --> 00:01:06,400\\nand that would have been more successful. \\n\\n10\\n00:01:06,600 --> 00:01:13,700\\nUp to the very last, it would have been quite possible to have arranged a peaceful and honourable \\n\\n11\\n00:01:13,800 --> 00:01:20,000\\nsettlement between Germany and Poland. But Hitler would not have it.\\n\\n12\\n00:01:20,000 --> 00:01:26,900\\nHe had evidently made up his mind to attack Poland whatever happened.\\n\\n13\\n00:01:27,000 --> 00:01:34,400\\nAnd although he now says he put forward reasonable proposals which were rejected by the Poles,\\n\\n14\\n00:01:34,600 --> 00:01:37,500\\nthat is not a true statement.\\n\\n15\\n00:01:37,501 --> 00:01:43,000\\nThe proposals were never shown to the Poles, nor to us.\\n\\n16\\n00:01:43,000 --> 00:01:51,000\\nAnd though they were announced in the German broadcast on Thursday night, Hitler did not wait to hear comments on them,\\n\\n17\\n00:01:51,000 --> 00:01:56,500\\nbut ordered his troops to cross the Polish frontier the next morning.\\n\\n18\\n00:01:57,000 --> 00:02:05,000\\nHis action shows convincingly, that there is no chance of expecting that this man will ever give up his practice\\n\\n19\\n00:02:05,000 --> 00:02:12,400\\nof using force to gain his will. He can only be stopped by force, and we and France,\\n\\n20\\n00:02:12,500 --> 00:02:18,800\\nare today in fulfilment of our obligations, going to the aid of Poland\\n\\n21\\n00:02:18,900 --> 00:02:24,400\\nwho is so bravely resisting this wicked and unprovoked attack upon her people.\\n\\n22\\n00:02:24,800 --> 00:02:33,000\\nWe have a clear conscience. We have done all that any country could do to establish peace.\\n\\n23\\n00:02:33,500 --> 00:02:39,400\\nBut the situation, in which no word given by Germany's ruler could be trusted,\\n\\n24\\n00:02:39,500 --> 00:02:45,000\\nand no people or country could feel itself safe, had become intolerable.\\n\\n25\\n00:02:45,000 --> 00:02:54,000\\nAnd now that we have resolved to finish it, I know that you will all play your part with calmness and courage.\",\n", + " 'bytes': 2835,\n", + " 'sha1': '9vaf4y390565am19m1t1meprogilkgk',\n", + " 'parent_id': 575017890,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 311035084,\n", + " 'timestamp': '2018-07-13T16:10:13Z',\n", + " 'user': {'id': 1547075, 'text': 'Illegitimate Barrister'},\n", + " 'page': {'id': 27414314,\n", + " 'title': 'The National Anthem of the Republic of Korea.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:04,000\\nUntil the East Sea's waters run dry\\n\\n2\\n00:00:04,000 --> 00:00:13,000\\nand Mt. Baekdu is worn away,\\n\\n3\\n00:00:13,500 --> 00:00:20,500\\nmay God preserve our country.\\n\\n4\\n00:00:20,500 --> 00:00:26,500\\nLong live our nation!\\n\\n5\\n00:00:27,700 --> 00:00:31,000\\nHibiscus and \\n\\n6\\n00:00:31,000 --> 00:00:35,000\\nthree thousand li \\n\\n7\\n00:00:35,000 --> 00:00:41,000\\nfull of splendid mountains and rivers;\\n\\n8\\n00:00:41,500 --> 00:00:45,000\\ngreat Korean people,\\n\\n9\\n00:00:45,000 --> 00:00:48,555\\nto the great Korean way,\\n\\n10\\n00:00:48,555 --> 00:00:55,000\\nstay always true!\",\n", + " 'bytes': 582,\n", + " 'sha1': 'adckk2pwuu86i5etgkia0ncspfh6a28',\n", + " 'parent_id': 311035058,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 219460744,\n", + " 'timestamp': '2016-11-25T18:19:21Z',\n", + " 'user': {'id': 2672346, 'text': 'Svensson1'},\n", + " 'page': {'id': 27419600,\n", + " 'title': 'The Impact Of Wikipedia.webm.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia è no profit, ma è il 5° sito web del mondo. Tutti gli articoli di Wikipedia sono scritti da volontari.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nVogliamo presentarvene alcuni...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nIo sono nepalese\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nIo sono irachena\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nIo sono indiana\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nIo sono di Byram, New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nIo vivo a Birmingham, Inghilterra\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La Paz, Bolivia -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malesia -- Milano in Italia -- Sud Africa\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolonia -- Giappone -- Armenia\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrasile -- Russia -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsraele -- Uzbekistan -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul -- Messico\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nQuando ho iniziato a partecipare a Wikipedia, nel 2008, ho cominciato molti articoli.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nUno di questi, credo fosse quello su una signora, Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nNon c\\'era un articolo su di lei, così ... e questo è stato il mio primo articolo.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nMe lo ero dimenticato! Forse due o tre anni dopo,\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nsono passata da questo articolo. Sono rimasta scioccata.\\xa0\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nPiù di 100.000 persone lo avevano letto.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nLo hanno usato, quindi hanno preso le loro informazioni da questo articolo. Sono passati da questo articolo,\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nperciò tu ti senti di avere interessato e influenzato più di 100.000 persone.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nEro proprio terrorizzata quando ho schiacciato il bottone \"modifica\" per la prima volta.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nHo pensato, \"Mio dio, rovinerò tutto! Non può funzionare! Non ne sono capace!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia è un \\'open source\\' -- dove tutti possono mettere le loro idee\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\ne poi qualcun altro arriva e fa brillare quel\\'idea e la rende superba.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nCi sono migliaia di persone che lavorano ogni giorno, ogni ora, ogni minuto a Wikipedia per migliorarla.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nMolti di loro sono volontari. E\\' un modo unico di essere volontari.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nMette insieme professionisti e non professionisti amano un particolare tema.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nPersone che hanno opinioni differenti all\\'inizio iniziano a collaborare.\\n31\\n00:01:54,001 --> 00:01:58,500\\nMolto di quello che immagineresti gestito da una grande società di Internet\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nè gestito da volontari come me.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nTu no puoi dire, \"Va bene, io ho ragione e tu hai torto, questa è la mia versione dell\\'articolo!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nSe c\\'è un problema di errori,\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nqualcuno lo ha probabilmente già segnalato e altrimenti posso segnalarlo io.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nCentinaia di migliaia di persone lo vedono\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\ne correggono.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nE poi ho schiacciato il bottone e\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom - Il viaggio è cominciato ed è stato grande.\\n51\\n00:02:19,601 --> 00:02:21,000\\nHo cominciato con \\'Probabilità\\'. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nIl primo articolo che ho cominciato è \"Probabilità\".\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nUno dei principali articoli che ho scritto in Wikipedia è stato\\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nl\\'articolo sulle pugnalate.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nIo ho scritto sulla pesca con la mosca,\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nla storia del Montana, la storia del Parco Nazionale, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nColture dimenticate. Giocatori di scacchi. Biodiversità.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nArgomenti di storia militare. Storia dell\\'Armenia. Storia romana.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nGiudici. Comunicazione. Biografie. Calcio.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrlanda. Pennsylvania. Prevalentemente fotografia.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Cucinare al forno, perché lo adoro.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nArmi nucleari e radioattività,\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\ne kayaking nelle rapide.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nCi sono tutte quelle informazioni frammentarie la fuori\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\ne noi le mettiamo insieme in un posto solo.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nStiamo offrendo conoscenza gratuita a tutti,\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nnella loro lingua, così possono usarla.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nTutti possono beneficiarne, ricchi o poveri.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nLe società di profitto hanno motivazioni e ncessità differenti.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nIo non prendo uno stipendio da Wikimedia Foundation, e nemmeno rimborsi spesa.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nPenso sia molto importante che io possa dire chiaramente,\\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nGuarda, quando ti chiedo soldi, non te li sto chiedendo per me--\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nTe li sto chiedendo per la FOndazione che è il gruppo che sostiene questa sorprendente comunità di cui faccio parte.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nPenso che Wikipedia mi abbia dato la possibilità veramente di fare una grande differenza nel mondo.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nE\\' come un investimento per il tuo futuro e quello dei tuoi figli.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nGrazie\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nIl contenuto di questo video è disponibile secondo la licenza Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) se non previsto altrimenti. Questo lavoro è attribuito a: Victor Grigas, Wikimedia Foundation.\\nI punti di vista e le opinioni espressi in questo video appartnengono solo alle persone che appiono nel video e non rispecchiano necessariamente le politiche o le posizioni delle società, organizzazioni o istitutzioni di cui gli individui fanno eventualmente parte.\\nI marchi e i logo di Wikimedia Foundation e di qualsiasi altra organizzazione non sono inclusi sotto questa licenza Creative Commons license. Wikimedia marchi e logo, incluso \"Wikipedia\" il logo del pianeta puzzle, sono marchi registrati della Wikimedia Foundation. Per maggiori informazioni, vedi la nostra pagina di Trademark Policy,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nQuesto viedo è pubblicato sotto una licenza Creative Commons.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nCome Wikipedia, può essere liberamente e gratuitamente copiato, remixato e condiviso.',\n", + " 'bytes': 7001,\n", + " 'sha1': 'nyvebrjth7ninpwwljglkld1q2m6zbu',\n", + " 'parent_id': 100616783,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100641664,\n", + " 'timestamp': '2013-07-25T08:48:07Z',\n", + " 'user': {'id': 2363765, 'text': 'ICarlytranslator'},\n", + " 'page': {'id': 27424976,\n", + " 'title': 'Ununpentium.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:02,700 Ununpentium'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,700\\nUnunpentium',\n", + " 'bytes': 43,\n", + " 'sha1': '8xwac2s5flqh27p1c45pb6z6c6enwhr',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100671488,\n", + " 'timestamp': '2013-07-25T18:42:08Z',\n", + " 'user': {'id': 2762823, 'text': 'Novikov16'},\n", + " 'page': {'id': 27433218,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with ' 1 00:00:00,800 --> 00:00:03,500 Привет! Меня зовут Тревор, я помогаю создавать Визуальный редактор дл...'\",\n", + " 'text': '\\n1\\n00:00:00,800 --> 00:00:03,500\\nПривет! Меня зовут Тревор, я помогаю создавать Визуальный редактор для Википедии.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nКаждый может редактировать Википедию, но большинство из тех, кто пытается, делают это неуверенно,\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\nпотому что разметка Википедии тяжелая для восприятия.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nОна была великолепна, когда мы создали ее двенадцать лет назад,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nно если мы собираемся собрать сумму всех человеческих знаний,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\nмы должны сделать все, чтобы люди легко могли ими делиться.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nВизуальный редактор - это самое большое изменение в Википедии, которое мы когда-либо делали.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nС помощью него можно писать в Википедию так же легко, как писать в школьную газету, или отправлять email.\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nОн все еще имеет небольшие ошибки,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nно если вы хотите посмотреть, как Википедия будет работать в ближайшее время,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\nсоздайте учетную запись в Википедии,\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nвойдите в настройки и включите альфа-версию Визуального редактора.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nВы можете помочь нам, если будете использовать его и присылать нам свои отзывы.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nПоэтому, пожалуйста, присоединяйтесь к нам, чтобы мы могли легче собирать и делиться суммой всех человеческих знаний.',\n", + " 'bytes': 2346,\n", + " 'sha1': '6u63n338ept8he4ivsi1zkcgauh3gjw',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100686412,\n", + " 'timestamp': '2013-07-26T01:53:46Z',\n", + " 'user': {'id': 1279456, 'text': 'GorillaWarfare'},\n", + " 'page': {'id': 27436443,\n", + " 'title': 'RefTools rework.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'fix',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,000\\nIn this video I\\'m going to demonstrate how to use the referencing toolbar to cite a source on Wikipedia.\\n\\n2\\n00:00:06,100 --> 00:00:15,000\\nSo, once you\\'re in the article that contains the text you want to cite, go to the \"Edit source\" tab in the upper right-hand corner.\\n\\n3\\n00:00:15,100 --> 00:00:20,000\\nThis will display a text box containing the article contents.\\n\\n4\\n00:00:20,100 --> 00:00:25,000\\nNow in this case I want to cite the text in the \"Challenges\" section.\\n\\n5\\n00:00:25,100 --> 00:00:34,000\\nFirst I place my cursor at the end of the sentence I want to cite, and then I go here to the \"Cite\" button on the editing toolbar.\\n\\n6\\n00:00:34,100 --> 00:00:40,000\\nThis drops down another toolbar, and in this toolbar you can see there is an option that says, \"Templates,\"\\n\\n7\\n00:00:40,100 --> 00:00:47,000\\nand in here you can choose if you\\'re citing a website, a news source, a book, or an academic journal.\\n\\n8\\n00:00:47,100 --> 00:00:51,000\\nNow, in my case, I am citing an academic journal, so I use that option.\\n\\n9\\n00:00:51,100 --> 00:00:55,000\\nA dialog box comes up with quite a few fields that you can fill in.\\n\\n10\\n00:00:55,100 --> 00:01:02,000\\nNow you should just try to fill in as many you can; in a lot of cases, you won\\'t be able to fill all of them.\\n\\n11\\n00:01:24,000 --> 00:01:26,000\\nYou\\'ll have the option to fill in the date that the journal was published.\\n\\n12\\n00:01:26,100 --> 00:01:33,000\\nNow, you can do this by putting in the day, the month, and the year.\\n\\n13\\n00:01:33,100 --> 00:01:37,000\\nIf you only know some of these, in this case I only know the year, that\\'s fine as well.\\n\\n14\\n00:01:41,000 --> 00:01:47,000\\nYou\\'ll have the option to include the page numbers that you are using to cite the work.\\n\\n15\\n00:01:47,100 --> 00:01:53,000\\nYou should not just include the total number of pages in the book or the journal\\n\\n16\\n00:01:53,100 --> 00:02:00,000\\njust include the page range that contains the information that you are using.\\n\\n17\\n00:02:01,000 --> 00:02:06,000\\nThere are a number of options like \"DOI\" and \"PMID\"; these are identifier numbers for journal articles.\\n\\n18\\n00:02:06,100 --> 00:02:10,000\\nThere are also similar ones for books.\\n\\n19\\n00:02:10,100 --> 00:02:20,000\\nIf you can you should try to include these, because these are unique identifiers that will make it easier for others to find the same content that you are using.\\n\\n20\\n00:02:26,000 --> 00:02:30,000\\nI\\'m just going to copy-and-paste it from here, because they\\'re easy to mis-type.\\n\\n21\\n00:02:36,000 --> 00:02:43,000\\nNow, this particular article has an ISSN, and you\\'ll see that that does not appear here,\\n\\n22\\n00:02:43,100 --> 00:02:48,000\\nbut if you click on \"Show/hide extra fields,\" you\\'ll see there are quite a few other fields that you can fill in,\\n\\n23\\n00:02:48,100 --> 00:02:52,000\\nand one of these is the one that I\\'m looking for.\\n\\n24\\n00:02:53,000 --> 00:02:57,000\\nNow, once I\\'ve filled in all of the fields that I can, I also choose a \"ref name\".\\n\\n25\\n00:02:57,100 --> 00:03:02,000\\nThis is very useful for you to reuse the same citation more than once.\\n\\n26\\n00:03:02,100 --> 00:03:09,000\\nSo you can name it whatever you like; I tend to name it the author\\'s name,\\n\\n27\\n00:03:09,100 --> 00:03:16,000\\nbut as long as it\\'s unique from the other references on the page, you can really call it whatever is easiest for you to remember.\\n\\n28\\n00:03:16,100 --> 00:03:18,000\\nNow, once you\\'re done, you can hit \"preview\".\\n\\n29\\n00:03:18,100 --> 00:03:21,000\\nThis will show the text that it\\'s going to create.\\n\\n30\\n00:03:21,100 --> 00:03:26,000\\nYou can also show the parsed preview, which is what this will look like in the references section on the article.\\n\\n31\\n00:03:26,100 --> 00:03:32,000\\nIf you\\'re satisfied with that, you can click \"Insert\", and you\\'ll see that it inserts this string of text right here.\\n\\n32\\n00:03:32,100 --> 00:03:34,000\\nThat\\'s the actual citation.\\n\\n33\\n00:03:34,100 --> 00:03:37,000\\nSo, if I click \"Save\",\\n\\n34\\n00:03:48,000 --> 00:03:55,000\\nYou\\'ll see that in the \"Challenges\" section there\\'s now a number seven in superscript,\\n\\n35\\n00:03:55,100 --> 00:04:01,000\\nand if you look down at the references section, number seven here is the article that I just cited. \\n\\n36\\n00:04:01,100 --> 00:04:05,000\\nNow, if I want to use that same citation again, I can click \"Edit source,\"\\n\\n37\\n00:04:05,000 --> 00:04:14,000\\nand in this case the same article that I used to cite the \"Challenges\" section also is usable for the \"Techniques\" section.\\n\\n38\\n00:04:14,100 --> 00:04:19,000\\nSo instead of inserting all of the same information more than once,\\n\\n39\\n00:04:19,100 --> 00:04:24,000\\nyou can actually just insert your cursor, again, at the end of the sentence you want to cite,\\n\\n40\\n00:04:24,100 --> 00:04:30,000\\nand click on \"Named references,\" and you can choose the name of the reference from down here.\\n\\n41\\n00:04:30,100 --> 00:04:36,000\\nSo, this is what I called it. It shows you a little preview, and then you can click \"Insert.\"\\n\\n42\\n00:04:37,000 --> 00:04:42,000\\nAnd you\\'ll see a very short referencing tag.\\n\\n43\\n00:04:42,100 --> 00:04:45,000\\nIf I click \"Save\"\\n\\n44\\n00:04:50,000 --> 00:04:56,000\\nYou\\'ll see that that same number seven now appears also at the end of the \"Techniques\" section.\\n\\n45\\n00:04:56,100 --> 00:05:00,000\\nAnd down here you\\'ll see \"a\" and \"b,\" and that indicates that it\\'s been cited twice.',\n", + " 'bytes': 5317,\n", + " 'sha1': '9zu5ie673rwjhk2mh5dddnwtxxilat6',\n", + " 'parent_id': 100686338,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100687731,\n", + " 'timestamp': '2013-07-26T02:51:22Z',\n", + " 'user': {'id': 1279456, 'text': 'GorillaWarfare'},\n", + " 'page': {'id': 27436941,\n", + " 'title': 'VisualEditor reference tutorial.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'fix timestamp',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,000\\nIn this video, I\\'m going to demonstrate how to add a reference using the VisualEditor.\\n\\n2\\n00:00:06,100 --> 00:00:10,000\\nSo here I\\'m on the article that I would like to add a citation to,\\n\\n3\\n00:00:10,100 --> 00:00:14,000\\nso I can click \"Edit\" in the top right-hand corner.\\n\\n4\\n00:00:14,100 --> 00:00:16,000\\nThis opens up the VisualEditor.\\n\\n5\\n00:00:17,000 --> 00:00:22,000\\nNow, this is the paragraph that I would like to cite,\\n\\n6\\n00:00:22,100 --> 00:00:27,000\\nSo I click at the very end of that last sentence, which is where I want to add the citation.\\n\\n7\\n00:00:27,100 --> 00:00:36,000\\nNow I can go up here and click on this little book with the bookmark type thing in it, and if I hover over it it will say \"Reference.\"\\n\\n8\\n00:00:36,100 --> 00:00:40,000\\nThis will open up the reference dialogue.\\n\\n9\\n00:00:40,100 --> 00:00:46,000\\nNow, if I wanted to, I could just type in the reference text in MLA or APA format,\\n\\n10\\n00:00:46,100 --> 00:00:51,000\\nbut I actually prefer to use the citation templates, which will format them for me.\\n\\n11\\n00:00:51,100 --> 00:00:58,000\\nSo, if I click on this puzzle piece, it will open the template editor, and I can choose the template I would like to use.\\n\\n12\\n00:00:58,100 --> 00:01:04,000\\nSo, all of our citation templates begin with \"Cite,\" and then once you type in that you\\'ll have a couple of options.\\n\\n13\\n00:01:04,100 --> 00:01:07,000\\nThese top four here are the most common.\\n\\n14\\n00:01:07,100 --> 00:01:14,000\\nI\\'m personally citing an academic journal right now, so that\\'s the one that I\\'m going to use, but they\\'re all relatively similar.\\n\\n15\\n00:01:14,100 --> 00:01:17,000\\nSo I can click \"Add template,\"\\n\\n16\\n00:01:17,100 --> 00:01:23,000\\nand I will be given a list of parameters that I can add.\\n\\n17\\n00:01:23,100 --> 00:01:32,000\\nSo first I\\'m going to add the author\\'s last name, so I click on that and get a box where I can type in the author\\'s name.\\n\\n18\\n00:01:37,000 --> 00:01:43,000\\nOnce I\\'ve done that, I can click back to the template in the left-hand corner, and add more parameters.\\n\\n19\\n00:01:43,100 --> 00:01:46,000\\nSo first name, it\\'s just an initial in this case, but that\\'s okay.\\n\\n20\\n00:01:50,000 --> 00:01:56,000\\nIt will also give some suggestions of required fields, so in this case the \"Source date\".\\n\\n21\\n00:01:56,100 --> 00:01:59,000\\nI only know the year, but that\\'s okay.\\n\\n22\\n00:01:59,100 --> 00:02:02,000\\n\"Source title\" here...\\n\\n23\\n00:02:08,100 --> 00:02:13,000\\nI would also like to add the journal name.\\n\\n24\\n00:02:25,000 --> 00:02:30,000\\nLet\\'s also do the DOI. I\\'m just going to copy-and-paste it.\\n\\n25\\n00:02:55,000 --> 00:03:07,000\\nYou can enter the page numbers if you like; you should only enter the page numbers where the actual article appears, don\\'t just enter the number of pages in the source.\\n\\n26\\n00:03:16,000 --> 00:03:19,000\\nAlright, so I think that\\'s enough for now. So I can click \"Apply changes,\"\\n\\n27\\n00:03:19,100 --> 00:03:24,000\\nand it will show what what the template\\'s going to appear like in this box.\\n\\n28\\n00:03:24,100 --> 00:03:27,000\\nSo I\\'m satisfied with that, and I can click \"Insert reference.\"\\n\\n29\\n00:03:27,100 --> 00:03:30,000\\nAnd then you\\'ll see the little number seven appear up here.\\n\\n30\\n00:03:30,100 --> 00:03:34,000\\nSo now I can save the page, just add a summary.\\n\\n31\\n00:03:40,000 --> 00:03:42,000\\nAnd it will save.\\n\\n32\\n00:03:51,000 --> 00:04:01,000\\nAnd now you can see that the number seven reference has appeared in the references section, with the appropriate superscript right here.\\n\\n33\\n00:04:02,000 --> 00:04:07,000\\nNow if you want to use that same citation again, you can again click \"Edit\".\\n\\n34\\n00:04:10,000 --> 00:04:15,000\\nAnd now I want to use this same document to cite the \"Techniques\" section here.\\n\\n35\\n00:04:15,100 --> 00:04:19,000\\nSo again, I place my cursor at the end of the sentence that I want to cite,\\n\\n36\\n00:04:19,100 --> 00:04:22,000\\nand click again on the reference button.\\n\\n37\\n00:04:22,100 --> 00:04:32,000\\nAnd now at the bottom I can click on \"Use an existing reference,\" and you\\'ll see a list of all of the references in the article.\\n\\n38\\n00:04:32,100 --> 00:04:35,000\\nYou can just click on one you\\'d like to add.\\n\\n39\\n00:04:35,100 --> 00:04:40,000\\nAnd you\\'ll see here that it adds the number seven again right after this section.\\n\\n40\\n00:04:40,100 --> 00:04:48,100\\nSo I can click \"Save page,\" add an edit summary, and save the page.\\n\\n41\\n00:04:54,000 --> 00:04:56,500\\nAnd you will see that number seven appears here and here,\\n\\n42\\n00:04:56,600 --> 00:05:02,000\\nand down here you will see that there\\'s an \"a\" and a \"b,\" which indicates that it\\'s been cited twice.',\n", + " 'bytes': 4597,\n", + " 'sha1': 'rp17judaf5dzk2xr4il2pq8dak8bygx',\n", + " 'parent_id': 100687638,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100753493,\n", + " 'timestamp': '2013-07-27T10:10:23Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27450098,\n", + " 'title': '中文維基百科教學頻道第三章.ogv.zh-cn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:13,640 --> 00:00:24,720 现在看到是一般备有粗体、连结等条目的条目 2 00:00:24,800 --> 00:00:29,120 现在会介绍如何编辑和产...'\",\n", + " 'text': '1\\n00:00:13,640 --> 00:00:24,720\\n现在看到是一般备有粗体、连结等条目的条目\\n\\n2\\n00:00:24,800 --> 00:00:29,120\\n现在会介绍如何编辑和产生\\n\\n3\\n00:00:29,120 --> 00:00:38,120\\n一般条目页面上方都有编辑按钮\\n\\n4\\n00:00:38,280 --> 00:00:41,160\\n单击后\\n\\n5\\n00:00:41,320 --> 00:00:45,840\\n你便进入了编辑面中,\\n\\n6\\n00:00:45,840 --> 00:00:51,320\\n除了平时看到的文字后,另外附有特殊的符号\\n\\n7\\n00:00:51,320 --> 00:01:00,160\\n上方有一个编辑工作栏,是这次教学的重点\\n\\n8\\n00:01:00,160 --> 00:01:05,80\\n如果你尚未注册,将会预设成新的编辑栏\\n\\n9\\n00:01:05,80 --> 00:01:08,160\\n(即目前画面显示的排列)\\n\\n10\\n00:01:08,440 --> 00:01:14,80\\n如果你是已注册用户,可能会因为你的设定而改用旧版本\\n\\n11\\n00:01:14,80 --> 00:01:18,840\\n现在介绍的新版编辑栏的基本操作\\n\\n12\\n00:01:24,160 --> 00:01:29,880\\n在输入文字后,\\n\\n13\\n00:01:29,880 --> 00:01:35,760\\n将要改动的文字反白\\n\\n14\\n00:01:35,760 --> 00:01:39,920\\n第一个\"A\"是将文字修改成粗体\\n\\n15\\n00:01:39,920 --> 00:01:42,880\\n如果你单击\\n\\n16\\n00:01:42,880 --> 00:01:47,560\\n会自动在你选文字的两侧加上\\'\\'\\'\\u3000\\'\\'\\'的符号\\n\\n17\\n00:01:47,720 --> 00:01:50,800\\n想预览你的编辑?\\n\\n18\\n00:01:50,800 --> 00:01:56,520\\n在编辑方格的下方单击「显示预览」\\n\\n19\\n00:02:01,400 --> 00:02:07,280\\n现在,你可以「预览」一栏下方预览自己的编辑了\\n\\n20\\n00:02:07,720 --> 00:02:15,0\\n「维基百科」三字真的变成粗体!\\n\\n21\\n00:02:20,440 --> 00:02:23,360\\n第二个\"A\"是斜体\\n\\n22\\n00:02:23,360 --> 00:02:27,720\\n会在两侧自动产生符号\\'\\'\\u3000\\'\\'\\n\\n23\\n00:02:28,160 --> 00:02:34,80\\n你可以再按「显示预览」看看结果如何\\n\\n24\\n00:02:36,480 --> 00:02:42,960\\n成功了!\\n\\n25\\n00:02:42,960 --> 00:02:52,960\\n在你操作熟稔后,可以自己动手输入,不依赖编辑栏\\n\\n26\\n00:02:52,960 --> 00:02:58,560\\n这个方法也是可以的\\n\\n27\\n00:02:58,560 --> 00:03:09,640\\n第二章教学影片中谈到的链接便是这个按钮产生\\n\\n28\\n00:03:09,720 --> 00:03:16,320\\n它可制造内部及外部链接\\n\\n29\\n00:03:16,400 --> 00:03:23,720\\n你输入及选择条目名称后\\n\\n30\\n00:03:23,880 --> 00:03:27,280\\n按插入连结\\n\\n31\\n00:03:27,360 --> 00:03:34,280\\n便在你输入文字两侧加入[[\\u3000]]符号,成为内部链接\\n\\n32\\n00:03:34,520 --> 00:03:43,0\\n当然你可以预览来确认内部连结是否有效\\n\\n33\\n00:03:43,560 --> 00:03:47,800\\n用浏览器分页开启蓝色字\\n\\n34\\n00:03:48,0 --> 00:03:51,640\\n成功了!\\n\\n35\\n00:03:51,640 --> 00:03:56,80\\n第二章提及的外部连结也可以产生\\n\\n36\\n00:03:56,160 --> 00:04:02,280\\n比如说你发现一个与某个条目有密切关系的网页,\\n\\n37\\n00:04:02,440 --> 00:04:08,280\\n只要复制网址\\n\\n38\\n00:04:08,600 --> 00:04:15,40\\n按连结工具\\n\\n39\\n00:04:15,40 --> 00:04:19,400\\n在「目标页面或网址」贴上网址\\n\\n40\\n00:04:19,560 --> 00:04:22,320\\n外部连结便产生了\\n\\n41\\n00:04:22,400 --> 00:04:30,360\\n不过读者只看网址无法知道这连结会带他到哪里啊!\\n\\n42\\n00:04:30,720 --> 00:04:38,480\\n所以你应该在「显示文字」输入该网页名称\\n\\n43\\n00:04:41,200 --> 00:04:48,160\\n现在文字两旁会自动加入[\\u3000]符号\\n\\n44\\n00:04:48,600 --> 00:04:53,960\\n前半部分是你提供的网址\\n\\n45\\n00:04:54,80 --> 00:04:58,80\\n前半部分是你提供的网址\\n\\n46\\n00:04:58,440 --> 00:05:04,360\\n后半部是你提供的网页名称\\n\\n47\\n00:05:04,360 --> 00:05:07,360\\n预览\\n\\n48\\n00:05:07,480 --> 00:05:12,960\\n阅读时不会显示网址,只看到「显示文字」的文字\\n\\n49\\n00:05:13,120 --> 00:05:18,880\\n用分页开启,便可到该网页了',\n", + " 'bytes': 3640,\n", + " 'sha1': 'lb7kshehxjrgwfo3j7pkgpt8txshlta',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100753591,\n", + " 'timestamp': '2013-07-27T10:13:07Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27450153,\n", + " 'title': '中文維基百科教學頻道第三章.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:13,640 --> 00:00:24,720 現在看到是一般備有粗體、連結等條目的條目 2 00:00:24,800 --> 00:00:29,120 現在會介紹如何編輯和產...'\",\n", + " 'text': '1\\n00:00:13,640 --> 00:00:24,720\\n現在看到是一般備有粗體、連結等條目的條目\\n\\n2\\n00:00:24,800 --> 00:00:29,120\\n現在會介紹如何編輯和產生\\n\\n3\\n00:00:29,120 --> 00:00:38,120\\n一般條目頁面上方都有編輯按鈕\\n\\n4\\n00:00:38,280 --> 00:00:41,160\\n按一下後\\n\\n5\\n00:00:41,320 --> 00:00:45,840\\n你便進入了編輯面中,\\n\\n6\\n00:00:45,840 --> 00:00:51,320\\n除了平時看到的文字後,另外附有特殊的符號\\n\\n7\\n00:00:51,320 --> 00:01:00,160\\n上方有一個編輯工作欄,是這次教學的重點\\n\\n8\\n00:01:00,160 --> 00:01:05,80\\n如果你尚未註冊,將會預設成新的編輯欄\\n\\n9\\n00:01:05,80 --> 00:01:08,160\\n(即目前畫面顯示的排列)\\n\\n10\\n00:01:08,440 --> 00:01:14,80\\n如果你是已註冊用戶,可能會因為你的設定而改用舊版本\\n\\n11\\n00:01:14,80 --> 00:01:18,840\\n現在介紹的新版編輯欄的基本操作\\n\\n12\\n00:01:24,160 --> 00:01:29,880\\n在輸入文字後,\\n\\n13\\n00:01:29,880 --> 00:01:35,760\\n將要改動的文字反白\\n\\n14\\n00:01:35,760 --> 00:01:39,920\\n第一個\"A\"是將文字修改成粗體\\n\\n15\\n00:01:39,920 --> 00:01:42,880\\n如果你按一下\\n\\n16\\n00:01:42,880 --> 00:01:47,560\\n會自動在你選文字的兩側加上\\'\\'\\'\\u3000\\'\\'\\'的符號\\n\\n17\\n00:01:47,720 --> 00:01:50,800\\n想預覽你的編輯?\\n\\n18\\n00:01:50,800 --> 00:01:56,520\\n在編輯方格的下方按一下「顯示預覽」\\n\\n19\\n00:02:01,400 --> 00:02:07,280\\n現在,你可以「預覽」一欄下方預覽自己的編輯了\\n\\n20\\n00:02:07,720 --> 00:02:15,0\\n「維基百科」三字真的變成粗體!\\n\\n21\\n00:02:20,440 --> 00:02:23,360\\n第二個\"A\"是斜體\\n\\n22\\n00:02:23,360 --> 00:02:27,720\\n會在兩側自動產生符號\\'\\'\\u3000\\'\\'\\n\\n23\\n00:02:28,160 --> 00:02:34,80\\n你可以再按「顯示預覽」看看結果如何\\n\\n24\\n00:02:36,480 --> 00:02:42,960\\n成功了!\\n\\n25\\n00:02:42,960 --> 00:02:52,960\\n在你操作熟稔後,可以自己動手輸入,不依賴編輯欄\\n\\n26\\n00:02:52,960 --> 00:02:58,560\\n這個方法也是可以的\\n\\n27\\n00:02:58,560 --> 00:03:09,640\\n第二章教學影片中談到的連結便是這個按鈕產生\\n\\n28\\n00:03:09,720 --> 00:03:16,320\\n它可製造內部及外部連結\\n\\n29\\n00:03:16,400 --> 00:03:23,720\\n你輸入及選擇條目名稱後\\n\\n30\\n00:03:23,880 --> 00:03:27,280\\n按插入連結\\n\\n31\\n00:03:27,360 --> 00:03:34,280\\n便在你輸入文字兩側加入[[\\u3000]]符號,成為內部連結\\n\\n32\\n00:03:34,520 --> 00:03:43,0\\n當然你可以預覽來確認內部連結是否有效\\n\\n33\\n00:03:43,560 --> 00:03:47,800\\n用瀏覽器分頁開啟藍色字\\n\\n34\\n00:03:48,0 --> 00:03:51,640\\n成功了!\\n\\n35\\n00:03:51,640 --> 00:03:56,80\\n第二章提及的外部連結也可以產生\\n\\n36\\n00:03:56,160 --> 00:04:02,280\\n比如說你發現一個與某個條目有密切關係的網頁,\\n\\n37\\n00:04:02,440 --> 00:04:08,280\\n只要複製網址\\n\\n38\\n00:04:08,600 --> 00:04:15,40\\n按連結工具\\n\\n39\\n00:04:15,40 --> 00:04:19,400\\n在「目標頁面或網址」貼上網址\\n\\n40\\n00:04:19,560 --> 00:04:22,320\\n外部連結便產生了\\n\\n41\\n00:04:22,400 --> 00:04:30,360\\n不過讀者只看網址無法知道這連結會帶他到哪裡啊!\\n\\n42\\n00:04:30,720 --> 00:04:38,480\\n所以你應該在「顯示文字」輸入該網頁名稱\\n\\n43\\n00:04:41,200 --> 00:04:48,160\\n現在文字兩旁會自動加入[\\u3000]符號\\n\\n44\\n00:04:48,600 --> 00:04:53,960\\n前半部分是你提供的網址\\n\\n45\\n00:04:54,80 --> 00:04:58,80\\n中間留一個空格\\n\\n46\\n00:04:58,440 --> 00:05:04,360\\n後半部是你提供的網頁名稱\\n\\n47\\n00:05:04,360 --> 00:05:07,360\\n預覽\\n\\n48\\n00:05:07,480 --> 00:05:12,960\\n閱讀時不會顯示網址,只看到「顯示文字」的文字\\n\\n49\\n00:05:13,120 --> 00:05:18,880\\n用分頁開啟,便可到該網頁了',\n", + " 'bytes': 3637,\n", + " 'sha1': '0f5p882u6mzk8xjfg7v0t0lclnhzr4s',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100754120,\n", + " 'timestamp': '2013-07-27T10:29:06Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27450296,\n", + " 'title': '中文維基百科教學頻道第一章.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:16,120 --> 00:00:22,0 現在看到的是中文維基百科的首頁(Vector版) 2 00:00:22,240 --> 00:00:27,520 你可以輸入你找的內容 3 00:00:...'\",\n", + " 'text': '1\\n00:00:16,120 --> 00:00:22,0\\n現在看到的是中文維基百科的首頁(Vector版)\\n\\n2\\n00:00:22,240 --> 00:00:27,520\\n你可以輸入你找的內容\\n\\n3\\n00:00:27,800 --> 00:00:30,960\\n相關條目會在下方展開\\n\\n4\\n00:00:31,200 --> 00:00:36,160\\n也可在最下方選擇「包含...」來搜尋所有相關條目\\n\\n5\\n00:00:36,360 --> 00:00:41,840\\n按「放大鏡」可以直接找你輸入的條目\\n\\n6\\n00:00:42,120 --> 00:00:50,440\\n這樣,你便可以找到所需的條目了\\n\\n7\\n00:00:50,840 --> 00:00:59,400\\n另外用MonoBook 、MySkin等版本也有相同功能\\n\\n8\\n00:00:59,680 --> 00:01:06,440\\n按「進入」便可直接進入條目\\n\\n9\\n00:01:06,800 --> 00:01:15,640\\n按「搜尋」可找到所有相關條目\\n\\n10\\n00:01:16,240 --> 00:01:26,240\\n相關條目便會列表,功能與「包含...」相同\\n\\n11\\n00:01:26,720 --> 00:01:32,720\\n按「進入」,會直接進入條目\\n\\n12\\n00:01:37,120 --> 00:01:40,640\\n也可修改網址來搜尋\\n\\n13\\n00:01:41,40 --> 00:01:49,200\\n在http://zh.wikipedia.org/wiki/ 後\\n\\n14\\n00:01:49,520 --> 00:01:54,800\\n改成你找的內容,比如「香港」\\n\\n15\\n00:01:54,920 --> 00:02:00,720\\n再移至網址\\n\\n16\\n00:02:08,280 --> 00:02:12,80\\n現在看到的是名叫「香港」的條目\\n\\n17\\n00:02:12,80 --> 00:02:18,560\\n而且有「維基百科,自由的百科全書」\\n\\n18\\n00:02:18,560 --> 00:02:21,440\\n條目的背景都是白色\\n\\n19\\n00:02:21,440 --> 00:02:33,0\\n條目內有條目標題(或名稱) 及引言\\n\\n20\\n00:02:34,920 --> 00:02:44,520\\n在一些比較長的條目,會包含目錄和章節\\n\\n21\\n00:02:47,120 --> 00:02:50,120\\n在條目最後有「參考文獻」一欄\\n\\n22\\n00:02:50,680 --> 00:02:54,880\\n說明此條目引用的來源\\n\\n23\\n00:02:55,280 --> 00:02:58,880\\n這種就是條目了\\n\\n24\\n00:02:59,80 --> 00:03:00,640\\n另外維基百科還有非條目類的文章\\n\\n25\\n00:03:00,800 --> 00:03:02,480\\n比如這頁面,以「維基百科:」為標題、\\n\\n26\\n00:03:02,600 --> 00:03:08,160\\n沒有「維基百科,自由的百科全書」、\\n\\n27\\n00:03:08,280 --> 00:03:11,80\\n而且是淺藍色背景的,\\n\\n28\\n00:03:11,200 --> 00:03:12,640\\n這是非條目頁面了',\n", + " 'bytes': 2109,\n", + " 'sha1': 'h06cnso58dwtxo2w340016jx0zw1yia',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100754247,\n", + " 'timestamp': '2013-07-27T10:31:19Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27450322,\n", + " 'title': '中文維基百科教學頻道第一章.ogv.zh-cn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:16,120 --> 00:00:22,0\\n现在看到的是中文维基百科的首页(Vector版)\\n\\n2\\n00:00:22,240 --> 00:00:27,520\\n你可以输入你找的内容\\n\\n3\\n00:00:27,800 --> 00:00:30,960\\n相关条目会在下方展开\\n\\n4\\n00:00:31,200 --> 00:00:36,160\\n也可在最下方选择「包含...」来搜寻所有相关条目\\n\\n5\\n00:00:36,360 --> 00:00:41,840\\n按「放大镜」可以直接找你输入的条目\\n\\n6\\n00:00:42,120 --> 00:00:50,440\\n这样,你便可以找到所需的条目了\\n\\n7\\n00:00:50,840 --> 00:00:59,400\\n另外用MonoBook 、MySkin等版本也有相同功能\\n\\n8\\n00:00:59,680 --> 00:01:06,440\\n按「进入」便可直接进入条目\\n\\n9\\n00:01:06,800 --> 00:01:15,640\\n按「搜寻」可找到所有相关条目\\n\\n10\\n00:01:16,240 --> 00:01:26,240\\n相关条目便会列表,功能与「包含...」相同\\n\\n11\\n00:01:26,720 --> 00:01:32,720\\n按「进入」,会直接进入条目\\n\\n12\\n00:01:37,120 --> 00:01:40,640\\n也可修改网址来搜寻\\n\\n13\\n00:01:41,40 --> 00:01:49,200\\n在http://zh.wikipedia.org/wiki/ 后\\n\\n14\\n00:01:49,520 --> 00:01:54,800\\n改成您找的内容,比如「香港」\\n\\n15\\n00:01:54,920 --> 00:02:00,720\\n再移至网址\\n\\n16\\n00:02:08,280 --> 00:02:12,80\\n现在看到的是名叫「香港」的条目\\n\\n17\\n00:02:12,80 --> 00:02:18,560\\n而且有「维基百科,自由的百科全书」\\n\\n18\\n00:02:18,560 --> 00:02:21,440\\n条目的背景都是白色\\n\\n19\\n00:02:21,440 --> 00:02:33,0\\n条目内有条目标题(或名称) 及引言\\n\\n20\\n00:02:34,920 --> 00:02:44,520\\n在一些比较长的条目,会包含目录和章节\\n\\n\\n21\\n00:02:47,120 --> 00:02:50,120\\n在条目最后有「参考文献」一栏\\n\\n22\\n00:02:50,680 --> 00:02:54,880\\n说明此条目引用的来源\\n\\n23\\n00:02:55,280 --> 00:02:58,880\\n这种就是条目了\\n\\n24\\n00:02:59,80 --> 00:03:00,640\\n另外维基百科还有非条目类的文章\\n\\n25\\n00:03:00,800 --> 00:03:02,480\\n比如这页面,以「维基百科:」为标题、\\n\\n\\n26\\n00:03:02,600 --> 00:03:08,160\\n没有「维基百科,自由的百科全书」、\\n\\n\\n27\\n00:03:08,280 --> 00:03:11,80\\n而且是浅蓝色背景的,\\n\\n28\\n00:03:11,200 --> 00:03:12,640\\n这是非条目页面了',\n", + " 'bytes': 2112,\n", + " 'sha1': 'nemhlfrzu50o5kvhxhjupsqnrac2pyj',\n", + " 'parent_id': 100754212,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100754801,\n", + " 'timestamp': '2013-07-27T10:43:42Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27450441,\n", + " 'title': '中文維基百科教學頻道第兩章.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:19,680 --> 00:00:25,880 現在顯示的是中文維基百科條目, 2 00:00:25,960 --> 00:00:31,200 用來介紹每個條目的基本格式。 3 00:...'\",\n", + " 'text': '1\\n00:00:19,680 --> 00:00:25,880\\n現在顯示的是中文維基百科條目,\\n\\n2\\n00:00:25,960 --> 00:00:31,200\\n用來介紹每個條目的基本格式。\\n\\n3\\n00:00:31,200 --> 00:00:34,880\\n除了第一章提到的引言和標題外,\\n\\n4\\n00:00:34,920 --> 00:00:37,880\\n也有其他的項目\\n\\n5\\n00:00:37,920 --> 00:00:44,640\\n比如是這個消歧義(Otheruses)模板\\n\\n6\\n00:00:44,640 --> 00:00:52,680\\n消除由於一詞多義做成的問題\\n\\n7\\n00:00:52,680 --> 00:00:56,800\\n另外部分條目有條目專用的模板\\n\\n8\\n00:00:56,800 --> 00:01:02,0\\n是用來提醒或警告編者、讀者、管理員\\n\\n9\\n00:01:02,40 --> 00:01:08,120\\n掛起模板的條目可能存在問題或注意事項\\n\\n10\\n00:01:08,200 --> 00:01:11,720\\n各條目因不同需要有不同的排列或不同模板,如:\\n\\n11\\n00:01:11,840 --> 00:01:20,920\\n信息框模板(Infobox):\\n提供條目主要內容,為讀者較快了解基本資料\\n\\n12\\n00:01:21,0 --> 00:01:25,520\\n這種模板展示持有者、始創者等資料\\n\\n13\\n00:01:25,520 --> 00:01:28,40\\n但是亦有些信息框模板是提供人物國藉等\\n\\n14\\n00:01:28,80 --> 00:01:31,720\\n視乎條目記載的是人事地或其他,便用不同模板\\n\\n15\\n00:01:33,600 --> 00:01:38,0\\n第一章提到的目錄和章節出現在較長的條目\\n\\n16\\n00:01:38,40 --> 00:01:42,720\\n其實章節不單只是一級\\n\\n17\\n00:01:42,760 --> 00:01:47,560\\n還可以無限延展\\n\\n18\\n00:01:47,560 --> 00:01:52,880\\n不過一般而言,三級已經很足夠\\n\\n19\\n00:01:52,880 --> 00:01:56,960\\n維基百科目錄除了像書本看到多少章節外...\\n\\n20\\n00:01:56,960 --> 00:02:06,960\\n只要一按那章節,便直接到了!\\n\\n21\\n00:02:07,240 --> 00:02:12,680\\n很方便吧!\\n\\n22\\n00:02:12,680 --> 00:02:15,40\\n有時候你在閱讀條目時...\\n\\n23\\n00:02:15,120 --> 00:02:20,160\\n會發現[1] 或 其他數字\\n\\n24\\n00:02:20,200 --> 00:02:22,280\\n你一按一下這數字\\n\\n25\\n00:02:22,400 --> 00:02:26,160\\n會跳到下方的一堆文字的章節\\n\\n26\\n00:02:26,200 --> 00:02:30,920\\n淺藍色部分是你按的那段文字的參考內容或註釋,\\n\\n27\\n00:02:30,920 --> 00:02:38,880\\n便於讀者了解更多的該條目的信息。\\n\\n28\\n00:02:38,880 --> 00:02:41,880\\n而這些文字就是放在「參考文獻及註釋」的章節中\\n\\n29\\n00:02:49,480 --> 00:02:51,560\\n在維基內,連結可分為兩種\\n\\n30\\n00:02:51,560 --> 00:02:58,640\\n一種是內部連結\\n\\n31\\n00:02:58,680 --> 00:03:02,320\\n內部連結是條目中是藍色字\\n\\n32\\n00:03:02,400 --> 00:03:12,400\\n按一下藍色字,便可直接連結到該條目\\n\\n33\\n00:03:12,400 --> 00:03:18,360\\n編者也可以將它連結至其他語言\\n\\n34\\n00:03:18,520 --> 00:03:27,0\\n另外一種,是外部連結\\n\\n35\\n00:03:27,40 --> 00:03:34,240\\n一般的外部連結,是放在「外部連結」一節\\n\\n36\\n00:03:34,760 --> 00:03:44,760\\n外部連結是藍色文字及附有箭頭圖案\\n\\n37\\n00:03:44,880 --> 00:03:51,640\\n這樣便可到指定的網頁',\n", + " 'bytes': 2889,\n", + " 'sha1': 'gimmpnodjm9jlpb41lbggws90qbmldo',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100755166,\n", + " 'timestamp': '2013-07-27T10:48:04Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27450475,\n", + " 'title': '中文維基百科教學頻道第兩章.ogv.zh-cn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:19,680 --> 00:00:25,880 现在显示的是中文维基百科条目, 2 00:00:25,960 --> 00:00:31,200 用来介绍每个条目的基本格式。 3 00:...'\",\n", + " 'text': '1\\n00:00:19,680 --> 00:00:25,880\\n现在显示的是中文维基百科条目,\\n\\n2\\n00:00:25,960 --> 00:00:31,200\\n用来介绍每个条目的基本格式。\\n\\n3\\n00:00:31,200 --> 00:00:34,880\\n除了第一章提到的引言和标题外,\\n\\n4\\n00:00:34,920 --> 00:00:37,880\\n也有其他的项目\\n\\n5\\n00:00:37,920 --> 00:00:44,640\\n比如是这个消歧义(Otheruses)模板\\n\\n6\\n00:00:44,640 --> 00:00:52,680\\n消除由于一词多义做成的问题\\n\\n7\\n00:00:52,680 --> 00:00:56,800\\n另外部分条目有条目专用的模板\\n\\n8\\n00:00:56,800 --> 00:01:02,0\\n是用来提醒或警告编者、读者、管理员\\n\\n9\\n00:01:02,40 --> 00:01:08,120\\n挂起模板的条目可能存在问题或注意事项\\n\\n10\\n00:01:08,200 --> 00:01:11,720\\n各条目因不同需要有不同的排列或不同模板,如:\\n\\n11\\n00:01:11,840 --> 00:01:20,920\\n信息框模板(Infobox):\\n提供条目主要内容,为读者较快了解基本资料\\n\\n12\\n00:01:21,0 --> 00:01:25,520\\n这种模板展示持有者、始创者等资料\\n\\n13\\n00:01:25,520 --> 00:01:28,40\\n但是亦有些信息框模板是提供人物国藉等\\n\\n14\\n00:01:28,80 --> 00:01:31,720\\n视乎条目记载的是人事地或其他,便用不同模板\\n\\n15\\n00:01:33,600 --> 00:01:38,0\\n第一章提到的目录和章节出现在较长的条目\\n\\n16\\n00:01:38,40 --> 00:01:42,720\\n其实章节不单只是一级\\n\\n17\\n00:01:42,760 --> 00:01:47,560\\n还可以无限延展\\n\\n18\\n00:01:47,560 --> 00:01:52,880\\n不过一般而言,三级已经很足够\\n\\n19\\n00:01:52,880 --> 00:01:56,960\\n维基百科目录除了像书本看到多少章节外...\\n\\n20\\n00:01:56,960 --> 00:02:06,960\\n只要一按那章节,便直接到了!\\n\\n21\\n00:02:07,240 --> 00:02:12,680\\n很方便吧!\\n\\n22\\n00:02:12,680 --> 00:02:15,40\\n有时候你在阅读条目时...\\n\\n23\\n00:02:15,120 --> 00:02:20,160\\n会发现[1] 或 其他数字\\n\\n24\\n00:02:20,200 --> 00:02:22,280\\n你一单击这数字\\n\\n25\\n00:02:22,400 --> 00:02:26,160\\n会跳到下方的一堆文字的章节\\n\\n26\\n00:02:26,200 --> 00:02:30,920\\n浅蓝色部分是你按的那段文字的参考内容或注释,\\n\\n27\\n00:02:30,920 --> 00:02:38,880\\n便于读者了解更多的该条目的信息。\\n\\n28\\n00:02:38,880 --> 00:02:41,880\\n而这些文字就是放在「参考文献及注释」的章节中\\n\\n29\\n00:02:49,480 --> 00:02:51,560\\n在维基内,连结可分为两种\\n\\n30\\n00:02:51,560 --> 00:02:58,640\\n一种是内部连结\\n\\n31\\n00:02:58,680 --> 00:03:02,320\\n内部连结是条目中是蓝色字\\n\\n32\\n00:03:02,400 --> 00:03:12,400\\n单击蓝色字,便可直接连结到该条目\\n\\n33\\n00:03:12,400 --> 00:03:18,360\\n编者也可以将它链接至其他语言\\n\\n34\\n00:03:18,520 --> 00:03:27,0\\n另外一种,是外部连结\\n\\n35\\n00:03:27,40 --> 00:03:34,240\\n一般的外部连结,是放在「外部连结」一节\\n\\n36\\n00:03:34,760 --> 00:03:44,760\\n外部链接是蓝色文字及附有箭头图案\\n\\n37\\n00:03:44,880 --> 00:03:51,640\\n这样便可到指定的网页',\n", + " 'bytes': 2883,\n", + " 'sha1': 'p0zew7wz0y5t96wkyhv29z58jb22ohd',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 528349711,\n", + " 'timestamp': '2021-01-25T15:54:39Z',\n", + " 'user': {'id': 6537099, 'text': 'MiiCii'},\n", + " 'page': {'id': 27461557,\n", + " 'title': 'Anthem of the Sakha Republic.ogg.sah.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:5,500 --> 00:00:12,800\\nСахам сирэ дьоллоох тускуга\\n\\n2\\n00:00:13,300 --> 00:00:21,800\\nСаһарҕалыы ыҥыра ыллыыр,\\n\\n3\\n00:00:22,200 --> 00:00:29,400\\nИлинтэн арҕаа ол кустуга\\n\\n4\\n00:00:30,000 --> 00:00:37,800\\nАлмаас таас курдук сандаара сырдыыр.\\n\\n5\\n00:00:38,300 --> 00:00:46,000\\nБарҕа быйаҥнаах Сахам дойдута\\n\\n6\\n00:00:46,500 --> 00:00:54,500\\nМодун Россия киэн туттуута,\\n\\n7\\n00:00:55,000 --> 00:01:03,000\\nӨркөн өрөгөй тойугун туойдун,\\n\\n8\\n00:01:03,500 --> 00:01:11,000\\nҮүнэр үйэҕэ үрдүү туруохтун!\\n\\n9\\n00:01:11,500 --> 00:01:19,300\\nҮллэр үөстээх Өлүөнэ Эбэ\\n\\n10\\n00:01:20,000 --> 00:01:26,600\\nӨлбөт мэҥэ угуттуур уулаах.\\n\\n11\\n00:01:27,200 --> 00:01:34,400\\nЭлбэх омукка эрчим эбэр,\\n\\n12\\n00:01:35,000 --> 00:01:43,300\\nИли-эйэни олохтуур уохтаах.\\n\\n13\\n00:01:43,800 --> 00:01:51,400\\nБарҕа быйаҥнаах Сахам дойдута\\n\\n14\\n00:01:51,800 --> 00:01:59,800\\nМодун Россия киэн туттуута,\\n\\n15\\n00:02:00,300 --> 00:02:07,300\\nӨркөн өрөгөй тойугун туойдун,\\n\\n16\\n00:02:07,700 --> 00:02:15,100\\nҮүнэр үйэҕэ үрдүү туруохтун!\\n\\n17\\n00:02:16,800 --> 00:02:24,200\\nБарҕа быйаҥнаах Сахам дойдута,\\n\\n18\\n00:02:24,800 --> 00:02:32,500\\nАрчылыыр аар алгыһын биэрдэ\\n\\n19\\n00:02:33,000 --> 00:02:39,500\\nСахабыт сирэ дьоһун дуолан\\n\\n20\\n00:02:40,000 --> 00:02:48,200\\nСайдыы аартыгар түөрэҕэ түстэ. \\n\\n21\\n00:02:48,800 --> 00:02:56,500\\nБарҕа быйаҥнаах Сахам дойдута\\n\\n22\\n00:02:57,000 --> 00:03:04,500\\nМодун Россия киэн туттуута,\\n\\n23\\n00:03:05,000 --> 00:03:12,500\\nӨркөн өрөгөй тойугун туойдун,\\n\\n24\\n00:03:13,000 --> 00:03:24,800\\nҮүнэр үйэҕэ үрдүү туруохтун!',\n", + " 'bytes': 2071,\n", + " 'sha1': 'rfjo4pj8iuj3q68cslvboa13vrnlu0o',\n", + " 'parent_id': 100802943,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100888837,\n", + " 'timestamp': '2013-07-29T17:08:32Z',\n", + " 'user': {'id': 106171, 'text': 'Rodrigo.Argenton'},\n", + " 'page': {'id': 27484001,\n", + " 'title': 'Primeiras edições.webm.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:11,130 --> 00:00:15,150 Nas primeiras edições começaremos por negrito, selecionando o texto e clicando no botão N. 2 00:00:15,155 --> 00:00:19,105 ...'\",\n", + " 'text': '1\\n00:00:11,130 --> 00:00:15,150\\nNas primeiras edições começaremos por negrito, selecionando o texto e clicando no botão N.\\n\\n2\\n00:00:15,155 --> 00:00:19,105\\nVocês verá abaixo três opções, clico em mostrar a previsão para ver como está a sua edição.\\n\\n3\\n0:00:19,110 --> 00:00:23,000\\nPara o itálico, faço o mesmo processo, \\n\\n4\\n00:00:23,100 --> 00:00:25,170\\nseleciono o texto e clico no botão I.\\n\\n5\\n00:00:25,175 --> 00:00:28,000\\nPara inserir um ligação para outra página desta wiki, \\n\\n6\\n00:00:28,000 --> 00:00:29,000\\nseleciono o texto que quero criar a ligação,\\n\\n7\\n00:00:29,100 --> 00:00:30,000\\nclico nesta corrente, \\n\\n8\\n00:00:30,100 --> 00:00:36,170\\nverifico se a página existe e se selecionado para uma página interna\\n\\n9\\n00:00:41,140 --> 00:00:42,800\\nPara ligações externas, \\n\\n10\\n00:00:43,000 --> 00:00:45,000\\neu clico no botão link, \\n\\n11\\n00:00:45,500 --> 00:00:46,800\\ncoloco o endereço que eu quero, \\n\\n12\\n00:00:47,000 --> 00:00:47,800\\no nome que irá aparecer, \\n\\n13\\n00:00:48,000 --> 00:00:49,00\\nverifico se é um link externo\\n\\n14\\n00:00:49,000 --> 00:00:50,090\\ne clico em inserir o link.\\n\\n14\\n00:00:50,100 --> 00:00:51,100\\nAtenção à esse espaço.\\n\\n15\\n00:01:00,07 --> 00:01:02,000\\nOs botões inserem automaticamente a sintaxe,\\n\\n16\\n00:01:02,100 --> 00:01:05,000\\nno entanto, podemos fazer isso manualmente,\\n\\n17\\n00:01:06,000 --> 00:01:07,000\\ntudo o que a gente abre a gente fecha.\\n\\n18\\n00:01:08,000 --> 00:01:10,000\\nNo caso de ligações externas\\n\\n19\\n00:01:10,100 --> 00:01:12,000\\nO endereço que a gente quer\\n\\n20\\n00:01:12,100 --> 00:01:14,000\\nespaço, o nome que irá aparecer\\n\\n21\\n00:01:14:100 --> 00:01:15,000',\n", + " 'bytes': 1632,\n", + " 'sha1': 'kbj89h6w702tnz3r0kbjdovhgku71tb',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100923914,\n", + " 'timestamp': '2013-07-30T10:32:17Z',\n", + " 'user': {'id': 2742126, 'text': 'Jan Ainali (WMSE)'},\n", + " 'page': {'id': 27492350,\n", + " 'title': 'Ett filmklipp om Wikimedia Commons.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:11,220 --> 00:00:16,620 Wikimedia Commons också känt som bara Commons, är ett projekt som samlar 2 00:00:16,600 --> 00:00:23,100 bilder, ljud och vi...'\",\n", + " 'text': '1\\n00:00:11,220 --> 00:00:16,620\\nWikimedia Commons också känt som\\nbara Commons, är ett projekt som samlar\\n\\n2\\n00:00:16,600 --> 00:00:23,100\\nbilder, ljud och video och annan\\nutbildande och förklarande multimedia.\\n\\n3\\n00:00:23,590 --> 00:00:28,420\\nDet finns mer än 16 miljioner filer på\\nCommons som är fria att ladda ner. \\n\\n4\\n00:00:28,540 --> 00:00:35,610\\nDe kan användas till tidningar, webbplatser,\\naffischer, reklam, konst och mycket annat.\\n\\n5\\n00:00:38,690 --> 00:00:41,620\\nFilerna lagras på Commons \\noch kan användas fritt, \\n\\n6\\n00:00:42,140 --> 00:00:46,050\\näven för kommersiella ändamål så \\nlänge licensen är respekteras. \\n\\n7\\n00:00:47,230 --> 00:00:52,300\\nLicensen på Wikimedia den innebär att du \\när tillåten att använda, sprida, \\n\\n8\\n00:00:52,560 --> 00:00:59,310\\ngöra om, modifiera, bygga vidare och skapa \\nnya verk på de nuvarande verken, \\n\\n9\\n00:00:59,930 --> 00:01:04,130\\nså länge du anger upp upphovspersonen \\noch den korrekta licensen för verket. \\n\\n10\\n00:01:05,840 --> 00:01:10,670\\nFiler ligger i kategorier. Låt oss titta på en fil, \\nsamt vilka andra filer som ligger i samma kategori.\\n\\n11\\n00:01:15,300 --> 00:01:17,960\\nAtt hitta vad du söker, det gör du\\nenklast genom att klicka dig till kategorier,\\n\\n12\\n00:01:19,620 --> 00:01:22,660\\neller genom att nyttja de gallerier\\n som finns på Commons.\\n\\n13\\n00:01:24,830 --> 00:01:30,600\\nPå Commons kan du hitta foton, film och ljud\\ni olika gallerier som platser och landmärken, \\n\\n14\\n00:01:30,900 --> 00:01:37,470\\ndjur, växter och mineraler,\\npersoner, vardagliga saker, konstföremål.\\n\\n15\\n00:01:38,780 --> 00:01:42,440\\nÄven historiska bilder och\\ninskannade antika böcker. \\n\\n16\\n00:01:45,970 --> 00:01:49,190\\nDu kan också hitta förklaringar som \\ndiagram, grafer och kartor,\\n\\n17\\n00:01:49,350 --> 00:01:52,250\\nvideo och ljudinspelningar och\\nmycket mycket annat.\\n\\n18\\n00:01:56,460 --> 00:02:00,380\\nOm du gillar att fotografera, får du \\ngärna ladda upp dina bilder på Commons.\\n\\n19\\n00:01:59,620 --> 00:02:05,100\\n Om du gillar att illustrera, kan du\\n lägga upp dina egna diagram och animationer.\\n\\n20\\n00:02:05,980 --> 00:02:09,570\\nOm du är musiker, så kan du\\nladda upp dina inspelningar av fri musik. \\n\\n21\\n00:02:07,890 --> 00:02:18,730\\nOm du får problem så finns det en frågesida\\noch många hjälpsidor på olika språk.\\n\\n22\\n00:02:20,930 --> 00:02:24,250\\nFör att kunna ladda upp filer,\\nså måste du registrera en användare.\\n\\n23\\n00:02:24,760 --> 00:02:28,110\\nRegistreringen är gratis och enkel\\noch det behövs inte om du redan är\\n\\n24\\n00:02:28,210 --> 00:02:31,160\\nen registrerad användare på Wikipedia. \\n\\n25\\n00:02:32,860 --> 00:02:37,170\\nDu kan stödja Commons speciellt genom\\natt skänka pengar till Wikimedia Foundation.\\n\\n26\\n00:02:38,450 --> 00:02:42,650\\nEller så kan du välja att stödja Wikimedia\\nSverige, en allmännyttig ideell förening\\n\\n27\\n00:02:42,700 --> 00:02:48,080\\nsom i Sverige sprider kunskap om Commons\\noch andra Wikimedia Foundation-projekt.',\n", + " 'bytes': 2953,\n", + " 'sha1': 'l4o1w3ltnutpfjoqiiaksb7c9g7s2vs',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100927096,\n", + " 'timestamp': '2013-07-30T12:09:14Z',\n", + " 'user': {'id': 2742126, 'text': 'Jan Ainali (WMSE)'},\n", + " 'page': {'id': 27493223,\n", + " 'title': 'Ett filmklipp om Wikimedia Commons.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:11,220 --> 00:00:16,620\\nWikimedia Commons, also known as\\nonly Commons, a project that collects\\n\\n2\\n00:00:16,600 --> 00:00:23,100\\nimages, audio and video and other\\neducational and explanatory multimedia.\\n\\n\\n3\\n00:00:23,590 --> 00:00:28,420\\nThere are more than 16 million files on\\nCommons which are free to download.\\n\\n4\\n00:00:28,540 --> 00:00:35,610\\nThey can be used for magazines, websites,\\nposters, advertising, art and much more.\\n\\n\\n5\\n00:00:38,690 --> 00:00:41,620\\nThe files are stored on Commons\\nand can be used freely,\\n\\n6\\n00:00:42,140 --> 00:00:46,050\\neven for commercial purposes as\\nlong as the license is respected.\\n\\n7\\n00:00:47,230 --> 00:00:52,300\\nThe license on Wikimedia means that you\\nare permitted to use, distribute,\\n\\n8\\n00:00:52,560 --> 00:00:59,310\\nredo, modify, build on, and create\\nnew work on the existing work,\\n\\n9\\n00:00:59,930 --> 00:01:04,130\\nas long as you state the author\\nand the correct license for the work.\\n \\n\\n10\\n00:01:05,840 --> 00:01:10,670\\nFiles are located in categories. Let's look at a file,\\nand which other files are in the same category.\\n\\n11\\n00:01:15,300 --> 00:01:17,960\\nTo find what you seek, you can\\neasily click through categories,\\n\\n\\n12\\n00:01:19,620 --> 00:01:22,660\\nor by utilizing the galleries\\nwhich are available on Commons.\\n\\n13\\n00:01:24,830 --> 00:01:30,600\\nIn Commons, you can find photos, video and audio\\nin various galleries like sites and landmarks,\\n\\n\\n14\\n00:01:30,900 --> 00:01:37,470\\nanimals, plants and minerals;\\npeople, daily things, objects of art.\\n\\n\\n15\\n00:01:38,780 --> 00:01:42,440\\nEven historical images and\\nscanned antique books.\\n\\n\\n16\\n00:01:45,970 --> 00:01:49,190\\nYou can also find explanations to\\ncharts, graphs and maps,\\n\\n\\n17\\n00:01:49,350 --> 00:01:52,250\\nvideo and audio recordings\\nand much more.\\n\\n\\n18\\n00:01:56,460 --> 00:02:00,380\\nIf you like taking photos, you can\\nupload your photos to Commons.\\n\\n19\\n00:01:59,620 --> 00:02:05,100\\nIf you like to illustrate, you can\\nadd your own graphics and animations.\\n\\n\\n20\\n00:02:05,980 --> 00:02:09,570\\nIf you're a musician, you can\\nupload your recordings of free music.\\n\\n\\n21\\n00:02:07,890 --> 00:02:18,730\\nIf you have problems, there is a question page\\nand many help pages in different languages.\\n\\n\\n22\\n00:02:20,930 --> 00:02:24,250\\nIn order to upload files,\\nyou need to register a user.\\n\\n\\n23\\n00:02:24,760 --> 00:02:28,110\\nRegistration is free and simple\\nand it is not necessary if you are\\n\\n24\\n00:02:28,210 --> 00:02:31,160\\na registered user on Wikipedia.\\n\\n\\n25\\n00:02:32,860 --> 00:02:37,170\\nYou can support the Commons especially through\\ndonating to Wikimedia Foundation.\\n\\n\\n26\\n00:02:38,450 --> 00:02:42,650\\nOr you can choose to support Wikimedia\\nSweden, a non-profit association\\n\\n27\\n00:02:42,700 --> 00:02:48,080\\nthat in Sweden spread knowledge of Commons\\nand other Wikimedia Foundation projects.\",\n", + " 'bytes': 2793,\n", + " 'sha1': 'ra4kngb5cnfitenmn1lx9p1v0f7vbv7',\n", + " 'parent_id': 100926164,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 372192597,\n", + " 'timestamp': '2019-10-27T20:49:24Z',\n", + " 'user': {'id': 1297740, 'text': 'Snævar'},\n", + " 'page': {'id': 27494115,\n", + " 'title': 'Ladda upp en film på Commons.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:12,230 --> 00:00:15,770\\nInnan du laddar upp din fil, är det viktigt\\natt det är ett filformat som fungerar på\\n\\n2\\n00:00:15,880 --> 00:00:22,860\\nWikimedia Commons. De filformat som\\nfungerar för film är .ogv och .webm. \\n\\n3\\n00:00:23,800 --> 00:00:27,140\\nNär du sett att din fil är en av dessa\\nfilformat kan du ladda upp din fil. \\n\\n4\\n00:00:28,020 --> 00:00:32,370\\nOm du vill ha hjälp med hur man\\nkonverterar, så kan du söka efter help :\\n\\n5\\n00:00:32,510 --> 00:00:38,250\\nconverting video på Wikimedia Commons\\ni sökrutan. Och där står det om hur du\\n\\n6\\n00:00:38,340 --> 00:00:44,220\\nkonverterar filmklipp.\\nTryck på Ladda upp fil, det första du ser\\n\\n7\\n00:00:44,330 --> 00:00:49,160\\när information om licensen, vilken\\ninnebär att du tillåter andra att använda,\\n\\n8\\n00:00:49,650 --> 00:00:55,680\\nsprida, göra om, modifera,och bygga\\nvidare, skapa nya verk på ditt verk så\\n\\n9\\n00:00:56,140 --> 00:01:00,480\\nlänge de anger att det är du som är\\nupphovsman eller upphovskvinna. \\n\\n10\\n00:01:01,480 --> 00:01:05,470\\nOm det känns ok, \\nkan du klicka dig vidare. \\n\\n11\\n00:01:05,980 --> 00:01:10,960\\nVälj nu mediafil att donera. \\nNär du är nöjd med de filer du laddat\\n\\n12\\n00:01:11,000 --> 00:01:14,220\\nupp, och fått ett godkändtecken, \\nkan du trycka på fortsätt. \\n\\n13\\n00:01:15,280 --> 00:01:18,600\\nHär måste du intyga att det är du som är\\nskapare av detta verk.\\n\\n14\\n00:01:19,790 --> 00:01:22,540\\nTexten om licensen kommer upp som du\\nnu godkänner. \\n\\n15\\n00:01:23,100 --> 00:01:27,030\\nDu kan läsa om vad licensen innebär\\ninnan du trycker på nästa. \\n\\n16\\n00:01:29,280 --> 00:01:33,010\\nDu får nu välja en titel, gärna en\\nbeskrivande en titel så att andra också\\n\\n17\\n00:01:33,370 --> 00:01:36,260\\nkan hitta den fantastiska fil du precis\\nladdat upp. \\n\\n18\\n00:01:36,720 --> 00:01:42,990\\nLägg gärna till en beskrivning av din fil. \\nDatumet för din fil läggs ofta till automatiskt.\\n\\n19\\n00:01:44,340 --> 00:01:47,040\\nNär du är klar med titel och beskrivning,\\ntryck på nästa. \\n\\n20\\n00:01:48,430 --> 00:01:50,710\\nHärligt! \\nTack för din uppladdning. \\n\\n21\\n00:01:51,030 --> 00:01:54,580\\nDu får nu en wikilink för att använda \\nfilmen på till exempel Wikipedia. \\n\\n22\\n00:01:55,480 --> 00:01:58,080\\nDu får även en URL för att länka till\\nfilmen på andra ställen. \\n\\n23\\n00:01:59,270 --> 00:02:02,720\\nDu kan nu trycka på din fil och nu\\nkommer du in på filens wikisida. \\n\\n24\\n00:02:03,630 --> 00:02:06,060\\nTack så mycket för att du tog dig tid.',\n", + " 'bytes': 2468,\n", + " 'sha1': 'sk9vbn0cpnqkay4u14piukz4g9xb5u1',\n", + " 'parent_id': 372192246,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 371933966,\n", + " 'timestamp': '2019-10-26T01:47:36Z',\n", + " 'user': {'id': 1297740, 'text': 'Snævar'},\n", + " 'page': {'id': 27494872,\n", + " 'title': 'Ladda upp en film på Commons.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'fix format',\n", + " 'text': \"1\\n00:00:12.230 --> 00:00:15.770\\nBefore you upload your file, it is important\\nthat it has a file format that works on\\n\\n2\\n00:00:15.880 --> 00:00:22.860\\nWikimedia Commons. The file formats\\nworks that for film is: ogv and. webm.\\n\\n3\\n00:00:23.800 --> 00:00:27.140\\nWhen you found that your file is one of these\\nfile formats, you can upload your file.\\n\\n4\\n00:00:28.020 --> 00:00:32.370\\nIf you want help with how to\\nconvert, you can search for help:\\n\\n5\\n00:00:32.510 --> 00:00:38.250\\nconverting video on Wikimedia Commons\\nin the search box. And there it states about how you\\n\\n6\\n00:00:38.340 --> 00:00:44.220\\nconvert video.\\nPress the Upload file, the first thing you see\\n\\n7\\n00:00:44.330 --> 00:00:49.160\\nis information about the license, which\\nmeans that you allow others to use,\\n\\n8\\n00:00:49.650 --> 00:00:55.680\\ndistribute, modify and build upon,\\ncreate new works based on your work \\n\\n9\\n00:00:56.140 --> 00:01:00.480\\nas long as they indicate that you are\\nthe author.\\n\\n10\\n00:01:01.480 --> 00:01:05.470\\nIf it feels ok,\\nyou can click to continue.\\n\\n11\\n00:01:05.980 --> 00:01:10.960\\nSelect your media file to donate.\\nWhen you are satisfied with the files you uploaded\\n\\n12\\n00:01:11.000 --> 00:01:14.220\\nand received an approved button,\\nyou can press continue.\\n\\n13\\n00:01:15.280 --> 00:01:18.600\\nHere you have to certify that it is you who are\\ncreator of this work.\\n\\n14\\n00:01:19.790 --> 00:01:22.540\\nThe text of the license comes up \\nfor you to agree.\\n\\n15\\n00:01:23.100 --> 00:01:27.030\\nYou can read about what the license means\\nbefore pressing next.\\n\\n16\\n00:01:29.280 --> 00:01:33.010\\nYou may now choose a title, please use a\\ndescriptive a title so that others\\n\\n17\\n00:01:33.370 --> 00:01:36.260\\ncan find the amazing file you just\\nuploaded.\\n\\n18\\n00:01:36.720 --> 00:01:42.990\\nFeel free to add a description of your file.\\nThe date of your file is often added automatically.\\n\\n19\\n00:01:44.340 --> 00:01:47.040\\nWhen you finish with the title and description,\\npress next.\\n\\n20\\n00:01:48.430 --> 00:01:50.710\\nLovely!\\nThanks for your upload.\\n\\n21\\n00:01:51.030 --> 00:01:54.580\\nYou will now have a wiklink in order to use\\nfilm on, for example Wikipedia.\\n\\n22\\n00:01:55.480 --> 00:01:58.080\\nYou also get a URL in order to link to\\nthe film from other places.\\n\\n23\\n00:01:59.270 --> 00:02:02.720\\nYou can now press on your file and now\\nyou enter the file's wiki page.\\n\\n24\\n00:02:03.630 --> 00:02:06.060\\nThanks you very much for your time.\",\n", + " 'bytes': 2396,\n", + " 'sha1': 'lzocragibfy9ps7atbrn4e2uogg6woh',\n", + " 'parent_id': 100930566,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 114017302,\n", + " 'timestamp': '2014-01-15T13:21:15Z',\n", + " 'user': {'id': 8815, 'text': 'Peter17'},\n", + " 'page': {'id': 27500334,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'typo',\n", + " 'text': \"\\n1\\n00:00:00,800 --> 00:00:03,500\\nBonjour ! Je suis Trevor, et j'aide à créer un éditeur visuel pour Wikipédia.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nN'importe qui peut modifier Wikipédia, mais ceux qui essaient sont pour la plupart facilement embrouillés.\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\nparce que l'ancien code de Wikipédia est assez difficile à comprendre.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nC'était génial quand nous l'avons créé il y a douze ans,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nmais si nous voulons obtenir la somme de toutes les connaissances humaines pour tous,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\nnous devons la rendre plus facile à partager.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nL'éditeur visuel est le plus grand changement de Wikipédia que nous ayons fait.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nIl permet d'écrire sur Wikipédia aussi facilement qu'un document pour la classe ou envoyer un courriel.\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nIl est encore un peu buggé,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nmais si vous voulez un aperçu de la façon dont Wikipédia va fonctionner dans un proche avenir,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\nCréez un compte sur la Wikipédia en anglais.\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nAllez à vos préférences, et activez la version alpha de l'éditeur visuel.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nVous pouvez même nous aider en l'utilisant et en nous envoyant des commentaires.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nAlors rejoignez-nous en rendant la somme de toutes les connaissances humaines faciles à partager.\",\n", + " 'bytes': 1545,\n", + " 'sha1': 'da9i0yqs9dz39jbm54vky4rlv0p8pi4',\n", + " 'parent_id': 114017284,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100962378,\n", + " 'timestamp': '2013-07-31T05:46:47Z',\n", + " 'user': {'id': 2264563, 'text': 'Davidricardo2003'},\n", + " 'page': {'id': 27502843,\n", + " 'title': 'Himno Universidad de Medellin.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:17,000 --> 00:00:26,400\\nLa libertad es el fruto\\nmás dulce de tus entrañas\\n\\n2\\n00:00:26,600 --> 00:00:36,800\\nLa libertad y la ciencia\\nson tus estrellas mas altas\\n\\n3\\n00:00:36,800 --> 00:00:44,400\\nLa libertad es el fruto\\nmás dulce de tus entrañas\\n\\n4\\n00:00:44,600 --> 00:00:53,800\\nLa libertad y la ciencia\\nson tus estrellas mas altas\\n\\n5\\n00:00:53,800 --> 00:01:02,800\\nCantando vamos tus hijos,\\na recibir el futuro,\\n\\n6\\n00:01:02,800 --> 00:01:12,800\\nY a repartir tus cosechas\\npor los caminos del mundo.\\n\\n7\\n00:01:12,900 --> 00:01:20,800\\nY a repartir tus cosechas\\npor los caminos del mundo.\\n\\n8\\n00:01:37,000 --> 00:01:47,400\\nLa libertad es el fruto\\nmás dulce de tus entrañas\\n\\n9\\n00:01:47,900 --> 00:01:55,800\\nLa libertad y la ciencia\\nson tus estrellas mas altas\\n\\n10\\n00:01:56,000 --> 00:02:05,400\\nLa libertad es el fruto\\nmás dulce de tus entrañas\\n\\n11\\n00:02:05,600 --> 00:02:17,800\\nLa libertad y la ciencia\\nson tus estrellas mas altas',\n", + " 'bytes': 936,\n", + " 'sha1': '72fkyh4719xcrmlcbdn9slrb3wja6ha',\n", + " 'parent_id': 100960882,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 117005769,\n", + " 'timestamp': '2014-02-22T05:56:43Z',\n", + " 'user': {'id': 2990494, 'text': 'Jianhui67'},\n", + " 'page': {'id': 27505378,\n", + " 'title': 'RMS Titanic distress signal simulated as morse code.wav.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/76.170.84.122|76.170.84.122]] ([[User talk:76.170.84.122|talk]]) to last revision by Einottaja',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:33,000\\nSOS SOS CQD CQD - MGY We are sinking fast passengers being put into boats MGY',\n", + " 'bytes': 109,\n", + " 'sha1': '62tgba12ockos8keb0wpcb4937hbniz',\n", + " 'parent_id': 116971998,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100994063,\n", + " 'timestamp': '2013-07-31T14:44:29Z',\n", + " 'user': {'id': 2742126, 'text': 'Jan Ainali (WMSE)'},\n", + " 'page': {'id': 27507288,\n", + " 'title': 'Ett filmklipp om Wikimedia Commons.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:11,220 --> 00:00:16,620 维基资源共享只被作为一个 共享所被大家熟知。这个项目搜集 2 00:00:16,600 --> 00:00:23,100 图片,影...'\",\n", + " 'text': '1\\n00:00:11,220 --> 00:00:16,620\\n维基资源共享只被作为一个\\n共享所被大家熟知。这个项目搜集\\n\\n2\\n00:00:16,600 --> 00:00:23,100\\n图片,影音,视频和其他的\\n教育性和解释性的多媒体。\\n\\n3\\n00:00:23,590 --> 00:00:28,420\\n有超过一千六百万的文件在维基资源共享里\\n他们都是免费下载的。\\n4\\n00:00:28,540 --> 00:00:35,610\\n他们能被用在杂志,网站,\\n海报,广告,艺术和许多其他地方。 \\n5\\n00:00:38,690 --> 00:00:41,620\\n文件都贮存在维基资源共享里\\n可以免费使用,\\n6\\n00:00:42,140 --> 00:00:46,050\\n甚至作为一些商业用途\\n只要文件许可是被尊重的。\\n7\\n00:00:47,230 --> 00:00:52,300\\n在Wikimedia上的许可证意味着你\\n是允许使用,传播,\\n8\\n00:00:52,560 --> 00:00:59,310\\n重做,修改,扩大和创建\\n新的东西在原有的基础上。\\n\\n9\\n00:00:59,930 --> 00:01:04,130\\n只要你标明作者\\n和作品的正确许可。\\n\\n10\\n00:01:05,840 --> 00:01:10,670\\n文件位于不同类别中。让我们看一个文件,\\n它和其他的文件在一个类别中。\\n11\\n00:01:15,300 --> 00:01:17,960\\n想要找到你所寻找的,你\\n可以很简单的通过点击类别\\n\\n12\\n00:01:19,620 --> 00:01:22,660\\n或者使用画廊\\n在维基资源共享里可以找到\\n\\n13\\n00:01:24,830 --> 00:01:30,600\\n在维基资源共享里,你能找到照片,视频和影音\\n在不同种类的画廊里像场所,地标\\n\\n14\\n00:01:30,900 --> 00:01:37,470\\n动物,植物和矿物,\\n人物,日常事物和艺术品,\\n\\n15\\n00:01:38,780 --> 00:01:42,440\\n甚至一些历史照片和\\n扫描的古老的书籍。\\n\\n\\n16\\n00:01:45,970 --> 00:01:49,190\\n你也能找到对图片,表格\\n和地图的解释\\n\\n17\\n00:01:49,350 --> 00:01:52,250\\n视频和影音片段和\\n许多其他的东西。\\n\\n\\n18\\n00:01:56,460 --> 00:02:00,380\\n如果你爱好摄影,你可以\\n上传照片到维基资源共享。\\n\\n19\\n00:01:59,620 --> 00:02:05,100\\n如果你喜欢图解说明,你可以\\n键入你自己的图表和动画。\\n\\n\\n20\\n00:02:05,980 --> 00:02:09,570\\n如果你是歌音乐家,你可以\\n上传你免费的音乐录音。\\n\\n\\n21\\n00:02:07,890 --> 00:02:18,730\\n如果你有问题,我们有一个问题页\\n和许多不同语言的帮助页面。\\n\\n22\\n00:02:20,930 --> 00:02:24,250\\n为了能过上传文件,\\n你需要注册用户\\n\\n\\n23\\n00:02:24,760 --> 00:02:28,110\\n注册是免费的而且简单\\n你不需要注册如果你是\\n24\\n00:02:28,210 --> 00:02:31,160\\n维基百科的用户。\\n\\n\\n25\\n00:02:32,860 --> 00:02:37,170\\n你可以支持维基资源共享通过\\n给维基百科基金会捐款\\n\\n26\\n00:02:38,450 --> 00:02:42,650\\n或者你可以选择支持瑞典维基百科\\n一个非盈利性的机构\\n\\n27\\n00:02:42,700 --> 00:02:48,080\\n在瑞典传播维基资源共享的知识\\n和其他的维基百科基金会的项目。',\n", + " 'bytes': 2796,\n", + " 'sha1': 'hmtzyfu5gz4atuz4us3g9ppwy9woslw',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100994134,\n", + " 'timestamp': '2013-07-31T14:45:35Z',\n", + " 'user': {'id': 2742126, 'text': 'Jan Ainali (WMSE)'},\n", + " 'page': {'id': 27507301,\n", + " 'title': 'Ladda upp en film på Commons.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '00:00:12.230,00:00:15.770 在上传你的文件之前,很重要的一点是 文件的格式要适合 00:00:15.880,00:00:22.860 维基资源共享。对于...'\",\n", + " 'text': '00:00:12.230,00:00:15.770 \\n在上传你的文件之前,很重要的一点是\\n文件的格式要适合\\n\\n00:00:15.880,00:00:22.860 \\n维基资源共享。对于影片的文件格式\\n是.ogv和.webm。\\n\\n00:00:23.800,00:00:27.140 \\n当你发现你的文件是这其中的一种,\\n你就可以上传文件。\\n\\n00:00:28.020,00:00:32.370 \\n如果你想要帮助如何\\n转换格式,你可以搜索帮助: \\n\\n00:00:32.510,00:00:38.250 \\n转换视频在维基资源共享\\n的搜索框内。那会教你如何\\n\\n00:00:38.340,00:00:44.220 \\n转换视频。\\n点击上传文件,你看的第一歌东西\\n\\n00:00:44.330,00:00:49.160 \\n是关于许可的信息,它\\n意味着你允许其他人使用\\n\\n00:00:49.650,00:00:55.680 \\n传播,修改和扩大,\\n创建新的东西在你的基础上\\n\\n00:00:56.140,00:01:00.480 \\n只要他们标明你就是原创者。\\n\\n00:01:01.480,00:01:05.470 \\n如果一切ok,\\n你可以点击继续。\\n\\n00:01:05.980,00:01:10.960 \\n选择你要上传的媒体文件。\\n如果你对所上传的文件感到满意\\n\\n\\n00:01:11.000,00:01:14.220 \\n并且得到一个确认按钮,\\n你可以点击继续。\\n\\n00:01:15.280,00:01:18.600 \\n这里你要证明你就是\\n作品的原创者。\\n\\n00:01:19.790,00:01:22.540 \\n许可的相关条文跳出\\n需要你的同意。\\n\\n00:01:23.100,00:01:27.030 \\n你可以阅读一下许可是什么东西\\n在你点击下一步以前\\n\\n00:01:29.280,00:01:33.010 \\n现在你可以选择一个标题,请用一个\\n描述性的标题以便其他人\\n\\n00:01:33.370,00:01:36.260 \\n能够找到完美的文件\\n你所上传的\\n\\n00:01:36.720,00:01:42.990 \\n请再加上一个对文件的描述。\\n上传文件的日期会自动生成。\\n\\n00:01:44.340,00:01:47.040 \\n当你结束了文件的标题和描述,\\n点击下一步。\\n\\n00:01:48.430,00:01:50.710 \\n太棒了!\\n谢谢你的上传。\\n\\n00:01:51.030,00:01:54.580 \\n现在你有一个维基链接方便使用\\n文件在,例如维基百科上。\\n\\n00:01:55.480,00:01:58.080\\n你也得到了一个URL能够链接\\n文件到其他的地方。\\n00:01:59.270,00:02:02.720 \\n现在你可以点击你上传的文件并且\\n可以进入文件的维基页面。\\n\\n00:02:03.630,00:02:06.060 \\n非常感谢你的时间!',\n", + " 'bytes': 2174,\n", + " 'sha1': 'bdy7pdrmr6pda4w8cddlmbvj270zg6b',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101066867,\n", + " 'timestamp': '2013-08-01T14:11:37Z',\n", + " 'user': {'text': '88.255.123.50'},\n", + " 'page': {'id': 27523514,\n", + " 'title': 'Wiki feel stupid v2.ogv.tr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:05:00,000 Deneme sürümü v.1'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:05:00,000\\nDeneme sürümü v.1',\n", + " 'bytes': 52,\n", + " 'sha1': 'hsdmjyccnxftcthjchpysjtdnndqlkk',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101067716,\n", + " 'timestamp': '2013-08-01T14:29:54Z',\n", + " 'user': {'id': 246324, 'text': 'Toliño'},\n", + " 'page': {'id': 27523889,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.gl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'tradución ao galego/Galician translation',\n", + " 'text': '\\n1\\n00:00:00,800 --> 00:00:03,500\\nOla! Son Trevor, e axudo a construír un editor visual para a Wikipedia.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nCalquera persoa pode editar a Wikipedia, pero a maioría das que o intenta confúndese facilmente\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\ndebido a que o código vello da Wikipedia é bastante difícil de entender.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nEra fantástico cando o creamos hai doce anos,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\npero se queremos reunir e ofrecer á xente a suma de todo o coñecemento humano,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\ntemos que dar máis facilidades para compartilo.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nO editor visual é o meirande cambio que fixemos na Wikipedia.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nFai que escribir na Wikipedia sexa como escribir traballo para clase ou enviar un correo electrónico.\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nAínda ten algúns erros,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\npero se queres botarlle un ollo a como vai traballar a Wikipedia nun futuro próximo,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\ncrea unha conta na Wikipedia en inglés.\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nVai ás preferencias e activa a versión alfa do editor visual.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nMesmo podes axudarnos utilizándoo e logo enviando os teus comentarios.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nÚnete a nós para que a suma de todo o coñecemento humano sexa máis doada de compartir.',\n", + " 'bytes': 1436,\n", + " 'sha1': 'exqer0wvj226qyv7vojx3yyk6cf7vf0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101075735,\n", + " 'timestamp': '2013-08-01T17:16:46Z',\n", + " 'user': {'text': '116.39.11.26'},\n", + " 'page': {'id': 27525676,\n", + " 'title': 'Trayvon Martin Shooting Call1.ogg.ko.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,130 --> 00:00:05,939 Dispatcher: 샌포드 경찰청 입니다 무슨일입니까? Zimmerman: 네 저기 여기 동네에, 무단으로 침입한 1 ...'\",\n", + " 'text': '0\\n00:00:00,130 --> 00:00:05,939\\nDispatcher: 샌포드 경찰청 입니다 무슨일입니까?\\nZimmerman: 네 저기 여기 동네에, 무단으로 침입한\\n\\n1\\n00:00:05,940 --> 00:00:12,490\\n사람이 보이는데 되게 의심 가거든요?\\n어,, 리트릿 뷰 서클 근처에요 음..\\n\\n2\\n00:00:12,490 --> 00:00:19,220\\n주소는 대강 리트릿 뷰 서클 111번지 쯤\\n될겁니다. 이 사람 되게 뭔가\\n\\n3\\n00:00:19,220 --> 00:00:24,659\\n뭔가 안좋아보이고, 약을 한것같기도 하구요.\\n지금 비내리고있는데 그냥 우산도 없이 걷네요.\\n\\n4\\n00:00:24,659 --> 00:00:27,589\\nDispatcher: 알겠습니다 그 사람이 백인입니까\\n\\n5\\n00:00:27,589 --> 00:00:29,749\\n흑인, 아니면 히스패닉계입니까?\\nZimmerman: 어, 흑인같아요.\\n\\n6\\n00:00:29,749 --> 00:00:34,940\\nDispatcher: 그 사람이 뭘 입었는지 보입니까?\\nZimmerman: 네. 검은색 후드티, 회색계열?\\n\\n7\\n00:00:34,940 --> 00:00:41,940\\n그리고 청바지.. 아니면 스웨트바지를 입고있구요\\n흰 테니스 운동화를 신고있네요. 이사람은.. [알아들을수 없음],\\n\\n8\\n00:00:42,090 --> 00:00:44,990\\n지금 저를 그냥 쳐다보고 있어요..\\nDispatcher: 그니까 지금 그 사람이 그 주변을\\n\\n9\\n00:00:44,990 --> 00:00:46,040\\n둘러보고 있다는 건가요?\\nZimmerman: 네 침입할 집을 찾는 것 같아요.\\n\\n10\\n00:00:46,040 --> 00:00:49,150\\nDispatcher: 알겠습니다..\\nZimmerman: 지금 저를 쳐다보고 있어요..\\n\\n11\\n00:00:49,150 --> 00:00:52,410\\nDispatcher: 네 아까 1111 번지라고 하셨나요 아님\\n111번지?\\n\\n12\\n00:00:52,410 --> 00:00:55,180\\nZimmerman: 클럽하우스에요.\\nDispatcher: 클럽하우스요? 그 사람이\\n\\n13\\n00:00:55,180 --> 00:01:00,190\\n클럽하우스 근처 정확히 어디쯤인지 말씀해주시겠습니까?\\nZimmerman: 네.. 지금 저한테 다가오는데요. \\n\\n14\\n00:01:00,190 --> 00:01:07,190\\nDispatcher: 네.\\nZimmerman: 허리띠를 손에 쥐고있어요..\\n\\n15\\n00:01:08,390 --> 00:01:11,149\\n그리고 흑인 남성이구요..\\nDispatcher: 몇살로 보이십니까?\\n\\n16\\n00:01:11,149 --> 00:01:13,819\\nZimmerman: 셔츠에는 버튼이 달려있어요,\\n아 한 10대 후반 정도?\\n\\n17\\n00:01:13,819 --> 00:01:20,819\\nDispatcher: 10대 후반, 알겠습니다.\\nZimmerman: 저 녀석 뭔가 이상해요.\\n\\n18\\n00:01:21,729 --> 00:01:23,179\\n절 보려고 다가오고있고, 손에 뭘 쥐고 있어요.\\n뭘하려고 하는건지 전혀 모르겠어요.\\n\\n19\\n00:01:23,179 --> 00:01:25,069\\nDispatcher: 뭘 하려고하는 거 같음 즉시 알려주세요.\\n알겠습니까?\\n\\n20\\n00:01:25,069 --> 00:01:29,130\\nZimmerman: 여기에 경찰관이 도착하는데\\n몇분이나 걸립니까?\\n\\n21\\n00:01:29,130 --> 00:01:36,130\\nDispatcher: 이미 한명이 그쪽으로 가고 있습니다.\\n뭘하는거같으면 즉시 알려주세요.\\n\\n22\\n00:01:36,929 --> 00:01:43,090\\nZimmerman: 예.. 이런녀석들은 항상 무언갈 갖고\\n\\n23\\n00:01:43,090 --> 00:01:50,090\\n달아나기 마련이죠. 클럽하우스에 도착하시면\\n직진해서 왼쪽으로 도세요.\\n\\n24\\n00:01:51,880 --> 00:01:56,149\\n사실 클럽하우스 좀 전쯤일 거에요\\nDispatcher: 그니까 클럽하우스 왼편이라는\\n\\n25\\n00:01:56,149 --> 00:01:59,899\\n건가요?\\nZimmerman: 아뇨, 그냥 정문 들어와서\\n\\n26\\n00:01:59,899 --> 00:02:06,849\\n왼쪽으로 도세요.. 어.. 그냥 \\n일단 들어와서는 왼편을 보세요. \\n\\n27\\n00:02:06,849 --> 00:02:10,789\\n돌지는 말구요. 젠장, 도망가잖아.\\nDispatcher: 달아납니까? 어느 길로 가는지\\n\\n28\\n00:02:10,789 --> 00:02:13,609\\n알려주실 수 있습니까?\\nZimmerman: 옆 동네로 가려고 다른 문\\n\\n29\\n00:02:13,610 --> 00:02:16,250\\n쪽 길로 가는거같아요.\\nDispatcher: 어떤 문쪽 입니까?\\n\\n30\\n00:02:16,250 --> 00:02:18,740\\nZimmerman: 뒷문이요...씨발.. [이해할 수 없음]\\n\\n31\\n00:02:18,740 --> 00:02:21,940\\nDispatcher: 지금 쫓고있습니까?\\nZimmerman: 네..\\n\\n32\\n00:02:21,940 --> 00:02:26,859\\nDispatcher: 알겠습니다. 그러실 필요는\\n없습니다.\\n\\n33\\n00:02:26,860 --> 00:02:33,310\\nZimmerman: 네.\\nDispatcher: 네, 성함이?\\n\\n34\\n00:02:33,310 --> 00:02:39,120\\nZimmerman: 조지요.....도망갔어요.\\nDispatcher: 네 조지씨, 성이?\\n\\n35\\n00:02:39,120 --> 00:02:41,700\\nZimmerman: 짐머만이요.\\n\\n36\\n00:02:41,700 --> 00:02:45,829\\nDispatcher: 네 조지씨 지금 경찰서로\\n전화하신 전화번호가 무엇이죠?\\n\\n37\\n00:02:45,830 --> 00:02:48,300\\nZimmerman: [편집됨]\\nDispatcher: 알겠습니다. 조지씨. 지금\\n\\n38\\n00:02:48,300 --> 00:02:55,300\\n우리고 같은 길로 향하고 있습니다.\\n나중에 잡았을 때 경관을 만나길 원하십니까?\\n\\n39\\n00:02:55,940 --> 00:02:58,870\\nZimmerman: 네.\\nDispatcher: 예 어디서 만나고 싶으십\\n\\n40\\n00:02:58,870 --> 00:03:03,010\\n니까?\\nZimmerman: 경관님들이 문지나 오시면,\\n\\n41\\n00:03:03,010 --> 00:03:10,010\\n클럽하우스 좀 뒤로 오라고 말씀해주세요.\\n어, 클럽하우스에서 바로 뒤,그리고 왼쪽 그리고\\n\\n42\\n00:03:12,760 --> 00:03:18,420\\n그리고 쭉가면 우체통을 지나칠 겁니다.\\n그럼 제 트럭이 보일거에요..[이해할 수 없음]\\n\\n43\\n00:03:18,420 --> 00:03:22,119\\nDispatcher: 주차되어있는 번지가 뭔지\\n아십니까?\\n\\n44\\n00:03:22,120 --> 00:03:25,490\\nZimmerman: 아뇨 여긴 지름길이라\\n모르겠어요.\\n\\n45\\n00:03:25,490 --> 00:03:29,100\\nDispatcher: 예. 그곳에 사십니까?\\nZimmerman: 네 저는..[알아들을 수 없음]\\n\\n46\\n00:03:29,100 --> 00:03:35,680\\nDispatcher: 그쪽 아파트번지좀 알려주시겠습니까?\\nZimmerman: 어, 그냥 집이에요 1950 번지.. 제길\\n\\n47\\n00:03:35,680 --> 00:03:38,660\\n계속 찾아야겠어요. 어디로 갔는지 사라졌어요.\\n\\n48\\n00:03:38,660 --> 00:03:41,530\\nDispatcher: 예 알겠습니다. 그냥 우체통\\n근처에서 경관님들이랑 만나시지 않으시겠습니까?\\n\\n49\\n00:03:41,530 --> 00:03:46,060\\nZimmerman: 네 그게 좋겠네요.\\nDispatcher: 네 알겠습니다 조지씨. 경관들에게\\n\\n50\\n00:03:46,060 --> 00:03:49,460\\n알려주겠습니다. 괜찮겠습니까?\\nZimmerman: 네.. 그냥 저한테 통화해달라고\\n\\n51\\n00:03:49,460 --> 00:03:52,670\\n말해주시면 안될까요?\\nDispatcher: 가능합니다.\\n\\n52\\n00:03:52,670 --> 00:03:54,709\\nZimmerman: 다시 전화번호 알려드릴까요?\\n\\n53\\n00:03:54,710 --> 00:03:57,450\\nDispatcher: 아뇨 번호가 [편집됨] 맞죠?\\nZimmerman: 네 맞아요.\\n\\n54\\n00:03:57,450 --> 00:04:02,480\\nDispatcher: 예 경관들이 그쪽에 도착하면\\n조지씨에게 연락하라고 알려 드리겠습니다.\\n\\n55\\n00:04:02,480 --> 00:04:03,629\\nZimmerman: 네 감사합니다.\\nDispatcher: 감사합니다.',\n", + " 'bytes': 6625,\n", + " 'sha1': '5lkkhav07pwkmyektloy2oyi78tit8h',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101385442,\n", + " 'timestamp': '2013-08-06T13:29:08Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27590991,\n", + " 'title': '中文維基百科教學頻道第四章 第一部分.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:10,160 --> 00:00:18,400\\n條目內只有文字介紹時會不夠清晰?太沈悶?\\n\\n2\\n00:00:18,400 --> 00:00:24,480\\n加入圖片(或檔案)來幫助介紹吧!\\n\\n3\\n00:00:24,480 --> 00:00:34,200\\n只要擁有帳戶和圖片符合條件,便可把圖片上傳和加入在條目!\\n\\n4\\n00:00:52,40 --> 00:00:59,320\\n我(原作者)拍攝了一張街道的圖片,擁有此圖版權\\n\\n5\\n00:00:59,320 --> 00:01:06,320\\n這圖片便可使用\"自由內容許可協議\"來發佈了\\n\\n6\\n00:01:10,360 --> 00:01:26,680\\n在維基百內的圖片,部分是以\"自由內容許可協議\"發佈\\n\\n7\\n00:01:26,840 --> 00:01:38,520\\n這張圖片是以\"創用 CC\" (常簡稱 CC,\\n Creative Commons)\\n\\n8\\n00:01:38,520 --> 00:01:51,0\\n在圖片附近註明原作者資料,你便可以在網上自由分享圖片\\n\\n9\\n00:01:51,120 --> 00:01:56,720\\n或修改圖片\\n\\n10\\n00:01:56,800 --> 00:02:04,400\\n我們也歡迎用戶將CC的圖片修改後再上傳\\n\\n11\\n00:02:34,160 --> 00:02:40,440\\n條目\"ABC電影\"需要一張圖片幫助介紹\\n\\n12\\n00:02:40,440 --> 00:02:46,920\\n雖然電影海報有版權,但沒有自由替代品協助介紹條目,\\n\\n13\\n00:02:47,80 --> 00:02:53,400\\n這是「合理使用」,允許上傳\\n\\n14\\n00:02:53,400 --> 00:02:57,360\\n但你不可以上傳整套有版權的電影\\n\\n15\\n00:02:57,360 --> 00:03:04,840\\n因為介紹可以利用海報或文字替代,不屬於「合理使用」\\n\\n16\\n00:03:08,880 --> 00:03:17,80\\n但海報不可用來介紹人物,因為可用自由版權圖片替代\\n\\n17\\n00:03:17,80 --> 00:03:23,640\\n如自己拍攝的照片',\n", + " 'bytes': 1539,\n", + " 'sha1': 'hxf4un13s7itnla9w5ecx2k669qgfxb',\n", + " 'parent_id': 101382978,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101385467,\n", + " 'timestamp': '2013-08-06T13:29:35Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27591004,\n", + " 'title': '中文維基百科教學頻道第四章 第一部分.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:10,160 - > 00:00:18,400\\n条目内只有文字介绍时会不够清晰?太沉闷?\\n\\n2\\n00:00:18,400 - > 00:00:24,480\\n加入图片(或档案)来帮助介绍吧!\\n\\n3\\n00:00:24,480 - > 00:00:34,200\\n只要拥有帐户和图片符合条件,便可把图片上传和加入在条目!\\n\\n4\\n00:00:52,40 - > 00:00:59,320\\n我(原作者)拍摄了一张街道的图片,拥有此图具有版权\\n\\n5\\n00:00:59,320 - > 00:01:06,320\\n这图片便可使用“自由内容许可协议”来发布了\\n\\n6\\n00:01:10,360 - > 00:01:26,680\\n在维基百内的图片,部分是以“自由内容许可协议”发布\\n\\n7\\n00:01:26,840 - > 00:01:38,520\\n这张图片是以“创用CC”(常简称CC,\\n\\xa0风景)\\n\\n8\\n00:01:38,520 - > 00:01:51,0\\n在图片附近注明原作者资料,你便可以在网上自由分享图片\\n\\n9\\n00:01:51,120 - > 00:01:56,720\\n或修改图片\\n\\n10\\n00:01:56,800 - > 00:02:04,400\\n我们也欢迎用户将CC的图片修改后再上传\\n\\n11\\n00:02:34,160 - > 00:02:40,440\\n条目“ABC电影”需要一张图片帮助介绍\\n\\n12\\n00:02:40,440 - > 00:02:46,920\\n虽然电影海报有版权,但没有自由替代品协助介绍条目,\\n\\n13\\n00:02:47,80 - > 00:02:53,400\\n这是「合理使用」,允许上传\\n\\n14\\n00:02:53,400 - > 00:02:57,360\\n但你不可以上传整套有版权的电影\\n\\n15\\n00:02:57,360 - > 00:03:04,840\\n因为介绍可以利用海报或文字替代,不属于“合理使用”\\n\\n16\\n00:03:08,880 - > 00:03:17,80\\n但海报不可用来介绍人物,因为可用自由版权图片替代\\n\\n17\\n00:03:17,80 - > 00:03:23,640\\n如自己拍摄的照片',\n", + " 'bytes': 1571,\n", + " 'sha1': '6g0qx4y4faegk3uynlkar0yps5rfg4w',\n", + " 'parent_id': 101383034,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101443076,\n", + " 'timestamp': '2013-08-07T10:11:18Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27602963,\n", + " 'title': '中文維基百科教學頻道第四章 第二部分.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:08,160 --> 00:00:17,960 條目需要圖片協助介紹而維基共享沒有相同的檔案 2 00:00:31,200 --> 00:00:46,40 你上傳的檔案將直接...'\",\n", + " 'text': '1\\n00:00:08,160 --> 00:00:17,960\\n條目需要圖片協助介紹而維基共享沒有相同的檔案\\n\\n2\\n00:00:31,200 --> 00:00:46,40\\n你上傳的檔案將直接上傳至\"維基共享\" ( Wikimedia Commons)\\n\\n3\\n00:00:46,200 --> 00:00:56,600\\n(一個維基媒體基金會的媒體檔案庫,存放檔案)\\n\\n4\\n00:00:56,600 --> 00:01:03,320\\n這頁幫助你分辦準備上傳檔案是那種版權類型\\n\\n5\\n00:01:03,320 --> 00:01:12,40\\n上半部是自由版權和公共領域\\n\\n6\\n00:01:12,240 --> 00:01:20,80\\n下半部非自由版權\\n\\n7\\n00:01:22,40 --> 00:01:36,80\\n你也可以進入維基共享(Wikimedia Commons)上傳多個檔案\\n\\n8\\n00:01:39,480 --> 00:01:49,680\\n現在我要上傳一個\\u200b\\u200b香港政府部門的徽標\\n\\n9\\n00:01:49,960 --> 00:01:54,400\\n選擇檔案\\n\\n10\\n00:01:54,600 --> 00:02:08,720\\n維基百科支援的圖片,聲音,影片檔案格式,包括:\\n\\n11\\n00:02:09,880 --> 00:02:15,920\\n下方檔案名稱(描述文件名\\u200b\\u200b)請改一個與圖片相關名稱\\n\\n12\\n00:02:15,920 --> 00:02:21,560\\n檔案描述部分必須需填寫,否則可能被刪除\\n\\n13\\n00:02:21,680 --> 00:02:29,760\\n這些都是常見填寫資料\\n\\n14\\n00:02:48,0 --> 00:02:51,320\\n填寫的例子\\n\\n15\\n00:02:58,0 --> 00:03:08,240\\n輸入檔案資料後,你必須選擇合適的授權\\n\\n16\\n00:03:08,240 --> 00:03:17,360\\n因為上傳的是標誌,將會選擇標誌的授權\\n\\n17\\n00:03:17,480 --> 00:03:23,560\\n最後按\"上載檔案\"\\n\\n18\\n00:03:24,560 --> 00:03:28,240\\n成功了\\n\\n19\\n00:03:28,240 --> 00:03:37,920\\n這便是剛才輸入的資料\\n\\n20\\n00:03:37,920 --> 00:03:52,120\\n複製檔案名稱\\n\\n21\\n00:03:52,600 --> 00:03:59,160\\n在合適的地方貼上便完成了!\\n\\n22\\n00:03:59,520 --> 00:04:08,800\\n請觀看下一章圖片插入條目的方法。',\n", + " 'bytes': 1720,\n", + " 'sha1': '8g6sr1ubvxvyyzwqw7132pgm9we28xj',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101443119,\n", + " 'timestamp': '2013-08-07T10:12:03Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27602973,\n", + " 'title': '中文維基百科教學頻道第四章 第二部分.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:08,160 --> 00:00:17,960 条目需要图片协助介绍而维基共享没有相同的档案 2 00:00:31,200 --> 00:00:46,40 你上传的档案将直接...'\",\n", + " 'text': '1\\n00:00:08,160 --> 00:00:17,960\\n条目需要图片协助介绍而维基共享没有相同的档案\\n\\n2\\n00:00:31,200 --> 00:00:46,40\\n你上传的档案将直接上传至\"维基共享\" ( Wikimedia Commons) \\n\\n3\\n00:00:46,200 --> 00:00:56,600\\n(一个维基媒体基金会的媒体档案库,存放档案) \\n\\n4\\n00:00:56,600 --> 00:01:03,320\\n这页帮助你分办准备上传档案是那种版权类型\\n\\n5\\n00:01:03,320 --> 00:01:12,40\\n上半部是自由版权和公共领域\\n\\n6\\n00:01:12,240 --> 00:01:20,80\\n下半部非自由版权\\n\\n7\\n00:01:22,40 --> 00:01:36,80\\n你也可以进入维基共享(Wikimedia Commons)上传多个档案\\n\\n8\\n00:01:39,480 --> 00:01:49,680\\n现在我要上传一个香港政府部门的徽标\\n\\n9\\n00:01:49,960 --> 00:01:54,400\\n选择档案\\n\\n10\\n00:01:54,600 --> 00:02:08,720\\n维基百科支援的图片,声音,影片档案格式,包括: \\n\\n11\\n00:02:09,880 --> 00:02:15,920\\n下方档案名称(描述文件名\\u200b\\u200b)请改一个与图片相关名称\\n\\n12\\n00:02:15,920 --> 00:02:21,560\\n档案描述部分必须需填写,否则可能被删除\\n\\n13\\n00:02:21,680 --> 00:02:29,760\\n这些都是常见填写资料\\n\\n14\\n00:02:48,0 --> 00:02:51,320\\n填写的例子\\n\\n15\\n00:02:58,0 --> 00:03:08,240\\n输入档案资料后,你必须选择合适的授权\\n\\n16\\n00:03:08,240 --> 00:03:17,360\\n因为上传的是标志,将会选择标志的授权\\n\\n17\\n00:03:17,480 --> 00:03:23,560\\n最后按\"上载档案\" \\n\\n18\\n00:03:24,560 --> 00:03:28,240\\n成功了\\n\\n19\\n00:03:28,240 --> 00:03:37,920\\n这便是刚才输入的资料\\n\\n20\\n00:03:37,920 --> 00:03:52,120\\n复制档案名称\\n\\n21\\n00:03:52,600 --> 00:03:59,160\\n在合适的地方贴上便完成了! \\n\\n22\\n00:03:59,520 --> 00:04:08,800\\n请观看下一章图片插入条目的方法。',\n", + " 'bytes': 1719,\n", + " 'sha1': 'pbles7jyya5pvy44oeottcfow1g3972',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101879798,\n", + " 'timestamp': '2013-08-14T00:48:46Z',\n", + " 'user': {'id': 889002, 'text': 'Rock drum'},\n", + " 'page': {'id': 27614531,\n", + " 'title': 'Wikimedia UK Wikimania 2013 video.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Welsh',\n", + " 'text': \"1\\n00:00:19,500 --> 00:00:22,500\\nHi, my name is Jon Davies and I'm Chief Executive of Wikimedia UK.\\n\\n2\\n00:00:22,510 --> 00:00:26,000\\nI'm Jonathan Cardy and I'm the GLAM organiser for Wikimedia UK\\n\\n3\\n00:00:27,000 --> 00:00:30,000\\nMy name is Katie Chan.\\n\\n4\\n00:00:31,000 --> 00:00:35,000\\nI work for Wikimedia UK as Volunteer Support Organiser.\\n\\n5\\n00:00:36,000 --> 00:00:40,500\\nMy name's Richard Nevell and I provide office support at the Wikimedia UK offices.\\n\\n6\\n00:00:41,000 --> 00:00:45,000\\nI'm Daria Cybulska and I'm the Programme Manager at Wikimedia UK.\\n\\n7\\n00:00:46,000 --> 00:00:49,900\\nWikimedia UK's aim is to bring the volunteer community in the UK together with\\n\\n8\\n00:00:50,000 --> 00:00:54,900\\nsome of the big institutions in GLAM and education so that we can improve the whole of the projects.\\n\\n9\\n00:00:55,000 --> 00:01:01,000\\nBring in new people editing, support them, and make sure that throughout Britain,\\n\\n10\\n00:01:01,100 --> 00:01:07,000\\nWikimedia - our projects - are seen as some of the great, great sources of knowledge that they really are.\\n\\n11\\n00:01:08,000 --> 00:01:13,900\\nWikimedia UK's GLAM programe is a series of events and other collaborations\\n\\n12\\n00:01:12,000 --> 00:01:16,900\\nwith Galleries, Libraries, Archives and Museums.\\n\\n13\\n00:01:17,000 --> 00:01:24,000\\nIt's very much volunteer-led. We want the volunteers to tell us what are the sorts of subjects they're interested in,\\n\\n14\\n00:01:25,000 --> 00:01:29,900\\nwhat parts of the country they're interested in, we will then try and make sure we've got events going on in those parts\\n\\n15\\n00:01:30,000 --> 00:01:32,800\\nof the country and in those particular subject areas.\\n\\n16\\n00:01:32,900 --> 00:01:36,800\\nVolunteers are an important part of the charity, on all levels.\\n\\n17\\n00:01:37,000 --> 00:01:38,200\\nVolunteers actually inspire what I do,\\n\\n18\\n00:01:38,500 --> 00:01:42,999\\nso they provide ideas for events or reasons why they should happen.\\n\\n19\\n00:01:43,000 --> 00:01:50,900\\nI love volunteers because they are essential to our chapter, our charity; they are at the heart of everything we do.\\n\\n20\\n00:01:51,000 --> 00:01:56,900\\nOur events, and pretty much all our activities are led and done by volunteers.\\n\\n21\\n00:01:57,000 --> 00:02:00,000\\nI'm sitting here in our office in London - it's infeasibly warm.\\n\\n22\\n00:02:00,100 --> 00:02:04,800\\nFor one time in the UK we've got a proper summer, but whenever you come to London\\n\\n23\\n00:02:05,000 --> 00:02:08,900\\nwe've got a seat here for you, decent coffee (cup of tea if you want it).\\n\\n24\\n00:02:09,000 --> 00:02:14,000\\nWe welcome any Wikimedians from all over the world here; you'll get a warm welcome in our office.\\n\\n25\\n00:02:14,522 --> 00:02:18,160\\n(Welsh) I hope you're having great fun over there\\n\\n26\\n00:02:18,160 --> 00:02:22,689\\nand hope you'll have the same, if not more fun,\\n\\n27\\n00:02:22,689 --> 00:02:26,189\\nwhen you come to Wikimania in London next year.\\n\\n28\\n00:02:54,449 --> 00:02:57,821\\nHello everyone. I hope you're all enjoying Wikimania over in Hong Kong.\\n\\n29\\n00:02:57,821 --> 00:03:01,321\\nWe look forward to welcoming you here in London next year.\",\n", + " 'bytes': 3083,\n", + " 'sha1': '4yxm2zgz8uymokwc0tdwoqcvhwye9wq',\n", + " 'parent_id': 101870909,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 672073281,\n", + " 'timestamp': '2022-07-07T06:51:57Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 27622398,\n", + " 'title': 'Apollo13-wehaveaproblem.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Overall update',\n", + " 'text': \"1\\n00:00:01,821 --> 00:00:04,291\\nOkay, Houston, we've had a problem here.\\n\\n2\\n00:00:04,409 --> 00:00:06,400\\nThis is Houston. Say again, please.\\n\\n3\\n00:00:07,000 --> 00:00:08,749\\nHouston, we've had a problem.\\n\\n4\\n00:00:09,735 --> 00:00:11,805\\nWe've had a MAIN B BUS UNDERVOLT.\\n\\n5\\n00:00:12,477 --> 00:00:14,247\\nRoger. MAIN B UNDERVOLT.\\n\\n6\\n00:00:15,716 --> 00:00:18,354\\nOkay, stand by, 13. We're looking at it.\\n\\n7\\n00:00:19,727 --> 00:00:24,458\\nOkay. Right now, Houston, the voltage is—\\n\\n8\\n00:00:24,508 --> 00:00:26,165\\nis looking good, damn.\\n\\n9\\n00:00:27,518 --> 00:00:32,410\\nAnd we had a pretty large bang associated\\nwith the CAUTION AND WARNING there.\\n\\n10\\n00:00:32,906 --> 00:00:36,500\\nAnd as I recall,\\nMAIN B was the one that had\\n\\n11\\n00:00:36,527 --> 00:00:38,915\\nhad an amp spike on it once before.\\n\\n12\\n00:00:40,000 --> 00:00:41,418\\nRoger, Fred.\\n\\n13\\n00:00:42,892 --> 00:00:47,451\\nIn the interim here, we're starting to go\\nahead and button up the tunnel again.\\n\\n14\\n00:00:48,262 --> 00:00:49,530\\nRoger.\\n\\n15\\n00:00:50,525 --> 00:00:54,499\\nYes. That jolt must have rocked\\n\\n16\\n00:00:54,531 --> 00:00:58,872\\nthe sensor on—see now—O2 QUANTITY 2.\\n\\n17\\n00:00:58,931 --> 00:01:02,287\\nIt—was oscillating down\\naround 20 to 60 percent.\\n\\n18\\n00:01:02,321 --> 00:01:04,174\\nNow it's fullscale high again.\\n\\n19\\n00:01:05,003 --> 00:01:06,004\\nRoger.\\n\\n20\\n00:01:06,757 --> 00:01:09,296\\nAnd, Houston, we had\\na RESTART on our computer\\n\\n21\\n00:01:09,317 --> 00:01:12,835\\nand we had a PGNCS light\\nand the RESTART RESET.\\n\\n22\\n00:01:13,976 --> 00:01:18,530\\nRoger. RESTART and a PGNCS light.\\nRESET on a PGNCS, RESET —\\n\\n23\\n00:01:18,580 --> 00:01:24,960\\nOkay. And we're looking at our S—\\nSERVICE MODULE RCS HELIUM 1.\\n\\n24\\n00:01:25,338 --> 00:01:29,499\\nWe have—B is barber poled\\nand D is barber poled,\\n\\n25\\n00:01:30,065 --> 00:01:35,008\\nHELIUM 2, D is barber pole,\\nand SECONDARY PROPELLANTS,\\n\\n26\\n00:01:35,028 --> 00:01:39,764\\nI have A and C barber pole.\\nBMAG temperatures?\\n\\n27\\n00:01:41,725 --> 00:01:43,513\\nOkay, AC 2 is showing zip.\\n\\n28\\n00:01:43,547 --> 00:01:45,867\\nI'm going to try\\nto reconfigure on that, Jack.\\n\\n29\\n00:01:47,308 --> 00:01:48,577\\nRoger.\\n\\n30\\n00:01:49,024 --> 00:01:53,721\\nYes. We got a MAIN BUS\\nA UNDERVOLT now, too, showing.\\n\\n31\\n00:01:53,754 --> 00:01:55,274\\nMAIN A UNDERVOLT.\\n\\n32\\n00:01:57,167 --> 00:02:02,200\\nIt's reading about 25-1/2,\\nMAIN B is reading zip right now.\\n\\n33\\n00:02:03,222 --> 00:02:04,775\\nStand by 1, Jim.\\n\\n34\\n00:02:05,924 --> 00:02:07,004\\n13, Houston.\\n\\n35\\n00:02:07,024 --> 00:02:08,936\\nWe'd like you\\nto attempt to reconnect\\n\\n36\\n00:02:08,969 --> 00:02:12,826\\nfuel cell 1 to MAIN A\\nand fuel cell 3 to MAIN B.\\n\\n37\\n00:02:13,454 --> 00:02:16,359\\nVerify that quad Delta is open.\\n\\n38\\n00:02:17,500 --> 00:02:20,727\\nOkay, Houston. I'm showing—\\nI tried to reset\\n\\n39\\n00:02:20,760 --> 00:02:25,728\\nand fuel cell 1 and 3\\nare both showing gray flags,\\n\\n40\\n00:02:26,148 --> 00:02:28,826\\nbut they are both\\nshowing zip on the flows.\\n\\n41\\n00:02:29,300 --> 00:02:30,262\\nWe copy.\\n\\n42\\n00:02:31,754 --> 00:02:36,238\\n13, Houston, we'd like you\\nto open circuit fuel cell 1.\\n\\n43\\n00:02:36,271 --> 00:02:38,325\\nLeave 2 and 3 as is.\\n\\n44\\n00:02:40,243 --> 00:02:42,230\\nOkay, I'll get to work on that.\\n\\n45\\n00:02:42,279 --> 00:02:46,000\\nBut it looks to me… I'm looking out the…\\nback, we are venting something.\\n\\n46\\n00:02:47,500 --> 00:02:51,000\\nWe are… we are venting\\nsomething out the… in the rear… into space\\n\\n47\\n00:02:51,500 --> 00:02:53,087\\nRoger, we copy you're venting.\\n\\n48\\n00:02:53,696 --> 00:02:55,365\\nIt’s a gas of some sort.\",\n", + " 'bytes': 3520,\n", + " 'sha1': 'bugi40phf1oljs5xh6fneauoeh6uivl',\n", + " 'parent_id': 669228498,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101587988,\n", + " 'timestamp': '2013-08-09T20:58:36Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 27638696,\n", + " 'title': \"Marco Mengoni - L'essenziale presentation (Italiano).ogv.de.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:00,345 --> 00:00:02,560 Hallo, Ich bin Marco Mengoni. 2 00:00:02,560 --> 00:00:06,713 Der Titel meines Lied ist \"L\\'essenziale\".\\'',\n", + " 'text': '1\\n00:00:00,345 --> 00:00:02,560\\nHallo, Ich bin Marco Mengoni.\\n\\n2\\n00:00:02,560 --> 00:00:06,713\\nDer Titel meines Lied ist\\n\"L\\'essenziale\".',\n", + " 'bytes': 136,\n", + " 'sha1': 'qwh0a67w6rbaq97eibdmsnbos870ykz',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101607863,\n", + " 'timestamp': '2013-08-10T03:31:59Z',\n", + " 'user': {'id': 2884419, 'text': 'Tim Moritz Hector (WMDE)'},\n", + " 'page': {'id': 27643808,\n", + " 'title': 'ZDFCheck so funktioniert er.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'fix',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000 \\nHow many truth is really in statements made by politicans?\\n\\n2\\n00:00:04,000 --> 00:00:10,000 \\nThe website ZDFcheck is going to check this during the election campaigns 2013.\\n\\n3\\n00:00:10,000 --> 00:00:13,000 \\nEverything begins with a checkable quote:\\n\\n4\\n00:00:13,000 --> 00:00:18,000 \\na team of ZDF-editors works behind the scenes\\n\\n5\\n00:00:18,000 --> 00:00:22,000 \\nand examines the statemens, chooses one and does the research.\\n\\n6\\n00:00:22,000 --> 00:00:26,000 \\nThe results can be seen by everybody live and transparent on http://heute.de\\n\\n7\\n00:00:26,000 --> 00:00:28,000 \\nand even participate him- or herself.\\n\\n8\\n00:00:28,000 --> 00:00:31,000 \\nEither you can contribute with concrete facts from the beginning;\\n\\n9\\n00:00:31,000 --> 00:00:35,000 \\nthe editorial team checks, and what is factually correct \\n\\n10\\n00:00:35,000 --> 00:00:37,000 \\nhas an influence on the result.\\n\\n11\\n00:00:37,000 --> 00:00:40,000 \\nIn the end it should be figured out whether the thesis is true\\n\\n12\\n00:00:40,000 --> 00:00:42,000 \\nor only partially\\n\\n13\\n00:00:42,000 --> 00:00:45,000 \\nor whether it is simply wrong.',\n", + " 'bytes': 1117,\n", + " 'sha1': 'bfasc2podoes2lc1cno04cvppxlx1pd',\n", + " 'parent_id': 101607822,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101631512,\n", + " 'timestamp': '2013-08-10T12:43:19Z',\n", + " 'user': {'id': 980266, 'text': 'TheSophera'},\n", + " 'page': {'id': 27649560,\n", + " 'title': 'George W Bush Columbia FINAL.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Splitting a couple of long lines up.',\n", + " 'text': '1\\n00:00:00,800 --> 00:00:02,800\\nMy fellow Americans,\\n\\n2\\n00:00:03,200 --> 00:00:05,800\\nThis day has brought terrible news,\\n\\n3\\n00:00:06,000 --> 00:00:09,100\\nand great sadness to our country.\\n\\n4\\n00:00:09,300 --> 00:00:11,400\\nAt 9 o\\'clock this morning,\\n\\n5\\n00:00:11,600 --> 00:00:13,700\\nMission Control in Houston\\n\\n6\\n00:00:13,800 --> 00:00:17,500\\nlost contact with our Space Shuttle Columbia.\\n\\n7\\n00:00:18,100 --> 00:00:19,700\\nA short time later,\\n\\n8\\n00:00:19,800 --> 00:00:24,000\\ndebris was seen falling from the skies above Texas.\\n\\n9\\n00:00:24,300 --> 00:00:26,400\\nThe Columbia is lost;\\n\\n10\\n00:00:26,800 --> 00:00:29,300\\nthere are no survivors.\\n\\n11\\n00:00:29,500 --> 00:00:32,100\\nOn board was a crew of seven:\\n\\n12\\n00:00:32,500 --> 00:00:34,400\\nColonel Rick Husband,\\n\\n13\\n00:00:34,500 --> 00:00:36,800\\nLt. Colonel Michael Anderson,\\n\\n14\\n00:00:36,900 --> 00:00:39,100\\nCommander Laurel Clark,\\n\\n15\\n00:00:39,300 --> 00:00:41,300\\nCaptain David Brown,\\n\\n16\\n00:00:41,400 --> 00:00:43,900\\nCommander William McCool,\\n\\n17\\n00:00:44,000 --> 00:00:46,300\\nDr. Kalpana Chawla,\\n\\n18\\n00:00:46,400 --> 00:00:48,500\\nand Ilan Ramon,\\n\\n19\\n00:00:48,600 --> 00:00:52,100\\na Colonel in the Israeli Air Force.\\n\\n20\\n00:00:52,500 --> 00:00:54,500\\nThese men and women assumed great risk\\n\\n21\\n00:00:54,600 --> 00:00:57,800\\nin the service to all humanity.\\n\\n22\\n00:00:58,200 --> 00:01:02,600\\nIn an age when space flight has come to seem almost routine,\\n\\n23\\n00:01:02,800 --> 00:01:06,500\\nit is easy to overlook the dangers of travel by rocket,\\n\\n24\\n00:01:06,600 --> 00:01:08,600\\nand the difficulties of navigating\\n\\n25\\n00:01:08,700 --> 00:01:12,000\\nthe fierce outer atmosphere of the Earth.\\n\\n26\\n00:01:12,300 --> 00:01:14,900\\nThese astronauts knew the dangers,\\n\\n27\\n00:01:15,000 --> 00:01:17,500\\nand they faced them willingly,\\n\\n28\\n00:01:17,600 --> 00:01:22,100\\nknowing they had a high and noble purpose in life.\\n\\n29\\n00:01:22,400 --> 00:01:27,000\\nBecause of their courage and daring and idealism,\\n\\n30\\n00:01:27,100 --> 00:01:29,800\\nwe will miss them all the more.\\n\\n31\\n00:01:30,400 --> 00:01:33,300\\nAll Americans today are thinking, as well,\\n\\n32\\n00:01:33,400 --> 00:01:36,100\\nof the families of these men and women\\n\\n33\\n00:01:36,200 --> 00:01:39,800\\nwho have been given this sudden shock and grief.\\n\\n34\\n00:01:40,000 --> 00:01:41,900\\nYou\\'re not alone.\\n\\n35\\n00:01:42,000 --> 00:01:44,900\\nOur entire nation grieves with you.\\n\\n36\\n00:01:45,100 --> 00:01:49,500\\nAnd those you loved will always have the respect and gratitude\\n\\n37\\n00:01:49,600 --> 00:01:51,700\\nof this country.\\n\\n38\\n00:01:52,100 --> 00:01:56,100\\nThe cause in which they died will continue.\\n\\n39\\n00:01:56,300 --> 00:02:00,900\\nMankind is led into the darkness beyond our world\\n\\n40\\n00:02:01,000 --> 00:02:03,700\\nby the inspiration of discovery\\n\\n41\\n00:02:03,800 --> 00:02:06,600\\nand the longing to understand.\\n\\n42\\n00:02:06,700 --> 00:02:08,600\\nOur journey into space\\n\\n43\\n00:02:08,700 --> 00:02:10,600\\nwill go on.\\n\\n44\\n00:02:10,800 --> 00:02:15,900\\nIn the skies today, we saw destruction and tragedy.\\n\\n45\\n00:02:16,100 --> 00:02:18,700\\nYet farther than we can see\\n\\n46\\n00:02:19,000 --> 00:02:21,500\\nthere is comfort and hope.\\n\\n47\\n00:02:21,700 --> 00:02:25,000\\nIn the words of the prophet Isaiah:\\n\\n48\\n00:02:25,200 --> 00:02:28,900\\n\"Lift your eyes and look to the heavens.\\n\\n49\\n00:02:29,000 --> 00:02:31,300\\nWho created all these?\\n\\n50\\n00:02:31,400 --> 00:02:34,900\\nHe who brings out the starry hosts one by one\\n\\n51\\n00:02:35,000 --> 00:02:38,500\\nand calls them each by name.\\n\\n52\\n00:02:38,800 --> 00:02:43,000\\nBecause of His great power and mighty strength,\\n\\n53\\n00:02:43,100 --> 00:02:45,900\\nnot one of them is missing.\"\\n\\n54\\n00:02:46,100 --> 00:02:49,300\\nThe same Creator who names the stars\\n\\n55\\n00:02:49,400 --> 00:02:51,400\\nalso knows the names\\n\\n56\\n00:02:51,500 --> 00:02:55,200\\nof the seven souls we mourn today.\\n\\n57\\n00:02:55,300 --> 00:02:57,600\\nThe crew of the shuttle Columbia\\n\\n58\\n00:02:57,700 --> 00:03:00,600\\ndid not return safely to Earth,\\n\\n59\\n00:03:00,700 --> 00:03:02,400\\nyet we can pray\\n\\n60\\n00:03:02,500 --> 00:03:05,100\\nthat all are safely home.\\n\\n61\\n00:03:05,500 --> 00:03:08,700\\nMay God bless the grieving families,\\n\\n62\\n00:03:08,800 --> 00:03:14,100\\nand may God continue to bless America.',\n", + " 'bytes': 4187,\n", + " 'sha1': 'cgcuoj3qpfp664uj8gquyn11to8u17s',\n", + " 'parent_id': 101630721,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 117167289,\n", + " 'timestamp': '2014-02-23T20:10:18Z',\n", + " 'user': {'text': '117.199.177.136'},\n", + " 'page': {'id': 27676108,\n", + " 'title': 'Community at Work.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:34,129 --> 00:00:39,380\\nUna sexta parte de la población de Colombia vive en Bogotá, una metrópolis de alrededor de 8 millones de personas\\n\\n2\\n00:00:39,380 --> 00:00:44,090\\nque sigue creciendo con el continuo\\ny el aumento de afluencia de personas y familias\\n\\n3\\n00:00:44,090 --> 00:00:47,400\\nescapar de la pobreza y la violencia\\nde las zonas rurales.\\n\\n4\\n00:00:47,400 --> 00:00:50,950\\nPero lo que los migrantes de las zonas rurales encontrar en las grandes ciudades como Bogotá\\n\\n5\\n00:00:50,950 --> 00:00:53,720\\nes a menudo más pobreza\\ny más violencia\\n\\n6\\n00:01:19,320 --> 00:01:22,630\\nEl Gobierno de Bogotá está llevando\\n\\n7\\n00:01:22,630 --> 00:01:23,530\\na cabo un programa integral de seguridad alimentaria\\n\\n8\\n00:01:23,530 --> 00:01:26,020\\ndenominado \"Bogotá sin hambre\".\\n\\n9\\n00:01:26,020 --> 00:01:30,390\\nsta política se centra en los comedores\\ncomunitarios ubicados en áreas\\n\\n10\\n00:01:30,390 --> 00:01:34,180\\ndonde la mayoría de los pobres,\\nlos vulnerables y los marginados población.\\n\\n11\\n00:02:18,089 --> 00:02:21,349\\nMarisol Grenette,\\nun líder activo de Juan Pablo II,\\n\\n12\\n00:02:21,349 --> 00:02:24,639\\nes un ejemplo de una madre soltera\\nque salió de la pobreza.\\n\\n13\\n00:02:24,639 --> 00:02:27,599\\nElla llegó a la ciudad con el sueño\\nde una vida mejor.\\n\\n14\\n00:02:27,599 --> 00:02:30,860\\nAl principio, las cosas salieron mal\\n\\n15\\n00:03:09,389 --> 00:03:12,389\\nElla no perdió el coraje y la constancia\\n\\n16\\n00:03:12,389 --> 00:03:13,239\\nse llevó a cabo el\\n\\n17\\n00:03:13,239 --> 00:03:15,239\\nSe formó un grupo de madres jóvenes\\n\\n18\\n00:03:15,239 --> 00:03:18,239\\ny vivieron juntos, el cuidado de los demás,\\n\\n19\\n00:03:18,239 --> 00:03:21,189\\norganizaron una cocina común\\ny abrieron una guardería para sus hijos\\n\\n20\\n00:03:21,189 --> 00:03:22,189\\ny los hijos de la comunidad\\n\\n21\\n00:04:40,749 --> 00:04:44,779\\nEs entonces que llega el soporte de las entidades locales, \\ny la pequeña comunidad de ayuda recíproca,\\n\\n22\\n00:04:44,779 --> 00:04:46,249\\nse transforma en un gran centro de ayuda local, una gran comunidad de servicios\\n\\n23\\n00:04:46,249 --> 00:04:52,249\\ndonde estas mujeres manejan una biblioteca, un comedor comunitario, un centro de salud, un programa de educación, junto con el desarrollo de una habilidad de auto-empoderamiento económico.',\n", + " 'bytes': 2271,\n", + " 'sha1': 'gktk1llkygjclc9es9n9uvjm00mqqwh',\n", + " 'parent_id': 101771448,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101787675,\n", + " 'timestamp': '2013-08-12T15:54:00Z',\n", + " 'user': {'id': 2280090, 'text': 'Rahulkepapa'},\n", + " 'page': {'id': 27676135,\n", + " 'title': 'Community at Work.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\n1\\n00:00:34.129 --> 00:00:39.380\\nOne sixth of Colombia\\'s population lives in Bogotá,\\na metropolis of around 8 million people\\n\\n2\\n00:00:39.380 --> 00:00:44.090\\nthat continues to grow with the continuous \\nand increasing influx of individuals and families\\n\\n3\\n00:00:44.090 --> 00:00:47.400\\nescaping poverty and violence \\nof the rural areas.\\n\\n4\\n00:00:47.400 --> 00:00:50.950\\nBut what migrants from rural areas \\nfind in big cities like Bogota \\n\\n5\\n00:00:50.950 --> 00:00:53.720\\nis often more poverty \\nand more violence\\n\\n6\\n00:01:19.320 --> 00:01:22.630\\nEl Gobierno de Bogotá está llevando\\n\\n7\\n00:01:22.630 --> 00:01:23.530\\na cabo un programa integral de seguridad alimentaria \\n\\n8\\n00:01:23.530 --> 00:01:26.020\\ndenominado \"Bogotá sin hambre\". \\n\\n9\\n00:01:26.020 --> 00:01:30.390\\nsta política se centra en los comedores \\ncomunitarios ubicados en áreas \\n\\n10\\n00:01:30.390 --> 00:01:34.180\\ndonde la mayoría de los pobres, \\nlos vulnerables y los marginados población.\\n\\n11\\n00:02:18.089 --> 00:02:21.349\\nMarisol Grenette,\\nun líder activo de Juan Pablo II,\\n\\n12\\n00:02:21.349 --> 00:02:24.639\\nes un ejemplo de una madre soltera \\nque salió de la pobreza. \\n\\n13\\n00:02:24.639 --> 00:02:27.599\\nElla llegó a la ciudad con el sueño\\nde una vida mejor. \\n\\n14\\n00:02:27.599 --> 00:02:30.860\\nAl principio, las cosas salieron mal\\n\\n15\\n00:03:09.389 --> 00:03:12.389\\nElla no perdió el coraje y la constancia\\n\\n16\\n00:03:12.389 --> 00:03:13.239\\nse llevó a cabo el\\n\\n17\\n00:03:13.239 --> 00:03:15.239\\nSe formó un grupo de madres jóvenes\\n\\n18\\n00:03:15.239 --> 00:03:18.239\\ny vivieron juntos, el cuidado de los demás,\\n\\n19\\n00:03:18.239 --> 00:03:21.189\\norganizaron una cocina común\\ny abrieron una guardería para sus hijos\\n\\n20\\n00:03:21.189 --> 00:03:22.189\\ny los hijos de la comunidad',\n", + " 'bytes': 1753,\n", + " 'sha1': 'gzb1q4hhyq634lakxyvptxzfcay3418',\n", + " 'parent_id': 101771656,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 185843168,\n", + " 'timestamp': '2016-01-28T05:41:56Z',\n", + " 'user': {'id': 774, 'text': 'HaeB'},\n", + " 'page': {'id': 27678202,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.tl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Undo revision 185833122 by [[Special:Contributions/Riovilogdacusin|Riovilogdacusin]] ([[User talk:Riovilogdacusin|talk]])',\n", + " 'text': '\\n1\\n00:00:00,800 --> 00:00:03,500\\nMabuhay! Ako si Trevor, at tumutulong ako sa paggawa ng VisualEditor para sa Wikipedia.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nMaaaring baguhin ninuman ang Wikipedia, ngunit madaling malito ang nakararami sa mga sumusubok nito\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\ndahil mahirap maunawaan ang lumang kodigo ng Wikipedia.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nAng ganda nito noong nilikha natin ito labindalawang taon nang nakalilipas,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nngunit kung ipapadala natin ang kabuuan ng lahat ng kaalaman ng tao sa lahat,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\nkailangang mapadali natin ang pagpapamahagi nito.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nAng VisualEditor ay ang pinakamalaking pagbabago sa Wikipedia na aming ginawa.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nGinagawa nitong parang papel na isinusulat para sa klase o isang e-liham na pinapadala ang pagsusulat sa Wikipedia.\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nMay ilan pa itong kamalian (bugs),\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nngunit kung nais mong makakita sa kung paano gagana ang Wikipedia sa lalapit na panahon,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\nLumikha ng kuwenta sa Wikipedia.\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nPumunta sa inyong mga nais, at paganahin ang bersiyong Alpha ng VisualEditor.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nMaaari mo pa kaming tulungan sa paggamit nito, tapos sa pagpapadala sa amin ng inyong mga komento.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nKaya sige na, samahan niyo kami upang mapadali ang pagpapamahagi sa kabuuan ng lahat ng kaalaman ng tao.',\n", + " 'bytes': 1548,\n", + " 'sha1': '8wnos8we5v111vl8av65aexnamss074',\n", + " 'parent_id': 185833122,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101781698,\n", + " 'timestamp': '2013-08-12T14:06:53Z',\n", + " 'user': {'text': '81.43.119.35'},\n", + " 'page': {'id': 27679089,\n", + " 'title': 'The Impact Of Wikipedia.webm.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"Una paraula en castellà s'havia escapat a l'igual que un accent :P\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,000\\nWikipedia no té ànim de lucre,\\nperò és la 5a web més visitada del món.\\nTots els artícles de Wikipedia\\nsón escrits per voluntaris.\\n\\n2\\n00:00:06,300 --> 00:00:11,200\\nEns agradaria presentar-te a alguns d\\'ells...\\n\\n3\\n00:00:12,000 --> 00:00:13,100\\nSóc de Nepal.\\n\\n4\\n00:00:13,100 --> 00:00:14,400\\nSóc d\\'Iraq.\\n\\n5\\n00:00:14,400 --> 00:00:15,600\\nVinc de l\\'Índia.\\n\\n6\\n00:00:15,600 --> 00:00:17,000\\nSóc de Byram, Nova Jersey.\\n\\n7\\n00:00:17,000 --> 00:00:18,300\\nVisc a Birmingham, Anglaterra.\\n\\n8\\n00:00:18,300 --> 00:00:19,600\\nChicago, Illinois.\\n\\n9\\n00:00:19,600 --> 00:00:20,650\\nLa Paz, Bolívia.\\n\\n10\\n00:00:20,650 --> 00:00:21,600\\nNairobi, Kènia.\\n\\n11\\n00:00:21,600 --> 00:00:22,600\\nKuala Lumpur, Malàsia.\\n\\n12\\n00:00:22,600 --> 00:00:23,600\\nMilan, a Itàlia.\\n\\n13\\n00:00:23,600 --> 00:00:24,500\\nSud-àfrica.\\n\\n14\\n00:00:24,500 --> 00:00:25,000\\nPolònia.\\n\\n15\\n00:00:25,000 --> 00:00:25,600\\nJapó.\\n\\n16\\n00:00:25,600 --> 00:00:26,300\\nArmènia.\\n\\n17\\n00:00:26,300 --> 00:00:26,900\\nBrasil.\\n\\n18\\n00:00:26,900 --> 00:00:27,400\\nRússia.\\n\\n19\\n00:00:27,400 --> 00:00:28,100\\nBotswana.\\n\\n20\\n00:00:28,100 --> 00:00:28,400\\nIsrael.\\n\\n21\\n00:00:28,400 --> 00:00:29,200\\nUzbekistan.\\n\\n22\\n00:00:29,200 --> 00:00:29,800\\nHong Kong.\\n\\n23\\n00:00:29,800 --> 00:00:30,500\\nIstambul.\\n\\n24\\n00:00:30,500 --> 00:00:31,200\\nMèxic.\\n\\n25\\n00:00:31,200 --> 00:00:32,400\\nChattanooga, Tennessee.\\n\\n26\\n00:00:32,900 --> 00:00:38,800\\nAl principi, quan vaig entrar a Wikipedia,\\nal 2008, vaig començar molts articles.\\n\\n27\\n00:00:38,800 --> 00:00:44,200\\nUn d\\'ells, crec que tractava\\nsobre una dona anomenada Mariam Nour. \\n\\n28\\n00:00:44,200 --> 00:00:48,000\\nNo teníem un article al respecte...\\ni aquest va ser el meu primer article.\\n\\n29\\n00:00:48,100 --> 00:00:52,700\\nI, no m\\'enrecordo bé,\\nprobablement dos o tres anys després\\n\\n30\\n00:00:52,700 --> 00:00:57,000\\nvaig passar per aquell article i vaig quedar impactada.\\n\\n31\\n00:00:57,100 --> 00:01:02,000\\nMés de 100 000 persones van llegir l\\'article,\\n\\n32\\n00:01:02,100 --> 00:01:08,000\\nel van utilitzar, van obtenir informació\\nd\\'aquell article, van passar per l\\'article,\\n\\n33\\n00:01:08,100 --> 00:01:15,100\\naleshores et dones compte de que has afectat\\ni influenciat a més de 100 000 persones.\\n\\n34\\n00:01:15,100 --> 00:01:19,200\\nEstava aterrada quan vaig prémer\\nel botó \"Editar\" per primera vegada.\\n\\n35\\n00:01:19,400 --> 00:01:24,000\\nPensava: \"Oh, déu meu, ho destroçaré tot!\\nNo pot funcionar, no puc fer-ho!\".\\n\\n36\\n00:01:24,000 --> 00:01:29,000\\nWikipedia és códi obert,\\non tots poden llançar la seva idea\\n\\n36\\n00:01:29,000 --> 00:01:34,300\\ni llavors vé algú més\\ni millora aquesta idea per fer-la magnífica.\\n\\n37\\n00:01:34,600 --> 00:01:36,700\\nHi ha milers de persones treballant \\n\\n38\\n00:01:36,700 --> 00:01:40,400\\ncada dia, cada hora, cada minut,\\na Wikipedia, per fer-la millor.\\n\\n39\\n00:01:40,400 --> 00:01:44,000\\nEn la seva majoria és voluntariat.\\nÉs una manera única de ser voluntari.\\n\\n40\\n00:01:44,000 --> 00:01:49,000\\nReuneix a professionals i aficionats\\nque senten amor per un tema concret.\\n\\n41\\n00:01:49,100 --> 00:01:53,400\\nPersones que al principi tenen\\ndiferents opinions, comencen a col·laborar.\\n\\n42\\n00:01:53,400 --> 00:01:58,800\\nMolt del que podries suposar\\nque una gran empresa d\\'Internet gestionaria\\n\\n43\\n00:01:58,800 --> 00:02:00,700\\nho gestiona voluntaris como jo.\\n\\n44\\n00:02:00,700 --> 00:02:02,500\\nSimplement no pots dir:\\n\\n45\\n00:02:02,500 --> 00:02:04,900\\n\"Escolta, jo tinc raó, tu estàs equivocat,\\naquesta és la meva versió de l\\'artcle!\".\\n\\n46\\n00:02:04,900 --> 00:02:06,800\\nSi hi ha algún problema de neutralitat,\\n\\n47\\n00:02:06,800 --> 00:02:10,500\\nprobablement algú ho haurá marcat,\\ni sinó, puc fer-ho jo ara també.\\n\\n48\\n00:02:10,500 --> 00:02:13,300\\nHi ha cents i milers de persones veient-ho\\n\\n49\\n00:02:13,300 --> 00:02:14,700\\ni corregint-ho.\\n\\n50\\n00:02:14,700 --> 00:02:16,400\\nLlavors vaig prémer el botó i...\\n\\n51\\n00:02:16,400 --> 00:02:19,000\\nPAM!, el viatge va començar, i va ser fantástic.\\n\\n52\\n00:02:19,000 --> 00:02:21,300\\nPrimer vaig començar amb \"Probabilitat\".\\n\\n53\\n00:02:21,300 --> 00:02:24,100\\nEl primer article que vaig començar amb \"Probabilitat\".\\n\\n54\\n00:02:24,100 --> 00:02:25,800\\nUn dels articles més importants\\nque vaig escriure a Wikipedia\\n\\n55\\n00:02:25,800 --> 00:02:27,300\\nva ser l\\'article sobre ferides d\\'arma blanca.\\n\\n56\\n00:02:27,300 --> 00:02:29,000\\nEscric sobre la pesca amb mosca,\\n\\n57\\n00:02:29,001 --> 00:02:32,200\\nHistòria de Montana,\\nHistòria dels Parcs Nacionals, Yellowstone...\\n\\n58\\n00:02:32,200 --> 00:02:33,500\\nCultius infrautilitzats.\\n\\n59\\n00:02:33,500 --> 00:02:34,500\\nJugadors d\\'escacs.\\n\\n60\\n00:02:34,500 --> 00:02:35,500\\nBiodiversitat. \\n\\n61\\n00:02:35,500 --> 00:02:37,000\\nHistòria militar.\\n\\n62\\n00:02:37,000 --> 00:02:38,300\\nHistòria d\\'Armènia.\\n\\n63\\n00:02:38,300 --> 00:02:39,100\\nHistòria Romana.\\n\\n64\\n00:02:39,100 --> 00:02:39,700\\nJutges.\\n\\n65\\n00:02:39,700 --> 00:02:40,700\\nComunicació.\\n\\n66\\n00:02:40,700 --> 00:02:41,400\\nBiografies.\\n\\n67\\n00:02:41,400 --> 00:02:42,100\\nFutbol.\\n\\n68\\n00:02:42,100 --> 00:02:42,800\\nIrlanda.\\n\\n69\\n00:02:42,800 --> 00:02:43,700\\nPensilvania.\\n\\n70\\n00:02:43,700 --> 00:02:44,900\\nLa majoria, fotografia.\\n\\n71\\n00:02:44,900 --> 00:02:45,600\\nPink Floyd.\\n\\n72\\n00:02:45,600 --> 00:02:47,100\\nReposteria, perque m\\'encanta fornejar.\\n\\n73\\n00:02:47,100 --> 00:02:50,200\\nArmes nuclears i radioactivitat,\\n\\n74\\n00:02:50,200 --> 00:02:52,500\\ni piragüisme en aigües braves.\\n\\n75\\n00:02:52,500 --> 00:02:56,000\\nTenims tota aquesta informació\\nallà fora, tan dispersa,\\n\\n76\\n00:02:56,000 --> 00:02:58,900\\ni nosaltres la recopilem en un lloc.\\n\\n77\\n00:02:58,900 --> 00:03:03,200\\nEstem oferint coneixement lliure per tots,\\n\\n78\\n00:03:03,600 --> 00:03:07,000\\nen la seva pròpia llengua, per que puguin utilizar-ho.\\n\\n79\\n00:03:07,501 --> 00:03:11,500\\nTots es beneficien, siguin rics o pobres.\\n\\n80\\n00:03:11,500 --> 00:03:15,500\\nLes companyies comercials tenen\\nmotivacions diferents i necessitats diferents.\\n\\n81\\n00:03:15,800 --> 00:03:22,300\\nEn la Fundació Wikimedia, no tinc salari\\ni ni tan sols carrego despeses.\\n\\n82\\n00:03:22,300 --> 00:03:25,500\\nCrec que és molt important dir-ho bastant clar:\\n\\n83\\n00:03:25,500 --> 00:03:30,500\\nQuan et demano diners, no estic demanant diners per mí;\\n\\n84\\n00:03:30,500 --> 00:03:36,000\\nt\\'estic demanant diners per la Fundació, que és el equip\\nque suporta a aquesta increïble comunitat de la que formo part.\\n\\n85\\n00:03:36,500 --> 00:03:41,600\\nCrec que Wikipedia m\\'ha donat l\\'oportunitat\\nde fer realment un món molt diferent.\\n\\n86\\n00:03:41,600 --> 00:03:47,400\\nÉs com una inversió en el teu futur,\\nen el futur dels teus fills.\\n\\n87\\n00:03:53,200 --> 00:03:56,800\\nGracies.\\n\\n88\\n00:03:59,900 --> 00:04:03,000\\nEl contingut d\\'aquest vídeo està disponible sota la llicència\\nCreative Commons Reconeixement-Compartir Igual v3.0\\n(http://creativecommons.org/licenses/by-sa/3.0/deed.ca).\\nAquest treball és obra de: Victor Grigas, Fundació Wikimedia.\\n\\nEls punts de vista i opinions expressades en aquest vídeo són responsabilitat exclusiva de les persones que apareixen en elll, i no reflexen necessariament les polítiques o la posició de cap empresa, organització, o institució de la que aquesta persona pugui formar part.\\nLes marques comercials i logotips de la Fundació Wikimedia i qualsevol altra organització no estan incloses en els termes de la llicència de Creative Commons. Les marques i logotips de Wikimedia, incloent \"Wikipedia\" i el logotip del globus trencaclosques, són marques registrades de la Fundació Wikimedia. Es pot obtenir més informació a la nostra Política de Marques http://www.wikimediafoundation.org/wiki/Trademark_Policy o escrivint a trademarks@wikimedia.org.\\n\\n89\\n00:04:03,400 --> 00:04:05,800\\nAquest vídeo s\\'ha publicat\\nsota una llicència Creative Commons.\\n\\n90\\n00:04:05,800 --> 00:04:09,000\\nCom Wikipedia, pots copiar-ho,\\nmodificar-ho i compartir-ho lliurement.',\n", + " 'bytes': 7802,\n", + " 'sha1': 'cexfy8jvavhv3hou60rshxzark8qtd6',\n", + " 'parent_id': 101781558,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101938215,\n", + " 'timestamp': '2013-08-14T20:12:41Z',\n", + " 'user': {'id': 322046, 'text': 'Llywelyn2000'},\n", + " 'page': {'id': 27700621,\n", + " 'title': 'Wikimedia UK Wikimania 2013 video.webm.cy.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'iaith',\n", + " 'text': \"1\\n00:00:19,500 --> 00:00:23,492\\nHelo. Fy enw i yw Jon Davies,\\na fi yw Prif Weithredwr Wikimedia UK.\\n\\n2\\n00:00:23,492 --> 00:00:27,302\\nJonathan Cardy ydw i, a fi yw\\ntrefnydd GLAM Wikimedia UK.\\n\\n3\\n00:00:27,302 --> 00:00:30,613\\nFy enw i yw Katie Chan.\\n\\n4\\n00:00:30,613 --> 00:00:35,292\\nRwy'n gweithio i Wikimedia UK fel\\nTrefnydd Cymorth Gwirfoddolwyr.\\n\\n5\\n00:00:35,291 --> 00:00:41,186\\nRichard Nevell yw fy enw i, ac rwy'n\\ngynorthwyo gwaith swyddfeydd Wikimedia UK.\\n\\n6\\n00:00:41,218 --> 00:00:45,565\\nDaria Cybulska ydw i, a fi yw\\nRheolwr Rhaglenni Wikimedia UK.\\n\\n7\\n00:00:46,186 --> 00:00:49,797\\nNod Wikimedia UK yw dod a chymunedau\\ngwirfoddol y DU gyda'i gilydd\\n\\n8\\n00:00:49,797 --> 00:00:53,710\\ni gyd-weithio efo sefydliadau mawr\\nyn GLAM ac yn addysg\\n\\n9\\n00:00:53,709 --> 00:00:59,013\\ner mwyn gwella'r holl brosiectau\\nwrth annog a chefnogi pobl newydd i olygu\\n\\n10\\n00:00:59,014 --> 00:01:03,363\\nac i sicrhau, ledled Prydain,\\nbod prosiectau Wikimedia\\n\\n11\\n00:01:03,363 --> 00:01:07,371\\nyn cael eu hadnabod fel yr adnoddau enfawr\\no wybodaeth yr ydynt.\\n\\n12\\n00:01:07,829 --> 00:01:13,472\\nMae rhaglen GLAM Wikimedia UK\\nyn gyfres o ddigwyddiadau a phrosiectau\\n\\n13\\n00:01:13,472 --> 00:01:17,255\\nar y cyd gyda galerïau, llyfrgelloedd,\\narchifau ac amgueddfeydd (GLAM).\\n\\n14\\n00:01:17,255 --> 00:01:22,438\\nY gwirfoddolwyr sy'n arwain.\\nRydym eisiau iddyn nhw ddweud wrthym ni\\n\\n15\\n00:01:22,438 --> 00:01:27,078\\ny math o bynciau sydd yn eu diddori nhw\\na pha rannau o wledydd Prydain mae ganddyn nhw ddiddordeb.\\n\\n16\\n00:01:27,078 --> 00:01:32,475\\nByddwn yna'n ceisio sicrhau bod digwyddiadau\\nyn y rhan honno o'r wlad ac yn y meysydd y dymunwch.\\n\\n17\\n00:01:32,475 --> 00:01:36,375\\nMae gwirfoddolwyr yn rhan bwysig o'r elusen ar bob lefel.\\n\\n18\\n00:01:36,886 --> 00:01:39,580\\nY gwirfoddolwyr sy'n ysbrydoli'r hyn rwyf i'n ei wneud\\n\\n19\\n00:01:39,580 --> 00:01:43,632\\nac maen nhw'n cyfrannu syniadau ar gyfer digwyddiadau\\na'r rhesymau pam ddylent ddigwydd.\\n\\n20\\n00:01:43,632 --> 00:01:47,919\\nDw i'n caru'r gwirfoddolwyr gan eu bod\\nyn hanfodol i'n gwaith, ein helusen.\\n\\n21\\n00:01:47,919 --> 00:01:51,303\\nNhw sydd wrth galon popeth rydym yn ei wneud.\\n\\n22\\n00:01:51,303 --> 00:01:57,045\\nGwirfoddolwyr sy'n arwain bron pob un\\no'n digwyddiadau a'n gweithgareddau.\\n\\n23\\n00:01:57,045 --> 00:02:00,240\\nRwy'n eistedd yma yn ein swyddfa yn Llundain -\\nmae'n boeth dros ben,\\n\\n24\\n00:02:00,240 --> 00:02:05,089\\nAm unwaith yn y DU mae gennym haf go iawn -\\nond pryd bynnag y dewch i Lundain\\n\\n25\\n00:02:05,089 --> 00:02:08,861\\nmae gennym gadair yma i chi, coffi da,\\nneu de os oes well gennych chi.\\n\\n26\\n00:02:08,861 --> 00:02:12,195\\nRydym yn croesawu pob Wikimediwr\\no bob cwr o'r byd yma;\\n\\n27\\n00:02:12,195 --> 00:02:13,950\\nCewch groeso cynnes yn ein swyddfa.\\n\\n28\\n00:02:14,522 --> 00:02:18,160\\nDwi'n gobeithio'ch bod chi'n\\ncael andros o hwyl acw\\n\\n29\\n00:02:18,160 --> 00:02:22,689\\na gobeithio y cewch chi'r un faint\\no hwyl, os nad mwy\\n\\n30\\n00:02:22,689 --> 00:02:26,189\\npan ddewch i i Lundain\\ni'r Wikimania y flwyddyn nesaf.\\n\\n31\\n00:02:54,449 --> 00:02:57,821\\nHelo pawb. Rwy'n gobeithio'ch bod chi i gyd\\nyn mwynhau Wikimania draw yn Hong Kong.\\n\\n32\\n00:02:57,821 --> 00:03:01,321\\nEdrychwn ymlaen at eich croesawu\\nyma yn Llundain y flwyddyn nesaf.\",\n", + " 'bytes': 3183,\n", + " 'sha1': 'du849h49jzexp0xqszagpgapzh4wdh0',\n", + " 'parent_id': 101870452,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101936569,\n", + " 'timestamp': '2013-08-14T19:44:12Z',\n", + " 'user': {'id': 322046, 'text': 'Llywelyn2000'},\n", + " 'page': {'id': 27701482,\n", + " 'title': '¿Qué es Wikipedia?.ogv.cy.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'iaith',\n", + " 'text': '1\\n00:00:04,730 --> 00:00:05,500\\nHelo!\\n\\n2\\n00:00:05,579 --> 00:00:07,683\\nFy enw i yw Marina a hoffwn ddweud wrthoch chi am Wicipedia.\\n\\n3\\n00:00:07,675 --> 00:00:09,855\\nRwy\\'n siŵr eich bod yn ymwybodol ohono ac yn ei ddefnyddio.\\n\\n4\\n00:00:09,863 --> 00:00:13,112\\nOnd ydych chi\\'n gwybod ei gwir ystyr a phwrpas a sut mae\\'n cael ei greu?\\n\\n5\\n00:00:13,360 --> 00:00:16,238\\nEr ei fod yn edrych fel gwyddoniadur gwahanol,\\n\\n6\\n00:00:16,238 --> 00:00:18,786\\nmae\\'n rhannu\\'r un nod a gwyddoniaduron traddodiadol:\\n\\n7\\n00:00:18,786 --> 00:00:22,445\\n\"Dod a holl wybodaeth y byd ynghyd mewn dull systematig\".\\n\\n8\\n00:00:22,707 --> 00:00:25,442\\nFodd bynnag, mae gan Wicipedia rhai gwahaniaethau pwysig\\n\\n9\\n00:00:25,442 --> 00:00:27,378\\no\\'i gymharu â gwyddoniaduron traddodiadol.\\n\\n10\\n00:00:27,626 --> 00:00:31,743\\nEr enghraifft, mae\\'n cael ei ddatblygu gan filoedd o wirfoddolwyr\\n\\n11\\n00:00:31,743 --> 00:00:35,355\\ngyda\\'r bwriad o wneud gwybodaeth ar gael i bob person ar y blaned,\\n\\n12\\n00:00:35,355 --> 00:00:36,569\\nyn eu hiaith eu hunain.\\n\\n13\\n00:00:36,831 --> 00:00:37,840\\nSut mae cyflawni hyn?\\n\\n14\\n00:00:38,229 --> 00:00:41,856\\nPa reolau sy\\'n cadw trefn ar, ac yn arwain \\'\\'wicipedwyr\\'\\'?\\n\\n15\\n00:00:41,856 --> 00:00:43,769\\nDyna yw testun y fideo yma.\\n\\n16\\n00:00:49,000 --> 00:00:52,800\\nGall unrhyw un ychwanegu neu gywiro cynnwys Wicipedia\\n\\n17\\n00:00:52,900 --> 00:00:55,800\\nond mae\\'n rhaid cydnabod mai gwyddoniadur ydyw o hyd,\\n\\n18\\n00:00:55,792 --> 00:00:59,738\\nfelly ni dderbynnir ymchwil na thraethodau gwreiddiol yma.\\n\\n19\\n00:00:59,746 --> 00:01:02,389\\nRhaid i erthyglau gyfleu diddordeb cyffredin,\\n\\n20\\n00:01:02,389 --> 00:01:05,572\\na dylant osgoi gwybodaeth ddarfodedig - gwybodaeth dros dro.\\n\\n21\\n00:01:05,572 --> 00:01:07,342\\nDyna yw\\'r rheol gyntaf oll,\\n\\n22\\n00:01:07,342 --> 00:01:08,794\\nneu, fel y caiff ei alw gan Wicipedwyr,\\n\\n23\\n00:01:08,794 --> 00:01:12,009\\n\"Y Golofn Cyntaf\" yn y modd mae\\'r gwyddoniadur hwn yn gweithio.\\n\\n24\\n00:01:13,100 --> 00:01:15,855\\nMae llawer o wirfoddolwyr yn ysgrifennu i\\'r gwyddoniadur hwn.\\n\\n25\\n00:01:15,855 --> 00:01:18,094\\nPobl o gefndiroedd gwahanol,\\n\\n26\\n00:01:18,094 --> 00:01:19,015\\ngydag amrywiaeth o gredoau,\\n\\n27\\n00:01:19,015 --> 00:01:20,365\\na gyda syniadau gwahanol.\\n\\n28\\n00:01:20,900 --> 00:01:24,900\\nNi ddylai Wicipedia goleddu safbwynt fel un ei hun;\\n\\n29\\n00:01:25,150 --> 00:01:28,650\\nond dylai wneud ymdrech i gynnwys yr holl safbwyntiau posib.\\n\\n30\\n00:01:28,900 --> 00:01:31,487\\nDyna pam yr enwir yr ail golofn yn\\n\\n31\\n00:01:31,487 --> 00:01:33,487\\n\"Safbwynt Diduedd\".\\n\\n32\\n00:01:35,000 --> 00:01:38,321\\nMae\\'r trydedd golofn yn dangos bod cynnwys Wicipedia am ddim.\\n\\n33\\n00:01:38,527 --> 00:01:42,060\\nMae\\'r testunau ar gael i\\'w defnyddio, eu newid, a\\'u dosbarthu ar gyfer unrhyw bwrpas,\\n\\n34\\n00:01:42,060 --> 00:01:44,186\\ncyn belled a bod y ffynhonnell yn cael ei phriodoli\\'n gywir\\n\\n35\\n00:01:44,186 --> 00:01:46,164\\na bod yr un drwydded hawlfraint \"Creative Commons\" yn cael ei chadw.\\n\\n36\\n00:01:46,350 --> 00:01:49,600\\nGall trwyddedu amrywio o ran delweddau\\n\\n37\\n00:01:49,850 --> 00:01:52,600\\nond caniateir copio ac ail-ddefnyddio o hyd.\\n\\n38\\n00:01:53,300 --> 00:01:56,300\\nYn yr achosion hyn, dylai pob trwydded berthnasol gael ei darllen\\n\\n39\\n00:01:56,300 --> 00:01:58,500\\ner mwyn deall ystod rhyddid y drwydded ayb.\\n\\n40\\n00:02:01,500 --> 00:02:04,300\\nGall rhyngweithio rhwng cymaint o bobl achosi dadlau.\\n\\n41\\n00:02:04,550 --> 00:02:08,650\\nFelly, y bedwaredd Golofn yw y dylai defnyddwyr fod yn barchus o\\'i gilydd,\\n\\n42\\n00:02:08,650 --> 00:02:10,200\\na thybio ewyllys da pob tro.\\n\\n43\\n00:02:10,200 --> 00:02:13,900\\nMae goddefgarwch a boneddigeiddrwydd yn sylfaenol i\\'r prosiect.\\n\\n44\\n00:02:16,800 --> 00:02:19,500\\nDoes gan Wicipedia ddim rheolau cadarn.\\n\\n45\\n00:02:19,579 --> 00:02:20,889\\nA gall hyn ymddangos yn od!\\n\\n46\\n00:02:20,897 --> 00:02:23,309\\nDyma yw pumed Golofn y gwyddoniadur hwn.\\n\\n47\\n00:02:23,309 --> 00:02:26,664\\nEr mwyn i chi gymryd rhan, dim ond synnwyr cyffredin\\n\\n48\\n00:02:26,664 --> 00:02:30,082\\na pharch tuag at Wicipediaid eraill sydd eu hangen ar yr anturiaeth!\\n\\n49\\n00:02:30,450 --> 00:02:32,500\\nGall pawb gyfrannu rhywbeth.\\n\\n50\\n00:02:32,750 --> 00:02:34,750\\nMae rhai pobl yn datblygu erthyglau cymhleth a chyflawn\\n\\n51\\n00:02:34,750 --> 00:02:37,300\\ntra bod eraill yn cywiro gwallau sillafu bychan.\\n\\n52\\n00:02:37,300 --> 00:02:40,000\\nGallwch hefyd helpu wrth greu, golygu a chywiro erthyglau.\\n\\n53\\n00:02:40,780 --> 00:02:42,296\\nMae\\'n bosib dadwneud golygiadau.\\n\\n54\\n00:02:42,296 --> 00:02:46,425\\nFelly os ydych yn gwneud rhywbeth yn anghywir mae\\'n bosib dychwelyd at y fersiwn blaenorol.\\n\\n55\\n00:02:46,425 --> 00:02:48,625\\nByddwch yn ddewr! Byddwch yn Wicipediad!',\n", + " 'bytes': 4587,\n", + " 'sha1': 'evyz9im1sutbatyaazdx9mixite6g85',\n", + " 'parent_id': 101875090,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 125718579,\n", + " 'timestamp': '2014-06-04T01:16:48Z',\n", + " 'user': {'id': 1216133, 'text': 'Champion'},\n", + " 'page': {'id': 27710613,\n", + " 'title': 'National Banner Song.ogg.zh-tw.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'oops again',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\n山川壯麗,物產豐隆\\n\\n2\\n00:00:04,100 --> 00:00:09,000\\n炎黃世胄,東亞稱雄\\n\\n3\\n00:00:09,100 --> 00:00:14,000\\n毋自暴自棄,毋故步自封\\n\\n4\\n00:00:14,100 --> 00:00:19,000\\n光我民族,促進大同\\n\\n5\\n00:00:19,100 --> 00:00:24,000\\n創業維艱,緬懷諸先烈\\n\\n6\\n00:00:24,100 --> 00:00:29,000\\n守成不易,莫徒務近功\\n\\n7\\n00:00:29,100 --> 00:00:34,000\\n同心同德,貫徹始終\\n\\n8\\n00:00:34,100 --> 00:00:38,000\\n青天白日滿地紅\\n\\n9\\n00:00:38,100 --> 00:00:43,000\\n同心同德,貫徹始終\\n\\n10\\n00:00:43,100 --> 00:00:53,000\\n青天白日滿地紅',\n", + " 'bytes': 609,\n", + " 'sha1': '2h1095r9geez1p7z3a363aoo6fnv20t',\n", + " 'parent_id': 125718564,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601135613,\n", + " 'timestamp': '2021-10-22T15:14:02Z',\n", + " 'user': {'id': 4008733, 'text': 'JhsBot'},\n", + " 'page': {'id': 27724050,\n", + " 'title': 'South African national anthem.oga.zu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'JhsBot moved page [[TimedText:South Africa National Anthem.ogg.zu.srt]] to [[TimedText:South African national anthem.oga.zu.srt]] without leaving a redirect: Moved because the [[File:South African national anthem.oga|file it belongs to]] was moved',\n", + " 'text': '1\\n00:00:16,000 --> 00:00:21,400\\nYizwa imithandazo yethu,\\n\\n2\\n00:00:22,600 --> 00:00:34,000\\nNkosi sikelela, thina lusapho lwayo.',\n", + " 'bytes': 126,\n", + " 'sha1': 'sjantfojo19o6v8dagarxpm2tfgt67i',\n", + " 'parent_id': 101980317,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 262942878,\n", + " 'timestamp': '2017-10-15T08:42:41Z',\n", + " 'user': {'id': 1547075, 'text': 'Illegitimate Barrister'},\n", + " 'page': {'id': 27724051,\n", + " 'title': 'South Africa National Anthem.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:03,000 --> 00:00:09,000\\nLord bless Africa\\n\\n2\\n00:00:9,000 --> 00:00:15,000\\nMay her glory be lifted high,\\n\\n3\\n00:00:15,000 --> 00:00:21,400\\nHear our prayers\\n\\n4\\n00:00:21,600 --> 00:00:34,000\\nLord bless us, your children.\\n\\n5\\n00:00:34,500 --> 00:00:41,400\\nIntervene and end all conflicts,\\n\\n6\\n00:00:41,400 --> 00:00:46,000\\nprotect us, Protect our nation,\\n\\n7\\n00:00:46,000 --> 00:00:59,000\\nLord we ask your to protect our nation,\\n\\n8\\n00:00:59,000 --> 00:01:10,000\\nProtect South Africa, South Africa.\\n\\n9\\n00:01:10,000 --> 00:01:17,000\\nOut of the blue of our heavens,\\n\\n10\\n00:01:17,000 --> 00:01:23,000\\nOut of the depths of our seas,\\n\\n11\\n00:01:23,000 --> 00:01:29,000\\nOver everlasting mountains,\\n\\n12\\n00:01:29,000 --> 00:01:35,000\\nhere the echoing crags resound!\\n\\n13\\n00:01:35,000 --> 00:01:41,400\\nSounds the call to come together,\\n\\n14\\n00:01:41,600 --> 00:01:47,000\\nAnd united we shall stand,\\n\\n15\\n00:01:47,000 --> 00:01:54,000\\nLet us live and strive for freedom\\n\\n16\\n00:01:54,000 --> 00:02:00,000\\nIn South Africa our land.',\n", + " 'bytes': 1013,\n", + " 'sha1': '61v5sl84uoek606efs16m62sp84c8y0',\n", + " 'parent_id': 161926198,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601135593,\n", + " 'timestamp': '2021-10-22T15:13:58Z',\n", + " 'user': {'id': 4008733, 'text': 'JhsBot'},\n", + " 'page': {'id': 27724053,\n", + " 'title': 'South African national anthem.oga.st.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'JhsBot moved page [[TimedText:South Africa National Anthem.ogg.st.srt]] to [[TimedText:South African national anthem.oga.st.srt]] without leaving a redirect: Moved because the [[File:South African national anthem.oga|file it belongs to]] was moved',\n", + " 'text': '1\\n00:00:35,000 --> 00:00:41,400\\nMorena boloka setjhaba sa heso,\\n\\n2\\n00:00:41,000 --> 00:00:46,000\\nO fedise dintwa le matshwenyeho,\\n\\n3\\n00:00:46,000 --> 00:00:59,000\\nO se boloke, O se boloke setjhaba sa heso,\\n\\n4\\n00:00:59,000 --> 00:01:10,000\\nSetjhaba sa, South Afrika — South Afrika.',\n", + " 'bytes': 282,\n", + " 'sha1': 'qxxr2jtr50w6xafjzu60zf3vqweft79',\n", + " 'parent_id': 251711241,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 103517790,\n", + " 'timestamp': '2013-09-05T15:00:26Z',\n", + " 'user': {'id': 1004995, 'text': 'Cymrodor'},\n", + " 'page': {'id': 27730864,\n", + " 'title': 'Wikimedia Italia - WikiGuida 2 - Commons.ogv.cy.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:11,136 --> 00:00:14,013\\nMae Wikimedia Commons, neu jyst \"Commons\",\\n\\n2\\n00:00:14,013 --> 00:00:17,543\\nyn brosiect sy\\'n casglu delweddau, seiniau, fideos\\n\\n3\\n00:00:17,544 --> 00:00:21,599\\nac adnoddau aml-gyfryngol eraill sy\\'n egluro neu\\'n addysgu.\\n\\n4\\n00:00:22,269 --> 00:00:26,310\\nMae\\'r ffeiliau yma yn Commons ar gael i\\'w defnyddio yn rhydd ac am ddim\\n\\n5\\n00:00:26,310 --> 00:00:30,510\\na hefyd ar gyfer pwrpasau masnachol, cyn belled bod defnyddwyr yn cadw i\\'r amodau.\\n\\n6\\n00:00:31,933 --> 00:00:34,975\\nGanwyd Commons yn 2004, yn chwaer-brosiect i Wikipedia,\\n\\n7\\n00:00:34,975 --> 00:00:38,430\\nfel ystorfa gyffredin ar gyfer nifer prosiectau\\'r Wikimedia Foundation,\\n\\n8\\n00:00:38,430 --> 00:00:42,243\\nac yna ddatblygodd fel prosiect annibynnol gyda chanllawiau ei hun.\\n\\n9\\n00:00:42,334 --> 00:00:49,126\\nYn Commons, gallwch ddod o hyd i luniau o leoedd a thirnodau, anifeiliaid, planhigion a mwynau.\\n\\n10\\n00:00:49,702 --> 00:00:53,202\\nHefyd lluniau o bobl, gwrthrychau pob dydd a darnau o gelf.\\n\\n11\\n00:00:53,518 --> 00:00:58,043\\nMae hefyd lluniau a recordiadau hanesyddol a chopiau o lyfrau hynafol wedi\\'u sganio.\\n\\n12\\n00:00:58,485 --> 00:01:04,492\\nMae cynlluniau, diagramau, graffiau, mapiau, recordiadau fideo a sain,\\n\\n13\\n00:01:04,492 --> 00:01:06,214\\na llawer mwy yma hefyd.\\n\\n14\\n00:01:06,519 --> 00:01:10,614\\nMae\\'r hawlfreintiau ar rhai o\\'r ffeiliau wedi dod i ben\\n\\n15\\n00:01:10,613 --> 00:01:16,113\\ntra bod yr awduron neu\\'r hawlfreintwyr wedi rhoi caniatad i\\'w deunydd cael ei ddefnyddio\\n\\n16\\n00:01:16,114 --> 00:01:18,864\\ndan rhai amodau syml, megis cydnabyddiaeth\\n\\n17\\n00:01:18,864 --> 00:01:24,308\\nneu fod gwaith deilliadol yn cael ei ryddhau dan yr un amodau.\\n\\n18\\n00:01:24,729 --> 00:01:28,578\\nMae dros 7 miliwn o adnoddau yn Commons, ar gael i\\'w lawrlwytho\\n\\n19\\n00:01:28,578 --> 00:01:34,238\\na\\'i defnyddio ar gyfer traethodau, gwefannau, posteri, hysbysebion, gwaith celf...\\n\\n20\\n00:01:35,834 --> 00:01:41,378\\nGellir cynnwys adnoddau o Commons yn uniongyrchol mewn tudalennau Wicipedia\\n\\n21\\n00:01:41,378 --> 00:01:46,106\\nac unrhyw brosiect Wikimedia, cyn belled bod canllawiau\\'r prosiect penodol,\\n\\n22\\n00:01:46,106 --> 00:01:49,701\\ndisgwyliadau cymuned yr iaith iddo gael ei ddefnyddio ynddo\\n\\n23\\n00:01:49,701 --> 00:01:53,626\\nac unrhyw gyfreithiau perthnasol yn y wlad ble\\'r tarddwyd y cynnwys yn cael eu dilyn.\\n\\n24\\n00:01:53,849 --> 00:01:57,174\\nMae gan bob ffeil yn Commons tudalen wiki ei hun.\\n\\n25\\n00:01:57,563 --> 00:02:01,428\\nYn gyntaf mae\\'r teitl ac yna\\'r adnodd aml-gyfrwng neu ragolwg ohono,\\n\\n26\\n00:02:01,428 --> 00:02:03,528\\nfel yn achos lluniau mawr iawn.\\n\\n27\\n00:02:04,079 --> 00:02:07,785\\nMae wedyn disgrifiad o\\'r adnodd (yn aml yn amlieithog)\\n\\n28\\n00:02:07,785 --> 00:02:12,666\\na\\'r holl wybodaeth am yr adnodd, yr awdur, y dyddiad a\\'r termau defnydd.\\n\\n29\\n00:02:13,079 --> 00:02:16,968\\nMae hanes y ffeil yn rhestru\\'r holl newidiadau sy\\'n bodoli.\\n\\n30\\n00:02:17,056 --> 00:02:21,256\\nMae\\'n bosib newid a gwella ffeiliau wedi\\'i uwchlwytho gan ddefnyddwyr eraill.\\n\\n31\\n00:02:21,825 --> 00:02:24,603\\nHefyd, mae rhestr o\\'r tudalennau yn Commons\\n\\n32\\n00:02:24,603 --> 00:02:28,175\\na phrosiectau eraill y Wikimedia Foundation sydd yn cysylltu i\\'r adnodd\\n\\n33\\n00:02:28,175 --> 00:02:29,722\\nneu yn ei mewnosod.\\n\\n34\\n00:02:30,190 --> 00:02:35,190\\nAr waelod y dudalen mae\\'r categoriau ble mae\\'r adnodd wedi ei gatalogio.\\n\\n35\\n00:02:35,556 --> 00:02:38,294\\nMae\\'r categoriau mewn Saesneg safonol\\n\\n36\\n00:02:38,294 --> 00:02:41,794\\nond dylai dealltwriaeth fras o\\'r iaith fod yn ddigon i\\'w deall.\\n\\n37\\n00:02:43,111 --> 00:02:45,087\\nSut gallwch chi gyfrannu i Commons?\\n\\n38\\n00:02:45,315 --> 00:02:48,672\\n Os ydych yn hoffi tynnu lluniau, gallwch uwchlwytho\\'ch lluniau.\\n\\n39\\n00:02:48,672 --> 00:02:52,061\\nGall rhywun sy\\'n dda ar ddarlunio ychwanegu diagramau ac animeiddiadau\\n\\n40\\n00:02:52,061 --> 00:02:55,212\\na cherddor rhannu recordiadau o gerddoriaeth am ddim.\\n\\n41\\n00:02:55,212 --> 00:02:59,013\\nGall hyd yn oed ffilmiau a recordiadau o ddramau theatr cael eu uwchlwytho\\n\\n42\\n00:02:59,013 --> 00:03:01,925\\ncyn belled nad oes cyfyngiadau hawlfraint arnynt.\\n\\n43\\n00:03:02,513 --> 00:03:07,158\\nRhaid cofrestru fel defnyddiwr er mwyn uwchlwytho ffeiliau i Commons.\\n\\n44\\n00:03:07,468 --> 00:03:10,619\\nMae\\'r cofrestriad yn gyflym ac am ddim...\\n\\n45\\n00:03:10,896 --> 00:03:14,079\\nond does dim angen cofrestru os ydych eisoes wedi cofrestru\\n\\n46\\n00:03:14,079 --> 00:03:15,890\\ndrwy brosiect arall gan y Wikimedia Foundation.\\n\\n47\\n00:03:16,049 --> 00:03:19,375\\nGellir ddim ond uwchlwytho adnoddau sydd mewn fformat rhydd.\\n\\n48\\n00:03:19,375 --> 00:03:23,192\\nEr enghraifft, yr unig fformat fideo a chaniateir yw Ogg Theora.\\n\\n49\\n00:03:23,675 --> 00:03:30,000\\nMae nifer o raglenni cod agored ac am ddim ar gael i drawsnewid ffeiliau o un fformat i\\'r llall.\\n\\n50\\n00:03:30,270 --> 00:03:32,833\\nRhaid i bob ffeil sy\\'n cael ei huwchlwytho gydymffurfio a:\\n\\n51\\n00:03:32,833 --> 00:03:37,246\\ncyfraith UDA, ble mae Wikimedia Foundation yn bodoli\\'n gyfreithlon;\\n\\n52\\n00:03:37,246 --> 00:03:40,317\\ngyfraith y wlad ble mae\\'r adnodd yn dod ohono;\\n\\n53\\n00:03:40,317 --> 00:03:45,532\\na chyfraith gwlad y defnyddiwr sy\\'n gyfrifol am y cynnwys mae\\'n ei uwchlwytho.\\n\\n54\\n00:03:46,056 --> 00:03:50,635\\n Yna, rhaid i chi wirio nad ydych yn torri unrhyw gyfreithiau preifatrwydd\\n\\n55\\n00:03:50,635 --> 00:03:52,167\\na nodau masnachol\\n\\n56\\n00:03:52,167 --> 00:03:56,367\\nna\\'r cyfyngiadau mae rhai amgueddfeydd yn gosod ar ddefnydd gweithiau o gelf.\\n\\n57\\n00:03:56,667 --> 00:04:00,571\\nOs yw\\'r deunydd eisoes wedi\\'i gyhoeddi rhywle arall dan drwydded na sy\\'n rhydd,\\n\\n58\\n00:04:00,571 --> 00:04:04,881\\nrhaid i\\'r awduron neu\\'r hawlfreintwyr anfon e-bost yn adnabod eu hunain\\n\\n59\\n00:04:04,881 --> 00:04:11,302\\nac yn datgan eu caniatad i\\'w gwaith cael eu cyhoeddi dan drwydded rydd.\\n\\n60\\n00:04:12,007 --> 00:04:14,257\\nFel Wikipedia, wiki yw Commons.\\n\\n61\\n00:04:14,257 --> 00:04:16,054\\nMae\\'n wefan sy\\'n agored i bawb\\n\\n62\\n00:04:16,054 --> 00:04:18,606\\na\\'n cael ei rheoli gan wirfoddolwyr o bob cwr y byd\\n\\n63\\n00:04:18,606 --> 00:04:22,055\\nsy\\'n gweithio i adnabod a chategoreiddio\\'r deunydd,\\n\\n64\\n00:04:22,054 --> 00:04:24,440\\ncwblhau neu gyfieithu disgrifiadau,\\n\\n65\\n00:04:24,440 --> 00:04:27,475\\ncreu galeriau a thudalennau gyda themau penodol,\\n\\n66\\n00:04:27,475 --> 00:04:31,675\\nac adnabod a dileu unrhyw gynnwys o ffynonellau anaddas neu heb drwydded dderbyniol.\\n\\n67\\n00:04:32,944 --> 00:04:35,360\\nMae Commons yn brosiect amlieithog:\\n\\n68\\n00:04:35,359 --> 00:04:38,031\\nmae\\'r holl gyfieithiadau i gyd ar yr un gwefan\\n\\n69\\n00:04:38,031 --> 00:04:41,043\\na\\'r cymunedau ieithyddol gwahanol yn rhannu\\'r un gofod.\\n\\n70\\n00:04:41,642 --> 00:04:45,610\\nI chwilio cynnwys Commons yn haws na drwy\\'r categoriau,\\n\\n71\\n00:04:45,610 --> 00:04:48,082\\ngallwch edrych ar galerïau,\\n\\n72\\n00:04:48,082 --> 00:04:54,315\\nsef tudalennau wedi\\'u creu yn bwrpasol i gasglu adnoddau ar yr un pwnc.\\n\\n73\\n00:04:55,007 --> 00:04:59,403\\nMae trafodaeth pob adnodd yn digwydd yn ei dudalen sgwrsio ei hun,\\n\\n74\\n00:04:59,402 --> 00:05:05,354\\ntra bod trafodaethau mwy cyffredin am Commons yn digwydd ar dudalen pwrpasol.\\n\\n75\\n00:05:06,093 --> 00:05:08,871\\nYn Saesneg mae\\'r rhan fwyaf o\\'r trafodaethau,\\n\\n76\\n00:05:08,870 --> 00:05:12,370\\nond mae tudalennau ar gael i drafod mewn ieithoedd eraill hefyd.\\n\\n77\\n00:05:12,938 --> 00:05:16,474\\nMae yna ganolfan cymorth a llawer o dudalennau cymorth ar gael\\n\\n78\\n00:05:16,474 --> 00:05:19,974\\nmewn nifer o ieithoedd os ydych yn cael problemau.\\n\\n79\\n00:05:20,232 --> 00:05:23,347\\nOs yw\\'r mater yn fwy penodol neu\\'n gymhleth, gallwch ofyn i\\'r gweinyddwyr.\\n\\n80\\n00:05:23,347 --> 00:05:25,470\\nMaen nhw hefyd yn wirfoddolwyr\\n\\n81\\n00:05:25,470 --> 00:05:31,220\\nond maent wedi ennill hyder y gymuned dros amser am eu gwybodaeth o\\'r prosiect.\\n\\n82\\n00:05:31,434 --> 00:05:35,502\\nDim ond y gweinyddwyr gall cyflawni rhai gweithredoedd arbennig,\\n\\n83\\n00:05:35,502 --> 00:05:37,914\\nfel dileu adnoddau.\\n\\n84\\n00:05:39,760 --> 00:05:41,930\\nOs ydych eisiau ail-ddefnyddio adnodd o Commons,\\n\\n85\\n00:05:41,929 --> 00:05:46,383\\ngwnewch yn siŵr ei fod yn cydymffurfio a\\'r gyfraith yn eich gwlad chi.\\n\\n86\\n00:05:46,383 --> 00:05:50,228\\nNi all Commons sicrhau cyfreithlondeb pob adnodd mewn unrhyw gyd-destun,\\n\\n87\\n00:05:50,228 --> 00:05:53,188\\nna chwaith ei gywirdeb na\\'i dibynadwyedd llwyr.\\n\\n88\\n00:05:53,188 --> 00:05:56,736\\nFodd bynnag, mae\\'n anhygoel i weld faint o ddeunydd dilys a defnyddiol\\n\\n89\\n00:05:56,736 --> 00:05:58,585\\nsydd wedi cael ei uwchlwytho.\\n\\n90\\n00:05:59,446 --> 00:06:03,722\\nMae mwy a mwy o archifau cyhoeddus, amgueddfeydd,\\n\\n91\\n00:06:03,730 --> 00:06:09,944\\nllyfrgelloedd a chasgliadau preifat yn cyfrannu \"rhoddion\" o adnoddau sy\\'n dda i bawb.\\n\\n92\\n00:06:10,742 --> 00:06:14,869\\nMae nifer o ffotograffwyr proffesiynol yn cyhoeddi eu gwaith ar Commons,\\n\\n93\\n00:06:14,876 --> 00:06:18,135\\ngan fod yn falch o weld eu gwaith yn cael ei ymledu dros y byd.\\n\\n94\\n00:06:18,520 --> 00:06:22,073\\nMae\\'r un yn wir am ddarlunwyr,\\n\\n95\\n00:06:22,073 --> 00:06:25,827\\nsy\\'n rhoi cynlluniau a diagramau hynod o effeithiol.\\n\\n96\\n00:06:26,577 --> 00:06:30,784\\nMae gan y gymuned nifer o ffyrdd i gymeradwyo gwaith o safon.\\n\\n97\\n00:06:30,784 --> 00:06:35,069\\nMae yna gystadleuaeth i wobrwyo ffotograff y flwyddyn.\\n\\n98\\n00:06:35,653 --> 00:06:40,697\\nHefyd mae detholiad yn pigo\\'r lluniau gorau gan ddefnyddwyr Commons\\n\\n99\\n00:06:40,697 --> 00:06:45,014\\nac un arall yn gwobrwyo\\'r lluniau mwyaf effeithiol fesul dosbarth.\\n\\n100\\n00:06:45,530 --> 00:06:49,312\\nMae llun arbennig o ddiddorol yn cael ei ddewis pob dydd,\\n\\n101\\n00:06:49,312 --> 00:06:52,812\\na\\'r un fath yn digwydd gyda\\'r adnoddau aml-gyfrwng eraill.\\n\\n102\\n00:06:54,443 --> 00:06:59,578\\nGallwch gefnogi Commons yn ariannol gan roi i\\'r Wikimedia Foundation,\\n\\n103\\n00:06:59,578 --> 00:07:04,618\\nneu gallwch ddewis i gefnogi Wikimedia UK,\\n\\n104\\n00:07:04,626 --> 00:07:08,579\\nsefydliad dielw sy\\'n hyrwyddo\\'r Commons ym Mhrydain\\n\\n105\\n00:07:08,571 --> 00:07:11,512\\na phrosiectau eraill y Wikimedia Foundation.',\n", + " 'bytes': 9826,\n", + " 'sha1': 'eazz8bblxdsv5laii54ldj7etrq643c',\n", + " 'parent_id': 102245752,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 189526274,\n", + " 'timestamp': '2016-03-06T03:28:06Z',\n", + " 'user': {'id': 410833, 'text': 'Akaniji'},\n", + " 'page': {'id': 27747902,\n", + " 'title': 'Nippon News No241.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '仰ぎ献り→仰ぎ献り、軍列行進→分列行進',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:08,000\\n日本ニュース 製作 社団法人 日本映画社\\n\\n2\\n00:00:07,500 --> 00:00:10,000\\n第241号 陸軍省検閲済 海軍省検閲第一号\\n\\n3\\n00:00:10,000 --> 00:00:16,500\\n脱帽 大元帥陛下親臨 陸軍始観兵式\\n\\n4\\n00:00:22,000 --> 00:00:30,000\\n昭和20年の新春を飾る陸軍始観兵式は、畏くも大元帥陛下の親臨を仰ぎ奉り、\\n\\n5\\n00:00:30,000 --> 00:00:36,000\\n1月8日宮城前広場において、いと厳かに執り行われました。\\n\\n6\\n00:00:36,000 --> 00:00:45,000\\n武勲輝く軍旗を先頭に、皇軍の精鋭は陛下の御馬前に堂々の分列行進を行う。\\n\\n7\\n00:00:45,000 --> 00:00:53,000\\n比島決戦いよいよ危急を告げる時、後衛の参加諸部隊は戦闘帽、鉄兜姿も凛々しく、\\n\\n8\\n00:00:53,000 --> 00:01:01,000\\n将兵の士気、益々奮い、ただただ一死奉公、米英撃滅をかたく誓い奉ったのであります。\\n\\n9\\n00:02:10,500 --> 00:02:17,000\\n撃て驕米\\n\\n10\\n00:02:18,000 --> 00:02:30,000\\n福留比島方面海軍航空部隊指揮官、神風特別攻撃隊「金剛隊」の命名式に臨む。\\n\\n11\\n00:02:41,000 --> 00:02:46,500\\n福留長官は「金剛隊」と力強く命名。\\n\\n12\\n00:02:46,500 --> 00:03:00,000\\n国家の運命を双肩に担う諸君の壮気は、軍人として至高のものであると壮途を祝する。\\n\\n13\\n00:03:00,000 --> 00:03:10,000\\n次いで長官は、隊員の一人一人を抱くが如く激励。\\n\\n14\\n00:03:19,000 --> 00:03:32,000\\n大西比島方面海軍航空部隊指揮官また心から交わす握手。\\n\\n15\\n00:03:32,000 --> 00:03:37,000\\n量を頼んで強引なる比島作戦の展開を謀る敵アメリカ。\\n\\n16\\n00:03:37,000 --> 00:04:02,000\\nその敵を厳然と迎えて我に特別攻撃隊あり。\\n\\n17\\n00:04:02,000 --> 00:04:20,000\\n時は来た。進発!いま金剛隊は征く、敵船団目指して。\\n\\n18\\n00:04:20,000 --> 00:04:25,000\\n陸軍特別攻撃隊も相次いで基地を出発する。\\n\\n19\\n00:04:25,000 --> 00:04:31,000\\nレイテ、ミンドロの上陸に続いて、敵はいままたルソン島をも窺い、\\n\\n20\\n00:04:31,000 --> 00:04:38,000\\nリンガエン湾には機動部隊、百隻内外の一大船団、虎視眈々と上陸の機を狙う。\\n\\n21\\n00:04:38,000 --> 00:04:43,000\\n今やルソン島を巡る戦況は俄然活発化するに至った。\\n\\n22\\n00:04:43,000 --> 00:04:46,000\\nこの敵、討たざるべからず。\\n\\n23\\n00:04:46,000 --> 00:04:53,000\\n一機また一機、飛び立つ特別攻撃隊。\\n\\n24\\n00:04:53,000 --> 00:05:00,000\\n刀を揚げて送るは富永比島方面陸軍航空部隊指揮官。\\n\\n25\\n00:05:00,000 --> 00:05:08,000\\nいま幾千の若き陸海軍の将兵は、尽忠の二字を抱いて敵陣の真っ只中へ。\\n\\n26\\n00:05:08,000 --> 00:05:13,000\\n朝敵、討つべし。比島方面にアメリカ軍殲滅の神機至るの時、\\n\\n27\\n00:05:13,000 --> 00:05:17,000\\n我ら一億今こそ特別攻撃隊の精神を体し、\\n\\n28\\n00:05:17,000 --> 00:05:30,000\\n戦力の増強・航空機増産にただただ死力を尽くして挺身あるのみ。\\n\\n29\\n00:05:38,000 --> 00:05:42,000\\n日本ニュース 終',\n", + " 'bytes': 3173,\n", + " 'sha1': 'jcpl7j82k2i0zdu61bkhoryp3czh1m1',\n", + " 'parent_id': 189525776,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 689871142,\n", + " 'timestamp': '2022-09-19T14:46:41Z',\n", + " 'user': {'id': 2366229, 'text': 'Achim55'},\n", + " 'page': {'id': 27759273,\n", + " 'title': 'Indonesiaraya.ogg.id.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/114.5.146.130|114.5.146.130]] ([[User talk:114.5.146.130|talk]]) to last revision by Terez26',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,200\\nIndonesia tanah airku\\n\\n2\\n00:00:05,201 --> 00:00:09,400\\nTanah tumpah darahku\\n\\n3\\n00:00:09,500 --> 00:00:14,600\\nDi sanalah aku berdiri\\n\\n4\\n00:00:14,601 --> 00:00:19,600\\nJadi pandu ibuku\\n\\n5\\n00:00:19,700 --> 00:00:24,200\\nIndonesia kebangsaanku\\n\\n6\\n00:00:24,201 --> 00:00:29,350\\nBangsa dan tanah airku\\n\\n7\\n00:00:29,351 --> 00:00:34,400\\nMarilah kita berseru\\n\\n8\\n00:00:34,401 --> 00:00:39,700\\nIndonesia bersatu\\n\\n9\\n00:00:39,701 --> 00:00:42,300\\nHiduplah tanahku,\\n\\n10\\n00:00:42,301 --> 00:00:44,600\\nHiduplah negeriku,\\n\\n11\\n00:00:44,601 --> 00:00:49,500\\nBangsaku, Rakyatku, Semuanya\\n\\n12\\n00:00:49,501 --> 00:00:52,000\\nBangunlah jiwanya,\\n\\n13\\n00:00:52,001 --> 00:00:54,550\\nBangunlah badannya,\\n\\n14\\n00:00:54,551 --> 00:00:59,400\\nUntuk Indonesia Raya\\n\\n15\\n00:00:59,401 --> 00:01:02,100\\nIndonesia Raya\\n\\n16\\n00:01:02,201 --> 00:01:04,400\\nMerdeka, Merdeka!\\n\\n17\\n00:01:04,401 --> 00:01:09,600\\nTanahku, Negeriku yang kucinta\\n\\n18\\n00:01:09,601 --> 00:01:12,000\\nIndonesia Raya\\n\\n19\\n00:01:12,001 --> 00:01:14,400\\nMerdeka, Merdeka!\\n\\n20\\n00:01:14,401 --> 00:01:19,400\\nHiduplah Indonesia Raya!\\n\\n21\\n00:01:19,401 --> 00:01:21,700\\nIndonesia Raya\\n\\n22\\n00:01:21,701 --> 00:01:24,100\\nMerdeka, Merdeka!\\n\\n23\\n00:01:24,101 --> 00:01:29,000\\nTanahku, Negeriku yang kucinta\\n\\n24\\n00:01:29,001 --> 00:01:31,400\\nIndonesia Raya\\n\\n25\\n00:01:31,401 --> 00:01:33,700\\nMerdeka, Merdeka!\\n\\n26\\n00:01:33,701 --> 00:01:39,800\\n<b><i>Hiduplah Indonesia Raya!</i></b>',\n", + " 'bytes': 1425,\n", + " 'sha1': 'rrt7ry4qry1nec6fgidmeud2bizx4qa',\n", + " 'parent_id': 689858812,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 142770599,\n", + " 'timestamp': '2014-12-15T00:03:53Z',\n", + " 'user': {'text': '111.184.125.55'},\n", + " 'page': {'id': 27765412,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.zh-tw.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,800 -->00:00:03,500\\n你好!我叫特雷福,我正在幫維基百科製作視覺化編輯器。\\n\\n2\\n00:00:03,505 -->00:00:07,505\\n人人都可以編輯維基百科,但新手往往會束手無措。\\n\\n3\\n00:00:07,762 -->00:00:11,262\\n因應維基百科舊的代碼十分難以使用。\\n\\n4\\n00:00:11,287 -->00:00:14,787\\n那在12年前我們創立維基百科時確實很讚,\\n\\n5\\n00:00:14,925 -->00:00:16,925\\n但如果我們要將所有人類的知識匯總分享,\\n\\n6\\n00:00:17,327 -->00:00:19,327\\n我們就應該讓這個過程變得更加容易。\\n\\n7\\n00:00:19,360 -->00:00:22,360\\n推出視覺化編輯器是我所見過維基百科最大的變化了。\\n\\n8\\n00:00:22,604 -->00:00:27,104\\n這使編輯維基百科就像寫論文或發電郵一樣容易。\\n\\n9\\n00:00:27,196 -->00:00:28,696\\n雖然這還不是很完美,\\n\\n10\\n00:00:28,962 -->00:00:31,962\\n但如果你想先睹為快,瞭解將來可以怎樣編輯維基,\\n\\n11\\n00:00:32,207 -->00:00:34,207\\n不妨來維基百科註冊一個帳戶吧。\\n\\n12\\n00:00:34,518 -->00:00:38,018\\n進入參數設定,點擊編輯,然後在開啟視覺化編輯器前打√。\\n\\n13\\n00:00:38,296 -->00:00:42,296\\n在你使用視覺化編輯器時還可以給我們回報建議,幫助我們完善。\\n\\n14\\n00:00:42,622 -->00:00:46,122\\n最後,加入我們吧,讓所有人的知識可以共享。',\n", + " 'bytes': 1340,\n", + " 'sha1': 'p01yu21jxwb2b7t6t7qywhg8jok397x',\n", + " 'parent_id': 127968910,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 102232652,\n", + " 'timestamp': '2013-08-19T08:45:39Z',\n", + " 'user': {'id': 1794541, 'text': 'TianyinLee'},\n", + " 'page': {'id': 27775015,\n", + " 'title': 'National Banner Song.ogg.zh-cn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\n山川壮丽,物产丰隆\\n\\n2\\n00:00:04,100 --> 00:00:09,000\\n炎黄世胄,东亚称雄\\n\\n3\\n00:00:09,100 --> 00:00:14,000\\n毋自暴自弃,毋故步自封\\n\\n4\\n00:00:14,100 --> 00:00:19,000\\n光我民族,促进大同\\n\\n5\\n00:00:19,100 --> 00:00:24,000\\n创业维艰,缅怀诸先烈\\n\\n6\\n00:00:24,100 --> 00:00:29,000\\n守成不易,莫徒务近功\\n\\n7\\n00:00:29,100 --> 00:00:34,000\\n同心同德,贯彻始终\\n\\n8\\n00:00:34,100 --> 00:00:38,000\\n青天白日满地红\\n\\n9\\n00:00:38,100 --> 00:00:43,000\\n同心同德,贯彻始终\\n\\n10\\n00:00:43,100 --> 00:00:53,000\\n青天白日满地红',\n", + " 'bytes': 616,\n", + " 'sha1': 'q4hemd8btar7v7hqefuj3sygv1dpvz9',\n", + " 'parent_id': 102232317,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 102232631,\n", + " 'timestamp': '2013-08-19T08:45:09Z',\n", + " 'user': {'id': 1794541, 'text': 'TianyinLee'},\n", + " 'page': {'id': 27775055,\n", + " 'title': 'National Banner Song.ogg.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\n山川壮丽,物产丰隆\\n\\n2\\n00:00:04,100 --> 00:00:09,000\\n炎黄世胄,东亚称雄\\n\\n3\\n00:00:09,100 --> 00:00:14,000\\n毋自暴自弃,毋故步自封\\n\\n4\\n00:00:14,100 --> 00:00:19,000\\n光我民族,促进大同\\n\\n5\\n00:00:19,100 --> 00:00:24,000\\n创业维艰,缅怀诸先烈\\n\\n6\\n00:00:24,100 --> 00:00:29,000\\n守成不易,莫徒务近功\\n\\n7\\n00:00:29,100 --> 00:00:34,000\\n同心同德,贯彻始终\\n\\n8\\n00:00:34,100 --> 00:00:38,000\\n青天白日满地红\\n\\n9\\n00:00:38,100 --> 00:00:43,000\\n同心同德,贯彻始终\\n\\n10\\n00:00:43,100 --> 00:00:53,000\\n青天白日满地红',\n", + " 'bytes': 616,\n", + " 'sha1': 'q4hemd8btar7v7hqefuj3sygv1dpvz9',\n", + " 'parent_id': 102232394,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 134890779,\n", + " 'timestamp': '2014-09-19T03:29:06Z',\n", + " 'user': {'id': 1216133, 'text': 'Champion'},\n", + " 'page': {'id': 27775079,\n", + " 'title': 'National Banner Song.ogg.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Undo revision 134890754 by [[Special:Contributions/TheChampionMan1234|TheChampionMan1234]] ([[User talk:TheChampionMan1234|talk]])',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\n山川壯麗,物產豐隆\\n\\n2\\n00:00:04,100 --> 00:00:09,000\\n炎黃世胄,東亞稱雄\\n\\n3\\n00:00:09,100 --> 00:00:14,000\\n毋自暴自棄,毋故步自封\\n\\n4\\n00:00:14,100 --> 00:00:19,000\\n光我民族,促進大同\\n\\n5\\n00:00:19,100 --> 00:00:24,000\\n創業維艱,緬懷諸先烈\\n\\n6\\n00:00:24,100 --> 00:00:29,000\\n守成不易,莫徒務近功\\n\\n7\\n00:00:29,100 --> 00:00:34,000\\n同心同德,貫徹始終\\n\\n8\\n00:00:34,100 --> 00:00:38,000\\n青天白日滿地紅\\n\\n9\\n00:00:38,100 --> 00:00:43,000\\n同心同德,貫徹始終\\n\\n10\\n00:00:43,100 --> 00:00:53,000\\n青天白日滿地紅',\n", + " 'bytes': 609,\n", + " 'sha1': '2h1095r9geez1p7z3a363aoo6fnv20t',\n", + " 'parent_id': 134890754,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 102244108,\n", + " 'timestamp': '2013-08-19T13:00:04Z',\n", + " 'user': {'text': '125.25.240.246'},\n", + " 'page': {'id': 27778566,\n", + " 'title': 'Thai National Anthem - US Navy Band.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,320 Thailand embraces in its bosom all people of Thai blood, 2 00:00:05,320 --> 00:00:10,500 Every inch of Thailand belongs to the ...'\",\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:05,320\\nThailand embraces in its bosom all people of Thai blood,\\n\\n2\\n00:00:05,320 --> 00:00:10,500\\nEvery inch of Thailand belongs to the Thais.\\n\\n3\\n00:00:10,500 --> 00:00:15,760\\nIt has long maintained its sovereignty,\\n\\n4\\n00:00:15,760 --> 00:00:21,160\\nBecause the Thais have always been united.\\n\\n5\\n00:00:21,160 --> 00:00:26,640\\nThe Thai people are peace-loving, But they are no cowards at war.\\n\\n6\\n00:00:26,640 --> 00:00:31,880\\nNor shall they suffer tyranny.\\n\\n7\\n00:00:31,880 --> 00:00:37,420\\nAll Thais are ready to give up every drop of blood,\\n\\n8\\n00:00:37,420 --> 00:00:43,080\\nFor the nation's safety, freedom and progress.\",\n", + " 'bytes': 643,\n", + " 'sha1': 'niao3gan2kthefj9n82zwwbsr5u1wfo',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 102244280,\n", + " 'timestamp': '2013-08-19T13:03:20Z',\n", + " 'user': {'id': 1975, 'text': 'Sebastian Wallroth'},\n", + " 'page': {'id': 27778643,\n", + " 'title': '2013-04-22 Resonanz.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'new',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\nDa muss ich ja unbedingt nochmal dabei sein.\\n\\n2\\n00:00:04,000 --> 00:00:06,000\\nWenn die Runde nun schon so groß ist.\\n\\n3\\n00:00:06,000 --> 00:00:08,000\\nDu willst nicht fotografiert werden?\\n\\n4\\n00:00:08,000 --> 00:00:10,000\\nAchso. Darf ich Dich fotografieren?\\n\\n5\\n00:00:13,000 --> 00:00:16,000\\nDu weißt doch: Du musst einfach den Arm über die Augen halten.',\n", + " 'bytes': 386,\n", + " 'sha1': 'gn5gz1jnq7kz3tlagssofohc7h2aekc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 102250428,\n", + " 'timestamp': '2013-08-19T14:55:22Z',\n", + " 'user': {'text': '131.159.16.202'},\n", + " 'page': {'id': 27780229,\n", + " 'title': 'Het braken van een man - SoundCloud - Beeld en Geluid.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Added a missing \"sniff\"',\n", + " 'text': '1\\n00:00:00,700 --> 00:00:2,700\\nUuuuurrrrrrrrrrp!\\n\\n2\\n00:00:02,700 --> 00:00:3,300\\nAeh!\\n\\n3\\n00:00:03,600 --> 00:00:6,100\\nBüüüöööaaaaarrgh!\\n\\n4\\n00:00:06,100 --> 00:00:6,400\\nPff!\\n\\n5\\n00:00:06,400 --> 00:00:7,400\\nBröärrg!\\n\\n6\\n00:00:07,600 --> 00:00:10,000\\nWöaarh!\\n\\n7\\n00:00:10,000 --> 00:00:10,600\\nAeh!\\n\\n7\\n00:00:10,600 --> 00:00:11,000\\n\\\\*sniff\\\\*\\n\\n8\\n00:00:11,000 --> 00:00:11,700\\nAehh!\\n\\n9\\n00:00:12,000 --> 00:00:12,600\\nAeh!\\n\\n10\\n00:00:12,700 --> 00:00:13,600\\n\\\\*sniff\\\\*\\n\\n11\\n00:00:14,300 --> 00:00:15,500\\nUuuurrp!',\n", + " 'bytes': 508,\n", + " 'sha1': 'l252vvskdqsxxjgzvjbt026oaspcjsp',\n", + " 'parent_id': 102250356,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 102250606,\n", + " 'timestamp': '2013-08-19T14:59:31Z',\n", + " 'user': {'text': '131.159.16.202'},\n", + " 'page': {'id': 27780731,\n", + " 'title': 'Het braken van een man - SoundCloud - Beeld en Geluid.ogg.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Translation from english subtitle',\n", + " 'text': '1\\n00:00:00,700 --> 00:00:2,700\\nÖöööörrrrrrrrrrp!\\n\\n2\\n00:00:02,700 --> 00:00:3,300\\nAeh!\\n\\n3\\n00:00:03,600 --> 00:00:6,100\\nBüüüöööaaaaarrgh!\\n\\n4\\n00:00:06,100 --> 00:00:6,400\\nPff!\\n\\n5\\n00:00:06,400 --> 00:00:7,400\\nBröärrg!\\n\\n6\\n00:00:07,600 --> 00:00:10,000\\nWöaarh!\\n\\n7\\n00:00:10,000 --> 00:00:10,700\\nAeh!\\n\\n8\\n00:00:11,000 --> 00:00:11,700\\nAehh!\\n\\n9\\n00:00:12,000 --> 00:00:12,600\\nAeh!\\n\\n10\\n00:00:12,700 --> 00:00:13,600\\n\\\\*sniff\\\\*\\n\\n11\\n00:00:14,300 --> 00:00:15,500\\nÖööörrp!',\n", + " 'bytes': 474,\n", + " 'sha1': 'ab5uw1fsjxcazt7h5n660htv4pekru1',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 103027371,\n", + " 'timestamp': '2013-08-31T03:55:50Z',\n", + " 'user': {'id': 1011036, 'text': 'Sobreira 10'},\n", + " 'page': {'id': 27824024,\n", + " 'title': 'La Marseillaise.ogg.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:04,000\\nAvante filhos do nosso país,\\n\\n2\\n00:00:04,000 --> 00:00:08,000\\nO dia da glória chegou!\\n\\n3\\n00:00:08,000 --> 00:00:12,000\\nContra nós vem a tirania,\\n\\n4\\n00:00:12,000 --> 00:00:16,000\\nQue o estandarte sangrento elevou!\\n\\n5\\n00:00:16,000 --> 00:00:20,000\\nQue o estandarte sangrento elevou!\\n\\n6\\n00:00:20,000 --> 00:00:24,000\\nVós entendem aí nos campos\\n\\n7\\n00:00:24,000 --> 00:00:28,000\\nRugir os ferozes soldados?\\n\\n8\\n00:00:28,000 --> 00:00:32,000\\nEles vem até os nossos braços\\n\\n9\\n00:00:32,000 --> 00:00:37,000\\nDegolar mulheres e crianças!\\n\\n10\\n00:00:37,000 --> 00:00:41,000\\nÀs armas, cidadãos,\\n\\n11\\n00:00:41,000 --> 00:00:45,000\\nFormai seus batalhões,\\n\\n12\\n00:00:45,000 --> 00:00:50,000\\nMarchai, marchai!\\n\\n13\\n00:00:50,000 --> 00:00:54,000\\nE que um sangue impuro\\n\\n14\\n00:00:54,000 --> 00:00:58,000\\nBanhe o nosso solo!\\n\\n15\\n00:00:58,000 --> 00:01:02,000\\nÀs armas, cidadãos\\n\\n16\\n00:01:02,000 --> 00:01:06,000\\nFormai seus batalhões,\\n\\n17\\n00:01:06,000 --> 00:01:10,000\\nMarchai, marchai!\\n\\n18\\n00:01:10,000 --> 00:01:14,000\\nE que um sangue impuro\\n\\n19\\n00:01:14,000 --> 00:01:19,000\\nBanhe o nosso solo!',\n", + " 'bytes': 1119,\n", + " 'sha1': 'rme2zv59rv5t31jukityi1oyet356k6',\n", + " 'parent_id': 103027356,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 102596253,\n", + " 'timestamp': '2013-08-24T18:28:13Z',\n", + " 'user': {'id': 106171, 'text': 'Rodrigo.Argenton'},\n", + " 'page': {'id': 27860799,\n", + " 'title': 'Criação de conta.webm.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:10,180 --> 00:00:12,100 clique em criar conta para começarmos. 2 00:00:12,126 --> 00:00:13,180 Insira seu nome de usuário, 3 00:00:13,259 --> 00:0...'\",\n", + " 'text': '1\\n00:00:10,180 --> 00:00:12,100\\nclique em criar conta para começarmos.\\n\\n2\\n00:00:12,126 --> 00:00:13,180\\nInsira seu nome de usuário, \\n\\n3\\n00:00:13,259 --> 00:00:15,213\\nele aceita vários caracteres como pode ver.\\n\\n4\\n00:00:16,227 --> 00:00:17,149\\nEscolha uma senha, e a repita.\\n\\n5\\n00:00:17,991 --> 00:00:20,054\\nOs emails são opcionais, mas lhe garante algumas vantagens.\\n\\n6\\n00:00:20,172 --> 00:00:22,244\\npor uma questão de segurança pedimos que insira o captcha\\n\\n7\\n00:00:22,610 --> 00:00:24,543\\nclique em \"crie sua conta\", e está criada!',\n", + " 'bytes': 541,\n", + " 'sha1': '0mzpaofjbynwvtlrenjw2xtc5jkuoo1',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 102596352,\n", + " 'timestamp': '2013-08-24T18:29:41Z',\n", + " 'user': {'id': 106171, 'text': 'Rodrigo.Argenton'},\n", + " 'page': {'id': 27860846,\n", + " 'title': 'Conta com som.webm.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:10,180 --> 00:00:12,100 Clique em criar conta para começarmos. 2 00:00:12,126 --> 00:00:13,180 Insira seu nome de usuário, 3 00:00:13,259 --> 00:0...'\",\n", + " 'text': '1\\n00:00:10,180 --> 00:00:12,100\\nClique em criar conta para começarmos.\\n\\n2\\n00:00:12,126 --> 00:00:13,180\\nInsira seu nome de usuário, \\n\\n3\\n00:00:13,259 --> 00:00:15,213\\nele aceita vários caracteres como pode ver.\\n\\n4\\n00:00:16,227 --> 00:00:17,149\\nEscolha uma senha, e a repita.\\n\\n5\\n00:00:17,991 --> 00:00:20,054\\nOs emails são opcionais, mas lhe garante algumas vantagens.\\n\\n6\\n00:00:20,172 --> 00:00:22,244\\nPor uma questão de segurança pedimos que insira o captcha\\n\\n7\\n00:00:22,610 --> 00:00:24,543\\nClique em \"crie sua conta\", e está criada!',\n", + " 'bytes': 541,\n", + " 'sha1': 'fwj0w7w2i94y45dg4szyr3lmaequsq2',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 693386711,\n", + " 'timestamp': '2022-10-01T08:32:10Z',\n", + " 'user': {'id': 11592035, 'text': 'Collager'},\n", + " 'page': {'id': 27894977,\n", + " 'title': 'Desteapta-te, romane!.ogg.ro.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:09,000\\nDeşteaptă-te, române, din somnul cel de moarte,\\nDeщеаптъ-те, роmъnе, dіn соmnȢл чел dе móрте,\\n\\n2\\n00:00:09,000 --> 00:00:22,000\\nÎn care te-adânciră barbarii de tirani!\\nꙞn каре тĕ аdъnчіръ барбарii dе тіраnĭ!\\n\\n3\\n00:00:22,000 --> 00:00:31,000\\nAcum ori niciodată croieşte-ţi altă soarta,\\nАкȢm орĭ nічĭ оdатъ кроĭеще\\'цĭ алтъ сóрте,\\n\\n4\\n00:00:31,000 --> 00:00:45,000\\nLa care să se-nchine şi cruzii tăi dusmani!\\nЛа кареа съ се \\'nкіnе ші крȢzіĭ тъĭ dȢшmаnĭ!\\n\\n5\\n00:00:45,000 --> 00:00:54,000\\nAcum ori niciodată să dăm dovezi la lume,\\nАкȢm, орĭ nічĭ оdатъ съ dъm dовеzĭ ла лȢmе,\\n\\n6\\n00:00:54,000 --> 00:01:08,000\\nCă-n aste mâni mai curge un sânge de roman,\\nКъ \\'nасте mъnĭ mаĭ кȢрџе Ȣn съnџе dе роmаn,\\n\\n7\\n00:01:08,000 --> 00:01:17,000\\nŞi că-n a noastre piepturi păstrăm cu fală-un nume\\nШĭ къ\\'n а nóстре пептȢрĭ пъстръm кȢ фалъ Ȣn nȢmе\\n\\n8\\n00:01:17,000 --> 00:01:30,000\\nTriumfător în lupte, un nume de Traian!\\nТрĭȢmфътор dе пополĭ, Ȣn nȢmе dе Траĭаn\\n\\n9\\n00:01:30,000 --> 00:01:39,000\\nPriviţi, măreţe umbre, Mihai, Ştefan, Corvine,\\nПрівіцĭ mъреце Ȣmбре, МіхаĭȢ, Щефаn, Корвіnе,\\n\\n10\\n00:01:39,000 --> 00:01:53,000\\nRomâna naţiune, ai voştri strănepoţi,\\nЛа nаціа роmъnъ, л\\'аĭ востріĭ стръnепоцĭ,\\n\\n11\\n00:01:53,000 --> 00:02:02,000\\nCu braţele armate, cu focul vostru-n vine,\\nКȢ брацеле арmате, кȢ фокȢл вострȢ\\'n віnе,\\n\\n12\\n00:02:02,000 --> 00:02:17,000\\n\"Viaţă-n libertate, ori moarte!\" strigă toţi.\\n\"Віĭацъ \\'n лібертате, орĭ móрте\" стрігъ тоцĭ.',\n", + " 'bytes': 1831,\n", + " 'sha1': '7zdqimb12y3xfmu44eo462x2mqasiw7',\n", + " 'parent_id': 693386682,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 643291034,\n", + " 'timestamp': '2022-03-23T06:09:46Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 27901669,\n", + " 'title': 'Levitan USSR attacked.ogg.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments, new text division for better readability',\n", + " 'text': '1\\n00:00:02,459 --> 00:00:07,516\\n(Позывная мелодия)\\n\\n2\\n00:00:19,263 --> 00:00:26,445\\n(Позывная мелодия)\\n\\n3\\n00:00:31,255 --> 00:00:32,862\\nВнимание!\\n\\n4\\n00:00:33,788 --> 00:00:36,257\\nГоворит Москва!\\n\\n5\\n00:00:37,257 --> 00:00:39,761\\nГоворит Москва!\\n\\n6\\n00:00:41,238 --> 00:00:45,495\\nЗаявление Советского правительства.\\n\\n7\\n00:00:47,000 --> 00:00:52,297\\nГраждане и гражданки Советского Союза,\\n\\n8\\n00:00:53,732 --> 00:00:57,740\\nсегодня, 22 июня,\\n\\n9\\n00:00:58,267 --> 00:01:00,525\\nв 4 часа утра,\\n\\n10\\n00:01:01,357 --> 00:01:04,301\\nбез объявления войны,\\n\\n11\\n00:01:05,493 --> 00:01:10,517\\nгерманские войска напали на нашу страну,\\n\\n12\\n00:01:11,520 --> 00:01:17,826\\nатаковали наши границы во многих местах\\n\\n13\\n00:01:18,610 --> 00:01:25,189\\nи подвергли бомбордировке города Житомир,\\n\\n14\\n00:01:25,222 --> 00:01:31,760\\nКиев, Севастополь, Каунас и другие.',\n", + " 'bytes': 1133,\n", + " 'sha1': 'pzvd5b5szscslq4aoyidwmshihgabtt',\n", + " 'parent_id': 102779227,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 103016833,\n", + " 'timestamp': '2013-08-30T22:38:37Z',\n", + " 'user': {'id': 46400, 'text': 'Sannita'},\n", + " 'page': {'id': 27913828,\n", + " 'title': \"Wikidata's World.webm.en.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'fix',\n", + " 'text': '1\\n00:00:21,000 --> 00:00:25,000\\nEverything is connected.\\n\\n2\\n00:00:27,600 --> 00:00:32,000\\nKnowledge is to understand these connections.\\n\\n3\\n00:00:35,700 --> 00:00:44,000\\nImagine a world in which everyone can share in the sum of all knowledge.\\n\\n4\\n00:00:51,600 --> 00:00:55,000\\nDescribing how everything is connected,\\n\\n5\\n00:00:58,200 --> 00:01:01,000\\nin a way that can be translated,\\n\\n6\\n00:01:06,000 --> 00:01:07,000\\nshared,\\n\\n7\\n00:01:11,200 --> 00:01:13,000\\nand edited,\\n\\n8\\n00:01:15,500 --> 00:01:16,800\\nby everyone,\\n\\n9\\n00:01:18,000 --> 00:01:19,500\\nand everything.\\n\\n10\\n00:01:28,100 --> 00:01:29,100\\nThat\\n\\n11\\n00:01:30,200 --> 00:01:32,000\\nis Wikidata.\\n\\n12\\n00:01:34,000 --> 00:01:40,000\\nJoin us.',\n", + " 'bytes': 690,\n", + " 'sha1': 'sqtb7k9zwp7lnzi7s4swhg8ksiwr06o',\n", + " 'parent_id': 102869086,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 103633623,\n", + " 'timestamp': '2013-09-06T16:48:54Z',\n", + " 'user': {'id': 1794541, 'text': 'TianyinLee'},\n", + " 'page': {'id': 27913970,\n", + " 'title': \"Wikidata's World.webm.zh.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:21,000 --> 00:00:25,000\\n任何事物都是相关联的,\\n\\n2\\n00:00:27,600 --> 00:00:32,000\\n知识帮助我们了解这些关联。\\n\\n3\\n00:00:35,700 --> 00:00:44,000\\n想象一个人人都可以分享所有知识总和的世界,\\n\\n4\\n00:00:51,600 --> 00:00:55,000\\n描述事物之间的关联,\\n\\n5\\n00:00:58,200 --> 00:01:01,000\\n用一种可以被翻译、\\n\\n6\\n00:01:06,000 --> 00:01:07,000\\n分享\\n\\n7\\n00:01:11,200 --> 00:01:13,000\\n以及编辑的方式,\\n\\n8\\n00:01:15,500 --> 00:01:16,800\\n人人都可以,\\n\\n9\\n00:01:18,000 --> 00:01:19,500\\n任何事都可以。\\n\\n10\\n00:01:28,100 --> 00:01:29,100\\n这\\n\\n11\\n00:01:30,200 --> 00:01:32,000\\n就是维基数据。\\n\\n12\\n00:01:34,000 --> 00:01:40,000\\n加入我们。',\n", + " 'bytes': 709,\n", + " 'sha1': 'jaxyqiwy51sxvxpyab40vhs4kagn4qj',\n", + " 'parent_id': 103633275,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 103633593,\n", + " 'timestamp': '2013-09-06T16:48:31Z',\n", + " 'user': {'id': 1794541, 'text': 'TianyinLee'},\n", + " 'page': {'id': 27914949,\n", + " 'title': \"Wikidata's World.webm.zh-hans.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:21,000 --> 00:00:25,000\\n任何事物都是相关联的,\\n\\n2\\n00:00:27,600 --> 00:00:32,000\\n知识帮助我们了解这些关联。\\n\\n3\\n00:00:35,700 --> 00:00:44,000\\n想象一个人人都可以分享所有知识总和的世界,\\n\\n4\\n00:00:51,600 --> 00:00:55,000\\n描述事物之间的关联,\\n\\n5\\n00:00:58,200 --> 00:01:01,000\\n用一种可以被翻译、\\n\\n6\\n00:01:06,000 --> 00:01:07,000\\n分享\\n\\n7\\n00:01:11,200 --> 00:01:13,000\\n以及编辑的方式,\\n\\n8\\n00:01:15,500 --> 00:01:16,800\\n人人都可以,\\n\\n9\\n00:01:18,000 --> 00:01:19,500\\n任何事都可以。\\n\\n10\\n00:01:28,100 --> 00:01:29,100\\n这\\n\\n11\\n00:01:30,200 --> 00:01:32,000\\n就是维基数据。\\n\\n12\\n00:01:34,000 --> 00:01:40,000\\n加入我们。',\n", + " 'bytes': 709,\n", + " 'sha1': 'jaxyqiwy51sxvxpyab40vhs4kagn4qj',\n", + " 'parent_id': 103633378,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 103633611,\n", + " 'timestamp': '2013-09-06T16:48:42Z',\n", + " 'user': {'id': 1794541, 'text': 'TianyinLee'},\n", + " 'page': {'id': 27914952,\n", + " 'title': \"Wikidata's World.webm.zh-cn.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:21,000 --> 00:00:25,000\\n任何事物都是相关联的,\\n\\n2\\n00:00:27,600 --> 00:00:32,000\\n知识帮助我们了解这些关联。\\n\\n3\\n00:00:35,700 --> 00:00:44,000\\n想象一个人人都可以分享所有知识总和的世界,\\n\\n4\\n00:00:51,600 --> 00:00:55,000\\n描述事物之间的关联,\\n\\n5\\n00:00:58,200 --> 00:01:01,000\\n用一种可以被翻译、\\n\\n6\\n00:01:06,000 --> 00:01:07,000\\n分享\\n\\n7\\n00:01:11,200 --> 00:01:13,000\\n以及编辑的方式,\\n\\n8\\n00:01:15,500 --> 00:01:16,800\\n人人都可以,\\n\\n9\\n00:01:18,000 --> 00:01:19,500\\n任何事都可以。\\n\\n10\\n00:01:28,100 --> 00:01:29,100\\n这\\n\\n11\\n00:01:30,200 --> 00:01:32,000\\n就是维基数据。\\n\\n12\\n00:01:34,000 --> 00:01:40,000\\n加入我们。',\n", + " 'bytes': 709,\n", + " 'sha1': 'jaxyqiwy51sxvxpyab40vhs4kagn4qj',\n", + " 'parent_id': 103633404,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 106008478,\n", + " 'timestamp': '2013-10-01T12:04:35Z',\n", + " 'user': {'id': 59544, 'text': 'Yellowcard'},\n", + " 'page': {'id': 27934224,\n", + " 'title': 'Husam Azrak Telekom.WebM.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:03,000\\nAus unserer Sicht ist dieser Vorwurf haltlos,\\n\\n2\\n00:00:03,000 --> 00:00:09,000\\nweil wir jedem Anbieter, ob StartUp, mittelständisches Unternehmen oder großer Konzern\\n\\n3\\n00:00:09,000 --> 00:00:12,000\\ndie Möglichkeit bieten, sich mit uns an einen Tisch zu setzen,\\n\\n4\\n00:00:12,000 --> 00:00:17,000\\nund solche, ''ehm'', qualitätssichernden Dienste anzubieten.\\n\\n5\\n00:00:17,000 --> 00:00:19,000\\nDas machen wir diskriminierungsfrei.\\n\\n6\\n00:00:19,000 --> 00:00:22,000\\nÜbrigens tritt die Deutsche Telekom hier in Vorleistung.\\n\\n7\\n00:00:22,000 --> 00:00:24,000\\nDas kann sich also jeder leisten.\\n\\n8\\n00:00:24,000 --> 00:00:27,000\\nDas Zweite ist, dass wir das freie Internet für alle\\n\\n9\\n00:00:27,000 --> 00:00:31,000\\nselbstverständlich parallel weiter ausbauen, verbessern\\n\\n10\\n00:00:31,000 --> 00:00:34,000\\nin der Übertragungsqualität\\n\\n11\\n00:00:34,000 --> 00:00:36,000\\naber auch in dem Netzausbau.\\n\\n12\\n00:00:36,000 --> 00:00:40,000\\nWir wollen nämlich auch das Internet bis in die ländlichen Gebiete aufbauen.\\n\\n13\\n00:00:40,000 --> 00:00:43,000\\nDas ist also ein paralleler Strang.\\n\\n14\\n00:00:43,000 --> 00:00:45,000\\nHier ist von Diskriminierung überhaupt…\",\n", + " 'bytes': 1183,\n", + " 'sha1': 'rigd0a2jcodf2zavvrzogh9v4djdg66',\n", + " 'parent_id': 102907544,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " ...]" + ] + }, + "execution_count": 106, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "previous_json" + ] + }, + { + "cell_type": "code", + "execution_count": 82, + "id": "3c9b59d4", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1583:59:41\n" + ] + } + ], + "source": [ + "print(f\"{reformated_hour}:{reformated_minuts}:{reformated_secounds}\")" + ] + }, + { + "cell_type": "markdown", + "id": "8bbd6823", + "metadata": {}, + "source": [ + "# Language one transcription" + ] + }, + { + "cell_type": "code", + "execution_count": 87, + "id": "e70e3514", + "metadata": {}, + "outputs": [], + "source": [ + "def get_transcription_language(name):\n", + " w,_ = split_with_last_dot(name)\n", + " _,language = split_with_last_dot(w)\n", + " return language\n", + "\n", + "one_transcription_language = []\n", + "for i in videos.keys():\n", + " if len(videos[i])==1:\n", + " language = get_transcription_language(videos[i][0])\n", + " one_transcription_language.append(language)\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 103, + "id": "3747d734", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "<div>\n", + "<style scoped>\n", + " .dataframe tbody tr th:only-of-type {\n", + " vertical-align: middle;\n", + " }\n", + "\n", + " .dataframe tbody tr th {\n", + " vertical-align: top;\n", + " }\n", + "\n", + " .dataframe thead th {\n", + " text-align: right;\n", + " }\n", + "</style>\n", + "<table border=\"1\" class=\"dataframe\">\n", + " <thead>\n", + " <tr style=\"text-align: right;\">\n", + " <th></th>\n", + " <th>Language</th>\n", + " <th>Videos_amount</th>\n", + " </tr>\n", + " </thead>\n", + " <tbody>\n", + " <tr>\n", + " <th>0</th>\n", + " <td>en</td>\n", + " <td>4851</td>\n", + " </tr>\n", + " <tr>\n", + " <th>16</th>\n", + " <td>de</td>\n", + " <td>435</td>\n", + " </tr>\n", + " <tr>\n", + " <th>14</th>\n", + " <td>ru</td>\n", + " <td>225</td>\n", + " </tr>\n", + " <tr>\n", + " <th>5</th>\n", + " <td>nl</td>\n", + " <td>213</td>\n", + " </tr>\n", + " <tr>\n", + " <th>18</th>\n", + " <td>ar</td>\n", + " <td>185</td>\n", + " </tr>\n", + " <tr>\n", + " <th>8</th>\n", + " <td>fr</td>\n", + " <td>115</td>\n", + " </tr>\n", + " <tr>\n", + " <th>26</th>\n", + " <td>es</td>\n", + " <td>98</td>\n", + " </tr>\n", + " <tr>\n", + " <th>24</th>\n", + " <td>pt-br</td>\n", + " <td>82</td>\n", + " </tr>\n", + " <tr>\n", + " <th>13</th>\n", + " <td>eo</td>\n", + " <td>45</td>\n", + " </tr>\n", + " <tr>\n", + " <th>12</th>\n", + " <td>sv</td>\n", + " <td>43</td>\n", + " </tr>\n", + " <tr>\n", + " <th>10</th>\n", + " <td>pl</td>\n", + " <td>40</td>\n", + " </tr>\n", + " <tr>\n", + " <th>22</th>\n", + " <td>or</td>\n", + " <td>35</td>\n", + " </tr>\n", + " <tr>\n", + " <th>1</th>\n", + " <td>it</td>\n", + " <td>26</td>\n", + " </tr>\n", + " <tr>\n", + " <th>23</th>\n", + " <td>tr</td>\n", + " <td>24</td>\n", + " </tr>\n", + " <tr>\n", + " <th>21</th>\n", + " <td>ko</td>\n", + " <td>21</td>\n", + " </tr>\n", + " <tr>\n", + " <th>9</th>\n", + " <td>ja</td>\n", + " <td>21</td>\n", + " </tr>\n", + " <tr>\n", + " <th>15</th>\n", + " <td>pt</td>\n", + " <td>21</td>\n", + " </tr>\n", + " <tr>\n", + " <th>29</th>\n", + " <td>ca</td>\n", + " <td>20</td>\n", + " </tr>\n", + " <tr>\n", + " <th>31</th>\n", + " <td>hi</td>\n", + " <td>13</td>\n", + " </tr>\n", + " <tr>\n", + " <th>7</th>\n", + " <td>en-gb</td>\n", + " <td>12</td>\n", + " </tr>\n", + " </tbody>\n", + "</table>\n", + "</div>" + ], + "text/plain": [ + " Language Videos_amount\n", + "0 en 4851\n", + "16 de 435\n", + "14 ru 225\n", + "5 nl 213\n", + "18 ar 185\n", + "8 fr 115\n", + "26 es 98\n", + "24 pt-br 82\n", + "13 eo 45\n", + "12 sv 43\n", + "10 pl 40\n", + "22 or 35\n", + "1 it 26\n", + "23 tr 24\n", + "21 ko 21\n", + "9 ja 21\n", + "15 pt 21\n", + "29 ca 20\n", + "31 hi 13\n", + "7 en-gb 12" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "c_1 = Counter(one_transcription_language)\n", + "df_1 = pd.DataFrame(c_1.items(), columns=['Language', 'Videos_amount']).sort_values(\"Videos_amount\", ascending=False)\n", + "display(df_1.head(20))\n" + ] + }, + { + "cell_type": "code", + "execution_count": 96, + "id": "52451da8", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "110" + ] + }, + "execution_count": 96, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(dict(c_1).keys())" + ] + }, + { + "cell_type": "markdown", + "id": "bf08f00e", + "metadata": {}, + "source": [ + "# Split audios " + ] + }, + { + "cell_type": "code", + "execution_count": 102, + "id": "5bf9bd3a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Collecting soundfile\n", + " Downloading soundfile-0.11.0-py2.py3-none-macosx_10_9_x86_64.macosx_11_0_x86_64.whl (1.2 MB)\n", + "\u001b[K |████████████████████████████████| 1.2 MB 1.1 MB/s eta 0:00:01\n", + "\u001b[?25hRequirement already satisfied: cffi>=1.0 in /Users/julianeusse/miniconda3/envs/factored/lib/python3.7/site-packages (from soundfile) (1.14.5)\n", + "Requirement already satisfied: pycparser in /Users/julianeusse/miniconda3/envs/factored/lib/python3.7/site-packages (from cffi>=1.0->soundfile) (2.20)\n", + "Installing collected packages: soundfile\n", + "Successfully installed soundfile-0.11.0\n" + ] + }, + { + "ename": "AttributeError", + "evalue": "'numpy.ndarray' object has no attribute 'max_possible_amplitude'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m<ipython-input-102-cdd1887132ff>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0mdata\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msamplerate\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0msf\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mread\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"loyalty.flac\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 6\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 7\u001b[0;31m \u001b[0maudio_chunks\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0msplit_on_silence\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdata\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmin_silence_len\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m500\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msilence_thresh\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m-\u001b[0m\u001b[0;36m40\u001b[0m \u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;32m~/miniconda3/envs/factored/lib/python3.7/site-packages/pydub/silence.py\u001b[0m in \u001b[0;36msplit_on_silence\u001b[0;34m(audio_segment, min_silence_len, silence_thresh, keep_silence, seek_step)\u001b[0m\n\u001b[1;32m 148\u001b[0m \u001b[0;34m[\u001b[0m \u001b[0mstart\u001b[0m \u001b[0;34m-\u001b[0m \u001b[0mkeep_silence\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mend\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0mkeep_silence\u001b[0m \u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 149\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0mstart\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mend\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 150\u001b[0;31m \u001b[0;32min\u001b[0m \u001b[0mdetect_nonsilent\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0maudio_segment\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmin_silence_len\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msilence_thresh\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mseek_step\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 151\u001b[0m ]\n\u001b[1;32m 152\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/miniconda3/envs/factored/lib/python3.7/site-packages/pydub/silence.py\u001b[0m in \u001b[0;36mdetect_nonsilent\u001b[0;34m(audio_segment, min_silence_len, silence_thresh, seek_step)\u001b[0m\n\u001b[1;32m 84\u001b[0m \u001b[0mseek_step\u001b[0m \u001b[0;34m-\u001b[0m \u001b[0mstep\u001b[0m \u001b[0msize\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0minterating\u001b[0m \u001b[0mover\u001b[0m \u001b[0mthe\u001b[0m \u001b[0msegment\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mms\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 85\u001b[0m \"\"\"\n\u001b[0;32m---> 86\u001b[0;31m \u001b[0msilent_ranges\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mdetect_silence\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0maudio_segment\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmin_silence_len\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msilence_thresh\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mseek_step\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 87\u001b[0m \u001b[0mlen_seg\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0maudio_segment\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 88\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/miniconda3/envs/factored/lib/python3.7/site-packages/pydub/silence.py\u001b[0m in \u001b[0;36mdetect_silence\u001b[0;34m(audio_segment, min_silence_len, silence_thresh, seek_step)\u001b[0m\n\u001b[1;32m 24\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 25\u001b[0m \u001b[0;31m# convert silence threshold to a float value (so we can compare it to rms)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 26\u001b[0;31m \u001b[0msilence_thresh\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mdb_to_float\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msilence_thresh\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m*\u001b[0m \u001b[0maudio_segment\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mmax_possible_amplitude\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 27\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 28\u001b[0m \u001b[0;31m# find silence and add start and end indicies to the to_cut list\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mAttributeError\u001b[0m: 'numpy.ndarray' object has no attribute 'max_possible_amplitude'" + ] + } + ], + "source": [ + "!pip install soundfile\n", + "from pydub.silence import split_on_silence\n", + "import soundfile as sf\n", + "\n", + "data, samplerate = sf.read(\"loyalty.flac\")\n", + "\n", + "audio_chunks = split_on_silence(data, min_silence_len=500, silence_thresh=-40 )\n" + ] + }, + { + "cell_type": "code", + "execution_count": 104, + "id": "337533ac", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[{'id': 96449667,\n", + " 'timestamp': '2013-05-18T13:43:46Z',\n", + " 'user': {'id': 2010648, 'text': 'TsamiW'},\n", + " 'page': {'id': 8368107,\n", + " 'title': 'Yochai Benkler - On Autonomy, Control and Cultural Experience.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:05,000\\nInterview with [[w:Yochai Benkler|Yochai Benkler]]\\n\\n1\\n00:00:06,080 --> 00:00:08,040\\nWhen I say user autonomy, what I\\'m talking about,\\n\\n2\\n00:00:08,040 --> 00:00:15,920\\nis at the simplest level the ability \\nof people to do more for themselves,\\n\\n3\\n00:00:15,920 --> 00:00:19,920\\nby themselves, \\nwithout having to ask anyone\\'s permission\\n\\n4\\n00:00:19,920 --> 00:00:27,800\\nand without having to submit to anyone\\'s\\n\\n5\\n00:00:27,800 --> 00:00:29,840\\ncontrol over what it is they are doing. \\n\\n6\\n00:00:30,280 --> 00:00:39,480\\nWhat happened in the [[w:Industrial_information_economy|industrial \\ninformation and cultural economy]]\\n\\n7\\n00:00:39,480 --> 00:00:49,480\\nwas that people shifted from being \\nrelatively free to use a limited range\\n\\n8\\n00:00:49,480 --> 00:00:55,440\\nof materials that they had in social settings \\nthat were open for conversation.\\n\\n9\\n00:00:55,440 --> 00:01:01,280\\nFamily friends, \\nrelatively small localities for the majority of people.\\n\\n10\\n00:01:01,480 --> 00:01:05,800\\nTo an industrial model of cultural production\\n\\n11\\n00:01:05,840 --> 00:01:08,480\\nwhere the materials were produced by \\n\\n12\\n00:01:08,480 --> 00:01:15,400\\nsome set of commercial [[w:Producer|professional producers]], \\nwho then control the experience \\n\\n13\\n00:01:15,400 --> 00:01:22,400\\nand located individuals at the passive \\nreceiving end of the cultural conversation\\n\\n14\\n00:01:22,600 --> 00:01:29,600\\nso that efforts to take these materials and remake them, \\n\\n15\\n00:01:29,600 --> 00:01:32,480\\nor efforts to participate as a cultural speaker,\\n\\n16\\n00:01:32,520 --> 00:01:37,640\\nby and large required permission.\\n\\n17\\n00:01:38,000 --> 00:01:45,200\\nWhat we\\'re seeing now is that \\nthrough a combination of technology,\\n\\n18\\n00:01:45,120 --> 00:01:52,040\\nboth digital processing and computation technology \\nand networking technology,\\n\\n19\\n00:01:52,520 --> 00:01:56,080\\npeople can take more of their cultural environment, \\n\\n20\\n00:01:56,520 --> 00:02:01,520\\nmore of the information environment, \\nmake it their own,\\n\\n21\\n00:02:01,520 --> 00:02:04,760\\nuse it as found materials \\nto put together their own expressions,\\n\\n22\\n00:02:04,760 --> 00:02:07,800\\ndo their own research, \\ncreate their own communications, \\n\\n23\\n00:02:07,800 --> 00:02:11,320\\ncreate their own communities, \\nwhen they need collaboration with others.\\n\\n24\\n00:02:11,520 --> 00:02:16,480\\nRather than relying on a \\nlimited set of existing institutions.\\n\\n25\\n00:02:17,000 --> 00:02:20,840\\nOr on a set of materials \\nthat they are [[w:Copyright|not allowed to use]]\\n\\n26\\n00:02:20,920 --> 00:02:25,760\\nwithout going and asking \\n\"please may I use this?\\n\\n27\\n00:02:25,760 --> 00:02:27,080\\nPlease may I create?\"\\n\\n28\\n00:02:27,200 --> 00:02:30,800\\nWhat happens when people can do more for and \\n\\n29\\n00:02:30,800 --> 00:02:35,040\\nby themselves is that the set of actors;\\n\\n30\\n00:02:35,600 --> 00:02:38,240\\nprimarily companies, \\nand in some places governments\\n\\n31\\n00:02:38,840 --> 00:02:44,880\\nthat control the experience - \\nthose whose permission was required, \\n\\n32\\n00:02:45,200 --> 00:02:47,440\\nare resisting this transistion because \\n\\n33\\n00:02:47,440 --> 00:02:49,720\\ncontrol is a good thing to get \\nif you can get it. \\n\\n34\\n00:02:49,800 --> 00:02:52,760\\nOr at least control is a good thing to have \\nif you can get it.\\n\\n35\\n00:02:54,360 --> 00:03:01,080\\nAnd what we\\'re seeing today \\nis a series of different kinds of campaigns,\\n\\n36\\n00:03:01,160 --> 00:03:04,240\\nSome of them quite self conscious,\\n\\n37\\n00:03:04,360 --> 00:03:08,480\\nI think for example, \\n[[w:Hollywood|Hollywood\\'s]] campaign to expand\\n\\n38\\n00:03:08,560 --> 00:03:13,640\\ntechnological constraint\\non use of cultural materials\\n\\n39\\n00:03:13,680 --> 00:03:16,400\\n[[w:Digital rights management|digital rights management]], [[w:Trusted_computing|trusted systems]],\\n\\n40\\n00:03:16,440 --> 00:03:18,840\\nis a self conscious campaign.\\n\\n41\\n00:03:18,880 --> 00:03:27,440\\nSome of it much less conscious \\nmuch more based on anxieties,\\n\\n42\\n00:03:27,440 --> 00:03:30,800\\nand speaking out anxieties. \\nSo for example \\n\\n43\\n00:03:30,800 --> 00:03:35,600\\nwhen you hear the persistent concerns \\nover Internet security,\\n\\n44\\n00:03:35,760 --> 00:03:39,560\\nand what will happen if people crack your system\\n\\n45\\n00:03:39,560 --> 00:03:43,120\\nwhen you hear the constant concerns about quality\\n\\n46\\n00:03:43,080 --> 00:03:44,760\\nand where will good quality come from?\\n\\n47\\n00:03:44,760 --> 00:03:51,120\\nand the error rate in [[w:wikipedia|wikipedia]], \\nthese are all much more subconscious expressions\\n\\n48\\n00:03:51,200 --> 00:03:55,320\\nof a fear that ends up being used as justification,\\n\\n49\\n00:03:55,520 --> 00:04:00,520\\nfor embracing the control system \\nthat is being displaced\\n\\n50\\n00:04:00,520 --> 00:04:04,320\\nbecause of the technological and social actions,\\n\\n51\\n00:04:04,520 --> 00:04:11,120\\nbecause of the technological characteristics \\nand the social practices, \\n\\n52\\n00:04:11,400 --> 00:04:17,160\\nthat are being adopted in widespread \\ncooperative networked practices. \\n\\n53\\n00:04:17,680 --> 00:04:25,040\\nSo we\\'re seeing sometimes legal moves to change,\\n\\n54\\n00:04:25,280 --> 00:04:30,640\\nand require legal control where \\npractically it\\'s no longer necessary. \\n\\n55\\n00:04:30,680 --> 00:04:36,640\\nSometimes we see... I wouldn\\'t call them propaganda,\\n\\n56\\n00:04:36,680 --> 00:04:41,600\\nbut I\\'d call them public debate and public enactment \\n\\n57\\n00:04:41,600 --> 00:04:47,400\\nof anxiety, in order to increase the perceived importance,\\n\\n58\\n00:04:47,400 --> 00:04:51,480\\nof the traditional controllers. \\nThe most important place where you see this is,\\n\\n59\\n00:04:51,480 --> 00:04:55,080\\nteachers tell students not to use Wikipedia.\\n\\n60\\n00:04:55,720 --> 00:05:02,040\\nBecause that use shakes up the sense that I\\'m a teacher,\\n\\n61\\n00:05:02,200 --> 00:05:06,120\\nI know exactly what the set of materials are \\nthat I have approved\\n\\n62\\n00:05:06,120 --> 00:05:07,720\\nand are capable of being approved.\\n\\n63\\n00:05:07,800 --> 00:05:13,160\\nI am used to seeing Kids, \\nappealing to authority\\n\\n64\\n00:05:13,200 --> 00:05:16,120\\nrather that cross referencing multiple resources.\\n\\n65\\n00:05:16,360 --> 00:05:20,280\\nI don\\'t want to teach them \\nthat they should see this as a source,\\n\\n66\\n00:05:20,680 --> 00:05:24,400\\nBut not as a source of authority, a source of insight,\\n\\n67\\n00:05:24,400 --> 00:05:28,920\\na potential move in a research that\\'s always sceptical. \\n\\n68\\n00:05:29,000 --> 00:05:34,400\\nOne of the things that has to happen \\nin the context of the radically decentralised system\\n\\n69\\n00:05:34,440 --> 00:05:38,480\\nIs that we all have to become [[w:Sceptical|sceptical]] readers, \\nall the time.\\n\\n70\\n00:05:38,480 --> 00:05:43,200\\nWhich is a fundamental change from \\nthe traditional cultural system \\n\\n71\\n00:05:43,200 --> 00:05:46,840\\nWhere we would talk. \\n\\'How do I know if it\\'s true? Well you\\'ve said it.\\'\\n\\n72\\n00:05:46,840 --> 00:05:50,960\\nWhere did they publish it? \\nAnd looking for indicia of authority\\n\\n73\\n00:05:51,000 --> 00:05:53,520\\nthat will tell me this is authority.\\n\\n74\\n00:05:53,880 --> 00:05:58,920\\nInstead I have to begin to develop new capabilities \\n\\n75\\n00:05:59,200 --> 00:06:04,720\\nof looking at five sources, \\nassigning them different levels of weight\\n\\n76\\n00:06:04,720 --> 00:06:08,920\\nand saying I have reasonable confidence \\nthat the correct answer is\\n\\n77\\n00:06:08,920 --> 00:06:15,400\\nx rather than y without really assigning \\nfull authority to any single site.\\n\\n78\\n00:06:15,400 --> 00:06:19,800\\nSo that\\'s another locus of control trying to,\\n\\n79\\n00:06:19,800 --> 00:06:24,720\\nget people to continue to hang on \\nto to this sense that you need\\n\\n80\\n00:06:24,720 --> 00:06:29,080\\nthe expert authority, \\nyou need the person whose is in charge,\\n\\n81\\n00:06:29,080 --> 00:06:33,600\\nto tell you what is good and what is not good. \\nwhat is high quality, what is low quality.\\n\\n82\\n00:06:33,600 --> 00:06:38,280\\nWhat is reliable information, \\nwhat is not reliable information.\\n\\n83\\n00:06:38,280 --> 00:06:42,240\\nAnd that\\'s another domain \\nwhere we see the controllers,\\n\\n84\\n00:06:42,280 --> 00:06:49,200\\nin this case I think less strategically,\\n\\n85\\n00:06:49,200 --> 00:06:53,400\\nthan in the context of the way that for example, \\nHollywood backs digital rights management. \\n\\n86\\n00:06:53,560 --> 00:07:02,760\\nI think it\\'s a cousin in terms of self preservation.\\n\\n87\\n00:07:03,200 --> 00:07:08,080\\nBut I think it\\'s also a public enactment \\nof deeply held beliefs\\n\\n88\\n00:07:08,080 --> 00:07:12,520\\nabout why it is, that the particular people, \\nthat play a particular role\\n\\n89\\n00:07:12,520 --> 00:07:16,280\\nof authoritative speakers, \\nin the older system\\n\\n90\\n00:07:16,280 --> 00:07:20,840\\ncontinue to believe in the values \\nthat made them authoritative, \\n\\n91\\n00:07:20,840 --> 00:07:25,120\\nand made their authority important. \\nAnd so that\\'s much more cultural resistance,\\n\\n92\\n00:07:25,120 --> 00:07:31,600\\nthan it is practical, \\nlegal or technical design resistance.\\n\\n93\\n00:07:31,680 --> 00:07:37,080\\nBut were seeing resistance from \\ndifferent kind of actors who played the role, \\n\\n94\\n00:07:37,080 --> 00:07:42,800\\nof controllers in the older models, \\ntrying to preserve \\n\\n95\\n00:07:42,800 --> 00:07:45,880\\ntheir relatively privileged position as controllers,\\n\\n96\\n00:07:45,920 --> 00:07:48,120\\nthrough different systems of constraint',\n", + " 'bytes': 9181,\n", + " 'sha1': '53h2nyr26yv2j21bxu4bt78vss8otxa',\n", + " 'parent_id': 84426100,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 613396739,\n", + " 'timestamp': '2021-12-12T08:54:36Z',\n", + " 'user': {'id': 2366229, 'text': 'Achim55'},\n", + " 'page': {'id': 8381413,\n", + " 'title': 'Elephants Dream.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/2601:3C5:100:2780:803B:DFF0:DCF5:69A5|2601:3C5:100:2780:803B:DFF0:DCF5:69A5]] ([[User talk:2601:3C5:100:2780:803B:DFF0:DCF5:69A5|talk]]) to last revision by Krinkle',\n", + " 'text': \"1\\n00:00:15,000 --> 00:00:17,951\\nAt the left we can see...\\n\\n2\\n00:00:18,166 --> 00:00:20,083\\nAt the right we can see the...\\n\\n3\\n00:00:20,119 --> 00:00:21,962\\n...the head-snarlers\\n\\n4\\n00:00:21,999 --> 00:00:24,368\\nEverything is safe.\\nPerfectly safe.\\n\\n5\\n00:00:24,582 --> 00:00:27,035\\nEmo?\\n\\n6\\n00:00:28,206 --> 00:00:29,996\\nWatch out!\\n\\n7\\n00:00:47,037 --> 00:00:48,494\\nAre you hurt?\\n\\n8\\n00:00:51,994 --> 00:00:53,949\\nI don't think so.\\nYou?\\n\\n9\\n00:00:55,160 --> 00:00:56,985\\nI'm Ok.\\n\\n10\\n00:00:57,118 --> 00:01:01,111\\nGet up.\\nEmo, it's not safe here.\\n\\n11\\n00:01:02,034 --> 00:01:03,573\\nLet's go.\\n\\n12\\n00:01:03,610 --> 00:01:05,114\\nWhat's next?\\n\\n13\\n00:01:05,200 --> 00:01:09,146\\nYou'll see!\\n\\n14\\n00:01:16,032 --> 00:01:18,022\\nEmo.\\nThis way.\\n\\n15\\n00:01:34,237 --> 00:01:35,481\\nFollow me!\\n\\n16\\n00:02:11,106 --> 00:02:12,480\\nHurry Emo!\\n\\n17\\n00:02:48,059 --> 00:02:49,930\\nYou're not paying attention!\\n\\n18\\n00:02:50,142 --> 00:02:54,052\\nI just want to answer the...\\n...phone.\\n\\n19\\n00:02:54,974 --> 00:02:57,972\\nEmo, look,\\nI mean listen.\\n\\n20\\n00:02:59,140 --> 00:03:02,008\\nYou have to learn to listen.\\n\\n21\\n00:03:03,140 --> 00:03:04,965\\nThis is not some game.\\n\\n22\\n00:03:05,056 --> 00:03:09,345\\nYou, I mean we,\\nwe could easily die out here.\\n\\n23\\n00:03:10,014 --> 00:03:13,959\\nListen,\\nlisten to the sounds of the machine.\\n\\n24\\n00:03:18,054 --> 00:03:20,009\\nListen to your breathing.\\n\\n25\\n00:04:27,001 --> 00:04:28,956\\nWell, don't you ever get tired of this?\\n\\n26\\n00:04:29,084 --> 00:04:30,909\\nTired?!?\\n\\n27\\n00:04:31,126 --> 00:04:34,491\\nEmo, the machine is like clockwork.\\n\\n28\\n00:04:35,083 --> 00:04:37,074\\nOne move out of place...\\n\\n29\\n00:04:37,166 --> 00:04:39,121\\n...and you're ground to a pulp.\\n\\n30\\n00:04:40,958 --> 00:04:42,004\\nBut isn't it -\\n\\n31\\n00:04:42,041 --> 00:04:46,034\\nPulp, Emo!\\nIs that what you want, pulp?\\n\\n32\\n00:04:47,040 --> 00:04:48,995\\nEmo, your goal in life...\\n\\n33\\n00:04:50,081 --> 00:04:51,953\\n...pulp?\\n\\n34\\n00:05:41,156 --> 00:05:43,028\\nEmo, close your eyes.\\n\\n35\\n00:05:44,156 --> 00:05:46,027\\nWhy?\\n- Now!\\n\\n36\\n00:05:51,155 --> 00:05:52,102\\nOk.\\n\\n37\\n00:05:53,113 --> 00:05:54,688\\nGood.\\n\\n38\\n00:05:59,070 --> 00:06:02,103\\nWhat do you see at your left side, Emo?\\n\\n39\\n00:06:04,028 --> 00:06:05,899\\nNothing.\\n- Really?\\n\\n40\\n00:06:06,027 --> 00:06:07,105\\nNo, nothing at all.\\n\\n41\\n00:06:07,944 --> 00:06:11,984\\nAnd at your right,\\nwhat do you see at your right side, Emo?\\n\\n42\\n00:06:13,151 --> 00:06:16,102\\nThe same Proog, exactly the same...\\n\\n43\\n00:06:16,942 --> 00:06:19,098\\n...nothing!\\n- Great.\\n\\n44\\n00:06:40,105 --> 00:06:42,724\\nListen Proog! Do you hear that!\\n\\n45\\n00:06:43,105 --> 00:06:44,894\\nCan we go here?\\n\\n46\\n00:06:44,979 --> 00:06:47,894\\nThere?\\nIt isn't safe, Emo.\\n\\n47\\n00:06:49,145 --> 00:06:52,013\\nBut...\\n- Trust me, it's not.\\n\\n48\\n00:06:53,020 --> 00:06:54,145\\nMaybe I could...\\n\\n49\\n00:06:54,181 --> 00:06:55,969\\nNo.\\n\\n50\\n00:06:57,102 --> 00:06:59,934\\nNO!\\n\\n51\\n00:07:00,144 --> 00:07:03,058\\nAny further questions, Emo?\\n\\n52\\n00:07:03,976 --> 00:07:05,090\\nNo.\\n\\n53\\n00:07:09,059 --> 00:07:10,089\\nEmo?\\n\\n54\\n00:07:11,142 --> 00:07:13,058\\nEmo, why...\\n\\n55\\n00:07:13,095 --> 00:07:14,022\\nEmo...\\n\\n56\\n00:07:14,058 --> 00:07:18,003\\n...why can't you see\\nthe beauty of this place?\\n\\n57\\n00:07:18,141 --> 00:07:20,048\\nThe way it works.\\n\\n58\\n00:07:20,140 --> 00:07:23,895\\nHow perfect it is.\\n\\n59\\n00:07:23,932 --> 00:07:26,964\\nNo, Proog, I don't see.\\n\\n60\\n00:07:27,056 --> 00:07:29,970\\nI don't see because there's nothing there.\\n\\n61\\n00:07:31,055 --> 00:07:34,965\\nAnd why should I trust my\\nlife to something that isn't there?\\n\\n62\\n00:07:35,055 --> 00:07:36,926\\nWell can you tell me that?\\n\\n63\\n00:07:37,054 --> 00:07:38,926\\nAnswer me!\\n\\n64\\n00:07:42,970 --> 00:07:44,000\\nProog...\\n\\n65\\n00:07:45,053 --> 00:07:46,985\\n...you're a sick man!\\n\\n66\\n00:07:47,022 --> 00:07:48,918\\nStay away from me!\\n\\n67\\n00:07:52,052 --> 00:07:54,884\\nNo! Emo! It's a trap!\\n\\n68\\n00:07:55,135 --> 00:07:56,931\\nHah, it's a trap.\\n\\n69\\n00:07:56,968 --> 00:08:01,043\\nAt the left side you can see\\nthe hanging gardens of Babylon!\\n\\n70\\n00:08:01,967 --> 00:08:03,957\\nHow's that for a trap?\\n\\n71\\n00:08:05,050 --> 00:08:06,922\\nNo, Emo.\\n\\n72\\n00:08:09,008 --> 00:08:12,088\\nAt the right side you can see...\\n...well guess what...\\n\\n73\\n00:08:12,924 --> 00:08:14,665\\n...the colossus of Rhodes!\\n\\n74\\n00:08:15,132 --> 00:08:16,053\\nNo!\\n\\n75\\n00:08:16,090 --> 00:08:21,919\\nThe colossus of Rhodes\\nand it is here just for you Proog.\\n\\n76\\n00:08:51,001 --> 00:08:52,923\\nIt is there...\\n\\n77\\n00:08:52,959 --> 00:08:56,040\\nI'm telling you,\\nEmo...\\n\\n78\\n00:08:57,000 --> 00:08:59,867\\n...it is.\",\n", + " 'bytes': 4468,\n", + " 'sha1': 'm32glzvsdh4e2w8sahg5xcnonwtpcmb',\n", + " 'parent_id': 613314558,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357442,\n", + " 'timestamp': '2021-11-09T10:08:57Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8381428,\n", + " 'title': 'Elephants Dream.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.pt.srt]] to [[TimedText:Elephants Dream.ogv.pt.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:10,000 --> 00:00:13,125\\nElefantes Sonham\\n\\n2\\n00:00:15,000 --> 00:00:18,000\\nÀ esquerda podemos ver...\\n\\n3\\n00:00:18,042 --> 00:00:20,000\\nÀ direita podemos ver o...\\n\\n4\\n00:00:20,042 --> 00:00:21,083\\n...o decapitador.\\n\\n5\\n00:00:22,000 --> 00:00:24,042\\nEstá tudo seguro...\\nMuito seguro...\\n\\n6\\n00:00:24,627 --> 00:00:25,627\\nEmo...\\n\\n7\\n00:00:26,000 --> 00:00:27,000\\nEmo?\\n\\n8\\n00:00:28,083 --> 00:00:30,000\\nCuidado!\\n\\n9\\n00:00:47,000 --> 00:00:48,000\\nmagoaste-te?\\n\\n10\\n00:00:51,083 --> 00:00:53,083\\nAcho que não...\\nE Tu?\\n\\n11\\n00:00:55,042 --> 00:00:57,000\\nEu estou bem.\\n\\n12\\n00:00:57,042 --> 00:01:01,042\\nLevanta-te, Emo.\\nNão estamos seguros, aqui.\\n\\n13\\n00:01:02,000 --> 00:01:03,042\\nAnda.\\n\\n14\\n00:01:03,042 --> 00:01:05,042\\nOnde vamos?\\n\\n15\\n00:01:05,083 --> 00:01:09,000\\nJá vais ver! Já vais ver!\\n\\n16\\n00:01:16,000 --> 00:01:18,000\\nEmo. Por aqui...\\n\\n17\\n00:01:34,083 --> 00:01:35,042\\nSegue-me!\\n\\n18\\n00:02:11,042 --> 00:02:12,042\\nAnda! Despacha-te Emo!\\n\\n19\\n00:02:48,000 --> 00:02:50,000\\nNão estás a prestar atenção!\\n\\n20\\n00:02:50,042 --> 00:02:54,042\\nSó quero, atender...\\n...o telefone.\\n\\n21\\n00:02:55,000 --> 00:02:58,000\\nEmo, olha! \\n...quer dizer, escuta!\\n\\n22\\n00:02:59,042 --> 00:03:02,000\\nTens que aprender a escutar.\\n\\n23\\n00:03:03,042 --> 00:03:05,000\\nIsto não é um jogo.\\n\\n24\\n00:03:06,000 --> 00:03:08,042\\nTu... isto é... nós, podemos facilmente morrer aqui.\\n\\n25\\n00:03:10,000 --> 00:03:14,000\\nEscuta, os sons da máquina.\\n\\n26\\n00:03:18,000 --> 00:03:20,042\\nEscuta a tua respiração.\\n\\n27\\n00:04:27,000 --> 00:04:29,000\\nNão estás farto disto?\\n\\n28\\n00:04:29,042 --> 00:04:31,000\\nFarto?!\\n\\n29\\n00:04:31,042 --> 00:04:34,042\\nEmo, a máquina é como as engrenagens de um relógio\\n\\n30\\n00:04:35,042 --> 00:04:37,042\\nQualquer movimento em falso e...\\n\\n31\\n00:04:37,083 --> 00:04:39,042\\n...ficará reduzido a pó.\\n\\n32\\n00:04:41,000 --> 00:04:42,000\\nMas não é...\\n\\n33\\n00:04:42,042 --> 00:04:46,042\\nPó, Emo! É isso que você quer, pó?\\n\\n34\\n00:04:48,000 --> 00:04:50,000\\nÉ esse o teu objetivo na vida?\\n\\n35\\n00:04:50,042 --> 00:04:52,000\\nPó?!\\n\\n36\\n00:05:41,083 --> 00:05:43,042\\nEmo, fecha os olhos.\\n\\n37\\n00:05:44,083 --> 00:05:46,042\\nPorquê?\\n- Agora!\\n\\n38\\n00:05:53,042 --> 00:05:56,000\\nBem.\\n\\n39\\n00:05:59,042 --> 00:06:02,042\\nO que vês à tua esquerda Emo?\\n\\n40\\n00:06:04,042 --> 00:06:06,000\\nNada.\\n- Nada?\\n\\n41\\n00:06:06,000 --> 00:06:07,083\\nMesmo nada...\\n\\n42\\n00:06:08,000 --> 00:06:12,042\\nE à tua direita?\\no que vês à tua direita Emo?\\n\\n43\\n00:06:13,083 --> 00:06:16,083\\nO mesmo Proog, exactamente o mesmo...\\n\\n44\\n00:06:17,000 --> 00:06:18,042\\nNada!\\n\\n45\\n00:06:40,042 --> 00:06:42,083\\nEscuta Proog! Ouve isto!\\n\\n46\\n00:06:43,042 --> 00:06:45,000\\nPodemos entrar ali?\\n\\n47\\n00:06:45,000 --> 00:06:48,000\\nAli? Não é seguro.\\n\\n48\\n00:06:49,083 --> 00:06:52,042\\nMas...\\n- Confia em mim, não é seguro.\\n\\n49\\n00:06:53,000 --> 00:06:54,042\\nTalvez eu pudesse...\\n\\n50\\n00:06:54,083 --> 00:06:56,000\\nNão.\\n\\n51\\n00:06:57,000 --> 00:06:58,000\\nMas...\\n\\n52\\n00:06:58,002 --> 00:07:00,000\\nNÃO!\\n\\n53\\n00:07:00,083 --> 00:07:03,042\\nMais alguma pergunta Emo?\\n\\n54\\n00:07:04,000 --> 00:07:05,083\\nNão.\\n\\n55\\n00:07:09,042 --> 00:07:10,083\\nEmo?\\n\\n56\\n00:07:11,083 --> 00:07:13,042\\nEmo, porquê...\\n\\n57\\n00:07:13,042 --> 00:07:14,042\\nEmo...\\n\\n58\\n00:07:14,042 --> 00:07:18,042\\n...porque é que não vês a beleza disto tudo?\\n\\n59\\n00:07:18,083 --> 00:07:20,042\\nA maneira como funciona.\\n\\n60\\n00:07:20,083 --> 00:07:24,000\\nComo é perfeito.\\n\\n61\\n00:07:24,000 --> 00:07:27,042\\nNão, Proog, não vejo.\\n\\n62\\n00:07:27,042 --> 00:07:30,000\\nNão vejo porque não existe.\\n\\n63\\n00:07:31,042 --> 00:07:35,000\\nE porque devo confiar a minha vida a algo que não existe?\\n\\n64\\n00:07:35,042 --> 00:07:37,000\\nPodes-me dizer porquê?!\\n\\n65\\n00:07:37,042 --> 00:07:39,000\\nResponde!\\n\\n66\\n00:07:43,000 --> 00:07:44,042\\nProog...\\n\\n67\\n00:07:45,042 --> 00:07:47,000\\nEstás doente!\\n\\n68\\n00:07:47,000 --> 00:07:49,000\\nFica bem longe de mim.\\n\\n69\\n00:07:52,042 --> 00:07:55,000\\nNão! Emo! É uma armadilha!\\n\\n70\\n00:07:55,083 --> 00:07:57,000\\nÉ uma armadilha...!\\n\\n71\\n00:07:57,000 --> 00:08:01,042\\nÀ esquerda podes ver os jardins suspensos da Babilónia!\\n\\n72\\n00:08:02,000 --> 00:08:04,000\\nQue tal isto como armadilha?\\n\\n73\\n00:08:05,042 --> 00:08:07,000\\nNão, Emo.\\n\\n74\\n00:08:09,042 --> 00:08:12,042\\nA direita podes ver...\\n...adivinha...\\n\\n75\\n00:08:13,000 --> 00:08:14,042\\n...o Colosso de Rhodes!\\n\\n76\\n00:08:15,083 --> 00:08:16,042\\nNão!\\n\\n77\\n00:08:16,042 --> 00:08:22,000\\nO Colosso de Rhodes...\\ne está aqui só para ti Proog!\\n\\n78\\n00:08:51,000 --> 00:08:53,000\\nEstá aqui...\\n\\n79\\n00:08:53,000 --> 00:08:55,042\\nEstou-te a dizer, Emo...\\n\\n80\\n00:08:57,000 --> 00:09:00,000\\n...está.',\n", + " 'bytes': 4563,\n", + " 'sha1': 'krrrra6jf4nshqpbvgofpwcpcvqj52r',\n", + " 'parent_id': 48223851,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357634,\n", + " 'timestamp': '2021-11-09T10:10:14Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8381449,\n", + " 'title': 'Elephants Dream.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.sv.srt]] to [[TimedText:Elephants Dream.ogv.sv.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,250\\nTill vänster kan vi se...\\nSer vi...\\n\\n2\\n00:00:18,708 --> 00:00:20,333\\nTill höger ser vi...\\n\\n3\\n00:00:20,417 --> 00:00:21,958\\n...huvudkaparna.\\n\\n4\\n00:00:22,000 --> 00:00:24,792\\nAllt är säkert,\\nalldeles ofarligt.\\n\\n5\\n00:00:24,917 --> 00:00:26,833\\nEmo?\\n\\n6\\n00:00:28,750 --> 00:00:30,167\\nSe upp!\\n\\n7\\n00:00:46,708 --> 00:00:48,750\\nÄr du skadad?\\n\\n8\\n00:00:51,875 --> 00:00:54,458\\nJag tror inte det...\\nÄr du?\\n\\n9\\n00:00:55,292 --> 00:00:57,333\\nJag är ok.\\n\\n10\\n00:00:57,542 --> 00:01:01,625\\nRes dig upp Emo.\\nDet är inte säkert här.\\n\\n11\\n00:01:02,208 --> 00:01:03,625\\nKom så går vi.\\n\\n12\\n00:01:03,708 --> 00:01:05,708\\nVad nu då?\\n\\n13\\n00:01:05,833 --> 00:01:07,833\\nDu får se...\\n\\n14\\n00:01:08,042 --> 00:01:10,417\\nDu får se.\\n\\n15\\n00:01:15,958 --> 00:01:18,375\\nEmo, den här vägen.\\n\\n16\\n00:01:34,417 --> 00:01:36,750\\nFölj efter mig!\\n\\n17\\n00:02:11,250 --> 00:02:13,250\\nSkynda dig, Emo!\\n\\n18\\n00:02:48,375 --> 00:02:50,583\\nDu är inte uppmärksam!\\n\\n19\\n00:02:50,708 --> 00:02:54,500\\nJag vill bara svara...\\n... i telefonen.\\n\\n20\\n00:02:54,500 --> 00:02:58,208\\nEmo, se här...\\nLyssna menar jag.\\n\\n21\\n00:02:59,708 --> 00:03:02,292\\nDu måste lära dig att lyssna.\\n\\n22\\n00:03:03,292 --> 00:03:05,208\\nDet här är ingen lek.\\n\\n23\\n00:03:05,250 --> 00:03:08,917\\nDu... Jag menar vi,\\nvi skulle kunna dö här ute.\\n\\n24\\n00:03:09,917 --> 00:03:11,417\\nLyssna...\\n\\n25\\n00:03:11,708 --> 00:03:14,833\\nLyssna på ljuden från maskinen.\\n\\n26\\n00:03:18,125 --> 00:03:21,417\\nLyssna på dina andetag.\\n\\n27\\n00:04:26,625 --> 00:04:29,250\\nTröttnar du aldrig på det här?\\n\\n28\\n00:04:29,542 --> 00:04:31,083\\nTröttnar!?\\n\\n29\\n00:04:31,208 --> 00:04:33,458\\nEmo, maskinen är som...\\n\\n30\\n00:04:33,458 --> 00:04:35,333\\nSom ett urverk.\\n\\n31\\n00:04:35,417 --> 00:04:37,167\\nEtt felsteg...\\n\\n32\\n00:04:37,208 --> 00:04:39,750\\n...och du blir krossad.\\n\\n33\\n00:04:41,042 --> 00:04:42,292\\nMen är det inte -\\n\\n34\\n00:04:42,292 --> 00:04:47,000\\nKrossad, Emo!\\nÄr det vad du vill bli? Krossad till mos?\\n\\n35\\n00:04:47,500 --> 00:04:50,542\\nEmo, är det ditt mål i livet?\\n\\n36\\n00:04:50,667 --> 00:04:53,250\\nAtt bli mos!?\\n\\n37\\n00:05:41,375 --> 00:05:43,458\\nEmo, blunda.\\n\\n38\\n00:05:44,375 --> 00:05:46,542\\nVarför då?\\n- Blunda!\\n\\n39\\n00:05:51,292 --> 00:05:55,042\\nOk.\\n- Bra.\\n\\n40\\n00:05:59,500 --> 00:06:02,750\\nVad ser du till vänster om dig Emo?\\n\\n41\\n00:06:04,125 --> 00:06:06,292\\nIngenting.\\n- Säker?\\n\\n42\\n00:06:06,333 --> 00:06:07,958\\nIngenting alls.\\n\\n43\\n00:06:08,042 --> 00:06:12,625\\nJaså, och till höger om dig...\\nVad ser du där, Emo?\\n\\n44\\n00:06:13,750 --> 00:06:15,583\\nSamma där Proog...\\n\\n45\\n00:06:15,583 --> 00:06:18,083\\nExakt samma där, ingenting!\\n\\n46\\n00:06:18,083 --> 00:06:19,667\\nPerfekt.\\n\\n47\\n00:06:40,500 --> 00:06:42,917\\nLyssna Proog! Hör du?\\n\\n48\\n00:06:43,500 --> 00:06:45,125\\nKan vi gå dit?\\n\\n49\\n00:06:45,208 --> 00:06:48,125\\nGå dit?\\nDet är inte tryggt.\\n\\n50\\n00:06:49,583 --> 00:06:52,583\\nMen, men...\\n- Tro mig, det inte säkert.\\n\\n51\\n00:06:53,000 --> 00:06:54,292\\nMen kanske om jag -\\n\\n52\\n00:06:54,292 --> 00:06:56,333\\nNej.\\n\\n53\\n00:06:57,208 --> 00:07:00,167\\nMen -\\n- Nej, NEJ!\\n\\n54\\n00:07:00,917 --> 00:07:03,792\\nNågra fler frågor Emo?\\n\\n55\\n00:07:04,250 --> 00:07:05,875\\nNej.\\n\\n56\\n00:07:09,542 --> 00:07:11,375\\nEmo?\\n- Ja?\\n\\n57\\n00:07:11,542 --> 00:07:15,667\\nEmo, varför...\\n\\n58\\n00:07:15,792 --> 00:07:18,583\\nVarför kan du inte se skönheten i det här?\\n\\n59\\n00:07:18,792 --> 00:07:21,708\\nHur det fungerar.\\n\\n60\\n00:07:21,833 --> 00:07:24,000\\nHur perfekt det är.\\n\\n61\\n00:07:24,083 --> 00:07:27,333\\nNej Proog, jag kan inte se det.\\n\\n62\\n00:07:27,333 --> 00:07:30,333\\nJag ser det inte, för det finns inget där.\\n\\n63\\n00:07:31,292 --> 00:07:35,333\\nOch varför skulle jag lägga mitt liv\\ni händerna på något som inte finns?\\n\\n64\\n00:07:35,333 --> 00:07:37,083\\nKan du berätta det för mig?\\n- Emo...\\n\\n65\\n00:07:37,083 --> 00:07:39,167\\nSvara mig!\\n\\n66\\n00:07:43,500 --> 00:07:45,208\\nProog...\\n\\n67\\n00:07:45,208 --> 00:07:47,083\\nDu är inte frisk!\\n\\n68\\n00:07:47,167 --> 00:07:49,292\\nHåll dig borta från mig!\\n\\n69\\n00:07:52,292 --> 00:07:55,083\\nNej! Emo!\\nDet är en fälla!\\n\\n70\\n00:07:55,375 --> 00:07:57,208\\nHeh, det är en fälla.\\n\\n71\\n00:07:57,208 --> 00:08:01,708\\nPå vänster sida ser vi...\\nBabylons hängande trädgårdar!\\n\\n72\\n00:08:01,958 --> 00:08:04,000\\nVad sägs om den fällan?\\n\\n73\\n00:08:05,458 --> 00:08:07,333\\nNej, Emo.\\n\\n74\\n00:08:08,917 --> 00:08:12,667\\nTill höger ser vi...\\nGissa!\\n\\n75\\n00:08:12,750 --> 00:08:15,125\\nRhodos koloss!\\n\\n76\\n00:08:15,375 --> 00:08:16,500\\nNej!\\n\\n77\\n00:08:16,500 --> 00:08:20,250\\nKolossen på Rhodos!\\nOch den är här för din skull, Proog...\\n\\n78\\n00:08:20,250 --> 00:08:23,250\\nBara för din skull.\\n\\n79\\n00:08:50,917 --> 00:08:53,250\\nDen är där...\\n\\n80\\n00:08:53,625 --> 00:08:56,417\\nTro mig.\\nEmo...\\n\\n81\\n00:08:57,000 --> 00:09:00,000\\nDet är den.\\nDet är den...',\n", + " 'bytes': 4734,\n", + " 'sha1': 're6ev9mnaupiajbeg6cf2vf1ytcrins',\n", + " 'parent_id': 45478459,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 259871584,\n", + " 'timestamp': '2017-09-26T09:15:04Z',\n", + " 'user': {'id': 2330002, 'text': 'KiwiNeko14'},\n", + " 'page': {'id': 8466366,\n", + " 'title': 'Folgers.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"0\\n00:00:01,707 --> 00:00:04,154\\nHarold is the coffee alright?\\n\\n1\\n00:00:04,169 --> 00:00:05,185\\nuh-uhmmm\\n\\n2\\n00:00:05,005 --> 00:00:07,785\\nYou mean it's as bad as yesterday?\\n\\n3\\n00:00:07,785 --> 00:00:08,962\\nuh-huh\\n\\n4\\n00:00:09 --> 00:00:10,169\\nNo improvement at all?\\n\\n5\\n00:00:10,446 --> 00:00:11,823\\nuh-uh\\n\\n6\\n00:00:12,002 --> 00:00:13,700\\nHarold don't just shake your head,\\n\\n7\\n00:00:13,702 --> 00:00:17\\nyou have to tell me what's wrong with the coffee\\n\\n8\\n00:00:17,538 --> 00:00:19\\nBad taste\\n\\n9\\n00:00:19,477 --> 00:00:21,002\\nNow what am I going to do?\\n\\n10\\n00:00:21,623 --> 00:00:23,005\\nSo Mary, Hi\\n\\n11\\n00:00:23,007 --> 00:00:25\\nHello Jane\\n\\n12\\n00:00:25,038 --> 00:00:29,246\\nHelp me out will ya, Harold hates my coffee. What kind do you use?\\n\\n13\\n00:00:30 --> 00:00:31\\nInstant Folgers\\n\\n14\\n00:00:31 --> 00:00:32\\nInstant Folgers?\\n\\n15\\n00:00:32,002 --> 00:00:34\\nTastes good as fresh perked\\n\\n16\\n00:00:34,002 --> 00:00:37,008\\nGood as fresh perked. I'll try it.\\n\\n17\\n00:00:38,725 --> 00:00:42,008\\nJane this coffee is delicious, you know that?\\n\\n18\\n00:00:42,002 --> 00:00:42,084\\num-hmmm\\n\\n19\\n00:00:43,464 --> 00:00:46\\nIts not the same kind we have been using is it?\\n\\n20\\n00:00:46,002 --> 00:00:46,502\\num-uhmmm\\n\\n21\\n00:00:47,148 --> 00:00:51,433\\nDon't just shake your head, Explain why the coffee is so good.\\n\\n22\\n00:00:52,664 --> 00:00:54,005\\nGood taste\\n\\n23\\n00:00:55,006 --> 00:00:59\\nTastes good as fresh-perked, Instant Folgers\",\n", + " 'bytes': 1407,\n", + " 'sha1': 'gdlpshcepiswn6xkbippkyu6zuont64',\n", + " 'parent_id': 203829051,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 300912672,\n", + " 'timestamp': '2018-05-13T07:58:44Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8701591,\n", + " 'title': 'Krazy Kat Bugologist 1916 silent.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '84user moved page [[TimedText:Krazy Kat Bugolist 1916 silent.ogv.en.srt]] to [[TimedText:Krazy Kat Bugologist 1916 silent.ogv.en.srt]]: media file was renamed and timed text file name must match to function',\n", + " 'text': \"1\\n00:00:22,000 --> 00:00:27,000\\nI'll teach thee Bugology, Ignatzes\\n\\n2 \\n00:00:40,000 --> 00:00:43,000 \\nSomething tells me\\n\\n3 \\n00:00:58,000 --> 00:01:04,000 \\nLook, Ignatz, a sleeping bee\\n\\n4\\n00:01:04,000 --> 00:01:08,000 \\nA dead bee y'mean\\n\\n5\\n00:01:10,000 --> 00:01:14,000 \\nHe must be cold\\n\\n6\\n00:01:22,000 --> 00:01:25,000 \\nPoor l'il bee\\n\\n7\\n00:01:25,000 --> 00:01:31,000 \\nAh, he's happy, he's in bee heaven\\n\\n8\\n00:01:51,000 --> 00:01:56,000 \\nY'see Ignatz, y'was wrong\\n\\n9\\n00:01:58,000 --> 00:02:01,000 \\nI WAS.\\n\\n10\\n00:02:45,000 --> 00:02:49,000 \\nLeave it to me\",\n", + " 'bytes': 554,\n", + " 'sha1': 'kiepnuj4cjzni30q4k42fhede6znewb',\n", + " 'parent_id': 32876259,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 300913469,\n", + " 'timestamp': '2018-05-13T08:05:33Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8704057,\n", + " 'title': 'Krazy Kat Bugologist 1916 silent.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '84user moved page [[TimedText:Krazy Kat Bugolist 1916 silent.ogv.de.srt]] to [[TimedText:Krazy Kat Bugologist 1916 silent.ogv.de.srt]]: wegen Media File Umbenennung',\n", + " 'text': '1\\n00:00:22,000 --> 00:00:27,000\\nIgnatzes, ich werde Dich Bugology unterrichten\\n\\n2 \\n00:00:40,000 --> 00:00:43,000 \\nEtwas scheint\\n\\n3 \\n00:00:58,000 --> 00:01:04,000 \\nGuck mal Ignatz, eine schlafende Biene\\n\\n4\\n00:01:04,000 --> 00:01:08,000 \\nEine tote Biene meinst Du\\n\\n5\\n00:01:10,000 --> 00:01:14,000 \\nEr muss sich kalt fühlen\\n\\n6\\n00:01:22,000 --> 00:01:25,000 \\nArme kleine Biene\\n\\n7\\n00:01:25,000 --> 00:01:31,000 \\nÄh, er ist glücklich, er steht im Bienehimmel\\n\\n8\\n00:01:51,000 --> 00:01:56,000 \\nNa Ignatz, Du hast sich geirrt\\n\\n9\\n00:01:58,000 --> 00:02:01,000 \\nICH HATTE\\n\\n10\\n00:02:45,000 --> 00:02:49,000 \\nLaß mich nur machen',\n", + " 'bytes': 620,\n", + " 'sha1': 'b8v62kg7st71ah4kzwez45qr9mdkl9t',\n", + " 'parent_id': 32888107,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33072972,\n", + " 'timestamp': '2009-12-15T03:18:01Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8750780,\n", + " 'title': 'Elephants Dream 1024.avi.to63.5w720vbr1760soft-targetabr112.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Elephants Dream 1024.avi.to63.5w720vbr1760soft-targetabr112.ogv]] English subtitles',\n", + " 'text': \"1\\n00:00:15,000 --> 00:00:17,951\\nAt the left we can see...\\n\\n2\\n00:00:18,166 --> 00:00:20,083\\nAt the right we can see the...\\n\\n3\\n00:00:20,119 --> 00:00:21,962\\n...the head-snarlers\\n\\n4\\n00:00:21,999 --> 00:00:24,368\\nEverything is safe.\\nPerfectly safe.\\n\\n5\\n00:00:24,582 --> 00:00:27,035\\nEmo?\\n\\n6\\n00:00:28,206 --> 00:00:29,996\\nWatch out!\\n\\n7\\n00:00:47,037 --> 00:00:48,494\\nAre you hurt?\\n\\n8\\n00:00:51,994 --> 00:00:53,949\\nI don't think so.\\nYou?\\n\\n9\\n00:00:55,160 --> 00:00:56,985\\nI'm Ok.\\n\\n10\\n00:00:57,118 --> 00:01:01,111\\nGet up.\\nEmo, it's not safe here.\\n\\n11\\n00:01:02,034 --> 00:01:03,573\\nLet's go.\\n\\n12\\n00:01:03,610 --> 00:01:05,114\\nWhat's next?\",\n", + " 'bytes': 628,\n", + " 'sha1': 'j0tkzxu0okjbngteehrfz5zp7x94zf8',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33073038,\n", + " 'timestamp': '2009-12-15T03:22:53Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8750804,\n", + " 'title': 'Elephants Dream 1024.avi.to63.5w720vbr1760soft-targetabr112.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Elephants Dream 1024.avi.to63.5w720vbr1760soft-targetabr112.ogv]] Svenska undertext',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,250\\nTill vänster kan vi se...|Ser vi...\\n\\n2\\n00:00:18,708 --> 00:00:20,333\\nTill höger ser vi...\\n\\n3\\n00:00:20,417 --> 00:00:21,958\\n...huvudkaparna.\\n\\n4\\n00:00:22,000 --> 00:00:24,792\\nAllt är säkert,|alldeles ofarligt.\\n\\n5\\n00:00:24,917 --> 00:00:26,833\\nEmo?\\n\\n6\\n00:00:28,750 --> 00:00:30,167\\nSe upp!\\n\\n7\\n00:00:46,708 --> 00:00:48,750\\nÄr du skadad?\\n\\n8\\n00:00:51,875 --> 00:00:54,458\\nJag tror inte det...|Är du?\\n\\n9\\n00:00:55,292 --> 00:00:57,333\\nJag är ok.\\n\\n10\\n00:00:57,542 --> 00:01:01,625\\nRes dig upp Emo.|Det är inte säkert här.\\n\\n11\\n00:01:02,208 --> 00:01:03,625\\nKom så går vi.\\n\\n12\\n00:01:03,708 --> 00:01:05,708\\nVad nu då?\\n\\n13\\n00:01:05,833 --> 00:01:07,833\\nDu får se...',\n", + " 'bytes': 700,\n", + " 'sha1': '42rhm6ajjrmymgqezrewswjbwn9lpeh',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33073523,\n", + " 'timestamp': '2009-12-15T04:01:33Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8750948,\n", + " 'title': 'Elephants Dream 1024.avi.w400vbr180abr48c2two-pass.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Elephants Dream 1024.avi.w400vbr180abr48c2two-pass.ogv]] English subtitles',\n", + " 'text': \"1\\n00:00:15,000 --> 00:00:17,951\\nAt the left we can see...\\n\\n2\\n00:00:18,166 --> 00:00:20,083\\nAt the right we can see the...\\n\\n3\\n00:00:20,119 --> 00:00:21,962\\n...the head-snarlers\\n\\n4\\n00:00:21,999 --> 00:00:24,368\\nEverything is safe.\\nPerfectly safe.\\n\\n5\\n00:00:24,582 --> 00:00:27,035\\nEmo?\\n\\n6\\n00:00:28,206 --> 00:00:29,996\\nWatch out!\\n\\n7\\n00:00:47,037 --> 00:00:48,494\\nAre you hurt?\\n\\n8\\n00:00:51,994 --> 00:00:53,949\\nI don't think so.\\nYou?\\n\\n9\\n00:00:55,160 --> 00:00:56,985\\nI'm Ok.\\n\\n10\\n00:00:57,118 --> 00:01:01,111\\nGet up.\\nEmo, it's not safe here.\\n\\n11\\n00:01:02,034 --> 00:01:03,573\\nLet's go.\\n\\n12\\n00:01:03,610 --> 00:01:05,114\\nWhat's next?\\n\\n13\\n00:01:05,200 --> 00:01:09,146\\nYou'll see!\\n\\n14\\n00:01:16,032 --> 00:01:18,022\\nEmo.\\nThis way.\\n\\n15\\n00:01:34,237 --> 00:01:35,481\\nFollow me!\\n\\n16\\n00:02:11,106 --> 00:02:12,480\\nHurry Emo!\\n\\n17\\n00:02:48,059 --> 00:02:49,930\\nYou're not paying attention!\\n\\n18\\n00:02:50,142 --> 00:02:54,052\\nI just want to answer the...\\n...phone.\\n\\n19\\n00:02:54,974 --> 00:02:57,972\\nEmo, look,\\nI mean listen.\\n\\n20\\n00:02:59,140 --> 00:03:02,008\\nYou have to learn to listen.\\n\\n21\\n00:03:03,140 --> 00:03:04,965\\nThis is not some game.\\n\\n22\\n00:03:05,056 --> 00:03:09,345\\nYou, I mean we,\\nwe could easily die out here.\\n\\n23\\n00:03:10,014 --> 00:03:13,959\\nListen,\\nlisten to the sounds of the machine.\\n\\n24\\n00:03:18,054 --> 00:03:20,009\\nListen to your breathing.\\n\\n25\\n00:04:27,001 --> 00:04:28,956\\nWell, don't you ever get tired of this?\\n\\n26\\n00:04:29,084 --> 00:04:30,909\\nTired?!?\\n\\n27\\n00:04:31,126 --> 00:04:34,491\\nEmo, the machine is like clockwork.\\n\\n28\\n00:04:35,083 --> 00:04:37,074\\nOne move out of place...\\n\\n29\\n00:04:37,166 --> 00:04:39,121\\n...and you're ground to a pulp.\\n\\n30\\n00:04:40,958 --> 00:04:42,004\\nBut isn't it -\\n\\n31\\n00:04:42,041 --> 00:04:46,034\\nPulp, Emo!\\nIs that what you want, pulp?\\n\\n32\\n00:04:47,040 --> 00:04:48,995\\nEmo, your goal in life...\\n\\n33\\n00:04:50,081 --> 00:04:51,953\\n...pulp?\\n\\n34\\n00:05:41,156 --> 00:05:43,028\\nEmo, close your eyes.\\n\\n35\\n00:05:44,156 --> 00:05:46,027\\nWhy?\\n- Now!\\n\\n36\\n00:05:51,155 --> 00:05:52,102\\nOk.\\n\\n37\\n00:05:53,113 --> 00:05:54,688\\nGood.\\n\\n38\\n00:05:59,070 --> 00:06:02,103\\nWhat do you see at your left side, Emo?\\n\\n39\\n00:06:04,028 --> 00:06:05,899\\nNothing.\\n- Really?\\n\\n40\\n00:06:06,027 --> 00:06:07,105\\nNo, nothing at all.\\n\\n41\\n00:06:07,944 --> 00:06:11,984\\nAnd at your right,\\nwhat do you see at your right side, Emo?\\n\\n42\\n00:06:13,151 --> 00:06:16,102\\nThe same Proog, exactly the same...\\n\\n43\\n00:06:16,942 --> 00:06:19,098\\n...nothing!\\n- Great.\\n\\n44\\n00:06:40,105 --> 00:06:42,724\\nListen Proog! Do you hear that!\\n\\n45\\n00:06:43,105 --> 00:06:44,894\\nCan we go here?\\n\\n46\\n00:06:44,979 --> 00:06:47,894\\nThere?\\nIt isn't safe, Emo.\\n\\n47\\n00:06:49,145 --> 00:06:52,013\\nBut...\\n- Trust me, it's not.\\n\\n48\\n00:06:53,020 --> 00:06:54,145\\nMaybe I could...\\n\\n49\\n00:06:54,181 --> 00:06:55,969\\nNo.\\n\\n50\\n00:06:57,102 --> 00:06:59,934\\nNO!\\n\\n51\\n00:07:00,144 --> 00:07:03,058\\nAny further questions, Emo?\\n\\n52\\n00:07:03,976 --> 00:07:05,090\\nNo.\\n\\n53\\n00:07:09,059 --> 00:07:10,089\\nEmo?\\n\\n54\\n00:07:11,142 --> 00:07:13,058\\nEmo, why...\\n\\n55\\n00:07:13,095 --> 00:07:14,022\\nEmo...\\n\\n56\\n00:07:14,058 --> 00:07:18,003\\n...why can't you see\\nthe beauty of this place?\\n\\n57\\n00:07:18,141 --> 00:07:20,048\\nThe way it works.\\n\\n58\\n00:07:20,140 --> 00:07:23,895\\nHow perfect it is.\\n\\n59\\n00:07:23,932 --> 00:07:26,964\\nNo, Proog, I don't see.\\n\\n60\\n00:07:27,056 --> 00:07:29,970\\nI don't see because there's nothing there.\\n\\n61\\n00:07:31,055 --> 00:07:34,965\\nAnd why should I trust my\\nlife to something that isn't there?\\n\\n62\\n00:07:35,055 --> 00:07:36,926\\nWell can you tell me that?\\n\\n63\\n00:07:37,054 --> 00:07:38,926\\nAnswer me!\\n\\n64\\n00:07:42,970 --> 00:07:44,000\\nProog...\\n\\n65\\n00:07:45,053 --> 00:07:46,985\\n...you're a sick man!\\n\\n66\\n00:07:47,022 --> 00:07:48,918\\nStay away from me!\\n\\n67\\n00:07:52,052 --> 00:07:54,884\\nNo! Emo! It's a trap!\\n\\n68\\n00:07:55,135 --> 00:07:56,931\\nHah, it's a trap.\\n\\n69\\n00:07:56,968 --> 00:08:01,043\\nAt the left side you can see\\nthe hanging gardens of Babylon!\\n\\n70\\n00:08:01,967 --> 00:08:03,957\\nHow's that for a trap?\\n\\n71\\n00:08:05,050 --> 00:08:06,922\\nNo, Emo.\\n\\n72\\n00:08:09,008 --> 00:08:12,088\\nAt the right side you can see...\\n...well guess what...\\n\\n73\\n00:08:12,924 --> 00:08:14,665\\n...the colossus of Rhodes!\\n\\n74\\n00:08:15,132 --> 00:08:16,053\\nNo!\\n\\n75\\n00:08:16,090 --> 00:08:21,919\\nThe colossus of Rhodes\\nand it is here just for you Proog.\\n\\n76\\n00:08:51,001 --> 00:08:52,923\\nIt is there...\\n\\n77\\n00:08:52,959 --> 00:08:56,040\\nI'm telling you,\\nEmo...\\n\\n78\\n00:08:57,000 --> 00:08:59,867\\n...it is.\",\n", + " 'bytes': 4468,\n", + " 'sha1': 'm32glzvsdh4e2w8sahg5xcnonwtpcmb',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33073537,\n", + " 'timestamp': '2009-12-15T04:02:58Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8750956,\n", + " 'title': 'Elephants Dream 1024.avi.w400vbr180abr48c2two-pass.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Elephants Dream 1024.avi.w400vbr180abr48c2two-pass.ogv]] Svenska undertext',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,250\\nTill vänster kan vi se...|Ser vi...\\n\\n2\\n00:00:18,708 --> 00:00:20,333\\nTill höger ser vi...\\n\\n3\\n00:00:20,417 --> 00:00:21,958\\n...huvudkaparna.\\n\\n4\\n00:00:22,000 --> 00:00:24,792\\nAllt är säkert,|alldeles ofarligt.\\n\\n5\\n00:00:24,917 --> 00:00:26,833\\nEmo?\\n\\n6\\n00:00:28,750 --> 00:00:30,167\\nSe upp!\\n\\n7\\n00:00:46,708 --> 00:00:48,750\\nÄr du skadad?\\n\\n8\\n00:00:51,875 --> 00:00:54,458\\nJag tror inte det...|Är du?\\n\\n9\\n00:00:55,292 --> 00:00:57,333\\nJag är ok.\\n\\n10\\n00:00:57,542 --> 00:01:01,625\\nRes dig upp Emo.|Det är inte säkert här.\\n\\n11\\n00:01:02,208 --> 00:01:03,625\\nKom så går vi.\\n\\n12\\n00:01:03,708 --> 00:01:05,708\\nVad nu då?\\n\\n13\\n00:01:05,833 --> 00:01:07,833\\nDu får se...\\n\\n14\\n00:01:08,042 --> 00:01:10,417\\nDu får se.\\n\\n15\\n00:01:15,958 --> 00:01:18,375\\nEmo, den här vägen.\\n\\n16\\n00:01:34,417 --> 00:01:36,750\\nFölj efter mig!\\n\\n17\\n00:02:11,250 --> 00:02:13,250\\nSkynda dig, Emo!\\n\\n18\\n00:02:48,375 --> 00:02:50,583\\nDu är inte uppmärksam!\\n\\n19\\n00:02:50,708 --> 00:02:54,500\\nJag vill bara svara...|... i telefonen.\\n\\n20\\n00:02:54,500 --> 00:02:58,208\\nEmo, se här...|Lyssna menar jag.\\n\\n21\\n00:02:59,708 --> 00:03:02,292\\nDu måste lära dig att lyssna.\\n\\n22\\n00:03:03,292 --> 00:03:05,208\\nDet här är ingen lek.\\n\\n23\\n00:03:05,250 --> 00:03:08,917\\nDu... Jag menar vi,|vi skulle kunna dö här ute.\\n\\n24\\n00:03:09,917 --> 00:03:11,417\\nLyssna...\\n\\n25\\n00:03:11,708 --> 00:03:14,833\\nLyssna på ljuden från maskinen.\\n\\n26\\n00:03:18,125 --> 00:03:21,417\\nLyssna på dina andetag.\\n\\n27\\n00:04:26,625 --> 00:04:29,250\\nTröttnar du aldrig på det här?\\n\\n28\\n00:04:29,542 --> 00:04:31,083\\nTröttnar!?\\n\\n29\\n00:04:31,208 --> 00:04:33,458\\nEmo, maskinen är som...\\n\\n30\\n00:04:33,458 --> 00:04:35,333\\nSom ett urverk.\\n\\n31\\n00:04:35,417 --> 00:04:37,167\\nEtt felsteg...\\n\\n32\\n00:04:37,208 --> 00:04:39,750\\n...och du blir krossad.\\n\\n33\\n00:04:41,042 --> 00:04:42,292\\nMen är det inte -\\n\\n34\\n00:04:42,292 --> 00:04:47,000\\nKrossad, Emo!|Är det vad du vill bli? Krossad till mos?\\n\\n35\\n00:04:47,500 --> 00:04:50,542\\nEmo, är det ditt mål i livet?\\n\\n36\\n00:04:50,667 --> 00:04:53,250\\nAtt bli mos!?\\n\\n37\\n00:05:41,375 --> 00:05:43,458\\nEmo, blunda.\\n\\n38\\n00:05:44,375 --> 00:05:46,542\\nVarför då?|- Blunda!\\n\\n39\\n00:05:51,292 --> 00:05:55,042\\nOk.|- Bra.\\n\\n40\\n00:05:59,500 --> 00:06:02,750\\nVad ser du till vänster om dig Emo?\\n\\n41\\n00:06:04,125 --> 00:06:06,292\\nIngenting.|- Säker?\\n\\n42\\n00:06:06,333 --> 00:06:07,958\\nIngenting alls.\\n\\n43\\n00:06:08,042 --> 00:06:12,625\\nJaså, och till höger om dig...|Vad ser du där, Emo?\\n\\n44\\n00:06:13,750 --> 00:06:15,583\\nSamma där Proog...\\n\\n45\\n00:06:15,583 --> 00:06:18,083\\nExakt samma där, ingenting!\\n\\n46\\n00:06:18,083 --> 00:06:19,667\\nPerfekt.\\n\\n47\\n00:06:40,500 --> 00:06:42,917\\nLyssna Proog! Hör du?\\n\\n48\\n00:06:43,500 --> 00:06:45,125\\nKan vi gå dit?\\n\\n49\\n00:06:45,208 --> 00:06:48,125\\nGå dit?|Det är inte tryggt.\\n\\n50\\n00:06:49,583 --> 00:06:52,583\\nMen, men...|- Tro mig, det inte säkert.\\n\\n51\\n00:06:53,000 --> 00:06:54,292\\nMen kanske om jag -\\n\\n52\\n00:06:54,292 --> 00:06:56,333\\nNej.\\n\\n53\\n00:06:57,208 --> 00:07:00,167\\nMen -|- Nej, NEJ!\\n\\n54\\n00:07:00,917 --> 00:07:03,792\\nNågra fler frågor Emo?\\n\\n55\\n00:07:04,250 --> 00:07:05,875\\nNej.\\n\\n56\\n00:07:09,542 --> 00:07:11,375\\nEmo?|- Ja?\\n\\n57\\n00:07:11,542 --> 00:07:15,667\\nEmo, varför...\\n\\n58\\n00:07:15,792 --> 00:07:18,583\\nVarför kan du inte se skönheten i det här?\\n\\n59\\n00:07:18,792 --> 00:07:21,708\\nHur det fungerar.\\n\\n60\\n00:07:21,833 --> 00:07:24,000\\nHur perfekt det är.\\n\\n61\\n00:07:24,083 --> 00:07:27,333\\nNej Proog, jag kan inte se det.\\n\\n62\\n00:07:27,333 --> 00:07:30,333\\nJag ser det inte, för det finns inget där.\\n\\n63\\n00:07:31,292 --> 00:07:35,333\\nOch varför skulle jag lägga mitt liv|i händerna på något som inte finns?\\n\\n64\\n00:07:35,333 --> 00:07:37,083\\nKan du berätta det för mig?|- Emo...\\n\\n65\\n00:07:37,083 --> 00:07:39,167\\nSvara mig!\\n\\n66\\n00:07:43,500 --> 00:07:45,208\\nProog...\\n\\n67\\n00:07:45,208 --> 00:07:47,083\\nDu är inte frisk!\\n\\n68\\n00:07:47,167 --> 00:07:49,292\\nHåll dig borta från mig!\\n\\n69\\n00:07:52,292 --> 00:07:55,083\\nNej! Emo!|Det är en fälla!\\n\\n70\\n00:07:55,375 --> 00:07:57,208\\nHeh, det är en fälla.\\n\\n71\\n00:07:57,208 --> 00:08:01,708\\nPå vänster sida ser vi...|Babylons hängande trädgårdar!\\n\\n72\\n00:08:01,958 --> 00:08:04,000\\nVad sägs om den fällan?\\n\\n73\\n00:08:05,458 --> 00:08:07,333\\nNej, Emo.\\n\\n74\\n00:08:08,917 --> 00:08:12,667\\nTill höger ser vi...|Gissa!\\n\\n75\\n00:08:12,750 --> 00:08:15,125\\nRhodos koloss!\\n\\n76\\n00:08:15,375 --> 00:08:16,500\\nNej!\\n\\n77\\n00:08:16,500 --> 00:08:20,250\\nKolossen på Rhodos!|Och den är här för din skull, Proog...\\n\\n78\\n00:08:20,250 --> 00:08:23,250\\nBara för din skull.\\n\\n79\\n00:08:50,917 --> 00:08:53,250\\nDen är där...\\n\\n80\\n00:08:53,625 --> 00:08:56,417\\nTro mig.|Emo...\\n\\n81\\n00:08:57,000 --> 00:09:00,000\\nDet är den.|Det är den...',\n", + " 'bytes': 4734,\n", + " 'sha1': 'lczi2oh9kz9pt5mchxv0jnm24ednq6t',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33073606,\n", + " 'timestamp': '2009-12-15T04:07:28Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8750970,\n", + " 'title': 'Elephants Dream 1024.avi.w400vbr180abr48c2two-pass.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Elephants Dream 1024.avi.w400vbr180abr48c2two-pass.ogv]] Português legenda',\n", + " 'text': '1\\n00:00:10,000 --> 00:00:13,125\\nElefantes Sonham\\n\\n2\\n00:00:15,000 --> 00:00:18,000\\nÀ esquerda podemos ver...\\n\\n3\\n00:00:18,042 --> 00:00:20,000\\nÀ direita podemos ver o...\\n\\n4\\n00:00:20,042 --> 00:00:21,083\\n...o decapitador.\\n\\n5\\n00:00:22,000 --> 00:00:24,042\\nEstá tudo seguro...\\nMuito seguro...\\n\\n6\\n00:00:24,627 --> 00:00:25,627\\nEmo...\\n\\n7\\n00:00:26,000 --> 00:00:27,000\\nEmo?\\n\\n8\\n00:00:28,083 --> 00:00:30,000\\nCuidado!\\n\\n9\\n00:00:47,000 --> 00:00:48,000\\nmagoaste-te?\\n\\n10\\n00:00:51,083 --> 00:00:53,083\\nAcho que não...\\nE Tu?\\n\\n11\\n00:00:55,042 --> 00:00:57,000\\nEu estou bem.\\n\\n12\\n00:00:57,042 --> 00:01:01,042\\nLevanta-te, Emo.\\nNão estamos seguros, aqui.\\n\\n13\\n00:01:02,000 --> 00:01:03,042\\nAnda.\\n\\n14\\n00:01:03,042 --> 00:01:05,042\\nOnde vamos?\\n\\n15\\n00:01:05,083 --> 00:01:09,000\\nJá vais ver! Já vais ver!\\n\\n16\\n00:01:16,000 --> 00:01:18,000\\nEmo. Por aqui...\\n\\n17\\n00:01:34,083 --> 00:01:35,042\\nSegue-me!\\n\\n18\\n00:02:11,042 --> 00:02:12,042\\nAnda! Despa-te Emo!\\n\\n19\\n00:02:48,000 --> 00:02:50,000\\nNão estás a prestar atenção!\\n\\n20\\n00:02:50,042 --> 00:02:54,042\\nSó quero, atender...\\n...o telefone.\\n\\n21\\n00:02:55,000 --> 00:02:58,000\\nEmo, olha! \\n...quer dizer, escuta!\\n\\n22\\n00:02:59,042 --> 00:03:02,000\\nTens que aprender a escutar.\\n\\n23\\n00:03:03,042 --> 00:03:05,000\\nIsto não é um jogo.\\n\\n24\\n00:03:06,000 --> 00:03:08,042\\nTu... isto é... nós, podemos facilmente morrer aqui.\\n\\n25\\n00:03:10,000 --> 00:03:14,000\\nEscuta, os sons da máquina.\\n\\n26\\n00:03:18,000 --> 00:03:20,042\\nEscuta a tua respiração.\\n\\n27\\n00:04:27,000 --> 00:04:29,000\\nNão estás farto disto?\\n\\n28\\n00:04:29,042 --> 00:04:31,000\\nFarto?!\\n\\n29\\n00:04:31,042 --> 00:04:34,042\\nEmo, a máquina é como as engrenagens de um relógio\\n\\n30\\n00:04:35,042 --> 00:04:37,042\\nQualquer movimento em falso e...\\n\\n31\\n00:04:37,083 --> 00:04:39,042\\n...ficará reduzido a pó.\\n\\n32\\n00:04:41,000 --> 00:04:42,000\\nMas não é...\\n\\n33\\n00:04:42,042 --> 00:04:46,042\\nPó, Emo! É isso que você quer, pó?\\n\\n34\\n00:04:48,000 --> 00:04:50,000\\nÉ esse o teu objetivo na vida?\\n\\n35\\n00:04:50,042 --> 00:04:52,000\\nPó?!\\n\\n36\\n00:05:41,083 --> 00:05:43,042\\nEmo, fecha os olhos.\\n\\n37\\n00:05:44,083 --> 00:05:46,042\\nPorquê?\\n- Agora!\\n\\n38\\n00:05:53,042 --> 00:05:56,000\\nBem.\\n\\n39\\n00:05:59,042 --> 00:06:02,042\\nO que vês à tua esquerda Emo?\\n\\n40\\n00:06:04,042 --> 00:06:06,000\\nNada.\\n- Nada?\\n\\n41\\n00:06:06,000 --> 00:06:07,083\\nMesmo nada...\\n\\n42\\n00:06:08,000 --> 00:06:12,042\\nE à tua direita?\\no que vês à tua direita Emo?\\n\\n43\\n00:06:13,083 --> 00:06:16,083\\nO mesmo Proog, exactamente o mesmo...\\n\\n44\\n00:06:17,000 --> 00:06:18,042\\nNada!\\n\\n45\\n00:06:40,042 --> 00:06:42,083\\nEscuta Proog! Ouve isto!\\n\\n46\\n00:06:43,042 --> 00:06:45,000\\nPodemos entrar ali?\\n\\n47\\n00:06:45,000 --> 00:06:48,000\\nAli? Não é seguro.\\n\\n48\\n00:06:49,083 --> 00:06:52,042\\nMas...\\n- Confia em mim, não é seguro.\\n\\n49\\n00:06:53,000 --> 00:06:54,042\\nTalvez eu pudesse...\\n\\n50\\n00:06:54,083 --> 00:06:56,000\\nNão.\\n\\n51\\n00:06:57,000 --> 00:06:58,000\\nMas...\\n\\n52\\n00:06:58,002 --> 00:07:00,000\\nNÃO!\\n\\n53\\n00:07:00,083 --> 00:07:03,042\\nMais alguma pergunta Emo?\\n\\n54\\n00:07:04,000 --> 00:07:05,083\\nNão.\\n\\n55\\n00:07:09,042 --> 00:07:10,083\\nEmo?\\n\\n56\\n00:07:11,083 --> 00:07:13,042\\nEmo, porquê...\\n\\n57\\n00:07:13,042 --> 00:07:14,042\\nEmo...\\n\\n58\\n00:07:14,042 --> 00:07:18,042\\n...porque é que não vês a beleza disto tudo?\\n\\n59\\n00:07:18,083 --> 00:07:20,042\\nA maneira como funciona.\\n\\n60\\n00:07:20,083 --> 00:07:24,000\\nComo é perfeito.\\n\\n61\\n00:07:24,000 --> 00:07:27,042\\nNão, Proog, não vejo.\\n\\n62\\n00:07:27,042 --> 00:07:30,000\\nNão vejo porque não existe.\\n\\n63\\n00:07:31,042 --> 00:07:35,000\\nE porque devo confiar a minha vida a algo que não existe?\\n\\n64\\n00:07:35,042 --> 00:07:37,000\\nPodes-me dizer porquê?!\\n\\n65\\n00:07:37,042 --> 00:07:39,000\\nResponde!\\n\\n66\\n00:07:43,000 --> 00:07:44,042\\nProog...\\n\\n67\\n00:07:45,042 --> 00:07:47,000\\nEstás doente!\\n\\n68\\n00:07:47,000 --> 00:07:49,000\\nFica bem longe de mim.\\n\\n69\\n00:07:52,042 --> 00:07:55,000\\nNão! Emo! É uma armadilha!\\n\\n70\\n00:07:55,083 --> 00:07:57,000\\nÉ uma armadilha...!\\n\\n71\\n00:07:57,000 --> 00:08:01,042\\nÀ esquerda podes ver os jardins suspensos da Babilónia!\\n\\n72\\n00:08:02,000 --> 00:08:04,000\\nQue tal isto como armadilha?\\n\\n73\\n00:08:05,042 --> 00:08:07,000\\nNão, Emo.\\n\\n74\\n00:08:09,042 --> 00:08:12,042\\nA direita podes ver...\\n...adivinha...\\n\\n75\\n00:08:13,000 --> 00:08:14,042\\n...o Colosso de Rhodes!\\n\\n76\\n00:08:15,083 --> 00:08:16,042\\nNão!\\n\\n77\\n00:08:16,042 --> 00:08:22,000\\nO Colosso de Rhodes...\\ne está aqui só para ti Proog!\\n\\n78\\n00:08:51,000 --> 00:08:53,000\\nEstá aqui...\\n\\n79\\n00:08:53,000 --> 00:08:55,042\\nEstou-te a dizer, Emo...\\n\\n80\\n00:08:57,000 --> 00:09:00,000\\n...está.\\n\\n81\\n00:09:25,000 --> 00:09:45,000\\n.: Tradução de pt-br para pt-pt :.\\n.: correcção :.\\n|Tiago Pinto|',\n", + " 'bytes': 4663,\n", + " 'sha1': '2py3l7ipqnps19b2ugeiru0ibqf7vmq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 607642954,\n", + " 'timestamp': '2021-11-16T20:20:54Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8752369,\n", + " 'title': 'Mayer and Bettle 2 - Creative Commons.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall subtitles update',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,788\\nMayer and Bettle and now... Flik\\n\\n2\\n00:00:01,832 --> 00:00:05,226\\nM: So explain to me again\\nwhy, after knowing you for so long,\\n\\n3\\n00:00:05,260 --> 00:00:09,997\\nI had to book a month in advance\\njust to catch up for a coffee...\\n\\n4\\n00:00:10,287 --> 00:00:13,108\\nB: Going out in public\\nis so hard these days.\\n\\n5\\n00:00:13,200 --> 00:00:14,869\\nM: What?! Why?\\n\\n6\\n00:00:14,927 --> 00:00:17,238\\nB: Because I’m famous now!\\n\\n7\\n00:00:17,278 --> 00:00:20,083\\nI’m like fully a celebrity and everything.\\n\\n8\\n00:00:20,126 --> 00:00:21,470\\nI have fans!\\n\\n9\\n00:00:21,523 --> 00:00:23,270\\nThey love me!\\n\\n10\\n00:00:23,318 --> 00:00:27,244\\nI can probably get us a free lunch\\n‘cause I’m so famous!\\n\\n11\\n00:00:27,286 --> 00:00:28,520\\nM: You are not famous.\\n\\n12\\n00:00:28,556 --> 00:00:29,666\\nB: Uh-huh?\\n\\n13\\n00:00:29,698 --> 00:00:34,217\\nMy first album,\\n‘The Best Album in the World,’\\n\\n14\\n00:00:34,252 --> 00:00:38,242\\nhas been in the Jamendo\\npopular albums for weeks!\\n\\n15\\n00:00:38,787 --> 00:00:40,605\\nM: Jamendo?\\n\\n16\\n00:00:41,000 --> 00:00:43,572\\nB: You never were cool, were you?\\n\\n17\\n00:00:43,934 --> 00:00:45,544\\nIt’s a music download site\\n\\n18\\n00:00:45,569 --> 00:00:49,175\\nthat lets musicians put their songs out\\nunder Creative Commons licences\\n\\n19\\n00:00:49,199 --> 00:00:51,172\\nso people can share them.\\n\\n20\\n00:00:51,500 --> 00:00:53,564\\nWhich means more people download it.\\n\\n21\\n00:00:53,596 --> 00:00:55,679\\nSo more people hear it!\\n\\n22\\n00:00:55,700 --> 00:00:57,825\\nSo more fans for me!!\\n\\n23\\n00:00:58,111 --> 00:01:00,199\\nIf that’s even possible.\\n\\n24\\n00:01:00,232 --> 00:01:04,065\\nBy the way, if you give me 50 bucks,\\nI’ll autograph your face.\\n\\n25\\n00:01:04,793 --> 00:01:06,468\\nM: Um...\\n\\n26\\n00:01:06,524 --> 00:01:07,560\\nthanks.\\n\\n27\\n00:01:07,714 --> 00:01:11,148\\nSo does Jamendo use\\nthe new extended metadata protocols\\n\\n28\\n00:01:11,167 --> 00:01:14,000\\nimplemented through\\nthe Creative Commons license generator?\\n\\n29\\n00:01:14,192 --> 00:01:16,159\\nB: Extenda-what-in-there?!\\n\\n30\\n00:01:16,215 --> 00:01:19,361\\nM: Huh... Why don’t I just show you?..\\n\\n31\\n00:01:21,000 --> 00:01:23,043\\nB: Where have you taken me Mayer!?\\n\\n32\\n00:01:23,089 --> 00:01:26,329\\n(gasping and whispering)\\nI hope there are no paparazzi.\\n\\n33\\n00:01:26,346 --> 00:01:29,000\\nI’m not wearing my sunglasses!\\n\\n34\\n00:01:29,273 --> 00:01:33,166\\nM: We’re inside the Creative Commons.\\nEverything here, people can share:\\n\\n35\\n00:01:33,210 --> 00:01:36,216\\nstories, photos, websites,\\nmovies, and sounds.\\n\\n36\\n00:01:36,272 --> 00:01:40,148\\nYou can tell; they all have\\nthe CC license symbols.\\n\\n37\\n00:01:40,472 --> 00:01:42,896\\nB: O-o-oo-oo! Pretty!\\n\\n38\\n00:01:43,057 --> 00:01:44,672\\nM: But you’re still in control.\\n\\n39\\n00:01:44,719 --> 00:01:48,197\\nSee, you can let people use your stuff\\nfor non-commercial purposes,\\n\\n40\\n00:01:48,253 --> 00:01:51,707\\nor only if they don’t change it,\\nor only if they share with others.\\n\\n41\\n00:01:51,738 --> 00:01:54,278\\nAnd they always have to credit you.\\n\\n42\\n00:01:54,693 --> 00:01:58,504\\nThe CC website helps you work out\\nwhich license is best for you.\\n\\n43\\n00:01:58,709 --> 00:02:02,117\\nAnd it lets you add information\\nabout the thing you are licensing,\\n\\n44\\n00:02:02,166 --> 00:02:05,259\\nso that information goes\\nwherever your work goes.\\n\\n45\\n00:02:05,399 --> 00:02:09,445\\nSee you can add stuff like your name\\nand how to get in contact with you\\n\\n46\\n00:02:09,474 --> 00:02:12,262\\nif they want to do stuff\\nthat the license doesn’t allow.\\n\\n47\\n00:02:12,515 --> 00:02:16,791\\nB: So my name goes wherever my album does.\\n\\n48\\n00:02:16,925 --> 00:02:19,498\\nNo matter how many times it’s downloaded?\\n\\n49\\n00:02:19,553 --> 00:02:20,729\\nM: Yep.\\n\\n50\\n00:02:20,775 --> 00:02:23,736\\nB: That means that everyone\\nwill know my name.\\n\\n51\\n00:02:23,961 --> 00:02:25,722\\nEveryone will know my songs!!\\n\\n52\\n00:02:25,773 --> 00:02:26,674\\n(Gasps)\\n\\n53\\n00:02:26,722 --> 00:02:30,167\\nI will achieve world domination!!!\\n\\n54\\n00:02:30,231 --> 00:02:34,157\\n(Evil laugher)\\n\\n55\\n00:02:36,501 --> 00:02:39,265\\nI should probably get a crown.\\nOooh! And a corgi!\\n\\n56\\n00:02:39,290 --> 00:02:40,171\\n(Boom)\\n\\n57\\n00:02:40,182 --> 00:02:41,560\\nHuh what?!\\n\\n58\\n00:02:42,544 --> 00:02:43,495\\nF: Bettle?!\\n\\n59\\n00:02:43,732 --> 00:02:45,729\\nB: Flik! What are you doing here?\\n\\n60\\n00:02:45,870 --> 00:02:47,752\\nF: I’ve almost finished our new film.\\n\\n61\\n00:02:47,793 --> 00:02:50,809\\nI just came to find\\na few final photos from Flickr.\\n\\n62\\n00:02:52,075 --> 00:02:55,309\\nM: Hmm, hey! hey? Who’s this?\\n\\n63\\n00:02:56,000 --> 00:02:59,328\\nB: This is Flik, my fan and collaborator.\\n\\n64\\n00:03:00,000 --> 00:03:01,036\\nF: A few months back\\n\\n65\\n00:03:01,076 --> 00:03:04,042\\nI was looking on Jamendo for songs\\nfor my school film project.\\n\\n66\\n00:03:04,076 --> 00:03:06,781\\nI came across one of Bettle’s\\nwhich was perfect!\\n\\n67\\n00:03:07,165 --> 00:03:10,452\\nSo I emailed Bettle\\nand she liked my film so much\\n\\n68\\n00:03:10,493 --> 00:03:12,328\\nthat we started working together.\\n\\n69\\n00:03:12,706 --> 00:03:15,280\\nB: Flik’s just finished our new one.\\n\\n70\\n00:03:15,326 --> 00:03:20,308\\nWe’re gonna premier it on Revver.\\nAnd we’re gonna make lots of money!!\\n\\n71\\n00:03:20,592 --> 00:03:23,370\\nM: But don’t you give\\nyour stuff away for free?\\n\\n72\\n00:03:23,444 --> 00:03:25,520\\nHow you gonna make money off it?\\n\\n73\\n00:03:25,920 --> 00:03:28,267\\nB: Just because we’re letting\\npeople use our stuff\\n\\n74\\n00:03:28,312 --> 00:03:30,781\\ndoesn’t mean we can’t make money off it.\\n\\n75\\n00:03:31,000 --> 00:03:32,216\\nF: Like on Revver!\\n\\n76\\n00:03:32,236 --> 00:03:34,954\\nIt’s a video-sharing site\\nthat puts ads into your video\\n\\n77\\n00:03:35,008 --> 00:03:37,236\\nand you get some of the money.\\n\\n78\\n00:03:37,281 --> 00:03:40,452\\nSo the more people that watch it,\\nthe more money we get.\\n\\n79\\n00:03:41,077 --> 00:03:44,139\\nB: And that’s why my album is on Jamendo.\\n\\n80\\n00:03:44,271 --> 00:03:48,203\\nPeople can share my music for free\\nunder the CC license,\\n\\n81\\n00:03:48,260 --> 00:03:54,200\\nbut if they want to use it to make money,\\nsay on TV or radio, they need to pay.\\n\\n82\\n00:03:54,533 --> 00:03:56,250\\nThe site lets them do that.\\n\\n83\\n00:03:56,280 --> 00:04:00,212\\nF: And there are lots of other sites\\nthat let you make money off your CC works.\\n\\n84\\n00:04:00,244 --> 00:04:03,273\\nB: Pretty soon,\\neveryone will use our stuff.\\n\\n85\\n00:04:03,298 --> 00:04:04,501\\nEvery film!\\n\\n86\\n00:04:04,547 --> 00:04:05,832\\nEvery advertisement!!\\n\\n87\\n00:04:05,889 --> 00:04:07,800\\nEvery home DVD!!!\\n\\n88\\n00:04:07,826 --> 00:04:09,237\\nI will be rich!\\n\\n89\\n00:04:09,268 --> 00:04:10,849\\nThey’ll all scream my name!\\n\\n90\\n00:04:10,880 --> 00:04:12,459\\nThe world will be mine!!\\n\\n91\\n00:04:12,521 --> 00:04:13,732\\nMINE!!!\\n\\n92\\n00:04:13,755 --> 00:04:14,995\\n(Hard breathing)\\n\\n93\\n00:04:15,035 --> 00:04:18,275\\nF: How about we just take it\\none step at a time, hey?\\n\\n94\\n00:04:18,447 --> 00:04:20,465\\nB: Oh, I completely agree, Flik.\\n\\n95\\n00:04:20,498 --> 00:04:21,546\\nHey, Mayer…\\n\\n96\\n00:04:22,000 --> 00:04:23,375\\nM: Yes, Bettle?\\n\\n97\\n00:04:23,748 --> 00:04:25,188\\n(Scratching)\\n\\n98\\n00:04:26,186 --> 00:04:28,286\\nB: You owe me 50 bucks!',\n", + " 'bytes': 7055,\n", + " 'sha1': 'ojnibhotbsehtyxfpar2v9namdcfiyb',\n", + " 'parent_id': 33083708,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357577,\n", + " 'timestamp': '2021-11-09T10:09:54Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8752610,\n", + " 'title': 'Elephants Dream.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.ru.srt]] to [[TimedText:Elephants Dream.ogv.ru.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:14,958 --> 00:00:17,833\\nСлева мы видим...\\n\\n2\\n00:00:18,458 --> 00:00:20,208\\nсправа мы видим...\\n\\n3\\n00:00:20,333 --> 00:00:21,875\\n...голово-клацов.\\n\\n4\\n00:00:22,000 --> 00:00:24,583\\nвсё в порядке.\\nв полном порядке.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nИмо?\\n\\n6\\n00:00:28,833 --> 00:00:30,250\\nОсторожно!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nТы не ранен?\\n\\n8\\n00:00:51,875 --> 00:00:53,875\\nВроде нет...\\nа ты?\\n\\n9\\n00:00:55,583 --> 00:00:57,125\\nЯ в порядке.\\n\\n10\\n00:00:57,542 --> 00:01:01,625\\nВставай.\\nИмо, здесь не безопасно.\\n\\n11\\n00:01:02,208 --> 00:01:03,625\\nПойдём.\\n\\n12\\n00:01:03,708 --> 00:01:05,708\\nЧто дальше?\\n\\n13\\n00:01:05,833 --> 00:01:07,833\\nТы увидишь!\\n\\n14\\n00:01:08,000 --> 00:01:08,833\\nТы увидишь...\\n\\n15\\n00:01:16,167 --> 00:01:18,375\\nИмо, сюда.\\n\\n16\\n00:01:34,917 --> 00:01:35,750\\nЗа мной!\\n\\n17\\n00:02:11,542 --> 00:02:12,750\\nИмо, быстрее!\\n\\n18\\n00:02:48,375 --> 00:02:50,083\\nТы не обращаешь внимания!\\n\\n19\\n00:02:50,708 --> 00:02:54,500\\nЯ только хотел ответить на ...\\n...звонок.\\n\\n20\\n00:02:55,000 --> 00:02:58,208\\nИмо, смотри,\\nто есть слушай...\\n\\n21\\n00:02:59,708 --> 00:03:02,292\\nТы должен учиться слушать.\\n\\n22\\n00:03:03,250 --> 00:03:05,333\\nЭто не какая-нибудь игра.\\n\\n23\\n00:03:06,000 --> 00:03:08,833\\nТы, вернее мы, легко можем погибнуть здесь.\\n\\n24\\n00:03:10,000 --> 00:03:11,167\\nСлушай...\\n\\n25\\n00:03:11,667 --> 00:03:14,125\\nслушай звуки машины.\\n\\n26\\n00:03:18,333 --> 00:03:20,417\\nСлушай своё дыхание.\\n\\n27\\n00:04:27,208 --> 00:04:29,250\\nИ не надоест тебе это?\\n\\n28\\n00:04:29,542 --> 00:04:31,083\\nНадоест?!?\\n\\n29\\n00:04:31,708 --> 00:04:34,625\\nИмо! Машина -\\nона как часовой механизм.\\n\\n30\\n00:04:35,500 --> 00:04:37,667\\nОдно движение не туда...\\n\\n31\\n00:04:37,792 --> 00:04:39,750\\n...и тебя размелют в месиво!\\n\\n32\\n00:04:41,042 --> 00:04:42,375\\nА разве это не -\\n\\n33\\n00:04:42,417 --> 00:04:46,500\\nМесиво, Имо!\\nты этого хочешь? месиво?\\n\\n34\\n00:04:48,083 --> 00:04:50,000\\nИмо, твоя цель в жизни?\\n\\n35\\n00:04:50,542 --> 00:04:52,250\\nМесиво!\\n\\n36\\n00:05:41,792 --> 00:05:43,458\\nИмо, закрой глаза.\\n\\n37\\n00:05:44,875 --> 00:05:46,542\\nЗачем?\\n- Ну же!\\n\\n38\\n00:05:51,500 --> 00:05:52,333\\nЛадно.\\n\\n39\\n00:05:53,708 --> 00:05:56,042\\nХорошо.\\n\\n40\\n00:05:59,500 --> 00:06:02,750\\nЧто ты видишь слева от себя, Имо?\\n\\n41\\n00:06:04,417 --> 00:06:06,000\\nНичего.\\n- Точно?\\n\\n42\\n00:06:06,333 --> 00:06:07,875\\nда, совсем ничего.\\n\\n43\\n00:06:08,042 --> 00:06:12,708\\nА справа от себя,\\nчто ты видишь справа от себя, Имо?\\n\\n44\\n00:06:13,833 --> 00:06:16,875\\nДа то же Пруг, в точности то же...\\n\\n45\\n00:06:17,042 --> 00:06:18,500\\nНичего!\\n\\n46\\n00:06:18,667 --> 00:06:19,500\\nПрекрасно...\\n\\n47\\n00:06:40,583 --> 00:06:42,917\\nПрислушайся, Пруг! Ты слышишь это?\\n\\n48\\n00:06:43,583 --> 00:06:45,042\\nМожет, мы пойдём туда?\\n\\n49\\n00:06:45,208 --> 00:06:48,042\\nТуда?\\nЭто не безопасно, Имо.\\n\\n50\\n00:06:49,875 --> 00:06:52,500\\nНо...\\n- Поверь мне, это так.\\n\\n51\\n00:06:53,292 --> 00:06:54,750\\nМожет я бы ...\\n\\n52\\n00:06:54,792 --> 00:06:56,333\\nНет.\\n\\n53\\n00:06:57,625 --> 00:06:59,583\\n- Но...\\n- НЕТ!\\n\\n54\\n00:06:59,708 --> 00:07:00,833\\nНет!\\n\\n55\\n00:07:00,833 --> 00:07:03,708\\nЕщё вопросы, Имо?\\n\\n56\\n00:07:04,250 --> 00:07:05,875\\nНет.\\n\\n57\\n00:07:09,458 --> 00:07:10,792\\nИмо?\\n\\n58\\n00:07:11,833 --> 00:07:13,500\\nИмо, почему...\\n\\n59\\n00:07:13,542 --> 00:07:14,458\\nИмо...\\n\\n60\\n00:07:14,500 --> 00:07:18,500\\n...почему? почему ты не видишь\\nкрасоты этого места?\\n\\n61\\n00:07:18,792 --> 00:07:20,708\\nТо как оно работает.\\n\\n62\\n00:07:20,833 --> 00:07:24,000\\nКак совершенно оно.\\n\\n63\\n00:07:24,083 --> 00:07:27,417\\nНет, Пруг, я не вижу.\\n\\n64\\n00:07:27,500 --> 00:07:30,333\\nЯ не вижу, потому что здесь ничего нет.\\n\\n65\\n00:07:31,375 --> 00:07:35,333\\nИ почему я должен доверять свою жизнь\\nчему-то, чего здесь нет?\\n\\n66\\n00:07:35,542 --> 00:07:37,125\\nэто ты мне можешь сказать?\\n\\n67\\n00:07:37,500 --> 00:07:39,167\\nОтветь мне!\\n\\n68\\n00:07:43,208 --> 00:07:44,542\\nПруг...\\n\\n69\\n00:07:45,500 --> 00:07:47,333\\nТы просто больной!\\n\\n70\\n00:07:47,375 --> 00:07:48,500\\nОтстань от меня.\\n\\n71\\n00:07:48,625 --> 00:07:49,917\\nИмо...\\n\\n72\\n00:07:52,542 --> 00:07:55,083\\nНет! Имо! Это ловушка!\\n\\n73\\n00:07:55,792 --> 00:07:57,167\\nЭто ловушка!\\n\\n74\\n00:07:57,208 --> 00:08:01,708\\nСлева от себя вы можете увидеть\\nВисящие сады Семирамиды!\\n\\n75\\n00:08:02,250 --> 00:08:04,292\\nСойдёт за ловушку?\\n\\n76\\n00:08:05,458 --> 00:08:07,125\\nНет, Имо.\\n\\n77\\n00:08:09,417 --> 00:08:12,750\\nСправа от себя вы можете увидеть...\\n...угадай кого...\\n\\n78\\n00:08:13,000 --> 00:08:14,708\\n...Колосса Родосского!\\n\\n79\\n00:08:15,500 --> 00:08:16,625\\nНет!\\n\\n80\\n00:08:16,667 --> 00:08:21,125\\nКолосс Родосский!\\nИ он здесь специально для тебя, Пруг.\\n\\n81\\n00:08:21,167 --> 00:08:22,208\\nСпециально для тебя...\\n\\n82\\n00:08:51,333 --> 00:08:53,167\\nОна здесь есть!\\n\\n83\\n00:08:53,208 --> 00:08:55,500\\nГоворю тебе,\\nИмо...\\n\\n84\\n00:08:57,333 --> 00:09:00,000\\n...она есть... есть...',\n", + " 'bytes': 5951,\n", + " 'sha1': 'tt1pf9p2zlc2ccu76v3kcqiwcosvxuk',\n", + " 'parent_id': 45478392,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 244654675,\n", + " 'timestamp': '2017-05-19T15:32:49Z',\n", + " 'user': {'id': 1070943, 'text': 'AvicBot'},\n", + " 'page': {'id': 8755775,\n", + " 'title': 'Elephants Dream (high quality).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:Elephants Dream.ogv.en.srt',\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Bot: Fixing double redirect to [[TimedText:Elephants Dream.ogv.en.srt]]',\n", + " 'text': '#REDIRECT [[TimedText:Elephants Dream.ogv.en.srt]]',\n", + " 'bytes': 50,\n", + " 'sha1': 'kwid9eaxpnn8ypovh4ekylxih1elo5i',\n", + " 'parent_id': 33092466,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 607620231,\n", + " 'timestamp': '2021-11-16T18:27:20Z',\n", + " 'user': {'id': 4032121, 'text': 'Revibot'},\n", + " 'page': {'id': 8755789,\n", + " 'title': 'Elephants Dream (high quality).ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:Elephants Dream.ogv.sv.srt',\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Bot: Fixing double redirect to [[TimedText:Elephants Dream.ogv.sv.srt]]',\n", + " 'text': '#REDIRECT [[TimedText:Elephants Dream.ogv.sv.srt]]',\n", + " 'bytes': 50,\n", + " 'sha1': 'n1w9mqmb3tqczfxkn6si6hp4ouqlenw',\n", + " 'parent_id': 33092565,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 607620189,\n", + " 'timestamp': '2021-11-16T18:27:10Z',\n", + " 'user': {'id': 4032121, 'text': 'Revibot'},\n", + " 'page': {'id': 8755792,\n", + " 'title': 'Elephants Dream (high quality).ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:Elephants Dream.ogv.pt.srt',\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Bot: Fixing double redirect to [[TimedText:Elephants Dream.ogv.pt.srt]]',\n", + " 'text': '#REDIRECT [[TimedText:Elephants Dream.ogv.pt.srt]]',\n", + " 'bytes': 50,\n", + " 'sha1': 'j96crfnu8mkwxot0qlumgt3859fi63y',\n", + " 'parent_id': 33092590,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33337604,\n", + " 'timestamp': '2009-12-22T07:00:17Z',\n", + " 'user': {'id': 28, 'text': 'Eloquence'},\n", + " 'page': {'id': 8758697,\n", + " 'title': 'Reticulum Rex with subtitles - Creative Commons.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'small accuracy fixes',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:03,000\\nReticulum Rex\\n\\n2\\n00:00:03,000 --> 00:00:06,000\\nRemix Culture: A year in the life of Creative Commons\\n\\n3\\n00:00:06,000 --> 00:00:11,000\\nIn our last episode you met Creative Commons, a young project with big plans\\n\\n4\\n00:00:11,000 --> 00:00:14,000\\nplans to bring some sense to the copyright debate\\n\\n5\\n00:00:14,000 --> 00:00:20,000\\nplans to partner with the big C, to clarify the rules of creativity.\\n\\n6\\n00:00:20,000 --> 00:00:25,000\\nTo help authors and artists build a body of free culture they can draw from in return.\\n\\n7\\n00:00:28,000 --> 00:00:31,000\\nSo where have Creative Commons' adventures led?\\n\\n8\\n00:00:31,000 --> 00:00:40,000\\nIt all began with our copyright licenses, tools that help you mark your work as free to share or build upon with only some rights reserved.\\n\\n9\\n00:00:40,000 --> 00:00:45,000\\nAnd you did just that, with an enthusiasm that surprised even us.\\n\\n10\\n00:00:45,000 --> 00:00:49,000\\nFirst came the early adopters: writers, like Campbell Award winning Cory Doctorow,\\n\\n11\\n00:00:49,000 --> 00:00:55,000\\nwho offered fans his first novel for free download, and for sale in hard copy\\n\\n12\\n00:00:55,000 --> 00:01:03,000\\neducators, like MIT and Rice University, who made their courseware available online, for free, to the world\\n\\n13\\n00:01:03,000 --> 00:01:12,000\\nalso, community builders like Sal Randolph of Opsound, who collects hundreds of licensed songs for people to remix and share\\n\\n14\\n00:01:12,000 --> 00:01:19,000\\nand there are thousands of modern day Thomas Paines, the grassroots journalists known as webloggers\\n\\n15\\n00:01:19,000 --> 00:01:23,000\\nplus photographers, illustrators, filmmakers, and more\\n\\n16\\n00:01:23,000 --> 00:01:30,000\\nOnly a couple of months into Creative Commons' life, and more than 100,000 pioneers like these had joined the movement\\n\\n17\\n00:01:30,000 --> 00:01:33,000\\nAnd then things got really interesting.\\n\\n18\\n00:01:33,000 --> 00:01:41,000\\nBecause before long, YOU put this commons into practice, just as we had dreamed but could never have done alone\\n\\n19\\n00:01:42,000 --> 00:01:46,000\\nGuitarist Colin Mutchler contributed a track to Opsound\\n\\n20\\n00:01:46,000 --> 00:01:52,000\\nand a young violinist named Cora Beth recorded a duet with him without ever meeting him\\n\\n21\\n00:01:52,000 --> 00:01:58,000\\nAn academic program in Vietnam began translating and teaching MIT's course materials\\n\\n22\\n00:01:58,000 --> 00:02:04,000\\nCory Doctorow's novel sold a whole print run. It saw hundreds of thousands of downloads.\\n\\n23\\n00:02:04,000 --> 00:02:09,000\\nEven Jeff Bezos, CEO of Amazon.com recommended it to his customers.\\n\\n24\\n00:02:10,000 --> 00:02:19,000\\nAll of this, across the net, with no middleman, no legal doubt, no friction, just free culture created in real-time. \\n\\n25\\n00:02:21,000 --> 00:02:26,000\\nAll the while you built the commons out in whole new directions, in ways we never anticipated\\n\\n26\\n00:02:26,000 --> 00:02:30,000\\nHigh-tech publisher Tim O'Reilly helped us create the Founder's Copyright\\n\\n27\\n00:02:30,000 --> 00:02:35,000\\nthat's fourteen years in the care of Big C, and then works move onto public pastures\\n\\n28\\n00:02:37,000 --> 00:02:42,000\\nSoftware developers began to incorporate our tools, helping people free their works at the point of creation\\n\\n29\\n00:02:44,000 --> 00:02:50,000\\nCommon Content and the Internet Archive began to register and host Creative Commons works, for free\\n\\n30\\n00:02:51,000 --> 00:02:56,000\\nThe iCommons opened, and experts around the world began porting our licenses to many legal systems, \\n\\n31\\n00:02:56,000 --> 00:03:00,000\\nso that your expression can travel freely across borders.\\n\\n32\\n00:03:01,000 --> 00:03:05,000\\nAnd suddenly, what had been only an idea eight months earlier\\n\\n33\\n00:03:05,000 --> 00:03:10,000\\nwas a global movement, more than 700,000 licensed works strong\\n\\n34\\n00:03:10,000 --> 00:03:14,000\\nand still you helped us realize that more could be done\\n\\n35\\n00:03:15,000 --> 00:03:21,000\\nThe legendary musician Gilberto Gil, along with the digital collage artists Negativland\\n\\n36\\n00:03:21,000 --> 00:03:25,000\\ninspired us to build Creative Commons' latest and most exciting tool\\n\\n37\\n00:03:26,000 --> 00:03:29,000\\none that encourages a kind of creativity that children with scissors and glue\\n\\n38\\n00:03:29,000 --> 00:03:33,000\\nand scientists who cure with genes, and lawyers who cite precedent\\n\\n39\\n00:03:33,000 --> 00:03:36,000\\nunderstand as second nature\\n\\n40\\n00:03:36,000 --> 00:03:44,000\\nto take a bit and make it new. Some from here, some from there, to make a mosaic from the old, but not to copy\\n\\n41\\n00:03:45,000 --> 00:03:47,000\\nto remix culture.\\n\\n42\\n00:03:48,000 --> 00:03:52,000\\nIntroducing: the Creative Commons Sampling Licenses\\n\\n43\\n00:03:52,000 --> 00:04:00,000\\nNew tools to help you invite others to get creative with a part of your work, even for profit, but not to copy the whole thing\\n\\n44\\n00:04:00,000 --> 00:04:06,000\\nThe legendary Mr. Gil will introduce the first wave of sample friendly tunes from Brazil\\n\\n45\\n00:04:06,000 --> 00:04:11,000\\nleaving you free to jam with him across the net, with more artists soon to follow.\\n\\n46\\n00:04:14,000 --> 00:04:18,000\\nAnd so, Creative Commons carries on, twelve months since hitting the scene\\n\\n47\\n00:04:18,000 --> 00:04:24,000\\nmore than one million licensed works, one million artifacts of culture, free to reuse\\n\\n48\\n00:04:24,000 --> 00:04:30,000\\nAnd we've got bigger plans still: plans to help authors republish books out of print\\n\\n49\\n00:04:30,000 --> 00:04:33,000\\nplans to explore a science commons\\n\\n50\\n00:04:33,000 --> 00:04:36,000\\nplans to weave our philosophy and our tools into the fabric of the net\\n\\n51\\n00:04:36,000 --> 00:04:39,000\\nplans to knock down the walls between reader and author\\n\\n52\\n00:04:39,000 --> 00:04:47,000\\nor listener and composer, between audience and artists, between community and citizen, or culture and creator\\n\\n53\\n00:04:47,000 --> 00:04:51,000\\nplans to bring creativity back to its senses\\n\\n54\\n00:04:51,000 --> 00:04:55,000\\nand with your help, to keep growing, just as big as the old Big C\\n\\n55\\n00:04:55,000 --> 00:05:02,000\\nCreative Commons: the rules have changed, and it's just the beginning\",\n", + " 'bytes': 6099,\n", + " 'sha1': 'i2q3uu4dig1av7t63mpt4blmjdi4m26',\n", + " 'parent_id': 33104472,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33104483,\n", + " 'timestamp': '2009-12-16T07:31:42Z',\n", + " 'user': {'id': 246032, 'text': 'RuASG'},\n", + " 'page': {'id': 8758703,\n", + " 'title': 'Reticulum Rex with subtitles - Creative Commons.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:03,000 Reticulum Rex 2 00:00:03,000 --> 00:00:06,000 Remix Culture - творческий ремикс: 1 год жизни Creative Comm...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,000\\nReticulum Rex\\n\\n2\\n00:00:03,000 --> 00:00:06,000\\nRemix Culture - творческий ремикс: 1 год жизни Creative Commons\\n\\n3\\n00:00:06,000 --> 00:00:11,000\\nВ предыдущей серии вы встретились с Creative Commons, молодым проектом с большими планами\\n\\n4\\n00:00:11,000 --> 00:00:14,000\\nпланами внести долю здравого смысла в спор об авторском праве\\n\\n5\\n00:00:14,000 --> 00:00:20,000\\nпланами стать партнером большого © и разобраться - по каким правилам следует творить\\n\\n6\\n00:00:20,000 --> 00:00:25,000\\nПомочь авторам создать пространство свободной культуры, откуда они можно впоследствии черпать вдохновение.\\n\\n7\\n00:00:28,000 --> 00:00:31,000\\nТак каким же был путь становления Creative Commons?\\n\\n8\\n00:00:31,000 --> 00:00:40,000\\nВсе началось с наших лицензий, которые позволили вам обозначить, что ваши произведения доступны для копирования или изменения - \"Некоторые права защищены\".\\n\\n9\\n00:00:40,000 --> 00:00:45,000\\nИ вы этой возможностью воспользовались, да так, что удивили даже нас.\\n\\n10\\n00:00:45,000 --> 00:00:49,000\\nСначала первые \"ласточки\": писатели, например обладатель премии Кэмпбелла Кори Доктороу,\\n\\n11\\n00:00:49,000 --> 00:00:55,000\\nпредложивший скачать свой первый роман из сети бесплатно, а платить за книгу в магазине;\\n\\n12\\n00:00:55,000 --> 00:01:03,000\\nдеятели образования, - в МИТ и в Университете Райса, выложившие свои курсы онлайн для свободного скачавания\\n\\n13\\n00:01:03,000 --> 00:01:12,000\\nи такие как Сэл Рэндольф (проект Opsound), который собрал сотни лицензированных песен, чтобы кто угодно мог их изменять и петь\\n\\n14\\n00:01:12,000 --> 00:01:19,000\\nи тысячи современных Томасов Пэйнов, независимых журналистов нашего времени - блоггеров\\n\\n15\\n00:01:19,000 --> 00:01:23,000\\nа также фотографов, иллюстраторов, режиссеров и др.\\n\\n16\\n00:01:23,000 --> 00:01:30,000\\nВсего пара месяцев с начала пути Creative Commonsnly, - и вот уже 100 000 пионеров присоединились к движению\\n\\n17\\n00:01:30,000 --> 00:01:33,000\\nА потом началось самое интересное.\\n\\n18\\n00:01:33,000 --> 00:01:41,000\\nПотому что очень скоро ВЫ начали использовать commons, дав жизнь нашим мечтам, что мы никогда не смогли бы сделать сами.\\n\\n19\\n00:01:42,000 --> 00:01:46,000\\nГитарист Colin Mutchler загрузил свой трек на Opsound\\n\\n20\\n00:01:46,000 --> 00:01:52,000\\nи молодая скрипачка Cora Beth записала с ним дуэт, ни разу не встретившись с ним\\n\\n21\\n00:01:52,000 --> 00:01:58,000\\nВо Вьетнаме началась программа по переводу и преподаванию курса Массач. Института\\n\\n22\\n00:01:58,000 --> 00:02:04,000\\nКори Доктороу распродал все первое издание книги. Роман скачали сотни тысяч раз.\\n\\n23\\n00:02:04,000 --> 00:02:09,000\\nДаже Jeff Bezos, директор Amazon.com посоветовал его своим клиентам.\\n\\n24\\n00:02:10,000 --> 00:02:19,000\\nИ все это было сделано по сети, без посредников, без проблем, - изобилие творчества в реальном времени.\\n\\n25\\n00:02:21,000 --> 00:02:26,000\\nА вы все расширяли рамки СС, так, как мы никогда даже не помышляли.\\n\\n26\\n00:02:26,000 --> 00:02:30,000\\n\"Хай-тек\" издатель Tim O\\'Reilly помог нам создать Founder\\'s Copyright\\n\\n27\\n00:02:30,000 --> 00:02:35,000\\n14 лет в когтях обычного ©, а потом на свободу, на радость публике.\\n\\n28\\n00:02:37,000 --> 00:02:42,000\\nПрограммисты стали внедрять наши лицензии, позволяя людям создавать произведения свободными\\n\\n29\\n00:02:44,000 --> 00:02:50,000\\nCommon Content и Internet Archive стали регистрировать и бесплатно размещать работы в СС\\n\\n30\\n00:02:51,000 --> 00:02:56,000\\nОткрылся портал iCommons, и эксперты со всего мира стали внедрять СС в свои системы права,\\n\\n31\\n00:02:56,000 --> 00:03:00,000\\nчтобы ваши творения могли путешествовать без границ.\\n\\n32\\n00:03:01,000 --> 00:03:05,000\\nИ то, что 8 месяцев назад было лишь замыслом\\n\\n33\\n00:03:05,000 --> 00:03:10,000\\nстало всемирным движением с 700 000 лицензированных работ\\n\\n34\\n00:03:10,000 --> 00:03:14,000\\nи вы дали нам понять, что это далеко не конец\\n\\n35\\n00:03:15,000 --> 00:03:21,000\\nЛегендарный музыкант Gilberto Gil вместе с ребятами из группы Negativland\\n\\n36\\n00:03:21,000 --> 00:03:25,000\\nподали нам идею создать новый захватывающий инструмент\\n\\n37\\n00:03:26,000 --> 00:03:29,000\\nвдохновляющий к творчеству, которое для детей с ножницами и бумагой\\n\\n38\\n00:03:29,000 --> 00:03:33,000\\nдля ученых, переставляющих гены, для юристов, цитирующих судебные прецеденты\\n\\n39\\n00:03:33,000 --> 00:03:36,000\\nвторая натура:\\n\\n40\\n00:03:36,000 --> 00:03:44,000\\nвзять часть, изменить и создать новое. Немного отсюда, оттуда, сделать мозаику из старого; не копировать,\\n\\n41\\n00:03:45,000 --> 00:03:47,000\\nа сделать творческий ремикс.\\n\\n42\\n00:03:48,000 --> 00:03:52,000\\nПредставляем: Creative Commons Sampling Licenses\\n\\n43\\n00:03:52,000 --> 00:04:00,000\\nМожно создать что-то свое из части вашей работы, даже на продажу, но нельзя копировать целиком\\n\\n44\\n00:04:00,000 --> 00:04:06,000\\nЛегендарный Мистер Gil представит первые композиции из Бразилии\\n\\n45\\n00:04:06,000 --> 00:04:11,000\\nс которыми можно поэкспериментировать, и скоро будут другие.\\n\\n46\\n00:04:14,000 --> 00:04:18,000\\nТак, Creative Commons продолжает свое победное шествие, уже год в пути\\n\\n47\\n00:04:18,000 --> 00:04:24,000\\nи уже более миллиона работ, миллион артифактов культуры, - свободны\\n\\n48\\n00:04:24,000 --> 00:04:30,000\\nИ еще планы: помогать авторам публиковать не переиздающиеся книги\\n\\n49\\n00:04:30,000 --> 00:04:33,000\\nисследовать научную область\\n\\n50\\n00:04:33,000 --> 00:04:36,000\\nвстроить нашу философию и лицензии в структуру сети\\n\\n51\\n00:04:36,000 --> 00:04:39,000\\nразрушить преграду между читателем и автором,\\n\\n52\\n00:04:39,000 --> 00:04:47,000\\nмежду слушателем и композитором, аудиторией и исполнителем, культурой и творцом;\\n\\n53\\n00:04:47,000 --> 00:04:51,000\\nвозродить творчество\\n\\n54\\n00:04:51,000 --> 00:04:55,000\\nи с вашей помощью стать нормой Авторского Права.\\n\\n55\\n00:04:55,000 --> 00:05:02,000\\nCreative Commons: правила изменились, и это только начало',\n", + " 'bytes': 8682,\n", + " 'sha1': 'bpq7xatjacj88p9a44gwtkolxzkvt9h',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33104502,\n", + " 'timestamp': '2009-12-16T07:33:18Z',\n", + " 'user': {'id': 246032, 'text': 'RuASG'},\n", + " 'page': {'id': 8758708,\n", + " 'title': 'Reticulum Rex with subtitles - Creative Commons.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:03,000 Reticulum Rex 2 00:00:03,000 --> 00:00:06,000 Remix Kultur: Ein Jahr im Leben von Creative Commons 3 00:00:06,000 --> 00:00:11,00...'\",\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:03,000\\nReticulum Rex\\n\\n2\\n00:00:03,000 --> 00:00:06,000\\nRemix Kultur: Ein Jahr im Leben von Creative Commons\\n\\n3\\n00:00:06,000 --> 00:00:11,000\\nIn unserer letzten Folge habt ihr Creative Commons kennengelernt, ein junges Projekt mit großen Plänen\\n\\n4\\n00:00:11,000 --> 00:00:14,000\\nPlänen, die der Urheberrechtsdebatte einen Sinn geben sollen\\n\\n5\\n00:00:14,000 --> 00:00:20,000\\nPlänen, die mit dem großen C in Einklang stehen und die Regeln der Kreativität klarstellen\\n\\n6\\n00:00:20,000 --> 00:00:25,000\\num Autoren und Künstlern zu helfen ein Angebot freier Kultur zu schaffen, von welchem sie wiederum profitieren können.\\n\\n7\\n00:00:28,000 --> 00:00:31,000\\nAlso wohin haben Creative Commons Abenteuer geführt?\\n\\n8\\n00:00:31,000 --> 00:00:40,000\\nAlles began mit unseren Urheberrechtslizensen: Werkzeugen, die euch helfen eure Arbeit als frei zum Teilen und darauf Aufbauen, mit nur einigen Rechten vorbehalten zu markieren.\\n\\n9\\n00:00:40,000 --> 00:00:45,000\\nUnd genau das habt ihr getan, mit überwältigendem Enthusiasmus.\\n\\n10\\n00:00:45,000 --> 00:00:49,000\\nAls erstes kamen die frühen Anhänger: Schriftsteller, wie Campell Preis Gewinner Cory Doctorow,\\n\\n11\\n00:00:49,000 --> 00:00:55,000\\nder seinen Fans seinen ersten Roman zum freien Download und zum Kauf in gebundener Ausgabe anbot\\n\\n12\\n00:00:55,000 --> 00:01:03,000\\nBildungsanstalten, wie MIT und Rice University, die ihre Kursangebote online zur Verfügung stellen, um sonst and für die ganze Welt\\n\\n13\\n00:01:03,000 --> 00:01:12,000\\nsowie Menschen wie Sal Randololph von Opsound, der hunderte von lizensierten Lieder sammelte, damit Menschen sie remixen und teilen können\\n\\n14\\n00:01:12,000 --> 00:01:19,000\\nund dann die tausenden moderenen Thomas Paines, die bodenständigen Jounalisten, als Webblogger bekannt\\n\\n15\\n00:01:19,000 --> 00:01:23,000\\nwie auch Fotographen, Illustratoren, Filmemacher und mehr\\n\\n16\\n00:01:23,000 --> 00:01:30,000\\nNur einige Monate nach dem Enstehen von Creative Commons sind schon 100,000 Prioniere der Bewegung beigetreten \\n\\n17\\n00:01:30,000 --> 00:01:33,000\\nUnd die Dinge wurden richtig interessant. \\n\\n18\\n00:01:33,000 --> 00:01:41,000\\nDenn binnen kurzem, habt IHR die Commons-Idee in die Tat umgesetzt, genau wie wir es uns erträumt haben, aber niemals allein geschafft hätten.\\n\\n19\\n00:01:42,000 --> 00:01:46,000\\nDer Gitarrist Colin Mutchler steuerte einen Song zu Opsound bei\\n\\n20\\n00:01:46,000 --> 00:01:52,000\\nund eine junge Violinisten names Cora Beth nahm ein Duett mit ihm auf ohne ihn jemals vorher getroffen zu haben\\n\\n21\\n00:01:52,000 --> 00:01:58,000\\nEin akademisches Programm in Vietnam begann die Kursmaterialien der MIT zu übersetzten und mit ihnen zu lehren\\n\\n22\\n00:01:58,000 --> 00:02:04,000\\nCory Doctorow's Roman verkaufte einen ganze Druckauflage. Und wurde hunderttausende male heruntergeladen.\\n\\n23\\n00:02:04,000 --> 00:02:09,000\\nSogar Jeff Bezos, Vorstandsvorsitzender von Amazon.com empfahl es seinen Kunden.\\n\\n24\\n00:02:10,000 --> 00:02:19,000\\nAll dies geschah über das Internet, ohne Mittelsmann, keine rechtlichen Zweifel, keine Auseinandersetzungen, einfach freie Kultur in Echtzeit kreiert.\\n\\n25\\n00:02:21,000 --> 00:02:26,000\\nUnd all das während ihr die Commons in ganz neue Richtungen ausgebaut habt, in Wegen, die wir nie erwartet hätten\\n\\n26\\n00:02:26,000 --> 00:02:30,000\\nHigh-tech Herausgeber Tim O'Reilly half uns das Gründer Urheberrecht zu erschaffen\\n\\n27\\n00:02:30,000 --> 00:02:35,000\\n14 Jahre unter dem Großen C, dann gehen die Arbeiten ins Gemeingut über\\n\\n28\\n00:02:37,000 --> 00:02:42,000\\nSoftware Hersteller begannen unsere Werkzeuge einzubauen, um Menschen zu helfen ihre Werke schon zum Zeitpunkt der Erschaffung zugänglich zu machen\\n\\n29\\n00:02:44,000 --> 00:02:50,000\\nCommon Content und das Internet Archiv begannen Creative Commons Arbeiten umsonst zu registrieren und anzubieten.\\n\\n30\\n00:02:51,000 --> 00:02:56,000\\niCommons eröffnete und Experten der ganzen Welt begannen ihre Lizenzen in viele Rechtssysteme zu portieren,\\n\\n31\\n00:02:56,000 --> 00:03:00,000\\nso dass deine Ideen sich frei über Grenzen hinweg verbreiten können.\\n\\n32\\n00:03:01,000 --> 00:03:05,000\\nUnd plötzlich wurde, was acht Monate früher noch nur eine Idee war,\\n\\n33\\n00:03:05,000 --> 00:03:10,000\\neine globale Bewegung, mit mehr als 700,000 lizensierten Werken\\n\\n34\\n00:03:10,000 --> 00:03:14,000\\nund ihr halft uns zu realisieren dass noch mehr möglich war\\n\\n35\\n00:03:15,000 --> 00:03:21,000\\nDer legendäre Musiker Gilberto Gil und der digital Collagen Künstler Negativland\\n\\n36\\n00:03:21,000 --> 00:03:25,000\\ninspirierten und dazu Crative Commons neuestes und aufregendstes Werkzeug zu schaffen\\n\\n37\\n00:03:26,000 --> 00:03:29,000\\neines, welches eine Art von Kreativität, die Kinder mit Scheren und Kleber\\n\\n38\\n00:03:29,000 --> 00:03:33,000\\nund Wissenschaftler, die an Genen forschen und Anwälten, die Präzedenzfälle setzen\\n\\n39\\n00:03:33,000 --> 00:03:36,000\\nals zweite Natur verstehen\\n\\n40\\n00:03:36,000 --> 00:03:44,000\\netwas kleines zu nehmen und es neu zu kreieren. Etwas von hier, etwas von dort, ein Mosaik aus altem zu erstellen, aber nicht zu kopieren\\n\\n41\\n00:03:45,000 --> 00:03:47,000\\nsonder Kultur zu remixen.\\n\\n42\\n00:03:48,000 --> 00:03:52,000\\nWir stellen vor: Die Creative Commons Sampling Lizenzen\\n\\n43\\n00:03:52,000 --> 00:04:00,000\\nNeue Mittel helfen euch andere einzuladen Kreatives mit deiner Arbeit zu erstellen, sogar für Profit, aber nicht um das ganze Werk zu kopieren\\n\\n44\\n00:04:00,000 --> 00:04:06,000\\nDer legändäre Mr. Gil wird die erste Welle der sample freundlichen Melodien aus Brasilien vorstellen\\n\\n45\\n00:04:06,000 --> 00:04:11,000\\nund euch das Improvisieren mit ihm überall im Internet ermöglichen, mit weiteren Künstlern die bald folgen werden.\\n\\n46\\n00:04:14,000 --> 00:04:18,000\\nSo also entwickelt sich Creative Commons weiter, zwölf Monate nach unserem ersten Auftritt\\n\\n47\\n00:04:18,000 --> 00:04:24,000\\nmehr als eine Million lizensierter Werke, eine Million Artifakten der Kultur, frei zur Weiterverwendung\\n\\n48\\n00:04:24,000 --> 00:04:30,000\\nUnd wir haben immer noch größere Pläne: Pläne die Autoren helfen vergriffene Bücher wieder neu drucken zu lassen\\n\\n49\\n00:04:30,000 --> 00:04:33,000\\nPläne Science Commons zu entdecken\\n\\n50\\n00:04:33,000 --> 00:04:36,000\\nPläne unsere Philosophie und Mittel in den Stoff des Internets einzuweben\\n\\n51\\n00:04:36,000 --> 00:04:39,000\\nPläne die Wand zwischen Leser und Autor \\n\\n52\\n00:04:39,000 --> 00:04:47,000\\noder Zuhörer und Komponisten, Publikum und Künstler, Gemeinschaft und Bürger oder Kultur und Schöpfer niederzuschlagen.\\n\\n53\\n00:04:47,000 --> 00:04:51,000\\nPläne die Kreativität wieder zu Sinnen zu bringen\\n\\n54\\n00:04:51,000 --> 00:04:55,000\\nund mit eurer Hilfe weiter zu wachsen, genau wie das große, alte C\\n\\n55\\n00:04:55,000 --> 00:05:02,000\\nCreative Commons: die Regeln haben sich verändert und das ist erst der Anfang\",\n", + " 'bytes': 6809,\n", + " 'sha1': 'je1u1u8835ex3e5fokmpfoi27ugzz8k',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33390459,\n", + " 'timestamp': '2009-12-23T16:18:37Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8814864,\n", + " 'title': 'Audacity click track one per second for eight seconds mono88khz32bitfloat.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Audacity click track one per second for eight seconds mono88khz32bitfloat.ogg]] number text for each second',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nzero\\n\\n2 \\n00:00:01,000 --> 00:00:02,000\\none\\n\\n3 \\n00:00:02,000 --> 00:00:03,000 \\ntwo\\n\\n4\\n00:00:03,000 --> 00:00:04,000 \\nthree\\n\\n5\\n00:00:04,000 --> 00:00:05,000 \\nfour\\n\\n6\\n00:00:05,000 --> 00:00:06,000 \\nfive\\n\\n7\\n00:00:06,000 --> 00:00:07,000 \\nsix\\n\\n8\\n00:00:07,000 --> 00:00:08,000 \\nseven',\n", + " 'bytes': 309,\n", + " 'sha1': 'o97mvdej21i2t8h5nycucxfph36n1gl',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33390591,\n", + " 'timestamp': '2009-12-23T16:25:16Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8814922,\n", + " 'title': 'Audacity click track one per second for eight seconds mono88khz32bitfloat.ogg.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Audacity click track one per second for eight seconds mono88khz32bitfloat.ogg]] deutsche Untertiteln - Nummern',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nNull\\n\\n2 \\n00:00:01,000 --> 00:00:02,000\\nEins\\n\\n3 \\n00:00:02,000 --> 00:00:03,000 \\nZwei\\n\\n4\\n00:00:03,000 --> 00:00:04,000 \\nDrei\\n\\n5\\n00:00:04,000 --> 00:00:05,000 \\nVier\\n\\n6\\n00:00:05,000 --> 00:00:06,000 \\nFünf\\n\\n7\\n00:00:06,000 --> 00:00:07,000 \\nSechs\\n\\n8\\n00:00:07,000 --> 00:00:08,000 \\nSieben',\n", + " 'bytes': 314,\n", + " 'sha1': 'j0ebev0f7sq1mbfisw3cbiyc25bn2wq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33390658,\n", + " 'timestamp': '2009-12-23T16:29:04Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8814947,\n", + " 'title': 'Audacity click track one per second for eight seconds mono88khz32bitfloat.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Audacity click track one per second for eight seconds mono88khz32bitfloat.ogg]] française 0 1 2 3 4 5 6 7',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nZéro\\n\\n2 \\n00:00:01,000 --> 00:00:02,000\\nUn\\n\\n3 \\n00:00:02,000 --> 00:00:03,000 \\nDeux\\n\\n4\\n00:00:03,000 --> 00:00:04,000 \\nTrois\\n\\n5\\n00:00:04,000 --> 00:00:05,000 \\nQuatre\\n\\n6\\n00:00:05,000 --> 00:00:06,000 \\nCinq\\n\\n7\\n00:00:06,000 --> 00:00:07,000 \\nSix\\n\\n8\\n00:00:07,000 --> 00:00:08,000 \\nSept',\n", + " 'bytes': 311,\n", + " 'sha1': 'g4gwssywq76ypdbahxm7pdb1z36itg8',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33390966,\n", + " 'timestamp': '2009-12-23T16:43:39Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8815032,\n", + " 'title': 'Cal 2flip2click8khzvbr vlc.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'REDIRECT does not work with TimedText. [[File:Cal 2flip2click8khzvbr vlc.ogv]] française 0 1 2 3 4 5 6 7',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nZéro\\n\\n2 \\n00:00:01,000 --> 00:00:02,000\\nUn\\n\\n3 \\n00:00:02,000 --> 00:00:03,000 \\nDeux\\n\\n4\\n00:00:03,000 --> 00:00:04,000 \\nTrois\\n\\n5\\n00:00:04,000 --> 00:00:05,000 \\nQuatre\\n\\n6\\n00:00:05,000 --> 00:00:06,000 \\nCinq\\n\\n7\\n00:00:06,000 --> 00:00:07,000 \\nSix\\n\\n8\\n00:00:07,000 --> 00:00:08,000 \\nSept',\n", + " 'bytes': 311,\n", + " 'sha1': 'g4gwssywq76ypdbahxm7pdb1z36itg8',\n", + " 'parent_id': 33390890,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33516666,\n", + " 'timestamp': '2009-12-28T08:33:22Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8815079,\n", + " 'title': 'Cal 2flip2click8khzvbr vlc.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': \"revert: Null is German for Zero; it marks the zero'th second, see also the french and english files\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nNull\\n\\n2 \\n00:00:01,000 --> 00:00:02,000\\nEins\\n\\n3 \\n00:00:02,000 --> 00:00:03,000 \\nZwei\\n\\n4\\n00:00:03,000 --> 00:00:04,000 \\nDrei\\n\\n5\\n00:00:04,000 --> 00:00:05,000 \\nVier\\n\\n6\\n00:00:05,000 --> 00:00:06,000 \\nFünf\\n\\n7\\n00:00:06,000 --> 00:00:07,000 \\nSechs\\n\\n8\\n00:00:07,000 --> 00:00:08,000 \\nSieben',\n", + " 'bytes': 314,\n", + " 'sha1': 'j0ebev0f7sq1mbfisw3cbiyc25bn2wq',\n", + " 'parent_id': 33515047,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357351,\n", + " 'timestamp': '2021-11-09T10:08:00Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8819701,\n", + " 'title': 'Elephants Dream.ogg.ar.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:Elephants Dream.ogv.ar.srt',\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[Special:MyLanguage/COM:AES|←]]Redirected page to [[TimedText:Elephants Dream.ogv.ar.srt]]',\n", + " 'text': '#REDIRECT[[TimedText:Elephants Dream.ogv.ar.srt]]',\n", + " 'bytes': 49,\n", + " 'sha1': '31petmjbixxb5muxxyir05obzv9rph6',\n", + " 'parent_id': 45478344,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 244653168,\n", + " 'timestamp': '2017-05-19T15:14:50Z',\n", + " 'user': {'id': 607047, 'text': 'Krinkle'},\n", + " 'page': {'id': 8819759,\n", + " 'title': 'Elephants Dream.ogv.af.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Krinkle moved page [[TimedText:Elephants Dream.ogg.af.srt]] to [[TimedText:Elephants Dream.ogv.af.srt]]',\n", + " 'text': '1\\n00:00:15,000 --> 00:00:18,000\\nHierso aan, aan die linkerkant sien ons...\\n\\n2\\n00:00:18,292 --> 00:00:20,167\\nAan die regterkant sien ons...\\n\\n3\\n00:00:20,292 --> 00:00:21,583\\n...die kopknippers\\n\\n4\\n00:00:22,000 --> 00:00:24,375\\nAlles is veilig\\nheeltemaal veilig...\\n\\n5\\n00:00:24,833 --> 00:00:25,333\\nEmo?\\n\\n6\\n00:00:26,125 --> 00:00:27,125\\nEmo.\\n\\n7\\n00:00:28,750 --> 00:00:30,125\\nOppas!\\n\\n8\\n00:00:46,917 --> 00:00:48,083\\nHet jy seergekry?\\n\\n9\\n00:00:51,833 --> 00:00:54,167\\nEk dink nie so nie..\\nen jy?\\n\\n10\\n00:00:55,250 --> 00:00:57,042\\nAls reg.\\n\\n11\\n00:00:57,250 --> 00:01:01,250\\nStaan op.\\nEmo, dit is nie veilig nie\\n\\n12\\n00:01:02,083 --> 00:01:03,250\\nKom ons gaan.\\n\\n13\\n00:01:03,542 --> 00:01:05,292\\nWat\\'s volgende?\\n\\n14\\n00:01:05,333 --> 00:01:08,542\\n(Jy sal) Jy sal sien! Jy sal sien...\\n\\n15\\n00:01:16,083 --> 00:01:18,167\\nEmo.\\nHiernatoe.\\n\\n16\\n00:01:34,375 --> 00:01:35,333\\nVolg my!\\n\\n17\\n00:02:11,250 --> 00:02:12,333\\nMaak gou Emo!\\n\\n18\\n00:02:48,542 --> 00:02:50,042\\nJy let nie op nie!\\n\\n19\\n00:02:50,292 --> 00:02:54,208\\nEk wil dit maar net antwoord... \\n...die foon\\n\\n20\\n00:02:55,000 --> 00:02:58,083\\nEmo, kyk -\\nEk bedoel luister.\\n\\n21\\n00:02:59,292 --> 00:03:02,125\\nJy moet leer om te luister\\n\\n22\\n00:03:03,250 --> 00:03:05,042\\nDis nie sommer net \\'n speletjie nie.\\n\\n23\\n00:03:05,208 --> 00:03:09,375\\nJy, ek bedoel, ons kan maklik hier sterf\\n\\n24\\n00:03:10,000 --> 00:03:10,833\\nLuister...\\n\\n25\\n00:03:11,458 --> 00:03:14,167\\nLuister na die klanke van die masjien.\\n\\n26\\n00:03:18,125 --> 00:03:20,167\\nLuister na jou eie asemhaling\\n\\n27\\n00:04:27,083 --> 00:04:29,083\\nWord jy nooit moeg hiervoor nie?\\n\\n28\\n00:04:29,250 --> 00:04:31,042\\nMoeg?!?\\n\\n29\\n00:04:31,292 --> 00:04:34,250\\nEmo, die masjien is soos....soos klokwerk\\n\\n30\\n00:04:35,208 --> 00:04:37,292\\nEen verkeerde skuif en...\\n\\n31\\n00:04:37,333 --> 00:04:39,333\\n...en jy word verbrysel tot \\'n pappery!\\n\\n32\\n00:04:41,000 --> 00:04:42,167\\nMaar is dit nie -\\n\\n33\\n00:04:42,167 --> 00:04:46,208\\n\\'n Pappery Emo!\\nIs dit wat jy wil he? \\'n Pappery?\\n\\n34\\n00:04:47,708 --> 00:04:50,250\\nEmo, wat is jou doel in die lewe?\\n\\n35\\n00:04:50,583 --> 00:04:52,083\\nPappery!?\\n\\n36\\n00:05:41,333 --> 00:05:43,167\\nEmo, maak toe jou oë\\n\\n37\\n00:05:44,375 --> 00:05:46,250\\nHoekom\\nNou!\\n\\n38\\n00:05:51,250 --> 00:05:52,333\\nOK...\\n\\n39\\n00:05:53,292 --> 00:05:56,000\\nGoed.\\n\\n40\\n00:05:59,208 --> 00:06:02,333\\nWat sien jy aan jou linkerkant Emo? Wat?\\n\\n41\\n00:06:04,167 --> 00:06:06,000\\nNiks.\\n- Regtig?\\n\\n42\\n00:06:06,125 --> 00:06:07,375\\nNee, absoluut niks.\\n\\n43\\n00:06:08,000 --> 00:06:12,167\\nRegtig...en aan jou regterkant?\\nWat sien jy aan jou regterkant Emo?\\n\\n44\\n00:06:13,333 --> 00:06:16,375\\nDieselfde Proog, presies dieselfde...\\n\\n45\\n00:06:17,042 --> 00:06:18,250\\nNiks!\\n\\n46\\n00:06:18,250 --> 00:06:19,250\\nWonderlik...\\n\\n47\\n00:06:40,250 --> 00:06:42,375\\nLuister Proog! Hoor jy dit!\\n\\n48\\n00:06:43,250 --> 00:06:45,000\\nKan ons soontoe gaan?\\n\\n49\\n00:06:45,083 --> 00:06:48,000\\nDaar? \\nDis nie veilig nie.\\n\\n50\\n00:06:49,375 --> 00:06:52,208\\nMaar...\\n- Vertrou my, dit nie veilig nie.\\n\\n51\\n00:06:53,125 --> 00:06:54,333\\nMiskien kan ek...\\n\\n52\\n00:06:54,333 --> 00:06:56,125\\nNee.\\n\\n53\\n00:06:57,292 --> 00:06:57,500\\nmaar..\\n\\n54\\n00:06:57,917 --> 00:06:58,333\\nNEE!\\n\\n55\\n00:06:59,167 --> 00:06:59,792\\nNEE!!!\\n\\n56\\n00:07:00,833 --> 00:07:03,292\\nEnige verdere vrae Emo?\\n\\n57\\n00:07:04,083 --> 00:07:05,375\\nNee?\\n\\n58\\n00:07:09,167 --> 00:07:10,333\\nEmo?\\n\\n59\\n00:07:10,625 --> 00:07:11,333\\nJa?\\n\\n60\\n00:07:11,333 --> 00:07:13,208\\nEmo, waarom?...\\n\\n61\\n00:07:13,250 --> 00:07:14,167\\nEmo...\\n\\n62\\n00:07:14,208 --> 00:07:18,208\\n...waarom sien jy nie \\ndie skoonheid van die plek nie?\\n\\n63\\n00:07:18,333 --> 00:07:20,292\\nHoe dit alles werk...\\n\\n64\\n00:07:20,000 --> 00:07:24,000\\nhoe...hoe perfek dit is nie?\\n\\n65\\n00:07:24,042 --> 00:07:27,167\\nNee Proog,...ek sien dit nie!\\n\\n66\\n00:07:27,208 --> 00:07:30,125\\nEk sien dit nie want daar is niks om te sien nie...\\n\\n67\\n00:07:31,208 --> 00:07:35,125\\nEn hoekom sal ek my lewe toevertrou \\naan iets wat nie daar is nie?\\n\\n68\\n00:07:35,250 --> 00:07:37,042\\nWel, kan jy dit verduidelik?\\n\\n69\\n00:07:37,208 --> 00:07:39,083\\nAntwoord my!\\n\\n70\\n00:07:43,083 --> 00:07:44,250\\nProog...\\n\\n71\\n00:07:45,208 --> 00:07:47,125\\nJy\\'s \\'n siek man!\\n\\n72\\n00:07:47,167 --> 00:07:49,083\\nBly weg van my af!\\n\\n73\\n00:07:52,250 --> 00:07:55,042\\nNee! Emo! Dis \\'n lokval!\\n\\n74\\n00:07:55,333 --> 00:07:57,083\\nHa, \"Dis \\'n lokval\" - ha\\n\\n75\\n00:07:57,083 --> 00:08:01,292\\nAan jou linkerkant sien jy...\\ndie hangende tuine van Babilon\\n\\n76\\n00:08:02,083 --> 00:08:04,125\\nHoe\\'s daai vir \\'n lokval?\\n\\n77\\n00:08:05,167 --> 00:08:07,042\\nNee, Emo.\\n\\n78\\n00:08:09,167 --> 00:08:12,333\\nAan jou regterkant sien jy...\\n...raai wat!\\n\\n79\\n00:08:13,000 --> 00:08:14,292\\n...die kolos van Rhodus!\\n\\n80\\n00:08:15,333 --> 00:08:16,292\\nNee!\\n\\n81\\n00:08:16,292 --> 00:08:22,083\\nDie kolos van Rhodus\\nen dis hier net vir jou, Proog.\\n\\n82\\n00:08:51,125 --> 00:08:53,083\\nDit is daar...\\n\\n83\\n00:08:53,083 --> 00:08:55,208\\nGlo my,\\nEmo...\\n\\n84\\n00:08:57,125 --> 00:09:00,000\\n...dit is.\\n...dit is.',\n", + " 'bytes': 4869,\n", + " 'sha1': 'tsf79g55xm0708tee8fs9sb3ktymhxh',\n", + " 'parent_id': 45478279,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356585,\n", + " 'timestamp': '2021-11-09T09:59:55Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8819764,\n", + " 'title': 'Elephants Dream.ogv.bn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.bn.srt]] to [[TimedText:Elephants Dream.ogv.bn.srt]]: rename of the original file',\n", + " 'text': '1\\n\\n00:00:15,042 --> 00:00:18,042\\n\\nবামে... বামদিকে দেখি...\\n\\n\\n\\n2\\n\\n00:00:18,750 --> 00:00:20,333\\n\\nডানদিকে দেখি...\\n\\n\\n\\n3\\n\\n00:00:20,417 --> 00:00:21,917\\n\\n...মুন্ডু-খেকো\\n\\n\\n\\n4\\n\\n00:00:22,000 --> 00:00:24,625\\n\\nএখানে সব নিরাপদ\\nএকদম নিরাপদ\\n\\n\\n\\n5\\n\\n00:00:26,333 --> 00:00:27,333\\n\\nইমো?\\n\\n\\n\\n6\\n\\n00:00:28,875 --> 00:00:30,250\\n\\nইমো, সাবধান!\\n\\n\\n\\n7\\n\\n00:00:47,125 --> 00:00:48,250\\n\\nব্যাথা পেলে নাকি?\\n\\n\\n\\n8\\n\\n00:00:51,917 --> 00:00:53,917\\n\\nনা না, ঠিক আছি\\nআপনি?\\n\\n\\n\\n9\\n\\n00:00:55,625 --> 00:00:57,125\\n\\nআমি ঠিক আছি\\n\\n\\n\\n10\\n\\n00:00:57,583 --> 00:01:01,667\\n\\nউঠে পড় ইমো\\nজায়গাটা ভাল ঠেকছে না\\n\\n\\n\\n11\\n\\n00:01:02,208 --> 00:01:03,667\\n\\nচলো কেটে পড়ি\\n\\n\\n\\n12\\n\\n00:01:03,750 --> 00:01:05,750\\n\\nএখন কি করব?\\n\\n\\n\\n13\\n\\n00:01:05,875 --> 00:01:07,875\\n\\nআসো, দেখতে পাবে\\n\\n\\n\\n14\\n\\n00:01:16,167 --> 00:01:18,375\\n\\nইমো\\nএইদিকে\\n\\n\\n\\n15\\n\\n00:01:34,958 --> 00:01:35,792\\n\\nআমার সঙ্গে আসো\\n\\n\\n\\n16\\n\\n00:02:11,583 --> 00:02:12,792\\n\\nতাড়াতাড়ি ইমো!\\n\\n\\n\\n17\\n\\n00:02:48,375 --> 00:02:50,083\\n\\nতুমি আমার কথা শুনছ না\\n\\n\\n\\n18\\n\\n00:02:50,750 --> 00:02:54,500\\n\\nআমি... আমি শুধু...\\n...ফোনটা ধরতে চাই\\n\\n\\n\\n19\\n\\n00:02:55,000 --> 00:02:58,208\\n\\nইমো, দেখ...\\nমানে... শুনো\\n\\n\\n\\n20\\n\\n00:02:59,750 --> 00:03:02,292\\n\\nতোমাকে নির্দেশ মানা শিখতে হবে\\n\\n\\n\\n21\\n\\n00:03:03,625 --> 00:03:05,125\\n\\nএটা ছেলেখেলা নয়\\n\\n\\n\\n22\\n\\n00:03:06,167 --> 00:03:08,750\\n\\nআমারা যে কেউ খুব সহজেই\\nএখানে মারা পরতে পারি\\n\\n\\n\\n23\\n\\n00:03:10,208 --> 00:03:14,125\\n\\nশুনো...\\nযন্ত্রের আওয়াজ শুনো\\n\\n\\n\\n24\\n\\n00:03:18,333 --> 00:03:20,417\\n\\nতোমার নিঃশ্বাসের শব্দ শুনো\\n\\n\\n\\n25\\n\\n00:04:27,208 --> 00:04:29,250\\n\\nএসব কি কখনোই আপনাকে ক্লান্ত করে না?\\n\\n\\n\\n26\\n\\n00:04:29,583 --> 00:04:31,083\\n\\nক্লান্তি?!?\\n\\n\\n\\n27\\n\\n00:04:31,750 --> 00:04:34,667\\n\\nইমো; এই যন্ত্রের কাজকর্ম ঘড়ির মত নিখুঁত\\n\\n\\n\\n28\\n\\n00:04:35,500 --> 00:04:37,708\\n\\nএকটা কিছু এদিক ওদিক করলেই...\\n\\n\\n\\n29\\n\\n00:04:37,833 --> 00:04:39,792\\n\\nতুমি ছাতু হয়ে যাবে\\n\\n\\n\\n30\\n\\n00:04:41,042 --> 00:04:42,375\\n\\nকিন্তু এটা কি...\\n\\n\\n\\n31\\n\\n00:04:42,417 --> 00:04:46,542\\n\\nছাতু, ইমো!\\nতাই কি তুমি চাও, ছাতু?\\n\\n\\n\\n32\\n\\n00:04:48,083 --> 00:04:50,000\\n\\nইমো তোমার জীবনের লক্ষ্য কি...\\n\\n\\n\\n33\\n\\n00:04:50,583 --> 00:04:52,250\\n\\nছাতু?\\n\\n\\n\\n34\\n\\n00:05:41,833 --> 00:05:43,458\\n\\nইমো, চোখ বন্ধ কর\\n\\n\\n\\n35\\n\\n00:05:44,917 --> 00:05:46,583\\n\\nকেন?\\n- এখনই!\\n\\n\\n\\n36\\n\\n00:05:53,750 --> 00:05:56,042\\n\\nএই তো চাই\\n\\n\\n\\n37\\n\\n00:05:59,542 --> 00:06:02,792\\n\\nবামে কি দেখতে পাও ইমো?\\n\\n\\n\\n38\\n\\n00:06:04,417 --> 00:06:06,000\\n\\nকিচ্ছু না\\n- তাই নাকি?\\n\\n\\n\\n39\\n\\n00:06:06,333 --> 00:06:07,917\\n\\nনাহ, কোনকিছুই না\\n\\n\\n\\n40\\n\\n00:06:08,042 --> 00:06:12,417\\n\\nআচ্ছা... আর তোমার ডান দিকে\\nডানে কি দেখতে পাও ইমো?\\n\\n\\n\\n41\\n\\n00:06:13,875 --> 00:06:16,917\\n\\nএকই জিনিস, একেবারে একই জিনিস\\n\\n\\n\\n42\\n\\n00:06:17,083 --> 00:06:18,583\\n\\nকোনকিছুই না!\\n\\n\\n\\n43\\n\\n00:06:40,625 --> 00:06:42,958\\n\\nশুনুন! শুনতে পান ওটা!\\n\\n\\n\\n44\\n\\n00:06:43,625 --> 00:06:45,042\\n\\nআমরা কি ওইখানে যেতে পারি?\\n\\n\\n\\n45\\n\\n00:06:45,208 --> 00:06:48,042\\n\\nওখানে?\\nজায়গাটা নিরাপদ না ইমো\\n\\n\\n\\n46\\n\\n00:06:49,917 --> 00:06:52,500\\n\\nকিন্তু...\\n- বিশ্বাস কর; জায়গাটা নিরাপদ না\\n\\n\\n\\n47\\n\\n00:06:53,292 --> 00:06:54,792\\n\\nহয়তো আমি...\\n\\n\\n\\n48\\n\\n00:06:54,833 --> 00:06:56,333\\n\\nনা\\n\\n\\n\\n49\\n\\n00:06:57,667 --> 00:07:00,167\\n\\nনা!\\n\\n\\n\\n50\\n\\n00:07:00,875 --> 00:07:03,750\\n\\nআর কিছু বলার আছে ইমো?\\n\\n\\n\\n51\\n\\n00:07:04,250 --> 00:07:05,917\\n\\nনা?\\n\\n\\n\\n52\\n\\n00:07:09,458 --> 00:07:10,833\\n\\nইমো?\\n\\n\\n\\n53\\n\\n00:07:11,875 --> 00:07:13,542\\n\\nইমো, কেন...\\n\\n\\n\\n54\\n\\n00:07:13,583 --> 00:07:14,458\\n\\nইমো...\\n\\n\\n\\n55\\n\\n00:07:14,500 --> 00:07:18,500\\n\\nইমো কেন... কেন তুমি এ\\nজায়গাটার সৌন্দর্য দেখতে পাও না\\n\\n\\n\\n56\\n\\n00:07:18,833 --> 00:07:20,750\\n\\nযেভাবে এটা কাজ করছে...\\n\\n\\n\\n57\\n\\n00:07:20,875 --> 00:07:24,000\\n\\nকত সুন্দর এটা\\n\\n\\n\\n58\\n\\n00:07:24,083 --> 00:07:27,417\\n\\nনা... আমি দেখতে পাই না প্রুগ!\\n\\n\\n\\n59\\n\\n00:07:27,542 --> 00:07:30,333\\n\\nআমি দেখতে পাই না কারন এখানে দেখার কিছু নাই\\n\\n\\n\\n60\\n\\n00:07:31,500 --> 00:07:35,333\\n\\n...আর অস্তিত্ববিহীন কোন কিছুর কাছে\\nকেন আমি জীবন সোপর্দ করব?\\n\\n\\n\\n61\\n\\n00:07:35,583 --> 00:07:37,125\\n\\nতা আমাকে বলতে পারবেন আপনি?\\n\\n\\n\\n62\\n\\n00:07:37,500 --> 00:07:39,167\\n\\nউত্তর দিন!\\n\\n\\n\\n63\\n\\n00:07:43,208 --> 00:07:44,583\\n\\nপ্রুগ...\\n\\n\\n\\n64\\n\\n00:07:45,500 --> 00:07:47,333\\n\\nআপনি অসুস্থ!\\n\\n\\n\\n65\\n\\n00:07:47,375 --> 00:07:49,208\\n\\nদূরে থাকুন\\n\\n\\n\\n66\\n\\n00:07:52,583 --> 00:07:55,083\\n\\nনা! ইমো! এটা একটা ফাঁদ!\\n\\n\\n\\n67\\n\\n00:07:55,833 --> 00:07:57,167\\n\\nহুহ... এটা একটা ফাঁদ!\\n\\n\\n\\n68\\n\\n00:07:57,208 --> 00:08:01,750\\n\\nআমাদের বামদিকে দেখা যাচ্ছে\\nব্যাবিলনের শূন্যোদ্যান!\\n\\n\\n\\n69\\n\\n00:08:02,250 --> 00:08:04,292\\n\\nএই ফাঁদটা কেমন হল?\\n\\n\\n\\n70\\n\\n00:08:05,458 --> 00:08:07,125\\n\\nনা ইমো\\n\\n\\n\\n71\\n\\n00:08:09,417 --> 00:08:12,792\\n\\nআমাদের ডানদিকে দেখা যাচ্ছে\\n...আরে!\\n\\n\\n\\n72\\n\\n00:08:13,000 --> 00:08:14,750\\n\\n...রোহডস এর মূর্তি!\\n\\n\\n\\n73\\n\\n00:08:15,833 --> 00:08:16,708\\n\\nনা!\\n\\n\\n\\n74\\n\\n00:08:16,750 --> 00:08:22,167\\n\\nরোহডস এর মূর্তি শুধু আপনার\\nকাছেই দেখা দেয়\\n\\n\\n\\n75\\n\\n00:08:51,333 --> 00:08:53,167\\n\\nসবই আছে\\n\\n\\n\\n76\\n\\n00:08:53,208 --> 00:08:55,500\\n\\nআমি বলছি ইমো\\n\\n\\n\\n77\\n\\n00:08:57,333 --> 00:09:00,000\\n\\n...সবই আছে',\n", + " 'bytes': 7024,\n", + " 'sha1': 'sddbb4qptvryy3r1lrno4y663ghbyvd',\n", + " 'parent_id': 45478215,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357462,\n", + " 'timestamp': '2021-11-09T10:09:06Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8819771,\n", + " 'title': 'Elephants Dream.ogv.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.pt-br.srt]] to [[TimedText:Elephants Dream.ogv.pt-br.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nAqui, à esquerda podemos ver\\x85\\n\\n2\\n00:00:18,792 --> 00:00:20,333\\nÀ direita, podemos ver o \\x85\\n\\n3\\n00:00:20,417 --> 00:00:21,958\\n\\x85 o decaptador.\\n\\n4\\n00:00:22,000 --> 00:00:24,667\\nEstá tudo seguro.\\nPerfeitamente seguro.\\n\\n5\\n00:00:24,667 --> 00:00:25,667\\nEmo...\\n\\n6\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n7\\n00:00:28,917 --> 00:00:30,250\\nCuidado!\\n\\n8\\n00:00:46,750 --> 00:00:47,875\\nVocê se machucou?\\n\\n9\\n00:00:51,958 --> 00:00:53,958\\nAcho que não... e você?\\n\\n10\\n00:00:55,667 --> 00:00:57,125\\nEstou bem.\\n\\n11\\n00:00:57,625 --> 00:01:01,708\\nLevante-se, Emo,\\nnão é seguro ficarmos aqui.\\n\\n12\\n00:01:02,208 --> 00:01:03,708\\nVamos lá.\\n\\n13\\n00:01:03,792 --> 00:01:05,792\\nE agora?\\n\\n14\\n00:01:06,083 --> 00:01:08,875\\nVocê verá...\\nVocê verá.\\n\\n15\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nPor Aqui.\\n\\n16\\n00:01:34,333 --> 00:01:35,625\\nSiga-me!\\n\\n17\\n00:02:11,625 --> 00:02:12,833\\nRápido, Emo.\\n\\n18\\n00:02:48,375 --> 00:02:50,083\\nVocê não está prestando atenção!\\n\\n19\\n00:02:50,792 --> 00:02:54,542\\nEu só quero atender o...\\n...telefone\\n\\n20\\n00:02:55,000 --> 00:02:58,208\\nEmo, olhe...\\n...quero dizer - ouça\\n\\n21\\n00:02:59,792 --> 00:03:02,292\\nVocê tem que aprender a ouvir.\\n\\n22\\n00:03:03,667 --> 00:03:05,125\\nIsto não é um jogo qualquer.\\n\\n23\\n00:03:06,167 --> 00:03:08,792\\nVocê... quero dizer... nós\\npoderíamos facilmente morrer aqui.\\n\\n24\\n00:03:10,208 --> 00:03:14,125\\nOuça.\\nOuça o som das máquinas.\\n\\n25\\n00:03:18,333 --> 00:03:20,417\\nOuça seu respirar\\n\\n26\\n00:04:27,208 --> 00:04:29,250\\nVocê não se cansa disso?\\n\\n27\\n00:04:29,625 --> 00:04:31,083\\nCansar?!?\\n\\n28\\n00:04:31,792 --> 00:04:34,708\\nA máquina é como as\\nengrenagens de um relógio.\\n\\n29\\n00:04:35,542 --> 00:04:37,750\\nUm movimento fora de lugar e...\\n\\n30\\n00:04:37,875 --> 00:04:39,833\\n...você é reduzido a pó.\\n\\n31\\n00:04:41,042 --> 00:04:42,375\\nMas isso não -\\n\\n32\\n00:04:42,417 --> 00:04:46,583\\nPó, Emo!\\nÉ isso que você quer? Pó?\\n\\n33\\n00:04:47,208 --> 00:04:50,000\\nEmo, é esse seu propósito na vida?\\n\\n34\\n00:04:50,625 --> 00:04:52,250\\nPó!\\n\\n35\\n00:05:41,375 --> 00:05:43,458\\nEmo, feche os seus olhos.\\n\\n36\\n00:05:44,667 --> 00:05:46,625\\nPor quê?\\n- Agora!\\n\\n37\\n00:05:53,792 --> 00:05:56,042\\nÓtimo.\\n\\n38\\n00:05:59,583 --> 00:06:02,833\\nO que você vê do seu lado esquerdo, Emo?\\n\\n39\\n00:06:04,125 --> 00:06:06,000\\nNada.\\n- Mesmo?\\n\\n40\\n00:06:06,333 --> 00:06:07,958\\nNada mesmo.\\n\\n41\\n00:06:08,042 --> 00:06:12,417\\nE à sua direita,\\nO que você vê à sua direita, Emo?\\n\\n42\\n00:06:13,917 --> 00:06:16,958\\nA mesma coisa Proog,\\nexatamente a mesma coisa...\\n\\n43\\n00:06:16,917 --> 00:06:18,417\\nNada!\\n\\n44\\n00:06:18,625 --> 00:06:19,375\\nÓtimo.\\n\\n45\\n00:06:40,667 --> 00:06:43,000\\nOuça Proog!\\nConsegue ouvir isso?\\n\\n46\\n00:06:43,667 --> 00:06:45,042\\nPodemos ir ali?\\n\\n47\\n00:06:45,208 --> 00:06:48,042\\nLá?\\nNão é seguro, Emo.\\n\\n48\\n00:06:49,958 --> 00:06:52,542\\nMas...\\n- Confie em mim, não é.\\n\\n49\\n00:06:53,292 --> 00:06:54,833\\nBem, e se Eu...\\n\\n50\\n00:06:54,875 --> 00:06:56,333\\nNão.\\n\\n51\\n00:06:57,458 --> 00:06:57,875\\nMas...\\n\\n52\\n00:06:57,708 --> 00:07:00,167\\nNÃO!\\n\\n53\\n00:07:00,917 --> 00:07:03,792\\nMais alguma pergunta, Emo?\\n\\n54\\n00:07:04,250 --> 00:07:05,958\\nNão.\\n\\n55\\n00:07:09,458 --> 00:07:10,875\\nEmo?\\n\\n56\\n00:07:11,917 --> 00:07:13,583\\nEmo, Por quê...\\n\\n57\\n00:07:13,625 --> 00:07:14,458\\nEmo...\\n\\n58\\n00:07:14,542 --> 00:07:18,542\\n...por quê você não consegue ver\\na beleza deste lugar?\\n\\n59\\n00:07:18,875 --> 00:07:20,792\\nA forma como ele funciona.\\n\\n60\\n00:07:20,917 --> 00:07:24,000\\nComo ele é perfeito.\\n\\n61\\n00:07:24,083 --> 00:07:27,417\\nNão, Proog, \\nEu não vejo!\\n\\n62\\n00:07:27,583 --> 00:07:30,333\\nEu não vejo porquê\\nnão tem nada aqui.\\n\\n63\\n00:07:31,542 --> 00:07:35,333\\nE porquê eu confiaria a minha vida\\na algo que nem está aqui?\\n\\n64\\n00:07:35,625 --> 00:07:37,125\\nConsegue responder?\\n\\n65\\n00:07:37,542 --> 00:07:39,167\\nResponda!\\n\\n66\\n00:07:43,208 --> 00:07:44,625\\nProog...\\n\\n67\\n00:07:45,542 --> 00:07:47,333\\nVocê é doente, cara!\\n\\n68\\n00:07:47,375 --> 00:07:49,208\\nFique longe de mim.\\n\\n69\\n00:07:52,625 --> 00:07:55,083\\nNão!! Emo! É uma armadilha!\\n\\n70\\n00:07:55,875 --> 00:07:57,167\\nÉ uma armadilha!\\n\\n71\\n00:07:57,208 --> 00:08:01,792\\nÀ sua esquerda você pode ver...\\nOs jardins suspensos da Babilônia!\\n\\n72\\n00:08:02,250 --> 00:08:04,292\\nQue tal isso como uma armadilha?\\n\\n73\\n00:08:05,458 --> 00:08:07,125\\nNão, Emo.\\n\\n74\\n00:08:09,417 --> 00:08:12,833\\nÀ sua direita, você pode ver...\\nadivinhe só!\\n\\n75\\n00:08:13,000 --> 00:08:14,792\\nO colosso de Rhodes!\\n\\n76\\n00:08:15,875 --> 00:08:16,750\\nNão!\\n\\n77\\n00:08:16,792 --> 00:08:22,167\\nO colosso de Rhodes e\\nestá aqui só para você, Proog.\\n\\n78\\n00:08:51,333 --> 00:08:53,167\\nEstá aqui!\\n\\n79\\n00:08:53,208 --> 00:08:55,542\\nEstou dizendo,\\nEmo...\\n\\n80\\n00:08:57,333 --> 00:09:00,000\\n...está.',\n", + " 'bytes': 4681,\n", + " 'sha1': 'kxdn2dlr5f2o5e752ah1kn5v22kakau',\n", + " 'parent_id': 45478452,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356958,\n", + " 'timestamp': '2021-11-09T10:02:53Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8826055,\n", + " 'title': 'Elephants Dream.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.es.srt]] to [[TimedText:Elephants Dream.ogv.es.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nA la izquierda podemos ver...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nA la derecha podemos ver las...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...las corta cabezas.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nTodo es seguro.\\nPerfectamente seguro.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\n¿Emo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\n¡Cuidado!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\n¿Te lastimaste?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nCreo que no...\\n¿y tú?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nEstoy bien.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nLevántate.\\nEmo, no es seguro aquí.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nVámonos.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\n¿Ahora qué?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\n¡Ya verás!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\n¡Por aquí!\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\n¡Sígueme!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\n¡Corre Emo!\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\n¡No estás poniendo atención!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nSolo quiero contestar el...\\n...teléfono.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, mira,\\ndigo, escucha.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nTienes que aprender a escuchar.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nEsto no es un juego.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nTú, nosotros,\\npodemos morir fácilmente aquí afuera.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nEscucha...\\nlos sonidos de la máquina.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nEscucha tu respiración.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\n¿Y nunca te aburres de esto?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\n¿¡¿Aburrirme?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nLa máquina es como un reloj.\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nUn movimiento fuera de lugar...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...y quedarás hecho polvo.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\n¿Pero no es -\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\n¡Polvo, Emo!\\n¿Es eso lo que quieres? ¿Polvo?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\n¿Tu propósito en la vida?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nPolvo.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, cierra tus ojos.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\n¿Porqué?\\n- ¡Ahora!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nBien.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\n¿Que es lo que ves a tu izquierda Emo?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nNada.\\n- ¿De veras?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nNo hay nada.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nY a tu derecha,\\n¿qué es lo que ves a tu derecha Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nLo mismo Proog, exactamente lo mismo...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\n¡Nada!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\n¡Escucha Proog! ¡Escuchas eso!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\n¿Podemos ir aquí?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\n¿Allí? \\nNo es seguro.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nPero...\\n- Créeme, no lo es.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nTalvez yo podría...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNo.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNO!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\n¿Alguna otra pregunta Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNo.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\n¿Emo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, ¿porqué...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...¿porqué no puedes ver\\nla belleza de este lugar?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nComo funciona.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nQué tan perfecto es.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNo, Proog, no lo veo.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nNo lo veo porque no hay nada allí.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\n¿Y porqué debo confiar mi\\nvida a algo que no esta allí?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nBueno ¿puedes decirme eso?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nContéstame.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nEstás enfermo, hombre.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nAléjate de mí.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\n¡No! ¡Emo! ¡Es una trampa!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nEs una trampa.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nA tu izquierda puedes ver...\\n¡Los jardines colgantes de Babilonia!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\n¿Cómo te parece para una trampa?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNo, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nA tu derecha puedes ver...\\n...¿Adivina qué? ...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...¡El coloso de Rodas!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\n¡No!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nEl coloso de Rodas\\ny esta aquí solo para ti Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nSí esta allí...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nTe estoy diciendo,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...lo es.',\n", + " 'bytes': 4493,\n", + " 'sha1': 'klt7u1sse8euig8rqkkb2owr2og0ky3',\n", + " 'parent_id': 45478317,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356599,\n", + " 'timestamp': '2021-11-09T10:00:04Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8827387,\n", + " 'title': 'Elephants Dream.ogv.br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.br.srt]] to [[TimedText:Elephants Dream.ogv.br.srt]]: rename of the original file',\n", + " 'text': \"1\\n00:00:15,042 --> 00:00:18,042\\nWar an tu kleiz\\ne c'hallomp gwelout...\\n\\n2\\n00:00:18,583 --> 00:00:20,250\\nWar an tu dehou\\ne c'hallomp gwelout...\\n\\n3\\n00:00:20,333 --> 00:00:21,750\\n... Ar gwimeled-pennoù\\n\\n4\\n00:00:22,000 --> 00:00:24,500\\nTout zo dizañjer,\\nDizañjer tout !\\n\\n5\\n00:00:26,250 --> 00:00:27,250\\nEmo ?\\n\\n6\\n00:00:28,708 --> 00:00:30,208\\nDiwall !\\n\\n7\\n00:00:47,083 --> 00:00:48,208\\nMat eo ?\\n\\n8\\n00:00:51,750 --> 00:00:53,750\\nD'am soñj...\\nha c'hwi ?\\n\\n9\\n00:00:55,500 --> 00:00:57,083\\nMont a ra.\\n\\n10\\n00:00:57,458 --> 00:01:01,542\\nSav, Emo,\\nn'eo ket salv amañ.\\n\\n11\\n00:01:02,167 --> 00:01:03,542\\nDeomp dezhi !\\n\\n12\\n00:01:03,583 --> 00:01:05,583\\nHa goude ?\\n\\n13\\n00:01:05,708 --> 00:01:07,708\\nGwelout a ri !...\\n\\n14\\n00:01:16,125 --> 00:01:18,292\\nDre amañ !\\n\\n15\\n00:01:34,750 --> 00:01:35,625\\nDeus !\\n\\n16\\n00:02:11,458 --> 00:02:12,625\\nBuan, Emo !\\n\\n17\\n00:02:48,292 --> 00:02:50,083\\nN'out ket evezhus !\\n\\n18\\n00:02:50,583 --> 00:02:54,417\\nC'hoant 'meus nemet da respont da...\\n... d'ar bellgomz\\n\\n19\\n00:02:55,000 --> 00:02:58,167\\nEmo, sell... kentoc'h : selaou.\\n\\n20\\n00:02:59,583 --> 00:03:02,250\\nRet eo dit deskiñ selaou.\\n\\n21\\n00:03:03,500 --> 00:03:05,083\\nSe n'eo ket ur c'hoari.\\n\\n22\\n00:03:06,125 --> 00:03:08,583\\nTe, kentoc'h : ni a c'hallje\\neas mervel amañ.\\n\\n23\\n00:03:10,167 --> 00:03:14,083\\nSelaou trouzoù\\nar mekanik\\n\\n24\\n00:03:18,250 --> 00:03:20,333\\nSelaou da anal\\n\\n25\\n00:04:27,167 --> 00:04:29,208\\nBon, n'out ket skuizh ?\\n\\n26\\n00:04:29,458 --> 00:04:31,083\\nSkuizh ?!?\\n\\n27\\n00:04:31,583 --> 00:04:34,542\\nAr mekanik zo heñvel...\\nun orolaj !\\n\\n28\\n00:04:35,417 --> 00:04:37,583\\nUr fallvarch ha...\\n\\n29\\n00:04:37,667 --> 00:04:39,625\\nHa kaset out da frigas !\\n\\n30\\n00:04:41,042 --> 00:04:42,292\\nMet n'eo ket...\\n\\n31\\n00:04:42,333 --> 00:04:46,417\\nFrigas, Emo!\\nSe eo 'peus c'hoant da vezañ ?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nDa bal eo er vuhez ?\\n\\n33\\n00:04:50,458 --> 00:04:52,208\\nFrigas !\\n\\n34\\n00:05:41,667 --> 00:05:43,375\\nEmo, serr da zaoulagad !\\n\\n35\\n00:05:44,750 --> 00:05:46,458\\nPerak ?\\n— Bremañ !\\n\\n36\\n00:05:53,583 --> 00:05:56,042\\nMa !\\n\\n37\\n00:05:59,417 --> 00:06:02,625\\nPetra a welez a-gleiz, Emo ?\\n\\n38\\n00:06:04,333 --> 00:06:06,000\\nNetra.\\n— Evit gwir ?\\n\\n39\\n00:06:06,250 --> 00:06:07,750\\nNe welan tra ebet.\\n\\n40\\n00:06:08,042 --> 00:06:12,333\\nHag a-zehou,\\npetra a welez a-zehou, Emo?\\n\\n41\\n00:06:13,708 --> 00:06:16,750\\nMemes tra...\\nheñvel vi eo, Proog\\n\\n42\\n00:06:17,083 --> 00:06:18,458\\nNetra !\\n\\n43\\n00:06:40,500 --> 00:06:42,750\\nSelaouit, Proog !\\nKlevout a rit se ?\\n\\n44\\n00:06:43,500 --> 00:06:45,042\\nGallout a reomp\\nmont e-barzh ?\\n\\n45\\n00:06:45,167 --> 00:06:48,042\\nAze ?...\\nN'eo ket salv !\\n\\n46\\n00:06:49,750 --> 00:06:52,417\\nMet...\\n— Kred ac'hanon, n'eo ket.\\n\\n47\\n00:06:53,250 --> 00:06:54,625\\nHa ma, marteze...\\n\\n48\\n00:06:54,667 --> 00:06:56,250\\nKet.\\n\\n49\\n00:06:57,542 --> 00:07:00,125\\nKET !\\n\\n50\\n00:07:00,708 --> 00:07:03,583\\nGoulennoù all, Emo ?\\n\\n51\\n00:07:04,208 --> 00:07:05,750\\nKet.\\n\\n52\\n00:07:09,375 --> 00:07:10,667\\nEmo ?\\n\\n53\\n00:07:11,708 --> 00:07:13,417\\nEmo, perak...\\n\\n54\\n00:07:13,458 --> 00:07:14,375\\nEmo...\\n\\n55\\n00:07:14,417 --> 00:07:18,417\\n... perak ne c'hallez ket gwellout\\nkaerder al lec'h-mañ ?\\n\\n56\\n00:07:18,667 --> 00:07:20,583\\nE vont en-dro...\\n\\n57\\n00:07:20,708 --> 00:07:24,000\\nPegent peurvad !\\n\\n58\\n00:07:24,083 --> 00:07:27,333\\nKet, Proog... ne welan ket !\\n\\n59\\n00:07:27,417 --> 00:07:30,250\\nNe welan ket peogwir 'neus netra amañ...\\n\\n60\\n00:07:31,417 --> 00:07:35,250\\nHa perak fiziañ va buhez en un dra\\nn'emañ ket amañ ?\\n\\n61\\n00:07:35,458 --> 00:07:37,083\\nGallout a rez respont da se ?\\n\\n62\\n00:07:37,417 --> 00:07:39,125\\nRespont din.\\n\\n63\\n00:07:43,167 --> 00:07:44,458\\nProog...\\n\\n64\\n00:07:45,417 --> 00:07:47,250\\nTe zo klañv, paotr !\\n\\n65\\n00:07:47,292 --> 00:07:49,167\\nChom pell eus ac'hanon.\\n\\n66\\n00:07:52,458 --> 00:07:55,083\\nKet ! Emo ! Un toull trap eo !\\n\\n67\\n00:07:55,667 --> 00:07:57,125\\nUn toull trap eo\\n\\n68\\n00:07:57,167 --> 00:08:01,583\\nWar an tu kleiz e c'hallit gwelout\\nliorzhoù skourret Babilon !\\n\\n69\\n00:08:02,208 --> 00:08:04,250\\nPlij a ra dit evit\\nun toull trap ?\\n\\n70\\n00:08:05,375 --> 00:08:07,083\\nKet, Emo.\\n\\n71\\n00:08:09,333 --> 00:08:12,625\\nWar an tu dehou, e c'hallit gwelout...\\nBiskoazh !!\\n\\n72\\n00:08:13,000 --> 00:08:14,583\\n... Prell Rhodes eo !\\n\\n73\\n00:08:15,667 --> 00:08:16,583\\nKet !\\n\\n74\\n00:08:16,583 --> 00:08:22,125\\nPrell Rhodes eo !\\nHag amañ emañ nemet evidout, Proog !\\n\\n75\\n00:08:51,250 --> 00:08:53,125\\nBez emañ amañ !...\\n\\n76\\n00:08:53,167 --> 00:08:55,417\\nLavarout a ran dit,\\nEmo !...\\n\\n77\\n00:08:57,250 --> 00:09:00,000\\n... Amañ emañ.\",\n", + " 'bytes': 4460,\n", + " 'sha1': 'eaajgr6l3uecsxwd4zxwmh10njmiva6',\n", + " 'parent_id': 54661188,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356571,\n", + " 'timestamp': '2021-11-09T09:59:43Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8827394,\n", + " 'title': 'Elephants Dream.ogv.bg.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.bg.srt]] to [[TimedText:Elephants Dream.ogv.bg.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nОтляво можем да видим...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nОтдясно можем да видим...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...главорезачките.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nВсичко е безопасно.\\nНапълно безопасно.\\n\\n5\\n00:00:25,125 --> 00:00:26,125\\nЕмо?\\n\\n6\\n00:00:26,333 --> 00:00:27,333\\nЕмо?\\n\\n7\\n00:00:28,875 --> 00:00:30,250\\nПази се!\\n\\n8\\n00:00:47,125 --> 00:00:48,250\\nДобре ли си?\\n\\n9\\n00:00:51,917 --> 00:00:53,917\\nДа...\\nа ти?\\n\\n10\\n00:00:55,625 --> 00:00:57,125\\nДобре съм.\\n\\n11\\n00:00:57,583 --> 00:01:01,667\\nСтавай.\\nЕмо, тук не е безопасно.\\n\\n12\\n00:01:02,208 --> 00:01:03,667\\nДа тръгваме.\\n\\n13\\n00:01:03,750 --> 00:01:05,750\\nА сега какво?\\n\\n14\\n00:01:05,875 --> 00:01:07,875\\nЩе видиш!\\n\\n15\\n00:01:16,167 --> 00:01:18,375\\nЕмо.\\nОттук.\\n\\n16\\n00:01:34,958 --> 00:01:35,792\\nСлед мен!\\n\\n17\\n00:02:11,583 --> 00:02:12,792\\nПобързай, Емо.\\n\\n18\\n00:02:48,375 --> 00:02:50,083\\nНе внимаваш!\\n\\n19\\n00:02:50,750 --> 00:02:54,500\\nСамо искам да вдигна...\\n...телефона.\\n\\n20\\n00:02:55,000 --> 00:02:58,208\\nЕмо, виж,\\nискам да кажа слушай.\\n\\n21\\n00:02:59,750 --> 00:03:02,292\\nТрябва да се научиш да слушаш.\\n\\n22\\n00:03:03,625 --> 00:03:05,125\\nТова не ти е някаква игра.\\n\\n23\\n00:03:06,167 --> 00:03:08,750\\nТи, ние, можем лесно да умрем тук.\\n\\n24\\n00:03:10,208 --> 00:03:14,125\\nЧуй\\nзвуците на машината.\\n\\n25\\n00:03:18,333 --> 00:03:20,417\\nЧуй твоето дишане.\\n\\n26\\n00:04:27,208 --> 00:04:29,250\\nЕ, не ти ли омръзва това?\\n\\n27\\n00:04:29,583 --> 00:04:31,083\\nДа ми омръзва?!?\\n\\n28\\n00:04:31,750 --> 00:04:34,667\\nЕмо,\\nмашината е като часовников механизъм.\\n\\n29\\n00:04:35,500 --> 00:04:37,708\\nЕдно погрешно движение...\\n\\n30\\n00:04:37,833 --> 00:04:39,792\\n...и ще станеш на пихтия.\\n\\n31\\n00:04:41,042 --> 00:04:42,375\\nНо това не е ли...\\n\\n32\\n00:04:42,417 --> 00:04:46,542\\nПихтия, Емо!\\nТова ли искаш... пихтия?\\n\\n33\\n00:04:48,083 --> 00:04:50,000\\nЕмо,\\nтова ли е твоята цел в живота?\\n\\n34\\n00:04:50,583 --> 00:04:52,250\\nПихтия!\\n\\n35\\n00:05:41,833 --> 00:05:43,458\\nЕмо, затвори си очите.\\n\\n36\\n00:05:44,917 --> 00:05:46,583\\nЗащо?\\n- Сега!\\n\\n37\\n00:05:51,167 --> 00:05:52,333\\nДобре.\\n\\n38\\n00:05:53,750 --> 00:05:55,042\\nХубаво.\\n\\n39\\n00:05:59,542 --> 00:06:02,792\\nКакво виждаш отляво, Емо?\\n\\n40\\n00:06:04,417 --> 00:06:06,000\\nНищо.\\n- Наистина ли?\\n\\n41\\n00:06:06,333 --> 00:06:07,917\\nАбсолютно нищо.\\n\\n42\\n00:06:08,042 --> 00:06:12,417\\nНаистина ли? А отдясно,\\nкакво виждаш отдясно, Емо?\\n\\n43\\n00:06:13,875 --> 00:06:16,917\\nСъщото, Пруг, точно същото...\\n\\n44\\n00:06:17,083 --> 00:06:18,583\\nНищо!\\n\\n45\\n00:06:18,708 --> 00:06:20,208\\nЧудесно.\\n\\n46\\n00:06:40,625 --> 00:06:42,958\\nСлушай, Пруг! Чуваш ли това?\\n\\n47\\n00:06:43,625 --> 00:06:45,042\\nМоже ли да влезем тук?\\n\\n48\\n00:06:45,208 --> 00:06:48,042\\nТам? - Ами да.\\nНе е безопасно.\\n\\n49\\n00:06:49,917 --> 00:06:52,500\\nНо...\\n- Довери ми се, не е.\\n\\n50\\n00:06:53,292 --> 00:06:54,792\\nНо аз бих могъл...\\n\\n51\\n00:06:54,833 --> 00:06:56,333\\nНе.\\n\\n52\\n00:06:57,083 --> 00:06:57,667\\nНо...\\n\\n53\\n00:06:57,667 --> 00:07:00,167\\nНЕ!\\n\\n54\\n00:07:00,875 --> 00:07:03,750\\nНякакви други въпроси, Емо?\\n\\n55\\n00:07:04,250 --> 00:07:05,917\\nНе.\\n\\n56\\n00:07:09,458 --> 00:07:10,833\\nЕмо?\\n\\n57\\n00:07:10,958 --> 00:07:11,875\\nДа?\\n\\n58\\n00:07:11,875 --> 00:07:13,542\\nЕмо, защо...\\n\\n59\\n00:07:13,583 --> 00:07:14,458\\nЕмо...\\n\\n60\\n00:07:14,500 --> 00:07:18,500\\n...защо не можеш да видиш\\nколко е красиво това място?\\n\\n61\\n00:07:18,833 --> 00:07:20,750\\nКак действа.\\n\\n62\\n00:07:20,875 --> 00:07:24,000\\nКолко е съвършено.\\n\\n63\\n00:07:24,083 --> 00:07:27,417\\nНе, Пруг, не виждам.\\n\\n64\\n00:07:27,542 --> 00:07:30,333\\nНе виждам, защото там няма нищо.\\n\\n65\\n00:07:31,500 --> 00:07:35,333\\nИ защо трябва да поверя\\nживота си на нещо, което го няма?\\n\\n66\\n00:07:35,583 --> 00:07:37,125\\nЕ, можеш ли да ми кажеш?\\n\\n67\\n00:07:37,125 --> 00:07:39,167\\nЕмо...\\n- Отговори ми.\\n\\n68\\n00:07:43,208 --> 00:07:44,583\\nПруг...\\n\\n69\\n00:07:45,500 --> 00:07:47,333\\nТи си болен, човече.\\n\\n70\\n00:07:47,375 --> 00:07:49,208\\nСтой далеч от мен.\\n\\n71\\n00:07:52,583 --> 00:07:55,083\\nНе! Емо! Това е капан!\\n\\n72\\n00:07:55,833 --> 00:07:57,167\\nТова е капан.\\n\\n73\\n00:07:57,208 --> 00:08:01,750\\nОтляво можеш да видиш\\nвавилонските висящи градини!\\n\\n74\\n00:08:02,250 --> 00:08:04,292\\nКакъв капан, а?\\n\\n75\\n00:08:05,458 --> 00:08:07,125\\nНе, Емо.\\n\\n76\\n00:08:09,417 --> 00:08:12,792\\nОтдясно можеш да видиш...\\n...познай...\\n\\n77\\n00:08:13,000 --> 00:08:14,750\\n...Родоския колос!\\n\\n78\\n00:08:15,833 --> 00:08:16,708\\nНе!\\n\\n79\\n00:08:16,750 --> 00:08:22,167\\nРодоският колос\\nи той е тук само за теб, Пруг.\\n\\n80\\n00:08:51,333 --> 00:08:53,167\\nТо е там...\\n\\n81\\n00:08:53,208 --> 00:08:55,500\\nКазвам ти,\\nЕмо...\\n\\n82\\n00:08:57,333 --> 00:09:00,000\\n...там е.',\n", + " 'bytes': 5678,\n", + " 'sha1': 'oh7qte2x6e4lgjgtsp8eynwtkowhfe3',\n", + " 'parent_id': 54662560,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356703,\n", + " 'timestamp': '2021-11-09T10:01:25Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8827396,\n", + " 'title': 'Elephants Dream.ogv.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.ca.srt]] to [[TimedText:Elephants Dream.ogv.ca.srt]]: rename of the original file',\n", + " 'text': \"1\\n00:00:15,042 --> 00:00:18,042\\na l'esquerra podem veure...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nA la dreta podem veure...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...els escapça-caps.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nTot és segur,\\nperfectament segur.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nVigila!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nEstàs ferit?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nDiria que no...\\ni tu?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nEstic bé.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nAixeca't.\\nEmo, aquest lloc no és segur.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nAnem.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nQuè més?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nJa veuràs, ja veuràs!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nPer aquí.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nSegueix-me!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nAfanya't, Emo.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nNo pares atenció!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nNomés vull contestar al...\\n...telèfon.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, mira,\\nvull dir escolta.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nHas d'aprendre a escoltar.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nAixò no és un joc.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nTu, vull dir nosaltres,\\npodríem morir fàcilment aquí fora.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nEscolta,\\nels sons de la màquina.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nEscolta la teva respiració.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nNo te'n canses mai, d'això?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nCansar-me'n?!\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nLa màquina és com un\\nmecanisme de rellotgeria.\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nUn moviment en fals...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...i quedes reduït a pols.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nPerò no és...\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nPols, Emo!\\nÉs això el que vols, pols?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nEl teu objectiu a la vida?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nPols.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, Tanca els ulls.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nPer què?\\n- Ara!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nBé.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nQuè hi veus, a la teva esquerra, Emo?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nRes.\\n- De debò?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nRes de res.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nI a la dreta,\\nquè hi veus, a la dreta, Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nEl mateix Proog, exactament el mateix...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nRes! FALTA GREAT DL PROOG\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nEscolta Proog! Ho sents, això!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nPodem anar aquí?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nAllí? \\nNo és pas segur.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nPerò...\\n- Creu-me, no ho és.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nPotser puc...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNo. FALTA Però d'EMO\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNO!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nCap més pregunta, Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNo.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, Per què...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...Per què no pots veure...\\nla bellesa d'aquest lloc?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nLa manera com funciona.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nCom és de perfecte.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNo, Proog, no ho veig.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nNo ho veig perquè no hi ha res.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nPer què coi hauria de\\ncreure-m'ho si no hi és?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nM'ho pots explicar, això?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nContesta'm.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nEstàs malalt.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nAllunya't de mi.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nNo! Emo! És una trampa!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nÉs una trampa...\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nA la seva esquerra poden veure\\nels Jardins penjants de Babilònia!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nQuè et sembla això com a trampa?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNo, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nA la seva dreta poden veure Endevina-ho...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...el Colós de Rodes!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNo!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nEl Colós de Rodes.\\nÉs aquí només per a tu, Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nHi és...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\net dic que,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...hi és.\",\n", + " 'bytes': 4427,\n", + " 'sha1': 'kvfrozsrkfpopdndn1zwj3hzc11vpwm',\n", + " 'parent_id': 54662088,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95190605,\n", + " 'timestamp': '2013-04-27T08:02:00Z',\n", + " 'user': {'id': 55568, 'text': 'Littletung'},\n", + " 'page': {'id': 8827398,\n", + " 'title': 'Elephants Dream (high quality).ogv.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Littletung moved page [[TimedText:Elephants Dream.ogg.zh.srt]] to [[TimedText:Elephants Dream (high quality).ogv.zh.srt]]',\n", + " 'text': '1\\n00:00:15,000 --> 00:00:17,951\\n站在左边我们可以看到……\\n\\n2\\n00:00:18,166 --> 00:00:20,083\\n站在右边我们可以看到……\\n\\n3\\n00:00:20,119 --> 00:00:21,962\\n……那个怪物的头\\n\\n4\\n00:00:21,999 --> 00:00:24,368\\n所有的事情都很安全了\\n完全安全了\\n\\n5\\n00:00:24,582 --> 00:00:27,035\\nEmo?\\n\\n6\\n00:00:28,206 --> 00:00:29,996\\n当心!\\n\\n7\\n00:00:47,037 --> 00:00:48,494\\n你受伤了吗?\\n\\n8\\n00:00:51,994 --> 00:00:53,949\\n我觉得没有,你呢?\\n\\n9\\n00:00:55,160 --> 00:00:56,985\\n我很好\\n\\n10\\n00:00:57,118 --> 00:01:01,111\\n起来吧,这里不太安全\\n\\n11\\n00:01:02,034 --> 00:01:03,573\\n一起走吧\\n\\n12\\n00:01:03,610 --> 00:01:05,114\\n下一个是什么?\\n\\n13\\n00:01:05,200 --> 00:01:09,146\\n你会看到的!\\n\\n14\\n00:01:16,032 --> 00:01:18,022\\nEmo,\\n走这边!\\n\\n15\\n00:01:34,237 --> 00:01:35,481\\n跟着我!\\n\\n16\\n00:02:11,106 --> 00:02:12,480\\n快!\\n\\n17\\n00:02:48,059 --> 00:02:49,930\\n你怎么没有集中注意力!\\n\\n18\\n00:02:50,142 --> 00:02:54,052\\n我只是想接个……\\n……个电话\\n\\n19\\n00:02:54,974 --> 00:02:57,972\\nemo,看,听!\\n\\n20\\n00:02:59,140 --> 00:03:02,008\\n你需要来学习一下该怎么听\\n\\n21\\n00:03:03,140 --> 00:03:04,965\\n这不是游戏\\n\\n22\\n00:03:05,056 --> 00:03:09,345\\n你,我们,可能很容易死在这里\\n\\n23\\n00:03:10,014 --> 00:03:13,959\\n听,\\n听机器的声音\\n\\n24\\n00:03:18,054 --> 00:03:20,009\\n听你的呼吸\\n\\n25\\n00:04:27,001 --> 00:04:28,956\\n那么,你对这个难道就不厌倦吗?\\n\\n26\\n00:04:29,084 --> 00:04:30,909\\n厌倦?!?\\n\\n27\\n00:04:31,126 --> 00:04:34,491\\nEmo,这个机器就象一个精确的时钟\\n\\n28\\n00:04:35,083 --> 00:04:37,074\\n如果一步错了……\\n\\n29\\n00:04:37,166 --> 00:04:39,121\\n……你就会被碾成碎末\\n\\n30\\n00:04:40,958 --> 00:04:42,004\\n但难道……\\n\\n31\\n00:04:42,041 --> 00:04:46,034\\n碎末,emo!\\n这是你想要的结果吗,碎末?\\n\\n32\\n00:04:47,040 --> 00:04:48,995\\n你生活的的目标难道就是……\\n\\n33\\n00:04:50,081 --> 00:04:51,953\\n……碎末?\\n\\n34\\n00:05:41,156 --> 00:05:43,028\\nEmo,闭上你的眼睛\\n\\n35\\n00:05:44,156 --> 00:05:46,027\\n为什么\\n- 闭上!\\n\\n36\\n00:05:51,155 --> 00:05:52,102\\n好吧\\n\\n37\\n00:05:53,113 --> 00:05:54,688\\n很好\\n\\n38\\n00:05:59,070 --> 00:06:02,103\\n你在你的左边看到了什么,Emo?\\n\\n39\\n00:06:04,028 --> 00:06:05,899\\n没有东西\\n- 是吗?\\n\\n40\\n00:06:06,027 --> 00:06:07,105\\n完全没有东西\\n\\n41\\n00:06:07,944 --> 00:06:11,984\\n那么在你的右边,\\n在你的右边能看到什么,Emo?\\n\\n42\\n00:06:13,151 --> 00:06:16,102\\n还是一样的,proog,完全一样……\\n\\n43\\n00:06:16,942 --> 00:06:19,098\\n……没有东西!\\n- 非常好\\n\\n44\\n00:06:40,105 --> 00:06:42,724\\n听,proog!你听到那个声音了吗!\\n\\n45\\n00:06:43,105 --> 00:06:44,894\\n我们能去这里吗?\\n\\n46\\n00:06:44,979 --> 00:06:47,894\\n那里?那里不安全,Emo。\\n\\n47\\n00:06:49,145 --> 00:06:52,013\\n但是……\\n- 相信我,别去\\n\\n48\\n00:06:53,020 --> 00:06:54,145\\n也许,我能……\\n\\n49\\n00:06:54,181 --> 00:06:55,969\\n不行\\n\\n50\\n00:06:57,102 --> 00:06:59,934\\n不行!\\n\\n51\\n00:07:00,144 --> 00:07:03,058\\n还有其他问题吗,Emo?\\n\\n52\\n00:07:03,976 --> 00:07:05,090\\n没有了\\n\\n53\\n00:07:09,059 --> 00:07:10,089\\nEmo?\\n\\n54\\n00:07:11,142 --> 00:07:13,058\\nEmo,为什么……\\n\\n55\\n00:07:13,095 --> 00:07:14,022\\nEmo……\\n\\n56\\n00:07:14,058 --> 00:07:18,003\\n……为什么你不能看见\\n这里\\n\\n57\\n00:07:18,141 --> 00:07:20,048\\n这条路走对了\\n\\n58\\n00:07:20,140 --> 00:07:23,895\\n多么完美啊\\n\\n59\\n00:07:23,932 --> 00:07:26,964\\n对,Proog,我没有看见\\n\\n60\\n00:07:27,056 --> 00:07:29,970\\n我没有看见是因为那里空无一物\\n\\n61\\n00:07:31,055 --> 00:07:34,965\\n那为什么我要把我的性命托付给根本不存在的东西?\\n\\n62\\n00:07:35,055 --> 00:07:36,926\\n你能告诉我为什么吗?\\n\\n63\\n00:07:37,054 --> 00:07:38,926\\n回答我!\\n\\n64\\n00:07:42,970 --> 00:07:44,000\\nProog……\\n\\n65\\n00:07:45,053 --> 00:07:46,985\\n……你个有病的人!\\n\\n66\\n00:07:47,022 --> 00:07:48,918\\n别靠近我!\\n\\n67\\n00:07:52,052 --> 00:07:54,884\\n不!Emo!那是陷阱!\\n\\n68\\n00:07:55,135 --> 00:07:56,931\\n啊,那是陷阱\\n\\n69\\n00:07:56,968 --> 00:08:01,043\\n站在左边你能看到\\n漂浮的巴比伦花园!\\n\\n70\\n00:08:01,967 --> 00:08:03,957\\n那怎么会是陷阱\\n\\n71\\n00:08:05,050 --> 00:08:06,922\\n不,Emo\\n\\n72\\n00:08:09,008 --> 00:08:12,088\\n站在右边你能看到……\\n……嗯猜猜看……\\n\\n73\\n00:08:12,924 --> 00:08:14,665\\n……罗德岛巨像!\\n\\n74\\n00:08:15,132 --> 00:08:16,053\\n不!\\n\\n75\\n00:08:16,090 --> 00:08:21,919\\n罗德岛巨像\\n它在那等你呢,Proog.\\n\\n76\\n00:08:51,001 --> 00:08:52,923\\n它在那……\\n\\n77\\n00:08:52,959 --> 00:08:56,040\\n我给你说了,Emo……\\n\\n78\\n00:08:57,000 --> 00:08:59,867\\n……那是……',\n", + " 'bytes': 4702,\n", + " 'sha1': 'l6suepcgma187o3rxo4eaeuls6p05qc',\n", + " 'parent_id': 35131272,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356688,\n", + " 'timestamp': '2021-11-09T10:01:17Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8827399,\n", + " 'title': 'Elephants Dream.ogv.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.cs.srt]] to [[TimedText:Elephants Dream.ogv.cs.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nNalevo, nalevo vidíme...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nNapravo vidíme...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...Mor ...Mordy.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nJe to tu bezpeèný.\\nNaprosto bezpeèný.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmone?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nEmone, pozor!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nJsi zranìnej?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nNe, asi ne...\\na ty?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nJá jsem v pohodì.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nVstaò\\nEmone, není to tu bezpeèný.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nJdeme.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nA co dál?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nUvidíš! Uvidíš!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmone, tudy!\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nPojï za mnou!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nRychle, Emone.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nEmone, ty si nedáváš pozor!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nJenom chci zvednout ten...\\n...ten telefon.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmone, podívej,\\nposlouchej mì.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nMusíš se nauèit poslouchat.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nTohle není žádná hra.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nMùžeš, teda vlastnì mùžeme, tu klidnì umøít.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nPoslouchej!\\nPoslouchej zvuky toho stroje.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nPoslouchej svùj dech.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nCopak z toho už nejsi unavenej?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nUnavenej?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nEmone, ten stroj je jako...\\njako hodiny.\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nJeden krok vedle a...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...a jsi napadr\\x9d.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nAle pøece...\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nNapadr\\x9d, Emone!\\nTo bys chtìl být, napadr\\x9d?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nTo je tvým životním cílem, Emone?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nNapadr\\x9d!\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmone, zavøi oèi.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nProè?\\nTeï!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nDobøe.\\nFajn.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nEmone, vidíš nìco nalevo? No?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nNe, nic.\\n- Fakt nic?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nNe, vùbec nic.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nVážnì,...a napravo,\\nco vidíš napravo, Emone?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nHmmm, to samý, Progu, pøesnì to samý...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nNic!\\nSkvìlý.\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nProgu, poslouchej! Slyšíš to!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nJdeme tam?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nTam?\\nTo není bezpeèný, Emone.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nAle...\\n- Vìø mi, není.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nAle, možná bych mohl...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNe.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNE!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nNìjaký další otázky, Emone?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNe.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmone?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmone, jak to...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmone...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...jak to, že nevidíš, jak je to tu krásný?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nJak to všechno funguje.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nJak je to dokonalý.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNe, Progu, nevidim.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nNevidím, protože tu nic není.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nA proè bych mìl svìøit svùj\\nživot nìèemu, co neexistuje?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nMùžeš mi to øíct?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nOdpovìz.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nHele Progu...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\n...ty jsi vážnì nemocnej.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nNepøibližuj se ke mnì.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nNe! Emone! Je to past!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nJe to past.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nNalevo vidíš\\nvisuté zahrady babylonské!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nCo je tohle za past?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNe, Emone.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nNapravo vidíš...\\n...Hádej co!\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...Rhodský kolos!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNe!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nRhodský kolos\\na je tu jen pro tebe, Progu.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nJe to tam...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nØíkám ti,\\nEmone...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...je.',\n", + " 'bytes': 4426,\n", + " 'sha1': 'gq33v4lthj65zil5mje29xq5d2f3m2h',\n", + " 'parent_id': 54661005,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356657,\n", + " 'timestamp': '2021-11-09T10:00:47Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8827402,\n", + " 'title': 'Elephants Dream.ogv.da.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.da.srt]] to [[TimedText:Elephants Dream.ogv.da.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nTil venstre ser vi ...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nTil højre ser vi...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...hovedsnerlene.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nAlt er trygt.\\nhelt trygt.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nPas på!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nEr du kommet noget til?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nDet tror jeg ikke -\\ndig?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nJeg er okay.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nOp med dig Emo, det er ikke sikkert her.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nKom så.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nHvad så nu?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nDu får se!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nDu får se.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nFølg mig!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nSkynd dig Emo.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nDu er ikke opmærksom!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nJeg vil bare tage -\\n- telefonen.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo se,\\njeg mener hør.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nDu bliver nødt til at lære at lytte.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nDet her er ikke en leg.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nDu - vi - kunne let dø her\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nLyt\\ntil maskinens lyde.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nLyt til dit åndedrag.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nBliver du aldrig træt af dette?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nTræt?!\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nEmo, maskinen er som urværk\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nEn forkert bevægelse og -\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n- du bliver kværnet til mos.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nMen er det ikke -\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nMos, Emo!\\nEr det hvad du ønsker? Mos?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nEmo, hvad vil du med dit liv?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nMos!\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, luk øjnene.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nHvorfor?\\n- Nu!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nGodt.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nHvad ser du til venstre?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nIntet.\\n- Virkelig?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nNej, slet ingenting.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nOg til højre,\\nhvad ser du til højre?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nDet samme Proog, præcis det samme -\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\n- Intet!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nHør Proog! Kan du høre det!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nKan vi gå derind?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nDerinde? \\nDet er ikke sikkert.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nMen...\\n- Stol på mig, det er det ikke.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nMåske kunne jeg -\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNej.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNEJ!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nAndre spørgsmål Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNej.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, hvorfor -\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\n- Emo -\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n- hvorfor ser du ikke\\nskønheden i det?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nMåden det fungerer på.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nhvor fuldendt det er?\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNej Proog, Det ser jeg ikke -\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\n- fordi der er ikke noget at se.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nOg hvorfor skulle jeg risikere mit liv \\nfor noget som ikke findes?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nKan du sige mig det?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nSvar mig!.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nDu er syg, mand!\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nHold dig væk\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nNej! Emo! Det er en fælde!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nDet er en fælde\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nTil venstre kan du se \\nde hængende haver i Babylon!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nDet var noget af en fælde.\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNej Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nTil højre kan du se -\\n- Gæt en gang -\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n- kolossen på Rhodos!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNej!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nKolossen på Rhodos\\nspecielt for dig, Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nDen er der...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nJeg siger dig Emo -\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n- Den er.',\n", + " 'bytes': 4301,\n", + " 'sha1': 'biw2paf5pk9hce0vzabgetqeougo947',\n", + " 'parent_id': 54661341,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 244653186,\n", + " 'timestamp': '2017-05-19T15:15:00Z',\n", + " 'user': {'id': 607047, 'text': 'Krinkle'},\n", + " 'page': {'id': 8827404,\n", + " 'title': 'Elephants Dream.ogv.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Krinkle moved page [[TimedText:Elephants Dream.ogg.nl.srt]] to [[TimedText:Elephants Dream.ogv.nl.srt]]',\n", + " 'text': '1\\n00:00:15,000 --> 00:00:18,000\\nAan de linkerzijde zien we...\\n\\n2\\n00:00:18,167 --> 00:00:20,083\\nAan de rechterzijde zien we...\\n\\n3\\n00:00:20,083 --> 00:00:22,000\\n...de kopknippers.\\n\\n4\\n00:00:22,000 --> 00:00:24,417\\nAlles is veilig,\\nvolkomen veilig.\\n\\n5\\n00:00:24,583 --> 00:00:27,083\\nEmo?\\n\\n6\\n00:00:28,208 --> 00:00:30,042\\nPas op!\\n\\n7\\n00:00:47,042 --> 00:00:48,542\\nBen je gewond?\\n\\n8\\n00:00:52,000 --> 00:00:54,000\\nIk denk het niet.\\nJij?\\n\\n9\\n00:00:55,167 --> 00:00:57,042\\nIk ben ok.\\n\\n10\\n00:00:57,125 --> 00:01:01,167\\nOpstaan.\\nEmo, het is niet veilig hier.\\n\\n11\\n00:01:02,042 --> 00:01:03,167\\nKom, we gaan.\\n\\n12\\n00:01:03,167 --> 00:01:05,167\\nEn wat nu?\\n\\n13\\n00:01:05,208 --> 00:01:07,208\\nDaar kom je wel achter!\\n\\n14\\n00:01:16,042 --> 00:01:18,083\\nEmo,\\ndeze kant.\\n\\n15\\n00:01:34,250 --> 00:01:35,542\\nVolg mij!\\n\\n16\\n00:02:11,125 --> 00:02:12,542\\nSchiet op Emo!\\n\\n17\\n00:02:48,083 --> 00:02:50,000\\nJe let niet op!\\n\\n18\\n00:02:50,167 --> 00:02:54,125\\nIk wil alleen maar...\\n...de telefoon opnemen.\\n\\n19\\n00:02:55,000 --> 00:02:58,042\\nEmo, kijk,\\nik bedoel luister.\\n\\n20\\n00:02:59,167 --> 00:03:02,083\\nJe moet leren luisteren.\\n\\n21\\n00:03:03,167 --> 00:03:05,042\\nDit is geen spelletje.\\n\\n22\\n00:03:05,083 --> 00:03:09,417\\nJij, ik bedoel wij,\\nzouden hier kunnen omkomen.\\n\\n23\\n00:03:10,042 --> 00:03:14,042\\nLuister naar de geluiden van de machine.\\n\\n24\\n00:03:18,083 --> 00:03:20,083\\nLuister naar je ademhaling.\\n\\n25\\n00:04:27,042 --> 00:04:29,042\\nGaat je dit nou nooit vervelen?\\n\\n26\\n00:04:29,125 --> 00:04:31,000\\nVervelen?\\n\\n27\\n00:04:31,167 --> 00:04:34,583\\nEmo, de machine is als een uurwerk.\\n\\n28\\n00:04:35,125 --> 00:04:37,167\\nEen verkeerde stap...\\n\\n29\\n00:04:37,208 --> 00:04:39,208\\n...en je wordt tot pulp vermalen.\\n\\n30\\n00:04:41,000 --> 00:04:42,083\\nMaar is het niet -\\n\\n31\\n00:04:42,083 --> 00:04:46,125\\nPulp, Emo!\\nIs dat wat je wilt, pulp?\\n\\n32\\n00:04:47,083 --> 00:04:49,083\\nEmo, jouw levensdoel...\\n\\n33\\n00:04:50,125 --> 00:04:52,042\\n...pulp?\\n\\n34\\n00:05:41,208 --> 00:05:43,125\\nEmo, doe je ogen dicht.\\n\\n35\\n00:05:44,208 --> 00:05:46,125\\nHoezo?\\n- Nu meteen!\\n\\n36\\n00:05:51,208 --> 00:05:52,208\\nOk.\\n\\n37\\n00:05:53,167 --> 00:05:54,792\\nGoed zo.\\n\\n38\\n00:05:59,125 --> 00:06:02,208\\nWat zie je aan je linkerzijde, Emo?\\n\\n39\\n00:06:04,083 --> 00:06:06,000\\nNiets.\\n- Echt?\\n\\n40\\n00:06:06,083 --> 00:06:07,208\\nNee, helemaal niets.\\n\\n41\\n00:06:08,000 --> 00:06:12,083\\nEn rechts van je?\\nWat zie je aan je rechterzijde, Emo?\\n\\n42\\n00:06:13,208 --> 00:06:16,208\\nHetzelfde Proog, precies hetzelfde...\\n\\n43\\n00:06:17,000 --> 00:06:19,208\\n...niets!\\n- Mooi.\\n\\n44\\n00:06:40,167 --> 00:06:42,833\\nLuister Proog!\\nHoor je dat?\\n\\n45\\n00:06:43,167 --> 00:06:45,000\\nKunnen we hierheen?\\n\\n46\\n00:06:45,042 --> 00:06:48,000\\nDaar?\\nHet is onveilig, Emo.\\n\\n47\\n00:06:49,208 --> 00:06:52,125\\nMaar...\\n- Geloof me, het is niet veilig.\\n\\n48\\n00:06:53,083 --> 00:06:54,208\\nMaar misschien kan ik...\\n\\n49\\n00:06:54,208 --> 00:06:56,083\\nNee.\\n\\n50\\n00:06:57,167 --> 00:07:00,042\\nNEE!\\n\\n51\\n00:07:00,208 --> 00:07:03,167\\nHeb je nog meer vragen Emo?\\n\\n52\\n00:07:04,042 --> 00:07:05,208\\nNee.\\n\\n53\\n00:07:09,125 --> 00:07:10,208\\nEmo?\\n\\n54\\n00:07:11,208 --> 00:07:13,125\\nEmo, waarom...\\n\\n55\\n00:07:13,125 --> 00:07:14,125\\nEmo...\\n\\n56\\n00:07:14,125 --> 00:07:18,125\\n...waarom zie je niet hoe mooi\\nhet hier is?\\n\\n57\\n00:07:18,208 --> 00:07:20,167\\nHoe het werkt.\\n\\n58\\n00:07:20,208 --> 00:07:24,000\\nHoe perfect het is.\\n\\n59\\n00:07:24,000 --> 00:07:27,083\\nNee, Proog, ik zie het niet.\\n\\n60\\n00:07:27,125 --> 00:07:30,083\\nIk zie het niet omdat er niets is.\\n\\n61\\n00:07:31,125 --> 00:07:35,083\\nEn waarom zou ik mijn leven\\ntoevertrouwen aan iets dat er niet is?\\n\\n62\\n00:07:35,125 --> 00:07:37,042\\nKun je me dat uitleggen?\\n\\n63\\n00:07:37,125 --> 00:07:39,042\\nGeef antwoord!\\n\\n64\\n00:07:43,042 --> 00:07:44,125\\nProog...\\n\\n65\\n00:07:45,125 --> 00:07:47,083\\n...je bent gestoord!\\n\\n66\\n00:07:47,083 --> 00:07:49,042\\nBlijf uit mijn buurt!\\n\\n67\\n00:07:52,125 --> 00:07:55,000\\nNee, Emo! Het is een valstrik!\\n\\n68\\n00:07:55,208 --> 00:07:57,042\\nOh, het is een valstrik?\\n\\n69\\n00:07:57,042 --> 00:08:01,167\\nAan de linkerzijde zien we\\nde hangende tuinen van Babylon!\\n\\n70\\n00:08:02,042 --> 00:08:04,083\\nIs dat geen mooie valstrik?\\n\\n71\\n00:08:05,125 --> 00:08:07,042\\nNee, Emo.\\n\\n72\\n00:08:09,083 --> 00:08:12,208\\nAan de rechterzijde zien we,\\nraad eens?...\\n\\n73\\n00:08:13,000 --> 00:08:14,792\\n...de kolossus van Rhodos!\\n\\n74\\n00:08:15,208 --> 00:08:16,167\\nNee!\\n\\n75\\n00:08:16,167 --> 00:08:22,042\\nDe kolossos van Rhodos.\\nHier speciaal voor jou, Proog.\\n\\n76\\n00:08:51,083 --> 00:08:53,042\\nHet is er wel...\\n\\n77\\n00:08:53,042 --> 00:08:56,167\\nIk verzeker je,\\nEmo...\\n\\n78\\n00:08:57,083 --> 00:09:00,000\\n...het is er.',\n", + " 'bytes': 4517,\n", + " 'sha1': 'e9emm06c3hy2ic150akgc1duu24typ0',\n", + " 'parent_id': 45478388,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356916,\n", + " 'timestamp': '2021-11-09T10:02:43Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8827405,\n", + " 'title': 'Elephants Dream.ogv.et.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.et.srt]] to [[TimedText:Elephants Dream.ogv.et.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nJa… Ja vasakul võime näha...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nParemal võime näha...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...peade-tükeldajaid.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nKõik on ohutu.\\nTäiesti ohutu.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nVaata ette!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nKas said viga?\\n\\n8\\n00:00:51,917 --> 00:00:54,083\\nMa arvan et mitte...\\naga sina?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nMinuga on kõik korras.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nTõuse püsti.\\nEmo, siin ei ole ohutu.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nLähme.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nMis järgmiseks?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nKüll näed!\\n\\n14\\n00:01:17,250 --> 00:01:19,042\\nEmo.\\nSiiapoole.\\n\\n15\\n00:01:34,792 --> 00:01:35,792\\nJärgne mulle!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nKiirusta Emo.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nSa ei pane tähele!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nMa tahan lihtsalt vastata...\\n...telefonile.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, vaata,\\ntähendab kuula.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nSa pead õppima kuulama.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nSee ei ole mingi mäng.\\n\\n22\\n00:03:06,167 --> 00:03:10,417\\nSina, meie, võime siin kergesti surma saada.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nKuula,\\nkuula masina hääli.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nKuula oma hingamist.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nKas sa sellest kunagi ära ei tüdine?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nTüdine?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nSee masin on kui kellavärk\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nVäike nihe paigast ära ja...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...ja sa oled lihtsalt lihahunnik põrandal.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nAga kas see pole -\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nLihahunnik, Emo!\\nKas see on see mida sa tahad, lihahunnik?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nSinu elu saavutus?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nLihahunnik.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, sulge oma silmad.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nMiks?\\n- Nüüd!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nHea.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nMida sa näed endast vasakul?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nMitte midagi.\\n- Kas tõesti?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nMitte kui midagi\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nJa endast paremal,\\nmida sa näed endast paremal?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nSeda sama Proog, täpselt seda sama...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nMitte kui midagi!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nKuula Proog! Kas sa kuuled seda!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nKas me siit võime minna?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nSealt? \\nSee ei ole ohutu.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nAga...\\n- Usalda mind, see pole ohutu.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nVõibolla ma võiksin...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nEi.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nEI!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nOn veel küsimusi, Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nEi.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, miks...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...miks sa ei näe\\nselle koha ilu?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nSee kuidas kõik töötab.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nKui täiuslik see on.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nEi, Proog, ma ei näe.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nMa ei näe, sest siin ei ole midagi.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nJa miks peaksin oma elu usaldama\\nmillegile mida ei ole olemas?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nKas oskad mulle seda öelda?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nVasta mulle.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nSa oled haige, mees.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nHoia minust eemale.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nEi! Emo! See on lõks!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nSee on lõks.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nVasakul pool võid näha\\nBabyloni rippaedu!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nKuidas on see lõks?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nEi, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nParemal pool võid näha...\\n...arva mida...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...Rhodese kolossi!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nEi!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nRhodese koloss\\nja see on siin ainult sulle Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nSee on seal..\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nMa ütlen sulle,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...see on.',\n", + " 'bytes': 4441,\n", + " 'sha1': 't6ox0pg15mv13ffyd8n0f7k0ktz65qz',\n", + " 'parent_id': 54661956,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356905,\n", + " 'timestamp': '2021-11-09T10:02:34Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8827407,\n", + " 'title': 'Elephants Dream.ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.fi.srt]] to [[TimedText:Elephants Dream.ogv.fi.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nVasemmalla voimme nähdä...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nOikealla voimme nähdä...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...päähirmut.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nOn turvallista.\\nTäysin turvallista.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nVaro!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nSatutitko itsesi?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nEnpä tainnut...\\nEntä sinä?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nOlen kunnossa.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nNouse ylös.\\nEmo, täällä ei ole turvallista.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nMennään.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nMitä seuraavaksi?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nTulet näkemään!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nTätä tietä.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nSeuraa minua!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nNopeasti Emo.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nEt kiinnitä huomiota!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nHalusin vain vastata...\\n...puhelimeen.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, katso,\\ntarkoitan kuuntele.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nSinun täytyy oppia kuuntelemaan.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nTämä ei ole vain jokin leikki.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nSinä, me, voisimme kuolla täällä helposti.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nKuuntele,\\nkuuntele koneen ääniä.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nKuuntele hengitystäsi.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nEtkö sinä ikinä väsy tähän?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nVäsy?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nKone on kuten seinäkello.\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nTarpeeton liike...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...ja olet mennyttä.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nMutta eikö se -\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nMennyttä, Emo!\\nSitäkö haluat?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nElämäsi tavoite?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nOlla mennyttä.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, sulje silmäsi.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nMiksi?\\n- Nyt!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nHyvä.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nMitä näet vasemmalla Emo?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nEn mitään.\\n- Todellako?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nEn yhtään mitään.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nJa oikealla,\\nmitä näet oikealla Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nEn mitään Proog, en yhtään mitään...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nEn mitään!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nKuuntele Proog! Kuuletko tuon!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nVoimmeko mennä tuonne?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nTuonne? \\nSe ei ole turvallista.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nMutta...\\n- Luota minuun, se ei ole.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nKenties voisin...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nEi.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nEI!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nEnempiä kysymyksiä Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nEi.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, miksi...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...miksi et voi nähdä\\ntämän paikan kauneutta?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nSitä kuinka se toimii.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nKuinka täydellinen se on.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nEi, Proog, en näe.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nEn näe, koska täällä ei ole mitään.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nJa miksi minun tulisi luottaa\\nhenkeni jollekin jota ei ole?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nVoitko kertoa minulle sen?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nVastaa minulle.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nSinä olet sairas.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nPysy kaukana minusta.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nEi! Emo! Se on ansa!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nSe on ansa.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nVasemmalla voit nähdä\\nBabylonin riippuvat puutarhat!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nVaikuttaako tuo ansalta?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nEi, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nOikealla voit nähdä...\\n...arvaa mitä...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...Rhodoksen kolossin!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nEi!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nRhodoksen kolossi\\nja vain sinua varten Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nSe on tuolla...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nIhan oikeasti,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...se on.',\n", + " 'bytes': 4419,\n", + " 'sha1': 'fb8b2mqntes3o6cnzy0tzw3wjjr3s2x',\n", + " 'parent_id': 54662170,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356748,\n", + " 'timestamp': '2021-11-09T10:02:16Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8827408,\n", + " 'title': 'Elephants Dream.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.fr.srt]] to [[TimedText:Elephants Dream.ogv.fr.srt]]: rename of the original file',\n", + " 'text': \"1\\n00:00:15,000 --> 00:00:18,000\\nÀ votre gauche vous pouvez voir…\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nÀ votre droite vous pouvez voir les…\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n… les étêteurs.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nTout est sans danger. Parfaitement sans danger.\\n\\n5\\n00:00:26,000 --> 00:00:27,000\\nEmo ?\\n\\n6\\n00:00:28,625 --> 00:00:30,000\\nAttention !\\n\\n7\\n00:00:46,917 --> 00:00:48,000\\nTu n’as rien ?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nJe crois pas… et vous ?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nÇa va.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nLève-toi. Emo, ce n’est pas sûr ici.\\n\\n11\\n00:01:02,000 --> 00:01:03,208\\nAllons-y.\\n\\n12\\n00:01:03,833 --> 00:01:05,083\\nEt après ?\\n\\n13\\n00:01:05,875 --> 00:01:08,000\\nTu verras !\\n\\n14\\n00:01:16,167 --> 00:01:18,167\\nEmo. Par ici.\\n\\n15\\n00:01:34,875 --> 00:01:35,875\\nSuis-moi !\\n\\n16\\n00:02:11,417 --> 00:02:12,625\\nCours, Emo !\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nTu n’es pas attentif !\\n\\n18\\n00:02:51,000 --> 00:02:54,333\\nJe veux juste répondre au… téléphone.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, regarde, je veux dire : écoute.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nTu dois apprendre à écouter.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nCe n’est pas un jeu.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nTu… Nous pourrions facilement mourir ici.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nÉcoute, les sons de la machine.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nÉcoute ta respiration.\\n\\n25\\n00:04:26,917 --> 00:04:29,208\\nÇa ne vous lasse pas, à force ?\\n\\n26\\n00:04:29,583 --> 00:04:30,833\\nMe lasser ?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nLa machine est comme un mécanisme d'horlogerie.\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nUn faux pas…\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n… et tu es écrabouillé.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nMais n’est-ce pas…\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nÉcrabouillé, Emo ! C’est ce que tu veux, être écrabouillé ?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nC’est ton but dans la vie ?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nÉcrabouillé.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, ferme les yeux.\\n\\n35\\n00:05:44,750 --> 00:05:46,333\\n- Pourquoi ?\\n- Maintenant !\\n\\n36\\n00:05:53,750 --> 00:05:55,667\\nBien.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nQue vois-tu à ta gauche, Emo ?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\n- Rien.\\n- Vraiment ?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nRien du tout.\\n\\n40\\n00:06:08,250 --> 00:06:12,417\\nEt à ta droite, que vois-tu à ta droite, Emo ?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nLa même chose Proog, la même chose…\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nRien !\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nÉcoutez Proog ! Vous entendez ça ?\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nOn peut y aller ?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nLà ? Ce n’est pas prudent.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\n- Mais…\\n- Crois-moi, ça ne l’est pas.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nEt si, peut-être je…\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNon.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNON !\\n\\n50\\n00:07:00,875 --> 00:07:03,292\\nD’autres questions Emo ?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNon.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo ?\\n\\n53\\n00:07:11,875 --> 00:07:13,333\\nEmo, pourquoi…\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo…\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n… pourquoi ne peux-tu pas voir la beauté de cet endroit ?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nSon fonctionnement.\\n\\n57\\n00:07:21,875 --> 00:07:23,792\\nSa perfection.\\n\\n58\\n00:07:24,083 --> 00:07:27,167\\nNon, Proog, je ne vois pas.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nJe ne vois pas parce qu’il n’y a rien ici.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nPourquoi je confierais ma vie à quelque chose qui n’est pas là ?\\n\\n61\\n00:07:35,417 --> 00:07:36,833\\nTu peux répondre à ça ?\\n\\n62\\n00:07:37,417 --> 00:07:38,833\\nRéponds-moi.\\n\\n63\\n00:07:43,000 --> 00:07:44,000\\nProog…\\n\\n64\\n00:07:45,458 --> 00:07:46,958\\nT’es un malade !\\n\\n65\\n00:07:47,250 --> 00:07:49,000\\nNe m’approche pas !\\n\\n66\\n00:07:52,500 --> 00:07:55,000\\nNon ! Emo ! C’est un piège !\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nC’est un piège !\\n\\n68\\n00:07:57,208 --> 00:08:01,417\\nÀ votre gauche vous pouvez voir les jardins suspendus de Babylone !\\n\\n69\\n00:08:02,250 --> 00:08:03,875\\nÇa te plaît comme piège ?\\n\\n70\\n00:08:05,458 --> 00:08:07,000\\nNon, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nÀ votre droite vous pouvez voir… ça alors…\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n… le colosse de Rhodes !\\n\\n73\\n00:08:15,750 --> 00:08:16,500\\nNon !\\n\\n74\\n00:08:16,750 --> 00:08:21,750\\nLe colosse de Rhodes, et il n'est là que pour toi Proog.\\n\\n75\\n00:08:51,333 --> 00:08:52,833\\nMais c’est là…\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nJe te le jure, Emo…\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n… c’est là.\",\n", + " 'bytes': 4602,\n", + " 'sha1': 'rgefgmsh903ngl4dyqlrxre60lflp5y',\n", + " 'parent_id': 42630916,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33433784,\n", + " 'timestamp': '2009-12-25T10:43:01Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8828201,\n", + " 'title': 'Cal64x48check vdfr1to25len2.avi.q10fr25.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Cal64x48check vdfr1to25len2.avi.q10fr25.ogv]] english',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nZero\\n\\n2 \\n00:00:01,000 --> 00:00:02,000\\nOne',\n", + " 'bytes': 74,\n", + " 'sha1': '2zy1vcvpw6nco01g61w3iilvm2sstxr',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33433799,\n", + " 'timestamp': '2009-12-25T10:43:55Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 8828204,\n", + " 'title': 'Cal64x48check vdfr1to25len2.avi.q10fr25.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[File:Cal64x48check vdfr1to25len2.avi.q10fr25.ogv]] deutsch',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nNull\\n\\n2 \\n00:00:01,000 --> 00:00:02,000\\nEins',\n", + " 'bytes': 75,\n", + " 'sha1': 'ak5phiyjft8q5y09hntq0xqiq5r9iwa',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606399020,\n", + " 'timestamp': '2021-11-09T17:00:57Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 8923472,\n", + " 'title': 'Wanna Work Together? with subtitles - Creative Commons.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall update',\n", + " 'text': \"1\\n00:00:04,774 --> 00:00:08,105\\nWanna Work Together?\\n\\n2\\n00:00:10,000 --> 00:00:12,324\\nWhen you share your creativity,\\n\\n3\\n00:00:12,342 --> 00:00:14,593\\nyou are enabling people anywhere,\\n\\n4\\n00:00:14,710 --> 00:00:16,835\\nto use it, learn from it,\\n\\n5\\n00:00:16,855 --> 00:00:19,000\\nand be inspired by it\\n\\n6\\n00:00:19,193 --> 00:00:20,403\\nTake the teacher,\\n\\n7\\n00:00:20,463 --> 00:00:24,536\\nwho shapes young minds with work\\nand wisdom from around the globe,\\n\\n8\\n00:00:24,577 --> 00:00:29,463\\nand the artist who builds beauty\\nout of bits and pieces, she finds online.\\n\\n9\\n00:00:29,873 --> 00:00:33,416\\nand the writer, whose stories\\nuse ideas and images\\n\\n10\\n00:00:33,436 --> 00:00:36,173\\ncrafted by people he's never even met.\\n\\n11\\n00:00:36,489 --> 00:00:39,139\\nThese people know\\nwhen you share your creative wealth,\\n\\n12\\n00:00:39,183 --> 00:00:41,208\\nyou can accomplish great things.\\n\\n13\\n00:00:41,244 --> 00:00:45,300\\nThey and millions of other people\\nall around the planet,\\n\\n14\\n00:00:45,333 --> 00:00:49,774\\nare working together to build\\na richer, better, more vibrant culture,\\n\\n15\\n00:00:49,806 --> 00:00:52,195\\nusing Creative Commons.\\n\\n16\\n00:00:53,606 --> 00:00:55,472\\nTo understand Creative Commons,\\n\\n17\\n00:00:55,495 --> 00:00:58,126\\nyou need to know a little bit\\nabout how Copyright works.\\n\\n18\\n00:00:58,134 --> 00:01:00,766\\nDid you know that when you create\\nsomething – anything,\\n\\n19\\n00:01:00,766 --> 00:01:06,486\\nfrom a photograph, to a song,\\nto a drawing, to a film, to a story,\\n\\n20\\n00:01:06,506 --> 00:01:10,677\\nyou automatically own an 'All Rights\\nReserved' copyright to that creativity.\\n\\n21\\n00:01:10,742 --> 00:01:11,910\\nIt's true!\\n\\n22\\n00:01:11,960 --> 00:01:15,492\\nCopyright protects your creativity\\nagainst uses, you don't consent to.\\n\\n23\\n00:01:15,509 --> 00:01:16,750\\n(*except fair use)\\n\\n24\\n00:01:16,770 --> 00:01:19,870\\nBut sometimes\\nfull Copyright is too restrictive.\\n\\n25\\n00:01:19,900 --> 00:01:23,501\\nWhat about when you want all those\\nmillions of millions of people out there\\n\\n26\\n00:01:23,508 --> 00:01:27,166\\nto use your work without the hassle\\nof coming to you for permission?\\n\\n27\\n00:01:27,233 --> 00:01:29,649\\nWhat if you want your work\\nto be freely shared,\\n\\n28\\n00:01:29,660 --> 00:01:32,464\\nreused and built upon by\\nthe rest of the world?\\n\\n29\\n00:01:33,000 --> 00:01:34,552\\nLuckily there is an answer:\\n\\n30\\n00:01:34,712 --> 00:01:36,522\\nCreative Commons.\\n\\n31\\n00:01:36,765 --> 00:01:41,047\\nWe provide free copyright licenses,\\nyou can use to tell people exactly\\n\\n32\\n00:01:41,055 --> 00:01:44,162\\nwhich parts of your copyright\\nyou are happy to give to the public.\\n\\n33\\n00:01:44,235 --> 00:01:48,051\\nIt's easy, it only takes a minute,\\nand its totally free.\\n\\n34\\n00:01:48,280 --> 00:01:51,369\\nJust come to our website\\nand answer a few quick questions like:\\n\\n35\\n00:01:51,409 --> 00:01:53,795\\n'Would you allow\\ncommercial uses of your work?'\\n\\n36\\n00:01:53,835 --> 00:01:56,243\\nand 'Would you allow\\nyour work to be modified?'\\n\\n37\\n00:01:56,365 --> 00:01:59,866\\nBased on your answers, we'll give you\\na license that clearly communicates\\n\\n38\\n00:01:59,890 --> 00:02:02,717\\nwhat people can\\nand can't do with your creativity.\\n\\n39\\n00:02:03,000 --> 00:02:07,765\\nYou don't give up your Copyright,\\nyou refine it so it works better for you.\\n\\n40\\n00:02:08,450 --> 00:02:11,798\\nWelcome to a new world\\nwhere collaboration rules!\\n\\n41\\n00:02:12,000 --> 00:02:14,929\\nIt didn't even exist just a few years ago.\\n\\n42\\n00:02:15,000 --> 00:02:19,437\\nBut now there are millions of millions\\nof songs, pictures, videos,\\n\\n43\\n00:02:19,475 --> 00:02:25,594\\nand written works available to share,\\nreuse and remix – all for free.\\n\\n44\\n00:02:26,197 --> 00:02:27,945\\nWanna work together?\\n\\n45\\n00:02:27,998 --> 00:02:29,707\\nthen join the Commons –\\n\\n46\\n00:02:29,734 --> 00:02:31,557\\nCreative Commons.\\n\\n47\\n00:02:34,547 --> 00:02:36,028\\nThe End\\n\\n48\\n00:02:36,238 --> 00:02:38,270\\nAnimation + Design\\nRyan Junell, junell.net\\n\\n49\\n00:02:38,310 --> 00:02:40,430\\nMusic + Sound Design\\nLesser, LSR1.com\\n\\n50\\n00:02:40,470 --> 00:02:42,370\\nNarrator: Sara Kraft\\nkraftpurver.com\\n\\n51\\n00:02:42,400 --> 00:02:44,328\\nScript: Eric Steuer\\ncreativecommons.org\\n\\n52\\n00:02:44,381 --> 00:02:45,625\\nVERY SPECIAL THANKS\\n\\n53\\n00:02:45,665 --> 00:02:47,830\\nThe John D. and Catherine T.\\nMacArthur Foundation, macfound.org\\n\\n54\\n00:02:47,870 --> 00:02:49,900\\nThe William and Flora Hewlett\\nFoundation, hewlett.org\\n\\n55\\n00:02:49,960 --> 00:02:51,270\\nRed Hat, redhat.com\\n\\n56\\n00:02:51,330 --> 00:02:52,740\\nOmidyar Network, omidyar.net\\n\\n57\\n00:02:52,770 --> 00:02:54,530\\nStanford Law School, law.stanford.edu\\n\\n58\\n00:02:54,580 --> 00:02:57,440\\nCenter for the Study \\nof the Public Domain, law.duke.edu/cfpd\\n\\n59\\n00:02:57,600 --> 00:03:02,000\\nAnd all Creative Commons\\nsupporters, large and small\",\n", + " 'bytes': 4706,\n", + " 'sha1': 'hk9yuakn9ahuqzlq713a3s4mndytj2l',\n", + " 'parent_id': 39197916,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 69051567,\n", + " 'timestamp': '2012-03-30T07:36:16Z',\n", + " 'user': {'id': 160035, 'text': 'Rave'},\n", + " 'page': {'id': 8924033,\n", + " 'title': 'Wanna Work Together? with subtitles - Creative Commons.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:07,000\\nХочешь работать вместе?\\n\\n2\\n00:00:07,000 --> 00:00:10,000\\nКогда вы делитесь своим творчеством,\\n\\n3\\n00:00:10,000 --> 00:00:16,000\\nвы открываете другим возможность использовать его, учиться на его основе, быть вдохновлёнными им\\n\\n4\\n00:00:16,000 --> 00:00:18,000\\nВозьмём к примеру учителя,\\n\\n5\\n00:00:18,000 --> 00:00:22,000\\nкоторый помогает формироваться юному интеллекту с помощью произведений и знаний, собранных по всему миру\\n\\n6\\n00:00:22,000 --> 00:00:28,000\\nили художника, который создаёт прекрасное из фрагментов других произведений, найденных в сети\\n\\n7\\n00:00:28,000 --> 00:00:34,000\\nили писателя, который использует в своём рассказе идеи и образы, созданные людьми, которых он никогда в жизни не видел.\\n\\n8\\n00:00:34,000 --> 00:00:39,000\\nЭти люди понимают, что когда они делятся своим творчеством, они помогают прекрасной идее.\\n\\n9\\n00:00:39,000 --> 00:00:43,000\\nОни и миллионы других людей по всей планете,\\n\\n10\\n00:00:43,000 --> 00:00:47,000\\nвместе работают над созданием более богатой, глубокой, пластичной культуры\\n\\n11\\n00:00:47,000 --> 00:00:50,000\\nс помощью лицензий Creative Commons.\\n\\n12\\n00:00:51,000 --> 00:00:56,000\\nДля понимания Creative Commons вам нужно немного узнать о том как работает авторское право.\\n\\n13\\n00:00:56,000 --> 00:01:04,000\\nЗнаете ли вы, что когда вы что-нибудь создаёте – что угодно, от фотографии, песни, до рисунка, фильма, рассказа\\n\\n14\\n00:01:04,000 --> 00:01:09,000\\nвы автоматически становитесь обладателем авторских прав \"Все права сохранены\" на это произведение. Это действительно так!\\n\\n15\\n00:01:09,000 --> 00:01:14,000\\nАвторское право защищает ваше произведение от несогласованного с вами использования. (*кроме \"добросовестного использования\")\\n\\n16\\n00:01:14,000 --> 00:01:17,000\\nНо иногда полное авторское право запрещает слишком многое.\\n\\n17\\n00:01:17,000 --> 00:01:22,000\\nА что если вы хотите, чтобы миллионы миллионов людей по всему миру использовали ваше произведение?\\n\\n18\\n00:01:22,000 --> 00:01:25,000\\nбез суеты, связанной с получением вашего разрешения?\\n\\n19\\n00:01:25,000 --> 00:01:30,000\\nчто если вы хотите, чтобы ваше произведение свободно распространялось, повторно использовалось и становилось основой для создания чего-то нового по всему миру?\\n\\n20\\n00:01:30,000 --> 00:01:34,000\\nК счастью, есть ответ: Creative Commons.\\n\\n21\\n00:01:34,000 --> 00:01:39,000\\nМы предоставляем бесплатные лицензии по авторскому праву, вы можете использовать их для того, чтобы сообщить людям какие именно части вашего авторского права\\n\\n22\\n00:01:39,000 --> 00:01:42,000\\nвы рады отдать общественности.\\n\\n23\\n00:01:42,000 --> 00:01:45,000\\nЭто просто, это займёт минуту и это полностью бесплатно.\\n\\n24\\n00:01:45,000 --> 00:01:48,000\\nПросто зайдите на наш веб-сайт и ответьте на несколько простых вопросов вроде:\\n\\n25\\n00:01:48,000 --> 00:01:51,000\\n\\'Позволяете ли вы коммерческие использования вашего произведения?\\'\\n\\n26\\n00:01:51,000 --> 00:01:54,000\\nи \\'Позволяете ли вы модифицировать ваше произведения?\\'\\n\\n27\\n00:01:54,000 --> 00:01:57,000\\nНа основе ваших ответов, мы дадим вам лицензию, которая чётко сообщает\\n\\n28\\n00:01:57,000 --> 00:02:00,000\\nчто люди могут и что не могут делать с вашим произведением.\\n\\n29\\n00:02:00,000 --> 00:02:05,000\\nВы не утрачиваете авторское право, вы заставляете его работать так как вам удобно.\\n\\n30\\n00:02:05,000 --> 00:02:09,000\\nДобро пожаловать в новый мир, где господствует сотрудничество.\\n\\n31\\n00:02:09,000 --> 00:02:12,000\\nВсего несколько лет назад он не существовал.\\n\\n32\\n00:02:12,000 --> 00:02:18,000\\nНо сейчас здесь есть миллионы миллионов песен, картинок, видео и письменных работ\\n\\n33\\n00:02:18,000 --> 00:02:23,000\\nдоступны для распространения, повторного использования и редактирования – всё бесплатно.\\n\\n34\\n00:02:23,000 --> 00:02:26,000\\nВы хотите работать вместе?\\n\\n35\\n00:02:26,000 --> 00:02:30,000\\nтогда присоединятесь к сообществу – Creative Commons.\\n\\n36\\n00:02:31,000 --> 00:02:32,000\\nКонец\\n\\n37\\n00:02:32,000 --> 00:02:35,000\\nАнимация и дизайн Ryan Junell junell.net\\n\\n38\\n00:02:35,000 --> 00:02:37,000\\nМузыкальное и звуковое оформление Lesser LSR1.com\\n\\n39\\n00:02:37,000 --> 00:02:40,000\\nТекст читала Sara Kraft kraftpurver.com\\n\\n40\\n00:02:40,000 --> 00:02:42,000\\nТекст Eric Steuer creativecommons.org\\n\\n41\\n00:02:42,000 --> 00:02:44,000\\nОсобое спасибо The John D. and Catherine T. MacArthur Foundation macfound.org\\n\\n42\\n00:02:44,000 --> 00:02:46,000\\nОсобое спасибо Фонду Уильяма и Флоры Хьюлетт hewlett.org\\n\\n43\\n00:02:46,000 --> 00:02:48,000\\nОсобое спасибо Red Hat redhat.com\\n\\n44\\n00:02:48,000 --> 00:02:50,000\\nОсобое спасибо Omidyar Network omidyar.net\\n\\n45\\n00:02:50,000 --> 00:02:52,000\\nОсобое спасибо Стэнфордской школе права law.stanford.edu\\n\\n46\\n00:02:52,000 --> 00:02:55,000\\nОсобое спасибо Центру изучения общественного достояния law.duke.edu/cfpd\\n\\n47\\n00:02:55,000 --> 00:02:59,000\\nИ всем сторонникам Creative Commons, большим и маленьким',\n", + " 'bytes': 7227,\n", + " 'sha1': 'h9uykhq17r69dazstojpj2atmbc6fq7',\n", + " 'parent_id': 33856016,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33880430,\n", + " 'timestamp': '2010-01-07T04:11:17Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 8927373,\n", + " 'title': 'Welcome to globallives 2.0.ogv.ar.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'fixed utf-8 encoding',\n", + " 'text': '\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫هيب هوب برازيلية في الخلفية♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nهدف Global Lives Project هو تصوير 24 ساعة من الحياة اليومية لعشرة اشخاص من حول العالم\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nنحن الان في ساو باولو - البرازيل لتنفيذ التصور الثاني للمشروع\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nفريقنا يتكون من مصورين, فنانين, مهندس معمارين, مبرمجين\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\nو اشخاص عاديين من حول العالم\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nسننتهي ب240 ساعة من التصوير و سنجمعهم لانتاج افلام للمعرض النهائي\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nزوار المعرض سيشاهدون الافلام في عشرغرف مختلفة\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\nكل غرفة ستعرض المشاهد الغير مقطوعة من تصوير العشر اشخاص\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nالفكرة من المعرض والمشروع هي ان تعزل الزوار من حياتهم اليومية ليختبروا حياة اخرى\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\nلاشخاص مختلفين من كل انحاء العام\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nأول تصوير لمشروع Global Lives كان في سان فرانسيسكو - كاليفورنية مع سائق عربة قطار هوئية يسمى James Bullock\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nنحن الآن نصور في دول أخرى\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\nالافلام التي سنجمعها في النهاية سينضمون الى مكتبة فيديو لتدوين الخبرات الحياتية للإنسان\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\nالمكتبة مفتوحة أيضا للمشاركة من قبل الجميع\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nمن خلال إختبار هذه اللحظات القصيرة, ولكن المتوعة من حياة الإنسان\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\nستجعل المشاهدين يفكرون عن حياتهم و علاقتهم مع باقي أشخاص العالم\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\nزوروا موقعنا الإكتروني GlobalLives.org لتتعلموا كيف من إمكانكم أن تشاركون مشروع Global Lives Projects\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.',\n", + " 'bytes': 2497,\n", + " 'sha1': 'lcw51sv3thpz52b1vcxcbr7ko9ggnnn',\n", + " 'parent_id': 33874048,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33880605,\n", + " 'timestamp': '2010-01-07T04:25:43Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 8928536,\n", + " 'title': 'Welcome to globallives 2.0.ogv.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:Welcome to globallives 2.0.ogv.zh-chs.srt]] to [[TimedText:Welcome to globallives 2.0.ogv.zh.srt]]: moved to valid Chinese lang key ( might need to be moved again)',\n", + " 'text': '\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫背景音乐为巴西说唱乐♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nGlobal Lives Project将拍摄记录来自世界不同地方的10个普通人的24小时日常生活\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\n现在我们在巴西圣保罗进行该计划的第二场拍摄\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\n我们的团队中有电影制作人,艺术家,设计师,程序员\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\n以及来自世界各地的普通人\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\n我们将总共完成240小时的拍摄,并将所有拍摄内容公开展出\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\n参观展览者可以走进10个不同的房间\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\n每个房间都将放映一位主人公未加剪辑的24小时生活影像\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\n这样可以将参观者带出自己的生活圈子,并将他们引入世界其他地区\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\n人们真实的世界中去\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nGlobal Lives的第一场拍摄在美国加州的旧金山完成,主人公是电车司机James Bullock\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\n其余拍摄正在不同国家、地区进行着\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\n我们的所有影片都将成为供大家分享的人类生活体验电影库中的一部分\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\n完全免费开放并接受公众的捐助\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\n通过深入这些微小但丰富的人们日常生活的例子\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\n观众将会重新审视自己的生活,并看到自己与世界各地的联系\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\n访问我们的网站,Globallives.org,了解如何参与到Global Lives Project中来½\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.',\n", + " 'bytes': 1838,\n", + " 'sha1': 'eslxxv38kf077wx28nszwbbzymymifm',\n", + " 'parent_id': 33880458,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33880508,\n", + " 'timestamp': '2010-01-07T04:15:31Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 8928540,\n", + " 'title': 'Welcome to globallives 2.0.ogv.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:Welcome to globallives 2.0.ogv.pt-br.srt]] to [[TimedText:Welcome to globallives 2.0.ogv.nl.srt]]: wrong language',\n", + " 'text': \"\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫ Braziliaanse hiphopmuziek op de achtergrond ♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nHet doel van het Wereldlevens project is om 24 uur op te nemen van het dagelijkse leven van 10 mensen van over de hele wereld.\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nWe zijn nu in São Paulo, Brazilië tijdens onze tweede opnames voor het project.\\n\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nWij zijn een groep van tientallen filmmakers, artiesten, architecten, programmeurs \\n\\n5\\n00:00:34,000 --> 00:00:38,000\\nen gewone mensen van over de hele planeet.\\n\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nUiteindelijk zullen we 240 uur film hebben, en de bedoeling is om daarmee een video-installatie te maken.\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nDe bezoekers van deze installatie zullen door tien verschillende kamers kunnen wandelen\\n\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\nEn in elke kamer loopt de onbewerkte film over elk van onze hoofdpersonen.\\n\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nWe willen mensen echt uit hun eigen dagelijkse leven halen en in de realiteit brengen van allerlei mensen\\n\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\nvan over de hele wereld.\\n\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nDe eerste Wereldlevens opname vond plaats in San Francisco, Californië, met trambestuurder James Bullock.\\n\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nBijkomende opnames vinden al plaats in andere landen.\\n\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\nAl onze video's zullen opgenomen worden in een filmbibliotheek over hoe mensen hun leven beleven\\n\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\ndie gratis is en open voor bijdragen van het publiek.\\n\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nDoor hen onder te dompelen in deze kleine maar verscheiden staalname van het dagelijks bestaan \\n\\n16\\n00:02:38,000 --> 00:02:44,000\\nzullen kijkers uitgedaagd worden hun eigen leven en hun banden met de rest van de wereld te overdenken.\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\nKijk op onze website GlobalLives.org om te zien hoe je kan meewerken aan het Wereldlevens project.\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.\",\n", + " 'bytes': 2087,\n", + " 'sha1': 'dd1snqqkts6i46fe1wre8qqz60fw961',\n", + " 'parent_id': 33880478,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33880584,\n", + " 'timestamp': '2010-01-07T04:23:13Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 8928546,\n", + " 'title': 'Welcome to globallives 2.0.ogv.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫ Música de hip hop no fundo ♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nO objetivo do Projeto Global Lives é gravar um vídeo de 24 horas na vida de 10 pessoas ao redor do mundo.\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nAgora estamos em São Paulo, Brasil, fazendo a segunda gravação do projeto.\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nSomos um grupo com dezenas de cineastas, artistas, arquitetos, programadores\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\ne pessoas comuns de todo o planeta.\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nNo final do projeto teremos 240 horas de gravacao e a idéia é usar tudo isso para criar uma vídeo instalação. \\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nO visitante poderá circular por dez salas diferentes \\n\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\ne assistir o vídeo não editado de cada um dos participantes. \\n\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nA finalidade é a de tirar as pessoas do seu cotidiano trazê-las para dentro da realidade de pessoas \\n\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\nde todas as camadas sociais em todo o mundo.\\n\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nA primeira filmagem do Global Lives foi realizada em São Francisco, Califórnia com o motorneiro James Bullock.\\n\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nOutras gravações já estão sendo produzidas em outros países.\\n\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\nTodos os nossos vídeos vão fazer parte de uma videoteca participatória de vida humana,\\n\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\ngrátis e aberta pela internet para contribuições do público geral.\\n\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nAtravés da imersão nessa pequena, mas diversificada amostra do cotidiano humano,\\n\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\nos visitantes terão como desafio repensar suas próprias vidas e como elas se conectam com o resto do mundo.\\n\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\nVisite o nosso site www.GlobalLives.org para saber como participar do Projeto Global Lives.\\n\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.',\n", + " 'bytes': 2034,\n", + " 'sha1': 'owray2t8q23vyf3a66x9a191tbuzdqq',\n", + " 'parent_id': 33880509,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45236475,\n", + " 'timestamp': '2010-10-19T21:17:05Z',\n", + " 'user': {'id': 44809, 'text': 'LtPowers'},\n", + " 'page': {'id': 8928547,\n", + " 'title': 'Welcome to globallives 2.0.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'missing comma using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': \"0\\n00:00:00 --> 00:00:04,062\\n♫ Brazilian hip hop music in background ♫\\n\\n1\\n00:00:16,154 --> 00:00:23\\nThe goal of the Global lives Project is to videotape 24 hours in the daily lives of 10 people from all over the world.\\n\\n2\\n00:00:23 --> 00:00:27\\nRight now we're here in São Paulo, Brazil, doing our second shoot for the project.\\n\\n3\\n00:00:30 --> 00:00:34\\nWe are a collective of dozens of filmakers, artists, architects, programmers\\n\\n4\\n00:00:34 --> 00:00:38\\nand everyday people from all around the planet.\\n\\n5\\n00:00:39 --> 00:00:46\\nWe're going to end up with 240 hours of footage, and the idea is to take all this footage and create a video installation\\n\\n6\\n00:00:46 --> 00:00:49\\nThe visitor to this installation will be able to walk through ten different rooms\\n\\n7\\n00:00:49 --> 00:00:55\\nAnd each of the rooms will have the unedited footage of each of our subjects\\n\\n8\\n00:00:56 --> 00:01:02\\nThe point of this is to really take people out of their own daily lives and bring them into the realities of people from all walks of life\\n\\n9\\n00:01:02 --> 00:01:04\\nfrom all over the world.\\n\\n10\\n00:01:07 --> 00:01:14\\nThe first Global Lives shoot took place in San Francisco, California, with cable car driver James Bullock.\\n\\n11\\n00:01:25 --> 00:01:29\\nAdditional shoots are already taking place in other countries.\\n\\n12\\n00:01:52 --> 00:01:59\\nAll our videos will become part of a participatory video library of human life experience\\n\\n13\\n00:01:59 --> 00:02:03\\nfree and open for contributions from the public.\\n\\n14\\n00:02:34 --> 00:02:38\\nThrough immersion in this small but diverse sampling of daily human existence\\n\\n15\\n00:02:38 --> 00:02:44\\nviewers will be challenged to rethink both their own lives and their connections with the rest of the world.\\n\\n16\\n00:02:52 --> 00:02:58\\nCheck out our website at GlobalLives.org to find out how to get involved in the Global Lives Project.\\n\\n17\\n00:05:05 --> 00:05:06\\n.\\n\\n18\\n00:05:06 --> 00:05:07\\n.\\n\\n19\\n00:05:07 --> 00:05:08\\n.\",\n", + " 'bytes': 1939,\n", + " 'sha1': 'mvcdn1ukp4w6k3oz4jjya0ugo4qa5mz',\n", + " 'parent_id': 45070293,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 256389851,\n", + " 'timestamp': '2017-08-26T11:00:08Z',\n", + " 'user': {'id': 3717, 'text': 'VIGNERON'},\n", + " 'page': {'id': 8928558,\n", + " 'title': 'Welcome to globallives 2.0.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '+',\n", + " 'text': \"\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫ Hip-hop brésilien en arrière plan ♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nLe but de Global Lives est d'enregistrer 24 heures dans les vies de 10 gens de partout le monde.\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nMaintenant nous sommes à [[w:fr:Sao Paulo|Sao Paulo]], Brésil. Où nous tournons la deuxième scène pour le projet.\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nNous sommes une collective des dizaines de réalisateurs, artistes, architectes et programmeurs\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\nEt des gens ordinaires de partout la planète.\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nÀ la fin, nous aurons 240 heures de film. L’idée est de prendre ce film et créer une exposition de vidéo.\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nUn visiteur à cette exposition pourra passer par 10 salles différentes.\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\nEt chaque salle aura des images de chacun personne.\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nLe but de ceci est de mettre ces gens dans les réalités des gens de tous les milieux\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\nde partout dans le monde.\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nLe premier film était dans San Francisco, Californie, avec James Bullock, un conducteur de téléphérique.\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nDes autres films ont lieu dans les autres pays aussi.\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\nToutes les vidéos feront partie d'une vidéo-bibliothèque participative de l'expérience de la vie humaine\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\nLibre et ouvert pour les contributions du public.\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nEn immergeant dans ce petit échantillonnage divers de l'expérience de la vie quotidienne\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\nLes spectateurs seront contestés de repenser leurs vies et leurs rapports avec le reste du monde.\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\nVoyez-vous le site à GlobalLives.org pour découvrir comment vous pouvez participer dans le projet de Global Lives.\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.\",\n", + " 'bytes': 2062,\n", + " 'sha1': 'b8n4ka0d2lp4mm9y8rx7313a49gljlm',\n", + " 'parent_id': 42947214,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 39257520,\n", + " 'timestamp': '2010-05-14T15:32:18Z',\n", + " 'user': {'id': 6282, 'text': 'Longbow4u'},\n", + " 'page': {'id': 8928560,\n", + " 'title': 'Welcome to globallives 2.0.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'text grammatically and orthographically corrected',\n", + " 'text': '\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫ Brasilianische HipHop Musik im Hintergrund ♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nDas Ziel des Global lives Projekt ist es, das tägliche Leben von 10 Personen von überall auf der Welt auf Video festzuhalten.\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nGerade jetzt sind wir in São Paulo, Brasilien, bei unserem zweiten Dreh für das Projekt.\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nWir sind eine Gruppe von einigen dutzend Filmemachern, Künstlern, Architekten, Programmierern\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\nund ganz normale Leute von überall aus der Welt.\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nWir werden am Ende 240 Stunden Filmmaterial haben und die Idee ist es, dieses ganze Filmmaterial dafür zu nutzen, um daraus eine Videoinstalltion zu machen\\n\\n\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nDer Besucher dieser Installation wird dann in der Lage sein, durch 10 verschieden Räume zu laufen.\\n\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\nUnd jeder Raum wird das ungeschnittene/editierte Filmmaterial von jeden Thema beinhalten\\n\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nDer Sinn dahinter ist, das die Leute aus ihren eigenen wirklichen Leben herausgerissen werden, und Sie in die Leben von Menschen mit diversen Hintergründen\\n\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\nvon überall aus der Welt eintauchen. \\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nDer erste Global-Lives-Dreh fand in San Fransisco, Kalifornien statt, mit dem Straßenbahnfahrer James Bullock.\\n\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nWeitere Drehs in anderen Ländern sind bereits in Arbeit.\\n\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\nAll unsere Videos werden ein Teil einer kollaborativen Videobibliothek für menschliche Lebenserfahrungen werden\\n\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\nkostenlos und frei für die Verbreitung in der Öffentlichkeit\\n\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nDurch das Eintauchen in diese kleinen aber diversen Ausschnitte von menschlicher Existenz\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\nwerden die Zuschauer herausgefordert ihr eigenes Leben und ihre Beziehungen zum Rest der Welt zu überdenken.\\n\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\nBesuchen Sie unsere Internetseite auf GlobalLives.org und finden Sie heraus wie du selbst im Global-Lives-Projekt aktiv werden kannst.\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.',\n", + " 'bytes': 2327,\n", + " 'sha1': 'cm32lrqturncm5mysudpv7pu5sdt7s0',\n", + " 'parent_id': 33880560,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33880570,\n", + " 'timestamp': '2010-01-07T04:20:42Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 8928566,\n", + " 'title': 'Welcome to globallives 2.0.ogv.hi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:00,000 --> 00:00:04,000 ♫ ब्राज़ीली हिप-होप का संगीत पृष्ठभूमि में है ♫ 2 0...'\",\n", + " 'text': '\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫ ब्राज़ीली हिप-होप का संगीत पृष्ठभूमि में है ♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nविश्व जीवनिए योजना का लक्षय 10 लोग का 24 घंटे अपने दैनिक जीवन में \"to videotape\" हैं। वे लोग दुनिया के तरफ़ से हैं।\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nअब हम याहा साओव पालो, ब्राज़ील में रेहते हैं। हमारा दूसरा फ़िल्मी योजना के लिये कुर रहे हैं।\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nहम फ़िल्म बनानेवाले, कलाकारे, बास्तुका और क्रमादेशक का दल में हैं।\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\nऔर जनता दुनिया के तरफ़ से हैं।\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nहम 240 घंटे के लिये विदिओ के ख़त्म होगा। हम यह विदीओ के साथ एक विदीओ का घर बनेंगे।\\n\\n7\\n00:01:02,000 --> 00:01:04,000\\nदुनिया के तरफ़ से.\\n\\n8\\n00:05:06,000 --> 00:05:07,000\\n???',\n", + " 'bytes': 1406,\n", + " 'sha1': '3ilb1lqqg18qplw3g0z7p1y7qn5tqdm',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33880572,\n", + " 'timestamp': '2010-01-07T04:21:25Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 8928567,\n", + " 'title': 'Welcome to globallives 2.0.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:00,000 --> 00:00:04,000 Hip-hop musica ♫ ♫ BGM Brasile 2 00:00:15,000 --> 00:00:23,000 L'obiettivo generale del progetto è quello di registrare la...'\",\n", + " 'text': \"\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\nHip-hop musica ♫ ♫ BGM Brasile\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nL'obiettivo generale del progetto è quello di registrare la vita di 10 persone diverse scelti da tutto il mondo per 24 ore.\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nQui siamo in Sao Paulo Brasile facendo del nostro secondo fliming per il progetto.\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nCi sono un certo numero di registi, artisti, architetti, programmatori, e persone e organizzazioni in tutta la terra\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\ne persone e organizzazioni in tutta la terra\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nAlla fine del progetto avranno un totale di 240 ore di video e di creare un video per l'installazione tutte queste immagini - l'idea di base del progetto\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nQuesto permetterà ai visitatori di camminare in tutte le 10 camere\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\nIn ogni camera è possibile vedere i video del soggetto senza alcuna modifica.\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nL'obiettivo è quello di consentire alle persone di vedere\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\ne in situazioni diverse da quelle \\n\\ndel mondo\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\ne in situazioni diverse da quelle del mondo in cui vivono e possono\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nL'obiettivo è quello di consentire alle persone di vedere \\n\\nse stessi in un altro mondo\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\ne in situazioni diverse da quelle del mondo in cui vivono e possono\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\nessere visualizzate online gratuitamente con i contributi da parte del pubblico\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nSe si desidera partecipare al piano globale di vita,\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\nQuando le persone sono sottoposte alla vita quotidiana \\n\\ndiverso dal loro modo di vita e sono collegati \\n\\ncollegato a resto del mondo.\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\n si prega di andare sul nostro sito web, Globallives.org.\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.\",\n", + " 'bytes': 2040,\n", + " 'sha1': '1r5sjdtsxs2lnko7qr73nzv2z2q2d2c',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33880580,\n", + " 'timestamp': '2010-01-07T04:21:59Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 8928570,\n", + " 'title': 'Welcome to globallives 2.0.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:00,000 --> 00:00:04,000 ♫BGM ブラジルのヒップホップ音楽♫ 2 00:00:15,000 --> 00:00:23,000 グローバル\\u3000ライブズ\\u3000プロジェ...'\",\n", + " 'text': '\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫BGM ブラジルのヒップホップ音楽♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nグローバル\\u3000ライブズ\\u3000プロジェクトの目標は世界中から選ばれた10人の日常生活を24時間録画することです。\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\n今私たちはここブラジル、サンパウロで二つ目の撮影を行っているところです。\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nわたしたちは映画製作者、アーティスト、建築家、プログラマー、そして\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\n世界各国から人々が集結してできた団体です。\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\n我々は計240時間という録画をすることになります。その映像すべてを使ってビデオによるインスタレーションアート(装置芸術)を創るというのがそもそものアイデアです。\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nこのインスタレーションは10個の部屋を通り抜けることができる仕組みになっており\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\nそれぞれの部屋では選ばれた被写体の無編集の映像をみることができます。\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nそこで観る人が自分自身の日常から抜け出し、世界中のあらゆる違った現実に\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\n入り込んで体験してもらおうというわけです。\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nグローバル\\u3000ライブズ\\u3000プロジェクトの最初の撮影は、カリフォルニア州サンフランシスコで行われ、ケーブルカー運転手のジェームズ\\u3000ブロックさんを撮ることから始まりました。\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nそれに続く撮影はすでにいろいろな国で行われています。\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\nすべての映像は、多くの人たちの助力によってつくられたビデオライブラリーにおさめられており\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\n無料オンラインで見ることができます\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nつかの間ながら様々な人々の日常に浸かってみることによって\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\n自分自身の人生について問い直し、また自分が他の世界とどうつながっているのかをあらためて考えさせられるでしょう。\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\nグローバル\\u3000ライブズ\\u3000プロジェクトへ参加ご希望の方は私たちのウェブサイト、Globallives.org\\u3000をご覧ください。\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.',\n", + " 'bytes': 2706,\n", + " 'sha1': '6f18svqidp07z76z21edqk4z6tvyy81',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33880589,\n", + " 'timestamp': '2010-01-07T04:23:40Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 8928574,\n", + " 'title': 'Welcome to globallives 2.0.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:00,000 --> 00:00:04,000 ♫ Música Brasileña hip hop en el trasfondo ♫ 2 00:00:15,000 --> 00:00:23,000 El objetivo del Global Lives Project es vide...'\",\n", + " 'text': '\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫ Música Brasileña hip hop en el trasfondo ♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nEl objetivo del Global Lives Project es video-grabar 24 horas sobre las vidas diarias de 10 personas alrededor del mundo.\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nEn este momento estamos en São Paulo, Brasil, haciendo nuestro segundo rodaje para el proyecto.\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nSomos un grupo de docenas de directores cinematográficos, artistas, arquitectos, programadores\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\ny gente común y corriente de alrededor del planeta.\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nVamos a conseguir 240 horas de material, y la idea es tomar todo este material y crear una instalación de video.\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nLos visitantes de esta instalación podrán atravesar diez salas diferentes.\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\nY cada uno de estas salas tendrán el material no modificado de cada uno de nuestros protagonistas.\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nEl objetivo es alejar a la gente de su vida cotidiana y mostrarles las experiencias de otros tipos de personas\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\nque viven alrededor del mundo.\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nEl primer rodaje de Global Lives se realizó en San Francisco, California, sobre la vida del conductor de tranvías, James Bullock.\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nOtros rodajes adicionales se están realizando en otros países.\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\nTodos nuestros videos formarán parte de una video-biblioteca participativa sobre las experiencias de los seres humanos\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\ncon entrada gratuita y una invitación al público a hacer donaciones.\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nA través de la inmersión en estos pequeños, pero a la vez diversos, ejemplos de la existencia humana diaria\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\nlos espectadores serán desafiados a reconsiderar sus vidas y sus conexiones con el resto del mundo.\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\nVaya a nuestro sitio web en GlobalLives.org para averiguar cómo involucrarse en el Global Lives Project.\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.',\n", + " 'bytes': 2236,\n", + " 'sha1': 'ikznnvk05nglvb9oaxezlhnz0quav49',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 33880594,\n", + " 'timestamp': '2010-01-07T04:24:24Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 8928579,\n", + " 'title': 'Welcome to globallives 2.0.ogv.vi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:00,000 --> 00:00:04,000 ♫ Nhạc hip hop xứ Ba Tây hậu cảnh ♫ 2 00:00:15,000 --> 00:00:23,000 Mục đích của Đề Án Đời Sống To...'\",\n", + " 'text': '\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫ Nhạc hip hop xứ Ba Tây hậu cảnh ♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nMục đích của Đề Án Đời Sống Toàn Cầu là quay phim trông 24 giờ về cuộc sống hàng ngày của 10 người từ khắp nơi trên thế giới.\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nBây giờ, chúng ta đang ở Sao Paulo, Brazil để làm phim thứ hai cho cái dự đề án.\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nChúng tôi la một nhóm hàng chục người gồm các nhà làm phim, nghệ sĩ, kiến trúc sư và thảo chương viên.\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\nvà những người bình thường đến từ khắp nơi trên hành tinh này.\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nChúng ta sẽ kết thúc với 240 giờ phim, và ý định là lấy hết những phim này để sáng tạo một hoạt cảnh.\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nkhách thăm hoạt cảnh này có thể đi dạo ngang quay 10 phòng khác nhau\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\nvà mỗi phòng sẽ có những thước phim chưa trình chiếu của mỗi nhân vật.\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nÝ tưởng thực sự là mang mọi người ra khỏi đời sống riêng của họ và hoà nhập họ vào đời sống thực của những người khác\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\ntrên toàn thế giới\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nCảnh quay đầu tiên của Đời Sống Toàn Cầu đã thực hiện ở San Francisco, California, với người lái xe dây cáp, James Bullock.\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nNhững cảnh quay thêm cũng đang được thực hiện ở mấy nước khác.\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\nTất cả phim của chúng ta sẽ trở thành một phần phim của thư viện về kinh nghiệm đời sống con người\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\nMiễn phí và mở rộng cho những sự đóng góp phần từ quần chúng.\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nQua sự hoà nhập vào cái mảnh đời sống hàng ngày nhỏ bé nhưng đa dạng này\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\nngười xem sẽ được thách đố để nghĩ lại về đời sống riêng của họ v à những mối quan hệ với phần còn lại của thế giới.\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\nHãy xem trang mang của chung ta ở GlobalLives.org để tìm hiểu làm thế nào thâm gia góp phần cho Đề Án Đời Sống Toàn Cầu.\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.',\n", + " 'bytes': 2596,\n", + " 'sha1': 'd5wkzwcs3kzbyi2bkqzd1b2x07pvl4k',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357625,\n", + " 'timestamp': '2021-11-09T10:10:06Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 9638224,\n", + " 'title': 'Elephants Dream.ogv.zh-cn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.zh-cn.srt]] to [[TimedText:Elephants Dream.ogv.zh-cn.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,000 --> 00:00:17,951\\n我们可以看到左边有...\\n\\n2\\n00:00:18,166 --> 00:00:20,083\\n我们可以看到右边有...\\n\\n3\\n00:00:20,119 --> 00:00:21,962\\n...the head-snarlers\\n\\n4\\n00:00:21,999 --> 00:00:24,368\\n一切都是安全的。\\n完全安全。\\n\\n5\\n00:00:24,582 --> 00:00:27,035\\nEmo?\\n\\n6\\n00:00:28,206 --> 00:00:29,996\\n当心!\\n\\n7\\n00:00:47,037 --> 00:00:48,494\\n你受伤没有?\\n\\n8\\n00:00:51,994 --> 00:00:53,949\\n我想没有。\\n你呢?\\n\\n9\\n00:00:55,160 --> 00:00:56,985\\n我很好。\\n\\n10\\n00:00:57,118 --> 00:01:01,111\\n站起来。\\nEmo,这里不安全。\\n\\n11\\n00:01:02,034 --> 00:01:03,573\\n我们走吧。\\n\\n12\\n00:01:03,610 --> 00:01:05,114\\n接下来呢?\\n\\n13\\n00:01:05,200 --> 00:01:09,146\\n你会看到的!\\n\\n14\\n00:01:16,032 --> 00:01:18,022\\nEmo.\\n这边走。\\n\\n15\\n00:01:34,237 --> 00:01:35,481\\n跟我走!\\n\\n16\\n00:02:11,106 --> 00:02:12,480\\nEmo,快点!\\n\\n17\\n00:02:48,059 --> 00:02:49,930\\n你一点都不专心!\\n\\n18\\n00:02:50,142 --> 00:02:54,052\\n我只是想接...\\n...电话。\\n\\n19\\n00:02:54,974 --> 00:02:57,972\\nEmo,你看,\\n我的意思是听。\\n\\n20\\n00:02:59,140 --> 00:03:02,008\\n你必须学会听。\\n\\n21\\n00:03:03,140 --> 00:03:04,965\\n这不是什么游戏。\\n\\n22\\n00:03:05,056 --> 00:03:09,345\\n你,我的意思是我们,\\n我们很容易从这里消失。\\n\\n23\\n00:03:10,014 --> 00:03:13,959\\n听着,\\n听机器的声音。\\n\\n24\\n00:03:18,054 --> 00:03:20,009\\n听听你自己的呼吸。\\n\\n25\\n00:04:27,001 --> 00:04:28,956\\n好了,你一点都不累吗?\\n\\n26\\n00:04:29,084 --> 00:04:30,909\\n累?!?\\n\\n27\\n00:04:31,126 --> 00:04:34,491\\nEmo,这个机器就好像时钟的发条。\\n\\n28\\n00:04:35,083 --> 00:04:37,074\\n在这里只要走错一步...\\n\\n29\\n00:04:37,166 --> 00:04:39,121\\n...你就会摔成肉泥\\n\\n30\\n00:04:40,958 --> 00:04:42,004\\n但这不是 -\\n\\n31\\n00:04:42,041 --> 00:04:46,034\\n肉泥,Emo!\\n这就是你想要的,肉泥?\\n\\n32\\n00:04:47,040 --> 00:04:48,995\\nEmo,你的人生目标...\\n\\n33\\n00:04:50,081 --> 00:04:51,953\\n...肉泥?\\n\\n34\\n00:05:41,156 --> 00:05:43,028\\nEmo,闭上眼睛。\\n\\n35\\n00:05:44,156 --> 00:05:46,027\\n为什么?\\n- 马上!\\n\\n36\\n00:05:51,155 --> 00:05:52,102\\n好吧。\\n\\n37\\n00:05:53,113 --> 00:05:54,688\\n很好。\\n\\n38\\n00:05:59,070 --> 00:06:02,103\\n你在左边看到什么了,Emo?\\n\\n39\\n00:06:04,028 --> 00:06:05,899\\n什么都没有。\\n- 真的?\\n\\n40\\n00:06:06,027 --> 00:06:07,105\\n不,根本没有什么。\\n\\n41\\n00:06:07,944 --> 00:06:11,984\\n那你的右边呢,\\n你有没有在你的右边看到什么,Emo?\\n\\n42\\n00:06:13,151 --> 00:06:16,102\\n一样的,Proog。完全一样...\\n\\n43\\n00:06:16,942 --> 00:06:19,098\\n...什么都没有!\\n- 非常好。\\n\\n44\\n00:06:40,105 --> 00:06:42,724\\n听,Proog!你听到没有!\\n\\n45\\n00:06:43,105 --> 00:06:44,894\\n我们可以到这里吗?\\n\\n46\\n00:06:44,979 --> 00:06:47,894\\n那里?\\n那里不安全,Emo。\\n\\n47\\n00:06:49,145 --> 00:06:52,013\\n但是...\\n- 相信我,那里不安全。\\n\\n48\\n00:06:53,020 --> 00:06:54,145\\n也许我可以...\\n\\n49\\n00:06:54,181 --> 00:06:55,969\\n不。\\n\\n50\\n00:06:57,102 --> 00:06:59,934\\n不!\\n\\n51\\n00:07:00,144 --> 00:07:03,058\\n还有什么问题吗,Emo?\\n\\n52\\n00:07:03,976 --> 00:07:05,090\\n不。\\n\\n53\\n00:07:09,059 --> 00:07:10,089\\nEmo?\\n\\n54\\n00:07:11,142 --> 00:07:13,058\\nEmo,为什么...\\n\\n55\\n00:07:13,095 --> 00:07:14,022\\nEmo...\\n\\n56\\n00:07:14,058 --> 00:07:18,003\\n...为什么你看不到\\n这个地方的美丽之处?\\n\\n57\\n00:07:18,141 --> 00:07:20,048\\n它的运作之道。\\n\\n58\\n00:07:20,140 --> 00:07:23,895\\n它是多么完美。\\n\\n59\\n00:07:23,932 --> 00:07:26,964\\n不,Proog,我看不到。\\n\\n60\\n00:07:27,056 --> 00:07:29,970\\n我看不到,因为它什么都没有。\\n\\n61\\n00:07:31,055 --> 00:07:34,965\\n而我为什么要用我的生命\\n来相信一个不存在的事物?\\n\\n62\\n00:07:35,055 --> 00:07:36,926\\n好了,你可以告诉我吗?\\n\\n63\\n00:07:37,054 --> 00:07:38,926\\n回答我。\\n\\n64\\n00:07:42,970 --> 00:07:44,000\\nProog...\\n\\n65\\n00:07:45,053 --> 00:07:46,985\\n...你这个变态!\\n\\n66\\n00:07:47,022 --> 00:07:48,918\\n离我远点。\\n\\n67\\n00:07:52,052 --> 00:07:54,884\\n不!Emo!那是陷阱!\\n\\n68\\n00:07:55,135 --> 00:07:56,931\\n啊,这是陷阱!\\n\\n69\\n00:07:56,968 --> 00:08:01,043\\n在左边你可以看到\\n巴比伦空中花园!\\n\\n70\\n00:08:01,967 --> 00:08:03,957\\n这怎么会是个陷阱?\\n\\n71\\n00:08:05,050 --> 00:08:06,922\\n不,Emo。\\n\\n72\\n00:08:09,008 --> 00:08:12,088\\n在右边你可以看到...\\n...猜猜是什么...\\n\\n73\\n00:08:12,924 --> 00:08:14,665\\n...罗德岛太阳神铜像!\\n\\n74\\n00:08:15,132 --> 00:08:16,053\\n不!\\n\\n75\\n00:08:16,090 --> 00:08:21,919\\n罗德岛太阳神铜像\\n它在这里等你,Proog。\\n\\n76\\n00:08:51,001 --> 00:08:52,923\\n它在这里...\\n\\n77\\n00:08:52,959 --> 00:08:56,040\\n我告诉你吧,\\nEmo...\\n\\n78\\n00:08:57,000 --> 00:08:59,867\\n...它在。',\n", + " 'bytes': 4723,\n", + " 'sha1': 'c009e0n13uct16do2qgjkikv7l4hx13',\n", + " 'parent_id': 36097918,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 427472089,\n", + " 'timestamp': '2020-06-19T07:51:56Z',\n", + " 'user': {'id': 22648, 'text': 'Koavf'},\n", + " 'page': {'id': 9765432,\n", + " 'title': 'Eben Moglen - From the birth of printing to industrial culture; the root of copyright.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:05,000\\nInterview with [[w:Eben Moglen|Eben Moglen]]\\n\\n1\\n00:00:06,000 --> 00:00:09,600\\nWell I think I would begin\\nby putting it this way\\n\\n2\\n00:00:10,240 --> 00:00:14,520\\nThe book, which is the first \\nmass-produced article in Western culture,\\n\\n3\\n00:00:15,000 --> 00:00:21,800\\nis really the beginning of \\nthe process of industrialization of information.\\n\\n4\\n00:00:24,000 --> 00:00:31,160\\nThe medieval artisan producing or consuming information, \\ntraveling long distances,\\n\\n5\\n00:00:32,000 --> 00:00:37,640\\nconfronted with the difficulty of searching out\\npeople possessing specialised knowledge,\\n\\n6\\n00:00:38,120 --> 00:00:42,400\\nbecomes in the space of two generations only,\\n\\n7\\n00:00:43,280 --> 00:00:49,920\\nthe western european world of books, \\nof printed mass produced artefacts,\\n\\n8\\n00:00:50,360 --> 00:00:52,120\\nthat spread knowledge widely,\\n\\n9\\n00:00:53,000 --> 00:00:59,720\\nand make the process of accumulating\\nspecialised knowledge about the world\\n\\n10\\n00:01:00,000 --> 00:01:03,200\\na process of memory \\nrather than a process of travel.\\n\\n11\\n00:01:04,680 --> 00:01:10,400\\nFrom that world we move,\\nover the course of the edisonian revolution,\\n\\n12\\n00:01:10,680 --> 00:01:14,600\\nfrom the third quarter of the 19th Century\\nto the end of the Twentieth,\\n\\n13\\n00:01:15,520 --> 00:01:23,440\\ninto a world in which memory becomes instead\\nthe omnipresent analogue articles of culture. \\n\\n14\\n00:01:24,360 --> 00:01:31,920\\nSo the book an article present in a library,\\nconsultable by a skilled audience,\\n\\n15\\n00:01:32,680 --> 00:01:37,400\\nis largely replaced by the moving picture,\\nthe sound recording,\\n\\n16\\n00:01:38,120 --> 00:01:43,480\\nthe available vernacular culture \\nwhich puts an immense amount of information \\n\\n17\\n00:01:44,160 --> 00:01:48,760\\nnot at the disposal of the skilled \\nbut at the doorstep of everyone. \\n\\n18\\n00:01:49,160 --> 00:01:56,240\\nNow this was intended for a purpose, \\nit was intended, or at any rate it grew up right alongside\\n\\n19\\n00:01:56,520 --> 00:02:03,400\\nHenry Ford\\'s conscription of the workers of the world \\ninto the new army consumers. \\n\\n20\\n00:02:03,800 --> 00:02:09,280\\npeople who saved capitalism from its rough spots \\nby consuming its production\\n\\n21\\n00:02:09,760 --> 00:02:18,280\\nwho ended its crisis of overproduction \\nby becoming a disciplined army of consumers.\\n\\n22\\n00:02:19,120 --> 00:02:21,320\\nAnd to become a disciplined army of consumers\\n\\n23\\n00:02:21,680 --> 00:02:26,120\\nthe world\\'s workers had to be provided a culture \\nwhich explained consumption, \\n\\n24\\n00:02:26,560 --> 00:02:28,880\\nmade them want,\\ntold them what to want,\\n\\n25\\n00:02:32,440 --> 00:02:32,480\\ngave them aspirations and concerns\\n\\n26\\n00:02:33,280 --> 00:02:38,560\\nthat were not the authentic product \\nof their experience\\n\\n27\\n00:02:39,040 --> 00:02:42,800\\nbut were the transferred product \\nof vicarious experience. \\n\\n28\\n00:02:44,720 --> 00:02:48,040\\nAnd as analogue forms this culture\\n\\n29\\n00:02:48,440 --> 00:02:52,720\\nwhich required industrial processes to make,\\nto produce records,\\n\\n30\\n00:02:53,600 --> 00:02:56,400\\nto produce celluloid, \\nwith the little holes cut in it,\\n\\n31\\n00:02:58,040 --> 00:03:05,560\\nI was watching an old Mel Brookes interview, \\nconducted by Dick Cavitt,\\n\\n32\\n00:03:06,080 --> 00:03:14,400\\nnow being presented by the New York Times \\nas an act of museum conservateurship in film,\\n\\n33\\n00:03:15,360 --> 00:03:17,040\\nin which Cavitt asks Mel Brookes:\\n\\n34\\n00:03:17,160 --> 00:03:19,280\\n\"What\\'s the hardest part \\nof making a motion picture?\"\\n\\n35\\n00:03:19,680 --> 00:03:23,400\\nAnd he says \"oh...punching the little holes \\nin the edges of the celluloid.\"\\n\\n36\\n00:03:24,040 --> 00:03:25,720\\nWell if you think about it in a way that\\'s correct,\\n\\n37\\n00:03:26,080 --> 00:03:28,200\\nthat is the hardest part \\nof making a motion picture\\n\\n38\\n00:03:28,680 --> 00:03:32,080\\nwhich is why in the world of digital computers \\nit is so easy to make films,\\n\\n39\\n00:03:32,760 --> 00:03:35,520\\nbecause you don\\'t need to punch \\nall the little holes in the celluloid any more.\\n\\n40\\n00:03:36,000 --> 00:03:38,640\\nIn other words culture \\ncontained in analogue artefacts,\\n\\n41\\n00:03:39,080 --> 00:03:44,440\\nwas culture whose control resulted from the difficulty \\nof making it, moving it and selling it.\\n\\n42\\n00:03:45,040 --> 00:03:50,040\\nControl came naturally as part of the process \\nof the existence of the medium itself. \\n\\n43\\n00:03:50,520 --> 00:03:54,640\\nWhat happened when we moved, \\nat the end of the twentieth century, to digital media\\n\\n44\\n00:03:55,000 --> 00:03:58,200\\nwas that the process by which memory became experience\\n\\n45\\n00:03:58,360 --> 00:04:01,880\\nover the long history from the book \\nto the edison motion picture\\n\\n46\\n00:04:02,680 --> 00:04:09,160\\nbecame memory is now immediacy, it\\'s the things we make ourselves, \\ninstead of remembering.\\n\\n47\\n00:04:09,360 --> 00:04:14,320\\nWe\\'re sitting in a bar with our friends\\nand we have a camera in every cell phone\\n\\n48\\n00:04:14,680 --> 00:04:16,040\\na movie camera in every cell phone\\n\\n49\\n00:04:16,480 --> 00:04:19,880\\nand everything we take \\ngoes straight to flickr and youtube\\n\\n50\\n00:04:20,000 --> 00:04:24,200\\nand in fact memory is becoming \\nthe attribute of the network now.\\n\\n51\\n00:04:24,760 --> 00:04:28,760\\nAnd experience is becoming \\nan attribute of the network now.\\n\\n52\\n00:04:30,000 --> 00:04:36,480\\nAnd the control, that used to reside in the \\nvery making of the artefact, is up for grabs.\\n\\n53\\n00:04:37,000 --> 00:04:43,560\\nand that\\'s what I think moves us\\n\\n54\\n00:04:40,200 --> 00:04:43,480\\nfrom a world of the catholic church\\'s \\ncontrol over ideas,\\n\\n55\\n00:04:44,000 --> 00:04:47,080\\nthreatened by the protestant artefact of the book\\n\\n56\\n00:04:47,600 --> 00:04:52,720\\nto a world in which the Edisonian companies \\nbenefited from control,\\n\\n57\\n00:04:52,760 --> 00:04:54,040\\nnot over the book but over celluloid \\nand how to punch the little holes,\\n\\n58\\n00:04:56,680 --> 00:05:01,040\\nto a world in which the network made control, like production, \\n\\n59\\n00:05:01,440 --> 00:05:05,640\\nas easy as consumption and disciplined behaviour\\n\\n60\\n00:05:06,000 --> 00:05:12,520\\nand that\\'s the enormous threat, promise and wisdom \\nof the technology for our time,\\n\\n61\\n00:05:13,000 --> 00:05:16,640\\nthat it challenges the very bases of control.\\n\\n62\\n00:05:20,360 --> 00:05:23,040\\nWell both the copyright and patent laws,\\n\\n63\\n00:05:23,280 --> 00:05:28,400\\nthese principles of government\\nthat control over information flow\\n\\n64\\n00:05:28,760 --> 00:05:31,600\\nthey are - as law often is -\\n\\n65\\n00:05:31,920 --> 00:05:37,040\\npieces of technology \\nmade in a period of material stratum A\\n\\n66\\n00:05:37,040 --> 00:05:40,080\\nsurviving into material Stratum B.\\n\\n67\\n00:05:40,360 --> 00:05:45,880\\nSo they mix a peculiar set of \\nincentives and phenomena\\n\\n68\\n00:05:46,680 --> 00:05:55,040\\nThe patent laws and copyright laws are \\nbasically about 17th and 18th century conditions,\\n\\n69\\n00:05:55,400 --> 00:05:58,040\\nimplemented in 19th Century ways\\n\\n70\\n00:05:58,680 --> 00:06:04,600\\nand then redeployed in 20th Century \\nto meet 21st Century problems. \\n\\n71\\n00:06:05,000 --> 00:06:10,520\\nThe basic difficulty that presents itself, \\nthat the law of copyright is meant to deal with,\\n\\n72\\n00:06:10,880 --> 00:06:13,800\\nis that, as you say, \\nit\\'s expensive to make a printing press\\n\\n73\\n00:06:14,200 --> 00:06:16,040\\nbut once you\\'ve made it,\\n\\n74\\n00:06:17,240 --> 00:06:22,520\\nyou have to find a way to decide what to use it on\\n\\n75\\n00:06:23,000 --> 00:06:27,240\\nand the real question is \\nwhat should the printer spend his time printing.\\n\\n76\\n00:06:27,840 --> 00:06:33,280\\nSo you have to give the printer an incentive\\nto print the particular thing.\\n\\n77\\n00:06:33,760 --> 00:06:38,640\\nIt isn\\'t, as has sometimes been suggested by the owners of culture \\nin the late twentieth century,\\n\\n78\\n00:06:39,080 --> 00:06:41,920\\nthat if there weren\\'t incentives \\nthey wouldn\\'t print anything at all\\n\\n79\\n00:06:42,400 --> 00:06:44,880\\nthey are of course going to run the press,\\n\\n80\\n00:06:45,360 --> 00:06:48,920\\nand the man builds a press \\nbecause he can make money printing something\\n\\n81\\n00:06:49,160 --> 00:06:52,840\\nthe question is whether what he ought to print \\nis somebody\\'s business cards,\\n\\n82\\n00:06:53,000 --> 00:06:56,040\\nsomebody\\'s wedding invitations,\\nor somebody\\'s novel.\\n\\n83\\n00:06:56,360 --> 00:07:00,920\\nIn other words the question is \\nhow to determine what it is that gets made\\n\\n84\\n00:07:01,400 --> 00:07:04,840\\nwith the scarce industrial processes of making.\\n\\n85\\n00:07:05,560 --> 00:07:11,400\\nCulture is profitable, \\nif you can buy it cheap, and sell it dear.\\n\\n86\\n00:07:12,000 --> 00:07:18,600\\nand it is to that extent profitable because \\nit\\'s special, different or unique.\\n\\n87\\n00:07:19,200 --> 00:07:20,880\\nWhat floods into France,\\n\\n88\\n00:07:21,160 --> 00:07:24,720\\nas Robert Darnton showed in thinking about \\neighteenth century french culture,\\n\\n89\\n00:07:24,800 --> 00:07:27,400\\nWhat flows into france from the presses of Amsterdam\\n\\n90\\n00:07:27,560 --> 00:07:30,040\\nis what the french aren\\'t allowed to make for themselves,\\n\\n91\\n00:07:30,680 --> 00:07:37,080\\nwhich is why pornography and politics are the stuff of \\nprinting for export in the 18th century.\\n\\n92\\n00:07:37,440 --> 00:07:39,160\\nBut what that does,\\n\\n93\\n00:07:40,000 --> 00:07:47,840\\nthat process of making for the market \\nby making what is least obtainable does,\\n\\n94\\n00:07:48,040 --> 00:07:51,600\\nis to threaten that you\\'ll wind up \\nwith a press consisting entirely \\n\\n95\\n00:07:52,120 --> 00:07:54,560\\nof government periodicals and pornography\\n\\n96\\n00:07:55,160 --> 00:07:57,160\\nWhat are you going to do to prevent that?\\n\\n97\\n00:07:57,560 --> 00:08:02,640\\nYou\\'re going to try and give printers \\na stake in the progress of literature.\\n\\n98\\n00:08:03,240 --> 00:08:08,440\\n- which is what the copyright law really is,\\nit\\'s a grand jeffersonian sort of an idea.\\n\\n99\\n00:08:09,000 --> 00:08:15,400\\nThat we will turn democracy into a way \\nfor encouraging virtue among printers\\n\\n100\\n00:08:15,720 --> 00:08:20,120\\nAnd we\\'ll get everything to work \\nin such a way as to speed \\n\\n101\\n00:08:20,360 --> 00:08:22,640\\nthe diffusion of knowledge and the useful arts.\\n\\n102\\n00:08:24,160 --> 00:08:28,960\\nSo in that sense,\\ncopyright law takes a rise\\n\\n103\\n00:08:29,160 --> 00:08:33,680\\nfrom a noble experiment\\nintended to meet\\n\\n104\\n00:08:33,840 --> 00:08:38,160\\nan appropriate 18th or \\nearly 19th century problem,\\n\\n105\\n00:08:38,680 --> 00:08:42,080\\nand it by the edisonian period has evolved\\n\\n106\\n00:08:42,560 --> 00:08:47,600\\nwhat is the necessary concomitant for its time,\\nwhich is the \\'work for hire\\' doctrine.\\n\\n107\\n00:08:47,960 --> 00:08:53,320\\nit has to become possible to use that\\nsystem for encouraging virtue amongst printers\\n\\n108\\n00:08:53,640 --> 00:08:59,240\\nactually to encourage the success of \\nlarger commercial publishing enterprises.\\n\\n109\\n00:08:59,520 --> 00:09:04,360\\nWhere Manhattan is thought of as \\nthe centre of printing in the 19th century,\\n\\n110\\n00:09:04,680 --> 00:09:08,400\\nit will be thought of as \\nthe centre of publishing in the twentieth century,\\n\\n111\\n00:09:08,600 --> 00:09:10,760\\nand that\\'s a very different meaning,\\n\\n112\\n00:09:11,000 --> 00:09:16,920\\nit\\'s not about the light industrial process \\nof printing something on pieces of paper\\n\\n113\\n00:09:17,080 --> 00:09:22,880\\nit\\'s about the control of a large vertically\\nintegrated system of cultural production\\n\\n114\\n00:09:23,160 --> 00:09:25,920\\nand for that you need the \\'work for hire\\' doctrine.\\n\\n115\\n00:09:26,000 --> 00:09:29,640\\nAs 18th century booksellers in London\\nneeded Grub Street. \\n\\n116\\n00:09:30,000 --> 00:09:32,040\\nthat is some content producer\\n\\n117\\n00:09:32,400 --> 00:09:36,720\\nto meet the demand \\nof the wide pipe of printing\\n\\n118\\n00:09:37,000 --> 00:09:41,480\\nthat their concentration of the machinery \\nof printing and binding has set up.\\n\\n119\\n00:09:42,000 --> 00:09:46,440\\nThe Edisonian institutions \\nneeded content behind them,\\n\\n120\\n00:09:46,640 --> 00:09:49,840\\nAnd they needed content \\nthey could claim to own.\\n\\n121\\n00:09:50,160 --> 00:09:54,080\\nSo in that sense copyright law comes, \\nthrough the work for hire doctrine,\\n\\n122\\n00:09:54,600 --> 00:09:56,920\\nand its relationship to the law of employment,\\n\\n123\\n00:09:57,240 --> 00:10:02,320\\ncopyright becomes the organizational \\norganic document\\n\\n124\\n00:10:02,320 --> 00:10:05,920\\nfor these immense media enterprises.\\n\\n125\\n00:10:06,240 --> 00:10:06,280\\nOnce media enterprises \\nhave come into existence,\\n\\n126\\n00:10:09,640 --> 00:10:14,200\\nonce New York city is a \\ncentre of publishing rather than printing,\\n\\n127\\n00:10:15,040 --> 00:10:18,760\\nThen any medium that comes along \\nhas to be co-opted in the same way.\\n\\n128\\n00:10:18,880 --> 00:10:22,480\\nThe principle of vertical integration \\nhas to be maintained.\\n\\n129\\n00:10:22,600 --> 00:10:27,520\\nAnd as you move from publishing on paper \\nto radio broadcasting,\\n\\n130\\n00:10:27,920 --> 00:10:34,400\\ntelevision broadcasting, news dissemination,\\nfinancial information dissemination,\\n\\n131\\n00:10:35,000 --> 00:10:38,200\\nyou apply the same model to it:\\nsomebody makes it,\\n\\n132\\n00:10:38,560 --> 00:10:38,600\\nthat creates a property interest,\\n\\n133\\n00:10:41,120 --> 00:10:44,920\\nthat property interest is transferred \\nthrough an employment contract,\\n\\n134\\n00:10:45,160 --> 00:10:49,960\\nand becomes a disposable piece of property\\nin a market economy.\\n\\n135\\n00:10:50,280 --> 00:10:56,480\\nThat seems to meet the need \\nfor the industrial organizations of the time.\\n\\n136\\n00:10:56,880 --> 00:11:00,040\\nNow if the technology makes another change,\\n\\n137\\n00:11:00,480 --> 00:11:06,880\\nand control no longer inherently resides \\nin the object of information itself,\\n\\n138\\n00:11:07,360 --> 00:11:10,440\\nThen copyright has to become \\na law about control\\n\\n139\\n00:11:10,680 --> 00:11:14,440\\nNot a law about these organizational dispositions\\n\\n140\\n00:11:14,920 --> 00:11:21,560\\nand you begin to get, as in the DMCA, \\nor the European Union copyright directive,\\n\\n141\\n00:11:22,040 --> 00:11:24,440\\nyou begin to get para-copyright law,\\n\\n142\\n00:11:24,560 --> 00:11:29,040\\nlaw which is about control over use, \\nnot control over production,\\n\\n143\\n00:11:29,240 --> 00:11:32,040\\nbecause that jointure between the user,\\n\\n144\\n00:11:32,480 --> 00:11:37,160\\nthe consumer, the producer and the distributor,\\nhas become too tight.\\n\\n145\\n00:11:37,640 --> 00:11:42,640\\nAnd the law has to get in there \\nand force a differentiation of roles again.\\n\\n146\\n00:11:42,920 --> 00:11:45,400\\nBut that\\'s nothing to do with \\nwhere copyright started,\\n\\n147\\n00:11:45,680 --> 00:11:48,640\\nit\\'s nothing to do with \\nwhat made copyright law effective \\n\\n148\\n00:11:49,080 --> 00:11:52,320\\nin the organization media of in the first place.',\n", + " 'bytes': 14501,\n", + " 'sha1': 'ht5tki0tjc28y2v0a43aezrx4gndf6a',\n", + " 'parent_id': 36563685,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90799759,\n", + " 'timestamp': '2013-02-16T14:46:30Z',\n", + " 'user': {'id': 822627, 'text': 'Dieudo'},\n", + " 'page': {'id': 9770402,\n", + " 'title': 'Eben Moglen - From the birth of printing to industrial culture; the root of copyright.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'test de mise en forme',\n", + " 'text': '0 00:00:00,000 --> 00:00:05,000 Entretien avec [[w:fr:Eben Moglen|Eben Moglen]]\\n\\n1 00:00:06,000 --> 00:00:09,600 Eh bien, je crois que je vais commencer par mettre les choses de cette façon \\n\\n2 00:00:10,240 --> 00:00:14,520 Le livre, qui est le premier article produit en masse dans la culture occidentale, \\n\\n3 00:00:15,000 --> 00:00:21,800 est vraiment le début du processus d\\'industrialisation de l\\'information. \\n\\n4\\n00:00:24,000 --> 00:00:31,160\\nla production ou la consommation artisanale médiévale de l\\'information,\\nparcourant de longues distances, \\n\\n5 00:00:32,000 --> 00:00:37,640 confronté à la difficulté de rechercher des personnes possédant des connaissances spécialisées, \\n\\n6 00:00:38,120 --> 00:00:42,400 devient en l\\'espace de deux générations seulement, \\n\\n7 00:00:43,280 --> 00:00:49,920 le monde de l\\'Europe occidentale de livres, de la masse imprimés produits artefacts, \\n\\n8 00:00:50,360 --> 00:00:52,120 que les connaissances largement répandu, \\n\\n9 00:00:53,000 --> 00:00:59,720 et rendre le processus d\\'accumulation de connaissances spécialisées sur le monde \\n\\n10 00:01:00,000 --> 00:01:03,200 un processus de mémoire plutôt que d\\'un processus de Voyage. \\n\\n11 00:01:04,680 --> 00:01:10,400 À partir de ce monde, nous déplacer, au cours de la révolution edisonian, \\n\\n12 00:01:10,680 --> 00:01:14,600 du troisième quart du 19e siècle à la fin du XXe siècle, \\n\\n13 00:01:15,520 --> 00:01:23,440 dans un monde où la mémoire devient plutôt les articles analogique omniprésente de la culture. \\n\\n14 00:01:24,360 --> 00:01:31,920 Alors, le livre d\\'un article présent dans une bibliothèque, consultable par un public qualifié, \\n\\n15 00:01:32,680 --> 00:01:37,400 est en grande partie remplacé par l\\'image en mouvement, l\\'enregistrement sonore, \\n\\n16 00:01:38,120 --> 00:01:43,480 la culture vernaculaire disposition qui met une énorme quantité d\\'informations \\n\\n17 00:01:44,160 --> 00:01:48,760 pas à la disposition des travailleurs qualifiés, mais à la porte de tous. \\n\\n18 00:01:49,160 --> 00:01:56,240 Maintenant, cela était destiné à une fin, il était destiné, ou tout au moins il a grandi à vos côtés \\n\\n19 00:01:56,520 --> 00:02:03,400 la conscription de Henry Ford, des travailleurs du monde entre les consommateurs nouvelle armée. \\n\\n20 00:02:03,800 --> 00:02:09,280 les gens qui ont sauvé le capitalisme de ses taches rugueuses en consommant sa production \\n\\n21 00:02:09,760 --> 00:02:18,280 qui a terminé sa crise de surproduction en devenant une armée disciplinée des consommateurs. \\n\\n22 00:02:19,120 --> 00:02:21,320 Et pour devenir une armée disciplinée des consommateurs \\n\\n23 00:02:21,680 --> 00:02:26,120 dans le monde les travailleurs doivent être fournis d\\'une culture qui a expliqué la consommation, \\n\\n24 00:02:26,560 --> 00:02:28,880 fait les veulent, je leur ai dit que vouloir, \\n\\n25 00:02:32,440 --> 00:02:32,480 leur a donné des aspirations et des préoccupations \\n\\n26 00:02:33,280 --> 00:02:38,560 qui ne sont pas le produit authentique de leur expérience \\n\\n27 00:02:39,040 --> 00:02:42,800 mais sont le produit transféré de l\\'expérience d\\'autrui. \\n\\n28 00:02:44,720 --> 00:02:48,040 Et comme des formes analogiques de cette culture \\n\\n29 00:02:48,440 --> 00:02:52,720 qui a nécessité des procédés industriels à faire, de produire des documents, \\n\\n30 00:02:53,600 --> 00:02:56,400 pour produire de celluloïd, avec les petits trous coupés en elle,\\n\\n31 00:02:58,040 --> 00:03:05,560 Je regardais un vieux Mel Brookes interview, menée par Dick Cavitt, \\n\\n32 00:03:06,080 --> 00:03:14,400 maintenant présentés par le New York Times comme un acte de conservateurship musée du cinéma, \\n\\n33 00:03:15,360 --> 00:03:17,040 dans laquelle Cavitt demande Mel Brookes: \\n\\n34 00:03:17,160 --> 00:03:19,280 \"Quelle est la partie la plus difficile de faire un film? \\n\\n35 00:03:19,680 --> 00:03:23,400 Et il dit: \"oh ... poinçonnage les petits trous dans les bords de la pellicule. \\n\\n36 00:03:24,040 --> 00:03:25,720 Eh bien, si vous pensez cela d\\'une façon qui est correcte, \\n\\n37 00:03:26,080 --> 00:03:28,200 qui est la partie la plus difficile de faire un film \\n\\n38 00:03:28,680 --> 00:03:32,080 c\\'est pourquoi, dans le monde des ordinateurs numériques, il est si facile de faire des films, \\n\\n39 00:03:32,760 --> 00:03:35,520 parce que vous n\\'avez pas besoin de frapper tous les petits trous dans la pellicule plus. \\n\\n40 00:03:36,000 --> 00:03:38,640 Dans la culture d\\'autres termes contenus dans des objets analogues, \\n\\n41 00:03:39,080 --> 00:03:44,440 la culture dont le contrôle a été entraîné par la difficulté de le faire, le déplacer et de le vendre. \\n\\n42 00:03:45,040 --> 00:03:50,040 contrôle est venu naturellement dans le cadre du processus de l\\'existence même du médium. \\n\\n43 00:03:50,520 --> 00:03:54,640 Qu\\'est-il arrivé quand nous avons déménagé à la fin du XXe siècle, aux médias numériques \\n\\n44 00:03:55,000 --> 00:03:58,200 c\\'est que le processus par lequel la mémoire est devenue l\\'expérience \\n\\n45 00:03:58,360 --> 00:04:01,880 au cours de la longue histoire du livre pour le cinéma Edison \\n\\n46 00:04:02,680 --> 00:04:09,160 est devenue la mémoire est désormais l\\'immédiateté, ce sont les choses que nous fabriquons nous-mêmes, au lieu de se souvenir. \\n\\n47 00:04:09,360 --> 00:04:14,320 Nous sommes assis dans un bar avec nos amis et nous avons une caméra dans chaque téléphone cellulaire \\n\\n48 00:04:14,680 --> 00:04:16,040 une caméra dans chaque téléphone cellulaire \\n\\n49 00:04:16,480 --> 00:04:19,880 et tout ce que nous prenons va directement à Flickr et YouTube \\n\\n50 00:04:20,000 --> 00:04:24,200 et dans la mémoire devient de fait est l\\'attribut du réseau maintenant. \\n\\n51 00:04:24,760 --> 00:04:28,760 Et l\\'expérience devient un attribut du réseau maintenant. \\n\\n52 00:04:30,000 --> 00:04:36,480 Et le contrôle, qui résidaient dans la fabrication même de l\\'artefact, est bonne à prendre. \\n\\n53 00:04:37,000 --> 00:04:43,560 et c\\'est ce que je pense que nous émeut \\n\\n54 00:04:40,200 --> 00:04:43,480 d\\'un monde de contrôle de l\\'Église catholique sur des idées, \\n\\n55 00:04:44,000 --> 00:04:47,080 menacés par l\\'artefact protestante du livre \\n\\n56 00:04:47,600 --> 00:04:52,720 à un monde dans lequel les sociétés Edisonian bénéficié de contrôle, \\n\\n57 00:04:52,760 --> 00:04:54,040 pas fini le livre, mais de plus en celluloïd et comment composter »les petits trous, \\n\\n58 00:04:56,680 --> 00:05:01,040 à un monde dans lequel le réseau fait de la lutte, comme la production, \\n\\n59 00:05:01,440 --> 00:05:05,640 aussi facile que le comportement de consommation et disciplinée \\n\\n60 00:05:06,000 --> 00:05:12,520 et c\\'est l\\'énorme menace, la promesse et la sagesse de la technologie pour notre temps, \\n\\n61 00:05:13,000 --> 00:05:16,640 qu\\'il défie les bases mêmes du contrôle. \\n\\n62 00:05:20,360 --> 00:05:23,040 Eh bien à la fois le droit d\\'auteur et brevets, \\n\\n63 00:05:23,280 --> 00:05:28,400 ces principes de gouvernement que le contrôle des flux d\\'information \\n\\n64 00:05:28,760 --> 00:05:31,600 qu\\'ils sont - que le droit est souvent -- \\n\\n65 00:05:31,920 --> 00:05:37,040 morceaux de technologie effectué dans une période de la strate matériau A \\n\\n66 00:05:37,040 --> 00:05:40,080 survivant dans le matériel Stratum B. \\n\\n67 00:05:40,360 --> 00:05:45,880 Alors, ils mélangent un ensemble particulier de mesures d\\'incitation et des phénomènes \\n\\n68 00:05:46,680 --> 00:05:55,040 Les lois sur les brevets et droits d\\'auteur sont essentiellement à propos des 17e et 18e siècle, les conditions, \\n\\n69 00:05:55,400 --> 00:05:58,040 réalisée par les moyens du 19e siècle \\n\\n70 00:05:58,680 --> 00:06:04,600 et puis redéployer au 20e siècle pour répondre aux problèmes du 21ème siècle. \\n\\n71 00:06:05,000 --> 00:06:10,520 La principale difficulté qui se présente, que la loi du droit d\\'auteur est destinée à traiter, \\n\\n72 00:06:10,880 --> 00:06:13,800 est que, comme vous le dites, c\\'est cher de faire une presse à imprimer \\n\\n73 00:06:14,200 --> 00:06:16,040 mais une fois qu\\'on l\\'a faite, \\n\\n74 00:06:17,240 --> 00:06:22,520 vous devez trouver un moyen de décider ce qu\\'il faut l\\'utiliser sur \\n\\n75 00:06:23,000 --> 00:06:27,240 et la vraie question est ce que l\\'imprimante doit passer son temps d\\'impression. \\n\\n76 00:06:27,840 --> 00:06:33,280 Vous devez donc donner à l\\'imprimante une incitation à imprimer la chose en particulier. \\n\\n77 00:06:33,760 --> 00:06:38,640 Ce n\\'est pas, comme cela a parfois été suggéré par les propriétaires de la culture dans la fin du XXe siècle, \\n\\n78 00:06:39,080 --> 00:06:41,920 que s\\'il n\\'y avait pas d\\'incitations qu\\'ils ne seraient pas imprimer n\\'importe quoi \\n\\n79 00:06:42,400 --> 00:06:44,880 ils sont bien entendu va exécuter la presse, \\n\\n80 00:06:45,360 --> 00:06:48,920 et l\\'homme construit une presse car il peut faire quelque chose d\\'impression de l\\'argent \\n\\n81 00:06:49,160 --> 00:06:52,840 La question est de savoir si ce qu\\'il doit à imprimer est des cartes de visite de quelqu\\'un, \\n\\n82 00:06:53,000 --> 00:06:56,040 quelqu\\'un invitations de mariage, ou d\\'un roman de quelqu\\'un. \\n\\n83 00:06:56,360 --> 00:07:00,920 En d\\'autres termes la question est de savoir comment déterminer ce qu\\'il est que vire à la \\n\\n84 00:07:01,400 --> 00:07:04,840 avec les processus industriels de rares décisions. \\n\\n85 00:07:05,560 --> 00:07:11,400 La culture est rentable, si vous pouvez l\\'acheter bon marché, et de le vendre cher. \\n\\n86 00:07:12,000 --> 00:07:18,600 et c\\'est dans cette mesure rentable parce que c\\'est spécial, différent ou unique. \\n\\n87 00:07:19,200 --> 00:07:20,880 Qu\\'est-ce inondations en France, \\n\\n88 00:07:21,160 --> 00:07:24,720 comme Robert Darnton a montré dans la réflexion sur la culture du XVIIIe siècle français, \\n\\n89 00:07:24,800 --> 00:07:27,400 Que se jette dans la France des presses d\\'Amsterdam \\n\\n90 00:07:27,560 --> 00:07:30,040 C\\'est ce que les Français ne sont pas autorisés à faire pour eux-mêmes, \\n\\n91 00:07:30,680 --> 00:07:37,080 ce qui explique pourquoi la pornographie et la politique sont l\\'étoffe d\\'impression pour l\\'exportation dans le 18ème siècle. \\n\\n92 00:07:37,440 --> 00:07:39,160 Mais qu\\'est-ce qui fait, \\n\\n93 00:07:40,000 --> 00:07:47,840 que le processus de fabrication pour le marché en faisant ce qui est moins à obtenir le fait, \\n\\n94 00:07:48,040 --> 00:07:51,600 est de menacer de vous retrouver avec une presse entièrement composé \\n\\n95 00:07:52,120 --> 00:07:54,560 des périodiques du gouvernement et de la pornographie \\n\\n96 00:07:55,160 --> 00:07:57,160 Que vas-tu faire pour éviter cela? \\n\\n97 00:07:57,560 --> 00:08:02,640 Tu vas essayer de donner des imprimantes un intérêt dans le progrès de la littérature. \\n\\n98 00:08:03,240 --> 00:08:08,440 - qui est ce que le droit d\\'auteur est vraiment, c\\'est une sorte de Jefferson grand d\\'une idée. \\n\\n99 00:08:09,000 --> 00:08:15,400 que nous tenterons de la démocratie en une voie à encourager la vertu parmi les imprimantes \\n\\n100 00:08:15,720 --> 00:08:20,120 Et nous allons avoir tout à travailler de telle manière à accélérer \\n\\n101 00:08:20,360 --> 00:08:22,640 la diffusion des connaissances et des arts utiles. \\n\\n102 00:08:24,160 --> 00:08:28,960 Donc, dans ce sens, le droit d\\'auteur prend une hausse \\n\\n103 00:08:29,160 --> 00:08:33,680 d\\'une noble expérience vise à répondre \\n\\n104 00:08:33,840 --> 00:08:38,160 une appropriées 18e ou au début problème du 19ème siècle, \\n\\n105 00:08:38,680 --> 00:08:42,080 et c\\'est par la période edisonian a évolué \\n\\n106 00:08:42,560 --> 00:08:47,600 Quel est le pendant nécessaire pour son époque, qui est le «travail pour la doctrine de location». \\n\\n107 00:08:47,960 --> 00:08:53,320 il doit devenir possible d\\'utiliser ce système pour encourager la vertu parmi les imprimantes \\n\\n108 00:08:53,640 --> 00:08:59,240 effectivement à encourager la réussite des entreprises de presse commerciales plus importantes. \\n\\n109 00:08:59,520 --> 00:09:04,360 Où Manhattan est considéré comme le centre de l\\'imprimerie au 19e siècle, \\n\\n110 00:09:04,680 --> 00:09:08,400 il sera considéré comme le centre de l\\'édition au XXe siècle, \\n\\n111 00:09:08,600 --> 00:09:10,760 et c\\'est un sens très différent, \\n\\n112 00:09:11,000 --> 00:09:16,920 ce n\\'est pas sur le processus d\\'industrie légère de quelque chose de l\\'impression sur des morceaux de papier \\n\\n113 00:09:17,080 --> 00:09:22,880 il s\\'agit du contrôle d\\'un grand système d\\'intégration verticale de la production culturelle \\n\\n114 00:09:23,160 --> 00:09:25,920 et pour cela vous avez besoin du «travail pour la doctrine de location». \\n\\n115 00:09:26,000 --> 00:09:29,640 Comme les libraires du 18ème siècle à Londres nécessaires Grub Street. \\n\\n116 00:09:30,000 --> 00:09:32,040 qui est certain producteur de contenu \\n\\n117 00:09:32,400 --> 00:09:36,720 pour satisfaire la demande de la conduite de systèmes d\\'impression \\n\\n118 00:09:37,000 --> 00:09:41,480 que leur concentration de la machine d\\'impression et de reliure a mis en place. \\n\\n119 00:09:42,000 --> 00:09:46,440 Les institutions nécessaires Edisonian contenu derrière eux, \\n\\n120 00:09:46,640 --> 00:09:49,840 Et ils avaient besoin de contenu ils peuvent prétendre en être propriétaires. \\n\\n121 00:09:50,160 --> 00:09:54,080 Donc, dans ce sens est le droit d\\'auteur, grâce aux travaux de la doctrine de la location, \\n\\n122 00:09:54,600 --> 00:09:56,920 et sa relation à la loi de l\\'emploi, \\n\\n123 00:09:57,240 --> 00:10:02,320 droit d\\'auteur devient le document de l\\'organisation biologique\\n\\n124 00:10:02,320 --> 00:10:05,920 pour ces entreprises de médias immense. \\n\\n125 00:10:06,240 --> 00:10:06,280 Une fois que les entreprises de médias sont venus à l\\'existence, \\n\\n126 00:10:09,640 --> 00:10:14,200 une fois la ville de New York est un centre d\\'édition plutôt que d\\'imprimer, \\n\\n127 00:10:15,040 --> 00:10:18,760 Ensuite, n\\'importe quel support qui se présente doit être co-optés de la même manière. \\n\\n128 00:10:18,880 --> 00:10:22,480 Le principe de l\\'intégration verticale doit être maintenue. \\n\\n129 00:10:22,600 --> 00:10:27,520 Et comme vous passez de l\\'édition sur papier à la radiodiffusion par radio, \\n\\n130 00:10:27,920 --> 00:10:34,400 la radiodiffusion télévisuelle, la diffusion des nouvelles, diffusion d\\'informations financières, \\n\\n131 00:10:35,000 --> 00:10:38,200 vous avez appliqué le même modèle pour elle: quelqu\\'un le fait, \\n\\n132 00:10:38,560 --> 00:10:38,600 qui crée un intérêt de propriété, \\n\\n133 00:10:41,120 --> 00:10:44,920 que l\\'intérêt de la propriété est transférée à travers un contrat de travail, \\n\\n134 00:10:45,160 --> 00:10:49,960 et devient une pièce à usage de biens dans une économie de marché. \\n\\n135 00:10:50,280 --> 00:10:56,480 Cela semble répondre à la nécessité pour les organisations industrielles de l\\'époque. \\n\\n136 00:10:56,880 --> 00:11:00,040 Maintenant, si la technologie permet une autre modification, \\n\\n137 00:11:00,480 --> 00:11:06,880 et de contrôle ne réside plus fondamentalement dans l\\'objet de l\\'information elle-même, \\n\\n138 00:11:07,360 --> 00:11:10,440 Ensuite, le droit d\\'auteur doit devenir une loi sur le contrôle \\n\\n139 00:11:10,680 --> 00:11:14,440 Pas une loi sur ces dispositions organisationnelles \\n\\n140 00:11:14,920 --> 00:11:21,560 et vous commencez à obtenir, comme dans le DMCA, ou la directive européenne sur le droit d\\'auteur, \\n\\n141 00:11:22,040 --> 00:11:24,440 vous commencez à obtenir par le droit d\\'auteur, \\n\\n142 00:11:24,560 --> 00:11:29,040 loi qui est sur le point de contrôle sur l\\'utilisation, pas de contrôle sur la production, \\n\\n143 00:11:29,240 --> 00:11:32,040 parce que cette jointure entre l\\'utilisateur, \\n\\n144 00:11:32,480 --> 00:11:37,160 le consommateur, le producteur et le distributeur, est devenu trop serré. \\n\\n145 00:11:37,640 --> 00:11:42,640 Et la loi doit entrer en vigueur là-bas et une différenciation des rôles de nouveau. \\n\\n146 00:11:42,920 --> 00:11:45,400 Mais ce n\\'est rien à voir avec le cas du droit d\\'auteur a commencé, \\n\\n147 00:11:45,680 --> 00:11:48,640 Ça n\\'a rien à voir avec ce que fait le droit d\\'auteur efficaces \\n\\n148 00:11:49,080 --> 00:11:52,320 dans les médias dans l\\'organisation de la première place.',\n", + " 'bytes': 16205,\n", + " 'sha1': 'fzhcgim7cwadmuc8nki6eiazja4ebha',\n", + " 'parent_id': 36592852,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 335581436,\n", + " 'timestamp': '2019-01-20T14:12:57Z',\n", + " 'user': {'id': 5104363, 'text': 'NicoScribe'},\n", + " 'page': {'id': 9932968,\n", + " 'title': 'Wikipedia ridotto.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Undo revision 331886500 by [[Special:Contributions/عوووض المالكي|عوووض المالكي]] ([[User talk:عوووض المالكي|talk]]) ?',\n", + " 'text': '1\\n00:00:07,686 --> 00:00:11,934\\nWikipedia nasce nel 2001 e si sviluppa con l\\'idea di creare\\n\\n2\\n00:00:11,973 --> 00:00:15,443\\nla più grande enciclopedia a contenuto aperto della storia.\\n\\n3\\n00:00:15,710 --> 00:00:19,598\\nWikipedia è redatta grazie al contributo di tantissimi volontari.\\n\\n4\\n00:00:19,751 --> 00:00:22,465\\nChiunque può collaborare. Vediamo come.\\n\\n5\\n00:00:23,854 --> 00:00:27,300\\nQuasi tutte le pagine di Wikipedia presentano in alto\\n\\n6\\n00:00:27,335 --> 00:00:30,492\\nuna linguetta con la scritta modifica, che consente di fare\\n\\n7\\n00:00:30,536 --> 00:00:34,428\\nesattamente quello che dice: modificare la pagina che si sta leggendo.\\n\\n8\\n00:00:35,043 --> 00:00:39,465\\nIn Wikipedia infatti non esiste una redazione: qualsiasi utente\\n\\n9\\n00:00:39,540 --> 00:00:42,990\\npuò accedere ai contenuti di tutte le pagine dell\\'enciclopedia\\n\\n10\\n00:00:43,019 --> 00:00:45,932\\ne modificarli, senza necessità di registrarsi.\\n\\n11\\n00:00:46,151 --> 00:00:49,719\\nLa formattazione del testo segue delle regole particolari,\\n\\n12\\n00:00:49,728 --> 00:00:53,638\\nma si tratta di un linguaggio abbastanza semplice, facile da imparare.\\n\\n13\\n00:00:53,989 --> 00:00:57,078\\nSalvando la modifica si accetta di rilasciare\\n\\n14\\n00:00:57,112 --> 00:00:59,573\\nil proprio contributo con una licenza libera.\\n\\n15\\n00:00:59,652 --> 00:01:03,546\\nChiunque potrà consultare, utilizzare e riadattare il testo,\\n\\n16\\n00:01:03,561 --> 00:01:07,693\\nanche per scopi commerciali, a condizione di citare gli autori della voce\\n\\n17\\n00:01:07,721 --> 00:01:11,200\\ne di riapplicare la stessa licenza a tutte le opere derivate.\\n\\n18\\n00:01:11,561 --> 00:01:16,019\\nÈ inoltre importante ricordare che ogni utente, anche non registrato,\\n\\n19\\n00:01:16,073 --> 00:01:19,998\\nresta sempre responsabile personalmente dei propri inserimenti.\\n\\n20\\n00:01:20,542 --> 00:01:24,743\\nA questo punto la modifica è immediatamente visibile a tutti!\\n\\n21\\n00:01:25,715 --> 00:01:29,795\\nWikipedia non è una raccolta indiscriminata di informazioni,\\n\\n22\\n00:01:29,820 --> 00:01:34,142\\nma un\\'enciclopedia, una raccolta sistematica del sapere umano.\\n\\n23\\n00:01:34,361 --> 00:01:36,797\\nSu Wikipedia infatti non vanno inserite\\n\\n24\\n00:01:36,816 --> 00:01:40,559\\ndefinizioni da vocabolario e neanche ricerche originali.\\n\\n25\\n00:01:41,748 --> 00:01:44,853\\nOgni pagina ha una sua cronologia, che elenca\\n\\n26\\n00:01:44,878 --> 00:01:48,311\\ntutte le versioni realizzate dal momento della sua creazione.\\n\\n27\\n00:01:48,562 --> 00:01:51,551\\nOltre all\\'ora, la data e l\\'oggetto della modifica,\\n\\n28\\n00:01:51,566 --> 00:01:54,416\\nil software registra anche chi l\\'ha effettuata.\\n\\n29\\n00:01:54,638 --> 00:01:57,534\\nNel caso di un utente anonimo, viene rilevato\\n\\n30\\n00:01:57,541 --> 00:02:00,116\\nl\\'indirizzo IP da cui è stata eseguita.\\n\\n31\\n00:02:00,679 --> 00:02:03,639\\nLa cronologia consente anche di confrontare\\n\\n32\\n00:02:03,679 --> 00:02:06,777\\ndue diverse versioni per evidenziarne le differenze.\\n\\n33\\n00:02:07,467 --> 00:02:11,381\\nSu Wikipedia niente va perso, ma per i primi tentativi di scrittura\\n\\n34\\n00:02:11,397 --> 00:02:14,586\\nè bene usare la pagina delle prove, detta anche sandbox,\\n\\n35\\n00:02:14,610 --> 00:02:16,755\\nche può essere modificata a piacimento.\\n\\n36\\n00:02:16,803 --> 00:02:20,736\\nPer lavorare con più calma, un utente registrato può anche crearsi\\n\\n37\\n00:02:20,801 --> 00:02:24,334\\nuna sandbox personale nella propria pagina utente.\\n\\n38\\n00:02:24,924 --> 00:02:28,020\\nPer generare una nuova pagina basta creare un link,\\n\\n39\\n00:02:28,109 --> 00:02:30,844\\noppure cliccare su un \"link rosso\" già esistente.\\n\\n40\\n00:02:30,929 --> 00:02:33,148\\nÈ comunque buona prassi verificare prima\\n\\n41\\n00:02:33,209 --> 00:02:35,461\\nse la pagina non sia già presente.\\n\\n42\\n00:02:36,025 --> 00:02:38,838\\nPer garantire un buon funzionamento del progetto,\\n\\n43\\n00:02:38,841 --> 00:02:42,074\\nla comunità ha elaborato delle \"linee guida\" che tutti gli utenti\\n\\n44\\n00:02:42,114 --> 00:02:44,811\\nsono invitati a rispettare e a far rispettare.\\n\\n45\\n00:02:45,253 --> 00:02:47,615\\nUno dei principali canoni di Wikipedia\\n\\n46\\n00:02:47,687 --> 00:02:50,075\\nè l’organizzazione dei contenuti per modelli.\\n\\n47\\n00:02:50,147 --> 00:02:53,071\\nVediamo la struttura generale di una voce.\\n\\n48\\n00:02:53,977 --> 00:02:58,354\\nLa sezione iniziale deve riassumere brevemente e con parole semplici\\n\\n49\\n00:02:58,370 --> 00:03:00,824\\ni principali punti affrontati dalla voce.\\n\\n50\\n00:03:00,989 --> 00:03:03,828\\nLa pagina si sviluppa in sezioni (o capoversi),\\n\\n51\\n00:03:03,879 --> 00:03:06,856\\nche automaticamente vengono riassunti in un indice.\\n\\n52\\n00:03:07,138 --> 00:03:10,739\\nSu Wikipedia possono essere inserite immagini, fotografie\\n\\n53\\n00:03:10,759 --> 00:03:14,142\\ne anche video, ma è assolutamente necessario accertarsi\\n\\n54\\n00:03:14,188 --> 00:03:17,207\\nche il materiale caricato sia liberamente utilizzabile,\\n\\n55\\n00:03:17,221 --> 00:03:19,994\\nossia rilasciato con una licenza libera!\\n\\n56\\n00:03:20,434 --> 00:03:23,597\\nTutte le informazioni contenute nelle voci devono essere\\n\\n57\\n00:03:23,604 --> 00:03:26,765\\nattendibili e verificabili, per questo è necessario\\n\\n58\\n00:03:26,805 --> 00:03:29,158\\ncitare sempre le fonti da cui sono tratte,\\n\\n59\\n00:03:29,167 --> 00:03:32,283\\nche devono essere largamente riconosciute e accettate.\\n\\n60\\n00:03:32,497 --> 00:03:35,339\\nAlla fine di ogni voce, dopo il testo vero e proprio,\\n\\n61\\n00:03:35,353 --> 00:03:37,648\\nsono presenti vari paragrafi «accessori»,\\n\\n62\\n00:03:37,665 --> 00:03:40,095\\nche rinviano ad ulteriori approfondimenti.\\n\\n63\\n00:03:40,302 --> 00:03:43,422\\nPer alcuni progetti tematici, esistono convenzioni\\n\\n64\\n00:03:43,405 --> 00:03:47,109\\ne linee guida specifiche che aiutano nella stesura delle voci.\\n\\n65\\n00:03:48,500 --> 00:03:50,930\\nUn principio inderogabile di Wikipedia\\n\\n66\\n00:03:50,964 --> 00:03:53,335\\nè l\\'uso di un punto di vista neutrale.\\n\\n67\\n00:03:53,361 --> 00:03:55,981\\nLe voci non devono contenere giudizi di merito,\\n\\n68\\n00:03:56,011 --> 00:03:59,739\\nma si devono limitare a presentare tutti i punti di vista di rilievo\\n\\n69\\n00:03:59,754 --> 00:04:03,297\\nin maniera equa, proporzionata e senza pregiudizi.\\n\\n70\\n00:04:04,289 --> 00:04:08,548\\nOgni voce di Wikipedia è affiancata da una pagina di discussione,\\n\\n71\\n00:04:08,627 --> 00:04:11,086\\nin cui gli utenti possono confrontarsi\\n\\n72\\n00:04:11,114 --> 00:04:14,184\\ne concordare una versione il più possibile adeguata e condivisa.\\n\\n73\\n00:04:14,395 --> 00:04:17,464\\nA differenza delle pagine delle voci, qui gli interventi\\n\\n74\\n00:04:17,493 --> 00:04:20,784\\nvanno sempre firmati, ma è bene ricordare che Wikipedia\\n\\n75\\n00:04:20,823 --> 00:04:24,667\\nnon è un posto in cui esprimere punti di vista personali o parziali.\\n\\n76\\n00:04:25,117 --> 00:04:27,117\\nQuando un utente ha necessità\\n\\n77\\n00:04:27,147 --> 00:04:29,753\\ndi rivolgersi a più persone contemporaneamente,\\n\\n78\\n00:04:29,823 --> 00:04:33,631\\nper un problema di interesse generale o relativo a uno specifico settore,\\n\\n79\\n00:04:33,655 --> 00:04:37,510\\npuò utilizzare il Bar oppure i rispettivi bar tematici.\\n\\n80\\n00:04:37,995 --> 00:04:41,242\\nOgni utente registrato dispone di una pagina personale,\\n\\n81\\n00:04:41,273 --> 00:04:44,115\\nin cui può inserire qualche informazione su di sé.\\n\\n82\\n00:04:44,226 --> 00:04:47,802\\nAnche a questa pagina è affiancata una pagina di discussione,\\n\\n83\\n00:04:47,827 --> 00:04:51,693\\nche viene utilizzata come se fosse una casella di posta personale.\\n\\n84\\n00:04:51,983 --> 00:04:55,753\\nPer questioni tecniche si può chiedere aiuto agli utenti più esperti,\\n\\n85\\n00:04:55,815 --> 00:04:58,338\\nad esempio attraverso lo Sportello Informazioni.\\n\\n86\\n00:04:58,353 --> 00:05:02,030\\nSui contenuti invece si può consultare l\\'Oracolo.\\n\\n87\\n00:05:02,924 --> 00:05:06,262\\nIn caso di evidenti abusi o atti di vandalismo,\\n\\n88\\n00:05:06,294 --> 00:05:09,319\\nalcuni utenti registrati, detti \"amministratori\",\\n\\n89\\n00:05:09,386 --> 00:05:12,083\\npossono intervenire con specifiche operazioni,\\n\\n90\\n00:05:12,109 --> 00:05:15,486\\ncome bloccare un utente o cancellare o bloccare una pagina.\\n\\n91\\n00:05:15,664 --> 00:05:18,384\\nGli amministratori sono volontari che hanno acquisito\\n\\n92\\n00:05:18,384 --> 00:05:22,048\\nla fiducia della comunità e sono stati scelti attraverso un\\'elezione.\\n\\n93\\n00:05:22,218 --> 00:05:25,355\\nSvolgono operazioni tecniche delicate e garantiscono\\n\\n94\\n00:05:25,357 --> 00:05:27,646\\nil rispetto delle linee guida del progetto,\\n\\n95\\n00:05:27,664 --> 00:05:30,453\\nma non sono i responsabili di Wikipedia.\\n\\n96\\n00:05:31,311 --> 00:05:34,532\\nWikipedia è gestita dalla Wikimedia Foundation,\\n\\n97\\n00:05:34,542 --> 00:05:37,960\\nuna fondazione senza fini di lucro con sede a San Francisco,\\n\\n98\\n00:05:37,958 --> 00:05:41,090\\nche garantisce le risorse per lo sviluppo del progetto.\\n\\n99\\n00:05:41,281 --> 00:05:44,554\\nLa fondazione, istituita nel 2003, vive grazie\\n\\n100\\n00:05:44,559 --> 00:05:47,233\\na sovvenzioni da parte di enti pubblici e privati,\\n\\n101\\n00:05:47,235 --> 00:05:51,571\\nma soprattutto grazie a moltissime micro-donazioni di singole persone.\\n\\n102\\n00:05:51,853 --> 00:05:54,959\\nPer mantenere assoluta indipendenza e coinvolgere\\n\\n103\\n00:05:54,991 --> 00:05:59,277\\ntanti contributori volontari, su Wikipedia infatti non c\\'è pubblicità.\\n\\n104\\n00:05:59,979 --> 00:06:04,125\\nNel frattempo in tutto il mondo sono nate diverse associazioni di volontari\\n\\n105\\n00:06:04,181 --> 00:06:07,761\\nche promuovono localmente Wikipedia e i progetti fratelli.\\n\\n106\\n00:06:08,105 --> 00:06:11,624\\nIn Italia dal 2005 esiste Wikimedia Italia,\\n\\n107\\n00:06:11,671 --> 00:06:15,961\\nche oltre ai progetti della Wikimedia Foundation, promuove altre iniziative\\n\\n108\\n00:06:15,973 --> 00:06:19,662\\nlegate alla diffusione libera della cultura e della conoscenza.\\n\\n109\\n00:06:19,898 --> 00:06:23,992\\nEd è a Wikimedia Italia che possono rivolgersi la stampa, le aziende\\n\\n110\\n00:06:24,029 --> 00:06:28,130\\ne le scuole per avere maggiori informazioni in italiano su Wikipedia.\\n\\n111\\n00:06:28,981 --> 00:06:31,905\\nTantissimi volontari gratuitamente accumulano,\\n\\n112\\n00:06:31,913 --> 00:06:35,649\\nordinano e strutturano le conoscenze condivise del nostro tempo\\n\\n113\\n00:06:35,701 --> 00:06:39,149\\nper renderle liberamente disponibili. E voi?\\n\\n114\\n00:06:39,352 --> 00:06:42,605\\nSiate coraggiosi: Wikipedia è aperta a tutti!\\n\\n115\\n00:06:54,000 --> 00:06:56,000\\n\\n116\\n00:06:57,000 --> 00:06:59,000',\n", + " 'bytes': 10233,\n", + " 'sha1': 'aa3clguyoe5fgoy3mp40nopl4yh0paa',\n", + " 'parent_id': 331886500,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 41873960,\n", + " 'timestamp': '2010-07-28T11:07:26Z',\n", + " 'user': {'text': '93.145.80.160'},\n", + " 'page': {'id': 9932976,\n", + " 'title': 'Wikipedia ridotto.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'useless lines',\n", + " 'text': '1\\n00:00:07,686 --> 00:00:11,934\\nWikipedia was born in 2001. The goal was to create\\n\\n2\\n00:00:11,973 --> 00:00:15,443\\nthe biggest open-content encyclopedia in history.\\n\\n3\\n00:00:15,710 --> 00:00:19,598\\nWikipedia is written by many volunteer contributors.\\n\\n4\\n00:00:19,751 --> 00:00:22,465\\nEveryone can contribute. Let\\'s see how.\\n\\n5\\n00:00:23,854 --> 00:00:27,300\\nAlmost every article on Wikipedia has a tab on the top\\n\\n6\\n00:00:27,335 --> 00:00:30,492\\nsaying \"edit\" (\"modifica\"). It allows you to do\\n\\n7\\n00:00:30,536 --> 00:00:34,428\\nexactly what it says: to edit the page that you are reading.\\n\\n8\\n00:00:35,043 --> 00:00:39,465\\nWikipedia doesn\\'t have an editorial staff. Every reader\\n\\n9\\n00:00:39,540 --> 00:00:42,990\\ncan access the content of all the pages of the encyclopedia\\n\\n10\\n00:00:43,019 --> 00:00:45,932\\nand edit them, even without creating an account.\\n\\n11\\n00:00:46,151 --> 00:00:49,719\\nThe text formatting involves some special code,\\n\\n12\\n00:00:49,728 --> 00:00:53,638\\nbut it\\'s a rather simple language, easy to learn.\\n\\n13\\n00:00:53,989 --> 00:00:57,078\\nBy saving your edits, you agree to release\\n\\n14\\n00:00:57,112 --> 00:00:59,573\\nyour contribution under a free license.\\n\\n15\\n00:00:59,652 --> 00:01:03,546\\nEveryone will be free to read, use and modify the text,\\n\\n16\\n00:01:03,561 --> 00:01:07,693\\neven for commercial purpose, as long as they credit the article\\'s authors\\n\\n17\\n00:01:07,721 --> 00:01:11,200\\nand release any derivative works under the same license.\\n\\n18\\n00:01:11,561 --> 00:01:16,019\\nIt\\'s also important to remember that every user, even if not registered,\\n\\n19\\n00:01:16,073 --> 00:01:19,998\\nis solely responsible for his or her contributions.\\n\\n20\\n00:01:20,542 --> 00:01:24,743\\nOnce saved, the change is immediately visible to everyone!\\n\\n21\\n00:01:25,715 --> 00:01:29,795\\nWikipedia is not a random collection of information,\\n\\n22\\n00:01:29,820 --> 00:01:34,142\\nbut an encyclopedia. It is a systematic collection of the human knowledge.\\n\\n23\\n00:01:34,361 --> 00:01:36,797\\nSome kinds of contributions, like\\n\\n24\\n00:01:36,816 --> 00:01:40,559\\nsimple definitions and original research, are not allowed.\\n\\n25\\n00:01:41,748 --> 00:01:44,853\\nEvery page has its own history, that shows\\n\\n26\\n00:01:44,878 --> 00:01:48,311\\nall the versions of the page since its creation.\\n\\n27\\n00:01:48,562 --> 00:01:51,551\\nIn addition to the time, the date, and the summary of each modification,\\n\\n28\\n00:01:51,566 --> 00:01:54,416\\nthe software also records who did it.\\n\\n29\\n00:01:54,638 --> 00:01:57,534\\nIf the contributor does not use an account, the IP address\\n\\n30\\n00:01:57,541 --> 00:02:00,116\\nof his or her computer network is also included in the page history.\\n\\n31\\n00:02:00,679 --> 00:02:03,639\\nThe history allows any reader to compare\\n\\n32\\n00:02:03,679 --> 00:02:06,777\\nany two different versions, highlighting the differences between them.\\n\\n33\\n00:02:07,467 --> 00:02:11,381\\nEvery change on Wikipedia is recorded; so when you start out,\\n\\n34\\n00:02:11,397 --> 00:02:14,586\\nit\\'s best to use the test page, called the \"sandbox\",\\n\\n35\\n00:02:14,610 --> 00:02:16,755\\nwhich can be modified freely.\\n\\n36\\n00:02:16,803 --> 00:02:20,736\\nRegistered users can also create\\n\\n37\\n00:02:20,801 --> 00:02:24,334\\npersonal sandbox pages under their user page.\\n\\n38\\n00:02:24,924 --> 00:02:28,020\\nTo create a new page, just create a link to your chosen page title,\\n\\n39\\n00:02:28,109 --> 00:02:30,844\\nor click on an existing \"red link.\"\\n\\n40\\n00:02:30,929 --> 00:02:33,148\\nIt\\'s best to check first\\n\\n41\\n00:02:33,209 --> 00:02:35,461\\nwhether the page already exists.\\n\\n42\\n00:02:36,025 --> 00:02:38,838\\nIn order to ensure productive collaboration,\\n\\n43\\n00:02:38,841 --> 00:02:42,074\\nthe community has developed some guidelines that all contributors\\n\\n44\\n00:02:42,114 --> 00:02:44,811\\nare invited to follow and to enforce.\\n\\n45\\n00:02:45,253 --> 00:02:47,615\\nOne of the main guidelines on Wikipedia\\n\\n46\\n00:02:47,687 --> 00:02:50,075\\nconcerns how an article\\'s content is organized.\\n\\n47\\n00:02:50,147 --> 00:02:53,071\\nLet\\'s look at the general structure of an article.\\n\\n48\\n00:02:53,977 --> 00:02:58,354\\nThe \"lead section\" should summarize the main topics of the article\\n\\n49\\n00:02:58,370 --> 00:03:00,824\\nwith concise and simple language.\\n\\n50\\n00:03:00,989 --> 00:03:03,828\\nThe article is developed in sections;\\n\\n51\\n00:03:03,879 --> 00:03:06,856\\na table of contents is generated automatically.\\n\\n52\\n00:03:07,138 --> 00:03:10,739\\nOn Wikipedia, you can include photos, diagrams,\\n\\n53\\n00:03:10,759 --> 00:03:14,142\\nor videos, but it\\'s essential that you verify\\n\\n54\\n00:03:14,188 --> 00:03:17,207\\nthat the material you want to upload is freely usable;\\n\\n55\\n00:03:17,221 --> 00:03:19,994\\nthat is, released under a free license!\\n\\n56\\n00:03:20,434 --> 00:03:23,597\\nAll the informaton that an article contains must be\\n\\n57\\n00:03:23,604 --> 00:03:26,765\\nreliable and verifiable, so it\\'s necessary\\n\\n58\\n00:03:26,805 --> 00:03:29,158\\nalways to cite the external sources;\\n\\n59\\n00:03:29,167 --> 00:03:32,283\\nthese sources must be widely recognized for their accuracy.\\n\\n60\\n00:03:32,497 --> 00:03:35,339\\nAt the end of each article, after the text,\\n\\n61\\n00:03:35,353 --> 00:03:37,648\\nthere are some \"technical\" sections,\\n\\n62\\n00:03:37,665 --> 00:03:40,095\\nthat provide further resources relating to the topic.\\n\\n63\\n00:03:40,302 --> 00:03:43,422\\nIn some specific topic areas, there are conventions\\n\\n64\\n00:03:43,405 --> 00:03:47,109\\nand specific guidelines for writing an article.\\n\\n65\\n00:03:48,500 --> 00:03:50,930\\nAn imperative principle of Wikipedia\\n\\n66\\n00:03:50,964 --> 00:03:53,335\\nis the neutral point of view.\\n\\n67\\n00:03:53,361 --> 00:03:55,981\\nArticles must not contain personal opinions and judgements,\\n\\n68\\n00:03:56,011 --> 00:03:59,739\\nbut have to explain all the main points of view\\n\\n69\\n00:03:59,754 --> 00:04:03,297\\nin a neutral and balanced way, without prejudice.\\n\\n70\\n00:04:04,289 --> 00:04:08,548\\nEvery Wikipedia article has its own discussion page,\\n\\n71\\n00:04:08,627 --> 00:04:11,086\\nwhere writers and editors can discuss and develop\\n\\n72\\n00:04:11,114 --> 00:04:14,184\\nan article that reflects diverse points of view.\\n\\n73\\n00:04:14,395 --> 00:04:17,464\\nUnlike the article page, individual contributors\\n\\n74\\n00:04:17,493 --> 00:04:20,784\\nsign their comments here. But remember that the discussion\\n\\n75\\n00:04:20,823 --> 00:04:24,667\\nmust support the improvement of the article, and is not a place for extended arguments.\\n\\n76\\n00:04:25,117 --> 00:04:27,117\\nWhen contributors need\\n\\n77\\n00:04:27,147 --> 00:04:29,753\\nto address many people at the same time,\\n\\n78\\n00:04:29,823 --> 00:04:33,631\\nto discuss a general problem, or a topic that concerns several articles,\\n\\n79\\n00:04:33,655 --> 00:04:37,510\\nthey can use the \"Village Pump\" (\"Bar\") or the appropriate topical project\\'s pages.\\n\\n80\\n00:04:37,995 --> 00:04:41,242\\nEvery registered user has their own personal page,\\n\\n81\\n00:04:41,273 --> 00:04:44,115\\nwhere he or she can share some information about themselves.\\n\\n82\\n00:04:44,226 --> 00:04:47,802\\nThis page too has a corresponding discussion page,\\n\\n83\\n00:04:47,827 --> 00:04:51,693\\nwhich is used like a personal mailbox.\\n\\n84\\n00:04:51,983 --> 00:04:55,753\\nYou may want to seek out an expert user for technical help;\\n\\n85\\n00:04:55,815 --> 00:04:58,338\\nfor example, at the \"Help desk\" (\"Sportello Informazioni\").\\n\\n86\\n00:04:58,353 --> 00:05:02,030\\nYou can ask the Oracle (\"l\\'Oracolo\") about the content.\\n\\n87\\n00:05:02,924 --> 00:05:06,262\\nIn case of vandalism or overly aggressive behavior,\\n\\n88\\n00:05:06,294 --> 00:05:09,319\\nsome registered users, called \"administrators,\"\\n\\n89\\n00:05:09,386 --> 00:05:12,083\\ncan intervene and perform certain tasks,\\n\\n90\\n00:05:12,109 --> 00:05:15,486\\nsuch as blocking a user, or deleting or protecting a page from editing.\\n\\n91\\n00:05:15,664 --> 00:05:18,384\\nThe administrators are volunteers who have gained\\n\\n92\\n00:05:18,384 --> 00:05:22,048\\nthe trust of the community and have been appointed by an election.\\n\\n93\\n00:05:22,218 --> 00:05:25,355\\nThey excute critical technical operations and enforce\\n\\n94\\n00:05:25,357 --> 00:05:27,646\\nthe project\\'s policies and guidelines,\\n\\n95\\n00:05:27,664 --> 00:05:30,453\\nbut they are not ultimately responsible for Wikipedia.\\n\\n96\\n00:05:31,311 --> 00:05:34,532\\nWikipedia is operated by the Wikimedia Foundation,\\n\\n97\\n00:05:34,542 --> 00:05:37,960\\na non-profit foundation based in San Francisco,\\n\\n98\\n00:05:37,958 --> 00:05:41,090\\nwhich provides the resources for developing the project.\\n\\n99\\n00:05:41,281 --> 00:05:44,554\\nThe foundation, created in 2003, relies on\\n\\n100\\n00:05:44,559 --> 00:05:47,233\\ndonations from public and private entities,\\n\\n101\\n00:05:47,235 --> 00:05:51,571\\nand especially from many, many small donations from individuals.\\n\\n102\\n00:05:51,853 --> 00:05:54,959\\nIn order to remain absolutely independent and to involve\\n\\n103\\n00:05:54,991 --> 00:05:59,277\\nmany volunteer editors, Wikipedia does not display advertisements.\\n\\n104\\n00:05:59,979 --> 00:06:04,125\\nAlso, a number of organizations around the world\\n\\n105\\n00:06:04,181 --> 00:06:07,761\\npromote Wikipedia and its sister projects in specific countries or regions.\\n\\n106\\n00:06:08,105 --> 00:06:11,624\\nIn Italy, Wikimedia Italia was founded in 2005.\\n\\n107\\n00:06:11,671 --> 00:06:15,961\\nAlongside Wikimedia Foundation projects, Wikimedia Italia promotes other initiatives\\n\\n108\\n00:06:15,973 --> 00:06:19,662\\nrelated to the diffusion of free culture and free knowledge.\\n\\n109\\n00:06:19,898 --> 00:06:23,992\\nPress, firms and schools can contact Wikimedia Italia\\n\\n110\\n00:06:24,029 --> 00:06:28,130\\nin order to have more information in Italian about Wikipedia.\\n\\n111\\n00:06:28,981 --> 00:06:31,905\\nMany volunteers collect, sort, and organize\\n\\n112\\n00:06:31,913 --> 00:06:35,649\\nthe shared knowledge of our time\\n\\n113\\n00:06:35,701 --> 00:06:39,149\\nto make it freely available. What about you?\\n\\n114\\n00:06:39,352 --> 00:06:42,605\\nBe bold! Wikipedia is open to everybody!',\n", + " 'bytes': 9777,\n", + " 'sha1': 'is511m1sj25xdymplnla43wvqqowxwp',\n", + " 'parent_id': 37304365,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 37304382,\n", + " 'timestamp': '2010-04-05T13:46:11Z',\n", + " 'user': {'id': 50587, 'text': 'Nemo bis'},\n", + " 'page': {'id': 9932980,\n", + " 'title': 'Wikipedia ridotto.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'from http://www.wikimedia.it/index.php/WikiGuida_Wikipedia/Sottotitoli_FR',\n", + " 'text': '1\\n00:00:07,686 --> 00:00:11,934\\nWikipédia est née en 2001 avec l\\'objectif de créer\\n\\n2\\n00:00:11,973 --> 00:00:15,443\\nla plus grande encyclopédie libre de l\\'histoire.\\n\\n3\\n00:00:15,710 --> 00:00:19,598\\nWikipédia est écrite par de nombreux contributeurs volontaires.\\n\\n4\\n00:00:19,751 --> 00:00:22,465\\nChacun peut contribuer. Voyons comment.\\n\\n5\\n00:00:23,854 --> 00:00:27,300\\nPresque toutes les pages de Wikipédia ont un onglet en haut\\n\\n6\\n00:00:27,335 --> 00:00:30,492\\ndisant « Modifier » (edit) ; cela permet de faire\\n\\n7\\n00:00:30,536 --> 00:00:34,428\\nexactement ce que cela dit : de modifier la page que vous lisez.\\n\\n8\\n00:00:35,043 --> 00:00:39,465\\nWikipédia n\\'a pas de comité éditorial. Chaque utilisateur\\n\\n9\\n00:00:39,540 --> 00:00:42,990\\npeut accéder au contenu de toutes les pages de l\\'encyclopédie\\n\\n10\\n00:00:43,019 --> 00:00:45,932\\net les éditer, sans même avoir à s\\'enregistrer.\\n\\n11\\n00:00:46,151 --> 00:00:49,719\\nLa mise en forme du texte obéit à quelques règles spéciales,\\n\\n12\\n00:00:49,728 --> 00:00:53,638\\nmais c\\'est un langage assez simple, facile à apprendre.\\n\\n13\\n00:00:53,989 --> 00:00:57,078\\nEn enregistrant la modification, vous acceptez de publier\\n\\n14\\n00:00:57,112 --> 00:00:59,573\\nvotre contribution sous une licence libre.\\n\\n15\\n00:00:59,652 --> 00:01:03,546\\nChacun sera libre de lire, d\\'utiliser et de modifier le texte,\\n\\n16\\n00:01:03,561 --> 00:01:07,693\\nmême à des fins commerciales, à condition de créditer les auteurs de l\\'article\\n\\n17\\n00:01:07,721 --> 00:01:11,200\\net de publier tous les travaux dérivés sous la même licence.\\n\\n18\\n00:01:11,561 --> 00:01:16,019\\nIl est aussi important de se rappeler que chaque utilisateur, même non enregistré,\\n\\n19\\n00:01:16,073 --> 00:01:19,998\\nest seul responsable de ses contributions.\\n\\n20\\n00:01:20,542 --> 00:01:24,743\\nUne fois sauvée, la modification est immédiatement visible pour tout le monde !\\n\\n21\\n00:01:25,715 --> 00:01:29,795\\nWikipédia n\\'est pas une collection chaotique d\\'information,\\n\\n22\\n00:01:29,820 --> 00:01:34,142\\nmais une encyclopédie, c\\'est-à-dire un recueil systématique de la connaissance humaine.\\n\\n23\\n00:01:34,361 --> 00:01:36,797\\nEn fait, sur Wikipédia, des choses comme\\n\\n24\\n00:01:36,816 --> 00:01:40,559\\ndes définitions de dictionnaire ou des recherches originales ne doivent pas être publiées.\\n\\n25\\n00:01:41,748 --> 00:01:44,853\\nChaque page a son historique propre, qui liste\\n\\n26\\n00:01:44,878 --> 00:01:48,311\\ntoutes les versions de la page depuis sa création.\\n\\n27\\n00:01:48,562 --> 00:01:51,551\\nEn plus de l\\'heure, de la date et du résumé de chaque modification,\\n\\n28\\n00:01:51,566 --> 00:01:54,416\\nle logiciel enregistre aussi qui l\\'a faite.\\n\\n29\\n00:01:54,638 --> 00:01:57,534\\nDans le cas d\\'un utilisateur non-enregistré, l\\'adresse IP\\n\\n30\\n00:01:57,541 --> 00:02:00,116\\ndepuis laquelle la modification est faite, est enregistrée.\\n\\n31\\n00:02:00,679 --> 00:02:03,639\\nL\\'historique permet aussi de comparer\\n\\n32\\n00:02:03,679 --> 00:02:06,777\\ndeux versions distinctes, pour mettre en évidence leurs différences.\\n\\n33\\n00:02:07,467 --> 00:02:11,381\\nRien ne se perd sur Wikipédia ; donc pour vos premières tentatives d\\'écriture\\n\\n34\\n00:02:11,397 --> 00:02:14,586\\nmieux vaut utiliser la page de test, appelée \"Bac à sable\",\\n\\n35\\n00:02:14,610 --> 00:02:16,755\\net que vous pouvez modifier librement.\\n\\n36\\n00:02:16,803 --> 00:02:20,736\\nEn cas de besoin, un utilisateur enregistré peut aussi créer\\n\\n37\\n00:02:20,801 --> 00:02:24,334\\nun bac à sable personnel dans sa page utilisateur.\\n\\n38\\n00:02:24,924 --> 00:02:28,020\\nPour générer une nouvelle page, créez juste un lien vers elle,\\n\\n39\\n00:02:28,109 --> 00:02:30,844\\nou cliquez sur un « lien rouge » déjà existant.\\n\\n40\\n00:02:30,929 --> 00:02:33,148\\nIl est de toutes façons préférable de vérifier d\\'avance\\n\\n41\\n00:02:33,209 --> 00:02:35,461\\nsi la page existe déjà.\\n\\n42\\n00:02:36,025 --> 00:02:38,838\\nPour garantir un bon fonctionnement du projet,\\n\\n43\\n00:02:38,841 --> 00:02:42,074\\nla communauté a développé des « recommandations » que tous les utilisateurs\\n\\n44\\n00:02:42,114 --> 00:02:44,811\\nsont invités à suivre et à faire respecter.\\n\\n45\\n00:02:45,253 --> 00:02:47,615\\nL\\'une des normes principales de Wikipédia\\n\\n46\\n00:02:47,687 --> 00:02:50,075\\nest la structuration du contenu par un modèle.\\n\\n47\\n00:02:50,147 --> 00:02:53,071\\nVoyons la structure générale d\\'un article.\\n\\n48\\n00:02:53,977 --> 00:02:58,354\\nLa section initiale doit résumer les thèmes principaux de l\\'article\\n\\n49\\n00:02:58,370 --> 00:03:00,824\\ndans un langage simple et rapide.\\n\\n50\\n00:03:00,989 --> 00:03:03,828\\nL\\'article est développé en sections (ou paragraphes),\\n\\n51\\n00:03:03,879 --> 00:03:06,856\\ndont l\\'index est généré automatiquement.\\n\\n52\\n00:03:07,138 --> 00:03:10,739\\nSur Wikipédia, vous pouvez insérer des images, des photos,\\n\\n53\\n00:03:10,759 --> 00:03:14,142\\net aussi des vidéos, mais il est absolument nécessaire de vérifier\\n\\n54\\n00:03:14,188 --> 00:03:17,207\\nque le contenu que vous voulez téléverser est librement utilisable,\\n\\n55\\n00:03:17,221 --> 00:03:19,994\\nc\\'est-à-dire, publié sous une licence libre !\\n\\n56\\n00:03:20,434 --> 00:03:23,597\\nToutes les informations qu\\'un article contient doivent être\\n\\n57\\n00:03:23,604 --> 00:03:26,765\\nfiables et vérifiables, c\\'est pourquoi il est nécessaire\\n\\n58\\n00:03:26,805 --> 00:03:29,158\\nde toujours citer leurs sources ;\\n\\n59\\n00:03:29,167 --> 00:03:32,283\\nces sources doivent être largement reconnues et acceptées.\\n\\n60\\n00:03:32,497 --> 00:03:35,339\\nÀ la fin de chaque article, à la fin du texte,\\n\\n61\\n00:03:35,353 --> 00:03:37,648\\nil y a quelques sections « techniques »\\n\\n62\\n00:03:37,665 --> 00:03:40,095\\nqui proposent des liens pour approfondir le sujet.\\n\\n63\\n00:03:40,302 --> 00:03:43,422\\nPour quelques projets thématiques, il y a des règles\\n\\n64\\n00:03:43,405 --> 00:03:47,109\\net des recommandations spécifiques pour aider à l\\'écriture d\\'un article.\\n\\n65\\n00:03:48,500 --> 00:03:50,930\\nUn principe impératif de Wikipédia\\n\\n66\\n00:03:50,964 --> 00:03:53,335\\nest la neutralité de point de vue.\\n\\n67\\n00:03:53,361 --> 00:03:55,981\\nLes articles ne doivent pas contenir d\\'opinions personnelles ou de jugements,\\n\\n68\\n00:03:56,011 --> 00:03:59,739\\nmais doivent expliquer les points de vue principaux\\n\\n69\\n00:03:59,754 --> 00:04:03,297\\nde façon équilibrée et proportionnelle, sans leur porter préjudice.\\n\\n70\\n00:04:04,289 --> 00:04:08,548\\nChaque article de Wikipédia a sa propre page de discussion sur le côté,\\n\\n71\\n00:04:08,627 --> 00:04:11,086\\noù les utilisateurs peuvent débattre\\n\\n72\\n00:04:11,114 --> 00:04:14,184\\net trouver une version aussi adéquate et consensuelle que possible.\\n\\n73\\n00:04:14,395 --> 00:04:17,464\\nÀ la différence de la page d\\'article, ici les opinions\\n\\n74\\n00:04:17,493 --> 00:04:20,784\\ndoivent être affichées et signées, mais considérez toujours que Wikipédia\\n\\n75\\n00:04:20,823 --> 00:04:24,667\\nn\\'est pas un lieu pour l\\'expression personnelle ou partiale des points de vue.\\n\\n76\\n00:04:25,117 --> 00:04:27,117\\nQuand les utilisateurs ont besoin\\n\\n77\\n00:04:27,147 --> 00:04:29,753\\nde s\\'adresser à plusieurs personnes d\\'un coup,\\n\\n78\\n00:04:29,823 --> 00:04:33,631\\npour un problème d\\'intérêt général, ou sur un thème précis,\\n\\n79\\n00:04:33,655 --> 00:04:37,510\\nils peuvent utiliser le « Bistro » ou le bistro propre aux projets thématiques.\\n\\n80\\n00:04:37,995 --> 00:04:41,242\\nChaque utilisateur enregistré a sa page personnelle,\\n\\n81\\n00:04:41,273 --> 00:04:44,115\\ndans laquelle il peut donner des informations sur lui-même.\\n\\n82\\n00:04:44,226 --> 00:04:47,802\\nCette page aussi a une page de discussion correspondante,\\n\\n83\\n00:04:47,827 --> 00:04:51,693\\nlaquelle est utilisée comme une messagerie personnelle.\\n\\n84\\n00:04:51,983 --> 00:04:55,753\\nLes utilisateurs experts peuvent être sollicités pour de l\\'aide technique,\\n\\n85\\n00:04:55,815 --> 00:04:58,338\\npar exemple, sur la « Guilde des Guides ».\\n\\n86\\n00:04:58,353 --> 00:05:02,030\\nAu sujet du contenu, vous pouvez interroger l\\'Oracle.\\n\\n87\\n00:05:02,924 --> 00:05:06,262\\nEn cas évident d\\'abus ou de vandalisme,\\n\\n88\\n00:05:06,294 --> 00:05:09,319\\nquelques utilisateurs enregistrés, nommés \"administrateurs\",\\n\\n89\\n00:05:09,386 --> 00:05:12,083\\npeuvent intervenir et effectuer des opérations spécifiques,\\n\\n90\\n00:05:12,109 --> 00:05:15,486\\ntelles que bloquer un utilisateur, effacer ou bloquer une page.\\n\\n91\\n00:05:15,664 --> 00:05:18,384\\nLes administrateurs sont des volontaires qui ont gagné\\n\\n92\\n00:05:18,384 --> 00:05:22,048\\nla confiance de la communauté et ont été élus.\\n\\n93\\n00:05:22,218 --> 00:05:25,355\\nIls effectuent des opérations techniques cruciales et garantissent\\n\\n94\\n00:05:25,357 --> 00:05:27,646\\nle respect des recommandations du projet,\\n\\n95\\n00:05:27,664 --> 00:05:30,453\\nmais ils ne sont pas responsables de Wikipédia.\\n\\n96\\n00:05:31,311 --> 00:05:34,532\\nWikipédia est maintenu par la Wikimedia Foundation,\\n\\n97\\n00:05:34,542 --> 00:05:37,960\\nune fondation à but non-lucratif basée à San Francisco,\\n\\n98\\n00:05:37,958 --> 00:05:41,090\\nqui fournit les ressources pour le développement du projet.\\n\\n99\\n00:05:41,281 --> 00:05:44,554\\nLa fondation, créée en 2003, repose sur\\n\\n100\\n00:05:44,559 --> 00:05:47,233\\ndes dons publics et privés,\\n\\n101\\n00:05:47,235 --> 00:05:51,571\\net surtout sur de très très nombreuses donations de particuliers.\\n\\n102\\n00:05:51,853 --> 00:05:54,959\\nAfin de rester absolument indépendante et d\\'impliquer\\n\\n103\\n00:05:54,991 --> 00:05:59,277\\nde nombreux contributeurs volontaires, Wikipédia a choisi de ne pas afficher de publicité.\\n\\n104\\n00:05:59,979 --> 00:06:04,125\\nDepuis, de nombreuses associations volontaires ont été fondées à travers le monde\\n\\n105\\n00:06:04,181 --> 00:06:07,761\\nqui promeuvent localement Wikipédia et ses projets soeurs.\\n\\n106\\n00:06:08,105 --> 00:06:11,624\\nEn Italie, Wikimedia Italia existe depuis 2005,\\n\\n107\\n00:06:11,671 --> 00:06:15,961\\nqui, en plus des projets de la Wikimedia Foundation, promeut d\\'autres initiatives\\n\\n108\\n00:06:15,973 --> 00:06:19,662\\nliées à la diffusion de la culture et de la connaissance libres.\\n\\n109\\n00:06:19,898 --> 00:06:23,992\\nLa presse, les entreprises et les écoles peuvent contacter Wikimedia Italia\\n\\n110\\n00:06:24,029 --> 00:06:28,130\\npour avoir plus d\\'information sur Wikipédia en Italie.\\n\\n111\\n00:06:28,981 --> 00:06:31,905\\nDe nombreux volontaires sont bénévoles pour agrèger, trier et\\n\\n112\\n00:06:31,913 --> 00:06:35,649\\norganiser la connaissance partagée de notre temps\\n\\n113\\n00:06:35,701 --> 00:06:39,149\\npour la rendre librement disponible. Et vous ?\\n\\n114\\n00:06:39,352 --> 00:06:42,605\\nSoyeux audacieux ! Wikipédia est ouverte à tous !\\n\\n115\\n00:06:54,000 --> 00:06:56,000\\n\\n\\n116\\n00:06:57,000 --> 00:06:59,000',\n", + " 'bytes': 10599,\n", + " 'sha1': 'gdcuq7f1li522nazor6dtpo93wjnz0w',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 37304412,\n", + " 'timestamp': '2010-04-05T13:46:45Z',\n", + " 'user': {'id': 50587, 'text': 'Nemo bis'},\n", + " 'page': {'id': 9932990,\n", + " 'title': 'Wikipedia ridotto.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'from http://www.wikimedia.it/index.php/WikiGuida_Wikipedia/Sottotitoli_ES',\n", + " 'text': '1\\n00:00:07,686 --> 00:00:11,934\\nWikipedia nace en 2001 y se desarrolla con la idea de crear\\n\\n2\\n00:00:11,973 --> 00:00:15,443\\nla más grande enciclopedia de contenido abierto en la historia.\\n\\n3\\n00:00:15,710 --> 00:00:19,598\\nWikipedia está redactada gracias a la contribución de muchísimos voluntarios.\\n\\n4\\n00:00:19,751 --> 00:00:22,465\\nCualquiera puede colaborar. Vamos a ver cómo.\\n\\n5\\n00:00:23,854 --> 00:00:27,300\\nCasi todas las páginas de Wikipedia presentan encima\\n\\n6\\n00:00:27,335 --> 00:00:30,492\\nuna ficha con escrito \"editar\", que permite hacer\\n\\n7\\n00:00:30,536 --> 00:00:34,428\\nexactamente lo que dice: editar la página que se está leyendo.\\n\\n8\\n00:00:35,043 --> 00:00:39,465\\nIn Wikipedia, es más, no existe una redacción: cualquier usuario\\n\\n9\\n00:00:39,540 --> 00:00:42,990\\npuede acceder a los contenidos de todas las páginas de la enciclopedia\\n\\n10\\n00:00:43,019 --> 00:00:45,932\\ny editarlos, sin necesidad de registrarse.\\n\\n11\\n00:00:46,151 --> 00:00:49,719\\nEl formato del texto sigue reglas particulares,\\n\\n12\\n00:00:49,728 --> 00:00:53,638\\npero se trata de un lenguaje bastante sencillo, fácil de aprender.\\n\\n13\\n00:00:53,989 --> 00:00:57,078\\nGrabando la edicción se acepta de disponer\\n\\n14\\n00:00:57,112 --> 00:00:59,573\\nde la propia contribución bajo una licencia libre.\\n\\n15\\n00:00:59,652 --> 00:01:03,546\\nCualquiera podrá consultar, utilizar y readaptar el texto,\\n\\n16\\n00:01:03,561 --> 00:01:07,693\\ntambién para finalidades comerciales, bajo condición de citar los autores de los artículos\\n\\n17\\n00:01:07,721 --> 00:01:11,200\\ny de reaplicar la misma licencia a todas las obras derivadas.\\n\\n18\\n00:01:11,561 --> 00:01:16,019\\nAdemás, es importante recordar que cada usuario, incluyendo lo no registrados,\\n\\n19\\n00:01:16,073 --> 00:01:19,998\\nsiempre queda responsable de sus propias inserciones.\\n\\n20\\n00:01:20,542 --> 00:01:24,743\\n¡En este momento la edición es inmediatamente visible para todos!\\n\\n21\\n00:01:25,715 --> 00:01:29,795\\nWikipedia no es una colección de información sin criterio,\\n\\n22\\n00:01:29,820 --> 00:01:34,142\\nsino una enciclopedia, una colección sistemática del conocimiento humano.\\n\\n23\\n00:01:34,361 --> 00:01:36,797\\nEn Wikipedia desde luego no hay que inserir\\n\\n24\\n00:01:36,816 --> 00:01:40,559\\ndefiniciones de diccionario y támpoco investigaciones originales.\\n\\n25\\n00:01:41,748 --> 00:01:44,853\\nCada página tiene su historial, que lista\\n\\n26\\n00:01:44,878 --> 00:01:48,311\\ntodas las versiones realizadas desde el instante de su creación.\\n\\n27\\n00:01:48,562 --> 00:01:51,551\\nAdemás de la hora, la fecha y el resumen de edición,\\n\\n28\\n00:01:51,566 --> 00:01:54,416\\nel programa registra también quién la hizo.\\n\\n29\\n00:01:54,638 --> 00:01:57,534\\nEn el caso de un usuario anónimo, se detecta\\n\\n30\\n00:01:57,541 --> 00:02:00,116\\nla dirección IP desde la cual se hizo.\\n\\n31\\n00:02:00,679 --> 00:02:03,639\\nEl historial igualmente permite comparar\\n\\n32\\n00:02:03,679 --> 00:02:06,777\\ndos versiones diferentes para evidenciar las diferencias.\\n\\n33\\n00:02:07,467 --> 00:02:11,381\\nEn Wikipedia nada se pierde, pero para los primeros intentos de escritura\\n\\n34\\n00:02:11,397 --> 00:02:14,586\\nestá bien utilizar la zona de pruebas, llamada también sandbox,\\n\\n35\\n00:02:14,610 --> 00:02:16,755\\nque se puede editar a gusto.\\n\\n36\\n00:02:16,803 --> 00:02:20,736\\nPara trabajar con más calma, un usuario registrado puede también crear para si\\n\\n37\\n00:02:20,801 --> 00:02:24,334\\nuna zona de pruebas personal dentro de la propia página de usuario.\\n\\n38\\n00:02:24,924 --> 00:02:28,020\\nPara generar una nueva página es suficiente crear un enlace,\\n\\n39\\n00:02:28,109 --> 00:02:30,844\\no pinchar un \"enlace rojo\" ya existente.\\n\\n40\\n00:02:30,929 --> 00:02:33,148\\nDe todas formas es buena práctica comprobar antes\\n\\n41\\n00:02:33,209 --> 00:02:35,461\\nsi la página ya está presente.\\n\\n42\\n00:02:36,025 --> 00:02:38,838\\nPara garantizar la buena operación del proyecto,\\n\\n43\\n00:02:38,841 --> 00:02:42,074\\nla comunidad ha elaborado unas políticas que todos los usuarios\\n\\n44\\n00:02:42,114 --> 00:02:44,811\\ntienen que respetar y hacer respetar.\\n\\n45\\n00:02:45,253 --> 00:02:47,615\\nUno de los principales cánones de Wikipedia\\n\\n46\\n00:02:47,687 --> 00:02:50,075\\nes la organización de los contenidos en modelos.\\n\\n47\\n00:02:50,147 --> 00:02:53,071\\nVamos a ver la estructura general de un artículo.\\n\\n48\\n00:02:53,977 --> 00:02:58,354\\nLa sección inicial tiene que resumir brevemente y con palabras sencillas\\n\\n49\\n00:02:58,370 --> 00:03:00,824\\nlos principales temas tratados en el artículo.\\n\\n50\\n00:03:00,989 --> 00:03:03,828\\nLa página se desarrolla en secciones (o párrafos),\\n\\n51\\n00:03:03,879 --> 00:03:06,856\\nque automaticamente están resumidos en un índice.\\n\\n52\\n00:03:07,138 --> 00:03:10,739\\nEn Wikipedia se pueden insertar imágenes, fotografías\\n\\n53\\n00:03:10,759 --> 00:03:14,142\\ny también vídeos, pero queda absolutamente necesario comprobar\\n\\n54\\n00:03:14,188 --> 00:03:17,207\\nque el material subido sea libremente utilizable,\\n\\n55\\n00:03:17,221 --> 00:03:19,994\\nes decir ¡ser disponible bajo una licencia libre!\\n\\n56\\n00:03:20,434 --> 00:03:23,597\\nTodas las informaciones contenidas en los artículos tienen que ser\\n\\n57\\n00:03:23,604 --> 00:03:26,765\\nfiables y verificables, por eso es necesario\\n\\n58\\n00:03:26,805 --> 00:03:29,158\\ncitar siempre las fuentes desde que están sacadas,\\n\\n59\\n00:03:29,167 --> 00:03:32,283\\nque tienen que ser en gran medida reconocidas y aceptadas.\\n\\n60\\n00:03:32,497 --> 00:03:35,339\\nAl final de cada artículo, después del texto propiamente dicho,\\n\\n61\\n00:03:35,353 --> 00:03:37,648\\nse encuentran varios párrafos \"incidentales\",\\n\\n62\\n00:03:37,665 --> 00:03:40,095\\nque reenvían a ulteriores reanudaciones.\\n\\n63\\n00:03:40,302 --> 00:03:43,422\\nEn unos proyectos temáticos, hay convenciones\\n\\n64\\n00:03:43,405 --> 00:03:47,109\\ny políticas específicas que ayudan en la redacción de los artículos.\\n\\n65\\n00:03:48,500 --> 00:03:50,930\\nUn principio imperativo de Wikipedia\\n\\n66\\n00:03:50,964 --> 00:03:53,335\\nes el utilizo de un punto de vista neutral.\\n\\n67\\n00:03:53,361 --> 00:03:55,981\\nLos artículos no tienen que contener juicios de mérito,\\n\\n68\\n00:03:56,011 --> 00:03:59,739\\nsino tienen que limitarse a presentar todos los puntos de vista relevantes\\n\\n69\\n00:03:59,754 --> 00:04:03,297\\nde manera justa, proporcionada y sin prejuicios.\\n\\n70\\n00:04:04,289 --> 00:04:08,548\\nCada artículo de Wikipedia está complementado por una página de discusión,\\n\\n71\\n00:04:08,627 --> 00:04:11,086\\ndonde los usuarios pueden confrontarse\\n\\n72\\n00:04:11,114 --> 00:04:14,184\\ny concordar una versión lo más posible adecuada y compartida.\\n\\n73\\n00:04:14,395 --> 00:04:17,464\\nA diferencia de las páginas de los artículos, aquí las intervenciones\\n\\n74\\n00:04:17,493 --> 00:04:20,784\\nsiempre se firman, pero hay que recordar que Wikipedia\\n\\n75\\n00:04:20,823 --> 00:04:24,667\\nno es el sitio donde expresar puntos de vista personales o parciales.\\n\\n76\\n00:04:25,117 --> 00:04:27,117\\nCuando un usuario tiene necesidad\\n\\n77\\n00:04:27,147 --> 00:04:29,753\\nde interpelar a más personas al mismo tiempo,\\n\\n78\\n00:04:29,823 --> 00:04:33,631\\npara un problema de interés general o relativo a un sector específico,\\n\\n79\\n00:04:33,655 --> 00:04:37,510\\npuede utilizar el Café o los respectivos cafés temáticos.\\n\\n80\\n00:04:37,995 --> 00:04:41,242\\nCada usuario tiene una página personal,\\n\\n81\\n00:04:41,273 --> 00:04:44,115\\ndonde puede insertar unas informaciones acerca de si mismo.\\n\\n82\\n00:04:44,226 --> 00:04:47,802\\nTambién esta página está complementada por una página de discusión,\\n\\n83\\n00:04:47,827 --> 00:04:51,693\\nque se utiliza como si fuera una casilla postal personal.\\n\\n84\\n00:04:51,983 --> 00:04:55,753\\nPara preguntas técnicas se puede pedir ayuda a los usuarios más expertos,\\n\\n85\\n00:04:55,815 --> 00:04:58,338\\npor ejemplo a través de la sección de ayuda del café.\\n\\n86\\n00:04:58,353 --> 00:05:02,030\\nAcerca de los contenidos sin embargo se puede preguntar a Consultas.\\n\\n87\\n00:05:02,924 --> 00:05:06,262\\nEn caso de evidentes abusos o actos vandálicos,\\n\\n88\\n00:05:06,294 --> 00:05:09,319\\nunos usuarios registrados, llamados \"bibliotecarios\",\\n\\n89\\n00:05:09,386 --> 00:05:12,083\\npueden intervenir con operaciones específicas,\\n\\n90\\n00:05:12,109 --> 00:05:15,486\\ncomo bloquear un usuario o borrar una página.\\n\\n91\\n00:05:15,664 --> 00:05:18,384\\nLos bibliotecarios son voluntarios que han adquirido\\n\\n92\\n00:05:18,384 --> 00:05:22,048\\nla confianza de la comunidad y han sido seleccionados por medio de una elección.\\n\\n93\\n00:05:22,218 --> 00:05:25,355\\nDesarrollan operaciones técnicas delicadas y garantizan\\n\\n94\\n00:05:25,357 --> 00:05:27,646\\nel respeto de las políticas del proyecto,\\n\\n95\\n00:05:27,664 --> 00:05:30,453\\npero no son los responsables de Wikipedia.\\n\\n96\\n00:05:31,311 --> 00:05:34,532\\nWikipedia está dirigida por la Fundación Wikimedia,\\n\\n97\\n00:05:34,542 --> 00:05:37,960\\nuna fundación sin ánimo de lucro con sede en San Francisco,\\n\\n98\\n00:05:37,958 --> 00:05:41,090\\nque garantiza los recursos para el desarrollo del proyecto.\\n\\n99\\n00:05:41,281 --> 00:05:44,554\\nLa fundación, instituida en 2003, vive gracias\\n\\n100\\n00:05:44,559 --> 00:05:47,233\\na subvenciones por parte de agencias públicas y privadas,\\n\\n101\\n00:05:47,235 --> 00:05:51,571\\ny sobre todo gracias a muchísimas micro-donaciones de particulares.\\n\\n102\\n00:05:51,853 --> 00:05:54,959\\nPara preservar la independencia absoluta e implicar\\n\\n103\\n00:05:54,991 --> 00:05:59,277\\na muchos contribudores voluntarios, en Wikipedia en efecto no hay publicidad.\\n\\n104\\n00:05:59,979 --> 00:06:04,125\\nMientras tanto en todo el mundo han nacido varias asociaciones de voluntarios\\n\\n105\\n00:06:04,181 --> 00:06:07,761\\nque animan localmente a Wikipedia y a los proyectos hermanos.\\n\\n106\\n00:06:08,105 --> 00:06:11,624\\nEn Italia desde 2005 existe Wikimedia Italia,\\n\\n107\\n00:06:11,671 --> 00:06:15,961\\nque además de los proyectos de la Fundación Wikimedia, anima otras iniciativas\\n\\n108\\n00:06:15,973 --> 00:06:19,662\\nvinculadas a la difusión libre de la cultura y del conocimiento.\\n\\n109\\n00:06:19,898 --> 00:06:23,992\\nY es a Wikimedia Italia que se pueden dirigir la prensa, las empresas\\n\\n110\\n00:06:24,029 --> 00:06:28,130\\ny las escuelas para sacar más informaciones en italiano acerca de Wikipedia.\\n\\n111\\n00:06:28,981 --> 00:06:31,905\\nMuchísimos voluntarios gratuitamente acumulan,\\n\\n112\\n00:06:31,913 --> 00:06:35,649\\nordenan y estructuran los conocimientos compartidos de nuestro tiempo\\n\\n113\\n00:06:35,701 --> 00:06:39,149\\npara hacerlos libremente disponibles. ¿Y vosotros?\\n\\n114\\n00:06:39,352 --> 00:06:42,605\\n¡Seáis valientes: Wikipedia está abierta para todos!\\n\\n115\\n00:06:54,000 --> 00:06:56,000\\n\\n\\n116\\n00:06:57,000 --> 00:06:59,000',\n", + " 'bytes': 10538,\n", + " 'sha1': '9qwjsfkbss2xki9nt498cz4f8lw27af',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606605041,\n", + " 'timestamp': '2021-11-11T08:19:29Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 10320791,\n", + " 'title': 'Wanna Work Together? with subtitles - Creative Commons.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall update (text devisions, precising timings etc.)',\n", + " 'text': \"1\\n00:00:04,774 --> 00:00:08,105\\nQuer trabalhar conosco?\\n\\n2\\n00:00:10,000 --> 00:00:12,324\\nQuando você compartilha sua criatividade,\\n\\n3\\n00:00:12,342 --> 00:00:14,593\\nestá permitindo pessoas em qualquer lugar,\\n\\n4\\n00:00:14,710 --> 00:00:16,835\\na usá-la, aprender dela\\n\\n5\\n00:00:16,855 --> 00:00:19,000\\ne se inspirar nela\\n\\n6\\n00:00:19,193 --> 00:00:20,403\\nVeja o professor,\\n\\n7\\n00:00:20,463 --> 00:00:24,536\\nque molda mentes jovens com o trabalho\\ne a sabedoria do mundo todo,\\n\\n8\\n00:00:24,577 --> 00:00:29,463\\ne a artista constrói beleza de pequenos\\npedaços que ela encontra online.\\n\\n9\\n00:00:29,873 --> 00:00:33,416\\ne o escritor, cujas histórias\\nusam ideias e imagens\\n\\n10\\n00:00:33,436 --> 00:00:36,173\\ncriadas por pessoas\\nque ele nunca conheceu.\\n\\n11\\n00:00:36,339 --> 00:00:39,279\\nEssas pessoas sabem que quando\\nvocê compartilha sua riqueza criativa,\\n\\n12\\n00:00:39,293 --> 00:00:41,208\\nvocê realiza grandes coisas.\\n\\n13\\n00:00:41,244 --> 00:00:45,300\\nEles e milhões de outras\\npessoas ao redor do planeta,\\n\\n14\\n00:00:45,333 --> 00:00:47,219\\nestão trabalhando juntos para construir\\n\\n15\\n00:00:47,269 --> 00:00:49,774\\numa cultura mais rica,\\nmelhor e mais vibrante,\\n\\n16\\n00:00:49,806 --> 00:00:52,195\\nusando Creative Commons.\\n\\n17\\n00:00:53,467 --> 00:00:55,149\\nPara entender o Creative Commons,\\n\\n18\\n00:00:55,149 --> 00:00:58,204\\nvocê precisa saber um pouco sobre\\ncomo os direitos autorais funcionam.\\n\\n19\\n00:00:58,221 --> 00:01:00,766\\nVocê sabia que quando\\nvocê cria algo – qualquer coisa,\\n\\n20\\n00:01:00,796 --> 00:01:06,188\\ndesde uma fotografia, uma canção,\\num desenho, um filme, uma história,\\n\\n21\\n00:01:06,188 --> 00:01:09,416\\nvocê automaticamente possui um direito\\nautoral de 'Todos os Direitos Reservados'\\n\\n22\\n00:01:09,416 --> 00:01:10,902\\nem erlação àquela criatividade.\\n\\n23\\n00:01:10,902 --> 00:01:11,960\\nÉ verdade!\\n\\n24\\n00:01:11,960 --> 00:01:15,719\\nOs direitos autorais protegem a sua criatividade\\ncontra usos que você não consente.\\n\\n25\\n00:01:15,719 --> 00:01:16,750\\n(*exceto o fair use)\\n\\n26\\n00:01:16,770 --> 00:01:19,870\\nMas às vezes, os direitos autorais\\npodem ser muito restritivos.\\n\\n27\\n00:01:19,900 --> 00:01:23,501\\nE quando você quer todas aquelas\\nmilhões e milhões de pessoas lá\\n\\n28\\n00:01:23,508 --> 00:01:24,815\\nfora usando o seu trabalho\\n\\n29\\n00:01:24,835 --> 00:01:27,246\\nsem a inconveniência\\nde ter que te pedir permissão?\\n\\n30\\n00:01:27,246 --> 00:01:29,660\\nE se você quiser sua obra\\ncompartilhada livremente,\\n\\n31\\n00:01:29,660 --> 00:01:32,464\\nreusada e recriada pelo resto do mundo?\\n\\n32\\n00:01:32,880 --> 00:01:34,712\\nAfortunadamente, existe uma resposta:\\n\\n33\\n00:01:34,772 --> 00:01:36,582\\nCreative Commons.\\n\\n34\\n00:01:36,696 --> 00:01:38,906\\nNós oferecemos licenças\\nde direitos autorais livres,\\n\\n35\\n00:01:38,906 --> 00:01:41,258\\nas quais você pode usar\\npara dizer para as pessoas exatamente\\n\\n36\\n00:01:41,258 --> 00:01:44,455\\nque partes dos seus direitos autorais\\nvocê quer conceder ao público.\\n\\n37\\n00:01:44,455 --> 00:01:48,051\\nÉ fácil, leva só um minuto,\\ne é totalmente grátis.\\n\\n38\\n00:01:48,280 --> 00:01:51,369\\nVisite nosso website\\ne responda algumas perguntas como:\\n\\n39\\n00:01:51,409 --> 00:01:53,795\\n'Você permitiria usos\\ncomerciais da sua obra?'\\n\\n40\\n00:01:53,835 --> 00:01:56,243\\ne 'Você permitiria\\nsua obra ser modificada?'\\n\\n41\\n00:01:56,335 --> 00:01:59,866\\nBaseando-se em suas respostas, te daremos\\na licença que claramente comunica\\n\\n42\\n00:01:59,890 --> 00:02:02,917\\no que as pessoas podem e não podem\\nfazer com sua criatividade.\\n\\n43\\n00:02:03,000 --> 00:02:05,203\\nVocê não abre mão\\nde seus direitos autorais,\\n\\n44\\n00:02:05,233 --> 00:02:07,765\\napenas os refina\\npara que funcionem melhor para você.\\n\\n45\\n00:02:08,450 --> 00:02:11,798\\nBem-vindo a um novo mundo\\nonde a colaboração reina!\\n\\n46\\n00:02:12,000 --> 00:02:14,929\\nIsso nem existia há alguns anos atrás.\\n\\n47\\n00:02:15,000 --> 00:02:19,437\\nMas agora existem milhões e milhões\\nde canções, imagens, vídeos,\\n\\n48\\n00:02:19,475 --> 00:02:24,292\\ne obras escritas disponíveis para serem\\ncompartilhadas, reusadas e remixadas –\\n\\n49\\n00:02:24,380 --> 00:02:25,594\\ntudo de graça!\\n\\n50\\n00:02:26,197 --> 00:02:27,945\\nQuer trabalhar conosco?\\n\\n51\\n00:02:27,998 --> 00:02:29,707\\nentão una-se aos Comuns –\\n\\n52\\n00:02:29,734 --> 00:02:31,557\\nCreative Commons.\\n\\n53\\n00:02:34,547 --> 00:02:36,028\\nFim\\n\\n54\\n00:02:36,189 --> 00:02:38,270\\nAnimação e Design\\npor Ryan Junell - junell.net\\n\\n55\\n00:02:38,310 --> 00:02:40,430\\nMúsica e Design Sonoro\\nLesser - LSR1.com\\n\\n56\\n00:02:40,470 --> 00:02:42,370\\nNarradora: Sara Kraft -\\nkraftpurver.com\\n\\n57\\n00:02:42,400 --> 00:02:44,328\\nRoteiro: Eric Steuer -\\ncreativecommons.org\\n\\n58\\n00:02:44,381 --> 00:02:45,625\\nAgradecimento especial\\n\\n59\\n00:02:45,665 --> 00:02:47,830\\nThe John D. and Catherine T. MacArthur\\nFoundation - macfound.org\\n\\n60\\n00:02:47,870 --> 00:02:49,900\\nThe William and Flora Hewlett\\nFoundation - hewlett.org\\n\\n61\\n00:02:49,960 --> 00:02:51,270\\nRed Hat - redhat.com\\n\\n62\\n00:02:51,330 --> 00:02:52,740\\nOmidyar Network - omidyar.net\\n\\n63\\n00:02:52,770 --> 00:02:54,530\\nFaculdade de Direito de Stanford -\\nlaw.stanford.edu\\n\\n64\\n00:02:54,580 --> 00:02:57,440\\nCenter for the Study\\nof the Public Domain - law.duke.edu/cfpd\\n\\n65\\n00:02:57,600 --> 00:03:02,000\\nE todos os partidários\\ndo Creative Commons, grandes ou pequenos\",\n", + " 'bytes': 5243,\n", + " 'sha1': 'st0em5pdn8uee7gnqkv3m6hmj70pyv8',\n", + " 'parent_id': 39197609,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 607774895,\n", + " 'timestamp': '2021-11-17T08:46:48Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 10333568,\n", + " 'title': 'Mayer and Bettle 2 - Creative Commons.ogv.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall subtitles update',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,788\\nМајер и Бетл. А сега... Флик\\n\\n2\\n00:00:01,832 --> 00:00:05,226\\nМ: Епа ајде пак објасни ми\\nзошто, иако толку долго те знам,\\n\\n3\\n00:00:05,260 --> 00:00:09,997\\nморав да резервирам цел месец\\nоднапред, чисто да се видиме на кафе…\\n\\n4\\n00:00:10,287 --> 00:00:13,108\\nБ: Тешко е денес да\\nсе појави човек во јавност.\\n\\n5\\n00:00:13,200 --> 00:00:14,869\\nМ: Што?! Зошто?\\n\\n6\\n00:00:14,927 --> 00:00:17,238\\nБ: Зошто сега сум славна!\\n\\n7\\n00:00:17,278 --> 00:00:20,083\\nМислам, сега сум вистинска\\nславна личност и сето тоа.\\n\\n8\\n00:00:20,126 --> 00:00:21,470\\nИмам обожаватели!\\n\\n9\\n00:00:21,523 --> 00:00:23,270\\nМе обожаваат!\\n\\n10\\n00:00:23,318 --> 00:00:27,244\\nВеројатно можеме да добиеме и ручек\\nбеспари бидејќи сум толку славна.\\n\\n11\\n00:00:27,286 --> 00:00:28,520\\nМ: Не си славна.\\n\\n12\\n00:00:28,556 --> 00:00:29,666\\nБ: Ех-ех?\\n\\n13\\n00:00:29,698 --> 00:00:34,217\\nМојот прв албум,\\n„Најдобриот албум на светот“,\\n\\n14\\n00:00:34,252 --> 00:00:38,242\\nсо недели е меѓу популарните\\nалбуми на Jamendo!\\n\\n15\\n00:00:38,787 --> 00:00:40,605\\nМ: Jamendo?\\n\\n16\\n00:00:41,000 --> 00:00:43,572\\nБ: Е ти никогаш не си ни бил кул?\\n\\n17\\n00:00:43,934 --> 00:00:45,544\\nТоа ти е веб-страница\\n\\n18\\n00:00:45,569 --> 00:00:49,175\\nкајшто музичари можат да си ги ставаат\\nпесните под Криејтив Комонс лиценци\\n\\n19\\n00:00:49,199 --> 00:00:51,172\\nза луѓето да можат да ги споделуваат.\\n\\n20\\n00:00:51,500 --> 00:00:53,564\\nШто значи дека повеќе луѓе ги симнуваат.\\n\\n21\\n00:00:53,596 --> 00:00:55,679\\nЗначи повеќе луѓе ги слушаат!\\n\\n22\\n00:00:55,700 --> 00:00:57,825\\nЗначи повеќе обожаватели за мене!!\\n\\n23\\n00:00:58,111 --> 00:01:00,199\\nАко тоа воопшто може да биде.\\n\\n24\\n00:01:00,232 --> 00:01:04,065\\nПатем, ако ми дадеш 50 банки,\\nќе ти пишам автограм на лицето.\\n\\n25\\n00:01:04,793 --> 00:01:06,468\\nМ: Амм...\\n\\n26\\n00:01:06,524 --> 00:01:07,560\\nфала ти.\\n\\n27\\n00:01:07,714 --> 00:01:11,148\\nМ: Значи дали Jamendo новите протоколи\\nза проширени метаподатоци\\n\\n28\\n00:01:11,167 --> 00:01:14,000\\nприменети преку создавачот\\nна Криејтив Комонс лиценци?\\n\\n29\\n00:01:14,192 --> 00:01:16,159\\nБ: Мета-проширени-што?!\\n\\n30\\n00:01:16,215 --> 00:01:19,361\\nМ: Хэх... Чекај сега ќе ти покажам.\\n\\n31\\n00:01:21,000 --> 00:01:23,043\\nБ: Каде ме однесе Мајер!?\\n\\n32\\n00:01:23,089 --> 00:01:26,329\\n(здивнува и шепоти)\\nСе надевам нема папараци.\\n\\n33\\n00:01:26,346 --> 00:01:29,000\\nНе носам темни очила!\\n\\n34\\n00:01:29,273 --> 00:01:33,166\\nМ: Сега сме внатре во Криејтив Комонс.\\nСe што гледаш тука се споделува:\\n\\n35\\n00:01:33,210 --> 00:01:36,216\\nприказни, фотографии, веб-страници,\\nфилмови, аудиоснимки.\\n\\n36\\n00:01:36,272 --> 00:01:40,148\\nСе познаваат по симболите\\nза CC лиценца.\\n\\n37\\n00:01:40,472 --> 00:01:42,793\\nБ: Ооооо! Фино!\\n\\n38\\n00:01:42,870 --> 00:01:44,672\\nМ: Но како автор сепак имаш контрола.\\n\\n39\\n00:01:44,719 --> 00:01:48,197\\nГледаш, можеш да дозволиш да ти\\nсе користат за некомерцијални цели,\\n\\n40\\n00:01:48,253 --> 00:01:51,707\\nили само ако не ги менуваат,\\nили само ако ги споделуваат со други.\\n\\n41\\n00:01:51,738 --> 00:01:54,278\\nИ секогаш мора да те наведуваат тебе.\\n\\n42\\n00:01:54,693 --> 00:01:58,504\\nСтраницата на СС ти помага да видиш\\nкоја лиценца највеќе ти одговара.\\n\\n43\\n00:01:58,709 --> 00:02:02,117\\nИ ти дава да ставаш информации\\nза она што го споделуваш,\\n\\n44\\n00:02:02,166 --> 00:02:05,259\\nи тие информации одат\\nсекаде кајшто оди делото.\\n\\n45\\n00:02:05,399 --> 00:02:09,445\\nГледаш, можеш да додаваш податоци како\\nтвоето име и како може да те контактираат\\n\\n46\\n00:02:09,474 --> 00:02:12,262\\nако сакаат да прават работи\\nшто не ги допушта лиценцата.\\n\\n47\\n00:02:12,515 --> 00:02:16,791\\nБ: Значи моето име секогаш\\nфигурира заедно со албумот.\\n\\n48\\n00:02:16,925 --> 00:02:19,498\\nБез разлика колку пати ќе го преземат?\\n\\n49\\n00:02:19,553 --> 00:02:20,729\\nМ: Да.\\n\\n50\\n00:02:20,775 --> 00:02:23,736\\nБ: Тоа значи дека сите ќе ме знаат.\\n\\n51\\n00:02:23,961 --> 00:02:25,722\\nСите ќе ми ги знаат песните!!\\n\\n52\\n00:02:25,773 --> 00:02:26,674\\n(Издишува)\\n\\n53\\n00:02:26,722 --> 00:02:30,167\\nЌе доминирам во светот!!!\\n\\n54\\n00:02:30,231 --> 00:02:34,157\\n(Злобна смеа)\\n\\n55\\n00:02:36,501 --> 00:02:39,265\\nВеројатно треба да си набавам\\nкруна. Ах! И корги!\\n\\n56\\n00:02:39,290 --> 00:02:40,171\\n(Бум)\\n\\n57\\n00:02:40,182 --> 00:02:41,560\\nАх, што?!\\n\\n58\\n00:02:42,544 --> 00:02:43,495\\nФ: Бетл?!\\n\\n59\\n00:02:43,732 --> 00:02:45,729\\nБ: Флик! Што правиш ти тука?\\n\\n60\\n00:02:45,870 --> 00:02:47,752\\nФ: При крај сум со нашиот нов филм.\\n\\n61\\n00:02:47,793 --> 00:02:50,809\\nСамо дојдов да најдам\\nнекои конечни фотки од Flickr.\\n\\n62\\n00:02:51,744 --> 00:02:55,309\\nМ: Хмм, хеј! хеј? Кој е овој?\\n\\n63\\n00:02:56,000 --> 00:02:59,328\\nБ: Ова е Флик,\\nмој обожавател и соработник.\\n\\n64\\n00:02:59,879 --> 00:03:01,036\\nФ: Пред неколку месеци\\n\\n65\\n00:03:01,076 --> 00:03:04,042\\nбарав песни на Jamendo\\nза филмскиот проект на школо.\\n\\n66\\n00:03:04,076 --> 00:03:06,781\\nИ наидов на една од Бетл,\\nшто сосем ми одговараше.\\n\\n67\\n00:03:07,165 --> 00:03:10,452\\nПотоа и испратив е-пошта\\nи толку и се допадна мојов филм,\\n\\n68\\n00:03:10,493 --> 00:03:12,328\\nшто почнавме да работиме заедно.\\n\\n69\\n00:03:12,706 --> 00:03:15,280\\nБ: Флик штотуку го заврши нашиот нов филм.\\n\\n70\\n00:03:15,326 --> 00:03:20,308\\nЌе го промовираме со премиера на Revver.\\nИ ќе направиме дебела пара!!\\n\\n71\\n00:03:20,592 --> 00:03:23,370\\nМ: Ама нели ги раздавате бесплатно?\\n\\n72\\n00:03:23,444 --> 00:03:25,520\\nКако ќе заработите пари од тоа?\\n\\n73\\n00:03:25,920 --> 00:03:28,267\\nБ: Ако им даваме на луѓето да ги користат\\n\\n74\\n00:03:28,312 --> 00:03:30,781\\nне значи дека не можеме\\nда заработиме на нив.\\n\\n75\\n00:03:30,845 --> 00:03:31,987\\nФ: Како на Revver!\\n\\n76\\n00:03:32,008 --> 00:03:35,363\\nТоа ти е веб-страница за споделување\\nвидеа што става реклами во видеото\\n\\n77\\n00:03:35,373 --> 00:03:37,236\\nи ти добиваш дел од парите.\\n\\n78\\n00:03:37,281 --> 00:03:40,452\\nШто повеќе луѓе ги гледаат видеата,\\nтоа повеќе пари добиваме.\\n\\n79\\n00:03:41,077 --> 00:03:44,139\\nБ: И затоа мојот албум е на Jamendo.\\n\\n80\\n00:03:44,271 --> 00:03:48,203\\nЛуѓето можат да ја споделуваат мојата\\nмузика бесплатно под CC лиценца,\\n\\n81\\n00:03:48,260 --> 00:03:54,200\\nно ако сакаат да ја користат за заработка,\\nкако на ТВ и радио, ќе треба да платат.\\n\\n82\\n00:03:54,423 --> 00:03:56,144\\nВеб-страницата им го овозможува тоа.\\n\\n83\\n00:03:56,164 --> 00:03:58,846\\nФ: А има и многу други страници\\nкајшто можеш да заработиш\\n\\n84\\n00:03:58,906 --> 00:04:00,344\\nод свои дела со CC лиценца.\\n\\n85\\n00:04:00,374 --> 00:04:03,273\\nБ: За кратко време сите\\nќе ги користат нашите дела.\\n\\n86\\n00:04:03,298 --> 00:04:04,501\\nСекој филм!\\n\\n87\\n00:04:04,547 --> 00:04:05,832\\nСекоја реклама!!\\n\\n88\\n00:04:05,889 --> 00:04:07,800\\nСекое домашно ДВД!!!\\n\\n89\\n00:04:07,826 --> 00:04:09,237\\nЌе станам богата!\\n\\n90\\n00:04:09,268 --> 00:04:10,849\\nСите ќе лудуваат по мене!\\n\\n91\\n00:04:10,880 --> 00:04:12,459\\nСветот ќе биде мој!!\\n\\n92\\n00:04:12,521 --> 00:04:13,732\\nМОЈ!!!\\n\\n93\\n00:04:13,755 --> 00:04:14,995\\n(Тешко дишење)\\n\\n94\\n00:04:15,035 --> 00:04:18,275\\nФ: А што викаш да одиме чекор по чекор, а?\\n\\n95\\n00:04:18,447 --> 00:04:20,465\\nБ: Сосема се согласувам, Флик.\\n\\n96\\n00:04:20,498 --> 00:04:21,546\\nЕј Мајер!\\n\\n97\\n00:04:22,000 --> 00:04:23,375\\nМ: Кажи Бетл?\\n\\n98\\n00:04:23,748 --> 00:04:25,188\\n(Гребење)\\n\\n99\\n00:04:26,186 --> 00:04:28,286\\nБ: Ми должиш 50 банки!',\n", + " 'bytes': 9834,\n", + " 'sha1': '3kst1agf8mrzbwho65j5a4757al884g',\n", + " 'parent_id': 168623627,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606351115,\n", + " 'timestamp': '2021-11-09T09:24:58Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 10404772,\n", + " 'title': 'Yeager supersonic flight 1947.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Yeager supersonic flight 1947.ogg.en.srt]] to [[TimedText:Yeager supersonic flight 1947.ogv.en.srt]]: rename of the original file',\n", + " 'text': \"0 \\n00:00:00,000 --> 00:00:05,500\\nIn October 1947 at Muroc Desert Test Center in California\\n\\n1\\n00:00:06,000 --> 00:00:09,500 \\nhistory is made by this aircraft, the XS-1\\n\\n2 \\n00:00:10,000 --> 00:00:13,500 \\nand its pilot, Captain Charles E. Yeager. \\n\\n3 \\n00:00:14,000 --> 00:00:18,500 \\nThis airplane and this pilot are about to be the first ever to fly \\n\\n4 \\n00:00:19,000 --> 00:00:22,000 \\nfaster than the speed of sound in level flight. \\n\\n5 \\n00:00:25,000 --> 00:00:26,900 \\nA B-29 will take the XS-1 aloft\\n\\n6 \\n00:00:27,000 --> 00:00:32,000 \\nand launch her at an altitude of about 35,000 ft. \\n\\n7 \\n00:00:33,000 --> 00:00:34,500 \\nThe XS-1 is not a military aircraft \\n\\n8 \\n00:00:35,000 --> 00:00:37,500 \\nbut a flying research laboratory,\\n \\n9 \\n00:00:38,000 --> 00:00:40,500 \\ndesigned to test the effects of supersonic flight upon airplanes. \\n\\n10 \\n00:00:42,000 --> 00:00:44,500 \\nIt is powered by four rocket engines\\n\\n11 \\n00:00:45,000 --> 00:00:48,500 \\nits weight empty is less than 5,000 pounds\\n\\n12 \\n00:00:49,000 --> 00:00:53,000 \\nbut it carries 8,000 pounds of fuel. \\n\\n13 \\n00:00:54,000 --> 00:00:56,500 \\nB-29s have done a lot of memorable things\\n\\n14 \\n00:00:57,000 --> 00:01:01,500 \\nbut none of them ever before had a mission quite like this one\\n\\n15 \\n00:01:02,000 --> 00:01:06,000 \\nand no airplane ever did what the XS-1 is about to do. \\n\\n16 \\n00:01:16,000 --> 00:01:17,500 \\nBreaking the sound barrier in level flight\\n\\n17 \\n00:01:18,000 --> 00:01:20,500 \\nwill be more than a spectacular feat \\n\\n18 \\n00:01:21,000 --> 00:01:27,000 \\nIt will also give the Airforce valuable knowledge of \\nthe resources of new propulsion systems.\\n\\n19 \\n00:01:28,000 --> 00:01:29,500 \\nCaptain Yeager gets aboard the XS-1\\n\\n20 \\n00:01:30,000 --> 00:01:33,000 \\nit can't be a long flight he is going to have in the little aircraft \\n\\n21 \\n00:01:34,000 --> 00:01:37,500 \\nAt full power the flight can't last more than two and a half minutes\\n\\n22 \\n00:01:38,000 --> 00:01:41,000 \\nbut it's going to be a fast one.\\n\\n23 \\n00:01:59,000 --> 00:02:01,000 \\nReady! \\n\\n24 \\n00:02:01,000 --> 00:02:02,500 \\nThe radar crews are ready, too, \\n\\n25 \\n00:02:03,000 --> 00:02:05,500 \\nto do the timing, the only possible method \\n\\n26 \\n00:02:06,000 --> 00:02:09,000 \\nfor timing aircraft at extremely high altitudes.\\n\\n27 \\n00:02:14,000 --> 00:02:14,500 \\nThere she goes!\\n\\n28 \\n00:02:15,000 --> 00:02:19,000 \\nA big moment in a history-making flight.\\n\\n29 \\n00:02:24,000 --> 00:02:25,500 \\nNow she is approaching the barrier. \\n\\n30 \\n00:02:26,000 --> 00:02:32,000 \\nThe speed of sound at 35,000 ft is 660 MPH. \\n\\n31 \\n00:02:33,000 --> 00:02:36,500 \\nThe really big moment. Through the sound barrier. \\n\\n32 \\n00:02:37,000 --> 00:02:39,500 \\nThe first time ever in level flight. \\n\\n33 \\n00:02:40,000 --> 00:02:48,500 \\nFor the first time, except in dive, a man has flown an airplane faster than the speed of sound.\\n\\n34 \\n00:02:49,000 --> 00:02:53,500 \\nIt earned Captain Yeager many honors, and the historic plane, the XS-1 \\n\\n35 \\n00:02:54,000 --> 00:02:59,000 \\nearned the resting place in the Smithsonian Institution.\",\n", + " 'bytes': 3016,\n", + " 'sha1': '9pgvdy0nikqihg53s310n2ay1a136qi',\n", + " 'parent_id': 189218771,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606351006,\n", + " 'timestamp': '2021-11-09T09:24:20Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 10405379,\n", + " 'title': 'Yeager supersonic flight 1947.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Yeager supersonic flight 1947.ogg.de.srt]] to [[TimedText:Yeager supersonic flight 1947.ogv.de.srt]]: rename of the original file',\n", + " 'text': '0 \\n00:00:00,000 --> 00:00:05,500\\nIm Oktober 1947 wurde im Muroc Wüstentestzentrum in Kalifornien\\n\\n1\\n00:00:06,000 --> 00:00:09,500 \\nmit diesem Flugzeug, der XS-1\\n\\n2 \\n00:00:10,000 --> 00:00:13,500 \\nund seinem Piloten, Hauptmann Charles E. Yeager, Geschichte geschrieben.\\n\\n3 \\n00:00:14,000 --> 00:00:18,500 \\nDieses Flugzeug und sein Pilot sind im Begriff, als erste schneller\\n\\n4 \\n00:00:19,000 --> 00:00:22,000 \\nals mit Schallgeschwindigkeit in der Horizontalen zu fliegen.\\n\\n5 \\n00:00:25,000 --> 00:00:26,900 \\nEine B-29 wird die XS-1 in die Höhe transportieren\\n\\n6 \\n00:00:27,000 --> 00:00:32,000 \\nund sie auf einer Höhe von 35.000 Fuß (10.668m) abwerfen. \\n\\n7 \\n00:00:33,000 --> 00:00:34,500 \\nDie XS-1 ist kein militärisches Flugzeug\\n\\n8 \\n00:00:35,000 --> 00:00:37,500 \\nsondern ein fliegendes Forschungslabor,\\n \\n9 \\n00:00:38,000 --> 00:00:40,500 \\nentworfen, um die Effekte des Überschallflugs auf Flugzeuge zu testen.\\n\\n10 \\n00:00:42,000 --> 00:00:44,500 \\nEs wird von vier Raketentriebwerken angetrieben\\n\\n11 \\n00:00:45,000 --> 00:00:48,500 \\nsein Leergewicht beträgt weniger als 5.000 Pfund (2.268 kg)\\n\\n12 \\n00:00:49,000 --> 00:00:53,000 \\ndoch trägt es mehr als 8.000 Pfund (3.628 kg) Treibstoff. \\n\\n13 \\n00:00:54,000 --> 00:00:56,500 \\nB-29 haben viele denkwürdige Dinge getan\\n\\n14 \\n00:00:57,000 --> 00:01:01,500 \\ndoch keine von ihnen hatte vorher einen Auftrag so wie diesen\\n\\n15 \\n00:01:02,000 --> 00:01:06,000 \\nund kein Flugzeug machte zuvor, was die XS-1 gleich machen wird.\\n\\n16 \\n00:01:16,000 --> 00:01:17,500 \\nDie Schallmauer im Horizontalflug zu durchbrechen\\n\\n17 \\n00:01:18,000 --> 00:01:20,500 \\nwird eine mehr als spektakuläre Tat sein\\n\\n18 \\n00:01:21,000 --> 00:01:27,000 \\nDies wird der Airforce auch wertvolle Erkenntnisse \\nüber die Möglichkeiten neuer Antriebssysteme einbringen\\n\\n19 \\n00:01:28,000 --> 00:01:29,500 \\nHauptmann Yeager steigt an Bord der XS-1\\n\\n20 \\n00:01:30,000 --> 00:01:33,000 \\nes kann kein langer Flug werden in dem kleinen Flugzeug\\n\\n21 \\n00:01:34,000 --> 00:01:37,500 \\nBei Höchstgeschwindigkeit kann der Flug nicht länger als zweieinhalb Minuten dauern\\n\\n22 \\n00:01:38,000 --> 00:01:41,000 \\naber es wird ein schneller Flug sein.\\n\\n23 \\n00:01:59,000 --> 00:02:01,000 \\nFertig! \\n\\n24 \\n00:02:01,000 --> 00:02:02,500 \\nDie Radarbesatzungen sind auch bereit\\n\\n25 \\n00:02:03,000 --> 00:02:05,500 \\ndie Zeit zu stoppen, da dies die einzige Möglichkeit ist\\n\\n26 \\n00:02:06,000 --> 00:02:09,000 \\num die Geschwindigkeit eines Flugzeugs in extremen Höhen zu messen\\n\\n27 \\n00:02:14,000 --> 00:02:14,500 \\nDa fliegt sie!\\n\\n28 \\n00:02:15,000 --> 00:02:19,000 \\nEin großer Moment eines geschichtemachenden Fluges.\\n\\n29 \\n00:02:24,000 --> 00:02:25,500 \\nNun nähert sie sich der Schallmauer.\\n\\n30 \\n00:02:26,000 --> 00:02:32,000 \\nDie Schallgeschwindigkeit auf 35.000 Fuß Höhe beträgt 660 Meilen pro Stunde\\n\\n31 \\n00:02:33,000 --> 00:02:36,500 \\nDer wirklich große Augenblick. Durch die Schallmauer.\\n\\n32 \\n00:02:37,000 --> 00:02:39,500 \\nDas erste Mal im Horizontalflug.\\n\\n33 \\n00:02:40,000 --> 00:02:48,500 \\nZum ersten Mal ist ein Mann mit einem Flugeug schneller als Schallgeschwindigkeit geflogen.\\n\\n34 \\n00:02:49,000 --> 00:02:53,500 \\nDies brachte Hauptmann Yeager viele Ehrungen ein, und das geschichtemachende Flugzeug, die XS-1\\n\\n35 \\n00:02:54,000 --> 00:02:59,000 \\nverdiente sich einen Ruheplatz im Smithsonian-Institut.',\n", + " 'bytes': 3299,\n", + " 'sha1': 'jrukttwikb99suh71e6oogcu0fqsf0q',\n", + " 'parent_id': 46136212,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 41036100,\n", + " 'timestamp': '2010-07-03T12:34:35Z',\n", + " 'user': {'id': 5795, 'text': 'Eirik'},\n", + " 'page': {'id': 10789159,\n", + " 'title': 'The Crab Nebula NASA.ogv.nn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,500 --> 00:00:03,250\\nKva skjer i november?\\n\\n2\\n00:00:03,500 --> 00:00:05,000\\nKrabbetåka.\\n\\n3\\n00:00:05,500 --> 00:00:07,500\\nHei og velkomen.|\\nEg heiter Jane Houston-Jones –\\n\\n4\\n00:00:07,600 --> 00:00:12,500\\n– og arbeider på NASA Jet Propulsion Laboratory\\ni Pasadena i California.\\n\\n5\\n00:00:12,600 --> 00:00:18,000\\n2009 er det internasjonale astronomiåret,|\\nog denne månaden ser vi på Krabbetåka, –\\n\\n5\\n00:00:18,500 --> 00:00:24,000\\n– den einaste supernovaresten|\\nein enkelt kan sjå med eit halvgodt teleskop.\\n\\n6\\n00:00:24,100 --> 00:00:29,000\\nI 1758 leita Charles Messier etter|\\nHalleykometen på himmelen.\\n\\n7\\n00:00:29,500 --> 00:00:35,000\\nHan la merke til eit kvitt lys, forma som\\nflammen på eit stearinlys, i stjernebiletet Tyren.\\n\\n8\\n00:00:35,100 --> 00:00:41,000\\nDet flytta seg ikkje i høve til stjernene|\\ni bakgrunnen, så det kunne ikkje vere kometen.\\n\\n9\\n00:00:42,000 --> 00:00:49,000\\nM1 vart den fyrste oppføringa i|\\nkatalogen hans over 110 kometliknande objekt.',\n", + " 'bytes': 990,\n", + " 'sha1': '0uo2os13x6feqnxbvy2u1xa6wdwjtxm',\n", + " 'parent_id': 41036047,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 506394351,\n", + " 'timestamp': '2020-10-29T13:26:55Z',\n", + " 'user': {'id': 5623759, 'text': 'Poslovitch'},\n", + " 'page': {'id': 11292470,\n", + " 'title': 'Tutoriel-wikt.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'updated subtitles',\n", + " 'text': '1\\n00:00:01,285 --> 00:00:03,062\\nPour créer un article sur le Wiktionnaire,\\n\\n2\\n00:00:03,087 --> 00:00:04,880\\nil y a plusieurs possibilités.\\n\\n3\\n00:00:05,119 --> 00:00:07,421\\nIl existe une page «\\u202fAide:Création rapide\\u202f»\\n\\n4\\n00:00:07,446 --> 00:00:10,515\\nqui comprend actuellement des patrons préremplis\\n\\n5\\n00:00:10,540 --> 00:00:12,958\\npour le français, l’anglais et le grec.\\n\\n6\\n00:00:13,284 --> 00:00:16,776\\nAdmettons que je veuille créer un nouveau nom anglais.\\n\\n7\\n00:00:17,651 --> 00:00:19,001\\nJe tape ici,\\n\\n8\\n00:00:19,327 --> 00:00:20,366\\nen l’ajoutant.\\n\\n9\\n00:00:21,300 --> 00:00:24,379\\nSi l’article est vide, le patron prérempli se charge.\\n\\n10\\n00:00:24,776 --> 00:00:25,823\\nS’il n’est pas vide,\\n\\n11\\n00:00:25,848 --> 00:00:27,426\\non voit son contenu apparaître.\\n\\n12\\n00:00:27,800 --> 00:00:30,125\\nJe vais prendre un mot fictif pour l’exemple.\\n\\n13\\n00:00:31,101 --> 00:00:34,815\\nDonc, le patron appelle un modèle qui\\n\\n14\\n00:00:34,847 --> 00:00:37,038\\ns’ajoute immédiatement.\\n\\n15\\n00:00:37,507 --> 00:00:40,824\\nSi je souhaite créer d’autres sections par la suite,\\n\\n16\\n00:00:41,261 --> 00:00:44,348\\nj’ai aussi un gadget qui permet\\n\\n17\\n00:00:44,373 --> 00:00:46,801\\nd’appeler un autre patron, en JavaScript,\\n\\n18\\n00:00:47,071 --> 00:00:49,667\\nqui va permettre d’ajouter autant de sections que nécessaire.',\n", + " 'bytes': 1335,\n", + " 'sha1': 'qkqg6q6rcmocaj7wv3xlscaidmuhtbt',\n", + " 'parent_id': 43214770,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 43214652,\n", + " 'timestamp': '2010-08-27T13:11:02Z',\n", + " 'user': {'id': 318677, 'text': 'JackPotte'},\n", + " 'page': {'id': 11306123,\n", + " 'title': 'Tutoriel-wikt.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:1,000 --> 00:00:10,000\\n[[Wiktionnaire]] [[tutorial]]\\n\\n2\\n00:00:11,000 --> 00:00:20,000\\nYou can paste the boilerplates with two different kinds of buttons\\n\\n3\\n00:00:21,000 --> 00:00:30,000\\nOne in [[Aide:Création rapide]] and one as [[MediaWiki:Gadget-Barre_de_luxe.js|an icon]] in the edition bar.\\n\\n4\\n00:00:31,000 --> 00:00:40,000\\n<font color=red size=5>Enjoy ;)</font>',\n", + " 'bytes': 375,\n", + " 'sha1': '2grxa2usevlfab42t3k2a4ydm42n91m',\n", + " 'parent_id': 43214543,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601707185,\n", + " 'timestamp': '2021-10-24T14:04:20Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11563152,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'small additional changes',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,621\\nMon nom d’utilisateur\\nest Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nMon nom d’utilisateur\\nest Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein, c’est\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\nun petit ver de livres en allemand\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nC’est Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nnotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\nvous savez : « pas un poisson »\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,325 --> 00:00:23,815\\nMon nom d’utilisateur est Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nMon nom d’utilisateur est Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, c’est un anagramme\\nde mon vrai nom Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nMon nom d’utilisateur est Steven Walling,\\nce qui est mon vrai nom\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\nMon nom d’utilisateur est Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nMon nom d’utilisateur est Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nMon nom est Jdforrester\\net je contribue à Wikipédia',\n", + " 'bytes': 1575,\n", + " 'sha1': 'nip5yj7s9zbx1nj1oed3llg9l0hj3t3',\n", + " 'parent_id': 601589955,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601705322,\n", + " 'timestamp': '2021-10-24T13:56:16Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11564947,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'small additional changes',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\nMy username is Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nMy username is Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein this is\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\na small book worm in German\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nIt’s Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\nyou know, «not a fish»\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,585 --> 00:00:23,785\\nMy username is Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nMy username is Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, it’s an anagram\\nof my real name Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nMy username is Steven Walling,\\nwhich is my real name\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\nMy username is Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nMy username is Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nMy name is Jdforrester\\nand I edit Wikipedia',\n", + " 'bytes': 1451,\n", + " 'sha1': 'c3jsh6cbnbucpftfitldbx9zkrx4191',\n", + " 'parent_id': 601585817,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601702813,\n", + " 'timestamp': '2021-10-24T13:49:07Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11567030,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and partyally the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\nMein Benutzername ist Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nMein Benutzername ist Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein, das ist\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\nein kleiner Bücherwurm auf Deutsch\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nDas ist Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,367\\nNotafish\\n\\n13\\n00:00:19,404 --> 00:00:21,130\\nSie wissen, «not a fish»\\n(kein Fisch)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,293 --> 00:00:23,785\\nMein Benutzername ist Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nMein Benutzername ist Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama; es ist ein Anagramm\\nmeines echten Namens Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nMein Benutzername ist Steven Walling,\\nund das ist mein echter Name\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\nMein Benutzername ist Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nMein Benutzername ist Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nMein Name ist Jdforrester\\nund ich bearbeite Wikipedia.',\n", + " 'bytes': 1550,\n", + " 'sha1': 'qkddsgfvb2cwrdetk227r7fk6g2cbd4',\n", + " 'parent_id': 44427777,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44726100,\n", + " 'timestamp': '2010-10-05T17:27:31Z',\n", + " 'user': {'id': 5602, 'text': 'Geraki'},\n", + " 'page': {'id': 11571582,\n", + " 'title': 'Nice People MEDIUM.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Undo revision 44726082 by [[Special:Contributions/Geraki|Geraki]] ([[User talk:Geraki|talk]])',\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 If you have knowledge, why you must keep it by yourself?\\n\\n2 00:00:04,249 --> 00:00:07,174 You must share it! I think.\\n\\n3 00:00:07,174 --> 00:00:10,031 I like that the purpose of this website\\n\\n4 00:00:10,031 --> 00:00:15,325 didn’t say \"website\", didn’t say \"Wiki\", didn’t say \"Internet\",\\n\\n5 00:00:15,325 --> 00:00:17,113 it just said \"Free knowledge,\\n\\n6 00:00:17,113 --> 00:00:19,411 for everyone, in their own language\".\\n\\n7 00:00:19,411 --> 00:00:21,548 When a community is open,\\n\\n8 00:00:21,548 --> 00:00:23,428 it’s really made of those\\n\\n9 00:00:23,428 --> 00:00:25,936 who dare take the invitation.\\n\\n10 00:00:25,936 --> 00:00:27,956 And this an invitation.\\n\\n11 00:00:27,956 --> 00:00:29,535 Of course you do not have to take the invitation,\\n\\n12 00:00:29,535 --> 00:00:31,439 but there is an invitation out there\\n\\n13 00:00:31,439 --> 00:00:32,879 in an \"Edit\" button to say\\n\\n14 00:00:32,879 --> 00:00:37,709 \"Come, be part, what you know is as important as what we know\".\\n\\n15 00:00:37,709 --> 00:00:40,472 You know you are giving education to people,\\n\\n16 00:00:40,472 --> 00:00:43,026 and not just any people but the whole world.\\n\\n17 00:00:43,026 --> 00:00:47,113 So I feel great by contributing to an encyclopaedia\\n\\n18 00:00:47,113 --> 00:00:51,455 that is accessible to virtually everyone in the whole world.\\n\\n19 00:00:51,455 --> 00:00:55,286 It’s just making yourself happy by helping others, that’s it.\\n\\n20 00:00:55,286 --> 00:00:57,283 Because I want to be happy, I help others.\\n\\n21 00:00:57,283 --> 00:01:00,650 You’re working together with so many different people\\n\\n22 00:01:00,650 --> 00:01:04,156 from so many different cultures, and it’s just amazing.\\n\\n23 00:01:04,156 --> 00:01:06,501 The thing about it, for me, what it’s really about,\\n\\n24 00:01:06,501 --> 00:01:08,754 it’s just really sweet people.\\n\\n25 00:01:08,754 --> 00:01:10,890 You know, we got all those really sweet people\\n\\n26 00:01:10,890 --> 00:01:14,466 who are just [taking] online and they’re typing,\\n\\n27 00:01:14,466 --> 00:01:16,231 and instead of yelling at each other\\n\\n28 00:01:16,231 --> 00:01:18,437 or just having a conversation\\n\\n29 00:01:18,437 --> 00:01:20,875 or reading about gossip or whatever,\\n\\n30 00:01:20,875 --> 00:01:22,198 they’re trying to build something\\n\\n31 00:01:22,198 --> 00:01:23,707 that everybody else will find useful.\\n\\n32 00:01:23,707 --> 00:01:26,029 I just think it’s really sweet, really nice people.',\n", + " 'bytes': 2469,\n", + " 'sha1': 'mvplph3ar5zqqug3gfygoug3w0gisfo',\n", + " 'parent_id': 44726082,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44509310,\n", + " 'timestamp': '2010-09-30T03:57:02Z',\n", + " 'user': {'id': 26548, 'text': 'Coyau'},\n", + " 'page': {'id': 11571946,\n", + " 'title': 'Nice People MEDIUM.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:01,000 --> 00:00:04,000 Si vous avez des connaissances, pourquoi devriez-vous les garder pour vous ?\\n\\n2 00:00:04,000 --> 00:00:07,000 Vous devez les partager ! Je pense.\\n\\n3 00:00:07,000 --> 00:00:10,000 J’aime que le but de ce site web\\n\\n4 00:00:10,000 --> 00:00:15,000 ne dise pas « site web », ne dise pas « Wiki », ne dise pas « Internet »,\\n\\n5 00:00:15,000 --> 00:00:17,000 il dit juste « La connaissance libre,\\n\\n6 00:00:17,000 --> 00:00:19,000 pour tout le monde, dans sa langue. »\\n\\n7 00:00:19,000 --> 00:00:21,000 Lorsqu’une communauté est ouverte,\\n\\n8 00:00:21,000 --> 00:00:23,000 elle est composée de ceux\\n\\n9 00:00:23,000 --> 00:00:25,000 qui ont osé prendre une invitation.\\n\\n10 00:00:25,000 --> 00:00:27,000 Et c’est une invitation.\\n\\n11 00:00:27,000 --> 00:00:29,000 Bien entendu, vous n’êtes pas obligé de prendre l’invitation,\\n\\n12 00:00:29,000 --> 00:00:31,000 mais il y a une invitation\\n\\n13 00:00:31,000 --> 00:00:32,000 dans le bouton « Modifier » pour dire\\n\\n14 00:00:32,000 --> 00:00:37,000 « Venez, participez, ce que vous savez est aussi important que ce que nous savons ».\\n\\n15 00:00:37,000 --> 00:00:40,000 Vous savez que vous instruisez des personnes,\\n\\n16 00:00:40,000 --> 00:00:43,000 et pas n’importe-quelle personne, mais le monde entier.\\n\\n17 00:00:43,000 --> 00:00:47,000 Donc ça me plaît de contribuer à une encyclopédie\\n\\n18 00:00:47,000 --> 00:00:51,000 qui est potentiellement accessible par tout le monde, dans le monde entier.\\n\\n19 00:00:51,000 --> 00:00:55,000 Il s’agit juste de vous rendre heureux en aidant les autres, tout simplement.\\n\\n20 00:00:55,000 --> 00:00:57,000 Parce-que je veux être heureux, j’aide les autres.\\n\\n21 00:00:57,000 --> 00:01:00,000 Vous travaillez avec tant de personnes différentes\\n\\n22 00:01:00,000 --> 00:01:04,000 de tant de cultures différentes, et c’est simplement génial.\\n\\n23 00:01:04,000 --> 00:01:06,000 Ce dont il s’agit, à mon sens,\\n\\n24 00:01:06,000 --> 00:01:08,000 c’est simplement des gens vraiment sympa.\\n\\n25 00:01:08,000 --> 00:01:10,000 Nous avons tous ces gens sympa\\n\\n26 00:01:10,000 --> 00:01:14,000 qui vont sur internet, et tapent au clavier,\\n\\n27 00:01:14,000 --> 00:01:16,000 et au lieu de se disputer,\\n\\n28 00:01:16,000 --> 00:01:18,000 ou de simplement discuter\\n\\n29 00:01:18,000 --> 00:01:20,000 ou d’aller lire les ragots, ou autre,\\n\\n30 00:01:20,000 --> 00:01:22,000 ils essayent de construire quelque-chose\\n\\n31 00:01:22,000 --> 00:01:23,000 que tout le monde trouvera utile.\\n\\n32 00:01:23,000 --> 00:01:26,000 Je trouve simplement cela très gentil, des gens vraiment sympa.',\n", + " 'bytes': 2606,\n", + " 'sha1': 'bumnji2pvcpf333w23mukzf1at3o8u6',\n", + " 'parent_id': 44257454,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 652373664,\n", + " 'timestamp': '2022-04-27T23:52:56Z',\n", + " 'user': {'text': '41.220.151.111'},\n", + " 'page': {'id': 11576180,\n", + " 'title': 'Edit Button.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nThere’s an \"edit\" button\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nJust click on it,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nfind the place where the text is, and edit\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nand then click \"Save\". It’s that easy.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nThe cool thing about Wikipedia,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nis that you can change things.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nYou don’t need anybody’s permission\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nand it’s not hard.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nIt looks a little bit daunting at first,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nbut it’s really not hard\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nPeople don’t realise, as though it’s some sort of blindness.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nPeople read articles and they don’t see the \"edit\" button.\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nClick on that button, and see what happens.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Edit.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nWhen you open yourself to something,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nand you go and start editing,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nall kinds of other things can happen,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nand that’s really beautiful.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nLike, it can be just a starting point,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nit’s an invitation for more life, somehow.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nWhenever we start an article, we don’t like it,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nbecause you find it ugly.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nBut wait just... hours\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nand see how it will be developed to a great article.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nThe \"edit\" button: click it, and change something,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nsave page, you have made a difference to the whole world.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Save\". merci',\n", + " 'bytes': 1901,\n", + " 'sha1': 'ft9k0zl4s2ne85r0pzwijl5julf80xz',\n", + " 'parent_id': 651420682,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 362462907,\n", + " 'timestamp': '2019-08-18T09:51:43Z',\n", + " 'user': {'id': 2073340, 'text': 'Jdx'},\n", + " 'page': {'id': 11576291,\n", + " 'title': 'Edit Button.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/2A02:A03F:6941:5200:392E:146D:D799:2F4D|2A02:A03F:6941:5200:392E:146D:D799:2F4D]] ([[User talk:2A02:A03F:6941:5200:392E:146D:D799:2F4D|talk]]) to last revision by Maurilbert',\n", + " 'text': '\\ufeff1\\n00:00:01,114 --> 00:00:02,414\\nIl y a un bouton « modifier ».\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nIl suffit de cliquer dessus,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nde trouver l’emplacement du texte, de le modifier,\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\net ensuite de cliquer « Publier ». C’est aussi simple que ça.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nLe truc super avec Wikipédia,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nc’est qu’on peut le modifier.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nPas besoin de demander l’autorisation à quelqu’un,\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\net ce n’est pas difficile.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nÇa semble un peu intimidant au début,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nmais ce n’est vraiment pas difficile.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nLes gens ne se rendent pas compte, comme s’ils avaient des œillères.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nIls lisent les articles et ne voient pas le bouton « modifier » .\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nCliquez sur le bouton, et voyez ce qui se passe !\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n« Modifier. »\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nQuand on s’ouvre comme ça sur le monde,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\net qu’on commence à modifier une page,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nc’est le début d’une aventure,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\net c’est ça qui est vraiment formidable.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nComme si ce n’était qu’un premier pas,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nc’est une invitation à vivre plus, d’une certaine manière.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nÀ chaque fois qu’on crée un article, on n’est pas satisfait,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nparce qu’on le trouve moche.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nMais il suffit d’attendre\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\net voyez comment il se transforme en un super article.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nLe bouton « modifier » : cliquez, changez quelque chose,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\npubliez la page, et vous avez apporté une contribution au monde entier.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n« Publier ».',\n", + " 'bytes': 2131,\n", + " 'sha1': 'sckh0alh2gy787671abjqczbj0545yj',\n", + " 'parent_id': 358734312,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44298190,\n", + " 'timestamp': '2010-09-24T19:31:32Z',\n", + " 'user': {'id': 62367, 'text': 'Spiritia'},\n", + " 'page': {'id': 11583031,\n", + " 'title': 'Nice People MEDIUM.ogv.bg.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 Ако разполагате със знания, защо трябва да ги държите само за себе си?\\n\\n2 00:00:04,249 --> 00:00:07,174 Трябва да ги споделяте! Така смятам.\\n\\n3 00:00:07,174 --> 00:00:10,031 Харесва ми, че целта на този уебсайт\\n\\n4 00:00:10,031 --> 00:00:15,325 не е да се нарича \"уебсайт\", нито \"уики\", нито \"интернет\",\\n\\n5 00:00:15,325 --> 00:00:17,113 той просто казва \"Свободно знание,\\n\\n6 00:00:17,113 --> 00:00:19,411 за всеки човек, на собствения му език\".\\n\\n7 00:00:19,411 --> 00:00:21,548 Когато една общност е отворена,\\n\\n8 00:00:21,548 --> 00:00:23,428 тя наистина се състои от тези,\\n\\n9 00:00:23,428 --> 00:00:25,936 които се осмелят да приемат поканата.\\n\\n10 00:00:25,936 --> 00:00:27,956 А Уикипедия е покана.\\n\\n11 00:00:27,956 --> 00:00:29,535 Естествено, не сте длъжни да приемате поканата,\\n\\n12 00:00:29,535 --> 00:00:31,439 но поканата е отправена към вас\\n\\n13 00:00:31,439 --> 00:00:32,879 с бутона \"Редактиране\", който казва\\n\\n14 00:00:32,879 --> 00:00:37,709 \"Елате, присъединете се. Това, което вие знаете, е също толкова важно като това, което знаем ние\".\\n\\n15 00:00:37,709 --> 00:00:40,472 Да знаеш, че даваш образование на хората,\\n\\n16 00:00:40,472 --> 00:00:43,026 и не просто на някакви хора, а на целия свят.\\n\\n17 00:00:43,026 --> 00:00:47,113 Чувствам се страхотно, че допринасям към една енциклопедия,\\n\\n18 00:00:47,113 --> 00:00:51,455 която е достъпна за практически всеки човек на света.\\n\\n19 00:00:51,455 --> 00:00:55,286 Да си даряваш щастие, докато помагаш на другите, това е то.\\n\\n20 00:00:55,286 --> 00:00:57,283 И защото аз искам да бъда щастлив, помагам на другите.\\n\\n21 00:00:57,283 --> 00:01:00,650 Да работиш заедно с толкова много различни хора,\\n\\n22 00:01:00,650 --> 00:01:04,156 хора от толкова много различни култури - това е просто изумително.\\n\\n23 00:01:04,156 --> 00:01:06,501 Това, което има значение според мен, това, което наистина има значение,\\n\\n24 00:01:06,501 --> 00:01:08,754 са всички тези страхотни хора.\\n\\n25 00:01:08,754 --> 00:01:10,890 Знаете ли, имаме толкова много наистина готини хора\\n\\n26 00:01:10,890 --> 00:01:14,466 които просто са онлайн и пишат\\n\\n27 00:01:14,466 --> 00:01:16,231 и които вместо да си крещят един другиму\\n\\n28 00:01:16,231 --> 00:01:18,437 или просто да си говорят\\n\\n29 00:01:18,437 --> 00:01:20,875 или да четат клюки или каквото и да било друго,\\n\\n30 00:01:20,875 --> 00:01:22,198 те се опитват да изградят нещо,\\n\\n31 00:01:22,198 --> 00:01:23,707 което всеки друг да намери за полезно.\\n\\n32 00:01:23,707 --> 00:01:26,029 Мисля, че това са наистина сладки, наистина чудесни хора.',\n", + " 'bytes': 3720,\n", + " 'sha1': 'r3aezfogoog04v1h3x8qk78r6mls27v',\n", + " 'parent_id': 44298165,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601722350,\n", + " 'timestamp': '2021-10-24T14:58:06Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11583189,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and probably the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,639\\nMoja nazwa użytkownika \\no Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,313 --> 00:00:10,291\\nMoja nazwa użytkownika to Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,503\\nBücherwürmlein to\\n\\n8\\n00:00:11,553 --> 00:00:13,999\\nw języku niemieckim zdrobnienie\\nod mola książkowego\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nTo Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\npo prostu: «not-a-fish»\\n(«nie ryba»)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,293 --> 00:00:23,785\\nMoja nazwa użytkownika to Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nMoja nazwa użytkownika to Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,441\\nwittylama, to anagram mojego\\nprawdziwego mienia i nazwiska Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,240\\nRajeshPandey\\n\\n22\\n00:00:33,290 --> 00:00:36,891\\nMoja nazwa użytkownika to Steven Walling,\\nczyli moje prawdziwe imię i nazwisko\\n\\n23\\n00:00:36,911 --> 00:00:38,531\\nMoja nazwa użytkownika to Waldir\\n\\n24\\n00:00:38,551 --> 00:00:40,897\\nMoja nazwa użytkownika to Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nNazywam się Jdforrester\\ni edytuję Wikipedię',\n", + " 'bytes': 1602,\n", + " 'sha1': 'q33azf8nvue815qh5bdm01t9dcxl6y3',\n", + " 'parent_id': 44326653,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44301598,\n", + " 'timestamp': '2010-09-24T21:34:24Z',\n", + " 'user': {'id': 45724, 'text': 'Leinad'},\n", + " 'page': {'id': 11584012,\n", + " 'title': 'Edit Button.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nIstnieje przycisk \"edytuj\"\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nPo prostu kliknij go,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nznajdź miejsce gdzie jest tekst i zacznij go modyfikować,\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\na następnie kliknij \"Zapisz\". To jest łatwe.\\n\\n5\\n00:00:09,752 --> 00:00:12,236\\nNajlepszą rzeczą w Wikipedii jest to, że można coś zmienić.\\n\\n6\\n00:00:12,236 --> 00:00:15,325\\nNie potrzebujesz nikogo zgody i nie jest to trudne.\\n\\n7\\n00:00:15,325 --> 00:00:19,829\\nNa początku wygląda to na trochę trudne, ale tak naprawdę nie jest trudne.\\n\\n8\\n00:00:19,829 --> 00:00:23,777\\nLudzie nie zdają sobie sprawy, to jest tak jakby swego rodzaju ślepota.\\n\\n9\\n00:00:23,777 --> 00:00:27,585\\nLudzie czytają artykuły i nie widzą przycisku \"edytuj\".\\n\\n10\\n00:00:27,585 --> 00:00:29,721\\nKliknij na ten przycisk i zobacz co się stanie.\\n\\n11\\n00:00:29,721 --> 00:00:31,625\\n[edytuj]\\n\\n12\\n00:00:31,625 --> 00:00:34,040\\nWhen you open yourself to something,\\n\\n13\\n00:00:34,040 --> 00:00:35,433\\nand you go and start editing,\\n\\n14\\n00:00:35,433 --> 00:00:38,289\\nall kinds of other things can happen,\\n\\n15\\n00:00:38,289 --> 00:00:40,124\\nand that’s really beautiful.\\n\\n16\\n00:00:40,124 --> 00:00:41,679\\nLike, it can be just a starting point,\\n\\n17\\n00:00:41,679 --> 00:00:45,139\\nit’s an invitation for more life, somehow.\\n\\n18\\n00:00:45,139 --> 00:00:48,018\\nGdy zaczynamy pisać nowy artykuł, nie lubimy tego,\\n\\n19\\n00:00:48,018 --> 00:00:49,597\\nponieważ na początku wygląda niedoskonale.\\n\\n20\\n00:00:49,597 --> 00:00:53,614\\nAle po prostu poczekaj... godziny\\n\\n21\\n00:00:53,614 --> 00:00:56,842\\ni zobaczysz jak będzie powstawać doskonały artykuł.\\n\\n22\\n00:00:56,842 --> 00:00:59,396\\nPrzycisk \"edytuj\": kliknij go i zmień coś,\\n\\n23\\n00:00:59,396 --> 00:01:02,043\\nzapisz stronę. Dokonałeś edycji, którą może zobaczyć cały świat.\\n\\n24\\n00:01:02,043 --> 00:01:04,203\\n\"Zapisz\"',\n", + " 'bytes': 1886,\n", + " 'sha1': 'kwht5rqjpd752hw45n5szxei19t8rtt',\n", + " 'parent_id': 44301531,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 191049348,\n", + " 'timestamp': '2016-03-23T11:36:01Z',\n", + " 'user': {'id': 62513, 'text': 'Túrelio'},\n", + " 'page': {'id': 11585089,\n", + " 'title': 'Great Feeling.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/119.160.116.156|119.160.116.156]] ([[User talk:119.160.116.156|talk]]) to last revision by Eloquence',\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nErr, no, I don\\'t have superpowers.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nAt all. No.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nYou can totally do it.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nI pushed the button,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nand saved the text,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWooooo!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nIt was... exciting.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nYou just changed Wikipedia,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nyou just added your own contribution to Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nI read an article in the \"Guardian\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nabout this online encyclopedia\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nwhich everybody can contribute to\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nand I said, \"Wow!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Maybe I can contribute as well!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nI edited the first time\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nand I think I got addicted to it.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nI don\\'t get paid anything\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nI just do it for, you know,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nsomething to do in my free time, that\\'s it.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nYou may start doing it for an idea,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nbecause you believe in it,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nbut you end up with friends,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nyou end up with lovers,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nyou end up with wonderful discussions,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nyou end up with new ideas,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nyou end up with new books you\\'re gonna write...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nYou\\'re not writing the article alone.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nYou write a piece,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nand somebody else goes like:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hey, I have more!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nand together you can create\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\narticles that are pages long,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nwhich you can\\'t by yourself.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nThen you have success.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nYou always see, \"Ok, what I\\'ve done was successful.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nand this is wonderful.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nThis is great,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nbecause, editing is a great feeling.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nEvery time you do it.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nI have to say,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nwhen I read about Wikipedia,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nI decided\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"This is maybe where I would fit in\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nAnd I did.',\n", + " 'bytes': 2711,\n", + " 'sha1': 'hv8gw2w2b0swnc0q0g4rue2ih3nq39g',\n", + " 'parent_id': 191049178,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44406158,\n", + " 'timestamp': '2010-09-27T13:35:44Z',\n", + " 'user': {'id': 45724, 'text': 'Leinad'},\n", + " 'page': {'id': 11586910,\n", + " 'title': 'Great Feeling.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nYyy, nie, nie posiadam żadnej super mocy.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nW żadnym wypadku. Nie.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nMożesz to wszystko zrobić.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nNacisnęłam przycisk\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\ni zapisałam tekst.\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWooooo!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nTo było... ekscytujące.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nWłaśnie zmodyfikowałeś Wikipedię,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nwłaśnie dodałeś swój wkład do Wikipedii.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nPrzeczytałam artykuł w \"Guardianie\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nna temat encyklopedii online,\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nktórą każdy może edytować\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\ni powiedziałam, \"Wow!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Może ja także mogę edytować!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nWykonałem po raz pierwszy edycję\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\ni myślę sobie, że uzależniłem się od tego.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nNikt mi za to nie płaci.\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nPo prostu robię to,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nżeby zająć się czymś w wolnym czasie.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nMożesz zacząć robić to dla idei,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nponieważ wierzysz w to,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nale w wyniku tego zyskasz przyjaciół,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nzyskasz wielbicieli,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nbędziesz uczestniczyć we wspaniałych dyskusjach,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nzyskasz nowe pomysły,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nzaowocuje to nowymi książkami, które zamierzasz napiasć...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nNie piszesz samemu artykułu.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nTy piszesz część,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\na ktoś inny zauważa:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hej, ja mogę napisać więcej!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\ni w taki sposób wspólnie możecie stworzyć artykuł\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nzajmujący wiele stron,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nktórego nie udałoby się stworzyć Tobie samodzielnie.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nWtedy osiągasz sukces.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nZawsze widzisz: \"Ok, to co zrobiłem, powiodło się.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\ni to jest cudowne.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nTo jest super,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nponieważ edytowanie jest wspaniałym uczuciem.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nZa każdym razem kiedy to robisz.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nMuszę powiedzieć,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nże kiedy czytałam na temat Wikipedii,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nto postanowiłam\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"To może być miejsce, do którego chciałbym dołączyć.\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nTak też się stało.',\n", + " 'bytes': 2935,\n", + " 'sha1': 'mzsq1znczd5kijooefs8du025gk2f19',\n", + " 'parent_id': 44309742,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601705966,\n", + " 'timestamp': '2021-10-24T13:58:53Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11588246,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'small additional changes',\n", + " 'text': '1\\n00:00:00,738 --> 00:00:02,617\\nMi nombre de usuario\\nes Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,019 --> 00:00:05,160\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,192\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nMi nombre de usuario es Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein es\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\nratón de biblioteca en alemán\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nEs Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\ntú sabes: « not a fish »\\n[no un pez]\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,391 --> 00:00:23,785\\nMi nombre de usuario es Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nMi nombre de usuario es Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,213\\nwittylama, es un anagrama\\nde mi nombre real Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nMi nombre de usuario es Steven Walling,\\nese es mi nombre real\\n\\n23\\n00:00:36,874 --> 00:00:38,393\\nMi nombre de usuario es Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nMi nombre de usuario es Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nMi nombre es Jdforrester y edito Wikipedia',\n", + " 'bytes': 1522,\n", + " 'sha1': 'jja8wtlwlckhzqojl9gf2r2aolrnpre',\n", + " 'parent_id': 601592848,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 200319881,\n", + " 'timestamp': '2016-06-30T10:28:07Z',\n", + " 'user': {'id': 62416, 'text': 'Máté'},\n", + " 'page': {'id': 11589314,\n", + " 'title': 'Great Feeling.ogv.hu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nÖö, nem, nincsenek emberfeletti képességeim.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nEgyáltalán nincsenek.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nTe is simán megteheted.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nMegnyomtam a gombot\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nés elmentettem a szöveget\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nHúúúúú!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nEz... izgalmas volt.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nTe épp megváltoztattad a Wikipédiát.\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nhozzáadtad a saját közreműködésed a Wikipédiához.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nOlvastam egy cikket a Guardianben\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nerről az online enciklopédiáról\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\namit bárki szerkeszthet\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nés azt mondtam, „Hű!”\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n„Talán én is szerkeszthetném!”\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nElőször szerkesztettem\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nés azt hiszem függő lettem.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nNem kapok érte pénzt\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nCsak azért csinálom, hogy\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\ntegyek valamit a szabadidőmben.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nLehet, hogy egy eszméért kezded el,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nmert hiszel benne,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nde barátokra lelsz,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nszeretőket találsz,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\ncsodás beszélgetésekben veszel részt,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\núj gondolatokra ébredsz,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nmegírandó új könyvötleteid születnek...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nNem egyedül írod a cikket.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nMegírsz egy részt\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nmire valaki más azt mondja:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n„Hé, én többet tudok!”\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nés közösen létrehozhattok\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\ntöbboldalas szócikkeket,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\namilyeneket egyedül nem tudnál.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nÉs akkor sikerült.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nMindig látod, hogy „Rendben, sikeres voltam!”\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nés ez csodás.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nEz óriási,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nmert szerkeszteni nagyszerű érzés.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nMinden egyes alkalommal.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nAzt kell mondjam,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\namikor a Wikipédiáról olvastam\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nelhatároztam,\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n„Talán ide illek én is”\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nÉs valóban.',\n", + " 'bytes': 2754,\n", + " 'sha1': 'rx4rh23s17pd5h1nkswj4w4rdvho1cd',\n", + " 'parent_id': 44504696,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44325168,\n", + " 'timestamp': '2010-09-25T12:12:43Z',\n", + " 'user': {'id': 192538, 'text': 'Itzike'},\n", + " 'page': {'id': 11589662,\n", + " 'title': 'Edit Button.ogv.he.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\ufeff1\\n00:00:01,114 --> 00:00:02,414\\nיש כפתור \"עריכה\" \\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nרק תלחצו עליו\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nתמצאו את המקום בו הטקסט מופיע, תערכו\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nולאחר מכן לחצו על \"שמירה\". זה כל כך פשוט.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nהדבר המגניב בוויקיפדיה,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nהוא שאתה יכול לשנות דברים.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nאתה לא צריך אישור מאף אחד.\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nוזה לא קשה.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nזה נראה קצת מרתיע בהתחלה,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nאבל זה באמת לא קשה.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nאנשים לא מבינים, או לפעמים לא שמים לב\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nאנשים קוראים את הערכים ולא רואים את כפתור ה\"עריכה\"\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nתלחצו עליו, ותראו מה קורה\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"עריכה.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nכשאתה פותח את עצמך למשהו\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nוהולך ומתחיל לערוך\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nכל מיני דברים יכולים לקרות\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nוזה באמת מדהים.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nLike, it can be just a starting point,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nit’s an invitation for more life, somehow.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nכל פעם שאנחנו מתחילים ערך חדש, אנחנו לא אוהבים אותו\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nבגלל שאתה יכול למצוא אותו מכוער.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nאבל פשוט... חכו כמה שעות\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nוראו איך הוא מתפתח למאמר גדול\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nכפתור ה\"עריכה\", לחצו עליו, ושנו משהו\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nשמרו את הדף, וראו איך עשיתם שינוי שישפיע על העולם כולו.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"שמור\".',\n", + " 'bytes': 2223,\n", + " 'sha1': 'kfi3mrpduk1ep8dpnumj2j9vgc9tkgk',\n", + " 'parent_id': 44325060,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44327279,\n", + " 'timestamp': '2010-09-25T13:10:53Z',\n", + " 'user': {'id': 858245, 'text': 'Indiralena'},\n", + " 'page': {'id': 11590178,\n", + " 'title': 'Nice People MEDIUM.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,300 --> 00:00:04,249 Si posees conocimientos, ¿Por qué quedártelos sólo para tí? 2 00:00:04,249 --> 00:00:07,174 ¡Deberías compartirlo! Eso es l...'\",\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 Si posees conocimientos, ¿Por qué quedártelos sólo para tí?\\n\\n2 00:00:04,249 --> 00:00:07,174 ¡Deberías compartirlo! Eso es lo que yo creo.\\n\\n3 00:00:07,174 --> 00:00:10,031 Me gusta que el propósito de este sitio web\\n\\n4 00:00:10,031 --> 00:00:15,325 no sea \"sitio web\". no sea \"Wiki\", no sea \"Internet\".\\n\\n5 00:00:15,325 --> 00:00:17,113 Es simplemente \"Conocimiento libre,\\n\\n6 00:00:17,113 --> 00:00:19,411 para todos, en su propio idioma\".\\n\\n7 00:00:19,411 --> 00:00:21,548 Cuando se abre una comunidad,\\n\\n8 00:00:21,548 --> 00:00:23,428 realmente se compone de aquellos\\n\\n9 00:00:23,428 --> 00:00:25,936 que se atreven a aceptar la invitación.\\n\\n10 00:00:25,936 --> 00:00:27,956 Y esta es una invitación.\\n\\n11 00:00:27,956 --> 00:00:29,535 Por supuesto, no tiene que aceptar esta invitación,\\n\\n12 00:00:29,535 --> 00:00:31,439 pero allá afuera hay una invitación\\n\\n13 00:00:31,439 --> 00:00:32,879 es un botón \"Editar\" que te dice\\n\\n14 00:00:32,879 --> 00:00:37,709 \"Ven, sé parte de esto. Lo que sabes importa tanto como lo que sabemos nosotros\".\\n\\n15 00:00:37,709 --> 00:00:40,472 Sabes que estás dando educación a la gente,\\n\\n16 00:00:40,472 --> 00:00:43,026 y no a cualquier gente, sino al mundo entero.\\n\\n17 00:00:43,026 --> 00:00:47,113 Así, yo me siento fantásticamente al contribuir con una enciclopedia\\n\\n18 00:00:47,113 --> 00:00:51,455 que es accesible a prácticamente todo el mundo.\\n\\n19 00:00:51,455 --> 00:00:55,286 Es simplemente ser feliz al ayudar a otros. Eso es todo.\\n\\n20 00:00:55,286 --> 00:00:57,283 Como quiero ser feliz, ayudo a otros.\\n\\n21 00:00:57,283 --> 00:01:00,650 Estás trabajando con tanta gente diferente\\n\\n22 00:01:00,650 --> 00:01:04,156 de tantas culturas diferentes... y eso es simplemente increíble.\\n\\n23 00:01:04,156 --> 00:01:06,501 Lo que tiene esto, para mí, de lo que se trata realmente,\\n\\n24 00:01:06,501 --> 00:01:08,754 es de que es sólo gente fantástica.\\n\\n25 00:01:08,754 --> 00:01:10,890 ¿Sabes? Tenemos a toda esta gente fantástica\\n\\n26 00:01:10,890 --> 00:01:14,466 quienes están conectados, en línea, tecleando\\n\\n27 00:01:14,466 --> 00:01:16,231 y en vez de estar gritándose entre ellos,\\n\\n28 00:01:16,231 --> 00:01:18,437 o simplemente conversando\\n\\n29 00:01:18,437 --> 00:01:20,875 o leyendo banalidades o lo que sea,\\n\\n30 00:01:20,875 --> 00:01:22,198 están intentando construir algo\\n\\n31 00:01:22,198 --> 00:01:23,707 que todos los demás encontrarán útil.\\n\\n32 00:01:23,707 --> 00:01:26,029 Creo que es gente fantástica. Realmente buena.',\n", + " 'bytes': 2534,\n", + " 'sha1': '932ltfnjyig2n40i4t9diomyw3hcctd',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45137177,\n", + " 'timestamp': '2010-10-16T22:51:07Z',\n", + " 'user': {'id': 48254, 'text': 'Mdale'},\n", + " 'page': {'id': 11590256,\n", + " 'title': 'Edit Button.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'added new lines ( srt compatible formating )',\n", + " 'text': '\\ufeff1\\n00:00:01,114 --> 00:00:02,414 \\nHay un botón \"editar\".\\n\\n2\\n00:00:02,530 --> 00:00:03,830 \\nSimplemente haz clic sobre él,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nencuentra el texto, edítalo\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\ny luego haz clic en \"Guardar\". Es así de fácil.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nLo bueno de Wikipedia\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nes que puedes cambiar cosas.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nNo necesitas permiso de nadie\\n\\n8\\n00:00:14,066 --> 00:00:15,32\\ny es muy fácil.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nAl principio puede parecer un poco intimidante,\\n\\n10\\n00:00:17,809 --> 00:00:19,82\\npero es realmente fácil.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nLa gente no lo nota. Es como si fuera una especie de ceguera.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nLa gente lee artículos y no ve el botón de \"editar\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nHaz clic sobre ese botón y mira qué ocurre.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Editar.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nCuando te abres a algo nuevo\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\ny empiezas a editar,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\npueden ocurrir cosas de todo tipo\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\ny es una experiencia realmente bonita.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nEs como, más que un simple inicio\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nde alguna manera, es una invitación a más vida.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nCada vez que empezamos un artículo, no nos gusta\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nporque lo encontramos feo.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nPero espera... unas horas\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\ny lo verás convertirse en un gran artículo.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nEl botón \"editar\": Haz clic sobre él, cambia algo,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nguarda la página, y habrás hecho diferencia en el mundo.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Guardar\".',\n", + " 'bytes': 1870,\n", + " 'sha1': '8wz32286gvq3p5016tn2b9x6vgp6na1',\n", + " 'parent_id': 44709917,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 180571856,\n", + " 'timestamp': '2015-11-29T15:34:00Z',\n", + " 'user': {'text': '119.30.39.160'},\n", + " 'page': {'id': 11593546,\n", + " 'title': 'Edit Button.ogv.br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\ufeff1\\n00:00:01,114 --> 00:00:02,414\\nUr bouton \"kemmañ\" zo.\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nTrawalc\\'h eo klikañ warnañ,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nkavout lec\\'h an destenn ha degas kemmoù enni,\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\ngoude-se klikañ war \"Embann\". Ken aes ha tra ez eo.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nAr pezh zo dispar gant Wikipedia,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\neo e c\\'hall bezañ cheñchet ganeomp.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nN\\'eo ket dav goulenn an aotre digant den ebet,\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nha diaes n\\'eo ket.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nE penn-kentañ e seblant bezañ un tammig luziet,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nmet e gwirionez n\\'eo ket tamm ebet.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nAn dud n\\'en em rentont ket kont, evel pa vefent dall.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nLenn a reont ar pennadoù ha ne welont ket ar bouton \"kemmañ\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nKlikit war ar bouton ha gwelit ar pezh a c\\'hoarvez !\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Kemmañ\".\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nP\\'en em zigorer war ar bed evel-se,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nha pa groger da zegas kemmoù en ur bajenn,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nemeur e penn-kentañ un avantur vras,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nha setu aze dres ar pezh zo dedennus.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nE-giz pa vefe ur c\\'hammed kentañ,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nur bedadenn da vevañ kreñvoc\\'h, en ur mod all.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nBep tro ma saver ur pennad e vezer dipitet,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\ndivalav e kaver anezhañ.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nMet trawalc\\'h gortoz ur frapadig\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nha sellit penaos en em dro da vezañ ur pezh pennad dedennus.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nAr bouton \"kemmañ\" : klikit ha kemmit un dra bennak,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nEnrollit ar bajenn, ha deggjdvsytaset hoc\\'h eus un dra bennak d\\'ar bed a-bezh.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Enrollañ\".',\n", + " 'bytes': 2022,\n", + " 'sha1': 's1yyux15bb439oripha06u8216o8q0z',\n", + " 'parent_id': 44717671,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44361618,\n", + " 'timestamp': '2010-09-26T13:05:23Z',\n", + " 'user': {'id': 71200, 'text': 'Lloffiwr'},\n", + " 'page': {'id': 11600086,\n", + " 'title': 'Edit Button.ogv.sw.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'change pace',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nKipo kitufe cha \"hariri\".\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nBonyeza kitufe tu,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\ntafuta mahali panapopatikana maandishi, uyabadilishe,\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nhalafu bonyeza \"Hafadhi ukurasa\". Ni rahisi tu.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nUzuri wa Wikipedia ni kwamba\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nunaweza kubadilisha yaliyomo.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nHakuna haja ya kuomba ruhusa\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nna si ngumu.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nInaweza kuonekana kwamba ni ngumu,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nlakini si ngumu kwa kweli.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nWengine hawajagundua hiyo.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nWanasoma makala lakini hawaoni kitufe cha \"hariri\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nBonyeza tu kitufe kile, na angalia itakavyotokea.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Hariri.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nUtakapokuwa tayari kuthubutu kitu kipya,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nna unaanza kuhariri,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nmambo mengine mazuri yanaweza kufuatana nayo.\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nYaani, kuanza kuhariri\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nkunaweza kuwa\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nkianzio cha kupanua maisha yako.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nMakala inapoanzwa, mara\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nnyingi haipendezi.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nLakini ukisubiri tu, utaona kwamba\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nitazidi kuwa makala nzuri.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nBonyeza kitufe cha \"hariri\", na utabadilisha mambo,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nhifadhi ukurasa ule, na umefanya kitu cha manufaa ya wote.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Hifadhi\".',\n", + " 'bytes': 1761,\n", + " 'sha1': '16jue4jneoi3hcptcs8em31pg255n6i',\n", + " 'parent_id': 44360788,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 637510228,\n", + " 'timestamp': '2022-03-11T09:00:39Z',\n", + " 'user': {'id': 2366229, 'text': 'Achim55'},\n", + " 'page': {'id': 11606979,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.nds.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/136.158.51.27|136.158.51.27]] ([[User talk:136.158.51.27|talk]]) to last revision by Pacha Tchernof',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\nMien Brukernaam is Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nMien Brukernaam is Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein, dat is\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\nop Düütsch en lütt Bökerworm\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nDat is Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,286\\nNotafish\\n\\n13\\n00:00:19,286 --> 00:00:21,180\\nversteihst du: „not a fish“\\n(keen Fisch)\\n\\n14\\n00:00:21,198 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,473 --> 00:00:23,785\\nMien Brukernaam is Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nMien Brukernaam is Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, dat is en Anagramm\\nvon mien echten Naam Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nMien Brukernaam is Steven Walling,\\nwat mien echten Naam is\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\nMien Brukernaam is Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nMien Brukernaam is Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nMien Naam is Jdforrester\\nun ik schriev bi Wikipedia mit',\n", + " 'bytes': 1524,\n", + " 'sha1': 'ct3vnqi5exm618j1alb3nvvqmp34foa',\n", + " 'parent_id': 637504850,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 299710275,\n", + " 'timestamp': '2018-05-04T22:26:41Z',\n", + " 'user': {'id': 789588, 'text': 'Pallerti'},\n", + " 'page': {'id': 11607178,\n", + " 'title': 'Sequence-Wikipedia Great Feeling Wikimedia Hungary.ogv.hu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nÖö, nem, nincsenek emberfeletti képességeim.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nEgyáltalán nincsenek.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nTe is simán megteheted.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nMegnyomtam a gombot\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nés elmentettem a szöveget\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nHúúúúú!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nEz... izgalmas volt.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nTe épp megváltoztattad a Wikipédiát.\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nhozzáadtad a saját közreműködésed a Wikipédiához.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nOlvastam egy cikket a Guardianben\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nerről az online enciklopédiáról\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\namit bárki szerkeszthet\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nés azt mondtam, „Hű!”\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n„Talán én is szerkeszthetném!”\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nElőször szerkesztettem\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nés azt hiszem függő lettem.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nNem kapok érte pénzt\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nCsak azért csinálom, hogy\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\ntegyek valamit a szabadidőmben.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nLehet, hogy egy eszméért kezded el,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nmert hiszel benne,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nde barátokra lelsz,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nszeretőket találsz,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\ncsodás beszélgetésekben veszel részt,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\núj gondolatokra ébredsz,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nmegírandó új könyvötleteid születnek...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nNem egyedül írod a cikket.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nMegírsz egy részt\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nmire valaki más azt mondja:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n„Hé, én többet tudok!”\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nés közösen létrehozhattok\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\ntöbboldalas szócikkeket,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\namilyeneket egyedül nem tudnál.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nÉs akkor sikerült.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nMindig látod, hogy „Rendben, sikeres voltam!”\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nés ez csodás.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nEz óriási,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nmert szerkeszteni nagyszerű érzés.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nMinden egyes alkalommal.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nAzt kell mondjam,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\namikor a Wikipédiáról olvastam\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nelhatároztam,\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n„Talán ide illek én is”\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nÉs valóban.',\n", + " 'bytes': 2754,\n", + " 'sha1': 'rx4rh23s17pd5h1nkswj4w4rdvho1cd',\n", + " 'parent_id': 44384273,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44384352,\n", + " 'timestamp': '2010-09-26T22:39:23Z',\n", + " 'user': {'id': 770, 'text': 'Slomox'},\n", + " 'page': {'id': 11607204,\n", + " 'title': 'Nice People MEDIUM.ogv.nds.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,300 --> 00:00:04,249 Wenn du wat weetst, worüm schullst du dat för di behollen? 2 00:00:04,249 --> 00:00:07,174 Du musst dat mit annere delen, dücht...'\",\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 Wenn du wat weetst, worüm schullst du dat för di behollen?\\n\\n2 00:00:04,249 --> 00:00:07,174 Du musst dat mit annere delen, dücht mi!\\n\\n3 00:00:07,174 --> 00:00:10,031 Ik mag de Idee achter disse Websteed\\n\\n4 00:00:10,031 --> 00:00:15,325 dat weer nich „Websteed“, nich „Wiki“, nich „Internett“,\\n\\n5 00:00:15,325 --> 00:00:17,113 dat weer blot „Free Weten,\\n\\n6 00:00:17,113 --> 00:00:19,411 för elkeen in sien egen Moderspraak“.\\n\\n7 00:00:19,411 --> 00:00:21,548 Wenn en Gemeenschop apen is,\\n\\n8 00:00:21,548 --> 00:00:23,428 denn tellt de,\\n\\n9 00:00:23,428 --> 00:00:25,936 de Inladen annehmt.\\n\\n10 00:00:25,936 --> 00:00:27,956 Un dit is en Inladen.\\n\\n11 00:00:27,956 --> 00:00:29,535 Nüms bruukt de Inladen antonehmen,\\n\\n12 00:00:29,535 --> 00:00:31,439 aver de Inladen is dor, kannst seggen,\\n\\n13 00:00:31,439 --> 00:00:32,879 as en Knoop, op den „Ännern“ steiht\\n\\n14 00:00:32,879 --> 00:00:37,709 „Kumm, wees dorbi, wat du weetst is jüstso veel weert as wat wi weet“.\\n\\n15 00:00:37,709 --> 00:00:40,472 Du bringst Weten an de Lüüd ran,\\n\\n16 00:00:40,472 --> 00:00:43,026 Lüüd op de ganze Welt!\\n\\n17 00:00:43,026 --> 00:00:47,113 Dat is en wunnerbor Geföhl, dat du bidriggst to en Nakieksel\\n\\n18 00:00:47,113 --> 00:00:51,455 dat so temlich elkeen op de Welt lesen kann.\\n\\n19 00:00:51,455 --> 00:00:55,286 Dat höögt een, to weten, dat een annere helpen kann.\\n\\n20 00:00:55,286 --> 00:00:57,283 Dat föhlt sik good an, dorüm help ik annere.\\n\\n21 00:00:57,283 --> 00:01:00,650 Du warkst mit so veel verschillen Lüüd tohoop\\n\\n22 00:01:00,650 --> 00:01:04,156 ut so veel verschillen Kulturn, un dat is en dulle Saak.\\n\\n23 00:01:04,156 --> 00:01:06,501 Dat besünnere för mi, wat würklich besünners is,\\n\\n24 00:01:06,501 --> 00:01:08,754 dat sünd de goden Lüüd.\\n\\n25 00:01:08,754 --> 00:01:10,890 Dor sünd all disse Lüüd\\n\\n26 00:01:10,890 --> 00:01:14,466 de online gaht un schrievt,\\n\\n27 00:01:14,466 --> 00:01:16,231 un sik nich angröhlt oder\\n\\n28 00:01:16,231 --> 00:01:18,437 blot Klöönsnack hebbt\\n\\n29 00:01:18,437 --> 00:01:20,875 oder över annere sludert,\\n\\n30 00:01:20,875 --> 00:01:22,198 de tohoop wat opboot,\\n\\n31 00:01:22,198 --> 00:01:23,707 wat annere Lüüd helpt.\\n\\n32 00:01:23,707 --> 00:01:26,029 Mi dücht, dat besünnere, dat sünd de goden un netten Lüüd.',\n", + " 'bytes': 2332,\n", + " 'sha1': 'mhsiki7gdm1tewnl8e5b5one4v3xgoh',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44385339,\n", + " 'timestamp': '2010-09-26T23:22:25Z',\n", + " 'user': {'id': 770, 'text': 'Slomox'},\n", + " 'page': {'id': 11607422,\n", + " 'title': 'Great Feeling.ogv.nds.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nNee, ik heff keen Superkräft.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nGorkeen. Nix.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nDu kannst dat ok doon.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nIk heff op den Knoop drückt,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nun den Text afspiekert,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWuuuh!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nDat weer... opregend.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nDu hest Wikipedia jüst verännert,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\ndu hest dien egen Bidrag to Wikipedia daan.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nIk heff en Artikel in’t Daagbladd leest\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\növer dit Online-Nakieksel\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nto dat elkeen sülvs bidragen kann\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nun ik heff „Wow!“ seggt\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n„Villicht kann ik dor ok wat bidragen!“\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nIk heff denn dat eerste Maal en Sied ännert\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nun ik denk, ik bün denn süchtig worrn.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nIk krieg nix betahlt\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nIk maak dat blot, weetst du,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nin mien Freetied, dat is allens.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nAnfangen deist du för en Idee,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nan de du glöövst,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\naver denn lehrst du Frünn kennen,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\ndu finnst Lüüd, de de Saak, de se doot, fördull geern maakt,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\ndu finnst wunnerbore Diskuschonen,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\ndu lehrst ne’e Ideen kennen,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\ndu kummst bi un schriffst ne’e Böker...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\ndu schriffst de Artikels nich alleen.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nDu schriffst en Stück,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nun en annern kummt dor denn langs un seggt:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n„Süh, dor weet ik ok wat to!“\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nun tohoop stellt ji den Artikels op de Been\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nde siedenlang sünd,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nwat du alleen gornich schaffen kunnst.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nUn denn geiht dat stüttig.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nDu süst denn, „Okay, wat ik daan heff, dor heff ik Spood mit hatt.“\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nun dat is en wunnerbore Saak.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nDat is wunnerbor,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\ndenn Artikels schrieven is en good Geföhl.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nElk Maal wedder.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nIk mutt seggen,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nas ik von Wikipedia leest heff,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nheff ik mi seggt\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n„Villicht passt dat ok för mi“\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nUn so weer dat ok.',\n", + " 'bytes': 2896,\n", + " 'sha1': '63q7vyxnf6l2x8dmzl6qp947o203g3k',\n", + " 'parent_id': 44385297,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44385627,\n", + " 'timestamp': '2010-09-26T23:36:47Z',\n", + " 'user': {'id': 770, 'text': 'Slomox'},\n", + " 'page': {'id': 11607475,\n", + " 'title': 'Edit Button.ogv.nds.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:01,114 --> 00:00:02,414 Dat gifft en Knoop „Ännern“ 2 00:00:02,530 --> 00:00:03,830 Dor klickst du op, 3 00:00:03,830 --> 00:00:06,664 geihst na ...'\",\n", + " 'text': '\\ufeff1\\n00:00:01,114 --> 00:00:02,414\\nDat gifft en Knoop „Ännern“\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nDor klickst du op,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\ngeihst na de Steed, wo de Text is, ännerst em\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nun klickst denn „Spiekern“. So eenfach.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nDat is de feine Saak bi Wikipedia,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\ndat du allens ännern kannst.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nDu bruukst von nüms Verlööv\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nun dat is ok nich swoor.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nToeerst lett dat en beten, dat een meist verschuchtert warrn kann,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\naver dat is würklich nich swoor\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nDe Lüüd hebbt dat gornich in’n Sinn, as wenn se’t nich sehn kunnen.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nDe Lüüd leest Artikels un seht den Knoop mit „Ännern“ nich.\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nKlick op den Knoop un kiek, wat denn kummt.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n„Ännern“.\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nWenn du eers sowied büst,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nun du fangst an un schriffst,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\ndenn kummt bilütten een to’n annern,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nun dat is en wunnerbore Saak.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nWenn dat man blot en lütten Anfang is,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\ndat is en Inladen för mehr, en Inladen för Leven.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nWenn wi en Artikel anfangt, denn sünd wi nich tofreden,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nhe is kort un nich smuck.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nMan tööv eerst... en poor Stünnen\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nun du süst wo de Artikel sik utwickelt to en feinen Artikel.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nDe „Ännern“-Knoop: klick em un änner wat,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nspieker de Sied. Un de hest de Welt en Stück verännert.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n„Spiekern“.',\n", + " 'bytes': 1997,\n", + " 'sha1': '6brar3mecrhfu2tmrlvb4j1yvbnq0e2',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44434139,\n", + " 'timestamp': '2010-09-28T06:50:00Z',\n", + " 'user': {'id': 35584, 'text': 'Bellayet'},\n", + " 'page': {'id': 11618705,\n", + " 'title': 'Edit Button.ogv.bn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'edit',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nসেখানে একটি \"সম্পাদনা\" বোতাম রয়েছে\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nতাতে ক্লিক করুন,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nখুঁজে দেখুন কোথায় লেখাগুলো রয়েছে, এবং তা সম্পাদনা করুন\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nএবং তারপর \"সংরক্ষণ\" ক্লিক করুন। এটা খুবই সহজ।\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nউইকিপিডিয়ার সবচেয়ে মজার যে বিষয়টি হল,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nআপনি তা পরিবর্তন করতে পারেন।\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nএর জন্য আপনাকে কারও অনুমতির প্রয়োজন হবে না\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nএবং এটি কোন কঠিন কিছু নয়।\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nপ্রথমে হয়তো এটি দেখতে কিছুটা ভীতিকর মনে হতে পারে,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nকিন্তু এটি সত্যিই কঠিন কিছু নয়\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nলোকজন বুঝতে পারে না, এটি এক প্রকার অন্ধত্ব।\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nলোকজন নিবন্ধ পড়ে অথচ তারা \"সম্পাদনা\" বোতামটি দেখে না।\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nএই বোতামে ক্লিক করুন, দেখুন কি ঘটে।\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"সম্পাদনা।\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nআপনি যখন নিজেকে কিছুতে উন্মুক্ত করবেন,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nএবং আপনি গেলেন এবং সম্পাদনা করা শুরু করলেন,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nঅন্য সবরকমের ঘটনা এখানে ঘটতে পারে,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nএবং এটি সত্যিই সুন্দর।\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nযেমন, এটা কোন কিছুর শুরু বলা যেতে পারে,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nএটি জীবনে আরও কিছুর জন্য একটি আহ্বান।\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nযখন আমরা একটি নিবন্ধ শুরু করি, আমরা তা পছন্দ করি না,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nকারণ এটি তখন দেখতে কুৎসিত মনে হয়।\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nকিন্তু মাত্র কয়েক...ঘন্টা অপেক্ষা করুন\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nএবং দেখুন কিভাবে এটি একটি সুন্দর নিবন্ধের দিকে এগিয়ে যায়।\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\n\"সম্পাদনা\" বোতাম: ক্লিক করুন, এবং কিছু পরিবর্তন করুন,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nপাতা সংরক্ষণ করুন, আপনি পুরো বিশ্বে পরিবর্তন আনলেন।\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"সংরক্ষণ\"।',\n", + " 'bytes': 3638,\n", + " 'sha1': 'rvc52h2o0ik6bnpx4rwo5fi6gzcojn3',\n", + " 'parent_id': 44433968,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44437910,\n", + " 'timestamp': '2010-09-28T09:18:52Z',\n", + " 'user': {'id': 35584, 'text': 'Bellayet'},\n", + " 'page': {'id': 11619114,\n", + " 'title': 'Nice People MEDIUM.ogv.bn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 আপনার কাছে যদি জ্ঞান থাকে, কেন তা আপনার মধ্যেই সীমাবদ্ধ রাখবেন?\\n\\n2 00:00:04,249 --> 00:00:07,174 আমার মনে হয়, আপনার অবশ্যই তা বন্টন করা উচিত!\\n\\n3 00:00:07,174 --> 00:00:10,031 এই ওয়েবসাইটের উদ্দেশ্য, আমার খুব পছন্দ\\n\\n4 00:00:10,031 --> 00:00:15,325 এটা বলে না এটা কোন \"ওয়েবসাইট\", বলে না এটা কোন \"উইকি\", বলে না এটা \"ইন্টারনেট\",\\n\\n5 00:00:15,325 --> 00:00:17,113 এটা বলে \"উন্মুক্ত জ্ঞান,\\n\\n6 00:00:17,113 --> 00:00:19,411 সকলের জন্য, তাদের নিজের ভাষায়\"।\\n\\n7 00:00:19,411 --> 00:00:21,548 যখন কোন কমিউনিটি শুরু হয়,\\n\\n8 00:00:21,548 --> 00:00:23,428 তা তাদেরকে নিয়েই তৈরি হয়\\n\\n9 00:00:23,428 --> 00:00:25,936 যারা এর আমন্ত্রণ গ্রহণ করে।\\n\\n10 00:00:25,936 --> 00:00:27,956 এবং এটি একটি আমন্ত্রণ।\\n\\n11 00:00:27,956 --> 00:00:29,535 অবশ্যই আপনাকে এই আমন্ত্রণ গ্রহণ করতে হবে এমনটা নয়,\\n\\n12 00:00:29,535 --> 00:00:31,439 তারপরেও এই আমন্ত্রণ যেখানে\\n\\n13 00:00:31,439 --> 00:00:32,879 একটি \"সম্পাদনা\" বোতাম আপনাকে বলছে\\n\\n14 00:00:32,879 --> 00:00:37,709 \"আসুন, অংশ নিন, আপনি যা জানেন, তা আমরা যা জানি তার মতই গুরুত্বপূর্ণ\"।\\n\\n15 00:00:37,709 --> 00:00:40,472 আপনি জেনে রাখবেন আপনি মানুষকে শিক্ষা দিচ্ছেন,\\n\\n16 00:00:40,472 --> 00:00:43,026 এবং তা শুধু কোন ব্যক্তিকে নয়, পুরো বিশ্বকে।\\n\\n17 00:00:43,026 --> 00:00:47,113 তাই একটি বিশ্বকোষে অবদান রাখতে পেরে আমার খুব ভাল লাগে\\n\\n18 00:00:47,113 --> 00:00:51,455 যা ফলতঃ বিশ্বের প্রত্যেকটি মানুষ ব্যবহার করতে পারে।\\n\\n19 00:00:51,455 --> 00:00:55,286 অন্যকে সাহায্য করে নিজে সুখি হওয়া, এটাই।\\n\\n20 00:00:55,286 --> 00:00:57,283 কারণ আমি নিজে সুখি হতে চাই, তাই আমি অন্যকে সাহায্য করি।\\n\\n21 00:00:57,283 --> 00:01:00,650 আপনি বিভিন্ন ধরনের মানুষের সাথে মিলেমিশে কাজ করছেন\\n\\n22 00:01:00,650 --> 00:01:04,156 তারা বিভিন্ন সংস্কৃতির মানুষ, এটা পরম বিস্ময়কর।\\n\\n23 00:01:04,156 --> 00:01:06,501 ব্যাপারটি হল, আমি যা মনে করি,\\n\\n24 00:01:06,501 --> 00:01:08,754 সত্যিই এরা খুব মিষ্টি প্রকৃতির লোকজন।\\n\\n25 00:01:08,754 --> 00:01:10,890 আপনি জেনে থাকবেন, আমরা এমন সব মিষ্টি প্রকৃতির লোকজন পেয়েছি\\n\\n26 00:01:10,890 --> 00:01:14,466 যারা নিজেদের অনলাইনে [আনে] এবং টাইপ করে,\\n\\n27 00:01:14,466 --> 00:01:16,231 একজন আরেকজনের সাথে ঝগড়া বিবাদ করার বদলে\\n\\n28 00:01:16,231 --> 00:01:18,437 তারা হয়তো হালকা আলোচনা করে\\n\\n29 00:01:18,437 --> 00:01:20,875 অথবা কিছু গল্পগুজব অথবা অন্য যা কিছু,\\n\\n30 00:01:20,875 --> 00:01:22,198 তারা এমন কিছু তৈরি করার চেষ্টায় ব্যস্ত\\n\\n31 00:01:22,198 --> 00:01:23,707 যা সকলেই খুব উপকারী মনে করে।\\n\\n32 00:01:23,707 --> 00:01:26,029 আমি মনে করি, এরা সত্যিই মিষ্টি, সত্যিই ভাল মানুষ।',\n", + " 'bytes': 4618,\n", + " 'sha1': 'fnvwb7sw5kdbhqv731ph90p9mhz5n58',\n", + " 'parent_id': 44437374,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44437797,\n", + " 'timestamp': '2010-09-28T09:15:32Z',\n", + " 'user': {'id': 62367, 'text': 'Spiritia'},\n", + " 'page': {'id': 11619279,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.bg.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:01,000 --> 00:00:02,000 Моето потребителско име е Бюхервюрмлайн (Bücherwürmlein)\\n\\n2 00:00:02,000 --> 00:00:03,000 Лиля Роха (Lila roja)\\n\\n3 00:00:04,000 --> 00:00:05,000 Уай-Ю-Уай-Ю (yuyu)\\n\\n4 00:00:05,000 --> 00:00:07,000 СиБраун1023 (Cbrown1023)\\n\\n5 00:00:07,000 --> 00:00:08,000 22Картика (22Kartika)\\n\\n6 00:00:08,000 --> 00:00:10,000 Моето потребителско име е Чърч ъф Имакс (Church of emacs)\\n\\n7 00:00:10,000 --> 00:00:14,000 Бюхервюрмлайн (Bücherwürmlein) на немски е \"малко книжно червейче\"\\n\\n8 00:00:14,000 --> 00:00:16,000 Дю (Dew)\\n\\n9 00:00:16,000 --> 00:00:17,000 Чомски1 (Chomsky1)\\n\\n10 00:00:17,000 --> 00:00:18,000 Насир8891 (nasir8891)\\n\\n11 00:00:18,000 --> 00:00:21,000 Нотафиш (notafish), все едно: «не е риба»\\n\\n12 00:00:21,000 --> 00:00:22,000 Тео10011 (Theo10011)\\n\\n13 00:00:22,000 --> 00:00:24,000 Моето потребителско име е Хена (Henna)\\n\\n14 00:00:24,000 --> 00:00:25,000 Мису (Misou)\\n\\n15 00:00:25,000 --> 00:00:26,000 Моето потребителско име е Лизи (Lyzzy)\\n\\n16 00:00:26,000 --> 00:00:30,000 Уитилама (wittylama), това е анаграма на истинското ми име Лиъм Уайът\\n\\n17 00:00:30,000 --> 00:00:31,000 Дерек Чан (Deryck Chan)\\n\\n18 00:00:31,000 --> 00:00:32,000 Вуупиту (Vulpeto)\\n\\n19 00:00:32,000 --> 00:00:33,000 Раджиш Панди (RajeshPandey)\\n\\n20 00:00:33,000 --> 00:00:37,000 Моето потребителско име е Стивън Уолинг (Steven Walling), което е и истинското ми име\\n\\n21 00:00:37,000 --> 00:00:38,000 Моето потребителско име е Уолдир (Waldir)\\n\\n22 00:00:38,000 --> 00:00:41,000 Моето потребителско име е Мстиславл (Mstislavl)\\n\\n23 00:00:41,000 --> 00:00:44,000 Абас Джуриър (Abbasjnr)\\n\\n24 00:00:44,000 --> 00:00:49,000 Моето потребителско име е Джей Ди Форестър (Jdforrester) и аз редактирам Уикипедия',\n", + " 'bytes': 2197,\n", + " 'sha1': 'fj59mwtwurd36acm4t2t8zzb3qvzsz5',\n", + " 'parent_id': 44437731,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44468815,\n", + " 'timestamp': '2010-09-29T06:00:29Z',\n", + " 'user': {'id': 35584, 'text': 'Bellayet'},\n", + " 'page': {'id': 11628428,\n", + " 'title': 'Great Feeling.ogv.bn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nআ..., না, আমার সুপারপাওয়ার নেই।\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nনা। একদমই না।\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nআপনি সবকিছুই করতে পারবেন।\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nআমি বোতামটি চাপ দেই,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nএবং লেখাগুলো সংরক্ষিত হয়ে যায়,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nউউউউউ!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nএটা... দারুণ।\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nআপনি উইকিপিডিয়া যেকোন পরিবর্তন করলেই,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nআপনি নিজের অবদান উইকিপিডিয়াতে যুক্ত করলেন।\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nআমি \"গার্ডিয়ান\" এ একটি প্রবন্ধ পড়েছিলাম\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nএই অনলাইন বিশ্বকোষ সম্পর্কে\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nযেখানে প্রত্যেকে অবদান রাখতে পারে\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nএবং পড়ে আমি বলেছিলাম, \"ওয়াও!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"হয়তো আমিও এতে অবদান রাখতে পারবো!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nআমি প্রথমবারের মত সম্পদনা করি\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nএবং মনে হল আমি এতে আসক্ত হয়ে পড়েছি।\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nআমি এতে কোন টাকা পাইনি\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nআমি শুধুমাত্র করেছি এই জন্য, আপনি জানেন,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nআমার অবসর সময়ে কিছু করা যায়, এই জন্যেই।\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nআপনি হয়তো শুরু করেছেন কোন ধারণা থেকে,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nকারণ আপনি এটায় বিশ্বাস রাখেন,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nকিন্তু শেষ হবে বন্ধুদের সাথে,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nশেষ হবে প্রিয় মানুষের সাথে,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nশেষ হবে চমৎকার আলোচনার মাধ্যমে,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nশেষ হবে নতুন ধারণা নিয়ে,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nশেষ হবে নতুন বই নিয়ে যা আপনি লিখতে যাচ্ছেন...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nআপনি নিবন্ধ এখানে একাই লিখছেন না।\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nআপনি একটি অংশ লিখলেন,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nএবং অন্য যেকেউ এতে গিয়ে মনে করলো:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"হে, আমার কাছে আরও আছে!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nএবং তার সাথে মিলে আপনি তৈরি করলেন\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nনিবন্ধ যা কয়েক পাতা লম্বা,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nযা আপনি একা পারতেন না।\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nএটাই আপনার সফলতা।\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nআপনি সবসময় দেখবেন, \"ঠিক আছে, আমি যা করলাম তা সফল।\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nএবং এটা অদ্ভুত।\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nএটা চমৎকার,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nকারণ, এখানে সম্পাদনা করা আমাকে দারুণ অনুভূতি দেয়।\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nপ্রত্যেকবার আপনি যখন এটা করবেন।\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nআপনি বলবেন,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nযখন আমি উইকিপিডিয়া সম্পর্কে পড়ি,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nআমি সিদ্ধান্ত নেই\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"এটা হয়তো আমার জন্য সবচেয়ে উপযুক্ত জায়গা\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nএবং আমি শুরু করি।',\n", + " 'bytes': 4896,\n", + " 'sha1': 'h985lxjmwe1c21gt4ytcin0nf0hh131',\n", + " 'parent_id': 44468649,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45495318,\n", + " 'timestamp': '2010-10-27T09:32:30Z',\n", + " 'user': {'id': 1005962, 'text': 'Deniel'},\n", + " 'page': {'id': 11631194,\n", + " 'title': 'Edit Button.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nC\\'è un pulsante di \"modifica\"\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nbasta cliccarci sopra,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\ntrovare il posto nel quale si trova il testo, modificare\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\ne poi cliccare su \"salva\". E\\' così facile.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nUna cosa forte di Wikipedia\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nè che tu puoi cambiare le cose.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nNon hai bisogno del permesso di nessuno\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\ne non è difficile.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nSembra un po\\' scoraggiante in un primo momento,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nma in realtà non è difficile.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nLe persone non si rendono conto, come se fosse una sorta di cecità.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nLeggono gli articoli e non vedono il pulsante \"modifica\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nClicca su quel pulsante, e vedi cosa succede.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Modifica\".\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nQuanto ti apri verso qualcosa\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\ne vai e inizi a modificarla\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\ntutti i generi di altre cose possono accadere,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\ned è molto bello.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nCome può esserlo solo un punto di partenza,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nè un invito per sfruttare maggiormente la vita, in qualche modo.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nOgni volta che iniziamo un articolo, non ci piace,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nperché lo trovi brutto.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nMa aspetta solo ... ore\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\ne guarda come è diventato un articolo grandioso.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nIl pulsante di \"modifica\": Cliccaci, e cambia qualcosa,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nsalva la pagina, tu hai fatto la differenza in tutto il mondo.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Salva\".',\n", + " 'bytes': 1961,\n", + " 'sha1': 'rztgfefzwdsxroh4eolt0qsav93lo65',\n", + " 'parent_id': 45495140,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44715415,\n", + " 'timestamp': '2010-10-05T12:33:34Z',\n", + " 'user': {'id': 274, 'text': 'Kaganer'},\n", + " 'page': {'id': 11631463,\n", + " 'title': 'Nice People MEDIUM.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'поистине',\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 Если у вас есть знания, почему вы должны хранить их при себе?\\n\\n2 00:00:04,249 --> 00:00:07,174 Вы должны поделиться ими! Я считаю.\\n\\n3 00:00:07,174 --> 00:00:10,031 Мне нравится цель этого сайта:\\n\\n4 00:00:10,031 --> 00:00:15,325 в ней не говорится о «сайте», не говорится о «вики», не говорится об «интернете»,\\n\\n5 00:00:15,325 --> 00:00:17,113 там говорится: «Свободные знания,\\n\\n6 00:00:17,113 --> 00:00:19,411 для каждого, на его собственном языке».\\n\\n7 00:00:19,411 --> 00:00:21,548 Когда сообщество открыто,\\n\\n8 00:00:21,548 --> 00:00:23,428 оно действительно создаётся теми,\\n\\n9 00:00:23,428 --> 00:00:25,936 кто осмелился принять приглашение.\\n\\n10 00:00:25,936 --> 00:00:27,956 И это приглашение…\\n\\n11 00:00:27,956 --> 00:00:29,535 Конечно, вы не получаете приглашение,\\n\\n12 00:00:29,535 --> 00:00:31,439 но оно там есть,\\n\\n13 00:00:31,439 --> 00:00:32,879 в кнопке «править», говорящей:\\n\\n14 00:00:32,879 --> 00:00:37,709 «Иди, стань частью, то, что ты знаешь, важно, как и то, что мы знаем».\\n\\n15 00:00:37,709 --> 00:00:40,472 Ты знаешь, что даёшь образование людям,\\n\\n16 00:00:40,472 --> 00:00:43,026 и не отдельным людям, а всему миру.\\n\\n17 00:00:43,026 --> 00:00:47,113 Так что я чувствую себя классно, внося вклад в энциклопедию,\\n\\n18 00:00:47,113 --> 00:00:51,455 доступную поистине всем во всём мире.\\n\\n19 00:00:51,455 --> 00:00:55,286 Делать счастливым себя, помогая другим, вот что это.\\n\\n20 00:00:55,286 --> 00:00:57,283 Я помогаю другим, потому что хочу быть счастлив.\\n\\n21 00:00:57,283 --> 00:01:00,650 Ты работаешь вместе со стольким количеством разных людей\\n\\n22 00:01:00,650 --> 00:01:04,156 принадлежащих к стольки различным культурам, и это волшебно.\\n\\n23 00:01:04,156 --> 00:01:06,501 Подумайте об этом, для меня так это про всё…\\n\\n24 00:01:06,501 --> 00:01:08,754 это всё про по-настоящему отличных людей.\\n\\n25 00:01:08,754 --> 00:01:10,890 Вы знаете, у нас есть все эти отличные люди,\\n\\n26 00:01:10,890 --> 00:01:14,466 сидящие онлайн и печатающие,\\n\\n27 00:01:14,466 --> 00:01:16,231 и вместо того, чтобы орать друг на друга,\\n\\n28 00:01:16,231 --> 00:01:18,437 или всего лишь трепаться,\\n\\n29 00:01:18,437 --> 00:01:20,875 или читать сплетни или что-то такое,\\n\\n30 00:01:20,875 --> 00:01:22,198 они пытаются построить нечто,\\n\\n31 00:01:22,198 --> 00:01:23,707 что ещё кто-нибудь сочтёт полезным.\\n\\n32 00:01:23,707 --> 00:01:26,029 Я просто думаю, что это реально отличные, прекрасные люди.',\n", + " 'bytes': 3492,\n", + " 'sha1': 't5i28hhn14abplk0s24bfl8eg2c2hir',\n", + " 'parent_id': 44478833,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601723036,\n", + " 'timestamp': '2021-10-24T15:04:21Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11631533,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'small additional changes',\n", + " 'text': '1\\n00:00:00,863 --> 00:00:02,537\\nМой ник — Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,096 --> 00:00:05,086\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,192\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nМой ник — Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein —\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\nэто на немецком «маленький книжный червь»\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nChomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,148\\nnasir8891\\n\\n12\\n00:00:18,245 --> 00:00:19,360\\nnotafish\\n\\n13\\n00:00:19,393 --> 00:00:21,152\\nну, знаете, «not a fish» [«не рыба»]\\n\\n14\\n00:00:21,252 --> 00:00:22,315\\nTheo10011\\n\\n15\\n00:00:22,450 --> 00:00:23,635\\nМой ник — Henna\\n\\n16\\n00:00:23,719 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nМой ник — Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,213\\nwittylama — это анаграмма\\nот моего настоящего имени Liam Wyatt\\n\\n19\\n00:00:29,474 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,667\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,248\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,547\\nМой ник — Steven Walling,\\nи это моё настоящее имя\\n\\n23\\n00:00:36,748 --> 00:00:38,393\\nМой ник — Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,812\\nМой ник — Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nМеня зовут Jdforrester\\nи я редактирую Википедию',\n", + " 'bytes': 1639,\n", + " 'sha1': 'qc0nz2ghk5yh9vm87cc9uhg5jtjkv6v',\n", + " 'parent_id': 601586061,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44483740,\n", + " 'timestamp': '2010-09-29T16:08:13Z',\n", + " 'user': {'id': 211597, 'text': 'Lvova'},\n", + " 'page': {'id': 11633129,\n", + " 'title': 'Edit Button.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,114 --> 00:00:02,414 Это — кнопка «править» 2 00:00:02,530 --> 00:00:03,830 Просто нажмите на неё, 3 00:00:03,83...'\",\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nЭто — кнопка «править»\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nПросто нажмите на неё,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nнайдите место, в котором расположен текст, и правьте\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nа затем нажмите «сохранить». Это так легко.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nКлёвый факт о Википедии — то,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nчто вы можете менять факты.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nВам не нужно ничьё разрешение,\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nи это несложно.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nЭто поначалу немного пугает,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nно это и в самом деле несложно.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nЛюди не понимают, это какой-то вид слепоты.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nОни читают статьи и реально не видят кнопку «править».\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nНажмите на эту кнопку, и посмотрите, что произойдёт.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n«Править.»\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nКогда вы что-то для себя открываете,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nи идёте и начинаете редактировать,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nможет произойти что угодно,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nи это прекрасно.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nНу, это может быть лишь отправной точкой,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nприглашение для получения большей жизни, как-то так.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nВсякий раз, когда мы начинаем статью, она нам не нравится,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nнаходим её ужасной.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nНо подождите… пару часов\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nи посмотрите, как она дорабатывается до замечательной статьи.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nКнопка «править»: нажми, и измени что-нибудь,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nсохрани страницу; ты внёс изменение в целый мир.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n«Сохранить».',\n", + " 'bytes': 2634,\n", + " 'sha1': 'a821eeuestyjahn942buvbbaq6axo7k',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44709452,\n", + " 'timestamp': '2010-10-05T09:03:12Z',\n", + " 'user': {'id': 211597, 'text': 'Lvova'},\n", + " 'page': {'id': 11633286,\n", + " 'title': 'Great Feeling.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'updated',\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nБррр, нет, у меня нет суперсилы.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nСовсем. Нет.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nАбсолютно точно вы можете сделать это.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nЯ нажимаю на кнопку\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nи сохраняю текст.\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nУууу!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nЭто было… волнующе.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nВы лишь правите Википедию,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nвы лишь вносите свой вклад в Википедию.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nЯ прочла статью в «Guardian»\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nоб этой онлайн-энциклопедии\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nв которую может внести свой вклад каждый\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nи сказала: «Вау!»\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n«Может, и я смогу хорошо редактировать!»\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nЯ впервые стал редактировать\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nи, думаю, впал от этого в зависимость.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nЯ ничего не получаю,\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nЯ просто делаю это, знаете,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nчто-то делаю в своё свободное время, вот что.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nВы можете начать делать это за идею,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nпотому что верите в это,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nно в итоге вы получаете друзей,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nвы можете найти любовь,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nвы участвуете в прекрасных обсуждениях,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nк вам приходят новые идеи,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nвы собираетесь написать новые книги…\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nВы не пишете статьи в одиночку.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nВы пишете какую-то часть,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nи кто-то другой приходит и думает:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n«Эй, я могу написать про это кое-что ещё!» \\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nи вместе вы сможете создать\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nстатьи, которые гораздо объёмнее,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nчем вы могли бы создать самостоятельно.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nИ это — успех.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nВы всегда смотрите на результат и думаете: «Здорово! То, что я делал, способствовало успху.» \\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nи это прекрасно.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nЭто очень здорово,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nпотому что редактирование — это масса эмоций.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nИ вы занимаетесь этим постоянно.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nЯ хочу сказать вот что:\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nкогда я прочла о Википедии,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nя решила\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n«Это может быть такое дело, кудя я хотела бы вписаться»\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nИ вписалась.',\n", + " 'bytes': 3901,\n", + " 'sha1': 'jp2d4lttr0pw32apu5s0t6i3363rtf1',\n", + " 'parent_id': 44484903,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 124202839,\n", + " 'timestamp': '2014-05-17T14:05:49Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 11651675,\n", + " 'title': 'Sintel movie 720x306.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '-pre',\n", + " 'text': '1\\n00:01:47,250 --> 00:01:50,500\\nУ этого клинка тёмное прошлое.\\n\\n2\\n00:01:51,800 --> 00:01:55,800\\nОн пролил много невинной крови.\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nВы были глупы, путешествуя в одиночку, неподготовленной.\\n\\n4\\n00:02:01,750 --> 00:02:04,800\\nТебе повезло, что ты еще жива.\\n\\n5\\n00:02:05,250 --> 00:02:06,300\\nСпасибо.\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nИтак...\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\nЧто привело тебя на землю привратников?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\nЯ ищу кое-кого.\\n\\n9\\n00:02:18,000 --> 00:02:22,200\\nКого-то очень дорогого?\\nРодственную душу?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nДракона.\\n\\n11\\n00:02:28,850 --> 00:02:31,750\\nОпасное занятие для одиночки.\\n\\n12\\n00:02:32,950 --> 00:02:35,870\\nЯ была одна сколько себя помню.\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nМы почти закончили. Шшш...\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nЕй, не дергайся.\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nСпокойной ночи, Scales.\\n\\n16\\n00:04:10,350 --> 00:04:13,850\\nФас, Чешуйчик! Давай!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nЧешуйчик?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nДа! Давай!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nЧешуйчик!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nЯ не смогла.\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\nТы не смогла увидеть...\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\nЭто земли драконов, Синтел.\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nТы ближе, чем ты думала.\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nЧешуйчик!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nЧешуйчик?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nЧешуйчик...\\n\\n27\\n00:10:30,200 --> 00:10:40,800\\nПереведено Drakmail.',\n", + " 'bytes': 1958,\n", + " 'sha1': 'jailgvi5x3n2fqcx5xz291qycsq3q83',\n", + " 'parent_id': 124202794,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44557653,\n", + " 'timestamp': '2010-10-01T18:12:14Z',\n", + " 'user': {'id': 26548, 'text': 'Coyau'},\n", + " 'page': {'id': 11652760,\n", + " 'title': 'As8 genesis1a.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:01:02,800 --> 00:01:06,850 We are now approaching lunar sunrise… 2 00:01:06,850 --> 00:01:10,700 and, for all the people back on Earth, 3 00:01:10,700 -->...'\",\n", + " 'text': '1\\n00:01:02,800 --> 00:01:06,850\\nWe are now approaching lunar sunrise…\\n\\n2\\n00:01:06,850 --> 00:01:10,700\\nand, for all the people back on Earth,\\n\\n3\\n00:01:10,700 --> 00:01:13,500\\nthe crew of Apollo 8 has a message…\\n\\n4\\n00:01:13,500 --> 00:01:15,300\\nthat we would like to send to you.\\n\\n5\\n00:01:18,000 --> 00:01:21,900\\n<i>In the beginning<br/>God created the heaven and the earth.\\n\\n6\\n00:01:21,900 --> 00:01:25,300\\n<i>And the earth was without form, and void;\\n\\n7\\n00:01:25,500 --> 00:01:28,500\\n<i>and darkness was upon the face of the deep.\\n\\n8\\n00:01:28,700 --> 00:01:32,500\\n<i>And the Spirit of God moved upon the face of the waters.\\n\\n9\\n00:01:32,800 --> 00:01:38,000\\n<i>And God said, Let there be light:<br/>and there was light.\\n\\n10\\n00:01:38,400 --> 00:01:41,800\\n<i>And God saw the light,<br/>that it was good:\\n\\n11\\n00:01:42,000 --> 00:01:44,000\\n<i>and God divided the light from the darkness.\\n\\n12\\n00:01:50,500 --> 00:01:54,700\\n<i>And God called the light Day,<br/>and the darkness he called Night.\\n\\n13\\n00:01:55,500 --> 00:01:58,300\\n<i>And the evening and the morning were the first day.\\n\\n14\\n00:01:58,800 --> 00:02:02,200\\n<i>And God said,<br/>Let there be a firmament in the midst of the waters,\\n\\n15\\n00:02:02,700 --> 00:02:05,500\\n<i>and let it divide the waters from the waters.\\n\\n16\\n00:02:06,000 --> 00:02:08,600\\n<i>And God made the firmament, \\n\\n17\\n00:02:08,800 --> 00:02:11,000\\n<i>and divided the waters which were under the firmament…\\n\\n18\\n00:02:11,000 --> 00:02:13,700\\n<i>from the waters which were above the firmament:\\n\\n19\\n00:02:13,700 --> 00:02:14,900\\n<i>and it was so.\\n\\n20\\n00:02:15,500 --> 00:02:17,500\\n<i>And God called the firmament Heaven.\\n\\n21\\n00:02:17,600 --> 00:02:21,000\\n<i>And the evening and the morning were the second day\\n\\n22\\n00:02:29,000 --> 00:02:34,000\\n<i>And God said,<br/>Let the waters under the heavens be gathered together unto one place,\\n\\n23\\n00:02:34,000 --> 00:02:36,800\\n<i>and let the dry land appear:<br/>and it was so.\\n\\n24\\n00:02:36,800 --> 00:02:39,900\\n<i>And God called the dry land Earth;\\n\\n25\\n00:02:40,300 --> 00:02:44,330\\n<i>and the gathering together of the waters<br/>called he Seas:\\n\\n26\\n00:02:45,000 --> 00:02:47,200\\n<i>and God saw that it was good.\\n\\n27\\n00:02:48,000 --> 00:02:52,600\\nAnd from the crew of Apollo 8,<br/>we close with good night,\\n\\n28\\n00:02:52,600 --> 00:02:58,000\\ngood luck, a Merry Christmas,<br/>and God bless all of you,\\n\\n29\\n00:02:58,000 --> 00:03:00,000\\nall of you on the good Earth.',\n", + " 'bytes': 2432,\n", + " 'sha1': 'o33jwl7u4dz8en580odcpgdrhgs1qj5',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 156519695,\n", + " 'timestamp': '2015-04-09T15:18:46Z',\n", + " 'user': {'text': '5.12.93.6'},\n", + " 'page': {'id': 11653921,\n", + " 'title': 'Sintel movie 720x306.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00: 01: 47,250 -> 00: 01: 50,500\\nAceasta lama are un trecut întunecat.\\n\\n2\\n00: 01: 51,800 -> 00: 01: 55,800\\nEa a vărsat mult sânge nevinovat.\\n\\n3\\n00: 01: 58,000 -> 00: 02: 01,450\\nEști un prost pentru ca circuli singur,\\natât de complet nepregătit.\\n\\n4\\n00: 02: 01,750 -> 00: 02: 04,800\\nAi noroc inca iti curge sangele.\\n\\n5\\n00: 02: 05,250 -> 00: 02: 06,300\\nMultumesc.\\n\\n6\\n00: 02: 07,500 -> 00: 02: 09,000\\nDeci ...\\n\\n7\\n00: 02: 09,400 -> 00: 02: 13,800\\nCe te aduce in\\nTara Paznicilor?\\n\\n8\\n00: 02: 15.000 -> 00: 02: 17.500\\nCaut pe cineva.\\n\\n9\\n00: 02: 18.000 -> 00: 02: 22,200\\nCineva foarte drag?\\nUn spirit înrudit?\\n\\n10\\n00: 02: 23,400 -> 00: 02: 25.000\\nUn dragon.\\n\\n11\\n00: 02: 28,850 -> 00: 02: 31,750\\nO căutare periculoasa pentru un vânător singuratic.\\n\\n12\\n00: 02: 32,950 -> 00: 02: 35,870\\nAm fost singur\\natâta timp cât îmi amintesc.\\n\\n13\\n00: 03: 27,250 -> 00: 03: 30,500\\nSuntem aproape gata. Shhh ...\\n\\n14\\n00: 03: 30,750 -> 00: 03: 33,500\\nHei, stai liniștit.\\n\\n15\\n00: 03: 48,250 -> 00: 03: 52,250\\nNoapte bună, Suier.\\n\\n16\\n00: 04: 10,350 -> 00: 04: 13,850\\nIa-l, Suier! Haide!\\n\\n17\\n00: 04: 25,250 -> 00: 04: 28,250\\nSuier?\\n\\n18\\n00: 05: 04,000 -> 00: 05: 07,500\\nDa! Haide!\\n\\n19\\n00: 05: 38,750 -> 00: 05: 42.000\\nSuier!\\n\\n20\\n00: 07: 25,850 -> 00: 07: 27.500\\nAm esuat.\\n\\n21\\n00: 07: 32,800 -> 00: 07: 36,500\\nAi esuat doar pentru a vedea ...\\n\\n22\\n00: 07: 37,800 -> 00: 07: 40,500\\nAcestea sunt Taramurile Dragonului, Sintel.\\n\\n23\\n00: 07: 40,850 -> 00: 07: 44.000\\nEsti mai aproape decât crezi.\\n\\n24\\n00: 09: 17,600 -> 00: 09: 19.500\\nSuier!\\n\\n25\\n00: 10: 21,600 -> 00: 10: 24.000\\nSuier?\\n\\n26\\n00: 10: 26,200 -> 00: 10: 29,800\\nSuier ...',\n", + " 'bytes': 1610,\n", + " 'sha1': 'f5gdq1b2040fua56r5aqhepaokp0ruf',\n", + " 'parent_id': 156515651,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44562627,\n", + " 'timestamp': '2010-10-01T20:43:39Z',\n", + " 'user': {'id': 6282, 'text': 'Longbow4u'},\n", + " 'page': {'id': 11654092,\n", + " 'title': 'Sintel movie 720x306.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '(c) copyright Blender Foundation | durian.blender.org under CC-BY-3.0',\n", + " 'text': '1\\n00:01:47,250 --> 00:01:50,500\\nDiese Klinge birgt eine finstere\\nVergangenheit.\\n\\n2\\n00:01:51,800 --> 00:01:55,800\\nDurch sie wurde viel unschuldiges Blut\\nvergossen.\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nEs ist töricht, so ganz allein und\\nunvorbereitet zu reisen!\\n\\n4\\n00:02:01,750 --> 00:02:04,800\\nDu kannst von Glück sagen, dass dein\\nBlut noch in deinen Adern fließt.\\n\\n5\\n00:02:05,250 --> 00:02:06,300\\nDanke.\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nAlso...\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\n...was führt dich in die Lande der\\nTorwaechter?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\nIch suche jemanden.\\n\\n9\\n00:02:18,000 --> 00:02:22,200\\nEin teurer Freund?\\nEine verwandte Seele?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nEin Drache.\\n\\n11\\n00:02:28,850 --> 00:02:31,750\\nEin gefährliches Unterfangen für eine\\neinsame Jägerin.\\n\\n12\\n00:02:32,950 --> 00:02:35,870\\nIch bin einsam, solange ich mich\\nerinnern kann.\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nWir sind fast fertig. Ruhig...\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nHe, halt still.\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nGute Nacht, Scales.\\n\\n16\\n00:04:10,350 --> 00:04:13,850\\nLos, hol ihn dir, Scales! Komm schon!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nScales?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nJa! Vorwärts!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nScales!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nIch habe versagt.\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\nDu hast es nur nicht vermocht, genauer\\nhinzusehen.\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\nDies ist das Reich der Drachen, Sintel.\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nDu bist näher, als du ahnst.\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nScales!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nScales?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nScales...',\n", + " 'bytes': 1649,\n", + " 'sha1': 'q81u0qrgqwt5dzp5j9wyasf2jksunmo',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44563633,\n", + " 'timestamp': '2010-10-01T21:29:47Z',\n", + " 'user': {'id': 770, 'text': 'Slomox'},\n", + " 'page': {'id': 11654402,\n", + " 'title': 'Sintel movie 720x306.ogv.nds.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:01:47,250 --> 00:01:50,500 Disse Kling bargt en düüster Verleden. 2 00:01:51,800 --> 00:01:55,800 Se hett veel unschüllig Blood fleten laten. 3 00:01:58,...'\",\n", + " 'text': '1\\n00:01:47,250 --> 00:01:50,500\\nDisse Kling bargt en düüster Verleden.\\n\\n2\\n00:01:51,800 --> 00:01:55,800\\nSe hett veel unschüllig Blood fleten laten.\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nDu büst en Narr, dat du ganz alleen un unvörbereidt reist!\\n\\n4\\n00:02:01,750 --> 00:02:04,800\\nDu hest man Glück, dat noch Blood dör dien Adern flütt.\\n\\n5\\n00:02:05,250 --> 00:02:06,300\\nWees bedankt.\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nNu...\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\n...wat leidt dich na de Lannen von de Doorwächters?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\nIk bün op de Söök na een.\\n\\n9\\n00:02:18,000 --> 00:02:22,200\\nEn goden Maat?\\nEn frünnt Seel?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nEn Draak.\\n\\n11\\n00:02:28,850 --> 00:02:31,750\\nEn gefährlich Ünnernehmen för en eensam Jäger.\\n\\n12\\n00:02:32,950 --> 00:02:35,870\\nIk bün eensam, solang as ik mi trüchbesinnen kann.\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nWi sünd meist trech. Tööv...\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nHe, holl still.\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nGode Nacht, Flooms.\\n\\n16\\n00:04:10,350 --> 00:04:13,850\\nLos, krieg em, Flooms! Man to!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nFlooms?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nJo! Vörwards!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nFlooms!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nIk bün miss gahn.\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\nDu hest man blot miss keken.\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\nDit is dat Riek von de Draken, Sintel.\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nDu büst neger, as di ahnt.\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nFlooms!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nFlooms?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nFlooms...',\n", + " 'bytes': 1598,\n", + " 'sha1': '16clebpt58jufi6toqi3o8y0nc0ldwz',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44656313,\n", + " 'timestamp': '2010-10-03T20:18:27Z',\n", + " 'user': {'id': 578190, 'text': 'Palu'},\n", + " 'page': {'id': 11675578,\n", + " 'title': 'Sintel movie 720x306.ogv.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Translated by: HikaruCZ / Marek Zeman, source: http://tracker.cztorrent.net/torrent/sintel/120024, license of the translate: CC-BY-SA 3.0, author of original text: Blender foundation, uploader: Palu',\n", + " 'text': '1\\n00:01:47,250 --> 00:01:50,500\\nTato čepel má temnou minulost.\\n\\n2\\n00:01:51,800 --> 00:01:55,800\\nVrhá mnoho nevinné krve.\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nJsi blázen, cestovat o samotě,\\ntak naprosto nepřipravená.\\n\\n4\\n00:02:01,750 --> 00:02:04,800\\nMáš štěstí, že ti ještě koluje krev v těle.\\n\\n5\\n00:02:05,250 --> 00:02:06,300\\nDěkuji.\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nTakže...\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\nCo tě přimělo\\nk cestě do této země?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\nNěkoho hledám.\\n\\n9\\n00:02:18,000 --> 00:02:22,200\\nNěkoho drahého?\\nSpřízněnou duši?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nDraka.\\n\\n11\\n00:02:28,850 --> 00:02:31,750\\nNebezpečný úkol pro samotného lovce.\\n\\n12\\n00:02:32,950 --> 00:02:35,870\\nByla jsem sama tak dlouho,\\njak si jen pamatuji.\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nJsme téměř hotovi. Psst...\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nHej, zůstaň v klidu.\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nDobrou noc, Scalesi.\\n\\n16\\n00:04:10,350 --> 00:04:13,850\\nJdi po něm, Scalesi!\\nNo tak, jdi po něm!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nScalesi?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nJo! Jdi po něm!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nScalesi!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nSelhala jsem.\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\nJen jsi přehlédla, že...\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\ntohle je dračí země, Sintel.\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nJsi blíž, než si myslíš.\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nScalesi!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nScalesi?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nScalesi...\\n\\n<!-- Translated by: HikaruCZ / Marek Zeman, source: http://tracker.cztorrent.net/torrent/sintel/120024, license of the translate: CC-BY-SA 3.0, author of original text: Blender foundation, uploader: Palu -->',\n", + " 'bytes': 1755,\n", + " 'sha1': '945to8l8mlffqugnttd7q6lvevtnsx0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44696448,\n", + " 'timestamp': '2010-10-04T20:25:22Z',\n", + " 'user': {'id': 1057, 'text': 'Arwel Parry'},\n", + " 'page': {'id': 11691918,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.cy.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,000 --> 00:00:02,000 Bücherwürmlein yw fy enw defnyddiwr 2 00:00:02,000 --> 00:00:03,000 Lila roja 3 00:00:04,000 --> 00:00:05,000 yuyu 4 00:00:05,...'\",\n", + " 'text': '1 00:00:01,000 --> 00:00:02,000 Bücherwürmlein yw fy enw defnyddiwr\\n\\n2 00:00:02,000 --> 00:00:03,000 Lila roja\\n\\n3 00:00:04,000 --> 00:00:05,000 yuyu\\n\\n4 00:00:05,000 --> 00:00:07,000 Cbrown1023\\n\\n5 00:00:07,000 --> 00:00:08,000 22Kartika\\n\\n6 00:00:08,000 --> 00:00:10,000 Church of emacs (\"Eglwys emacs\") yw fy enw defnyddiwr\\n\\n7 00:00:10,000 --> 00:00:14,000 Bücherwürmlein - sef abwydyn llyfrau bach yn Almaeneg\\n\\n8 00:00:14,000 --> 00:00:16,000 Dew\\n\\n9 00:00:16,000 --> 00:00:17,000 Chomsky1\\n\\n10 00:00:17,000 --> 00:00:18,000 nasir8891\\n\\n11 00:00:18,000 --> 00:00:21,000 notafish, chi\\'n gwybod : « nid pysgodyn »\\n\\n12 00:00:21,000 --> 00:00:22,000 Theo10011\\n\\n13 00:00:22,000 --> 00:00:24,000 Henna yw fy enw defnyddiwr\\n\\n14 00:00:24,000 --> 00:00:25,000 Misou\\n\\n15 00:00:25,000 --> 00:00:26,000 Lyzzy yw fy enw defnyddiwr\\n\\n16 00:00:26,000 --> 00:00:30,000 wittylama, sef anagram o f\\'enw gwir, Liam Wyatt\\n\\n17 00:00:30,000 --> 00:00:31,000 Deryck Chan\\n\\n18 00:00:31,000 --> 00:00:32,000 Vulpeto\\n\\n19 00:00:32,000 --> 00:00:33,000 RajeshPandey\\n\\n20 00:00:33,000 --> 00:00:37,000 Steven Walling yw fy enw defnyddiwr, sef fy enw gwir\\n\\n21 00:00:37,000 --> 00:00:38,000 Waldir yw fy enw defnyddiwr\\n\\n22 00:00:38,000 --> 00:00:41,000 Mstislavl yw fy enw defnyddiwr\\n\\n23 00:00:41,000 --> 00:00:44,000 Abbasjnr, a-dwbwl b-a-s-j-n-r\\n\\n24 00:00:44,000 --> 00:00:49,000 Jdforrester yw fy enw i, ac dw i\\'n olygu Wicipedia',\n", + " 'bytes': 1400,\n", + " 'sha1': '3izkdzlutyxgr0zip9ygg4iss0tsk53',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44696799,\n", + " 'timestamp': '2010-10-04T20:39:19Z',\n", + " 'user': {'id': 745875, 'text': 'Eng.Adel'},\n", + " 'page': {'id': 11692016,\n", + " 'title': 'Edit Button.ogv.ar.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Creation: Arabic translation',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nيوجد زر \"عدل\"\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nفقط انقر عليه\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nابحث عن مكان النص وقم بتحريره\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nثم انقر \"أرسل التغييرات\". بهذه السهولة.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nالشئ الرائع بخصوص ويكيبيديا\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nأنه يمكنك تغيير الأشياء.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nلا تحتاج اﻷذن من أي شخص\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nوذلك ليس صعباً.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nقد يبدو ذلك مرعباً في البداية،\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nلكنه في الحقيقة ليس صعباً.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nالناس لا يدركون ، كما لو انها نوع من العمى.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nيقرأ الناس المقالات ولا يرون زر \"عدل\"،\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nانقر على ذلك الزر، وانظر ماذا يحدث.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"عدل\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nعندما تفتح نفسك على شئ ما\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nوتبدأ بتعديله،\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nيمكن لجميع اﻷشياء اﻷخرى أن تحدث لك\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nوهذا جميل فعلاً.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nمثلاً يمكن أن تكون فقط نقطة انطلاق،\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nانها دعوة لمزيد من الحياة ، بطريقة أو بأخرى\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nكلما بدأنا مقالاً، فنحن لا نحبه\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nلأنك تجده بشعاً.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nلكن أنتظر فقط... لساعات\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nوأنظر كيف سيتم تطويره إلى مقال رائع.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nزر \"عدل\": أنقر عليه، وغير شيئاً،\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nأرسل التغييرات، لقد قمت بتشيكل فارق للعالم أجمع.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"أرسل التغييرات\".',\n", + " 'bytes': 2255,\n", + " 'sha1': 'hq05tg4ojpcwo6r8lj4ry9lbzls83d7',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44715372,\n", + " 'timestamp': '2010-10-05T12:32:28Z',\n", + " 'user': {'id': 652302, 'text': 'Timk70'},\n", + " 'page': {'id': 11692384,\n", + " 'title': 'Great Feeling.ogv.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'aanpassingen',\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nEh, nee, ik heb geen superkrachten.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nHelemaal niet. Nee.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nJij kunt het ook.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nIk drukte op de knop,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nen sloeg de tekst op,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWoeh!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nHet was... spannend.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nJe hebt net Wikipedia veranderd,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nje hebt een eigen bijdrage geleverd aan Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nIk las een artikel in de \"Guardian\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nover deze online-encyclopedie\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nwaaraan iedereen kan bijdragen\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nen ik zei, \"Woow!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Misschien kan ik ook bijdragen!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nIk bewerkte voor de eerste keer\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nen ik raakte er verslaafd aan, volgens mij.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nIk krijg er niet voor betaald\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nik doe het gewoon voor, weet je wel,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\niets te doen in mijn vrije tijd, dat is het.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nJe kunt ermee beginnen vanuit een overtuiging,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nomdat je erin gelooft,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\ndaarna maak je vrienden,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nmensen beginnen van je te houden,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nje belandt in mooie discussies,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nje krijgt weer nieuwe ideeën,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nje krijgt ideeën voor nieuwe boeken...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nJe schrijft het artikel niet alleen.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nJij schrijft een deel,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nen iemand anders denkt:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hé, daarover weet ik nog meer!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nen samen maak je dan\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\npagina\\'s lange artikelen,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nwat je niet alleen kunt.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nDan zit je op de goede weg.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nJe zult altijd zien: \"Oké, wat ik heb gedaan, was succesvol.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nen dit is prachtig.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nDit is geweldig,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nomdat bewerken je een goed gevoel geeft.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nTelkens weer.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nIk moet zeggen,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\ntoen ik over Wikipedia las,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nbesloot ik\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Dit is misschien wel wat voor mij\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nEn dat bleek.',\n", + " 'bytes': 2762,\n", + " 'sha1': 'jsq2vhwqdyxxa43jwkl9m19l421zg9x',\n", + " 'parent_id': 44698404,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96835355,\n", + " 'timestamp': '2013-05-24T05:31:06Z',\n", + " 'user': {'id': 322046, 'text': 'Llywelyn2000'},\n", + " 'page': {'id': 11692405,\n", + " 'title': 'Edit Button.ogv.cy.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'iaith',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nMae \\'na fotwm \"golygu\"\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nCliciwch arno,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nDewch o hyd i destun, a golygwch\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\na wedyn cliciwch \"cadw\\'r dudalen\". Mae mor hawdd!\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nY peth da am Wicipedia\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nyw y gallwch chi newid pethau.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nDoes dim angen cael caniatâd rhywun\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\na dydy hi ddim yn anodd.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nMaen\\'n edrych reit frawychus ar y ddechrau,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nond yn wir dydy hi ddim yn anodd!\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nDydy pobol ddim yn sylweddoli, fel pe bai nam ar eu golwg.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nMae pobol yn darllen erthyglau a dydyn nhw ddim yn gweld y botwm \"golygu\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nCliciwch ar y botwm, ac edrychwch beth sy\\'n digwydd!\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Golygu.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nPan rydych yn agor eich calon,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nac yn dechrau golygu,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nellith pob math o pethau ddigwydd,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nac mae hwn yn brydferth iawn.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nGall fod yn ddechrau rhywbeth mawr,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nmae\\'n fath o wahoddiad am mwy o fywyd.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nPryd bynnag rydym ni\\'n dechrau erthygl newydd, dydyn ni ddim yn ei hoffi,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nachos rydych yn meddwl ei fod yn hyll.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nOnd arhoswch dim ond am... ychydig oriau\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\na sylwch sut mae hi\\'n datblygu i fod yn erthygl dda.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nY botwm \"golygu\": cliciwch arno, a newidwch rywbeth,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nsafiwch y dudalen, ac rydych wedi gwneud gwahaniaeth i\\'r byd cyfan.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Cadw\\'r dudalen\".',\n", + " 'bytes': 1958,\n", + " 'sha1': 'nnsdosfaliwd7ylv358j3rwmw5rsdi9',\n", + " 'parent_id': 44697855,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601721937,\n", + " 'timestamp': '2021-10-24T14:54:47Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11692569,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and partyally the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\nMijn gebruikersnaam is Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nMijn gebruikersnaam is Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein, dat is\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\neen kleine boekenwurm in het Duits\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nDat is Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\nsnap je: «not a fish» («geen vis»)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,293 --> 00:00:23,785\\nMijn gebruikersnaam is Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nMijn gebruikersnaam is Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,213\\nwittylama, het is een anagram\\nvan mijn echte naam Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nMijn gebruikersnaam is Steven Walling,\\ndat is mijn echte naam\\n\\n23\\n00:00:36,748 --> 00:00:38,393\\nMijn gebruikersnaam is Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nMijn gebruikersnaam is Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nMijn naam is Jdforrester\\nen ik bewerk Wikipedia.',\n", + " 'bytes': 1539,\n", + " 'sha1': 'p3qllkkvzu55m3onhtka817qnfq1iqe',\n", + " 'parent_id': 44698381,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601723319,\n", + " 'timestamp': '2021-10-24T15:06:52Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11693601,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.vi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and (probably) partially the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,651\\nTên người dùng của tôi là Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,372 --> 00:00:10,338\\nTên người dùng của tôi là Church of emacs\\n\\n7\\n00:00:10,389 --> 00:00:11,564\\nBücherwürmlein\\n\\n8\\n00:00:11,607 --> 00:00:13,999\\nnghĩa là \"con mọt sách nhỏ\"\\ntrong tiếng Đức\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nNó là Chomsky\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,217\\nNotafish\\n\\n13\\n00:00:19,248 --> 00:00:21,130\\nnghĩa là: \"not a fish\"\\n(không phải cá)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,321 --> 00:00:23,805\\nTên người dùng của tôi là Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nTên người dùng của tôi là Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, được đảo lại\\ntừ tên thật của tôi Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nTên người dùng của tôi là\\nSteven Walling, đó cũng là tên thật\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\nTên người dùng của tôi là Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nTên người dùng của tôi là Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nTên tôi là Jdforrester\\nvà tôi tham gia sửa đổi Wikipedia',\n", + " 'bytes': 1675,\n", + " 'sha1': '3t65kfp4d4g2uu0r03xjb75zks90nvr',\n", + " 'parent_id': 44702152,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44702608,\n", + " 'timestamp': '2010-10-05T01:43:18Z',\n", + " 'user': {'id': 161974, 'text': 'Vinhtantran'},\n", + " 'page': {'id': 11693640,\n", + " 'title': 'Edit Button.ogv.vi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:01,114 --> 00:00:02,414 Có một nút \"sửa đổi\" 2 00:00:02,530 --> 00:00:03,830 Chỉ cần nhấn chuột vào đó, 3 00:00:03,830 --> 00:00:06,6...\\'',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nCó một nút \"sửa đổi\"\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nChỉ cần nhấn chuột vào đó,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\ntìm nơi chứa văn bản, và sửa đổi\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nrồi nhấn nút \"Lưu trang\". Dễ vậy đó.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nĐiều tuyệt vời của Wikipedia,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nlà bạn có thể thay đổi các thứ.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nBạn không cần ai cho phép\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nvà làm điều đó không khó chút nào.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nBan đầu có thể nó cho bạn cảm giác hơn nản,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nnhưng thật ra không khó\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nMọi người không nhận ra, như thể bị mù vậy.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nMọi người đọc bài viết mà họ không nhìn thấy nút \"sửa đổi\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nHãy nhấn vào đó, và xem chuyện gì sẽ xảy ra.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Sửa đổi.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nKhi bạn mở lòng với một điều gì đó,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nbạn đến và bắt đầu sửa đổi,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nmọi thứ khác đều có thể xảy ra,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nvà thật sự nó rất đẹp.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nNó giống như một điểm khởi đầu,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nlà một lời mời để sống thú vị hơn.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nBất cứ khi nào chúng ta khởi đầu một bài viết, ta đều không thích nó,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nvì bạn sẽ thấy nó xấu xí.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nNhưng chỉ cần đợi... vài giờ\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nrồi xem nó được phát triển thành một bài viết tốt như thế nào.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nNút \"sửa đổi\": nhấn vào nó, và thay đổi các thứ,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nlưu trang, và bạn đã tạo ra sự khác biệt cho cả thế giới.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Lưu trang\".',\n", + " 'bytes': 2220,\n", + " 'sha1': 'rgn85an68l5ndukjqn9dbx7fkmbpjqv',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601723886,\n", + " 'timestamp': '2021-10-24T15:12:11Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11694686,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and (probably) partially the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\n我的用户名是Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\n我的用户名是Church of emacs\\n\\n7\\n00:00:10,329 --> 00:00:11,459\\nBücherwürmlein\\n\\n8\\n00:00:11,515 --> 00:00:13,999\\n意思是德文的“小书虫”\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\n這是Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\n顾名思义,\\n«not a fish»(不是一条鱼)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,513 --> 00:00:23,785\\n我的用户名是Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\n我的用户名是Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, 是我真名\\nLiam Wyatt的昵称\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\n我的用户名是Steven Walling,\\n这也是我的真名\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\n我的用户名是Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\n我的用户名是Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\n我的名字是Jdforrester,\\n我是维基百科的编辑者',\n", + " 'bytes': 1501,\n", + " 'sha1': 'c6xt88otmk4pkwqba1h2r36y50tqhdt',\n", + " 'parent_id': 59842283,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44707555,\n", + " 'timestamp': '2010-10-05T07:26:31Z',\n", + " 'user': {'id': 639212, 'text': 'Olli'},\n", + " 'page': {'id': 11694751,\n", + " 'title': 'Edit Button.ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'ready',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nSivulta löytyy muokkauspainike\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nNapsauta sitä,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\netsi kohta, josta teksti löytyy. Tee muutokset\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nja napsauta \"Tallenna\". Niin helppoa se on.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nWikipediassa on se hyvä puoli, että\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nvoit muuttaa asioita.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nEt tarvitse kenenkään lupaa\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nja se ei ole hankalaa.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nMuokkaaminen saattaa tuntua aluksi ehkä vähän pelottavalta,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nmutta oikeasti se ei ole vaikeaa.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nIhmiset eivät ymmärrä, ihan kuin se olisi jonkinlaista haluttomuutta.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nIhmiset lukevat artikkeleita, mutta eivät näke muokkaa-painiketta.\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nNapsauta painiketta, ja katso mitä tapahtuu.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Muokkaa.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nKun avaat itsesi jollekin,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nmenet, ja aloitat muokkaamisen,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nkaikenlaisia asioita voi tapahtua,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nja tämä on todella ihanaa.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nSe voi olla esimerkiksi aloituspiste,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nuseammalle elämälle.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nKun aloitamme artikkelin, emme pidä siitä,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nkoska se on mielestäsi ärsyttävä.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nMutta odota... tunteja\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nja katso, kuinka siitä kehitetään hyvä artikkeli.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nMuokkaa-painike: napsauta sitä ja muuta jotakin,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\ntallenna sivu, ja olet muuttanut maailmaa.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Tallenna\".',\n", + " 'bytes': 1905,\n", + " 'sha1': 'lppxopy9sv3b4tiohpyx5vtndk1cl4p',\n", + " 'parent_id': 44707419,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44707540,\n", + " 'timestamp': '2010-10-05T07:25:13Z',\n", + " 'user': {'id': 35584, 'text': 'Bellayet'},\n", + " 'page': {'id': 11694783,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.bn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'bn+',\n", + " 'text': '1 00:00:01,000 --> 00:00:02,000 আমার ইউজার নেম হল Bücherwürmlein\\n\\n2 00:00:02,000 --> 00:00:03,000 Lila roja\\n\\n3 00:00:04,000 --> 00:00:05,000 yuyu\\n\\n4 00:00:05,000 --> 00:00:07,000 Cbrown1023\\n\\n5 00:00:07,000 --> 00:00:08,000 22Kartika\\n\\n6 00:00:08,000 --> 00:00:10,000 আমার ইউজার নেম হল Church of emacs\\n\\n7 00:00:10,000 --> 00:00:14,000 Bücherwürmlein হল জার্মানের একধরনের ছোট বইয়ের পোকা\\n\\n8 00:00:14,000 --> 00:00:16,000 Dew\\n\\n9 00:00:16,000 --> 00:00:17,000 Chomsky1\\n\\n10 00:00:17,000 --> 00:00:18,000 nasir8891\\n\\n11 00:00:18,000 --> 00:00:21,000 notafish, জানেন : « not a fish »\\n\\n12 00:00:21,000 --> 00:00:22,000 Theo10011\\n\\n13 00:00:22,000 --> 00:00:24,000 আমার ইউজার নেম হল Henna\\n\\n14 00:00:24,000 --> 00:00:25,000 Misou\\n\\n15 00:00:25,000 --> 00:00:26,000 আমার ইউজার নেম হল Lyzzy\\n\\n16 00:00:26,000 --> 00:00:30,000 wittylama, এটা আমার আসল নাম Liam Wyatt এর একটি অ্যানগ্রাম\\n\\n17 00:00:30,000 --> 00:00:31,000 Deryck Chan\\n\\n18 00:00:31,000 --> 00:00:32,000 Vulpeto\\n\\n19 00:00:32,000 --> 00:00:33,000 RajeshPandey\\n\\n20 00:00:33,000 --> 00:00:37,000 আমার ইউজার নেম হল Steven Walling, এটা আমার আসল নাম\\n\\n21 00:00:37,000 --> 00:00:38,000 আমার ইউজার নেম হল Waldir\\n\\n22 00:00:38,000 --> 00:00:41,000 আমার ইউজার নেম হল Mstislavl\\n\\n23 00:00:41,000 --> 00:00:44,000 Abbasjnr, a-double b-a-s-j-n-r\\n\\n24 00:00:44,000 --> 00:00:49,000 আমার ইউজার নেম হল Jdforrester এবং আমি উইকিপিডিয়া সম্পাদনা করি',\n", + " 'bytes': 1812,\n", + " 'sha1': 'tlih4cmsgurmc6br2px1j96mz88l5pa',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44707547,\n", + " 'timestamp': '2010-10-05T07:26:00Z',\n", + " 'user': {'id': 8448, 'text': 'Fulup'},\n", + " 'page': {'id': 11694786,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,000 --> 00:00:02,000 Bücherwürmlein eo ma anv implijer 2 00:00:02,000 --> 00:00:03,000 Lila roja 3 00:00:04,000 --> 00:00:05,000 yuyu 4 00:00:05,00...'\",\n", + " 'text': \"1 00:00:01,000 --> 00:00:02,000 Bücherwürmlein eo ma anv implijer\\n\\n2 00:00:02,000 --> 00:00:03,000 Lila roja\\n\\n3 00:00:04,000 --> 00:00:05,000 yuyu\\n\\n4 00:00:05,000 --> 00:00:07,000 Cbrown1023\\n\\n5 00:00:07,000 --> 00:00:08,000 22Kartika\\n\\n6 00:00:08,000 --> 00:00:10,000 Church of emacs eo ma anv implijer\\n\\n7 00:00:10,000 --> 00:00:14,000 Bücherwürmlein, se zo anv ur preñv bihan a grign levrioù, en alamaneg\\n\\n8 00:00:14,000 --> 00:00:16,000 Dew\\n\\n9 00:00:16,000 --> 00:00:17,000 Chomsky1\\n\\n10 00:00:17,000 --> 00:00:18,000 nasir8891\\n\\n11 00:00:18,000 --> 00:00:21,000 notafish, c'hwi 'oar : « not a fish »\\n\\n12 00:00:21,000 --> 00:00:22,000 Theo10011\\n\\n13 00:00:22,000 --> 00:00:24,000 Henna eo ma anv implijer\\n\\n14 00:00:24,000 --> 00:00:25,000 Misou\\n\\n15 00:00:25,000 --> 00:00:26,000 Lyzzy eo ma anv implijer\\n\\n16 00:00:26,000 --> 00:00:30,000 wittylama, un anagram eo diwar ma anv gwir Liam Wyatt\\n\\n17 00:00:30,000 --> 00:00:31,000 Deryck Chan\\n\\n18 00:00:31,000 --> 00:00:32,000 Vulpeto\\n\\n19 00:00:32,000 --> 00:00:33,000 RajeshPandey\\n\\n20 00:00:33,000 --> 00:00:37,000 Steven Walling eo ma anv implijer, ar pezh zo ma anv gwir\\n\\n21 00:00:37,000 --> 00:00:38,000 Waldir eo ma anv implijer\\n\\n22 00:00:38,000 --> 00:00:41,000 Mstislavl eo ma anv implijer\\n\\n23 00:00:41,000 --> 00:00:44,000 Abbasjnr, ur b-a-s-j-n-r doubl\\n\\n24 00:00:44,000 --> 00:00:49,000 Jdforrester eo ma anv ha perzh a gemeran e Wikipedia\",\n", + " 'bytes': 1399,\n", + " 'sha1': 'byutdvwija4qa4l2l32faymgagxd9lv',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44707770,\n", + " 'timestamp': '2010-10-05T07:39:57Z',\n", + " 'user': {'id': 348860, 'text': 'Diagramma Della Verita'},\n", + " 'page': {'id': 11694789,\n", + " 'title': 'Edit Button.ogv.ms.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:Edit Button.ogv.ms.srt/]] to [[TimedText:Edit Button.ogv.ms.srt]]: title wrong..',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nTerdapat tab \"sunting\"\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nHanya dengan menekannya,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\ncari bahagian teks dan sunting\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nkemudian tekan \"simpan\". Memang mudah.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nPerkara yang hebat tentang Wikipedia,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nialah anda boleh mengubah apa sahaja.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nAnda tidak memerlukan kebenaran sesiapa\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\ndan menyunting sememangnya senang. \\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nSuntingan anda mungkin kelihatan tidak menyeluruh pada permulaannya,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\ntetapi menyunting tidaklah susah. \\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nOrang ramai yang tidak sedar, bagaikan keliru dan buta.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nRamai orang yang membaca artikel tanpa menyedari tab \"sunting\"\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nTekan tab \"sunting\" dan lihatlah. \\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Sunting\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nApabila anda membuka ruang anda kepada sesuatu baru,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\ndan mula mencuba menyunting,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nbanyak perkara yang boleh berlaku,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\ndan kesannya amat menakjubkan.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nIni bagaikan titik permulaan,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nsuatu undangan untuk kehidupan.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nSetiap kali kami menulis suatu artikal baru, kami tidak berpuas hati,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nkerana artikal tidak bermutu \\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nTetapi, tunggu beberapa jam\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\ndan lihatlah bagaimana artikal tersebut berkembang menjadi lebih baik.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nTab \"sunting\": tekannya, dan menyunting sesuata\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nsimpan laman tersebut, anda telah melakukan sesuatu yang bermakna kepada seluruh dunia.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Simpan\".',\n", + " 'bytes': 2001,\n", + " 'sha1': '2v2wvr6yvs5nry1c7hm6c19ni1wmxhk',\n", + " 'parent_id': 44707570,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601706332,\n", + " 'timestamp': '2021-10-24T14:00:57Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11694803,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and partyally the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\nKäyttäjätunnukseni on Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nKäyttäjätunnukseni on Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\non pieni kirjamato Saksasa\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nChomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\ntiedäthän : «not a fish»\\n(«ei kala»)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,293 --> 00:00:23,785\\nKäyttäjätunnukseni on Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nKäyttäjätunnukseni on Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, se on anagrammi\\noikeasta nimestäni Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nKäyttäjätunnukseni on Steven Walling,\\njoka on oikea nimeni\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\nKäyttäjätunnukseni on Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nKäyttäjätunnukseni on Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nNimeni on Jdforrester \\na muokkaan Wikipediaa',\n", + " 'bytes': 1525,\n", + " 'sha1': 'n6c9s738gt6colkvqwt3xune40koszb',\n", + " 'parent_id': 44707668,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44715961,\n", + " 'timestamp': '2010-10-05T12:50:08Z',\n", + " 'user': {'id': 775084, 'text': 'Juhko'},\n", + " 'page': {'id': 11694836,\n", + " 'title': 'Nice People MEDIUM.ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 Jos tiedät paljon jostakin asiasta,\\n\\n2 00:00:04,249 --> 00:00:07,174 sinun kannattaisi jakaa tietosi! Mielestäni.\\n\\n3 00:00:07,174 --> 00:00:10,031 Pidän tämän sivuston tarkoituksesta\\n\\n4 00:00:10,031 --> 00:00:15,325 en sanonut \"sivusto\", enkä \"Wiki\", enkä myöskään \"Internet\",\\n\\n5 00:00:15,325 --> 00:00:17,113 sanoin \"Ilmaista tietoa,\\n\\n6 00:00:17,113 --> 00:00:19,411 kaikille, heidän omalla kielellään\".\\n\\n7 00:00:19,411 --> 00:00:21,548 Kun yhteisö on avoin,\\n\\n8 00:00:21,548 --> 00:00:23,428 se on todellakin avoin kaikille,\\n\\n9 00:00:23,428 --> 00:00:25,936 jotka uskaltavat ottaa kutsun vastaan.\\n\\n10 00:00:25,936 --> 00:00:27,956 Ja tämä kutsu.\\n\\n11 00:00:27,956 --> 00:00:29,535 Tietenkään sinun ei ole pakko hyväksyä kutsua,\\n\\n12 00:00:29,535 --> 00:00:31,439 mutta kutsu on avoin\\n\\n13 00:00:31,439 --> 00:00:32,879 muokkaa-painikkeessa, kuten sanotaan\\n\\n14 00:00:32,879 --> 00:00:37,709 \"Tule, osaksi meitä, sillä sinun tietosi ovat yhtä tärkeitä kuin meidänkin tietomme\".\\n\\n15 00:00:37,709 --> 00:00:40,472 Tiedät, että annat ihmisille tietoa,\\n\\n16 00:00:40,472 --> 00:00:43,026 et vain yhdelle, vaan koko maailman ihmisille.\\n\\n17 00:00:43,026 --> 00:00:47,113 Joten minusta on mukavaa osallistua tietosanakirjan tekoon,\\n\\n18 00:00:47,113 --> 00:00:51,455 jota kuka tahansa maailmassa voi käyttää.\\n\\n19 00:00:51,455 --> 00:00:55,286 Teet itsesi iloiseksi auttamalla muita, tätä se on.\\n\\n20 00:00:55,286 --> 00:00:57,283 Koska haluan olla iloinen, autan muita.\\n\\n21 00:00:57,283 --> 00:01:00,650 Työskentelet yhdessä niin monien ihmisten kanssa\\n\\n22 00:01:00,650 --> 00:01:04,156 niin monista eri kulttuureista, ja tämä on niin mahtavaa.\\n\\n23 00:01:04,156 --> 00:01:06,501 Minulle asia on juuri sitä, että saa \\n\\n24 00:01:06,501 --> 00:01:08,754 olla tekemisissä erilaisten ihmisten kanssa.\\n\\n25 00:01:08,754 --> 00:01:10,890 Saamme kaikki nämä mahtavat ihmiset, jotka\\n\\n26 00:01:10,890 --> 00:01:14,466 ovat tulossa verkkoon ja kirjoittamaan,\\n\\n27 00:01:14,466 --> 00:01:16,231 sen sijaan, että toisille huudettaisiin\\n\\n28 00:01:16,231 --> 00:01:18,437 tai keskusteltaisiin\\n\\n29 00:01:18,437 --> 00:01:20,875 tai luettaisiin juoruja tai mitä vain muutakaan,\\n\\n30 00:01:20,875 --> 00:01:22,198 he yrittävät rakentaa jotakin,\\n\\n31 00:01:22,198 --> 00:01:23,707 joka on hyödyllistä kenen tahansa muun mielestä.\\n\\n32 00:01:23,707 --> 00:01:26,029 Mielestäni juuri tämä on erittäin hyvä juttu Wikipediassa.',\n", + " 'bytes': 2471,\n", + " 'sha1': 'dx3jfzv17xupsuzw5i0a78din9yaurp',\n", + " 'parent_id': 44714281,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44710967,\n", + " 'timestamp': '2010-10-05T09:57:32Z',\n", + " 'user': {'id': 50587, 'text': 'Nemo bis'},\n", + " 'page': {'id': 11694977,\n", + " 'title': 'Wikimedia Italia - WikiGuida 2 - Commons.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:Commons h264 MVC theora.ogv.it.srt]] to [[TimedText:Wikimedia Italia - WikiGuida 2 - Commons.ogv.it.srt]]',\n", + " 'text': '1\\n00:00:11,086 --> 00:00:14,676\\nWikimedia Commons (chiamato anche semplicemente Commons)\\n\\n2\\n00:00:14,740 --> 00:00:17,986\\nè un archivio che raccoglie immagini, audio, video\\n\\n3\\n00:00:18,010 --> 00:00:22,196\\ne altre risorse multimediali a carattere illustrativo o educativo.\\n\\n4\\n00:00:22,174 --> 00:00:26,249\\nI materiali contenuti in Commons possono essere utilizzati liberamente,\\n\\n5\\n00:00:26,305 --> 00:00:31,028\\nanche per fini commerciali, a patto di rispettarne le condizioni d\\'uso.\\n\\n6\\n00:00:31,821 --> 00:00:35,200\\nFratello di Wikipedia, Commons è nato nel 2004\\n\\n7\\n00:00:35,236 --> 00:00:38,888\\ncome deposito comune per i vari progetti della Wikimedia Foundation,\\n\\n8\\n00:00:38,934 --> 00:00:42,153\\ne si è poi evoluto in un progetto con linee guida proprie.\\n\\n9\\n00:00:42,320 --> 00:00:46,469\\nIn Commons è possibile trovare fotografie di luoghi e monumenti.\\n\\n10\\n00:00:46,919 --> 00:00:49,281\\nAnimali, piante, minerali.\\n\\n11\\n00:00:49,726 --> 00:00:53,281\\nFoto di personaggi, di oggetti comuni e di opere d\\'arte.\\n\\n12\\n00:00:53,470 --> 00:00:58,183\\nE poi immagini e registrazioni storiche e scannerizzazioni di libri antichi.\\n\\n13\\n00:00:58,483 --> 00:01:01,021\\nSchemi, diagrammi, grafici e mappe.\\n\\n14\\n00:01:01,335 --> 00:01:06,275\\nVideo e registrazioni audio... e molto altro ancora.\\n\\n15\\n00:01:06,664 --> 00:01:10,650\\nIn alcuni casi i materiali non sono più protetti da diritto d\\'autore,\\n\\n16\\n00:01:10,774 --> 00:01:15,110\\nin altri gli autori o i detentori dei diritti hanno concesso il permesso\\n\\n17\\n00:01:15,123 --> 00:01:19,634\\ndi utilizzare i loro lavori a patto di rispettare semplici condizioni,\\n\\n18\\n00:01:19,630 --> 00:01:24,442\\ncome l\\'attribuzione o l\\'uso della stessa licenza per eventuali opere derivate.\\n\\n19\\n00:01:24,745 --> 00:01:28,870\\nOltre sette milioni le risorse in Commons, liberamente scaricabili\\n\\n20\\n00:01:28,908 --> 00:01:34,731\\ne utilizzabili per ricerche, siti web, manifesti, pubblicità, opere d\\'arte...\\n\\n21\\n00:01:35,761 --> 00:01:39,050\\nLe risorse di Commons possono essere inserite direttamente\\n\\n22\\n00:01:39,055 --> 00:01:43,766\\nsulle pagine dell\\'enciclopedia Wikipedia e in tutti gli altri progetti Wikimedia,\\n\\n23\\n00:01:43,777 --> 00:01:47,438\\nchiaramente nel rispetto delle linee guida dello specifico progetto,\\n\\n24\\n00:01:47,476 --> 00:01:49,767\\ndella comunità linguistica di riferimento\\n\\n25\\n00:01:49,777 --> 00:01:52,983\\ne della legislazione del paese di provenienza.\\n\\n26\\n00:01:53,723 --> 00:01:57,300\\nOgni file in Commons ha una propria pagina wiki.\\n\\n27\\n00:01:57,567 --> 00:02:00,235\\nDopo il titolo segue la risorsa multimediale\\n\\n28\\n00:02:00,223 --> 00:02:03,729\\no una sua anteprima, come nel caso di foto molto grandi.\\n\\n29\\n00:02:04,007 --> 00:02:07,821\\nSono poi inserite una descrizione (spesso in più lingue)\\n\\n30\\n00:02:07,825 --> 00:02:12,856\\ne tutte le informazioni disponibili, come fonte, autore, data, termini d\\'uso.\\n\\n31\\n00:02:13,083 --> 00:02:17,044\\nLa cronologia del file elenca tutte le sue eventuali rielaborazioni.\\n\\n32\\n00:02:17,058 --> 00:02:21,408\\nÈ infatti possibile correggere e migliorare i file caricati da altri utenti.\\n\\n33\\n00:02:21,795 --> 00:02:24,567\\nÈ inoltre presente l\\'elenco delle pagine di Commons\\n\\n34\\n00:02:24,568 --> 00:02:26,995\\ne degli altri progetti della Wikimedia Foundation\\n\\n35\\n00:02:27,004 --> 00:02:29,996\\nche hanno collegato o richiamato la risorsa.\\n\\n36\\n00:02:30,275 --> 00:02:32,752\\nIn fondo ci sono le categorie di appartenenza,\\n\\n37\\n00:02:32,790 --> 00:02:35,502\\ncon le quali la risorsa è stata catalogata.\\n\\n38\\n00:02:35,544 --> 00:02:38,209\\nLe categorie sono standardizzate in inglese,\\n\\n39\\n00:02:38,213 --> 00:02:41,927\\nma per usarle è sufficiente una conoscenza approssimativa della lingua.\\n\\n40\\n00:02:42,863 --> 00:02:45,245\\nCome contribuire a Commons?\\n\\n41\\n00:02:45,278 --> 00:02:48,559\\nUn amante della fotografia può inserire le sue immagini,\\n\\n42\\n00:02:48,659 --> 00:02:52,055\\nun bravo disegnatore può aggiungere diagrammi e animazioni,\\n\\n43\\n00:02:52,054 --> 00:02:54,924\\nun musicista la registrazione di opere libere.\\n\\n44\\n00:02:55,133 --> 00:02:58,899\\nPossono essere inseriti anche film e registrazioni di opere teatrali,\\n\\n45\\n00:02:58,926 --> 00:03:01,581\\npurché non siano coperte da copyright.\\n\\n46\\n00:03:02,452 --> 00:03:07,264\\nPer poter caricare dei file su Commons, bisogna essere utenti registrati.\\n\\n47\\n00:03:07,277 --> 00:03:11,832\\nLa registrazione, gratuita, si effettua velocemente, e non è necessaria\\n\\n48\\n00:03:11,887 --> 00:03:15,581\\nse si è già registrati in un altro progetto della Wikimedia Foundation.\\n\\n49\\n00:03:15,974 --> 00:03:19,324\\nÈ possibile caricare risorse solo in un formato libero.\\n\\n50\\n00:03:19,366 --> 00:03:23,448\\nAd esempio per i video è ammesso solo il formato Ogg Theora.\\n\\n51\\n00:03:23,529 --> 00:03:26,682\\nEsistono comunque vari convertitori open source\\n\\n52\\n00:03:26,622 --> 00:03:29,877\\nche si possono scaricare e utilizzare gratuitamente.\\n\\n53\\n00:03:30,249 --> 00:03:34,390\\nOgni file caricato deve rispettare: la legge degli Stati Uniti,\\n\\n54\\n00:03:34,385 --> 00:03:37,322\\ndove risiede legalmente la Wikimedia Foundation;\\n\\n55\\n00:03:37,322 --> 00:03:40,229\\nle leggi delle nazioni da cui deriva la risorsa;\\n\\n56\\n00:03:40,283 --> 00:03:45,626\\nle leggi del paese dell’utente, che rimane responsabile dei contenuti inseriti.\\n\\n57\\n00:03:46,104 --> 00:03:49,031\\nBisogna poi controllare che non si stiano infrangendo\\n\\n58\\n00:03:49,050 --> 00:03:52,175\\nle norme sulla privacy o sui marchi registrati\\n\\n59\\n00:03:52,195 --> 00:03:56,026\\no le restrizioni sull\\'uso delle opere d\\'arte di alcuni musei.\\n\\n60\\n00:03:56,557 --> 00:04:00,399\\nNel caso di opere già pubblicate altrove senza una licenza libera,\\n\\n61\\n00:04:00,448 --> 00:04:04,311\\nl\\'autore o i detentori dei diritti devono inviare una mail\\n\\n62\\n00:04:04,364 --> 00:04:07,380\\nin cui si identificano e dichiarano di acconsentire\\n\\n63\\n00:04:07,416 --> 00:04:11,201\\nalla pubblicazione della risorsa con una licenza libera.\\n\\n64\\n00:04:12,002 --> 00:04:16,003\\nCome Wikipedia, Commons è un wiki, un sito aperto a tutti\\n\\n65\\n00:04:16,006 --> 00:04:18,714\\ned è gestito da volontari da ogni parte del mondo\\n\\n66\\n00:04:18,767 --> 00:04:22,079\\nche si impegnano a identificare e categorizzare il materiale,\\n\\n67\\n00:04:22,123 --> 00:04:24,549\\ncompletare o tradurre le descrizioni,\\n\\n68\\n00:04:24,561 --> 00:04:27,484\\ncreare le gallerie e le pagine specifiche per tema,\\n\\n69\\n00:04:27,484 --> 00:04:31,936\\nindividuare e cancellare le risorse con licenze o fonti incomplete.\\n\\n70\\n00:04:32,872 --> 00:04:35,303\\nIl progetto Commons è multilingue:\\n\\n71\\n00:04:35,364 --> 00:04:37,898\\nun sito unico contiene tutte le traduzioni\\n\\n72\\n00:04:37,909 --> 00:04:41,307\\ne le comunità linguistiche convivono in uno stesso spazio.\\n\\n73\\n00:04:41,581 --> 00:04:45,686\\nPer facilitare la ricerca di determinati materiali all\\'interno di Commons,\\n\\n74\\n00:04:45,684 --> 00:04:49,139\\noltre che nelle categorie, è possibile cercare nelle gallerie,\\n\\n75\\n00:04:49,190 --> 00:04:51,584\\nche sono delle pagine appositamente create\\n\\n76\\n00:04:51,590 --> 00:04:54,682\\nper raccogliere materiale su un soggetto specifico.\\n\\n77\\n00:04:54,964 --> 00:04:58,377\\nLe discussioni su un determinato contenuto avvengono\\n\\n78\\n00:04:58,408 --> 00:05:01,966\\nnella pagina di discussione che affianca ogni risorsa di Commons,\\n\\n79\\n00:05:02,016 --> 00:05:05,889\\nmentre le discussioni generali in una pagina specifica.\\n\\n80\\n00:05:06,024 --> 00:05:08,918\\nLe comunicazioni sono principalmente in inglese,\\n\\n81\\n00:05:08,966 --> 00:05:12,569\\nma esistono anche pagine dedicate al confronto in altre lingue.\\n\\n82\\n00:05:12,853 --> 00:05:16,496\\nPer problemi tecnici ci sono a disposizione l\\'help desk\\n\\n83\\n00:05:16,535 --> 00:05:20,048\\ne numerose pagine di aiuto, tradotte in varie lingue.\\n\\n84\\n00:05:20,222 --> 00:05:23,240\\nPer questioni specifiche o particolarmente complesse,\\n\\n85\\n00:05:23,240 --> 00:05:26,739\\nci si può rivolgere agli amministratori, che sono dei volontari\\n\\n86\\n00:05:26,783 --> 00:05:29,486\\nche hanno guadagnato nel tempo la fiducia della comunità\\n\\n87\\n00:05:29,508 --> 00:05:33,164\\nper la loro conoscenza del progetto e che sono gli unici autorizzati\\n\\n88\\n00:05:33,201 --> 00:05:35,647\\nad eseguire alcune operazioni delicate,\\n\\n89\\n00:05:35,648 --> 00:05:38,603\\ncome ad esempio la cancellazione di una risorsa.\\n\\n90\\n00:05:39,690 --> 00:05:43,318\\nChi utilizza una risorsa di Commons deve assicurarsi sempre\\n\\n91\\n00:05:43,312 --> 00:05:46,334\\ndi rispettare le leggi del proprio paese di appartenenza.\\n\\n92\\n00:05:46,476 --> 00:05:48,614\\nCommons non può garantire la liceità\\n\\n93\\n00:05:48,683 --> 00:05:51,355\\ndell’uso di una risorsa in qualsiasi contesto,\\n\\n94\\n00:05:51,362 --> 00:05:54,260\\nné la sua assoluta accuratezza e affidabilità.\\n\\n95\\n00:05:54,307 --> 00:05:58,402\\nMa è incredibile quanto materiale valido e utilizzabile è stato inserito.\\n\\n96\\n00:05:59,339 --> 00:06:03,755\\nSempre più archivi di stato, musei, biblioteche, collezioni private\\n\\n97\\n00:06:03,774 --> 00:06:07,015\\neffettuano piccole o grandi \"donazioni\" di materiali\\n\\n98\\n00:06:07,063 --> 00:06:10,003\\nche diventano così utile patrimonio di tutti.\\n\\n99\\n00:06:10,655 --> 00:06:14,854\\nDiversi fotografi professionisti pubblicano le loro opere su Commons,\\n\\n100\\n00:06:14,871 --> 00:06:18,240\\norgogliosi di vedere il loro lavoro ripreso in mezzo mondo.\\n\\n101\\n00:06:18,413 --> 00:06:22,119\\nViene dato spazio anche a illustratori che hanno donato a Commons\\n\\n102\\n00:06:22,123 --> 00:06:26,151\\nschemi o diagrammi particolarmente efficaci ed eleganti.\\n\\n103\\n00:06:26,496 --> 00:06:30,857\\nPer il riconoscimento dei lavori di qualità esistono vari meccanismi:\\n\\n104\\n00:06:30,867 --> 00:06:35,316\\nad esempio annualmente si tiene un concorso per premiare la foto dell\\'anno.\\n\\n105\\n00:06:35,618 --> 00:06:38,555\\nUn\\'altra selezione sceglie le immagini più belle\\n\\n106\\n00:06:38,559 --> 00:06:40,828\\nrealizzate dagli utenti di Commons\\n\\n107\\n00:06:40,841 --> 00:06:45,220\\ne un\\'altra ancora invece premia le immagini più efficaci nel loro genere.\\n\\n108\\n00:06:45,462 --> 00:06:49,511\\nQuotidianamente viene scelta un\\'immagine particolarmente interessante\\n\\n109\\n00:06:49,532 --> 00:06:53,676\\ne la stessa prassi è usata anche per le risorse multimediali.\\n\\n110\\n00:06:54,345 --> 00:06:56,682\\nPer sostenere finanziamente Commons\\n\\n111\\n00:06:56,766 --> 00:06:59,570\\nsi può fare una donazione alla Wikimedia Foundation,\\n\\n112\\n00:06:59,599 --> 00:07:03,338\\noppure si può scegliere di sostenere (anche tramite il 5x1000)\\n\\n113\\n00:07:03,359 --> 00:07:06,715\\nWikimedia Italia, un’associazione senza scopo di lucro\\n\\n114\\n00:07:06,743 --> 00:07:08,757\\nche si occupa di promuovere in Italia\\n\\n115\\n00:07:08,792 --> 00:07:11,826\\nCommons e gli altri progetti della Wikimedia Foundation.',\n", + " 'bytes': 10583,\n", + " 'sha1': 'atnywqy2q7u5lykeio86y3w2vi2br7n',\n", + " 'parent_id': 44708790,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44741700,\n", + " 'timestamp': '2010-10-06T01:19:01Z',\n", + " 'user': {'id': 28, 'text': 'Eloquence'},\n", + " 'page': {'id': 11694983,\n", + " 'title': 'Wikimedia Italia - WikiGuida 2 - Commons.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'language/grammar tweaks',\n", + " 'text': '1\\n00:00:11,086 --> 00:00:14,676\\nWikimedia Commons (also known simply as Commons)\\n\\n2\\n00:00:14,740 --> 00:00:17,986\\nis a project that collects images, sounds, videos\\n\\n3\\n00:00:18,010 --> 00:00:22,196\\nand other educational and explanatory multimedia resources.\\n\\n4\\n00:00:22,174 --> 00:00:26,249\\nThe files hosted in Commons can be used freely,\\n\\n5\\n00:00:26,305 --> 00:00:31,028\\nalso for commercial purposes, if the terms of use are respected.\\n\\n6\\n00:00:31,821 --> 00:00:35,200\\nA sister project of Wikipedia, Commons was born in 2004\\n\\n7\\n00:00:35,236 --> 00:00:38,888\\nas a common repository for the several projects of the Wikimedia Foundation,\\n\\n8\\n00:00:38,934 --> 00:00:42,153\\nand then evolved as an independent project with its own guidelines.\\n\\n9\\n00:00:42,320 --> 00:00:46,469\\nIn Commons you can find pictures of places and landmarks.\\n\\n10\\n00:00:46,919 --> 00:00:49,281\\nAnimals, plants, minerals.\\n\\n11\\n00:00:49,726 --> 00:00:53,281\\nPictures of people, everyday objects, artworks.\\n\\n12\\n00:00:53,470 --> 00:00:58,183\\nAnd again historical pictures and recordings, and scans of ancient books.\\n\\n13\\n00:00:58,483 --> 00:01:01,021\\nSchemes, diagrams, graphs and maps,\\n\\n14\\n00:01:01,335 --> 00:01:06,275\\nVideo and audio recordings... and much more.\\n\\n15\\n00:01:06,664 --> 00:01:10,650\\nIn some cases the files are no longer protected by copyright,\\n\\n16\\n00:01:10,774 --> 00:01:15,110\\nin other cases, the authors or the copyright holders gave the permission\\n\\n17\\n00:01:15,123 --> 00:01:19,634\\nto use their materials under some simple conditions,\\n\\n18\\n00:01:19,630 --> 00:01:24,442\\nsuch as attribution, or the release of derivative works under the same license.\\n\\n19\\n00:01:24,745 --> 00:01:28,870\\nThere are more than 7 million resources in Commons, freely downloadable\\n\\n20\\n00:01:28,908 --> 00:01:34,731\\nthat can be used for papers, web sites, posters, advertising, art works...\\n\\n21\\n00:01:35,761 --> 00:01:39,050\\nThe resources from Commons can be directly included\\n\\n22\\n00:01:39,055 --> 00:01:43,766\\nin the pages of Wikipedia and any other Wikimedia project,\\n\\n23\\n00:01:43,777 --> 00:01:47,438\\nconsistent with the specific project guidelines,\\n\\n24\\n00:01:47,476 --> 00:01:49,767\\nthe expectations of the language community the use is aimed at,\\n\\n25\\n00:01:49,777 --> 00:01:52,983\\nand the applicable law in the country of origin.\\n\\n26\\n00:01:53,723 --> 00:01:57,300\\nEvery file in Commons has its own wiki page.\\n\\n27\\n00:01:57,567 --> 00:02:00,235\\nFirst comes the title, then the multimedia resource\\n\\n28\\n00:02:00,223 --> 00:02:03,729\\nor its preview, as it happens for very big photographs.\\n\\n29\\n00:02:04,007 --> 00:02:07,821\\nThen a description follows (often multilingual)\\n\\n30\\n00:02:07,825 --> 00:02:12,856\\nand all the available information such as the source, the author, the date, the terms of use.\\n\\n31\\n00:02:13,083 --> 00:02:17,044\\nThe history of the file lists all the existing modifications.\\n\\n32\\n00:02:17,058 --> 00:02:21,408\\nIn fact, it\\'s possible to modify and improve the files uploaded by other users.\\n\\n33\\n00:02:21,795 --> 00:02:24,567\\nThere\\'s also a list of the pages in Commons\\n\\n34\\n00:02:24,568 --> 00:02:26,995\\nand in the other projects of Wikimedia Foundation\\n\\n35\\n00:02:27,004 --> 00:02:29,996\\nthat link to or embed the resource.\\n\\n36\\n00:02:30,275 --> 00:02:32,752\\nAt the bottom, there are the categories\\n\\n37\\n00:02:32,790 --> 00:02:35,502\\nunder which the resource has been cataloged.\\n\\n38\\n00:02:35,544 --> 00:02:38,209\\nThe categories are standardized in English,\\n\\n39\\n00:02:38,213 --> 00:02:41,927\\nbut an approximate knowledge of the language is enough to handle them.\\n\\n40\\n00:02:42,863 --> 00:02:45,245\\nHow can you contribute to Commons?\\n\\n41\\n00:02:45,278 --> 00:02:48,559\\nThose very fond of photography can upload their pictures,\\n\\n42\\n00:02:48,659 --> 00:02:52,055\\na good illustrator can add diagrams and animations,\\n\\n43\\n00:02:52,054 --> 00:02:54,924\\na musician can upload recordings of free music.\\n\\n44\\n00:02:55,133 --> 00:02:58,899\\nEven movies and recordings of theatre plays can be uploaded,\\n\\n45\\n00:02:58,926 --> 00:03:01,581\\nas long as they are free from copyright restrictions.\\n\\n46\\n00:03:02,452 --> 00:03:07,264\\nIn order to upload files on Commons, you have to be a registered user.\\n\\n47\\n00:03:07,277 --> 00:03:11,832\\nThe registration is for free, quick and unnecessary if...\\n\\n48\\n00:03:11,887 --> 00:03:15,581\\n...you are already a registered user of another Wikimedia Foundation project.\\n\\n49\\n00:03:15,974 --> 00:03:19,324\\nIt\\'s allowed to upload only resources having a free format.\\n\\n50\\n00:03:19,366 --> 00:03:23,448\\nAs an example, the only allowed format for video is Ogg Theora.\\n\\n51\\n00:03:23,529 --> 00:03:26,682\\nSeveral open-source format converters are available\\n\\n52\\n00:03:26,622 --> 00:03:29,877\\nthan can be freely downloaded and used.\\n\\n53\\n00:03:30,249 --> 00:03:34,390\\nEvery uploaded file must comply with: the law of the United States,\\n\\n54\\n00:03:34,385 --> 00:03:37,322\\nwhere the Wikimedia Foundation legally resides;\\n\\n55\\n00:03:37,322 --> 00:03:40,229\\nthe law of the nation where the resource comes from;\\n\\n56\\n00:03:40,283 --> 00:03:45,626\\nthe law of the nation of the user, that is held responsible for the uploaded content.\\n\\n57\\n00:03:46,104 --> 00:03:49,031\\nThen you have to check that you\\'re not infringing\\n\\n58\\n00:03:49,050 --> 00:03:52,175\\nlaws about privacy and trademarks\\n\\n59\\n00:03:52,195 --> 00:03:56,026\\nor the restrictions posed by some museums about the use of the art works.\\n\\n60\\n00:03:56,557 --> 00:04:00,399\\nIn case of material already published somewhere else under a non-free license,\\n\\n61\\n00:04:00,448 --> 00:04:04,311\\nthe authors or the copyright holders have to send an e-mail\\n\\n62\\n00:04:04,364 --> 00:04:07,380\\nin which they identify themselves and declare their consent\\n\\n63\\n00:04:07,416 --> 00:04:11,201\\nto the publication of their material under a free license.\\n\\n64\\n00:04:12,002 --> 00:04:16,003\\nLike Wikipedia, Commons is a wiki, a site open to everybody\\n\\n65\\n00:04:16,006 --> 00:04:18,714\\nand is managed by volunteer users from every corner of the world\\n\\n66\\n00:04:18,767 --> 00:04:22,079\\nthat work to identify and categorize the material,\\n\\n67\\n00:04:22,123 --> 00:04:24,549\\ncomplete or translate the descriptions,\\n\\n68\\n00:04:24,561 --> 00:04:27,484\\ncreate galleries and theme-specific pages,\\n\\n69\\n00:04:27,484 --> 00:04:31,936\\nfind and delete the resources having unsuitable sources or licences.\\n\\n70\\n00:04:32,872 --> 00:04:35,303\\nCommons is a multilingual project:\\n\\n71\\n00:04:35,364 --> 00:04:37,898\\na single site hosts all the translated versions\\n\\n72\\n00:04:37,909 --> 00:04:41,307\\nand the various linguistic communities share the same space.\\n\\n73\\n00:04:41,581 --> 00:04:45,686\\nFor an easier search of materials in Commons,\\n\\n74\\n00:04:45,684 --> 00:04:49,139\\nother than categories, you can look at galleries,\\n\\n75\\n00:04:49,190 --> 00:04:51,584\\nwhich are pages purposefully created\\n\\n76\\n00:04:51,590 --> 00:04:54,682\\nto collect materials about a given topic.\\n\\n77\\n00:04:54,964 --> 00:04:58,377\\nThe discussions about content take place\\n\\n78\\n00:04:58,408 --> 00:05:01,966\\nin the discussion page that every resource has,\\n\\n79\\n00:05:02,016 --> 00:05:05,889\\nwhile general discussions about Commons take place in a dedicated page.\\n\\n80\\n00:05:06,024 --> 00:05:08,918\\nThe communication is mainly in English,\\n\\n81\\n00:05:08,966 --> 00:05:12,569\\nbut discussion pages in other languages are available as well.\\n\\n82\\n00:05:12,853 --> 00:05:16,496\\nShould you have problems, there\\'s a help desk\\n\\n83\\n00:05:16,535 --> 00:05:20,048\\nand many help pages, available in several languages.\\n\\n84\\n00:05:20,222 --> 00:05:23,240\\nFor specific or particularly complex issues,\\n\\n85\\n00:05:23,240 --> 00:05:26,739\\nyou can ask the administrators, who are volunteers\\n\\n86\\n00:05:26,783 --> 00:05:29,486\\nthat earned in time the trust of the community\\n\\n87\\n00:05:29,508 --> 00:05:33,164\\nfor their knowledge of the project, and are the only ones allowed\\n\\n88\\n00:05:33,201 --> 00:05:35,647\\nto perform some delicate operations,\\n\\n89\\n00:05:35,648 --> 00:05:38,603\\nsuch as the deletion of a resource.\\n\\n90\\n00:05:39,690 --> 00:05:43,318\\nIf you want to use a resource from Commons, always make sure\\n\\n91\\n00:05:43,312 --> 00:05:46,334\\nto comply with the law of your own country.\\n\\n92\\n00:05:46,476 --> 00:05:48,614\\nCommons cannot guarantee the lawfulness\\n\\n93\\n00:05:48,683 --> 00:05:51,355\\nof the use of a resource in any context,\\n\\n94\\n00:05:51,362 --> 00:05:54,260\\nnor its absolute accuracy and reliability.\\n\\n95\\n00:05:54,307 --> 00:05:58,402\\nBut it\\'s incredible to see how much valid and useful material has been uploaded.\\n\\n96\\n00:05:59,339 --> 00:06:03,755\\nMore and more public archives, museums, libraries, private collections\\n\\n97\\n00:06:03,774 --> 00:06:07,015\\nmake small and big \"donations\" of materials\\n\\n98\\n00:06:07,063 --> 00:06:10,003\\nthat become a public good.\\n\\n99\\n00:06:10,655 --> 00:06:14,854\\nSeveral professional photographers publish their work on Commons,\\n\\n100\\n00:06:14,871 --> 00:06:18,240\\nproud of seeing their work being spread around the world.\\n\\n101\\n00:06:18,413 --> 00:06:22,119\\nThe same for illustrators that gave to Commons\\n\\n102\\n00:06:22,123 --> 00:06:26,151\\nparticularly effective and elegant schemes and diagrams.\\n\\n103\\n00:06:26,496 --> 00:06:30,857\\nThe community has several ways to acknowledge quality works:\\n\\n104\\n00:06:30,867 --> 00:06:35,316\\nthere\\'s a contest to award the photograph of the year.\\n\\n105\\n00:06:35,618 --> 00:06:38,555\\nAnother selection picks the best pictures\\n\\n106\\n00:06:38,559 --> 00:06:40,828\\nproduced by Commons\\' users\\n\\n107\\n00:06:40,841 --> 00:06:45,220\\nand another one awards the most effective pictures for a genre.\\n\\n108\\n00:06:45,462 --> 00:06:49,511\\nA particularly interesting picture is chosen daily\\n\\n109\\n00:06:49,532 --> 00:06:53,676\\nand the same happens for the other multimedia resources.\\n\\n110\\n00:06:54,345 --> 00:06:56,682\\nYou can support Commons in substance\\n\\n111\\n00:06:56,766 --> 00:06:59,570\\nby making a donation to the Wikimedia Foundation,\\n\\n112\\n00:06:59,599 --> 00:07:03,338\\nor you can choose to support (also with your 5x1000 [applicable in Italy])\\n\\n113\\n00:07:03,359 --> 00:07:06,715\\nWikimedia Italia, a non-profit association\\n\\n114\\n00:07:06,743 --> 00:07:08,757\\nthat promotes in Italy\\n\\n115\\n00:07:08,792 --> 00:07:11,826\\nCommons and the other projects of the Wikimedia Foundation.',\n", + " 'bytes': 10150,\n", + " 'sha1': 'c26eyerqsiu50mxtawb4qszob99gvfo',\n", + " 'parent_id': 44710970,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44710975,\n", + " 'timestamp': '2010-10-05T09:57:44Z',\n", + " 'user': {'id': 50587, 'text': 'Nemo bis'},\n", + " 'page': {'id': 11694989,\n", + " 'title': 'Wikimedia Italia - WikiGuida 2 - Commons.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:Commons h264 MVC theora.ogv.es.srt]] to [[TimedText:Wikimedia Italia - WikiGuida 2 - Commons.ogv.es.srt]]',\n", + " 'text': '1\\n00:00:11,086 --> 00:00:14,676\\nWikimedia Commons (también llamado sencillamente Commons)\\n\\n2\\n00:00:14,740 --> 00:00:17,986\\nes un archivo que colecciona imágenes, sonidos, videos\\n\\n3\\n00:00:18,010 --> 00:00:22,196\\ny otros recursos multimediales con carácter explicativo o educacional.\\n\\n4\\n00:00:22,174 --> 00:00:26,249\\nLos materiales contenidos en Commons se pueden utilizar libremente,\\n\\n5\\n00:00:26,305 --> 00:00:31,028\\ntambién para fines comerciales, con tal que se respeten los términos de uso.\\n\\n6\\n00:00:31,821 --> 00:00:35,200\\nHermano de Wikipedia, Commons nació en 2004\\n\\n7\\n00:00:35,236 --> 00:00:38,888\\ncomo depósito común para los diferentes proyectos de la Wikimedia Foundation,\\n\\n8\\n00:00:38,934 --> 00:00:42,153\\ny a continuación evolucionó en un proyecto con sus propias líneas guía.\\n\\n9\\n00:00:42,320 --> 00:00:46,469\\nEn Commons es posible encontrar fotografías de sitios y monumentos.\\n\\n10\\n00:00:46,919 --> 00:00:49,281\\nAnimales, plantas, minerales.\\n\\n11\\n00:00:49,726 --> 00:00:53,281\\nFotos de personajes, de objetos diarios y de obras de arte.\\n\\n12\\n00:00:53,470 --> 00:00:58,183\\nY también imágenes y grabaciones históricas y escansiones de libros antiguos.\\n\\n13\\n00:00:58,483 --> 00:01:01,021\\nEsquemas, diagramas, graficas y mapas.\\n\\n14\\n00:01:01,335 --> 00:01:06,275\\nVideos y grabados audio... y mucho más aún.\\n\\n15\\n00:01:06,664 --> 00:01:10,650\\nEn ciertas circumstancias los materiales ya no están cubiertos por el derecho de autor,\\n\\n16\\n00:01:10,774 --> 00:01:15,110\\nen otras los autores o los titulares de los derechos han permitido\\n\\n17\\n00:01:15,123 --> 00:01:19,634\\nutilizar sus trabajos con tal que se respeten condiciones sencillas,\\n\\n18\\n00:01:19,630 --> 00:01:24,442\\ncomo la atribución o el utilizo de la misma licencia para obras derivadas.\\n\\n19\\n00:01:24,745 --> 00:01:28,870\\nMás de siete millones de recursos en Commons, libremente descargables\\n\\n20\\n00:01:28,908 --> 00:01:34,731\\ny utilizables para búsquedas, sitios web, carteles, publicidad, obras de arte...\\n\\n21\\n00:01:35,761 --> 00:01:39,050\\nLos recursos de Commons se pueden insertar directamente\\n\\n22\\n00:01:39,055 --> 00:01:43,766\\nen las páginas de Wikipedia y en todos los demás proyectos Wikimedia,\\n\\n23\\n00:01:43,777 --> 00:01:47,438\\nclaramente respetando las líneas guía del proyecto específico,\\n\\n24\\n00:01:47,476 --> 00:01:49,767\\nde la comunidad lingüistica a la que se refieren\\n\\n25\\n00:01:49,777 --> 00:01:52,983\\ny de la legislación del país de procedencia.\\n\\n26\\n00:01:53,723 --> 00:01:57,300\\nCada archivo en Commons tiene su propia página wiki.\\n\\n27\\n00:01:57,567 --> 00:02:00,235\\nDespués del título sigue el recurso multimedial\\n\\n28\\n00:02:00,223 --> 00:02:03,729\\no una vista previa, como en el caso de fotos muy grandes.\\n\\n29\\n00:02:04,007 --> 00:02:07,821\\nA continuación se encuentra una desripción (muchas veces en varios idiomas)\\n\\n30\\n00:02:07,825 --> 00:02:12,856\\ny toda la información disponible, como fuente, autor, fecha, términos de uso.\\n\\n31\\n00:02:13,083 --> 00:02:17,044\\nEl historial del archivo lista todas las eventuales reelaboraciones.\\n\\n32\\n00:02:17,058 --> 00:02:21,408\\nEn efecto es posible corregir y mejorar los archivos subidos por otros usuarios.\\n\\n33\\n00:02:21,795 --> 00:02:24,567\\nTambién es presente la lista de las páginas de Commons\\n\\n34\\n00:02:24,568 --> 00:02:26,995\\ny de los demás proyectos de Wikimedia Foundation\\n\\n35\\n00:02:27,004 --> 00:02:29,996\\nque enlazan o contienen el recurso.\\n\\n36\\n00:02:30,275 --> 00:02:32,752\\nEn la parte inferior hay las categorías de pertenencia,\\n\\n37\\n00:02:32,790 --> 00:02:35,502\\nen las cuales el recurso ha sido listado.\\n\\n38\\n00:02:35,544 --> 00:02:38,209\\nLas categorías están estandarizadas en inglés,\\n\\n39\\n00:02:38,213 --> 00:02:41,927\\npero para utilizarlas sólo se necesita un conocimiento básico del idioma.\\n\\n40\\n00:02:42,863 --> 00:02:45,245\\nComo contribuir a Commons?\\n\\n41\\n00:02:45,278 --> 00:02:48,559\\nUn aficionado de fotografía puede subir sus imágenes,\\n\\n42\\n00:02:48,659 --> 00:02:52,055\\nun buen dibujante puede añadir diagramas y animaciones,\\n\\n43\\n00:02:52,054 --> 00:02:54,924\\nun músico la grabación de obras libres.\\n\\n44\\n00:02:55,133 --> 00:02:58,899\\nTambién se pueden subir películas y grabaciones de obras de teatro,\\n\\n45\\n00:02:58,926 --> 00:03:01,581\\ncon lo que no séan protegidas por el derecho de autor.\\n\\n46\\n00:03:02,452 --> 00:03:07,264\\nPara poder subir archivos a Commons, se precisa estar registrados.\\n\\n47\\n00:03:07,277 --> 00:03:11,832\\nEl registro, gratúito, se hace enseguida, y no es necesario\\n\\n48\\n00:03:11,887 --> 00:03:15,581\\nsi ya se está registrados en otro proyecto de Wikimedia Foundation.\\n\\n49\\n00:03:15,974 --> 00:03:19,324\\nEs posible subir recursos sólo bajo formato libre.\\n\\n50\\n00:03:19,366 --> 00:03:23,448\\nPor ejemplo, para los videos solo se admite el formato Ogg Theora.\\n\\n51\\n00:03:23,529 --> 00:03:26,682\\nDe todas formas hay muchos coventidores open source\\n\\n52\\n00:03:26,622 --> 00:03:29,877\\nque se pueden bajar y utilizar gratúitamente.\\n\\n53\\n00:03:30,249 --> 00:03:34,390\\nCada archivo subido debe respetar: la ley de EE. UU.,\\n\\n54\\n00:03:34,385 --> 00:03:37,322\\ndonde reside legalmente la Wikimedia Foundation;\\n\\n55\\n00:03:37,322 --> 00:03:40,229\\nlas leyes de las naciones de donde procede el recurso;\\n\\n56\\n00:03:40,283 --> 00:03:45,626\\nlas leyes del país del usuario, que sigue siendo responsable de los contenidos subidos.\\n\\n57\\n00:03:46,104 --> 00:03:49,031\\nA continuación se debe comprobar que no se estea infringiendo\\n\\n58\\n00:03:49,050 --> 00:03:52,175\\nla ley de privacidad o de marcas registradas\\n\\n59\\n00:03:52,195 --> 00:03:56,026\\no las limitaciones sobre el utilizo de las obras de arte de unos museos.\\n\\n60\\n00:03:56,557 --> 00:04:00,399\\nEn el caso de obras ya publicadas en otro sitio sin licencia libre,\\n\\n61\\n00:04:00,448 --> 00:04:04,311\\nel autor o los detentores de los derechos tienen que enviar un correo\\n\\n62\\n00:04:04,364 --> 00:04:07,380\\ndonde se identifican y declaran consentir\\n\\n63\\n00:04:07,416 --> 00:04:11,201\\ncon la publicación del recurso bajo licencia libre.\\n\\n64\\n00:04:12,002 --> 00:04:16,003\\nAl igual que Wikipedia, Commons es un wiki, un sitio abierto a todos\\n\\n65\\n00:04:16,006 --> 00:04:18,714\\ny está gestionado por voluntarios desde cada rincón del mundo\\n\\n66\\n00:04:18,767 --> 00:04:22,079\\nque se compromiten a identificar y categorizar el material,\\n\\n67\\n00:04:22,123 --> 00:04:24,549\\ncompletar o traducir la descripción,\\n\\n68\\n00:04:24,561 --> 00:04:27,484\\ncrear las galerías y las páginas específicas por tema,\\n\\n69\\n00:04:27,484 --> 00:04:31,936\\nidentificar y borrar los recursos con licencia o fuente incompleta.\\n\\n70\\n00:04:32,872 --> 00:04:35,303\\nEl proyecto Commons es multilingüe:\\n\\n71\\n00:04:35,364 --> 00:04:37,898\\nun solo sitio contiene todas las traducciones\\n\\n72\\n00:04:37,909 --> 00:04:41,307\\ny las comunidades lingüisticas conviven en el mismo espacio.\\n\\n73\\n00:04:41,581 --> 00:04:45,686\\nPara facilitar la búsqueda de ciertos materiales dentro de Commons,\\n\\n74\\n00:04:45,684 --> 00:04:49,139\\nademás que en las categorías, es posible buscar en las galerías,\\n\\n75\\n00:04:49,190 --> 00:04:51,584\\nque son páginas creadas específicamente\\n\\n76\\n00:04:51,590 --> 00:04:54,682\\npara recolectar material sobre un tema específico.\\n\\n77\\n00:04:54,964 --> 00:04:58,377\\nLas discusiones sobre un determinado contenido se hallan\\n\\n78\\n00:04:58,408 --> 00:05:01,966\\nen la página de discusión que flanquea cada recurso de Commons,\\n\\n79\\n00:05:02,016 --> 00:05:05,889\\nmientras las discusiones generales en una página específica.\\n\\n80\\n00:05:06,024 --> 00:05:08,918\\nLa comunicación es sobre todo en inglés,\\n\\n81\\n00:05:08,966 --> 00:05:12,569\\npero también existen páginas dedicadas a la confrontación en otros idiomas.\\n\\n82\\n00:05:12,853 --> 00:05:16,496\\nPara los problemas técnicos está disponible el help desk\\n\\n83\\n00:05:16,535 --> 00:05:20,048\\ny una moltitud de páginas de ayuda, traducidas a varios idiomas.\\n\\n84\\n00:05:20,222 --> 00:05:23,240\\nPara asuntos específicos o muy complejos,\\n\\n85\\n00:05:23,240 --> 00:05:26,739\\nse puede preguntar a los administradores, que son unos voluntarios\\n\\n86\\n00:05:26,783 --> 00:05:29,486\\nque en el tiempo se han ganado la confianza de la comunidad\\n\\n87\\n00:05:29,508 --> 00:05:33,164\\npor su conocimiento del proyecto y que son los únicos autorizados\\n\\n88\\n00:05:33,201 --> 00:05:35,647\\na hacer unas operaciones sensibles,\\n\\n89\\n00:05:35,648 --> 00:05:38,603\\ncomo por ejemplo borrar un recurso.\\n\\n90\\n00:05:39,690 --> 00:05:43,318\\nQuién utiliza un recurso de Commons siempre tiene que asegurarse\\n\\n91\\n00:05:43,312 --> 00:05:46,334\\nde respetar las leyes de su propio país de pertenencia.\\n\\n92\\n00:05:46,476 --> 00:05:48,614\\nCommons no puede garantizar la legalidad\\n\\n93\\n00:05:48,683 --> 00:05:51,355\\ndel utilizo de un recurso en un contexto cualquiera,\\n\\n94\\n00:05:51,362 --> 00:05:54,260\\ntampoco su absoluta exactitud y fiabilidad.\\n\\n95\\n00:05:54,307 --> 00:05:58,402\\nPero es increíble cuanto material bueno y utilizable se ha subido.\\n\\n96\\n00:05:59,339 --> 00:06:03,755\\nMás y más archivos de estado, museos, bibliotecas, colecciones privadas\\n\\n97\\n00:06:03,774 --> 00:06:07,015\\nhacen pequeños o grandes \"donativos\" de materiales\\n\\n98\\n00:06:07,063 --> 00:06:10,003\\nque así se convierten en patrimonio de todos.\\n\\n99\\n00:06:10,655 --> 00:06:14,854\\nVarios fotógrafos profesionales publican sus trabajos en Commons,\\n\\n100\\n00:06:14,871 --> 00:06:18,240\\norgullosos de ver su trabajo reutilizado en todo el mundo.\\n\\n101\\n00:06:18,413 --> 00:06:22,119\\nTambién se ofrece espacio a ilustradores que han donado a Commons\\n\\n102\\n00:06:22,123 --> 00:06:26,151\\nesquemas o diagramas particularmente efectivos y elegantes.\\n\\n103\\n00:06:26,496 --> 00:06:30,857\\nPara la apreciación de los trabajos de calidad existen varios mecanismos:\\n\\n104\\n00:06:30,867 --> 00:06:35,316\\npor ejemplo anualmente hay un concurso para premiar la foto del año.\\n\\n105\\n00:06:35,618 --> 00:06:38,555\\nOtra selección elige las imágenes más bellas\\n\\n106\\n00:06:38,559 --> 00:06:40,828\\nrealizadas por los usuarios de Commons\\n\\n107\\n00:06:40,841 --> 00:06:45,220\\ny otra más en cambio premia las imágenes más efectívas en su género.\\n\\n108\\n00:06:45,462 --> 00:06:49,511\\nDiariamente se elige una imágen particularmente interesante\\n\\n109\\n00:06:49,532 --> 00:06:53,676\\ny la misma práctica se utiliza también para los recursos multimediales.\\n\\n110\\n00:06:54,345 --> 00:06:56,682\\nPara apoyar economicamente Commons\\n\\n111\\n00:06:56,766 --> 00:06:59,570\\nse puede hacer un donativo a Wikimedia Foundation,\\n\\n112\\n00:06:59,599 --> 00:07:03,338\\no se puede elegir de apoyar (también a través del 5x1000)\\n\\n113\\n00:07:03,359 --> 00:07:06,715\\nWikimedia Italia, una asociación sin ánimo de lucro\\n\\n114\\n00:07:06,743 --> 00:07:08,757\\nque se ocupa de promover en Italia\\n\\n115\\n00:07:08,792 --> 00:07:11,826\\nCommons y los demás proyectos de Wikimedia Foundation.',\n", + " 'bytes': 10704,\n", + " 'sha1': '5gcqkorwnzp5mvwc6qyl0sh6d8qhvyv',\n", + " 'parent_id': 44708841,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601721497,\n", + " 'timestamp': '2021-10-24T14:50:57Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11695802,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.ms.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and partyally the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,611\\nNama pengguna saya ialah Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nNama pengguna saya ialah Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein Ini ialah\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\nulat buku kecil dalam Bahasa German\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nIni ialah Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,243\\nNotafish\\n\\n13\\n00:00:19,243 --> 00:00:21,256\\nkamu tahu: «not a fish»\\n(bukan seekor ikan)\\n\\n14\\n00:00:21,256 --> 00:00:22,343\\nTheo10011\\n\\n15\\n00:00:22,343 --> 00:00:23,785\\nNama pengguna saya ialah Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nNama pengguna saya ialah Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, kata terbalik\\nnama asli saya Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nNama pengguna saya ialah\\nSteven Walling, ia juga nama asli saya\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\nNama pengguna saya ialah Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nNama pengguna saya ialah Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,557 --> 00:00:47,570\\nNama pengguna saya ialah\\nJdforrester dan saya sunting Wikipedia',\n", + " 'bytes': 1571,\n", + " 'sha1': '5mm2enxo1xx93vplnbio8n775o7t5uj',\n", + " 'parent_id': 44711059,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44715240,\n", + " 'timestamp': '2010-10-05T12:29:00Z',\n", + " 'user': {'id': 639212, 'text': 'Olli'},\n", + " 'page': {'id': 11697694,\n", + " 'title': 'Great Feeling.ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,905 --> 00:00:03,204 Heh, ei, ei minulla ole supervoimia. 2 00:00:03,204 --> 00:00:05,990 Ei. Ei ollenkaan. 3 00:00:05,990 --> 00:00:08,034 Voit varma...'\",\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nHeh, ei, ei minulla ole supervoimia.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nEi. Ei ollenkaan.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nVoit varmasti tehdä sen.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nPainoin nappia,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nja tallensin tekstin,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWooooo!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nSe oli... jännittävää.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nMuutit juuri Wikipediaa,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nlisäsit oman muokkauksesi Wikipediaan.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nLuin artikkelin \"Guardian\"-lehdestä, se käsitteli\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\ntätä verkkotietosanakirjaa,\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\njota kuka tahansa voi muokata\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nja sanoin, \"Vau!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Ehkä minäkin voisin muokata!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nTein siis ensimmäisen muokkaukseni\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nja olen tainnut tulla riippuvaiseksi siitä.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nMinulle ei makseta siitä mitään,\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nteen sitä niin kuin tekisin mitä\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\ntahansa muutakin asiaa vapaa-ajallani, sitä se on.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nVoit aloittaa sen tekemisen ajatuksen avulla,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nkoska uskot siihen,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nkoska päädyt ystävien luokse,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nkoska päädyt rakastajien luokse,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nkoska päädyt erinomaisiin keskusteluihin,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nkoska päädyt uusiin ajatuksiin,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\npäädyt uusiin kirjoihin, joita kirjoitat...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nEt kirjoita artikkelia yksin.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nKirjoitat siitä vähän,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nja joku toinen jatkaa:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hei, tiedän lisää!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nja yhdessä voitte luoda\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nartikkeleita, jotka ovat sivujen pituisia,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\njota et voisi tehdä itse.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nSitten olet onnistunut.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\n\"Ok, hyvähän tästä tuli.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nja tämä on loistavaa.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nTämä on mahtavaa,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nkoska muokkaaminen on niin mahtava tunne.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nJoka ikinen kerta, kun teet sen.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nMinun täytyy sanoa, että\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nkun luin Wikipediasta ensimmäistä kertaa,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\npäätin\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Tähän luultavasti sopisin mukaan\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nJa niin kävi.',\n", + " 'bytes': 2832,\n", + " 'sha1': '84yfgy79ibion4kj65q2d2cbbb8urrr',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44715579,\n", + " 'timestamp': '2010-10-05T12:37:47Z',\n", + " 'user': {'id': 757330, 'text': 'Kuailong'},\n", + " 'page': {'id': 11697834,\n", + " 'title': 'Nice People MEDIUM.ogv.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 如果你拥有知识,为什么只将它留给自己独享?\\n\\n2 00:00:04,249 --> 00:00:07,174 在我看来,你应该分享它!\\n\\n3 00:00:07,174 --> 00:00:10,031 我喜欢这个网站,在于其宗旨中\\n\\n4 00:00:10,031 --> 00:00:15,325 并没有说“网站”,没有说“维基”,也没有说“因特网”,\\n\\n5 00:00:15,325 --> 00:00:17,113 而只是说“自由的知识\\n\\n6 00:00:17,113 --> 00:00:19,411 留给全人类,用他们自己的语言撰写”。\\n\\n7 00:00:19,411 --> 00:00:21,548 一个开放的社群,\\n\\n8 00:00:21,548 --> 00:00:23,428 是由那些\\n\\n9 00:00:23,428 --> 00:00:25,936 敢于接受邀请者组成的。\\n\\n10 00:00:25,936 --> 00:00:27,956 现在,这就是一份邀请。\\n\\n11 00:00:27,956 --> 00:00:29,535 当然你不必接受它,\\n\\n12 00:00:29,535 --> 00:00:31,439 但是有这样一份邀请\\n\\n13 00:00:31,439 --> 00:00:32,879 它以一个“编辑”按钮形式存在,召唤着你:\\n\\n14 00:00:32,879 --> 00:00:37,709 “快来,参与进来,你所知道的同我们所知道的同等重要”。\\n\\n15 00:00:37,709 --> 00:00:40,472 你知道你在教育他人,\\n\\n16 00:00:40,472 --> 00:00:43,026 而且不仅仅是几个人,而是全世界。\\n\\n17 00:00:43,026 --> 00:00:47,113 所以我很高兴能够为这样一个百科全书做贡献,\\n\\n18 00:00:47,113 --> 00:00:51,455 它对于全世界的任何人都是触手可及的。\\n\\n19 00:00:51,455 --> 00:00:55,286 就是在帮助他人的时候让自己也开心,仅此而已。.\\n\\n20 00:00:55,286 --> 00:00:57,283 因为我希望得到快乐,因此我选择帮助他人。\\n\\n21 00:00:57,283 --> 00:01:00,650 你在和众多人一同合作,\\n\\n22 00:01:00,650 --> 00:01:04,156 他们有许多不同的文化,这是在是太令人惊奇了。\\n\\n23 00:01:04,156 --> 00:01:06,501 对于此,就我而言,最重要的是,\\n\\n24 00:01:06,501 --> 00:01:08,754 他们都是十分可爱的人。\\n\\n25 00:01:08,754 --> 00:01:10,890 你知道,我们有这些十分可爱的人,\\n\\n26 00:01:10,890 --> 00:01:14,466 他们上线,开始打字,\\n\\n27 00:01:14,466 --> 00:01:16,231 不是在互相大嚷大叫,\\n\\n28 00:01:16,231 --> 00:01:18,437 或者仅仅是在交谈,\\n\\n29 00:01:18,437 --> 00:01:20,875 抑或是阅读花边新闻或其他东西,\\n\\n30 00:01:20,875 --> 00:01:22,198 他们是在努力创建一个\\n\\n31 00:01:22,198 --> 00:01:23,707 对其他人益处良多的东西。\\n\\n32 00:01:23,707 --> 00:01:26,029 我认为他们是十分可爱,十分和善的人。',\n", + " 'bytes': 2511,\n", + " 'sha1': 'anhjg7wc75ndfdjlppi32itycrcrq27',\n", + " 'parent_id': 44715491,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44715639,\n", + " 'timestamp': '2010-10-05T12:39:29Z',\n", + " 'user': {'id': 757330, 'text': 'Kuailong'},\n", + " 'page': {'id': 11697867,\n", + " 'title': 'Nice People MEDIUM.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 如果你拥有知识,为什么只将它留给自己独享?\\n\\n2 00:00:04,249 --> 00:00:07,174 在我看来,你应该分享它!\\n\\n3 00:00:07,174 --> 00:00:10,031 我喜欢这个网站的宗旨,\\n\\n4 00:00:10,031 --> 00:00:15,325 其中并没有说“网站”,没有说“维基”,也没有说“因特网”,\\n\\n5 00:00:15,325 --> 00:00:17,113 而只是说“自由的知识\\n\\n6 00:00:17,113 --> 00:00:19,411 留给全人类,用他们自己的语言撰写而成”。\\n\\n7 00:00:19,411 --> 00:00:21,548 一个开放的社群,\\n\\n8 00:00:21,548 --> 00:00:23,428 是由那些\\n\\n9 00:00:23,428 --> 00:00:25,936 敢于接受邀请者组成的。\\n\\n10 00:00:25,936 --> 00:00:27,956 现在,这就是一份邀请。\\n\\n11 00:00:27,956 --> 00:00:29,535 当然你不必接受它,\\n\\n12 00:00:29,535 --> 00:00:31,439 但是有这样一份邀请\\n\\n13 00:00:31,439 --> 00:00:32,879 它以一个“编辑”按钮形式存在,召唤着你:\\n\\n14 00:00:32,879 --> 00:00:37,709 “快来,参与进来,你所知道的同我们所知道的同等重要”。\\n\\n15 00:00:37,709 --> 00:00:40,472 你知道你在教育他人,\\n\\n16 00:00:40,472 --> 00:00:43,026 而且不仅仅是几个人,而是全世界。\\n\\n17 00:00:43,026 --> 00:00:47,113 所以我很高兴能够为这样一个百科全书做贡献,\\n\\n18 00:00:47,113 --> 00:00:51,455 它对于全世界的任何人都是触手可及的。\\n\\n19 00:00:51,455 --> 00:00:55,286 就是在帮助他人的时候让自己也开心,仅此而已。.\\n\\n20 00:00:55,286 --> 00:00:57,283 因为我希望得到快乐,因此我选择帮助他人。\\n\\n21 00:00:57,283 --> 00:01:00,650 你在和众多人一同合作,\\n\\n22 00:01:00,650 --> 00:01:04,156 他们有许多不同的文化,这是在是太令人惊奇了。\\n\\n23 00:01:04,156 --> 00:01:06,501 对于此,就我而言,最重要的是,\\n\\n24 00:01:06,501 --> 00:01:08,754 他们都是十分可爱的人。\\n\\n25 00:01:08,754 --> 00:01:10,890 你知道,我们有这些十分可爱的人,\\n\\n26 00:01:10,890 --> 00:01:14,466 他们上线,开始打字,\\n\\n27 00:01:14,466 --> 00:01:16,231 不是在互相大嚷大叫,\\n\\n28 00:01:16,231 --> 00:01:18,437 或者仅仅是在交谈,\\n\\n29 00:01:18,437 --> 00:01:20,875 抑或是阅读花边新闻或其他东西,\\n\\n30 00:01:20,875 --> 00:01:22,198 他们是在努力创建一个\\n\\n31 00:01:22,198 --> 00:01:23,707 对其他人益处良多的东西。\\n\\n32 00:01:23,707 --> 00:01:26,029 我认为他们是十分可爱,十分和善的人。',\n", + " 'bytes': 2514,\n", + " 'sha1': 'qrwttrvepveqpkfg43t9erpe4vl0765',\n", + " 'parent_id': 44715549,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44715731,\n", + " 'timestamp': '2010-10-05T12:42:25Z',\n", + " 'user': {'id': 757330, 'text': 'Kuailong'},\n", + " 'page': {'id': 11697965,\n", + " 'title': 'Nice People MEDIUM.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,300 --> 00:00:04,249 如果你擁有知識,為什麼只將它留給自己獨享? 2 00:00:04,249 --> 00:00:07,174 在我看來,你應該分享它...'\",\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 如果你擁有知識,為什麼只將它留給自己獨享?\\n\\n2 00:00:04,249 --> 00:00:07,174 在我看來,你應該分享它!\\n\\n3 00:00:07,174 --> 00:00:10,031 我喜歡這個網站的宗旨,\\n\\n4 00:00:10,031 --> 00:00:15,325 其中並沒有說「網站」,沒有說「維基」,也沒有說「網際網路」,\\n\\n5 00:00:15,325 --> 00:00:17,113 而只是說「自由的知識\\n\\n6 00:00:17,113 --> 00:00:19,411 留給全人類,用他們自己的語言撰寫而成」。\\n\\n7 00:00:19,411 --> 00:00:21,548 一個開放的社群,\\n\\n8 00:00:21,548 --> 00:00:23,428 是由那些\\n\\n9 00:00:23,428 --> 00:00:25,936 敢於接受邀請者組成的。\\n\\n10 00:00:25,936 --> 00:00:27,956 現在,這就是一份邀請。\\n\\n11 00:00:27,956 --> 00:00:29,535 當然你不必接受它,\\n\\n12 00:00:29,535 --> 00:00:31,439 但是有這樣一份邀請\\n\\n13 00:00:31,439 --> 00:00:32,879 它以一個「編輯」按鈕形式存在,召喚著你:\\n\\n14 00:00:32,879 --> 00:00:37,709 「快來,參與進來,你所知道的同我們所知道的同等重要」。\\n\\n15 00:00:37,709 --> 00:00:40,472 你知道你在教育他人,\\n\\n16 00:00:40,472 --> 00:00:43,026 而且不僅僅是幾個人,而是全世界。\\n\\n17 00:00:43,026 --> 00:00:47,113 所以我很高興能夠為這樣一個百科全書做貢獻,\\n\\n18 00:00:47,113 --> 00:00:51,455 它對於全世界的任何人都是觸手可及的。\\n\\n19 00:00:51,455 --> 00:00:55,286 就是在幫助他人的時候讓自己也開心,僅此而已。\\n\\n20 00:00:55,286 --> 00:00:57,283 因為我希望得到快樂,因此我選擇幫助他人。\\n\\n21 00:00:57,283 --> 00:01:00,650 你在和眾多人一同合作,\\n\\n22 00:01:00,650 --> 00:01:04,156 他們有許多不同的文化,這是在是太令人驚奇了。\\n\\n23 00:01:04,156 --> 00:01:06,501 對於此,就我而言,最重要的是,\\n\\n24 00:01:06,501 --> 00:01:08,754 他們都是十分可愛的人。\\n\\n25 00:01:08,754 --> 00:01:10,890 你知道,我們有這些十分可愛的人,\\n\\n26 00:01:10,890 --> 00:01:14,466 他們上線,開始打字,\\n\\n27 00:01:14,466 --> 00:01:16,231 不是在互相大嚷大叫,\\n\\n28 00:01:16,231 --> 00:01:18,437 或者僅僅是在交談,\\n\\n29 00:01:18,437 --> 00:01:20,875 抑或是閱讀花邊新聞或其他東西,\\n\\n30 00:01:20,875 --> 00:01:22,198 他們是在努力創建一個\\n\\n31 00:01:22,198 --> 00:01:23,707 對其他人益處良多的東西。\\n\\n32 00:01:23,707 --> 00:01:26,029 我認為他們是十分可愛,十分和善的人。',\n", + " 'bytes': 2516,\n", + " 'sha1': '782wkpxua7vw55ehbxt0qbu3llh5t10',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44716365,\n", + " 'timestamp': '2010-10-05T13:03:03Z',\n", + " 'user': {'id': 652302, 'text': 'Timk70'},\n", + " 'page': {'id': 11698245,\n", + " 'title': 'Edit Button.ogv.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'vertaling',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nEr is een bewerkknop.\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nKlik daarop,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nga naar de tekst, bewerk\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nen klik op \"opslaan\". Zo simpel is het.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nHet leuke aan Wikipedia,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nis dat je dingen kunt veranderen.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nJe hebt andermans toestemming niet nodig\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nen het is niet moeilijk.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nIn het begin lijkt het een beetje ontmoedigend,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nmaar het is echt niet moeilijk.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nMensen hebben het niet in de gaten, alsof ze het niet zien.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nMensen lezen artikelen, maar zien de bewerkknop niet.\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nKlik op die knop en kijk wat er gebeurd.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Bewerken.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nAls je er klaar voor bent,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nen je begint met schrijven,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nkunnen er andere dingen gebeuren,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nen dat is erg mooi.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nHet kan een begin zijn van iets moois.\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nEen uitnodiging voor meer leven, op een of andere manier.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nWanneer we een artikel beginnen, vinden we het niet goed,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nomdat je het bijvoorbeeld kort vindt.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nAls je een paar... uur wacht,\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nzul je zien dat het een goed artikel is geworden.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nDe bewerkknop: klik erop, verander iets,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nen sla de pagina op. Je hebt de hele wereld veranderd.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Opslaan\".',\n", + " 'bytes': 1868,\n", + " 'sha1': '8859ellrbshgu3osibvqrqrakbz5bde',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44716406,\n", + " 'timestamp': '2010-10-05T13:04:07Z',\n", + " 'user': {'id': 757330, 'text': 'Kuailong'},\n", + " 'page': {'id': 11698259,\n", + " 'title': 'Great Feeling.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,905 --> 00:00:03,204 呃,不,我没有超能力。 2 00:00:03,204 --> 00:00:05,990 一点都没有。没有。 3 00:00:05,990 --> 00:00:08,034 你...'\",\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\n呃,不,我没有超能力。\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\n一点都没有。没有。\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\n你完全可以做到。\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\n我点了一下按钮,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\n保存了文字,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\n喔!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\n这真的是……太令人兴奋了\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\n你刚刚修改了维基百科,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\n你可以为维基百科作出自己的贡献。\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\n我在《卫报》上阅读了一篇文章,\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\n介绍这个在线百科全书,\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\n人人均可编辑,\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\n我当时就说,“喔!”\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n“或许我也可以做点贡献”\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\n我做了第一次编辑之后\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\n就觉得自己不可自拔。\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\n我并没有得到任何报酬,\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\n你知道,我这样做只是\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\n为了在闲暇时光有些事做,仅此而已。\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\n你可能是因为一个信念开始编辑百科,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\n因为你笃信它,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\n但是你最终会得以熟识朋友,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\n最终会得以结交恋人,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\n最终会开始参与美妙的讨论,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\n最终会得到新的想法,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\n你最终会开始撰写新书……\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\n你并不是一个人在撰写条目,\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\n你先写了一部分,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\n其他人会说:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n“嘿,我知道更多!”\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\n你们一道,可以创造出\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\n数页长的条目,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\n仅以你一人之力是无法做到的。\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\n接着你获得了成功。\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\n你总会看到,“好吧,我所做的十分成功。”\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\n这实在太美妙了。\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\n这很棒,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\n因为,编辑条目是很棒的感受。\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\n每次你编辑时都能感觉到。\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\n我必须承认,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\n当我读到有关维基百科的文章时,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\n我下定决心,\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n“这或许是适合我的地方”\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\n而事实也正是这样。',\n", + " 'bytes': 2912,\n", + " 'sha1': 'qawfh3bmn64olajees7x58xjnltifdg',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44716662,\n", + " 'timestamp': '2010-10-05T13:10:03Z',\n", + " 'user': {'id': 757330, 'text': 'Kuailong'},\n", + " 'page': {'id': 11698298,\n", + " 'title': 'Great Feeling.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,905 --> 00:00:03,204 呃,不,我沒有超能力。 2 00:00:03,204 --> 00:00:05,990 一點都沒有。沒有。 3 00:00:05,990 --> 00:00:08,034 你...'\",\n", + " 'text': '1 00:00:00,905 --> 00:00:03,204 呃,不,我沒有超能力。\\n\\n2 00:00:03,204 --> 00:00:05,990 一點都沒有。沒有。\\n\\n3 00:00:05,990 --> 00:00:08,034 你完全可以做到。\\n\\n4 00:00:08,359 --> 00:00:10,216 我點了一下按鈕,\\n\\n5 00:00:10,216 --> 00:00:12,654 保存了文字,\\n\\n6 00:00:12,654 --> 00:00:14,048 喔!\\n\\n7 00:00:14,048 --> 00:00:16,509 這真的是……太令人興奮了\\n\\n8 00:00:16,509 --> 00:00:18,041 你剛剛修改了維基百科,\\n\\n9 00:00:18,041 --> 00:00:20,990 你可以為維基百科作出自己的貢獻。\\n\\n10 00:00:20,990 --> 00:00:23,150 我在《衛報》上閱讀了一篇文章,\\n\\n11 00:00:23,150 --> 00:00:25,704 介紹這個在線百科全書,\\n\\n12 00:00:25,704 --> 00:00:27,538 人人均可編輯,\\n\\n13 00:00:27,538 --> 00:00:28,955 我當時就說,「喔!」\\n\\n14 00:00:28,955 --> 00:00:31,277 「或許我也可以做點貢獻」\\n\\n15 00:00:31,277 --> 00:00:32,693 我做了第一次編輯之後\\n\\n16 00:00:32,693 --> 00:00:34,388 就覺得自己不可自拔。\\n\\n17 00:00:34,388 --> 00:00:36,153 我並沒有得到任何報酬,\\n\\n18 00:00:36,153 --> 00:00:37,593 你知道,我這樣做只是\\n\\n19 00:00:37,593 --> 00:00:39,543 為了在閒暇時光有些事做,僅此而已。\\n\\n20 00:00:39,543 --> 00:00:42,004 你可能是因為一個信念開始編輯百科,\\n\\n21 00:00:42,004 --> 00:00:43,235 因為你篤信它,\\n\\n22 00:00:43,235 --> 00:00:45,069 但是你最終會得以熟識朋友,\\n\\n23 00:00:45,069 --> 00:00:46,834 最終會得以結交戀人,\\n\\n24 00:00:46,834 --> 00:00:49,528 最終會開始參與美妙的討論,\\n\\n25 00:00:49,528 --> 00:00:50,642 最終會得到新的想法,\\n\\n26 00:00:50,642 --> 00:00:52,616 你最終會開始撰寫新書……\\n\\n27 00:00:52,616 --> 00:00:54,404 你並不是一個人在撰寫條目,\\n\\n28 00:00:54,404 --> 00:00:55,843 你先寫了一部分,\\n\\n29 00:00:55,843 --> 00:00:56,772 其他人會說:\\n\\n30 00:00:56,772 --> 00:00:57,817 「嘿,我知道更多!」\\n\\n31 00:00:57,817 --> 00:00:58,955 你們一道,可以創造出\\n\\n32 00:00:58,955 --> 00:01:01,068 數頁長的條目,\\n\\n33 00:01:01,068 --> 00:01:02,322 僅以你一人之力是無法做到的。\\n\\n34 00:01:02,322 --> 00:01:03,808 接著你獲得了成功。\\n\\n35 00:01:03,808 --> 00:01:06,618 你總會看到,「好吧,我所做的十分成功。」\\n\\n36 00:01:06,618 --> 00:01:08,220 這實在太美妙了。\\n\\n37 00:01:08,220 --> 00:01:08,893 這很棒,\\n\\n38 00:01:08,893 --> 00:01:11,447 因為,編輯條目是很棒的感受。\\n\\n39 00:01:11,447 --> 00:01:12,655 每次你編輯時都能感覺到。\\n\\n40 00:01:12,655 --> 00:01:13,676 我必須承認,\\n\\n41 00:01:13,676 --> 00:01:14,954 當我讀到有關維基百科的文章時,\\n\\n42 00:01:14,954 --> 00:01:15,557 我下定決心,\\n\\n43 00:01:15,557 --> 00:01:17,926 「這或許是適合我的地方」\\n\\n44 00:01:17,926 --> 00:01:19,365 而事實也正是這樣。',\n", + " 'bytes': 2912,\n", + " 'sha1': 'p60wzvelxwq5kfrjbi0c5gnjzpim6c0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44717015,\n", + " 'timestamp': '2010-10-05T13:26:53Z',\n", + " 'user': {'id': 757330, 'text': 'Kuailong'},\n", + " 'page': {'id': 11698394,\n", + " 'title': 'Edit Button.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,114 --> 00:00:02,414 页面上有一个“编辑”按钮 2 00:00:02,530 --> 00:00:03,830 只需点击它, 3 00:00:03,830 --> 00:00:06,664 找到文...'\",\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\n页面上有一个“编辑”按钮\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\n只需点击它,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\n找到文本部分,编辑它\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\n接着点“保存”。就是这么简单。\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\n维基百科最酷的一点在于,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\n你可以做修改。\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\n你不需要任何人的许可\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\n并且这一点都不困难。\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\n最开始可能有点让人望而却步,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\n但它真的并不困难。\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\n人们并没有意识到,就仿佛这是某种选择性失明。\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\n人们阅读条目,但是他们都看不到“编辑”按钮。\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\n点击一下那个按钮,看看会发生什么。\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n“编辑。”\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\n当你对某一事情放开自我,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\n你开始行动,进行编辑,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\n其他各种事情都可能发生,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\n那是在是太美妙了。\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\n比如,这可能只是一个起点,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\n某种程度上,是经历更丰富的生活的邀请。\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\n当你开始撰写条目时,我们都不会喜欢它,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\n因为你会发现它十分丑陋。\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\n但是请等待……数个小时\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\n看看它将如何转变为一个精美的条目。\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\n“编辑”按钮:点击它,做些改变,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\n保存页面,你可以影响全世界。\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n“保存”。',\n", + " 'bytes': 1957,\n", + " 'sha1': '616csehca0y6eqmkqdu1pgiur4cz3p0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 172916918,\n", + " 'timestamp': '2015-09-22T15:53:34Z',\n", + " 'user': {'id': 996385, 'text': 'KOKUYO'},\n", + " 'page': {'id': 11698402,\n", + " 'title': 'Edit Button.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:01,114 --> 00:00:02,414 頁面上有一個「編輯」按鈕\\n\\n2 00:00:02,530 --> 00:00:03,830 只需點擊它\\n\\n3 00:00:03,830 --> 00:00:06,664 找到文本部分,編輯它\\n\\n4 00:00:06,664 --> 00:00:09,110 接著點「保存」。就是這麼簡單\\n\\n5 00:00:09,752 --> 00:00:10,913 維基百科最酷的一點在於\\n\\n6 00:00:11,163 --> 00:00:12,236 你可以做修改\\n\\n7 00:00:12,236 --> 00:00:14,066 你不需要任何人的許可\\n\\n8 00:00:14,066 --> 00:00:15,325 並且這一點都不困難\\n\\n9 00:00:15,325 --> 00:00:17,809 最開始可能有點讓人望而卻步\\n\\n10 00:00:17,809 --> 00:00:19,829 但它真的並不困難\\n\\n11 00:00:19,829 --> 00:00:23,777 人們並沒有意識到,就彷彿這是某種選擇性失明\\n\\n12 00:00:23,777 --> 00:00:27,585 人們閱讀條目,但是他們都看不到「編輯」按鈕\\n\\n13 00:00:27,585 --> 00:00:29,721 點擊一下那個按鈕,看看會發生什麼\\n\\n14 00:00:29,721 --> 00:00:31,625 「編輯。」\\n\\n15 00:00:31,625 --> 00:00:34,040 當你對某一事情放開自我\\n\\n16 00:00:34,040 --> 00:00:35,433 你開始行動,進行編輯\\n\\n17 00:00:35,433 --> 00:00:38,289 其他各種事情都可能發生\\n\\n18 00:00:38,289 --> 00:00:40,124 那是在是太美妙了\\n\\n19 00:00:40,124 --> 00:00:41,679 比如,這可能只是一個起點\\n\\n20 00:00:41,679 --> 00:00:45,139 某種程度上,是經歷更豐富的生活的邀請\\n\\n21 00:00:45,139 --> 00:00:48,018 當你開始撰寫條目時,我們都不會喜歡它\\n\\n22 00:00:48,018 --> 00:00:49,597 因為你會發現它十分醜陋\\n\\n23 00:00:49,597 --> 00:00:53,614 但是請等待……數個小時\\n\\n24 00:00:53,614 --> 00:00:56,842 看看它將如何轉變為一個精美的條目\\n\\n25 00:00:56,842 --> 00:00:59,396 「編輯」按鈕:點擊它,做些改變\\n\\n26 00:00:59,396 --> 00:01:02,043 保存頁面,你可以影響全世界\\n\\n27 00:01:02,043 --> 00:01:04,203 「保存」',\n", + " 'bytes': 1891,\n", + " 'sha1': 'qo04sebb6v68baejtutyur2y5rherwr',\n", + " 'parent_id': 44717043,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44717319,\n", + " 'timestamp': '2010-10-05T13:42:02Z',\n", + " 'user': {'id': 652302, 'text': 'Timk70'},\n", + " 'page': {'id': 11698502,\n", + " 'title': 'Nice People MEDIUM.ogv.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'vertaling',\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 Als je iets weet, waarom zou je het voor jezelf houden?\\n\\n2 00:00:04,249 --> 00:00:07,174 Je moet het met anderen delen! Denk ik.\\n\\n3 00:00:07,174 --> 00:00:10,031 Ik vind het doel van deze website geweldig.\\n\\n4 00:00:10,031 --> 00:00:15,325 Niet \"website\", niet \"wiki\", niet \"internet\",\\n\\n5 00:00:15,325 --> 00:00:17,113 het doel is \"vrije kennis,\\n\\n6 00:00:17,113 --> 00:00:19,411 voor iedereen in zijn eigen moedertaal\".\\n\\n7 00:00:19,411 --> 00:00:21,548 Een open gemeenschap\\n\\n8 00:00:21,548 --> 00:00:23,428 bestaat uit diegene,\\n\\n9 00:00:23,428 --> 00:00:25,936 die de uitnodiging durven te accepteren.\\n\\n10 00:00:25,936 --> 00:00:27,956 En dit is een uitnodiging.\\n\\n11 00:00:27,956 --> 00:00:29,535 Je hoeft de uitnodiging natuurlijk niet aan te nemen,\\n\\n12 00:00:29,535 --> 00:00:31,439 maar er is een uitnodiging\\n\\n13 00:00:31,439 --> 00:00:32,879 in de bewerkknop, die zegt\\n\\n14 00:00:32,879 --> 00:00:37,709 \"Kom op, doe mee, wat jij weet is even belangrijk als wat wij weten\".\\n\\n15 00:00:37,709 --> 00:00:40,472 Je geeft jouw kennis aan de mensen,\\n\\n16 00:00:40,472 --> 00:00:43,026 en niet zomaar mensen, maar aan de hele wereld.\\n\\n17 00:00:43,026 --> 00:00:47,113 Daarom voel ik me goed bij het bijdragen aan een encyclopedie,\\n\\n18 00:00:47,113 --> 00:00:51,455 die door vrijwel iedereen op de wereld beschikbaar is.\\n\\n19 00:00:51,455 --> 00:00:55,286 Je maakt jezelf gelukkig door anderen te helpen, zo werkt het.\\n\\n20 00:00:55,286 --> 00:00:57,283 Ik wil gelukkig zijn, dus ik help anderen.\\n\\n21 00:00:57,283 --> 00:01:00,650 Je werkt met zoveel verschillende mensen samen\\n\\n22 00:01:00,650 --> 00:01:04,156 met zoveel verschillende culturen. Het is wonderbaarlijk.\\n\\n23 00:01:04,156 --> 00:01:06,501 Het bijzondere voor mij, waar het echt omgaat,\\n\\n24 00:01:06,501 --> 00:01:08,754 dat zijn de erg lieve mensen.\\n\\n25 00:01:08,754 --> 00:01:10,890 Dat zijn de mensen, \\n\\n26 00:01:10,890 --> 00:01:14,466 die online zijn en typen,\\n\\n27 00:01:14,466 --> 00:01:16,231 in plaats van roepen naar elkaar\\n\\n28 00:01:16,231 --> 00:01:18,437 of gewoon een gesprek voeren\\n\\n29 00:01:18,437 --> 00:01:20,875 of lezen over roddels of wat dan ook.\\n\\n30 00:01:20,875 --> 00:01:22,198 Deze mensen proberen iets op te bouwen,\\n\\n31 00:01:22,198 --> 00:01:23,707 wat andere mensen nuttig vinden.\\n\\n32 00:01:23,707 --> 00:01:26,029 Ik denk dat het heel lief is, erg aardige mensen.',\n", + " 'bytes': 2379,\n", + " 'sha1': 'mn8a4lqos72bznsmx5khxp1irfq6eri',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601724123,\n", + " 'timestamp': '2021-10-24T15:14:12Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11698613,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and (probably) partially the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\n我的用戶名是Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\n我的用戶名是Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein是\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\n一名德國的小書蟲\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\n这是Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\n你知道:\\n«not a fish»(不是一條魚)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,499 --> 00:00:23,785\\n我的用戶名是Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\n我的用戶名是Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, 這是我的真名\\nLiam Wyatt的一個字謎\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\n我的用戶名是Steven Walling,\\n也是我的真名\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\n我的用戶名是Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\n我的用戶名是Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\n我的名字是Jdforrester,\\n我編輯維基百科',\n", + " 'bytes': 1488,\n", + " 'sha1': 'e8gmvz3iolgxrvwowtt2qvq784qktn3',\n", + " 'parent_id': 44790805,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601723576,\n", + " 'timestamp': '2021-10-24T15:09:28Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11698629,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.yue.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and (probably) partially the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\n我嘅用戶名係Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\n我嘅用戶名係Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\n係一個德國嘅小書蟲\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\n這是Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\n你知道:\\n«not a fish»(唔係一條魚)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,293 --> 00:00:23,785\\n我嘅用戶名係Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\n我嘅用戶名係Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, 呢個係我嘅真名\\nLiam Wyatt嘅一個字謎\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\n我嘅用戶名係Steven Walling,\\n亦都係我嘅真名\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\n我嘅用戶名係Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\n我嘅用戶名係Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\n我嘅用戶名係Jdforrester,\\n我編輯維基百科',\n", + " 'bytes': 1501,\n", + " 'sha1': 'ro4wr4p6hq2s9ekzo2nle1cewg9jvkp',\n", + " 'parent_id': 44717714,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45359936,\n", + " 'timestamp': '2010-10-23T09:44:41Z',\n", + " 'user': {'id': 25480, 'text': 'Ainali'},\n", + " 'page': {'id': 11698694,\n", + " 'title': 'Wikimedia Italia - WikiGuida 2 - Commons.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'a few typos',\n", + " 'text': '1\\n00:00:11,086 --> 00:00:14,676\\nWikimedia Commons (också känt som bara Commons)\\n\\n2\\n00:00:14,740 --> 00:00:17,986\\när ett projekt som samlar bilder ljud och video\\n\\n3\\n00:00:18,010 --> 00:00:22,196\\noch annan utbildande och förklarande multimedia.\\n\\n4\\n00:00:22,174 --> 00:00:26,249\\nFilerna lagras på Commons och kan användas fritt,\\n\\n5\\n00:00:26,305 --> 00:00:31,028\\näven för kommersiella ändamål, så länge licensen respekteras.\\n\\n6\\n00:00:31,821 --> 00:00:35,200\\nBror till Wikipedia, föddes Commons 2004\\n\\n7\\n00:00:35,236 --> 00:00:38,888\\nsom en gemensam lagringsplats för flera av Wikimedia Foundations projekt,\\n\\n8\\n00:00:38,934 --> 00:00:42,153\\noch har sedan utvecklats som ett eget självständigt projekt med egna riktlinjer.\\n\\n9\\n00:00:42,320 --> 00:00:46,469\\nPå Commons kan du hitta bilder av platser och landmärken.\\n\\n10\\n00:00:46,919 --> 00:00:49,281\\nDjur, växter och mineraler.\\n\\n11\\n00:00:49,726 --> 00:00:53,281\\nBilder av personer, vardagliga saker, konstföremål.\\n\\n12\\n00:00:53,470 --> 00:00:58,183\\nOch återigen historiska bilder och inspelningar och inscannade antika böcker.\\n\\n13\\n00:00:58,483 --> 00:01:01,021\\nFörklaringar, diagram, grafer och kartor.\\n\\n14\\n00:01:01,335 --> 00:01:06,275\\nVideo- och ljudinspelningar... och mycket mer.\\n\\n15\\n00:01:06,664 --> 00:01:10,650\\nI vissa fall är filerna inte längre skyddade av upphovsrätten,\\n\\n16\\n00:01:10,774 --> 00:01:15,110\\ni andra fall har upphovsmännen gett sitt tillstånd\\n\\n17\\n00:01:15,123 --> 00:01:19,634\\nför materialet att användas enligt några enkla villkor,\\n\\n18\\n00:01:19,630 --> 00:01:24,442\\nsåsom attribution, eller att släppa modifierade verk under samma licens.\\n\\n19\\n00:01:24,745 --> 00:01:28,870\\nDet finns mer än 7 miljoner filer på Commons, fria att ladda ner\\n\\n20\\n00:01:28,908 --> 00:01:34,731\\nsom kan användas till tidningar, webbplatser, affischer, reklam, konst...\\n\\n21\\n00:01:35,761 --> 00:01:39,050\\nFiler från Commons kan användas direkt\\n\\n22\\n00:01:39,055 --> 00:01:43,766\\npå en Wikipediasida eller något annat Wikimediaprojekt,\\n\\n23\\n00:01:43,777 --> 00:01:47,438\\nmed hänsyn taget till det specifika projektets riktlinjer\\n\\n24\\n00:01:47,476 --> 00:01:49,767\\nsom det språkets gemenskap är riktat mot\\n\\n25\\n00:01:49,777 --> 00:01:52,983\\noch lagarna som gäller i verkets ursprungsland.\\n\\n26\\n00:01:53,723 --> 00:01:57,300\\nVarje fil på Commons har sin egen wikisida.\\n\\n27\\n00:01:57,567 --> 00:02:00,235\\nFörst kommer titeln, sedan själva multimediat\\n\\n28\\n00:02:00,223 --> 00:02:03,729\\neller dess förhandsgranskning, som till exempel för stora fotografier.\\n\\n29\\n00:02:04,007 --> 00:02:07,821\\nSedan kommer en beskrivning (ofta på flera språk)\\n\\n30\\n00:02:07,825 --> 00:02:12,856\\noch all tillgänglig information såsom källa, skapare, datum, regler för användning.\\n\\n31\\n00:02:13,083 --> 00:02:17,044\\nFilhistoriken visar alla modifieringar av filen.\\n\\n32\\n00:02:17,058 --> 00:02:21,408\\nDet är faktiskt möjligt att modifiera och förbättra filer som har laddats upp av andra användare.\\n\\n33\\n00:02:21,795 --> 00:02:24,567\\nDet finns också en lista över alla sidor på Commons\\n\\n34\\n00:02:24,568 --> 00:02:26,995\\noch de andra Wikimediaprojekten\\n\\n35\\n00:02:27,004 --> 00:02:29,996\\nsom länkar till eller använder filen.\\n\\n36\\n00:02:30,275 --> 00:02:32,752\\nLängst ner finns kategorier\\n\\n37\\n00:02:32,790 --> 00:02:35,502\\nsom filen har placerats i.\\n\\n38\\n00:02:35,544 --> 00:02:38,209\\nKategorierna är standardiserade på engelska,\\n\\n39\\n00:02:38,213 --> 00:02:41,927\\nmen det räcker med en ungefärlig förståelse för att kunna hantera dem.\\n\\n40\\n00:02:42,863 --> 00:02:45,245\\nHur kan du bidra till Commons?\\n\\n41\\n00:02:45,278 --> 00:02:48,559\\nDe som gillar att fotografera kan ladda upp sina bilder,\\n\\n42\\n00:02:48,659 --> 00:02:52,055\\nen god illustratör kan lägga till diagram och animationer,\\n\\n43\\n00:02:52,054 --> 00:02:54,924\\nen musiker kan ladda upp inspelningar av fri musik.\\n\\n44\\n00:02:55,133 --> 00:02:58,899\\nÄven filmer och inspelningar av teatrar kan laddas upp,\\n\\n45\\n00:02:58,926 --> 00:03:01,581\\nså länge de inte är skyddade av upphovsrätt.\\n\\n46\\n00:03:02,452 --> 00:03:07,264\\nFör att kunna ladda upp filer måste du registrera en användare.\\n\\n47\\n00:03:07,277 --> 00:03:11,832\\nRegistreringen är gratis och enkel, och behövs inte...\\n\\n48\\n00:03:11,887 --> 00:03:15,581\\n...om du redan är en registrerad användare på något annat av Wikimedia Foundations projekt.\\n\\n49\\n00:03:15,974 --> 00:03:19,324\\nDet är bara tillåtet att ladda upp filer som har ett fritt format.\\n\\n50\\n00:03:19,366 --> 00:03:23,448\\nTill exempel, det enda tillåtna formatet för video är Ogg Theora.\\n\\n51\\n00:03:23,529 --> 00:03:26,682\\nFlera öppen källkodsformatkomverterare finns\\n\\n52\\n00:03:26,622 --> 00:03:29,877\\nsom kan laddas ner och användas.\\n\\n53\\n00:03:30,249 --> 00:03:34,390\\nAlla uppladdade filer måste uppfylla följande: USAs lagar,\\n\\n54\\n00:03:34,385 --> 00:03:37,322\\ndär Wikimedia Foundations juridiska hemvist är;\\n\\n55\\n00:03:37,322 --> 00:03:40,229\\nlagarna i landet filen kommer ifrån;\\n\\n56\\n00:03:40,283 --> 00:03:45,626\\nlagarna i landet som användaren som är ansvarig för uppladdningen finns i.\\n\\n57\\n00:03:46,104 --> 00:03:49,031\\nSedan måste du vara säker på att du inte inkräktar\\n\\n58\\n00:03:49,050 --> 00:03:52,175\\npå lagar om integritet och varumärken\\n\\n59\\n00:03:52,195 --> 00:03:56,026\\neller restriktioner som vissa museer ställer för användandet av deras konstföremål.\\n\\n60\\n00:03:56,557 --> 00:04:00,399\\nOm material redan är publicerat någon annanstans under en fri licens,\\n\\n61\\n00:04:00,448 --> 00:04:04,311\\nmåste skaparna eller upphovsrättsinnehavarna skicka epost\\n\\n62\\n00:04:04,364 --> 00:04:07,380\\ndär de identifierar sig och uttalar deras medgivande\\n\\n63\\n00:04:07,416 --> 00:04:11,201\\natt publicera deras material under en fri licens.\\n\\n64\\n00:04:12,002 --> 00:04:16,003\\nLiksom Wikipedia är Commons en wiki, en webbplats öppen för alla\\n\\n65\\n00:04:16,006 --> 00:04:18,714\\noch som sköts av frivilliga från alla jordens hörn\\n\\n66\\n00:04:18,767 --> 00:04:22,079\\nsom arbetar med att identifiera och kategorisera materialet,\\n\\n67\\n00:04:22,123 --> 00:04:24,549\\nkomplettera och översätta beskrivningarna,\\n\\n68\\n00:04:24,561 --> 00:04:27,484\\nskapa gallerier och tematiska sidor,\\n\\n69\\n00:04:27,484 --> 00:04:31,936\\nhitta och radera filer som inte har en passande licens.\\n\\n70\\n00:04:32,872 --> 00:04:35,303\\nCommons är ett flerspråkigt projekt:\\n\\n71\\n00:04:35,364 --> 00:04:37,898\\nen enda webbplats som lagrar alla översatta versioner\\n\\n72\\n00:04:37,909 --> 00:04:41,307\\noch de olika språkgemenskaperna delar samma utrymme.\\n\\n73\\n00:04:41,581 --> 00:04:45,686\\nFör att lättare hitta material,\\n\\n74\\n00:04:45,684 --> 00:04:49,139\\npå annat sätt än i kategorier, kan du titta i gallerier,\\n\\n75\\n00:04:49,190 --> 00:04:51,584\\nsom är sidor som har skapats just\\n\\n76\\n00:04:51,590 --> 00:04:54,682\\nför att samla material om ett givet ämne.\\n\\n77\\n00:04:54,964 --> 00:04:58,377\\nDiskussionerna om innehållet äger rum\\n\\n78\\n00:04:58,408 --> 00:05:01,966\\npå diskussionssidorna som varje fil har,\\n\\n79\\n00:05:02,016 --> 00:05:05,889\\nmedan generella diskussioner om Commons hålls på en särskild sida.\\n\\n80\\n00:05:06,024 --> 00:05:08,918\\nKommunikationen är mest på engelska,\\n\\n81\\n00:05:08,966 --> 00:05:12,569\\nmen det finns diskussionssidor även på andra språk.\\n\\n82\\n00:05:12,853 --> 00:05:16,496\\nOm du får problem finns det frågesida\\n\\n83\\n00:05:16,535 --> 00:05:20,048\\noch många hjälpsidor på många olika språk.\\n\\n84\\n00:05:20,222 --> 00:05:23,240\\nFör specifika eller svårhanterade ärenden,\\n\\n85\\n00:05:23,240 --> 00:05:26,739\\nkan du fråga administratörerna, som är frivilliga\\n\\n86\\n00:05:26,783 --> 00:05:29,486\\nsom har fått förtroende av gemenskapen\\n\\n87\\n00:05:29,508 --> 00:05:33,164\\ngenom sin kunskap om projektet, och de är de enda som kan\\n\\n88\\n00:05:33,201 --> 00:05:35,647\\nutföra vissa operationer\\n\\n89\\n00:05:35,648 --> 00:05:38,603\\nsåsom att radera en fil.\\n\\n90\\n00:05:39,690 --> 00:05:43,318\\nOm du vill använda en fil utanför Commons, se till att alltid\\n\\n91\\n00:05:43,312 --> 00:05:46,334\\nfölja lagarna i ditt eget land.\\n\\n92\\n00:05:46,476 --> 00:05:48,614\\nCommons kan inte garantera legaliteten\\n\\n93\\n00:05:48,683 --> 00:05:51,355\\natt användandet av filerna i alla sammanhang,\\n\\n94\\n00:05:51,362 --> 00:05:54,260\\noch inte heller är det absolut korrekt och pålitligt.\\n\\n95\\n00:05:54,307 --> 00:05:58,402\\nMen det är fantastiskt att se hur mycket tillåtet och användbart material som har laddats upp.\\n\\n96\\n00:05:59,339 --> 00:06:03,755\\nFler och fler offentliga arkiv, museum, bibliotek, privata samlingar\\n\\n97\\n00:06:03,774 --> 00:06:07,015\\ngör stora och små \"donationer\" med material\\n\\n98\\n00:06:07,063 --> 00:06:10,003\\nsom blir en värdefull källa, tillgängligt för alla.\\n\\n99\\n00:06:10,655 --> 00:06:14,854\\nMånga professionella fotografer publicerar sina verk på Commons,\\n\\n100\\n00:06:14,871 --> 00:06:18,240\\nstolta över att se deras verk bli spridda runt hela världen.\\n\\n101\\n00:06:18,413 --> 00:06:22,119\\nDet samma gäller för de illustratörer som har gett Commons\\n\\n102\\n00:06:22,123 --> 00:06:26,151\\nsärskilt effektiva och eleganta skisser och diagram.\\n\\n103\\n00:06:26,496 --> 00:06:30,857\\nGemenskapen har flera sätt att uppmärksamma högkvalitativa verk:\\n\\n104\\n00:06:30,867 --> 00:06:35,316\\ndet finns en tävling för att utse årets bild.\\n\\n105\\n00:06:35,618 --> 00:06:38,555\\nEtt annat urval görs av de bästa bilderna\\n\\n106\\n00:06:38,559 --> 00:06:40,828\\nsom har gjorts av Commons användare\\n\\n107\\n00:06:40,841 --> 00:06:45,220\\noch ännu en annan belönar den mest värdefulla bilden i en genre.\\n\\n108\\n00:06:45,462 --> 00:06:49,511\\nEn särskilt intressant bild väljs varje dag\\n\\n109\\n00:06:49,532 --> 00:06:53,676\\noch desamma görs för andra multimedia.\\n\\n110\\n00:06:54,345 --> 00:06:56,682\\nDu kan stödja Commons speciellt\\n\\n111\\n00:06:56,766 --> 00:06:59,570\\ngenom att skänka pengar till Wikimedia Foundation,\\n\\n112\\n00:06:59,599 --> 00:07:03,338\\neller så kan du välja att stödja\\n\\n113\\n00:07:03,359 --> 00:07:06,715\\nWikimedia Sverige, en allmännyttig ideell förening\\n\\n114\\n00:07:06,743 --> 00:07:08,757\\nsom i Sverige sprider kunskap om\\n\\n115\\n00:07:08,792 --> 00:07:11,826\\nCommons och andra av Wikimedia Foundations projekt.\\n-->',\n", + " 'bytes': 10097,\n", + " 'sha1': 'gmtu41zg7pnr280b3morp7871tapvq7',\n", + " 'parent_id': 44723192,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601700395,\n", + " 'timestamp': '2021-10-24T13:40:29Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11700352,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles and partyally translation. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\n私のユーザー名は Bücherwürmlein です\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\n私のユーザー名は Church of emacs です\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\n独語で「小さな本の虫」\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nChomsky1です\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\nほら, «not a fish»,「魚じゃない」\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,293 --> 00:00:23,785\\n私のユーザー名は Henna です\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\n私のユーザー名は Lyzzy です\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama Liam Wyatt\\nって本名のアナグラム\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\n私のユーザー名は Steven\\nWalling です, 本名です\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\n私のユーザー名は Waldir です\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\n私のユーザー名は Mstislavl です\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nJdforrester\\nウィキペディアを編集してます',\n", + " 'bytes': 1585,\n", + " 'sha1': 'tes11xqz46nhlss2xxees8z4bmz8yvb',\n", + " 'parent_id': 45004544,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44756595,\n", + " 'timestamp': '2010-10-06T11:30:43Z',\n", + " 'user': {'id': 1005962, 'text': 'Deniel'},\n", + " 'page': {'id': 11700592,\n", + " 'title': 'Great Feeling.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nNo, non ho superpoteri.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nAffatto. No.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nPuoi assolutamente farlo anche tu.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nHo spinto il pulsante,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\ne salvato il testo,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWooooo!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nE\\' stato... eccitante.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nHai appena cambiato Wikipedia\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nhai appena aggiunto il tuo contributo a Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nHo letto un articolo sul \"Guardiano\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nsu questa enciclopedia online\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\ndove tutti quanti possono contribuire\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\ne ho detto \"Wow!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Forse posso contribuire anche io!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nHo modificato per la prima volta\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\ne ho pensato mi ci sono abituato.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nNon devo pagare niente\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nSai, devo solo fare\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nqualcosa nel mio tempo libero, è tutto.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nMagari puoi iniziare a farlo per un idea,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nperchè ci credi,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nma alla fine avrai amici,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nfinirai per fidanzarti,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nfinirai con discussioni magnifiche,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nfinirai con nuove idee,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nfinirai con nuovi libri da scrivere...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nNon stai scrivendo l\\'articolo da solo,\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\ntu ne scrivi un pezzo,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\ne qualcun altro farà lo stesso\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hey, so qualcos\\'altro!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\ne insieme potete creare\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\narticoli con lunghe pagine\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nche non avresti mai potuto scrivere da solo.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nPoi finisci con successo.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nVedi sempre: \"Ok, cosa ho fatto con successo.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\ne questo è bellissimo.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nE\\' fantastico,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nperchè è una grande sensazione\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nOgni volta che lo farai,\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nIo lo leggerò,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nquando leggo qualcosa su Wikipedia\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nho deciso\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Questo forse è dove accederò\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nE l\\'ho fatto.',\n", + " 'bytes': 2724,\n", + " 'sha1': 's88ymz53u6ydurrutv5gy8g4509eujb',\n", + " 'parent_id': 44756438,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44723044,\n", + " 'timestamp': '2010-10-05T16:00:10Z',\n", + " 'user': {'id': 304334, 'text': 'Haytham abulela'},\n", + " 'page': {'id': 11700606,\n", + " 'title': 'Great Feeling.ogv.ar.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Arabic text added',\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nهمم، لا، أنا لا أملك قوى خارقة.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nإطلاقا. لا.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nيمكنك أن تفعلها تماما.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nلقد قمت بالضغط على الزر،\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nو قمت بحفظ النص،\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nرائع!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nلقد كان الأمر ... ممتعا.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nلقد قمت بتغيير ويكيبيديا،\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nلقد قمت الآن بإضافة مساهمتك الخاصة إلى ويكيبيديا.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nقرأت مقال في صحيفة الجارديان\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nعن هذه الموسوعة الشبكية\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nو التي يمكن لأي شخص أن يساهم فيها\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nو قلت، \"رائع!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"ربما يمكنني أن أشارك أيضا\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nقمت بالتحرير للمرة الأولى\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nو أعتقد أنني أدمنت هذا الأمر\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nلا أتلقى أي مقابل مادي على الإطلاق\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nأنا أفعل ذلك لأجل، أنتم تعلمون،\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nشيء أفعله في وقت فراغي، هذا هو كل شيء.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nيمكنك أن تبدأ بذلك لأجل فكرة،\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nلأن تؤمن بها،\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nإلا أنك في نهاية المطاف يصبح لديك أصدقاء،\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nو أحباء،\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nو مناقشات رائعة،\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nو أفكار جديدة،\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nو كتب جديدة سوف تكتبها ...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nأنت لا تكتب المقال وحدك.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nأنت تكتب جزء،\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nو يأتي شخص آخر و يقول:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"مهلا، لدي المزيد!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nو معا يمكننا أن ننشئ\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nمقالات قد يصل طولها إلى صفحات عدة،\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nو التي قد لا يمكنك أن تكتبها بنفسك.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nثم يكون لديك النجاح.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nقد ترى دائما، \"حسنا، ما قمت به كان ناجحا.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nهذاالأمر رائع.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nهذا الأمر عظيم،\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nلأن التحرير يمنحك شعور رائع.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nفي كل مرة تقوم به.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nيتوجب علي أن أقول،\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nحينما قرأت عن ويكيبيديا،\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nقررت\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"ربما يكون هذا هو المكان الملائم لي\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nAnd I did.\\nو هذا ما حدث بالفعل.',\n", + " 'bytes': 3417,\n", + " 'sha1': 'j6y4nqy29xu08g5trha57alhk2zgg6t',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44723456,\n", + " 'timestamp': '2010-10-05T16:08:20Z',\n", + " 'user': {'id': 59618, 'text': 'Bdamokos'},\n", + " 'page': {'id': 11700748,\n", + " 'title': 'Edit Button.ogv.hu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,114 --> 00:00:02,414 Ott a „szerkesztés” gomb 2 00:00:02,530 --> 00:00:03,830 Csak kattints rá, 3 00:00:03,830 --> 00:00:06,664 keresd meg a hel...'\",\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nOtt a „szerkesztés” gomb\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nCsak kattints rá,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nkeresd meg a helyet, ahol a szöveg van és szerkeszd,\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nmajd kattints a „mentés”-re. Ennyire egyszerű.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nA Wikipédiában az a menő,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nhogy megváltoztathatsz dolgokat.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nNincs szükséged senki engedélyére\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nés nem is nehéz.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nElsőre kicsit riasztónak tűnik,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nde valójában nem nehéz.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nAz emberek nem veszik észre, mintha ez valamiféle vakság lenne.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nOlvassák a cikkeket és nem látják a „szerkesztés” gombot.\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nKattints a gombra és nézd meg mi történik.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n„Szerkesztés.”\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nAmikor nyitottá válsz valamire\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nés elkezdesz szerkeszteni,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nmindenféle egyéb dolog is történhet,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nés ez valóban nagyszerű.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nLehet egy kezdőpont,\\nLike, it can be just a starting point,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nami valahogy meghívás további életre.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nMindig amikor elkezdünk egy cikket, nem tetszik nekünk,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nmert rondának találjuk.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nDe várj csupán… pár órát\\n\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nés figyeld hogyan fejlődik nagyszerű cikké.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nA „szerkesztés” gomb: kattints rá és változtass meg valamit,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nmentsd el a lapot és az egész világot jobbá tetted.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n„Mentés”.',\n", + " 'bytes': 1985,\n", + " 'sha1': '1nt0pkj46fo4gwkohedzber15k2hxb9',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44756709,\n", + " 'timestamp': '2010-10-06T11:37:59Z',\n", + " 'user': {'id': 33974, 'text': 'Takot'},\n", + " 'page': {'id': 11701085,\n", + " 'title': 'Nice People MEDIUM.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 知識を自分だけのものにしておくの?\\n\\n2 00:00:04,249 --> 00:00:07,174 シェアしなきゃ そう思います\\n\\n3 00:00:07,174 --> 00:00:10,031 目的がいいよね\\n\\n4 00:00:10,031 --> 00:00:15,325 “ウェブサイト”“ウィキ”“ネット”とは言わない\\n\\n5 00:00:15,325 --> 00:00:17,113 ただ“自由な知識を―”\\n\\n6 00:00:17,113 --> 00:00:19,411 “すべての人に 自分たちの言語で”\\n\\n7 00:00:19,411 --> 00:00:21,548 オープンなコミュニティで\\n\\n8 00:00:21,548 --> 00:00:23,428 招待状をつかみとる\\n\\n9 00:00:23,428 --> 00:00:25,936 人たちが作ってる\\n\\n10 00:00:25,936 --> 00:00:27,956 招待状だから―\\n\\n11 00:00:27,956 --> 00:00:29,535 取らなくてもいい\\n\\n12 00:00:29,535 --> 00:00:31,439 でも そこにある\\n\\n13 00:00:31,439 --> 00:00:32,879 「編集」ボタンのところに\\n\\n14 00:00:32,879 --> 00:00:37,709 「加わって あなたの知ってることは私たちのと同じぐらい大事」と\\n\\n15 00:00:37,709 --> 00:00:40,472 教育をしてるのと同じこと\\n\\n16 00:00:40,472 --> 00:00:43,026 でも「誰か」にじゃない 「全世界」に\\n\\n17 00:00:43,026 --> 00:00:47,113 だから世界中のほぼ誰もが見られる\\n\\n18 00:00:47,113 --> 00:00:51,455 百科事典に貢献できて誇らしい\\n\\n19 00:00:51,455 --> 00:00:55,286 誰かを助けて自分が幸せ それだけ\\n\\n20 00:00:55,286 --> 00:00:57,283 幸せになりたいから助ける\\n\\n21 00:00:57,283 --> 00:01:00,650 たくさんの異なる文化の異なる人たちと\\n\\n22 00:01:00,650 --> 00:01:04,156 共同作業 それだけですごいでしょ\\n\\n23 00:01:04,156 --> 00:01:06,501 なんて言うのか つまり\\n\\n24 00:01:06,501 --> 00:01:08,754 みんな優しいんですよ\\n\\n25 00:01:08,754 --> 00:01:10,890 素晴らしい人たちがいて\\n\\n26 00:01:10,890 --> 00:01:14,466 オンラインでタイプしてるだけで\\n\\n27 00:01:14,466 --> 00:01:16,231 怒鳴りあってるんでもなく\\n\\n28 00:01:16,231 --> 00:01:18,437 馬鹿話してるでもなく\\n\\n29 00:01:18,437 --> 00:01:20,875 ゴシップ読むわけでもなく\\n\\n30 00:01:20,875 --> 00:01:22,198 他のみんなが便利だと思う\\n\\n31 00:01:22,198 --> 00:01:23,707 何かを作ろうとしてる\\n\\n32 00:01:23,707 --> 00:01:26,029 それだけでも本当にすごい 優しい人たち',\n", + " 'bytes': 2376,\n", + " 'sha1': 't463ohsw7ew2awlii1w6rfi7uw3c2ex',\n", + " 'parent_id': 44724825,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 63436367,\n", + " 'timestamp': '2011-12-05T14:19:47Z',\n", + " 'user': {'id': 671093, 'text': 'Ggia'},\n", + " 'page': {'id': 11701237,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 \\n00:00:01,000 --> 00:00:02,000 \\nΤο όνομα χρήστη μου είναι Bücherwürmlein\\n\\n2 \\n00:00:02,000 --> 00:00:03,000 \\nLila roja\\n\\n3 \\n00:00:04,000 --> 00:00:05,000 \\nyuyu\\n\\n4 \\n00:00:05,000 --> 00:00:07,000 \\nCbrown1023\\n\\n5 \\n00:00:07,000 --> 00:00:08,000 \\n22Kartika\\n\\n6 \\n00:00:08,000 --> 00:00:10,000\\nΤο όνομα χρήστη μου είναι Church of emacs\\n\\n7 \\n00:00:10,000 --> 00:00:14,000 \\nBücherwürmlein είναι ένας μικρός βιβλιοσκώληκας στην Γερμανία\\n\\n8 \\n00:00:14,000 --> 00:00:16,000 \\nDew\\n\\n9 \\n00:00:16,000 --> 00:00:17,000 \\nChomsky1\\n\\n10 \\n00:00:17,000 --> 00:00:18,000 \\nnasir8891\\n\\n11 \\n00:00:18,000 --> 00:00:21,000 \\nnotafish, ξέρεις : « δεν είμαι ψάρι »\\n\\n12 \\n00:00:21,000 --> 00:00:22,000 \\nTheo10011\\n\\n13 \\n00:00:22,000 --> 00:00:24,000 \\nΤο όνομα χρήστη μου είναι Henna\\n\\n14 \\n00:00:24,000 --> 00:00:25,000 \\nMisou\\n\\n15 \\n00:00:25,000 --> 00:00:26,000 \\nΤο όνομα χρήστη μου είναι Lyzzy\\n\\n16 \\n00:00:26,000 --> 00:00:30,000 \\nwittylama, είναι αναγραμματισμός του πραγματικού μου ονόματος Liam Wyatt\\n\\n17 \\n00:00:30,000 --> 00:00:31,000 \\nDeryck Chan\\n\\n18 \\n00:00:31,000 --> 00:00:32,000 \\nVulpeto\\n\\n19 \\n00:00:32,000 --> 00:00:33,000 \\nRajeshPandey\\n\\n20 \\n00:00:33,000 --> 00:00:37,000 \\nΤο όνομα χρήστη μου είναι Steven Walling, που είναι το πραγματικό μου όνομα\\n\\n21 \\n00:00:37,000 --> 00:00:38,000 \\nΤο όνομα χρήστη μου είναι Waldir\\n\\n22 \\n00:00:38,000 --> 00:00:41,000 \\nΤο όνομα χρήστη μου είναι Mstislavl\\n\\n23 \\n00:00:41,000 --> 00:00:44,000 \\nAbbasjnr, a-διπλό b-a-s-j-n-r\\n\\n24 \\n00:00:44,000 --> 00:00:49,000 \\nΤο όνομά μου είναι Jdforrester και συνεισφέρω στην Wikipedia',\n", + " 'bytes': 1838,\n", + " 'sha1': 'bunnwl8sqqrrmb5ly7g9bioxs1lxbwr',\n", + " 'parent_id': 44725317,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601719770,\n", + " 'timestamp': '2021-10-24T14:40:03Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11701318,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and partyally the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\nIl mio username è Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nIl mio username è Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein, è\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\nun piccolo vermetto in un libro tedesco\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nÈ Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\nsai: «not a fish»\\n(«non un pesce»)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,408 --> 00:00:23,785\\nIl mio username è Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nIl mio username è Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, è un anagramma\\ndel mio vero nome Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nIl mio username è Steven Walling,\\nche è il mio vero nome\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\nIl mio username è Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nIl mio username è Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nIl mio nome è Jdforrester\\ne modifico Wikipedia',\n", + " 'bytes': 1503,\n", + " 'sha1': 'rapw7nsjpx973kq1jvxwd9ig3wcigyy',\n", + " 'parent_id': 44725666,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44725670,\n", + " 'timestamp': '2010-10-05T17:12:25Z',\n", + " 'user': {'id': 5602, 'text': 'Geraki'},\n", + " 'page': {'id': 11701331,\n", + " 'title': 'Edit Button.ogv.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:01,114 --> 00:00:02,414 Υπάρχει ένα κουμπί \"επεξεργασία\" 2 00:00:02,530 --> 00:00:03,830 Απλώς πατήστε το, 3 00:...\\'',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nΥπάρχει ένα κουμπί \"επεξεργασία\"\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nΑπλώς πατήστε το,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nβρείτε το μέρος όπου είναι το κείμενο, και επεξεργαστείτε το \\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nκαι μετά πατήστε \"αποθήκευση\". Είναι τόσο εύκολο.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nΤο καταπληκτικό με την Wikipedia,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nείναι ότι μπορείς να αλλάζεις πράγματα.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nΔεν χρειάζεσαι κανενός την άδεια\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nκαι δεν είναι δύσκολο.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nΦαίνεται λιγάκι τρομαχτικό στην αρχή, \\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nαλλά δεν είναι αληθινά δύσκολο.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nΟι άνθρωποι δεν το αντιλαμβάνονται, σαν να είναι ένα είδος τύφλωσης. \\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nΆνθρωποι διαβάζουν άρθρα και δεν βλέπουν το κουμπί \"επεξεργασία\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nΠάτησε σε αυτό το κουμπί, και δες τι συμβαίνει. \\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Επεξεργασία.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nΌταν ανοίγεις τον εαυτό σου σε κάτι, \\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nκαι πας και αρχίζεις την επεξεργασία,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nόλα τα είδη άλλων πραγμάτων μπορεί να συμβούν,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nκαι αυτό είναι αληθινά όμορφο.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nΌπως, μπορεί να είναι απλώς μια εκκίνηση,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nείναι μια πρόσκληση για μια νέα ζωή, κάπως.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nΌποτε ξεκινούμε ένα άρθρο, δεν μας αρέσει,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nεπειδή το βρίσκετε άσχημο.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nΑλλά περιμένετε απλώς... ώρες\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nκαι δείτε πως θα αναπτυχθεί σε ένα σπουδαίο άρθρο.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nΤο κουμπί \"επεξεργασία\": πατήστε το και αλλάξτε κάτι, \\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nαποθηκεύστε την σελίδα, έχετε κάνει μια διαφορά σε όλο τον κόσμο. \\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Αποθήκευση\".',\n", + " 'bytes': 2857,\n", + " 'sha1': '05dlv291yqo87q5ie05a40yo9yes7tr',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45495669,\n", + " 'timestamp': '2010-10-27T09:52:42Z',\n", + " 'user': {'id': 1005962, 'text': 'Deniel'},\n", + " 'page': {'id': 11701411,\n", + " 'title': 'Nice People MEDIUM.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 Se hai conoscenze, perchè te le devi tenere per te stesso?\\n\\n2 00:00:04,249 --> 00:00:07,174 Io penso che le devi condividere!\\n\\n3 00:00:07,174 --> 00:00:10,031 Mi piace che lo scopo di questo sito\\n\\n4 00:00:10,031 --> 00:00:15,325 non dice \"sito internet\",non dice \"Wiki\",non dice \"internet\",\\n\\n5 00:00:15,325 --> 00:00:17,113 dice solo \"conoscenza libera,\\n\\n6 00:00:17,113 --> 00:00:19,411 per tutti, nella propria lingua\".\\n\\n7 00:00:19,411 --> 00:00:21,548 Quando una comunità è aperta\\n\\n8 00:00:21,548 --> 00:00:23,428 è veramente fatta di quelli\\n\\n9 00:00:23,428 --> 00:00:25,936 che osano accettare l\\'invito.\\n\\n10 00:00:25,936 --> 00:00:27,956 E questo è un invito.\\n\\n11 00:00:27,956 --> 00:00:29,535 Ovviamente non dovete accettare l\\'invito per forza\\n\\n12 00:00:29,535 --> 00:00:31,439 ma c\\'è un invito qui fuori\\n\\n13 00:00:31,439 --> 00:00:32,879 in un pulsante di modifica e dice:\\n\\n14 00:00:32,879 --> 00:00:37,709 \"Vieni, partecipa, ciò che si sa è importante quanto ciò che conosciamo\".\\n\\n15 00:00:37,709 --> 00:00:40,472 Sai che stai dando un\\'educazione alle persone,\\n\\n16 00:00:40,472 --> 00:00:43,026 e non solo a qualche persona, ma al mondo intero.\\n\\n17 00:00:43,026 --> 00:00:47,113 Così mi sento bene pensando che sto contribuendo a un enciclopedia\\n\\n18 00:00:47,113 --> 00:00:51,455 che è virtualmente accessibile a chiunque nel mondo intero.\\n\\n19 00:00:51,455 --> 00:00:55,286 E\\' solo diventare felice, aiutando gli altri. Solo questo\\n\\n20 00:00:55,286 --> 00:00:57,283 Perchè se voglio essere felice, aiuto altri.\\n\\n21 00:00:57,283 --> 00:01:00,650 Stai lavorando insieme a persone molto diverse\\n\\n22 00:01:00,650 --> 00:01:04,156 da culture diverse, è questo è fantastico.\\n\\n23 00:01:04,156 --> 00:01:06,501 Queste persone, per me, che è veramente così\\n\\n24 00:01:06,501 --> 00:01:08,754 sono persone veramente dolci.\\n\\n25 00:01:08,754 --> 00:01:10,890 Sai, abbiamo ottenuto tutte quelle persone veramente dolci\\n\\n26 00:01:10,890 --> 00:01:14,466 che stanno già [accettando] online e stanno digitando,\\n\\n27 00:01:14,466 --> 00:01:16,231 e invece di gridare l\\'un l\\'altro\\n\\n28 00:01:16,231 --> 00:01:18,437 o semplicemente avere una conversazione\\n\\n29 00:01:18,437 --> 00:01:20,875 o leggendo qualcosa su gossip o altro\\n\\n30 00:01:20,875 --> 00:01:22,198 stanno provando a costruire qualcosa\\n\\n31 00:01:22,198 --> 00:01:23,707 che qualcun altro troverà utile.\\n\\n32 00:01:23,707 --> 00:01:26,029 Io penso che siano davvero, davvero persone fantastiche.',\n", + " 'bytes': 2491,\n", + " 'sha1': '3cdonqn3445m0njp7m3pg84t3l58o95',\n", + " 'parent_id': 45495574,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44866155,\n", + " 'timestamp': '2010-10-09T14:47:42Z',\n", + " 'user': {'id': 5602, 'text': 'Geraki'},\n", + " 'page': {'id': 11701440,\n", + " 'title': 'Nice People MEDIUM.ogv.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 Αν έχεις γνώση, γιατί πρέπει να την κρατήσεις για σένα;\\n\\n2 00:00:04,249 --> 00:00:07,174 Πρέπει να την μοιραστείς! Νομίζω.\\n\\n3 00:00:07,174 --> 00:00:10,031 Μου αρέσει που ο σκοπός αυτού του ιστότοπου\\n\\n4 00:00:10,031 --> 00:00:15,325 δεν έλεγε \"ιστότοπος\", δεν έλεγε \"wiki\", δεν έλεγε \"internet\",\\n\\n5 00:00:15,325 --> 00:00:17,113 έλεγε μόνο \"Ελεύθερη γνώση,\\n\\n6 00:00:17,113 --> 00:00:19,411 για καθένα, στην δική του γλώσσα\".\\n\\n7 00:00:19,411 --> 00:00:21,548 Όταν μια κοινότητα είναι ανοιχτή,\\n\\n8 00:00:21,548 --> 00:00:23,428 είναι αληθινά φτιαγμένη από αυτούς\\n\\n9 00:00:23,428 --> 00:00:25,936 που τόλμησαν να ανταποκριθούν στην πρόσκληση.\\n\\n10 00:00:25,936 --> 00:00:27,956 Και αυτή είναι μια πρόσκληση.\\n\\n11 00:00:27,956 --> 00:00:29,535 Φυσικά δεν είσαι υποχρεωμένος να ανταποκριθείς στην πρόσκληση,\\n\\n12 00:00:29,535 --> 00:00:31,439 αλλά υπάρχει μια πρόσκληση εκεί έξω \\n\\n13 00:00:31,439 --> 00:00:32,879 σε ένα κουμπί \"Επεξεργασία\" για να λέει\\n\\n14 00:00:32,879 --> 00:00:37,709 \"Έλα, γίνε μέρος, ότι γνωρίζεις είναι τόσο σημαντικό όσο ότι γνωρίζουμε\".\\n\\n15 00:00:37,709 --> 00:00:40,472 Ξέρεις ότι δίνεις εκπαίδευση στον κόσμο,\\n\\n16 00:00:40,472 --> 00:00:43,026 και όχι απλώς σε κάποιους ανθρώπους αλλά σε ολόκληρο τον κόσμο.\\n\\n17 00:00:43,026 --> 00:00:47,113 Έτσι νιώθω υπέροχα συνεισφέροντας σε μια εγκυκλοπαίδεια\\n\\n18 00:00:47,113 --> 00:00:51,455 που είναι διαθέσιμη εικονικά στον καθένα σε ολόκληρο τον κόσμο.\\n\\n19 00:00:51,455 --> 00:00:55,286 Είναι απλώς το να κάνεις τον εαυτό σου χαρούμενο βοηθώντας άλλους, αυτό είναι.\\n\\n20 00:00:55,286 --> 00:00:57,283 Επειδή θέλω να είμαι χαρούμενος, βοηθώ άλλους.\\n\\n21 00:00:57,283 --> 00:01:00,650 Δουλεύεις μαζί με τόσους πολλούς διαφορετικούς ανθρώπους\\n\\n22 00:01:00,650 --> 00:01:04,156 από τόσες διαφορετικές κουλτούρες, και είναι καταπληκτικό.\\n\\n23 00:01:04,156 --> 00:01:06,501 Το θέμα με αυτό, για μένα, ότι είναι στ\\' αλήθεια,\\n\\n24 00:01:06,501 --> 00:01:08,754 είναι απλώς αληθινά γλυκοί άνθρωποι.\\n\\n25 00:01:08,754 --> 00:01:10,890 Ξέρεις, έχουμε όλους αυτούς τους αληθινά γλυκούς ανθρώπους\\n\\n26 00:01:10,890 --> 00:01:14,466 που είναι απλώς συνδεδεμένοι και πληκτρολογούν,\\n\\n27 00:01:14,466 --> 00:01:16,231 και αντί να φωνάζουν ο ένας στον άλλο\\n\\n28 00:01:16,231 --> 00:01:18,437 ή απλώς να συζητούν \\n\\n29 00:01:18,437 --> 00:01:20,875 ή να διαβάζουν κουτσομπολιά ή οτιδήποτε άλλο,\\n\\n30 00:01:20,875 --> 00:01:22,198 προσπαθούν να φτιάξουν κάτι\\n\\n31 00:01:22,198 --> 00:01:23,707 που όλοι οι άλλοι θα βρουν χρήσιμο.\\n\\n32 00:01:23,707 --> 00:01:26,029 Πιστεύω απλά ότι είναι αληθινά γλυκοί, αληθινά καλοί άνθρωποι.',\n", + " 'bytes': 3807,\n", + " 'sha1': 'ckqio05zkb2v23wkm99ax3fol47o2h4',\n", + " 'parent_id': 44726125,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44767274,\n", + " 'timestamp': '2010-10-06T17:13:33Z',\n", + " 'user': {'id': 82, 'text': 'Kzhr'},\n", + " 'page': {'id': 11712802,\n", + " 'title': 'Edit Button.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\n「編集」ってボタンがあるでしょ\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nクリック。\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nテキストをみつけて編集\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\n「ページを保存」をクリック 簡単でしょ\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nウィキペディアがすごいのは\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\n「自分で変えられる」\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\n許可は要らない\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\n難しくもない\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\n最初はちょっと難しく見えるけど\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nそんなことはない\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nみんな気づいてないんです 盲点みたいなもので\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\n記事は読んでも「編集」ボタンに気づかない\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nクリックすると何が起こるか\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n「編集」\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\n何かと正面から向き合い\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\n編集を始めたとき\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nそれまでとは全く違う何かが起きる\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nそれは本当に美しい\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nただの出発点にすぎず\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\n新たな人生の始まり\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\n書いてすぐは気に入らない\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nみっともないから\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nでもたった数時間待てば\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nすごい記事にどう成長するか分かる\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\n「編集」ボタンで 何かを変えよう\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\n保存して 世界が変わる\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n「ページを保存」',\n", + " 'bytes': 1865,\n", + " 'sha1': 'o6bct63y6424re2woem80kwqw7knl0p',\n", + " 'parent_id': 44767150,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45005159,\n", + " 'timestamp': '2010-10-13T13:35:17Z',\n", + " 'user': {'id': 33974, 'text': 'Takot'},\n", + " 'page': {'id': 11722604,\n", + " 'title': 'Great Feeling.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'get shorter',\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\n特別な力は何もない\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nまったく 全然\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\n本当に何でもできる\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nボタン押して\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\n保存して\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\n<!-- 字幕無し -->\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\n興奮しました\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\n編集イコール\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\n貢献したってこと\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nこの百科事典について\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\n「ガーディアン」で読んで\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\n誰でも投稿できるって\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\n思わず「すごい!」って\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n自分もできるかも!\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\n初めて編集したとき\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\n惹かれてくのが分かった\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nお金をもらったことはない\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\n自分のヒマな時間で\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\n何かやってる それだけ\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\n思うところがあって\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\n始めるのかもしれないけど\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\n友達になったり\\n<!-- but you end up with friends, -->\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\n恋人になったり\\n<!-- you end up with lovers, -->\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nわくわくする議論になったり\\n<!-- you end up with wonderful discussions, -->\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\n新しい考えが出たり\\n<!-- you end up with new ideas, -->\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\n新しい本を書いたり\\n<!-- you end up with new books you\\'re gonna write... -->\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\n独りじゃない\\n<!-- You\\'re not writing the article alone. -->\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\n一部を書くと\\n<!-- You write a piece, -->\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\n誰か来て\\n<!-- and somebody else goes like: -->\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n「もっと知ってる!」\\n<!-- \"Hey, I have more!\" -->\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nそうして長い\\n<!-- and together you can create -->\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\n一人じゃできない\\n<!-- articles that are pages long, -->\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nページができる\\n<!-- which you can\\'t by yourself. -->\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nそしたら成功\\n<!-- Then you have success. -->\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\n毎回「やった」と思える\\n<!-- You always see, \"Ok, what I\\'ve done was successful.\" -->\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nこれがたまらない\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\n編集が\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\n快感ってのがすごい\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nいつでも\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\n告白すると\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nウィキペディアは\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\n「ここが―\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\nいるべき場所かも」と\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\n本当に そうだった',\n", + " 'bytes': 3156,\n", + " 'sha1': 'mgkqt4tliol99g0h97wjl9zy2t89aos',\n", + " 'parent_id': 45004907,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44813258,\n", + " 'timestamp': '2010-10-08T02:43:31Z',\n", + " 'user': {'id': 161974, 'text': 'Vinhtantran'},\n", + " 'page': {'id': 11726852,\n", + " 'title': 'Great Feeling.ogv.vi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,905 --> 00:00:03,204 À, không. Tôi chẳng có chút năng lực siêu phàm 2 00:00:03,204 --> 00:00:05,990 nào cả. Không. 3 00:00:05,990 --> ...'\",\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nÀ, không. Tôi chẳng có chút năng lực siêu phàm\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nnào cả. Không.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nBạn hoàn toàn có thể làm được.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nTôi nhấn vào nút,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nvà lưu nội dung,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nHuuuuu!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nNó thật là... phấn khích.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nBạn vừa mới sửa Wikipedia,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nbạn vừa mới tự mình đóng góp cho Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nTôi đọc một bài báo trên \"Guardian\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nvề trang bách khoa toàn thư trực tuyến này\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nnơi mọi người ai cũng đóng góp được\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nvà tôi thốt lên, \"Wow!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Có thể mình cũng đóng góp được chăng!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nTôi sửa bài lần đầu tiên\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nvà tôi thấy mình đã nghiện nó mất rồi.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nTôi không nhận được xu nào cả,\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nTôi chỉ làm vì, bạn biết đấy,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nlàm cái gì đó vào lúc rảnh, chỉ có vậy thôi.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nBạn có thể bắt đầu chỉ vì một ý kiến,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nmà bạn tin là nó đúng,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nnhưng rồi bạn sẽ tìm thấy bạn bè,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\ntìm thấy người yêu,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\ntìm thấy những cuộc thảo luận tuyệt vời,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\ntìm thấy những ý tưởng mới,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nrồi cuối cùng là những cuốn sách do chính bạn sẽ viết nên...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nBạn không đơn độc khi viết bài.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nBạn viết một đoạn,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nrồi người khác sẽ tiếp tục theo kiểu:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Nè, tôi có thông tin thêm đây!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nvà cùng nhau bạn có thể tạo nên\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nnhững bài viết dài nhiều trang,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nmà một mình bạn không thể viết nổi.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nVà rồi bạn đã thành công.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nBạn luôn cảm thấy, \"Ok, tôi đã hoàn thiện được một thứ.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nvà nó thật là tuyệt vời.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nThật là tuyệt,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nvì, sửa bài là một cảm giác khó tả.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nMỗi khi bạn làm điều đó.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nTôi phải nói rằng,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nkhi tôi đọc những gì người ta nói về Wikipedia,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\ntôi quyết định rằng\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Đây có thể là nơi phù hợp với minh\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nVà tôi đã tham gia.',\n", + " 'bytes': 3311,\n", + " 'sha1': 'p8xkgzd3cgqb8u3jgp4to758skuh1dl',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 127788912,\n", + " 'timestamp': '2014-06-29T20:56:02Z',\n", + " 'user': {'id': 1341983, 'text': 'AlleinStein'},\n", + " 'page': {'id': 11726898,\n", + " 'title': 'Nice People MEDIUM.ogv.vi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'srt format',\n", + " 'text': '1\\n00:00:01,300 --> 00:00:04,249\\nNếu bạn có kiến thức, tại sao bạn phải giữ nó cho riêng mình?\\n\\n2\\n00:00:04,249 --> 00:00:07,174\\nBạn phải chia sẻ nó! Tôi cho là vậy.\\n\\n3\\n00:00:07,174 --> 00:00:10,031\\nTôi thích mục đích của website này\\n\\n4\\n00:00:10,031 --> 00:00:15,325\\nnó không nói đến \"website\", không nói đến \"Wiki\", không phải \"Internet\",\\n\\n5\\n00:00:15,325 --> 00:00:17,113\\nnó chỉ nói \"Kiến thức tự do,\\n\\n6\\n00:00:17,113 --> 00:00:19,411\\ndành cho mọi người, bằng chính thứ tiếng của họ\".\\n\\n7\\n00:00:19,411 --> 00:00:21,548\\nKhi một cộng đồng được tạo nên,\\n\\n8\\n00:00:21,548 --> 00:00:23,428\\nnó bao gồm những ai\\n\\n9\\n00:00:23,428 --> 00:00:25,936\\ndám nhận lời mời.\\n\\n10\\n00:00:25,936 --> 00:00:27,956\\nVà đây là một lời mời.\\n\\n11\\n00:00:27,956 --> 00:00:29,535\\nDĩ nhiên bạn không bắt buộc phải nhận lời,\\n\\n12\\n00:00:29,535 --> 00:00:31,439\\nnhưng đâu đó ngoài kia vẫn có một lời mời\\n\\n13\\n00:00:31,439 --> 00:00:32,879\\ntrong nút \"Sửa đổi\", nói rằng\\n\\n14\\n00:00:32,879 --> 00:00:37,709\\n\"Hãy đến đây, hãy tham gia, những gì bạn biết cũng quan trọng như những gì chúng tôi biết\".\\n\\n15\\n00:00:37,709 --> 00:00:40,472\\nBạn nhận thấy là bạn đang trao cho mọi người sự giáo dục,\\n\\n16\\n00:00:40,472 --> 00:00:43,026\\nvà không phải bất cứ ai cụ thể mà là cả thế giới.\\n\\n17\\n00:00:43,026 --> 00:00:47,113\\nVì thế tôi cảm thấy tốt hơn khi đóng góp vào một bách khoa toàn thư\\n\\n18\\n00:00:47,113 --> 00:00:51,455\\nmà hầu như bất ai trên thế giới đều có thể xem được.\\n\\n19\\n00:00:51,455 --> 00:00:55,286\\nĐơn giản là nó làm bạn hạnh phúc vì giúp được người khác, chỉ vậy thôi.\\n\\n20\\n00:00:55,286 --> 00:00:57,283\\nVì tôi muốn được hạnh phúc, nên tôi giúp đỡ người khác.\\n\\n21\\n00:00:57,283 --> 00:01:00,650\\nBạn đang làm việc cùng với nhiều người khác nhau\\n\\n22\\n00:01:00,650 --> 00:01:04,156\\ntừ nhiều nền văn hóa khác nhau, nó thật tuyệt vời.\\n\\n23\\n00:01:04,156 --> 00:01:06,501\\nĐể nói về nó, đối với tôi, điều quan trọng nhất,\\n\\n24\\n00:01:06,501 --> 00:01:08,754\\nđó là những người tốt.\\n\\n25\\n00:01:08,754 --> 00:01:10,890\\nBạn biết đấy, chúng tôi có những người thật sự tốt đẹp như vậy\\n\\n26\\n00:01:10,890 --> 00:01:14,466\\nnhững người chỉ [nói chuyện] trên mạng và họ gõ bàn phím,\\n\\n27\\n00:01:14,466 --> 00:01:16,231\\nthay vì mắng nhiếc nhau\\n\\n28\\n00:01:16,231 --> 00:01:18,437\\ntán gẫu với nhau\\n\\n29\\n00:01:18,437 --> 00:01:20,875\\nđọc các câu chuyện phiếm hay bất cứ thứ gì khác,\\n\\n30\\n00:01:20,875 --> 00:01:22,198\\nhọ đang cố gắng xây dựng một điều gì đó\\n\\n31\\n00:01:22,198 --> 00:01:23,707\\nhữu ích với tất cả mọi người khác.\\n\\n32\\n00:01:23,707 --> 00:01:26,029\\nTôi nghĩ điều đó thật tuyệt, những con người thật tốt đẹp.',\n", + " 'bytes': 3037,\n", + " 'sha1': 'kt3nlnxkbrfp1pya1pqejceynvazf0c',\n", + " 'parent_id': 44813400,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45200029,\n", + " 'timestamp': '2010-10-18T20:11:28Z',\n", + " 'user': {'id': 245453, 'text': 'Otourly'},\n", + " 'page': {'id': 11727752,\n", + " 'title': 'Wikimedia Italia - WikiGuida 2 - Commons.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:11,086 --> 00:00:14,676\\nWikimedia Commons (aussi appelé tout simplement \"Commons\")\\n\\n2\\n00:00:14,740 --> 00:00:17,986\\nest un site internet qui héberge des images, de l\\'audio et de la vidéo\\n\\n3\\n00:00:18,010 --> 00:00:22,196\\nainsi que d\\'autres ressources multimédia dont le but est d\\'illustrer ou d\\'éduquer\\n\\n4\\n00:00:22,174 --> 00:00:26,249\\nLes contenus de Commons peuvent être utilisées librement\\n\\n5\\n00:00:26,305 --> 00:00:31,028\\net l\\'utilisation commerciale est permise, tant que les conditions de la licence sont respectées.\\n\\n6\\n00:00:31,821 --> 00:00:35,200\\nFrère de Wikipédia, Commons a vu le jour en 2004\\n\\n7\\n00:00:35,236 --> 00:00:38,888\\ncomme dépôt commun pour les différents projets de la Wikimedia Foundation,\\n\\n8\\n00:00:38,934 --> 00:00:42,153\\nCommons a ensuite évolué en un projet avec ses propres règles.\\n\\n9\\n00:00:42,320 --> 00:00:46,469\\nSur Commons il est possible de trouver des photos de lieux et de monuments.\\n\\n10\\n00:00:46,919 --> 00:00:49,281\\nd\\'animaux, de plantes, de minéraux.\\n\\n11\\n00:00:49,726 --> 00:00:53,281\\nDes photos de personnalités, d\\'objets communs et d\\'œuvres d\\'art.\\n\\n12\\n00:00:53,470 --> 00:00:58,183\\nAinsi que des enregistrements historiques et des versions numériques de livres anciens.\\n\\n13\\n00:00:58,483 --> 00:01:01,021\\nDes schémas, des diagrammes, des graphiques et des cartes.\\n\\n14\\n00:01:01,335 --> 00:01:06,275\\nDes vidéos et des enregistrements audio... et bien d\\'autres choses.\\n\\n15\\n00:01:06,664 --> 00:01:10,650\\nDans certains cas les ressources ne sont plus couvertes par le droit d\\'auteur,\\n\\n16\\n00:01:10,774 --> 00:01:15,110\\ndans d\\'autres cas, les auteurs ou les ayant-droits ont accordé une permission\\n\\n17\\n00:01:15,123 --> 00:01:19,634\\npour que les œuvres soient utilisables en respectant de simples conditions,\\n\\n18\\n00:01:19,630 --> 00:01:24,442\\ncomme l\\'attribution ou l\\'utilisation de la même licence pour les éventuelles œuvres dérivées.\\n\\n19\\n00:01:24,745 --> 00:01:28,870\\nPlus de sept millions de ressources sur Commons, librement téléchargeables\\n\\n20\\n00:01:28,908 --> 00:01:34,731\\net utilisables pour la recherche, les sites web, les manifestes, la publicité, les œuvres d\\'art...\\n\\n21\\n00:01:35,761 --> 00:01:39,050\\nLes ressources de Commons peuvent être insérées directement\\n\\n22\\n00:01:39,055 --> 00:01:43,766\\nsur les pages de l\\'encyclopédie Wikipédia et sur tous les autres projets Wikimédia,\\n\\n23\\n00:01:43,777 --> 00:01:47,438\\nbien sûr en respectant les règles du projet spécifique,\\n\\n24\\n00:01:47,476 --> 00:01:49,767\\nde la communauté linguistique de référence\\n\\n25\\n00:01:49,777 --> 00:01:52,983\\net de la législation du pays de provenance.\\n\\n26\\n00:01:53,723 --> 00:01:57,300\\nChaque fichier sur Commons a sa propre page wiki.\\n\\n27\\n00:01:57,567 --> 00:02:00,235\\nAprès le titre, on trouve la ressource multimédia\\n\\n28\\n00:02:00,223 --> 00:02:03,729\\nou une version réduite, comme dans le cas de photos très grandes.\\n\\n29\\n00:02:04,007 --> 00:02:07,821\\nUne description (souvent traduite en plusieurs langues) est insérée\\n\\n30\\n00:02:07,825 --> 00:02:12,856\\nainsi que toutes les informations disponibles, comme la source, l\\'auteur, la date et les termes d\\'utilisation.\\n\\n31\\n00:02:13,083 --> 00:02:17,044\\nL\\'histoire du fichier liste toutes les éventuelles modifications.\\n\\n32\\n00:02:17,058 --> 00:02:21,408\\nCar il est en effet possible de corriger et d\\'améliorer les fichiers téléversés par d\\'autres utilisateurs.\\n\\n33\\n00:02:21,795 --> 00:02:24,567\\nPar ailleurs sont listées les pages de Commons\\n\\n34\\n00:02:24,568 --> 00:02:26,995\\net des autres projets de la Wikimedia Foundation\\n\\n35\\n00:02:27,004 --> 00:02:29,996\\nqui ont lié et utilisé la ressource.\\n\\n36\\n00:02:30,275 --> 00:02:32,752\\nEn bas de la page on trouve des catégories,\\n\\n37\\n00:02:32,790 --> 00:02:35,502\\npar le biais desquelles la ressource est cataloguée.\\n\\n38\\n00:02:35,544 --> 00:02:38,209\\nLes catégories sont standardisés en anglais,\\n\\n39\\n00:02:38,213 --> 00:02:41,927\\nmais pour les utiliser il est suffisant d\\'avoir une connaissance approximative de la langue.\\n\\n40\\n00:02:42,863 --> 00:02:45,245\\nComment pouvez-vous contribuer à Commons ?\\n\\n41\\n00:02:45,278 --> 00:02:48,559\\nUn amoureux de la photographie peut téléverser ses photos,\\n\\n42\\n00:02:48,659 --> 00:02:52,055\\nun bon dessinateur peut ajouter des diagrammes et des animations,\\n\\n43\\n00:02:52,054 --> 00:02:54,924\\nun musicien l\\'enregistrement d\\'œuvres libres.\\n\\n44\\n00:02:55,133 --> 00:02:58,899\\nDes enregistrements de films et pièces théâtrales peuvent être insérés,\\n\\n45\\n00:02:58,926 --> 00:03:01,581\\nà condition qu\\'il ne soient pas couverts par des droits d\\'auteur.\\n\\n46\\n00:03:02,452 --> 00:03:07,264\\nAfin de pouvoir téléverser un fichier sur Commons, il faut s\\'être préalablement enregistré.\\n\\n47\\n00:03:07,277 --> 00:03:11,832\\nLa création d\\'un compte, gratuite, est rapide et n\\'est pas nécessaire\\n\\n48\\n00:03:11,887 --> 00:03:15,581\\nsi on a déjà un compte sur un autre projet de la Wikimedia Foundation.\\n\\n49\\n00:03:15,974 --> 00:03:19,324\\nIl est seulement possible de téléverser des ressources en format libre.\\n\\n50\\n00:03:19,366 --> 00:03:23,448\\nPas exemple, pour les vidéos seul le format Ogg Theora est admis.\\n\\n51\\n00:03:23,529 --> 00:03:26,682\\nIl existe de nombreux convertisseurs open source\\n\\n52\\n00:03:26,622 --> 00:03:29,877\\nqui peuvent être téléchargés et utilisées gratuitement.\\n\\n53\\n00:03:30,249 --> 00:03:34,390\\nTous les fichiers téléversés doivent respecter : la loi des États-Unis,\\n\\n54\\n00:03:34,385 --> 00:03:37,322\\noù est légalement implantée la Wikimedia Foundation ;\\n\\n55\\n00:03:37,322 --> 00:03:40,229\\nles lois des pays dont est issue la ressource ;\\n\\n56\\n00:03:40,283 --> 00:03:45,626\\nles lois du pays de l\\'utilisateur, qui reste responsable des contenus insérés.\\n\\n57\\n00:03:46,104 --> 00:03:49,031\\nIl faut contrôler qu\\'on n\\'enfreint pas\\n\\n58\\n00:03:49,050 --> 00:03:52,175\\nles lois sur la vie privée ou sur les marques déposées\\n\\n59\\n00:03:52,195 --> 00:03:56,026\\nou les restrictions d\\'utilisation des œuvres d\\'art de la part de certains musées.\\n\\n60\\n00:03:56,557 --> 00:04:00,399\\nDans le cas d\\'œuvres déjà publiées ailleurs sans licence libre,\\n\\n61\\n00:04:00,448 --> 00:04:04,311\\nl\\'auteur ou les ayant-droits doivent envoyer un courriel électronique\\n\\n62\\n00:04:04,364 --> 00:04:07,380\\ndans lequel ils s\\'identifient en déclarant qu\\'ils permettent\\n\\n63\\n00:04:07,416 --> 00:04:11,201\\nla publication de la ressource sous une licence libre.\\n\\n64\\n00:04:12,002 --> 00:04:16,003\\nComme Wikipédia, Commons est un wiki, un site ouvert à tout le monde\\n\\n65\\n00:04:16,006 --> 00:04:18,714\\nil est géré par des bénévoles du monde entier\\n\\n66\\n00:04:18,767 --> 00:04:22,079\\nqui s\\'engagent à identifier et catégoriser les ressources,\\n\\n67\\n00:04:22,123 --> 00:04:24,549\\nà compléter ou traduire les descriptions,\\n\\n68\\n00:04:24,561 --> 00:04:27,484\\nà créer les galeries et les pages spécifiques selon le thème,\\n\\n69\\n00:04:27,484 --> 00:04:31,936\\nà identifier et supprimer les ressources avec des licences ou des sources incomplètes.\\n\\n70\\n00:04:32,872 --> 00:04:35,303\\nCommons est un projet multilingue :\\n\\n71\\n00:04:35,364 --> 00:04:37,898\\nun site unique qui contient toutes les traductions\\n\\n72\\n00:04:37,909 --> 00:04:41,307\\net les différentes communautés linguistique cohabitent dans le même espace.\\n\\n73\\n00:04:41,581 --> 00:04:45,686\\nPour faciliter la recherche des ressources au sein de Commons,\\n\\n74\\n00:04:45,684 --> 00:04:49,139\\nainsi que dans les catégories, est possible chercher dans les galeries,\\n\\n75\\n00:04:49,190 --> 00:04:51,584\\nqui sont des pages spécifiquement créées\\n\\n76\\n00:04:51,590 --> 00:04:54,682\\npour accueillir des ressources sur un sujet particulier.\\n\\n77\\n00:04:54,964 --> 00:04:58,377\\nLes discussions à propos d\\'un contenu spécifique ont lieu\\n\\n78\\n00:04:58,408 --> 00:05:01,966\\nsur la page de discussion dédiée à côté de chaque ressource de Commons,\\n\\n79\\n00:05:02,016 --> 00:05:05,889\\ntandis que les discussions générales ont lieu sur une page spécifique.\\n\\n80\\n00:05:06,024 --> 00:05:08,918\\nLes communications sont faites principalement en anglais,\\n\\n81\\n00:05:08,966 --> 00:05:12,569\\nmais des pages dédiées existent qui permettent d\\'échanger dans d\\'autre langues.\\n\\n82\\n00:05:12,853 --> 00:05:16,496\\nPour les problèmes à caractère technique on trouve un \"bureau d\\'information\"\\n\\n83\\n00:05:16,535 --> 00:05:20,048\\net de nombreuses pages d\\'aide, traduites en différentes langues.\\n\\n84\\n00:05:20,222 --> 00:05:23,240\\nPour des questions spécifiques ou particulièrement complexes,\\n\\n85\\n00:05:23,240 --> 00:05:26,739\\non peut demander aux administrateurs, qui sont des bénévoles\\n\\n86\\n00:05:26,783 --> 00:05:29,486\\nqui ont gagné avec le temps la confiance de la communauté\\n\\n87\\n00:05:29,508 --> 00:05:33,164\\ngrâce à leur connaissance du projet. Eux seuls sont autorisés\\n\\n88\\n00:05:33,201 --> 00:05:35,647\\nà exécuter certaines opérations délicates,\\n\\n89\\n00:05:35,648 --> 00:05:38,603\\ncomme par exemple la suppression d\\'une ressource.\\n\\n90\\n00:05:39,690 --> 00:05:43,318\\nL\\'utilisateur d\\'une ressource de Commons doit toujours s\\'assurer que\\n\\n91\\n00:05:43,312 --> 00:05:46,334\\nles lois de son propre pays de provenance sont respectées.\\n\\n92\\n00:05:46,476 --> 00:05:48,614\\nCommons ne peut garantir la légalité\\n\\n93\\n00:05:48,683 --> 00:05:51,355\\nde l\\'utilisation d\\'une ressource dans tous les contextes possibles,\\n\\n94\\n00:05:51,362 --> 00:05:54,260\\nni sa fiabilité ou son exactitude.\\n\\n95\\n00:05:54,307 --> 00:05:58,402\\nmais il est incroyable de voir combien de ressources valables et utilisables ont été téléversées.\\n\\n96\\n00:05:59,339 --> 00:06:03,755\\nDe plus en plus d\\'archives d\\'état, de musées, de bibliothèques, de collections privées\\n\\n97\\n00:06:03,774 --> 00:06:07,015\\neffectuent des dons de ressources, petits ou grands\\n\\n98\\n00:06:07,063 --> 00:06:10,003\\nqui deviennent ainsi un patrimoine utilisable par tous.\\n\\n99\\n00:06:10,655 --> 00:06:14,854\\nPlusieurs photographes professionnels publient leurs œuvres sur Commons,\\n\\n100\\n00:06:14,871 --> 00:06:18,240\\nfiers de voir leur travail repris d\\'un bout à l\\'autre du monde\\n\\n101\\n00:06:18,413 --> 00:06:22,119\\nIl arrive aussi que des illustrateurs publient sur Commons\\n\\n102\\n00:06:22,123 --> 00:06:26,151\\ndes schémas ou des diagrammes particulièrement efficaces et élégants.\\n\\n103\\n00:06:26,496 --> 00:06:30,857\\nIl existe plusieurs mécanismes permettant de reconnaître les ressources de qualité :\\n\\n104\\n00:06:30,867 --> 00:06:35,316\\nPar exemple, chaque année se tient un concours destiné à choisir la \"photo de l\\'année\"\\n\\n105\\n00:06:35,618 --> 00:06:38,555\\nUne autre sélection choisit les images les plus belles\\n\\n106\\n00:06:38,559 --> 00:06:40,828\\ncréées par les utilisateurs de Commons\\n\\n107\\n00:06:40,841 --> 00:06:45,220\\net une autre encore prime les images les plus efficaces dans leur catégorie.\\n\\n108\\n00:06:45,462 --> 00:06:49,511\\nTous les jours, une image \"particulièrement intéressante\" est sélectionnée\\n\\n109\\n00:06:49,532 --> 00:06:53,676\\net cette pratique existe aussi pour les autres ressources multimédia.\\n\\n110\\n00:06:54,345 --> 00:06:56,682\\nPour soutenir Commons financièrement\\n\\n111\\n00:06:56,766 --> 00:06:59,570\\nvous pouvez faire un don à la Wikimedia Foundation\\n\\n112\\n00:06:59,599 --> 00:07:03,338\\nou vous pouvez choisir de soutenir (aussi avec les 0,5% [applicable en Italie])\\n\\n113\\n00:07:03,359 --> 00:07:06,715\\nWikimedia Italia, une association à but non lucratif\\n\\n114\\n00:07:06,743 --> 00:07:08,757\\nqui s\\'occupe de promouvoir, en Italie,\\n\\n115\\n00:07:08,792 --> 00:07:11,826\\nCommons et les autres projets de la Wikimedia Foundation.',\n", + " 'bytes': 11455,\n", + " 'sha1': 'o4m7zb1n4bxpu0bbjz3ro0cvzufre7k',\n", + " 'parent_id': 45195257,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 44842340,\n", + " 'timestamp': '2010-10-08T20:47:47Z',\n", + " 'user': {'text': '80.174.212.29'},\n", + " 'page': {'id': 11733127,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,000 --> 00:00:02,000 El meu nom d'usuari és Bücherwürmlein 2 00:00:02,000 --> 00:00:03,000 Lila roja 3 00:00:04,000 --> 00:00:05,000 yuyu 4 00:00:...'\",\n", + " 'text': \"1 00:00:01,000 --> 00:00:02,000 El meu nom d'usuari és Bücherwürmlein\\n\\n2 00:00:02,000 --> 00:00:03,000 Lila roja\\n\\n3 00:00:04,000 --> 00:00:05,000 yuyu\\n\\n4 00:00:05,000 --> 00:00:07,000 Cbrown1023\\n\\n5 00:00:07,000 --> 00:00:08,000 22Kartika\\n\\n6 00:00:08,000 --> 00:00:10,000 El meu nom d'usuari és Church of emacs\\n\\n7 00:00:10,000 --> 00:00:14,000 Bücherwürmlein que és un ratolí de biblioteca en Alemany\\n\\n8 00:00:14,000 --> 00:00:16,000 Dew\\n\\n9 00:00:16,000 --> 00:00:17,000 Chomsky1\\n\\n10 00:00:17,000 --> 00:00:18,000 nasir8891\\n\\n11 00:00:18,000 --> 00:00:21,000 notafish, ja saps : « not a fish »\\n\\n12 00:00:21,000 --> 00:00:22,000 Theo10011\\n\\n13 00:00:22,000 --> 00:00:24,000 El meu nom d'usuari és Henna\\n\\n14 00:00:24,000 --> 00:00:25,000 Misou\\n\\n15 00:00:25,000 --> 00:00:26,000 El meu nom d'usuari és Lyzzy\\n\\n16 00:00:26,000 --> 00:00:30,000 wittylama, és un anagrama del meu veritable nom Liam Wyatt\\n\\n17 00:00:30,000 --> 00:00:31,000 Deryck Chan\\n\\n18 00:00:31,000 --> 00:00:32,000 Vulpeto\\n\\n19 00:00:32,000 --> 00:00:33,000 RajeshPandey\\n\\n20 00:00:33,000 --> 00:00:37,000 El meu nom d'usuari és Steven Walling, que és el meu nom real\\n\\n21 00:00:37,000 --> 00:00:38,000 El meu nom d'usuari és Waldir\\n\\n22 00:00:38,000 --> 00:00:41,000 El meu nom d'usuari és Mstislavl\\n\\n23 00:00:41,000 --> 00:00:44,000 Abbasjnr, a-doble b-a-s-j-n-r\\n\\n24 00:00:44,000 --> 00:00:49,000 El meu nom és Jdforrester i edito a la Wikipedia\",\n", + " 'bytes': 1421,\n", + " 'sha1': 'o8d0nu24agmvk1bbpd8adfok71oh3m6',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45015277,\n", + " 'timestamp': '2010-10-13T17:18:34Z',\n", + " 'user': {'id': 1314255, 'text': 'Jed-pcf'},\n", + " 'page': {'id': 11775232,\n", + " 'title': 'Miropcf-universal-subs-tutorial-step3.ogv.nn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Edited subtitles using [[Commons:UniversalSubtitles|UniversalSubs]]',\n", + " 'text': '0\\n00:00:07,04 --> 00:00:13,52\\nSchönes, wildes Lofoten - in Norwegen, Geburtsort der Giganten.\\n\\n1\\n00:00:16,2 --> 00:00:23,2\\nWir nehmen die Fähre von Reine und schlängeln uns zwischen gipfel vorwärts, -\\n\\n2\\n00:00:23,32 --> 00:00:29,36\\n- der eine Gigant steiler, stattlicher und prächtiger als der andere.\\n\\n3\\n00:00:34 --> 00:00:39,2\\nWir stehen in demütiger Verwunderung über die Freundlichkeit und die Wildheit, -\\n\\n4\\n00:00:39,32 --> 00:00:44,28\\n-während die Fähre uns vorwärts führt in den Innerseten Fjordarm, -\\n\\n5\\n00:00:44,4 --> 00:00:51,16\\n- zu den kleinen verlassenen Heimen am ende des Fjordes.\\n\\n6\\n00:01:01,64 --> 00:01:06,88\\nWir sind im Kirkefjord, auf dem südlichsten Punkt der Moskenesinsel.\\n\\n7\\n00:01:07 --> 00:01:13,72\\nWir werden den Einziger treffen der noch hier ist wo es früher so viele gab.\\n\\n8\\n00:01:14,32 --> 00:01:19,48\\n-Guten Tag. Bist du Oddvar? -Ja, Oddvar Berntsen. Wilkommen.\\n\\n9\\n00:01:19,6 --> 00:01:26\\nDer Einzelsiedler, der hier wohnt, in einer der meist fantastischen Landschaften, die ich gesehen habe.\\n\\n10\\n00:01:26,12 --> 00:01:32,16\\n-Viele andere finden das auch. -Stell dir vor das niemand sonst hier wohnen möchte?\\n\\n11\\n00:01:32,28 --> 00:01:38,64\\nHier ist die Post des Tages. Es ist wichtig mit der Zeit mitzuhalten.\\n\\n12\\n00:01:38,8 --> 00:01:43,08\\nOddvar Berntsen HeiÃ\\x9ft der Einsiedler im Kirkefjord.\\n\\n13\\n00:01:43,2 --> 00:01:47,76\\nAls er hier groÃ\\x9f wurde, hatte er über 300 Nachbarn um sich.\\n\\n14\\n00:01:47,92 --> 00:01:52,36\\nJetzt brennt das Licht nur in einem Haus, und der Kontakt zur AuÃ\\x9fenwelt -\\n\\n15\\n00:01:52,48 --> 00:01:55,88\\n- wird durch Zeitungen aufrecht erhalten.\\n\\n16\\n00:01:56,04 --> 00:02:01,2\\nEr liest, dass die Mädels dabei sind die Fischereiflotte zu erobern.\\n\\n17\\n00:02:01,36 --> 00:02:06,64\\nAber selbst wurde sein Herz nie erobert, und andere Herzen hat er auch nicht erobert.\\n\\n18\\n00:02:06,76 --> 00:02:11,76\\nNach dem Krieg verlasen die Frauen den Ort, es gab keine Arbeitsplätze.\\n\\n19\\n00:02:11,88 --> 00:02:16,52\\nDie die es noch gab, waren sehr umstritten.\\n\\n20\\n00:02:16,64 --> 00:02:23,2\\nIch habe meinen Kopf nicht vorgestreckt. Die dem am Topf am nächsten waren, haben gewonnen.\\n\\n21\\n00:02:23,36 --> 00:02:28,68\\nJetzt kann man die Schuld darauf legen, wenn man nicht fertigbringt.\\n\\n22\\n00:02:28,8 --> 00:02:34,72\\nWurden es viele einsame und traurige Stunden?\\n\\n23\\n00:02:34,84 --> 00:02:40,68\\nIch weiÃ\\x9f nicht. Als ich noch arbeitstätig war, war es nicht einsam.\\n\\n24\\n00:02:40,8 --> 00:02:45,12\\n-Und jetzt? -Ja, ja ...\\n\\n25\\n00:02:45,24 --> 00:02:52,6\\nIch bin im Grunde darauf eingestellt ein ruhiges Leben und einen ruhigen Ruhestand zu verbringen.\\n\\n26\\n00:02:54,24 --> 00:03:01,92\\nHier gehst du alleine in den langen, dunklen Winterabenden.\\n\\n27\\n00:03:02,04 --> 00:03:07,48\\n-Was machst du mit der Zeit? -Nicht so viel.\\n\\n28\\n00:03:07,6 --> 00:03:13,28\\nIch mache das, was im Haus nötig ist -Kleider waschen und kochen.\\n\\n29\\n00:03:14,88 --> 00:03:18,28\\nUnd am Abend dann?\\n\\n30\\n00:03:18,4 --> 00:03:24,08\\nDann gucke ich Fernsehen, bis ich genug gesehen habe und schlafen gehe.\\n\\n31\\n00:03:24,24 --> 00:03:30\\nDu sitzt hier, nicht nur mit Zeitungen, aber auch mit einem wohlbekannten Buch ...\\n\\n32\\n00:03:30,12 --> 00:03:37,08\\n-Was bedeutet das Buch für dich? -Ich glaube an das, was in der Bibel steht.\\n\\n33\\n00:03:39,16 --> 00:03:44,12\\nIch bin in einem christlichen Zuhause Geboren und aufgewachsen.\\n\\n34\\n00:03:48,76 --> 00:03:53,56\\nDer Schnee kam mit der Nacht, und wir erwachen zu Regenschauern zwischen den Bergen -\\n\\n35\\n00:03:53,68 --> 00:03:58,2\\n- und ein Wetter zum Fischen in Weiss gekleidet.\\n\\n36\\n00:04:01,96 --> 00:04:07,04\\nDie Stille liegt über die verlassenen Häuser.\\n\\n37\\n00:04:10,84 --> 00:04:16,52\\nRaues Geschrei kommt von den hungrigen Möven und das Rauschen des Südwestwinds -\\n\\n38\\n00:04:16,64 --> 00:04:21,04\\n- sind die einziger Geräusche des Lebens, -\\n\\n39\\n00:04:21,16 --> 00:04:26,76\\n- bis Oddvar Berntsen auf den Beinen ist.\\n\\n40\\n00:04:35,6 --> 00:04:40,72\\nFür den Einsiedler bedeutet der Schnee Arbeit.\\n\\n41\\n00:04:42,68 --> 00:04:48,8\\nDer Weg muss offen gehalten werden, damit er zur Anlegestelle kann -\\n\\n42\\n00:04:48,92 --> 00:04:53,4\\n- und seine tägliche Wanderung entlang den Wegen machen kann.\\n\\n43\\n00:04:53,52 --> 00:04:58,8\\nUnd jetzt hat er nur sich selbst an den er sich wenden kann.\\n\\n44\\n00:05:05,36 --> 00:05:10,16\\nDas Wetter wird klar als Oddvar sich auf seinen nachmittags Spaziergang begibt, -\\n\\n45\\n00:05:10,28 --> 00:05:14,76\\n- vorbei an den leblosen Fischerhäusern und die leeren Trocknungsstative.\\n\\n46\\n00:05:14,88 --> 00:05:19,08\\nIn der Zeit, als es noch hier vor Leben sprudelte. Es war schade -\\n\\n47\\n00:05:19,24 --> 00:05:24,52\\n- dass die Verhältnisse sich änderten damit die Leute von hier weg mussten.\\n\\n48\\n00:05:24,64 --> 00:05:30,64\\nEs gab hier eine Schule und ein Laden. Die die hier waren, waren Fischerbauern.\\n\\n49\\n00:05:30,76 --> 00:05:38,24\\nSie haben gefischt, und im Sommer haben sie das Heu unter Dach gebracht.\\n\\n50\\n00:05:38,4 --> 00:05:44,28\\n-Wie kam es, dass alle hier weg mussten? -Das kann man sich fragen ...\\n\\n51\\n00:05:44,4 --> 00:05:50,6\\nGibt es kein Weg, und die Jungen davon reisen, dann endet es.\\n\\n52\\n00:05:50,72 --> 00:05:58,28\\nFamilien reisten auch ab. Wenn es erst mal los geht, dann braucht es nicht viel-\\n\\n53\\n00:05:58,4 --> 00:06:02,84\\n- bis es so endet.\\n\\n54\\n00:06:03 --> 00:06:09,64\\n-Glaubst du die Leute, währen geblieben, hätte es einen Weg gegeben? -Das glaube ich.\\n\\n55\\n00:06:09,76 --> 00:06:15,16\\nSie könnten so gut hier wohnen wie in Reine.\\n\\n56\\n00:06:15,28 --> 00:06:20,52\\n-Bist du von der Kommune enttäuscht? -entteuscht und enttäuscht ...\\n\\n57\\n00:06:20,68 --> 00:06:24,96\\nDas kann man eine Weile sein.\\n\\n58\\n00:06:25,08 --> 00:06:30,04\\nAber wir waren gute Steuerbezahler.\\n\\n59\\n00:06:30,24 --> 00:06:36,28\\nDi Kommune hat viele Millionen bekommen, aber wir haben wenig zurück bekommen.\\n\\n60\\n00:06:37,96 --> 00:06:42,56\\nAuf den Weg durch das Wetter treffen wir einen anderen Menschen.\\n\\n61\\n00:06:42,68 --> 00:06:48,36\\nSie kommt, um sich um ein Haus zu kümmern. Sie kommt aus der Ukraine und heiÃ\\x9ft Nataliya Hansen -\\n\\n62\\n00:06:48,48 --> 00:06:53,36\\n- und ist mit einem Mann verheiratet der einer der letzten waren die von hier fort gingen.\\n\\n63\\n00:06:53,48 --> 00:07:00,2\\nSie haben das Fischerdorf verlassen nach dem Nataliya hier ein Jahr lang lebte.\\n\\n64\\n00:07:00,32 --> 00:07:05,32\\n-Wie war das Jahr? -Ein glückliches Jahr.\\n\\n65\\n00:07:05,44 --> 00:07:09,88\\nWir haben ein Sprichwort:\\n\\n66\\n00:07:10 --> 00:07:17\\nMit denen man liebt, kann man in ein Zelt wohnen, und glücklich sein.\\n\\n67\\n00:07:17,12 --> 00:07:22,32\\nEs war also der Mann und nicht der Ort der dich glücklich machte?\\n\\n68\\n00:07:22,44 --> 00:07:27,88\\nBeides, aber ersten meinen Mann.\\n\\n69\\n00:07:28,56 --> 00:07:35,12\\nUm im Land bleiben zu können brauchte sie Arbeit. Es gab hier keine.\\n\\n70\\n00:07:35,28 --> 00:07:40,16\\nDeshalb musste sie und ihr Mann umziehen.\\n\\n71\\n00:07:40,96 --> 00:07:44,44\\nWas war so gut am Kirkefjord?\\n\\n72\\n00:07:44,56 --> 00:07:49,2\\nDass es so still ist, und die schöne Natur.\\n\\n73\\n00:07:49,32 --> 00:07:55,28\\nWir können zusammen wandern und das Leben genieÃ\\x9fen.\\n\\n74\\n00:07:55,4 --> 00:08:01,72\\nDer Kirkefjord ist der schönste Ort der Welt.\\n\\n75\\n00:08:14,16 --> 00:08:19,68\\nOddvar hat seinen eigenen Sjark, mit dem er ab und zu eine Fahrt macht, -\\n\\n76\\n00:08:19,8 --> 00:08:25,64\\n- obwohl es nicht viele Fische gibt, und er alleine an Bord ist.\\n\\n77\\n00:08:25,8 --> 00:08:29,96\\nMit Notleine und Rettungsweste fühlt er sich sicher.\\n\\n78\\n00:08:30,12 --> 00:08:34,6\\nEr hat davor keine Angst, alleine zu sein, auf dem Wasser oder zu Lande.\\n\\n79\\n00:08:34,72 --> 00:08:39,92\\nIch habe keine Angst davor Krank zu werden.\\n\\n80\\n00:08:40,04 --> 00:08:45,8\\nÃ\\x9cberall wo man ist... Geschieht dir etwas, dann geschieht dir etwas.\\n\\n81\\n00:08:48,84 --> 00:08:55,6\\nEine Frau hier drüben sagte: \"Den der der Herr bewahren will, ist auÃ\\x9fer Gefahr.\"\\n\\n82\\n00:08:59,76 --> 00:09:05,44\\nEs geht in hellere Zeiten Die Sonne erreicht schon die ersten Häuser\\n\\n83\\n00:09:06,76 --> 00:09:12,24\\nUnd dann kommen die Touristen wieder, und es gibt wider auf dem Fjord Leben.\\n\\n84\\n00:09:12,36 --> 00:09:17,28\\n-Freust du dich darauf? -Ja, das ist klar.\\n\\n85\\n00:09:17,4 --> 00:09:21,16\\nAlle mögen das Licht.\\n\\n86\\n00:09:57,6 --> 00:10:03,12\\nDie Sonne und das Licht sind zurück, und einige von denen die in der dunklen Zeit verreisten, -\\n\\n87\\n00:10:03,24 --> 00:10:08,28\\n- sind zurückgekehrt. Ragnhild Berntsen ist die Erste, die kommt.\\n\\n88\\n00:10:08,4 --> 00:10:13,8\\nSie kümmert sich um alle, die am Kirkefjord leben möchten.\\n\\n89\\n00:10:18,84 --> 00:10:23,96\\n-Kümmerst du dich um die Möven? -Ja, das tue ich.\\n\\n90\\n00:10:24,12 --> 00:10:29,16\\nIch habe meine zwei Möven. Zwei bestimmte.\\n\\n91\\n00:10:29,28 --> 00:10:36,4\\nJoffen og Kamilla. Sie kommen jedes Jahr. Sie gehören dazu.\\n\\n92\\n00:10:36,52 --> 00:10:41,84\\n-Haben sie hier ein Nest? -Ja. Sie kommen mit ihren Kindern.\\n\\n93\\n00:10:42 --> 00:10:46,72\\n-Dann bekommen sie Haberflocken. -Hast du andere Tiere?\\n\\n94\\n00:10:46,84 --> 00:10:51,4\\nGestern sprangen drei Kaninchen hier drauÃ\\x9fen.\\n\\n95\\n00:10:51,56 --> 00:10:58,28\\nSie mögen Blumen, deshalb nehme ich sie jeden Abend rein.\\n\\n96\\n00:10:59,56 --> 00:11:03,8\\nJetzt haben sie die mit der Türmatte angefangen ...\\n\\n97\\n00:11:05,16 --> 00:11:11,88\\n-Meinen sie die glauben das ist Gras? -Ich weiÃ\\x9f nicht, was sie glauben.\\n\\n98\\n00:11:12 --> 00:11:17\\nHier haben sie heute Nacht geknabbert.\\n\\n99\\n00:11:20,72 --> 00:11:25,72\\nBerny Rusvik hat auch den weg zurück in die Heimat gefunden.\\n\\n100\\n00:11:25,84 --> 00:11:29,36\\nSie ist die Schwester von Oddvar und wohnt in Gravdal.\\n\\n101\\n00:11:29,48 --> 00:11:36,64\\nSie ist eine Freundin von Ragnhild, und es kommt zu ein paar Besuchen.\\n\\n102\\n00:11:38,6 --> 00:11:43,56\\n-Ich komme mit der Fähre. -Wie kommst du zurück?\\n\\n103\\n00:11:43,68 --> 00:11:49,44\\nEs ist schön, das ist der schönste Ort auf der Welt.\\n\\n104\\n00:11:49,56 --> 00:11:54,84\\n-Und trotz dem bis du gegangen? WeiÃ\\x9ft du warum?\\n\\n105\\n00:11:55 --> 00:12:01,84\\nDie Menschen fingen an zu verschwinden. Wir wollten hier ein neues Haus bauen.\\n\\n106\\n00:12:02 --> 00:12:08,88\\nAber vielleicht blieben keine Leute mehr. Deshalb sind wir Ostwärtz gezogen.\\n\\n107\\n00:12:09,04 --> 00:12:14,08\\n-Bereust du es? -Nein. Ich mag es dort auch.\\n\\n108\\n00:12:14,24 --> 00:12:20,96\\nAber es ist schön wider den Fjord zu besuchen.\\n\\n109\\n00:12:21,08 --> 00:12:26,2\\n-Nicht wahr, es ist schön? -Ja. Und es ist ja unser Zuhause.\\n\\n110\\n00:12:26,36 --> 00:12:29,44\\nDu Ragnhild möchtest nicht umziehen?\\n\\n111\\n00:12:29,56 --> 00:12:34,24\\nIch wollte gerne hier bleiben Solange ich es schaffte.\\n\\n112\\n00:12:34,4 --> 00:12:40,88\\nAber die letzten beiden Winter musstest du aufgeben. Erzähl.\\n\\n113\\n00:12:42,88 --> 00:12:49,08\\nIch durfte nicht hier bleiben. Die Kinder wollten nicht, dass ich hier alleine wohne.\\n\\n114\\n00:12:49,84 --> 00:12:55,52\\nWas ist hier so schön im Winter?\\n\\n115\\n00:12:55,64 --> 00:13:00,88\\n-Glaubst du es, ist schöner in Reine? -Da muss man hin?\\n\\n116\\n00:13:01,08 --> 00:13:06,84\\n-Da habe ich ne schöne Wohnung. -Was machst du da im Winter?\\n\\n117\\n00:13:06,96 --> 00:13:12,84\\n-Man sitzt da in der Wohnung. -Wartet auf den Abend und die Bettzeit.\\n\\n118\\n00:13:13 --> 00:13:17\\nWartet auf den Sommer, damit man hier her kann.\\n\\n119\\n00:13:17,12 --> 00:13:21,84\\n-Du magst es nicht da? -Ja.\\n\\n120\\n00:13:22 --> 00:13:28,76\\nIch bin oft hier. Ich reise wenn ich möchte. Der Fjord ist so schön.\\n\\n121\\n00:13:28,88 --> 00:13:35,68\\nMan braucht Luft ... Hier drinnen ist es so schön.\\n\\n122\\n00:13:36,76 --> 00:13:41,08\\nIch finde du solltest zurückziehen ...\\n\\n123\\n00:13:42,12 --> 00:13:47,04\\nJa, und mit Oddvar zusammen sein. Dann wäre ich auch hier.\\n\\n124\\n00:13:47,16 --> 00:13:52,8\\n-Ist das ein Versprechen? -Das wäre nicht unmöglich.\\n\\n125\\n00:13:52,92 --> 00:13:58,12\\nIch habe ein Haus, wo ich wohnen kann.\\n\\n126\\n00:14:15,12 --> 00:14:20,6\\nDie meisten gaben auf, aber Oddvar schleift seine Sense und möchte weiter machen.\\n\\n127\\n00:14:20,76 --> 00:14:25,56\\nDas Feld, das sein Vater und sein GroÃ\\x9fvater räumten, müssen gepflegt werden.\\n\\n128\\n00:14:25,68 --> 00:14:30,28\\nVon hier weg ist undiskutabel.\\n\\n129\\n00:14:30,76 --> 00:14:36,72\\nEr hält hier nicht nur die Stellung. Auf einem Nes weiter drauÃ\\x9fen, auf Rostad, -\\n\\n130\\n00:14:36,84 --> 00:14:41,92\\n- wohnen ein paar Nachbarn. Wir fahren, um sie zu begrüÃ\\x9fen.\\n\\n131\\n00:14:43,36 --> 00:14:49,44\\n-Was machst du hier, Oddvar? -Ich mag es dich zu besuchen.\\n\\n132\\n00:14:49,6 --> 00:14:53,68\\n-Wie geht es? -Gut.\\n\\n133\\n00:14:55,52 --> 00:14:59,52\\n-Du magst es hier? -Ja, sehr.\\n\\n134\\n00:14:59,64 --> 00:15:03,48\\nWas hältst du von denen die den Ort verlasen?\\n\\n135\\n00:15:03,6 --> 00:15:09,84\\nIch verstehe sie. Es ist kein Ort für Leute mit Arbeit.\\n\\n136\\n00:15:09,96 --> 00:15:15,16\\n-Warum bist du geblieben? -Ich habe es hier gut.\\n\\n137\\n00:15:15,28 --> 00:15:19,56\\nUnd ich musste auf meine Eltern aufpassen, bis sie von uns gingen.\\n\\n138\\n00:15:19,68 --> 00:15:24,88\\nEs ist nur 5-6 Jahre her als meine Mutter starb.\\n\\n139\\n00:15:25 --> 00:15:28,6\\nUnd hat man sich hier einmal angesiedelt ...\\n\\n140\\n00:15:28,76 --> 00:15:34,4\\n-Hier bleibe ich, solange es geht? -Solange meine FüÃ\\x9fe mich tragen.\\n\\n141\\n00:15:34,52 --> 00:15:40\\nHört die Fähre auf zu segeln, nehmen wir das Boot um Zeitungen und Milch zu kaufen.\\n\\n142\\n00:15:40,16 --> 00:15:43,36\\nKönnte das geschehen?\\n\\n143\\n00:15:43,48 --> 00:15:47,16\\nErstmals fährt sie noch fünf Jahre.\\n\\n144\\n00:15:47,32 --> 00:15:53,92\\n-Wo hast du deinen Mann? -Er schläft. Er war eine Nacht auf dem Meer.\\n\\n145\\n00:15:54,04 --> 00:15:59,6\\nIch habe eine Kiste mit Seelachs die ich\\n\\n146\\n00:15:59,72 --> 00:16:03,72\\nWir müssen zum Friedhof. Der nächste Nachbar.\\n\\n147\\n00:16:03,84 --> 00:16:07,36\\nEs ist fast symbolisch.\\n\\n148\\n00:16:07,52 --> 00:16:13,12\\nIhr habt auch ein paar Schafe. Sie blöken ... Es ist Leben.\\n\\n149\\n00:16:13,28 --> 00:16:18,96\\nSolange etwas auf den Feldern geht, gibt es auf dem Hof Leben.\\n\\n150\\n00:16:22,68 --> 00:16:28,12\\n-Thora Amalie Berntsen ... -Das war meine Mutter.\\n\\n151\\n00:16:28,96 --> 00:16:35,16\\nDer Friedhof wird nicht so gut gepflegt.\\n\\n152\\n00:16:35,88 --> 00:16:43,88\\nHier wie im Bunesfjord kriegen sie wenige Mittel um sie zu pflegen.\\n\\n153\\n00:16:44 --> 00:16:49,32\\nEs ist schade, dass man nicht die alte Kultur pflegt\\n\\n154\\n00:16:49,44 --> 00:16:53,76\\n- Die Kommune hat die Verantwortung? -Ja, das glaube ich.\\n\\n155\\n00:16:53,92 --> 00:16:59,44\\nDie Vögel mögen es, dass das Grass nicht geschnitten wird. Haben sie Neste?\\n\\n156\\n00:16:59,56 --> 00:17:03,32\\nJa.\\n\\n157\\n00:17:10,88 --> 00:17:15,16\\nAuch Rostad wird davon geprägt, dass die Zeit verschwunden ist.\\n\\n158\\n00:17:15,28 --> 00:17:20,08\\nDas ist von dem Laden noch übrig.\\n\\n159\\n00:17:21,56 --> 00:17:26,84\\nWir gehen zu dem was noch von dem Zuhause von Torgunn übrig ist.\\n\\n160\\n00:17:27 --> 00:17:34,44\\nIn 50-Jahren kam eine Lawine und nahm das Haus von den Mauern mit 9 Menschen, -\\n\\n161\\n00:17:34,56 --> 00:17:38,72\\n- darunter eine schwangere Mutter.\\n\\n162\\n00:17:38,84 --> 00:17:44,6\\nTorgunn und die Schwester Doris, die jetzt in den Ferien ist, waren dabei.\\n\\n163\\n00:17:45,6 --> 00:17:53,32\\nWir landeten unten beim Wasser. Wir lagen zwischen Holz, Mauer und Schnee ...\\n\\n164\\n00:17:53,48 --> 00:17:58,48\\nEs war so viel Schnee das wir nicht raus konnten.\\n\\n165\\n00:17:58,64 --> 00:18:02,88\\n-Einge mussten raus geschnitten werden ... -Mit der Säge.\\n\\n166\\n00:18:03 --> 00:18:07,12\\nEinige hatten den Schornstein über sich bekommen, sie konnten fast nicht Luft holen.\\n\\n167\\n00:18:07,28 --> 00:18:11,32\\nWas geschah mit der Frau die schwanger war?\\n\\n168\\n00:18:11,48 --> 00:18:16,52\\nSie war über die ganze Seite blau.\\n\\n169\\n00:18:17,48 --> 00:18:22,52\\nAls der Junge geboren wurde, war er auf der gleichen Seite blau.\\n\\n170\\n00:18:22,64 --> 00:18:27,24\\n-Er lebte nicht lange ... -Er war eine Totengeburt.\\n\\n171\\n00:18:27,36 --> 00:18:33,52\\n-Aufgrund der Lawine? -Ja, es war für alle Hardt.\\n\\n172\\n00:18:34,28 --> 00:18:39,28\\nIm gleichen Winter wurde ein Haus vom Wind zerrissen und das Boot zerstört.\\n\\n173\\n00:18:39,4 --> 00:18:44,36\\nAber der Vater hat es wider aufgebaut und einen Schutz gegen die Lawine gebaut, -\\n\\n174\\n00:18:44,52 --> 00:18:50,64\\n- im Falle es gäbe eine neue. Die Leute wollten da bleiben.\\n\\n175\\n00:18:50,76 --> 00:18:57,76\\nWenn man ein Spaziergang am Abend macht, braucht man nicht weit gehen, -\\n\\n176\\n00:18:57,88 --> 00:19:02\\n- und sich hin setzt ...\\n\\n177\\n00:19:02,12 --> 00:19:09,36\\nEs gibt so viele Geräusche die man nirgends sonnst hört.\\n\\n178\\n00:19:09,52 --> 00:19:14,64\\nVögel ... Es wäre als kommt ein Geräusch aus dem Boden.\\n\\n179\\n00:19:14,76 --> 00:19:20,2\\nDie Ruhe senkt sich über einen und man kann sich allem stellen.\\n\\n180\\n00:19:23,44 --> 00:19:29,56\\nDie Fähre von Reine kommt zwei Mal am Tag in den Kirkefjord.\\n\\n181\\n00:19:29,68 --> 00:19:33,68\\nIm Sommer gibt es oft keinen Platz mehr.\\n\\n182\\n00:19:33,8 --> 00:19:37,6\\nEinige sind Einwohner und kommen um ihr Haus und ihr Garten in standzuhalten.-\\n\\n183\\n00:19:37,76 --> 00:19:41,72\\n- oder Ferien machen. Die meisten sind Touristen-\\n\\n184\\n00:19:41,84 --> 00:19:47,8\\n- die den Weg hier hergefunden haben, die hohen Berge und das Fjordreich.\\n\\n185\\n00:19:55,92 --> 00:20:00,64\\nDer Kontrast zwischen Sommer und Winter könnte auf dem Fjord nicht gröÃ\\x9fer sein.\\n\\n186\\n00:20:00,76 --> 00:20:06,28\\nJa, es ist aber gemütlich wenn es hier ein wenig Leben gibt.\\n\\n187\\n00:20:06,4 --> 00:20:10,8\\nEs sind zwei verschiedene Welten.\\n\\n188\\n00:20:10,92 --> 00:20:16,72\\nErzähl mal über die Reisenden hier in der dunklen Zeit.\\n\\n189\\n00:20:16,84 --> 00:20:21,56\\nWie ist es hier Kapitän zu sein?\\n\\n190\\n00:20:23,52 --> 00:20:30,64\\nIn den 60-Jahren war hier dickes Eis, und die Fähre hatte Probleme.\\n\\n191\\n00:20:30,8 --> 00:20:37,04\\nIn den letzen Jahren gab es keine Probleme mit dem eis, aber mit dem Wind.\\n\\n192\\n00:20:37,2 --> 00:20:43,32\\nDie Winde bauen sich zwischen den Bergen auf.\\n\\n193\\n00:20:47,84 --> 00:20:54,6\\nEin Mal kam ein Haus das von Rostad, genommen wurde.\\n\\n194\\n00:20:54,72 --> 00:21:00,24\\nGelichzeitig kehrte sich die Fähre und Fuhr in die andere Richtung.\\n\\n195\\n00:21:00,36 --> 00:21:04,4\\nAber damals unterbrach ich die Rute und returnierte nach Reine.\\n\\n196\\n00:21:04,52 --> 00:21:08,04\\nDas war wohl am sichersten.\\n\\n197\\n00:21:09,48 --> 00:21:13,56\\nParallel mit dem Kirkefjord liegt der Bunesfjord.\\n\\n198\\n00:21:13,68 --> 00:21:20,16\\nDie Einfahrt ist nicht Tief genug, die Leute müssen in Vindstad an Land gehen.\\n\\n199\\n00:21:20,28 --> 00:21:27,32\\nAuch hier lebt ein Mensch. Aber die Häuser werden gepflegt\\n\\n200\\n00:21:27,76 --> 00:21:33,48\\nDie Schule wird ein Haus für die Touristen.\\n\\n201\\n00:21:35,68 --> 00:21:40,96\\nDie Touristen gehen den Weg entlang den Bunesfjord einwärts -\\n\\n202\\n00:21:41,08 --> 00:21:47,48\\n- und gehen an der Landenge innerhalb des Fjordendes. Sie haben ein Zeil ...\\n\\n203\\n00:22:19,08 --> 00:22:24,44\\nBunessand heiÃ\\x9ft dieser imponierende Strand.\\n\\n204\\n00:22:24,56 --> 00:22:30,16\\nAuf einem Nes am GroÃ\\x9fmeer liget der Hof Bunes.\\n\\n205\\n00:22:34,04 --> 00:22:40,12\\nIngrid Blomquist ist hier aufgewachsen. Sie lebt im Zentrum von Göteborg, -\\n\\n206\\n00:22:40,28 --> 00:22:46,28\\n- aber jeden Sommer muss sie zurück in ihr Haus am Meer.\\n\\n207\\n00:22:50,32 --> 00:22:55,52\\nHier holt sie Wasser von einer Quelle einen kleinen Kilometer entfernt.\\n\\n208\\n00:22:55,64 --> 00:23:00,88\\nHier wohnt sie ohne Strom oder Telefon. Hier lebt sie Wochen lang -\\n\\n209\\n00:23:01 --> 00:23:06,84\\n- mit den Erinnerungen an die Zeit als zwei Familien hier Wand and Wand lebten.\\n\\n210\\n00:23:08,32 --> 00:23:14\\nSie lebten von der Erde und dem Meer, bis ein Tag im letzten Kriegswinter-\\n\\n211\\n00:23:14,12 --> 00:23:18,28\\n- ihr Leben auf den Kopf stellte.\\n\\n212\\n00:23:18,4 --> 00:23:24,72\\nEine Mine explodierte vor eins der Häuser.\\n\\n213\\n00:23:24,84 --> 00:23:29,64\\nEs war eine Hornmine. Die Explosion war sehr Laut.\\n\\n214\\n00:23:29,8 --> 00:23:35,8\\nDie Lampen und Fenster wurden zerstört.\\n\\n215\\n00:23:35,92 --> 00:23:40,92\\nTassen und Platten fielen runter.\\n\\n216\\n00:23:41,08 --> 00:23:46,08\\nEs war schlimmer im Nachbarhaus, wo der Onkel und die Tante wohnten.\\n\\n217\\n00:23:46,2 --> 00:23:50,08\\nMein Onkel starb.\\n\\n218\\n00:23:50,2 --> 00:23:55,92\\nDas Haus wurde schlimm angerichtet, schlimmer als unser.\\n\\n219\\n00:23:57,32 --> 00:24:05,16\\nEs wurde nie wieder aufgebaut. Boden und Wände waren schief.\\n\\n220\\n00:24:09,08 --> 00:24:14,08\\nDie Erwachsenen gingen mit den Kühen und den Schafen -\\n\\n221\\n00:24:14,24 --> 00:24:19,72\\n- über den Feldern da drüben, und haben sie da fest gemacht.\\n\\n222\\n00:24:22,52 --> 00:24:27,92\\n-Wie war der Umzugstag? -Schrecklich.\\n\\n223\\n00:24:33,72 --> 00:24:39,48\\nMan trauerte über das Haus und über den Onkel der starb, -\\n\\n224\\n00:24:39,6 --> 00:24:46,36\\n- und meine Tante war Witwe. Es war schrecklich.\\n\\n225\\n00:24:48 --> 00:24:55,96\\nIngrids GroÃ\\x9feltern verloren zwei Töchter an Tuberkulose, zwei Söhne -\\n\\n226\\n00:24:56,08 --> 00:25:03,12\\n- ans Meer, und ein fiel auf dem Eis und schlug den Kopf auf den Fels.\\n\\n227\\n00:25:03,24 --> 00:25:11,08\\nSie haben schlimm daran gearbeitet einen damit sie eine Herde halten konnten.\\n\\n228\\n00:25:11,2 --> 00:25:17,52\\nSo gar auf einer kleinen Insel fanden sie sogar ein paar Gräser.\\n\\n229\\n00:25:17,64 --> 00:25:23,4\\nUnd die Fische, die sie fingen, trugen sie den langen Weg nach Vindstad.\\n\\n230\\n00:25:23,56 --> 00:25:27,88\\nHier kletterten auch die Schulkinder\\n\\n231\\n00:25:28 --> 00:25:34,48\\nSie mussten sich an einem Seil halten, dass an den steilsten Stracken befestigt waren.\\n\\n232\\n00:25:34,6 --> 00:25:40,32\\nTrotz dem das sie 80 ist, und der Weg schwierig und lang ist, -\\n\\n233\\n00:25:40,44 --> 00:25:45,64\\n- muss die Frau von der GroÃ\\x9fstadt jeden Sommer zurückkommen.\\n\\n234\\n00:25:45,8 --> 00:25:51,68\\nIch weiÃ\\x9f nicht. Es muss der Ort sein, der schön ist.\\n\\n235\\n00:25:52,24 --> 00:25:58,8\\nEs tut einen gut. Dann siet man wie man heute lebt.\\n\\n236\\n00:25:58,92 --> 00:26:04\\nTrozt dem beklagt man sich immer.\\n\\n237\\n00:26:10,32 --> 00:26:14,52\\nIm Kirkefjord legt Oddvar Berntsen mit seinem Boot ab.\\n\\n238\\n00:26:14,64 --> 00:26:20,64\\nEr ist schon 60 Jahre lang ein Fischer und steht auf dem Deck mit der Fischleine.\\n\\n239\\n00:26:20,76 --> 00:26:25,2\\nNormalerweise fischte er im Vestfjort oder auf der AuÃ\\x9fenseite der Lofoten.\\n\\n240\\n00:26:25,32 --> 00:26:31,72\\nAber heute fischt er nach Fisch für das Mittagessen.\\n\\n241\\n00:26:33 --> 00:26:36,96\\nWie oft isst du Fisch?\\n\\n242\\n00:26:37,08 --> 00:26:41,16\\nWenn ich alleine bin, wird es sechs Mal die Woche.\\n\\n243\\n00:26:41,28 --> 00:26:44,64\\nSonntags Fleisch.\\n\\n244\\n00:26:44,84 --> 00:26:49\\nUnd Kabeljau wurde es ...?\\n\\n245\\n00:26:49,8 --> 00:26:56,44\\nIch hatte ein reiches Leben. Ich bin frei.\\n\\n246\\n00:27:00,48 --> 00:27:07\\nUnd muss mit niemandem streiten oder streiken.\\n\\n247\\n00:27:09,12 --> 00:27:14,96\\nIch habe schöne Natur gesehen und das, was im Meer lebt, -\\n\\n248\\n00:27:15,08 --> 00:27:21\\n- aber genau so Veil das zwischen Himmel und Erde fliegt und den Kampf zwischen ihnen.\\n\\n249\\n00:28:04,16 --> 00:28:09,2\\nIch weiÃ\\x9f nicht, wie viel Zeit mir noch bleibt.\\n\\n250\\n00:28:09,32 --> 00:28:14,76\\nIch bin so alt das es bald geschafft ist.\\n\\n251\\n00:28:14,88 --> 00:28:21,28\\n-Du bleibst hier so lange wie möglich? -Ja, solange ich gesund bin.\\n\\n252\\n00:28:22,2 --> 00:28:28,36\\nAber du vermisst nicht mit Leuten zusammen zu sein?\\n\\n253\\n00:28:29,12 --> 00:28:36,64\\nIn meiner Kommune ... Glaube ich nicht, dass die Leute einander viel besuchen.\\n\\n254\\n00:28:38,12 --> 00:28:42,4\\nAlle mit ihrem Leben beschäftigt.\\n\\n255\\n00:28:56,04 --> 00:28:59,64',\n", + " 'bytes': 23522,\n", + " 'sha1': 'cnnd3y9clsdw2ld1b692x19cl9rc3ow',\n", + " 'parent_id': 45014387,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45014476,\n", + " 'timestamp': '2010-10-13T16:59:22Z',\n", + " 'user': {'text': '78.1.118.162'},\n", + " 'page': {'id': 11775258,\n", + " 'title': 'Miropcf-universal-subs-tutorial-step3.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:11,73 --> 00:00:15,77 Film wypeÅ\\x82nia lukÄ\\x99 pomiÄ\\x99dzy tymi, którzy ocaleli a widzem 2 00:00:15,77 --> 00:00:18,98 pomiÄ\\x99dzy patrzeniem a wprowad...'\",\n", + " 'text': '1\\n00:00:11,73 --> 00:00:15,77\\nFilm wypeÅ\\x82nia lukÄ\\x99 pomiÄ\\x99dzy tymi, którzy ocaleli a widzem\\n\\n2\\n00:00:15,77 --> 00:00:18,98\\npomiÄ\\x99dzy patrzeniem a wprowadzaniem zmian,\\n\\n3\\n00:00:18,98 --> 00:00:22,77\\nCelem filmów w WITNESS jest opowiedzenie historii\\n\\n4\\n00:00:22,77 --> 00:00:26,04\\n\\n\\n5\\n00:00:26,73 --> 00:00:31,48\\nWITNESS przywraca wÅ\\x82adzÄ\\x99 kobietom już od 17 lat\\n\\n6\\n00:00:31,48 --> 00:00:37,54\\nwspóÅ\\x82pracuje z różnymi organizacjami i podejmuje dziaÅ\\x82ania dotyczÄ\\x85ce \\n\\n7\\n00:00:39,18 --> 00:00:42,34\\npoczÄ\\x85wszy od handlu kobietami w Europie Wschodniej\\n\\n8\\n00:00:42,34 --> 00:00:45,95\\npoprzez \\n\\n9\\n00:00:45,95 --> 00:00:50,28\\naż po ochronÄ\\x99 osób starszych przed wykorzystywaniem tu w Stanach Zjednoczonych...\\n\\n10\\n00:00:50,28 --> 00:00:52,62\\nWITNESS odmienia życia\\n\\n11\\n00:00:53,66 --> 00:00:57,34\\nKobiety, których prawa czÅ\\x82owieka zostaÅ\\x82y wykorzystane a którym udaÅ\\x82o siÄ\\x99 przeżyÄ\\x87 gÅ\\x82oÅ\\x9bno mówiÄ\\x85\\n\\n12\\n00:00:57,34 --> 00:01:00,63\\ntak aby \\n\\n13\\n00:01:18,78 --> 00:01:21,58\\nPrzemoc wobec kobiet w Zimbabwe ma na celu\\n\\n14\\n00:01:21,58 --> 00:01:25,45\\nkobiety majÄ\\x85 coraz wiÄ\\x99kszy wpÅ\\x82yw na politykÄ\\x99\\n\\n15\\n00:01:25,45 --> 00:01:29,48\\nzatrzymaÄ\\x87 ich wpÅ\\x82yw i zaangażowanie w politykÄ\\x99\\n\\n16\\n00:01:29,48 --> 00:01:32,17\\nsÄ\\x85 one bite i wykorzystywane sexualnie\\n\\n17\\n00:01:32,17 --> 00:01:35,57\\nRAU zdecydowaÅ\\x82o siÄ\\x99 na wspóÅ\\x82pracÄ\\x99 z WITNESS\\n\\n18\\n00:01:35,57 --> 00:01:38,95\\nponieważ daje to ludziom szansÄ\\x99 obejrzenia filmów\\n\\n19\\n00:01:38,95 --> 00:01:41,77\\ni zobaczenia na wÅ\\x82asne oczy co siÄ\\x99 dzieje w Zimbabwe\\n\\n20\\n00:01:43,56 --> 00:01:47,02\\nW Jemenie WITNESS wspóÅ\\x82pracuje z Sisters Arab Forum\\n\\n21\\n00:01:47,02 --> 00:01:50,20\\naby broniÄ\\x87 praw kobiet z mniejszoÅ\\x9bci \"Akhdam\"\\n\\n22\\n00:01:59,85 --> 00:02:01,94\\nFilm zostaÅ\\x82 wyÅ\\x9bwietlony w Jemenie dla czÅ\\x82onków\\n\\n23\\n00:02:01,94 --> 00:02:05,01\\nParlamentu, dziennikarzy oraz spoÅ\\x82ecznoÅ\\x9bci lokalnej\\n\\n24\\n00:02:05,01 --> 00:02:08,34\\ni niestety jego wyÅ\\x9bwietlanie zostaÅ\\x82o zakazane\\n\\n25\\n00:02:08,58 --> 00:02:11,04\\nWITNESS pracuje nad zniesieniem owego zakazu\\n\\n26\\n00:02:12,21 --> 00:02:17,66\\nW Meksyku DUAL INJUSTICE przedstawia historiÄ\\x99 19letniej Neyry\\n\\n27\\n00:02:17,66 --> 00:02:21,70\\nktóra zaginÄ\\x99Å\\x82a w drodze do domu ze szkoÅ\\x82y w 2003r.\\n\\n28\\n00:02:27,58 --> 00:02:32,23\\nWITNESS spotkaÅ\\x82o siÄ\\x99 niedawno z prezydentem Meksyku i wybranymi przedstawicielami rzÄ\\x85du\\n\\n29\\n00:02:32,83 --> 00:02:34,94\\nOdkÄ\\x85d powataÅ\\x82Ä\\x85 specjalna grupa pracujÄ\\x85ca\\n\\n30\\n00:02:34,94 --> 00:02:37,04\\nnad zatrzymaniem przypadków zaginiÄ\\x99Ä\\x87 i morderstw\\n\\n31\\n00:02:37,04 --> 00:02:41,71\\nofiarami zostaÅ\\x82o ponad 450 dziewczÄ\\x85t i mÅ\\x82odych kobiet.\\n\\n32\\n00:02:43,10 --> 00:02:45,90\\nW Macedonii partner WITNESS \\n\\n33\\n00:02:45,90 --> 00:02:48,64\\nstara siÄ\\x99 zatrzymaÄ\\x87 dyskryminacjÄ\\x99 oraz przemoc wobec kobiet\\n\\n34\\n00:02:48,64 --> 00:02:50,65\\nÅ\\x82Ä\\x85cznie z problemem prostytucji\\n\\n35\\n00:03:05,71 --> 00:03:08,90\\nPrzemoc i dyskryminacja przeciwko kobietom i dziewczÄ\\x99tom\\n\\n36\\n00:03:08,90 --> 00:03:13,15\\njest przypadkiem najczÄ\\x99Å\\x9bciej Å\\x82amanych praw czÅ\\x82owieka\\n\\n37\\n00:03:13,15 --> 00:03:16,52\\nWITNESS daje wÅ\\x82adzÄ\\x99 tym, którzy ujmujÄ\\x85 siÄ\\x99 za szanowaniem praw kobiet\\n\\n38\\n00:03:16,52 --> 00:03:20,32\\naby niesprawiedliwoÅ\\x9bÄ\\x87 ujrzaÅ\\x82a Å\\x9bwiatÅ\\x82o dzienne, opowiada ich historie\\n\\n39\\n00:03:20,32 --> 00:03:22,89\\ni wprowadza trwaÅ\\x82e zmiany.',\n", + " 'bytes': 3434,\n", + " 'sha1': 'a8x7fir1r5oxbcc7yuokdxwn5i4kse5',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 643679315,\n", + " 'timestamp': '2022-03-24T14:41:14Z',\n", + " 'user': {'id': 9923202, 'text': 'DraftSaturn15'},\n", + " 'page': {'id': 11775302,\n", + " 'title': 'Miropcf-universal-subs-tutorial-step1.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Fixed typos',\n", + " 'text': \"1\\n00:00:01,125 --> 00:00:03,743\\nThis video will show you how universal subtitles works\\n\\n2\\n00:00:04,658 --> 00:00:06,274\\nits a three step proccess\\n\\n3\\n00:00:06,387 --> 00:00:08,187\\nso I will cover the first one here\\n\\n4\\n00:00:09,141 --> 00:00:10,848\\nto begin press play\\n\\n5\\n00:00:11,587 --> 00:00:14,264\\nyour job is to type out the words you hear\\n\\n6\\n00:00:14,887 --> 00:00:17,141\\ndont worry about typos or perfect accuracy\\n\\n7\\n00:00:17,441 --> 00:00:20,148\\nyou can fix those during the review step\\n\\n8\\n00:00:20,433 --> 00:00:23,366\\ntype everything you hear and press enter to start a new line\\n\\n9\\n00:00:24,12 --> 00:00:26,289\\nlet me explain speed modes real quick\\n\\n10\\n00:00:26,981 --> 00:00:31,443\\nit will pause automatically after 8 seconds so you can catch up\\n\\n11\\n00:00:32,133 --> 00:00:34,799\\njust press play once you have caught up\\n\\n12\\n00:00:34,799 --> 00:00:39,966\\ndon't forget that the tab key is your keyboard shortcut for playing and pausing\\n\\n13\\n00:00:39,966 --> 00:00:43,233\\nwhen you get the hang of that \\n\\n14\\n00:00:43,233 --> 00:00:45,366\\nwe recommend trying the second speed mode\\n\\n15\\n00:00:45,366 --> 00:00:47,566\\nauto pause, its really awesome \\n\\n16\\n00:00:47,566 --> 00:00:50,533\\nif you typing continuously it will pause and wait for you to catch up\\n\\n17\\n00:00:50,533 --> 00:00:54,066\\nonce your caught up it will unpause again\\n\\n18\\n00:00:54,066 --> 00:00:58,733\\njust continually type the words you hear and let auto pause \\n\\n19\\n00:00:58,733 --> 00:01:00,599\\nstart and stop the video for you\\n\\n20\\n00:01:00,599 --> 00:01:04,566\\nonce you have typed all the lines in the video its time to hit the done, next step button\",\n", + " 'bytes': 1615,\n", + " 'sha1': 'kaonoiiwtg66ksmpnw6s2rq5fkqmpd4',\n", + " 'parent_id': 121355781,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 394267936,\n", + " 'timestamp': '2020-02-13T21:39:39Z',\n", + " 'user': {'id': 2073340, 'text': 'Jdx'},\n", + " 'page': {'id': 11775363,\n", + " 'title': 'Miropcf-universal-subs-tutorial-step3.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/194.81.239.142|194.81.239.142]] ([[User talk:194.81.239.142|talk]]) to last revision by Wylve',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:01,900\\nJust one more step.\\n\\n2\\n00:00:01,900 --> 00:00:03,900\\nNow that you've synced all the lines,\\n\\n3\\n00:00:03,900 --> 00:00:06,420\\nit's time to watch the whole video straight through,\\n\\n4\\n00:00:06,420 --> 00:00:08,720\\ncorrecting any problems that you see.\\n\\n5\\n00:00:08,720 --> 00:00:11,800\\nIf there's a spelling error or problem with the text,\\n\\n6\\n00:00:11,800 --> 00:00:18,060\\nsimply click on it to edit, make your fix, and then press enter to finalize your change.\\n\\n7\\n00:00:18,060 --> 00:00:21,440\\nThe timeline allows you to adjust things very quickly.\\n\\n8\\n00:00:21,440 --> 00:00:26,740\\nIf you want to add blank space, just grab the edge of a text bubble and shrink it down.\\n\\n9\\n00:00:26,740 --> 00:00:30,820\\nYou can navigate the timeline by clicking and holding the number line.\\n\\n10\\n00:00:30,820 --> 00:00:34,960\\nWe recommend you watch the video one last time before you finish.\\n\\n11\\n00:00:34,960 --> 00:00:37,900\\nSit back and enjoy a job well done.\\n\\n12\\n00:00:37,900 --> 00:00:43,280\\nWhen you're happy with the subtitles, just click the submit button on the lower right to proceed.\\n\\n13\\n00:00:43,280 --> 00:00:46,020\\nIf you haven't logged in yet, you'll need to do this.\\n\\n14\\n00:00:46,020 --> 00:00:48,700\\nAt this point, congratulations.\\n\\n15\\n00:00:48,700 --> 00:00:53,420\\nYou've created a complete set of subtitles using Universal Subtitles!\",\n", + " 'bytes': 1361,\n", + " 'sha1': '7c29knde29dz8lestkv57eyflng470j',\n", + " 'parent_id': 387498462,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45021296,\n", + " 'timestamp': '2010-10-13T19:33:08Z',\n", + " 'user': {'id': 1314255, 'text': 'Jed-pcf'},\n", + " 'page': {'id': 11776508,\n", + " 'title': 'Miropcf-universal-subs-tutorial-step2.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'created new subtitles (test content) using [[Commons:UniversalSubtitles|UniversalSubs]]',\n", + " 'text': '1\\n00:00:00 --> 00:00:01,861\\nlike a video game\\n\\n2\\n00:00:02,276 --> 00:00:04,866\\nwhen I first hear someone speaking, I click this button\\n\\n3\\n00:00:04,866 --> 00:00:06,999\\nor i can use the down arrow on my keyboarda dn I c\\n\\n4\\n00:00:06,999 --> 00:00:08,433\\na;lsdkjf; as',\n", + " 'bytes': 264,\n", + " 'sha1': '6ezpzpfqpdy6jz6q2qmn6j8k2zgr0so',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 654905007,\n", + " 'timestamp': '2022-05-09T10:29:22Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11785444,\n", + " 'title': 'Miropcf About Universal Subtitles.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Overall subtitles update: reading speed, adjustments for layout on mobile devices, adjustments in sync etc.',\n", + " 'text': \"1\\n00:00:00,050 --> 00:00:03,190\\nWe started Universal Subtitles\\nbecause we believe\\n\\n2\\n00:00:03,190 --> 00:00:06,700\\nevery video on the web\\nshould be subtitle-able.\\n\\n3\\n00:00:06,700 --> 00:00:08,800\\nMillions of deaf\\nand hard-of-hearing viewers\\n\\n4\\n00:00:08,800 --> 00:00:11,050\\nrequire subtitles to access video.\\n\\n5\\n00:00:11,170 --> 00:00:15,410\\nVideomakers and websites should\\nreally care about this stuff too.\\n\\n6\\n00:00:15,410 --> 00:00:18,230\\nSubtitles give them access\\nto a wider audience\\n\\n7\\n00:00:18,240 --> 00:00:20,780\\nand they also get\\nbetter search rankings.\\n\\n8\\n00:00:20,780 --> 00:00:23,550\\nUniversal Subtitles\\nmakes it incredibly easy\\n\\n9\\n00:00:23,550 --> 00:00:26,940\\nto add subtitles to almost any video.\\n\\n10\\n00:00:26,940 --> 00:00:32,290\\nTake an existing video on the web,\\nsubmit the URL to our website\\n\\n11\\n00:00:32,310 --> 00:00:36,480\\nand then type along with the\\ndialog to create the subtitles.\\n\\n12\\n00:00:38,760 --> 00:00:43,650\\nAfter that, tap on your keyboard\\nto sync them with the video.\\n\\n13\\n00:00:44,220 --> 00:00:46,720\\nThen you're done\\n— we give you an embed code\\n\\n14\\n00:00:46,720 --> 00:00:49,620\\nfor the video that you\\ncan put on any website\\n\\n15\\n00:00:49,620 --> 00:00:52,560\\nat that point, viewers are able\\nto use the subtitles\\n\\n16\\n00:00:52,560 --> 00:00:55,680\\nand can also\\ncontribute to translations.\\n\\n17\\n00:00:55,770 --> 00:01:01,410\\nWe support videos on YouTube,\\nBlip.TV, Ustream, and many more.\\n\\n18\\n00:01:01,420 --> 00:01:04,610\\nPlus we're adding\\nmore services all the time.\\n\\n19\\n00:01:05,110 --> 00:01:09,050\\nUniversal Subtitles works\\nwith many popular video formats,\\n\\n20\\n00:01:09,050 --> 00:01:14,310\\nsuch as MP4, theora,\\nwebM and over HTML 5.\\n\\n21\\n00:01:14,310 --> 00:01:18,050\\nOur goal is for every video\\non the web to be subtitle-able\\n\\n22\\n00:01:18,060 --> 00:01:20,320\\nso that anyone who cares\\nabout the video\\n\\n23\\n00:01:20,320 --> 00:01:22,523\\ncan help make it more accessible.\\n1\\n00:00:00,07 --> 00:00:03,12\\nWe started Universal Subtitles because we believe\\n\\n2\\n00:00:03,17 --> 00:00:06,51\\nevery video on the web should be subtitle-able.\\n\\n3\\n00:00:06,60 --> 00:00:11,42\\nMillions of deaf and hard of hearing viewers require subtitles to access video.\\n\\n4\\n00:00:11,51 --> 00:00:15,21\\nVideomakers and websites should really care about this stuff too.\\n\\n5\\n00:00:15,30 --> 00:00:20,50\\nSubtitles give them access to a wider audience and they also get better search rankings.\\n\\n6\\n00:00:20,59 --> 00:00:26,72\\nUniversal Subtitles makes it incredibly easy to add subtitles to almost any video.\\n\\n7\\n00:00:27,01 --> 00:00:32,23\\nTake an existing video on the web, submit the URL to our website, \\n\\n8\\n00:00:32,23 --> 00:00:36,22\\nand then type along with the dialog to create the subtitles.\\n\\n9\\n00:00:38,98 --> 00:00:43,00\\nAfter that, tap on your keyboard to sync them with the video.\\n\\n10\\n00:00:44,30 --> 00:00:47,11\\nThen you're done-- we give you an embed code for the video\\n\\n11\\n00:00:47,11 --> 00:00:49,43\\nthat you can put on any website.\\n\\n12\\n00:00:49,43 --> 00:00:53,30\\nAt that point, viewers are able to use the subtitles and can also\\n\\n13\\n00:00:53,30 --> 00:00:55,67\\ncontribute to translations.\\n\\n14\\n00:00:55,73 --> 00:01:01,12\\nWe support videos on YouTube, Blip.TV, Ustream, and many more.\\n\\n15\\n00:01:01,20 --> 00:01:04,64\\nPlus, we're adding more services all the time.\\n\\n16\\n00:01:04,83 --> 00:01:08,80\\nUniversal Subtitles works with many popular video formats,\\n\\n17\\n00:01:08,80 --> 00:01:14,32\\nsuch as MP4, Theora, WebM and over HTML5.\\n\\n18\\n00:01:14,32 --> 00:01:19,25\\nOur goal is for every video on the web to be subtitle-able so that anyone who cares about\\n\\n19\\n00:01:19,25 --> 00:01:22,21\\nthe video can help make it more accessible.\",\n", + " 'bytes': 3642,\n", + " 'sha1': '2hlsste5g0cl9noumbzp93nfiejdzvo',\n", + " 'parent_id': 45070461,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 654910807,\n", + " 'timestamp': '2022-05-09T11:13:04Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11785445,\n", + " 'title': 'Miropcf About Universal Subtitles.ogv.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Overall subtitles update: reading speed, adjustments for layout on mobile devices, adjustments in sync etc. and just added right symbols',\n", + " 'text': '1\\n00:00:00,050 --> 00:00:03,190\\nΞεκινήσαμε τους Παγκόσμιους\\nΥπότιτλους γιατί πιστεύουμε\\n\\n2\\n00:00:03,190 --> 00:00:06,521\\nκάθε βίντεο στο διαδίκτυο\\nπρέπει να είναι υποτιτλίσιμο.\\n\\n3\\n00:00:06,688 --> 00:00:08,550\\nΕκατομμύρια θεατές με κώφωση ή βαρηκοΐα\\n\\n4\\n00:00:08,550 --> 00:00:11,050\\nαπαιτούν υπότιτλους\\nγια την πρόσβαση τους στα βίντεο.\\n\\n5\\n00:00:11,284 --> 00:00:13,062\\nΙστοσελίδες και όσοι φτιάχνουν βίντεο\\n\\n6\\n00:00:13,062 --> 00:00:15,450\\nθα έπρεπε επίσης να νοιάζονται\\nπραγματικά για αυτό.\\n\\n7\\n00:00:15,460 --> 00:00:17,954\\nΟι υπότιτλοι τούς δίνουν\\nπρόσβαση σε μεγαλύτερο κοινό\\n\\n8\\n00:00:17,954 --> 00:00:20,896\\nκαι επίσης εμφανίζονται ψηλότερα\\nστις κατατάξεις του ίντερνετ.\\n\\n9\\n00:00:20,896 --> 00:00:24,313\\nΗ Universal Subtitles το κάνει\\nαπίστευτα εύκολο να προσθέσει κανείς\\n\\n10\\n00:00:24,313 --> 00:00:26,940\\nυπότιτλους σε σχεδόν οποιοδήποτε βίντεο.\\n\\n11\\n00:00:26,940 --> 00:00:29,415\\nΠάρτε ένα ήδη υπάρχον\\nβίντεο από το ίντερνετ,\\n\\n12\\n00:00:29,415 --> 00:00:32,271\\nεισάγετε την ιντερνετική\\nδιεύθυνση (url) στην ιστοσελίδα μας\\n\\n13\\n00:00:32,271 --> 00:00:34,485\\nκαι μετά πληκτρολογήστε\\nπαράλληλα με το διάλογο\\n\\n14\\n00:00:34,485 --> 00:00:36,280\\nγια να δημιουργήσετε τους υπότιτλους.\\n\\n15\\n00:00:38,760 --> 00:00:43,650\\nΜετά από αυτό πατήστε στο πληκτρολόγιο σας\\nγια να τους συγχρονίσετε με το βίντεο.\\n\\n16\\n00:00:44,198 --> 00:00:47,179\\nΤότε είστε έτοιμοι! Σας δίνουμε έναν\\nembbed code για το βίντεο,\\n\\n17\\n00:00:47,179 --> 00:00:49,710\\nτο οποίο μπορείτε να βάλετε\\nσε οποιαδήποτε ιστοσελίδα.\\n\\n18\\n00:00:49,710 --> 00:00:53,202\\nΣε αυτό το σημείο, οι χρήστες μπορούν\\nνα χρησιμοποιήσουν τους υπότιτλους\\n\\n19\\n00:00:53,202 --> 00:00:55,680\\nκαι να συνεισφέρουν στις μεταφράσεις τους.\\n\\n20\\n00:00:55,770 --> 00:01:01,410\\nΥποστηρίζουμε βίντεο στο youtube, bliptv,\\nustream και σε πολλές άλλες ιστοσελίδες.\\n\\n21\\n00:01:01,420 --> 00:01:04,610\\nΕπίσης προσθέτουμε\\nπολλές υπήρεσιες όλη την ώρα.\\n\\n22\\n00:01:05,110 --> 00:01:09,050\\nΟι Universal Subtitles είναι συμβατοί\\nμε πολλές δημοφιλείς μορφές βίντεο\\n\\n23\\n00:01:09,050 --> 00:01:13,929\\nόπως MP4, Theora, WebM και HTML5.\\n\\n24\\n00:01:14,310 --> 00:01:17,884\\nΟ στόχος μας είναι να μπορεί\\nνα υποτιτλιστεί κάθε βίντεο στο ιντερνετ.\\n\\n25\\n00:01:17,911 --> 00:01:20,501\\nΈτσι ώστε οποιοσδήποτε\\nενδιαφέρεται για αυτό το βίντεο\\n\\n26\\n00:01:20,501 --> 00:01:22,523\\nνα βοηθήσει να γίνει πιο προσβάσιμο.',\n", + " 'bytes': 3420,\n", + " 'sha1': 'jlncuqy835r83r40ett9snmvojxanp8',\n", + " 'parent_id': 45070462,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 654908455,\n", + " 'timestamp': '2022-05-09T10:56:02Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 11785446,\n", + " 'title': 'Miropcf About Universal Subtitles.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Overall subtitles update: reading speed, adjustments for layout on mobile devices, adjustments in sync etc.',\n", + " 'text': \"1\\n00:00:00,050 --> 00:00:03,190\\nNous avons créé Universal Subtitles\\nparce que nous croyonsss\\n\\n2\\n00:00:03,190 --> 00:00:06,700\\nque chaque vidéo sur le Web\\ndevrait être sous-titrable.\\n\\n3\\n00:00:06,700 --> 00:00:08,695\\nDes millions d'utilisateurs malentendants\\n\\n4\\n00:00:08,695 --> 00:00:11,050\\nont besoin de sous-titres\\npour accéder aux vidéos.\\n\\n5\\n00:00:11,170 --> 00:00:15,165\\nLes créateurs et diffuseurs de vidéos\\ndevraient aussi s'en préoccuper :\\n\\n6\\n00:00:15,165 --> 00:00:18,230\\nles sous-titres leur permettent\\nde toucher un public plus large\\n\\n7\\n00:00:18,240 --> 00:00:20,780\\net améliorent leur référencement.\\n\\n8\\n00:00:20,780 --> 00:00:23,550\\nUniversal Subtitles facilite\\nl'ajout de sous-titres\\n\\n9\\n00:00:23,550 --> 00:00:26,940\\npour quasiment toutes les vidéos.\\n\\n10\\n00:00:26,940 --> 00:00:32,290\\nPrenez une vidéo existante sur le Web,\\ncopiez son adresse sur notre site,\\n\\n11\\n00:00:32,310 --> 00:00:36,480\\npuis rédigez les sous-titres\\nen suivant le dialogue.\\n\\n12\\n00:00:38,760 --> 00:00:43,650\\nEnsuite, utilisez votre clavier\\npour les synchroniser avec la vidéo.\\n\\n13\\n00:00:44,206 --> 00:00:46,637\\nC'est terminé. Nous vous\\ndonnons un code d'insertion\\n\\n14\\n00:00:46,637 --> 00:00:49,701\\npour la vidéo que vous pouvez\\nplacer sur n'importe quel site Web.\\n\\n15\\n00:00:49,701 --> 00:00:52,560\\nA partir de là, les spectateurs\\npeuvent voir les sous-titres\\n\\n16\\n00:00:52,560 --> 00:00:55,680\\net peuvent également\\ncontribuer aux traductions.\\n\\n17\\n00:00:55,770 --> 00:01:01,410\\nNous supportons les vidéos de YouTube, \\nBlip.TV, Ustream et bien d'autres.\\n\\n18\\n00:01:01,420 --> 00:01:04,610\\nDe plus, nous ajoutons\\nde nouveaux services régulièrement.\\n\\n19\\n00:01:05,110 --> 00:01:09,050\\nUniversal Subtitles fonctionne avec\\nde nombreux formats populaires de vidéo,\\n\\n20\\n00:01:09,050 --> 00:01:14,310\\ncomme MP4, Theora, webM, et HTML5.\\n\\n21\\n00:01:14,310 --> 00:01:18,050\\nNotre but est que chaque vidéo\\nsur le Web soit sous-titrable\\n\\n22\\n00:01:18,060 --> 00:01:20,320\\npour que quiconque se souciant de la vidéo\\n\\n23\\n00:01:20,320 --> 00:01:22,523\\npuisse aider à la rendre plus accessible.\",\n", + " 'bytes': 2081,\n", + " 'sha1': 'rekow5zhtg71zyvavclhokstch32yfn',\n", + " 'parent_id': 121354188,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 527830255,\n", + " 'timestamp': '2021-01-23T09:04:49Z',\n", + " 'user': {'id': 2366229, 'text': 'Achim55'},\n", + " 'page': {'id': 11785734,\n", + " 'title': 'Boldness and links tutorial.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/65.37.113.197|65.37.113.197]] ([[User talk:65.37.113.197|talk]]) to last revision by Sross (Public Policy)',\n", + " 'text': '0\\n00:00:00,333 --> 00:00:04,504\\nThis is a walkthrough of the basics of wiki markup:\\n\\n1\\n00:00:04,504 --> 00:00:06,606\\nhow to make bold text\\n\\n2\\n00:00:06,606 --> 00:00:08,908\\nand links to other wiki pages.\\n\\n3\\n00:00:08,908 --> 00:00:11,845\\nYou can try out everything from this video\\n\\n4\\n00:00:11,845 --> 00:00:14,514\\nin your own user sandbox page.\\n\\n5\\n00:00:14,514 --> 00:00:17,083\\nIf you don\\'t already have a sandbox page,\\n\\n6\\n00:00:17,083 --> 00:00:20,587\\nenter \"Help:Sandbox tutorial\"\\n\\n7\\n00:00:20,587 --> 00:00:22,956\\nin the Wikipedia search box.\\n\\n8\\n00:00:22,956 --> 00:00:26,259\\nThat page has instructions for starting a sandbox.\\n\\n9\\n00:00:26,259 --> 00:00:31,097\\nTo begin, press the \"edit\" button on your sandbox page.\\n\\n10\\n00:00:31,097 --> 00:00:33,266\\nThis will open an edit window,\\n\\n11\\n00:00:33,266 --> 00:00:35,802\\nwhere you can begin these exercises.\\n\\n12\\n00:00:35,802 --> 00:00:38,171\\nWe\\'ll start with the very basics:\\n\\n13\\n00:00:38,171 --> 00:00:39,739\\nbold.\\n\\n14\\n00:00:39,739 --> 00:00:44,092\\nBolded text appears at the beginning of most articles,\\n\\n15\\n00:00:44,092 --> 00:00:46,146\\nto mark the subject of the article,\\n\\n16\\n00:00:46,146 --> 00:00:48,882\\nso it\\'s one of the first things you\\'ll need to learn.\\n\\n17\\n00:00:48,882 --> 00:00:50,784\\nYou can make bold text\\n\\n18\\n00:00:50,784 --> 00:00:52,652\\nby highlighting it with your mouse\\n\\n19\\n00:00:52,652 --> 00:00:54,854\\nthen clicking the \"B\" button\\n\\n20\\n00:00:54,854 --> 00:00:56,489\\nin the edit toolbar.\\n\\n21\\n00:00:56,489 --> 00:00:59,325\\nThis adds three single quote marks\\n\\n22\\n00:00:59,325 --> 00:01:01,695\\nat the beginning of what you want to be bold,\\n\\n23\\n00:01:01,695 --> 00:01:04,764\\nand another three single quote marks at the end.\\n\\n24\\n00:01:04,764 --> 00:01:06,866\\nLet\\'s see what this looks like.\\n\\n25\\n00:01:06,866 --> 00:01:09,135\\nGo to the bottom of the edit window,\\n\\n26\\n00:01:09,135 --> 00:01:12,772\\nenter a brief edit summary to describe your edit,\\n\\n27\\n00:01:12,772 --> 00:01:14,741\\nand press \"Save page\".\\n\\n28\\n00:01:14,741 --> 00:01:16,081\\nIt\\'s good to get in the habit\\n\\n29\\n00:01:16,081 --> 00:01:19,946\\nof leaving edit summaries every time you edit.\\n\\n30\\n00:01:19,946 --> 00:01:22,382\\nIt helps you keep track of what you\\'ve done,\\n\\n31\\n00:01:22,382 --> 00:01:25,485\\nand it makes it easier to collaborate with others.\\n\\n32\\n00:01:25,485 --> 00:01:30,019\\nYou should have some bolded text on your test page now.\\n\\n33\\n00:01:30,019 --> 00:01:33,526\\nPress the edit button, and let\\'s continue.\\n\\n34\\n00:01:33,526 --> 00:01:36,463\\nThis time, we\\'ll make wikilinks.\\n\\n35\\n00:01:36,463 --> 00:01:41,167\\nThese are links that go from one page on Wikipedia\\n\\n36\\n00:01:41,167 --> 00:01:42,435\\nto another.\\n\\n37\\n00:01:42,435 --> 00:01:44,571\\nLet\\'s try it with the word \"bold\".\\n\\n38\\n00:01:44,571 --> 00:01:47,024\\nTo create a wikilink,\\n\\n39\\n00:01:47,024 --> 00:01:48,742\\nhighlight the word,\\n\\n40\\n00:01:48,742 --> 00:01:51,544\\nthen click the link icon in the edit toolbar.\\n\\n41\\n00:01:51,544 --> 00:01:55,115\\nThis brings up the insert link dialog.\\n\\n42\\n00:01:55,115 --> 00:01:57,035\\nClicking the insert link button\\n\\n43\\n00:01:57,035 --> 00:02:00,186\\nwill add the code for a wikilink:\\n\\n44\\n00:02:00,186 --> 00:02:02,422\\nTwo opening square brackets,\\n\\n45\\n00:02:02,422 --> 00:02:05,125\\nfollowed by the article you want to link to\\n\\n46\\n00:02:05,125 --> 00:02:06,086\\n--in this case, \"bold\"--\\n\\n47\\n00:02:06,086 --> 00:02:10,003\\nfollowed by two closing square brackets.\\n\\n48\\n00:02:10,003 --> 00:02:12,699\\nNow enter an edit summary and save.\\n\\n49\\n00:02:12,699 --> 00:02:15,702\\nThe word \"bold\" is now blue,\\n\\n50\\n00:02:15,702 --> 00:02:18,505\\nand links to the article about bold.\\n\\n51\\n00:02:18,505 --> 00:02:20,473\\nWell, the article for bold\\n\\n52\\n00:02:20,473 --> 00:02:23,243\\nis actually called \"Emphasis (typography)\"\\n\\n53\\n00:02:23,243 --> 00:02:25,478\\nand that\\'s where the link redirects us.\\n\\n54\\n00:02:25,478 --> 00:02:29,416\\nBut what if that\\'s not what you wanted to link to?\\n\\n55\\n00:02:29,416 --> 00:02:31,885\\nWhat if you meant \"Boldness\",\\n\\n56\\n00:02:31,885 --> 00:02:33,853\\nthe opposite of being shy?\\n\\n57\\n00:02:33,853 --> 00:02:36,056\\nLet\\'s edit the page again.\\n\\n58\\n00:02:36,056 --> 00:02:38,792\\nThis time, in the insert link dialog,\\n\\n59\\n00:02:38,792 --> 00:02:41,728\\nreplace \"bold\" with \"boldness\"\\n\\n60\\n00:02:41,728 --> 00:02:44,397\\nin the \"Target page or URL\" section.\\n\\n61\\n00:02:44,397 --> 00:02:47,667\\nNow, pressing the \"Insert link\" button\\n\\n62\\n00:02:47,667 --> 00:02:49,836\\ncreates a piped link,\\n\\n63\\n00:02:49,836 --> 00:02:52,205\\nwhich is the wiki markup for a link\\n\\n64\\n00:02:52,205 --> 00:02:56,142\\nwith text that is different from the name of the article that it points to.\\n\\n65\\n00:02:56,142 --> 00:02:59,679\\nIt consists of two opening square brackets,\\n\\n66\\n00:02:59,679 --> 00:03:00,098\\nlike a plain link,\\n\\n67\\n00:03:00,098 --> 00:03:03,917\\nfollowed by the name of the article you want to link to\\n\\n68\\n00:03:03,917 --> 00:03:05,352\\n--boldness--\\n\\n69\\n00:03:05,352 --> 00:03:06,953\\nthen, a pipe\\n\\n70\\n00:03:06,953 --> 00:03:10,156\\n--which you can insert by pressing \"shift+backslash\"\\n\\n71\\n00:03:10,156 --> 00:03:12,192\\non most keyboards--\\n\\n72\\n00:03:12,192 --> 00:03:14,227\\nafter the article name,\\n\\n73\\n00:03:14,227 --> 00:03:16,629\\nthen, the text you want for the link\\n\\n74\\n00:03:16,629 --> 00:03:17,864\\n--bold--\\n\\n75\\n00:03:17,864 --> 00:03:20,467\\nthen two closing square brackets.\\n\\n76\\n00:03:20,467 --> 00:03:24,337\\nThat\\'s like *this* generally.\\n\\n77\\n00:03:24,337 --> 00:03:26,005\\nIf you save your changes,\\n\\n78\\n00:03:26,005 --> 00:03:27,674\\nyou\\'ll see the result.\\n\\n79\\n00:03:27,674 --> 00:03:29,442\\nThe link says \"bold\",\\n\\n80\\n00:03:29,442 --> 00:03:30,844\\nand when you click,\\n\\n81\\n00:03:30,844 --> 00:03:33,279\\nyou get the article \"Boldness\".\\n\\n82\\n00:03:33,279 --> 00:03:35,248\\nSo go ahead, start editing!',\n", + " 'bytes': 5694,\n", + " 'sha1': 'ktg4llvoilcca8v1ksgpzg7mh8yeqbn',\n", + " 'parent_id': 527761181,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 578808987,\n", + " 'timestamp': '2021-08-06T22:04:49Z',\n", + " 'user': {'id': 10527654, 'text': 'Fourthmars'},\n", + " 'page': {'id': 11795064,\n", + " 'title': 'Tutorial on starting a sandbox article on Wikipedia.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,9 --> 00:00:06,239\\nThis is a walkthrough of how to start an article in a sandbox on Wikipedia.\\n\\n2\\n00:00:06,239 --> 00:00:07,907\\nYou can use a sandbox\\n\\n3\\n00:00:07,907 --> 00:00:10,477\\nto experiment with wiki syntax,\\n\\n4\\n00:00:10,477 --> 00:00:12,445\\nmake practice edits,\\n\\n5\\n00:00:12,445 --> 00:00:14,748\\ntakes notes and collect material,\\napps\\n6\\n00:00:14,748 --> 00:00:18,818\\nor draft an article that can later be moved into Wikipedia\\n\\n7\\n00:00:18,818 --> 00:00:20,653\\nTo make a user sandbox,\\n\\n8\\n00:00:20,653 --> 00:00:24,124\\nfirst, you need to log in to your user account.\\n\\n9\\n00:00:24,124 --> 00:00:27,961\\nIf you don\\'t already have one, or need help logging in,\\n\\n10\\n00:00:27,961 --> 00:00:33,5\\ntype \"Help:Logging in\" into the search box on Wikipedia.\\n\\n11\\n00:00:33,5 --> 00:00:35,368\\nThat page has information\\n\\n12\\n00:00:35,368 --> 00:00:38,038\\nabout creating an account and logging in,\\n\\n13\\n00:00:38,038 --> 00:00:40,64\\nincluding a tutorial video.\\n\\n14\\n00:00:40,64 --> 00:00:42,475\\nOnce you\\'ve logged in,\\n\\n15\\n00:00:42,475 --> 00:00:45,645\\nclick on your username at the top of the page.\\n\\n16\\n00:00:45,645 --> 00:00:48,915\\nThis will bring you to your user page.\\n\\n17\\n00:00:48,915 --> 00:00:53,386\\nYour sandbox will be a subpage of your user page.\\n\\n18\\n00:00:53,386 --> 00:00:57,624\\nWe\\'ll start by creating a link to the page title we want.\\n\\n19\\n00:00:57,624 --> 00:00:59,893\\nPress the edit button.\\n\\n20\\n00:00:59,893 --> 00:01:02,562\\nThis will bring up an edit window.\\n\\n21\\n00:01:02,562 --> 00:01:05,765\\nNow, add two opening square brackets,\\n\\n22\\n00:01:05,765 --> 00:01:07,6\\nthen a forward slash,\\n\\n23\\n00:01:07,6 --> 00:01:10,203\\nfollowed by the name of the page you want.\\n\\n24\\n00:01:10,203 --> 00:01:13,74\\nWe\\'ll use \"sandbox\" for this example.\\n\\n25\\n00:01:13,74 --> 00:01:16,576\\nThen add two closing square brackets.\\n\\n26\\n00:01:16,576 --> 00:01:20,98\\nThis is the wiki markup for making a link to a subpage.\\n\\n27\\n00:01:20,98 --> 00:01:23,717\\nNow, save your edit.\\n\\n28\\n00:01:23,717 --> 00:01:26,119\\nYou\\'ve added the link to your userpage.\\n\\n29\\n00:01:26,119 --> 00:01:27,487\\nThe link will be red,\\n\\n30\\n00:01:27,487 --> 00:01:31,091\\nbecause the page it points to doesn\\'t exist yet.\\n\\n31\\n00:01:31,091 --> 00:01:33,193\\nNow, click the link.\\n\\n32\\n00:01:33,193 --> 00:01:35,995\\nThat will bring up a page like *this*,\\n\\n33\\n00:01:35,995 --> 00:01:41,234\\nwhich says: \"Wikipedia does not have a user page with this exact name\",\\n\\n34\\n00:01:41,234 --> 00:01:43,536\\nwith an edit window beneath,\\n\\n35\\n00:01:43,536 --> 00:01:46,606\\nwhere you can begin composing your sandbox page.\\n\\n36\\n00:01:46,606 --> 00:01:49,642\\nOnce you\\'ve written a little bit of your sandbox article,\\n\\n37\\n00:01:49,642 --> 00:01:53,546\\nYou can press the \"Show preview\" button beneath the edit window\\n\\n38\\n00:01:53,546 --> 00:01:56,082\\nto see what the page will look like.\\n\\n39\\n00:01:56,082 --> 00:01:58,685\\nThen, enter an edit summary\\n\\n40\\n00:01:58,685 --> 00:02:00,487\\nin the field beneath the edit window\\n\\n41\\n00:02:00,487 --> 00:02:02,055\\nto describe what you\\'ve done,\\n\\n42\\n00:02:02,055 --> 00:02:04,09\\nand press \"Save\".\\n\\n43\\n00:02:04,09 --> 00:02:06,726\\nYou\\'ve started your sandbox article!\\n\\n44\\n00:02:06,726 --> 00:02:09,696\\nYou can always press \"Edit\" to make more changes.\\n\\n45\\n00:02:09,696 --> 0-1:0-1:0-1\\nHappy editing!',\n", + " 'bytes': 3255,\n", + " 'sha1': '62df504xaz83lj60e3lgrpobvte50nj',\n", + " 'parent_id': 362107707,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45144279,\n", + " 'timestamp': '2010-10-17T08:03:36Z',\n", + " 'user': {'id': 6282, 'text': 'Longbow4u'},\n", + " 'page': {'id': 11796153,\n", + " 'title': '051118-WSIS.2005-Bruce.Perens.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Edited subtitles using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': \"0\\n00:00:01,479 --> 00:00:04,039\\nThanks everyone, I am Bruce Perens\\n\\n1\\n00:00:04,039 --> 00:00:06,759\\nand I bring you greetings from the hundreds\\n\\n2\\n00:00:06,759 --> 00:00:11,399\\nof thousands of open source software developers from around the world\\n\\n3\\n00:00:11,399 --> 00:00:15,559\\nwe embody many of the goals of the United Nations\\n\\n4\\n00:00:15,559 --> 00:00:18,359\\nwe are a community without borders\\n\\n5\\n00:00:18,359 --> 00:00:19,839\\na global network that shares knowledge\\n\\n6\\n00:00:19,839 --> 00:00:23,999\\na social movement that produces\\n\\n7\\n00:00:23,999 --> 00:00:28,279\\nreal products available equally to the rich or poor\\n\\n8\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nan economic reality that has engaged\\n\\n9\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthe world's largest companies\\n\\n10\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand talented individuals in a collaboration of equals\",\n", + " 'bytes': 834,\n", + " 'sha1': 'lnmws6cmb2k2lh624f6egqeuyat2kx0',\n", + " 'parent_id': 45115458,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45142143,\n", + " 'timestamp': '2010-10-17T05:44:03Z',\n", + " 'user': {'id': 707267, 'text': 'SpongeSebastian'},\n", + " 'page': {'id': 11802978,\n", + " 'title': 'Folgers commercial.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:02,43 --> 00:00:06,40 -Attention, ladies, please. 2 00:00:06,40 --> 00:00:08,24 Right now, at the end of aisle 2, 3 00:00:08,24 --> 00:00:13,27 I've set ...'\",\n", + " 'text': \"1\\n00:00:02,43 --> 00:00:06,40\\n-Attention, ladies, please.\\n\\n2\\n00:00:06,40 --> 00:00:08,24\\nRight now, at the end of aisle 2,\\n\\n3\\n00:00:08,24 --> 00:00:13,27\\nI've set out a brand-new can't-miss husband-pleasing coffee.\\n\\n4\\n00:00:13,27 --> 00:00:14,78\\n-Mr. McGreggor,\\n\\n5\\n00:00:14,78 --> 00:00:16,11\\na new coffee?\\n\\n6\\n00:00:16,11 --> 00:00:19,08\\nBut you always recommended Instant Folger's.\\n\\n7\\n00:00:19,08 --> 00:00:21,32\\n-I used to recommend Instant Folger's.\\n\\n8\\n00:00:21,32 --> 00:00:22,55\\n-You do?\\n\\n9\\n00:00:22,55 --> 00:00:26,25\\n-But now I recommend New Instant Folger's.\\n\\n10\\n00:00:26,25 --> 00:00:27,86\\n-Instant Folger's is new?\\n\\n11\\n00:00:27,86 --> 00:00:28,99\\n-Sure is.\\n\\n12\\n00:00:28,99 --> 00:00:32,19\\nNew Instant Folger's tastes good as fresh perked\\n\\n13\\n00:00:32,19 --> 00:00:33,76\\nbecause it is fresh perked.\\n\\n14\\n00:00:33,76 --> 00:00:34,70\\nLook here.\\n\\n15\\n00:00:34,70 --> 00:00:37,63\\nFolger's starts with fresh-perked coffee,\\n\\n16\\n00:00:37,63 --> 00:00:41,57\\nthen they turn this percolated coffee into New Instant Folger's.\\n\\n17\\n00:00:41,57 --> 00:00:44,84\\nEvery cup tastes good as fresh perks.\\n\\n18\\n00:00:44,84 --> 00:00:46,34\\n-Because it is fresh perks.\\n\\n19\\n00:00:46,34 --> 00:00:47,27\\n-Oh, I like it better.\\n\\n20\\n00:00:47,27 --> 00:00:50,41\\nRemember, Instant Folger's is brand-new.\\n\\n21\\n00:00:50,41 --> 00:00:53,55\\nOh, Mrs. Brown, with the way your husband likes good coffee,\\n\\n22\\n00:00:53,55 --> 00:00:54,42\\nyou'd better take two.\\n\\n23\\n00:00:54,42 --> 00:00:56,62\\n-Try New Instant Folger's.\\n\\n24\\n00:00:56,62 --> 00:01:00,92\\nTastes good as fresh-perked because it is fresh-perked.\",\n", + " 'bytes': 1574,\n", + " 'sha1': 'f2u55r8fozji5arh2sw5k60idxr81ly',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45278375,\n", + " 'timestamp': '2010-10-20T23:50:08Z',\n", + " 'user': {'id': 304601, 'text': 'Goldzahn'},\n", + " 'page': {'id': 11826164,\n", + " 'title': 'Folgers.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:01,707 --> 00:00:04,154\\nHarold schmeckt der Kaffee?\\n\\n1\\n00:00:04,169 --> 00:00:05,185\\nuh-uhmmm\\n\\n2\\n00:00:05,005 --> 00:00:07,785\\nDu meinst, er ist so schlecht wie gestern?\\n\\n3\\n00:00:07,785 --> 00:00:08,962\\nuh-huh\\n\\n4\\n00:00:09 --> 00:00:10,169\\nÜberhaupt keine Verbesserung?\\n\\n5\\n00:00:10,446 --> 00:00:11,823\\nuh-uh\\n\\n6\\n00:00:12,002 --> 00:00:17\\nHarold, schüttele nicht einfach nur deinen Kopf. Sag´ mir was mit dem Kaffee nicht stimmt.\\n\\n7\\n00:00:17,538 --> 00:00:19\\nSchlechter Geschmack.\\n\\n8\\n00:00:19,477 --> 00:00:21,002\\nWas soll ich jetzt machen?\\n\\n9\\n00:00:22,623 --> 00:00:23,005\\nMary, hallo.\\n\\n10\\n00:00:23,007 --> 00:00:25\\nHallo Jane\\n\\n11\\n00:00:25,038 --> 00:00:29,246\\nKannst du mir helfen? Harold mag meinen Kaffee nicht. Welchen Kaffee nimmst du?\\n\\n12\\n00:00:30 --> 00:00:31\\nInstant Folgers\\n\\n13\\n00:00:31 --> 00:00:32\\nInstant Folgers?\\n\\n14\\n00:00:32,002 --> 00:00:34\\nSchmeckt wie frisch aufgebrüht. \\n\\n15\\n00:00:34,002 --> 00:00:37,008\\nWie frisch aufgebrüht. Ich probiere ihn.\\n\\n16\\n00:00:38,725 --> 00:00:42,008\\nJean, der Kaffee schmeckt wunderbar, weißt du das? \\n\\n17\\n00:00:42,002 --> 00:00:42,084\\num-hmmm\\n\\n18\\n00:00:43,464 --> 00:00:46\\nEs ist nicht der selbe Kaffee wie sonst? \\n\\n19\\n00:00:46,002 --> 00:00:46,502\\num-uhmmm\\n\\n20\\n00:00:47,148 --> 00:00:51,433\\nSchüttele nicht nur deinen Kopf. Warum ist der Kaffee so gut?\\n\\n21\\n00:00:52,664 --> 00:00:54,005\\nGuter Geschmack.\\n\\n22\\n00:00:55,006 --> 00:00:59\\nSchmeckt wie frisch aufgebrüht. Instant Folgers.',\n", + " 'bytes': 1447,\n", + " 'sha1': 'aius151tcpfmy6gkx6i48avri0ptqzv',\n", + " 'parent_id': 45234226,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 575585111,\n", + " 'timestamp': '2021-07-17T13:23:05Z',\n", + " 'user': {'id': 9867604, 'text': 'Mohammad ebz'},\n", + " 'page': {'id': 11856050,\n", + " 'title': 'Videoonwikipedia.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00 --> 00:00:02,202\\nYou all know Wikipedia.\\n\\n2\\n00:00:02,202 --> 00:00:05,772\\nYou use it for your papers, to write articles,\\nor just to learn something for fun.\\n\\n3\\n00:00:05,772 --> 00:00:09,042\\nNot only it is free for you to read,\\n\\n4\\n00:00:09,042 --> 00:00:11,344\\nit's free for you to contribute and improve on articles.\\n\\n5\\n00:00:11,344 --> 00:00:14,00\\nEverything you contribute has to be factual,\\n\\n6\\n00:00:14,00 --> 00:00:17,884\\nneutral in point of view, and uncensored on controversial topics.\\n\\n7\\n00:00:19,300 --> 00:00:21,655\\nWikipedia is an open community,\\n\\n8\\n00:00:21,655 --> 00:00:23,923\\nself-governing with minimal structure.\\n\\n9\\n00:00:23,923 --> 00:00:28,128\\nEveryone is a volunteer.\\n\\n10\\n00:00:28,128 --> 00:00:31,431\\nPresently, Wikipedia appears in over 260 languages,\\n\\n11\\n00:00:31,431 --> 00:00:33,733\\nwith some languages featuring thousands of articles,\\n\\n12\\n00:00:33,733 --> 00:00:37,047\\nand other languages featuring millions.\\n\\n13\\n00:00:37,047 --> 00:00:40,500\\nArticles feature in-depth information, pictures and links\\n\\n14\\n00:00:40,600 --> 00:00:42,900\\nthat help you learn more about the topic.\\n\\n15\\n00:00:43,00 --> 00:00:47,00\\nwhat if every article that you read had video?\\n\\n16\\n00:00:47,00 --> 00:00:50,00\\nWhat if you could take a tour of the pyramids of Egypt\\n\\n17\\n00:00:50,00 --> 00:00:53,00\\nor a tour down a historic town's main street\\n\\n18\\n00:00:53,00 --> 00:00:56,00\\nor watch national dance for your home country\\n\\n19\\n00:00:56,00 --> 00:01:00,00\\nnow with video on Wikipedia, you can\\n\\n20\\n00:01:00,00 --> 00:01:02,800\\nif you want to shoot a video yourself\\n\\n21\\n00:01:02,800 --> 00:01:05,100\\ntry picking out key points form the article\\n\\n22\\n00:01:05,300 --> 00:01:06,700\\nthat you think will help illustrate the topic\\n\\n23\\n00:01:06,700 --> 00:01:10,00\\nand playing with, you would like to record a head of time.\\n\\n24\\n00:01:10,00 --> 00:01:12,600\\nRemember, Wikipedia is an encyclopedia\\n\\n25\\n00:01:12,600 --> 00:01:16,00\\nso the contention be educational and informative\\n\\n26\\n00:01:16,00 --> 00:01:19,00\\nmost importantly when shooting video\\n\\n27\\n00:01:19,00 --> 00:01:22,00\\ntry to keep a steady hand or use a tripod.\\n\\n28\\n00:01:22,00 --> 00:01:24,800\\nif you don't want to record the video yourself,\\n\\n29\\n00:01:25,00 --> 00:01:27,900\\nthere are number of archives on the Internet, like archive.org\\n\\n30\\n00:01:28,00 --> 00:01:30,200\\nor Wikimedia commons that will probably\\n\\n31\\n00:01:30,200 --> 00:01:32,200\\nhave a video the best suit your article.\\n\\n32\\n00:01:34,00 --> 00:01:37,00\\njust remember, no matter what you shoot or what you find\\n\\n33\\n00:01:37,100 --> 00:01:41,300\\nall video on Wikimedia must be free to use and free to share.\\n\\n34\\n00:01:41,400 --> 00:01:45,00\\nusually this means that it is licensed to the Creative Commons\\n\\n35\\n00:01:45,200 --> 00:01:47,00\\nnow that you have selected an article\\n\\n36\\n00:01:47,200 --> 00:01:49,00\\nand a video you would like to add to it;\\n\\n37\\n00:01:49,00 --> 00:01:52,800\\nhere is the simplest way to bring the two together.\\n\\n38\\n00:01:53,800 --> 00:01:57,00\\nfirst, we recommend using Mozilla Firefox\\n\\n39\\n00:01:57,00 --> 00:02:00,00\\nFirefox is a free open source browser\\n\\n40\\n00:02:00,00 --> 00:02:03,400\\nthat makes viewing and adding video to Wikipedia simple\\n\\n41\\n00:02:03,500 --> 00:02:08,00\\nafter that, download the Firefogg add-on to Mozilla Firefox\\n\\n42\\n00:02:08,00 --> 00:02:13,00\\nthis automatically converts videos to the free and open Theora format\\n\\n43\\n00:02:13,00 --> 00:02:16,200\\nthat Wikipedia uses when you upload them\\n\\n44\\n00:02:16,200 --> 00:02:21,200\\nalternatively, Windows and Mac users can download Miro converter\\n\\n45\\n00:02:21,200 --> 00:02:25,200\\na simple software that lets you take video and converter it to any format\\n\\n46\\n00:02:25,200 --> 00:02:27,200\\nincluding open video for Wikipedia\\n\\n47\\n00:02:28,800 --> 00:02:33,00\\nunlike editing text uploading video requires that you logged in to Wikipedia\\n\\n48\\n00:02:33,00 --> 00:02:37,00\\nsign in or create an account if you're a new user.\\n\\n49\\n00:02:37,00 --> 00:02:39,400\\nwhen you upload video for the first time,\\n\\n50\\n00:02:39,400 --> 00:02:43,00\\nyou'll have to turn on the video uploading feature.\\n\\n51\\n00:02:43,00 --> 00:02:48,00\\nto do this, click on your user name at the top of the page\\n\\n52\\n00:02:48,00 --> 00:02:51,00\\nthen, click on my preferences\\n\\n53\\n00:02:53,200 --> 00:02:54,800\\nclick on gadgets\\n\\n54\\n00:02:55,500 --> 00:02:59,200\\nthen scroll down to user interface gadgets\\n\\n55\\n00:02:59,400 --> 00:03:04,200\\nand clip the box that says add mwEmbed support\\n\\n56\\n00:03:05,00 --> 00:03:08,200\\nscroll down to the save button and click save.\\n\\n57\\n00:03:08,200 --> 00:03:11,200\\nnow your ready to upload video\\n\\n58\\n00:03:11,200 --> 00:03:15,200\\nnow that you have signed in go to the article you would like to modify\\n\\n59\\n00:03:15,200 --> 00:03:16,200\\nand click the edit button.\\n\\n60\\n00:03:16,200 --> 00:03:19,200\\nyou'll see add media wizard button in the editing tab\\n\\n61\\n00:03:19,200 --> 00:03:22,200\\nclicking this link will pull up a menu\\n\\n62\\n00:03:22,200 --> 00:03:26,200\\nif your uploading your own file select it and hit upload\\n\\n63\\n00:03:26,200 --> 00:03:28,200\\nyou can also select a video from the commons\\n\\n64\\n00:03:28,200 --> 00:03:32,200\\nor a media file you have previous uploaded but have not yet added to an article\\n\\n65\\n00:03:32,200 --> 00:03:37,000\\nto put the video in to the article just click on insert into page\\n\\n66\\n00:03:37,000 --> 00:03:39,000\\nat the bottom right hand corner of the window\\n\\n67\\n00:03:39,000 --> 00:03:43,000\\nto learn more about how to add video to Wikipedia\\n\\n68\\n00:03:43,000 --> 00:03:48,000\\ntype in WP:WikiProject lights camera wiki\\n\\n69\\n00:03:48,000 --> 00:03:50,000\\nin to the Wikipedia search box\",\n", + " 'bytes': 5612,\n", + " 'sha1': 'bq6mrf1bwxghn8ku0kzlbuuypjgex7t',\n", + " 'parent_id': 549912904,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 45349206,\n", + " 'timestamp': '2010-10-23T00:32:01Z',\n", + " 'user': {'id': 465966, 'text': 'Chaetodipus'},\n", + " 'page': {'id': 11856526,\n", + " 'title': 'Gullivers travels1939.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Edited subtitles using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': \"1\\n00:00:00,367 --> 00:00:02,936\\n[music plays]\\n\\n1.5\\n00:00:02,936 --> 00:00:11,911\\n\\n\\n2\\n00:00:11,911 --> 00:00:15,115\\n[grunts]\\n\\n2.5\\n00:00:15,115 --> 00:00:20,019\\n\\n\\n3\\n00:00:20,019 --> 00:00:21,888\\n[gunshot]\\n\\n4\\n00:00:21,888 --> 00:00:24,624\\n[crash]\\n\\n5\\n00:00:24,624 --> 00:00:28,428\\n[screams]\\n\\n5.5\\n00:00:28,428 --> 00:00:39,439\\n\\n\\n6\\n00:00:39,439 --> 00:00:42,075\\n[horse whinny]\\n\\n6.5\\n00:00:42,075 --> 00:00:56,222\\n\\n\\n7.5\\n00:00:56,222 --> 00:01:17,41\\n\\n\\n8\\n00:01:17,41 --> 00:01:21,681\\n(unintelligible)\\n\\n8.5\\n00:01:21,681 --> 00:01:24,317\\n\\n\\n9\\n00:01:24,317 --> 00:01:28,421\\nHelp! [unintelligible] Let me in! Let me in! Let me in!\\n\\n9.5\\n00:01:28,421 --> 00:01:32,442\\n\\n\\n10\\n00:01:32,542 --> 00:01:36,095\\nLet me in! Let me in!\\n\\n10.5\\n00:01:36,095 --> 00:01:37,513\\n\\n\\n11\\n00:01:37,513 --> 00:01:43,436\\nLet me go! Help! Help!\\n\\n12\\n00:01:46,139 --> 00:01:48,842\\nLet me go! Help! I don't want to die!\\n\\n13\\n00:01:48,842 --> 00:01:49,342\\nGULLIVER: Well, well what do we got here?\\n\\n14\\n00:01:49,342 --> 00:01:57,116\\nLILLIPUTIAN: Help! Don't eat me! Don't eat-- I won't taste good.\\n\\n15\\n00:01:57,116 --> 00:02:02,322\\nGULLIVER: A man. A tiny man.\\n\\n16\\n00:02:02,322 --> 00:02:06,626\\nLILLIPUTIAN: You can't do this to me. I got a wife and kids: millions of kids.\\n\\n17\\n00:02:06,626 --> 00:02:10,997\\nGULLIVER: Hold on there lad. No one's going to hurt you.\\n\\n18\\n00:02:10,997 --> 00:02:15,401\\nLILLIPUTIAN: Help. Put me down. Help! Help! [cries]\\n\\n19\\n00:02:15,401 --> 00:02:18,037\\nKING: Stop that! Stop that.\\n\\n20\\n00:02:18,037 --> 00:02:21,741\\nGULLIVER: Well another one. Who are you?\\n\\n21\\n00:02:21,741 --> 00:02:32,852\\nKING: Who? Me? I'm king around here. Guards, guards! To the tower! Surround the giant! Surround the giant! Guards!\\n\\n22\\n00:02:32,852 --> 0-1:0-1:0-1\",\n", + " 'bytes': 1720,\n", + " 'sha1': '86xb3h4z98i9w1r5mruqcucf9g0co6p',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 439265886,\n", + " 'timestamp': '2020-08-13T22:48:43Z',\n", + " 'user': {'id': 5617889, 'text': 'Sabelöga'},\n", + " 'page': {'id': 11858719,\n", + " 'title': 'Videoonwikipedia.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'stafvel',\n", + " 'text': '1\\n00:00:00,108 --> 00:00:02,198\\nNi känner alla till Wikipedia,\\n\\n2\\n00:00:02,198 --> 00:00:05,672\\nni använder det till dina uppgifter och att skriva artiklar eller bara för att lära dig något kul.\\n\\n3\\n00:00:06,657 --> 00:00:08,68\\nDet är inte bara gratis för dig att läsa\\n\\n4\\n00:00:08,942 --> 00:00:11,686\\ndet är också tillåtet för dig att bidra och förbättra artiklar.\\n\\n5\\n00:00:11,732 --> 00:00:14,045\\nAllt du skriver måste vara faktabaserat\\n\\n6\\n00:00:14,045 --> 00:00:18,594\\nneutralt skrivet och ocensurerat i kontroversiella ämnen.\\n\\n7\\n00:00:19,686 --> 00:00:21,87\\nWikipedia är en öppen gemenskap\\n\\n8\\n00:00:21,87 --> 00:00:24,114\\nsom styr sig själv med minimal struktur.\\n\\n9\\n00:00:24,114 --> 00:00:26,227\\nAlla är volontärer.\\n\\n10\\n00:00:27,873 --> 00:00:31,305\\nJust nu finns Wikipedia på över 260 språk\\n\\n11\\n00:00:31,52 --> 00:00:33,857\\ndär några språk har tusentals artiklar\\n\\n12\\n00:00:33,919 --> 00:00:36,05\\nhar andra miljontals.\\n\\n13\\n00:00:37,419 --> 00:00:41,007\\nArtiklar har djuplodande information, bilder och länkar\\n\\n14\\n00:00:41,007 --> 00:00:43,234\\nsom hjälper dig att förstå ämnet.\\n\\n15\\n00:00:44,573 --> 00:00:48,181\\nMen tänk om varje artikel du läste hade video.\\n\\n16\\n00:00:48,181 --> 00:00:50,85\\nTänk om du kunde ta en tur runt pyramiderna i Egypten\\n\\n17\\n00:00:50,85 --> 00:00:53,887\\neller en tur längs en historisk stads huvudgata\\n\\n18\\n00:00:53,887 --> 00:00:56,956\\neller se en folkdans från ditt hemland.\\n\\n19\\n00:00:56,956 --> 00:01:01,327\\nNu med video på Wikipedia är det möjligt.\\n\\n20\\n00:01:01,327 --> 00:01:03,463\\nOm du vill filma själv\\n\\n21\\n00:01:03,463 --> 00:01:08,101\\nförsök att välja kärnfrågor i artikeln som kommer att hjälpa dig att illustrera ämnet\\n\\n23\\n00:01:08,307 --> 00:01:10,932\\noch planera vad du vill filma i förväg.\\n\\n24\\n00:01:10,963 --> 00:01:14,605\\nKom ihåg att Wikipedia är en encyklopedi\\n\\n25\\n00:01:14,743 --> 00:01:16,193\\nså innehållet ska vara utbildande och informativt.\\n\\n26\\n00:01:17,24 --> 00:01:19,903\\nDet viktigast när du spelar in\\n\\n27\\n00:01:19,934 --> 00:01:22,949\\när att ha en stadig hand eller att använda ett stativ.\\n\\n28\\n00:01:23,011 --> 00:01:25,351\\nOm du inte vill spela in video själv\\n\\n29\\n00:01:25,351 --> 00:01:27,37\\nfinns det flera arkiv på internet,\\n\\n30\\n00:01:27,37 --> 00:01:30,077\\nsom archive.org eller Wikimedia Commons\\n\\n31\\n00:01:30,077 --> 00:01:33,196\\nsom troligen har en video som passar din artikel.\\n\\n32\\n00:01:34,534 --> 00:01:37,979\\nKom bara ihåg att oavsett vad du filmar eller vad du hittar\\n\\n33\\n00:01:37,979 --> 00:01:41,901\\nmåste all video på Wikipedia vara fri att använda och dela.\\n\\n34\\n00:01:41,901 --> 00:01:46,005\\nVanligtvis innebär det att den är licensierad med Creative Commons.\\n\\n35\\n00:01:46,005 --> 00:01:47,877\\nNu när du har valt en artikel\\n\\n36\\n00:01:47,877 --> 00:01:49,934\\noch en video du vill lägga till där\\n\\n37\\n00:01:49,934 --> 00:01:54,848\\nhär är det enklaste sättet att göra de båda.\\n\\n38\\n00:01:54,848 --> 00:01:57,817\\nFörst rekommenderar vi Mozilla Firefox.\\n\\n39\\n00:01:57,817 --> 00:02:00,587\\nFirefox är en gratis webbläsare med öppen källkod\\n\\n40\\n00:02:00,587 --> 00:02:04,057\\nsom gör det lätt att titta på och lägga till video på Wikipedia\\n\\n41\\n00:02:04,057 --> 00:02:09,496\\nSedan, ladda hem tillägget Firefogg till Mozilla Firefox\\n\\n42\\n00:02:09,496 --> 00:02:13,299\\nsom automatiskt konverterar video till det fria och öppna Theora formatet\\n\\n43\\n00:02:13,299 --> 00:02:17,003\\nsom Wikipedia använder när du laddar upp dem.\\n\\n44\\n00:02:17,003 --> 00:02:20,94\\nAlternativt kan Windows- och Macanvändare ladda hem Miro converter\\n\\n45\\n00:02:20,94 --> 00:02:25,311\\nett enkelt program som kan konvertera video till många format\\n\\n46\\n00:02:25,311 --> 00:02:28,915\\ninklusive öppen video för Wikipedia.\\n\\n47\\n00:02:28,915 --> 00:02:34,954\\nTill skillnad från att redigera text kräver uppladdning av video att du loggar in på Wikipedia.\\n\\n48\\n00:02:34,954 --> 00:02:38,892\\nLogga in eller skapa ett konto om du är en ny användare.\\n\\n49\\n00:02:38,892 --> 00:02:41,16\\nNär du laddar upp video för första gången\\n\\n50\\n00:02:41,16 --> 00:02:43,897\\nkommer du att behöva slå på videouppladdningsfunktionen.\\n\\n51\\n00:02:43,897 --> 00:02:49,202\\nFör att göra detta klicka på ditt användarnamn högst upp på sidan,\\n\\n52\\n00:02:49,202 --> 00:02:53,606\\nklicka sedan på Mina inställningar,\\n\\n53\\n00:02:53,606 --> 00:02:56,309\\nklicka på finesser,\\n\\n54\\n00:02:56,309 --> 00:03:00,313\\nscrolla sedan ner till Utseendefinesser,\\n\\n55\\n00:03:00,313 --> 00:03:05,385\\noch fyll i rutan som säger Lägg till mwEmbed support.\\n\\n56\\n00:03:05,385 --> 00:03:09,355\\nScrolla ner till Spara knappen och tryck Spara.\\n\\n57\\n00:03:09,355 --> 00:03:12,258\\nNu är du redo att ladda upp video.\\n\\n58\\n00:03:12,258 --> 00:03:15,357\\nNär du har loggat in gå till artikeln du vill redigera\\n\\n59\\n00:03:15,357 --> 00:03:16,985\\noch klicka på knappen Redigera.\\n\\n60\\n00:03:16,985 --> 00:03:20,166\\nNu kommer du se en mediaguideknapp i redigeringsmenyn.\\n\\n61\\n00:03:20,166 --> 00:03:22,748\\nNär du klickar på den kommer ett nytt fönster upp.\\n\\n62\\n00:03:22,748 --> 00:03:26,791\\nOm du laddar upp din egen fil välj den och tryck Ladda upp.\\n\\n63\\n00:03:26,791 --> 00:03:28,975\\nDu kan också välja en video från Commons\\n\\n64\\n00:03:28,975 --> 00:03:33,179\\neller en mediafil som du har laddat upp nyligen men ännu inte lagt till i en artikel.\\n\\n65\\n00:03:33,179 --> 00:03:37,551\\nFör att lägga till videon i artikeln tryck bara på Lägg till på sidan\\n\\n66\\n00:03:37,551 --> 00:03:40,72\\nlängst ner till höger i fönstret.\\n\\n67\\n00:03:40,72 --> 00:03:43,957\\nFör att lära dig mer om hur man lägger till video på Wikipedia\\n\\n68\\n00:03:43,957 --> 00:03:54,467\\ngå till engelska Wikipedia och skriv wp:wikiproject lights camera wiki i sökrutan.',\n", + " 'bytes': 5709,\n", + " 'sha1': '6rqsx9000108a7gle2d5h5uaa420bs2',\n", + " 'parent_id': 45367461,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 600109932,\n", + " 'timestamp': '2021-10-19T08:38:47Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 12015516,\n", + " 'title': 'Wikipedia video tutorial-2-Reliability-en.ogv.ro.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall update',\n", + " 'text': '1\\n00:00:01,169 --> 00:00:03,461\\nSalut, eu sunt Tereza.\\n\\n2\\n00:00:03,503 --> 00:00:05,180\\nMulțumesc că urmăriți filmul nostru\\n\\n3\\n00:00:05,212 --> 00:00:07,780\\ndespre cum se poate\\ncontribui la Wikipedia,\\n\\n4\\n00:00:07,780 --> 00:00:10,794\\ncea mai mare și cea mai\\nbună enciclopedie liberă.\\n\\n5\\n00:00:11,282 --> 00:00:15,489\\nDupă cum probabil știți, oricine poate\\nedita orice articol de pe Wikipedia.\\n\\n6\\n00:00:15,489 --> 00:00:18,029\\nTot ce trebuie să faceți\\neste să apăsați pe \"Editare\",\\n\\n7\\n00:00:18,029 --> 00:00:20,049\\nschimbați textul și apăsati pe \"Salvează\".\\n\\n8\\n00:00:20,049 --> 00:00:23,234\\nDar asta nu vă oferă\\nmijloacele de a rescrie istoria.\\n\\n9\\n00:00:23,266 --> 00:00:27,444\\nDimpotrivă, aș dori să vă explic cum poate\\nWikipedia să-și păstreze integritatea\\n\\n10\\n00:00:27,479 --> 00:00:29,912\\ndeși oricine o poate\\nmodifica atât de ușor.\\n\\n11\\n00:00:30,310 --> 00:00:33,745\\nCa cele mai multe programe de calculator,\\nprogramul din spatele Wikipedia\\n\\n12\\n00:00:33,745 --> 00:00:36,089\\nare multe unelte despre\\ncare utilizatorii nu știu.\\n\\n13\\n00:00:36,111 --> 00:00:38,281\\nVă voi arăta două astfel de unelte\\n\\n14\\n00:00:38,337 --> 00:00:42,237\\nce au fost făcute special pentru\\na asigura calitatea Wikipediei.\\n\\n15\\n00:00:42,761 --> 00:00:45,828\\nPrima unealtă este numită\\n\"Schimbări recente\".\\n\\n16\\n00:00:47,228 --> 00:00:48,967\\nÎn meniul din stânga paginii,\\n\\n17\\n00:00:49,001 --> 00:00:51,821\\nveți găsi o legătură către\\npagina de schimbări recente.\\n\\n18\\n00:00:52,458 --> 00:00:54,218\\nAceasta este o listă a tot\\n\\n19\\n00:00:54,248 --> 00:00:57,428\\nce s-a făcut în ultima vreme\\npe Wikipedia în limba dumneavoastră.\\n\\n20\\n00:00:57,459 --> 00:01:00,106\\nHaideți să ne uităm\\nla primul articol din listă.\\n\\n21\\n00:01:00,208 --> 00:01:04,241\\nDacă apăsați din nou pe \"Schimbări\\nrecente\", la doar câteva secunde,\\n\\n22\\n00:01:04,259 --> 00:01:06,888\\nveți vedea că articolul\\nrespectiv a ajuns mai jos\\n\\n23\\n00:01:07,835 --> 00:01:09,805\\nși toate articolele de mai sus\\n\\n24\\n00:01:09,832 --> 00:01:13,708\\nau fost modificate sau\\ncreate în ultimele 4 secunde.\\n\\n25\\n00:01:14,670 --> 00:01:17,566\\nEste ceea ce eu numesc\\n\"pulsul Wikipediei\".\\n\\n26\\n00:01:17,596 --> 00:01:19,359\\nDestul de impresionant, nu?\\n\\n27\\n00:01:19,677 --> 00:01:21,390\\nHaideți să ne întoarcem la articol.\\n\\n28\\n00:01:22,269 --> 00:01:24,889\\nCând apăsați pe legătura \"diff\",\\n\\n29\\n00:01:24,931 --> 00:01:27,491\\nveți vedea schimbările\\nfăcute asupra articolului.\\n\\n30\\n00:01:27,770 --> 00:01:30,445\\nCeea ce vedeți aici\\nsunt versiunea anterioară\\n\\n31\\n00:01:30,459 --> 00:01:32,846\\nși noua versiune modificată cot la cot.\\n\\n32\\n00:01:33,534 --> 00:01:36,824\\nÎn acest fel, toate schimbările\\nsunt transparente.\\n\\n33\\n00:01:36,948 --> 00:01:40,633\\nComunitatea de utilizatori va urmări\\ncu atenție toate schimbările\\n\\n34\\n00:01:40,633 --> 00:01:43,305\\nși va corecta informațiile false.\\n\\n35\\n00:01:44,073 --> 00:01:46,227\\nAcesta este una din multele metode\\n\\n36\\n00:01:46,237 --> 00:01:48,740\\nde a asigura calitatea Wikipediei.\\n\\n37\\n00:01:48,789 --> 00:01:51,139\\nCealaltă unealtă despre\\ncare vreau să vă vorbesc\\n\\n38\\n00:01:51,166 --> 00:01:56,246\\neste o listă personalizată de schimbări\\nrecente, numită \"Pagini urmărite\".\\n\\n39\\n00:01:56,680 --> 00:01:58,421\\nPentru a obține o listă de urmărire,\\n\\n40\\n00:01:58,421 --> 00:02:00,611\\nva trebui să deschideți\\nun cont de utilizator.\\n\\n41\\n00:02:00,708 --> 00:02:05,244\\nDar nu vă îngrijorați!\\nE rapid, simplu si gratuit!\\n\\n42\\n00:02:07,384 --> 00:02:10,967\\nApăsați pe această legătură\\nși urmăriți instrucțiunile.\\n\\n43\\n00:02:13,684 --> 00:02:16,261\\nDar cum îmi creez\\nlista de pagini urmărite?\\n\\n44\\n00:02:16,291 --> 00:02:18,242\\nPăi, este cel mai bine să creați lista\\n\\n45\\n00:02:18,298 --> 00:02:20,531\\ncu articolele interesante\\npentru dumneavoastră.\\n\\n46\\n00:02:21,101 --> 00:02:23,254\\nEu, de exemplu:\\n\\n47\\n00:02:23,271 --> 00:02:27,198\\nîmi plac câinii!...\\n\\n48\\n00:02:28,304 --> 00:02:31,848\\nCaut permanent articole noi despre câini.\\n\\n49\\n00:02:33,113 --> 00:02:34,767\\nUn Labrador!\\n\\n50\\n00:02:34,777 --> 00:02:37,977\\nPriviți-i fața! Trebuie să vă placă!\\n\\n51\\n00:02:38,420 --> 00:02:40,207\\nHaideți să mergem la acest articol.\\n\\n52\\n00:02:40,772 --> 00:02:43,125\\nDa! Sigur vreau să urmăresc\\n\\n53\\n00:02:43,147 --> 00:02:45,505\\ntoate schimbările făcute la acest articol.\\n\\n54\\n00:02:45,715 --> 00:02:48,501\\nAșa că apăs pe \"urmărește\"\\n(steluța de lângă căutare)\\n\\n55\\n00:02:49,251 --> 00:02:53,179\\nși acest articol este adăugat\\nîn lista de pagini urmărite\\n\\n56\\n00:02:53,239 --> 00:02:57,589\\npe care o pot vedea\\napăsând pe \"Pagini urmărite\".\\n\\n57\\n00:02:58,737 --> 00:03:01,417\\nCând cineva editează\\nun articol din listă,\\n\\n58\\n00:03:01,448 --> 00:03:03,256\\nveti putea vedea acest lucru\\n\\n59\\n00:03:03,298 --> 00:03:04,779\\nși cu un singur clic\\n\\n60\\n00:03:04,808 --> 00:03:06,722\\nputeți vedea cine a făcut schimbările\\n\\n61\\n00:03:07,530 --> 00:03:09,913\\nși ce schimbări au făcut.\\n\\n62\\n00:03:11,796 --> 00:03:14,519\\nApropo, nu doar eu\\nam pagina despre Labrador\\n\\n63\\n00:03:14,547 --> 00:03:16,191\\npe lista de pagini urmărite.\\n\\n64\\n00:03:16,279 --> 00:03:19,728\\nNu, sunt sigur că multe mii\\nde iubitori de câini\\n\\n65\\n00:03:19,768 --> 00:03:24,297\\nurmăresc această pagină.\\n\\n66\\n00:03:25,203 --> 00:03:28,027\\nAcestea au fost două din multele\\n\\n67\\n00:03:28,043 --> 00:03:30,706\\nunelte folosite pentru\\na menține calitatea Wikipediei.\\n\\n68\\n00:03:31,029 --> 00:03:34,697\\nDar cea mai bună metodă pentru a asigura\\nîn continuare calitatea Wikipedie\\n\\n69\\n00:03:34,731 --> 00:03:36,825\\neste să creștem numărul editorilor\\n\\n70\\n00:03:36,833 --> 00:03:39,537\\ncare contribuie cu cunoștințele lor.\\n\\n71\\n00:03:39,982 --> 00:03:42,993\\nCu cât mai mulți editori sunt,\\ncu atât mai bună este calitatea.\\n\\n72\\n00:03:43,063 --> 00:03:47,011\\nAșa că vă rugăm să vă alăturați\\nsuperbului grup de cunoștințe omenești\\n\\n73\\n00:03:47,067 --> 00:03:50,355\\nși ajutati-ne să progresăm\\noriunde este posibil.\\n\\n74\\n00:03:50,432 --> 00:03:52,008\\nMulțumim că ne-ați urmărit!\\n\\n75\\n00:03:52,054 --> 00:03:54,027\\nLa revedere și succes!',\n", + " 'bytes': 6061,\n", + " 'sha1': '5hxqlpozv4pe21m34evqufav3taud7z',\n", + " 'parent_id': 45981797,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 300915765,\n", + " 'timestamp': '2018-05-13T08:26:27Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 12055703,\n", + " 'title': 'Krazy Kat Bugologist 1916 silent.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '84user moved page [[TimedText:Krazy Kat Bugolist 1916 silent.ogv.es.srt]] to [[TimedText:Krazy Kat Bugologist 1916 silent.ogv.es.srt]]: ogv file renamed',\n", + " 'text': '1\\n00:00:22,000 --> 00:00:27,000\\nYo te enseñaré Bugology, Ignatzes\\n\\n2 \\n00:00:40,000 --> 00:00:43,000 \\nAlgo me dice que...\\n\\n3 \\n00:00:58,000 --> 00:01:04,000 \\nMira, Ignatz, una abeja dormida\\n\\n4\\n00:01:04,000 --> 00:01:08,000 \\nUna abeja muerta\\n\\n5\\n00:01:10,000 --> 00:01:14,000 \\nTiene que ser frío\\n\\n6\\n00:01:22,000 --> 00:01:25,000 \\nPobre abeja\\n\\n7\\n00:01:25,000 --> 00:01:31,000 \\nAh, él es feliz, está en el cielo de la abejas\\n\\n8\\n00:01:51,000 --> 00:01:56,000 \\nIgnatz, bueno, usted ha cometido un error\\n\\n9\\n00:01:58,000 --> 00:02:01,000 \\nESTABA.\\n\\n10\\n00:02:45,000 --> 00:02:49,000 \\nDéjamelo a mí',\n", + " 'bytes': 592,\n", + " 'sha1': 'exuxe3ddsogn94zmt480y8aegjtl2z5',\n", + " 'parent_id': 46092623,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 46580946,\n", + " 'timestamp': '2010-12-01T11:39:55Z',\n", + " 'user': {'id': 869583, 'text': 'Rehakt'},\n", + " 'page': {'id': 12192746,\n", + " 'title': 'Great Feeling.ogv.cz.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,905 --> 00:00:03,204 Ééé, ne, Nejsem žádný machr. 2 00:00:03,204 --> 00:00:05,990 Vůbec ne. Opravdu. 3 00:00:05,990 --> 00:00:08,034 To klidně...'\",\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nÉéé, ne, Nejsem žádný machr.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nVůbec ne. Opravdu.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nTo klidně zvládnete.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nZmáčkla jsem tlačítko,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\na uložila text,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nUaaaau!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nBylo to... vzrušující.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nPrávě jsi změnil Wikipedii,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\npřidal jsi svůj vlastní příspěvek k Wikipedii.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nPřečetla jsem si článek v \"Guardianu\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\no téhle on-line encyclopedii\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\ndo které může kdokoliv přispívat,\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\na řekla jsem si: \"Uau!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Možná bych také mohla něčím přispět!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nPoprvé jsem něco napsal\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\na myslím, že je z toho závislost.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nNikdo mi za to neplatí,\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nvíte, dělám to pro Vás,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nprostě dělám něco ve svém volném čase, tak je to.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nMůžete to začít dělat pro tu myšlenku,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nprotože tomu věříte,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\na najednou získáte přátele,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nzískáte lásku,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nzapojíte se do úžasných debat,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\ndostanete mové nápady,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nnapadne vás, že chcete psát knihy...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nNepíšete celý článek sami.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nNapíšete kousek,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\na někdo jiný se přidá:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hej, ještě tohle!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\na společně můžete vytvořit\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nčlánky na celé stránky,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\ncož by člověk sám nedokázal.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nA pak jsi to dokázal.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nŘekneš si: \"Ok, tohle se mi podařilo.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\na to je úžasné.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nTohle je super,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nprotože editování je super pocit.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nKdykoliv se do toho pustíš.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nMusím říct,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nže když jsem četla o Wikipedii,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nrozhodla jsem se\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Tohle by mohlo být něco pro mě\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nA bylo.',\n", + " 'bytes': 2773,\n", + " 'sha1': 'oiog60dubbu9ptwf8t394ueg5i7xjb3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 436921612,\n", + " 'timestamp': '2020-08-03T19:49:24Z',\n", + " 'user': {'id': 138009, 'text': 'Sevela.p'},\n", + " 'page': {'id': 12192772,\n", + " 'title': 'Great Feeling.ogv.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'better translation of first line',\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nÉéé, ne, nemám žádné superschopnosti.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nVůbec žádné. Opravdu.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nTo klidně zvládnete.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nZmáčkla jsem tlačítko,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\na uložila text,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nUaaaau!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nBylo to... vzrušující.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nPrávě jsi změnil Wikipedii,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\npřidal jsi svůj vlastní příspěvek k Wikipedii.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nPřečetla jsem si článek v \"Guardianu\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\no téhle on-line encyclopedii\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\ndo které může kdokoliv přispívat,\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\na řekla jsem si: \"Uau!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Možná bych také mohla něčím přispět!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nPoprvé jsem něco napsal\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\na myslím, že je z toho závislost.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nNikdo mi za to neplatí,\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nvíte, dělám to pro ... víte,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nprostě dělám něco ve svém volném čase, tak je to.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nMůžete to začít dělat pro tu myšlenku,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nprotože tomu věříte,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\na najednou získáte přátele,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nzískáte lásku,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nzapojíte se do úžasných debat,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\ndostanete nové nápady,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nnapadne vás, že chcete psát knihy...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nNepíšete celý článek sami.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nNapíšete kousek,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\na někdo jiný se přidá:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hej, ještě tohle!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\na společně můžete vytvořit\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nčlánky na celé stránky,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\ncož by člověk sám nedokázal.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nA pak jsi to dokázal.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nŘekneš si: \"Ok, tohle se mi podařilo.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\na to je úžasné.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nTohle je super,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nprotože editování je super pocit.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nKdykoliv se do toho pustíš.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nMusím říct,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nže když jsem četla o Wikipedii,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nrozhodla jsem se\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Tohle by mohlo být něco pro mě\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nA bylo.',\n", + " 'bytes': 2794,\n", + " 'sha1': '2dglyjrluz4352cymx09zklb53azhzi',\n", + " 'parent_id': 116565645,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 46688235,\n", + " 'timestamp': '2010-12-05T04:59:30Z',\n", + " 'user': {'id': 1363828, 'text': 'V1rati'},\n", + " 'page': {'id': 12221865,\n", + " 'title': 'Cal 2flip2click8khzvbr vlc.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:01,000 Zero 2 00:00:01,000 --> 00:00:02,000 One 3 00:00:02,000 --> 00:00:03,000 Two 4 00:00:03,000 --> 00:00:04,000 Three 5 00:00:04,0...'\",\n", + " 'text': '1 00:00:00,000 --> 00:00:01,000 Zero\\n\\n2 00:00:01,000 --> 00:00:02,000 One\\n\\n3 00:00:02,000 --> 00:00:03,000 Two\\n\\n4 00:00:03,000 --> 00:00:04,000 Three\\n\\n5 00:00:04,000 --> 00:00:05,000 Four\\n\\n6 00:00:05,000 --> 00:00:06,000 Five\\n\\n7 00:00:06,000 --> 00:00:07,000 Six\\n\\n8 00:00:07,000 --> 00:00:08,000 Seven',\n", + " 'bytes': 301,\n", + " 'sha1': 't8d83f9kddenevph33t22pojheiufog',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 46688246,\n", + " 'timestamp': '2010-12-05T05:01:07Z',\n", + " 'user': {'id': 1363828, 'text': 'V1rati'},\n", + " 'page': {'id': 12221869,\n", + " 'title': 'Cal 2flip2click8khzvbr vlc.ogv.eo.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:01,000 Nul 2 00:00:01,000 --> 00:00:02,000 Unu 3 00:00:02,000 --> 00:00:03,000 Du 4 00:00:03,000 --> 00:00:04,000 Tri 5 00:00:04,000 -...'\",\n", + " 'text': '1 00:00:00,000 --> 00:00:01,000 Nul\\n\\n2 00:00:01,000 --> 00:00:02,000 Unu\\n\\n3 00:00:02,000 --> 00:00:03,000 Du\\n\\n4 00:00:03,000 --> 00:00:04,000 Tri\\n\\n5 00:00:04,000 --> 00:00:05,000 Kvar\\n\\n6 00:00:05,000 --> 00:00:06,000 Kvin\\n\\n7 00:00:06,000 --> 00:00:07,000 Ses\\n\\n8 00:00:07,000 --> 00:00:08,000 Sep',\n", + " 'bytes': 295,\n", + " 'sha1': '14vkumzgf4xvvnwimaoqa7fy2vtv0ho',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 46706169,\n", + " 'timestamp': '2010-12-05T18:52:43Z',\n", + " 'user': {'id': 180468, 'text': 'Fujnky'},\n", + " 'page': {'id': 12226747,\n", + " 'title': 'Roscheiderhof-zinnfigur.ogg.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'minor typos using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': '1\\n00:00:06,556 --> 00:00:10,473\\nIn der Zinnfigurenabteilung wurde eine Werkstatt eingerichtet,\\n\\n2\\n00:00:10,735 --> 00:00:15,503\\nin der die Herstellung der Zinnfiguren demonstriert werden kann.\\n\\n3\\n00:00:15,503 --> 00:00:25,009\\nDie Formen für die traditionellen flachen Zinnfiguren werden heute – wie vor 200 Jahren – in Blockschiefer\\n\\n4\\n00:00:25,009 --> 00:00:34,443\\ngraviert, das heißt mit feinen Stichen herausgearbeitet und mit feinen Strukturen versehen.\\n\\n5\\n00:00:34,443 --> 00:00:42,043\\nMan braucht eine Vorderseite – natürlich – und eine Rückseite. Diese beiden müssen ganz exakt aufeinanderpassen,\\n\\n6\\n00:00:44,276 --> 00:00:51,813\\nund das Fußbrettchen ist schon mit dran-graviert. Beim gießen muss man dieses natürlich verschließen,\\n\\n7\\n00:00:51,813 --> 00:00:56,155\\nund hier oben ist dann der Einguss.\\n\\n8\\n00:00:59,155 --> 00:01:03,406\\nDie Zinnfiguren zeichnen sich durcheine sehr – ja –\\n\\n9\\n00:01:03,406 --> 00:01:15,078\\ngroße Feingliedrigkeit aus. Man muss sehr vorsichtig mit dem Stichel herausarbeiten die Form,\\n\\n10\\n00:01:15,078 --> 00:01:26,338\\nund versuchen, mögllichst deckungsgleiche Formen herzustellen.\\n\\n11\\n00:01:49,941 --> 00:02:06,039\\nZur Überprüfung der Gravur verwendet man einfaches Knet, und versucht einen Abdruck davon zu machen.\\n\\n12\\n00:02:06,039 --> 00:02:16,026\\nUnd man kann dann Überprüfen, ob die Figur den Vorstellungen entsprechend geworden ist.\\n\\n13\\n00:02:23,637 --> 00:02:30,378\\nFür den Guss der Zinnfiguren verwendet man eine Legierung aus Blei, Zinn und Antimon.\\n\\n14\\n00:02:30,378 --> 00:02:38,255\\nIm Grunde die gleiche Legierung, die schon Gutenberg für seine Lettern verwendet hat.\\n\\n15\\n00:02:38,255 --> 00:02:53,949\\nDie Temperatur ist etwa 250 bis 300 Grad. Man gießt ein, das überflüssige Metall wird abgegossen und die Figur ist fertig.\\n\\n16\\n00:02:53,949 --> 00:03:01,247\\nMann kann sie auch sogleich herausnehmen, und könnte sie, wenn man sie verputzt hat,\\n\\n17\\n00:03:01,247 --> 00:03:07,619\\nunmittelbar bemalen oder gleich damit spielen.\\n\\n18\\n00:03:07,619 --> 00:03:15,044\\nAls erstes wird dann der Einguss abgeschnitten.\\n\\n19\\n00:03:24,701 --> 00:03:29,906\\nUnd schon hat man eine kleine Abteilung Bergleute beieinander.\\n\\n20\\n00:03:29,906 --> 00:03:35,595\\nDer letzte und aufwändigste Arbeitsschritt ist dann die Bemalung der Figuren.\\n\\n21\\n00:03:35,595 --> 00:03:40,953\\nZur Bemalung werden die Figuren auf eine Leiste aufgeklebt,\\n\\n22\\n00:03:40,953 --> 00:03:48,544\\nund dann mit Ölfarben und ganz feinen Pinseln sorgfältig bemalt.\\n\\n23\\n00:03:48,544 --> 00:03:56,234\\nDie Gesichter, die Falten, die Gegenstände, die die Figuren in den Händen halten.\\n\\n24\\n00:03:56,234 --> 00:04:02,957\\nIn einzelnen Schritten. Zum Schluss Paradieren dann vor uns – in feinster Ölbemalung –\\n\\n25\\n00:04:02,957 --> 00:04:09,024\\n– die Teilnehmer eines Winzerumzuges, dieses mal aus dem Thüringischen.',\n", + " 'bytes': 2843,\n", + " 'sha1': 's52tipnwujq9gzsxrn404rgacqajqhc',\n", + " 'parent_id': 46705820,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 46808803,\n", + " 'timestamp': '2010-12-09T08:57:58Z',\n", + " 'user': {'id': 5602, 'text': 'Geraki'},\n", + " 'page': {'id': 12254771,\n", + " 'title': 'Great Feeling.ogv.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'proofread',\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nΕεε, όχι, δεν έχω υπερδυνάμεις.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nΚαθόλου. Όχι.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nΜπορείς απόλυτα να το κάνεις.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nΠάτησα το κουμπί,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nκαι αποθήκευσα το κείμενο,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nΓουάο!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nΉταν... ενθουσιαστικό.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nΜόλις άλλαξες την Wikipedia,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nμόλις πρόσθεσες την δική σου συνεισφορά στην Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nΔιάβασα ένα άρθρο στην \"Guardian\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nσχετικά με αυτή τη δικτυακή εγκυκλοπαίδεια\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nόπου καθένας μπορεί να συνεισφέρει\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nκαι είπα, \"Γουάο!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Μπορεί να συνεισφέρω επίσης κι εγώ!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nΈκανα μια πρώτη επεξεργασία\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nκαι νομίζω ότι εθίστηκα σε αυτό.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nΔεν πληρώνομαι τίποτε\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nΑπλώς το κάνω, ξέρεις,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nκάτι που κάνω στον ελεύθερο χρόνο μου, αυτό είναι.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nΜπορεί να ξεκινάς κάνοντάς το για μια ιδέα,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nεπειδή πιστεύεις σε αυτό,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nαλλά καταλήγεις με φίλους,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nκαταλήγεις με εραστές,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nκαταλήγεις με υπέροχες συζητήσεις,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nκαταλήγεις με νέες ιδέες,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nκαταλήγεις με νέα βιβλία που θα γράψεις...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nΔεν γράφεις το άρθρο μόνος σου.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nΓράφεις ένα κομμάτι,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nκαι κάποιος άλλος έρχεται:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Έι, έχω κι άλλο!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nκαι μαζί μπορεί να δημιουργήσετε\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nάρθρα με πολλές σελίδες,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nκάτι που δεν μπορείς να κάνεις μόνος.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nΚαι τότε φτάνεις στην επιτυχία.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nΠάντα βλέπεις, \"Εντάξει, αυτό που έκανα ήταν επιτυχές.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nκαι αυτό είναι υπέροχο.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nΑυτό είναι σπουδαίο,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nεπειδή, η επεξεργασία είναι σπουδαίο συναίσθημα.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nΚάθε φορά που το κάνεις.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nΠρέπει να πω,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nόταν διάβασα για την Wikipedia,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nΑποφάσισα\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Εδώ είναι μάλλον που ταιριάζεις\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nΚαι το έκανα.',\n", + " 'bytes': 3772,\n", + " 'sha1': 't7039u4edvycgzu5vxaqehbc1341920',\n", + " 'parent_id': 46808675,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 46865272,\n", + " 'timestamp': '2010-12-11T04:29:51Z',\n", + " 'user': {'id': 542864, 'text': 'Arjunaraoc'},\n", + " 'page': {'id': 12256199,\n", + " 'title': 'Nice People MEDIUM.ogv.te.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'minor translation fixes',\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 మీకు తెలిసిన జ్ఞానం,మీతోటే ఎందుకు వుంచుకుంటారు?\\n\\n2 00:00:04,249 --> 00:00:07,174 నా ఊహలో మీరు తప్పక పంచుకోవాలి!\\n\\n3 00:00:07,174 --> 00:00:10,031 ఈవికీ జాలస్థల లక్ష్యం \\n\\n4 00:00:10,031 --> 00:00:15,325 వికీ లేక ఇంటర్నెట్ అనలేదు\\n\\n5 00:00:15,325 --> 00:00:17,113 \"స్వేచ్ఛా జ్ఞానం ప్రతి ఒక్కరికి వారి భాషలో\" \\n\\n6 00:00:17,113 --> 00:00:19,411 అని మాత్రమే అనటం నాకు నచ్చింది\\n\\n7 00:00:19,411 --> 00:00:21,548 సముదాయం స్వేచ్ఛగా వున్నప్పుడు,\\n\\n8 00:00:21,548 --> 00:00:23,428 దానిలో వున్న వారందరు\\n\\n9 00:00:23,428 --> 00:00:25,936 ధైర్యంగా ఆహ్వాన పత్రం తీసుకున్నవారే.\\n\\n10 00:00:25,936 --> 00:00:27,956 \\n\\n11 00:00:27,956 --> 00:00:29,535 మీరు ఆహ్వాన పత్రం తీసుకోనవసరంలేదు,\\n\\n12 00:00:29,535 --> 00:00:31,439 కాని ఆహ్వాన పత్రం అక్కడే వుంది\\n\\n13 00:00:31,439 --> 00:00:32,879 \"మార్పు\" అనే బొత్తాము రూపంలో\\n\\n14 00:00:32,879 --> 00:00:37,709 \"రండి, పాలుపంచుకోండి. మీకు తెలిసినది మాకు తెలిసినంతగా ప్రాధాన్యత వుంది\".\\n\\n15 00:00:37,709 --> 00:00:40,472 ప్రజలకు విద్య నేర్పుతున్నారని మీకు తెలుసు,\\n\\n16 00:00:40,472 --> 00:00:43,026 మీ ప్రాంత ప్రజలే కాక ప్రపంచంలోని ప్రజలందరికి.\\n\\n17 00:00:43,026 --> 00:00:47,113 విజ్ఞాన సర్వస్వమునకు నా వంతు సహాయం చేయటంలో నా కెంతో తృప్తి\\n\\n18 00:00:47,113 --> 00:00:51,455 అది ప్రపంచమంతటికి అందుబాటులో వున్నప్పుడు.\\n\\n19 00:00:51,455 --> 00:00:55,286 తోటివారికి సహాయ పడుతూ, మీరు సంతోషంగా వండటానికి వీలున్నప్పుడు. అంతే.\\n\\n20 00:00:55,286 --> 00:00:57,283 నేను సంతోషంగా వుండాలని, తోటివారికి సహాయపడతాను.\\n\\n21 00:00:57,283 --> 00:01:00,650 రకరకాల సంస్కృతుల నుండి రకరకాల వ్యక్తులతో \\n\\n22 00:01:00,650 --> 00:01:04,156 కలసి పనిచేయటం ఒక అద్భుతమైన అనుభవం.\\n\\n23 00:01:04,156 --> 00:01:06,501 నా మటుకు ఇది నిజంగా ఏమంటే,\\n\\n24 00:01:06,501 --> 00:01:08,754 చాలా మంచి వ్యక్తులు.\\n\\n25 00:01:08,754 --> 00:01:10,890 మీకు తెలుసు, చాలా మంచి వ్యక్తులు కలసి\\n\\n26 00:01:10,890 --> 00:01:14,466 అంతర్జాలంలో, జ్ఞానాన్ని టైపు చేస్తున్నారు,\\n\\n27 00:01:14,466 --> 00:01:16,231 ఒకరు మీద ఒకరు అరుపులు కేకలు పెట్టకుండా\\n\\n28 00:01:16,231 --> 00:01:18,437 లేక కేవలం పిచ్చాపాటీ సంభాషించట కాకుండా\\n\\n29 00:01:18,437 --> 00:01:20,875 లేక గుసగుస కబుర్లతో కాలక్షేపం చేయకుండా,\\n\\n30 00:01:20,875 --> 00:01:22,198 వారు ఒక దాన్ని నిర్మిస్తున్నారు\\n\\n31 00:01:22,198 --> 00:01:23,707 అది అందరికి ఎంతో ఉపయోగపడేది.\\n\\n32 00:01:23,707 --> 00:01:26,029 నిజంగా వాళ్లందరు చక్కని, మంచి వా\\u200c\\u200c\\u200cళ్లు.',\n", + " 'bytes': 4280,\n", + " 'sha1': 'inos7mgvxl2syi573e86wbumzev872o',\n", + " 'parent_id': 46864907,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 46817558,\n", + " 'timestamp': '2010-12-09T16:24:46Z',\n", + " 'user': {'text': '221.120.246.11'},\n", + " 'page': {'id': 12257281,\n", + " 'title': 'Great Feeling.ogv.LANG.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,905 --> 00:00:03,204 Err, no, I don't have superpowers. 2 00:00:03,204 --> 00:00:05,990 At all. No. 3 00:00:05,990 --> 00:00:08,034 You can totally do...'\",\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nErr, no, I don\\'t have superpowers.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nAt all. No.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nYou can totally do it.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nI pushed the button,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nand saved the text,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWooooo!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nIt was... exciting.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nYou just changed Wikipedia,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nyou just added your own contribution to Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nI read an article in the \"Guardian\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nabout this online encyclopedia\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nwhich everybody can contribute to\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nand I said, \"Wow!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Maybe I can contribute as well!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nI edited the first time\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nand I think I got addicted to it.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nI don\\'t get paid anything\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nI just do it for, you know,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nsomething to do in my free time, that\\'s it.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nYou may start doing it for an idea,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nbecause you believe in it,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nbut you end up with friends,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nyou end up with lovers,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nyou end up with wonderful discussions,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nyou end up with new ideas,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nyou end up with new books you\\'re gonna write...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nYou\\'re not writing the article alone.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nYou write a piece,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nand somebody else goes like:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hey, I have more!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nand together you can create\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\narticles that are pages long,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nwhich you can\\'t by yourself.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nThen you have success.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nYou always see, \"Ok, what I\\'ve done was successful.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nand this is wonderful.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nThis is great,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nbecause, editing is a great feeling.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nEvery time you do it.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nI have to say,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nwhen I read about Wikipedia,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nI decided\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"This is maybe where I would fit in\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nAnd I did.',\n", + " 'bytes': 2711,\n", + " 'sha1': 'hv8gw2w2b0swnc0q0g4rue2ih3nq39g',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 46910977,\n", + " 'timestamp': '2010-12-12T04:17:44Z',\n", + " 'user': {'id': 304876, 'text': 'Jane Doe'},\n", + " 'page': {'id': 12276853,\n", + " 'title': 'De.la.rua.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:00 --> 00:00:00,625\\n\\n\\n2 00:00:00,656 --> 00:00:04,919 A partir de este momento transmiten LRA1 Radio Nacional,\\n\\n3 00:00:04,919 --> 00:00:11,839 junto a la cadena Celeste y Blanca de emisoras argentinas, y LS82 TV Canal 7.\\n\\n4 00:00:11,839 --> 00:00:17,417 Habla al país el Presidente de los Argentinos, Dr. Fernando de la Rúa.\\n\\n5 00:00:18,156 --> 00:00:22,079 Compatriotas: Culmina un día dificil.\\n\\n6 00:00:22,079 --> 00:00:26,959 Han ocurrido en el país hechos de violencia que ponen en peligro personas y bienes,\\n\\n7 00:00:26,959 --> 00:00:29,959\\n\\n\\n8 00:00:29,959 --> 00:00:36,003 Quiero informarles que ante eso, he decretado el estado de sitio en todo el territorio nacional,\\n\\n9 00:00:36,003 --> 00:00:39,359\\n\\n\\n10 00:00:39,359 --> 00:00:45,759 Nuestro pais vive horas dificiles, que muestran la culminación de un largo proceso de deterioro.\\n\\n11 00:00:45,759 --> 00:00:51,439 En un contexto económico y social, donde muchos argentinos sufren serios problemas,\\n\\n12 00:00:51,439 --> 00:00:59,799 grupos enemigos del orden y de la República aprovechan para intentar sembrar discordia y violencia,\\n\\n13 00:00:59,799 --> 00:01:02,519 buscando crear un caos que les permita maniobrar\\n\\n14 00:01:02,519 --> 00:01:07,479 para lograr fines que no pueden alcanzar por la vía electoral.\\n\\n15 00:01:07,479 --> 00:01:11,639 Comprendo las penurias que atraviesan muchos de mis compatriotas,\\n\\n16 00:01:11,639 --> 00:01:17,159 las comprendo y las sufro, pero la mayoría sabe que con violencia e ilegalidad\\n\\n17 00:01:17,159 --> 00:01:24,119 no se sale de los problemas. Los problemas hay que afrontarlos, y eso estamos haciendo.\\n\\n18 00:01:24,119 --> 00:01:29,279 He dispuesto multiplicar la distribución de alimentos entre los más necesitados.\\n\\n19 00:01:29,279 --> 00:01:32,479 Tengo clara conciencia del padecimiento de muchos compatriotas,\\n\\n20 00:01:32,479 --> 00:01:38,359 y es mi compromiso trabajar para resolver la emergencia social,\\n\\n21 00:01:38,359 --> 00:01:44,319 pero se distinguir entre los necesitados y los violentos o los delincuentes,\\n\\n22 00:01:44,319 --> 00:01:49,639 que aprovechando esta situación utilizan el desorden para crear el caos.\\n\\n23 00:01:49,639 --> 00:01:52,279 Así como enfrenté los problemas económicos,\\n\\n24 00:01:52,279 --> 00:01:57,719 así como dispuse medidas de emergencia para asistir a los más necesitados,\\n\\n25 00:01:57,719 --> 00:02:03,999 decidi poner límite a los violentos que se aprovechan de las penurias ajenas.\\n\\n26 00:02:03,999 --> 00:02:09,839 Por eso, según las atribuciones que la Constitución Nacional me confiere como Presidente de la Nación,\\n\\n27 00:02:09,839 --> 00:02:13,399 he declarado el estado de sitio en todo el territorio nacional,\\n\\n28 00:02:13,399 --> 00:02:19,953 para asegurar la ley y el orden en el pais, y terminar con los incidentes de las últimas horas.\\n\\n29 00:02:20,003 --> 00:02:24,753 Conmino a los que estan ejerciendo violencia a cesar en sus actos.\\n\\n30 00:02:24,814 --> 00:02:29,039 Como lo dije muchas veces, la situación requiere además\\n\\n31 00:02:29,039 --> 00:02:33,479 de un amplio y responsable consenso para lograr las soluciones.\\n\\n32 00:02:33,479 --> 00:02:36,839 Por eso convoco una vez más a los partidos políticos,\\n\\n33 00:02:36,839 --> 00:02:38,239 a los gobernadores provinciales\\n\\n34 00:02:38,239 --> 00:02:41,559 y a los bloques legislativos del Congreso Nacional\\n\\n35 00:02:41,559 --> 00:02:45,559 para acordar las decisiones que exige la hora.\\n\\n36 00:02:45,559 --> 00:02:49,759 Las causas de esta situación vienen de lejos.\\n\\n37 00:02:49,759 --> 00:02:58,119 Todos los que hemos gobernado o ejercido posiciones de poder durante décadas nos debemos la autocrítica.\\n\\n38 00:02:58,119 --> 00:03:04,239 Solo saldremos adelante si cada uno asumimos nuestra responsabilidad histórica,\\n\\n39 00:03:04,239 --> 00:03:08,885 dejamos de echarnos mutuamente culpas y decidimos de una vez por todas\\n\\n40 00:03:08,885 --> 00:03:11,953 trabajar juntos para resolver los problemas.\\n\\n41 00:03:12,199 --> 00:03:17,599 Convoco pues, una vez más, a la responsabilidad de la dirigencia nacional,\\n\\n42 00:03:17,599 --> 00:03:24,879 y pido a mis compatriotas mantener la calma y colaborar para el restablecimiento del orden.\\n\\n43 00:03:24,879 --> 00:03:30,359 Pido a las organizaciones sociales, y especialmente a los medios de información,\\n\\n44 00:03:30,359 --> 00:03:33,799 contribuir en recrear el clima de paz necesario\\n\\n45 00:03:33,799 --> 00:03:38,319 para recuperar la seguridad y la tranquilidad en todo el país.\\n\\n46 00:03:38,319 --> 00:03:42,679 Confio que muy pronto, con la unidad nacional como bandera,\\n\\n47 00:03:42,679 --> 00:03:47,959 retomaremos el camino del crecimiento y superaremos los problemas\\n\\n48 00:03:47,959 --> 00:03:50,519 que trabaron nuestro progreso.\\n\\n49 0-1:0-1:0-1 --> 0-1:0-1:0-1 Buenas noches.',\n", + " 'bytes': 4804,\n", + " 'sha1': 'l27ksteu16bs5le176q97q7ivsiblxk',\n", + " 'parent_id': 46910864,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 357628326,\n", + " 'timestamp': '2019-07-09T18:40:41Z',\n", + " 'user': {'id': 6670412, 'text': 'Coffeeandcrumbs'},\n", + " 'page': {'id': 12311049,\n", + " 'title': 'Lopez.Murphy.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'rough translation',\n", + " 'text': '1\\n00:00:00,091 --> 00:00:03,039\\nThe third pillar of this economic program\\n\\n2\\n00:00:05,039 --> 00:00:08,701\\ncontains measures of immediate application\\n\\n3\\n00:00:08,716 --> 00:00:11,291\\nto recover fiscal solvency.\\n\\n4\\n00:00:11,353 --> 00:00:14,599\\nUnlike previous experiences\\n\\n5\\n00:00:14,599 --> 00:00:19,756\\nit eliminates old and entrenched privileges that society claims to correct\\n\\n6\\n00:00:20,079 --> 00:00:23,239\\nThese measures will involve a reduction effort\\n\\n7\\n00:00:23,027 --> 00:00:27,159\\nof total expenditures and tax exemptions\\n\\n8\\n00:00:27,159 --> 00:00:29,321\\nof 2,000 million pesos in the current year,\\n\\n9\\n00:00:29,336 --> 00:00:34,667\\nwhich must be shared between the Nation and the Provinces.\\n\\n10\\n00:00:34,728 --> 00:00:41,039\\nThe National State will face a reduction of public expenditure of 890 million pesos.\\n\\n11\\n00:00:41,039 --> 00:00:45,679\\nThe bulk of this reduction corresponds to the elimination of expenses\\n\\n12\\n00:00:45,679 --> 00:00:51,479\\nthat society has found irritating to represent the persistence of intolerable privileges.\\n\\n13\\n00:00:51,479 --> 00:00:58,559\\nThis includes expenses in ANSES such as the elimination of unjustifiable extendable pensions\\n\\n14\\n00:00:58,559 --> 00:01:02,159\\nand the elimination of abuse in family allowances.\\n\\n15\\n00:01:02,159 --> 00:01:05,987\\nScholarships granted by legislators will also be eliminated\\n\\n16\\n00:01:06,002 --> 00:01:13,719\\nand the expenses involved in politics in Argentina will be reduced, with the cooperation of the National Congress.\\n\\n17\\n00:01:13,719 --> 00:01:18,879\\nDistortive tax exemptions that do not go where they should will be removed.\\n\\n18\\n00:01:18,879 --> 00:01:23,639\\nThe Special Tobacco Fund, which has traditionally been concentrated\\n\\n19\\n00:01:23,639 --> 00:01:26,759\\nin subsidizing the large producers, will be reassigned\\n\\n20\\n00:01:26,759 --> 00:01:29,999\\nto finance the education budget of the Nation.\\n\\n21\\n00:01:30,239 --> 00:01:34,399\\nThe subsidy to the Patagonian naphtas will be eliminated,\\n\\n22\\n00:01:34,399 --> 00:01:37,199\\nthat in the past has been a source of high evasion,\\n\\n23\\n00:01:37,199 --> 00:01:40,679\\nand the resources obtained from it will also be oriented\\n\\n24\\n00:01:40,679 --> 00:01:43,079\\ntowards the Ministry of Education.\\n\\n25\\n00:01:43,079 --> 00:01:46,959\\nThe elimination of these privileges has been an objective\\n\\n26\\n00:01:46,959 --> 00:01:49,479\\nrecurrent of several administrations.\\n\\n27\\n00:01:49,479 --> 00:01:53,839\\nThey have been attempts that have consistently led to failure\\n\\n28\\n00:01:53,839 --> 00:01:58,679\\nWhy do I insist then on a solution that has been so difficult?\\n\\n29\\n00:01:58,679 --> 00:02:03,039\\nPrecisely because of the recurrence of failed attempts\\n\\n30\\n00:02:03,039 --> 00:02:06,599\\nand by the consequence of the recurrence\\n\\n31\\n00:02:06,599 --> 00:02:09,319\\nof the fiscal imbalances we face\\n\\n32\\n00:02:09,319 --> 00:02:11,639\\nwe have learned a hard lesson.\\n\\n33\\n00:02:11,639 --> 00:02:15,239\\nThat the cause of our own failures is not to face\\n\\n34\\n00:02:15,239 --> 00:02:18,559\\nfirmly these measures all the more necessary\\n\\n35\\n00:02:18,559 --> 00:02:22,199\\nwhen they involve the elimination of privileges.\\n\\n36\\n00:02:22,199 --> 00:02:25,119\\nAs for the universities, they have received\\n\\n37\\n00:02:25,119 --> 00:02:28,159\\na significant increase in resources during the last decade\\n\\n38\\n00:02:28,159 --> 00:02:35,079\\ngoing from 919 million in 1992 to 1744 million in the year 2000.\\n\\n39\\n00:02:35,079 --> 00:02:37,919\\nThis year to accompany the fiscal effort\\n\\n40\\n00:02:37,919 --> 00:02:41,599\\ntransfers to universities from the Treasury\\n\\n41\\n00:02:41,599 --> 00:02:45,479\\nthey can not exceed 1440 million pesos,\\n\\n42\\n00:02:45,479 --> 00:02:51,559\\nwhich implies a reduction of 360 million with respect to the budgeted amount.\\n\\n43\\n00:02:51,559 --> 00:02:55,999\\nThe Ministry of Education will decide the budgetary readjustment\\n\\n44\\n00:02:55,999 --> 00:03:01,039\\nwhich implies this reduction of items and the increase of funds\\n\\n45\\n00:03:01,039 --> 00:03:05,719\\nreceived by the Special Tobacco Fund and whichever comes\\n\\n46\\n00:03:05,719 --> 00:03:09,319\\nof the elimination of the subsidy to Patagonian naphthas.\\n\\n47\\n00:03:09,319 --> 00:03:13,079\\nWith the new budget you can improve the allocation of spending\\n\\n48\\n00:03:13,079 --> 00:03:17,239\\nas well as look for financing alternatives, just as they do\\n\\n49\\n00:03:17,239 --> 00:03:20,279\\nmany public universities in the world\\n\\n50\\n00:03:20,279 --> 00:03:24,799\\nthat allow at the same time an improvement of distributive equity.\\n\\n51\\n00:03:24,799 --> 00:03:27,759\\nWe all know that the lower income sectors\\n\\n52\\n00:03:27,759 --> 00:03:31,959\\nThey have great difficulties in accessing higher education.\\n\\n53\\n00:03:31,959 --> 00:03:35,679\\nThis is the opportunity for those responsible for the management\\n\\n54\\n00:03:35,679 --> 00:03:38,959\\nof universities can propose imaginatively\\n\\n55\\n00:03:38,959 -->',\n", + " 'bytes': 4842,\n", + " 'sha1': 'ccympb3sj8st3dh9s2kc3hds9y3kr2x',\n", + " 'parent_id': 47009179,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47026155,\n", + " 'timestamp': '2010-12-14T15:33:54Z',\n", + " 'user': {'id': 123663, 'text': 'MotherForker'},\n", + " 'page': {'id': 12315024,\n", + " 'title': 'Martinez.de.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'es using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': '0.5\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n0.75\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n1\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n2\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ntodas las emisoras integrantes de la cadena nacional de radio y televisión. A continuación se escuchará\\n\\n3\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nla palabra de su excelencia el Sr. Ministro de Economía de la Nación en un mensaje al país al finalizar\\n\\n4\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsu gestión de cinco años al frente de la cartera a su cargo. Esta es la palabra del Sr. José Alfredo\\n\\n5\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nMartínez de Hoz. En esta ocasión, que será la última en que tenga oportunidad de dirigirme a mis conciudadanos\\n\\n6\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nen función de ministro de economía de la nación, no es mi propósito hacer un balance pormenorizado de\\n\\n7\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nnuestra gestión. Ella podrá encontrarse enuna síntesis apretada de la memoria que publicará el ministerio\\n\\n8\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ny cada una de las secretarías de estado y empresas de la órbita del ministerio. Deseo simplemente hacer\\n\\n9\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nalgunas reflexiones que tienen como propósito no sólamente esclarecer algunos aspectos de nuestra acción,\\n\\n10\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsino también hacer posible que se medite sobre ellos para que los argentinos pensemos qué clase de país y\\n\\n11\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n12\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ndecir, consideramos que ella hace a la esencia misma de la existencia del hombre y debe ser ejercida\\n\\n13\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ncon responsabilidad. De allí deriva el acento que hemos puesto en la libre iniciativa individual, en\\n\\n14\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nla importancia de la empresa privada en el esquema productivo del país, y en la eliminación del excesivo\\n\\n15\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nestatización o intervención del estado y regulación de la economía. Esta función subsidiaria del estado\\n\\n16\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque hemos proclamado no tiene por objeto eliminar al mismo como simple espectador de la acción económica\\n\\n17\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque sucede en la nación, sino dejarlo con la gran función orientadora, la del control superior, pero\\n\\n18\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nno como empresario interviniendo en la gestión diaria ni reglamentando ni ahogando a la iniciativa individual\\n\\n19\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsino utilizando esos grandes instrumentos que son las grandes políticas monetarias, fiscal, cambiaria\\n\\n20\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\narancelaria, crediticia, impositiva, este es el concepto del estado moderno a nuestro juicio y con este\\n\\n21\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nesquema, con el acento puesto en la importancia de la empresa privada dentro del cuadro de las reglamentaciones\\n\\n22\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ngenerales establecidas por el Estado, creemos que se haya la fórmula para el progreso de nuestro país.\\n\\n23\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nEn esta etapa que nos ha tocado llevar a cabo la transformación de conceptos que han venido primando\\n\\n24\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nen el país en los últimos 30 años casi sin interrupción, una de las labores principales a la que nos hemos\\n\\n25\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ndedicado ha sido lo que hemos llamado, el redimencionamiento del Estado y sus funciones bajo estos mismos\\n\\n26\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nconceptos. Esto ha comprendido cinco grandes cursos de acción. El primero es la reducción del déficit\\n\\n27\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ndel presupuesto nacional y su financiamiento no inflacionario. El segundo la reducción y la racionalización\\n\\n28\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ndel gasto público. El tercero, el programa de privatización de las empresas estatales, el cuarto, el\\n\\n29\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nreordenamiento y la reprogramación de la inversión pública. Y el quinto, la reforma del sistema impositivo,\\n\\n30\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsu actualización simplificación y el mejoramiento del aparato de recaudación. Todo ello ha implicado\\n\\n31\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nun trabajo largo, dificil y duro. Los resultados que se obtienen en esta acción, no pueden esperarse\\n\\n32\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque se vean realizados de la noche a la mañana y ni siquiera en cinco años, debe comprenderse que existe\\n\\n33\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nuna gran inercia en la estructura administrativa del Estado, inercia que también encontramos a todo cambio,\\n\\n34\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ninercia física inercia mental, en la cual hay que hacer un gran esfuerzo para llevar adelante cada una\\n\\n35\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nde estas transformaciones profundas que nos hemos propuesto. Se han labrado indudablemente grandes adelantos,\\n\\n36\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nnosotros creemos que son insuficientes pero también consideramos que hemos puesto las bases, que hemos\\n\\n37\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nrealizado las principales transformaciones y que luego con la consecución de este esfuerzo, con perseverancia,\\n\\n38\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ncon disciplina y con firmeza, el país en el curso de los años siguientes podrá confirmar esta acción\\n\\n39\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ny lograr la plena realización de los objetivos que nos hemos propuesto. Indudablemente en esta acción\\n\\n40\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ncomprendemos que muchas de las cosas realizadas no, sus efectos no son visibles a la opinión pública\\n\\n41\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nen un primer momento, incluso no se producen en seguida. Algunas de ellas tardan un cierto tiempo, a\\n\\n42\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nveces un año, dos, tres y aún más. Por ejemplo, el resultado de la modernización y el reciclamiento industrial\\n\\n43\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque se ha llevado a cabo bajo nuestra acción, recién se producirá dentro de los próximos digamos, dos\\n\\n44\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\naños en que los nuevos productos saldrán al consumo. Lo mismo con las grandes obras de infraestructura\\n\\n45\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque hemos comenzado que quedarán terminadas dentro de dos años. Todo el concepto de la restructuración\\n\\n46\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nde la economía, no se logra completar así ni siquiera en cinco años. Pero en este período si creemos\\n\\n47\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque hemos sentado las bases firmes para esta transformación, y que a lo largo de los próximos años, lo\\n\\n48\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque no se haya visto ya se irá comprobando en su realización y su fructificación a lo largo de este período\\n\\n49\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\npróximo. Pero para ello es necesario que el esfuerzo sea continuado, con perseverancia, con firmeza,\\n\\n50\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsin desmayo, sin ceder a las presiones sectoriales ni internas del propio estado ni externas del sector\\n\\n51\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\npúblico sino siempre teniendo en cuenta el interés general y el bien común. Indudablemente es muy dificil\\n\\n52\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nhacer un resumen de los resultados logrados a este respecto en cuanto a redimensionamiento del Estado,\\n\\n53\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\npero me limitaré a destacar algunos puntos salientes. Con respecto a el déficit por necesidad de financiamiento\\n\\n54\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ndel presupuesto, lo recibimos en el año 75 con un 14 y medio % en relación al producto bruto. Esta fue\\n\\n55\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nla situación que existía a comienzo de nuestra función. En el 77 y en el 78 ya se encontraba en el 3\\n\\n56\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ny medio % siempre en relación al producto bruto en el 78 fue del 4% y en hemos programado para el 81,\\n\\n57\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\npresupuestado, que no sobrepase el 3%. De manera que aquí hay una baja importante, de 10 puntos en relación\\n\\n58\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ncon el producto bruto, en cuanto a la necesidad de financiamiento del presupuesto nacional. También en\\n\\n59\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n60\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\na las modernas prácticas internacionales y hemos enfocado el concepto global del sector público que antes\\n\\n61\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nno se hacía, lo cual permite que se encare, no sólo la política fiscal del estado de la administración\\n\\n62\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ncentral y de sus propios organismos, sino también la política tarifaria y de precios de los servicios\\n\\n63\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\npúblicos, la inversión pública en general, de todo el sector público nacional, provincial y de municipalidades,\\n\\n64\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\njunto con el sector provincial y también el endeudamiento global del sector público. hemos reducido la\\n\\n65\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nparticipación del estado en la demanda final del 35% en que se encontraba en 1975 al 32% en 1980.\\n\\n66\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nHemos realizado un serio esfuerzo para la reducción del número de agentes públicos que estaba realmente\\n\\n67\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsobrecargado y a la par hemos mejorado sustancialmente su remuneración en términos reales, porque la\\n\\n68\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nmisma se encontraba también a niveles inferiores con respecto a los sectores económicos y sociales del pais\\n\\n69\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n70\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsolamente, en estos 5 años hemos reducido más de 100 mil personas., Hemos pasado de 505 mil agentes a\\n\\n71\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n397 mil. O sea una reducción del 21 y medio % . Al mismo tiempo hemos encarado la transformación de todas\\n\\n72\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nlas grandes empresas de servicio público pertenecientes al estado en nuestra área. La mayor parte de ellas\\n\\n73\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nhan sido transformadas en sociedades de capital, para ponerlas en condiciones de accionar con la agilidad\\n\\n74\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nde la empresa privada, pero también con la responsabilidad de la misma. Es decir, les hemos exigido\\n\\n75\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque lleven balances e inventarios que antes no tenían y se desconocía su verdadera situación económica\\n\\n76\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ny financiera. Les hemos exigido a la par que paguen impuestos ciñendolos o eliminando todas las exenciones\\n\\n77\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nimpositivas de que antes gozaban, para que puedan y deban aprender a operar con eficiencia al mismo tiempo\\n\\n78\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque con responsabilidad. Y las hemos apoyado en el otro sentido, en el de que el precio de sus servicios\\n\\n79\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ny sus productos no esté afectado por conceptos políticos sino que esté en el nivel dado por el mercado.\\n\\n80\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nEn este sentido, el resultado ha sido yo diría de alguna manera satisfactorio, porque si tomamos un promedio\\n\\n81\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nde las grandes empresas de servicios públicos estatales podremos comprobar comparando su produccion con\\n\\n82\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nel número de agentes, han mejorado en este promedio para estas grandes empresas de servicios públicos en\\n\\n83\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n84\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nnacional para poder, no sólamente llevar adelante sus inversiones, sino siplmemente pagar sus gastos\\n\\n85\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\noperativos, a partir de 1978 este número quedó reducido a sólamente 2 de ellas. ferrocarriles y encotel,\\n\\n86\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ny algunos para los cuales no se preveía solución posible como la flota fluvial del estado, se dispuso\\n\\n87\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsu privatización y la venta de todos sus elementos y materiales. El ejemplo más dificil , el de los\\n\\n88\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nferrocarrilles, en el que todavía se recibe un aporte sustancial del tesoro para poder sobrevivir , allí\\n\\n89\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ntambién hemos realizado una muy importante obra de racionalización y de reorganización. Hemos clausurado\\n\\n90\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\no levantado 10 mil kms de vías de las 42.500 que existían. O sea, hemos hecho una reducción de aproximadamente\\n\\n91\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nun 23% . Hemos también clausurado 1000 de las 2400 estaciones. Esto significa haberlas reducido en un\\n\\n92\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n42%. Hemos también reducido en la mitad los 30500 trenes kilómetro hora de pasajeros que funcionaban\\n\\n93\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nen el país. Y en cuanto al personal, de la empresa ferrocarriles del Estado ha disminuido de los 156.000\\n\\n94\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque se encontraban al comienzo de nuestra gestión a 96.000 en la actualidad. Esto implica nuevamente\\n\\n95\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nuna reducción de aproximadamente el 40%. Esta acción, en todos sus aspectos, en todas estas empresas\\n\\n96\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nha sido muy dura, ha sido muy difícil hacer comprender a estructura administrativas verdaderamente enquistadas,\\n\\n97\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nla importancia de la reducción del costo y de la operación con eficiencia. Creo que hemos logrado mucho,\\n\\n98\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\npero quizás estemos solamente a la mitad del camino necesario y esta acción debe ser perseguida con mucha\\n\\n99\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nfirmeza. Cualquier aflojamiento o cualquier falta de apoyo o de firmeza o cualquier retroceso en este\\n\\n100\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsentido puede hacer perder todo el esfuerzo que se ha ganado y los resultados que se han obtenido en\\n\\n101\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nestos pasados años. Con respecto al programa de privatizaciones de empresas del estado, hemos realizado\\n\\n102\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nuna obra que he describido, descripto ya, con anterioridad connúmeros y nombres y sería muy largo repetir\\n\\n103\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nahora, la doy por sabida y entendida. Desearía simplemente recalcar la importancia del concepto y la\\n\\n104\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nacción de la empresa periférica, que significa que en aquellos casos en los que la empresa de servicios púlicos\\n\\n105\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nno puede privatizarse por falta de interesados en tomarla, se realicen , esa empresa estatal realice l\\n\\n106\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\na mayor cantidad de servicios y obras a través de contratos con empresa privadas, esta acción ha sido\\n\\n107\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nllevada adelante en una gran proporción en todas las empresas del estado y esto es mucho más significativo\\n\\n108\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nen realidad en forma del gasto público y de la eficiencia que la propia privatización de empresas enteras.\\n\\n109\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nquisiera dejar un solo ejemplo, es el del sector petrolero, donde actualmente, el 40% de la actividad\\n\\n110\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nque en él se realiza está efectuada por el sector privado, frente a la participación prácticamente nula\\n\\n111\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nde 1975. En cuanto a la inversión pública encontramos un nivel sobredimensionado de la misma que estaba\\n\\n112\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nteniendo realmente consecuencias inflacionarias serias, además de un gran atraso en toda la infraestructura\\n\\n113\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\neconómica, a este respecto hicimos una reprogramación en el tiempo de la misma y por primera vez en la\\n\\n114\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nhistoria argentina se sancionó un presupuesto decenal de inversión pública que abarca la década de 1980\\n\\n115\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nen el cual se han establecido por orden de prioridades, con criterios de rentabilidad, y teniendo en\\n\\n116\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ncuenta todos los factores por sectores y por obras para que esto se haga en forma ordenada y de acuerdo a\\n\\n117\\n0-1:0-1:0-1 --> 0-1:0-1:0-1',\n", + " 'bytes': 15639,\n", + " 'sha1': 'hbbzal250la06ghyx2aa6s7z4w0lp3i',\n", + " 'parent_id': 47024440,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47173009,\n", + " 'timestamp': '2010-12-18T19:40:15Z',\n", + " 'user': {'id': 123663, 'text': 'MotherForker'},\n", + " 'page': {'id': 12367633,\n", + " 'title': 'Martinez.de.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0.5 0-1:0-1:0-1 --> 0-1:0-1:0-1 Transmite LRA1 Radio Nacional Buenos Aires República Argentina\\n\\n\\n0.75 0-1:0-1:0-1 --> 0-1:0-1:0-1 y ATC LS 82 Canal 7 \\n\\n\\n1 0-1:0-1:0-1 --> 0-1:0-1:0-1 Juntamente con \\n\\n\\n2 0-1:0-1:0-1 --> 0-1:0-1:0-1 todas las emisoras integrantes de la cadena nacional de radio y televisión. A continuación se escuchará\\n\\n3 0-1:0-1:0-1 --> 0-1:0-1:0-1 la palabra de su excelencia el Sr. Ministro de EconomÃ\\xada de la Nación en un mensaje al paÃ\\xads al finalizar\\n\\n4 0-1:0-1:0-1 --> 0-1:0-1:0-1 su gestión de cinco años al frente de la cartera a su cargo. Esta es la palabra del Sr. José Alfredo\\n\\n5 0-1:0-1:0-1 --> 0-1:0-1:0-1 MartÃ\\xadnez de Hoz. En esta ocasión, que será la última en que tenga oportunidad de dirigirme a mis conciudadanos\\n\\n6 0-1:0-1:0-1 --> 0-1:0-1:0-1 en función de ministro de economÃ\\xada de la nación, no es mi propósito hacer un balance pormenorizado de\\n\\n7 0-1:0-1:0-1 --> 0-1:0-1:0-1 nuestra gestión. Ella podrá encontrarse enuna sÃ\\xadntesis apretada de la memoria que publicará el ministerio\\n\\n8 0-1:0-1:0-1 --> 0-1:0-1:0-1 y cada una de las secretarÃ\\xadas de estado y empresas de la órbita del ministerio. Deseo simplemente hacer\\n\\n9 0-1:0-1:0-1 --> 0-1:0-1:0-1 algunas reflexiones que tienen como propósito no sólamente esclarecer algunos aspectos de nuestra acción,\\n\\n10 0-1:0-1:0-1 --> 0-1:0-1:0-1 sino también hacer posible que se medite sobre ellos para que los argentinos pensemos qué clase de paÃ\\xads y\\n\\n11 0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n12 0-1:0-1:0-1 --> 0-1:0-1:0-1 decir, consideramos que ella hace a la esencia misma de la existencia del hombre y debe ser ejercida\\n\\n13 0-1:0-1:0-1 --> 0-1:0-1:0-1 con responsabilidad. De allÃ\\xad deriva el acento que hemos puesto en la libre iniciativa individual, en\\n\\n14 0-1:0-1:0-1 --> 0-1:0-1:0-1 la importancia de la empresa privada en el esquema productivo del paÃ\\xads, y en la eliminación del excesivo\\n\\n15 0-1:0-1:0-1 --> 0-1:0-1:0-1 estatización o intervención del estado y regulación de la economÃ\\xada. Esta función subsidiaria del estado\\n\\n16 0-1:0-1:0-1 --> 0-1:0-1:0-1 que hemos proclamado no tiene por objeto eliminar al mismo como simple espectador de la acción económica\\n\\n17 0-1:0-1:0-1 --> 0-1:0-1:0-1 que sucede en la nación, sino dejarlo con la gran función orientadora, la del control superior, pero\\n\\n18 0-1:0-1:0-1 --> 0-1:0-1:0-1 no como empresario interviniendo en la gestión diaria ni reglamentando ni ahogando a la iniciativa individual\\n\\n19 0-1:0-1:0-1 --> 0-1:0-1:0-1 sino utilizando esos grandes instrumentos que son las grandes polÃ\\xadticas monetarias, fiscal, cambiaria\\n\\n20 0-1:0-1:0-1 --> 0-1:0-1:0-1 arancelaria, crediticia, impositiva, este es el concepto del estado moderno a nuestro juicio y con este\\n\\n21 0-1:0-1:0-1 --> 0-1:0-1:0-1 esquema, con el acento puesto en la importancia de la empresa privada dentro del cuadro de las reglamentaciones\\n\\n22 0-1:0-1:0-1 --> 0-1:0-1:0-1 generales establecidas por el Estado, creemos que se haya la fórmula para el progreso de nuestro paÃ\\xads.\\n\\n23 0-1:0-1:0-1 --> 0-1:0-1:0-1 En esta etapa que nos ha tocado llevar a cabo la transformación de conceptos que han venido primando\\n\\n24 0-1:0-1:0-1 --> 0-1:0-1:0-1 en el paÃ\\xads en los últimos 30 años casi sin interrupción, una de las labores principales a la que nos hemos\\n\\n25 0-1:0-1:0-1 --> 0-1:0-1:0-1 dedicado ha sido lo que hemos llamado, el redimencionamiento del Estado y sus funciones bajo estos mismos\\n\\n26 0-1:0-1:0-1 --> 0-1:0-1:0-1 conceptos. Esto ha comprendido cinco grandes cursos de acción. El primero es la reducción del déficit\\n\\n27 0-1:0-1:0-1 --> 0-1:0-1:0-1 del presupuesto nacional y su financiamiento no inflacionario. El segundo la reducción y la racionalización\\n\\n28 0-1:0-1:0-1 --> 0-1:0-1:0-1 del gasto público. El tercero, el programa de privatización de las empresas estatales, el cuarto, el\\n\\n29 0-1:0-1:0-1 --> 0-1:0-1:0-1 reordenamiento y la reprogramación de la inversión pública. Y el quinto, la reforma del sistema impositivo,\\n\\n30 0-1:0-1:0-1 --> 0-1:0-1:0-1 su actualización simplificación y el mejoramiento del aparato de recaudación. Todo ello ha implicado\\n\\n31 0-1:0-1:0-1 --> 0-1:0-1:0-1 un trabajo largo, dificil y duro. Los resultados que se obtienen en esta acción, no pueden esperarse\\n\\n32 0-1:0-1:0-1 --> 0-1:0-1:0-1 que se vean realizados de la noche a la mañana y ni siquiera en cinco años, debe comprenderse que existe\\n\\n33 0-1:0-1:0-1 --> 0-1:0-1:0-1 una gran inercia en la estructura administrativa del Estado, inercia que también encontramos a todo cambio,\\n\\n34 0-1:0-1:0-1 --> 0-1:0-1:0-1 inercia fÃ\\xadsica inercia mental, en la cual hay que hacer un gran esfuerzo para llevar adelante cada una\\n\\n35 0-1:0-1:0-1 --> 0-1:0-1:0-1 de estas transformaciones profundas que nos hemos propuesto. Se han labrado indudablemente grandes adelantos,\\n\\n36 0-1:0-1:0-1 --> 0-1:0-1:0-1 nosotros creemos que son insuficientes pero también consideramos que hemos puesto las bases, que hemos\\n\\n37 0-1:0-1:0-1 --> 0-1:0-1:0-1 realizado las principales transformaciones y que luego con la consecución de este esfuerzo, con perseverancia,\\n\\n38 0-1:0-1:0-1 --> 0-1:0-1:0-1 con disciplina y con firmeza, el paÃ\\xads en el curso de los años siguientes podrá confirmar esta acción\\n\\n39 0-1:0-1:0-1 --> 0-1:0-1:0-1 y lograr la plena realización de los objetivos que nos hemos propuesto. Indudablemente en esta acción\\n\\n40 0-1:0-1:0-1 --> 0-1:0-1:0-1 comprendemos que muchas de las cosas realizadas no, sus efectos no son visibles a la opinión pública\\n\\n41 0-1:0-1:0-1 --> 0-1:0-1:0-1 en un primer momento, incluso no se producen en seguida. Algunas de ellas tardan un cierto tiempo, a\\n\\n42 0-1:0-1:0-1 --> 0-1:0-1:0-1 veces un año, dos, tres y aún más. Por ejemplo, el resultado de la modernización y el reciclamiento industrial\\n\\n43 0-1:0-1:0-1 --> 0-1:0-1:0-1 que se ha llevado a cabo bajo nuestra acción, recién se producirá dentro de los próximos digamos, dos\\n\\n44 0-1:0-1:0-1 --> 0-1:0-1:0-1 años en que los nuevos productos saldrán al consumo. Lo mismo con las grandes obras de infraestructura\\n\\n45 0-1:0-1:0-1 --> 0-1:0-1:0-1 que hemos comenzado que quedarán terminadas dentro de dos años. Todo el concepto de la restructuración\\n\\n46 0-1:0-1:0-1 --> 0-1:0-1:0-1 de la economÃ\\xada, no se logra completar asÃ\\xad ni siquiera en cinco años. Pero en este perÃ\\xadodo si creemos\\n\\n47 0-1:0-1:0-1 --> 0-1:0-1:0-1 que hemos sentado las bases firmes para esta transformación, y que a lo largo de los próximos años, lo\\n\\n48 0-1:0-1:0-1 --> 0-1:0-1:0-1 que no se haya visto ya se irá comprobando en su realización y su fructificación a lo largo de este perÃ\\xadodo\\n\\n49 0-1:0-1:0-1 --> 0-1:0-1:0-1 próximo. Pero para ello es necesario que el esfuerzo sea continuado, con perseverancia, con firmeza,\\n\\n50 0-1:0-1:0-1 --> 0-1:0-1:0-1 sin desmayo, sin ceder a las presiones sectoriales ni internas del propio estado ni externas del sector\\n\\n51 0-1:0-1:0-1 --> 0-1:0-1:0-1 público sino siempre teniendo en cuenta el interés general y el bien común. Indudablemente es muy dificil\\n\\n52 0-1:0-1:0-1 --> 0-1:0-1:0-1 hacer un resumen de los resultados logrados a este respecto en cuanto a redimensionamiento del Estado,\\n\\n53 0-1:0-1:0-1 --> 0-1:0-1:0-1 pero me limitaré a destacar algunos puntos salientes. Con respecto a el déficit por necesidad de financiamiento\\n\\n54 0-1:0-1:0-1 --> 0-1:0-1:0-1 del presupuesto, lo recibimos en el año 75 con un 14 y medio % en relación al producto bruto. Esta fue\\n\\n55 0-1:0-1:0-1 --> 0-1:0-1:0-1 la situación que existÃ\\xada a comienzo de nuestra función. En el 77 y en el 78 ya se encontraba en el 3\\n\\n56 0-1:0-1:0-1 --> 0-1:0-1:0-1 y medio % siempre en relación al producto bruto en el 78 fue del 4% y en hemos programado para el 81,\\n\\n57 0-1:0-1:0-1 --> 0-1:0-1:0-1 presupuestado, que no sobrepase el 3%. De manera que aquÃ\\xad hay una baja importante, de 10 puntos en relación\\n\\n58 0-1:0-1:0-1 --> 0-1:0-1:0-1 con el producto bruto, en cuanto a la necesidad de financiamiento del presupuesto nacional. También en\\n\\n59 0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n60 0-1:0-1:0-1 --> 0-1:0-1:0-1 a las modernas prácticas internacionales y hemos enfocado el concepto global del sector público que antes\\n\\n61 0-1:0-1:0-1 --> 0-1:0-1:0-1 no se hacÃ\\xada, lo cual permite que se encare, no sólo la polÃ\\xadtica fiscal del estado de la administración\\n\\n62 0-1:0-1:0-1 --> 0-1:0-1:0-1 central y de sus propios organismos, sino también la polÃ\\xadtica tarifaria y de precios de los servicios\\n\\n63 0-1:0-1:0-1 --> 0-1:0-1:0-1 públicos, la inversión pública en general, de todo el sector público nacional, provincial y de municipalidades,\\n\\n64 0-1:0-1:0-1 --> 0-1:0-1:0-1 junto con el sector provincial y también el endeudamiento global del sector público. hemos reducido la\\n\\n65 0-1:0-1:0-1 --> 0-1:0-1:0-1 participación del estado en la demanda final del 35% en que se encontraba en 1975 al 32% en 1980.\\n\\n66 0-1:0-1:0-1 --> 0-1:0-1:0-1 Hemos realizado un serio esfuerzo para la reducción del número de agentes públicos que estaba realmente\\n\\n67 0-1:0-1:0-1 --> 0-1:0-1:0-1 sobrecargado y a la par hemos mejorado sustancialmente su remuneración en términos reales, porque la\\n\\n68 0-1:0-1:0-1 --> 0-1:0-1:0-1 misma se encontraba también a niveles inferiores con respecto a los sectores económicos y sociales del pais\\n\\n69 0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n70 0-1:0-1:0-1 --> 0-1:0-1:0-1 solamente, en estos 5 años hemos reducido más de 100 mil personas., Hemos pasado de 505 mil agentes a\\n\\n71 0-1:0-1:0-1 --> 0-1:0-1:0-1 397 mil. O sea una reducción del 21 y medio % . Al mismo tiempo hemos encarado la transformación de todas\\n\\n72 0-1:0-1:0-1 --> 0-1:0-1:0-1 las grandes empresas de servicio público pertenecientes al estado en nuestra área. La mayor parte de ellas\\n\\n73 0-1:0-1:0-1 --> 0-1:0-1:0-1 han sido transformadas en sociedades de capital, para ponerlas en condiciones de accionar con la agilidad\\n\\n74 0-1:0-1:0-1 --> 0-1:0-1:0-1 de la empresa privada, pero también con la responsabilidad de la misma. Es decir, les hemos exigido\\n\\n75 0-1:0-1:0-1 --> 0-1:0-1:0-1 que lleven balances e inventarios que antes no tenÃ\\xadan y se desconocÃ\\xada su verdadera situación económica\\n\\n76 0-1:0-1:0-1 --> 0-1:0-1:0-1 y financiera. Les hemos exigido a la par que paguen impuestos ciñendolos o eliminando todas las exenciones\\n\\n77 0-1:0-1:0-1 --> 0-1:0-1:0-1 impositivas de que antes gozaban, para que puedan y deban aprender a operar con eficiencia al mismo tiempo\\n\\n78 0-1:0-1:0-1 --> 0-1:0-1:0-1 que con responsabilidad. Y las hemos apoyado en el otro sentido, en el de que el precio de sus servicios\\n\\n79 0-1:0-1:0-1 --> 0-1:0-1:0-1 y sus productos no esté afectado por conceptos polÃ\\xadticos sino que esté en el nivel dado por el mercado.\\n\\n80 0-1:0-1:0-1 --> 0-1:0-1:0-1 En este sentido, el resultado ha sido yo dirÃ\\xada de alguna manera satisfactorio, porque si tomamos un promedio\\n\\n81 0-1:0-1:0-1 --> 0-1:0-1:0-1 de las grandes empresas de servicios públicos estatales podremos comprobar comparando su produccion con\\n\\n82 0-1:0-1:0-1 --> 0-1:0-1:0-1 el número de agentes, han mejorado en este promedio para estas grandes empresas de servicios públicos en\\n\\n83 0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n84 0-1:0-1:0-1 --> 0-1:0-1:0-1 nacional para poder, no sólamente llevar adelante sus inversiones, sino siplmemente pagar sus gastos\\n\\n85 0-1:0-1:0-1 --> 0-1:0-1:0-1 operativos, a partir de 1978 este número quedó reducido a sólamente 2 de ellas. ferrocarriles y encotel,\\n\\n86 0-1:0-1:0-1 --> 0-1:0-1:0-1 y algunos para los cuales no se preveÃ\\xada solución posible como la flota fluvial del estado, se dispuso\\n\\n87 0-1:0-1:0-1 --> 0-1:0-1:0-1 su privatización y la venta de todos sus elementos y materiales. El ejemplo más dificil , el de los\\n\\n88 0-1:0-1:0-1 --> 0-1:0-1:0-1 ferrocarrilles, en el que todavÃ\\xada se recibe un aporte sustancial del tesoro para poder sobrevivir , allÃ\\xad\\n\\n89 0-1:0-1:0-1 --> 0-1:0-1:0-1 también hemos realizado una muy importante obra de racionalización y de reorganización. Hemos clausurado\\n\\n90 0-1:0-1:0-1 --> 0-1:0-1:0-1 o levantado 10 mil kms de vÃ\\xadas de las 42.500 que existÃ\\xadan. O sea, hemos hecho una reducción de aproximadamente\\n\\n91 0-1:0-1:0-1 --> 0-1:0-1:0-1 un 23% . Hemos también clausurado 1000 de las 2400 estaciones. Esto significa haberlas reducido en un\\n\\n92 0-1:0-1:0-1 --> 0-1:0-1:0-1 42%. Hemos también reducido en la mitad los 30500 trenes kilómetro hora de pasajeros que funcionaban\\n\\n93 0-1:0-1:0-1 --> 0-1:0-1:0-1 en el paÃ\\xads. Y en cuanto al personal, de la empresa ferrocarriles del Estado ha disminuido de los 156.000\\n\\n94 0-1:0-1:0-1 --> 0-1:0-1:0-1 que se encontraban al comienzo de nuestra gestión a 96.000 en la actualidad. Esto implica nuevamente\\n\\n95 0-1:0-1:0-1 --> 0-1:0-1:0-1 una reducción de aproximadamente el 40%. Esta acción, en todos sus aspectos, en todas estas empresas\\n\\n96 0-1:0-1:0-1 --> 0-1:0-1:0-1 ha sido muy dura, ha sido muy difÃ\\xadcil hacer comprender a estructura administrativas verdaderamente enquistadas,\\n\\n97 0-1:0-1:0-1 --> 0-1:0-1:0-1 la importancia de la reducción del costo y de la operación con eficiencia. Creo que hemos logrado mucho,\\n\\n98 0-1:0-1:0-1 --> 0-1:0-1:0-1 pero quizás estemos solamente a la mitad del camino necesario y esta acción debe ser perseguida con mucha\\n\\n99 0-1:0-1:0-1 --> 0-1:0-1:0-1 firmeza. Cualquier aflojamiento o cualquier falta de apoyo o de firmeza o cualquier retroceso en este\\n\\n100 0-1:0-1:0-1 --> 0-1:0-1:0-1 sentido puede hacer perder todo el esfuerzo que se ha ganado y los resultados que se han obtenido en\\n\\n101 0-1:0-1:0-1 --> 0-1:0-1:0-1 estos pasados años. Con respecto al programa de privatizaciones de empresas del estado, hemos realizado\\n\\n102 0-1:0-1:0-1 --> 0-1:0-1:0-1 una obra que he describido, descripto ya, con anterioridad connúmeros y nombres y serÃ\\xada muy largo repetir\\n\\n103 0-1:0-1:0-1 --> 0-1:0-1:0-1 ahora, la doy por sabida y entendida. DesearÃ\\xada simplemente recalcar la importancia del concepto y la\\n\\n104 0-1:0-1:0-1 --> 0-1:0-1:0-1 acción de la empresa periférica, que significa que en aquellos casos en los que la empresa de servicios púlicos\\n\\n105 0-1:0-1:0-1 --> 0-1:0-1:0-1 no puede privatizarse por falta de interesados en tomarla, se realicen , esa empresa estatal realice l\\n\\n106 0-1:0-1:0-1 --> 0-1:0-1:0-1 a mayor cantidad de servicios y obras a través de contratos con empresa privadas, esta acción ha sido\\n\\n107 0-1:0-1:0-1 --> 0-1:0-1:0-1 llevada adelante en una gran proporción en todas las empresas del estado y esto es mucho más significativo\\n\\n108 0-1:0-1:0-1 --> 0-1:0-1:0-1 en realidad en forma del gasto público y de la eficiencia que la propia privatización de empresas enteras.\\n\\n109 0-1:0-1:0-1 --> 0-1:0-1:0-1 quisiera dejar un solo ejemplo, es el del sector petrolero, donde actualmente, el 40% de la actividad\\n\\n110 0-1:0-1:0-1 --> 0-1:0-1:0-1 que en él se realiza está efectuada por el sector privado, frente a la participación prácticamente nula\\n\\n111 0-1:0-1:0-1 --> 0-1:0-1:0-1 de 1975. En cuanto a la inversión pública encontramos un nivel sobredimensionado de la misma que estaba\\n\\n112 0-1:0-1:0-1 --> 0-1:0-1:0-1 teniendo realmente consecuencias inflacionarias serias, además de un gran atraso en toda la infraestructura\\n\\n113 0-1:0-1:0-1 --> 0-1:0-1:0-1 económica, a este respecto hicimos una reprogramación en el tiempo de la misma y por primera vez en la\\n\\n114 0-1:0-1:0-1 --> 0-1:0-1:0-1 historia argentina se sancionó un presupuesto decenal de inversión pública que abarca la década de 1980\\n\\n115 0-1:0-1:0-1 --> 0-1:0-1:0-1 en el cual se han establecido por orden de prioridades, con criterios de rentabilidad, y teniendo en\\n\\n116 0-1:0-1:0-1 --> 0-1:0-1:0-1 cuenta todos los factores por sectores y por obras para que esto se haga en forma ordenada y de acuerdo a\\n\\n117 0-1:0-1:0-1 --> 0-1:0-1:0-1',\n", + " 'bytes': 16150,\n", + " 'sha1': 'jze3gn0dzuqbvrpb73qla5y1sk8dsyi',\n", + " 'parent_id': 47172864,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47208671,\n", + " 'timestamp': '2010-12-19T15:13:09Z',\n", + " 'user': {'id': 3717, 'text': 'VIGNERON'},\n", + " 'page': {'id': 12375714,\n", + " 'title': 'Frankenstein (1910) - Full Movie.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[File:Frankenstein (1910) - Full Movie.ogv.fr.srt]] to [[TimedText:Frankenstein (1910) - Full Movie.ogv.fr.srt]]',\n", + " 'text': '1\\n00:09:00 --> 00:10:00\\nUne adaptation libre de la célèbre histoire de Madame Shelley par les productions Edison\\n\\n2\\n00:15:00 --> 00:16:00\\nFrankenstein part pour l’université\\n\\n3\\n00:32:00 --> 00:33:00\\nDeux ans plus tard, Frankenstein découvre le secret de la vie',\n", + " 'bytes': 266,\n", + " 'sha1': 'eneo5xn1jmzxf25n9j62ikk7o8ifuh6',\n", + " 'parent_id': 47208666,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 203829137,\n", + " 'timestamp': '2016-08-13T11:03:41Z',\n", + " 'user': {'id': 20645, 'text': 'The RedBurn'},\n", + " 'page': {'id': 12376028,\n", + " 'title': 'Folgers.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Jean -> Jane',\n", + " 'text': '0\\n00:00:01,707 --> 00:00:04,154\\nHarold le café est-il bon ?\\n\\n1\\n00:00:04,169 --> 00:00:05,185\\nuh-uhmmm\\n\\n2\\n00:00:05,005 --> 00:00:07,785\\nTu veux dire qu’il est aussi mauvais qu’hier ?\\n\\n3\\n00:00:07,785 --> 00:00:08,962\\nuh-huh\\n\\n4\\n00:00:09 --> 00:00:10,169\\nAucune amélioration ?\\n\\n5\\n00:00:10,446 --> 00:00:11,823\\nuh-uh\\n\\n6\\n00:00:12,002 --> 00:00:17\\nHarold, ne te contente pas de secouer la tête, tu dois me dire ce qui ne va pas avec le café\\n\\n7\\n00:00:17,538 --> 00:00:19\\nMauvais goût\\n\\n8\\n00:00:19,477 --> 00:00:21,002\\nQue vais-je faire maintenant ?\\n\\n9\\n00:00:22,623 --> 00:00:23,005\\nMary, salut\\n\\n10\\n00:00:23,007 --> 00:00:25\\nBonjour Jane\\n\\n11\\n00:00:25,038 --> 00:00:29,246\\nAide moi s’il-te-plait, Harold déteste mon café. Quelle marque utilises-tu ?\\n\\n12\\n00:00:30 --> 00:00:31\\nInstant Folgers\\n\\n13\\n00:00:31 --> 00:00:32\\nInstant Folgers ?\\n\\n14\\n00:00:32,002 --> 00:00:34\\nBon comme du café frais\\n\\n15\\n00:00:34,002 --> 00:00:37,008\\nBon comme du café frais. Je vais l’essayer.\\n\\n16\\n00:00:38,725 --> 00:00:42,008\\nJane, ce café est délicieux, le sais-tu ?\\n\\n17\\n00:00:42,002 --> 00:00:42,084\\num-hmmm\\n\\n18\\n00:00:43,464 --> 00:00:46\\nCe n’est pas le même que celui que nous avions avant, n’est-ce pas ?\\n\\n19\\n00:00:46,002 --> 00:00:46,502\\num-uhmmm\\n\\n20\\n00:00:47,148 --> 00:00:51,433\\nNe te contente pas de secouer la tête, dis-moi pourquoi le café est si bon.\\n\\n21\\n00:00:52,664 --> 00:00:54,005\\nBon goût\\n\\n22\\n00:00:55,006 --> 00:00:59\\nBon comme du café frais, Instant Folgers',\n", + " 'bytes': 1468,\n", + " 'sha1': 'qjaq4nlwkz3mc0sorkcjt0yph71w5gf',\n", + " 'parent_id': 83475094,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 599853434,\n", + " 'timestamp': '2021-10-18T19:11:31Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 12382168,\n", + " 'title': 'Wikipedia video tutorial-1-Editing-en.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,938 --> 00:00:04,988\\nHello! My name\\'s Teresa.\\nNice to meet you here on Wikipedia!\\n\\n2\\n00:00:05,255 --> 00:00:08,004\\nAs you may know,\\nWikipedia is a free encyclopedia\\n\\n3\\n00:00:08,021 --> 00:00:10,754\\nwritten by its users: people like you!\\n\\n4\\n00:00:10,764 --> 00:00:15,014\\nToday, out of more\\nthan 250 million Wikipedia visitors,\\n\\n5\\n00:00:15,057 --> 00:00:17,974\\nover 10 million articles\\nhave been contributed\\n\\n6\\n00:00:17,982 --> 00:00:20,123\\nby more than 500 thousand editors\\n\\n7\\n00:00:20,135 --> 00:00:22,087\\nin over 250 languages.\\n\\n8\\n00:00:22,420 --> 00:00:24,353\\nIt\\'s really easy to share your knowledge\\n\\n9\\n00:00:24,353 --> 00:00:26,851\\nwith the many Wikipedia users\\naround the world.\\n\\n10\\n00:00:27,026 --> 00:00:29,581\\nRight now, you can help improve\\n\\n11\\n00:00:29,581 --> 00:00:33,104\\nthe world\\'s biggest and best\\nfree encyclopedia found on the net.\\n\\n12\\n00:00:33,187 --> 00:00:35,358\\nLet me show you just how easy it is.\\n\\n13\\n00:00:36,299 --> 00:00:38,947\\nWhen you search for something\\non the internet,\\n\\n14\\n00:00:38,947 --> 00:00:41,697\\none of the first hits\\nyou usually get is Wikipedia.\\n\\n15\\n00:00:42,172 --> 00:00:45,821\\nSo maybe you want to start\\nyour search directly in Wikipedia.\\n\\n16\\n00:00:46,354 --> 00:00:47,775\\nHave a look at this:\\n\\n17\\n00:00:47,999 --> 00:00:51,589\\nYou\\'ll find that most of the articles\\nare comprehensive and up-to-date.\\n\\n18\\n00:00:51,768 --> 00:00:54,887\\nHowever, you might come across\\nan article that is too short\\n\\n19\\n00:00:54,959 --> 00:00:56,403\\nor could use some improvement.\\n\\n20\\n00:00:56,450 --> 00:00:58,769\\nAnd who better to improve it than you?\\n\\n21\\n00:00:59,010 --> 00:01:03,517\\nWikipedia invites you to help build\\nan even better encyclopedia.\\n\\n22\\n00:01:04,515 --> 00:01:06,727\\nIn more than 90 percent of the cases,\\n\\n23\\n00:01:06,760 --> 00:01:09,509\\nyou don\\'t have to be\\na rocket scientist to contribute.\\n\\n24\\n00:01:09,566 --> 00:01:11,768\\nYou just have to want\\nto share what you know.\\n\\n25\\n00:01:11,813 --> 00:01:15,347\\nAnd to do that, you only have\\nto follow three small steps:\\n\\n26\\n00:01:15,448 --> 00:01:18,175\\nStep 1: Click on the edit button\\n\\n27\\n00:01:18,262 --> 00:01:20,823\\nStep 2: Write the text\\n\\n28\\n00:01:20,869 --> 00:01:25,861\\nand finally Step 3: Edit the summary\\nand click \\'Save page\\'.\\n\\n29\\n00:01:26,690 --> 00:01:28,317\\nWas that simple or what?\\n\\n30\\n00:01:28,348 --> 00:01:31,711\\nAnd you don\\'t even have to be logged in\\nor have an account to do that.\\n\\n31\\n00:01:31,837 --> 00:01:33,598\\nOne more time:\\n\\n32\\n00:01:33,683 --> 00:01:36,285\\nThe first step was the edit button.\\n\\n33\\n00:01:36,332 --> 00:01:38,555\\nHere it is at the top of the article.\\n\\n34\\n00:01:39,340 --> 00:01:42,786\\nClick the button\\nand you\\'ll come to this page.\\n\\n35\\n00:01:42,912 --> 00:01:45,038\\nThis is where you\\'ll make the changes.\\n\\n36\\n00:01:46,374 --> 00:01:49,432\\nTo make a change, place the cursor\\nat the point in the text\\n\\n37\\n00:01:49,492 --> 00:01:51,833\\nwhere you want to type in\\nor delete something.\\n\\n38\\n00:01:52,186 --> 00:01:56,016\\nAnd then simply make the change\\nas you would in any other document.\\n\\n39\\n00:01:56,713 --> 00:02:01,531\\n(Typing)\\n\\n40\\n00:02:02,648 --> 00:02:04,982\\nDon\\'t worry: if you do anything wrong,\\n\\n41\\n00:02:05,014 --> 00:02:07,794\\nit\\'s very easy to go back\\nto the previous version.\\n\\n42\\n00:02:08,253 --> 00:02:11,784\\nFinally, Step 3: Right below this area,\\n\\n43\\n00:02:11,845 --> 00:02:15,429\\nedit the summary by briefly describing\\nthe changes you\\'ve made\\n\\n44\\n00:02:15,540 --> 00:02:18,262\\n(Typing)\\n\\n45\\n00:02:18,536 --> 00:02:22,570\\nand then click the \\'Save page\\' button\\nto save all your changes.\\n\\n46\\n00:02:25,174 --> 00:02:29,612\\nWhen the article reappears, your changes\\nare instantly online and visible.\\n\\n47\\n00:02:31,987 --> 00:02:35,356\\nThese three steps are all\\nit takes to edit Wikipedia.\\n\\n48\\n00:02:36,045 --> 00:02:37,492\\nI know what you\\'re thinking:\\n\\n49\\n00:02:37,548 --> 00:02:41,300\\nyou\\'re thinking \"Wow!\\nNow I can rewrite history!\"\\n\\n50\\n00:02:41,496 --> 00:02:43,650\\nWell, my friend, you cannot.\\n\\n51\\n00:02:43,744 --> 00:02:45,993\\nBecause as you can see\\nin another tutorial,\\n\\n52\\n00:02:46,022 --> 00:02:48,538\\nWikipedia has several mechanisms in place\\n\\n53\\n00:02:48,615 --> 00:02:50,949\\nto guard against just\\nthat kind of behavior.\\n\\n54\\n00:02:51,529 --> 00:02:55,122\\nFalse information will be deleted\\nwithin minutes if not seconds.\\n\\n55\\n00:02:55,194 --> 00:02:57,515\\nAnd that\\'s what makes\\nWikipedia such a reliable\\n\\n56\\n00:02:57,545 --> 00:02:59,710\\nand comprehensive source of information.\\n\\n57\\n00:03:00,211 --> 00:03:05,523\\nSo remember, people like you who help\\ncreate this wonderful encyclopedia,\\n\\n58\\n00:03:05,566 --> 00:03:09,203\\nand as people like you that we need\\nto help make it even better.\\n\\n59\\n00:03:09,284 --> 00:03:11,297\\nSo now it\\'s your turn!\\n\\n60\\n00:03:11,739 --> 00:03:14,283\\nGoodbye, and good luck!',\n", + " 'bytes': 4754,\n", + " 'sha1': 'j22momuqa1ohfm3v1zfnwjqx2d3bcag',\n", + " 'parent_id': 341548510,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47356469,\n", + " 'timestamp': '2010-12-23T09:52:43Z',\n", + " 'user': {'text': '195.113.180.197'},\n", + " 'page': {'id': 12404551,\n", + " 'title': 'Edit Button.ogv.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Just few minor changes',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nExistuje tlačítko \"Editovat\".\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nJednoduše kliknete,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nnajdete text, změníte ho\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\na kliknete na \"uložit\". Je to opravdu jednoduché.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nFakt hustý je na wikipedii to,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nže můžete změnit cokoliv.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nNepotřebujete ničí svolení\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\na není to těžké.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nNa první pohled vás to může odradit,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nale opravdu to není těžké.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nLidé si to neuvědomují, je to jako kdyby byli slepí.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nČtou články a nevidí tlačítko \"Editovat\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nKlikněte na tlačítko a uvidíte, co se stane.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Editovat.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nKdyž se pro něco nadchnete,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\njdete a začnete editovat,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nmůžou se tak dít roztodivné věci\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\na to je opravdu nádherné.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nJe to jako startovací čára,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nněco jako výzva pro další život.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nKdyž začnete s novým článkem, budete nešťastní,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nbude se vám to zdát příšerné.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nAle počkejte... pár hodin\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\na uvidíte, jak se to rozvine v úžasnou věc.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nTlačítko \"Editovat\": použijte ho a něco změňte,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nuložte stránku: touhle změnou jste přispěli celému světu.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Ulož\".',\n", + " 'bytes': 1879,\n", + " 'sha1': 'gumydym7825403or3a5w5tpw6aljc7g',\n", + " 'parent_id': 47320638,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47529497,\n", + " 'timestamp': '2010-12-28T20:20:44Z',\n", + " 'user': {'id': 568922, 'text': 'Raylton P. Sousa'},\n", + " 'page': {'id': 12466240,\n", + " 'title': '480p-Publicidade-wikilivros.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:480p-Publicidade-wikilivros.ogv.en.srt]] to [[TimedText:480p-Publicidade-wikilivros.ogv.pt.srt]]',\n", + " 'text': '1\\n00:00:00,702 --> 00:00:03,925\\nDesde o início dos tempos\\n\\n2\\n00:00:06,817 --> 00:00:09,039\\nas pessoas\\n\\n3\\n00:00:11,701 --> 00:00:14,139\\nde todos os lugares\\n\\n4\\n00:00:16,724 --> 00:00:18,701\\nprocuram obter\\n\\n5\\n00:00:21,824 --> 00:00:24,337\\nrespostas\\n\\n6\\n00:00:26,698 --> 00:00:28,576\\ne conhecimento.\\n\\n7\\n00:00:32,712 --> 00:00:34,92\\nPouco a pouco\\n\\n8\\n00:00:38,457 --> 00:00:40,54\\nfoi criado e descoberto\\n\\n9\\n00:00:43,659 --> 00:00:46,228\\ntudo o que conhecemos hoje.\\n\\n10\\n00:00:49,693 --> 00:00:51,863\\nMas agora é possível\\n\\n11\\n00:00:52,072 --> 00:00:54,034\\ndar um passo à frente:\\n\\n12\\n00:00:57,834 --> 00:00:59,696\\npodemos juntar\\n\\n13\\n00:00:59,857 --> 00:01:02,566\\na pouca sebedoria individual \\n\\n14\\n00:01:03,082 --> 00:01:05,465\\ncom todo o conhecimento do mundo.\\n\\n15\\n00:01:08,744 --> 00:01:11,035\\na palavra chave ?\\n\\n16\\n00:01:12,073 --> 00:01:13,965\\ncompartilhar',\n", + " 'bytes': 853,\n", + " 'sha1': '030o2ke5bajxx7pspzbhs1pvpwxmij4',\n", + " 'parent_id': 47529404,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47546540,\n", + " 'timestamp': '2010-12-29T11:02:23Z',\n", + " 'user': {'id': 568922, 'text': 'Raylton P. Sousa'},\n", + " 'page': {'id': 12466268,\n", + " 'title': '480p-Publicidade-wikilivros.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,702 --> 00:00:03,925\\nSince the beginning of time\\n\\n2\\n00:00:06,817 --> 00:00:09,039\\npeople\\n\\n3\\n00:00:11,701 --> 00:00:14,139\\nof all places\\n\\n4\\n00:00:16,724 --> 00:00:18,701\\nseek\\n\\n5\\n00:00:21,824 --> 00:00:24,337\\nAnswers\\n\\n6\\n00:00:26,698 --> 00:00:28,576\\nand knowledge.\\n\\n7\\n00:00:32,712 --> 00:00:34,92\\nLittle by little\\n\\n8\\n00:00:38,457 --> 00:00:40,54\\nwas created and discovered\\n\\n9\\n00:00:43,659 --> 00:00:46,228\\neverything we know today.\\n\\n10\\n00:00:49,693 --> 00:00:51,863\\nBut it is now possible\\n\\n11\\n00:00:52,072 --> 00:00:54,034\\ntake a step forward:\\n\\n12\\n00:00:57,834 --> 00:00:59,696\\ncan join\\n\\n13\\n00:00:59,857 --> 00:01:02,566\\nwalking sebedoria individual\\n\\n14\\n00:01:03,082 --> 00:01:05,465\\nwith full knowledge of the world.\\n\\n15\\n00:01:08,744 --> 00:01:11,035\\nthe key word?\\n\\n16\\n00:01:12,073 --> 00:01:13,965\\nshare',\n", + " 'bytes': 814,\n", + " 'sha1': '94w57pnrh8vofdu5mttnrs2vf1m7o1b',\n", + " 'parent_id': 47546321,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47784829,\n", + " 'timestamp': '2011-01-03T22:06:04Z',\n", + " 'user': {'id': 57431, 'text': 'Neohitokiri~commonswiki'},\n", + " 'page': {'id': 12567771,\n", + " 'title': 'Sintel movie 720x306.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:01:47,250 --> 00:01:50,500 Esta hoja tiene un pasado oscuro. 2 00:01:51,799 --> 00:01:55,799 Ha derramado mucha sangre inocente. 3 00:01:58,000 --> 00:02:01...'\",\n", + " 'text': '1\\n00:01:47,250 --> 00:01:50,500\\nEsta hoja tiene un pasado oscuro.\\n\\n2\\n00:01:51,799 --> 00:01:55,799\\nHa derramado mucha sangre inocente.\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nEres una tonta por viajar sola, sin ninguna preparación.\\n\\n4\\n00:02:01,750 --> 00:02:04,799\\nTienes suerte de que aún corra sangre por tus venas.\\n\\n5\\n00:02:05,250 --> 00:02:06,299\\nGracias.\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nEntonces...\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\nQué te trae a la tierra de los guardianes?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\nEstoy buscando a alguien.\\n\\n9\\n00:02:18,000 --> 00:02:22,199\\nAlguien muy querido? Un alma gemela?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nUn dragón.\\n\\n11\\n00:02:28,849 --> 00:02:31,750\\nUna aventura peligrosa para una cazadora solitaria.\\n\\n12\\n00:02:32,949 --> 00:02:35,869\\nHe estado sola desde que tengo memoria.\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nYa casi terminamos. Shhh...\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nHey, quédate quieto.\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nBuenas noches, Scales.\\n\\n16\\n00:04:10,349 --> 00:04:13,849\\nAtrápalo, Scales! Vamos!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nScales?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nSi! Vamos!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nScales!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nHe fallado.\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\nSólo fallaste en ver...\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\nÉstas son tierras de dragones, Sintel.\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nEstás más cerca de lo que crees.\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nScales!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nScales?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nScales...',\n", + " 'bytes': 1551,\n", + " 'sha1': '4zqi33t5ehkjabxt3390ctvaj9g151p',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47784987,\n", + " 'timestamp': '2011-01-03T22:11:48Z',\n", + " 'user': {'id': 57431, 'text': 'Neohitokiri~commonswiki'},\n", + " 'page': {'id': 12567806,\n", + " 'title': 'Sintel movie 720x306.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:01:47,250 --> 00:01:50,500 この剣には暗い過去が 2 00:01:51,799 --> 00:01:55,799 多くの罪なき人の血で汚れている 3 00:01:58,000 --> 0...'\",\n", + " 'text': '1\\n00:01:47,250 --> 00:01:50,500\\nこの剣には暗い過去が\\n\\n2\\n00:01:51,799 --> 00:01:55,799\\n多くの罪なき人の血で汚れている\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nそんな頼りないのに 一人旅とは無茶なことを\\n\\n4\\n00:02:01,750 --> 00:02:04,799\\n生きているのが不思議な位じゃ\\n\\n5\\n00:02:05,250 --> 00:02:06,299\\nありがとう\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nで…\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\nなぜ「門番の地」に来たのかね?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\n探しているんです\\n\\n9\\n00:02:18,000 --> 00:02:22,199\\n大切な人? 親類かい?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nドラゴンを\\n\\n11\\n00:02:28,849 --> 00:02:31,750\\nハンター一人だと危険じゃな\\n\\n12\\n00:02:32,949 --> 00:02:35,869\\n私は物心ついた時からずっと一人でした\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nもう大丈夫だから…よしよし…\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nここに座って…\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nおやすみ、スケール\\n\\n16\\n00:04:10,349 --> 00:04:13,849\\nスケール! 待ちなさい!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nスケール?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nここよ!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nスケール!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nもうダメかも\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\n案ずるなシンテル\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\nここは「ドラゴンの地」じゃ\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nお前さんが思うよりずっと近い\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nスケール!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nスケール?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nスケール…',\n", + " 'bytes': 1640,\n", + " 'sha1': '5d7kuuwvukzimj7zjbe9x47fmdvj6ne',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47785085,\n", + " 'timestamp': '2011-01-03T22:15:52Z',\n", + " 'user': {'id': 57431, 'text': 'Neohitokiri~commonswiki'},\n", + " 'page': {'id': 12567829,\n", + " 'title': 'Sintel movie 720x306.ogv.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:01:47,250 --> 00:01:50,500 这把刀有一段黑暗的历史 2 00:01:51,799 --> 00:01:55,799 它沾满了太多无辜者的鲜血 3 00:01:58,000 --> 00:02:0...'\",\n", + " 'text': '1\\n00:01:47,250 --> 00:01:50,500\\n这把刀有一段黑暗的历史\\n\\n2\\n00:01:51,799 --> 00:01:55,799\\n它沾满了太多无辜者的鲜血\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\n你毫无准备就孤身前来,真是蠢到家了\\n\\n4\\n00:02:01,750 --> 00:02:04,799\\n你还活着已经算是很走运了\\n\\n5\\n00:02:05,250 --> 00:02:06,299\\n谢谢\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\n那么......\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\n是什么指引你来到了这片守护者之地?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\n为了找人\\n\\n9\\n00:02:18,000 --> 00:02:22,199\\n那人一定很重要吧?你的真情知己?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\n她是一条龙\\n\\n11\\n00:02:28,849 --> 00:02:31,750\\n孤身一人前往寻找可是很危险的\\n\\n12\\n00:02:32,949 --> 00:02:35,869\\n这种孤独伴随我多久早已记不清了\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\n就快弄好了,嘘......\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\n嗨,坐那别动\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\n晚安啦,小麟\\n\\n16\\n00:04:10,349 --> 00:04:13,849\\n追上它,小麟!加油哦!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\n小麟?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\n不错哦!加油!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\n小麟!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\n我失败了\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\n你只是败在盲目得去寻觅\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\n这里其实就是龙的国度了,辛泰奥\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\n你只是没有发觉离她有多近了\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\n小麟!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\n小麟?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\n小麟......',\n", + " 'bytes': 1580,\n", + " 'sha1': 'byzvg766t84gs02yviy6j7eyjpf00mf',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47785153,\n", + " 'timestamp': '2011-01-03T22:18:20Z',\n", + " 'user': {'id': 57431, 'text': 'Neohitokiri~commonswiki'},\n", + " 'page': {'id': 12567834,\n", + " 'title': 'Sintel movie 720x306.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:01:47,250 --> 00:01:50,500 Esta lâmina tem um passado escuro. 2 00:01:51,799 --> 00:01:55,799 Ela já derramou muito sangue inocente. 3 00:01:58,000 --> 00...'\",\n", + " 'text': '1\\n00:01:47,250 --> 00:01:50,500\\nEsta lâmina tem um passado escuro.\\n\\n2\\n00:01:51,799 --> 00:01:55,799\\nEla já derramou muito sangue inocente.\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nSomente uma tola viajaria assim, sozinha e despreparada.\\n\\n4\\n00:02:01,750 --> 00:02:04,799\\nVocê tem sorte de ainda ter sangue.\\n\\n5\\n00:02:05,250 --> 00:02:06,299\\nObrigada.\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nPois bem...\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\nO que a traz à terra dos guardiões do portal?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\nEu preciso encontrar alguém.\\n\\n9\\n00:02:18,000 --> 00:02:22,199\\nAlguém próximo? Uma alma gêmea?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nUm dragão.\\n\\n11\\n00:02:28,849 --> 00:02:31,750\\nUma tarefa perigosa para uma aventureira só.\\n\\n12\\n00:02:32,949 --> 00:02:35,869\\nEu sigo sozinha há mais tempo que eu me lembre.\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nEu já estou terminando. Shhh...\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nEi, não se meixa.\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nBoa noite, Scales.\\n\\n16\\n00:04:10,349 --> 00:04:13,849\\nVamos Scales! Pega ele!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nScales?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nÉ, boa!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nScales!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nEu falhei.\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\nA sua única falha foi enxergar e não ver...\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\nEstas são terras dos dragões, Sintel.\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nVocê está mais próxima do que imagina.\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nScales!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nScales?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nScales...',\n", + " 'bytes': 1570,\n", + " 'sha1': 'lrcwkjq9bmz0ast580nk5vq3j7arb5q',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47785188,\n", + " 'timestamp': '2011-01-03T22:19:42Z',\n", + " 'user': {'id': 57431, 'text': 'Neohitokiri~commonswiki'},\n", + " 'page': {'id': 12567846,\n", + " 'title': 'Sintel movie 720x306.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:01:47,250 --> 00:01:50,500 Cette lame a un passé sombre. 2 00:01:51,799 --> 00:01:55,799 Elle a fait couler trop de sang innocent. 3 00:01:58,000 --> 00:02...'\",\n", + " 'text': \"1\\n00:01:47,250 --> 00:01:50,500\\nCette lame a un passé sombre.\\n\\n2\\n00:01:51,799 --> 00:01:55,799\\nElle a fait couler trop de sang innocent.\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nTu es un peu bête pour voyager seule si peu équipée.\\n\\n4\\n00:02:01,750 --> 00:02:04,799\\nTu es chanceuse que ton sang circule encore.\\n\\n5\\n00:02:05,250 --> 00:02:06,299\\nMerci.\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nAlors...\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\nQu'est-ce qui t'amène sur la terre des guardiens?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\nJe recherche quelqu'un.\\n\\n9\\n00:02:18,000 --> 00:02:22,199\\nQuelqu'un de très cher? Une âme sœur?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nun dragon.\\n\\n11\\n00:02:28,849 --> 00:02:31,750\\nUne quête dangereuse pour une chasseuse solitaire.\\n\\n12\\n00:02:32,949 --> 00:02:35,869\\nJ'ai été seule aussi longtemps que je m'en souvienne.\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nC'est bientôt fini. Shhh...\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nHè, reste assis.\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nBonne nuit, Scales.\\n\\n16\\n00:04:10,349 --> 00:04:13,849\\nAttrape, Scales! vas-y!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nScales?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nOuai ! vas-y !\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nScales!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nJ'ai échoué.\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\nTu as seulement échoué d'observer...\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\nCe sont des terres à dragons, Sintel.\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nTu es plus proche que ce que tu ne crois.\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nScales!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nScales?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nScales...\",\n", + " 'bytes': 1581,\n", + " 'sha1': '1wcyky28w818quqq9p1nxhnwttt8bo2',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47785238,\n", + " 'timestamp': '2011-01-03T22:21:31Z',\n", + " 'user': {'id': 57431, 'text': 'Neohitokiri~commonswiki'},\n", + " 'page': {'id': 12567858,\n", + " 'title': 'Sintel movie 720x306.ogv.ar.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:01:47,250 --> 00:01:50,500 هذا النصل له ماض مظلم. 2 00:01:51,799 --> 00:01:55,799 لقد اسال الكثير من دماء الابريا...'\",\n", + " 'text': '1\\n00:01:47,250 --> 00:01:50,500\\nهذا النصل له ماض مظلم.\\n\\n2\\n00:01:51,799 --> 00:01:55,799\\nلقد اسال الكثير من دماء الابرياء.\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nانتِ حمقاء لانك سافرتى وحدك, وغير مستعدة.\\n\\n4\\n00:02:01,750 --> 00:02:04,799\\nانتِ محظوظة لكونك على قيد الحياة.\\n\\n5\\n00:02:05,250 --> 00:02:06,299\\nشكراً لك.\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nاذن...\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\nما الذى أتى بكِ الى ارض المتحكمين؟\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\nانا ابحث عن شخص ما.\\n\\n9\\n00:02:18,000 --> 00:02:22,199\\nشخص عزيز؟\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nتنين.\\n\\n11\\n00:02:28,849 --> 00:02:31,750\\nطلب خطير من صائدة وحيدة.\\n\\n12\\n00:02:32,949 --> 00:02:35,869\\nانا وحدى دائما لمدة طويلة حسب ما اذكر.\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nانا تقريبا انتهيت , صه...\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nظل جالساً.\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nعمت مساءً سكيلس.\\n\\n16\\n00:04:10,349 --> 00:04:13,849\\nاحضرها يا سكيلس, هيا!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nسكيلس؟\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nنعم! هيا!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nسكيلس!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nلقد فشلت.\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\nانتِ فقط فشلتِ فى الرؤية...\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\nهناك ارض للتانين , سينتل.\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nوانتِ اقرب لها اكثر مما تتخيلى.\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nسكيلس!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nسكيلس؟\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nسكيلس...',\n", + " 'bytes': 1752,\n", + " 'sha1': 'nhhswo4zhezfnbdpwo1yeju0jb3ncd3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 47785308,\n", + " 'timestamp': '2011-01-03T22:23:56Z',\n", + " 'user': {'id': 57431, 'text': 'Neohitokiri~commonswiki'},\n", + " 'page': {'id': 12567869,\n", + " 'title': 'Sintel movie 720x306.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:01:47,250 --> 00:01:50,500 Questa lama ha un oscuro passato. 2 00:01:51,799 --> 00:01:55,799 Ha sparso molto sangue innocente. 3 00:01:58,000 --> 00:02:01,4...'\",\n", + " 'text': \"1\\n00:01:47,250 --> 00:01:50,500\\nQuesta lama ha un oscuro passato.\\n\\n2\\n00:01:51,799 --> 00:01:55,799\\nHa sparso molto sangue innocente.\\n\\n3\\n00:01:58,000 --> 00:02:01,450\\nSei sciocca a viaggiare sola, completamente impreparata.\\n\\n4\\n00:02:01,750 --> 00:02:04,799\\nSei fortunato che il tuo sangue scorra ancora.\\n\\n5\\n00:02:05,250 --> 00:02:06,299\\nGrazie.\\n\\n6\\n00:02:07,500 --> 00:02:09,000\\nQuindi...\\n\\n7\\n00:02:09,400 --> 00:02:13,800\\nCosa ti porta nella terra dei guardiani?\\n\\n8\\n00:02:15,000 --> 00:02:17,500\\nSto cercando qualcuno.\\n\\n9\\n00:02:18,000 --> 00:02:22,199\\nQualcuno molto caro? Un'anima gemella?\\n\\n10\\n00:02:23,400 --> 00:02:25,000\\nUn drago.\\n\\n11\\n00:02:28,849 --> 00:02:31,750\\nUna ricerca pericolosa per una cacciatrice solitaria.\\n\\n12\\n00:02:32,949 --> 00:02:35,869\\nSono stata sola per quanto possa ricordare.\\n\\n13\\n00:03:27,250 --> 00:03:30,500\\nCi siamo quasi. Shhh...\\n\\n14\\n00:03:30,750 --> 00:03:33,500\\nHey, siediti tranquilla.\\n\\n15\\n00:03:48,250 --> 00:03:52,250\\nBuona notte, Scales.\\n\\n16\\n00:04:10,349 --> 00:04:13,849\\nPrendilo, Scales! Avanti!\\n\\n17\\n00:04:25,250 --> 00:04:28,250\\nScales?\\n\\n18\\n00:05:04,000 --> 00:05:07,500\\nSi! Avanti!\\n\\n19\\n00:05:38,750 --> 00:05:42,000\\nScales!\\n\\n20\\n00:07:25,850 --> 00:07:27,500\\nHo fallito.\\n\\n21\\n00:07:32,800 --> 00:07:36,500\\nHai solo fallito nel vedere...\\n\\n22\\n00:07:37,800 --> 00:07:40,500\\nQueste sono le terre dei draghi, Sintel.\\n\\n23\\n00:07:40,850 --> 00:07:44,000\\nSei piť vicino di quanto immagini.\\n\\n24\\n00:09:17,600 --> 00:09:19,500\\nScales!\\n\\n25\\n00:10:21,600 --> 00:10:24,000\\nScales?\\n\\n26\\n00:10:26,200 --> 00:10:29,800\\nScales...\",\n", + " 'bytes': 1544,\n", + " 'sha1': 'm1yjlci2nu5myqkc594e3fx7de55vqe',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48228663,\n", + " 'timestamp': '2011-01-13T21:18:22Z',\n", + " 'user': {'id': 31103, 'text': 'Bjankuloski06en'},\n", + " 'page': {'id': 12632167,\n", + " 'title': 'Nice People MEDIUM.ogv.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 Ако располагате со знаење, зошто мора да го задржите само за себе?\\n\\n2 00:00:04,249 --> 00:00:07,174 Треба да го споделите! Така сметам јас.\\n\\n3 00:00:07,174 --> 00:00:10,031 Ми се допаѓа, намената на оваа веб страна\\n\\n4 00:00:10,031 --> 00:00:15,325 не се вели „веб-страна“, ниту „вики“, ниту „Интернет“,\\n\\n5 00:00:15,325 --> 00:00:17,113 туку едноставно „Слободно знаење,\\n\\n6 00:00:17,113 --> 00:00:19,411 за секој, на својот мајчин јазик“.\\n\\n7 00:00:19,411 --> 00:00:21,548 Кога заедницата е отворена,\\n\\n8 00:00:21,548 --> 00:00:23,428 тоа се прави со тоа,\\n\\n9 00:00:23,428 --> 00:00:25,936 што се прифаќа поканата.\\n\\n10 00:00:25,936 --> 00:00:27,956 А Википедија е покана.\\n\\n11 00:00:27,956 --> 00:00:29,535 Секако не морате да ја прифатите поканата,\\n\\n12 00:00:29,535 --> 00:00:31,439 но поканата веќе е испратена\\n\\n13 00:00:31,439 --> 00:00:32,879 со копчето „Уреди“, кое вели\\n\\n14 00:00:32,879 --> 00:00:37,709 „Ајде, дружи нè, она што го знаеш е исто толку важно колку она што ние го знаеме“.\\n\\n15 00:00:37,709 --> 00:00:40,472 Знај дека им даваш образование на луѓето,\\n\\n16 00:00:40,472 --> 00:00:43,026 и не само на неколку луѓе туку на целиот свет.\\n\\n17 00:00:43,026 --> 00:00:47,113 Се чувствувам голем кога придонесувам на една енциклопедија,\\n\\n18 00:00:47,113 --> 00:00:51,455 која е достапна секому било каде во светот.\\n\\n19 00:00:51,455 --> 00:00:55,286 Среќен си кога им помагаш на другите, тоа е тоа.\\n\\n20 00:00:55,286 --> 00:00:57,283 Бидејќи јас сакам да бидам среќен, им помагам на другите.\\n\\n21 00:00:57,283 --> 00:01:00,650 Работиш заедно со многу различни луѓе,\\n\\n22 00:01:00,650 --> 00:01:04,156 со многу различни култури, а тоа е навистина восхитувачко.\\n\\n23 00:01:04,156 --> 00:01:06,501 Тоа според мене е навистина значајно,\\n\\n24 00:01:06,501 --> 00:01:08,754 тоа се навистина прекрасни луѓе.\\n\\n25 00:01:08,754 --> 00:01:10,890 Знаете, има толку многу навистина прекрасни луѓе\\n\\n26 00:01:10,890 --> 00:01:14,466 кои што се он-лајн и уредуваат\\n\\n27 00:01:14,466 --> 00:01:16,231 и наместо да се смешкаат еден на друг\\n\\n28 00:01:16,231 --> 00:01:18,437 или само да си разговараат\\n\\n29 00:01:18,437 --> 00:01:20,875 или да читаат било што друго,\\n\\n30 00:01:20,875 --> 00:01:22,198 тие се обидуваат да изградат нешто,\\n\\n31 00:01:22,198 --> 00:01:23,707 што на некој друг ќе му биде корисно.\\n\\n32 00:01:23,707 --> 00:01:26,029 Мислам дека тоа се навистина слатки и прекрасни луѓе.',\n", + " 'bytes': 3473,\n", + " 'sha1': 'rwj8kj2ysld3jo4x254cdl6pb5v3stm',\n", + " 'parent_id': 48228645,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48038984,\n", + " 'timestamp': '2011-01-08T17:44:35Z',\n", + " 'user': {'id': 121887, 'text': 'Brest'},\n", + " 'page': {'id': 12632188,\n", + " 'title': 'Nice People MEDIUM.ogv.MK.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:Nice People MEDIUM.ogv.mk.srt',\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'moved [[TimedText:Nice People MEDIUM.ogv.MK.srt]] to [[TimedText:Nice People MEDIUM.ogv.mk.srt]]: small MK',\n", + " 'text': '#REDIRECT [[TimedText:Nice People MEDIUM.ogv.mk.srt]]',\n", + " 'bytes': 53,\n", + " 'sha1': 'jd3dnluwixd3eee201d0bxz1i7xxqtq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601720888,\n", + " 'timestamp': '2021-10-24T14:46:25Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 12632589,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and partyally the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,571\\nМоето корисничко име е Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLali roja\\n\\n3\\n00:00:04,059 --> 00:00:05,141\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,258\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nМоето корисничко име е Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein,\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\nна германски - „книжно црвче“\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nЕ Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,404\\nNotafish\\n\\n13\\n00:00:19,438 --> 00:00:21,130\\nзнаете: «not a fish» („не е риба“)\\n\\n14\\n00:00:21,196 --> 00:00:22,243\\nTheo10011\\n\\n15\\n00:00:22,293 --> 00:00:23,785\\nМоето корисничко име е Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nМоето корисничко име е Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,283\\nwittylama, анаграм на моето\\nвистинско име Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nМоето корисничко име е Steven\\nWalling - моето вистинско име\\n\\n23\\n00:00:36,832 --> 00:00:38,393\\nМоето корисничко име е Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nМоето корисничко име е Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,689 --> 00:00:47,660\\nМоето корисничко име е Jdforrester\\nи јас уредувам на Википедија',\n", + " 'bytes': 1788,\n", + " 'sha1': 'llwu3yqqwpj7xpmkh1ubxg8u8crk58g',\n", + " 'parent_id': 48228898,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 59475873,\n", + " 'timestamp': '2011-09-15T20:14:13Z',\n", + " 'user': {'text': '188.82.225.10'},\n", + " 'page': {'id': 12646158,\n", + " 'title': 'Chocolate cake.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,458 --> 00:00:04,416\\n6 eggs; 150 g margarine; 225 g sugar; 225 g powder chocolate; 100 g flour; 250 g dark chocolate; 2.5 dl cream\\n\\n2\\n00:00:04,416 --> 00:00:15,916\\nmash margarine\\n\\n3\\n00:00:15,916 --> 00:00:47,416\\nadd sugar\\n\\n4\\n00:00:47,416 --> 00:01:00,291\\nseparate egg whites and yolks\\n\\n5\\n00:01:00,291 --> 00:01:30,166\\nadd egg yolks\\n\\n6\\n00:01:30,166 --> 00:02:07,458\\nadd powder chocolate\\n\\n7\\n00:02:07,458 --> 00:02:44,916\\nbeat egg whites\\n\\n8\\n00:02:44,916 --> 00:02:45,416\\nadd flour and egg whites alternatively\\n\\n8.5\\n00:02:45,416 --> 00:02:45,916\\n\\n\\n9\\n00:05:08,958 --> 0-1:0-1:0-1\\ngently melt the dark chocolate\\n\\n10\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nadd cream\\n\\n11\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n12\\n0-1:0-1:0-1 --> 0-1:0-1:0-1',\n", + " 'bytes': 723,\n", + " 'sha1': 'tt5thytdnv673pv1v42duwutijxmrdy',\n", + " 'parent_id': 48101664,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48112095,\n", + " 'timestamp': '2011-01-10T06:57:19Z',\n", + " 'user': {'id': 1177211, 'text': 'Waihorace'},\n", + " 'page': {'id': 12648595,\n", + " 'title': 'WalesAnniversaryAddress.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 Hi everybody and welcome to the tenth anniversary of Wikipedia.\\n\\n2 00:00:10,510 --> 00:00:15,400 It\\'s a really exciting day for everybody in the community and all around the world.\\n\\n3 00:00:15,410 --> 00:00:18,400 I\\'ve been spending a lot of time lately thinking about the history of Wikipedia\\n\\n4 00:00:18,410 --> 00:00:23,200 and where we came from and all the things we\\'ve been through to get where we are today.\\n\\n5 00:00:23,210 --> 00:00:28,100 I remember the first time I ever edited Wikipedia,\\n\\n6 00:00:28,100 --> 00:00:30,100 which was the first day Wikipedia existed,\\n\\n7 00:00:30,100 --> 00:00:32,700 and I clicked on \"edit\", and I typed \"Hello, world!\",\\n\\n8 00:00:32,750 --> 00:00:35,500 and hit \"Save\" and that was the first words in Wikipedia.\\n\\n9 00:00:35,600 --> 00:00:38,800 And I thought about what was to come and of course I really didn\\'t know what was to come\\n\\n10 00:00:38,900 --> 00:00:42,400 but over the years I\\'ve had a lot of wonderful experiences\\n\\n11 00:00:42,500 --> 00:00:46,200 I had the opportunity to come around the world and meet with many of you in person\\n\\n12 00:00:46,300 --> 00:00:49,950 I remember... several things stand out on my mind.\\n\\n13 00:00:50,050 --> 00:00:57,300 I remember the first board meeting for the Wikimedia Foundation, when I met in Paris with Florence\\n\\n14 00:00:57,400 --> 00:01:00,800 from French Wikipedia and Angela from English Wikipedia, the first board members\\n\\n15 00:01:00,900 --> 00:01:05,000 and we had a meeting to start to discuss building the Foundation\\n\\n16 00:01:05,050 --> 00:01:08,800 how we\\'re gonna get the money to keep this project going, how can we grow\\n\\n17 00:01:08,800 --> 00:01:09,900 and what does the future look like.\\n\\n18 00:01:10,000 --> 00:01:15,800 I remember sitting on the banks of the river in Berlin with German wikipedians,\\n\\n19 00:01:15,900 --> 00:01:21,400 and we were waiting, expecting for the one hundredth thousandth article to be written\\n\\n20 00:01:21,500 --> 00:01:24,800 so we sat outside and we kept hitting \"Reload\" on our computers to see\\n\\n21 00:01:25,000 --> 00:01:27,100 \"Oh, it\\'s ninety nine thousand, nine hundred and ninety seven\"\\n\\n22 00:01:27,200 --> 00:01:30,500 I guess every Wikipedia has gone through this milestone process, when you\\'re excited\\n\\n23 00:01:30,600 --> 00:01:34,500 when you\\'re getting close and then of course as we hit the one hundred thousand\\n\\n24 00:01:34,600 --> 00:01:37,400 we had the big argument about which article was really the one hundred thousandth\\n\\n25 00:01:37,500 --> 00:01:39,700 another great hobby of Wikipedians\\n\\n26 00:01:39,800 --> 00:01:46,600 And over the years I had many opportunities to come all around the world, I met with wikipedians in India\\n\\n27 00:01:46,700 --> 00:01:53,700 in China, in South America, really all around the world, and as I travel around and I talk to people\\n\\n28 00:01:53,800 --> 00:01:57,500 one of the most frequent questions I get from Wikipedia groups is \\n\\n29 00:01:57,600 --> 00:02:01,500 \"How do you see us compared to other wikipedians around the world\\n\\n30 00:02:01,600 --> 00:02:04,500 what\\'s different about the Brazilian Wikipedians, for example?\"\\n\\n31 00:02:04,600 --> 00:02:06,600 and what I have to say is \"Not much difference\".\\n\\n32 00:02:06,700 --> 00:02:10,800 It turns out that we tend to be very much the same all around the world\\n\\n33 00:02:10,900 --> 00:02:13,500 even though we come from very different cultures\\n\\n34 00:02:13,600 --> 00:02:18,500 many different kinds of people, but we also share the same experiences\\n\\n35 00:02:18,600 --> 00:02:20,700 we\\'ve all been through the same things.\\n\\n36 00:02:20,800 --> 00:02:23,900 I think everybody has reverted the same kinds of vandalism.\\n\\n37 00:02:24,000 --> 00:02:25,500 It doesn\\'t matter what language you\\'re working in\\n\\n38 00:02:25,500 --> 00:02:30,500 it doesn\\'t matter if your wiki has five hundred articles or five hundred thousands\\n\\n39 00:02:30,600 --> 00:02:34,000 or three million, you still get somebody who comes along\\n\\n40 00:02:34,000 --> 00:02:39,500 and replaces a whole wonderful article with two words of cursing or something like this.\\n\\n41 00:02:39,600 --> 00:02:42,700 And of course you just revert it and block the vandal, and all that.\\n\\n42 00:02:42,800 --> 00:02:46,600 That\\'s part of being a wikipedian, we\\'ve all had really interesting conversations\\n\\n43 00:02:46,600 --> 00:02:46,800 about the naming conventions of things\\n\\n44 00:02:46,800 --> 00:02:53,200 what do we call a river in Poland, how are we gonna name this\\n\\n45 00:02:53,300 --> 00:02:56,300 how are we gonna name that, what are the controversies that we need to figure out\\n\\n46 00:02:56,300 --> 00:02:58,400 and what is the thoughtful way forward.\\n\\n47 00:02:58,500 --> 00:03:02,500 So all around the world I find the same kinds of people doing the same kinds of work\\n\\n48 00:03:02,600 --> 00:03:07,500 because we had the same shared experience. And we also share the same values, the same ideals\\n\\n49 00:03:07,500 --> 00:03:12,600 the things we are working for – free encyclopedia for every person of the planet\\n\\n50 00:03:12,700 --> 00:03:15,900 written really by thoughtful people, that try to be neutral\\n\\n51 00:03:16,000 --> 00:03:19,800 try to be honest, trying to bring free information.\\n\\n52 00:03:19,900 --> 00:03:23,800 It\\'s still as exciting for me today as it was in the very early days when I started.\\n\\n53 00:03:23,800 --> 00:03:25,500 We\\'ve still got a lot of work left to do.\\n\\n54 00:03:25,600 --> 00:03:28,800 Today is a great moment to reflect on where we\\'ve been\\n\\n55 00:03:28,800 --> 00:03:32,800 to think about where we\\'re going, and wow, I don\\'t know\\n\\n56 00:03:32,900 --> 00:03:33,500 you can see how excited I\\'m getting.\\n\\n57 00:03:33,600 --> 00:03:37,800 I just want to say: Thank you so much for all the work that you\\'ve done\\n\\n58 00:03:37,900 --> 00:03:42,700 thank you so much for coming here today to meet with other people.\\n\\n59 00:03:42,800 --> 00:03:48,600 Do me a favor and find somebody in the crowd, who you have never met before in person\\n\\n60 00:03:48,600 --> 00:03:50,100 and introduce yourself and say:\\n\\n61 00:03:50,100 --> 00:03:52,200 \"Hey, what would you like to edit?\"\\n\\n62 00:03:52,300 --> 00:03:54,500 Let\\'s build this community\\n\\n63 00:03:54,500 --> 00:03:56,700 it\\'s all about a bunch of friends doing something useful.\\n\\n64 00:03:56,800 --> 00:04:01,900 So, thank you again and happy birthday to Wikipedia.\\n\\n<!--65 00:04:03,200 -*-> 00:04:12,900 Wikipedia 10 years of sharing the sum of all knowledge.-->',\n", + " 'bytes': 6482,\n", + " 'sha1': 'o82ishi2l7odi0a6q3qmfk78xsz8poq',\n", + " 'parent_id': 48111947,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48289957,\n", + " 'timestamp': '2011-01-15T12:18:52Z',\n", + " 'user': {'id': 21128, 'text': 'Amire80'},\n", + " 'page': {'id': 12649295,\n", + " 'title': 'WalesAnniversaryAddress.ogv.he.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'באיחור, עוד תיקון',\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 שלום לכולם וברוכים הבאים לחגיגת העשור של ויקיפדיה.\\n\\n2 00:00:10,510 --> 00:00:15,400 זהו יום מרגש מאוד עבור כולם בקהילה ובכל רחבי העולם.\\n\\n3 00:00:15,410 --> 00:00:18,400 אני ביליתי הרבה זמן לאחרונה בחשיבה על ההיסטוריה של ויקיפדיה,\\n\\n4 00:00:18,410 --> 00:00:23,200 על המקום שממנו באנו ועל כל הדברים שעברנו כדי להגיע למקום שבו אנחנו נמצאים היום.\\n\\n5 00:00:23,210 --> 00:00:28,100 אני נזכר בפעם הראשונה שערכתי את ויקיפדיה,\\n\\n6 00:00:28,100 --> 00:00:30,100 ביום הראשון שהיא התקיימה.\\n\\n7 00:00:30,100 --> 00:00:32,700 לחצתי על כפתור \"עריכה\", כתבתי \"שלום, עולם!\",\\n\\n8 00:00:32,750 --> 00:00:35,500 לחצתי על \"שמירה\" ואלו היו המילים הראשונות בוויקיפדיה.\\n\\n9 00:00:35,600 --> 00:00:38,800 וחשבתי על מה שיבוא וכמובן לא ידעתי מה יבוא,\\n\\n10 00:00:38,900 --> 00:00:42,400 אבל לאורך השנים היו לי חוויות נהדרות.\\n\\n11 00:00:42,500 --> 00:00:46,200 הייתה לי הזדמנות לטייל סביב העולם ולפגוש רבים מכם באופן אישי.\\n\\n12 00:00:46,300 --> 00:00:49,950 אני זוכר כמה דברים במיוחד.\\n\\n13 00:00:50,050 --> 00:00:57,300 אני נזכר בפגישת הוועד הראשונה של קרן ויקימדיה, כשנפגשתי בפריז עם פלורנס מוויקיפדיה הצרפתית\\n\\n14 00:00:57,400 --> 00:01:00,800 ועם אנג׳לה מוויקיפדיה האנגלית, חברות הוועד הראשונות,\\n\\n15 00:01:00,900 --> 00:01:05,000 נפגשנו כדי להתחיל לדבר על בניית הקרן,\\n\\n16 00:01:05,050 --> 00:01:08,800 איך נגייס את הכסף כדי להמשיך את המיזם הזה, איך אפשר לגדול,\\n\\n17 00:01:08,800 --> 00:01:09,900 ואיך העתיד נראה.\\n\\n18 00:01:10,000 --> 00:01:15,800 אני נזכר איך ישבתי על גדת הנהר בברלין עם ויקיפדים גרמנים,\\n\\n19 00:01:15,900 --> 00:01:21,400 וחיכינו, ציפינו שייכתב הערך המאה אלף.\\n\\n20 00:01:21,500 --> 00:01:24,800 אז ישבנו בחוץ, לחצנו על כפתור רענון במחשבים שלנו כדי לראות –\\n\\n21 00:01:25,000 --> 00:01:27,100 \"הנה, זה תשעים ותשע אלף, תשע מאות תשעים ושבע\".\\n\\n22 00:01:27,200 --> 00:01:30,500 אני חושב שכל ויקיפדיה עברה את השלב הזה של אבני דרך, כשאתם מתלהבים,\\n\\n23 00:01:30,600 --> 00:01:34,500 כשאתם מתקרבים. ואז כמובן הגענו למאה אלף\\n\\n24 00:01:34,600 --> 00:01:37,400 והיה לנו ויכוח גדול על איזה ערך הוא באמת הערך המאה אלף –\\n\\n25 00:01:37,500 --> 00:01:39,700 עוד תחביב גדול של ויקיפדים.\\n\\n26 00:01:39,800 --> 00:01:46,600 ולאורך השנים היו לי הרבה הזדמנויות להסתובב בעולם, ופגשתי ויקיפדים בהודו,\\n\\n27 00:01:46,700 --> 00:01:53,700 בסין, בדרום אמריקה, באמת בכל העולם, וכשאני מטייל ומדבר עם אנשים,\\n\\n28 00:01:53,800 --> 00:01:57,500 אחת השאלות הנפוצות ביותר היא\\n\\n29 00:01:57,600 --> 00:02:01,500 \"איך אנחנו בהשוואה לוויקיפדים משאר העולם,\\n\\n30 00:02:01,600 --> 00:02:04,500 מה שונה בוויקיפדים ברזילאים למשל?\"\\n\\n31 00:02:04,600 --> 00:02:06,600 ומה שאני חייב לומר הוא: \"אין הרבה הבדל\".\\n\\n32 00:02:06,700 --> 00:02:10,800 מסתבר שאנחנו נוטים להיות דומים מאוד בכל העולם,\\n\\n33 00:02:10,900 --> 00:02:13,500 אף שהגענו מתרבויות שונות מאוד\\n\\n34 00:02:13,600 --> 00:02:18,500 ואנחנו סוגים שונים של אנשים, יש לנו אותן חוויות,\\n\\n35 00:02:18,600 --> 00:02:20,700 כולנו עברנו את אותם הדברים.\\n\\n36 00:02:20,800 --> 00:02:23,900 כולנו שחזרנו את אותן ההשחתות.\\n\\n37 00:02:24,000 --> 00:02:25,500 זה לא משנה באיזו שפה אתם עובדים,\\n\\n38 00:02:25,500 --> 00:02:30,500 זה לא משנה אם בוויקי שלכם יש חמש מאות ערכים או חמש מאות אלף,\\n\\n39 00:02:30,600 --> 00:02:34,000 או שלושה מיליון, עדיין יהיה מישהו שיבוא\\n\\n40 00:02:34,000 --> 00:02:39,500 ויחליף את כל הערך הנהדר בשתי מילים של קללות או משהו כזה.\\n\\n41 00:02:39,600 --> 00:02:42,700 וכמובן, פשוט תשחזרו את זה ותחסמו את המשחית וכל זה.\\n\\n42 00:02:42,800 --> 00:02:46,600 זה חלק מלהיות ויקיפד. כולנו ניהלנו שיחות ממש מעניינות\\n\\n43 00:02:46,600 --> 00:02:46,602 זה חלק מלהיות ויקיפד. כולנו ניהלנו שיחות ממש מעניינות\\n\\n44 00:02:46,800 --> 00:02:53,200 על מתן שמות לערכים, איך נקרא לנהר בפולין, איך נקרא לזה ואיך נקרא לזה,\\n\\n45 00:02:53,300 --> 00:02:56,300 על אילו מחלוקות אנחנו צריכים לחשוב,\\n\\n46 00:02:56,300 --> 00:02:58,400 מהי הדרך החכמה קדימה.\\n\\n47 00:02:58,500 --> 00:03:02,500 אז סביב כל העולם אני מוצא את אותם הסוגים של האנשים עושים אותו סוג של עבודה,\\n\\n48 00:03:02,600 --> 00:03:07,500 כי לכולנו יש חוויות משותפות. ויש לנו גם אותם ערכים, אותם עקרונות,\\n\\n49 00:03:07,500 --> 00:03:12,600 הדברים שלמענם אנחנו עובדים – אנציקלופדיה חופשית לכל אדם על כדור הארץ,\\n\\n50 00:03:12,700 --> 00:03:15,900 שנכתבת באמת על־ידי אנשים חושבים, שמנסים להיות ניטרליים,\\n\\n51 00:03:16,000 --> 00:03:19,800 מנסים להיות ישרים, מנסים להביא מידע חופשי.\\n\\n52 00:03:19,900 --> 00:03:23,800 זה עדיין מלהיב אותי היום כמו בימים שבהם התחלתי.\\n\\n53 00:03:23,800 --> 00:03:25,500 עדיין יש לנו הרבה מאוד עבודה לעשות.\\n\\n54 00:03:25,600 --> 00:03:28,800 היום זה רגע נהדר לחשוב על המקום שהיינו בו,\\n\\n55 00:03:28,800 --> 00:03:32,800 לחשוב על לאן אנחנו הולכים ו־... ואו, אני לא יודע –\\n\\n56 00:03:32,900 --> 00:03:33,500 אתם רואים כמה אני מתרגש.\\n\\n57 00:03:33,600 --> 00:03:37,800 אני רק רוצה לומר: תודה רבה לכם על כל העבודה שעשיתם,\\n\\n58 00:03:37,900 --> 00:03:42,700 תודה רבה לכם על כך שבאתם הֵנָּה היום כדי לפגוש אנשים אחרים.\\n\\n59 00:03:42,800 --> 00:03:48,600 תעשו לי טובה ותמצאו מישהו בקהל שמעולם לא פגשתם אישית,\\n\\n60 00:03:48,600 --> 00:03:52,200 הציגו את עצמכם ואִמרו: \"שלום, מה בא לך לערוך?\"\\n\\n61 00:03:52,300 --> 00:03:56,700 בואו נבנה את הקהילה הזאת. אנחנו בסך הכול כמה חברים שעושים משהו שימושי.\\n\\n62 00:03:56,800 --> 00:04:01,900 אז תודה לכם שוב, ויום הולדת שמח לוויקיפדיה.\\n\\n63 00:04:03,200 --> 00:04:12,900 ויקיפדיה – 10 שנים של שיתוף סך כל הידע.',\n", + " 'bytes': 7602,\n", + " 'sha1': 'kl4iysegx8ui77wou7p1a04zp8fdsoq',\n", + " 'parent_id': 48238114,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48262408,\n", + " 'timestamp': '2011-01-14T20:33:27Z',\n", + " 'user': {'id': 211597, 'text': 'Lvova'},\n", + " 'page': {'id': 12649383,\n", + " 'title': 'WalesAnniversaryAddress.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 Привет всем, и добро пожаловать на десятилетие Википедии.\\n\\n2 00:00:10,510 --> 00:00:15,400 Это действительно волнующий день для каждого члена сообщества и для всех в мире.\\n\\n3 00:00:15,410 --> 00:00:18,400 Я в последнее время провёл много времени, думая об истории Википедии,\\n\\n4 00:00:18,410 --> 00:00:23,200 и откуда мы пришли, и что пережили, чтобы получить то, где мы находимся нынче.\\n\\n5 00:00:23,210 --> 00:00:28,100 Я помню самый первый раз, когда я редактировал Википедию,\\n\\n6 00:00:28,100 --> 00:00:30,100 в первый день существования Википедии,\\n\\n7 00:00:30,100 --> 00:00:32,700 когда я нажал на «править», и написал: «Hello, world!»,\\n\\n8 00:00:32,750 --> 00:00:35,500 и кликнул «сохранить», и это были первые слова в Википедии.\\n\\n9 00:00:35,600 --> 00:00:38,800 И я подумал о том, что должно было произойти, и, конечно, я совершенно не знал, что произошло,\\n\\n10 00:00:38,900 --> 00:00:42,400 но спустя годы у меня есть потрясающий опыт.\\n\\n11 00:00:42,500 --> 00:00:46,200 У меня была возможность ездить по всему миру и встретиться лично со многими из вас.\\n\\n12 00:00:46,300 --> 00:00:49,950 Я помню… несколько вещей стоят передо мной.\\n\\n13 00:00:50,050 --> 00:00:57,300 Я помню первое заседание правления Фонда Викимедиа, когда я встретился в Париже с Флоранс\\n\\n14 00:00:57,400 --> 00:01:00,800 из Википедии на французском языке и Анджелой из Википедии на английском, первыми членами правления,\\n\\n15 00:01:00,900 --> 00:01:05,000 и у нас была встреча, на которой началось обсуждение, как создать Фонд,\\n\\n16 00:01:05,050 --> 00:01:08,800 как мы можем получать деньги для поддержки существования проекта, как мы можем расти\\n\\n17 00:01:08,800 --> 00:01:09,900 и на что похоже будущее.\\n\\n18 00:01:10,000 --> 00:01:15,800 Я помню, как сидел на берегах реки в Берлине с немецкими википедистами,\\n\\n19 00:01:15,900 --> 00:01:21,400 и мы ждали, выжидали написания стотысячной статьи,\\n\\n20 00:01:21,500 --> 00:01:24,800 сидели и кликали «Перезагрузить» на наших компьютерах, чтобы увидеть:\\n\\n21 00:01:25,000 --> 00:01:27,100 «Ах, вот девяносто девять тысяч девятьсот девяносто седьмая»\\n\\n22 00:01:27,200 --> 00:01:30,500 Я думаю, каждая Википедия прошла этот этап, когда вы впечатлятесь,\\n\\n23 00:01:30,600 --> 00:01:34,500 подходите всё ближе, и затем, конечно же, как и мы, достигаете стотысячной.\\n\\n24 00:01:34,600 --> 00:01:37,400 У нас был огромный спор о том, какая из статей — стотысячная,\\n\\n25 00:01:37,500 --> 00:01:39,700 это отдельное хобби википедистов.\\n\\n26 00:01:39,800 --> 00:01:46,600 И за эти годы у меня было множество возможностей посещать весь мир, я встретился с википедистами в Индии,\\n\\n27 00:01:46,700 --> 00:01:53,700 Китае, Южной Америке, реально по всему миру, и я путешествовал и говорил с людьми\\n\\n28 00:01:53,800 --> 00:01:57,500 один из самых часто задаваемых вопросов, который я слышал от групп википедистов, был\\n\\n29 00:01:57,600 --> 00:02:01,500 «Как вы думаете, по сравнению с другими википедистами всего мира\\n\\n30 00:02:01,600 --> 00:02:04,500 в чём отличие, например, бразильских википедистов?»\\n\\n31 00:02:04,600 --> 00:02:06,600 И вот что я им говорил: «Нет большой разницы».\\n\\n32 00:02:06,700 --> 00:02:10,800 Оказывается, мы во всём мире, как правило, очень похожи друг на друга,\\n\\n33 00:02:10,900 --> 00:02:13,500 даже если мы из очень разных культур,\\n\\n34 00:02:13,600 --> 00:02:18,500 много разных людей, но у нас также есть общий опыт,\\n\\n35 00:02:18,600 --> 00:02:20,700 мы все прошли через схожие вещи.\\n\\n36 00:02:20,800 --> 00:02:23,900 Я думаю, каждый отменял разные виды вандализма.\\n\\n37 00:02:24,000 --> 00:02:25,500 Не важно, с каким языком вы работаете,\\n\\n38 00:02:25,500 --> 00:02:30,500 не важно, пять сотен статей в вашей вики или пять сотен тысяч,\\n\\n39 00:02:30,600 --> 00:02:34,000 или три миллиона, вы всё равно получаете кого-то, кто приходит\\n\\n40 00:02:34,000 --> 00:02:39,500 и заменяет целиком замечательную статью двумя словами проклятья или чего-либо подобного.\\n\\n41 00:02:39,600 --> 00:02:42,700 И конечно вы лишь отменяете это и блокируете вандала, и это всё.\\n\\n42 00:02:42,800 --> 00:02:46,600 Это часть бытия википедиста, у нас у всех были интересные обсуждения\\n\\n43 00:02:46,600 --> 00:02:46,800 об именовании вещей,\\n\\n44 00:02:46,800 --> 00:02:53,200 как мы называем реку в Польше, и как нам следует называть то,\\n\\n45 00:02:53,300 --> 00:02:56,300 и как нам стоит называть это, какие версии мы должны прояснить,\\n\\n46 00:02:56,300 --> 00:02:58,400 и каков дальнейший ход размышлений.\\n\\n47 00:02:58,500 --> 00:03:02,500 В общем, во всём мире я нашёл одни и те же виды людей, делающих одни и те же виды работы\\n\\n48 00:03:02,600 --> 00:03:07,500 потому что у нас есть общий опыт. И мы разделяем одни и те же ценности, одни и те же идеалы,\\n\\n49 00:03:07,500 --> 00:03:12,600 объект, над которым мы работаем — свободная энциклопедия для каждого человека на земле,\\n\\n50 00:03:12,700 --> 00:03:15,900 написанная по-настоящему, думающими людьми, которая старается быть нейтральной,\\n\\n51 00:03:16,000 --> 00:03:19,800 старается быть честной, старается нести свободную информацию.\\n\\n52 00:03:19,900 --> 00:03:23,800 Она по-прежнему так же захватывающа для меня сегодня, как это было в самые ранние дни, когда я лишь начинал.\\n\\n53 00:03:23,800 --> 00:03:25,500 У нас ещё осталось много работы, которую предстоит сделать.\\n\\n54 00:03:25,600 --> 00:03:28,800 Сегодня отличный момент, чтобы обдумать, где мы были,\\n\\n55 00:03:28,800 --> 00:03:32,800 подумать, куда мы идём, и вау, я не знаю,\\n\\n56 00:03:32,900 --> 00:03:33,500 вы можете видеть, как я взволнован.\\n\\n57 00:03:33,600 --> 00:03:37,800 Я лишь хочу сказать: огромное вам спасибо за всю работу, что вы делаете,\\n\\n58 00:03:37,900 --> 00:03:42,700 огромное спасибо за то, что пришли сюда сегодня для встречи с другими людьми.\\n\\n59 00:03:42,800 --> 00:03:48,600 Сделайте мне одолжение и найдите кого-нибудь в толпе, с кем вы раньше ещё не встречались лично\\n\\n60 00:03:48,600 --> 00:03:50,100 и представьтесь, и скажите:\\n\\n61 00:03:50,100 --> 00:03:52,200 «Хей, а ты что любишь редактировать?»\\n\\n62 00:03:52,300 --> 00:03:54,500 Давайте строить наше сообщество,\\n\\n63 00:03:54,500 --> 00:03:56,700 оно — группа друзей, делающих нечто полезное.\\n\\n64 00:03:56,800 --> 00:04:01,900 В общем, спасибо вам ещё раз, и С днём рождения, Википедия.\\n\\n65 00:04:03,200 --> 00:04:12,900 Википедия. 10 лет мы делимся накопленным знанием',\n", + " 'bytes': 9579,\n", + " 'sha1': '38wvw46pur75gy5co8zkze0xm02g5q9',\n", + " 'parent_id': 48226551,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48157471,\n", + " 'timestamp': '2011-01-11T15:43:25Z',\n", + " 'user': {'id': 838537, 'text': 'Surprizi'},\n", + " 'page': {'id': 12649509,\n", + " 'title': 'WalesAnniversaryAddress.ogv.ka.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 მოგესალმებით ყველას, და მოხარული ვარ ვიკიპედიის იუბილეზე თქვენი ხილვით.\\n\\n2 00:00:10,510 --> 00:00:15,400 ეს მართლაც გამორჩეული დღეა ვიკიმედიის მთელი საზოგადოებისთვის მთელ მსოფლიოში.\\n\\n3 00:00:15,410 --> 00:00:18,400 ამ ბოლო დროს მე დიდ დროს ვატარებ ვიკიპედიის ისტორიაზე ფიქრში\\n\\n4 00:00:18,410 --> 00:00:23,200 საიდან მოვედით, როგორ მივედით დღემდე და სად მივდივართ.\\n\\n5 00:00:23,210 --> 00:00:28,100 მე მახსოვს ის მომენტი, როდესაც პირველად შევიტანე შესწორება ვიკიპედიაში,\\n\\n6 00:00:28,100 --> 00:00:30,100 ეს იყო ვიკიპედიის არსებობის პირველი დღე,\\n\\n7 00:00:30,100 --> 00:00:32,700 მე დავაჭირე \"რედაქტირებას\" და ავკრიფე \"გაუმარჯოს, სამყარო!\",\\n\\n8 00:00:32,750 --> 00:00:35,500 შემდეგ დავაჭირე \"შენახვას\" - ეს გახდა ვიკიპედიის პირველი სიტყვები.\\n\\n9 00:00:35,600 --> 00:00:38,800 მე ვფიქრობდი იმაზე, თუ რა უნდა მომხდარიყო. რა თქმა უნდა, მე არ მოველოდი იმას, რაც მოხდა\\n\\n10 00:00:38,900 --> 00:00:42,400 ამ წლების მანძილზე მე შევიძინე განუმეორებელი გამოცდილება\\n\\n11 00:00:42,500 --> 00:00:46,200 მე ვმოგზაურობდი მსოფლიოში და პირადად შევხვდი მრავალ თქვენთაგანს\\n\\n12 00:00:46,300 --> 00:00:49,950 მე მახსოვს და რამდენიმე მომენტი მახსენდება.\\n\\n13 00:00:50,050 --> 00:00:57,300 მე მახსოვს ვიკიმედიის სამეურვეო საბჭოს პირველი შეხვედრა პარიზსში, რომელსაც ფრანგული ვიკიპედიიდან\\n\\n14 00:00:57,400 --> 00:01:00,800 ფლორენსი და ინგლისური ვიკიპედიიდან ანგელა დაესწრნენ, ეს იყო საბჭოს პირველი შეხვედრა\\n\\n15 00:01:00,900 --> 00:01:05,000 და ჩვენ განვიხილეთ ფონდის შექმნის საჭიროება და\\n\\n16 00:01:05,050 --> 00:01:08,800 როგორ ვაპირებდით ფულის შეგროვებას პროექტის განსახორციელებლად და როგორ ვაპირებდით განვითარებას\\n\\n17 00:01:08,800 --> 00:01:09,900 და როგორ გამოიყურებოდა მომავალი.\\n\\n18 00:01:10,000 --> 00:01:15,800 მე მახსოვს, როგორ ვიჯექით მდინარის პირას ბერლინში,\\n\\n19 00:01:15,900 --> 00:01:21,400 და ველოდით მეასიათასე სტატიის დაწერას\\n\\n20 00:01:21,500 --> 00:01:24,800 ჩვენ ვიჯექით და ვაჭერდით \"განახლება\" ღილაკს ყოველ წამს\\n\\n21 00:01:25,000 --> 00:01:27,100 \"უკვე ოთხმოცდაცხრამეტი ათას ცხრაასოთხმოცდამეცხრამეტე სტატაა...\"\\n\\n22 00:01:27,200 --> 00:01:30,500 მე ვფიქრობ, თითოეული ან ყველა ვიკიპედიამ უკვე გაიარა ან გაივლის იმ ეტაპს, როდესაც ყველა გაოცდება,\\n\\n23 00:01:30,600 --> 00:01:34,500 უფრო და უფრო ახლოს მივდივართ და როგორც ქინა ვწერთ მეასიათასე სტატიას.\\n\\n24 00:01:34,600 --> 00:01:37,400 გერმანიაში ჩვენ გვქონდა უზარმაზარი კამათი იმის შესახებ, თუ რომელი სტატია გახდა მეასიათასე,\\n\\n25 00:01:37,500 --> 00:01:39,700 და ეს არის ვიკიპედიელთა ცალკე ჰობი\\n\\n26 00:01:39,800 --> 00:01:46,600 ამ წლების განმავლობაში მე მქონდა საშუალება ვეწვიო ვიკიპედიელებს მთელ მსოფლიოში, ინდოეთში,\\n\\n27 00:01:46,700 --> 00:01:53,700 ჩინეთში ამერიკაში, მართლა და მთელ მსოფლიოში - მე ვმგზავრობდი და ვესაუბრებოდი ადამიაბებს\\n\\n28 00:01:53,800 --> 00:01:57,500 ერთ-ერთი ყველაზე ხშირად დასმული შეკითხვა იყო, ის თუ\\n\\n29 00:01:57,600 --> 00:02:01,500 «როგორ განსხვავდებიან ვიკიპედიელები მთელ მსოფლიოში\\n\\n30 00:02:01,600 --> 00:02:04,500 რით განსხვავდებიან მაგალითად ბრაზილიელი ვიკიპედიელები?»\\n\\n31 00:02:04,600 --> 00:02:06,600 და მე ვპასუხობდი: «არ არსებობს სერიოზული განსხვავება».\\n\\n32 00:02:06,700 --> 00:02:10,800 თურმე, მთელს მსოფლიოში, ადამიანები როგორც წესი ერთმანეთს გვანან,\\n\\n33 00:02:10,900 --> 00:02:13,500 მაშინაც კი, როდესაც სულ სხვადასხვა კულტურებიდან ვართ.\\n\\n34 00:02:13,600 --> 00:02:18,500 ქვეყანაზე სხვადასხვა ტიპის ადამიანია, მაგრამ ჩვენ ასევე გვაქვს საერთო გამოცდილება,\\n\\n35 00:02:18,600 --> 00:02:20,700 ჩვენ ყველამ მსგავსი გზა გავიარეთ.\\n\\n36 00:02:20,800 --> 00:02:23,900 მე ვფიქრობ, რომ თითოეულმა ჩვენთაგანმა არაერთხელ შეაჩერა ვანდალიზმი.\\n\\n37 00:02:24,000 --> 00:02:25,500 იმას არა აქვს მნიშვნელობა თუ რომელ ენასთან მუშაობთ.\\n\\n38 00:02:25,500 --> 00:02:30,500 არც იმას აქვს მნიშვნელობა თქვენ ხუთასი სტატია დაწერეთ თუ ხუთასი ათასი,\\n\\n39 00:02:30,600 --> 00:02:34,000 ან თუნდაც სამი მილიონი, თქვენ ყოველთვის ხდებით ფაქტის მომსწრენი, როცა ვინმე მოდის \\n\\n40 00:02:34,000 --> 00:02:39,500 და შესანიშნავ სრულქმნილ თემას ცვლის ორიოდე უშვერი სიტყვით ან რაღაცა მსგავსით.\\n\\n41 00:02:39,600 --> 00:02:42,700 თქვენ რაღა თქმა უნდა უბრუნებთ თემას პირვანდელ სახეს ხოლო ვანდალს ბლოკავთ და ეს არის და ეს.\\n\\n42 00:02:42,800 --> 00:02:46,600 ეს ვიკიპედიის მწარე ყოველდღიურობაა, ჩვენ ყველას გვქონია მსჯელობა ამდაგვარ საქმეებზე\\n\\n43 00:02:46,600 --> 00:02:46,800 ჩვენ ბევრი გვიდავია სიტყვის სწორად ჩაწერისათვის,\\n\\n44 00:02:46,800 --> 00:02:53,200 როგორ დავწეროთ პოლონეთის მდინარე, და როგორ დავწეროთ ეს,\\n\\n45 00:02:53,300 --> 00:02:56,300 და როგორ დავწეროთ ის, როგორი ვერსიებია მიღებული,\\n\\n46 00:02:56,300 --> 00:02:58,400 და როგორი უნდა იყოს ზოგადად ენციკლოპედიურობა.\\n\\n47 00:02:58,500 --> 00:03:02,500 მინდა ვთქვა რომ მე მთელს მსოფლიოში ვნახე ერთიდა იგივე ხალსი ტიპი რომლებიც მსგავს საქმეს ასრულებს\\n\\n48 00:03:02,600 --> 00:03:07,500 რადგანაც ჩვენ ყველას გვაქვს საერთო გამოცდილება. და ყველა ვიზიარებთ ერთსა და იმავე აზრსა თუ იდეალებს,\\n\\n49 00:03:07,500 --> 00:03:12,600 ობიექტი, რომელზეც ჩვენ ვმუშაობთ — თავისუფალი ენციკლოპედია თითოეული ადამიანისათვის მთელს მსოფლიოში,\\n\\n50 00:03:12,700 --> 00:03:15,900 დაწერილი თანამედროვედ მოაზროვნე ადამიანების მიერ, რომელიც ცდილობს იყოს ნეიტრალური,\\n\\n51 00:03:16,000 --> 00:03:19,800 ცდილობს იყოს მართალი, ცდილობს გაავრცელოს თავისუფალი ინფორმაცია.\\n\\n52 00:03:19,900 --> 00:03:23,800 მას ისევე ვყევარ შეპყრობილი, როგორც ადრე როცა ხელი პირველად მოვკიდე ამ საქმეს.\\n\\n53 00:03:23,800 --> 00:03:25,500 ჩვენ გასაკეთებელი ჯერ კიდევ ბევრი გვაქვს, რომლის გაკეთება მომავალში გველის.\\n\\n54 00:03:25,600 --> 00:03:28,800 დღეს შესანიშნავი მომენტია დავფიქრდეთ, იმაზე თუ სად ვიყავით,\\n\\n55 00:03:28,800 --> 00:03:32,800 დავფიქრდეთ იმაზე თუ საით მივემართებით, მაგრამ საით? უაუ, ეს მე ჯერ არ ვიცი,\\n\\n56 00:03:32,900 --> 00:03:33,500 თქვენ ალბათ კარგად ხედავთ ჩემს აღელვებას.\\n\\n57 00:03:33,600 --> 00:03:37,800 მე მხოლოდ ერთის თქმა შემიძლია: დიდი მადლობა ყველას იმისათვის რასაც აკეთებთ\\n\\n58 00:03:37,900 --> 00:03:42,700 დიდი მადლობა ყველას რომ მოხვედით აქ სხვა ადამიანებთან შესახვედრად.\\n\\n59 00:03:42,800 --> 00:03:48,600 გთხოვთ დამავალეთ და ამ ხალხში გაიცანით დღეს თქვენთვის უცნობი ადამინი\\n\\n60 00:03:48,600 --> 00:03:50,100 წარუდექით და კითხეთ:\\n\\n61 00:03:50,100 --> 00:03:52,200 «ჰეი, შენაც გიყვარს რედაქტირება?»\\n\\n62 00:03:52,300 --> 00:03:54,500 მოდით ერთად ვაშენოთ ჩვენი ერთობა,\\n\\n63 00:03:54,500 --> 00:03:56,700 ერთობა — როგორც ადამიანების ერთიანობა, რომელსაც ყველასათვის კარგი მოაქვს.\\n\\n64 00:03:56,800 --> 00:04:01,900 საბოლოოდ, გიხდით კიდევ ერთხელ მადლობას ყველას და ვიკიპედია, გილოცავ დაბადების დღეს.\\n\\n65 00:04:03,200 --> 00:04:12,900 ვიკიპედია. ვიკიპედიის ათი წელი ცოდნის გავრცელების სამსახურში.',\n", + " 'bytes': 13640,\n", + " 'sha1': '78t9sjqsk79jtpl0e16ulgatfa47rsx',\n", + " 'parent_id': 48157362,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48209480,\n", + " 'timestamp': '2011-01-13T06:29:52Z',\n", + " 'user': {'id': 1177211, 'text': 'Waihorace'},\n", + " 'page': {'id': 12652080,\n", + " 'title': 'WalesCalltoAction.ogv.hr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:05,408 --> 00:00:08,351\\nZdravo, ja sam Jimmy Wales, osnivač Wikipedije.\\n\\n2\\n00:00:08,351 --> 00:00:11,487\\nDanas slavimo desetu godišnjicu Wikipedije.\\n\\n3\\n00:00:11,487 --> 00:00:16,467\\nTeško je zamisliti da je prošlo deset godina od mog prvog uređivanja Wikipedije.\\n\\n4\\n00:00:16,467 --> 00:00:23,472\\nSjećam se tog dana, napisao sam \"Pozdrav svijete\" i tako je započela Wikipedija i ostali projekti.\\n\\n5\\n00:00:23,472 --> 00:00:27,821\\nDanas imamo milijune članaka, više od stotinu jezika.\\n\\n6\\n00:00:27,821 --> 00:00:33,1\\nViše od 4 milijuna ljudi posjećuje mjesečno Wikipediju.\\n\\n7\\n00:00:33,1 --> 00:00:40,924\\nTo su stvari koje se događaju, koje utječu na kulturu i to sve zahvaljujući Vama.\\n\\n8\\n00:00:41,032 --> 00:00:49,609\\nŽelim zahvaliti svima koji su pomogli, svima koji doprinose Wikipediji, koji ju čitaju.\\n\\n8.5\\n00:00:49,624 --> 00:00:52,801\\nOnima koji udružuje svoje znanje.\\n\\n9\\n00:00:52,801 --> 00:00:55,107\\nZato smo je i napravili, da se čita.\\n\\n10\\n00:00:56,406 --> 00:01:04,009\\nŽelim napraviti maleni zadatak, iako imamo milijune članaka, stotine jezika...\\n\\n11\\n00:01:04,009 --> 00:01:07,462\\nJoš ima puno posla, zato želim da se svi pridruže.\\n\\n12\\n00:01:07,462 --> 00:01:10,051\\nAko nikada uređivali Wikipediju, pokušajte.\\n\\n13\\n00:01:10,051 --> 00:01:13,736\\nKilknite na \"Uredi\", ispravite neki problem. Biti ćemo izrazito zahvalni.\\n\\n14\\n00:01:14,151 --> 00:01:17,752\\nSretan rođendan Wikipedijo.\\n\\n15\\n00:01:19,428 --> 00:01:26,49\\nDeset godina dijeljenja baze svog znanja.',\n", + " 'bytes': 1498,\n", + " 'sha1': 'jftzhtazy1scx3h50xi2ayob489esd9',\n", + " 'parent_id': 48209475,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48144265,\n", + " 'timestamp': '2011-01-11T06:25:46Z',\n", + " 'user': {'id': 1177211, 'text': 'Waihorace'},\n", + " 'page': {'id': 12657583,\n", + " 'title': 'WalesAnniversaryAddress.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 大家好,歡迎來到維基百科的十周年慶祝。\\n\\n2 00:00:10,510 --> 00:00:15,400 這真是一個社群裡及全世界的人興奮的日子。\\n\\n3 00:00:15,410 --> 00:00:18,400 我用了很多時間去想關於維基百科的歷史,\\n\\n4 00:00:18,410 --> 00:00:23,200 及我們是在何處來的以及我們今天在那裡。\\n\\n5 00:00:23,210 --> 00:00:28,100 我記得我第一次編輯維基百科,\\n\\n6 00:00:28,100 --> 00:00:30,100 是維基百科成立的那天,\\n\\n7 00:00:30,100 --> 00:00:32,700 我按了「編輯」按鈕,並輸入\"Hello, world!\"(你好,世界),\\n\\n8 00:00:32,750 --> 00:00:35,500 並按了「儲存」,這就是在維基百科上第一個字。\\n\\n9 00:00:35,600 --> 00:00:38,800 我都不知道到底它是甚麼來的...\\n\\n10 00:00:38,900 --> 00:00:42,400 但是在這數年我有很多很好的經歷\\n\\n11 00:00:42,500 --> 00:00:46,200 我有機會去到世界各地,並與世界各地的人見面\\n\\n12 00:00:46,300 --> 00:00:49,950 我記得...在我的記憶中有數件事\\n\\n13 00:00:50,050 --> 00:00:57,300 我記得第一次管理層聚會,我在巴黎會見了Florence,\\n\\n14 00:00:57,400 --> 00:01:00,800 一個法語維基百科編者及Angela,一個英文維基百科編者,他們都是管理層成員\\n\\n15 00:01:00,900 --> 00:01:05,000 我們討論了如何去開始建立這個基金會\\n\\n16 00:01:05,050 --> 00:01:08,800 我們如何取得金錢以繼續營運,我們可以如何成長\\n\\n17 00:01:08,800 --> 00:01:09,900 以及將來是如何的。\\n\\n18 00:01:10,000 --> 00:01:15,800 我記得我和一些德國維基人坐在柏林一條河流外,有一所銀行,\\n\\n19 00:01:15,900 --> 00:01:21,400 我們在等待第十萬條條目被創建\\n\\n20 00:01:21,500 --> 00:01:24,800 所以我們坐在外面並不停地點瀏覽器的「重新整理」\\n\\n21 00:01:25,000 --> 00:01:27,100 「現在是九萬九千九百九十七條」\\n\\n22 00:01:27,200 --> 00:01:30,500 我估計每個維基人經過這個里程碑,都會很興奮\\n\\n23 00:01:30,600 --> 00:01:34,500 如果你知道很接近這個里程碑,你一定會想做第十萬條條目的創建者\\n\\n24 00:01:34,600 --> 00:01:37,400 我們都會很想知道那條是第十萬條條目\\n\\n25 00:01:37,500 --> 00:01:39,700 這是維基人另一個喜好\\n\\n26 00:01:39,800 --> 00:01:46,600 以及在這數年我在這個世界中會見了很多維基人,在印度、\\n\\n27 00:01:46,700 --> 00:01:53,700 中國、南美洲,真的是在全世界,我到處旅遊及與人們談天\\n\\n28 00:01:53,800 --> 00:01:57,500 在維基百科小組一條常見問題是 \\n\\n29 00:01:57,600 --> 00:02:01,500 「你會如何與其他地方的維基人比較\\n\\n30 00:02:01,600 --> 00:02:04,500 例如和巴西維基人有甚麼分別?」\\n\\n31 00:02:04,600 --> 00:02:06,600 我的回答是「沒有太大分別」\\n\\n32 00:02:06,700 --> 00:02:10,800 事實上,世界上的人大同小異\\n\\n33 00:02:10,900 --> 00:02:13,500 即使我們有非常不同的文化\\n\\n34 00:02:13,600 --> 00:02:18,500 很多不同種類的人,但我們都會分享相同的經歷\\n\\n35 00:02:18,600 --> 00:02:20,700 我們做了同一樣的事情\\n\\n36 00:02:20,800 --> 00:02:23,900 我認為任何人都有回退過相同的破壞。\\n\\n37 00:02:24,000 --> 00:02:25,500 不論你在那個語言上編輯\\n\\n38 00:02:25,500 --> 00:02:30,500 亦不論你的維基有五百條條目或是五十萬條條目\\n\\n39 00:02:30,600 --> 00:02:34,000 又或是三百萬條,你都會看到有些人過來,\\n\\n40 00:02:34,000 --> 00:02:39,500 並把整篇精彩條目用兩個字或是一些咒罵詞語或是相似的東西來取代整篇條目\\n\\n41 00:02:39,600 --> 00:02:42,700 當然,你只需要回退並封禁\\n\\n42 00:02:42,800 --> 00:02:46,600 這就是維基人的一部份,我們大家都經歷過有趣的爭議\\n\\n43 00:02:46,600 --> 00:02:46,800 關於條目的命名\\n\\n44 00:02:46,800 --> 00:02:53,200 如何稱呼在波蘭的一條河流,如何命名這個\\n\\n45 00:02:53,300 --> 00:02:56,300 如何命名那個,這是我們要指出的爭議\\n\\n46 00:02:56,300 --> 00:02:58,400 甚麼是深思熟慮的走向。\\n\\n47 00:02:58,500 --> 00:03:02,500 因此我可以在世界上找到同一類人做同一類工作\\n\\n48 00:03:02,600 --> 00:03:07,500 因為我們有同樣的經歷、價值觀及理想\\n\\n49 00:03:07,500 --> 00:03:12,600 我們的工作,就是一部給在這個星球上所有人的自由百科全書\\n\\n50 00:03:12,700 --> 00:03:15,900 由深思熟慮的人寫,他們嘗試寫出中立的內容\\n\\n51 00:03:16,000 --> 00:03:19,800 嘗試誠實,嘗試帶出自由的資訊\\n\\n52 00:03:19,900 --> 00:03:23,800 我今天依然興奮,因為這好像我很早開始時的樣子。\\n\\n53 00:03:23,800 --> 00:03:25,500 我們還有大量工作要完成。\\n\\n54 00:03:25,600 --> 00:03:28,800 今天是一個很好的時間給我們回顧\\n\\n55 00:03:28,800 --> 00:03:32,800 我們在做些甚麼,以及我也不知道了!\\n\\n56 00:03:32,900 --> 00:03:33,500 你可以見我是怎樣興奮的。\\n\\n57 00:03:33,600 --> 00:03:37,800 我只想說,非常多謝你們所作的一切\\n\\n58 00:03:37,900 --> 00:03:42,700 非常多謝你今天來到這裡與其他人會面\\n\\n59 00:03:42,800 --> 00:03:48,600 請幫我一個忙,在人群中找一個你從未見面過的人\\n\\n60 00:03:48,600 --> 00:03:50,100 介紹你自己並說\\n\\n61 00:03:50,100 --> 00:03:52,200 \"你最喜歡編輯甚麼呢?\"\\n\\n62 00:03:52,300 --> 00:03:54,500 一同建立這個社群\\n\\n63 00:03:54,500 --> 00:03:56,700 這就是在一群朋友中做一些有用的東西\\n\\n64 00:03:56,800 --> 00:04:01,900 所以,再次多謝以及維基百科生日快樂\\n\\n65 00:04:03,200 --> 00:04:12,900 維基百科分享知識總和的第十年。',\n", + " 'bytes': 5692,\n", + " 'sha1': '1tkb8319hzn8qr6idcqg5uyim9v5mwh',\n", + " 'parent_id': 48144082,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 50821980,\n", + " 'timestamp': '2011-02-26T18:41:36Z',\n", + " 'user': {'id': 246324, 'text': 'Toliño'},\n", + " 'page': {'id': 12657884,\n", + " 'title': 'WalesAnniversaryAddress.ogv.gl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 Ola a todos e benvidos ó décimo aniversario da Wikipedia.\\n\\n2 00:00:10,510 --> 00:00:15,400 É un día moi emocionante para todos os membros da comunidade en todo o mundo.\\n\\n3 00:00:15,410 --> 00:00:18,400 Ultimamente estiven adicando bastante tempo a pensar na historia da Wikipedia,\\n\\n4 00:00:18,410 --> 00:00:23,200 de onde vimos e todo o que atravesamos para chegar a onde estamos hoxe.\\n\\n5 00:00:23,210 --> 00:00:28,100 Lembro a primeira vez que editei a Wikipedia,\\n\\n6 00:00:28,100 --> 00:00:30,100 que foi o primeiro día que existiu a Wikipedia,\\n\\n7 00:00:30,100 --> 00:00:32,700 e eu premín en \"editar\", e escribín \"Hello, world!\",\\n\\n8 00:00:32,750 --> 00:00:35,500 e logo gardeino e esas foron as primeiras palabras na Wikipedia.\\n\\n9 00:00:35,600 --> 00:00:38,800 E penso sobre o que estaba por vir e como eu o descoñecía totalmente,\\n\\n10 00:00:38,900 --> 00:00:42,400 pero co pasar dos anos tivemos unha boa morea de boas experiencias.\\n\\n11 00:00:42,500 --> 00:00:46,200 Tiven a oportunidade de viaxar arredor do mundo e reunirme con moitos de vós en persoa.\\n\\n12 00:00:46,300 --> 00:00:49,950 Lembro... moitas cousas véñenme á mente.\\n\\n13 00:00:50,050 --> 00:00:57,300 Lembro a primeira xuntanza para a Fundación Wikimedia, cando me reunín en París con Florence,\\n\\n14 00:00:57,400 --> 00:01:00,800 da Wikipedia francesa, e Angela, da Wikipedia inglesa, os primeiros membros da comisión,\\n\\n15 00:01:00,900 --> 00:01:05,000 e tivemos unha xuntanza para comezar a discutir a creación da Fundación,\\n\\n16 00:01:05,050 --> 00:01:08,800 como obteriamos os cartos para facer andar este proxecto, como poderiamos crecer \\n\\n17 00:01:08,800 --> 00:01:09,900 e como sería o futuro.\\n\\n18 00:01:10,000 --> 00:01:15,800 Lémbrome sentado á beira do río en Berlín, con wikipedistas alemáns,\\n\\n19 00:01:15,900 --> 00:01:21,400 esperando que fose escrito o artigo número cen mil,\\n\\n20 00:01:21,500 --> 00:01:24,800 así que sentamos fora e estivemos actualizando as páxinas dos nosos ordenadores para velo\\n\\n21 00:01:25,000 --> 00:01:27,100 \"Oh, van noventa e nove mil novecentas noventa e sete\".\\n\\n22 00:01:27,200 --> 00:01:30,500 Supoño que todas as Wikipedias pasan por este proceso de identificación de fitos, que resulta excitante,\\n\\n23 00:01:30,600 --> 00:01:34,500 que nos aproxima e, por suposto, unha vez acadados os cen mil\\n\\n24 00:01:34,600 --> 00:01:37,400 espertou a gran discusión sobre que artigo foi realmente o número cen mil,\\n\\n25 00:01:37,500 --> 00:01:39,700 outro gran pasatempo dos wikipedistas.\\n\\n26 00:01:39,800 --> 00:01:46,600 Ó longo dos anos tiven moitas oportunidades de moverme ó longo do planeta, estiven con wikipedistas na India,\\n\\n27 00:01:46,700 --> 00:01:53,700 na China, en Sudamérica, en realmente todos os lugares do mundo, e a medida que viaxaba polo mundo e falaba coa xente\\n\\n28 00:01:53,800 --> 00:01:57,500 unha das preguntas máis frecuentes que me fixeron os grupos de Wikimedia foi \\n\\n29 00:01:57,600 --> 00:02:01,500 \"Como nos ves en comparación con outros wikipedistas do mundo,\\n\\n30 00:02:01,600 --> 00:02:04,500 que nos diferencia dos wikipedistas do Brasil, por exemplo?\"\\n\\n31 00:02:04,600 --> 00:02:06,600 E todo o que lles podo dicir é \"Non hai grandes diferenzas\".\\n\\n32 00:02:06,700 --> 00:02:10,800 Polo que se ve, facemos o esforzo por formarmos parte do mesmo en todo o mundo,\\n\\n33 00:02:10,900 --> 00:02:13,500 aínda que veñamos de moi diferentes culturas\\n\\n34 00:02:13,600 --> 00:02:18,500 e sexamos moi distintos como persoas, pero tamén partillamos as mesmas experiencias\\n\\n35 00:02:18,600 --> 00:02:20,700 que temos vivido sobre as mesmas cousas.\\n\\n36 00:02:20,800 --> 00:02:23,900 Creo que todo o mundo reverteu o mesmo tipo de vandalismo.\\n\\n37 00:02:24,000 --> 00:02:25,500 Non importa en que idioma esteas traballando,\\n\\n38 00:02:25,500 --> 00:02:30,500 non importa se a túa wiki ten cincocentos artigos ou cincocentos mil\\n\\n39 00:02:30,600 --> 00:02:34,000 ou tres millóns, sempre hai alguén que aparece\\n\\n40 00:02:34,000 --> 00:02:39,500 e substitúe todo un artigo estupendo por dúas palabras groseiras ou algo así.\\n\\n41 00:02:39,600 --> 00:02:42,700 E, por suposto, ti revértelo e bloqueas a ese vándalo e a calquera outro.\\n\\n42 00:02:42,800 --> 00:02:46,600 Iso é parte do que significa ser wikipedista, todos nós tivemos conversacións realmente interesantes\\n\\n43 00:02:46,600 --> 00:02:46,800 sobre os convenios para nomear ás cousas,\\n\\n44 00:02:46,800 --> 00:02:53,200 como chamar a un río de Polonia, como imos chamar a isto,\\n\\n45 00:02:53,300 --> 00:02:56,300 como imos chamar a estoutro, cales controversias temos que deixar de lado\\n\\n46 00:02:56,300 --> 00:02:58,400 e cales nos van facer avanzar.\\n\\n47 00:02:58,500 --> 00:03:02,500 Así que ó longo do mundo teño atopado sempre o mesmo tipo de persoa facendo o mesmo tipo de traballo,\\n\\n48 00:03:02,600 --> 00:03:07,500 porque compartimos as mesmas experiencias. E tamén compartimos os mesmos valores, os mesmos ideais,\\n\\n49 00:03:07,500 --> 00:03:12,600 as cousas polas que estamos traballando: unha enciclopedia libre para cada persoa do planeta,\\n\\n50 00:03:12,700 --> 00:03:15,900 escrita por persoas intelixentes, que intentan ser neutrais\\n\\n51 00:03:16,000 --> 00:03:19,800 que intentan ser honradas, que intentan ofrecer información libre.\\n\\n52 00:03:19,900 --> 00:03:23,800 Isto é para min tan emocionante hoxe como o era nos primeiros días, cando comecei.\\n\\n53 00:03:23,800 --> 00:03:25,500 Aínda temos un duro traballo por facer.\\n\\n54 00:03:25,600 --> 00:03:28,800 Hoxe é un gran momento para reflexionar sobre onde temos estado,\\n\\n55 00:03:28,800 --> 00:03:32,800 para pensar sobre onde queremos chegar e, uou!, non sei \\n\\n56 00:03:32,900 --> 00:03:33,500 se se nota o emocionante que isto é para min.\\n\\n57 00:03:33,600 --> 00:03:37,800 Só quero dicir: Moitas grazas por todo o traballo que tes feito,\\n\\n58 00:03:37,900 --> 00:03:42,700 moitas grazas por vires aquí hoxe a encontrarte con outras persoas.\\n\\n59 00:03:42,800 --> 00:03:48,600 Pídoche un favor: busca a alguén entre os asistentes co que nunca falaras en persoa,\\n\\n60 00:03:48,600 --> 00:03:50,100 preséntate e dille:\\n\\n61 00:03:50,100 --> 00:03:52,200 \"Ola, que che gustaría editar?\"\\n\\n62 00:03:52,300 --> 00:03:54,500 Imos construír esta comunidade,\\n\\n63 00:03:54,500 --> 00:03:56,700 está composta dun fato de amigos que fan algo útil.\\n\\n64 00:03:56,800 --> 00:04:01,900 Por tanto, grazas de novo e feliz aniversario da Wikipedia.\\n\\n65 00:04:03,200 --> 00:04:12,900 Wikipedia, 10 anos compartindo a suma de todo o coñecemento.',\n", + " 'bytes': 6557,\n", + " 'sha1': 'oa2rc273x07as0fhaioked1v49whkh1',\n", + " 'parent_id': 50821719,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48163203,\n", + " 'timestamp': '2011-01-11T19:24:57Z',\n", + " 'user': {'id': 31103, 'text': 'Bjankuloski06en'},\n", + " 'page': {'id': 12665297,\n", + " 'title': 'WalesAnniversaryAddress.ogv.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:07,000 --> 00:00:10,500 Здраво на сите и добредојдовте на десетгодишнината на Википедија. 2 00:00:...'\",\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 Здраво на сите и добредојдовте на десетгодишнината на Википедија.\\n\\n2 00:00:10,510 --> 00:00:15,400 Ова е мошне возбудлив ден за сите нас во заедницата и за сите ширум светот.\\n\\n3 00:00:15,410 --> 00:00:18,400 Во последно време доста размислував за историјата на Википедија,\\n\\n4 00:00:18,410 --> 00:00:23,200 како започнавме, и низ што сè поминавме за да дојдеме кајшто сме сега.\\n\\n5 00:00:23,210 --> 00:00:28,100 Се сеќавам на првиот пат кога уредив страница на Википедија,\\n\\n6 00:00:28,100 --> 00:00:30,100 - на првиот ден од нејзиното постоење.\\n\\n7 00:00:30,100 --> 00:00:32,700 стисав на „Уреди“, и напишав „Hello, world!“\\n\\n8 00:00:32,750 --> 00:00:35,500 притиснав „Зачувај“ и тоа беа првите зборови на Википедија.\\n\\n9 00:00:35,600 --> 00:00:38,800 И се подразмислив за тоа што ќе следи, но секако, немав претстава што ќе биде од сето тоа\\n\\n10 00:00:38,900 --> 00:00:42,400 но со текот на годините доживеав прекрасни нешта\\n\\n11 00:00:42,500 --> 00:00:46,200 Имав прилика да го пропатувам светот и да се запознаам многумина од вас лично\\n\\n12 00:00:46,300 --> 00:00:49,950 Кога ќе се присетам... неколку нешта ми оставија особен впечаток.\\n\\n13 00:00:50,050 --> 00:00:57,300 Се сеќавам на првиот состанок на одборот на Фондацијата Викимедија, кога се сретнав во Париз со Флоранс\\n\\n14 00:00:57,400 --> 00:01:00,800 од француската и Анџела од англиската Википедија - првите членови на одборот\\n\\n15 00:01:00,900 --> 00:01:05,000 и одржавме состанок за да видиме како да ја изградиме Фондацијата\\n\\n16 00:01:05,050 --> 00:01:08,800 како ќе дојдеме до средствата што ни требаат за проектот, како да се развиваме\\n\\n17 00:01:08,800 --> 00:01:09,900 и како изгледа нашата иднина.\\n\\n18 00:01:10,000 --> 00:01:15,800 Се сеќавам како седевме на кејот во Берлин со википедијанците од Германија,\\n\\n19 00:01:15,900 --> 00:01:21,400 со нетрпение чекајќи некој да ја напише стоилјадитата статија\\n\\n20 00:01:21,500 --> 00:01:24,800 и така седевме надвор и упорно на тастатурите стискавме „Превчитај“ за да видиме кога ќе бидне\\n\\n21 00:01:25,000 --> 00:01:27,100 \"Еј, деведесет и девет илјади деветсто деведесет и седум\"\\n\\n22 00:01:27,200 --> 00:01:30,500 Претпоставувам дека сите Википедии поминале низ овој јубилеен процес - кога возбудата расте\\n\\n23 00:01:30,600 --> 00:01:34,500 како што се наближува бројката. И секако, кога конечно се појави стоилјадарката\\n\\n24 00:01:34,600 --> 00:01:37,400 се отвори голема расправа за тоа која е впрочем стоилјадитата статија\\n\\n25 00:01:37,500 --> 00:01:39,700 - уште една фина википедијанска разонода\\n\\n26 00:01:39,800 --> 00:01:46,600 Во текот на изминатите години имав можност да посетам многу места во светот. Се сретнав со википедијанците во Индија\\n\\n27 00:01:46,700 --> 00:01:53,700 во Кина, во Јужна Америка - баш низ целиот свет - и при посетата\\n\\n28 00:01:53,800 --> 00:01:57,500 едно од најчестите прашања што ми ги поставуваат локалните групи гласи:\\n\\n29 00:01:57,600 --> 00:02:01,500 „Какви сме во споредба со другите википедијанци низ светот\\n\\n30 00:02:01,600 --> 00:02:04,500 како се разликуваме, на пример, од википедијанците во Бразил?“\\n\\n31 00:02:04,600 --> 00:02:06,600 а мојот одговор е: „Па, нема некоја разлика“.\\n\\n32 00:02:06,700 --> 00:02:10,800 Заклучокот е дека сите сме исти\\n\\n33 00:02:10,900 --> 00:02:13,500 иако припаѓаме на мошне различни култури\\n\\n34 00:02:13,600 --> 00:02:18,500 и доста се разликуваме како поединци, сепак сите ние ги имаме истите заеднички доживувања\\n\\n35 00:02:18,600 --> 00:02:20,700 сите сме поминале низ истото.\\n\\n36 00:02:20,800 --> 00:02:23,900 Мислам дека сите ние сме враќале исти вандализми.\\n\\n37 00:02:24,000 --> 00:02:25,500 Без разлика на кој јазик работите\\n\\n38 00:02:25,500 --> 00:02:30,500 и без разлика дали вашето вики има петстотини, петсто илјади\\n\\n39 00:02:30,600 --> 00:02:34,000 или пак три милиони статии - сепак ќе се најде некој што ќе се уфрли\\n\\n40 00:02:34,000 --> 00:02:39,500 и ќе замени една цела прекрасна статија со погрдни зборови или нешто слично.\\n\\n41 00:02:39,600 --> 00:02:42,700 И секако, едноставно ја враќате, го блокирате вандалот, и сетоа тоа.\\n\\n42 00:02:42,800 --> 00:02:46,600 Тоа е дел од википедијанството. Сите ние сме воделе интересни разговори\\n\\n43 00:02:46,600 --> 00:02:46,800 расправајќи за тоа како да ги нарекуваме нештата\\n\\n44 00:02:46,800 --> 00:02:53,200 како ќе ја именуваме некоја река во Полска, како да го наречеме ова или она\\n\\n45 00:02:53,300 --> 00:02:56,300 кои се спорните елементи што треба да ги решиме\\n\\n46 00:02:56,300 --> 00:02:58,400 и како да одиме напред со внимание и со умисла.\\n\\n47 00:02:58,500 --> 00:03:02,500 Така, низ целиот свет ги среќавам истите типови на луѓе што работат на истото\\n\\n48 00:03:02,600 --> 00:03:07,500 бидејќи сите ние имаме едно исто заедничко доживување. Имаме исти вредности, исти идеали\\n\\n49 00:03:07,500 --> 00:03:12,600 за она кон што се стремиме – слободна и бесплатна енциклопедија за секој на планетава\\n\\n50 00:03:12,700 --> 00:03:15,900 што ја пишуваат навистина пресметливи и внимателни луѓе - луѓе кои настојуваат да бидат неутрални\\n\\n51 00:03:16,000 --> 00:03:19,800 да бидат чесни, и да понудат слободни и бесплатни информации.\\n\\n52 00:03:19,900 --> 00:03:23,800 И ден денес ова ми е возбудливо како што ми беше на самиот почеток.\\n\\n53 00:03:23,800 --> 00:03:25,500 Ни преостанува уште многу работа.\\n\\n54 00:03:25,600 --> 00:03:28,800 Денешниот ден претставува одлична прилика да размислиме што досега сме направиле\\n\\n55 00:03:28,800 --> 00:03:32,800 што треба да направиме, и...леле, не знам\\n\\n56 00:03:32,900 --> 00:03:33,500 можете да забележите колку се возбудувам.\\n\\n57 00:03:33,600 --> 00:03:37,800 И сакам да искажам голема благодарност за сиот ваш труд\\n\\n58 00:03:37,900 --> 00:03:42,700 навистина ви благодарам што дојдовте да се запознаете со другите.\\n\\n59 00:03:42,800 --> 00:03:48,600 Би ве замолил да најдете некој од толпата, некој што лично не го познавате\\n\\n60 00:03:48,600 --> 00:03:50,100 да се претставите, и да речете:\\n\\n61 00:03:50,100 --> 00:03:52,200 „А што би сакал да уредуваш?“\\n\\n62 00:03:52,300 --> 00:03:54,500 Да ја изградиме оваа заедница\\n\\n63 00:03:54,500 --> 00:03:56,700 па сепак, ова е една дружина што прави нешто корисно.\\n\\n64 00:03:56,800 --> 00:04:01,900 Значи, уште еднаш ви благодарам, и нека ѝ е честит роденденот на Википедија.\\n\\n<!--65 00:04:03,200 -*-> 00:04:12,900 Wikipedia 10 years of sharing the sum of all knowledge.-->',\n", + " 'bytes': 9641,\n", + " 'sha1': 'og71qku2rltnj6odkyb44lpodw9g80n',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48180809,\n", + " 'timestamp': '2011-01-12T08:43:37Z',\n", + " 'user': {'id': 126352, 'text': 'Lucien leGrey'},\n", + " 'page': {'id': 12671168,\n", + " 'title': 'WalesAnniversaryAddress.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Corrections...',\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 Hola a todos y bienvenidos al décimo aniversario de Wikipedia.\\n\\n2 00:00:10,510 --> 00:00:15,400 Es un día realmente excitante para todos los miembros de la comunidad a lo largo del mundo.\\n\\n3 00:00:15,410 --> 00:00:18,400 He estado dedicando un montón de tiempo últimamente pensando sobre la historia de Wikipedia\\n\\n4 00:00:18,410 --> 00:00:23,200 de dónde venimos y todas las cosas que hemos vivido hasta llegar al momento actual.\\n\\n5 00:00:23,210 --> 00:00:28,100 Recuerdo la primera vez que edité Wikipedia,\\n\\n6 00:00:28,100 --> 00:00:30,100 el primer día de existencia de Wikipedia,\\n\\n7 00:00:30,100 --> 00:00:32,700 cuando hice clic en \"editar\" y escribí \"¡Hola, mundo!\",\\n\\n8 00:00:32,750 --> 00:00:35,500 y di a \"guardar\" y ésas fueron las primeras palabras de Wikipedia.\\n\\n9 00:00:35,600 --> 00:00:38,800 Y pensé en lo que vendrá y por supuesto no lo sé\\n\\n10 00:00:38,900 --> 00:00:42,400 pero a lo largo de los años he tenido muchas experiencias maravillosas\\n\\n11 00:00:42,500 --> 00:00:46,200 He tenido la oportunidad de recorrer el mundo y encontrarme con muchos de vosotros en persona\\n\\n12 00:00:46,300 --> 00:00:49,950 Recuerdo... muchas cosas me vienen a la cabeza.\\n\\n13 00:00:50,050 --> 00:00:57,300 Recuerdo el primer encuentro de la Junta de la Fundación Wikimedia, cuando conocí en París a Florence\\n\\n14 00:00:57,400 --> 00:01:00,800 de Wikipedia en francés y Angela de Wikipedia en inglés, los primeros miembros de la Junta\\n\\n15 00:01:00,900 --> 00:01:05,000 y tuvimos un encuentro para discutir la creación de la Fundación\\n\\n16 00:01:05,050 --> 00:01:08,800 cómo obtendríamos el dinero para mantener los proyectos, cómo podríamos crecer\\n\\n17 00:01:08,800 --> 00:01:09,900 y cómo pintaba el futuro.\\n\\n18 00:01:10,000 --> 00:01:15,800 Recuerdo sentarme en la orilla del río en Berlín con wikipedistas alemanes\\n\\n19 00:01:15,900 --> 00:01:21,400 esperando, deseando ver escrito el artículo 100.000\\n\\n20 00:01:21,500 --> 00:01:24,800 así que nos sentamos fuera y apretamos \"recargar\" continuamente para verlo\\n\\n21 00:01:25,000 --> 00:01:27,100 \"Oh, es el 99.997\"\\n\\n22 00:01:27,200 --> 00:01:30,500 Creo que cada Wikipedia ha recorrido hitos similares, cuando estás espectante\\n\\n23 00:01:30,600 --> 00:01:34,500 acercándote, y, por supuesto, cuando conseguimos el artículo 100.000\\n\\n24 00:01:34,600 --> 00:01:37,400 tuvimos la gran discusión sobre qué artículo había llegado a ese número\\n\\n25 00:01:37,500 --> 00:01:39,700 otra gran afición de los wikipedistas.\\n\\n26 00:01:39,800 --> 00:01:46,600 Y a lo largo de los años he tenido muchas oportunidades de recorrer el mundo, encontrarme con wikipedistas en la India\\n\\n27 00:01:46,700 --> 00:01:53,700 en China, en Sudamérica, realmente de todo el mundo, y al viajar y hablar con la gente,\\n\\n28 00:01:53,800 --> 00:01:57,500 una de las preguntas más habituales de los grupos de Wikipedia es:\\n\\n29 00:01:57,600 --> 00:02:01,500 \"¿Cómo nos ves en comparación con otros grupos de wikipedistas,\\n\\n30 00:02:01,600 --> 00:02:04,500 qué nos diferencia de los wikipedistas de Brasil, por ejemplo?\"\\n\\n31 00:02:04,600 --> 00:02:06,600 y lo que siempre digo es \"No hay mucha diferencia\".\\n\\n32 00:02:06,700 --> 00:02:10,800 Resulta que tendemos a ser muy similares en todo el mundo\\n\\n33 00:02:10,900 --> 00:02:13,500 incluso si venimos de diferentes culturas\\n\\n34 00:02:13,600 --> 00:02:18,500 muchos tipos diferentes de personas, pero que compartimos las mismas experiencias\\n\\n35 00:02:18,600 --> 00:02:20,700 y hemos pasado por las mismas cosas.\\n\\n36 00:02:20,800 --> 00:02:23,900 Pienso que todo el mundo ha revertido el mismo tipo de vandalismo.\\n\\n37 00:02:24,000 --> 00:02:25,500 No importa en qué lengua trabajes\\n\\n38 00:02:25,500 --> 00:02:30,500 o si tu wiki tiene 5.000 artículos o 500.000\\n\\n39 00:02:30,600 --> 00:02:34,000 o tres millones, siempre encontrarás a alguien que pasa\\n\\n40 00:02:34,000 --> 00:02:39,500 y reemplaza entero un maravilloso artículo por dos insultos o algo así.\\n\\n41 00:02:39,600 --> 00:02:42,700 Y, por supuesto, reviertes la edición y bloqueas al vándalo, y ya está.\\n\\n42 00:02:42,800 --> 00:02:46,600 Éso es parte de ser un wikipedista. Todos tenemos conversaciones realmente interesantes\\n\\n43 00:02:46,600 --> 00:02:46,800 sobre los convenios de títulos de cosa\\n\\n44 00:02:46,800 --> 00:02:53,200 cómo llamamos a un río en Polonia, cómo vamos a titular esto\\n\\n45 00:02:53,300 --> 00:02:56,300 cómo llamar a aquéllo, cuáles son las controversias que tenemos que comprender\\n\\n46 00:02:56,300 --> 00:02:58,400 y cuál es el camino correcto para continuar.\\n\\n47 00:02:58,500 --> 00:03:02,500 Así que en todo el mundo me encuentro con los mismos tipos de personas haciendo el mismo tipo de trabajo\\n\\n48 00:03:02,600 --> 00:03:07,500 porque compartimos las mismas experiencias. Y también compartimos los mismos valores, los mismos ideales\\n\\n49 00:03:07,500 --> 00:03:12,600 aquello por lo que trabajamos: una enciclopedia libre para todas las personas del planeta\\n\\n50 00:03:12,700 --> 00:03:15,900 escrita por gente considerada, que intenta ser neutral\\n\\n51 00:03:16,000 --> 00:03:19,800 intenta ser honesta, intenta aportar información libre.\\n\\n52 00:03:19,900 --> 00:03:23,800 Es tan emocionante para mí hoy como lo fue en los primeros días que empecé.\\n\\n53 00:03:23,800 --> 00:03:25,500 Todavía nos queda mucho por hacer.\\n\\n54 00:03:25,600 --> 00:03:28,800 Hoy es el gran momento para reflexionar sobre dónde hemos estado\\n\\n55 00:03:28,800 --> 00:03:32,800 para pensar dónde vamos y, bueno, no sé\\n\\n56 00:03:32,900 --> 00:03:33,500 estáis viendo cómo me voy emocionando.\\n\\n57 00:03:33,600 --> 00:03:37,800 Sólo quiero decir: Muchas gracias por todo lo que habéis hecho\\n\\n58 00:03:37,900 --> 00:03:42,700 muchas gracias por venir aquí hoy para encontraros con otras personas.\\n\\n59 00:03:42,800 --> 00:03:48,600 Hacedme un favor y buscar a alguien con el que no os hayáis encontrado antes en persona\\n\\n60 00:03:48,600 --> 00:03:50,100 presentaros y decid:\\n\\n61 00:03:50,100 --> 00:03:52,200 \"Hey, ¿qué te gustaría editar?\"\\n\\n62 00:03:52,300 --> 00:03:54,500 Construyamos esta comunidad\\n\\n63 00:03:54,500 --> 00:03:56,700 todo se centra en un grupo de amigos que hacen algo útil.\\n\\n64 00:03:56,800 --> 00:04:01,900 Así que, gracias de nuevo y feliz cumpleaños a Wikipedia.\\n\\n65 00:04:03,200 --> 00:04:12,900 Wikipedia 10 años de compartir la suma de todo el conocimiento.',\n", + " 'bytes': 6410,\n", + " 'sha1': '4qhckyjijf3fjv6jp4jxlnhbs97pt8p',\n", + " 'parent_id': 48180543,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48182176,\n", + " 'timestamp': '2011-01-12T09:47:36Z',\n", + " 'user': {'id': 1177211, 'text': 'Waihorace'},\n", + " 'page': {'id': 12671883,\n", + " 'title': 'WalesAnniversaryAddress.ogv.yue.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'translate to yue (zh-yue)',\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 大家好,歡迎嚟到維基百科嘅十周年慶祝。\\n\\n2 00:00:10,510 --> 00:00:15,400 呢個真係一個社群裡同埋全世界嘅人興奮嘅日子。\\n\\n3 00:00:15,410 --> 00:00:18,400 我用咗好多時間去研究維基百科嘅歷史,\\n\\n4 00:00:18,410 --> 00:00:23,200 同埋我地喺係邊到嚟同埋我地今日係邊。\\n\\n5 00:00:23,210 --> 00:00:28,100 我記得我第一次編輯維基百科,\\n\\n6 00:00:28,100 --> 00:00:30,100 係維基百科成立果日,\\n\\n7 00:00:30,100 --> 00:00:32,700 我咁左「編輯」制,並打左\"Hello, world!\"(你好,世界),\\n\\n8 00:00:32,750 --> 00:00:35,500 並咁左「儲存」,呢個就係維基百科上面第一個字。\\n\\n9 00:00:35,600 --> 00:00:38,800 我都唔知道到底佢係咩嚟...\\n\\n10 00:00:38,900 --> 00:00:42,400 但係呢幾年我有好多好嘅經歷\\n\\n11 00:00:42,500 --> 00:00:46,200 我有機會去到世界唔同嘅地方,並同世界各地嘅人見面\\n\\n12 00:00:46,300 --> 00:00:49,950 我記得...係我嘅記憶中有幾件事\\n\\n13 00:00:50,050 --> 00:00:57,300 我記得第一次管理層聚會,我喺巴黎見左Florence,\\n\\n14 00:00:57,400 --> 00:01:00,800 一個法語維基百科編者同埋Angela,一個英文維基百科編者,佢地都係管理層成員\\n\\n15 00:01:00,900 --> 00:01:05,000 我們討論咗點去開始建立呢個基金會\\n\\n16 00:01:05,050 --> 00:01:08,800 我們點搵錢同我地可以點成長\\n\\n17 00:01:08,800 --> 00:01:09,900 同埋將來係點嘅。\\n\\n18 00:01:10,000 --> 00:01:15,800 我記得我同一啲德國維基人坐係柏林一條河流外面,有一所銀行,\\n\\n19 00:01:15,900 --> 00:01:21,400 我們係到等達到十萬條條目嘅里程碑\\n\\n20 00:01:21,500 --> 00:01:24,800 所以我們坐係外面並且不停咁重新整理\\n\\n21 00:01:25,000 --> 00:01:27,100 「現在係九萬九千九百九十七條」\\n\\n22 00:01:27,200 --> 00:01:30,500 我估計每個維基人經過呢個里程碑,都會好興奮\\n\\n23 00:01:30,600 --> 00:01:34,500 如果你知道好接近呢個里程碑,你一定會想做第十萬條條目嘅創建者\\n\\n24 00:01:34,600 --> 00:01:37,400 我們都會好想知道邊條係第十萬條條目\\n\\n25 00:01:37,500 --> 00:01:39,700 呢個係維基人另一個喜好\\n\\n26 00:01:39,800 --> 00:01:46,600 同埋呢幾年我係呢個世界裡面見咗好多維基人,係印度、\\n\\n27 00:01:46,700 --> 00:01:53,700 中國、南美洲,真係全世界,我到處旅遊同埋同人傾野\\n\\n28 00:01:53,800 --> 00:01:57,500 維基百科小組一條常見問題係 \\n\\n29 00:01:57,600 --> 00:02:01,500 「你會點同其他地方嘅維基人比較\\n\\n30 00:02:01,600 --> 00:02:04,500 例如同巴西維基人有咩分別?」\\n\\n31 00:02:04,600 --> 00:02:06,600 我嘅回答係「無太大分別」\\n\\n32 00:02:06,700 --> 00:02:10,800 事實上,世界上嘅人大同小異\\n\\n33 00:02:10,900 --> 00:02:13,500 即使我們有非常唔同嘅文化\\n\\n34 00:02:13,600 --> 00:02:18,500 好多唔同種類嘅人,但我地都會分享相同嘅經歷\\n\\n35 00:02:18,600 --> 00:02:20,700 我們做咗同一樣嘅事情\\n\\n36 00:02:20,800 --> 00:02:23,900 我認為任何人都有回退過相同嘅破壞。\\n\\n37 00:02:24,000 --> 00:02:25,500 不論你係邊個語言上編輯\\n\\n38 00:02:25,500 --> 00:02:30,500 亦不論你嘅維基有五百條條目定係五十萬條條目\\n\\n39 00:02:30,600 --> 00:02:34,000 又或者三百萬條,你都會見到有啲人過嚟,\\n\\n40 00:02:34,000 --> 00:02:39,500 並將成篇精彩條目用兩個字或者一啲咒罵詞語或者相似嘅野嚟取代成篇條目\\n\\n41 00:02:39,600 --> 00:02:42,700 當然,你只需要反轉同埋封禁\\n\\n42 00:02:42,800 --> 00:02:46,600 呢個就係維基人嘅一部份,我們大家都經歷過有趣嘅爭議\\n\\n43 00:02:46,600 --> 00:02:46,800 關於條目個名\\n\\n44 00:02:46,800 --> 00:02:53,200 點叫係波蘭嘅一條河流,點叫呢個\\n\\n45 00:02:53,300 --> 00:02:56,300 點叫果個,呢個就係我地要指出嘅爭議\\n\\n46 00:02:56,300 --> 00:02:58,400 咩係深思熟慮嘅走向。\\n\\n47 00:02:58,500 --> 00:03:02,500 因此我可以係世界上搵到同一類人做同一類野\\n\\n48 00:03:02,600 --> 00:03:07,500 因為我們有同樣嘅經歷、價值觀同理想\\n\\n49 00:03:07,500 --> 00:03:12,600 我地嘅工作,就係一本呢個星球上所有人都可以用嘅自由百科全書\\n\\n50 00:03:12,700 --> 00:03:15,900 由深思熟慮嘅人去寫,他們嘗試寫出中立嘅內容\\n\\n51 00:03:16,000 --> 00:03:19,800 嘗試誠實,嘗試帶出自由嘅資訊\\n\\n52 00:03:19,900 --> 00:03:23,800 我今天依然興奮,因為好似我很早開始時個樣。\\n\\n53 00:03:23,800 --> 00:03:25,500 我地仲有大量野要做。\\n\\n54 00:03:25,600 --> 00:03:28,800 今天係一個好好嘅時間俾我地回顧\\n\\n55 00:03:28,800 --> 00:03:32,800 我們係到做咩,同埋我都唔知啦!\\n\\n56 00:03:32,900 --> 00:03:33,500 你可以見我係幾咁興奮嘅。\\n\\n57 00:03:33,600 --> 00:03:37,800 我只想講,非常多謝你們所做嘅一切\\n\\n58 00:03:37,900 --> 00:03:42,700 非常多謝你今日嚟到呢度同其他人見面\\n\\n59 00:03:42,800 --> 00:03:48,600 請幫我一個忙,在人群裡面搵一個你從未見過面嘅人\\n\\n60 00:03:48,600 --> 00:03:50,100 介紹你自己,同埋講\\n\\n61 00:03:50,100 --> 00:03:52,200 \"你最鐘意編輯啲咩呢?\"\\n\\n62 00:03:52,300 --> 00:03:54,500 一齊建立呢個社群\\n\\n63 00:03:54,500 --> 00:03:56,700 呢個就係叫做喺一群朋友裡面做啲有用嘅野\\n\\n64 00:03:56,800 --> 00:04:01,900 所以,再次多謝,同埋維基百科生日快樂\\n\\n65 00:04:03,200 --> 00:04:12,900 維基百科分享知識總和嘅第十年。',\n", + " 'bytes': 5617,\n", + " 'sha1': '3paihihe2j0nochntoj9yg8zi6estpp',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48228570,\n", + " 'timestamp': '2011-01-13T21:15:43Z',\n", + " 'user': {'id': 1349782, 'text': 'Vierablu'},\n", + " 'page': {'id': 12681222,\n", + " 'title': 'WalesCalltoAction.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'hundred=hundreds',\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 Hello, I\\'m Jimmy Wales, founder of Wikipedia \\n\\n2 00:00:08,351 --> 00:00:11,487 and today we\\'re celebrating the 10th anniversary of Wikipedia.\\n\\n3 00:00:11,487 --> 00:00:16,467 It\\'s hard to imagine that it\\'s been ten years since I first edited Wikipedia.\\n\\n4 00:00:16,467 --> 00:00:23,472 I remember that first day. I clicked on \"Edit\" and I wrote \"Hello World\" and that was the beginning of Wikipedia and all the things that have come since then.\\n\\n5 00:00:23,472 --> 00:00:27,821 Today we\\'ve got millions of articles in hundreds of languages.\\n\\n6 00:00:27,821 --> 00:00:33,1 These days about 400 million people a month visit the website.\\n\\n7 00:00:33,1 --> 00:00:40,924 and that\\'s just an astounding thing to have happened. If you really think about the impact on our culture it\\'s staggering.\\n\\n8 00:00:41,032 --> 00:00:43,609 And it\\'s all thanks to you. I want to thank everybody who\\'s helped.\\n\\n9 00:00:43,610 --> 00:00:45,624 I want to thank all the people who\\'ve edited Wikipedia, \\n\\n10 00:00:45,624 --> 00:00:47,510 who\\'ve contributed to this great knowledge base.\\n\\n11 00:00:45,624 --> 00:00:50,101 I want to thank everybody who\\'s reading Wikipedia,\\n\\n12 00:00:50,102 --> 00:00:52,800 who\\'s really engaging with ideas and knowledge.\\n\\n13 00:00:52,801 --> 00:00:55,107 That\\'s what we made it for. We made it for you to read.\\n\\n14 00:00:55,108 --> 00:00:57,406 And I have a little bit of a call to action, a little request for everybody.\\n\\n15 00:00:57,406 --> 00:01:04,009 Even though that we\\'ve got millions of articles, even though we\\'re in hundreds of languages.\\n\\n16 00:01:04,009 --> 00:01:07,462 There is still a lot of work to do. So I want everybody out there, \\n\\n17 00:01:07,462 --> 00:01:10,051 if you\\'ve never edited Wikipedia, try it. Give a try. \\n\\n18 00:01:10,051 --> 00:01:13,736 Click on \"Edit\". You see some problems ? Fix it for us. We really appreciate it.\\n\\n19 00:01:14,151 --> 00:01:17,752 And... Well. Happy birthday Wikipedia.\\n\\n20 00:01:19,428 --> 00:01:26,49 Wikipedia 10 years of sharing the sum of all knowledge.',\n", + " 'bytes': 2057,\n", + " 'sha1': 'fsw9kdldm1vwybh7buuen1trk92hcmy',\n", + " 'parent_id': 48215764,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48209943,\n", + " 'timestamp': '2011-01-13T07:16:48Z',\n", + " 'user': {'id': 1177211, 'text': 'Waihorace'},\n", + " 'page': {'id': 12681266,\n", + " 'title': 'WalesCalltoAction.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:05,408 --> 00:00:08,351 你好,我是吉米·威爾斯,維基百科的創辦者。 2 00:00:08,351 --> 00:00:11,487 今天,我們都在慶祝維基...'\",\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 你好,我是吉米·威爾斯,維基百科的創辦者。\\n\\n2 00:00:08,351 --> 00:00:11,487 今天,我們都在慶祝維基百科十周年。\\n\\n3 00:00:11,487 --> 00:00:16,467 從我第一次編輯至今已經十年,這是難以想像的。\\n\\n4 00:00:16,467 --> 00:00:23,472 我記得第一日,我按了「編輯」並輸入了\"Hello world!\"(你好,世界)。這是維基百科的開始,所有東西都出來了。\\n\\n5 00:00:23,472 --> 00:00:27,821 今天,我們有上百萬的條目及上百種的語言。\\n\\n6 00:00:27,821 --> 00:00:33,1 這些日子平均每日有四億人來訪問,這是個網頁。\\n\\n7 00:00:33,1 --> 00:00:40,924 這些就是如果你認為這個文化在開始中時會發生的事件。\\n\\n8 00:00:41,032 --> 00:00:43,609 以及我很想多謝那些有幫忙的人,\\n\\n9 00:00:43,610 --> 00:00:45,624 有編輯過維基百科的人,\\n\\n10 00:00:45,624 --> 00:00:47,510 有貢獻過給這個很好的知識庫的人。\\n\\n11 00:00:45,624 --> 00:00:50,101 我想多謝所有正在閱讀維基百科的人,\\n\\n12 00:00:50,102 --> 00:00:52,800 那些用了維基百科知識及意念的人。\\n\\n13 00:00:52,801 --> 00:00:55,107 這就是我們造維基百科出來的目的:給你閱讀。\\n\\n14 00:00:55,108 --> 00:00:57,406 我有一個少少的全球呼籲,一個很少的要求:\\n\\n15 00:00:57,406 --> 00:01:04,009 即使我們有上百萬條條目,上百種語言,\\n\\n16 00:01:04,009 --> 00:01:07,462 我們還有大量工作要完成。所以,我想所有人站出來,\\n\\n17 00:01:07,462 --> 00:01:10,051 如果你未曾編輯維基百科,嘗試去做,\\n\\n18 00:01:10,051 --> 00:01:13,736 只需點「編輯」,見到有問題,修正它,我們會很感謝的。\\n\\n19 00:01:14,151 --> 00:01:17,752 好,維基百科,生日快樂。\\n\\n20 00:01:19,428 --> 00:01:26,49 維基百科分享知識總和的第十年。',\n", + " 'bytes': 1897,\n", + " 'sha1': '9wj3r8ifzp49v10sj8fzz5xolk52ij4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48347638,\n", + " 'timestamp': '2011-01-16T17:51:16Z',\n", + " 'user': {'id': 1425407, 'text': 'Antistress'},\n", + " 'page': {'id': 12682202,\n", + " 'title': 'WalesCalltoAction.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1 00:00:05,408 --> 00:00:08,351 Bonjour. Je m'appelle Jimmy Wales, je suis le fondateur de Wikipédia,\\n\\n2 00:00:08,351 --> 00:00:11,487 et aujourd'hui, nous célébrons le dixième anniversaire de Wikipédia.\\n\\n3 00:00:11,487 --> 00:00:16,467 Difficile d'imaginer que cela fait déjà dix ans que j'ai lancé ce projet.\\n\\n4 00:00:16,467 --> 00:00:23,472 Je me rappelle le premier jour. J'ai cliqué sur «\\xa0Modifier\\xa0» et écrit «\\xa0Bonjour le monde\\xa0» et c'était le début de Wikipédia et de tout ce qui a suivi.\\n\\n5 00:00:23,472 --> 00:00:27,821 Désormais nous avons des millions d'articles dans des centaines de langues.\\n\\n6 00:00:27,821 --> 00:00:33,1 Actuellement environ 400 millions de personnes visitent le site chaque mois\\n\\n7 00:00:33,1 --> 00:00:40,924 et c'est quelque chose de tout simplement stupéfiant. Si vous songez à l'impact sur notre culture c'est renversant...\\n\\n8 00:00:41,032 --> 00:00:43,609 et c'est entièrement grâce à vous. Je veux remercier tous ceux qui ont aidé.\\n\\n9 00:00:43,610 --> 00:00:45,624 Je veux remercier ceux qui ont édité Wikipédia, \\n\\n10 00:00:45,624 --> 00:00:47,510 contribuant à cette formidable base de connaissances.\\n\\n11 00:00:45,624 --> 00:00:50,101 Je veux remercier tous ceux qui consultent Wikipédia,\\n\\n12 00:00:50,102 --> 00:00:52,800 qui se soucient des idées et de la connaissance.\\n\\n13 00:00:52,801 --> 00:00:55,107 Nous l'avons créée pour ça. Pour que vous l'utilisiez.\\n\\n14 00:00:55,108 --> 00:00:57,406 J'ai une petite requête à adresser à chacun de vous.\\n\\n15 00:00:57,406 --> 00:01:04,009 Même si nous avons des millions d'articles, même si nous existons dans des centaines de langues.\\n\\n16 00:01:04,009 --> 00:01:07,462 il reste beaucoup de travail à accomplir. C'est pourquoi j'aimerais que ceux\\n\\n17 00:01:07,462 --> 00:01:10,051 qui n'y ont jamais contribué essayent.\\n\\n18 00:01:10,051 --> 00:01:13,736 Cliquez sur « Modifier ». Vous voyez des erreurs ? Corrigez-les. Rien ne nous fait plus plaisir.\\n\\n19 00:01:14,151 --> 00:01:17,752 Et donc... Bon anniversaire Wikipédia.\\n\\n20 00:01:19,428 --> 00:01:26,49 Wikipédia : 10 années de partage de la somme de nos connaissances.\",\n", + " 'bytes': 2154,\n", + " 'sha1': '85n9h0wrzj4k0nehk5xv8jlhi83gw4v',\n", + " 'parent_id': 48347523,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48229376,\n", + " 'timestamp': '2011-01-13T21:45:51Z',\n", + " 'user': {'id': 45724, 'text': 'Leinad'},\n", + " 'page': {'id': 12683377,\n", + " 'title': 'WalesCalltoAction.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'poprawna na wikipediową dewizę',\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 Cześć, nazywam się Jimmy Wales, jestem założycielem Wikipedii\\n\\n2 00:00:08,351 --> 00:00:11,487 i dzisiaj obchodzimy 10-lecie Wikipedii.\\n\\n3 00:00:11,487 --> 00:00:16,467 Trudno sobie wyobrazić, że to już dziesięć lat minęło, odkąd po raz pierwszy edytowałem Wikipedię.\\n\\n4 00:00:16,467 --> 00:00:23,472 Pamiętam ten pierwszy dzień. Kliknąłem „Edit” i napisałem „Hello World”, taki był początek Wikipedii i od tego wszystko się zaczęło.\\n\\n5 00:00:23,472 --> 00:00:27,821 Dzisiaj mamy miliony artykułów w setkach języków.\\n\\n6 00:00:27,821 --> 00:00:33,1 Obecnie około 400 milionów osób miesięcznie odwiedza tę stronę internetową\\n\\n7 00:00:33,1 --> 00:00:40,924 i to jest po prostu zdumiewającą rzeczą jaka się dzieje. Jeśli pomyślimy o wpływie [Wikipedii] na kulturę, jest on naprawdę oszałamiający.\\n\\n8 00:00:41,032 --> 00:00:43,609 I to wszystko dzięki Wam. Chcę podziękować wszystkim, którzy pomogli.\\n\\n9 00:00:43,610 --> 00:00:45,624 Chcę podziękować wszystkim ludziom, którzy edytowali Wikipedię\\n\\n10 00:00:45,624 --> 00:00:47,510 i którzy mają swój wkład w ten wielki zasób wiedzy.\\n\\n11 00:00:45,624 --> 00:00:50,101 Chcę podziękować wszystkim, którzy czytają Wikipedię\\n\\n12 00:00:50,102 --> 00:00:52,800 i którzy angażują się z pomysłami i wiedzą.\\n\\n13 00:00:52,801 --> 00:00:55,107 To wszystko czego dokonaliśmy, zrobiliśmy dla Ciebie byś mógł czytać.\\n\\n14 00:00:55,108 --> 00:00:57,406 Mam do każdego z was drobną prośbę, takie małe wezwanie do działania.\\n\\n15 00:00:57,406 --> 00:01:04,009 I choć mamy miliony artykułów i jesteśmy w setkach języków,\\n\\n16 00:01:04,009 --> 00:01:07,462 jest jeszcze wiele do zrobienia. Chcę więc zachęcić wszystkich,\\n\\n17 00:01:07,462 --> 00:01:10,051 którzy nigdy nie edytowali Wikipedii, spróbujcie to zrobić. Chociaż spróbujcie. \\n\\n18 00:01:10,051 --> 00:01:13,736 Kliknij „Edytuj”. Czy jest coś nie tak? Napraw to. Docenimy Twój wkład.\\n\\n19 00:01:14,151 --> 00:01:17,752 A więc... Wszystkiego najlepszego z okazji urodzin, Wikipedio!\\n\\n20 00:01:19,428 --> 00:01:26,49 Wikipedia, 10 lat dzielenia się sumą ludzkiej wiedzy.',\n", + " 'bytes': 2198,\n", + " 'sha1': '1whoonfosvvnbbiu2q97lnk8vklo9ql',\n", + " 'parent_id': 48228717,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48262413,\n", + " 'timestamp': '2011-01-14T20:33:36Z',\n", + " 'user': {'id': 211597, 'text': 'Lvova'},\n", + " 'page': {'id': 12685571,\n", + " 'title': 'WalesCalltoAction.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 Привет, я Джимми Уэльс, основатель Википедии,\\n\\n2 00:00:08,351 --> 00:00:11,487 и сегодня мы празднуем десятилетие Википедии.\\n\\n3 00:00:11,487 --> 00:00:16,467 Тяжело представить, что с тех пор, как я впервые правил Википедию, прошло десять лет.\\n\\n4 00:00:16,467 --> 00:00:23,472 Я помню тот первый день. Я нажал «править» и написал: «Hello World», и это было началом Википедии и всех произошедших вслед за этим вещей.\\n\\n5 00:00:23,472 --> 00:00:27,821 Сегодня у нас миллионы статей на сотнях языков.\\n\\n6 00:00:27,821 --> 00:00:33,1 В эти дни 400 миллионов людей ежемесячно посещают сайт,\\n\\n7 00:00:33,1 --> 00:00:40,924 и это лишь самое удивительное из произошедшего. Если вы по-настоящему думаете о влиянии на нашу культуру, это ошеломляет.\\n\\n8 00:00:41,032 --> 00:00:43,609 И это всё благодаря вам. Я хочу поблагодарить каждого, кто помог.\\n\\n9 00:00:43,610 --> 00:00:45,624 Я хочу поблагодарить всех людей, редактировавших Википедию,\\n\\n10 00:00:45,624 --> 00:00:47,510 вложившихся в это огромную базу знаний.\\n\\n11 00:00:45,624 --> 00:00:50,101 Я хочу поблагодарить каждого, кто читает Википедию,\\n\\n12 00:00:50,102 --> 00:00:52,800 кто действительно заинтересован в идеях и знании.\\n\\n13 00:00:52,801 --> 00:00:55,107 Для этого мы её и сделали. Мы сделали её для того, чтобы вы прочли.\\n\\n14 00:00:55,108 --> 00:00:57,406 И у меня есть небольшой призыв к действию, небольшая просьба к каждому.\\n\\n15 00:00:57,406 --> 00:01:04,009 Даже если уже существуют миллионы статей, даже если работа ведётся уже на сотнях языков —\\n\\n16 00:01:04,009 --> 00:01:07,462 существует ещё множество работы, которую ещё только предстоит сделать; и я хочу, чтобы каждый,\\n\\n17 00:01:07,462 --> 00:01:10,051 кто не редактировал Википедию, попробовал это. Сделайте попытку.\\n\\n18 00:01:10,051 --> 00:01:13,736 Нажмите «править». Вы видите ошибки? Исправьте их для нас. Мы действительно ценим это.\\n\\n19 00:01:14,151 --> 00:01:17,752 И… что ж. С днём рожденья, Википедия.\\n\\n20 00:01:19,428 --> 00:01:26,49 Википедия. 10 лет мы делимся накопленным знанием',\n", + " 'bytes': 3140,\n", + " 'sha1': 'qcmhnuuvnfnyul2lwo76htchn2z7own',\n", + " 'parent_id': 48226192,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 166726508,\n", + " 'timestamp': '2015-07-25T09:24:52Z',\n", + " 'user': {'id': 3520006, 'text': 'Bjankuloski06'},\n", + " 'page': {'id': 12686169,\n", + " 'title': 'Edit Button.ogv.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nЌе видите копче „уреди“\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nСтиснете го,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nвидете каде е текстот, и уредувајте\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nпотоа стиснете на „Зачувај“. Просто е.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nНајинтересното кај Википедија\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nе тоа што можете да менувате.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nНе ви треба ничија дозвола\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nа и лесно е.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nОтпрвин може да ви се чини сложено,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nно навистина не е тешко\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nМногумина не сфаќаат, како да е некое слепило.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nГи читаат статиите, а не го гледаат копчето „уреди“.\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nСтиснете го тоа копче и видете што ќе се случи.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n„Уреди“.\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nКога ќе се отворите кон нешто,\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nќе почнете да уредувате,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nможе да ви се случат разни други нешта,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nи тоа е убавината на ова.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nМоже да биде само почеток,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nкако некоја покана за повеќе од животот.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nКога започнуваме некоја статија, не ни се допаѓа,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nбидејќи ви делува грда.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nНо почекајте само... неколку часа\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nи ќе видите како ќе прерасне во одлична статија.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nКопчето „уреди\": стиснете го, и изменете нешто\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nзачувајте ја страницата - и сте промениле нешто во светот.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n„Зачувај“.',\n", + " 'bytes': 2516,\n", + " 'sha1': 'h82eio3ivp84ea73zy83lndjc2eyzur',\n", + " 'parent_id': 48227864,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48228569,\n", + " 'timestamp': '2011-01-13T21:15:40Z',\n", + " 'user': {'id': 31103, 'text': 'Bjankuloski06en'},\n", + " 'page': {'id': 12686416,\n", + " 'title': 'Great Feeling.ogv.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,905 --> 00:00:03,204 Ааа, не, немам суперсили. 2 00:00:03,204 --> 00:00:05,990 Воопшто немам. 3 00:00:05,990 --> 00:00:...'\",\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nАаа, не, немам суперсили.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nВоопшто немам.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nСосема можете и вие.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nГо стиснав копчето,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nго зачував текстот,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nЕхааа!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nИ беше... возбудливо.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nШтотуку ја променив Википедија,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nдадов свој придонес.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nПрочитав напис во „Guardian“\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nза една интернет-енциклопедија\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nкаде секој може да придонесува\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nи си реков: „Еј!“\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n„Тогаш можам и јас да придонесувам!“\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nДојдов, уредив\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nи мислам дека се навлеков.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nНе ме плаќаат\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nТуку чисто, знаете,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nзанимација во слободно време.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nМоже да почнете поради некоја идеја,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nпоради некое ваше убедување,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nно добивате пријатели,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nдобивате вљубеници,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nдобивате прекрасни разговори,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nдобивате нови идеи,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nи нови книги што ќе ги пишувате...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nНе ја пишувате статијата сами.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nПишувате делче,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nи некој друг вели:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n„Јас имам уште!“\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nи заедно ќе создадете\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nстатии од повеќе страници,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nшто инаку не можете да ги направите сами.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nТогаш следи успех.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nИ секојпат си велите: „Еве, направив нешто успешно.“\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nи ова е феноменално.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nОва е супер,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nбидејќи уредувањето дава одлично чувство.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nСекој пат кога уредувате.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nМорам да кажам,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nкога прочитав за Википедија,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nРешив\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n„Можеби овде ќе се вклопам“\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nИ се вклопив.',\n", + " 'bytes': 3415,\n", + " 'sha1': 'nf61l994ikrnecp74otzo5aslb6z0ea',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48229791,\n", + " 'timestamp': '2011-01-13T22:03:58Z',\n", + " 'user': {'id': 31103, 'text': 'Bjankuloski06en'},\n", + " 'page': {'id': 12686795,\n", + " 'title': 'WalesCalltoAction.ogv.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:05,408 --> 00:00:08,351 Здраво, јас сум Џими Велс - основач на Википедија 2 00:00:08,351 --> 00:00:11,487 Дене...'\",\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 Здраво, јас сум Џими Велс - основач на Википедија \\n\\n2 00:00:08,351 --> 00:00:11,487 Денес ја прославуваме десетгодишнината на Википедија.\\n\\n3 00:00:11,487 --> 00:00:16,467 Тешко ми е да си претставам дека поминаа десет години откако почнав со Википедија.\\n\\n4 00:00:16,467 --> 00:00:23,472 Се сеќавам на првиот ден. Стиснав на „Уреди“ и напишав „Hello World“. Тоа беше почетокот на Википедија и сето она што следеше.\\n\\n5 00:00:23,472 --> 00:00:27,821 Денес имаме милиони статии на стотици јазици.\\n\\n6 00:00:27,821 --> 00:00:33,1 Имаме над 400 милиони посетители месечно.\\n\\n7 00:00:33,1 --> 00:00:40,924 Значи, се случи вчудоневидувачка работа. Ако помислите на влијанието врз нашата култура - да се запрепасти човек.\\n\\n8 00:00:41,032 --> 00:00:43,609 И сето тоа благодарение на вас. Би сакал да им се заблагодарам на сите што помогнаа.\\n\\n9 00:00:43,610 --> 00:00:45,624 Голема благодарност до сите оние што уредуваат, \\n\\n10 00:00:45,624 --> 00:00:47,510 сите што дадоа свој придонес во оваа величествена на ризница на сознанија.\\n\\n11 00:00:45,624 --> 00:00:50,101 Би сакал да им се заблагодарам на сите што ја читаат Википедија,\\n\\n12 00:00:50,102 --> 00:00:52,800 што толку нè обзема со идеи и сознанија.\\n\\n13 00:00:52,801 --> 00:00:55,107 Затоа и ја направивме. Ја направивме за вие да ја читате.\\n\\n14 00:00:55,108 --> 00:00:57,406 Но би сакал да ве повикам да делувате - една мала молба до сите.\\n\\n15 00:00:57,406 --> 00:01:04,009 Иако имаме милиони статии, иако имаме стотици јазици.\\n\\n16 00:01:04,009 --> 00:01:07,462 Сепак ни претстои уште многу работа. Затоа сакам сите вие, \\n\\n17 00:01:07,462 --> 00:01:10,051 ако никогаш немате уредувано на Википедија - да се обидете. Пробајте. \\n\\n18 00:01:10,051 --> 00:01:13,736 Стиснете на „Уреди“. Забележувате нешто проблематично ? Исправете го. Тоа навистина го цениме.\\n\\n19 00:01:14,151 --> 00:01:17,752 И... Eпа, нека ѝ е честит роденденот на Википедија.\\n\\n20 00:01:19,428 --> 00:01:26,49 Википедија - 10 години споделување на севкупните човекови сознанија.',\n", + " 'bytes': 3101,\n", + " 'sha1': '70lcbf7b9gjx468ncm1l27ivce30uxh',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48262988,\n", + " 'timestamp': '2011-01-14T20:50:08Z',\n", + " 'user': {'id': 12598, 'text': 'Toniher'},\n", + " 'page': {'id': 12687333,\n", + " 'title': 'WalesAnniversaryAddress.ogv.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1 00:00:07,000 --> 00:00:10,500 Hola a tothom i benvinguts al desè aniversari de la Viquipèdia.\\n\\n2 00:00:10,510 --> 00:00:15,400 És un dia realment emocionant per a tothom i arreu del món.\\n\\n3 00:00:15,410 --> 00:00:18,400 He passat força temps darrerament reflexionant sobre la història de la Viquipèdia\\n\\n4 00:00:18,410 --> 00:00:23,200 d'allà on veníem i tot allò que hem passat fins arribar on som avui.\\n\\n5 00:00:23,210 --> 00:00:28,100 Recordo la primera vegada que vaig editar a la Viquipèdia,\\n\\n6 00:00:28,100 --> 00:00:30,100 que va ser el primer dia que va existir,\\n\\n7 00:00:30,100 --> 00:00:32,700 i vaig fer clic a 'Inicia', i vaig escriure-hi 'Hola món!',\\n\\n8 00:00:32,750 --> 00:00:35,500 a continuació 'Desa', i aquests foren els primers mots a la Viquipèdia.\\n\\n9 00:00:35,600 --> 00:00:38,800 I vaig pensar sobre allò que vindria, i per descomptat, no sabia realment què ens esperava\\n\\n10 00:00:38,900 --> 00:00:42,400 però al llarg dels anys he tingut experiències fantàstiques,\\n\\n11 00:00:42,500 --> 00:00:46,200 he tingut l'oportunitat de voltar arreu del món i conèixer a molts de vosaltres en persona.\\n\\n12 00:00:46,300 --> 00:00:49,950 Recordo... diferents flaixos em vénen a la ment.\\n\\n13 00:00:50,050 --> 00:00:57,300 Recordo la primera trobada de junta de la Fundació Wikimèdia, quan vaig trobar-me a Paris amb Florence\\n\\n14 00:00:57,400 --> 00:01:00,800 de la Viquipèdia francesa, i Angela de l'anglesa, els primers membres de la junta\\n\\n15 00:01:00,900 --> 00:01:05,000 i vam tenir una reunió per parlar de la creació de la fundació\\n\\n16 00:01:05,050 --> 00:01:08,800 i com obtindríem diners perquè el projecte funcionés, com creixeríem\\n\\n17 00:01:08,800 --> 00:01:09,900 i quines perspectives de futur teníem.\\n\\n18 00:01:10,000 --> 00:01:15,800 Recordo assegut a la vora del riu de Berlín amb viquipedistes alemanys,\\n\\n19 00:01:15,900 --> 00:01:21,400 i com esperàvem que s'escrigués l'article cent mil,\\n\\n20 00:01:21,500 --> 00:01:24,800 asseguts a fora, premíem el botó 'Actualitza' dels nostres ordinadors per veure\\n\\n21 00:01:25,000 --> 00:01:27,100 «Oh!, és el noranta-nou mil nou-cents noranta-set»\\n\\n22 00:01:27,200 --> 00:01:30,500 M'imagino que tota Viquipèdia ha passat per aquest procés, quan esteu excitats\\n\\n23 00:01:30,600 --> 00:01:34,500 quan esteu a prop i, per descomptat, en arribar al cent mil\\n\\n24 00:01:34,600 --> 00:01:37,400 sempre teníem la discussió de quin havia estat realment l'article cent mil\\n\\n25 00:01:37,500 --> 00:01:39,700 una altra de les grans aficions dels viquipedistes\\n\\n26 00:01:39,800 --> 00:01:46,600 I, al llarg dels anys, he tingut moltes oportunitats per anar arreu del món, trobar-me amb viquipedistes de l'Índia,\\n\\n27 00:01:46,700 --> 00:01:53,700 a Xina, a Sud-amèrica, de fet, arreu del món, i a mesura que viatjo i parlo amb més gent\\n\\n28 00:01:53,800 --> 00:01:57,500 una de les preguntes més freqüents que em trobo dels grups viquipedistes és \\n\\n29 00:01:57,600 --> 00:02:01,500 «Com ens veus respecte a altres viquipedistes?\\n\\n30 00:02:01,600 --> 00:02:04,500 quina és la diferència dels viquipedistes brasilers, per exemple?»\\n\\n31 00:02:04,600 --> 00:02:06,600 i he de dir que, de fet, «No hi ha massa diferència».\\n\\n32 00:02:06,700 --> 00:02:10,800 La veritat és que tendim a ser molt semblants arreu del món\\n\\n33 00:02:10,900 --> 00:02:13,500 tot i venir de cultures diferents\\n\\n34 00:02:13,600 --> 00:02:18,500 molts tipus de persones, però també compartim unes mateixes experiències\\n\\n35 00:02:18,600 --> 00:02:20,700 i hem experimentat el mateix tipus de cosa.\\n\\n36 00:02:20,800 --> 00:02:23,900 Crec que tothom ha revertit els mateixos tipus de vandalisme.\\n\\n37 00:02:24,000 --> 00:02:25,500 No importa amb quina llengua treballem\\n\\n38 00:02:25,500 --> 00:02:30,500 no importa si el vostre wiki té cinc cents o cinc cents mil articles\\n\\n39 00:02:30,600 --> 00:02:34,000 o tres milions, sempre hi ha algú que arriba\\n\\n40 00:02:34,000 --> 00:02:39,500 i reemplaça un article fabulós amb dos renecs o per l'estil.\\n\\n41 00:02:39,600 --> 00:02:42,700 I, per descomptat, simplement llavors revertiu l'article i bloque el vàndal, i ja està.\\n\\n42 00:02:42,800 --> 00:02:46,600 Això és part de ser un viquipedista, hem tingut discussions interessants\\n\\n43 00:02:46,600 --> 00:02:46,800 sobre les convencions de nom de les coses\\n\\n44 00:02:46,800 --> 00:02:53,200 com anomenem un riu a Polònia, com anomenarem això\\n\\n45 00:02:53,300 --> 00:02:56,300 com anomenarem allò, quines són les controvèrsies que cal tractar\\n\\n46 00:02:56,300 --> 00:02:58,400 i quina és la forma assenyada de portar-ho endavant.\\n\\n47 00:02:58,500 --> 00:03:02,500 Arreu del món he trobat el mateix tipus de gent fent la mateixa mena de feina\\n\\n48 00:03:02,600 --> 00:03:07,500 perquè compartim la mateixa experiència. I també compartim els mateixos valors, els mateixos ideals\\n\\n49 00:03:07,500 --> 00:03:12,600 allò perquè treballem – una enciclopèdia lliure per a tothom del planeta\\n\\n50 00:03:12,700 --> 00:03:15,900 escrita per gent considera, que mira de ser neutral\\n\\n51 00:03:16,000 --> 00:03:19,800 mira de ser honesta, mira d'aportar informació lliure.\\n\\n52 00:03:19,900 --> 00:03:23,800 És encara tan emocionant per a mi avui com ho era els primers dies quan vaig començar.\\n\\n53 00:03:23,800 --> 00:03:25,500 Encara tenim molt per fer.\\n\\n54 00:03:25,600 --> 00:03:28,800 Avui és un gran moment per reflexionar fins on hem arribar\\n\\n55 00:03:28,800 --> 00:03:32,800 per pensar cap on anem, i uau, podeu veure\\n\\n56 00:03:32,900 --> 00:03:33,500 com m'estic emocionant.\\n\\n57 00:03:33,600 --> 00:03:37,800 Només voldria dir: Moltes gràcies per tot el treball que heu fet\\n\\n58 00:03:37,900 --> 00:03:42,700 moltes gràcies per venir fins aquí avui per trobar-vos amb altra gent.\\n\\n59 00:03:42,800 --> 00:03:48,600 Feu-me un favor, i trobeu algú de la multitud, qui no hàgiu conegut abans en persona\\n\\n60 00:03:48,600 --> 00:03:50,100 i presenteu-vos tot dient:\\n\\n61 00:03:50,100 --> 00:03:52,200 «Ei, què voleu editar?»\\n\\n62 00:03:52,300 --> 00:03:54,500 Construïm aquesta comunitat,\\n\\n63 00:03:54,500 --> 00:03:56,700 que no és més que una colla d'amics que fa quelcom útil.\\n\\n64 00:03:56,800 --> 00:04:01,900 Així doncs, gràcies de nou i per molts anys a la Viquipèdia.\\n\\n<!--65 00:04:03,200 -*-> 00:04:12,900 Viquipèdia, 10 anys compartint la suma de tot el coneixement.-->\",\n", + " 'bytes': 6382,\n", + " 'sha1': 'pyvxcfkomt7551gfd0wrxg7qp37x04m',\n", + " 'parent_id': 48245264,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 51648766,\n", + " 'timestamp': '2011-03-07T07:10:15Z',\n", + " 'user': {'id': 1491834, 'text': 'Svangeepuram'},\n", + " 'page': {'id': 12688801,\n", + " 'title': 'WalesCalltoAction.ogv.te.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 హలో, నేను జిమ్మీ వేల్స్, వికీపీడియా వ్యవస్థాపకుడిని. \\n\\n2 00:00:08,351 --> 00:00:11,487 ఇవ్వాళ వికిపీడియా దశాబ్ది వేడుకలను జరుపుకుంటున్నాం.\\n\\n3 00:00:11,487 --> 00:00:16,467 నేను మొదటిసారి వికిపీడియాని కూర్చినప్పటినుండి పదేళ్ళు గడిచాయంటే నమ్మలేకపోతున్నా. \\n\\n4 00:00:16,467 --> 00:00:23,472 ఆ మొదటి రోజు నాకు బాగా గుర్తు. \"మార్చు\" లింకుపైనొక్కి, \"హలో వ(ర)ల్డ్\" అంటూ పలకరించాను. అదే వికిపీడియాకి నాంది. అంతే, తరువాత పనులన్నీ చకచకా జరిగిపోయాయి. \\n\\n5 00:00:23,472 --> 00:00:27,821 నేడు మనకు వందలకొద్ది భాషల్లో లక్షలకొద్ది ప్రకరణలున్నాయి. \\n\\n6 00:00:27,821 --> 00:00:33,1 ఇప్పుడు నెలకి సుమారు 40 కోట్ల మంది ఈ వెబ్ సైటుకు వస్తున్నారు. \\n\\n7 00:00:33,1 --> 00:00:40,924 ఇది నిజంగా ఆశ్చర్యం కలిగిస్తుంది. మన సంస్కృతిపై దీని ప్రభావాన్ని గురించి ఆలోచిస్తే, తప్పకుండా తత్తరపడతాం. \\n\\n8 00:00:41,032 --> 00:00:43,609 ఇది మీ చలవే. ఇందులో సహకరించిన ప్రతి ఒక్కరికీ నా కృతజ్ఞతలు. \\n\\n9 00:00:43,610 --> 00:00:45,624 వికిపీడియాని కూర్చి, \\n\\n10 00:00:45,624 --> 00:00:47,510 ఈ విజ్ఞాననిధికి సహకరించిన మీకందరికీ నా కృతజ్ఞతలు.\\n\\n11 00:00:45,624 --> 00:00:50,101 కొత్త సంగతులను చదవడానికి, విజ్ఞానాన్ని పొందడానికి పూనుకొని ,\\n\\n12 00:00:50,102 --> 00:00:52,800 వికిపీడియాని చదువుతున్న ప్రతిఒక్కరికి నా కృతజ్ఞతలు.\\n\\n13 00:00:52,801 --> 00:00:55,107 దీని ఉద్దేశ్యమదే. మీరు చదవడానికే దీన్ని తయారుచేశాం. \\n\\n14 00:00:55,108 --> 00:00:57,406 కానీ కొంచెం పనుంది, ప్రతి ఒక్కరికీ నాదొక చిన్న విన్నపం. \\n\\n15 00:00:57,406 --> 00:01:04,009 మనకు వందలకొద్దీ భాషల్లో, లక్షలకొద్దీ ప్రకరణలున్నా... \\n\\n16 00:01:04,009 --> 00:01:07,462 ఇంకా చేయవలసినది చాలా వుంది. అందుకే మీ అందరి సహాయం కావాలి. \\n\\n17 00:01:07,462 --> 00:01:10,051 ఇప్పటికింకా వికిపీడియాని మీరు మార్చనట్లయితే, ఒకసారి ప్రయత్నించండి.\\n\\n18 00:01:10,051 --> 00:01:13,736 \"మార్చు\" లింకుపై నొక్కండి. సమస్యలున్నాయా? వాటిని సరిదిద్దండి. అది నిజంగా మెచ్చుకోదగ్గ పని. \\n\\n19 00:01:14,151 --> 00:01:17,752 విషయానికి వస్తే, వికిపీడియాకి పుట్టినరోజు శుభాకాంక్షలు!\\n\\n20 00:01:19,428 --> 00:01:26,49 వికిపీడియా పదేళ్ళ విజ్ఞానసర్వస్వాన్ని పంచుకుంటున్నది.',\n", + " 'bytes': 4163,\n", + " 'sha1': 'ib7gqx40rpuw0zuhdn7neq1uyh6ki3f',\n", + " 'parent_id': 48236704,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48236774,\n", + " 'timestamp': '2011-01-14T05:03:49Z',\n", + " 'user': {'id': 542864, 'text': 'Arjunaraoc'},\n", + " 'page': {'id': 12688829,\n", + " 'title': 'WalesAnniversaryAddress.ogv.te.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Initial english version',\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 Hi everybody and welcome to the tenth anniversary of Wikipedia.\\n\\n2 00:00:10,510 --> 00:00:15,400 It\\'s a really exciting day for everybody in the community and all around the world.\\n\\n3 00:00:15,410 --> 00:00:18,400 I\\'ve been spending a lot of time lately thinking about the history of Wikipedia\\n\\n4 00:00:18,410 --> 00:00:23,200 and where we came from and all the things we\\'ve been through to get where we are today.\\n\\n5 00:00:23,210 --> 00:00:28,100 I remember the first time I ever edited Wikipedia,\\n\\n6 00:00:28,100 --> 00:00:30,100 which was the first day Wikipedia existed,\\n\\n7 00:00:30,100 --> 00:00:32,700 and I clicked on \"edit\", and I typed \"Hello, world!\",\\n\\n8 00:00:32,750 --> 00:00:35,500 and hit \"Save\" and that was the first words in Wikipedia.\\n\\n9 00:00:35,600 --> 00:00:38,800 And I thought about what was to come and of course I really didn\\'t know what was to come\\n\\n10 00:00:38,900 --> 00:00:42,400 but over the years I\\'ve had a lot of wonderful experiences\\n\\n11 00:00:42,500 --> 00:00:46,200 I had the opportunity to come around the world and meet with many of you in person\\n\\n12 00:00:46,300 --> 00:00:49,950 I remember... several things stand out on my mind.\\n\\n13 00:00:50,050 --> 00:00:57,300 I remember the first board meeting for the Wikimedia Foundation, when I met in Paris with Florence\\n\\n14 00:00:57,400 --> 00:01:00,800 from French Wikipedia and Angela from English Wikipedia, the first board members\\n\\n15 00:01:00,900 --> 00:01:05,000 and we had a meeting to start to discuss building the Foundation\\n\\n16 00:01:05,050 --> 00:01:08,800 how we\\'re gonna get the money to keep this project going, how can we grow\\n\\n17 00:01:08,800 --> 00:01:09,900 and what does the future look like.\\n\\n18 00:01:10,000 --> 00:01:15,800 I remember sitting on the banks of the river in Berlin with German wikipedians,\\n\\n19 00:01:15,900 --> 00:01:21,400 and we were waiting, expecting for the one hundredth thousandth article to be written\\n\\n20 00:01:21,500 --> 00:01:24,800 so we sat outside and we kept hitting \"Reload\" on our computers to see\\n\\n21 00:01:25,000 --> 00:01:27,100 \"Oh, it\\'s ninety nine thousand, nine hundred and ninety seven\"\\n\\n22 00:01:27,200 --> 00:01:30,500 I guess every Wikipedia has gone through this milestone process, when you\\'re excited\\n\\n23 00:01:30,600 --> 00:01:34,500 when you\\'re getting close and then of course as we hit the one hundred thousand\\n\\n24 00:01:34,600 --> 00:01:37,400 we had the big argument about which article was really the one hundred thousandth\\n\\n25 00:01:37,500 --> 00:01:39,700 another great hobby of Wikipedians\\n\\n26 00:01:39,800 --> 00:01:46,600 And over the years I had many opportunities to come all around the world, I met with wikipedians in India\\n\\n27 00:01:46,700 --> 00:01:53,700 in China, in South America, really all around the world, and as I travel around and I talk to people\\n\\n28 00:01:53,800 --> 00:01:57,500 one of the most frequent questions I get from Wikipedia groups is \\n\\n29 00:01:57,600 --> 00:02:01,500 \"How do you see us compared to other wikipedians around the world\\n\\n30 00:02:01,600 --> 00:02:04,500 what\\'s different about the Brazilian Wikipedians, for example?\"\\n\\n31 00:02:04,600 --> 00:02:06,600 and what I have to say is \"Not much difference\".\\n\\n32 00:02:06,700 --> 00:02:10,800 It turns out that we tend to be very much the same all around the world\\n\\n33 00:02:10,900 --> 00:02:13,500 even though we come from very different cultures\\n\\n34 00:02:13,600 --> 00:02:18,500 many different kinds of people, but we also share the same experiences\\n\\n35 00:02:18,600 --> 00:02:20,700 we\\'ve all been through the same things.\\n\\n36 00:02:20,800 --> 00:02:23,900 I think everybody has reverted the same kinds of vandalism.\\n\\n37 00:02:24,000 --> 00:02:25,500 It doesn\\'t matter what language you\\'re working in\\n\\n38 00:02:25,500 --> 00:02:30,500 it doesn\\'t matter if your wiki has five hundred articles or five hundred thousands\\n\\n39 00:02:30,600 --> 00:02:34,000 or three million, you still get somebody who comes along\\n\\n40 00:02:34,000 --> 00:02:39,500 and replaces a whole wonderful article with two words of cursing or something like this.\\n\\n41 00:02:39,600 --> 00:02:42,700 And of course you just revert it and block the vandal, and all that.\\n\\n42 00:02:42,800 --> 00:02:46,600 That\\'s part of being a wikipedian, we\\'ve all had really interesting conversations\\n\\n43 00:02:46,600 --> 00:02:46,800 about the naming conventions of things\\n\\n44 00:02:46,800 --> 00:02:53,200 what do we call a river in Poland, how are we gonna name this\\n\\n45 00:02:53,300 --> 00:02:56,300 how are we gonna name that, what are the controversies that we need to figure out\\n\\n46 00:02:56,300 --> 00:02:58,400 and what is the thoughtful way forward.\\n\\n47 00:02:58,500 --> 00:03:02,500 So all around the world I find the same kinds of people doing the same kinds of work\\n\\n48 00:03:02,600 --> 00:03:07,500 because we had the same shared experience. And we also share the same values, the same ideals\\n\\n49 00:03:07,500 --> 00:03:12,600 the things we are working for – free encyclopedia for every person of the planet\\n\\n50 00:03:12,700 --> 00:03:15,900 written really by thoughtful people, that try to be neutral\\n\\n51 00:03:16,000 --> 00:03:19,800 try to be honest, trying to bring free information.\\n\\n52 00:03:19,900 --> 00:03:23,800 It\\'s still as exciting for me today as it was in the very early days when I started.\\n\\n53 00:03:23,800 --> 00:03:25,500 We\\'ve still got a lot of work left to do.\\n\\n54 00:03:25,600 --> 00:03:28,800 Today is a great moment to reflect on where we\\'ve been\\n\\n55 00:03:28,800 --> 00:03:32,800 to think about where we\\'re going, and wow, I don\\'t know\\n\\n56 00:03:32,900 --> 00:03:33,500 you can see how excited I\\'m getting.\\n\\n57 00:03:33,600 --> 00:03:37,800 I just want to say: Thank you so much for all the work that you\\'ve done\\n\\n58 00:03:37,900 --> 00:03:42,700 thank you so much for coming here today to meet with other people.\\n\\n59 00:03:42,800 --> 00:03:48,600 Do me a favor and find somebody in the crowd, who you have never met before in person\\n\\n60 00:03:48,600 --> 00:03:50,100 and introduce yourself and say:\\n\\n61 00:03:50,100 --> 00:03:52,200 \"Hey, what would you like to edit?\"\\n\\n62 00:03:52,300 --> 00:03:54,500 Let\\'s build this community\\n\\n63 00:03:54,500 --> 00:03:56,700 it\\'s all about a bunch of friends doing something useful.\\n\\n64 00:03:56,800 --> 00:04:01,900 So, thank you again and happy birthday to Wikipedia.\\n\\n<!--65 00:04:03,200 -*-> 00:04:12,900 Wikipedia 10 years of sharing the sum of all knowledge.-->',\n", + " 'bytes': 6482,\n", + " 'sha1': 'o82ishi2l7odi0a6q3qmfk78xsz8poq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48242851,\n", + " 'timestamp': '2011-01-14T11:01:02Z',\n", + " 'user': {'text': '41.73.204.35'},\n", + " 'page': {'id': 12690567,\n", + " 'title': 'WalesCalltoAction.ogv.LANG.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:05,408 --> 00:00:08,351 Hello, I'm Jimmy Wales, founder of Wikipedia 2 00:00:08,351 --> 00:00:11,487 and today we're celebrating the 10th anniversary of ...'\",\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 Hello, I\\'m Jimmy Wales, founder of Wikipedia \\n\\n2 00:00:08,351 --> 00:00:11,487 and today we\\'re celebrating the 10th anniversary of Wikipedia.\\n\\n3 00:00:11,487 --> 00:00:16,467 It\\'s hard to imagine that it\\'s been ten years since I first edited Wikipedia.\\n\\n4 00:00:16,467 --> 00:00:23,472 I remember that first day. I clicked on \"Edit\" and I wrote \"Hello World\" and that was the beginning of Wikipedia and all the things that have come since then.\\n\\n5 00:00:23,472 --> 00:00:27,821 Today we\\'ve got millions of articles in hundreds of languages.\\n\\n6 00:00:27,821 --> 00:00:33,1 These days about 400 million people a month visit the website.\\n\\n7 00:00:33,1 --> 00:00:40,924 and that\\'s just an astounding thing to have happened. If you really think about the impact on our culture it\\'s staggering.\\n\\n8 00:00:41,032 --> 00:00:43,609 And it\\'s all thanks to you. I want to thank everybody who\\'s helped.\\n\\n9 00:00:43,610 --> 00:00:45,624 I want to thank all the people who\\'ve edited Wikipedia, \\n\\n10 00:00:45,624 --> 00:00:47,510 who\\'ve contributed to this great knowledge base.\\n\\n11 00:00:45,624 --> 00:00:50,101 I want to thank everybody who\\'s reading Wikipedia,\\n\\n12 00:00:50,102 --> 00:00:52,800 who\\'s really engaging with ideas and knowledge.\\n\\n13 00:00:52,801 --> 00:00:55,107 That\\'s what we made it for. We made it for you to read.\\n\\n14 00:00:55,108 --> 00:00:57,406 And I have a little bit of a call to action, a little request for everybody.\\n\\n15 00:00:57,406 --> 00:01:04,009 Even though that we\\'ve got millions of articles, even though we\\'re in hundreds of languages.\\n\\n16 00:01:04,009 --> 00:01:07,462 There is still a lot of work to do. So I want everybody out there, \\n\\n17 00:01:07,462 --> 00:01:10,051 if you\\'ve never edited Wikipedia, try it. Give a try. \\n\\n18 00:01:10,051 --> 00:01:13,736 Click on \"Edit\". You see some problems ? Fix it for us. We really appreciate it.\\n\\n19 00:01:14,151 --> 00:01:17,752 And... Well. Happy birthday Wikipedia.\\n\\n20 00:01:19,428 --> 00:01:26,49 Wikipedia 10 years of sharing the sum of all knowledge.',\n", + " 'bytes': 2057,\n", + " 'sha1': 'fsw9kdldm1vwybh7buuen1trk92hcmy',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48262472,\n", + " 'timestamp': '2011-01-14T20:35:07Z',\n", + " 'user': {'id': 12598, 'text': 'Toniher'},\n", + " 'page': {'id': 12695304,\n", + " 'title': 'WalesCalltoAction.ogv.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:05,408 --> 00:00:08,351 Hola, em dic Jimmy Wales, fundador de la Viquipèdia 2 00:00:08,351 --> 00:00:11,487 i avui estem celebrant-ne el seu desè anive...'\",\n", + " 'text': \"1 00:00:05,408 --> 00:00:08,351 Hola, em dic Jimmy Wales, fundador de la Viquipèdia \\n\\n2 00:00:08,351 --> 00:00:11,487 i avui estem celebrant-ne el seu desè aniversari.\\n\\n3 00:00:11,487 --> 00:00:16,467 Es fa difícil imaginar que fa deu anys que vaig editar per primera vegada la Viquipèdia.\\n\\n4 00:00:16,467 --> 00:00:23,472 Recordo el primer dia. Vaig clicar a «Inicia» i vaig escriure-hi «Hola món», i això fou el començament de la Viquipèdia i de tot allò que ha vingut darrere.\\n\\n5 00:00:23,472 --> 00:00:27,821 Avui tenim milions d'articles en centenars de llengües.\\n\\n6 00:00:27,821 --> 00:00:33,1 Actualment, vora 400 milions de persones visiten el lloc web cada mes.\\n\\n7 00:00:33,1 --> 00:00:40,924 És impressionant què ha pensat. És esfereïdor només pensar en l'impacte que ha tingut sobre la cultura.\\n\\n8 00:00:41,032 --> 00:00:43,609 I és tot gràcies a vosaltres. I volem ajudar a tothom qui hi ha ajudat.\\n\\n9 00:00:43,610 --> 00:00:45,624 Voldria agrair a tothom qui ha editat a la Viquipèdia, \\n\\n10 00:00:45,624 --> 00:00:47,510 qui ha contribuït a aquesta gran base del coneixement.\\n\\n11 00:00:45,624 --> 00:00:50,101 Voldria agrair a tothom qui llegeix la Viquipèdia,\\n\\n12 00:00:50,102 --> 00:00:52,800 que és realment comprometre's amb les idees i el coneixement.\\n\\n13 00:00:52,801 --> 00:00:55,107 Això és perquè ho hem fet. Hi ho hem fet perquè ho llegiu.\\n\\n14 00:00:55,108 --> 00:00:57,406 I voldria fer una mica de crida a l'acció, una sol·licitud a tothom.\\n\\n15 00:00:57,406 --> 00:01:04,009 Tot i que tinguem milions d'articles, fins i tot en centenars de llengües.\\n\\n16 00:01:04,009 --> 00:01:07,462 Hi ha molta feina per fer. I per tant, voldria tothom allà fora, \\n\\n17 00:01:07,462 --> 00:01:10,051 si mai heu editat la Viquipèdia, proveu-ho. Intenteu-ho. \\n\\n18 00:01:10,051 --> 00:01:13,736 Feu clic a «Modifica». Vegeu cap problema? Arregleu-nos-ho. Ho agraïrem de debò.\\n\\n19 00:01:14,151 --> 00:01:17,752 I... bé. Per molts anys, Viquipèdia.\\n\\n20 00:01:19,428 --> 00:01:26,49 Viquipèdia, 10 anys compartint la suma de tot el coneixement.\",\n", + " 'bytes': 2088,\n", + " 'sha1': 'qcpado1ah6j3xiy0pemr1cnq4k1nvpo',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48320076,\n", + " 'timestamp': '2011-01-15T23:01:30Z',\n", + " 'user': {'id': 48, 'text': 'Mormegil'},\n", + " 'page': {'id': 12709259,\n", + " 'title': 'WalesCalltoAction.ogv.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'rychlý překlad',\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 Ahoj, já jsem Jimmy Wales, zakladatel Wikipedie\\n\\n2 00:00:08,351 --> 00:00:11,487 a dnes slavíme 10. výročí Wikipedie.\\n\\n3 00:00:11,487 --> 00:00:16,467 Je těžké si představit, že je to 10 let od chvíle, co jsem poprvé Wikipedii editoval.\\n\\n4 00:00:16,467 --> 00:00:23,472 Ten první den si pamatuju. Kliknul jsem na „Editovat“, napsal jsem „Ahoj, světe“ a to byl začátek Wikipedie a všeho toho, co se od té doby stalo.\\n\\n5 00:00:23,472 --> 00:00:27,821 Dnes máme miliony článků ve stovkách jazyků.\\n\\n6 00:00:27,821 --> 00:00:33,1 V současnosti náš web navštíví asi 400 milionů lidí měsíčně\\n\\n7 00:00:33,1 --> 00:00:40,924 a to je prostě neuvěřitelná věc. Pokud se opravdu zamyslíte nad dopadem na naši kulturu, je to ohromující.\\n\\n8 00:00:41,032 --> 00:00:43,609 A to všechno díky vám. Chci poděkovat každému, kdo pomohl.\\n\\n9 00:00:43,610 --> 00:00:45,624 Chci poděkovat všem lidem, kteří Wikipedii editovali,\\n\\n10 00:00:45,624 --> 00:00:47,510 kteří přispěli do téhle skvělé sbírky vědomostí.\\n\\n11 00:00:45,624 --> 00:00:50,101 Chci poděkovat všem, kdo Wikipedii čtou,\\n\\n12 00:00:50,102 --> 00:00:52,800 kdo se zabývají znalostmi a nápady.\\n\\n13 00:00:52,801 --> 00:00:55,107 To je to, proč Wikipedii děláme. Děláme ji proto, abyste ji mohli číst.\\n\\n14 00:00:55,108 --> 00:00:57,406 A mám malou výzvu, drobnou prosbu všem.\\n\\n15 00:00:57,406 --> 00:01:04,009 Přestože máme miliony článků, přestože jsme ve stovkách jazyků,\\n\\n16 00:01:04,009 --> 00:01:07,462 pořád tam je spousta práce. Takže vy všichni,\\n\\n17 00:01:07,462 --> 00:01:10,051 pokud jste nikdy Wikipedii needitovali, zkuste to. Vyzkoušejte to.\\n\\n18 00:01:10,051 --> 00:01:13,736 Klikněte na „Editovat“. Vidíte nějaké chyby? Opravte je za nás. Opravdu to oceníme.\\n\\n19 00:01:14,151 --> 00:01:17,752 A… nuže: Všechno nejlepší, Wikipedie.\\n\\n20 00:01:19,428 --> 00:01:26,49 Wikipedie 10 let sdílení sumy veškerých znalostí.',\n", + " 'bytes': 2019,\n", + " 'sha1': 'ihfy670ow6cxuf6w9k1qw7nw8mn845m',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48459469,\n", + " 'timestamp': '2011-01-19T13:24:01Z',\n", + " 'user': {'id': 365698, 'text': 'Whym'},\n", + " 'page': {'id': 12734131,\n", + " 'title': 'WalesAnniversaryAddress.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'fix typo etc',\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 みなさんこんにちは。本日はウィキペディア10周年の集いにようこそお越しくださいました。\\n\\n2 00:00:10,510 --> 00:00:15,400 今日はこのコミュニティと世界の人々全員が興奮する日になると思います。\\n\\n3 00:00:15,410 --> 00:00:18,400 私は最近、ウィキペディアの歴史について考えることが多くなりました。\\n\\n4 00:00:18,410 --> 00:00:23,200 私たちがどこから来たのか、ここにたどりつくまでに何を乗り越えてきたのか。\\n\\n5 00:00:23,210 --> 00:00:28,100 私がはじめてウィキペディアを編集したときのことを思い出してみると、\\n\\n6 00:00:28,100 --> 00:00:30,100 それはウィキペディアができた日でもあるのですが、\\n\\n7 00:00:30,100 --> 00:00:32,700 「編集」を押して「Hello, world!」と書き込んで、\\n\\n8 00:00:32,750 --> 00:00:35,500 「保存」を押して、そこに現れたのがウィキペディアの最初の1ページです。\\n\\n9 00:00:35,600 --> 00:00:38,800 私は、このあと何が起こるんだろう、と思いました。もちろんその時は分からなかったわけですが。\\n\\n10 00:00:38,900 --> 00:00:42,400 それからこれまでの間すばらしい経験をさせてもらいました。\\n\\n11 00:00:42,500 --> 00:00:46,200 たとえば、世界中をめぐり、たくさんの方々に会う機会にめぐまれました。\\n\\n12 00:00:46,300 --> 00:00:49,950 とくに印象深いできごとがいくつかあります。\\n\\n13 00:00:50,050 --> 00:00:57,300 それはウィキメディア財団の最初の理事会のことです。パリで私を迎えてくれたのがフロランスでした。\\n\\n14 00:00:57,400 --> 00:01:00,800 フランス語版で活動していた彼と、英語版のアンジェラが最初の理事でした。\\n\\n15 00:01:00,900 --> 00:01:05,000 そこで私たちは財団を作るための議論を始めたのです。\\n\\n16 00:01:05,050 --> 00:01:08,800 このプロジェクトが動きつづけるためのお金をどうやって調達するか、どうやって成長していくか、\\n\\n17 00:01:08,800 --> 00:01:09,900 未来の姿はどんなものか。\\n\\n18 00:01:10,000 --> 00:01:15,800 もう一つは、ドイツ語版ウィキペディアンと一緒にベルリンの川の土手にいたときのことです。\\n\\n19 00:01:15,900 --> 00:01:21,400 そこで、10万件目の項目が書かれるのを待っていました。\\n\\n20 00:01:21,500 --> 00:01:24,800 そうやって外に出てコンピュータに向かって「リロード」を何回も押しながら\\n\\n21 00:01:25,000 --> 00:01:27,100 「これで9万9千9百9十7」などと言っていました。\\n\\n22 00:01:27,200 --> 00:01:30,500 どのウィキペディアもこういう風に興奮しながら、マイルストーンの瞬間を過ごしていると思います。\\n\\n23 00:01:30,600 --> 00:01:34,500 その瞬間が近づいてきて、さあ10万件目となったとき、\\n\\n24 00:01:34,600 --> 00:01:37,400 今度はどれが本当の10万件目かという議論が巻き起こりました。\\n\\n25 00:01:37,500 --> 00:01:39,700 これもウィキペディアンの愉しみのひとつですね。\\n\\n26 00:01:39,800 --> 00:01:46,600 私はこれまで世界各地をめぐる機会に恵まれました。インドのウィキペディアンにも会いましたし、\\n\\n27 00:01:46,700 --> 00:01:53,700 中国にも、南アメリカにも……本当に世界各地に行って、それぞれの場所でたくさんの人と話しました。\\n\\n28 00:01:53,800 --> 00:01:57,500 ウィキペディアの会で私がよく訊かれる質問の一つは\\n\\n29 00:01:57,600 --> 00:02:01,500 「私たちと他の場所のウィキペディアンはなにか違いますか」\\n\\n30 00:02:01,600 --> 00:02:04,500 「たとえば、ブラジルのウィキペディアンには違うところがありますか」という質問です。\\n\\n31 00:02:04,600 --> 00:02:06,600 私に言えるのは「たいした違いはない」ということだけです。\\n\\n32 00:02:06,700 --> 00:02:10,800 実際、私たちは世界中でほとんど同じようになっているのです。\\n\\n33 00:02:10,900 --> 00:02:13,500 まったく違う文化に属していて、\\n\\n34 00:02:13,600 --> 00:02:18,500 たくさんの違った種類の人々がいても、私たちは同じ体験を共有しているから、そして\\n\\n35 00:02:18,600 --> 00:02:20,700 同じことを乗り越えてきているからです。\\n\\n36 00:02:20,800 --> 00:02:23,900 リバートしなければならない荒らしはどこでも同じです。\\n\\n37 00:02:24,000 --> 00:02:25,500 どの言語版だろうと、\\n\\n38 00:02:25,500 --> 00:02:30,500 500項目のウィキだろうと50万項目のウィキだろうと、\\n\\n39 00:02:30,600 --> 00:02:34,000 300万項目だろうと、誰かがやってきて、\\n\\n40 00:02:34,000 --> 00:02:39,500 素晴らしい項目を汚い言葉ひとことに書き換えたりします。\\n\\n41 00:02:39,600 --> 00:02:42,700 もちろんそういう荒らしはリバートされてブロックされます。\\n\\n42 00:02:42,800 --> 00:02:46,600 それもウィキペディアンの仕事の一つですし、他にもおもしろいのは、\\n\\n43 00:02:46,600 --> 00:02:46,800 物事の名付け方というのがどこでも議論になることです。\\n\\n44 00:02:46,800 --> 00:02:53,200 とあるポーランドの川をなんと呼ぶか、これの名前をなんにするか、\\n\\n45 00:02:53,300 --> 00:02:56,300 あれの名前はなにか、どんな論争を考慮しなければならないか、\\n\\n46 00:02:56,300 --> 00:02:58,400 どういうやり方をとればうまくその先に進められるか、\\n\\n47 00:02:58,500 --> 00:03:02,500 私が見るかぎり、同じ種類の人々が同じ種類の仕事をしています。\\n\\n48 00:03:02,600 --> 00:03:07,500 それは同じ体験をしているからであり、同じ価値観、同じ理想を持っているからです。\\n\\n49 00:03:07,500 --> 00:03:12,600 私たちが目標としている百科事典は、この星の人間一人一人のため、\\n\\n50 00:03:12,700 --> 00:03:15,900 人々によって、慎重に、中立に書かれるべき、\\n\\n51 00:03:16,000 --> 00:03:19,800 正直に書かかれるべき百科事典です。自由な情報を届ける百科事典です。\\n\\n52 00:03:19,900 --> 00:03:23,800 そのことを思うと、私はいまでも最初の数日と同じくらい興奮します。\\n\\n53 00:03:23,800 --> 00:03:25,500 私たちには、これからやるべき仕事もたくさん残っています。\\n\\n54 00:03:25,600 --> 00:03:28,800 今日の機会にぜひ考えてみてほしいのは、私たちがこれまでどこにいたかということ、\\n\\n55 00:03:28,800 --> 00:03:32,800 これからどこに行こうとしているかということ、あとは、なんでしょうね、\\n\\n56 00:03:32,900 --> 00:03:33,500 興奮して分からなくなってしまってるみたいです。\\n\\n57 00:03:33,600 --> 00:03:37,800 とにかく、皆さんがしてくださったすべてのことに対してありがとうと言わせてください。\\n\\n58 00:03:37,900 --> 00:03:42,700 それと、今日ここに来てくださってありがとうございます。\\n\\n59 00:03:42,800 --> 00:03:48,600 もうひとつお願いがあります。集まりの中に知らない人を見つけたら声をかけて、\\n\\n60 00:03:48,600 --> 00:03:50,100 自己紹介して、話をしてみてください。\\n\\n61 00:03:50,100 --> 00:03:52,200 「どういう項目を編集してみたいですか?」というように。\\n\\n62 00:03:52,300 --> 00:03:54,500 そうやってコミュニティを作りましょう。\\n\\n63 00:03:54,500 --> 00:03:56,700 役に立つものを作るために集まるというのがコミュニティですから。\\n\\n64 00:03:56,800 --> 00:04:01,900 では改めて、本日はありがとうございます。そして誕生日おめでとう、ウィキペディア。\\n\\n65 00:04:03,200 --> 00:04:12,900 ウィキペディアが知識の総和を共有し続けて10年になりました。',\n", + " 'bytes': 8163,\n", + " 'sha1': 'jc9v8bi4iubs7i79q7vi2eohdgs5zxk',\n", + " 'parent_id': 48413407,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 421724023,\n", + " 'timestamp': '2020-05-26T04:48:24Z',\n", + " 'user': {'id': 7841508, 'text': 'Tmv'},\n", + " 'page': {'id': 12734574,\n", + " 'title': 'WalesCalltoAction.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 こんにちは、ウィキペディア創設者のジミー・ウェールズです。 \\n\\n2 00:00:08,351 --> 00:00:11,487 いま、私たちはウィキペディア10周年のお祝いをしています。\\n\\n3 00:00:11,487 --> 00:00:16,467 私が初めてウィキペディアを編集してからもう10年になるというのが信じられません。\\n\\n4 00:00:16,467 --> 00:00:23,472 その最初の日を思い出してみると、「編集」をクリックして「Hello world!」と書いて、それからウィキペディアとその後のすべてが始まったわけです。\\n\\n5 00:00:23,472 --> 00:00:27,821 いまここには数百の言語で書かれた、数百万の項目があります。\\n\\n6 00:00:27,821 --> 00:00:33,1 ひと月に訪れる人の数はおよそ4億人です。\\n\\n7 00:00:33,1 --> 00:00:40,924 それは気が遠くなるほどの数字です。私たちの文化にどれほどの影響を与えたかを考えれば圧倒されるばかりです。\\n\\n8 00:00:41,032 --> 00:00:43,609 すべては皆さんのおかげです。これまで助けていただいた方々皆さんにありがとうと言わせてください。\\n\\n9 00:00:43,610 --> 00:00:45,624 ウィキペディアを編集したことがある方々にも、\\n\\n10 00:00:45,624 --> 00:00:47,510 そうやってこの大きな知識ベースを育てた方々にも感謝します。\\n\\n11 00:00:45,624 --> 00:00:50,101 ウィキペディアを読む方々にも、\\n\\n12 00:00:50,102 --> 00:00:52,800 そうやって知識と知恵を活用する方々にも感謝します。\\n\\n13 00:00:52,801 --> 00:00:55,107 そうした方々のために、読者のために、私たちはウィキペディアを作っているわけですから。\\n\\n14 00:00:55,108 --> 00:00:57,406 でも今日は少し行動を呼びかけてみたいと思います。皆さんへのちょっとしたお願いです。\\n\\n15 00:00:57,406 --> 00:01:04,009 数百万の項目が揃ったといっても、数百の言語が揃ったといっても、\\n\\n16 00:01:04,009 --> 00:01:07,462 まだまだやるべきことはたくさんあります。ですから皆さんに来てほしいのです。\\n\\n17 00:01:07,462 --> 00:01:10,051 ウィキペディアを編集したことがなかったら、どうか一度、やってみてください。\\n\\n18 00:01:10,051 --> 00:01:13,736 「編集」をクリックしてみてください。間違いがあるでしょう? 直してみてください。みんなが喜びます。\\n\\n19 00:01:14,151 --> 00:01:17,752 それでは、誕生日おめでとう、ウィキペディア。\\n\\n20 00:01:19,428 --> 00:01:26,49 ウィキペディアが知識の総和を共有し続けて10年になりました。',\n", + " 'bytes': 2748,\n", + " 'sha1': '9u5vz8kpb8n8axdabh1545ckcp2shfb',\n", + " 'parent_id': 48414875,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48537014,\n", + " 'timestamp': '2011-01-21T21:15:12Z',\n", + " 'user': {'id': 6282, 'text': 'Longbow4u'},\n", + " 'page': {'id': 12751488,\n", + " 'title': 'WalesAnniversaryAddress.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'typos',\n", + " 'text': '1 00:00:07,000 --> 00:00:10,500 Hi alle zusammen und willkommen zum zehnjährigen Jubiläum von Wikipedia.\\n\\n2 00:00:10,510 --> 00:00:15,400 Es ist ein aufregender Tag für jeden in unserer Community und für alle rund um die Welt.\\n\\n3 00:00:15,410 --> 00:00:18,400 Ich habe in der letzten Zeit sehr viel über die Geschichte von Wikipedia nachgedacht\\n\\n4 00:00:18,410 --> 00:00:23,200 und wo wir herkommen und all die Dinge die wir durchgestanden haben, um dorthin zu gelangen, wo wir jetzt sind.\\n\\n5 00:00:23,210 --> 00:00:28,100 Ich erinnere mich an das erste Mal, an dem ich jemals Wikipedia bearbeitet habe,\\n\\n6 00:00:28,100 --> 00:00:30,100 was am ersten Tag war, an dem Wikipedia existierte,\\n\\n7 00:00:30,100 --> 00:00:32,700 und ich drückte \"Bearbeiten\", und tippte \"Hello, world!\",\\n\\n8 00:00:32,750 --> 00:00:35,500 und ich drückte \"Speichern\", und das waren die ersten Worte in Wikipedia.\\n\\n9 00:00:35,600 --> 00:00:38,800 Und ich dachte darüber nach, was noch kommen würde, und natürlich wußte ich wirklich nicht was noch kommen würde\\n\\n10 00:00:38,900 --> 00:00:42,400 aber während all der Jahre habe ich eine ganze Menge wunderbarer Erfahrungen gemacht\\n\\n11 00:00:42,500 --> 00:00:46,200 Ich hatte die Gelegenheit, in der Welt herumzukommen und viele von Euch persönlich zu treffen\\n\\n12 00:00:46,300 --> 00:00:49,950 Ich erinnere mich...an einige Dinge erinnere ich mich besonders gut.\\n\\n13 00:00:50,050 --> 00:00:57,300 Ich erinnere mich an die erste Verwaltungsratssitzung der Wikimedia Foundation, als ich mich in Paris mit Florence [Devouard] \\n\\n14 00:00:57,400 --> 00:01:00,800 von der französischen Wikipedia und Angela [Beesley] von der englischen Wikipedia traf, den ersten Verwaltungsratsmitgliedern\\n\\n15 00:01:00,900 --> 00:01:05,000 und wir hatten ein Treffen, an dem wir begannen, den Aufbau der Foundation zu diskutieren\\n\\n16 00:01:05,050 --> 00:01:08,800 wie wir das Geld bekommen würden um das Projekt am Laufen zu halten, und wie wir wachsen könnten\\n\\n17 00:01:08,800 --> 00:01:09,900 und was die Zukunft bringen würde.\\n\\n18 00:01:10,000 --> 00:01:15,800 Ich erinnere mich, am Ufer des Flusses in Berlin mit den deutschen Wikipedianern gesessen zu haben,\\n\\n19 00:01:15,900 --> 00:01:21,400 und wir darauf warteten, dass der 100.000ste Artikel geschrieben werden würde\\n\\n20 00:01:21,500 --> 00:01:24,800 während wir draußen saßen und immer wieder durch Drücken von \"Neu laden\" in unseren Computern nachschauten\\n\\n21 00:01:25,000 --> 00:01:27,100 \"Oh, es sind neunundneunzigtausendneunhundertundsiebenundneunzig\"\\n\\n22 00:01:27,200 --> 00:01:30,500 Ich nehme an jede Wikipedia ist durch diesen Meilensteinprozess gegangen, wenn Du aufgeregt bist\\n\\n23 00:01:30,600 --> 00:01:34,500 wenn Du nahe kommst und dann natürlich wenn wir zu 100.000 kommen\\n\\n24 00:01:34,600 --> 00:01:37,400 wir hatten einen großen Streit darüber welcher Artikeln nun tatsächlich der einhunderttausendste Artikel war\\n\\n25 00:01:37,500 --> 00:01:39,700 ein anderer großer Zeitvertreib von Wikipedianern\\n\\n26 00:01:39,800 --> 00:01:46,600 Und wie ich über die Jahre viele Gelegenheiten hatten, um die Welt zu reisen, ich traf Wikipedianer in Indien\\n\\n27 00:01:46,700 --> 00:01:53,700 in China, in Südamerika, wirklich um die ganze Welt, und wie ich so um die Welt reise und mit Leuten spreche\\n\\n28 00:01:53,800 --> 00:01:57,500 eine der häufigsten Fragen, die ich von Wikipediagruppen gestellt bekomme, ist\\n\\n29 00:01:57,600 --> 00:02:01,500 \"Wie findest Du uns verglichen mit anderen Wikipedianern um die Welt\\n\\n30 00:02:01,600 --> 00:02:04,500 was ist bei den brasilianischen Wikipedanern anders, zum Beispiel?\"\\n\\n31 00:02:04,600 --> 00:02:06,600 und darauf muss ich sagen \"Keine großen Unterschiede\"\\n\\n32 00:02:06,700 --> 00:02:10,800 Es stellt sich heraus wir sind alle ziemlich gleich auf der ganzen Welt\\n\\n33 00:02:10,900 --> 00:02:13,500 trotzdem wir aus sehr unterschiedlichen Kulturen kommen\\n\\n34 00:02:13,600 --> 00:02:18,500 viele unterschiedliche Arten von Leuten, aber wir teilen auch dieselben Erfahrungen\\n\\n35 00:02:18,600 --> 00:02:20,700 wir haben alle die gleichen Dinge erlebt\\n\\n36 00:02:20,800 --> 00:02:23,900 Ich glaube jeder hat die gleichen Formen von Vandalismus revertiert.\\n\\n37 00:02:24,000 --> 00:02:25,500 Es ändert sich nichts durch die Sprache, in der Du arbeitest\\n\\n38 00:02:25,500 --> 00:02:30,500 es ist nicht wichtig, ob Dein Wiki fünfhundert Artikel oder fünfhunderttausend Artikel hat\\n\\n39 00:02:30,600 --> 00:02:34,000 oder drei Millionen, du wirst immer noch jemanden haben der vorbeikommt\\n\\n40 00:02:34,000 --> 00:02:39,500 und einen ganzen wundervollen Artikel mit zwei Schimpfwörtern ersetzt oder so etwas Ähnliches.\\n\\n41 00:02:39,600 --> 00:02:42,700 Und, natürlich, Du revertierst das einfach und sperrst den Vandalen, und das Ganze.\\n\\n42 00:02:42,800 --> 00:02:46,600 Das ist alles Teil davon, Wikipedianer zu sein, wir haben alle wirklich interessante Gespräche gehabt\\n\\n43 00:02:46,600 --> 00:02:46,800 über die Bezeichnungskonventionen von Dingen\\n\\n44 00:02:46,800 --> 00:02:53,200 wie wir einen Fluss in Polen nennen, und wie wir dieses benennen\\n\\n45 00:02:53,300 --> 00:02:56,300 wie wir jenes benennen, was die Kontroversen sind, die wir lösen müssen\\n\\n46 00:02:56,300 --> 00:02:58,400 und was der sinnvollste Weg vorwärts ist.\\n\\n47 00:02:58,500 --> 00:03:02,500 So, überall auf der Welt treffe ich die gleiche Sorte Leute, die die gleiche Arbeit machen\\n\\n48 00:03:02,600 --> 00:03:07,500 weil wir dieselben Erfahrungen geteilt haben. Und wir teilen auch die gleichen Werte, die gleichen Ideale\\n\\n49 00:03:07,500 --> 00:03:12,600 die Dinge, für die wir arbeiten - eine freie Enzyklopädie für jeden auf diesem Planeten\\n\\n50 00:03:12,700 --> 00:03:15,900 geschrieben von wirklich wundervollen nachdenklichen Leuten, die versuchen, neutral zu sein\\n\\n51 00:03:16,000 --> 00:03:19,800 versuchen, aufrichtig zu sein, versuchen, freie Information zu bringen.\\n\\n52 00:03:19,900 --> 00:03:23,800 Es ist immernoch genauso aufregend für mich wie ganz am Anfang in den ersten Tagen, als es begann.\\n\\n53 00:03:23,800 --> 00:03:25,500 Wir haben immernoch eine ganze Menge Arbeit übrig, die getan werden muss.\\n\\n54 00:03:25,600 --> 00:03:28,800 Heute ist ein großartiger Augenblick darüber nachzudenken wo wir gewesen sind\\n\\n55 00:03:28,800 --> 00:03:32,800 darüber nachzudenken wo wir hingehen, und, wow, ich weiß nicht\\n\\n56 00:03:32,900 --> 00:03:33,500 Du siehst wie aufgeregt ich werde\\n\\n57 00:03:33,600 --> 00:03:37,800 Ich möchte einfach nur sagen: Vielen Dank für all die Arbeit die Ihr geleistet habt\\n\\n58 00:03:37,900 --> 00:03:42,700 vielen Dank, heute hierher zu kommen um andere Leute zu treffen.\\n\\n59 00:03:42,800 --> 00:03:48,600 Tut mir einen Gefallen und findet jemanden in der Menge, den ihr vorher noch nie persönlich getroffen habt\\n\\n60 00:03:48,600 --> 00:03:50,100 stellt Euch vor und sagt:\\n\\n61 00:03:50,100 --> 00:03:52,200 \"Hey, was editierst Du am liebsten?\"\\n\\n62 00:03:52,300 --> 00:03:54,500 Lasst uns diese Community aufbauen\\n\\n63 00:03:54,500 --> 00:03:56,700 es geht alles um ein paar Freunde die etwas Nützliches machen.\\n\\n64 00:03:56,800 --> 00:04:01,900 So, vielen Dank nochmals und herzlichen Glückwunsch zum Geburtstag, Wikipedia.\\n\\n<!--65 00:04:03,200 -*-> 00:04:12,900 Wikipedia, 10 Jahre des Teilens der Summe allen Wissens.-->',\n", + " 'bytes': 7288,\n", + " 'sha1': '0odiusf2gz0vdi3am8yuoxz11zfl6xc',\n", + " 'parent_id': 48478308,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48504415,\n", + " 'timestamp': '2011-01-20T19:01:50Z',\n", + " 'user': {'id': 1436472, 'text': 'Anikroo'},\n", + " 'page': {'id': 12758967,\n", + " 'title': 'WalesCalltoAction.ogv.fa.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'add persian',\n", + " 'text': '1 00:00:05,408 --> 00:00:08,351 درود، من جیمی ولز مؤسس ویکی پدیا هستم\\n\\n2 00:00:08,351 --> 00:00:11,487 و امروز ما دهمین سالروز ویکی پدیا را جشن می گیریم.\\n\\n3 00:00:11,487 --> 00:00:16,467 تصور این که ده سال از زمان نخستین ویرایش من در ویکی پدیا گذشته، دشوار است.\\n\\n4 00:00:16,467 --> 00:00:23,472 من آن روز را به یاد دارم. آن روز من روی \"ویرایش\" کلیک کردم و نوشتم \"سلام دنیا\" و این آغاز ویکی پدیا و همه\\u200cی چیزهای پس از آن بود.\\n\\n5 00:00:23,472 --> 00:00:27,821 امروز ما میلیون\\u200cها مقاله به صدها زبان داریم.\\n\\n6 00:00:27,821 --> 00:00:33,1 این روزها نزدیک به 400 میلیون نفر در ماه از وب\\u200cسایت بازدید می\\u200cکنند،\\n\\n7 00:00:33,1 --> 00:00:40,924 و این چیز شگفت آوری است که رخ داده است. اگر شما به تاثیر آن بر فرهنگ ما بیندیشید، آن گیج کننده است.\\n\\n8 00:00:41,032 --> 00:00:43,609 و همه\\u200cی این با لطف شما بوده است. من از هر کسی که کمک کرد تشکر می\\u200cکنم.\\n\\n9 00:00:43,610 --> 00:00:45,624 من از تمام کسانی که ویکی\\u200cپدیا را ویرایش کرده\\u200cاند سپاسگزاری می\\u200cکنم\\n\\n10 00:00:45,624 --> 00:00:47,510 آن\\u200cهایی که به این پایگاه بزرگ دانش یاری رساندند.\\n\\n11 00:00:45,624 --> 00:00:50,101 من می\\u200cخواهم از تمام کسانی که ویکی\\u200cپدیا را می\\u200cخوانند تشکر کنم،\\n\\n12 00:00:50,102 --> 00:00:52,800 افرادی که واقعاً با ایده\\u200cها و دانش تعامل دارند.\\n\\n13 00:00:52,801 --> 00:00:55,107 همان چیزی که ما ویکی\\u200cپدیا را برای آن ساختیم. آن را ساختیم تا خوانده شود.\\n\\n14 00:00:55,108 --> 00:00:57,406 و من یک گفته\\u200cی کوچک برای عمل به آن دارم، یک خواسته\\u200cی کوچک از همه.\\n\\n15 00:00:57,406 --> 00:01:04,009 ... اگرچه ما میلیون\\u200cها مقاله داریم، اگرچه به صدها زبان فعالیت می\\u200cکنیم\\n\\n16 00:01:04,009 --> 00:01:07,462 هنوز کارهای زیادی برای انجام دادن هست. بنابراین من از همه می\\u200cخواهم\\n\\n17 00:01:07,462 --> 00:01:10,051 اگر تا کنون هیچ\\u200cگاه ویکی پدیا را ویرایش نکرده\\u200cاید، این کار را امتحان کنید.\\n\\n18 00:01:10,051 --> 00:01:13,736 بر روی \"ویرایش\" کلیک کنید. مشکلی در مقالات می\\u200cبینید؟ آن را برطرف کنید. ما واقعاً این کار را ارج می\\u200cنهیم.\\n\\n19 00:01:14,151 --> 00:01:17,752 و ... خوب. زادروزت مبارک ویکی\\u200cپدیا.\\n\\n20 00:01:19,428 --> 00:01:26,49 ویکی\\u200cپدیا، ۱۰ سال به اشتراک گذاشتن چکیده\\u200cای از همه\\u200cی دانش\\u200cها',\n", + " 'bytes': 3095,\n", + " 'sha1': 'adiynvxr2eb09axgfs2p3i7pxau7ojp',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48509690,\n", + " 'timestamp': '2011-01-20T21:49:23Z',\n", + " 'user': {'id': 212748, 'text': 'Beria'},\n", + " 'page': {'id': 12760474,\n", + " 'title': 'Great Feeling.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'ops :D',\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nErr, não, eu não tenho superpoderes.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nDe todo. Não.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nPodes certamente fazê-lo também.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nEu apertei o botão,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\ne salvei o texto,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWooooo!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nFoi…. excitante.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nVocê simplesmente modifica a Wikipédia,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nsimplesmente adicionas a tua própria contribuição para a Wikipédia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nEu li um artigo no \"Guardian\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nsobre esta enciclopédia on-line\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\npara a qual todos podiam contribuir\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\ne disse: \"Wow!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Talvez eu também possa contribuir!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nEu editei a primeira vez\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\ne acredito que fiquei viciado.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nEu não recebo nada por isso\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nEu simplesmente o faço por, você sabe,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nter algo a fazer nos meus tempos livres, é isto.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nPodes começar a editar por uma ideia,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nporque acreditas nisto,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nmas acabas por ter amigos,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nacabas por ter amores,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nacabas por ter essas maravilhosas discussões,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nacabas por ter novas ideias,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nvocê acaba com novos livros para escrever...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nVocê não está a escrever o artigo sozinho.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nEscreves uma parte,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\ne alguém aparece e diz:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hey, Eu tenho mais!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\ne juntos vocês podem criar\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nartigos que serão muitos maiores,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\ndo que aqueles que escreverias sozinho.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nE então tens sucesso.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nVocê sempre vai dizer: “Ok, o que eu fiz foi bem-sucedido.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\ne isso é maravilhoso.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nIsto é óptimo,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nporque editar é um sensação maravilhosa.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nToda as vezes que o fazes.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nEu tenho que dizer,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nquando eu li sobre a Wikipédia,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nEu decidi\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Este pode ser o lugar certo para mim\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nE era.',\n", + " 'bytes': 2840,\n", + " 'sha1': 'igpo0uakyjdyaccfry0d4ltyuzb84k5',\n", + " 'parent_id': 48509664,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48538211,\n", + " 'timestamp': '2011-01-21T22:01:09Z',\n", + " 'user': {'id': 328757, 'text': 'Koraiem'},\n", + " 'page': {'id': 12769138,\n", + " 'title': 'Nice People MEDIUM.ogv.ar.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Created Arabic Translation for [[File:Nice_People_MEDIUM.ogv]]',\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 لو لديك علم ما، لماذا تبقيه لنفسك؟\\n\\n2 00:00:04,249 --> 00:00:07,174 أعتقد انه يجب عليك مشاركته مع الآخرين\\n\\n3 00:00:07,174 --> 00:00:10,031 أنا معجب بأن هدف هذا الموقع\\n\\n4 00:00:10,031 --> 00:00:15,325 لم يقل \"موقع\"، ولم يقل \"ويكي\"، ولم يقل \"إنترنت\"،\\n\\n5 00:00:15,325 --> 00:00:17,113 بل قال فقط \"معرفة مجانية\\n\\n6 00:00:17,113 --> 00:00:19,411 للجميع، كل بلغتهم\".\\n\\n7 00:00:19,411 --> 00:00:21,548 عندما يكون مجتمعا ما مفتوحا،\\n\\n8 00:00:21,548 --> 00:00:23,428 يصنعه فعلا أولئك الذين\\n\\n9 00:00:23,428 --> 00:00:25,936 يجرؤن على قبول الدعوة.\\n\\n10 00:00:25,936 --> 00:00:27,956 وهذه دعوة.\\n\\n11 00:00:27,956 --> 00:00:29,535 بالطبع لا يجب عليك قبول الدعوة،\\n\\n12 00:00:29,535 --> 00:00:31,439 ولكن ثمة دعوة هناك\\n\\n13 00:00:31,439 --> 00:00:32,879 في زِر \"تعديل\" تقول\\n\\n14 00:00:32,879 --> 00:00:37,709 \"تعال، كن جزء، ما تعرفه لا يقل أهمية عن ما نعرفه\". \\n\\n15 00:00:37,709 --> 00:00:40,472 أنت تعلم أنك تمنح علما للناس،\\n\\n16 00:00:40,472 --> 00:00:43,026 وليس فقط أيُ ناس بل للعالم أجمع.\\n\\n17 00:00:43,026 --> 00:00:47,113 أنا أشعر بالروعة من خلال المساهمة في موسوعة\\n\\n18 00:00:47,113 --> 00:00:51,455 متاحة افتراضيا للجميع في العالم اجمع.\\n\\n19 00:00:51,455 --> 00:00:55,286 أنت تجعل نفسك سعيدا فقط عن طريق مساعدة الأخرين، هذا كل شئ.\\n\\n20 00:00:55,286 --> 00:00:57,283 أنا أساعد الناس لأني أريد أن أكون سعيدا.\\n\\n21 00:00:57,283 --> 00:01:00,650 أنت تعمل سوياً مع العديد من الناس\\n\\n22 00:01:00,650 --> 00:01:04,156 من ثقافات عديدة مختلفة، وهذا ببساطة رائع.\\n\\n23 00:01:04,156 --> 00:01:06,501 المهم في الأمر، بالنسبة لي، ما يدور حوله كل شئ\\n\\n24 00:01:06,501 --> 00:01:08,754 هو الناس شديدة الطيبة.\\n\\n25 00:01:08,754 --> 00:01:10,890 أنت تعرف، كلنا لدينا أولئك الناس الطيبون\\n\\n26 00:01:10,890 --> 00:01:14,466 الذين [يأتون] أون لاين ويكتبون،\\n\\n27 00:01:14,466 --> 00:01:16,231 وبدلا من الصراخ في بعضهم البعض\\n\\n28 00:01:16,231 --> 00:01:18,437 أو الدخول في حوار\\n\\n29 00:01:18,437 --> 00:01:20,875 أو قراءة أخبار النميمة أو أي شئ،\\n\\n30 00:01:20,875 --> 00:01:22,198 يحاولون أن يقوموا ببناء شئ ما\\n\\n31 00:01:22,198 --> 00:01:23,707 سيجده الجميع مفيدا لهم.\\n\\n32 00:01:23,707 --> 00:01:26,029 أعتقد أن هذا رائع، ناس طيبون حقا.',\n", + " 'bytes': 2928,\n", + " 'sha1': 'm10b05eihtwtouzasberw5z8zwiuzep',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 172917636,\n", + " 'timestamp': '2015-09-22T16:00:39Z',\n", + " 'user': {'id': 996385, 'text': 'KOKUYO'},\n", + " 'page': {'id': 12820900,\n", + " 'title': 'Boldness and links tutorial.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"0\\n00:00:00,333 --> 00:00:04,504\\n這是一段關於維基格式的短片\\n\\n1\\n00:00:04,504 --> 00:00:06,606\\n這段片會介紹如何令文字變成粗體\\n\\n2\\n00:00:06,606 --> 00:00:08,908\\n及連結至其他維基上的頁面\\n\\n3\\n00:00:08,908 --> 00:00:11,845\\n你可以在自己個人的沙盒中\\n\\n4\\n00:00:11,845 --> 00:00:14,514\\n試試如何去做這些內容\\n\\n5\\n00:00:14,514 --> 00:00:17,083\\n如果你沒有一個沙盒頁面\\n\\n6\\n00:00:17,083 --> 00:00:20,587\\n輸入「Help:沙盒入門」\\n\\n7\\n00:00:20,587 --> 00:00:22,956\\n在搜索箱中\\n\\n8\\n00:00:22,956 --> 00:00:26,259\\n這個頁面指導了你如何去建立一個沙盒\\n\\n9\\n00:00:26,259 --> 00:00:31,097\\n要開始,在你的沙盒按「編輯」\\n\\n10\\n00:00:31,097 --> 00:00:33,266\\n這會打開編輯頁面\\n\\n11\\n00:00:33,266 --> 00:00:35,802\\n這就是你可以進行編輯的地方\\n\\n12\\n00:00:35,802 --> 00:00:38,171\\n我們由基礎開始\\n\\n13\\n00:00:38,171 --> 00:00:39,739\\n粗體\\n\\n14\\n00:00:39,739 --> 00:00:44,092\\n粗體在大多數條目中會在頭部出現\\n\\n15\\n00:00:44,092 --> 00:00:46,146\\n以標明條目的主題。\\n\\n16\\n00:00:46,146 --> 00:00:48,882\\n所以這是你需要學習的第一件東西\\n\\n17\\n00:00:48,882 --> 00:00:50,784\\n你可以令文字變粗\\n\\n18\\n00:00:50,784 --> 00:00:52,652\\n只需使用你的滑鼠並把文字高亮\\n\\n19\\n00:00:52,652 --> 00:00:54,854\\n之後點「B」按鈕(英文版本)或「A」按鈕(中文版本)\\n\\n20\\n00:00:54,854 --> 00:00:56,489\\n它放了在編輯工具列\\n\\n21\\n00:00:56,489 --> 00:00:59,325\\n這會增加三個 '\\n\\n22\\n00:00:59,325 --> 00:01:01,695\\n在你要粗體的文字前有三個 '\\n\\n23\\n00:01:01,695 --> 00:01:04,764\\n後面亦有三個 '\\n\\n24\\n00:01:04,764 --> 00:01:06,866\\n看看它是如何的\\n\\n25\\n00:01:06,866 --> 00:01:09,135\\n拉到編輯頁面的下方\\n\\n26\\n00:01:09,135 --> 00:01:12,772\\n輸入一個編輯簡介\\n\\n27\\n00:01:12,772 --> 00:01:14,741\\n並點「儲存頁面」\\n\\n28\\n00:01:14,741 --> 00:01:16,081\\n這是一個好的習慣\\n\\n29\\n00:01:16,081 --> 00:01:19,946\\n如果你能每次編輯都留下編輯簡介\\n\\n30\\n00:01:19,946 --> 00:01:22,382\\n因為這可以令你知道你做過甚麼的編輯\\n\\n31\\n00:01:22,382 --> 00:01:25,485\\n及更方便地與他人合作編輯\\n\\n32\\n00:01:25,485 --> 00:01:30,019\\n你的沙盒上應該已經有些粗體文字\\n\\n33\\n00:01:30,019 --> 00:01:33,526\\n按「編輯」按鈕繼續\\n\\n34\\n00:01:33,526 --> 00:01:36,463\\n這次,我們會加入連結\\n\\n35\\n00:01:36,463 --> 00:01:41,167\\n這是由維基百科的一個頁面連結到\\n\\n36\\n00:01:41,167 --> 00:01:42,435\\n另一個頁面\\n\\n37\\n00:01:42,435 --> 00:01:44,571\\n在「bold」字上嘗試吧\\n\\n38\\n00:01:44,571 --> 00:01:47,024\\n要加入維基連結\\n\\n39\\n00:01:47,024 --> 00:01:48,742\\n把該字高亮\\n\\n40\\n00:01:48,742 --> 00:01:51,544\\n在編輯工具列中按「連結」按鈕\\n\\n41\\n00:01:51,544 --> 00:01:55,115\\n這會開啟加入連結信息框\\n\\n42\\n00:01:55,115 --> 00:01:57,035\\n點「加入連結」按鈕\\n\\n43\\n00:01:57,035 --> 00:02:00,186\\n會加入連結的代碼\\n\\n44\\n00:02:00,186 --> 00:02:02,422\\n兩個 [\\n\\n45\\n00:02:02,422 --> 00:02:05,125\\n接著是你的連結\\n\\n46\\n00:02:05,125 --> 00:02:06,086\\n(這個示範:「bold」)\\n\\n47\\n00:02:06,086 --> 00:02:10,003\\n接著有兩個 ] 結束。\\n\\n48\\n00:02:10,003 --> 00:02:12,699\\n現在,輸入編輯簡介並提交編輯\\n\\n49\\n00:02:12,699 --> 00:02:15,702\\n「bold」這個字變成藍色\\n\\n50\\n00:02:15,702 --> 00:02:18,505\\n及連結至條目「bold」\\n\\n51\\n00:02:18,505 --> 00:02:20,473\\n這個頁面其實\\n\\n52\\n00:02:20,473 --> 00:02:23,243\\n是連結至「Emphasis (typography)」\\n\\n53\\n00:02:23,243 --> 00:02:25,478\\n但這個給了一個重定向方便讀者使用\\n\\n54\\n00:02:25,478 --> 00:02:29,416\\n但是如果這不是你想連結到的頁面,該如何?\\n\\n55\\n00:02:29,416 --> 00:02:31,885\\n你是解「Boldness」\\n\\n56\\n00:02:31,885 --> 00:02:33,853\\n即being shy的相反嗎?\\n\\n57\\n00:02:33,853 --> 00:02:36,056\\n再次編輯頁面吧\\n\\n58\\n00:02:36,056 --> 00:02:38,792\\n這次在插入連結信息框\\n\\n59\\n00:02:38,792 --> 00:02:41,728\\n將「bold」改為「boldness」\\n\\n60\\n00:02:41,728 --> 00:02:44,397\\n(在「目標頁面或連結」一項)。\\n\\n61\\n00:02:44,397 --> 00:02:47,667\\n現在,點「插入連結」按鈕\\n\\n62\\n00:02:47,667 --> 00:02:49,836\\n就創建了一個連結了\\n\\n63\\n00:02:49,836 --> 00:02:52,205\\n這就是維基代碼了\\n\\n64\\n00:02:52,205 --> 00:02:56,142\\n這就是如果要連結到與顯示文字不同的編輯代碼\\n\\n65\\n00:02:56,142 --> 00:02:59,679\\n這包括兩個 [\\n\\n66\\n00:02:59,679 --> 00:03:00,098\\n像一個連結\\n\\n67\\n00:03:00,098 --> 00:03:03,917\\n接著是你想連結到的頁面\\n\\n68\\n00:03:03,917 --> 00:03:05,352\\nboldness\\n\\n69\\n00:03:05,352 --> 00:03:06,953\\n之後,一個 |\\n\\n70\\n00:03:06,953 --> 00:03:10,156\\n你可以用shift + \\\\插入\\n\\n71\\n00:03:10,156 --> 00:03:12,192\\n在大部份的鍵盤中\\n\\n72\\n00:03:12,192 --> 00:03:14,227\\n這是條目名\\n\\n73\\n00:03:14,227 --> 00:03:16,629\\n之後是你想顯示的文字\\n\\n74\\n00:03:16,629 --> 00:03:17,864\\nbold\\n\\n75\\n00:03:17,864 --> 00:03:20,467\\n再加兩個 ] 結束。\\n\\n76\\n00:03:20,467 --> 00:03:24,337\\n這是一般的連結\\n\\n77\\n00:03:24,337 --> 00:03:26,005\\n如果你保存頁面\\n\\n78\\n00:03:26,005 --> 00:03:27,674\\n你可以看到結果\\n\\n79\\n00:03:27,674 --> 00:03:29,442\\n連結寫了「bold」\\n\\n80\\n00:03:29,442 --> 00:03:30,844\\n如果你點入去\\n\\n81\\n00:03:30,844 --> 00:03:33,279\\n你可以訪問條目「Boldness」\\n\\n82\\n00:03:33,279 --> 00:03:35,248\\n最後,請積極參與編輯工作!\",\n", + " 'bytes': 5378,\n", + " 'sha1': 'dst3yud6zpvfmbtlkq3wh8yshhtuf4j',\n", + " 'parent_id': 48781681,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48843043,\n", + " 'timestamp': '2011-01-29T01:32:49Z',\n", + " 'user': {'id': 970420, 'text': 'Mono'},\n", + " 'page': {'id': 12841760,\n", + " 'title': 'Footage of Egyptian protests from Al Jazeera office.ogv.undefined.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Edited subtitles using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': \"1\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nWe are standing in what is called the Abdr Minhrod square.\\n\\n2\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nIt's one of the busier squares here in the heart of Cairo, just adjacent to Liberation Square. \\n\\n3\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nIt houses, from where we are just a few short kilometers away,\\n\\n4\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthe Ministry of Foreign Affairs, the Ministry of Information, Egypt's national museum, some of Egypt's \\n\\n5\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nbiggest hotel chains, so this is a very, very significant part of the city.\\n\\n6\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nAnd that bridge we keep talking about–the October 6 bridge–one of the most important thouroughways that \\n\\n7\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ncuts all across Cairo from east to west. You can see traffic on it is moving very, very slowly; the vast \\n\\n8\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nmajority of the people right now are underneath it. And what seems to have happened over the past few hours \\n\\n9\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand actually what you're seeing right there–I'm going to have our cameraman go down–you can see people \\n\\n10\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nbreaking into the barricades of one of the hotels. That hotel where you're seeing people run across is \\n\\n11\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthe Hilton hotel. There are a lot of tourists that have been looking out their window watching what's \\n\\n12\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nhappening. Now what you're seeing the protestors are being dispersed using tear gas. They've managed \\n\\n13\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nto break through the barricade of the hotel. They're trying to find refuge at least somewhere there. \\n\\n14\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nYou can see more tear gas being fired at the protestors and more of them are coming our way.\\n\\n15\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n<background noise; narrator, cameraman speaking inaudibly>\\n\\n16\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nYeah, yeah. Sorry come on...it's just there are more tear gas canisters being fired in the direction \\n\\n17\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nof our building actually toward the protestors and you can see it. And unfortunately, cause the tear \\n\\n18\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ngas is kind of...uh...we're just going to...\\n\\n19\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nJust one second, stay with us.\\n\\n20\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nThere, what you're seeing right now are pictures of the tear gas. We're going to switch out our cameraman\",\n", + " 'bytes': 2408,\n", + " 'sha1': 'o3011wefxk25gpgtz9qwr07uyppszl8',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 180899487,\n", + " 'timestamp': '2015-12-03T14:56:08Z',\n", + " 'user': {'id': 1267425, 'text': 'Sima shimony'},\n", + " 'page': {'id': 12842009,\n", + " 'title': 'The State of Wikipedia by JESS3.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:01,114 --> 00:00:05,414 (The State of Wikipedia)\\n\\n<!--1.1 00:00:05,414 --*> 00:00:06,414 (Speaker: Jimmy Wales, founder of Wikipedia.) --> \\n\\n2 00:00:06,414 --> 00:00:08,000 (Wikipedia, The Free Encyclopedia)\\n\\n3 00:00:08,000 --> 00:00:11,100 Wikipedia is one of the most important websites on the Internet today\\n\\n4 00:00:11,100 --> 00:00:16,000 but you might be surprised to learn it began as a side project of another online encyclopedia.\\n\\n5 00:00:16,000 --> 00:00:22,300 That was called Nupedia, to be a traditional encyclopedia written by experts\\n\\n6 00:00:22,300 --> 00:00:27,500 free and online - but only one person had final publishing authority and it wasn\\'t quite taking off.\\n\\n7 00:00:30,000 --> 00:00:36,300 As the founder of Nupedia, I led the group to establish a farm team of sorts for future Nupedia articles.\\n\\n8 00:00:36,300 --> 00:00:42,500 We used a new software platform to make collaboration easy - the wiki - Wikipedia.\\n\\n9 00:00:45,000 --> 00:00:48,500 It happened to be the perfect way to write many pages very quickly.\\n\\n10 00:00:48,500 --> 00:00:52,900 Soon enough, Nupedia couldn\\'t keep up and Wikipedia took center stage.\\n\\n11 00:00:53,100 --> 00:00:58,700 We were creating not just a free content encyclopedia but a \"free encyclopedia that anyone can edit.\" \\n\\n12 00:00:58,800 --> 00:01:04,500 Other language editions appeared quickly - over 270 at last count\\n\\n13 00:01,04,600 --> 00:01:08,900 and it was soon followed by sister projects like Wikisource, Wikinews and Wiktionary.\\n\\n14 00:01:08,900 --> 00:01:15,200 In 2003, I created the Wikimedia Foundation to ensure that Wikipedia could keep up with its own growth.\\n\\n15 00:01:15,200 --> 00:01:18,800 Wikipedia gets almost 400 million visitors every month\\n\\n16 00:01:18,900 --> 00:01:22,200 and the list of sites visited more often is very short and very famous.\\n\\n17 00:01:22,300 --> 00:01:27,950 Wikipedia celebrates its tenth anniversary in January 2011\\n\\n18 00:01:28,000 --> 00:01:31,500 and in these ten years has become one of the most popular websites in the world.\\n\\n19 00:01:31,500 --> 00:01:37,400 I still lead the community and the Wikimedia Foundation helps us to make Wikipedia what it is today.\\n\\n20 00:01:37,500 --> 00:01:39,300 Who does edit Wikipedia?\\n\\n21 00:01:39,350 --> 00:01:44,000 Over time, as many as 1.2 million people have contributed to Wikipedia.\\n\\n22 00:01:44,000 --> 00:01:49,990 As of 2010, there are more than 11 million monthly edits to all Wikipedias in all languages.\\n\\n23 00:01:50,000 --> 00:01:55,200 According to one survey, we have about twice the proportion of Ph.Ds compared to the general public.\\n\\n24 00:01:55,300 --> 00:02:03,200 On the English Wikipedia almost 50% have no religion and 14.6% of French editors claim to believe in Pastafarianism.\\n\\n25 00:02:03,300 --> 00:02:06,100 It would be fair to say that most Wikipedians are not average.\\n\\n26 00:02:06,200 --> 00:02:11,300 One reason, maybe, is that editing a single page is easy, but getting heavily involved is harder.\\n\\n27 00:02:11,400 --> 00:02:16,400 The community is defined by more than 200 combined policies, guidelines and essays\\n\\n28 00:02:16,400 --> 00:02:20,100 to say nothing of the discussions and reviews, committees and noticeboards\\n\\n29 00:02:20,100 --> 00:02:21,400 WikiProjects and more.\\n\\n30 00:02:21,500 --> 00:02:25,350 All the site content is decided by Wikipedia\\'s volunteer contributors.\\n\\n31 00:02:25,350 --> 00:02:28,900 The Wikimedia Foundation has no editorial role whatsoever.\\n\\n32 00:02:29,800 --> 00:02:33,400 The Foundation\\'s job is to keep the servers running and the lights on, but there\\'s more to it than that.\\n\\n33 00:02:33,400 --> 00:02:36,300 The Foundation is also growing Wikipedia\\'s presence worldwide\\n\\n34 00:02:36,400 --> 00:02:43,200 more data centers to speed up Wikipedia worldwide and even bringing its first office outside of the United States to India.\\n\\n35 00:02:43,300 --> 00:02:46,800 Wikipedia is already very popular in the West and in the North.\\n\\n36 00:02:46,800 --> 00:02:50,700 A new challenge is going to be making Wikipedia available to the developing world, as well.\\n\\n37 00:02:50,750 --> 00:02:54,500 The Foundation is a charity and runs entirely on donations\\n\\n38 00:02:54,600 --> 00:03:00,200 some from corporations and institutions, but the vast majority from its millions of editors and readers.\\n\\n39 00:03:00,200 --> 00:03:05,300 It\\'s incredible what has been accomplished already, but Wikipedia is far from done.\\n\\n40 00:03:05,300 --> 00:03:09,500 As any reader knows, some articles are very good, but some are not.\\n\\n41 00:03:09,600 --> 00:03:11,200 Wikipedia still needs a lot of work.\\n\\n42 00:03:11,300 --> 00:03:13,500 Yet, this is a new challenge.\\n\\n43 00:03:13,500 --> 00:03:17,400 Not just building an encyclopedia from scratch, but making it better\\n\\n44 00:03:17,400 --> 00:03:22,500 more accurate, more citations. Not just broad, but deep.\\n\\n45 00:03:22,650 --> 00:03:27,000 There\\'s never been anything like Wikipedia before, and its future horizon is very, very long.\\n\\n46 00:03:27,100 --> 00:03:31,300 As Wikipedia enters its second decade, it\\'s up to all of us to make sure it gets even better.\\n\\n47 00:03:27,300 --> 00:03:35,000 (Wikipedia, The Free Encyclopedia)\\n\\n<!-- 47.1 00:03:36,200 --*> 00:03:37,200 (Narrated by Jimmy Wales, Founder of Wikipedia.) -->\\n\\n<!-- 47.2 00:03:37,200 --*> 00:03:38,200 (Directed by Jesse Thomas.) -->\\n\\n48 00:03:39,000 --> 00:03:41,500 (A JESS3 Production)',\n", + " 'bytes': 5419,\n", + " 'sha1': 'nt4p588zt41kd3g7kbrkrvnu4nt5n1a',\n", + " 'parent_id': 180899334,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48848269,\n", + " 'timestamp': '2011-01-29T05:57:34Z',\n", + " 'user': {'id': 1177211, 'text': 'Waihorace'},\n", + " 'page': {'id': 12842581,\n", + " 'title': 'Createaccount.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:06,000 --> 00:00:09,300 First, go to en.wikipedia.org 2 00:00:09,300 --> 00:00:13,000 Then, click on the \"Log in / Create Account\" in the top right hand c...\\'',\n", + " 'text': '1 00:00:06,000 --> 00:00:09,300 First, go to en.wikipedia.org\\n\\n2 00:00:09,300 --> 00:00:13,000 Then, click on the \"Log in / Create Account\" in the top right hand corner.\\n\\n3 00:00:13,000 --> 00:00:18,200 Click on \"Don\\'t have an account? Create one.\"\\n\\n4 00:00:18,200 --> 00:00:22,300 Go down to the page\\n\\n5 00:00:22,400 --> 00:00:23,500 And type in the word\\n\\n6 00:00:23,500 --> 00:00:26,700 Then, type in the username you want to use, \\n\\n7 00:00:26,700 --> 00:00:30,900 the password you would like, and the optional email address.\\n\\n8 00:00:31,000 --> 00:00:33,600 After that, click \"Create Account\".\\n\\n9 00:00:33,600 --> 00:00:36,000 And now on, you have a Wikipedia account.',\n", + " 'bytes': 671,\n", + " 'sha1': 'r4i6gsplch7zhb0zsuqi5hdiec4r40j',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 48848300,\n", + " 'timestamp': '2011-01-29T06:01:57Z',\n", + " 'user': {'id': 1177211, 'text': 'Waihorace'},\n", + " 'page': {'id': 12842592,\n", + " 'title': 'Createaccount.ogg.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:06,000 --> 00:00:09,300 首先,訪問維基百科(中文版zh.wikipedia.org,英文版en.wikipedia.org) 2 00:00:09,300 --> 00:00:13,000 之後,...'\",\n", + " 'text': '1 00:00:06,000 --> 00:00:09,300 首先,訪問維基百科(中文版zh.wikipedia.org,英文版en.wikipedia.org)\\n\\n2 00:00:09,300 --> 00:00:13,000 之後,點「登入/建立新帳戶」按鈕。它會在右上方出現。\\n\\n3 00:00:13,000 --> 00:00:18,200 點「您還沒有帳號嗎?建立新帳號。」\\n\\n4 00:00:18,200 --> 00:00:22,300 把頁面拉下去\\n\\n5 00:00:22,400 --> 00:00:23,500 輸入那個顯示了的字\\n\\n6 00:00:23,500 --> 00:00:26,700 再輸入你想使用的用戶名、 \\n\\n7 00:00:26,700 --> 00:00:30,900 你想用的密碼,以及可選填性的電郵地址。\\n\\n8 00:00:31,000 --> 00:00:33,600 之後,點「創建新帳號。」\\n\\n9 00:00:33,600 --> 00:00:36,000 那麼,從現時開始,你便有一個維基百科的帳戶。',\n", + " 'bytes': 760,\n", + " 'sha1': '5hncy971edil9g9vptix88oipq16sr2',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 274894163,\n", + " 'timestamp': '2017-12-29T02:14:09Z',\n", + " 'user': {'id': 2196981, 'text': 'LNDDYL'},\n", + " 'page': {'id': 12842688,\n", + " 'title': 'The State of Wikipedia by JESS3.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:01,000 --> 00:00:04,000 《維基百科的現況》\\n\\n1.1 00:00:04,000 --> 00:00:06,414 (旁白:維基百科創辦者吉米·威爾斯)\\n\\n2 00:00:06,414 --> 00:00:08,000 (維基百科,自由的百科全書)\\n\\n3 00:00:08,000 --> 00:00:11,100 維基百科是今日網際網路上最受歡迎的網站之一。\\n\\n4 00:00:11,100 --> 00:00:16,000 但你可能會很驚訝它原本是由另一個網路百科全書之子計畫發展而來的。\\n\\n5 00:00:16,000 --> 00:00:22,300 它叫做Nupedia,是個由專家編寫的傳統百科全書,\\n\\n6 00:00:22,300 --> 00:00:27,500 免費以及在線 ─ 但只有一個人擁有最後決定發表的權限,而且那個人經常不在。\\n\\n7 00:00:30,000 --> 00:00:36,300 身為Nupedia的創辦者,我帶領了一班團隊共同為之後的Nupedia建立條目。\\n\\n8 00:00:36,300 --> 00:00:42,500 我們用了一個更方便於共同編輯的軟體平台:Wiki - 維基百科。\\n\\n9 00:00:45,000 --> 00:00:48,500 Wiki是一個讓人能夠快速修改網頁文章的優秀平台。\\n\\n10 00:00:48,500 --> 00:00:52,900 很快地Nupedia不能夠跟上腳步,而維基百科則成為了主角。\\n\\n11 00:00:53,200 --> 00:00:58,700 我們不但是在建立一個任何人都可以使用內容的百科,更是「人人都可以編輯的自由百科全書」。 \\n\\n12 00:00:58,800 --> 00:01:04,500 其他語言迅速出現,最後一次統計時已經有超過270種語言。\\n\\n13 00:01,04,600 --> 00:01:08,500 很快地,包括維基文庫、維基新聞、維基詞典等其他計劃也跟著出現,\\n\\n14 00:01:09,000 --> 00:01:15,200 因此在2003年,我創立了維基媒體基金會以讓維基百科能夠繼續自行成長。\\n\\n15 00:01:15,200 --> 00:01:18,800 維基百科每個月有4億瀏覽人次,\\n\\n16 00:01:18,900 --> 00:01:22,200 而許多瀏覽網頁的人們實際上是花短短時間看那些最近較為關注的內容。\\n\\n17 00:01:22,300 --> 00:01:27,950 維基百科在2011年1月時慶祝其成立十周年的生日,\\n\\n18 00:01:28,000 --> 00:01:31,500 並且歡慶在這10年間已經變成世界上最受歡迎的網站之一。\\n\\n19 00:01:31,500 --> 00:01:37,400 我仍然繼續帶領著社群及維基媒體基金會來讓維基百科持續運作。\\n\\n20 00:01:37,500 --> 00:01:39,300 誰編輯了維基百科?\\n\\n21 00:01:39,350 --> 00:01:44,000 隨著時間的推移,已經有多達120萬人曾參與維基百科的編輯。\\n\\n22 00:01:44,000 --> 00:01:49,990 在2010年,各個語言版本的維基百科每個月有1,100萬次編輯。\\n\\n23 00:01:50,000 --> 00:01:55,200 根據一份問卷,我們的編輯群擁有博士學位者比一般大眾編輯者還多出2倍。\\n\\n24 00:01:55,300 --> 00:02:03,200 在英語維基百科有將近一半人沒有宗教信仰,而有14.6%的法語編輯者宣稱他們信仰「飛行義大利麵怪物信仰」,\\n\\n25 00:02:03,300 --> 00:02:06,100 可以直接說維基百科人都不是一般人。\\n\\n26 00:02:06,200 --> 00:02:11,300 一個原因可能是因為編輯頁面雖然很容易,但是積極地大量貢獻卻十分困難。\\n\\n27 00:02:11,400 --> 00:02:16,400 而社群有200多條方針、指引以及論述,\\n\\n28 00:02:16,400 --> 00:02:20,100 再加上無數次討論、審議、仲裁、告示板,\\n\\n29 00:02:20,100 --> 00:02:21,400 以及維基專題等等要求。\\n\\n30 00:02:21,500 --> 00:02:25,350 所有的網站內容由維基百科的貢獻者決定,\\n\\n31 00:02:25,350 --> 00:02:28,900 維基媒體基金會不會扮演任何編輯角色。\\n\\n32 00:02:29,800 --> 00:02:33,400 維基媒體基金會只負責讓伺服器繼續運作並宣傳網站,\\n\\n33 00:02:33,400 --> 00:02:36,300 以及在全世界各地發展維基百科。\\n\\n34 00:02:36,400 --> 00:02:43,200 這包括在世界各地設立資料中心與伺服器,和在印度設立了於美國本土以外第一個海外辦公室。\\n\\n35 00:02:43,300 --> 00:02:46,800 維基百科在西方以及北半球國家已經很熱門,\\n\\n36 00:02:46,800 --> 00:02:50,700 但是我們的挑戰是如何在發展中國家內推廣維基百科的使用。\\n\\n37 00:02:50,750 --> 00:02:54,500 維基媒體基金會是一家慈善機構,主要是由捐款維持運作。\\n\\n38 00:02:54,600 --> 00:03:00,200 少部份捐款來自企業機構,但絕大部份均來自於數以百萬計的編者及讀者。\\n\\n39 00:03:00,200 --> 00:03:05,300 維基百科已經達成的成就令人感到驚訝,但維基百科距離完成還有一段很長的距離。\\n\\n40 00:03:05,300 --> 00:03:09,500 很多讀者都知道維基百科有些條目是極為優秀,但亦有些文章完全相反且有待改善。\\n\\n41 00:03:09,600 --> 00:03:11,200 維基百科還需要持續工作下去。\\n\\n42 00:03:11,300 --> 00:03:13,500 然而這是一個新的挑戰,\\n\\n43 00:03:13,500 --> 00:03:17,400 不只是從頭建立一個百科全書,而是要讓條目更為全面、\\n\\n44 00:03:17,400 --> 00:03:22,500 更為準確以及更多來源。不只是涉及廣泛,還要更加深入。\\n\\n45 00:03:22,650 --> 00:03:27,000 這是以前從沒有人做過的計劃,而其未來的發展是廣闊無邊的。\\n\\n46 00:03:27,100 --> 00:03:31,300 在要進入維基百科第二個十年前,我們要讓維基百科變得更好。\\n\\n47 00:03:31,500 --> 00:03:35,000 (維基百科,自由的百科全書)\\n\\n47.1 00:03:35,500 --> 00:03:37,000 (由維基百科創辦者吉米·威爾斯旁述。)\\n\\n47.2 00:03:37,100 --> 00:03:38,000 (由Jesse Thomas指導拍攝。)\\n\\n47.3 00:03:38,000 --> 00:03:38,800 (造訪 http://www.thestateofwikipedia.com 獲得更多資訊)\\n\\n48 00:03:39,000 --> 00:03:41,500 (JESS3製作)',\n", + " 'bytes': 5589,\n", + " 'sha1': 'ta0eh4clvt0f21y14p7mgiauagt3rb0',\n", + " 'parent_id': 129017611,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49607020,\n", + " 'timestamp': '2011-02-10T08:18:40Z',\n", + " 'user': {'id': 567203, 'text': 'Uusijani'},\n", + " 'page': {'id': 13260993,\n", + " 'title': 'Eben Moglen - From the birth of printing to industrial culture; the root of copyright.ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'about 75 % done',\n", + " 'text': '0\\n00:00:00,000 --> 00:00:05,000\\nHaastattelussa [[w:Eben Moglen|Eben Moglen]]\\n\\n1\\n00:00:06,000 --> 00:00:09,600\\nNo voisin aloittaa vaikka\\nmuotoilemalla sen näin: -\\n\\n2\\n00:00:10,240 --> 00:00:14,520\\nKirja, joka oli ensimmäinen\\nmassatuotettu esine lännessä,\\n\\n3\\n00:00:15,000 --> 00:00:21,800\\nkäynnisti tosiasiassa\\ntiedon teollistumisprosessin.\\n\\n4\\n00:00:24,000 --> 00:00:31,160\\nKeskiaikaisesta käsityöläisestä, joka\\ntuotti tai kulutti tietoa matkustellen kauas, -\\n\\n5\\n00:00:32,000 --> 00:00:37,640\\nja jolla oli haasteena erityistietoa\\nomaavien ihmisten löytäminen, -\\n\\n6\\n00:00:38,120 --> 00:00:42,400\\ntuli vain parin sukupolven sisällä -\\n\\n7\\n00:00:43,280 --> 00:00:49,920\\nLänsi-Euroopan kirjojen maailma,\\npainettujen massatuotteiden, -\\n\\n8\\n00:00:50,360 --> 00:00:52,120\\njotka levittivät tietoa laajalti, -\\n\\n9\\n00:00:53,000 --> 00:00:59,720\\nja muuttavat maailmaa koskevan\\nerityistiedon keräämisen -\\n\\n10\\n00:01:00,000 --> 00:01:03,200\\nmatkustamisesta muistamistyöksi.\\n\\n11\\n00:01:04,680 --> 00:01:10,400\\nSiitä maailmasta siirryttiin\\nedisonilaisen vallankumouksen kautta, -\\n\\n12\\n00:01:10,680 --> 00:01:14,600\\n1800-luvun puolivälistä\\n1900-luvun lopulle tultaessa -\\n\\n13\\n00:01:15,520 --> 00:01:23,440\\nmaailmaan, jossa muistista tuli yleinen\\nanaloginen kulttuuriartefakti.\\n\\n14\\n00:01:24,360 --> 00:01:31,920\\nEli kirjastosta löytyvä kirja,\\njohon kykenevä yleisö voi tukeutua, -\\n\\n15\\n00:01:32,680 --> 00:01:37,400\\nkorvautuu pitkälti liikkuvilla kuvilla,\\näänitallenteilla, -\\n\\n16\\n00:01:38,120 --> 00:01:43,480\\nsaatavilla olevalla kansankielisellä\\nkulttuurilla, joka tuo valtavasti tietoa -\\n\\n17\\n00:01:44,160 --> 00:01:48,760\\nei enää vain kykenevälle yleisölle,\\nvaan jokaisen kotiin.\\n\\n18\\n00:01:49,160 --> 00:01:56,240\\nTällä oli tietty tarkoituksensa:\\nse tarkoitettiin, tai ainakin se syntyi samalla, -\\n\\n19\\n00:01:56,520 --> 00:02:03,400\\nkun Henry Ford värväsi maailman työläiset\\nuudeksi kuluttajien armeijaksi,\\n\\n20\\n00:02:03,800 --> 00:02:09,280\\nihmisiksi, jotka pelastivat kapitalismin\\ntiukissa paikoissa kuluttamalla tuotteita, -\\n\\n21\\n00:02:09,760 --> 00:02:18,280\\njotka lopettivat ylituotantokriisin\\nryhtymällä kurinalaiseksi kuluttaja-armeijaksi.\\n\\n22\\n00:02:19,120 --> 00:02:21,320\\nJa tullakseen kurinalaiseksi\\nkuluttaja-armeijaksi -\\n\\n23\\n00:02:21,680 --> 00:02:26,120\\ntyöläisille piti järjestää kulttuuri,\\njoka selitti kuluttamisen, -\\n\\n24\\n00:02:26,560 --> 00:02:28,880\\nsai heidät haluamaan,\\nkertoi heille mitä haluta, -\\n\\n25\\n00:02:32,440 --> 00:02:32,480\\ntarjosi heille toiveita ja pelkoja, -\\n\\n26\\n00:02:33,280 --> 00:02:38,560\\njotka eivät perustuneet aidosti\\nheidän kokemuksiinsa, -\\n\\n27\\n00:02:39,040 --> 00:02:42,800\\nvaan jotka olivat välillisten\\nkokemusten siirrännäistuotetta.\\n\\n28\\n00:02:44,720 --> 00:02:48,040\\nJa tämän kulttuurin analoginen muoto, -\\n\\n29\\n00:02:48,440 --> 00:02:52,720\\njonka tuottaminen edellytti teollista\\nprosessia, äänilevyjen tuotanto, -\\n\\n30\\n00:02:53,600 --> 00:02:56,400\\nfilminauhan tuotanto,\\nniissä olevien pikku reikien puhkominen, -\\n\\n31\\n00:02:58,040 --> 00:03:05,560\\nkatselin vanhaa Mel Brookesin haastattelua,\\njonka Dick Cavitt oli tehnyt, -\\n\\n32\\n00:03:06,080 --> 00:03:14,400\\nja jonka New York Times on ottanut\\nosaksi elokuvamuseota,\\n\\n33\\n00:03:15,360 --> 00:03:17,040\\nsiinä Cavitt kysyy Mel Brookesilta:\\n\\n34\\n00:03:17,160 --> 00:03:19,280\\n\"Mikä on vaikeinta\\nelokuvan tekemisessä?\"\\n\\n35\\n00:03:19,680 --> 00:03:23,400\\nJa hän vastaa: \"No... filminauhassa\\nolevien pikku reikien puhkominen.\"\\n\\n36\\n00:03:24,040 --> 00:03:25,720\\nNo jos mietitään sitä oikealta kannalta, -\\n\\n37\\n00:03:26,080 --> 00:03:28,200\\nse todella on elokuvantekemisen\\nvaikein osuus, -\\n\\n38\\n00:03:28,680 --> 00:03:32,080\\nja siksi digitaalisten tietokoneiden maailmassa\\nelokuvien tekeminen on helppoa, -\\n\\n39\\n00:03:32,760 --> 00:03:35,520\\nsillä enää ei tarvitse puhkoa\\npikku reikiä filminauhaan.\\n\\n40\\n00:03:36,000 --> 00:03:38,640\\nToisin sanoen analogisiin\\nesineisiin sisältyvä kulttuuri -\\n\\n41\\n00:03:39,080 --> 00:03:44,440\\noli kulttuuria, jonka hallinta oli seurausta sen\\ntuottamisen, liikuttamisen ja myymisen vaikeudesta.\\n\\n42\\n00:03:45,040 --> 00:03:50,040\\nHallinta oli luonnollinen seuraus\\nkäytetyn median olemuksesta.\\n\\n43\\n00:03:50,520 --> 00:03:54,640\\nSitten, kun siirryimme 1900-luvun\\nlopussa digitaaliseen mediaan, -\\n\\n44\\n00:03:55,000 --> 00:03:58,200\\nkävi niin, että prosessissa, jossa\\nmuisti korvautui kokemuksella -\\n \\n45\\n00:03:58,360 --> 00:04:01,880\\nhistorian kulkiessa kirjasta\\nedisonlaisiin liikkuviin kuviin,\\n\\n46\\n00:04:02,680 --> 00:04:09,160\\ntuli... muisti on nyt välitöntä, se on asioita,\\njoita teemme itse, muistamisen sijaan.\\n\\n47\\n00:04:09,360 --> 00:04:14,320\\nIstuskelemme baarissa ystävien kesken\\nja meillä kaikilla on kamera puhelimessa, -\\n\\n48\\n00:04:14,680 --> 00:04:16,040\\nelokuvakamera joka matkapuhelimessa, -\\n\\n49\\n00:04:16,480 --> 00:04:19,880\\nja kaikki kuvaamamme\\nmenee suoraan Flickriin ja YouTubeen,\\n\\n50\\n00:04:20,000 --> 00:04:24,200\\nja nyt itse asiassa muistista\\non tulossa verkon ominaisuus.\\n\\n51\\n00:04:24,760 --> 00:04:28,760\\nJa kokemuksesta on nyt\\ntulossa verkon ominaisuus.\\n\\n52\\n00:04:30,000 --> 00:04:36,480\\nJa hallinta, joka aiemmin piili esineiden\\nvalmistuksessa, on nyt vapaata riistaa.\\n\\n53\\n00:04:37,000 --> 00:04:43,560\\nja minä uskon että se vie meidät -\\n\\n54\\n00:04:40,200 --> 00:04:43,480\\nmaailmasta, jossa katolinen kirkko\\nmääräsi ajatuksista, -\\n\\n55\\n00:04:44,000 --> 00:04:47,080\\nja jota protestanttinen\\nartefakti, kirja, uhkasi, -\\n\\n56\\n00:04:47,600 --> 00:04:52,720\\nmaailmaan, jossa edisonlaiset firmat\\nhyötyivät määräysvallasta, -\\n\\n57\\n00:04:52,760 --> 00:04:54,040\\nei kirjojen vaan filminauhan ja\\npikku reikien tekemisestä, -\\n\\n58\\n00:04:56,680 --> 00:05:01,040\\nmaailmaan, jossa verkko teki\\nhallinnasta tuotannon lailla -\\n\\n59\\n00:05:01,440 --> 00:05:05,640\\nyhtä helppoa kuin kuluttaminen ja\\nmäärätynlainen käyttäytyminen ovat.\\n\\n60\\n00:05:06,000 --> 00:05:12,520\\nJa siinä piilevät meidän aikamme teknologian\\nvaltavat vaarat, lupaukset ja viisaus: -\\n\\n61\\n00:05:13,000 --> 00:05:16,640\\nettä se haastaa hallintavallan perustan.\\n\\n62\\n00:05:20,360 --> 00:05:23,040\\nNo sekä tekijänoikeus että patenttilait, -\\n\\n63\\n00:05:23,280 --> 00:05:28,400\\nnämä hallintaperiaatteet, jotka\\nmääräävät tiedonkulusta, -\\n\\n64\\n00:05:28,760 --> 00:05:31,600\\nne ovat — kuten laki usein on —\\n\\n65\\n00:05:31,920 --> 00:05:37,040\\nteknologiaa, joka on luotu\\nmateriaalisella kaudella A, -\\n\\n66\\n00:05:37,040 --> 00:05:40,080\\nja joka on selvinnyt\\nhengissä kaudelle B.\\n\\n67\\n00:05:40,360 --> 00:05:45,880\\nNiinpä ne ovat erikoinen\\nsekoitus kannustimia ja ilmiöitä.\\n\\n68\\n00:05:46,680 --> 00:05:55,040\\nPatentti- ja tekijänoikeuslaeissa on\\npohjimmiltaan kyse 1600- ja 1700-luvun oloista,\\n\\n69\\n00:05:55,400 --> 00:05:58,040\\njotka on toteutettu\\n1800-luvun keinoilla, -\\n\\n70\\n00:05:58,680 --> 00:06:04,600\\nja sitten 1900-luvulla otettu takaisin\\nkäyttöön 2000-luvun ongelmien ratkomiseksi.\\n\\n71\\n00:06:05,000 --> 00:06:10,520\\nPerusongelma, jota tekijänoikeuslaki\\non tarkoitettu ratkaisemaan, -\\n\\n72\\n00:06:10,880 --> 00:06:13,800\\non, että, kuten sanoit,\\non kallista perustaa painotalo, -\\n\\n73\\n00:06:14,200 --> 00:06:16,040\\nmutta kun se on\\nkerran perustettu, -\\n\\n74\\n00:06:17,240 --> 00:06:22,520\\npitää jotenkin päättää,\\nmihin sitä käytetään, -\\n\\n75\\n00:06:23,000 --> 00:06:27,240\\nja todellinen kysymys on,\\nmitä painotalon pitäisi painaa.\\n\\n76\\n00:06:27,840 --> 00:06:33,280\\nJoten painajalle täytyy luoda kannustimia\\ntietyn asian painamiseksi.\\n\\n77\\n00:06:33,760 --> 00:06:38,640\\nToisin kuin 1900-luvun lopun kulttuurin omistajat\\nväittävät, ongelmana ei siis ole se, -\\n\\n78\\n00:06:39,080 --> 00:06:41,920\\nettä jollei kannustimia olisi,\\nyhtikäs mitään ei painettaisi.\\n\\n79\\n00:06:42,400 --> 00:06:44,880\\nTotta kai painotalo pyörii, -\\n\\n80\\n00:06:45,360 --> 00:06:48,920\\nja ihminen rakentaa painokoneita,\\nkoska hän voi ansaita painamalla jotain.\\n\\n81\\n00:06:49,160 --> 00:06:52,840\\nKysymys kuuluu, että pitäisikö hänen\\npainaa jonkun käyntikortteja, -\\n\\n82\\n00:06:53,000 --> 00:06:56,040\\njonkun hääkutsuja vai\\njonkun romaania.\\n\\n83\\n00:06:56,360 --> 00:07:00,920\\nToisin sanoen kyse on siitä,\\nkuinka päätetään, mitä valmistetaan -\\n\\n84\\n00:07:01,400 --> 00:07:04,840\\ntuotannon vähäisillä välineillä.\\n\\n85\\n00:07:05,560 --> 00:07:11,400\\nKulttuuri on tuottoisaa, jos sitä\\nvoi ostaa halvalla ja myydä kalliilla, -\\n\\n86\\n00:07:12,000 --> 00:07:18,600\\nja se on siinä määrin kannattavaa, koska\\nse on erityistä, poikkeavaa tai ainutlaatuista.\\n\\n87\\n00:07:19,200 --> 00:07:20,880\\nRanskaan tulvii, -\\n\\n88\\n00:07:21,160 --> 00:07:24,720\\nkuten Robert Darnton osoitti pohtiessaan\\n1700-luvun ranskalaista kulttuuria, -\\n\\n89\\n00:07:24,800 --> 00:07:27,400\\nRanskaan tulvii\\nAmsterdamin painotaloista -\\n\\n90\\n00:07:27,560 --> 00:07:30,040\\nsitä mitä ranskalaiset eivät\\nitse saa tuottaa itselleen, -\\n\\n91\\n00:07:30,680 --> 00:07:37,080\\nja siksi pornografia ja politiikka olivat\\n1700-luvulla kuumaa vientikamaa.\\n\\n92\\n00:07:37,440 --> 00:07:39,160\\nMutta siitä on seurauksena, -\\n\\n93\\n00:07:40,000 --> 00:07:47,840\\neli sen tuottamisesta markkinoille,\\nmitä niiden on vaikeinta hankkia, -\\n\\n94\\n00:07:48,040 --> 00:07:51,600\\nuhka, että lopulta painotalot\\neivät muuta painakaan kuin -\\n\\n95\\n00:07:52,120 --> 00:07:54,560\\npoliittisia aikakauslehtiä ja pornoa.\\n\\n96\\n00:07:55,160 --> 00:07:57,160\\nKuinka se voidaan estää?\\n\\n97\\n00:07:57,560 --> 00:08:02,640\\nAletaan pyrkiä siihen, että painajat\\nsaavat hyötyä kirjallisuuden edistämisestä.\\n\\n98\\n00:08:03,240 --> 00:08:08,440\\nJuuri siitä tekijänoikeuslaissa on kyse,\\nse on suuri jeffersonilainen keksintö, -\\n\\n99\\n00:08:09,000 --> 00:08:15,400\\nettä teemme demokratiasta keinon\\nedistää hyveitä painotalojen parissa, -\\n\\n100\\n00:08:15,720 --> 00:08:20,120\\nja saamme kaiken toimimaan\\nsen hyväksi nopeuttaaksemme -\\n\\n101\\n00:08:20,360 --> 00:08:22,640\\ntietojen ja taitojen leviämistä.\\n\\n102\\n00:08:24,160 --> 00:08:28,960\\nEli siinä mielessä\\ntekijänoikeuslaki kumpuaa -\\n\\n103\\n00:08:29,160 --> 00:08:33,680\\njalosta kokeesta,\\njonka tarkoituksena oli -\\n\\n104\\n00:08:33,840 --> 00:08:38,160\\nvastata aiheelliseen\\n1700-1800-luvun ongelmaan, -\\n\\n105\\n00:08:38,680 --> 00:08:42,080\\nja edisonilaiselle kaudelle\\ntultaessa siitä oli kehittynyt -\\n\\n106\\n00:08:42,560 --> 00:08:47,600\\ntuolle ajalle välttämätön\\n\\'työn vuokrauksen\\' doktriini: -\\n\\n107\\n00:08:47,960 --> 00:08:53,320\\npainotalojen hyveellisyyttä edistämään\\ntarkoitettua järjestelmää pitääkin -\\n\\n108\\n00:08:53,640 --> 00:08:59,240\\nvoida käyttää isompien kaupallisten\\nkustannustalojen kannustimena.\\n\\n109\\n00:08:59,520 --> 00:09:04,360\\nSiinä, missä 1800-luvun Manhattania\\npidetään painoteollisuuden keskuksena, -\\n\\n110\\n00:09:04,680 --> 00:09:08,400\\n1900-luvulle tultaessa sitä pidetäänkin\\nkustannusalan keskuksena, -\\n\\n111\\n00:09:08,600 --> 00:09:10,760\\nja merkitysero on huomattava.\\n\\n112\\n00:09:11,000 --> 00:09:16,920\\nEi olekaan enää kyse kevyestä teollisesta\\npaperilappusille painamisesta, -\\n\\n113\\n00:09:17,080 --> 00:09:22,880\\nvaan on kyse suuren, integroidun\\nkulttuurintuotantokoneiston hallinnasta, -\\n\\n114\\n00:09:23,160 --> 00:09:25,920\\nja siihen tarvitaan\\n\\'työn vuokrauksen\\' doktriinia.\\n\\n115\\n00:09:26,000 --> 00:09:29,640\\nAs 18th century booksellers in London\\nneeded Grub Street. \\n\\n116\\n00:09:30,000 --> 00:09:32,040\\nthat is some content producer\\n\\n117\\n00:09:32,400 --> 00:09:36,720\\nto meet the demand \\nof the wide pipe of printing\\n\\n118\\n00:09:37,000 --> 00:09:41,480\\nthat their concentration of the machinery \\nof printing and binding has set up.\\n\\n119\\n00:09:42,000 --> 00:09:46,440\\nThe Edisonian institutions \\nneeded content behind them,\\n\\n120\\n00:09:46,640 --> 00:09:49,840\\nAnd they needed content \\nthey could claim to own.\\n\\n121\\n00:09:50,160 --> 00:09:54,080\\nSo in that sense copyright law comes, \\nthrough the work for hire doctrine,\\n\\n122\\n00:09:54,600 --> 00:09:56,920\\nand its relationship to the law of employment,\\n\\n123\\n00:09:57,240 --> 00:10:02,320\\ncopyright becomes the organizational \\norganic document\\n\\n124\\n00:10:02,320 --> 00:10:05,920\\nfor these immense media enterprises.\\n\\n125\\n00:10:06,240 --> 00:10:06,280\\nOnce media enterprises \\nhave come into existence,\\n\\n126\\n00:10:09,640 --> 00:10:14,200\\nonce New York city is a \\ncentre of publishing rather than printing,\\n\\n127\\n00:10:15,040 --> 00:10:18,760\\nThen any medium that comes along \\nhas to be co-opted in the same way.\\n\\n128\\n00:10:18,880 --> 00:10:22,480\\nThe principle of vertical integration \\nhas to be maintained.\\n\\n129\\n00:10:22,600 --> 00:10:27,520\\nAnd as you move from publishing on paper \\nto radio broadcasting,\\n\\n130\\n00:10:27,920 --> 00:10:34,400\\ntelevision broadcasting, news dissemination,\\nfinancial information dissemination,\\n\\n131\\n00:10:35,000 --> 00:10:38,200\\nyou apply the same model to it:\\nsomebody makes it,\\n\\n132\\n00:10:38,560 --> 00:10:38,600\\nthat creates a property interest,\\n\\n133\\n00:10:41,120 --> 00:10:44,920\\nthat property interest is transferred \\nthrough an employment contract,\\n\\n134\\n00:10:45,160 --> 00:10:49,960\\nand becomes a disposable piece of property\\nin a market economy.\\n\\n135\\n00:10:50,280 --> 00:10:56,480\\nThat seems to meet the need \\nfor the industrial organizations of the time.\\n\\n136\\n00:10:56,880 --> 00:11:00,040\\nNow if the technology makes another change,\\n\\n137\\n00:11:00,480 --> 00:11:06,880\\nand control no longer inherently resides \\nin the object of information itself,\\n\\n138\\n00:11:07,360 --> 00:11:10,440\\nThen copyright has to become \\na law about control\\n\\n139\\n00:11:10,680 --> 00:11:14,440\\nNot a law about these organizational dispositions\\n\\n140\\n00:11:14,920 --> 00:11:21,560\\nand you begin to get, as in the DMCA, \\nor the European Union copyright directive,\\n\\n141\\n00:11:22,040 --> 00:11:24,440\\nyou begin to get para-copyright law,\\n\\n142\\n00:11:24,560 --> 00:11:29,040\\nlaw which is about control over use, \\nnot control over production,\\n\\n143\\n00:11:29,240 --> 00:11:32,040\\nbecause that jointure between the user,\\n\\n144\\n00:11:32,480 --> 00:11:37,160\\nthe consumer, the producer and the distributor,\\nhas become too tight.\\n\\n145\\n00:11:37,640 --> 00:11:42,640\\nAnd the law has to get in there \\nand force a differentiation of roles again.\\n\\n146\\n00:11:42,920 --> 00:11:45,400\\nBut that\\'s nothing to do with \\nwhere copyright started,\\n\\n147\\n00:11:45,680 --> 00:11:48,640\\nit\\'s nothing to do with \\nwhat made copyright law effective \\n\\n148\\n00:11:49,080 --> 00:11:52,320\\nin the organization media of in the first place.',\n", + " 'bytes': 14203,\n", + " 'sha1': '9eo26p2k3s6i0buttys18szukw6ex8d',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49677150,\n", + " 'timestamp': '2011-02-12T10:33:58Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13278521,\n", + " 'title': 'Allsång Skansen 1937.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,999\\n([[:sv:Stockholms-Tidningen|Stockholms-Tidningen]], 1937: 20.000 sjöngo unisont)\\n<br>Pappa! O så mycket folk!\\nHär är bestämt jag.\\n\\n2\\n00:00:007,000 --> 00:00:18,999\\nTralalla lalla la...\\n<br>([[:sv:Tre trallande jäntor|Tre trallande jäntor]], Fröding/Körling)',\n", + " 'bytes': 298,\n", + " 'sha1': 'i25tr4hq5bkqld13hlnezhk8gl0bu41',\n", + " 'parent_id': 49677112,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49677304,\n", + " 'timestamp': '2011-02-12T10:40:14Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13278586,\n", + " 'title': 'Allsång Skansen 1937.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:06,999 ([[:sv:Stockholms-Tidningen|Stockholms-Tidningen]], 1937: 20,000 in sing-along) <br>Dad! Oh, how many people! I'm standing here. 2...'\",\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:06,999\\n([[:sv:Stockholms-Tidningen|Stockholms-Tidningen]], 1937: 20,000 in sing-along)\\n<br>Dad! Oh, how many people!\\nI'm standing here.\\n\\n2\\n00:00:007,000 --> 00:00:18,999\\nTralalla lalla la...\\n<br>([[:sv:Tre trallande jäntor|Tre trallande jäntor]], Fröding/Körling)\",\n", + " 'bytes': 292,\n", + " 'sha1': '0l57oo20o2crsbzgnougd97eagondv6',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49775264,\n", + " 'timestamp': '2011-02-14T14:12:01Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13278630,\n", + " 'title': 'Ombrytning Stockholms-Tidningen 1937.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n0:0:1 --> 0:0:5\\nHär står nattredaktören och övervakar ombrytningen.\\nHan har fått sina direktiv av redaktionssekreteraren.\\n\\n2\\n0:0:5 --> 0:0:14\\nOch nu placerar han ut rubriker och artiklar.\\nOch det är alltså första sidan som tar form här.\\n\\n3\\n0:0:19 --> 0:0:24\\nSom kronan på verket blir klichén av den unisona sången placerad överst.\\n\\n4\\n0:0:24 --> 0:0:30\\nNu har bara nattredaktören att kasta ett granskande öga på avklappet,\\nsom han får här, för att sedan övergå till nästa sida.\\n\\n5\\n0:0:30 --> 0:0:33\\nDet är långt över midnatt nu och för varje sekund stiger tempot.\\n\\n6\\n0:0:33 --> 0:0:38\\nDet kan hända, en sådan här natt, att en sensation rapporteras in,\\noch då gäller det att bryta om en sida i elfte timmen.\\n\\n7\\n0:0:38 --> 0:0:44\\nOch det är en sak som man alltid lyckas med,\\ntack vare den ordning och den reda som härskar här i minsta detalj.',\n", + " 'bytes': 875,\n", + " 'sha1': 'mmttfmvwa3azg0vut2aw94rx18ixo3q',\n", + " 'parent_id': 49771696,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49774478,\n", + " 'timestamp': '2011-02-14T13:48:12Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13278719,\n", + " 'title': 'Sattning Stockholms-Tidningen 1937.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'updated timing',\n", + " 'text': '1\\n0:0:01 --> 0:0:04\\nVi går djupare in i tidningens väldiga organisation.\\n\\n2\\n0:0:04 --> 0:0:13\\nHär i sätteriet mottar faktorn korrekturet till morgondagens annonser,\\noch runt omkring arbetar sättmaskinerna rastlöst.\\n\\n3\\n0:0:13 --> 0:0:17\\nSättmaskinerna är tekniska underverk.\\nI deras innandöme cirkulerar de små mässingmatriserna,\\n\\n4\\n0:0:17 --> 0:0:22\\noch medan sättaren skriver som på en skrivmaskin,\\nfaller matriserna ner ur sitt magasin.\\n\\n5\\n0:0:22 --> 0:0:28\\nMaskinen gör själv avgjutning av den färdiga raden,\\noch strax därefter är den klar för nästa rad.\\n\\n6\\n0:0:28 --> 0:0:31\\nDe färdiga raderna samlas i det så kallade skeppet.\\n\\n7\\n0:0:31 --> 0:0:38\\nAllt går svindlande fort, men ibland blir det stopp.\\nMen det är minsann inte sättarens fel.\\n\\n8\\n0:0:38 --> 0:0:42\\nNär skeppet är fyllt med färdiggjutna rader,\\növerlämnas de till färdiggöringen,\\n\\n9\\n0:0:42 --> 0:0:49\\noch här genomgår det hela en första kontroll.\\n\\n10\\n0:1:02 --> 0:1:06\\nNär allting är i sin ordning, gör man ett avdrag\\noch skickar det till korrekturläsning,\\n\\n11\\n0:1:06 --> 0:1:11\\noch därifrån återvänder korrekturen och hamnar i den här lådan.\\n\\n12\\n0:1:11 --> 0:1:15\\nNär vi står färdiga för ombrytningen,\\nligger tidningens alla manuskript hopsamlade i en hög.\\n\\n13\\n0:1:15 --> 0:1:20\\nJa, tänk om man skulle få hem den i det skicket varje morgon i brevlådan.',\n", + " 'bytes': 1371,\n", + " 'sha1': 'faiga6ihsja2b9umyz267v22stja19x',\n", + " 'parent_id': 49774418,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49773102,\n", + " 'timestamp': '2011-02-14T13:00:28Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13278771,\n", + " 'title': 'Kliche Stockholms-Tidningen 1937.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'updated timing',\n", + " 'text': '1\\n0:0:00 --> 0:0:04\\nVid midnatt arbetas vid klichéanstalten\\nför högtryck vid varje kamera.\\n\\n2\\n0:0:04 --> 0:0:08\\nHär görs en sjuspaltig kliché till en artikel om den unisona sången på Skansen.\\n\\n3\\n0:0:08 --> 0:0:19\\nOch i några snabba bilder kan vi följa\\nhur bilden av allsångarna med dirigenten i jätteformat\\nväxer fram till färdig kliché.',\n", + " 'bytes': 352,\n", + " 'sha1': '6kioye1npty54l5uoivpvzh1gcraa4w',\n", + " 'parent_id': 49678174,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49776883,\n", + " 'timestamp': '2011-02-14T14:56:20Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13278867,\n", + " 'title': 'Tidningstryck 1937.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n0:0:1 --> 0:0:4\\nFrån ombrytningen kommer sidan till matrispressen.\\n\\n2\\n0:0:4 --> 0:0:10\\nHär lägger man en asbestartad hård pappskiva över det hela,\\noch låter sidan passera genom en press.\\n\\n3\\n0:0:10 --> 0:0:15\\nVi skall inom ett ögonblick se resultatet.\\nHär är sidan avtryckt på det vita hårda materialet,\\n\\n4\\n0:0:15 --> 0:0:22\\nsom kan uthärda en så stark hetta att man kan göra en avgjutning i bly.\\n\\n5\\n0:0:23 --> 0:0:27\\nSå åker matrisen iväg till stereotypen,\\noch det är här man gjuter sidorna,\\n\\n6\\n0:0:27 --> 0:0:32\\nså att två sidor tillsammans bildar en cylinder.\\nOch denna cylinder sättes sedan in på pressarnas valsar.\\n\\n7\\n0:0:33 --> 0:0:43\\nDe dagar söndagsbilagans bildrika sidor gjutas här,\\ndå blir arbetet dubbelt intensivt.\\n\\n8\\n0:0:43 --> 0:0:53\\n(gjutning med bly)\\n\\n9\\n0:1:5 --> 0:1:12\\nNu närmar sig klockan 3 på morgonen.\\nVad vi ser här händer natt efter natt året runt\\njust de timmarna då vi ligger hemma och sover.\\n\\n10\\n0:1:13 --> 0:1:23\\nDe färdigjusterade cylindrarna skruvas fast vid valsarna.\\nOm ett ögonblick är allt klart för start.\\nDet är ett dramatiskt ögonblick.\\n\\n11\\n0:1:23 --> 0:1:33\\n(tidningar rullar fram)\\n\\n12\\n0:1:37 --> 0:1:46\\nNu strax skall vi se hur pressen sprutar ut 40.000 exemplar i timman,\\nmed nyheter från världens alla hörn.',\n", + " 'bytes': 1291,\n", + " 'sha1': 'cckaxggr0mo6xt3q6zadio2sxkl85lm',\n", + " 'parent_id': 49776797,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49681609,\n", + " 'timestamp': '2011-02-12T13:44:16Z',\n", + " 'user': {'id': 7945, 'text': 'Sir48'},\n", + " 'page': {'id': 13279724,\n", + " 'title': 'Allsång Skansen 1937.ogv.da.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'translation into da:',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,999\\n([[:sv:Stockholms-Tidningen|Stockholms-Tidningen]], 1937: 20.000 synger i kor)\\n<br />Far! Åh, hvor mange mennesker!\\nHer står jeg.\\n\\n2\\n00:00:007,000 --> 00:00:18,999\\nTralalla lalla la...\\n<br />([[:sv:Tre trallande jäntor|Tre trallande jäntor]], Fröding/Körling)',\n", + " 'bytes': 297,\n", + " 'sha1': 'ff44qufs71doqsljdlnflyhtls52i45',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49775609,\n", + " 'timestamp': '2011-02-14T14:20:32Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13279876,\n", + " 'title': 'Ombrytning Stockholms-Tidningen 1937.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n0:0:1 --> 0:0:5\\nHere is the night editor, supervising the page layout.\\nHe has been instructed by the assistant editor in chief.\\n\\n2\\n0:0:5 --> 0:0:14\\nAnd now he puts headlines and articles in place.\\nWhat you see is the front page being laid out.\\n\\n3\\n0:0:19 --> 0:0:24\\nTo finish it off, the cliché of the sing-along is placed on top.\\n\\n4\\n0:0:24 --> 0:0:30\\nNow the night editor only has to scrutinize the first impression,\\nwhich he gets here, and then to continue with the next page.\\n\\n5\\n0:0:30 --> 0:0:33\\nIt is now long after midnight and the pace increases with every second.\\n\\n6\\n0:0:33 --> 0:0:38\\nIt can happen, on a night like this, that a sensation is reported,\\nand then a page must be remade in the eleventh hour.\\n\\n7\\n0:0:38 --> 0:0:44\\nThis is something that always succeeds,\\nthanks to the order and discipline that reigns here in every detail.',\n", + " 'bytes': 844,\n", + " 'sha1': 'pbkra11rygwnf4rz5dxmzkns34m7qs7',\n", + " 'parent_id': 49775562,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 605479949,\n", + " 'timestamp': '2021-11-04T19:15:35Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 13283070,\n", + " 'title': 'Arne Jarrick avkodningsbart.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'text and timings update',\n", + " 'text': '1\\n00:00:00,023 --> 00:00:04,004\\n... om 200 år, så kommer man\\natt sitta och falla\\n\\n2\\n00:00:04,037 --> 00:00:09,838\\ni förundran över hur kloka vi var på det\\nhär seminariet, när man tittar tillbaka.\\n\\n3\\n00:00:10,117 --> 00:00:12,190\\nMan kan bara fråga sig\\n\\n4\\n00:00:12,233 --> 00:00:17,300\\nom det här mediet kommer att vara\\nläsbart om 200 år överhuvudtaget.\\n\\n5\\n00:00:17,367 --> 00:00:18,988\\nOch om det nu vore det,\\n\\n6\\n00:00:19,038 --> 00:00:22,788\\nså kan man fråga sig om de kommer att\\nförstå det här konstiga språket vi talar.\\n\\n7\\n00:00:23,157 --> 00:00:25,456\\nMan kan bara kasta sig 200 år\\ntillbaka i tiden.\\n\\n8\\n00:00:25,487 --> 00:00:28,730\\nNär jag försöker få studenter\\natt läsa handskrift,\\n\\n9\\n00:00:28,776 --> 00:00:31,093\\nså är det inte bara\\ndet att den är svår att tyda,\\n\\n10\\n00:00:31,127 --> 00:00:33,999\\nutan det är också svårt att förstå\\nvad de här mänskorna sade,\\n\\n11\\n00:00:34,039 --> 00:00:36,179\\nom man väl lyckas tyda\\nden där handskriften.\\n\\n12\\n00:00:36,211 --> 00:00:38,780\\nDet är en from förhoppning,\\nmen det är inte säkert,\\n\\n13\\n00:00:38,814 --> 00:00:43,139\\natt mediet kommer att vara\\navkodningsbart om 200 år.\\n\\n14\\n00:00:43,167 --> 00:00:44,491\\nMan kan hoppas.',\n", + " 'bytes': 1210,\n", + " 'sha1': 'm5tdcyb4gge5y8v3m0bbiuvpi410l92',\n", + " 'parent_id': 49693501,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49693632,\n", + " 'timestamp': '2011-02-12T20:14:09Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13283103,\n", + " 'title': 'Carl XVI Gustaf Forstlingen 2006.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 0:0:11 --> 0:0:16 Ser du inte? Nu åker dom! 2 0:0:20 --> 0:0:30 (musik: Under blågul fana)'\",\n", + " 'text': '1\\n0:0:11 --> 0:0:16\\nSer du inte? Nu åker dom!\\n\\n2\\n0:0:20 --> 0:0:30\\n(musik: Under blågul fana)',\n", + " 'bytes': 95,\n", + " 'sha1': 'cri9tvi029jy7fdu2td7p9w5wdn2tt7',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49694278,\n", + " 'timestamp': '2011-02-12T20:37:25Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13283277,\n", + " 'title': 'Recordmydesktop-svenska.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 0:0:0 --> 0:0:7 Om man kör Linux och vill visa hur man kör ett program, kan man använda RecordMyDesktop och göra en liten film. 2 0:0:7 --> 0:0:12 Det är e...'\",\n", + " 'text': '1\\n0:0:0 --> 0:0:7\\nOm man kör Linux och vill visa hur man kör ett program,\\nkan man använda RecordMyDesktop och göra en liten film.\\n\\n2\\n0:0:7 --> 0:0:12\\nDet är ett avancerat program som har många inställningar.\\nHär visar jag bara det allra enklaste och då tar den hela skärmen.\\n\\n3\\n0:0:12 --> 0:0:25\\nFör att få en bra film, har jag minskat min skärmupplösning till\\n800 x 600 punkter och tagit bort onödiga fönster från skärmen.\\n\\n4\\n0:0:25 --> 0:0:33\\nJag har angett en parameter \"--full-shots\",\\nnär jag skrev kommandot \"recordmydesktop\" här uppe,\\n\\n5\\n0:0:33 --> 0:0:37\\nför jag märkte att på min skärm blev filmen dålig\\nom jag inte gjorde så.\\n\\n6\\n0:0:37 --> 0:0:45\\nMen det är den enda parametern som jag har angett\\nnär jag startade RecordMyDesktop.\\n\\n7\\n0:0:45 --> 0:0:50\\nMed en mikrofon ansluten kan man tala in instruktioner\\nunder tiden som man visar hur man kör programmet.\\n\\n8\\n0:0:50 --> 0:1:3\\nNu ska jag starta Firefox, som är min webbläsare.\\nDen har jag här uppe.\\n\\n9\\n0:1:3 --> 0:1:12\\nDet går lite segt och det beror inte på att min dator eller\\nFirefox är långsamma, utan på att programmet RecordMyDesktop\\n\\n10\\n0:1:12 --> 0:1:20\\ntar mycket resurser ur datorn och gör den långsammare.\\nDet får man tänka på när man ska göra sådana här filmer.\\n\\n11\\n0:1:20 --> 0:1:29\\nJag hade min webbläsare inställd på Wikipedia,\\nsom är ett fritt uppslagsverk på Internet.\\n\\n12\\n0:1:29 --> 0:1:35\\nHär kan man visa hur man använder Wikipedia\\noch göra en instruktionsfilm om det, kanske.\\n\\n13\\n0:1:35 --> 0:1:52\\nDå kan man gå till svenska Wikipedia och titta på några artiklar\\nsom står där; kanske den om Florida.\\n\\n14\\n0:1:52 --> 0:2:4\\nMan kan studera artikeln om Florida, dess historik,\\nkanske visa hur man redigerar artiklar på Wikipedia\\neller något annat intressant.\\n\\n15\\n0:2:4 --> 0:2:11\\nI historiken ser vi vem som senast var inne och ändrade i\\nartikeln.\\n\\n16\\n0:2:11 --> 0:2:26\\nOch det verkar ha varit TXiKiBoT, SieBot, Sertion,\\nMelancholieBot. Det är mycket bot-namn här.\\n\\n17\\n0:2:26 --> 0:2:38\\nHöstblomma var inne den 29 maj och vad var det Höstblomma \\nändrade i artikeln om Florida?\\n\\n18\\n0:2:38 --> 0:2:48\\nDet var ju lite vandalisering som återställdes. Någon hade\\nskrivit in \"nu kmr jag och tar er\" och det tog Höstblomma bort.\\nDet var ju bra.\\n\\n19\\n0:2:48 --> 0:2:59\\nNär vi är färdiga med att visa vad vi ville göra en film om,\\nkan vi stänga programmet, som vi visade.\\n\\n20\\n0:2:59 --> 0:3:5\\nOch då kommer vi tillbaks till terminalen. Här kör\\nRecordMyDesktop\\n\\n21\\n0:3:5 --> 0:3:14\\noch nu behöver vi bara trycka ctrl-C, så stängs inspelningen av\\noch så kodas filen och sparas som out.ogv.',\n", + " 'bytes': 2638,\n", + " 'sha1': 'k8rn1ong7jrhfc36loenz9jw39arh1g',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49694927,\n", + " 'timestamp': '2011-02-12T20:57:58Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13283470,\n", + " 'title': 'CamStudio tutorial.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 0:0:0 --> 0:0:8 CamStudio is an open source screencasting application. 2 0:0:8 --> 0:0:17 First, I recommend setting the region to full screen. You can also sel...'\",\n", + " 'text': \"1\\n0:0:0 --> 0:0:8\\nCamStudio is an open source screencasting application.\\n\\n2\\n0:0:8 --> 0:0:17\\nFirst, I recommend setting the region to full screen.\\nYou can also select a fixed region.\\n\\n3\\n0:0:17 --> 0:0:25\\nI also recommend going into Options : Keyboard shortcuts\\n\\n4\\n0:0:25 --> 0:0:35\\nand selecting something like Ctrl-R and Ctrl-S for\\nrecording and stopping your recording.\\n\\n5\\n0:0:35 --> 0:0:45\\nCamStudio is easy to use.\\nTo begin your recording, press the red button or use the keyboard shortcut.\\n\\n6\\n0:0:45 --> 0:0:53\\nNow, whatever you do, like moving your mouse,\\nit will record it on the screen as well as\\nwhatever you say into your microphone.\\n\\n7\\n0:0:53 --> 0:1:0\\nWhen you're done, press the stop button or hit your quick key.\\n\\n8\\n0:1:0 --> 0:1:8\\nAfter that you need to save the file for later playback.\",\n", + " 'bytes': 802,\n", + " 'sha1': 'iijx6am8youvlnu0wg8vbwglswlclqe',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49695344,\n", + " 'timestamp': '2011-02-12T21:08:50Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13283544,\n", + " 'title': 'CamStudio tutorial.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n0:0:0 --> 0:0:8\\nCamStudio är ett program med öppen källkod för att spela in skärmfilmer.\\n\\n2\\n0:0:8 --> 0:0:17\\nFörst rekommenderar jag att man sätter regionen till hela skärmen (full screen).\\nMan kan också välja en fast region (fixed region).\\n\\n3\\n0:0:17 --> 0:0:25\\nJag rekommenderar också att man går till Options : Keyboard shortcuts (snabbtangenter)\\n\\n4\\n0:0:25 --> 0:0:35\\noch väljer exempelvis Ctrl-R och Ctrl-S för\\natt starta och avsluta inspelning.\\n\\n5\\n0:0:35 --> 0:0:45\\nCamStudio är lätt att använda.\\nFör att starta inspelning, tryck den röda knappen eller använd snabbtangenten.\\n\\n6\\n0:0:45 --> 0:0:53\\nNu kommer allt man gör, som att röra på musen,\\natt spelas in från skärmen tillsammans med\\nallt man säger i mikrofonen.\\n\\n7\\n0:0:53 --> 0:1:0\\nNär man är klar, trycker man på stoppknappen eller på snabbtangenten.\\n\\n8\\n0:1:0 --> 0:1:8\\nEfter det behöver man bara spara filen, så den kan spelas upp på nytt.',\n", + " 'bytes': 934,\n", + " 'sha1': 'g2kyaycoe8zwk6hilx2tej8o0iv23nd',\n", + " 'parent_id': 49695284,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49838527,\n", + " 'timestamp': '2011-02-15T21:37:47Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13312440,\n", + " 'title': 'Folgers.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '0\\n00:00:01,707 --> 00:00:04,154\\nHarold smakar kaffet som det ska?\\n\\n1\\n00:00:04,169 --> 00:00:05,185\\nuh-uhmmm\\n\\n2\\n00:00:05,005 --> 00:00:07,785\\nMenar du att det är lika illa som igår?\\n\\n3\\n00:00:07,785 --> 00:00:08,962\\nuh-huh\\n\\n4\\n00:00:09 --> 00:00:10,169\\nIngen förbättring alls?\\n\\n5\\n00:00:10,446 --> 00:00:11,823\\nuh-uh\\n\\n6\\n00:00:12,002 --> 00:00:17\\nHarold, skaka inte bara på huvudet, <br>\\ndu måste berätta vad som är fel med kaffet.\\n\\n7\\n00:00:17,538 --> 00:00:19\\nDålig smak\\n\\n8\\n00:00:19,477 --> 00:00:21,002\\nMen vad ska jag ta mig till?\\n\\n9\\n00:00:21,623 --> 00:00:23,005\\nNämen Mary, hej\\n\\n10\\n00:00:23,007 --> 00:00:25\\nHallå Jane\\n\\n11\\n00:00:25,038 --> 00:00:29,246\\nDu måste hjälpa mig, Harold hatar mitt kaffe. Vilken sort använder du?\\n\\n12\\n00:00:30 --> 00:00:31\\nFolgers snabbkaffe\\n\\n13\\n00:00:31 --> 00:00:32\\nFolgers snabbkaffe?\\n\\n14\\n00:00:32,002 --> 00:00:34\\nDet smakar lika gott som färskbryggt\\n\\n15\\n00:00:34,002 --> 00:00:37,008\\nLika gott som färskbryggt. Det måste jag prova.\\n\\n16\\n00:00:38,725 --> 00:00:42,008\\nJean, det här kaffet smakar utmärkt, vet du det?\\n\\n17\\n00:00:42,002 --> 00:00:42,084\\num-hmmm\\n\\n18\\n00:00:43,464 --> 00:00:46\\nDet är väl inte samma sort som vi brukar ha?\\n\\n19\\n00:00:46,002 --> 00:00:46,502\\num-uhmmm\\n\\n20\\n00:00:47,148 --> 00:00:51,433\\nSkaka inte bara på huvudet, förklara varför kaffet är så gott.\\n\\n21\\n00:00:52,664 --> 00:00:54,005\\nGod smak\\n\\n22\\n00:00:55,006 --> 00:00:59\\nSmakar lika gott som färskbryggt, Folgers snabbkaffe',\n", + " 'bytes': 1456,\n", + " 'sha1': 'qwfy3qkbaaagsiqjswgy9edtmzqxep0',\n", + " 'parent_id': 49838463,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49922764,\n", + " 'timestamp': '2011-02-17T19:54:41Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13313257,\n", + " 'title': 'Män och maskiner 1936.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'de gångna åren / den gångna våren',\n", + " 'text': '1\\n0:0:2 --> 0:0:7\\nDenna film är restaurerad av Filmarkivet, Svenska Filminstitutet\\n\\n2\\n0:0:15 --> 0:0:32\\nAllmänna valmansförbundet, riksorganisationen visar\\n\\n3\\n0:0:34 --> 0:0:43\\nMän och maskiner, en Förberg-Film\\n\\n4\\n0:0:47 --> 0:0:53\\nVi har i vårt land under den gångna våren\\ngenomkämpat och övervunnit \\nden ekonomiska krisen snabbare än andra länder.\\n\\n5\\n0:0:54 --> 0:0:59\\nSocialdemokraterna påstår att det beror på\\nden förda så kallade välfärdspolitiken.\\n\\n6\\n0:1:0 --> 0:1:04\\nVi ska se hur det är med den saken.\\n\\n7\\n0:1:4 --> 0:1:9\\nDe här båda kurvorna kan klargöra det.\\n\\n8\\n0:1:9 --> 0:1:14\\nDen här visar arbetslöshetens utveckling sedan 1930.\\n\\n9\\n0:1:16 --> 0:1:21\\nOch den här lilla visar de socialdemokratiska krisarbetenas omfattning.\\n\\n10\\n0:1:22 --> 0:1:28\\nVi ser att antalet arbetslösa var högst i januari 1933.\\n\\n11\\n0:1:29 --> 0:1:35\\nOch sen började den att sjunka.\\nOch här var den i juni 1933.\\n\\n12\\n0:1:36 --> 0:1:40\\nDet var inte mindre än 40.000 färre arbetslösa då\\nän vid årets början.\\n\\n13\\n0:1:42 --> 0:1:50\\nRedan innan de socialistiska arbetena kom igång så smått i juli 1933,\\nbörjade arbetslösheten att sjunka.\\n\\n14\\n0:1:50 --> 0:1:56\\nFörst sedan näringslivet självt arbetat sig upp\\nur de värsta svårigheterna,\\nfick krisarbetena någon större omfattning.\\n\\n15\\n0:1:57 --> 0:2:3\\nDessa arbeten kan sålunda inte ha åstadkommit de bättre tiderna.\\n\\n16\\n0:2:4 --> 0:2:13\\nUnder ett år utföres enbart inom industri och hantverk\\nomkring 180 miljoner dagsverken.\\n\\n17\\n0:2:20 --> 0:2:28\\nKrisarbetena skapade under sitt första år endast något över\\n2 miljoner dagsverken.\\n\\n18\\n0:2:41 --> 0:2:49\\nMen genom långa strejer förlorade vi vid ungefär samma tid \\ndrygt 6 miljoner dagsverken.\\n\\n19\\n0:2:59 --> 0:3:3\\nAlltså, vid den tidpunkt då konjunkturförbättringen redan\\nvar i full gång här i landet,\\n\\n20\\n0:3:3 --> 0:3:8\\nkunde krisarbetena inte ens frambringa till närmelsevis\\nså många dagsverken,\\n\\n21\\n0:3:8 --> 0:3:11\\nsom ungefär samtidigt förintades genom arbetskonflikter.\\n\\n22\\n0:3:12 --> 0:3:15\\nKrisarbetena kan sålunda omöjligen ha skapat konjunkturförbättringen.\\n\\n23\\n0:3:15 --> 0:3:17\\nMen var ligger då orsaken till denna?\\n\\n24\\n0:3:17 --> 0:3:23\\nJo, hos den enskilda företagsamheten,\\ndess inneboende kraft och utvecklingsförmåga.\\n\\n25\\n0:3:23 --> 0:3:27\\nLåt oss se hur denna företagsamhet byggts upp och vuxit sig stark.\\n\\n26\\n0:3:27 --> 0:3:33\\nÅr 1914, ja, då såg de modernaste bilarna ut på det här viset.\\n\\n27\\n0:3:33 --> 0:3:37\\nDen tidens fartvidunder imponerar då inte på oss nu på 1930-talet.\\n\\n28\\n0:3:37 --> 0:3:45\\nMen då fanns det inte bättre bilar att få.\\nUtvecklingen hade inte kommit längre.\\n\\n29\\n0:3:48 --> 0:3:53\\nIdag, ett par årtionden senare, bygger vi själva bilar här i landet.\\n\\n30\\n0:3:53 --> 0:3:56\\nBilar, som tävlar med världens främsta märken.\\n\\n31\\n0:3:56 --> 0:4:2\\nUtvecklingen har gått fram med rasande fart.\\n\\n32\\n0:4:7 --> 0:4:12\\nSå sent som 1905 fanns endast 200 bilar i Sverige.\\n\\n33\\n0:4:12 --> 0:4:15\\nNu ser vi över 200.000 gå på våra gator och vägar.\\n\\n34\\n0:4:15 --> 0:4:18\\nBilen håller på att bli var mans egendom\\n\\n35\\n0:4:18 --> 0:4:22\\noch är redan ett av våra allra viktigaste kommunikationsmedel.\\n\\n36\\n0:4:22 --> 0:4:26\\nSå är det på alla områden.\\nDen tekniska utvecklingen har varit fantastisk.\\n\\n37\\n0:4:26 --> 0:4:31\\nSe till exempel på telefonen.\\nDet var en svensk som löste automattelefonens problem.\\n\\n38\\n0:4:31 --> 0:4:35\\nInvecklade apparater fullgör\\nsnabbt sina uppgifter så snart vi slår an ett nummer.\\n\\n39\\n0:4:35 --> 0:4:41\\nOch både själva telefonen och automatstationens utrustning\\ngöras här i landet.\\n\\n40\\n0:4:41 --> 0:4:45\\nSvenska arbetare får sysselsättning genom en svensk uppfinning\\n\\n41\\n0:4:45 --> 0:4:50\\noch över hela världen beundras de svenska anläggningarna.\\n\\n42\\n0:4:54 --> 0:4:58\\nNu för tiden gör vi också våra egna radioapparater.\\n\\n43\\n0:4:58 --> 0:5:4\\nRadion har blivit en samhällsinstitution,\\nfrån att för något mer än tio år sedan ha\\nvarit en lyxartikel.\\n\\n44\\n0:5:5 --> 0:5:11\\nDet var ju inte så länge sedan de första regelbundna radioprogrammen\\nsändes ut här i landet.\\n\\n45\\n0:5:22 --> 0:5:26\\nLyssna på högtalaren:\\nDrivkraften i de senaste årtiondenas\\n\\n46\\n0:5:26 --> 0:5:32\\nutomordentligt snabba utveckling\\npå teknikens och näringslivets områden\\n\\n47\\n0:5:32 --> 0:5:38\\nhar varit den enskilda företagsamheten,\\ndugligheten, initiativkraften och framåtandan.\\n\\n48\\n0:5:40 --> 0:5:45\\nJa, den enskilda företagsamheten är framåtskridandets\\nviktigaste förutsättning.\\n\\n49\\n0:5:45 --> 0:5:50\\nÅr 1864 lagfästes näringsfriheten i Sverige.\\n\\n50\\n0:5:50 --> 0:5:54\\nSkråtvångets bojor löstes och den moderna tiden gick in.\\n\\n51\\n0:5:54 --> 0:5:59\\nVårt lands utveckling till en av världens\\nfrämsta nationer kunde börja.\\n\\n52\\n0:5:59 --> 0:6:4\\nNya företag bildades och utvecklades.\\nLandets välstånd ökades allt mera.\\n\\n53\\n0:6:4 --> 0:6:11\\nUnder 100 år har värdet av industrins årliga produktion\\nökat från 20 till 4000 miljoner kronor.\\n\\n54\\n0:6:11 --> 0:6:15\\nIndustrins avkastning har blivit 200 gånger så stor.\\n\\n55\\n0:6:16 --> 0:6:20\\nMaskinerna har skapat nya möjligheter att finna ett levebröd.\\n\\n56\\n0:6:20 --> 0:6:25\\nFör hundra år sedan sysselsatte industrin 15.000 man.\\n\\n57\\n0:6:25 --> 0:6:32\\nNu, idag, ger den arbete åt över 800.000.\\n\\n58\\n0:7:1 --> 0:7:5\\nDen svenska arbetaren har mer än sina kamrater i andra länder\\n\\n59\\n0:7:5 --> 0:7:10\\nfått dra nytta av utvecklingens frukter.\\n\\n60\\n0:7:25 --> 0:7:30\\nVåra arbetares höga levnadsstandard förvånar\\nalla utländska besökare.\\n\\n61\\n0:7:31 --> 0:7:36\\nOch de säger att vi är ett lyckligt och rikt folk\\ni jämförelse med andra nationer.\\n\\n62\\n0:7:37 --> 0:7:44 \\nTack vare vårt folks goda egenskaper kan vårt lilla land,\\nhär uppe i Norden, gläda sig åt\\n\\n63\\n0:7:44 --> 0:7:53\\natt inom sina gränser hysa ett stort antal ansedda världsindustrier,\\nsom med framgång kämpar på de internationella marknaderna.\\n\\n64\\n0:8:00 --> 0:8:06\\nSeparatorn är en sådan svenk världsartikel.\\nKänd överallt, säljs den också överallt.\\n\\n65\\n0:8:6 --> 0:8:11\\nDet är en svensk exportindustri,\\nsom helt vilar på en enskild mans uppfinning.\\n\\n66\\n0:8:18 --> 0:8:22\\nDynamiten, Nobels upptäckt, röjer nu vägar och spränger berg.\\n\\n67\\n0:8:22 --> 0:8:29\\nOch med dess hjälp har människan övervunnit\\nmånga svårigheter som naturen lagt i hennes väg.\\n\\n68\\n0:8:31 --> 0:8:36\\nOch vår svenska järnindustri, den har inte bara den svenska malmen\\natt tacka för sitt stora anseende\\n\\n69\\n0:8:36 --> 0:8:43\\nhos de flesta fabriker jorden runt\\nsom behöver fullgod vara.\\n\\n70\\n0:9:05 --> 0:9:10\\nBearbetning av kvalitetsstål\\nhar nått oerhört långt här.\\n\\n71\\n0:9:10 --> 0:9:13\\nOch vi framställer stålkvaliteter som betalas högre än rent guld.\\n\\n72\\n0:9:13 --> 0:9:19\\nDet är enskild företagsamhet som drivit fram dessa kvalitetsprodukter.\\n\\n73\\n0:9:19 --> 0:9:23\\nStora resurser står till förfogande i våra järnverk.\\n\\n74\\n0:9:23 --> 0:9:28\\nSe bara på ugnarna eller stålpressen, i obändig kraft forma den\\nvitglödgade metallen.\\n\\n75\\n0:9:29 --> 0:9:33\\nAllt detta vi ser, är följden av en fruktbärande samverkan\\n\\n76\\n0:9:33 --> 0:9:41\\nmellan kunniga arbetare, skickliga ingenjörer\\noch framsynta industriledare.\\n\\n77\\n0:9:47 --> 0:9:53\\nDet visar sig samma sak på andra områden.\\nHär i Sverige framställer vi nu till och med guld.\\n\\n78\\n0:9:53 --> 0:9:59\\nBoliden-fältet upptäcktes genom den genialiska\\nelektriska malmletningsmetoden.\\n\\n79\\n0:9:59 --> 0:10:5\\nMen man fann att det var omöjligt att med vanliga metoder\\nutvinna något guld ur malmen.\\n\\n80\\n0:10:5 --> 0:10:11\\nForskarna sattes i arbete, man lade ner stora summor,\\noch -- lyckades!\\n\\n81\\n0:10:11 --> 0:10:15\\nDet stora smältverket i Rönnskär,\\ndet enda i sitt slag i hela världen,\\n\\n82\\n0:10:15 --> 0:10:23\\nutvinner nu många tackor guld årligen.\\nEn triumf för svensk vetenskap och seg uthållighet.\\n\\n83\\n0:10:24 --> 0:10:29\\nHögt uppe i Norrland smälter snön undan.\\nVåren kommer.\\n\\n84\\n0:10:29 --> 0:10:36\\nBäckarna sväller ut till åar och floder.\\n\\n85\\n0:10:37 --> 0:10:41\\nI Sverige använder vi de snabba, brusande floderna\\nför transportmedel\\n\\n86\\n0:10:41 --> 0:10:45\\nför alla de trädstammar som årligen fällas i skogarna.\\n\\n87\\n0:10:45 --> 0:10:53\\nEnskilda företagare har här utnyttjat naturens förutsättningar\\noch skapat världens längsta flottleder.\\n\\n88\\n0:10:54 --> 0:11:00\\nOch skarpsinniga män har öppnat nya möjligheter\\natt förvandla våra skogar till nyttiga produkter.\\n\\n89\\n0:12:13 --> 0:12:20\\nCellulosaindustrin, som bland annat levererar\\nråmaterialet till en stor del av världens konstsilkeproduktion,\\n\\n90\\n0:12:20 --> 0:12:26\\nbygger huvudsakligast sitt arbete på svenska uppfinningar.\\n\\n91\\n0:12:26 --> 0:12:29\\nOch det gör även papersmasseindustrin.\\n\\n92\\n0:12:29 --> 0:12:35\\nTillsammans hör dessa båda till våra allra viktigaste industrier.\\n\\n93\\n0:12:46 --> 0:12:51\\nDe svenska AGA-fyrarna är en ensam mans\\nutomordentliga uppfinnararbete.\\n\\n94\\n0:12:51 --> 0:12:54\\nOch likaså de svenska kullagren,\\n\\n95\\n0:12:54 --> 0:12:58\\nvilka anses vara de bästa som man överhuvudtaget kan få.\\n\\n96\\n0:13:00 --> 0:13:4\\nStora verkstadsindustrier har vi\\noch båtvarven är välkända.\\n\\n97\\n0:13:5 --> 0:13:8\\nDet är många utländska rederier som vända sig\\ntill vårt land\\n\\n98\\n0:13:8 --> 0:13:12\\nför att vara säkra på att få ut ett fullgott arbete.\\n\\n99\\n0:13:24 --> 0:13:29\\nDen svenska arbetaren har en stor andel\\ni vår industris gynnsamma utveckling.\\n\\n100\\n0:13:29 --> 0:13:34\\nHans yrkesskicklighet, hans mekaniska begåvning\\noch noggrannhet\\n\\n101\\n0:13:34 --> 0:13:40\\nhar gjort de produkter, som han varit med om att tillverka\\nmycket efterfrågade på världsmarknaden.\\n\\n102\\n0:13:40 --> 0:13:44\\nSvenskt arbete är kvalitetsarbete.\\n\\n103\\n0:13:44 --> 0:13:48\\nDärför har också våra svenska arbetare\\nnått en så hög levnadsstandard,\\n\\n104\\n0:13:48 --> 0:13:58\\natt många andra länders arbetare\\nmed avund betraktar hans ekonomiskt och socialt goda ställning.\\n\\n105\\n0:14:26 --> 0:14:31\\nIndustrins uppsving började då näringsfriheten infördes.\\n\\n106\\n0:14:31 --> 0:14:35\\nDen enskilda företagsamheten har fört utvecklingen framåt\\n\\n107\\n0:14:35 --> 0:14:39\\noch visat en enastående motståndskraft\\nunder de oerhörda ekonomiska påfrestningar \\n\\n108\\n0:14:39 --> 0:14:42\\nsom följt efter världskriget.\\n\\n109\\n0:14:42 --> 0:14:50\\nDet är denna företagsamhet som lagt den ekonomiska grunden\\ntill våra dagars Sverige.\\n\\n110\\n0:14:50 --> 0:14:53\\nLåt oss alla arbeta vidare.\\n\\n111\\n0:14:53 --> 0:14:59\\nLåt oss tillsammans sträva efter att ytterligare\\nföra Sveriges näringsliv framåt och uppåt.\\n\\n112\\n0:14:59 --> 0:15:2\\nDet är på dess framgång vår egen framtid beror.\\n\\n113\\n0:15:2 --> 0:15:7\\nArbetet adlar mannen.\\nArbete ger bröd och försörjning.\\n\\n114\\n0:15:7 --> 0:15:13\\nEtt fritt och starkt näringsliv\\nskapar också politisk och ekonomisk frihet\\n\\n115\\n0:15:13 --> 0:15:16\\noch den bygger på framåtskridandet.\\n\\n116\\n0:15:17 --> 0:15:21\\nVärna vår enskilda företagsamhet.\\n\\n117\\n0:15:21 --> 0:15:27\\nFölj den svenska högern i dess strävan\\nför att skapa ett fritt och lyckligt folk.\\n\\n118\\n0:15:27 --> 0:15:36\\nFölj svensk samling för frihet och framåtskridande.',\n", + " 'bytes': 11135,\n", + " 'sha1': 'rc51aza4zht7jpb4x6i7qktchkunfqd',\n", + " 'parent_id': 49873468,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 49890840,\n", + " 'timestamp': '2011-02-16T23:16:06Z',\n", + " 'user': {'id': 2419, 'text': 'LA2'},\n", + " 'page': {'id': 13330572,\n", + " 'title': 'Paramountjournalen 1925-09-07.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 0:0:0 --> 0:0:4 Paramountjournalen 1925. Journal (31 augusti-7 september) 2 0:0:4 --> 0:0:9 Skandalhuset vid Roslagstorg har nu äntligen definitivt skattat åt...'\",\n", + " 'text': '1\\n0:0:0 --> 0:0:4\\nParamountjournalen 1925.\\nJournal (31 augusti-7 september)\\n\\n2\\n0:0:4 --> 0:0:9\\nSkandalhuset vid Roslagstorg har nu\\näntligen definitivt skattat åt förgängelsen\\ntill gatutrafikanternas lättnad.\\n\\n3\\n0:0:28 --> 0:0:33\\nRullstolsmannen Herr Alfred Witt, som\\ntillryggalagt sträckan Sthlm - Malmö -\\nGöteborg - Sthlm i rullstol.\\n\\n4\\n0:1:9 --> 0:1:14\\nHerr Witt slår läger efter en ansträngande dag.\\n\\n5\\n0:1:44 --> 0:1:49\\nEfter vilan fortsätter färden.\\n\\n6\\n0:2:13 --> 0:2:18\\nÅterkomst till Stockholm.\\n\\n7\\n0:2:22 --> 0:2:27\\nNoaks ark -\\nDet nya djurhuset på Skansen har nyligen\\nblivit färdigt att tagas i bruk.\\n\\n8\\n0:3:20 --> 0:3:30\\nJack Townsend, den amerikanske boxaren\\nanländer till Stockholm för att utkämpa en\\nmatch mot Karl Jonsson (Kalle Masen).\\nMatchen slutade med svenskens nederlag på knock out i första ronden.\\n\\n9\\n0:4:9 --> 0:4:14\\nKalle tränar.\\n\\n10\\n0:4:51 --> 0:4:56\\nKalle Masen och hans tränare Arthur Ahl.\\n\\n11\\n0:5:0 --> 0:5:8\\nEtt egendomligt fartyg \"Sandsugaren\" på\\nbesök i Stockholm (suger slam och sand\\nfrån sjöbotten där djupet behöver ökas).\\n\\n12\\n0:5:56 --> 0:6:3\\nSöndagen den 6 september - Svenska\\nMotorklubbens hastighetstävlingar på\\nÖstermalms Idrottsplats.\\n\\n13\\n0:7:16 --> 0:7:25\\n6-dagarsloppets avslutning:\\nCyklisternas passage genom Ljungby,\\nvid målet i Fittja,\\nSven Johansson, segrare på sista etappen\\noch i B-klassen,\\nRagnar Malm vann det krävande loppet,\\ncyklisterna passera Skeppsbron,\\nankomst till Stadion.',\n", + " 'bytes': 1466,\n", + " 'sha1': 'p8c1i0dcrncfz7wrglp52ieowefgbeg',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 50405720,\n", + " 'timestamp': '2011-02-22T18:54:33Z',\n", + " 'user': {'text': '190.127.249.124'},\n", + " 'page': {'id': 13665384,\n", + " 'title': 'Elephants Dream (high quality).ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:15,042 --> 00:00:18,042 A la izquierda podemos ver... 2 00:00:18,750 --> 00:00:20,333 A la derecha podemos ver las... 3 00:00:20,417 --> 00:00...'\",\n", + " 'text': '1 \\n00:00:15,042 --> 00:00:18,042 \\nA la izquierda podemos ver...\\n\\n2 \\n00:00:18,750 --> 00:00:20,333 \\nA la derecha podemos ver las...\\n\\n3 \\n00:00:20,417 --> 00:00:21,917 \\n...las corta cabezas.\\n\\n4 \\n00:00:22,000 --> 00:00:24,625 \\nTodo es seguro. Perfectamente seguro.\\n\\n5 \\n00:00:26,333 --> 00:00:27,333 \\n¿Emo?\\n\\n6 \\n00:00:28,875 --> 00:00:30,250 \\n¡Cuidado!\\n\\n7 \\n00:00:47,125 --> 00:00:48,250 \\n¿Te lastimaste?\\n\\n8 \\n00:00:51,917 --> 00:00:53,917 \\nCreo que no... ¿y tú?\\n\\n9 \\n00:00:55,625 --> 00:00:57,125 \\nEstoy bien.\\n\\n10 \\n00:00:57,583 --> 00:01:01,667 \\nLevántate. Emo, no es seguro aquÃ\\xad.\\n\\n11 \\n00:01:02,208 --> 00:01:03,667 \\nVámonos.\\n\\n12 \\n00:01:03,750 --> 00:01:05,750 \\n¿Ahora qué?\\n\\n13 \\n00:01:05,875 --> 00:01:07,875 \\n¡Ya verás!\\n\\n14 \\n00:01:16,167 --> 00:01:18,375 \\nEmo. ¡Por aquÃ\\xad!\\n\\n15 \\n00:01:34,958 --> 00:01:35,792 \\n¡SÃ\\xadgueme!\\n\\n16 \\n00:02:11,583 --> 00:02:12,792 \\n¡Corre Emo!\\n\\n17 \\n00:02:48,375 --> 00:02:50,083 \\n¡No estás poniendo atención!\\n\\n18 \\n00:02:50,750 --> 00:02:54,500 \\nSolo quiero contestar el... ...teléfono.\\n\\n19 \\n00:02:55,000 --> 00:02:58,208 \\nEmo, mira, digo, escucha.\\n\\n20 \\n00:02:59,750 --> 00:03:02,292 \\nTienes que aprender a escuchar.\\n\\n21 \\n00:03:03,625 --> 00:03:05,125 \\nEsto no es un juego.\\n\\n22 \\n00:03:06,167 --> 00:03:08,750 \\nTú, nosotros, podemos morir fácilmente aquÃ\\xad afuera.\\n\\n23 \\n00:03:10,208 --> 00:03:14,125 \\nEscucha... los sonidos de la máquina.\\n\\n24 \\n00:03:18,333 --> 00:03:20,417 \\nEscucha tu respiración.\\n\\n25 \\n00:04:27,208 --> 00:04:29,250 \\n¿Y nunca te aburres de esto?\\n\\n26 \\n00:04:29,583 --> 00:04:31,083 \\n¿¡¿Aburrirme?!?\\n\\n27 \\n00:04:31,750 --> 00:04:34,667 \\nLa máquina es como un reloj.\\n\\n28 \\n00:04:35,500 --> 00:04:37,708 \\nUn movimiento fuera de lugar...\\n\\n29 \\n00:04:37,833 --> 00:04:39,792 \\n...y quedarás hecho polvo.\\n\\n30 \\n00:04:41,042 --> 00:04:42,375 \\n¿Pero no es -\\n\\n31 \\n00:04:42,417 --> 00:04:46,542 \\n¡Polvo, Emo! ¿Es eso lo que quieres? ¿Polvo?\\n\\n32 \\n00:04:48,083 --> 00:04:50,000 \\n¿Tu propósito en la vida?\\n\\n33 \\n00:04:50,583 --> 00:04:52,250 \\nPolvo.\\n\\n34 \\n00:05:41,833 --> 00:05:43,458 \\nEmo, cierra tus ojos.\\n\\n35 \\n00:05:44,917 --> 00:05:46,583 \\n¿Porqué? - ¡Ahora!\\n\\n36 \\n00:05:53,750 --> 00:05:56,042 \\nBien.\\n\\n37 \\n00:05:59,542 --> 00:06:02,792 \\n¿Que es lo que ves a tu izquierda Emo?\\n\\n38 \\n00:06:04,417 --> 00:06:06,000 \\nNada. - ¿De veras?\\n\\n39 \\n00:06:06,333 --> 00:06:07,917 \\nNo hay nada.\\n\\n40 \\n00:06:08,042 --> 00:06:12,417 \\nY a tu derecha, ¿qué es lo que ves a tu derecha Emo?\\n\\n41 \\n00:06:13,875 --> 00:06:16,917 \\nLo mismo Proog, exactamente lo mismo...\\n\\n42 \\n00:06:17,083 --> 00:06:18,583 \\n¡Nada!\\n\\n43 \\n00:06:40,625 --> 00:06:42,958 \\n¡Escucha Proog! ¡Escuchas eso!\\n\\n44 \\n00:06:43,625 --> 00:06:45,042 \\n¿Podemos ir aquÃ\\xad?\\n\\n45 \\n00:06:45,208 --> 00:06:48,042 \\n¿AllÃ\\xad? No es seguro.\\n\\n46 \\n00:06:49,917 --> 00:06:52,500 \\nPero... - Créeme, no lo es.\\n\\n47 \\n00:06:53,292 --> 00:06:54,792 \\nTalvez yo podrÃ\\xada...\\n\\n48 \\n00:06:54,833 --> 00:06:56,333 \\nNo.\\n\\n49 \\n00:06:57,667 --> 00:07:00,167 \\nNO!\\n\\n50 \\n00:07:00,875 --> 00:07:03,750 \\n¿Alguna otra pregunta Emo?\\n\\n51 \\n00:07:04,250 --> 00:07:05,917 \\nNo.\\n\\n52 \\n00:07:09,458 --> 00:07:10,833 \\n¿Emo?\\n\\n53 \\n00:07:11,875 --> 00:07:13,542 \\nEmo, ¿porqué...\\n\\n54 \\n00:07:13,583 --> 00:07:14,458 \\nEmo...\\n\\n55 \\n00:07:14,500 --> 00:07:18,500 \\n...¿porqué no puedes ver la belleza de este lugar?\\n\\n56 \\n00:07:18,833 --> 00:07:20,750 \\nComo funciona.\\n\\n57 \\n00:07:20,875 --> 00:07:24,000 \\nQué tan perfecto es.\\n\\n58 \\n00:07:24,083 --> 00:07:27,417 \\nNo, Proog, no lo veo.\\n\\n59 \\n00:07:27,542 --> 00:07:30,333 \\nNo lo veo porque no hay nada allÃ\\xad.\\n\\n60 \\n00:07:31,500 --> 00:07:35,333 \\n¿Y porqué debo confiar mi vida a algo que no esta allÃ\\xad?\\n\\n61 \\n00:07:35,583 --> 00:07:37,125 \\nBueno ¿puedes decirme eso?\\n\\n62 \\n00:07:37,500 --> 00:07:39,167 \\nContéstame.\\n\\n63 \\n00:07:43,208 --> 00:07:44,583 \\nProog...\\n\\n64 \\n00:07:45,500 --> 00:07:47,333 \\nEstás enfermo, hombre.\\n\\n65 \\n00:07:47,375 --> 00:07:49,208 \\nAléjate de mÃ\\xad.\\n\\n66 \\n00:07:52,583 --> 00:07:55,083 \\n¡No! ¡Emo! ¡Es una trampa!\\n\\n67 \\n00:07:55,833 --> 00:07:57,167 \\nEs una trampa.\\n\\n68 \\n00:07:57,208 --> 00:08:01,750 \\nA tu izquierda puedes ver... ¡Los jardines colgantes de Babilonia!\\n\\n69 \\n00:08:02,250 --> 00:08:04,292 \\n¿Cómo te parece para una trampa?\\n\\n70 \\n00:08:05,458 --> 00:08:07,125 \\nNo, Emo.\\n\\n71 \\n00:08:09,417 --> 00:08:12,792 \\nA tu derecha puedes ver... ...¿Adivina qué? ...\\n\\n72 \\n00:08:13,000 --> 00:08:14,750 \\n...¡El coloso de Rodas!\\n\\n73 \\n00:08:15,833 --> 00:08:16,708 \\n¡No!\\n\\n74 \\n00:08:16,750 --> 00:08:22,167 \\nEl coloso de Rodas y esta aquÃ\\xad solo para ti Proog.\\n\\n75 \\n00:08:51,333 --> 00:08:53,167 \\nSÃ\\xad esta allÃ\\xad...\\n\\n76 \\n00:08:53,208 --> 00:08:55,500 \\nTe estoy diciendo, Emo...\\n\\n77 \\n00:08:57,333 --> 00:09:00,000 \\n...lo es.',\n", + " 'bytes': 4818,\n", + " 'sha1': 'bm3ubapxr72ujlcnxlqp6dpgmbicgje',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 149080111,\n", + " 'timestamp': '2015-02-05T20:54:59Z',\n", + " 'user': {'id': 4514061, 'text': 'JTaylor2014-15'},\n", + " 'page': {'id': 14621457,\n", + " 'title': 'Robert Goddard footage.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:01,201 --> 00:00:07,474\\nRobert Goddard, the American rocket pioneer - yanking inventor, dreamer.\\n\\n2\\n00:00:07,474 --> 00:00:11,911\\nThey call him the moon man and laughed, but on his own he went ahead\\n\\n3\\n00:00:11,911 --> 00:00:16,182\\ndesigning, inventing, and testing.\\n\\n4\\n00:00:16,182 --> 00:00:23,223\\nHis first proving grounds were on his Aunt Effie`s farm in Auburn, Massachusetts.\\n\\n5\\n00:00:23,223 --> 00:00:28,728\\nThe neighbors complained.\\n\\n6\\n00:00:28,728 --> 00:00:32,232\\nWith a grant from Daniel Guggenheim he moved to New Mexico,\\n\\n7\\n00:00:32,232 --> 00:00:35,702\\nwith his wife Esther who was also his camera woman.\\n\\n8\\n00:00:35,702 --> 00:00:39,305\\nGoddard had invented and launched the world's first liquid propellant\\n\\n9\\n00:00:39,305 --> 00:00:44,711\\nrocket in 1926, and in the end he accumulated more than 200 patents\\n\\n10\\n00:00:44,711 --> 00:00:46,613\\nfor everything from multi-staged\\n\\n11\\n00:00:46,613 --> 00:00:52,328\\nrockets to fuel pumps and clustered engines\\n\\n12\\n00:01:09,636 --> 00:01:14,007\\nBy the year 1930 his rockets achieved a speed of 500 miles per hour\\n\\n13\\n00:01:14,007 --> 00:01:17,671\\nand an altitude of 2000 feet.\\n\\n14\\n00:01:19,579 --> 00:01:26,695\\nThis was the year in which the three Apollo astronauts were born.\\n\\n15\\n00:01:27,787 --> 00:01:31,624\\nGoddard had a vision of the Age of Space, but the world was too slow\\n\\n16\\n00:01:31,624 --> 00:01:37,419\\nto make it happen before his death.\\n\\n17\\n00:01:40,849 --> 00:01:43,002\\nThank you, Robert Goddard, for your inventiveness,\\n\\n18\\n00:01:43,002 --> 00:01:46,206\\nand perseverance!\",\n", + " 'bytes': 1551,\n", + " 'sha1': '2i4y1s2i6s25iy3aj3b3qh1fuj5h7d1',\n", + " 'parent_id': 149079797,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 52049838,\n", + " 'timestamp': '2011-03-16T16:32:21Z',\n", + " 'user': {'id': 6282, 'text': 'Longbow4u'},\n", + " 'page': {'id': 14621580,\n", + " 'title': 'Robert Goddard footage.ogg.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'typo',\n", + " 'text': '1\\n00:00:01,201 --> 00:00:07,474\\nRobert Goddard, der amerikanische Raketenpionier - mitreißender Erfinder, Visionär\\n\\n2\\n00:00:07,474 --> 00:00:11,911\\nSie nannten ihn den Mondmenschen und lachten, aber er machte allein weiter damit\\n\\n3\\n00:00:11,911 --> 00:00:16,182\\nzu entwerfen, zu erfinden und zu testen\\n\\n4\\n00:00:16,182 --> 00:00:23,223\\nSein erstes Testgelände war auf der Farm seiner Tante Effie in Auburn, Massachusetts\\n\\n5\\n00:00:23,223 --> 00:00:28,728\\ndie Nachbarn beklagten sich\\n\\n6\\n00:00:28,728 --> 00:00:32,232\\nmit Fordermitteln von Daniel Gugenheim zog er nach New Mexico\\n\\n7\\n00:00:32,232 --> 00:00:35,702\\nmit seiner Frau Esther, die auch seine Kamerafrau war\\n\\n8\\n00:00:35,702 --> 00:00:39,305\\nGoddard hatte die weltweit erste Flüssigtreibstoffrakete im Jahr 1926\\n\\n9\\n00:00:39,305 --> 00:00:44,711\\nerfunden und gestartet, und am Ende sammelte er mehr als 200 Patente\\n\\n10\\n00:00:44,711 --> 00:00:46,613\\nfür alles, von mehrstufigen\\n\\n11\\n00:00:46,613 --> 00:00:52,328\\nRaketen, Treibstoffpumpen bis zu aneinandergereihten Düsen\\n\\n12\\n00:01:09,636 --> 00:01:14,007\\nBis zum Jahr 1930 erreichten seine Raketen Geschwindigkeiten von 500 Meilen pro Stunde\\n\\n13\\n00:01:14,007 --> 00:01:17,671\\nund eine Höhe von 2000 Fuß\\n\\n14\\n00:01:19,579 --> 00:01:26,695\\nDies war das Jahr, in dem die drei Apollo-Astronauten geboren wurden\\n\\n15\\n00:01:27,787 --> 00:01:31,624\\nGoddard hatte eine Vision des Raumzeitalters, aber die Welt war zu langsam\\n\\n16\\n00:01:31,624 --> 00:01:37,419\\ndiese vor seinem Tod zu verwirklichen\\n\\n17\\n00:01:40,849 --> 00:01:43,002\\nVielen Dank, Robert Goddard, für Ihren Erfindungsgeist\\n\\n18\\n00:01:43,002 --> 00:01:46,206\\nund Ihre Ausdauer!',\n", + " 'bytes': 1639,\n", + " 'sha1': 's4qavep1olv0yfm05t582gh8najonty',\n", + " 'parent_id': 52049819,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 52050674,\n", + " 'timestamp': '2011-03-16T17:04:46Z',\n", + " 'user': {'id': 6282, 'text': 'Longbow4u'},\n", + " 'page': {'id': 14621816,\n", + " 'title': 'January 2009 ISS tour.ogg.undefined.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Edited subtitles using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': \"1\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n20th of January of 2009\\n\\n2\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand magically on our schedules, and\\n\\n3\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsomething popped up, and there was\\n\\n4\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nwas this video\\n\\n5\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ntour of the International Space Station\\n\\n6\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand what that means is that you are getting\\n\\n7\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthe straight skinny, the dirty laundry\\n\\n8\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand everything, we didn't have a chance to clean up\\n\\n9\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand also we are in the middle of re-modelling\\n\\n10\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nSTS-121, also known as\\n\\n11\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthe UF2 mission came up\\n\\n12\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nabout 6 or 7 weeks ago, and\\n\\n13\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nwe are still putting everything\\n\\n14\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ntogehter, putting it away\\n\\n15\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nso things are a little bit cluttered\\n\\n16\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nup here, certainly not dirty, we clean\\n\\n17\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nit all the time\\n\\n18\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nbut it's a little bit cluttered\\n\\n19\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nso you gonna get a chance to see that\\n\\n20\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nbut along the way you get to see real life\\n\\n21\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nof what the International Space Station is like\\n\\n22\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand you can see how proud I am \\n\\n23\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nmy crew is and the entire space station team is\\n\\n24\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nabout the beautiful International Space Station\",\n", + " 'bytes': 1602,\n", + " 'sha1': 'er0gmb22rpt41ppdbrnkz6iexf3qn5b',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 141048372,\n", + " 'timestamp': '2014-11-30T15:45:08Z',\n", + " 'user': {'text': '2.111.239.189'},\n", + " 'page': {'id': 14621962,\n", + " 'title': 'January 2009 ISS tour.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n20th of January of 2009\\n\\n2\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand magically on our schedules, and\\n\\n3\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsomething popped up, and there was \\n\\n4\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nalot of hype cause trick opened the gates,\\n\\n5\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ntour of the International Space Station\\n\\n6\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand what that means is that you are getting\\n\\n7\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthe straight skinny, the dirty laundry\\n\\n8\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand everything, we didn't have a chance to clean up\\n\\n9\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand also we are in the middle of re-modelling\\n\\n10\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nSTS-121, also known as\\n\\n11\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthe UF2 mission came up\\n\\n12\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nabout 6 or 7 weeks ago, and\\n\\n13\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nwe are still putting everything\\n\\n14\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ntogehter, putting it away\\n\\n15\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nso things are a little bit cluttered\\n\\n16\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nup here, certainly not dirty, we clean\\n\\n17\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nit all the time\\n\\n18\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nbut it's a little bit cluttered\\n\\n19\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nso you gonna get a chance to see that\\n\\n20\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nbut along the way you get to see real life\\n\\n21\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nof what the International Space Station is like\\n\\n22\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand you can see how proud I am \\n\\n23\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nmy crew is and the entire space station team is\\n\\n24\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nabout the beautiful International Space Station\",\n", + " 'bytes': 1631,\n", + " 'sha1': 'lop78wbcn6b89jb6357uvtn0sbg90xa',\n", + " 'parent_id': 52051338,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 52105468,\n", + " 'timestamp': '2011-03-18T04:25:24Z',\n", + " 'user': {'text': '89.2.123.139'},\n", + " 'page': {'id': 14633770,\n", + " 'title': 'Sintel movie 720x306.ogv.tr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'This is a quick translation I had uploaded to opensubtitles.org when Sintel was released. Hope it will be useful on Wikimedia in some way.',\n", + " 'text': '1\\n\\n00:01:47,250 --> 00:01:50,500\\n\\nBu silahın karanlık bir geçmişi var.\\n\\n\\n\\n2\\n\\n00:01:51,800 --> 00:01:55,800\\n\\nÇok masum kanı dökmüş.\\n\\n\\n\\n3\\n\\n00:01:58,000 --> 00:02:01,450\\n\\nBöylesine hazırlıksız, tek başına seyahat etmen\\n\\nçılgınlık.\\n\\n\\n\\n4\\n\\n00:02:01,750 --> 00:02:04,800\\n\\nHâlâ damarlarında kanın aktığından şanslısın.\\n\\n\\n\\n5\\n\\n00:02:05,250 --> 00:02:06,300\\n\\nTeşekkürler.\\n\\n\\n\\n6\\n\\n00:02:07,500 --> 00:02:09,000\\n\\nPeki...\\n\\n\\n\\n7\\n\\n00:02:09,400 --> 00:02:13,800\\n\\nSeni muhafızların topraklarına getiren\\n\\nnedir?\\n\\n\\n\\n8\\n\\n00:02:15,000 --> 00:02:17,500\\n\\nBirini arıyorum. \\n\\n\\n\\n9\\n\\n00:02:18,000 --> 00:02:22,200\\n\\nÇok değerli birisi mi?\\n\\nÇok yakın birisi?\\n\\n\\n\\n10\\n\\n00:02:23,400 --> 00:02:25,000\\n\\nBir ejderha.\\n\\n\\n\\n11\\n\\n00:02:28,850 --> 00:02:31,750\\n\\nYalnız bir avcı için tehlikeli bir macera.\\n\\n\\n\\n12\\n\\n00:02:32,950 --> 00:02:35,870\\n\\nKendimi bildim bileli hep yanlızdım.\\n\\n\\n\\n13\\n\\n00:03:27,250 --> 00:03:30,500\\n\\nNeredeyse bitti. Şşşş...\\n\\n\\n\\n14\\n\\n00:03:30,750 --> 00:03:33,500\\n\\nHey, sakin ol.\\n\\n\\n\\n15\\n\\n00:03:48,250 --> 00:03:52,250\\n\\nİyi geceler Scales.\\n\\n\\n\\n16\\n\\n00:04:10,350 --> 00:04:13,850\\n\\nYakala onu Scales! Haydi!\\n\\n\\n\\n17\\n\\n00:04:25,250 --> 00:04:28,250\\n\\nScales?\\n\\n\\n\\n18\\n\\n00:05:04,000 --> 00:05:07,500\\n\\nEvet! Haydi!\\n\\n\\n\\n19\\n\\n00:05:38,750 --> 00:05:42,000\\n\\nScales!\\n\\n\\n\\n20\\n\\n00:07:25,850 --> 00:07:27,500\\n\\nBaşaramadım.\\n\\n\\n\\n21\\n\\n00:07:32,800 --> 00:07:36,500\\n\\nBaşaramadığın tek şey görebilmek...\\n\\n\\n\\n22\\n\\n00:07:37,800 --> 00:07:40,500\\n\\nBurası ejderha topraklarıdır, Sintel.\\n\\n\\n\\n23\\n\\n00:07:40,850 --> 00:07:44,000\\n\\nSandığından daha yakınsın.\\n\\n\\n\\n24\\n\\n00:09:17,600 --> 00:09:19,500\\n\\nScales!\\n\\n\\n\\n25\\n\\n00:10:21,600 --> 00:10:24,000\\n\\nScales?\\n\\n\\n\\n26\\n\\n00:10:26,200 --> 00:10:29,800\\n\\nScales...',\n", + " 'bytes': 1682,\n", + " 'sha1': 'ldnd7io1vimuyn6ofwsl5l11kkh4hv7',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 421310154,\n", + " 'timestamp': '2020-05-24T09:24:49Z',\n", + " 'user': {'id': 9279962, 'text': '石头疯或者仅仅是石头'},\n", + " 'page': {'id': 14640051,\n", + " 'title': 'The State of Wikipedia by JESS3.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,114 --> 00:00:05,114\\n(维基百科现况)\\n\\n<ref><!--1.1 00:00:05,414 --*> 00:00:06,414 (解说:吉米·威尔士,维基百科创始人) --> \\n\\n2\\n00:00:05,414 --> 00:00:07,800\\n(维基百科,自由的百科全书)\\n\\n3\\n00:00:07,800 --> 00:00:11,000\\n维基百科是今日互联网上最重要的网站之一\\n\\n4\\n00:00:11,000 --> 00:00:12,500\\n不过您可能会惊讶地发现\\n\\n5\\n00:00:12,500 --> 00:00:16,000\\n它原本是另一个网上百科全书的子计划\\n\\n6\\n00:00:17,000 --> 00:00:21,400\\n它叫Nupedia,一部由专家撰写的传统百科全书\\n\\n7\\n00:00:21,400 --> 00:00:25,600\\n它虽然自由并且联网 - 但最后的发布权限只归一人掌握\\n\\n8\\n00:00:25,600 --> 00:00:27,500\\n不甚成功 \\n\\n9\\n00:00:30,000 --> 00:00:34,000\\n作为Nupedia的创办者,我领导团队建立了一个小组\\n\\n10\\n00:00:34,000 --> 00:00:36,000\\n来撰写Nupedia后来的条目 \\n\\n11\\n00:00:36,000 --> 00:00:39,500\\n为便于合作,我们使用了一套新的软件平台\\n\\n12\\n00:00:39,600 --> 00:00:43,700\\n那就是wiki - 维基百科\\n\\n13\\n00:00:44,700 --> 00:00:48,480\\n这后来被发现是快速撰写出许多页面的绝佳方式\\n\\n14\\n00:00:48,480 --> 00:00:52,900\\n不久,Nupedia便落后了,而维基百科成为了主角\\n\\n15\\n00:00:53,000 --> 00:00:55,800\\n我们要打造的不仅是一部内容自由的百科全书\\n\\n16\\n00:00:55,800 --> 00:00:58,900\\n更是一部“人人可编辑的百科全书”\\n\\n17\\n00:00:59,300 --> 00:01:01,800\\n其他语言版本迅速出现\\n\\n18\\n00:01:01,800 --> 00:01:04,100\\n根据最近一次统计有逾270个\\n\\n19\\n00:01:04,300 --> 00:01:07,300\\n之后不久姐妹计划也出现了,比如维基文库、维基新闻\\n\\n20\\n00:01:07,300 --> 00:01:08,900\\n和维基词典\\n\\n21\\n00:01:08,900 --> 00:01:15,100\\n2003年,我创办了维基媒体基金会来维持维基百科的发展\\n\\n22\\n00:01:15,100 --> 00:01:18,600\\n维基百科每月接待将近4亿浏览者\\n\\n23\\n00:01:18,700 --> 00:01:22,200\\n访问量比这更高的网站屈指可数,并且都是十分知名的网站\\n\\n24\\n00:01:22,700 --> 00:01:27,100\\n维基百科在2011年一月迎来了自己的十周年纪念日\\n\\n25\\n00:01:27,100 --> 00:01:30,600\\n在这十年中,维基百科成为了全球最流行的网站之一\\n\\n26\\n00:01:31,250 --> 00:01:34,100\\n我继续带领社区和维基媒体基金会\\n\\n27\\n00:01:34,100 --> 00:01:37,100\\n帮助我们把维基百科建设成今日的样子\\n\\n28\\n00:01:37,200 --> 00:01:38,900\\n维基百科到底是谁写的?\\n\\n29\\n00:01:39,100 --> 00:01:44,000\\n创办至今,已有120万人为维基百科做出过贡献\\n\\n30\\n00:01:44,000 --> 00:01:49,990\\n在2010年,维基百科所有语言版本每月共有超过1千1百万次编辑\\n\\n31\\n00:01:50,000 --> 00:01:55,200\\n根据一份调查,博士在编辑者中的比重约是在外界公众时的两倍\\n\\n32\\n00:01:55,300 --> 00:01:58,500\\n在英文维基百科上,近50%的编辑者没有宗教信仰\\n\\n33\\n00:01:58,500 --> 00:02:03,000\\n14.6%的法语编辑者表示信仰“飞行面条怪物教”\\n\\n34\\n00:02:03,100 --> 00:02:06,100\\n应该说大部分维基百科人都不普通\\n\\n35\\n00:02:06,200 --> 00:02:09,300\\n原因之一,也许是编辑一两个页面很简单\\n\\n36\\n00:02:09,300 --> 00:02:11,300\\n但要投身其中就不那么容易了\\n\\n37\\n00:02:11,450 --> 00:02:16,400\\n维基百科社区由逾200条方针、指引和论述约束\\n\\n38\\n00:02:16,400 --> 00:02:19,600\\n此外还有讨论、评述、委员会、布告板\\n\\n39\\n00:02:19,600 --> 00:02:21,400\\n和维基专题等\\n\\n40\\n00:02:21,400 --> 00:02:25,350\\n网站的所有内容均取决于维基百科志愿者的贡献\\n\\n41\\n00:02:25,350 --> 00:02:28,900\\n维基媒体基金会不扮演任何编辑角色\\n\\n42\\n00:02:29,300 --> 00:02:31,900\\n基金会的工作是确保服务器的正常运转\\n\\n43\\n00:02:32,200 --> 00:02:33,400\\n但又不仅如此\\n\\n44\\n00:02:33,400 --> 00:02:36,300\\n基金会还在促进将维基百科拓展至全球\\n\\n45\\n00:02:36,600 --> 00:02:39,400\\n搭建更多的数据中心以加速维基百科的全球化\\n\\n46\\n00:02:39,450 --> 00:02:43,200\\n甚至会把自己第一个美国之外的办公地点设在印度\\n\\n47\\n00:02:43,300 --> 00:02:46,500\\n维基百科在西方和发达国家已经非常流行了\\n\\n48\\n00:02:46,500 --> 00:02:50,700\\n新的挑战是让维基百科进入到发展中国家\\n\\n49\\n00:02:50,750 --> 00:02:54,300\\n基金会是慈善组织,完全依赖于捐助\\n\\n50\\n00:02:54,400 --> 00:02:56,500\\n这些捐助有的来自公司和机构\\n\\n51\\n00:02:56,500 --> 00:03:00,100\\n但绝大多数则来自上百万的编者与读者\\n\\n52\\n00:03:00,400 --> 00:03:05,300\\n维基百科所取得的成绩是难以置信的,但仍有很长的路要走\\n\\n53\\n00:03:05,300 --> 00:03:09,500\\n就像读者看到的,有的条目写得很好,有的还不行\\n\\n54\\n00:03:09,500 --> 00:03:11,200\\n维基百科仍需要许多努力\\n\\n55\\n00:03:11,650 --> 00:03:13,400\\n这是一个新的挑战\\n\\n56\\n00:03:13,400 --> 00:03:16,970\\n不仅是让一部百科全书成形,更要把它做得更好\\n\\n57\\n00:03:16,970 --> 00:03:19,250\\n更准确,参考更多文献\\n\\n58\\n00:03:19,700 --> 00:03:21,800\\n不仅广博,而且深入\\n\\n59\\n00:03:21,800 --> 00:03:26,700\\n维基百科是空前的,前程亦是无量的\\n\\n60\\n00:03:26,700 --> 00:03:28,500\\n在维基百科的第二个十年里\\n\\n67\\n00:03:28,500 --> 00:03:29,850\\n维基百科是否会变得更好\\n\\n62\\n00:03:29,850 --> 00:03:31,350\\n取决于我们\\n\\n63\\n00:03:31,400 --> 00:03:35,000 \\n(维基百科,自由的百科全书)\\n\\n\\n64\\n00:03:39,000 --> 00:03:41,500\\n(JESS3制作)',\n", + " 'bytes': 5439,\n", + " 'sha1': 'hlohth8ai70l5lkutz90fopa5yca09l',\n", + " 'parent_id': 106721680,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 300915804,\n", + " 'timestamp': '2018-05-13T08:26:53Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 14665555,\n", + " 'title': 'Krazy Kat Bugologist 1916 silent.ogv.eu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '84user moved page [[TimedText:Krazy Kat Bugolist 1916 silent.ogv.eu.srt]] to [[TimedText:Krazy Kat Bugologist 1916 silent.ogv.eu.srt]]: ogv file renamed',\n", + " 'text': '1 \\n00:00:22,000 --> 00:00:27,000\\nNik erakutsiko dizut Zomorrologia, Ignatzes\\n\\n2\\n00:00:40,000 --> 00:00:43,000\\nZerbaitek esaten dit...\\n\\n3\\n00:00:58,000 --> 00:01:04,000\\nBegira, Ignatz, lo dagoen erle bat\\n\\n4\\n00:01:04,000 --> 00:01:08,000\\nHildako erle bat, esan nahi duzu\\n\\n5\\n00:01:10,000 --> 00:01:14,000\\nHotza egon behar du\\n\\n6\\n00:01:22,000 --> 00:01:25,000\\nErletxo gaixoa\\n\\n7\\n00:01:25,000 --> 00:01:31,000\\nAh! Pozik dago, erleen zeruan egongo da\\n\\n8\\n00:01:51,000 --> 00:01:56,000\\nIgnatz, akats bat egin duzu\\n\\n9\\n00:01:58,000 --> 00:02:01,000\\nHALA DA\\n\\n10\\n00:02:45,000 --> 00:02:49,000\\nutzidazu niri',\n", + " 'bytes': 591,\n", + " 'sha1': '5anqdxy3i5z54snvyathkg3mc3rqe0w',\n", + " 'parent_id': 52237662,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 284388278,\n", + " 'timestamp': '2018-01-31T16:30:04Z',\n", + " 'user': {'id': 4172499, 'text': 'Iñaki LL'},\n", + " 'page': {'id': 14666086,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.eu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:01,000 --> 00:00:02,000 Nire lankide izena Bücherwürmlein da\\n\\n2 00:00:02,000 --> 00:00:03,000 Lila roja\\n\\n3 00:00:04,000 --> 00:00:05,000 yuyu\\n\\n4 00:00:05,000 --> 00:00:07,000 Cbrown1023\\n\\n5 00:00:07,000 --> 00:00:08,000 22Kartika\\n\\n6 00:00:08,000 --> 00:00:10,000 Nire lankide izena Church of emacs da\\n\\n7 00:00:10,000 --> 00:00:14,000 Bücherwürmlein izenak liburutegiko sagu esan nahi du\\n\\n8 00:00:14,000 --> 00:00:16,000 Dew\\n\\n9 00:00:16,000 --> 00:00:17,000 Chomsky1\\n\\n10 00:00:17,000 --> 00:00:18,000 nasir8891\\n\\n11 00:00:18,000 --> 00:00:21,000 notafish, badakizu: « not a fish » (\"arrain bat ez\")\\n\\n12 00:00:21,000 --> 00:00:22,000 Theo10011\\n\\n13 00:00:22,000 --> 00:00:24,000 Nire lankide izena Henna da\\n\\n14 00:00:24,000 --> 00:00:25,000 Misou\\n\\n15 00:00:25,000 --> 00:00:26,000 Nire erabiltzaile izena Lyzzy da\\n\\n16 00:00:26,000 --> 00:00:30,000 wittylama, nire benetako izena den Liam Wyatten anagrama bat da\\n\\n17 00:00:30,000 --> 00:00:31,000 Deryck Chan\\n\\n18 00:00:31,000 --> 00:00:32,000 Vulpeto\\n\\n19 00:00:32,000 --> 00:00:33,000 RajeshPandey\\n\\n20 00:00:33,000 --> 00:00:37,000 Nire lankide izena Steven Walling da, nire benetako izena\\n\\n21 00:00:37,000 --> 00:00:38,000 Nire lankide izena Waldir da\\n\\n22 00:00:38,000 --> 00:00:41,000 Nire lankide izena Mstislavl da\\n\\n23 00:00:41,000 --> 00:00:44,000 Abbasjnr, a-b bikoitza-a-s-j-n-r\\n\\n24 00:00:44,000 --> 00:00:49,000 Nire izena Jdforrester da eta Wikipedia aldatzen dut',\n", + " 'bytes': 1430,\n", + " 'sha1': 'qy277o6hruf5epu3057ttv0kwewqab9',\n", + " 'parent_id': 52239197,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 52241773,\n", + " 'timestamp': '2011-03-22T00:27:34Z',\n", + " 'user': {'id': 23869, 'text': 'Theklan'},\n", + " 'page': {'id': 14666707,\n", + " 'title': 'Videoonwikipedia.ogv.eu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00 --> 00:00:02,202 Ezagutzen duzu Wikipedia 2 00:00:02,202 --> 00:00:05,772 zure lanak egiteko, artikuluak egiteko, zerbait ikasteko edo ondo pasatzeko e...'\",\n", + " 'text': '1\\n00:00:00 --> 00:00:02,202\\nEzagutzen duzu Wikipedia\\n\\n2\\n00:00:02,202 --> 00:00:05,772\\nzure lanak egiteko, artikuluak egiteko, zerbait ikasteko edo ondo pasatzeko erabiltzen duzu\\n\\n\\n3\\n00:00:05,772 --> 00:00:09,042\\nez da bakarrik doakoa dela irakurtzeko\\n\\n4\\n00:00:09,042 --> 00:00:11,344\\naskea da bertan ekarpenak egitea eta artikuluak hobetzea\\n\\n5\\n00:00:11,344 --> 00:00:14,647\\nzure ekarpen guztiek egia izan behar dute\\n\\n6\\n00:00:14,647 --> 00:00:17,884\\nikuspuntu neutral batetik idatziak baina zentsurarik gabe gai korapilotsuetan\\n\\n7\\n00:00:17,884 --> 00:00:22,655\\nWikipedia komunitate ireki bat da\\n\\n8\\n00:00:22,655 --> 00:00:23,923\\nbere burua gobernatzen du egitura minimo batekin\\n\\n9\\n00:00:23,923 --> 00:00:28,128\\neta mundu guztia da boluntario\\n\\n10\\n00:00:28,128 --> 00:00:31,431\\ngaur egun Wikipedia 260 hizkuntza baino gehiagotan topa daiteke\\n\\n11\\n00:00:31,431 --> 00:00:33,733\\nhorietako batzuetan milaka artikulu daude\\n\\n12\\n00:00:33,733 --> 00:00:37,047\\neta beste batzuetan milioika\\n\\n13\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nartikuluek informazio sakona dute, irudiak eta loturak\\n\\n14\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nhoriek gaiaren inguruko ezagutza handitzen laguntzen dizu\\n\\n15\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nbaina zer gertatuko litzateke artikulu bakoitzak bideo bat izango balu?\\n\\n16\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nZer Egiptoko piraideen barruan sartu ahal izango bazina?\\n\\n17\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nedo ibilbide bat herri historikoen zentrutik?\\n\\n18\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n19\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nOrain bideok daude Wikipedian\\n\\n20\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\neta zeuk ere bideo bat egin dezakezu\\n\\n21\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsaia zaitez artikulu bateko puntu garrantzitsuenak hartzen gaiari buruzko ideiak izateko\\n\\n22\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n23\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\neta planea ezazu zer nahiko zenukeen grabatzea\\n\\n24\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ngogora ezazu Wikipedia entziklopedia bat dela\\n\\n25\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\neta edukia hezitzailea eta informatiboa izan behar dela\\n\\n26\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nbideo bat egiten zaudenean garrantzitsuena\\n\\n27\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsaia zaitez kamara zuzen mantentzen edo tripode bat erabiltzen\\n\\n28\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nzuk ez baduzu bideoa egin nahi\\n\\n29\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nfitxategi ugari daude Interneten,\\n\\n30\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n31\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\neta baliteke egin nahi duzun bideorako egokiak izatea\\n\\n32\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\njust remember no matter what you shoot or what you find\\n\\n33\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nall video on Wikipeida must be free to use and share\\n\\n34\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nusually this means its licensed to the Creative Commons\\n\\n35\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nnow that you have selected an article\\n\\n36\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand a video you would like to add to it\\n\\n37\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nhere is the simplest way to bring the two together\\n\\n38\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nfirst we recommend using Mozilla Firefox\\n\\n39\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nFirefox is a free open source browser\\n\\n40\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthat makes viewing and adding video to Wikipedia simple\\n\\n41\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nafter that, download the Firefogg addon for Mozilla Firefox\\n\\n42\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthis automatically converts videos to the free and open Theora format\\n\\n43\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthat Wikipedia uses when you upload them\\n\\n44\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nalternative Windows and Mac users can download Miro converter\\n\\n45\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\na simple software that lets you take video and converter it to any format\\n\\n46\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nincluding open video for Wikipedia\\n\\n47\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nunlike editing text uploading video requires that you login to Wikipedia\\n\\n48\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nsign in or create an account if your a new user.\\n\\n49\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nwhen you upload video for the first time\\n\\n50\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nyou will have to turn on the video uploading feature\\n\\n51\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nto do this click on your user name at the top of the page\\n\\n52\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthen click on my preference\\n\\n53\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nclick on gadgets\\n\\n54\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nthen scroll down to user interface gadgets\\n\\n55\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand clip the box that says add mwEmbed support\\n\\n56\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nscroll down the the save button and click save\\n\\n57\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nnow your ready to upload video\\n\\n58\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nnow that you have signed in go to the article you would like to modify\\n\\n59\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nand click the edit button.\\n\\n60\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nyou will see add media wizard button in the editing tab\\n\\n61\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nclicking this link will pull up a menu\\n\\n62\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nif your uploading your own file select it and hit upload\\n\\n63\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nyou can also select a video from the commons\\n\\n64\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nor a media file you have previous uploaded but have not yet added to an article\\n\\n65\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nto put the video in to the article just click on insert into page\\n\\n66\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nat the bottom right hand corner of the window\\n\\n67\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nto learn more about how to add video to Wikipedia\\n\\n68\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\ntype in wp:wikiproject lights camera wiki',\n", + " 'bytes': 5426,\n", + " 'sha1': 'jlqn4jkd0tlpfm2kdy8lq8tbagautvq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 297631918,\n", + " 'timestamp': '2018-04-19T15:51:07Z',\n", + " 'user': {'id': 4172499, 'text': 'Iñaki LL'},\n", + " 'page': {'id': 14666787,\n", + " 'title': 'Wikipedia video tutorial-1-Editing-en.ogv.eu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,36 --> 00:00:07,04\\nKaixo, Theresa dut izena. Pozten nau zu ezagutzeak hemen Wikipedian. Dakizuenez, Wikipedia entziklopedia\\n\\n2\\n00:00:07,04 --> 00:00:10,68\\naskea da, bere erabiltzaileak idatzita, zu bezalako jendea. \\n\\n3\\n00:00:10,68 --> 00:00:17,815\\nGaur egun, 250 milioi Wikipedia-bisitari baino gehiago, 10 milioi artikulu baino gehiago egin izan dituzte,\\n\\n4\\n00:00:17,892 --> 00:00:22,48\\n500 mila editore baino gehiagok, 250 hizkuntzatan baino gehiago.\\n\\n5\\n00:00:22,48 --> 00:00:26,96\\nOso erreza da zure jakintza elkarbanatzea mundu osoko Wikipedia erabiltzaileekin.\\n\\n6\\n00:00:26,96 --> 00:00:33,28\\nOraintxe bertan, Interneteko entziklopediarik handiena eta onena hobetzen lagun dezakezu.\\n\\n7\\n00:00:33,28 --> 00:00:35,702\\nUtzidazu erakusten zein erraza den.\\n\\n8\\n00:00:36,44 --> 00:00:41,748\\nInterneten zerbait bilatzean, lehenengo emaitzetariko bat Wikipedia izan ohi da.\\n\\n9\\n00:00:42,64 --> 00:00:46,031\\nOrduan, agian hasi nahiko duzu Wikipedian bertan bilatzea.\\n\\n10\\n00:00:46,538 --> 00:00:47,862\\nBegiratu honi.\\n\\n11\\n00:00:48,415 --> 00:00:51,752\\nIkus dezakezunez, artikulu gehienak nahiko ulergarriak dira.\\n\\n12\\n00:00:51,752 --> 00:00:56,72\\nBaina topa zaitezke oso artikulu motz batekin edo hobekuntzak behar dituen beste batekin.\\n\\n13\\n00:00:56,72 --> 00:00:59,64\\nEta ez zara zeuk aproposena hori egiteko?\\n\\n14\\n00:00:59,64 --> 00:01:05,32\\nWikipediak zu nahi zaitu idazten eta hobetzen laguntzeko asmoz\\n\\n15\\n00:01:05,371 --> 00:01:10,16\\n%90 baino gehiagotan, ez duzu egundoko zientzilaria izan behar Wikipedian laguntzeko.\\n\\n16\\n00:01:10,16 --> 00:01:12,24\\nEgin behar duzun bakarra besteekin partekatzeko nahia izatea da.\\n\\n17\\n00:01:12,24 --> 00:01:16,04\\nEta hori egiteko, bakarrik 3 pauso jarraitu behar dituzu.\\n\\n18\\n00:01:16,04 --> 00:01:18,8\\nLehena: sakatu \"Aldatu\" botoia. \\n\\n19\\n00:01:18,8 --> 00:01:21,48\\nBigarrena: idatzi testua.\\n\\n20\\n00:01:21,48 --> 00:01:27\\nEta azkenik, hirugarrena: amaitu laburpena eta sakatu \"Orrialdea gorde\"-n.\\n\\n21\\n00:01:27 --> 00:01:28,76\\nEz da hain zaila, ezta?\\n\\n22\\n00:01:28,76 --> 00:01:32,04\\nEta ez duzu sartu behar edo kontu bat izan behar hau egiteko.\\n\\n23\\n00:01:32,04 --> 00:01:33,8\\nBerriro esango dut.\\n\\n24\\n00:01:33,8 --> 00:01:38,96\\nLehenengo pausua \"Aldatu\" botoia zen. Hemen dago, goiko partean.\\n\\n25\\n00:01:38,96 --> 00:01:46,8\\nSakatu botoia eta hona bidaliko zaitu. Hemen aldaketak egingo dituzu.\\n\\n26\\n00:01:46,8 --> 00:01:52,92\\nAldaketak egiteko, jarri kurtsorea aldatu nahi duzun testuan eta idatzi edo ezabatu zerbait,\\n\\n27\\n00:01:52,92 --> 00:01:55,778\\neta orduan bakarrik aldatu behar duzu beste dokumentuan egingo bazenu bezala.\\n\\n28\\n00:02:03,24 --> 00:02:08,6\\nEz kezkatu, zeozer txarto egiten baduzu oso erreza da aurreko bertsiora bueltatzea.\\n\\n29\\n00:02:08,6 --> 00:02:10,561\\nAzkenik, hirugarren pausua:\\n\\n30\\n00:02:10,561 --> 00:02:16,006\\nZonalde honetan idazten baduzu, zure aldaketen berri eman diezaiekezu beste irakurleei.\\n\\n31\\n00:02:18,96 --> 00:02:25,68\\nEta gero, sakatu \"Orrialdea gorde\" botoia zure aldaketa guztiak gordetzeko.\\n\\n32\\n00:02:25,68 --> 00:02:32,44\\nEta artikulua berragertzean, zure aldaketak izango dira online eta ikusgarri berehala.\\n\\n33\\n00:02:32,44 --> 00:02:36,48\\n3 pausu hauek Wikipedia editatzeko behar duzun guztia dira.\\n\\n34\\n00:02:36,48 --> 00:02:39,12\\nBadakit zer ari zaren pentsatzen. Pentsatzen ari zara:\\n\\n35\\n00:02:39,12 --> 00:02:41,8\\n\"Orain Historia alda dezaket!\"\\n\\n36\\n00:02:41,8 --> 00:02:44,28\\nBa, laguna, ezin duzu.\\n\\n37\\n00:02:44,28 --> 00:02:48,64\\nIkus dezakezunez beste tutorial batean, Wikipediak portaera hauek\\n\\n38\\n00:02:48,64 --> 00:02:51,84\\ngalarazteko mekanismo mordo ditu\\n\\n39\\n00:02:51,84 --> 00:02:55,24\\nInformazio okerra ezabatuta izango da minutu edo segundu gutxitan.\\n\\n40\\n00:02:55,24 --> 00:03:00,058\\nEta horrek egiten du Wikipedia hain informazio-iturri fidagarria eta ulergarria izatea.\\n\\n41\\n00:03:00,135 --> 00:03:05,438\\nGogoratu, zu bezalako pertsonak lagundu dute entziklopedia hau sortzen.\\n\\n42\\n00:03:05,457 --> 00:03:09,142\\nEta zu bezalako pertsonak behar ditugu gero eta hobeto egiteko.\\n\\n42.5\\n00:03:09,188 --> 00:03:14,395\\nOrain zuri tokatzen zaizu. Agur, eta sorte ona izan.',\n", + " 'bytes': 4061,\n", + " 'sha1': '1xi0bjzn282ulkuls0jxer8xix23p29',\n", + " 'parent_id': 291029569,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 686247605,\n", + " 'timestamp': '2022-09-02T05:09:20Z',\n", + " 'user': {'id': 22648, 'text': 'Koavf'},\n", + " 'page': {'id': 14745015,\n", + " 'title': 'FelixTheCat-1919-FelineFollies silent.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"If you're going to do the earlier ones, may as well do these as well\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\n\\'\\'Paramount Magazine\\'\\' \"FELINE FOLLIES\" by Pat Sullivan<br /> FAMOUS PLAYERS LASKY CORPORATION\\n\\n2\\n00:00:06,000 --> 00:00:21,000\\nPussyville has its \"Follies\" as well as Broadway. Its fads, foibles, and frivolities are as brilliant and as mischevious as the Great White Way brand. And the feline version has a plot, categorically speaking. \\'\\'Paramount Magazine\\'\\'\\n\\n3\\n00:00:25,000 --> 00:00:25,900\\nMEOW!!\\n\\n4\\n00:00:27,000 --> 00:00:27,900\\nMEOW!!\\n\\n5\\n00:00:31,000 --> 00:00:41,000\\nMaster Tom, who scalps unwary mice and breaks feline hearts with equal assurance and dispatch meets Miss Kitty White and capitulates at sight. \\'\\'Paramount Magazine\\'\\'\\n\\n6\\n00:00:59,000 --> 00:01:03,000\\nMaster Tom performs his \"toilette\" with all the care and skill of a debutante. \\'\\'Paramount Magazine\\'\\'\\n\\n7\\n00:01:19,000 --> 00:01:21,000\\nAnd while the cat\\'s away .......! \\'\\'Paramount Magazine\\'\\'\\n\\n8\\n00:01:35,000 --> 00:01:43,000\\nThey select as a rendezvous that hallowed spot of feline lovers: the Back Fence ... in a thickly populated neighborhood, of course. \\'\\'Paramount Magazine\\'\\'\\n\\n9\\n00:01:47,000 --> 00:01:52,900\\nI\\'VE ONLY GOT NINE LIVES TO LIVE AN\\' I\\'LL LIVE THEM ALL FOR YOU!\\n\\n10\\n00:01:53,000 --> 00:01:58,000\\nCAN THAT NOISE!! BEAT IT!! GIT OUTER THAT! VAMOOSE!! SCATT!!\\n\\n11\\n00:02:00,000 --> 00:02:04,000\\nTOMORROW NIGHT AT THE ASH CAN!\\n\\n12\\n00:02:08,000 --> 00:02:10,000\\nThe trysting place. \\'\\'Paramount Magazine\\'\\'\\n\\n13\\n00:02:11,000 --> 00:02:11,900\\nSHE\\'S LATE!!\\n\\n14\\n00:02:17,000 --> 00:02:18,900\\nSHOOT SOMETHING LIVELY!!\\n\\n15\\n00:03:41,000 --> 00:03:41,900\\nBEAT IT!!\\n\\n16\\n00:03:48,500 --> 00:03:48,900\\n!!\\n\\n17\\n00:03:51,000 --> 00:03:51,500\\n?\\n\\n18\\n00:03:57,000 --> 00:03:59,500\\nMEOW! SP-T-T MEOW!! \\'LO MUM! ME-OW!! \\'LO\\' MA!\\n\\n19\\n00:04:00,000 --> 00:04:00,900\\n!!!\\n\\n20\\n00:04:08,000 --> 00:04:08,900\\n!!',\n", + " 'bytes': 1797,\n", + " 'sha1': 'gimzoonxby23fwfdet5oofni6c1tiut',\n", + " 'parent_id': 642665759,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 52753773,\n", + " 'timestamp': '2011-04-05T09:54:30Z',\n", + " 'user': {'id': 21834, 'text': 'Aubrey'},\n", + " 'page': {'id': 14796882,\n", + " 'title': 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:08,860 --> 00:00:11,674 Wikisource è una biblioteca digitale online 2 00:00:11,698 --> 00:00:14,610 che raccoglie testi pubblicati in qualsiasi lingua ...'\",\n", + " 'text': '1\\n00:00:08,860 --> 00:00:11,674\\nWikisource è una biblioteca digitale online \\n\\n2\\n00:00:11,698 --> 00:00:14,610\\nche raccoglie testi pubblicati in qualsiasi lingua \\n\\n3\\n00:00:14,631 --> 00:00:18,947\\npurché nel pubblico dominio oppure rilasciati con una licenza libera. \\n\\n4\\n00:00:19,057 --> 00:00:21,556\\nCome ogni progetto della Wikimedia Foundation, \\n\\n5\\n00:00:21,607 --> 00:00:24,997\\nWikisource è aperto a tutti e chiunque può collaborare, \\n\\n6\\n00:00:25,039 --> 00:00:27,126\\nanche in forma anonima.\\n\\n7\\n00:00:27,918 --> 00:00:31,750\\nIn Wikisource i testi sono trascritti da una fonte pubblicata \\n\\n8\\n00:00:31,764 --> 00:00:34,695\\ne formattati per essere letti comodamente.\\n\\n9\\n00:00:34,815 --> 00:00:38,255\\nRomanzi e racconti, saggi e manuali, \\n\\n10\\n00:00:38,299 --> 00:00:43,289\\nlibri di preghiere e manifesti politici, canti popolari e poesie, \\n\\n11\\n00:00:43,336 --> 00:00:47,899\\nfavole e filastrocche, documenti legali e opere scientifiche, \\n\\n12\\n00:00:47,959 --> 00:00:50,565\\ntesi e dissertazioni purché già discusse \\n\\n13\\n00:00:50,596 --> 00:00:53,132\\npresso un\\'istituzione accademica riconosciuta.\\n\\n14\\n00:00:53,286 --> 00:00:57,167\\nCome Wikipedia, il progetto è suddiviso in base alle diverse lingue: \\n\\n15\\n00:00:57,252 --> 00:01:00,502\\nin Wikisource in inglese vanno inseriti i testi in inglese, \\n\\n16\\n00:01:00,563 --> 00:01:04,436\\nquelli in francese nella versione francese, e così via.\\n\\n17\\n00:01:04,564 --> 00:01:06,930\\nSono raccolti testi in tutte le lingue, \\n\\n18\\n00:01:06,995 --> 00:01:09,373\\nanche nelle meno diffuse e nei dialetti, \\n\\n19\\n00:01:09,425 --> 00:01:12,455\\npurché già editi e liberamente trascrivibili.\\n\\n20\\n00:01:12,546 --> 00:01:15,058\\nQueste condizioni valgono anche per le traduzioni, \\n\\n21\\n00:01:15,094 --> 00:01:18,599\\nche sono opere derivate: non possono dunque essere inseriti \\n\\n22\\n00:01:18,649 --> 00:01:22,314\\ntesti tradotti non pubblicati e sia il testo che la traduzione \\n\\n23\\n00:01:22,340 --> 00:01:26,855\\ndevono essere di pubblico dominio o rilasciati con una licenza libera.\\n\\n24\\n00:01:27,653 --> 00:01:30,714\\nOgni testo in Wikisource deve poter essere copiato \\n\\n25\\n00:01:30,792 --> 00:01:33,903\\ne utilizzato come base per creare opere derivate, \\n\\n26\\n00:01:33,947 --> 00:01:35,947\\nanche per scopi commerciali.\\n\\n27\\n00:01:36,049 --> 00:01:38,521\\nDeve dunque essere stato distribuito con una licenza \\n\\n28\\n00:01:38,571 --> 00:01:41,952\\nche concede queste libertà oppure devono essere decaduti \\n\\n29\\n00:01:42,020 --> 00:01:45,091\\ni diritti d’autore sull’opera, sia negli Stati Uniti, \\n\\n30\\n00:01:45,121 --> 00:01:47,295\\ndove si trovano i server di Wikisource, \\n\\n31\\n00:01:47,344 --> 00:01:50,206\\nche nel paese di pubblicazione del testo.\\n\\n32\\n00:01:51,271 --> 00:01:54,115\\nAllo stato attuale, in base alla legge americana, \\n\\n33\\n00:01:54,196 --> 00:01:56,372\\nsono sicuramente di pubblico dominio \\n\\n34\\n00:01:56,443 --> 00:01:59,539\\nsolo le opere pubblicate prima del 1923. \\n\\n35\\n00:01:59,745 --> 00:02:03,243\\nPer lo stato italiano invece l’opera è coperta da copyright \\n\\n36\\n00:02:03,271 --> 00:02:06,128\\nfino a 70 anni dopo la morte del suo creatore.\\n\\n37\\n00:02:06,221 --> 00:02:09,314\\nUn testo potrebbe dunque essere già di pubblico dominio in Italia \\n\\n38\\n00:02:09,348 --> 00:02:12,666\\nma non ancora negli Stati Uniti e viceversa.\\n\\n39\\n00:02:12,772 --> 00:02:16,358\\nUn testo contemporaneo invece, può essere inserito in Wikisource \\n\\n40\\n00:02:16,424 --> 00:02:19,124\\nsolo se l’autore ha autorizzato esplicitamente \\n\\n41\\n00:02:19,166 --> 00:02:22,406\\nqualsiasi uso dell’opera, anche commerciale.\\n\\n42\\n00:02:22,576 --> 00:02:25,000\\nL\\'autore può comunque esigere \\n\\n43\\n00:02:25,048 --> 00:02:27,961\\nla concessione delle stesse libertà sulle opere derivate. \\n\\n44\\n00:02:28,023 --> 00:02:31,482\\nIn Wikisource, chiunque dovrebbe poter revisionare il testo \\n\\n45\\n00:02:31,549 --> 00:02:33,549\\ned è per questo che è ormai prassi \\n\\n46\\n00:02:33,622 --> 00:02:36,425\\nl\\'utilizzo della scansione completa del libro originale.\\n\\n47\\n00:02:36,496 --> 00:02:40,065\\nNel caso di testi già trascritti altrove è necessario affidarsi \\n\\n48\\n00:02:40,148 --> 00:02:44,873\\nsolo a fonti attendibili e inserire precisi riferimenti bibliografici.\\n\\n49\\n00:02:45,478 --> 00:02:48,645\\nI Wikisourciani sono amanuensi dell\\'era digitale \\n\\n50\\n00:02:48,662 --> 00:02:50,839\\nche per passione o altruismo\\n\\n51\\n00:02:50,856 --> 00:02:53,207\\ntrascrivono i testi liberamente disponibili. \\n\\n52\\n00:02:53,272 --> 00:02:55,910\\nOgni testo deve essere riportato fedelmente, \\n\\n53\\n00:02:55,942 --> 00:02:58,574\\ntenendo conto delle prassi di scrittura dell\\'epoca \\n\\n54\\n00:02:58,630 --> 00:03:02,413\\ne delle convenzioni di trascrizione stabilite dalla comunità.\\n\\n55\\n00:03:03,187 --> 00:03:05,604\\nIl percorso di trascrizione comincia \\n\\n56\\n00:03:05,622 --> 00:03:07,622\\ncon la creazione di una pagina \"indice\", \\n\\n57\\n00:03:07,669 --> 00:03:09,900\\nche richiama il libro scansionato da Commons, \\n\\n58\\n00:03:09,969 --> 00:03:14,026\\nil progetto fratello di Wikisource che raccoglie file multimediali liberi.\\n\\n59\\n00:03:14,311 --> 00:03:17,069\\nAutomaticamente vengono generati i collegamenti \\n\\n60\\n00:03:17,138 --> 00:03:19,234\\nad ogni singola pagina dell\\'opera.\\n\\n61\\n00:03:19,339 --> 00:03:22,100\\nCliccando su un collegamento è possibile visualizzare \\n\\n62\\n00:03:22,163 --> 00:03:24,260\\nla scansione del testo e a lato \\n\\n63\\n00:03:24,305 --> 00:03:27,124\\nil riquadro in cui viene effettuata la trascrizione.\\n\\n64\\n00:03:27,235 --> 00:03:30,104\\nSpesso non è necessario trascrivere da zero il testo, \\n\\n65\\n00:03:30,147 --> 00:03:33,186\\nperché la pagina scannerizzata viene elaborata da un software\\n\\n66\\n00:03:33,217 --> 00:03:35,725\\nin grado di riconoscere i caratteri.\\n\\n67\\n00:03:35,850 --> 00:03:38,507\\nL\\'aspetto grafico delle pagine è uniformato \\n\\n68\\n00:03:38,570 --> 00:03:41,442\\ngrazie all\\'uso di modelli che riportano in modo automatico \\n\\n69\\n00:03:41,483 --> 00:03:45,252\\nformattazioni o parti ripetitive delle pagine o dei testi.\\n\\n70\\n00:03:45,514 --> 00:03:48,625\\nUna volta completata la trascrizione di tutte le pagine, \\n\\n71\\n00:03:48,654 --> 00:03:51,859\\nil testo viene assemblato in base alla sua struttura logica \\n\\n72\\n00:03:51,934 --> 00:03:54,145\\n(ad esempio nei suoi capitoli).\\n\\n73\\n00:03:54,252 --> 00:03:57,051\\nIl testo è così formattato in modo da essere conforme \\n\\n74\\n00:03:57,082 --> 00:03:59,340\\nalla strutturazione voluta dall’autore, \\n\\n75\\n00:03:59,378 --> 00:04:02,782\\nma anche adattato per la lettura a schermo e la stampa.\\n\\n76\\n00:04:03,619 --> 00:04:06,646\\nCome Wikipedia, Wikisource è gestito da un software \\n\\n77\\n00:04:06,707 --> 00:04:09,448\\nche consente di creare collegamenti ipertestuali, \\n\\n78\\n00:04:09,479 --> 00:04:12,829\\nconnettendo fra loro i vari libri e autori della biblioteca.\\n\\n79\\n00:04:12,882 --> 00:04:15,725\\nAd esempio, una citazione (o un brano di un saggio) \\n\\n80\\n00:04:15,759 --> 00:04:18,712\\npuò rimandare all\\'autore o al testo che cita.\\n\\n81\\n00:04:19,493 --> 00:04:22,952\\nIn fondo ad ogni testo si trovano i collegamenti alle categorie \\n\\n82\\n00:04:23,000 --> 00:04:25,461\\nche aiutano ad organizzare opere e autori \\n\\n83\\n00:04:25,475 --> 00:04:27,951\\nper tipologia, provenienza, eccetera. \\n\\n84\\n00:04:28,056 --> 00:04:30,511\\nInoltre ogni testo può essere collegato \\n\\n85\\n00:04:30,549 --> 00:04:32,742\\nalle sue traduzioni in altre Wikisource, \\n\\n86\\n00:04:32,798 --> 00:04:34,798\\nalla sua pagina su Wikipedia \\n\\n87\\n00:04:34,819 --> 00:04:37,186\\no a qualunque altro progetto Wikimedia.\\n\\n88\\n00:04:37,469 --> 00:04:40,687\\nOgni autore le cui opere sono pubblicate su Wikisource \\n\\n89\\n00:04:40,749 --> 00:04:44,586\\nha una pagina dedicata, che contiene le sue generalità minime, \\n\\n90\\n00:04:44,640 --> 00:04:47,616\\nla lista dei testi disponibili per la consultazione \\n\\n91\\n00:04:47,640 --> 00:04:49,640\\ned eventualmente altre informazioni, \\n\\n92\\n00:04:49,696 --> 00:04:53,502\\ncome le opere in cui l\\'autore è citato o gli autori correlati.\\n\\n93\\n00:04:53,780 --> 00:04:57,355\\nAnche qui sono presenti i collegamenti verso le pagine sull\\'autore \\n\\n94\\n00:04:57,410 --> 00:05:02,153\\ndisponibili in altri progetti Wikimedia e in altre edizioni linguistiche.\\n\\n95\\n00:05:02,333 --> 00:05:06,430\\nVanno annoverati infine i portali, che offrono percorsi di lettura \\n\\n96\\n00:05:06,470 --> 00:05:09,616\\ntra i testi della biblioteca su uno specifico argomento.\\n\\n97\\n00:05:11,060 --> 00:05:14,525\\nIn Wikisource, come in Wikipedia, ci sono gli amministratori, \\n\\n98\\n00:05:14,602 --> 00:05:17,541\\novvero utenti esperti che hanno la fiducia della comunità \\n\\n99\\n00:05:17,567 --> 00:05:19,567\\ne a cui sono stati attivati \\n\\n100\\n00:05:19,622 --> 00:05:22,126\\ndegli strumenti di gestione del software più avanzati.\\n\\n101\\n00:05:22,168 --> 00:05:25,461\\nLa loro esperienza li rende di fatto dei veri e propri bibliotecari \\n\\n102\\n00:05:25,500 --> 00:05:27,799\\nche fanno da tutor agli altri utenti.\\n\\n103\\n00:05:28,693 --> 00:05:31,682\\nIl punto d\\'incontro dei wikisourciani è il Bar, \\n\\n104\\n00:05:31,693 --> 00:05:34,385\\ndove si possono porre domande agli utenti più esperti \\n\\n105\\n00:05:34,413 --> 00:05:36,694\\ne avviare nuove discussioni.\\n\\n106\\n00:05:36,784 --> 00:05:39,678\\nPer gestire al meglio ambiti specifici esistono \\n\\n107\\n00:05:39,748 --> 00:05:42,992\\ndelle pagine dedicate: i progetti tematici. \\n\\n108\\n00:05:43,046 --> 00:05:45,046\\nNella versione italiana di Wikisource \\n\\n109\\n00:05:45,119 --> 00:05:47,784\\nrappresentano il cuore dell\\'attività e sono il ritrovo \\n\\n110\\n00:05:47,822 --> 00:05:51,135\\nper coloro che sono interessati ad un particolare argomento.\\n\\n111\\n00:05:51,434 --> 00:05:54,070\\nPer indicare lo stato di avanzamento dei lavori \\n\\n112\\n00:05:54,102 --> 00:05:56,402\\nsu uno specifico testo o una sua parte \\n\\n113\\n00:05:56,437 --> 00:05:59,859\\nsi usa un sistema suddiviso in 5 tappe fondamentali. \\n\\n114\\n00:06:00,137 --> 00:06:02,347\\nQuando il testo è completo in ogni sua parte, \\n\\n115\\n00:06:02,385 --> 00:06:05,805\\nformattato correttamente e riletto da due o più utenti \\n\\n116\\n00:06:05,874 --> 00:06:08,890\\nusando la fonte cartacea, riceve la stelletta, \\n\\n117\\n00:06:08,944 --> 00:06:12,526\\nche ne attribuisce lo status di \"Edizioni Wikisource\".\\n\\n118\\n00:06:12,731 --> 00:06:15,311\\nE per concentrare gli sforzi di più utenti, \\n\\n119\\n00:06:15,346 --> 00:06:17,850\\nogni mese vengono scelti uno o più testi \\n\\n120\\n00:06:17,892 --> 00:06:20,521\\nda rileggere e correggere insieme.\\n\\n121\\n00:06:21,242 --> 00:06:23,416\\nCon Wikisource puoi dunque dimostrare \\n\\n122\\n00:06:23,455 --> 00:06:25,843\\nil tuo amore per i libri, salvandoli dall\\'oblio \\n\\n123\\n00:06:25,861 --> 00:06:28,776\\ne rendendoli disponibili per chiunque, nella rete. \\n\\n124\\n00:06:29,140 --> 00:06:31,140\\nPartecipa a Wikisource \\n\\n125\\n00:06:31,161 --> 00:06:34,216\\ne costruisci anche tu una biblioteca libera.',\n", + " 'bytes': 10631,\n", + " 'sha1': 'ohltwxjtvsjo5kx8d58xrs32qh2kovv',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 52753865,\n", + " 'timestamp': '2011-04-05T09:56:43Z',\n", + " 'user': {'id': 21834, 'text': 'Aubrey'},\n", + " 'page': {'id': 14796905,\n", + " 'title': 'Wikipedia ridotto.ogv.eo.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:07,686 --> 00:00:11,934 Vikipedio naskiĝas dum 2001 kaj evoluis laŭ la ideo krei 2 00:00:11,973 --> 00:00:15,443 la plej grandan enciklopedion kun malfe...'\",\n", + " 'text': '1\\n00:00:07,686 --> 00:00:11,934\\nVikipedio naskiĝas dum 2001 kaj evoluis laŭ la ideo krei\\n\\n2\\n00:00:11,973 --> 00:00:15,443\\nla plej grandan enciklopedion kun malfermita enhavo en la tuta historio.\\n\\n3\\n00:00:15,710 --> 00:00:19,598\\nVikipedio estas redaktita danke al kontribuo de multaj volontuloj.\\n\\n4\\n00:00:19,751 --> 00:00:22,465\\nĈiu povas kunlabori. Ni vidu kiel.\\n\\n5\\n00:00:23,854 --> 00:00:27,300\\nPreskaŭ ĉiu paĝo de Vikipedio montras supre\\n\\n6\\n00:00:27,335 --> 00:00:30,492\\nlangeton kun la skribaĵo \"redakti\", kiu permesas fari\\n\\n7\\n00:00:30,536 --> 00:00:34,428\\nprecize tiun, kiun ĝi diras: modifi la paĝon, kiun oni legas.\\n\\n8\\n00:00:35,043 --> 00:00:39,465\\nFakte, Vikipedio ne havas redakcion: iu ajn uzanto\\n\\n9\\n00:00:39,540 --> 00:00:42,990\\npovas aliri la enhavojn de ĉiu vikipedia paĝo\\n\\n10\\n00:00:43,019 --> 00:00:45,932\\nkaj modifi ilin, sen devigo pri aliĝo.\\n\\n11\\n00:00:46,151 --> 00:00:49,719\\nLa formatado de la teksto sekvas apartajn regulojn,\\n\\n12\\n00:00:49,728 --> 00:00:53,638\\nsed ĝi estas sufiĉe simpla lingvaĵo, facile lernebla.\\n\\n13\\n00:00:53,989 --> 00:00:57,078\\nKonservante la ŝanĝojn oni konsentas cedi\\n\\n14\\n00:00:57,112 --> 00:00:59,573\\npropran kontribuon kun libera permeso.\\n\\n15\\n00:00:59,652 --> 00:01:03,546\\nIu ajn povos konsulti, uzi kaj readapti la tekston,\\n\\n16\\n00:01:03,561 --> 00:01:07,693\\nankaŭ por komercaj celoj, sub kondiĉo citi la aŭtorojn\\n\\n17\\n00:01:07,721 --> 00:01:11,200\\nkaj reapliki la saman permeson al ĉiu derivita verko.\\n\\n18\\n00:01:11,561 --> 00:01:16,019\\nKrome gravas memorigi ke ĉiu uzanto, ankaŭ ne aliĝinta,\\n\\n19\\n00:01:16,073 --> 00:01:19,998\\nĉiam restas persone respondeca pri propraj modifoj.\\n\\n20\\n00:01:20,542 --> 00:01:24,743\\nJe ĉi punkto la modifo tuj estas videbla de ĉiuj!\\n\\n21\\n00:01:25,715 --> 00:01:29,795\\nVikipedio ne estas nedistingebla kolekto de informoj,\\n\\n22\\n00:01:29,820 --> 00:01:34,142\\nsed ĝi estas enciklopedio, sistema kolekto pri la homa scio.\\n\\n23\\n00:01:34,361 --> 00:01:36,797\\nEn Vikipedio fakte oni ne devas enmeti\\n\\n24\\n00:01:36,816 --> 00:01:40,559\\nvortarajn difinojn kaj eĉ ne originaj esploradoj.\\n\\n25\\n00:01:41,748 --> 00:01:44,853\\nĈiu paĝo havas sian kronologion, kiu enlistigas\\n\\n26\\n00:01:44,878 --> 00:01:48,311\\nĉiu versio realigita ekde ĝia kreo.\\n\\n27\\n00:01:48,562 --> 00:01:51,551\\nKrom la horo, la dato kaj la celo de la modifo\\n\\n28\\n00:01:51,566 --> 00:01:54,416\\nla programo ankaŭ registras la modifinton.\\n\\n29\\n00:01:54,638 --> 00:01:57,534\\nSe la uzanto estas anonima, oni registras\\n\\n30\\n00:01:57,541 --> 00:02:00,116\\nla IP-adreson el kie ĝi estis farita.\\n\\n31\\n00:02:00,679 --> 00:02:03,639\\nLa kronologio permesas kompari\\n\\n32\\n00:02:03,679 --> 00:02:06,777\\ndu malsimilajn versiojn por rimarkigi la diferencojn.\\n\\n33\\n00:02:07,467 --> 00:02:11,381\\nĈe Vikipedio nenio perdiĝas, sed por la unuaj provoj\\n\\n34\\n00:02:11,397 --> 00:02:14,586\\nestas pli bone uzi la provejo, nomita ankaŭ \"sandbox\",\\n\\n35\\n00:02:14,610 --> 00:02:16,755\\nkiu povas esti modifita laŭplaĉe.\\n\\n36\\n00:02:16,803 --> 00:02:20,736\\nPor labori pli trankvile, aliĝinta uzanto ankaŭ povas krei\\n\\n37\\n00:02:20,801 --> 00:02:24,334\\npropran provejon en sia uzantopaĝo.\\n\\n38\\n00:02:24,924 --> 00:02:28,020\\nPor generi novan paĝon, sufiĉas krei ligon,\\n\\n39\\n00:02:28,109 --> 00:02:30,844\\naŭ klaki sur \"ruĝa ligo\" jam ekzistanta.\\n\\n40\\n00:02:30,929 --> 00:02:33,148\\nĈiokaze bona kutimo estas antaŭe kontroli\\n\\n41\\n00:02:33,209 --> 00:02:35,461\\nĉu la paĝo jam ekzistu.\\n\\n42\\n00:02:36,025 --> 00:02:38,838\\nPor certigi la bonan funkciadon de la projekto,\\n\\n43\\n00:02:38,841 --> 00:02:42,074\\nla kolektivo prilaboris \"gvidliniojn\", kiujn ĉiu uzanto\\n\\n44\\n00:02:42,114 --> 00:02:44,811\\nestas petata respekti kaj igi respektataj.\\n\\n45\\n00:02:45,253 --> 00:02:47,615\\nUnu el la ĉefaj kanonoj de Vikipedio\\n\\n46\\n00:02:47,687 --> 00:02:50,075\\nestas la organizado de la enhavoj laŭ modeloj.\\n\\n47\\n00:02:50,147 --> 00:02:53,071\\nNi vidu la ĝeneralan strukturon de artikolo.\\n\\n48\\n00:02:53,977 --> 00:02:58,354\\nLa komenca sekcio devas mallonge kaj simplvorte resumi\\n\\n49\\n00:02:58,370 --> 00:03:00,824\\nla ĉefajn aferojn, kiujn troviĝas en la artikolo.\\n\\n50\\n00:03:00,989 --> 00:03:03,828\\nLa paĝo prezentiĝas laŭ sekcioj (aŭ alineoj),\\n\\n51\\n00:03:03,879 --> 00:03:06,856\\nkiuj aŭtomate estas resumitaj en indekso.\\n\\n52\\n00:03:07,138 --> 00:03:10,739\\nĈe Vikipedio oni povas enmeti bildojn, fotojn\\n\\n53\\n00:03:10,759 --> 00:03:14,142\\nkaj ankaŭ filmetojn, sed estas nepre necesita certiĝi\\n\\n54\\n00:03:14,188 --> 00:03:17,207\\nke la alŝutita materialo estas libere uzebla,\\n\\n55\\n00:03:17,221 --> 00:03:19,994\\nnome, donita per libera permeso!\\n\\n56\\n00:03:20,434 --> 00:03:23,597\\nĈiu informo enhavita en la artikoloj devas esti\\n\\n57\\n00:03:23,604 --> 00:03:26,765\\nfidinda kaj kontrolebla, pro tio\\n\\n58\\n00:03:26,805 --> 00:03:29,158\\nnecesas ĉiam citi la fontojn el kie ĝi estis eltirita,\\n\\n59\\n00:03:29,167 --> 00:03:32,283\\nfontoj, kiuj devas esti vaste agnoskitaj kaj akceptitaj.\\n\\n60\\n00:03:32,497 --> 00:03:35,339\\nĈe la fino de ĉiu artikolo, post la ĉefa teksto,\\n\\n61\\n00:03:35,353 --> 00:03:37,648\\nĉeestas diversaj aldonaj paragrafoj\\n\\n62\\n00:03:37,665 --> 00:03:40,095\\nkiuj direktas al pluaj informoj.\\n\\n63\\n00:03:40,302 --> 00:03:43,422\\nPor kelkaj temaj projektoj, ekzistas konvencioj\\n\\n64\\n00:03:43,405 --> 00:03:47,109\\nkaj gvidlinioj specifaj, kiuj helpas la redaktadon.\\n\\n65\\n00:03:48,500 --> 00:03:50,930\\nNeevitebla principo de Vikipedio\\n\\n66\\n00:03:50,964 --> 00:03:53,335\\nestas la uzo de neŭtrala vidpunkto.\\n\\n67\\n00:03:53,361 --> 00:03:55,981\\nLa artikoloj ne devas enhavi juĝoj pri la substanco,\\n\\n68\\n00:03:56,011 --> 00:03:59,739\\nsed ili devas prezenti ĉiun gravan vidpunkton\\n\\n69\\n00:03:59,754 --> 00:04:03,297\\njustmaniere, taŭga kaj sen antaŭjuĝoj.\\n\\n70\\n00:04:04,289 --> 00:04:08,548\\nĈiu artikolo de Vikipedio estas flankita de diskutpaĝo,\\n\\n71\\n00:04:08,627 --> 00:04:11,086\\nkie la uzantoj povas kompari la ideojn\\n\\n72\\n00:04:11,114 --> 00:04:14,184\\nkaj akordiĝi pri versio plejeble taŭga kaj akceptita.\\n\\n73\\n00:04:14,395 --> 00:04:17,464\\nMalsimile ol la paĝoj de la artikoloj, tie ĉi la intervenoj\\n\\n74\\n00:04:17,493 --> 00:04:20,784\\ndevas ĉiam esti subskribitaj, sed oni ĝuste memorigi ke Vikipedio\\n\\n75\\n00:04:20,823 --> 00:04:24,667\\nne estas loko, kie esprimi proprajn aŭ partiecajn vidpunktojn.\\n\\n76\\n00:04:25,117 --> 00:04:27,117\\nKiam uzanto bezonas\\n\\n77\\n00:04:27,147 --> 00:04:29,753\\nparoli al pli personoj samtempe,\\n\\n78\\n00:04:29,823 --> 00:04:33,631\\npri ĝenerala interesa problemo aŭ pri specifa sektoro,\\n\\n79\\n00:04:33,655 --> 00:04:37,510\\nli povas uzi la Diskutejon aŭ la respektivajn temajn diskutejojn.\\n\\n80\\n00:04:37,995 --> 00:04:41,242\\nĈiu aliĝinto disponas pri persona paĝo,\\n\\n81\\n00:04:41,273 --> 00:04:44,115\\nkie li povas enmeti kelkajn informojn pri si mem.\\n\\n82\\n00:04:44,226 --> 00:04:47,802\\nAnkaŭ ĉi tiu paĝo estas flankita de diskutpaĝo,\\n\\n83\\n00:04:47,827 --> 00:04:51,693\\nkiun oni uzas kiel ĝi estu persona retpoŝto.\\n\\n84\\n00:04:51,983 --> 00:04:55,753\\nPri teknikaj temoj oni povas demandi la plej esperantajn uzantojn,\\n\\n85\\n00:04:55,815 --> 00:04:58,338\\nekzemple pere de la Informgiĉeto.\\n\\n86\\n00:04:58,353 --> 00:05:02,030\\nPri la enhavoj oni povas konsulti Orakolon.\\n\\n87\\n00:05:02,924 --> 00:05:06,262\\nEn okazo de evidentaj misuzoj aŭ agoj de vandalismo,\\n\\n88\\n00:05:06,294 --> 00:05:09,319\\nkelkaj aliĝintoj, nomitaj \"administrantoj\",\\n\\n89\\n00:05:09,386 --> 00:05:12,083\\npovas interveni per specifaj agoj,\\n\\n90\\n00:05:12,109 --> 00:05:15,486\\nkiel bloki uzanton aŭ forigi aŭ bloki paĝon.\\n\\n91\\n00:05:15,664 --> 00:05:18,384\\nLa administrantoj estas volontuloj, kiuj akiris\\n\\n92\\n00:05:18,384 --> 00:05:22,048\\nla fidon de la kolektivo kaj ili estis elektitaj pere de elektado.\\n\\n93\\n00:05:22,218 --> 00:05:25,355\\nIli plenumas delikatajn teknikajn operaciojn\\n\\n94\\n00:05:25,357 --> 00:05:27,646\\nkaj certigas la respekton pri la gvidlinioj de la projekto,\\n\\n95\\n00:05:27,664 --> 00:05:30,453\\nsed ili ne estas la respondeculoj de Vikipedio.\\n\\n96\\n00:05:31,311 --> 00:05:34,532\\nVikipedio estas administrita de Wikimedia Foundation,\\n\\n97\\n00:05:34,542 --> 00:05:37,960\\nfondaĵo sen profitaj celoj, lokiĝita en San Francisco,\\n\\n98\\n00:05:37,958 --> 00:05:41,090\\nkiu certigas la rimedojn por la progresigo de la projekto.\\n\\n99\\n00:05:41,281 --> 00:05:44,554\\nLa fondaĵo, fondita dum 2003, vivas danke al\\n\\n100\\n00:05:44,559 --> 00:05:47,233\\nsubvencioj fare de publikaj institucioj kaj privatuloj,\\n\\n101\\n00:05:47,235 --> 00:05:51,571\\nsed ĉefe danke al multegaj mikro-donacioj fare de unuopaj personoj.\\n\\n102\\n00:05:51,853 --> 00:05:54,959\\nPor konservi nepran sendependon kaj kuntreni\\n\\n103\\n00:05:54,991 --> 00:05:59,277\\nmultajn kontribuantojn, ĉe Vikipedio ne estas reklamoj.\\n\\n104\\n00:05:59,979 --> 00:06:04,125\\nIntertempe ĉe la tuta mondo naskiĝis diversaj asocioj de volontuloj\\n\\n105\\n00:06:04,181 --> 00:06:07,761\\nkiuj loke antaŭenigi Vikipedion kaj la fratajn projektojn.\\n\\n106\\n00:06:08,105 --> 00:06:11,624\\nĈe Italujo ekde 2005 estas Wikimedia Italia,\\n\\n107\\n00:06:11,671 --> 00:06:15,961\\nkiu krom la projektoj de Wikimedia Foundation, antaŭenigas aliajn iniciativojn\\n\\n108\\n00:06:15,973 --> 00:06:19,662\\nrilate al libera disvastigo de la kulturo kaj la sciaro.\\n\\n109\\n00:06:19,898 --> 00:06:23,992\\nKaj al Wikimedia Italia povas adresi la gazetaro, la firmoj\\n\\n110\\n00:06:24,029 --> 00:06:28,130\\nkaj la lernejoj por havi pliajn informojn en italo pri Vikipedio.\\n\\n111\\n00:06:28,981 --> 00:06:31,905\\nMultegaj volontuloj senpage akumulas,\\n\\n112\\n00:06:31,913 --> 00:06:35,649\\nordigas kaj strukturas la kunpartigitajn sciojn de nia nuntempo\\n\\n113\\n00:06:35,701 --> 00:06:39,149\\npor liberigi ilin. Ĉu vi?\\n\\n114\\n00:06:39,352 --> 00:06:42,605\\nEstu kuraĝaj: Vikipedio estas malfermita por ĉiuj!\\n\\n115\\n00:06:54,000 --> 00:06:56,000\\n\\n\\n116\\n00:06:57,000 --> 00:06:59,000',\n", + " 'bytes': 9637,\n", + " 'sha1': 'oasx9a6dbfmplbr12p0k9hsqofsnhs8',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 156883761,\n", + " 'timestamp': '2015-04-12T15:08:31Z',\n", + " 'user': {'id': 16243, 'text': \"Cantons-de-l'Est\"},\n", + " 'page': {'id': 14813496,\n", + " 'title': 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Wording.',\n", + " 'text': \"1 00:00:01,71 --> 00:00:05,146 « Qu’y a-t-il de plus important dans les bibliothèques, que le fait même qu’elles existent ? »\\n\\n2 00:00:05,146 --> 00:00:09,147 Archibald Macleish, The Premise Of Meaning.\\n\\n1 00:00:08,860 --> 00:00:11,674 Wikisource est une bibliothèque numérique en ligne\\n\\n2 00:00:11,698 --> 00:00:14,610 qui recueille des textes publiés dans toutes les langues\\n\\n3 00:00:14,631 --> 00:00:18,947 à condition qu’ils soient dans le domaine public ou publiés sous licence libre.\\n\\n4 00:00:19,057 --> 00:00:21,556 Comme tout projet de la Wikimedia Foundation,\\n\\n5 00:00:21,607 --> 00:00:24,997 Wikisource est ouverte à tous et chacun peut y collaborer,\\n\\n6 00:00:25,039 --> 00:00:27,126 même de façon anonyme.\\n\\n7 00:00:27,918 --> 00:00:31,750 Sur Wikisource, les textes sont transcrits à partir d’une source publiée\\n\\n8 00:00:31,764 --> 00:00:34,695 puis mis en forme pour être lus facilement.\\n\\n9 00:00:34,815 --> 00:00:38,255 Romans et nouvelles, essais et manuels,\\n\\n10 00:00:38,299 --> 00:00:43,289 livres de prières et affiches politiques, chants folkloriques et poèmes,\\n\\n11 00:00:43,336 --> 00:00:47,899 contes de fées et comptines, documents juridiques et ouvrages scientifiques\\n\\n12 00:00:47,959 --> 00:00:50,565 thèses et mémoires à condition qu’ils aient déjà été publiés\\n\\n13 00:00:50,596 --> 00:00:53,132 dans un établissement d’enseignement reconnu.\\n\\n14 00:00:53,286 --> 00:00:57,167 Comme Wikipédia, le projet est divisé en différentes langues :\\n\\n15 00:00:57,252 --> 00:01:00,502 sur la Wikisource en anglais se trouvent les textes anglophones,\\n\\n16 00:01:00,563 --> 00:01:04,436 ceux en français dans la Wikisource en français, et ainsi de suite.\\n\\n17 00:01:04,564 --> 00:01:06,930 Les textes sont recueillis dans toutes les langues\\n\\n18 00:01:06,995 --> 00:01:09,373 même les moins répandues et les dialectes,\\n\\n19 00:01:09,425 --> 00:01:12,455 à condition qu’ils aient déjà été publiés et puissent être librement transcrits.\\n\\n20 00:01:12,546 --> 00:01:15,058 Ces conditions s’appliquent également aux traductions,\\n\\n21 00:01:15,094 --> 00:01:18,599 qui sont des œuvres dérivées. Donc ne peuvent pas être inclus,\\n\\n22 00:01:18,649 --> 00:01:22,314 les traductions de textes qui n’ont pas déjà été publiés. Texte et traduction\\n\\n23 00:01:22,340 --> 00:01:26,855 doivent tous les deux être dans le domaine public ou publiés sous licence libre.\\n\\n24 00:01:27,653 --> 00:01:30,714 Tous les textes peuvent être copiés depuis Wikisource\\n\\n25 00:01:30,792 --> 00:01:33,903 et utilisés comme base pour des œuvres dérivées,\\n\\n26 00:01:33,947 --> 00:01:35,947 même à des fins commerciales.\\n\\n27 00:01:36,049 --> 00:01:38,521 Ces textes doivent donc avoir été distribués avec une licence\\n\\n28 00:01:38,571 --> 00:01:41,952 qui permet ces libertés, ou bien ne pas être sous droit d’auteur\\n\\n29 00:01:42,020 --> 00:01:45,091 tant aux États-Unis,\\n\\n30 00:01:45,121 --> 00:01:47,295 où sont les serveurs Wikisource,\\n\\n31 00:01:47,344 --> 00:01:50,206 que dans le pays de la publication du texte.\\n\\n32 00:01:51,271 --> 00:01:54,115 En l’état actuel, selon la loi américaine,\\n\\n33 00:01:54,196 --> 00:01:56,372 sont certainement dans le domaine public\\n\\n34 00:01:56,443 --> 00:01:59,539 les œuvres publiées avant 1923.\\n\\n35 00:01:59,745 --> 00:02:03,243 En France, l’œuvre est protégée par le droit d’auteur\\n\\n36 00:02:03,271 --> 00:02:06,128 jusqu’à 70 ans après la mort de son créateur.\\n\\n37 00:02:06,221 --> 00:02:09,314 Un texte peut donc être dans le domaine public en France\\n\\n38 00:02:09,348 --> 00:02:12,666 mais pas encore aux États-Unis et vice versa.\\n\\n39 00:02:12,772 --> 00:02:16,358 Un texte contemporain peut être ajouté à Wikisource\\n\\n40 00:02:16,424 --> 00:02:19,124 uniquement si l’auteur a explicitement autorisé\\n\\n41 00:02:19,166 --> 00:02:22,406 toute utilisation de l’œuvre, y compris commerciale.\\n\\n42 00:02:22,576 --> 00:02:25,000 L’auteur peut toujours exiger\\n\\n43 00:02:25,048 --> 00:02:27,961 la garantie de cette liberté sur les œuvres dérivées.\\n\\n44 00:02:28,023 --> 00:02:31,482 Sur Wikisource, tout le monde doit être en mesure de vérifier le texte\\n\\n45 00:02:31,549 --> 00:02:33,549 et c’est pourquoi désormais\\n\\n46 00:02:33,622 --> 00:02:36,425 on fournit le fac-similé entier de l’ouvrage original.\\n\\n47 00:02:36,496 --> 00:02:40,065 Dans le cas des textes transcrits ailleurs, il est nécessaire de s’appuyer\\n\\n48 00:02:40,148 --> 00:02:44,873 sur des sources fiables et d’inclure des références spécifiques.\\n\\n49 00:02:45,478 --> 00:02:48,645 Les wikisourciers sont les scribes de l’ère numérique\\n\\n50 00:02:48,662 --> 00:02:50,839 qui, par passion ou altruisme,\\n\\n51 00:02:50,856 --> 00:02:53,207 transcrivent les textes disponibles gratuitement.\\n\\n52 00:02:53,272 --> 00:02:55,910 Les retranscriptions doivent être fidèles,\\n\\n53 00:02:55,942 --> 00:02:58,574 tenir compte des pratiques rédactionnelles de l’époque\\n\\n54 00:02:58,630 --> 00:03:02,413 mais aussi des conventions typographiques adoptées par la communauté.\\n\\n55 00:03:03,187 --> 00:03:05,604 Pour commencer la transcription\\n\\n56 00:03:05,622 --> 00:03:07,622 on crée une page d’index,\\n\\n57 00:03:07,669 --> 00:03:09,900 reliée au livre scanné de Wikimedia Commons,\\n\\n58 00:03:09,969 --> 00:03:14,026 projet-frère de Wikisource rassemblant des fichiers multimédias.\\n\\n59 00:03:14,311 --> 00:03:17,069 Les liens sont générés automatiquement\\n\\n60 00:03:17,138 --> 00:03:19,234 pour chaque page du travail.\\n\\n61 00:03:19,339 --> 00:03:22,100 En cliquant sur un lien, vous pouvez consulter\\n\\n62 00:03:22,163 --> 00:03:24,260 le fac-similé du texte et en vis-à-vis de lui\\n\\n63 00:03:24,305 --> 00:03:27,124 une zone dans laquelle s’effectue la transcription.\\n\\n64 00:03:27,235 --> 00:03:30,104 Souvent, il n’est pas nécessaire de transcrire le texte à partir de zéro,\\n\\n65 00:03:30,147 --> 00:03:33,186 car la page numérisée est traitée par un logiciel\\n\\n66 00:03:33,217 --> 00:03:35,725 qui peut reconnaître les caractères.\\n\\n67 00:03:35,850 --> 00:03:38,507 La présentation des pages est uniformisée\\n\\n68 00:03:38,570 --> 00:03:41,442 grâce à l’utilisation de modèles\\n\\n69 00:03:41,483 --> 00:03:45,252 qui établissent automatiquement la mise en forme ou les parties répétitives des textes.\\n\\n70 00:03:45,514 --> 00:03:48,625 Une fois complétée la transcription de toutes les pages,\\n\\n71 00:03:48,654 --> 00:03:51,859 le texte est réassemblé sur la base de sa structure logique\\n\\n72 00:03:51,934 --> 00:03:54,145 (Par exemple, selon ses chapitres).\\n\\n73 00:03:54,252 --> 00:03:57,051 Le texte est formaté afin qu’il soit conforme\\n\\n74 00:03:57,082 --> 00:03:59,340 à la structure voulue par l’auteur,\\n\\n75 00:03:59,378 --> 00:04:02,782 mais aussi adapté à la lecture à l’écran et à l’impression.\\n\\n76 00:04:03,619 --> 00:04:06,646 Comme Wikipédia, un logiciel gère Wikisource,\\n\\n77 00:04:06,707 --> 00:04:09,448 lequel permet de créer des liens hypertextes,\\n\\n78 00:04:09,479 --> 00:04:12,829 reliant les différents livres et les auteurs de la bibliothèque.\\n\\n79 00:04:12,882 --> 00:04:15,725 Par exemple, une citation (ou un extrait d’un essai)\\n\\n80 00:04:15,759 --> 00:04:18,712 peut se rapporter à l’auteur ou au texte qu’il cite.\\n\\n81 00:04:19,493 --> 00:04:22,952 En bas de chaque texte se trouvent les liens vers des catégories\\n\\n82 00:04:23,000 --> 00:04:25,461 pour aider à classer les travaux et les auteurs\\n\\n83 00:04:25,475 --> 00:04:27,951 par type, source, ou tout autre classement.\\n\\n84 00:04:28,056 --> 00:04:30,511 En outre, chaque texte peut être lié\\n\\n85 00:04:30,549 --> 00:04:32,742 à ses traductions dans d’autres Wikisource,\\n\\n86 00:04:32,798 --> 00:04:34,798 à son article sur Wikipédia\\n\\n87 00:04:34,819 --> 00:04:37,186 ou à tout autre projet Wikimedia.\\n\\n88 00:04:37,469 --> 00:04:40,687 Chaque auteur dont les œuvres sont publiées sur Wikisource\\n\\n89 00:04:40,749 --> 00:04:44,586 a une page dédiée, qui contient une courte biographie,\\n\\n90 00:04:44,640 --> 00:04:47,616 la liste des textes disponibles pour consultation\\n\\n91 00:04:47,640 --> 00:04:49,640 et éventuellement d’autres informations,\\n\\n92 00:04:49,696 --> 00:04:53,502 comme par exemple les ouvrages dans lesquels l’auteur est cité\\n\\n93 00:04:53,780 --> 00:04:57,355 On y trouve aussi des liens vers des pages sur l’auteur\\n\\n94 00:04:57,410 --> 00:05:02,153 disponibles dans d’autres projets Wikimedia et d’autres versions linguistiques.\\n\\n95 00:05:02,333 --> 00:05:06,430 Enfin, Wikisource offre des portails, qui proposent des parcours de lecture\\n\\n96 00:05:06,470 --> 00:05:09,616 parmi les textes de la bibliothèque sur des sujets précis.\\n\\n97 00:05:11,060 --> 00:05:14,525 Sur Wikisource, comme sur Wikipédia, il y a des administrateurs,\\n\\n98 00:05:14,602 --> 00:05:17,541 c’est-à-dire des utilisateurs experts qui ont la confiance de la communauté\\n\\n99 00:05:17,567 --> 00:05:19,567 et pour qui ont été activés\\n\\n100 00:05:19,622 --> 00:05:22,126 des outils de gestion du logiciel plus avancés.\\n\\n101 00:05:22,168 --> 00:05:25,461 Leur expérience en fait de facto de vrais bibliothécaires\\n\\n102 00:05:25,500 --> 00:05:27,799 qui servent de mentors aux autres.\\n\\n103 00:05:28,693 --> 00:05:31,682 Le point de rencontre est le Scriptorium,\\n\\n104 00:05:31,693 --> 00:05:34,385 où vous pouvez poser des questions aux utilisateurs expérimentés\\n\\n105 00:05:34,413 --> 00:05:36,694 ou commencer une nouvelle discussion.\\n\\n106 00:05:36,784 --> 00:05:39,678 Afin de mieux gérer les thèmes spécifiques, il existe\\n\\n107 00:05:39,748 --> 00:05:42,992 des pages de projets thématiques dédiées.\\n\\n108 00:05:43,046 --> 00:05:45,046 Dans la Wikisource en italien\\n\\n109 00:05:45,119 --> 00:05:47,784 ils représentent une porte d'entrée \\n\\n110 00:05:47,822 --> 00:05:51,135 pour ceux qui sont intéressés par un sujet en particulier.\\n\\n111 00:05:51,434 --> 00:05:54,070 On peut indiquer l’avancement des travaux\\n\\n112 00:05:54,102 --> 00:05:56,402 sur un texte spécifique ou une partie de texte\\n\\n113 00:05:56,437 --> 00:05:59,859 à l’aide d’un système comportant cinq étapes principales.\\n\\n114 00:06:00,137 --> 00:06:02,347 Lorsque le texte est complet dans son intégralité,\\n\\n115 00:06:02,385 --> 00:06:05,805 correctement mis en forme, relu et corrigé par deux utilisateurs ou plus\\n\\n116 00:06:05,874 --> 00:06:08,890 disposant du fac-similé de l’édition papier de référence, il reçoit le PIP,\\n\\n117 00:06:08,944 --> 00:06:12,526 qui confère le statut d’« Édition Wikisource ».\\n\\n118 00:06:12,731 --> 00:06:15,311 Résultat des efforts de plus d’un utilisateur,\\n\\n119 00:06:15,346 --> 00:06:17,850 chaque mois sont choisis un ou plusieurs textes\\n\\n120 00:06:17,892 --> 00:06:20,521 qu’on revoit et corrige ensemble.\\n\\n121 00:06:21,242 --> 00:06:23,416 Avec Wikisource, on peut donc montrer\\n\\n122 00:06:23,455 --> 00:06:25,843 son propre amour des livres, en les sauvant de l’oubli\\n\\n123 00:06:25,861 --> 00:06:28,776 en les rendant accessibles à tous sur le réseau.\\n\\n124 00:06:29,140 --> 00:06:31,140 Joignez-vous à Wikisource\\n\\n125 00:06:31,161 --> 00:06:34,216 participez vous aussi à la construction d’une bibliothèque libre.\",\n", + " 'bytes': 11203,\n", + " 'sha1': '3absetsdbd98l4kg0w7p5xoocf9393l',\n", + " 'parent_id': 62357063,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 53632604,\n", + " 'timestamp': '2011-04-26T18:30:03Z',\n", + " 'user': {'id': 50587, 'text': 'Nemo bis'},\n", + " 'page': {'id': 14840749,\n", + " 'title': 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'min',\n", + " 'text': '1\\n00:00:08,860 --> 00:00:11,674\\nWikisource is an online digital library\\n\\n2\\n00:00:11,698 --> 00:00:14,610\\nthat collects texts published in any language\\n\\n3\\n00:00:14,631 --> 00:00:18,947\\nif provided in the public domain or released under a free license.\\n\\n4\\n00:00:19,057 --> 00:00:21,556\\nLike all projects of the Wikimedia Foundation,\\n\\n5\\n00:00:21,607 --> 00:00:24,997\\nWikisource is open to anyone and everyone can cooperate,\\n\\n6\\n00:00:25,039 --> 00:00:27,126\\neven anonymously.\\n\\n7\\n00:00:27,918 --> 00:00:31,750\\nIn Wikisource texts are transcribed from a published source\\n\\n8\\n00:00:31,764 --> 00:00:34,695\\nand formatted to be read comfortably.\\n\\n9\\n00:00:34,815 --> 00:00:38,255\\nNovels and short stories, essays and manuals,\\n\\n10\\n00:00:38,299 --> 00:00:43,289\\nprayer books and political posters, folk songs and poems,\\n\\n11\\n00:00:43,336 --> 00:00:47,899\\nfairy tales and nursery rhymes, legal documents and scientific works\\n\\n12\\n00:00:47,959 --> 00:00:50,565\\ntheses and dissertations provided they were already defended\\n\\n13\\n00:00:50,596 --> 00:00:53,132\\nat an academic institution.\\n\\n14\\n00:00:53,286 --> 00:00:57,167\\nLike Wikipedia, the project is divided into the different languages:\\n\\n15\\n00:00:57,252 --> 00:01:00,502\\nIn the English version of Wikisource you have to write texts in English language, \\n\\n16\\n00:01:00,563 --> 00:01:04,436\\nin French version in French language and and so on...\\n\\n17\\n00:01:04,564 --> 00:01:06,930\\nTexts are collected in every languages\\n\\n18\\n00:01:06,995 --> 00:01:09,373\\neven in the less widely used and dialects,\\n\\n19\\n00:01:09,425 --> 00:01:12,455\\nif already published and freely transcribed.\\n\\n20\\n00:01:12,546 --> 00:01:15,058\\nThese conditions apply to the translations,\\n\\n21\\n00:01:15,094 --> 00:01:18,599\\nwhich are derivative works: can not therefore be included\\n\\n22\\n00:01:18,649 --> 00:01:22,314\\ntranslated texts are not published and both the text and the translation\\n\\n23\\n00:01:22,340 --> 00:01:26,855\\nmust be in the public domain or released under a free license.\\n\\n24\\n00:01:27,653 --> 00:01:30,714\\nEach text must be copied to Wikisource\\n\\n25\\n00:01:30,792 --> 00:01:33,903\\nand used as the basis for derivative works,\\n\\n26\\n00:01:33,947 --> 00:01:35,947\\nfor commercial purposes, too.\\n\\n27\\n00:01:36,049 --> 00:01:38,521\\nIt must therefore have been distributed with a license\\n\\n28\\n00:01:38,571 --> 00:01:41,952\\nthat these grants should be deprived of their liberty or\\n\\n29\\n00:01:42,020 --> 00:01:45,091\\ncopyright in the work, both in the United States,\\n\\n30\\n00:01:45,121 --> 00:01:47,295\\nwhere are the Wikisource server,\\n\\n31\\n00:01:47,344 --> 00:01:50,206\\nand in the country of publication of the text.\\n\\n32\\n00:01:51,271 --> 00:01:54,115\\nAt present, according to American law,\\n\\n33\\n00:01:54,196 --> 00:01:56,372\\nare certainly in the public domain\\n\\n34\\n00:01:56,443 --> 00:01:59,539\\nOnly works published before 1923.\\n\\n35\\n00:01:59,745 --> 00:02:03,243\\nFor the Italian state rather the work is copyrighted\\n\\n36\\n00:02:03,271 --> 00:02:06,128\\nuntil 70 years after the death of its creator.\\n\\n37\\n00:02:06,221 --> 00:02:09,314A text may therefore be in the public domain in Italy\\n\\n38\\n00:02:09,348 --> 00:02:12,666\\nbut not yet in the United States and vice versa.\\n\\n39\\n00:02:12,772 --> 00:02:16,358\\nA text contemporary hand, can be added to Wikisource\\n\\n40\\n00:02:16,424 --> 00:02:19,124\\nonly if the author has explicitly authorized\\n\\n41\\n00:02:19,166 --> 00:02:22,406\\nAny use of the work, including commercial.\\n\\n42\\n00:02:22,576 --> 00:02:25,000\\nThe author may still require\\n\\n43\\n00:02:25,048 --> 00:02:27,961\\ngranting of freedom in derivative works.\\n\\n44\\n00:02:28,023 --> 00:02:31,482\\nIn Wikisource, anyone should be able to revise the text\\n\\n45\\n00:02:31,549 --> 00:02:33,549\\nand that is why it is now practice\\n\\n46\\n00:02:33,622 --> 00:02:36,425\\nthe use of full scan of the original book.\\n\\n47\\n00:02:36,496 --> 00:02:40,065\\nIn the case of texts transcribed elsewhere is necessary to rely\\n\\n48\\n00:02:40,148 --> 00:02:44,873\\nonly trusted sources and include specific references.\\n\\n49\\n00:02:45,478 --> 00:02:48,645\\nWikisource users are amanuenses of digital age\\n\\n50\\n00:02:48,662 --> 00:02:50,839\\nthat out of interest or altruism\\n\\n51\\n00:02:50,856 --> 00:02:53,207\\ntranscribe the texts freely available.\\n\\n52\\n00:02:53,272 --> 00:02:55,910\\nEach text must be reported accurately,\\n\\n53\\n00:02:55,942 --> 00:02:58,574\\nkeeping into account the writing habits of the time\\n\\n54\\n00:02:58,630 --> 00:03:02,413\\nand the conventions adopted by the community.\\n\\n55\\n00:03:03,187 --> 00:03:05,604\\nThe transcription process begins\\n\\n56\\n00:03:05,622 --> 00:03:07,622\\nwith the creation of an \"index\" page,\\n\\n57\\n00:03:07,669 --> 00:03:09,900\\nthat recalls the scanned book from Commons, \\n\\n58\\n00:03:09,969 --> 00:03:14,026\\nthe Wikisource\\'s sister project that collects free multimedia files.\\n\\n59\\n00:03:14,311 --> 00:03:17,069\\nThe links to every single page \\n\\n60\\n00:03:17,138 --> 00:03:19,234\\nof the book are generated automatically.\\n\\n61\\n00:03:19,339 --> 00:03:22,100\\nBy clicking on a link it\\'s possible to see \\n\\n62\\n00:03:22,163 --> 00:03:24,260\\nthe scanned page and, aside\\n\\n63\\n00:03:24,305 --> 00:03:27,124\\nthe box into which the transcription is to be written.\\n\\n64\\n00:03:27,235 --> 00:03:30,104\\nOften it\\'s not necessary to transcript the text from scratch, \\n\\n65\\n00:03:30,147 --> 00:03:33,186\\nbecause the scanned page is already processed by a software\\n\\n66\\n00:03:33,217 --> 00:03:35,725\\nfor automatic character recognition.\\n\\n67\\n00:03:35,850 --> 00:03:38,507\\nThe graphic layout of the pages is uniformed\\n\\n68\\n00:03:38,570 --> 00:03:41,442\\nby using templates that arrange automatically\\n\\n69\\n00:03:41,483 --> 00:03:45,252\\nformats or repetitive parts of the pages or the texts.\\n\\n70\\n00:03:45,514 --> 00:03:48,625\\nOnce the transcription of all the pages is completed,\\n\\n71\\n00:03:48,654 --> 00:03:51,859\\nthe text is assembled according by its logical structure\\n\\n72\\n00:03:51,934 --> 00:03:54,145\\n(as example, by its chapters).\\n\\n73\\n00:03:54,252 --> 00:03:57,051\\nThe so formatted text is therefore consistent\\n\\n74\\n00:03:57,082 --> 00:03:59,340\\nwith the structure wanted by the author, \\n\\n75\\n00:03:59,378 --> 00:04:02,782\\nbut also adapted for screen reading and printing.\\n\\n76\\n00:04:03,619 --> 00:04:06,646\\nLike Wikipedia, Wikisource is based on a software \\n\\n77\\n00:04:06,707 --> 00:04:09,448\\nthat allows to create hypertextual links, \\n\\n78\\n00:04:09,479 --> 00:04:12,829\\nconnetting the books and the authors of the library with each other.\\n\\n79\\n00:04:12,882 --> 00:04:15,725\\nFor instance, a quote (or an excerpt from an essay) \\n\\n80\\n00:04:15,759 --> 00:04:18,712\\ncan link to the author or to the quoted text.\\n\\n81\\n00:04:19,493 --> 00:04:22,952\\nAt the bottom of each text there are the links to the categories\\n\\n82\\n00:04:23,000 --> 00:04:25,461\\nthat help in organizing books and authors \\n\\n83\\n00:04:25,475 --> 00:04:27,951\\nby type, origin, and so on. \\n\\n84\\n00:04:28,056 --> 00:04:30,511\\nBesides, every text can be linked\\n\\n85\\n00:04:30,549 --> 00:04:32,742\\nto its translations available on the other Wikisources, \\n\\n86\\n00:04:32,798 --> 00:04:34,798\\nto its article on Wikipedia \\n\\n87\\n00:04:34,819 --> 00:04:37,186\\nor to any other Wikimedia project.\\n\\n88\\n00:04:37,469 --> 00:04:40,687\\nEvery author whose works are published on Wikisource \\n\\n89\\n00:04:40,749 --> 00:04:44,586\\nhas a dedicated page, which contains his or her basic information, \\n\\n90\\n00:04:44,640 --> 00:04:47,616\\nthe list of the available texts\\n\\n91\\n00:04:47,640 --> 00:04:49,640\\nand other relevant information, \\n\\n92\\n00:04:49,696 --> 00:04:53,502\\nsuch as the works in which the author is quoted and the related authors.\\n\\n93\\n00:04:53,780 --> 00:04:57,355\\nHere as well, there are links pointing to the pages about the author \\n\\n94\\n00:04:57,410 --> 00:05:02,153\\navailable on other Wikimedia projects and other languages.\\n\\n95\\n00:05:02,333 --> 00:05:06,430\\nFinally, we mention the portals, that offer guided paths\\n\\n96\\n00:05:06,470 --> 00:05:09,616\\nthrough the published texts about a given topic.\\n\\n97\\n00:05:11,060 --> 00:05:14,525\\nIn Wikisource, like in Wikipedia, we have the administrators, \\n\\n98\\n00:05:14,602 --> 00:05:17,541\\nexpert users trusted by the community\\n\\n99\\n00:05:17,567 --> 00:05:19,567\\nwho can access \\n\\n100\\n00:05:19,622 --> 00:05:22,126\\nsome advanced management functions of the software.\\n\\n101\\n00:05:22,168 --> 00:05:25,461\\nWith their experience, they act as real librarians\\n\\n102\\n00:05:25,500 --> 00:05:27,799\\ntutoring the other users.\\n\\n103\\n00:05:28,693 --> 00:05:31,682\\nThe meeting point of the Wikisource users is the Bar, \\n\\n104\\n00:05:31,693 --> 00:05:34,385\\nwhere we can pose questions to the more experienced users\\n\\n105\\n00:05:34,413 --> 00:05:36,694\\nand start new discusions.\\n\\n106\\n00:05:36,784 --> 00:05:39,678\\nIn order to best handle some specific topics \\n\\n107\\n00:05:39,748 --> 00:05:42,992\\nthere are some dedicated pages: the thematic projects. \\n\\n108\\n00:05:43,046 --> 00:05:45,046\\nOn the Italian version of Wikisource \\n\\n109\\n00:05:45,119 --> 00:05:47,784\\nthey are the heart of the activity and the meeting point\\n\\n110\\n00:05:47,822 --> 00:05:51,135\\nfor those users interested in a particular topic.\\n\\n111\\n00:05:51,434 --> 00:05:54,070\\nFor showing the advancement of the transcription process \\n\\n112\\n00:05:54,102 --> 00:05:56,402\\nof a given text or its part\\n\\n113\\n00:05:56,437 --> 00:05:59,859\\na 5-step system is used. \\n\\n114\\n00:06:00,137 --> 00:06:02,347\\nWhen the text is complete in every part, \\n\\n115\\n00:06:02,385 --> 00:06:05,805\\ncorrectly formatted and proofread by two or more users\\n\\n116\\n00:06:05,874 --> 00:06:08,890\\ncomparing the original paper source, it\\'s awarded with the star, \\n\\n117\\n00:06:08,944 --> 00:06:12,526\\nthat qualifies it as a \"Wikisource Edition\".\\n\\n118\\n00:06:12,731 --> 00:06:15,311\\nAnd for focusing the energies of many users, \\n\\n119\\n00:06:15,346 --> 00:06:17,850\\none or more texts are chosen every month\\n\\n120\\n00:06:17,892 --> 00:06:20,521\\nto be proofread and revised together.\\n\\n121\\n00:06:21,242 --> 00:06:23,416\\nWith Wikisource you can show \\n\\n122\\n00:06:23,455 --> 00:06:25,843\\nall your love for the books, saving them from the oblivion\\n\\n123\\n00:06:25,861 --> 00:06:28,776\\nand making them available for everyone on the net. \\n\\n124\\n00:06:29,140 --> 00:06:31,140\\nJoin in Wikisource \\n\\n125\\n00:06:31,161 --> 00:06:34,216\\nand build you too a free library.',\n", + " 'bytes': 10149,\n", + " 'sha1': 'mb95l17kwtsnrqzuu1bc2fy4fx12dpk',\n", + " 'parent_id': 53120546,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55877099,\n", + " 'timestamp': '2011-06-25T04:05:31Z',\n", + " 'user': {'id': 6532, 'text': 'Giro720'},\n", + " 'page': {'id': 14864696,\n", + " 'title': 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:02,000 --> 00:00:06,000\\n<i>O que é mais importante para as bibliotecas,\\nse não o fato de que elas existem?</i>\\n\\n2\\n00:00:08,860 --> 00:00:11,674\\nWikisource é uma biblioteca digital on-line\\n\\n3\\n00:00:11,698 --> 00:00:14,610\\nque reúne textos publicados em qualquer idioma\\n\\n4\\n00:00:14,631 --> 00:00:18,947\\ncaídos em domínio público ou licenciados sob uma licença livre.\\n\\n5\\n00:00:19,057 --> 00:00:21,556\\nComo os outros projetos da Wikimedia Foundation,\\n\\n6\\n00:00:21,607 --> 00:00:24,997\\no Wikisource é aberto a todos e qualquer pessoa pode colaborar,\\n\\n7\\n00:00:25,039 --> 00:00:27,126\\nmesmo anonimamente.\\n\\n8\\n00:00:27,918 --> 00:00:31,750\\nNo Wikisource os textos são transcritos a partir de uma fonte publicada\\n\\n9\\n00:00:31,764 --> 00:00:34,695\\ne formatados para serem lidos confortavelmente.\\n\\n10\\n00:00:34,815 --> 00:00:38,255\\nRomances e contos, ensaios e manuais,\\n\\n11\\n00:00:38,299 --> 00:00:43,289\\nlivros de oração e manifestos políticos, canções folclóricas e poemas,\\n\\n12\\n00:00:43,336 --> 00:00:47,899\\ncontos de fadas e canções de ninar, documentos jurídicos e trabalhos científicos,\\n\\n13\\n00:00:47,959 --> 00:00:50,565\\nteses e dissertações, desde que já defendidas\\n\\n14\\n00:00:50,596 --> 00:00:53,132\\nem uma instituição acadêmica reconhecida.\\n\\n15\\n00:00:53,286 --> 00:00:57,167\\nComo a Wikipédia, o projeto é dividido em diferentes línguas:\\n\\n16\\n00:00:57,252 --> 00:01:00,502\\nno Wikisource em inglês estão os textos em inglês,\\n\\n17\\n00:01:00,563 --> 00:01:04,436\\njá os em francês estão na versão francesa, e assim por diante.\\n\\n18\\n00:01:04,564 --> 00:01:06,930\\nOs textos são coletadas em todas as línguas\\n\\n19\\n00:01:06,995 --> 00:01:09,373\\nmesmo em línguas menos utilizadas e dialetos,\\n\\n20\\n00:01:09,425 --> 00:01:12,455\\ndesde que já tenham sido publicados e possam ser livremente transcritos.\\n\\n21\\n00:01:12,546 --> 00:01:15,058\\nEstas condições se aplicam às traduções,\\n\\n22\\n00:01:15,094 --> 00:01:18,599\\nque são trabalhos derivados: não podem ser incluídos\\n\\n23\\n00:01:18,649 --> 00:01:22,314\\ntextos traduzidos que não foram publicados, e tanto o texto como a tradução\\n\\n24\\n00:01:22,340 --> 00:01:26,855\\ndevem estar em domínio público ou disponíveis sob uma licença livre.\\n\\n25\\n00:01:27,653 --> 00:01:30,714\\nCada texto deve ser copiado ao Wikisource\\n\\n26\\n00:01:30,792 --> 00:01:33,903\\ne utilizado como base para trabalhos derivados,\\n\\n27\\n00:01:33,947 --> 00:01:35,947\\ne, até mesmo, ser usado para fins comerciais.\\n\\n28\\n00:01:36,049 --> 00:01:38,521\\nEle deve, no entanto, ter sido distribuído com uma licença\\n\\n29\\n00:01:38,571 --> 00:01:41,952\\nque conceda essas mesmas liberdades, ou cujo autor abra mão de todos\\n\\n30\\n00:01:42,020 --> 00:01:45,091\\nos direitos autorais sobre a obra, tanto nos EUA,\\n\\n31\\n00:01:45,121 --> 00:01:47,295\\nonde está o servidor Wikisource,\\n\\n32\\n00:01:47,344 --> 00:01:50,206\\nquanto no país de publicação do texto.\\n\\n33\\n00:01:51,271 --> 00:01:54,115\\nAtualmente, de acordo com a lei norte-americana,\\n\\n34\\n00:01:54,196 --> 00:01:56,372\\nestão certamente em domínio público\\n\\n35\\n00:01:56,443 --> 00:01:59,539\\napenas as obras publicadas antes de 1923.\\n\\n36\\n00:01:59,745 --> 00:02:03,243\\nPara o Estado italiano [bem como o brasileiro e o português], obras estão protegidas por direitos autorais\\n\\n37\\n00:02:03,271 --> 00:02:06,128\\naté 70 anos após a morte de seu criador.\\n\\n38\\n00:02:06,221 --> 00:02:09,314\\nUm texto pode ser de domínio público na Itália [ou no Brasil e em Portugal]\\n\\n39\\n00:02:09,348 --> 00:02:12,666\\nmas ainda não nos EUA e vice-versa.\\n\\n40\\n00:02:12,772 --> 00:02:16,358\\nUm texto contemporâneo pode ser adicionado ao Wikisource\\n\\n41\\n00:02:16,424 --> 00:02:19,124\\napenas se o autor autorizar expressamente\\n\\n42\\n00:02:19,166 --> 00:02:22,406\\nqualquer uso da obra, inclusive comercial.\\n\\n43\\n00:02:22,576 --> 00:02:25,000\\nO autor pode ainda exigir\\n\\n44\\n00:02:25,048 --> 00:02:27,961\\na concessão de liberdade nas obras derivadas.\\n\\n45\\n00:02:28,023 --> 00:02:31,482\\nNo Wikisource, todos devem ser capazes de verificar os textos\\n\\n46\\n00:02:31,549 --> 00:02:33,549\\ne é por isso que agora é uma prática\\n\\n47\\n00:02:33,622 --> 00:02:36,425\\no uso de varredura completa do livro original.\\n\\n48\\n00:02:36,496 --> 00:02:40,065\\nNo caso dos textos transcritos de outros lugares, é necessário recorrer\\n\\n49\\n00:02:40,148 --> 00:02:44,873\\napenas às fontes fiáveis e incluir referências bibliográficas.\\n\\n50\\n00:02:45,478 --> 00:02:48,645\\nOs usuários do Wikisource são os escribas da era digital\\n\\n51\\n00:02:48,662 --> 00:02:50,839\\nque por interesse ou altruísmo\\n\\n52\\n00:02:50,856 --> 00:02:53,207\\ntranscrevem os textos disponíveis livremente.\\n\\n53\\n00:02:53,272 --> 00:02:55,910\\nCada texto deve ser relatado fielmente,\\n\\n54\\n00:02:55,942 --> 00:02:58,574\\ntendo em conta as práticas da escrita da época\\n\\n55\\n00:02:58,630 --> 00:03:02,413\\ne as convenções de transcrição adotadas pela comunidade.\\n\\n56\\n00:03:03,187 --> 00:03:05,604\\nO processo de transcrição começa\\n\\n57\\n00:03:05,622 --> 00:03:07,622\\ncom a criação de uma página \"índice\",\\n\\n58\\n00:03:07,669 --> 00:03:09,900\\nque carrega as páginas do livro digitalizado no Commons,\\n\\n59\\n00:03:09,969 --> 00:03:14,026\\num projeto irmão do projeto Wikisource, que reúne conteúdo multimídia.\\n\\n60\\n00:03:14,311 --> 00:03:17,069\\nOs links são então gerados automaticamente\\n\\n61\\n00:03:17,138 --> 00:03:19,234\\npara cada página da obra.\\n\\n62\\n00:03:19,339 --> 00:03:22,100\\nAo clicar em um link é possível visualizar\\n\\n63\\n00:03:22,163 --> 00:03:24,260\\no texto digitalizado e, do lado,\\n\\n64\\n00:03:24,305 --> 00:03:27,124\\na caixa onde a transcrição é efetuada.\\n\\n65\\n00:03:27,235 --> 00:03:30,104\\nMuitas vezes não é necessário transcrever o texto a partir do zero,\\n\\n66\\n00:03:30,147 --> 00:03:33,186\\nporque a página digitalizada é processada por um software\\n\\n67\\n00:03:33,217 --> 00:03:35,725\\nde reconhecimento de caracteres.\\n\\n68\\n00:03:35,850 --> 00:03:38,507\\nO layout das páginas é uniformizado\\n\\n69\\n00:03:38,570 --> 00:03:41,442\\natravés da utilização de \"predefinições\" que ajustam automaticamente\\n\\n70\\n00:03:41,483 --> 00:03:45,252\\na formatação ou partes repetitivas das páginas ou do textos.\\n\\n71\\n00:03:45,514 --> 00:03:48,625\\nUma vez realizada a transcrição de todas as páginas,\\n\\n72\\n00:03:48,654 --> 00:03:51,859\\no texto é montado com base em sua estrutura lógica\\n\\n73\\n00:03:51,934 --> 00:03:54,145\\n(Por exemplo, em seus capítulos).\\n\\n74\\n00:03:54,252 --> 00:03:57,051\\nO texto é formatado para que ele cumpra\\n\\n75\\n00:03:57,082 --> 00:03:59,340\\na estrutura desejada pelo autor,\\n\\n76\\n00:03:59,378 --> 00:04:02,782\\nmas também adaptado para a leitura na tela ou em impressão.\\n\\n77\\n00:04:03,619 --> 00:04:06,646\\nComo a Wikipédia, o Wikisource é gerido por um software\\n\\n78\\n00:04:06,707 --> 00:04:09,448\\nque lhe permite criar hiperlinks,\\n\\n79\\n00:04:09,479 --> 00:04:12,829\\nconectando-se com os vários livros e autores da biblioteca.\\n\\n80\\n00:04:12,882 --> 00:04:15,725\\nPor exemplo, uma citação (ou um excerto de um ensaio)\\n\\n81\\n00:04:15,759 --> 00:04:18,712\\npoderá conectar o autor ao texto que o cita.\\n\\n82\\n00:04:19,493 --> 00:04:22,952\\nNo final de cada texto estão links para categorias\\n\\n83\\n00:04:23,000 --> 00:04:25,461\\najudando a organizar as obras e autores\\n\\n84\\n00:04:25,475 --> 00:04:27,951\\npor tipo de texto, e assim por diante.\\n\\n85\\n00:04:28,056 --> 00:04:30,511\\nAlém disso, cada texto pode ser ligado\\n\\n86\\n00:04:30,549 --> 00:04:32,742\\na sua tradução em outro Wikisource,\\n\\n87\\n00:04:32,798 --> 00:04:34,798\\na sua página na Wikipédia\\n\\n88\\n00:04:34,819 --> 00:04:37,186\\nou qualquer outro projeto Wikimedia.\\n\\n89\\n00:04:37,469 --> 00:04:40,687\\nCada um dos autores cujas obras são publicadas no Wikisource\\n\\n90\\n00:04:40,749 --> 00:04:44,586\\npossui uma página dedicada, que contém uma biografia curta,\\n\\n91\\n00:04:44,640 --> 00:04:47,616\\na lista dos textos disponíveis para consulta\\n\\n92\\n00:04:47,640 --> 00:04:49,640\\ne possivelmente outras informações,\\n\\n93\\n00:04:49,696 --> 00:04:53,502\\ncomo as obras do autor ou autores citados relacionados.\\n\\n94\\n00:04:53,780 --> 00:04:57,355\\nTambém aqui estão os links para páginas sobre o autor\\n\\n95\\n00:04:57,410 --> 00:05:02,153\\ndisponíveis em outros projetos Wikimedia e edições em outros idiomas.\\n\\n96\\n00:05:02,333 --> 00:05:06,430\\nFinalmente, os portais oferecendo formas de leitura\\n\\n97\\n00:05:06,470 --> 00:05:09,616\\ncom tópicos específicos entre os textos da biblioteca.\\n\\n98\\n00:05:11,060 --> 00:05:14,525\\nNo Wikisource, como na Wikipédia, os administradores,\\n\\n99\\n00:05:14,602 --> 00:05:17,541\\nsão os usuários que têm a confiança da comunidade\\n\\n100\\n00:05:17,567 --> 00:05:19,567\\ne que possuem ativadas\\n\\n101\\n00:05:19,622 --> 00:05:22,126\\nferramentas de gerenciamento do software.\\n\\n102\\n00:05:22,168 --> 00:05:25,461\\nEssa experiência os torna, de fato, verdadeiros bibliotecários\\n\\n103\\n00:05:25,500 --> 00:05:27,799\\nque servem como tutores para os demais usuários.\\n\\n104\\n00:05:28,693 --> 00:05:31,682\\nO ponto encontro dos usuários é a Esplanada,\\n\\n105\\n00:05:31,693 --> 00:05:34,385\\nonde você pode fazer perguntas aos usuários experientes\\n\\n106\\n00:05:34,413 --> 00:05:36,694\\ne iniciar novas discussões.\\n\\n107\\n00:05:36,784 --> 00:05:39,678\\nAfim de melhor gerenciar as áreas específicas\\n\\n108\\n00:05:39,748 --> 00:05:42,992\\nhá as páginas de projetos temáticos.\\n\\n109\\n00:05:43,046 --> 00:05:45,046\\nNa versão italiana do Wikisource\\n\\n110\\n00:05:45,119 --> 00:05:47,784\\nrepresentam o coração e a reunião de\\n\\n111\\n00:05:47,822 --> 00:05:51,135\\ntodos aqueles que estão interessados em uma área particular.\\n\\n112\\n00:05:51,434 --> 00:05:54,070\\nPara indicar o andamento dos trabalhos\\n\\n113\\n00:05:54,102 --> 00:05:56,402\\nsobre um texto específico ou de uma parcela\\n\\n114\\n00:05:56,437 --> 00:05:59,859\\nutiliza-se um sistema dividido em cinco fases básicas.\\n\\n115\\n00:06:00,137 --> 00:06:02,347\\nQuando o texto está completo em sua totalidade,\\n\\n116\\n00:06:02,385 --> 00:06:05,805\\ndevidamente formatado e revisado por dois ou mais usuários\\n\\n117\\n00:06:05,874 --> 00:06:08,890\\nusando a fonte impressa, recebe uma marcação,\\n\\n118\\n00:06:08,944 --> 00:06:12,526\\nque lhe confere o estatuto de \"Edição Wikisource\".\\n\\n119\\n00:06:12,731 --> 00:06:15,311\\nE, para concentrar os esforços de vários usuários,\\n\\n120\\n00:06:15,346 --> 00:06:17,850\\ncada mês são escolhidos um ou mais textos\\n\\n121\\n00:06:17,892 --> 00:06:20,521\\npara se sejam revisados e corrigidos em conjunto.\\n\\n122\\n00:06:21,242 --> 00:06:23,416\\nCom Wikisource você pode, portanto, mostrar\\n\\n123\\n00:06:23,455 --> 00:06:25,843\\no seu amor pelos livros, salvando-os do esquecimento\\n\\n124\\n00:06:25,861 --> 00:06:28,776\\ne tornando-o disponível para qualquer pessoa na rede.\\n\\n125\\n00:06:29,140 --> 00:06:31,140\\nJunte-se ao Wikisource\\n\\n126\\n00:06:31,161 --> 00:06:34,216\\ne construa uma biblioteca livre.\\n\\n127\\n00:06:35,00 --> 00:06:40,00\\n<i>A Biblioteca perdurará: iluminada, solitária, infinita, perfeitamente imóvel, armada de volumes preciosos, inútil, incorruptível, secreta.</i>',\n", + " 'bytes': 10887,\n", + " 'sha1': 'r292g0dpwp5sghrcfd5q2g5dxzm8dxd',\n", + " 'parent_id': 53786888,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 53170990,\n", + " 'timestamp': '2011-04-14T22:35:53Z',\n", + " 'user': {'id': 391666, 'text': 'CristianCantoro'},\n", + " 'page': {'id': 14916308,\n", + " 'title': 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv.undefined.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Edited subtitles using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': \"1\\n00:00:01,71 --> 00:00:05,146\\nQu'est ce-qu'est plus important des bibliothèques, que le fait qu'ils existent?\\n\\n2\\n00:00:05,146 --> 00:00:09,147\\nArchibald Macleish, The Premise Of Meaning\",\n", + " 'bytes': 187,\n", + " 'sha1': 'n0cce2coq29uscsqh7ghn26aljk4ta0',\n", + " 'parent_id': 53170527,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 123971153,\n", + " 'timestamp': '2014-05-14T13:45:41Z',\n", + " 'user': {'id': 849234, 'text': 'Morn'},\n", + " 'page': {'id': 14970191,\n", + " 'title': 'Barack Obama 2011 Tucson memorial speech.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:02,399 --> 00:00:09,532\\nThe President:\\nTo the families of\\nthose we\\'ve lost;\\n\\n2\\n00:00:09,532 --> 00:00:14,466\\nto all who called them friends;\\nto the students of this\\n\\n3\\n00:00:14,467 --> 00:00:21,066\\nuniversity, the public servants\\nwho are gathered here,\\n\\n4\\n00:00:21,065 --> 00:00:26,966\\nthe people of Tucson and the\\npeople of Arizona: I have come\\n\\n5\\n00:00:26,966 --> 00:00:34,199\\nhere tonight as an American\\nwho, like all Americans,\\n\\n6\\n00:00:34,200 --> 00:00:40,100\\nkneels to pray with you today\\nand will stand by you tomorrow.\\n\\n7\\n00:00:40,100 --> 00:00:51,299\\n(applause)\\n\\n8\\n00:00:51,299 --> 00:00:58,532\\nThere is nothing I can say that\\nwill fill the sudden hole torn\\n\\n9\\n00:00:58,533 --> 00:01:01,500\\nin your hearts.\\n\\n10\\n00:01:01,500 --> 00:01:09,834\\nBut know this: The hopes of\\na nation are here tonight.\\n\\n11\\n00:01:09,834 --> 00:01:14,233\\nWe mourn with you\\nfor the fallen.\\n\\n12\\n00:01:14,233 --> 00:01:18,433\\nWe join you in your grief.\\n\\n13\\n00:01:18,433 --> 00:01:22,600\\nAnd we add our faith to yours\\nthat Representative Gabrielle\\n\\n14\\n00:01:22,599 --> 00:01:28,966\\nGiffords and the other living victims\\nof this tragedy will pull through.\\n\\n15\\n00:01:28,966 --> 00:01:40,632\\n(applause)\\n\\n16\\n00:01:40,632 --> 00:01:48,834\\nScripture tells us: There is a\\nriver whose streams make glad\\n\\n17\\n00:01:48,834 --> 00:01:57,299\\nthe city of God, the holy place\\nwhere the Most High dwells.\\n\\n18\\n00:01:57,299 --> 00:02:03,265\\nGod is within her,\\nshe will not fall;\\n\\n19\\n00:02:03,266 --> 00:02:10,432\\nGod will help her\\nat break of day.\\n\\n20\\n00:02:10,432 --> 00:02:17,733\\nOn Saturday morning, Gabby,\\nher staff and many of her\\n\\n21\\n00:02:17,734 --> 00:02:24,800\\nconstituents gathered outside a\\nsupermarket to exercise their\\n\\n22\\n00:02:24,800 --> 00:02:30,834\\nright to peaceful\\nassembly and free speech.\\n\\n23\\n00:02:30,834 --> 00:02:38,599\\n(applause)\\n\\n24\\n00:02:38,599 --> 00:02:45,599\\nThey were fulfilling a central\\ntenet of the democracy\\n\\n25\\n00:02:45,599 --> 00:02:50,466\\nenvisioned by our founders --\\nrepresentatives of the people\\n\\n26\\n00:02:50,467 --> 00:02:54,367\\nanswering questions to their\\nconstituents, so as to carry\\n\\n27\\n00:02:54,366 --> 00:02:59,399\\ntheir concerns back to\\nour nation\\'s capital.\\n\\n28\\n00:02:59,400 --> 00:03:03,667\\nGabby called it \"Congress\\non Your Corner\" --\\n\\n29\\n00:03:03,667 --> 00:03:10,265\\njust an updated version of\\ngovernment of and by and for the people.\\n\\n30\\n00:03:10,265 --> 00:03:18,933\\n(applause)\\n\\n31\\n00:03:18,933 --> 00:03:24,265\\nAnd that quintessentially\\nAmerican scene,\\n\\n32\\n00:03:24,265 --> 00:03:30,032\\nthat was the scene that was\\nshattered by a gunman\\'s bullets.\\n\\n33\\n00:03:30,032 --> 00:03:35,299\\nAnd the six people who lost\\ntheir lives on Saturday --\\n\\n34\\n00:03:35,300 --> 00:03:39,867\\nthey, too, represented\\nwhat is best in us,\\n\\n35\\n00:03:39,866 --> 00:03:42,733\\nwhat is best in America.\\n\\n36\\n00:03:42,734 --> 00:03:44,766\\n(applause)\\n\\n37\\n00:03:44,766 --> 00:03:53,667\\nJudge John Roll served our legal\\nsystem for nearly 40 years.\\n\\n38\\n00:03:53,667 --> 00:03:57,734\\n(applause)\\n\\n39\\n00:03:57,734 --> 00:04:03,200\\nA graduate of this university\\nand a graduate of this law school --\\n\\n40\\n00:04:03,199 --> 00:04:12,599\\n(applause)\\n\\n41\\n00:04:12,599 --> 00:04:15,667\\n-- Judge Roll was recommended\\nfor the federal bench by John\\n\\n42\\n00:04:15,667 --> 00:04:19,165\\nMcCain 20 years ago --\\n\\n43\\n00:04:19,165 --> 00:04:20,699\\n(applause)\\n\\n44\\n00:04:20,699 --> 00:04:26,199\\n-- appointed by President George\\nH.W. Bush and rose to become\\n\\n45\\n00:04:26,199 --> 00:04:28,800\\nArizona\\'s chief federal judge.\\n\\n46\\n00:04:28,800 --> 00:04:32,734\\n(applause)\\n\\n47\\n00:04:32,733 --> 00:04:37,000\\nHis colleagues described him as\\nthe hardest-working judge within\\n\\n48\\n00:04:37,000 --> 00:04:39,766\\nthe Ninth Circuit.\\n\\n49\\n00:04:39,766 --> 00:04:43,233\\nHe was on his way back\\nfrom attending Mass,\\n\\n50\\n00:04:43,233 --> 00:04:47,800\\nas he did every day, when he\\ndecided to stop by and say hi to\\n\\n51\\n00:04:47,800 --> 00:04:50,900\\nhis representative.\\n\\n52\\n00:04:50,899 --> 00:04:55,766\\nJohn is survived by his\\nloving wife, Maureen,\\n\\n53\\n00:04:55,766 --> 00:05:00,632\\nhis three sons and his five\\nbeautiful grandchildren.\\n\\n54\\n00:05:00,632 --> 00:05:09,065\\n(applause)\\n\\n55\\n00:05:09,065 --> 00:05:14,299\\nGeorge and Dorothy Morris\\n-- \"Dot\" to her friends --\\n\\n56\\n00:05:14,300 --> 00:05:19,233\\nwere high school sweethearts who\\ngot married and had two daughters.\\n\\n57\\n00:05:19,233 --> 00:05:22,399\\nThey did everything together --\\ntraveling the open road in their\\n\\n58\\n00:05:22,399 --> 00:05:29,032\\nRV, enjoying what their friends\\ncalled a 50-year honeymoon.\\n\\n59\\n00:05:29,033 --> 00:05:34,500\\nSaturday morning, they went by\\nthe Safeway to hear what their\\n\\n60\\n00:05:34,500 --> 00:05:37,333\\ncongresswoman had to say.\\n\\n61\\n00:05:37,333 --> 00:05:42,533\\nWhen gunfire rang out,\\nGeorge, a former Marine,\\n\\n62\\n00:05:42,533 --> 00:05:46,766\\ninstinctively tried\\nto shield his wife.\\n\\n63\\n00:05:46,766 --> 00:05:55,332\\n(applause)\\n\\n64\\n00:05:55,333 --> 00:05:57,867\\nBoth were shot.\\n\\n65\\n00:05:57,867 --> 00:06:01,467\\nDot passed away.\\n\\n66\\n00:06:01,466 --> 00:06:06,199\\nA New Jersey native, Phyllis\\nSchneck retired to Tucson to\\n\\n67\\n00:06:06,199 --> 00:06:09,165\\nbeat the snow.\\n\\n68\\n00:06:09,165 --> 00:06:12,733\\nBut in the summer,\\nshe would return East,\\n\\n69\\n00:06:12,733 --> 00:06:16,265\\nwhere her world revolved\\naround her three children,\\n\\n70\\n00:06:16,266 --> 00:06:21,934\\nher seven grandchildren and\\n2-year-old great-granddaughter.\\n\\n71\\n00:06:21,934 --> 00:06:26,100\\nA gifted quilter, she\\'d often\\nwork under a favorite tree,\\n\\n72\\n00:06:26,100 --> 00:06:29,333\\nor sometimes she\\'d sew aprons\\nwith the logos of the Jets and\\n\\n73\\n00:06:29,333 --> 00:06:30,734\\nthe Giants --\\n\\n74\\n00:06:30,733 --> 00:06:32,032\\n(laughter)\\n\\n75\\n00:06:32,033 --> 00:06:36,633\\n-- to give out at the\\nchurch where she volunteered.\\n\\n76\\n00:06:36,632 --> 00:06:40,532\\nA Republican, she took\\na liking to Gabby,\\n\\n77\\n00:06:40,533 --> 00:06:42,633\\nand wanted to get\\nto know her better.\\n\\n78\\n00:06:42,632 --> 00:06:52,666\\n(applause)\\n\\n79\\n00:06:52,666 --> 00:06:56,733\\nDorwan and Mavy Stoddard\\ngrew up in Tucson together --\\n\\n80\\n00:06:56,733 --> 00:07:00,699\\nabout 70 years ago.\\n\\n81\\n00:07:00,699 --> 00:07:04,233\\nThey moved apart and started\\ntheir own respective families.\\n\\n82\\n00:07:04,233 --> 00:07:08,800\\nBut after both were widowed they\\nfound their way back here, to,\\n\\n83\\n00:07:08,800 --> 00:07:11,966\\nas one of Mavy\\'s\\ndaughters put it,\\n\\n84\\n00:07:11,966 --> 00:07:14,032\\n\"be boyfriend and\\ngirlfriend again.\"\\n\\n85\\n00:07:14,033 --> 00:07:17,667\\n(laughter)\\n\\n86\\n00:07:17,666 --> 00:07:21,165\\nWhen they weren\\'t out on the\\nroad in their motor home,\\n\\n87\\n00:07:21,165 --> 00:07:23,300\\nyou could find them\\njust up the road,\\n\\n88\\n00:07:23,300 --> 00:07:28,834\\nhelping folks in need at the\\nMountain Avenue Church of Christ.\\n\\n89\\n00:07:28,834 --> 00:07:32,132\\nA retired construction worker,\\nDorwan spent his spare time\\n\\n90\\n00:07:32,132 --> 00:07:36,599\\nfixing up the church\\nalong with his dog, Tux.\\n\\n91\\n00:07:36,600 --> 00:07:42,433\\nHis final act of selflessness\\nwas to dive on top of his wife,\\n\\n92\\n00:07:42,432 --> 00:07:45,466\\nsacrificing his life for hers.\\n\\n93\\n00:07:45,466 --> 00:07:56,699\\n(applause)\\n\\n94\\n00:07:56,699 --> 00:07:59,899\\nEverything -- everything\\n-- Gabe Zimmerman did,\\n\\n95\\n00:07:59,899 --> 00:08:01,532\\nhe did with passion.\\n\\n96\\n00:08:01,533 --> 00:08:05,766\\n(applause)\\n\\n97\\n00:08:05,766 --> 00:08:09,266\\nBut his true passion\\nwas helping people.\\n\\n98\\n00:08:09,266 --> 00:08:14,233\\nAs Gabby\\'s outreach director, he\\nmade the cares of thousands of\\n\\n99\\n00:08:14,233 --> 00:08:18,800\\nher constituents his own, seeing\\nto it that seniors got the\\n\\n100\\n00:08:18,800 --> 00:08:22,934\\nMedicare benefits\\nthat they had earned,\\n\\n101\\n00:08:22,934 --> 00:08:27,000\\nthat veterans got the medals and\\nthe care that they deserved,\\n\\n102\\n00:08:27,000 --> 00:08:32,033\\nthat government was\\nworking for ordinary folks.\\n\\n103\\n00:08:32,033 --> 00:08:37,200\\nHe died doing what he loved --\\ntalking with people and seeing\\n\\n104\\n00:08:37,200 --> 00:08:39,567\\nhow he could help.\\n\\n105\\n00:08:39,567 --> 00:08:43,734\\nAnd Gabe is survived by his\\nparents, Ross and Emily,\\n\\n106\\n00:08:43,734 --> 00:08:47,133\\nhis brother, Ben, and\\nhis fiancée, Kelly,\\n\\n107\\n00:08:47,133 --> 00:08:50,066\\nwho he planned to\\nmarry next year.\\n\\n108\\n00:08:50,066 --> 00:09:01,266\\n(applause)\\n\\n109\\n00:09:01,265 --> 00:09:06,466\\nAnd then there is nine-year-old\\nChristina Taylor Green.\\n\\n110\\n00:09:06,466 --> 00:09:11,966\\nChristina was an A student; she\\nwas a dancer; she was a gymnast;\\n\\n111\\n00:09:11,966 --> 00:09:14,799\\nshe was a swimmer.\\n\\n112\\n00:09:14,799 --> 00:09:18,165\\nShe decided that she wanted to\\nbe the first woman to play in\\n\\n113\\n00:09:18,166 --> 00:09:21,834\\nthe Major Leagues, and as the\\nonly girl on her Little League\\n\\n114\\n00:09:21,833 --> 00:09:24,099\\nteam, no one put it past her.\\n\\n115\\n00:09:24,100 --> 00:09:33,133\\n(applause)\\n\\n116\\n00:09:33,133 --> 00:09:39,667\\nShe showed an appreciation for\\nlife uncommon for a girl her age.\\n\\n117\\n00:09:39,667 --> 00:09:44,567\\nShe\\'d remind her mother,\\n\"We are so blessed.\\n\\n118\\n00:09:44,567 --> 00:09:47,899\\nWe have the best life.\"\\n\\n119\\n00:09:47,899 --> 00:09:51,165\\nAnd she\\'d pay those blessings\\nback by participating in a\\n\\n120\\n00:09:51,166 --> 00:09:58,633\\ncharity that helped children\\nwho were less fortunate.\\n\\n121\\n00:09:58,633 --> 00:10:04,700\\nOur hearts are broken\\nby their sudden passing.\\n\\n122\\n00:10:04,700 --> 00:10:09,533\\nOur hearts are\\nbroken -- and yet,\\n\\n123\\n00:10:09,533 --> 00:10:14,866\\nour hearts also have\\nreason for fullness.\\n\\n124\\n00:10:14,866 --> 00:10:18,632\\nOur hearts are full of hope and\\nthanks for the 13 Americans who\\n\\n125\\n00:10:18,633 --> 00:10:23,633\\nsurvived the shooting, including\\nthe congresswoman many of them\\n\\n126\\n00:10:23,633 --> 00:10:26,400\\nwent to see on Saturday.\\n\\n127\\n00:10:26,399 --> 00:10:29,667\\nI have just come from the\\nUniversity Medical Center,\\n\\n128\\n00:10:29,667 --> 00:10:33,800\\njust a mile from here, where our\\nfriend Gabby courageously fights\\n\\n129\\n00:10:33,799 --> 00:10:37,666\\nto recover even as we speak.\\n\\n130\\n00:10:37,667 --> 00:10:42,500\\nAnd I want to tell you -- her\\nhusband Mark is here and he\\n\\n131\\n00:10:42,500 --> 00:10:49,332\\nallows me to share this with you\\n-- right after we went to visit,\\n\\n132\\n00:10:49,332 --> 00:10:52,432\\na few minutes after we left her\\nroom and some of her colleagues\\n\\n133\\n00:10:52,432 --> 00:10:57,734\\nin Congress were in the room, Gabby\\nopened her eyes for the first\\ntime.\\n\\n134\\n00:10:57,734 --> 00:10:59,667\\n(applause)\\n\\n135\\n00:10:59,667 --> 00:11:02,266\\nGabby opened her eyes\\nfor the first time.\\n\\n136\\n00:11:02,265 --> 00:11:18,733\\n(applause)\\n\\n137\\n00:11:18,734 --> 00:11:20,567\\nGabby opened her eyes.\\n\\n138\\n00:11:20,567 --> 00:11:30,767\\n(applause)\\n\\n139\\n00:11:30,767 --> 00:11:35,100\\nGabby opened her eyes, so I can\\ntell you she knows we are here.\\n\\n140\\n00:11:35,100 --> 00:11:37,000\\nShe knows we love her.\\n\\n141\\n00:11:37,000 --> 00:11:39,966\\nAnd she knows that we are\\nrooting for her through what is\\n\\n142\\n00:11:39,966 --> 00:11:42,432\\nundoubtedly going to\\nbe a difficult journey.\\n\\n143\\n00:11:42,432 --> 00:11:43,667\\nWe are there for her.\\n\\n144\\n00:11:43,667 --> 00:11:59,600\\n(applause)\\n\\n145\\n00:11:59,600 --> 00:12:02,633\\nOur hearts are full of\\nthanks for that good news,\\n\\n146\\n00:12:02,633 --> 00:12:08,734\\nand our hearts are full of\\ngratitude for those who saved others.\\n\\n147\\n00:12:08,734 --> 00:12:11,633\\nWe are grateful to\\nDaniel Hernandez --\\n\\n148\\n00:12:11,633 --> 00:12:12,834\\n(applause)\\n\\n149\\n00:12:12,833 --> 00:12:14,566\\n-- a volunteer in\\nGabby\\'s office.\\n\\n150\\n00:12:14,567 --> 00:12:17,000\\n(applause)\\n\\n151\\n00:12:17,000 --> 00:12:18,600\\nAnd, Daniel, I\\'m\\nsorry, you may deny it,\\n\\n152\\n00:12:18,600 --> 00:12:20,834\\nbut we\\'ve decided you\\nare a hero because --\\n\\n153\\n00:12:20,833 --> 00:12:22,000\\n(applause)\\n\\n154\\n00:12:22,000 --> 00:12:25,100\\n-- you ran through the chaos\\nto minister to your boss,\\n\\n155\\n00:12:25,100 --> 00:12:28,233\\nand tended to her wounds\\nand helped keep her alive.\\n\\n156\\n00:12:28,232 --> 00:12:58,766\\n(applause)\\n\\n157\\n00:12:58,767 --> 00:13:04,033\\nWe are grateful to the men who\\ntackled the gunman as he stopped\\n\\n158\\n00:13:04,033 --> 00:13:05,332\\nto reload.\\n\\n159\\n00:13:05,332 --> 00:13:13,033\\n(applause)\\n\\n160\\n00:13:13,033 --> 00:13:14,567\\nThey\\'re right over there.\\n\\n161\\n00:13:14,567 --> 00:13:49,166\\n(applause)\\n\\n162\\n00:13:49,166 --> 00:13:58,834\\nWe are grateful for\\npetite Patricia Maisch,\\n\\n163\\n00:13:58,833 --> 00:14:01,833\\nwho wrestled away the\\nkiller\\'s ammunition,\\n\\n164\\n00:14:01,833 --> 00:14:04,199\\nand undoubtedly\\nsaved some lives.\\n\\n165\\n00:14:04,200 --> 00:14:33,500\\n(applause)\\n\\n166\\n00:14:33,500 --> 00:14:39,332\\nAnd we are grateful for the\\ndoctors and nurses and first\\n\\n167\\n00:14:39,332 --> 00:14:45,100\\nresponders who worked wonders\\nto heal those who\\'d been hurt.\\n\\n168\\n00:14:45,100 --> 00:14:46,367\\nWe are grateful to them.\\n\\n169\\n00:14:46,366 --> 00:15:14,366\\n(applause)\\n\\n170\\n00:15:14,366 --> 00:15:22,132\\nThese men and women remind us\\nthat heroism is found not only\\n\\n171\\n00:15:22,133 --> 00:15:25,600\\non the fields of battle.\\n\\n172\\n00:15:25,600 --> 00:15:31,332\\nThey remind us that heroism does\\nnot require special training or\\n\\n173\\n00:15:31,332 --> 00:15:34,632\\nphysical strength.\\n\\n174\\n00:15:34,633 --> 00:15:40,500\\nHeroism is here, in the hearts\\nof so many of our fellow\\n\\n175\\n00:15:40,500 --> 00:15:45,767\\ncitizens, all around us, just\\nwaiting to be summoned --\\n\\n176\\n00:15:45,767 --> 00:15:51,900\\nas it was on Saturday morning.\\n\\n177\\n00:15:51,899 --> 00:16:00,567\\nTheir actions, their\\nselflessness poses a challenge\\n\\n178\\n00:16:00,567 --> 00:16:04,033\\nto each of us.\\n\\n179\\n00:16:04,033 --> 00:16:09,700\\nIt raises a question of what,\\nbeyond prayers and expressions\\n\\n180\\n00:16:09,700 --> 00:16:18,033\\nof concern, is required\\nof us going forward.\\n\\n181\\n00:16:18,033 --> 00:16:21,834\\nHow can we honor the fallen?\\n\\n182\\n00:16:21,833 --> 00:16:29,199\\nHow can we be true\\nto their memory?\\n\\n183\\n00:16:29,200 --> 00:16:34,432\\nYou see, when a tragedy\\nlike this strikes,\\n\\n184\\n00:16:34,432 --> 00:16:39,667\\nit is part of our nature\\nto demand explanations --\\n\\n185\\n00:16:39,667 --> 00:16:45,966\\nto try and pose some order on\\nthe chaos and make sense out of\\n\\n186\\n00:16:45,966 --> 00:16:51,066\\nthat which seems senseless.\\n\\n187\\n00:16:51,066 --> 00:16:55,600\\nAlready we\\'ve seen a national\\nconversation commence,\\n\\n188\\n00:16:55,600 --> 00:16:59,533\\nnot only about the motivations\\nbehind these killings,\\n\\n189\\n00:16:59,533 --> 00:17:03,500\\nbut about everything from the\\nmerits of gun safety laws to the\\n\\n190\\n00:17:03,500 --> 00:17:07,532\\nadequacy of our\\nmental health system.\\n\\n191\\n00:17:07,532 --> 00:17:15,065\\nAnd much of this process, of\\ndebating what might be done to\\n\\n192\\n00:17:15,066 --> 00:17:19,133\\nprevent such tragedies\\nin the future,\\n\\n193\\n00:17:19,133 --> 00:17:27,933\\nis an essential ingredient in\\nour exercise of self-government.\\n\\n194\\n00:17:27,933 --> 00:17:38,366\\nBut at a time when our discourse\\nhas become so sharply polarized\\n\\n195\\n00:17:38,366 --> 00:17:43,165\\n-- at a time when we are far too\\neager to lay the blame for all\\n\\n196\\n00:17:43,165 --> 00:17:48,000\\nthat ails the world at the feet\\nof those who happen to think\\n\\n197\\n00:17:48,000 --> 00:17:52,799\\ndifferently than we do -- it\\'s\\nimportant for us to pause for a\\n\\n198\\n00:17:52,799 --> 00:17:59,767\\nmoment and make sure that we\\'re\\ntalking with each other in a way\\n\\n199\\n00:17:59,767 --> 00:18:05,033\\nthat heals, not in\\na way that wounds.\\n\\n200\\n00:18:05,032 --> 00:18:21,299\\n(applause)\\n\\n201\\n00:18:21,299 --> 00:18:27,000\\nScripture tells us that\\nthere is evil in the world,\\n\\n202\\n00:18:27,000 --> 00:18:34,666\\nand that terrible things happen for\\nreasons that defy human understanding.\\n\\n203\\n00:18:34,666 --> 00:18:38,966\\nIn the words of Job,\\n\"When I looked for light,\\n\\n204\\n00:18:38,967 --> 00:18:42,667\\nthen came darkness.\"\\n\\n205\\n00:18:42,666 --> 00:18:48,165\\nBad things happen, and we\\nhave to guard against simple\\n\\n206\\n00:18:48,165 --> 00:18:52,399\\nexplanations in the aftermath.\\n\\n207\\n00:18:52,400 --> 00:18:55,300\\nFor the truth is none of us can\\nknow exactly what triggered this\\n\\n208\\n00:18:55,299 --> 00:18:58,232\\nvicious attack.\\n\\n209\\n00:18:58,232 --> 00:19:02,000\\nNone of us can know with any\\ncertainty what might have\\n\\n210\\n00:19:02,000 --> 00:19:06,032\\nstopped these shots\\nfrom being fired,\\n\\n211\\n00:19:06,032 --> 00:19:14,132\\nor what thoughts lurked in the inner\\nrecesses of a violent man\\'s mind.\\n\\n212\\n00:19:14,133 --> 00:19:19,734\\nYes, we have to examine all\\nthe facts behind this tragedy.\\n\\n213\\n00:19:19,733 --> 00:19:25,366\\nWe cannot and will not be\\npassive in the face of such violence.\\n\\n214\\n00:19:25,366 --> 00:19:28,966\\nWe should be willing to\\nchallenge old assumptions in\\n\\n215\\n00:19:28,967 --> 00:19:34,400\\norder to lessen the prospects\\nof such violence in the future.\\n\\n216\\n00:19:34,400 --> 00:19:45,667\\n(applause)\\n\\n217\\n00:19:45,666 --> 00:19:51,966\\nBut what we cannot do is use\\nthis tragedy as one more\\n\\n218\\n00:19:51,967 --> 00:19:54,700\\noccasion to turn on each other.\\n\\n219\\n00:19:54,700 --> 00:19:58,500\\n(applause)\\n\\n220\\n00:19:58,500 --> 00:19:59,967\\nThat we cannot do.\\n\\n221\\n00:19:59,967 --> 00:20:14,533\\n(applause)\\n\\n222\\n00:20:14,532 --> 00:20:20,065\\nThat we cannot do.\\n\\n223\\n00:20:20,066 --> 00:20:25,767\\nAs we discuss these issues, let\\neach of us do so with a good\\n\\n224\\n00:20:25,767 --> 00:20:29,400\\ndose of humility.\\n\\n225\\n00:20:29,400 --> 00:20:33,867\\nRather than pointing\\nfingers or assigning blame,\\n\\n226\\n00:20:33,866 --> 00:20:40,000\\nlet\\'s use this occasion to\\nexpand our moral imaginations,\\n\\n227\\n00:20:40,000 --> 00:20:43,666\\nto listen to each\\nother more carefully,\\n\\n228\\n00:20:43,666 --> 00:20:49,532\\nto sharpen our instincts for\\nempathy and remind ourselves of\\n\\n229\\n00:20:49,532 --> 00:20:54,132\\nall the ways that our hopes\\nand dreams are bound together.\\n\\n230\\n00:20:54,133 --> 00:21:02,967\\n(applause)\\n\\n231\\n00:21:02,967 --> 00:21:07,300\\nAfter all, that\\'s what most of\\nus do when we lose somebody in\\n\\n232\\n00:21:07,299 --> 00:21:14,200\\nour family -- especially\\nif the loss is unexpected.\\n\\n233\\n00:21:14,200 --> 00:21:17,734\\nWe\\'re shaken out\\nof our routines.\\n\\n234\\n00:21:17,733 --> 00:21:22,366\\nWe\\'re forced to look inward.\\n\\n235\\n00:21:22,366 --> 00:21:28,733\\nWe reflect on the past: Did we\\nspend enough time with an aging\\n\\n236\\n00:21:28,733 --> 00:21:32,066\\nparent, we wonder.\\n\\n237\\n00:21:32,066 --> 00:21:35,799\\nDid we express our gratitude for\\nall the sacrifices that they\\n\\n238\\n00:21:35,799 --> 00:21:38,299\\nmade for us?\\n\\n239\\n00:21:38,299 --> 00:21:44,466\\nDid we tell a spouse just how\\ndesperately we loved them,\\n\\n240\\n00:21:44,467 --> 00:21:50,934\\nnot just once in a while\\nbut every single day?\\n\\n241\\n00:21:50,933 --> 00:21:54,466\\nSo sudden loss causes\\nus to look backward --\\n\\n242\\n00:21:54,467 --> 00:21:58,867\\nbut it also forces\\nus to look forward;\\n\\n243\\n00:21:58,866 --> 00:22:02,767\\nto reflect on the\\npresent and the future,\\n\\n244\\n00:22:02,767 --> 00:22:06,734\\non the manner in which we live\\nour lives and nurture our\\n\\n245\\n00:22:06,733 --> 00:22:11,099\\nrelationships with those\\nwho are still with us.\\n\\n246\\n00:22:11,099 --> 00:22:22,466\\n(applause)\\n\\n247\\n00:22:22,467 --> 00:22:27,533\\nWe may ask ourselves if we\\'ve\\nshown enough kindness and\\n\\n248\\n00:22:27,532 --> 00:22:35,332\\ngenerosity and compassion\\nto the people in our lives.\\n\\n249\\n00:22:35,333 --> 00:22:38,066\\nPerhaps we question whether\\nwe\\'re doing right by our\\n\\n250\\n00:22:38,066 --> 00:22:48,066\\nchildren, or our community,\\nwhether our priorities are in order.\\n\\n251\\n00:22:48,066 --> 00:22:54,467\\nWe recognize our own mortality,\\nand we are reminded that in the\\n\\n252\\n00:22:54,467 --> 00:22:57,700\\nfleeting time we\\nhave on this Earth,\\n\\n253\\n00:22:57,700 --> 00:23:04,100\\nwhat matters is not wealth, or\\nstatus, or power, or fame --\\n\\n254\\n00:23:04,099 --> 00:23:06,966\\nbut rather, how well\\nwe have loved --\\n\\n255\\n00:23:06,967 --> 00:23:08,800\\n(applause)\\n\\n256\\n00:23:08,799 --> 00:23:12,200\\n-- and what small part we have\\nplayed in making the lives of\\n\\n257\\n00:23:12,200 --> 00:23:13,567\\nother people better.\\n\\n258\\n00:23:13,567 --> 00:23:30,467\\n(applause)\\n\\n259\\n00:23:30,467 --> 00:23:35,233\\nAnd that process -- that\\nprocess of reflection,\\n\\n260\\n00:23:35,232 --> 00:23:41,000\\nof making sure we align our\\nvalues with our actions --\\n\\n261\\n00:23:41,000 --> 00:23:46,733\\nthat, I believe, is what a\\ntragedy like this requires.\\n\\n262\\n00:23:46,733 --> 00:23:50,899\\nFor those who were harmed,\\nthose who were killed --\\n\\n263\\n00:23:50,900 --> 00:23:56,967\\nthey are part of our family, an\\nAmerican family 300 million strong.\\n\\n264\\n00:23:56,967 --> 00:24:05,734\\n(applause)\\n\\n265\\n00:24:05,733 --> 00:24:09,567\\nWe may not have known\\nthem personally,\\n\\n266\\n00:24:09,567 --> 00:24:13,933\\nbut surely we see\\nourselves in them.\\n\\n267\\n00:24:13,933 --> 00:24:20,200\\nIn George and Dot,\\nin Dorwan and Mavy,\\n\\n268\\n00:24:20,200 --> 00:24:24,000\\nwe sense the abiding love we\\nhave for our own husbands,\\n\\n269\\n00:24:24,000 --> 00:24:28,767\\nour own wives, our\\nown life partners.\\n\\n270\\n00:24:28,767 --> 00:24:33,967\\nPhyllis -- she\\'s our\\nmom or our grandma;\\n\\n271\\n00:24:33,967 --> 00:24:37,734\\nGabe our brother or son.\\n\\n272\\n00:24:37,733 --> 00:24:42,032\\n(applause)\\n\\n273\\n00:24:42,032 --> 00:24:48,265\\nIn Judge Roll, we recognize not\\nonly a man who prized his family\\n\\n274\\n00:24:48,266 --> 00:24:52,300\\nand doing his job well, but also\\na man who embodied America\\'s\\n\\n275\\n00:24:52,299 --> 00:24:54,032\\nfidelity to the law.\\n\\n276\\n00:24:54,032 --> 00:24:55,500\\n(applause)\\n\\n277\\n00:24:55,500 --> 00:24:59,700\\nAnd in Gabby -- in Gabby,\\nwe see a reflection of our\\n\\n278\\n00:24:59,700 --> 00:25:06,500\\npublic-spiritedness; that desire\\nto participate in that sometimes\\n\\n279\\n00:25:06,500 --> 00:25:10,700\\nfrustrating, sometimes\\ncontentious,\\n\\n280\\n00:25:10,700 --> 00:25:18,133\\nbut always necessary and never-ending\\nprocess to form a more perfect union.\\n\\n281\\n00:25:18,133 --> 00:25:30,533\\n(applause)\\n\\n282\\n00:25:30,532 --> 00:25:39,933\\nAnd in Christina -- in Christina\\nwe see all of our children.\\n\\n283\\n00:25:39,933 --> 00:25:50,000\\nSo curious, so trusting, so\\nenergetic, so full of magic.\\n\\n284\\n00:25:50,000 --> 00:25:54,666\\nSo deserving of our love.\\n\\n285\\n00:25:54,666 --> 00:26:00,299\\nAnd so deserving of\\nour good example.\\n\\n286\\n00:26:00,299 --> 00:26:04,633\\nIf this tragedy prompts\\nreflection and debate --\\n\\n287\\n00:26:04,633 --> 00:26:10,967\\nas it should -- let\\'s make sure\\nit\\'s worthy of those we have lost.\\n\\n288\\n00:26:10,967 --> 00:26:24,432\\n(applause)\\n\\n289\\n00:26:24,432 --> 00:26:28,200\\nLet\\'s make sure it\\'s not on the\\nusual plane of politics and\\n\\n290\\n00:26:28,200 --> 00:26:36,100\\npoint-scoring and pettiness that\\ndrifts away in the next news\\ncycle.\\n\\n291\\n00:26:36,099 --> 00:26:39,000\\nThe loss of these wonderful\\npeople should make every one of\\n\\n292\\n00:26:39,000 --> 00:26:42,500\\nus strive to be better.\\n\\n293\\n00:26:42,500 --> 00:26:45,333\\nTo be better in\\nour private lives,\\n\\n294\\n00:26:45,333 --> 00:26:52,500\\nto be better friends and\\nneighbors and coworkers and parents.\\n\\n295\\n00:26:52,500 --> 00:26:57,299\\nAnd if, as has been\\ndiscussed in recent days,\\n\\n296\\n00:26:57,299 --> 00:27:01,133\\ntheir death helps usher in\\nmore civility in our public\\n\\n297\\n00:27:01,133 --> 00:27:06,000\\ndiscourse, let us remember it\\nis not because a simple lack of\\n\\n298\\n00:27:06,000 --> 00:27:11,032\\ncivility caused this\\ntragedy -- it did not --\\n\\n299\\n00:27:11,032 --> 00:27:15,833\\nbut rather because only a\\nmore civil and honest public\\n\\n300\\n00:27:15,834 --> 00:27:21,100\\ndiscourse can help us face up to\\nthe challenges of our nation in\\n\\n301\\n00:27:21,099 --> 00:27:23,699\\na way that would\\nmake them proud.\\n\\n302\\n00:27:23,700 --> 00:27:58,500\\n(applause)\\n\\n303\\n00:27:58,500 --> 00:28:01,333\\nWe should be civil because we\\nwant to live up to the example\\n\\n304\\n00:28:01,333 --> 00:28:05,432\\nof public servants like John\\nRoll and Gabby Giffords,\\n\\n305\\n00:28:05,432 --> 00:28:09,299\\nwho knew first and foremost\\nthat we are all Americans,\\n\\n306\\n00:28:09,299 --> 00:28:11,866\\nand that we can question\\neach other\\'s ideas without\\n\\n307\\n00:28:11,866 --> 00:28:16,599\\nquestioning each other\\'s love\\nof country and that our task,\\n\\n308\\n00:28:16,599 --> 00:28:20,733\\nworking together, is to\\nconstantly widen the circle of\\n\\n309\\n00:28:20,733 --> 00:28:29,332\\nour concern so that we bequeath the\\nAmerican Dream to future generations.\\n\\n310\\n00:28:29,333 --> 00:28:35,467\\n(applause)\\n\\n311\\n00:28:35,467 --> 00:28:44,066\\nThey believed -- they believed,\\nand I believe that we can be better.\\n\\n312\\n00:28:44,066 --> 00:28:49,733\\nThose who died here, those\\nwho saved life here --\\n\\n313\\n00:28:49,733 --> 00:28:53,232\\nthey help me believe.\\n\\n314\\n00:28:53,232 --> 00:28:58,066\\nWe may not be able to stop\\nall evil in the world,\\n\\n315\\n00:28:58,066 --> 00:29:01,533\\nbut I know that how\\nwe treat one another,\\n\\n316\\n00:29:01,532 --> 00:29:03,666\\nthat\\'s entirely up to us.\\n\\n317\\n00:29:03,666 --> 00:29:06,733\\n(applause)\\n\\n318\\n00:29:06,733 --> 00:29:09,299\\nAnd I believe that for\\nall our imperfections,\\n\\n319\\n00:29:09,299 --> 00:29:14,000\\nwe are full of\\ndecency and goodness,\\n\\n320\\n00:29:14,000 --> 00:29:17,567\\nand that the forces that divide\\nus are not as strong as those\\n\\n321\\n00:29:17,567 --> 00:29:18,933\\nthat unite us.\\n\\n322\\n00:29:18,933 --> 00:29:30,567\\n(applause)\\n\\n323\\n00:29:30,567 --> 00:29:36,400\\nThat\\'s what I believe, in part\\nbecause that\\'s what a child like\\n\\n324\\n00:29:36,400 --> 00:29:40,266\\nChristina Taylor Green believed.\\n\\n325\\n00:29:40,266 --> 00:29:41,933\\n(applause)\\n\\n326\\n00:29:41,933 --> 00:29:49,834\\nImagine -- imagine for a moment,\\nhere was a young girl who was\\n\\n327\\n00:29:49,834 --> 00:29:54,432\\njust becoming aware\\nof our democracy;\\n\\n328\\n00:29:54,432 --> 00:29:59,599\\njust beginning to understand\\nthe obligations of citizenship;\\n\\n329\\n00:29:59,599 --> 00:30:03,766\\njust starting to glimpse the\\nfact that some day she, too,\\n\\n330\\n00:30:03,767 --> 00:30:10,700\\nmight play a part in\\nshaping her nation\\'s future.\\n\\n331\\n00:30:10,700 --> 00:30:14,299\\nShe had been elected\\nto her student council.\\n\\n332\\n00:30:14,299 --> 00:30:19,866\\nShe saw public service as\\nsomething exciting and hopeful.\\n\\n333\\n00:30:19,866 --> 00:30:22,767\\nShe was off to meet\\nher congresswoman,\\n\\n334\\n00:30:22,767 --> 00:30:27,066\\nsomeone she was sure was good\\nand important and might be a\\n\\n335\\n00:30:27,066 --> 00:30:30,066\\nrole model.\\n\\n336\\n00:30:30,066 --> 00:30:35,500\\nShe saw all this through\\nthe eyes of a child,\\n\\n337\\n00:30:35,500 --> 00:30:40,767\\nundimmed by the cynicism or\\nvitriol that we adults all too\\n\\n338\\n00:30:40,767 --> 00:30:46,400\\noften just take for granted.\\n\\n339\\n00:30:46,400 --> 00:30:49,734\\nI want to live up\\nto her expectations.\\n\\n340\\n00:30:49,733 --> 00:30:50,966\\n(applause)\\n\\n341\\n00:30:50,967 --> 00:30:55,600\\nI want our democracy to be as\\ngood as Christina imagined it.\\n\\n342\\n00:30:55,599 --> 00:31:00,567\\nI want America to be as\\ngood as she imagined it.\\n\\n343\\n00:31:00,567 --> 00:31:01,900\\n(applause)\\n\\n344\\n00:31:01,900 --> 00:31:06,400\\nAll of us -- we should do\\neverything we can to make sure\\n\\n345\\n00:31:06,400 --> 00:31:10,533\\nthis country lives up to\\nour children\\'s expectations.\\n\\n346\\n00:31:10,532 --> 00:32:01,933\\n(applause)\\n\\n347\\n00:32:01,933 --> 00:32:05,633\\nAs has already been mentioned,\\nChristina was given to us on\\n\\n348\\n00:32:05,633 --> 00:32:12,299\\nSeptember 11th, 2001, one of\\n50 babies born that day to be\\n\\n349\\n00:32:12,299 --> 00:32:18,633\\npictured in a book\\ncalled \"Faces of Hope.\"\\n\\n350\\n00:32:18,633 --> 00:32:24,299\\nOn either side of her photo in\\nthat book were simple wishes for\\n\\n351\\n00:32:24,299 --> 00:32:27,767\\na child\\'s life.\\n\\n352\\n00:32:27,767 --> 00:32:33,366\\n\"I hope you help those\\nin need,\" read one.\\n\\n353\\n00:32:33,366 --> 00:32:37,232\\n\"I hope you know all the words\\nto the National Anthem and sing\\n\\n354\\n00:32:37,232 --> 00:32:40,099\\nit with your hand\\nover your heart.\"\\n\\n355\\n00:32:40,099 --> 00:32:44,899\\n(applause)\\n\\n356\\n00:32:44,900 --> 00:32:52,200\\n\"I hope you jump\\nin rain puddles.\"\\n\\n357\\n00:32:52,200 --> 00:32:55,799\\nIf there are rain\\npuddles in Heaven,\\n\\n358\\n00:32:55,799 --> 00:32:58,532\\nChristina is jumping\\nin them today.\\n\\n359\\n00:32:58,532 --> 00:33:02,933\\n(applause)\\n\\n360\\n00:33:02,933 --> 00:33:08,799\\nAnd here on this Earth\\n-- here on this Earth,\\n\\n361\\n00:33:08,799 --> 00:33:12,866\\nwe place our hands\\nover our hearts,\\n\\n362\\n00:33:12,866 --> 00:33:17,232\\nand we commit ourselves as\\nAmericans to forging a country\\n\\n363\\n00:33:17,232 --> 00:33:22,567\\nthat is forever worthy of\\nher gentle, happy spirit.\\n\\n364\\n00:33:22,567 --> 00:33:25,933\\nMay God bless and keep those\\nwe\\'ve lost in restful and\\n\\n365\\n00:33:25,933 --> 00:33:27,966\\neternal peace.\\n\\n366\\n00:33:27,967 --> 00:33:32,233\\nMay He love and watch\\nover the survivors.\\n\\n367\\n00:33:32,232 --> 00:33:35,432\\nAnd may He bless the\\nUnited States of America.',\n", + " 'bytes': 28340,\n", + " 'sha1': 'g8ewsumdk7765j3dj14czw3zjfkkkwx',\n", + " 'parent_id': 105057921,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 89134333,\n", + " 'timestamp': '2013-01-28T20:48:17Z',\n", + " 'user': {'id': 38908, 'text': 'LX'},\n", + " 'page': {'id': 15094329,\n", + " 'title': 'President Obama on Death of Osama bin Laden.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/188.228.39.146|188.228.39.146]] ([[User talk:188.228.39.146|talk]]) to last revision by Morn',\n", + " 'text': \"1\\n00:00:00,704 --> 00:00:02,175\\nGood evening\\n\\n2\\n00:00:02,175 --> 00:00:06,952\\nTonight, I can report to the American people, and to the world\\n\\n3\\n00:00:06,952 --> 00:00:11,3\\nthat the United-States has conducted an operation that killed Osama bin Laden\\n\\n4\\n00:00:11,3 --> 00:00:13,672\\nthe leader of Al-Qaeda\\n\\n5\\n00:00:13,672 --> 00:00:21,359\\nand the terrorist who is responsible for the murder of thousands of innocent men, women, and children.\\n\\n6\\n00:00:21,359 --> 00:00:25,204\\nIt was nearly ten years ago that the bright September day was darkened \\n\\n7\\n00:00:25,204 --> 00:00:29,216\\nby the worst attack on the American people in our history.\\n\\n8\\n00:00:29,216 --> 00:00:33,994\\nThe images of 9/11 are seared into our national memory.\\n\\n9\\n00:00:33,994 --> 00:00:38,775\\nHijacked planes cutting through a cloudless September sky\\n\\n10\\n00:00:38,775 --> 00:00:41,784\\nthe twin towers collapsing to the ground\\n\\n11\\n00:00:41,784 --> 00:00:45,059\\nblack smoke billowing up from the Pentagon\\n\\n12\\n00:00:45,059 --> 00:00:49,47\\nthe wreckage of flight 93 in Shanksville, Pennsylvania\\n\\n13\\n00:00:49,47 --> 00:00:55,554\\nwhere the actions of heroic citizens saved even more heartbreak and destruction\\n\\n14\\n00:00:55,554 --> 00:01:00,301\\nAnd yet we know that the worst images are those were unseen to the world\\n\\n15\\n00:01:00,301 --> 00:01:03,175\\nthe empty seat at the dinner table\\n\\n16\\n00:01:03,175 --> 00:01:07,355\\nchildren who were forced to grow up without their mother, or their father\\n\\n17\\n00:01:07,355 --> 00:01:12,534\\nparents who would never know the feeling of their child’s embrace\\n\\n18\\n00:01:12,534 --> 00:01:16,279\\nnearly three thousand citizens taken from us\\n\\n19\\n00:01:16,279 --> 00:01:19,79\\nleaving a gaping hole in our hearts\\n\\n20\\n00:01:19,79 --> 00:01:22,998\\nOn September 11th 2001\\n\\n21\\n00:01:22,998 --> 00:01:24,933\\nin our time of grief\\n\\n22\\n00:01:24,933 --> 00:01:27,41\\nAmerican people came together\\n\\n23\\n00:01:27,41 --> 00:01:29,248\\nWe offered our neighbours a hand\\n\\n24\\n00:01:29,248 --> 00:01:32,255\\nand we offered the wounded our blood\\n\\n25\\n00:01:32,255 --> 00:01:35,465\\nWe reaffirmed our ties to each other\\n\\n26\\n00:01:35,465 --> 00:01:39,007\\nand our love of community and country\\n\\n27\\n00:01:39,007 --> 00:01:41,749\\nOn that day, no matter where we came from\\n\\n28\\n00:01:41,749 --> 00:01:43,753\\nwhat god we prayed to\\n\\n29\\n00:01:43,753 --> 00:01:46,262\\nor what race or ethnicity we were,\\n\\n30\\n00:01:46,262 --> 00:01:50,741\\nwe were united as one American family\\n\\n31\\n00:01:50,741 --> 00:01:54,752\\nWe were also united in our resolve to protect our nation\\n\\n32\\n00:01:54,752 --> 00:02:00,332\\nand to bring those who committed this vicious attack to justice\\n\\n33\\n00:02:00,332 --> 00:02:04,378\\nWe quickly learnt that the 9/11 attacks were carried out by Al-Qaeda.\\n\\n34\\n00:02:04,378 --> 00:02:06,984\\nan organisation headed by Osama bin Laden\\n\\n35\\n00:02:06,984 --> 00:02:09,826\\nwhich had openly declared war on the United States\\n\\n36\\n00:02:09,826 --> 00:02:14,506\\nand was committed to killing innocents in our country and around the globe\\n\\n37\\n00:02:14,506 --> 00:02:17,346\\nAnd so we went to war against Al-Qaeda\\n\\n38\\n00:02:17,346 --> 00:02:22,694\\nto protect our citizens, our friends, and our allies.\\n\\n39\\n00:02:22,694 --> 00:02:27,91\\nOver the last ten years, thanks to the tireless and heroic work of our military\\n\\n40\\n00:02:27,91 --> 00:02:32,856\\nand our counter-terrorism professionals, we have made great strides in that effort\\n\\n41\\n00:02:32,856 --> 00:02:37,233\\nwe have disrupted terrorist attacks and strengthened our homeland defense\\n\\n42\\n00:02:37,233 --> 00:02:39,809\\nIn Afghanistan we removed the Taliban government \\n\\n43\\n00:02:39,809 --> 00:02:43,789\\nwhich had given bin Laden and Al-Qaeda safe haven and support\\n\\n44\\n00:02:43,789 --> 00:02:46,595\\nAnd around the globe we worked with our friends and allies\\n\\n45\\n00:02:46,595 --> 00:02:49,536\\nto capture or kill scores of Al-Qaeda terrorists\\n\\n46\\n00:02:49,536 --> 00:02:54,315\\nincluding several who were part of the 9/11 plot\\n\\n47\\n00:02:54,315 --> 00:02:57,323\\nYet Osama bin Laden avoided capture\\n\\n48\\n00:02:57,323 --> 00:03:01,301\\nand escaped across the Afghan border into Pakistan\\n\\n49\\n00:03:01,301 --> 00:03:04,543\\nMeanwhile Al-Qaeda continued to operate from along that border\\n\\n50\\n00:03:04,543 --> 00:03:09,123\\nand operate through its affiliates around the world\\n\\n51\\n00:03:09,123 --> 00:03:11,496\\nand so shortly after taking office\\n\\n52\\n00:03:11,496 --> 00:03:15,039\\nI directed Leon Panetta, the director of the CIA,\\n\\n53\\n00:03:15,039 --> 00:03:20,756\\nto make the killing or capture of bin Laden the top-priority of our war against Al-Qaeda\\n\\n54\\n00:03:20,756 --> 00:03:26,071\\neven as we continued our broader efforts to disrupt, dismantle, and defeat his network\\n\\n55\\n00:03:26,071 --> 00:03:33,256\\nThen, last August, after years of painstaking work by our intelligence community\\n\\n56\\n00:03:33,256 --> 00:03:36,7\\nI was briefed on a possible lead to bin Laden\\n\\n57\\n00:03:36,7 --> 00:03:41,646\\nIt was far from certain, and it took many months to run this thread to ground\\n\\n58\\n00:03:41,646 --> 00:03:44,055\\nI met repeatedly with my national security team\\n\\n59\\n00:03:44,055 --> 00:03:48,231\\nas we developed more information about the possibility that we had located bin Laden\\n\\n60\\n00:03:48,231 --> 00:03:52,41\\nhiding within a compound deep inside Pakistan\\n\\n61\\n00:03:52,41 --> 00:03:58,227\\nAnd finally, last week, I determined that we had enough intelligence to take action\\n\\n62\\n00:03:58,227 --> 00:04:03,942\\nand authorized an operation to get Osama bin Laden and bring him to justice\\n\\n63\\n00:04:03,942 --> 00:04:10,124\\nToday, at my direction, the United States launched a targeted operation against that compound\\n\\n64\\n00:04:10,124 --> 00:04:13,268\\nin Abbottabad, Pakistan.\\n\\n65\\n00:04:13,268 --> 00:04:18,783\\nThe small team of Americans carried out the operation with extraordinary courage and capability.\\n\\n66\\n00:04:18,783 --> 00:04:21,323\\nNo Americans were harmed.\\n\\n67\\n00:04:21,323 --> 00:04:24,799\\nThey took care to avoid civilian casualties\\n\\n68\\n00:04:24,799 --> 00:04:27,573\\nAfter a fire fight, they killed Osama bin Laden\\n\\n69\\n00:04:27,573 --> 00:04:31,283\\nand took custody of his body.\\n\\n70\\n00:04:31,283 --> 00:04:36,063\\nFor over two decades, bin Laden has been Al-Qaeda's leader and symbol\\n\\n71\\n00:04:36,063 --> 00:04:41,011\\nand has continued to plot attacks against our country and our friends and allies.\\n\\n72\\n00:04:41,011 --> 00:04:44,585\\nThe death of bin Laden marks the most significant achievement to date\\n\\n73\\n00:04:44,585 --> 00:04:47,729\\nin our nations's effort to defeat Al-Qaeda\\n\\n74\\n00:04:47,729 --> 00:04:50,772\\nYet his death does not mark the end of our effort\\n\\n75\\n00:04:50,772 --> 00:04:54,982\\nThere is no doubt that Al-Qaeda will continue to pursue attacks against us\\n\\n76\\n00:04:54,982 --> 00:05:00,799\\nwe must, and we will, remain vigilant at home and abroad\\n\\n77\\n00:05:00,799 --> 00:05:08,254\\nAs we do, we must also reaffirm that the United States is not and never will be at war with Islam.\\n\\n78\\n00:05:08,254 --> 00:05:13,802\\nI have made clear, just as President Bush did shortly after 9/11,\\n\\n79\\n00:05:13,802 --> 00:05:18,078\\nthat our war is not against Islam, that bin Laden was not a Muslim leader\\n\\n80\\n00:05:18,078 --> 00:05:21,022\\nhe was a mass-murderer of Muslims.\\n\\n81\\n00:05:21,188 --> 00:05:24,096\\nIndeed, al-Qaida slaughtered scores of Muslims in many countries\\n\\n82\\n00:05:24,096 --> 00:05:26,169\\nincluding our own.\\n\\n83\\n00:05:26,169 --> 00:05:31,441\\nSo his demise should be welcomed by all who believe in peace and human dignity.\\n\\n84\\n00:05:32,395 --> 00:05:34,706\\nOver the years, I have repeatedly made clear\\n\\n85\\n00:05:34,706 --> 00:05:39,654\\nthat we would take action within Pakistan if we knew where bin Laden was.\\n\\n86\\n00:05:40,146 --> 00:05:41,925\\nThat is what we have done.\\n\\n87\\n00:05:42,079 --> 00:05:47,628\\nBut it is important to note that our counter-terrorism cooperation with Pakistan helped lead us to bin Laden\\n\\n88\\n00:05:48,397 --> 00:05:50,789\\nand the compound where he was hiding.\\n\\n89\\n00:05:51,004 --> 00:05:54,3\\nIndeed, bin Laden had declared war against Pakistan as well\\n\\n90\\n00:05:54,73 --> 00:05:57,613\\nand ordered attacks against the Pakistani people.\\n\\n91\\n00:05:57,89 --> 00:06:04,658\\nTonight, I called President Zardari, and my team has also spoken with their Pakistani counterparts.\\n\\n92\\n00:06:05,043 --> 00:06:09,455\\nThey agree that this is a good and historic day for both of our nations\\n\\n93\\n00:06:09,455 --> 00:06:13,399\\nand going forward, it is essential that Pakistan continue\\n\\n94\\n00:06:13,399 --> 00:06:17,711\\nto join us in the fight against al-Qaeda and its affiliates.\\n\\n95\\n00:06:18,48 --> 00:06:21,074\\nThe American people did not choose this fight.\\n\\n96\\n00:06:21,074 --> 00:06:23,208\\nIt came to our shores.\\n\\n97\\n00:06:23,716 --> 00:06:27,358\\nIt started with the senseless slaughter of our citizens.\\n\\n98\\n00:06:27,911 --> 00:06:32,914\\nAfter nearly ten years of service, struggle, and sacrifice\\n\\n99\\n00:06:33,36 --> 00:06:35,831\\nwe know well the costs of war.\\n\\n100\\n00:06:36,831 --> 00:06:43,95\\nThese efforts weigh on me every time I, as Commander in Chief, have to sign a letter to a family that has lost a loved one\\n\\n101\\n00:06:43,95 --> 00:06:48,897\\nor look into the eyes of a service member who has been gravely wounded.\\n\\n102\\n00:06:48,897 --> 00:06:51,803\\nSo Americans understand the costs of war.\\n\\n103\\n00:06:52,203 --> 00:06:56,684\\nYet, as a country, we will never tolerate our security being threatened\\n\\n104\\n00:06:56,684 --> 00:06:59,979\\nnor stand idly by when our people have been killed.\\n\\n105\\n00:07:00,441 --> 00:07:03,907\\nWe will be relentless in defense of our citizens\\n\\n106\\n00:07:03,907 --> 00:07:06,245\\nand our friends and allies.\\n\\n107\\n00:07:06,245 --> 00:07:09,352\\nWe will be true to the values that make us who we are\\n\\n108\\n00:07:09,967 --> 00:07:16,273\\nand on nights like this one, we can say to those families who have lost loved ones to al-Qaeda's terror:\\n\\n109\\n00:07:16,273 --> 00:07:19,114\\nJustice has been done.\\n\\n110\\n00:07:20,252 --> 00:07:25,523\\nTonight we give thanks to the countless intelligence and counter-terrorism professionals who have worked tirelessly\\n\\n111\\n00:07:25,523 --> 00:07:27,894\\nto achieve this outcome.\\n\\n112\\n00:07:28,063 --> 00:07:32,617\\nThe American people do not see their work, nor know their names\\n\\n113\\n00:07:32,986 --> 00:07:39,295\\nbut tonight, they feel the satisfaction of their work and the result of their pursuit of justice.\\n\\n114\\n00:07:39,772 --> 00:07:42,952\\nWe give thanks for the men who carried out this operation\\n\\n115\\n00:07:42,952 --> 00:07:47,92\\nfor they exemplify the professionalism, patriotism and unparalleled courage\\n\\n116\\n00:07:47,92 --> 00:07:50,417\\nof those who serve our country.\\n\\n117\\n00:07:50,417 --> 00:07:57,12\\nAnd they are part of a generation that has borne the heaviest share of the burden since that September day.\\n\\n118\\n00:07:57,12 --> 00:08:01,448\\nFinally, let me say to the families who lost loved ones on 9/11\\n\\n119\\n00:08:01,833 --> 00:08:04,416\\nthat we have never forgotten your loss\\n\\n120\\n00:08:04,723 --> 00:08:08,47\\nnor wavered in our commitment to see that we do whatever it takes\\n\\n121\\n00:08:08,47 --> 00:08:11,342\\nto prevent another attack on our shores.\\n\\n122\\n00:08:11,727 --> 00:08:17,41\\nAnd tonight, let us think back to the sense of unity that prevailed on 9/11.\\n\\n123\\n00:08:17,81 --> 00:08:21,13\\nI know that it has, at times, frayed.\\n\\n124\\n00:08:21,884 --> 00:08:25,896\\nYet today's achievement is a testament to the greatness of our country\\n\\n125\\n00:08:26,203 --> 00:08:28,932\\nand the determination of the American people.\\n\\n126\\n00:08:29,916 --> 00:08:33,387\\nThe cause of securing our country is not complete, but\\n\\n127\\n00:08:33,387 --> 00:08:39,049\\ntonight we are once again reminded that America can do whatever we set our mind to.\\n\\n128\\n00:08:39,941 --> 00:08:41,758\\nThat is the story of our history.\\n\\n129\\n00:08:42,512 --> 00:08:45,185\\nWhether it is the pursuit of prosperity for our people\\n\\n130\\n00:08:45,569 --> 00:08:48,443\\nor the struggle for equality for all our citizens\\n\\n131\\n00:08:49,043 --> 00:08:52,389\\nour commitment to stand up for our values abroad\\n\\n132\\n00:08:52,774 --> 00:08:56,231\\nand our sacrifices to make the world a safer place.\\n\\n133\\n00:08:57,492 --> 00:09:01,964\\nLet us remember that we can do these things not just because of wealth or power\\n\\n134\\n00:09:02,21 --> 00:09:04,787\\nbut because of who we are.\\n\\n135\\n00:09:04,987 --> 00:09:06,24\\nOne nation\\n\\n136\\n00:09:06,378 --> 00:09:07,382\\nunder God\\n\\n137\\n00:09:07,782 --> 00:09:08,849\\nindivisible\\n\\n138\\n00:09:09,018 --> 00:09:09,988\\nwith liberty\\n\\n139\\n00:09:09,988 --> 00:09:11,91\\nand justice for all.\\n\\n140\\n00:09:12,649 --> 00:09:13,945\\nThank you.\\n\\n141\\n00:09:13,945 --> 00:09:15,193\\nMay God bless you.\\n\\n142\\n00:09:15,193 --> 00:09:17,008\\nAnd may God bless the United States of America.\",\n", + " 'bytes': 12649,\n", + " 'sha1': 'lc3ic9yb2lflva28khtl062az35ppt8',\n", + " 'parent_id': 89128070,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 124108327,\n", + " 'timestamp': '2014-05-16T10:00:24Z',\n", + " 'user': {'text': '85.0.153.118'},\n", + " 'page': {'id': 15099054,\n", + " 'title': 'President Obama on Death of Osama bin Laden.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,704 --> 00:00:02,175\\nGuten Abend!\\n\\n2\\n00:00:02,175 --> 00:00:06,952\\nIch kann dem amerikanischen Volk und der Welt heute Abend berichten,\\n\\n3\\n00:00:06,952 --> 00:00:11,3\\ndass die Vereinigten Staaten eine Operation durchführten, die zum Tod von Osama bin Laden führte.\\n\\n4\\n00:00:11,3 --> 00:00:13,672\\nEr war der Anführer von al-Qaida\\n\\n5\\n00:00:13,672 --> 00:00:21,359\\nund der Terrorist, der für die Ermordung von Tausenden unschuldiger Männer, Frauen und Kindern verantwortlich ist.\\n\\n6\\n00:00:21,359 --> 00:00:25,204\\nEs ist fast zehn Jahre her, als ein heller Septembertag \\n\\n7\\n00:00:25,204 --> 00:00:29,216\\ndurch einen der schlimmsten Angriffe auf das amerikanische Volk in unserer Geschichte verdunkelt wurde.\\n\\n8\\n00:00:29,216 --> 00:00:33,994\\nDie Bilder von 9/11 sind in unser nationales Gedächtnis eingebrannt:\\n\\n9\\n00:00:33,994 --> 00:00:38,775\\nEntführte Flugzeuge schneiden durch einen wolkenlosen Septemberhimmel,\\n\\n10\\n00:00:38,775 --> 00:00:41,784\\ndie Zwillingstürme stürzen ein,\\n\\n11\\n00:00:41,784 --> 00:00:45,059\\nschwarzer Rauch steigt vom Pentagon auf,\\n\\n12\\n00:00:45,059 --> 00:00:49,47\\ndas Wrack von Flug 93 in Shanksville, Pennsylvania,\\n\\n13\\n00:00:49,47 --> 00:00:55,554\\nwo das Handeln von heldenmutigen Bürgern noch mehr Herzschmerz und Zerstörung ersparte.\\n\\n14\\n00:00:55,554 --> 00:01:00,301\\nUnd doch wissen wir, dass die schlimmsten Bilder von der Welt nicht gesehen wurden:\\n\\n15\\n00:01:00,301 --> 00:01:03,175\\nDer leere Platz am Esstisch,\\n\\n16\\n00:01:03,175 --> 00:01:07,355\\nKinder, die dazu gezwungen waren ohne ihre Mutter oder Vater aufzuwachsen,\\n\\n17\\n00:01:07,355 --> 00:01:12,534\\nEltern, die nie das Gefühl der Umarmung ihres Kindes kennen werden.\\n\\n18\\n00:01:12,534 --> 00:01:16,279\\nFast dreitausend Bürger sind uns entrissen worden,\\n\\n19\\n00:01:16,279 --> 00:01:19,79\\nsie lassen ein klaffendes Loch in unseren Herzen zurück.\\n\\n20\\n00:01:19,79 --> 00:01:22,998\\nAm 11. September 2001,\\n\\n21\\n00:01:22,998 --> 00:01:24,933\\nin unserer Zeit der Trauer,\\n\\n22\\n00:01:24,933 --> 00:01:27,41\\nhielten die amerikanischen Menschen zusammen:\\n\\n23\\n00:01:27,41 --> 00:01:29,248\\nWir boten unseren Nachbarn eine Hand\\n\\n24\\n00:01:29,248 --> 00:01:32,255\\nund wir boten den Verwundeten unser Blut an.\\n\\n25\\n00:01:32,255 --> 00:01:35,465\\nWir bekräftigten unsere Beziehungen zueinander\\n\\n26\\n00:01:35,465 --> 00:01:39,007\\nund unsere Liebe zur Gemeinschaft und zum Land.\\n\\n27\\n00:01:39,007 --> 00:01:41,749\\nAn diesem Tag, egal woher wir kamen,\\n\\n28\\n00:01:41,749 --> 00:01:43,753\\nzu welchem Gott wir beteten\\n\\n29\\n00:01:43,753 --> 00:01:46,262\\noder welcher Rasse oder ethnischen Herkunft wir angehörten, \\n\\n30\\n00:01:46,262 --> 00:01:50,741\\nwir waren in einer amerikanischen Familie vereint.\\n\\n31\\n00:01:50,741 --> 00:01:54,752\\nWir waren auch in unserer Entschlossenheit vereint, um unsere Nation zu schützen\\n\\n32\\n00:01:54,752 --> 00:02:00,332\\nund jene, die diesen teuflischen Angriff verübten, der Gerechtigkeit zuzuführen.\\n\\n33\\n00:02:00,332 --> 00:02:04,378\\nWir erfuhren schnell, dass die 9/11-Angriffe von al-Qaida durchgeführt wurden;\\n\\n34\\n00:02:04,378 --> 00:02:06,984\\neine Organisation, die von Osama bin Laden geleitet wurde,\\n\\n35\\n00:02:06,984 --> 00:02:09,826\\ndie den Vereinigten Staaten offen den Krieg erklärte\\n\\n36\\n00:02:09,826 --> 00:02:14,506\\nund die es darauf abgesehen hatte, Unschuldige in unserem Land und rund um den Globus zu töten.\\n\\n37\\n00:02:14,506 --> 00:02:17,346\\nUnd daher schritten wir zum Krieg gegen al-Qaida,\\n\\n38\\n00:02:17,346 --> 00:02:22,694\\num unsere Bürger, unsere Freunde und unsere Verbündeten zu schützen.\\n\\n39\\n00:02:22,694 --> 00:02:27,91\\nWir haben in den letzten zehn Jahren, dank der unermüdlichen und heldenhaften Arbeit unserer Fachleute im militärischen\\n\\n40\\n00:02:27,91 --> 00:02:32,856\\nund Anti-Terrorismus-Bereich, große Fortschritte in diesem Bestreben gemacht.\\n\\n41\\n00:02:32,856 --> 00:02:37,233\\nWir haben terroristische Anschläge verhindert und unsere Heimatverteidigung gestärkt.\\n\\n42\\n00:02:37,233 --> 00:02:39,809\\nIn Afghanistan haben wir die Taliban-Regierung gestürzt,\\n\\n43\\n00:02:39,809 --> 00:02:43,789\\ndie bin Laden und al-Qaida Zuflucht, Sicherheit, Unterstützung und Hoffnung gab.\\n\\n44\\n00:02:43,789 --> 00:02:46,595\\nWeltweit haben wir mit unseren Verbündeten und Freunden zusammengearbeitet,\\n\\n45\\n00:02:46,595 --> 00:02:49,536\\nviele al-Qaida-Terroristen festzunehmen oder zu töten,\\n\\n46\\n00:02:49,536 --> 00:02:54,315\\ndarunter mehrere, die in den Anschlag vom 11. September involviert waren.\\n\\n47\\n00:02:54,315 --> 00:02:57,323\\nDoch es ist Osama bin Laden gelungen der Festnahme zu entgehen\\n\\n48\\n00:02:57,323 --> 00:03:01,301\\nund nach Pakistan zu flüchten.\\n\\n49\\n00:03:01,301 --> 00:03:04,543\\nZwischenzeitlich agierte al-Qaida weiterhin von der Grenze aus\\n\\n50\\n00:03:04,543 --> 00:03:09,123\\nund auch mit Hilfe ihrer Verbündeten auf der ganzen Welt.\\n\\n51\\n00:03:09,123 --> 00:03:11,496\\nAlso habe ich Leon Panetta,\\n\\n52\\n00:03:11,496 --> 00:03:15,039\\nden Direktor der CIA, angewiesen\\n\\n53\\n00:03:15,039 --> 00:03:20,756\\ndie Festnahme oder Tötung bin Ladens zur höchsten Priorität im Kampf gegen al-Qaida zu machen.\\n\\n54\\n00:03:20,756 --> 00:03:26,071\\nGleichzeitig unternahmen wir umfassende Maßnahmen, um sein Netzwerk zu stören, zu zerschlagen, zu besiegen.\\n\\n55\\n00:03:26,071 --> 00:03:33,256\\nDann, im August letzten Jahres, nach Jahren der unermüdlichen Arbeit unserer Nachrichtendienste,\\n\\n56\\n00:03:33,256 --> 00:03:36,7\\nwurde ich über eine mögliche Spur zu bin Laden informiert.\\n\\n57\\n00:03:36,7 --> 00:03:41,646\\nEs war keineswegs sicher, und es dauerte viele Monate der Sache nachzugehen.\\n\\n58\\n00:03:41,646 --> 00:03:44,055\\nWiederholt traf ich mich mit dem Team für nationale Sicherheit,\\n\\n59\\n00:03:44,055 --> 00:03:48,231\\nals sich die Informationen verdichteten, dass wir bin Laden möglicherweise aufgespürt hatten,\\n\\n60\\n00:03:48,231 --> 00:03:52,41\\nund zwar in einem Komplex tief in Pakistan.\\n\\n61\\n00:03:52,41 --> 00:03:58,227\\nUnd letzte Woche, schließlich, beschloss ich dass wir genug informiert waren, um handeln zu können\\n\\n62\\n00:03:58,227 --> 00:04:03,942\\nund genehmigte eine Operation, um Osama bin Laden zu bekommen und ihm das widerfahren zu lassen, was er verdient.\\n\\n63\\n00:04:03,942 --> 00:04:10,124\\nAuf meine Anweisung hin haben die USA heute eine gezielte Operation gegen diese Vereinigung gestartet\\n\\n64\\n00:04:10,124 --> 00:04:13,268\\nund zwar in Abbottabad, Pakistan.\\n\\n65\\n00:04:13,268 --> 00:04:18,783\\nDas kleine amerikanische Team führte den Vorgang mit außergewöhnlichem Mut und Fähigkeit durch.\\n\\n66\\n00:04:18,783 --> 00:04:21,323\\nKein Amerikaner wurde verletzt.\\n\\n67\\n00:04:21,323 --> 00:04:24,799\\nSie haben auch darauf geachtet, zivile Opfer zu vermeiden.\\n\\n68\\n00:04:24,799 --> 00:04:27,573\\nNach einem Gefecht haben sie Osama bin Laden getötet\\n\\n69\\n00:04:27,573 --> 00:04:31,283\\nund nahmen seinen Körper in Gewahrsam.\\n\\n70\\n00:04:31,283 --> 00:04:36,063\\nSeit über zwei Jahrzehnten war bin Laden al-Qaidas Führer und Symbol\\n\\n71\\n00:04:36,063 --> 00:04:41,011\\nund hat weitere Angriffe gegen unser Land und unsere Freunde und Verbündeten geplant.\\n\\n72\\n00:04:41,011 --> 00:04:44,585\\nDer Tod bin Ladens markiert die bedeutendste Leistung bisher\\n\\n73\\n00:04:44,585 --> 00:04:47,729\\nin den Bemühungen unserer Nation, al-Qaida zu besiegen.\\n\\n74\\n00:04:47,729 --> 00:04:50,772\\nAber sein Tod ist nicht das Ende unserer Bemühungen.\\n\\n75\\n00:04:50,772 --> 00:04:54,982\\nEs besteht kein Zweifel darin, dass al-Qaida die Angriffe gegen uns fortsetzt;\\n\\n76\\n00:04:54,982 --> 00:05:00,799\\nwir müssen und werden wachsam bleiben: Daheim und im Ausland.\\n\\n77\\n00:05:00,799 --> 00:05:08,254\\nBei der Durchführung müssen wir uns klar machen, dass sich die Vereinigten Staaten nicht im Krieg mit dem Islam befinden und es nie werden.\\n\\n78\\n00:05:08,254 --> 00:05:13,802\\nIch habe klar herausgestellt, genauso wie es G. W. Bush kurz nach dem 11. September tat,\\n\\n79\\n00:05:13,802 --> 00:05:18,078\\ndass sich unser Krieg nicht gegen den Islam richtet, dass bin Laden kein muslimischer Anführer war;\\n\\n80\\n00:05:18,078 --> 00:05:21,022\\ner war ein Massenmörder von Moslems.\\n\\n81\\n00:05:21,022 --> 0-1:0-1:0-1\\nUnd al-Qaida hat Massen von Moslems in vielen Ländern, auch unserem, abgeschlachtet.',\n", + " 'bytes': 8101,\n", + " 'sha1': '1uz8tetujy5mf7yeaus8bk8vor527r4',\n", + " 'parent_id': 67431462,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 53981430,\n", + " 'timestamp': '2011-05-04T19:39:57Z',\n", + " 'user': {'id': 38908, 'text': 'LX'},\n", + " 'page': {'id': 15105416,\n", + " 'title': 'President Obama on Death of Osama bin Laden.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'fortsadde→fortsatte',\n", + " 'text': '1\\n00:00:00,704 --> 00:00:02,175\\nGod kväll.\\n\\n2\\n00:00:02,175 --> 00:00:06,952\\nI natt kan jag rapportera till det amerikanska folket och till världen–\\n\\n3\\n00:00:06,952 --> 00:00:11,3\\n–att USA har genomfört en operation som dödade Usama bin Ladin–\\n\\n4\\n00:00:11,3 --> 00:00:13,672\\n–al-Qaidas ledare–\\n\\n5\\n00:00:13,672 --> 00:00:21,359\\n–och den terrorist som bär ansvaret för morden på tusentals oskyldiga män, kvinnor och barn.\\n\\n6\\n00:00:21,359 --> 00:00:25,204\\nDet var nästan tio år sedan som den ljusa septemberdagen förmörkades–\\n\\n7\\n00:00:25,204 --> 00:00:29,216\\n–av den värsta attacken mot det amerikanska folket i vår historia.\\n\\n8\\n00:00:29,216 --> 00:00:33,994\\nBilderna från den 11 september har etsat sig fast i vårt nationella medvetande.\\n\\n9\\n00:00:33,994 --> 00:00:38,775\\nKapade plan som skär genom en molnfri septemberhimmel–\\n\\n10\\n00:00:38,775 --> 00:00:41,784\\n–tvillingtornen som störtar samman mot marken–\\n\\n11\\n00:00:41,784 --> 00:00:45,059\\n–svart rök som stiger upp från Pentagon–\\n\\n12\\n00:00:45,059 --> 00:00:49,47\\n–spillrorna av flight 93 i Shanksville i Pennsylvania–\\n\\n13\\n00:00:49,47 --> 00:00:55,554\\n–där hjältemodiga medborgares handlingar förhindrade ytterligare sorg och förstörelse.\\n\\n14\\n00:00:55,554 --> 00:01:00,301\\nOch ändå vet vi att de värsta bilderna är de som inte sågs av omvärlden.\\n\\n15\\n00:01:00,301 --> 00:01:03,175\\nDen tomma platsen vid middagsbordet–\\n\\n16\\n00:01:03,175 --> 00:01:07,355\\n–barn som tvingades växa upp utan sin mor eller sin far–\\n\\n17\\n00:01:07,355 --> 00:01:12,534\\n–föräldrar som aldrig fick uppleva känslan av att bli omkramade av sina barn–\\n\\n18\\n00:01:12,534 --> 00:01:16,279\\n–nästan tretusen medborgare som togs ifrån oss–\\n\\n19\\n00:01:16,279 --> 00:01:19,79\\n–och lämnade ett gapande hål i våra hjärtan.\\n\\n20\\n00:01:19,79 --> 00:01:22,998\\nDen 11 september 2001–\\n\\n21\\n00:01:22,998 --> 00:01:24,933\\n–i vår tid av sorg–\\n\\n22\\n00:01:24,933 --> 00:01:27,41\\n–slöt det amerikanska folket upp.\\n\\n23\\n00:01:27,41 --> 00:01:29,248\\nVi gav våra grannar en hjälpande hand–\\n\\n24\\n00:01:29,248 --> 00:01:32,255\\n–och vi gav vårt blod åt de skadade.\\n\\n25\\n00:01:32,255 --> 00:01:35,465\\nVi bekräftade vårt band till varandra–\\n\\n26\\n00:01:35,465 --> 00:01:39,007\\n–och vår kärlek för vårt samhälle och vårt land.\\n\\n27\\n00:01:39,007 --> 00:01:41,749\\nOavsett varifrån vi kom–\\n\\n28\\n00:01:41,749 --> 00:01:43,753\\n–vilken gud vi bad till–\\n\\n29\\n00:01:43,753 --> 00:01:46,262\\n–och vilken ras eller etnicitet vi tillhörde–\\n\\n30\\n00:01:46,262 --> 00:01:50,741\\n–enades vi den dagen som en amerikansk familj.\\n\\n31\\n00:01:50,741 --> 00:01:54,752\\nVi var också enade i vår beslutsamhet att skydda vår nation–\\n\\n32\\n00:01:54,752 --> 00:02:00,332\\n–och att ställa dem som begick denna våldsamma attack inför rätta.\\n\\n33\\n00:02:00,332 --> 00:02:04,378\\nVi förstod snart att 11-septemberattackerna utförts av al-Qaida–\\n\\n34\\n00:02:04,378 --> 00:02:06,984\\n–en organisation ledd av Usama bin Ladin–\\n\\n35\\n00:02:06,984 --> 00:02:09,826\\n–som öppet hade förklarat krig mot USA–\\n\\n36\\n00:02:09,826 --> 00:02:14,506\\n–och som var beslutna att döda oskyldiga i vårt land och runt om i världen.\\n\\n37\\n00:02:14,506 --> 00:02:17,346\\nSå vi gick till krig mot al-Qaida–\\n\\n38\\n00:02:17,346 --> 00:02:22,694\\n–för att skydda våra medborgare, våra vänner och våra allierade.\\n\\n39\\n00:02:22,694 --> 00:02:27,91\\nTack vare det outtröttliga och hjältemodiga arbetet som utförts av vår militär–\\n\\n40\\n00:02:27,91 --> 00:02:32,856\\n–och våra antiterroristexperter har vi under de senaste tio åren rönt stora framsteg.\\n\\n41\\n00:02:32,856 --> 00:02:37,233\\nVi har hindrat terroristattentat och stärkt vårt hemlands försvar.\\n\\n42\\n00:02:37,233 --> 00:02:39,809\\nI Afghanistan avsatte vi talibanregeringen–\\n\\n43\\n00:02:39,809 --> 00:02:43,789\\n–som hade gett bin Ladin och al-Qaida en fristad och sitt stöd.\\n\\n44\\n00:02:43,789 --> 00:02:46,595\\nOch runt om i världen samarbetade vi med våra vänner och allierade–\\n\\n45\\n00:02:46,595 --> 00:02:49,536\\n–för att fånga eller döda ett antal al-Qaidaterrorister–\\n\\n46\\n00:02:49,536 --> 00:02:54,315\\n–inklusive flera som var delaktiga i 11-septemberdåden.\\n\\n47\\n00:02:54,315 --> 00:02:57,323\\nMen Usama bin Ladin undvek tillfångatagande–\\n\\n48\\n00:02:57,323 --> 00:03:01,301\\n–och flydde över den afghanska gränsen in i Pakistan.\\n\\n49\\n00:03:01,301 --> 00:03:04,543\\nSamtidigt fortsatte al-Qaida att verka från området utmed gränsen–\\n\\n50\\n00:03:04,543 --> 00:03:09,123\\n–och genom sina bundsförvanter runt om i världen.\\n\\n51\\n00:03:09,123 --> 00:03:11,496\\nDärför gav jag kort efter att jag tillträdde–\\n\\n52\\n00:03:11,496 --> 00:03:15,039\\n–en order till Leon Panetta, chef för CIA–\\n\\n53\\n00:03:15,039 --> 00:03:20,756\\n–att göra Usama bin Ladins död eller tillfångatagande till högsta prioritet i vårt krig mot al-Qaida.\\n\\n54\\n00:03:20,756 --> 00:03:26,071\\n–samtidigt som vi fortsatte våra vidare ansträngningar att hindra, upplösa och bekämpa hans nätverk.\\n\\n55\\n00:03:26,071 --> 00:03:33,256\\nSedan, i augusti förra året, efter år av mödosamt arbete för vår underrättelsetjänst–\\n\\n56\\n00:03:33,256 --> 00:03:36,7\\n–informerades jag om ett möjligt spår till bin Ladin.\\n\\n57\\n00:03:36,7 --> 00:03:41,646\\nDet var långt ifrån säkert, och det tog många månader att gå till botten med det här spåret.\\n\\n58\\n00:03:41,646 --> 00:03:44,055\\nJag hade återkommande möten med min arbetsgrupp för nationell säkerhet–\\n\\n59\\n00:03:44,055 --> 00:03:48,231\\n–samtidigt som vi samlade in ytterligare information om möjligheten att vi hade funnit bin Ladin–\\n\\n60\\n00:03:48,231 --> 00:03:52,41\\n–gömd i en anläggning långt inne i Pakistan.\\n\\n61\\n00:03:52,41 --> 00:03:58,227\\nOch till slut, förra veckan, bedömde jag att vi hade tilltäckligt med underrättelseinformation för att handla–\\n\\n62\\n00:03:58,227 --> 00:04:03,942\\n–och jag godkände en operation för att ta Usama bin Ladin och ställa honom inför rätta.\\n\\n63\\n00:04:03,942 --> 00:04:10,124\\nUnder min ledning inledde USA i dag en riktad operation mot anläggningen–\\n\\n64\\n00:04:10,124 --> 00:04:13,268\\ni Abbottabad i Pakistan.\\n\\n65\\n00:04:13,268 --> 00:04:18,783\\nDen lilla styrkan av amerikaner utförde operationen med sällsynt mod och färdighet.\\n\\n66\\n00:04:18,783 --> 00:04:21,323\\nInga amerikaner skadades.\\n\\n67\\n00:04:21,323 --> 00:04:24,799\\nDe var noga med att undvika civila offer.\\n\\n68\\n00:04:24,799 --> 00:04:27,573\\nEfter en eldstrid dödade de Usama bin Ladin–\\n\\n69\\n00:04:27,573 --> 00:04:31,283\\n–och omhändertog hans kropp.\\n\\n70\\n00:04:31,283 --> 00:04:36,063\\nI över två årtionden har bin Ladin varit al-Qaidas ledare och symbol–\\n\\n71\\n00:04:36,063 --> 00:04:41,011\\n–och han har fortsatt att planera attacker mot vårt land och mot våra vänner och allierade.\\n\\n72\\n00:04:41,011 --> 00:04:44,585\\nBin Ladins död utgör den mest betydande bedriften hittills–\\n\\n73\\n00:04:44,585 --> 00:04:47,729\\n–i vår nations ansträngningar för att bekämpa al-Qaida.\\n\\n74\\n00:04:47,729 --> 00:04:50,772\\nMen hans död utgör inte slutet av av våra ansträngningar.\\n\\n75\\n00:04:50,772 --> 00:04:54,982\\nDet råder inget tvivel om att al-Qaida kommer att fortsätta försöken att attackera oss.\\n\\n76\\n00:04:54,982 --> 00:05:00,799\\nVi måste vara – och kommer att vara – fortsatt vaksamma hemma och i utlandet.\\n\\n77\\n00:05:00,799 --> 00:05:08,254\\nSamtidigt måste vi också stå fast vid att USA inte för krig mot islam och inte kommer att göra det.\\n\\n78\\n00:05:08,254 --> 00:05:13,802\\nJag har, i likhet med president Bush efter den 11 september, klargjort–\\n\\n79\\n00:05:13,802 --> 00:05:18,078\\n–att vårt krig inte utkämpas mot islam, för bin Ladin var inte en muslimsk ledare.\\n\\n80\\n00:05:18,078 --> 00:05:21,022\\nHan massmördade muslimer.\\n\\n81\\n00:05:21,188 --> 00:05:24,096\\nAl-Qaida massakrerade åtskilliga muslimer i flera länder–\\n\\n82\\n00:05:24,096 --> 00:05:26,169\\n–inklusive vårt eget.\\n\\n83\\n00:05:26,169 --> 00:05:31,441\\nSå hans död bör välkomnas av alla som tror på fred och mänsklig värdighet.\\n\\n84\\n00:05:32,395 --> 00:05:34,706\\nUnder årens lopp har jag upprepade gånger klargjort–\\n\\n85\\n00:05:34,706 --> 00:05:39,654\\n–att vi skulle agera i Pakistan om vi viste var bin Ladin befann sig.\\n\\n86\\n00:05:40,146 --> 00:05:41,925\\nDet är vad vi har gjort.\\n\\n87\\n00:05:42,079 --> 00:05:47,628\\nMen det är viktigt att notera att vårt antiterrorsamarbete med Pakistan hjälpte till att leda oss till bin Ladin–\\n\\n88\\n00:05:48,397 --> 00:05:50,789\\n–och anläggningen där han gömde sig.\\n\\n89\\n00:05:51,004 --> 00:05:54,3\\nFaktum är att bin Ladin även förklarade krig mot Pakistan–\\n\\n90\\n00:05:54,73 --> 00:05:57,613\\n–och beordrade attacker mot det pakistanska folket.\\n\\n91\\n00:05:57,89 --> 00:06:04,658\\nI natt ringde jag till president Zardari, och mina medarbetare har också talat med sina pakistanska kollegor.\\n\\n92\\n00:06:05,043 --> 00:06:09,455\\nDe är överens om att detta är en bra och historisk dag för båda våra länder–\\n\\n93\\n00:06:09,455 --> 00:06:13,399\\n–och när vi går vidare är det viktigt att Pakistan fortsätter–\\n\\n94\\n00:06:13,399 --> 00:06:17,711\\n–att arbeta med oss i kampen mot al-Qaida och dess bundsförvanter.\\n\\n95\\n00:06:18,48 --> 00:06:21,074\\nDet amerikanska folket valde inte denna kamp.\\n\\n96\\n00:06:21,074 --> 00:06:23,208\\nDen kom till oss.\\n\\n97\\n00:06:23,716 --> 00:06:27,358\\nDen började med en vettlös massaker på våra medborgare.\\n\\n98\\n00:06:27,911 --> 00:06:32,914\\nEfter nästan tio år av tjänstgöring, kamp och uppoffringar–\\n\\n99\\n00:06:33,36 --> 00:06:35,831\\n–är vi väl förtrogna med krigets kostnader.\\n\\n100\\n00:06:36,831 --> 00:06:43,95\\nJag påminns om dessa mödor varje gång jag som överbefälhavare skriver under ett brev till en familj som förlorat en anhörig–\\n\\n101\\n00:06:43,95 --> 00:06:48,897\\n–eller ser en svårt sårad soldat i ögonen.\\n\\n102\\n00:06:48,897 --> 00:06:51,803\\nSå amerikaner inser krigets kostnader.\\n\\n103\\n00:06:52,203 --> 00:06:56,684\\nMen vi som nation kommer aldrig att tolerera att vår säkerhet hotas–\\n\\n104\\n00:06:56,684 --> 00:06:59,979\\n–eller stå passiva när vårt folk har dödats.\\n\\n105\\n00:07:00,441 --> 00:07:03,907\\nVi kommer att vara obevekliga i vårt försvar av våra medborgare–\\n\\n106\\n00:07:03,907 --> 00:07:06,245\\n–och våra vänner och allierade.\\n\\n107\\n00:07:06,245 --> 00:07:09,352\\nVi kommer att vara trogna de värden som gör oss till dem vi är–\\n\\n108\\n00:07:09,967 --> 00:07:16,273\\n–och nätter som dessa kan vi säga till de familjer som förlorat anhöriga till al-Qaidas terror:\\n\\n109\\n00:07:16,273 --> 00:07:19,114\\nRättvisa har skipats.\\n\\n110\\n00:07:20,252 --> 00:07:25,523\\nI natt tackar vi de otaliga underrättelse- och antiterroristexperter som har arbetat outtröttligt\\n\\n111\\n00:07:25,523 --> 00:07:27,894\\n–för att uppnå detta resultat.\\n\\n112\\n00:07:28,063 --> 00:07:32,617\\nDet amerikanska folket ser inte deras arbete och känner inte till deras namn–\\n\\n113\\n00:07:32,986 --> 00:07:39,295\\n–men i natt kan de känna tillfredsställelse med sitt arbete och resultatet av deras strävan efter rättvisa.\\n\\n114\\n00:07:39,772 --> 00:07:42,952\\nVi tackar de män som utförde den här operationen–\\n\\n115\\n00:07:42,952 --> 00:07:47,92\\n–ty de exemplifierar den professionalism, den patriotism och det oöverträffade mod–\\n\\n116\\n00:07:47,92 --> 00:07:50,417\\n–som präglar dem som tjänar vårt land.\\n\\n117\\n00:07:50,417 --> 00:07:57,12\\nOch de är en del av en generation som har burit den tyngsta delen av bördan sedan den där septemberdagen.\\n\\n118\\n00:07:57,12 --> 00:08:01,448\\nTill sist, låt mig säga till familjerna som förlorade anhöriga den 11 september–\\n\\n119\\n00:08:01,833 --> 00:08:04,416\\n–att vi aldrig har glömt er förlust–\\n\\n120\\n00:08:04,723 --> 00:08:08,47\\n–eller tvekat i vår beslutsamhet att göra vad som krävs–\\n\\n121\\n00:08:08,47 --> 00:08:11,342\\n–för att förhindra ännu en attack på vår mark.\\n\\n122\\n00:08:11,727 --> 00:08:17,41\\nOch låt oss i natt tänka tillbaka på den känsla av enighet som rådde den 11 september.\\n\\n123\\n00:08:17,81 --> 00:08:21,13\\nJag vet att den stundtals har ansträngts.\\n\\n124\\n00:08:21,884 --> 00:08:25,896\\nMen dagens bedrift är ett bevis på vårt lands storhet–\\n\\n125\\n00:08:26,203 --> 00:08:28,932\\n–och det amerikanska folkets beslutsamhet.\\n\\n126\\n00:08:29,916 --> 00:08:33,387\\nUppgiften att säkra vårt land är inte fullbordad, men–\\n\\n127\\n00:08:33,387 --> 00:08:39,049\\n–i natt påminns vi än en gång vad USA kan göra vad vi än bestämmer oss för.\\n\\n128\\n00:08:39,941 --> 00:08:41,758\\nDet är skrivet i vår historia.\\n\\n129\\n00:08:42,512 --> 00:08:45,185\\nOavsett om det gäller strävan efter välstånd för vårt folk–\\n\\n130\\n00:08:45,569 --> 00:08:48,443\\n–eller kampen för jämlikhet för alla våra medborgare–\\n\\n131\\n00:08:49,043 --> 00:08:52,389\\n–vår beslutsamhet att stå upp för våra värden i andra länder–\\n\\n132\\n00:08:52,774 --> 00:08:56,231\\n–och våra uppoffringar för att göra världen till en säkrare plats.\\n\\n133\\n00:08:57,492 --> 00:09:01,964\\nLåt oss komma ihåg att vi kan göra dessa saker inte bara på grund av rikedom eller makt–\\n\\n134\\n00:09:02,21 --> 00:09:04,787\\n–utan på grund av vilka vi är.\\n\\n135\\n00:09:04,987 --> 00:09:06,24\\nEn nation–\\n\\n136\\n00:09:06,378 --> 00:09:07,382\\n–under Gud–\\n\\n137\\n00:09:07,782 --> 00:09:08,849\\n–odelbar–\\n\\n138\\n00:09:09,018 --> 00:09:09,988\\n–med frihet–\\n\\n139\\n00:09:09,988 --> 00:09:11,91\\n–och rättvisa för alla.\\n\\n140\\n00:09:12,649 --> 00:09:13,945\\nTack.\\n\\n141\\n00:09:13,945 --> 00:09:15,193\\nGud välsigne er.\\n\\n142\\n00:09:15,193 --> 00:09:17,008\\nOch Gud välsigne Amerikas förenta stater.',\n", + " 'bytes': 13581,\n", + " 'sha1': '61b7ywvxamivewh81x9scd8wfikxhht',\n", + " 'parent_id': 53981349,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 53978728,\n", + " 'timestamp': '2011-05-04T18:30:17Z',\n", + " 'user': {'id': 567203, 'text': 'Uusijani'},\n", + " 'page': {'id': 15113655,\n", + " 'title': 'President Obama on Death of Osama bin Laden.ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:00,704 --> 00:00:01,722 Hyvää iltaa. 2 00:00:01,722 --> 00:00:07,720 Voin tänä iltana kertoa Amerikan kansalle ja maailmalle, että Yhdysvallat on ...'\",\n", + " 'text': '\\ufeff1\\n00:00:00,704 --> 00:00:01,722\\nHyvää iltaa.\\n\\n2\\n00:00:01,722 --> 00:00:07,720\\nVoin tänä iltana kertoa Amerikan kansalle ja maailmalle, että Yhdysvallat on suorittanut\\n\\n3\\n00:00:07,720 --> 00:00:13,689\\noperaation, jossa sai surmansa Osama bin Laden, Al-Qaidan johtaja\\n\\n4\\n00:00:13,689 --> 00:00:20,725\\nja terroristi, joka on vastuussa tuhansien viattomien miesten, naisten ja lasten murhista.\\n\\n5\\n00:00:20,725 --> 00:00:25,718\\nOn kulunut melkein kymmenen vuotta siitä kun kuulas syyskuinen päivä muuttui synkäksi\\n\\n6\\n00:00:25,718 --> 00:00:29,721\\npahimman Yhdysvaltain kansalaisia vastaan suunnatun hyökkäyksen seurauksena.\\n\\n7\\n00:00:29,721 --> 00:00:33,724\\nSyyskuun 11. päivän kuvat paloivat kiinni kansalliseen muistiimme.\\n\\n8\\n00:00:33,724 --> 00:00:40,725\\nKaapatut lentokoneet lentämässä pilvettömän syyskuisen taivaan halki, kaksoistornit romahtamassa maan tasalle,\\n\\n9\\n00:00:40,725 --> 00:00:49,720\\nmusta savu kohoamassa Pentagonista, lento 93:n jäänteet Shanksvillessä Pennsylvaniassa,\\n\\n10\\n00:00:49,720 --> 00:00:55,720\\nmissä urheiden kansalaisten toiminta pelasti meidät vieläkin enemmältä murheelta ja tuholta.\\n\\n11\\n00:00:55,720 --> 00:01:00,719\\nJa kuitenkin tiedämme, että pahimmat kuvat jäivät maailmalta näkemättä:\\n\\n12\\n00:01:00,719 --> 00:01:04,725\\npäivällispöydän tyhjä tuoli, lapset, jotka joutuivat kasvamaan vailla\\n\\n13\\n00:01:04,725 --> 00:01:12,718\\näitiä tai isää, vanhemmat, jotka eivät koskaan tulisi tuntemaan lapsensa syleilyä,\\n\\n14\\n00:01:12,718 --> 00:01:19,723\\nlähes 3 000 kansalaista, jotka riistettiin meiltä jättäen ammottava aukko sydämiimme.\\n\\n15\\n00:01:19,723 --> 00:01:27,717\\nSyyskuun 11. päivänä 2001, surumme hetkellä Amerikan kansa yhdistyi.\\n\\n16\\n00:01:27,717 --> 00:01:32,718\\nTarjouduimme auttamaan naapureitamme, luovutimme haavoittuneille vertamme.\\n\\n17\\n00:01:32,718 --> 00:01:38,726\\nVahvistuimme keskinäisissä suhteissamme sekä yhteisöä ja maatamme kohtaan tuntemassamme rakkaudessa.\\n\\n18\\n00:01:38,726 --> 00:01:45,725\\nSinä päivänä, riippumatta siitä, mistä olimme kotoisin, mitä jumalaa rukoilimme tai mitä rotua tai etnistä taustaa edustimme,\\n\\n19\\n00:01:45,725 --> 00:01:50,723\\nolimme yhtä amerikkalaista perhettä.\\n\\n20\\n00:01:50,723 --> 00:01:54,726\\nOlimme myös yhtä päättäväisyydessämme suojella kansaamme ja saattaa\\n\\n21\\n00:01:54,726 --> 00:02:00,718\\ntämän pahantahtoisen teon suorittajat oikeuden eteen.\\n\\n22\\n00:02:00,718 --> 00:02:04,722\\nSaimme pian selville, että syyskuun 11. päivän iskut oli tehnyt Al-Qaida,\\n\\n23\\n00:02:04,722 --> 00:02:09,726\\njärjestö, jota johti Osama bin Laden, ja joka oli julistanut avoimesti sodan Yhdysvaltoja vastaan,\\n\\n24\\n00:02:09,726 --> 00:02:14,719\\nja joka oli päättänyt surmata viattomia meidän maassamme ja ympäri maailmaa.\\n\\n25\\n00:02:14,719 --> 00:02:22,723\\nNiinpä kävimme sotaan Al-Qaidaa vastaan, suojellaksemme kansalaisiamme, ystäviämme ja liittolaisiamme.\\n\\n26\\n00:02:22,723 --> 00:02:27,726\\nKuluneiden kymmenen vuoden aikana armeijamme sekä terrorisminvastaisten asiantuntijoidemme urhean työn ansiosta\\n\\n27\\n00:02:27,726 --> 00:02:32,725\\nolemme päässeet tuossa pyrkimyksessämme hyvin pitkälle.\\n\\n28\\n00:02:32,725 --> 00:02:37,721\\nOlemme estäneet terrori-iskuja ja vahvistaneet maanpuolustustamme.\\n\\n29\\n00:02:37,721 --> 00:02:43,718\\nAfganistanissa poistimme Taliban-hallinnon, joka oli tarjonnut bin Ladenille ja Al-Qaidalle turvapaikan ja tukea.\\n\\n30\\n00:02:43,718 --> 00:02:48,718\\nJa eri puolilla maailmaa teimme töitä ystäviemme ja liittolaistemme kanssa vangitaksemme tai tappaaksemme\\n\\n31\\n00:02:48,718 --> 00:02:54,719\\njoukoittain Al-Qaida-terroristeja, mukaanlukien useita syyskuun 11. juoneen osallistuneita.\\n\\n32\\n00:02:54,719 --> 00:03:01,720\\nOsama bin Laden ei kuitenkaan jäänyt kiinni, ja hän pakeni Afganistanin rajan yli Pakistaniin.\\n\\n33\\n00:03:01,720 --> 00:03:04,719\\nSillä välin Al-Qaida jatkoi toimintaansa tuon rajan tuntumasta\\n\\n34\\n00:03:04,719 --> 00:03:09,717\\nja toimintaansa kumppaniensa kautta ympäri maailmaa.\\n\\n35\\n00:03:09,717 --> 00:03:14,725\\nNiinpä määräsin pian virkaanastumiseni jälkeen Leon Panettan, CIA:n johtajan,\\n\\n36\\n00:03:14,725 --> 00:03:20,724\\nasettamaan bin Ladenin surmaamisen tai vangitsemisen ensimmäiseksi Al-Qaidan-vastaisen sodan tärkeysjärjestyksessä,\\n\\n37\\n00:03:20,724 --> 00:03:27,720\\nsamalla kun jatkoimme laajempia toimiamme hänen verkostonsa häiritsemiseksi, hajoittamiseksi ja päihittämiseksi.\\n\\n38\\n00:03:27,720 --> 00:03:33,719\\nSitten viime elokuussa, vuosien tuskaisen tiedustelutyön jälkeen,\\n\\n39\\n00:03:33,719 --> 00:03:38,718\\nsain vihjeen, joka mahdollisesti johtaisi bin Ladenin luokse. Se oli kaikkea muuta kuin varmaa,\\n\\n40\\n00:03:38,718 --> 00:03:41,724\\nja tämän vihjeen jäljittäminen kesti useita kuukausia.\\n\\n41\\n00:03:41,724 --> 00:03:45,721\\nTapasin useita kertoja sisäisen turvallisuuden ryhmän sitä mukaa, kun meille kertyi lisää tietoa\\n\\n42\\n00:03:45,721 --> 00:03:51,719\\nmahdollisuudesta, että olisimme paikallistaneet bin Ladenin leirin syvällä Pakistanissa.\\n\\n43\\n00:03:51,719 --> 00:03:58,721\\nJa lopulta viime viikolla päätin, että meillä on riittävästi tiedustelutietoa tarttua toimeen, ja määräsin\\n\\n44\\n00:03:58,721 --> 00:04:03,723\\noperaation ottaa Osama bin Laden kiinni ja tuoda hänet oikeuden eteen.\\n\\n45\\n00:04:03,723 --> 00:04:08,723\\nTänään, minun johdollani, Yhdysvallat käynnisti kohdistetun hyökkäyksen\\n\\n46\\n00:04:08,723 --> 00:04:13,717\\ntuota leiriä vastaan Abbotabadissa, Pakistanissa.\\n\\n47\\n00:04:13,717 --> 00:04:18,722\\nPieni amerikkalaisryhmä suoritti operaation osoittaen poikkeuksellista rohkeutta ja kykyjä.\\n\\n48\\n00:04:18,722 --> 00:04:24,718\\nAmerikkalaisia ei loukkaantunut. Siviiliuhreja vältettiin huolella.\\n\\n49\\n00:04:24,718 --> 00:04:30,722\\nTulitaistelun jälkeen Osama bin Laden tapettiin ja hänen ruumiinsa otettiin huostaan.\\n\\n50\\n00:04:30,722 --> 00:04:35,726\\nYli kaksi vuosikymmentä bin Laden on ollut Al-Qaidan johtaja ja symboli\\n\\n51\\n00:04:35,726 --> 00:04:40,725\\nja on jatkuvasti juoninut maatamme, ystäviämme ja liittolaisiamme vastaan.\\n\\n52\\n00:04:40,725 --> 00:04:45,721\\nBin Ladenin kuolema on tähän mennessä merkittävin virstanpylväs maamme pyrkimyksessä\\n\\n53\\n00:04:45,721 --> 00:04:50,723\\npäihittää Al-Qaida. Hänen kuolemansa ei merkitse pyrkimyksemme loppumista.\\n\\n54\\n00:04:50,723 --> 00:04:55,717\\nEpäilemättä Al-Qaida pyrkii jatkossakin hyökkäämään meitä vastaan.\\n\\n55\\n00:04:55,717 --> 00:05:00,720\\nMeidän tulee pysyä ja me tulemme pysymään valppaina niin kotona kuin ulkomailla.\\n\\n56\\n00:05:00,720 --> 00:05:07,724\\nSamalla meidän tulee myöskin vakuuttaa, ettei Yhdysvallat tule koskaan käymään sotaa islamia vastaan.\\n\\n57\\n00:05:07,724 --> 00:05:15,720\\nOlen tehnyt selväksi, aivan kuten presidentti Bush teki pian syyskuun 11. jälkeen, ettei sotamme ole islamia vastaan.\\n\\n58\\n00:05:15,720 --> 00:05:20,721\\nBin Laden ei ollut muslimijohtaja. Hän oli muslimien joukkomurhaaja.\\n\\n59\\n00:05:20,721 --> 00:05:26,717\\nAl-Qaida todellakin teurasti joukoittain muslimeita monissa maissa, omamme mukaanluettuna.\\n\\n60\\n00:05:26,717 --> 00:05:32,721\\nNiinpä kaikkien rauhaan ja ihmisarvoon uskovien tulisi toivottaa tervetulleeksi uutiset hänen poismenostaan.\\n\\n61\\n00:05:32,721 --> 00:05:37,718\\nMenneinä vuosina olen toistuvasti tehnyt selväksi, että tarttuisimme toimeen Pakistanissa,\\n\\n62\\n00:05:37,718 --> 00:05:41,722\\nmikäli tietäisimme, missä bin Laden on. Niin olemme tehneet.\\n\\n63\\n00:05:41,722 --> 00:05:46,725\\nMutta on tärkeää panna merkille, että terrorisminvastainen yhteistyömme Pakistanin kanssa auttoi johtamaan meidät\\n\\n64\\n00:05:46,725 --> 00:05:50,724\\nbin Ladenin luo ja hänen piilopaikkanaan toimineelle leirille.\\n\\n65\\n00:05:50,724 --> 00:05:58,720\\nBin Laden oli jopa julistanut sodan Pakistanillekin ja määrännyt iskuja pakistanilaisia vastaan.\\n\\n66\\n00:05:58,720 --> 00:06:04,724\\nTänä iltana soitin presidentti Zardarille, ja myös ryhmäni on puhunut pakistanilaiskollegoidensa kanssa.\\n\\n67\\n00:06:04,724 --> 00:06:09,723\\nKaikki ovat samaa mieltä siitä, että tämä on hyvä ja historiallinen päivä molemmille kansoille.\\n\\n68\\n00:06:09,723 --> 00:06:13,721\\nOn ehdottoman tärkeää, että Pakistan on jatkossakin\\n\\n69\\n00:06:13,721 --> 00:06:17,726\\nmukana taistelussamme Al-Qaidaa ja sen kumppaneita vastaan.\\n\\n70\\n00:06:17,726 --> 00:06:23,724\\nYhdysvaltain kansa ei valinnut tätä taistelua. Se tuli meidän maallemme,\\n\\n71\\n00:06:23,724 --> 00:06:28,717\\nja sai alkunsa kansalaistemme järjettömästä teurastuksesta.\\n\\n72\\n00:06:28,717 --> 00:06:35,725\\nKymmenen palvelun, kamppailun ja uhrausten vuotta myöhemmin tunnemme hyvin sodan hinnan.\\n\\n73\\n00:06:35,725 --> 00:06:41,724\\nNuo ponnistelut painavat hartaillani joka kerta, kun armeijan ylipäällikkönä joudun kirjoittamaan nimeni kirjeeseen\\n\\n74\\n00:06:41,724 --> 00:06:48,723\\nperheelle, joka on menettänyt rakkaan, tai katsomaan silmiin sotilasta, joka on pahoin haavoittunut.\\n\\n75\\n00:06:48,723 --> 00:06:52,720\\nJoten amerikkalaiset ymmärtävät sodan hinnan.\\n\\n76\\n00:06:52,720 --> 00:06:56,725\\nSiltikään emme maana tule ikinä suvaitsemaan turvallisuutemme uhkaamista,\\n\\n77\\n00:06:56,725 --> 00:07:00,723\\nemmekä katselemaan sivusta kuinka kansalaisiamme surmataan.\\n\\n78\\n00:07:00,723 --> 00:07:06,717\\nOlemme periksiantamattomia kansalaistemme, ystäviemme ja liittolaistemme puolustamisessa.\\n\\n79\\n00:07:06,717 --> 00:07:11,726\\nOlemme uskollisia arvoille, jotka tekevät meistä sen keitä olemme. Ja tällaisina iltoina\\n\\n80\\n00:07:11,726 --> 00:07:20,722\\nvoimme sanoa niille perheille, jotka ovat menettäneet rakkaimpiaan Al-Qaidan terrorille, että oikeus on toteutunut.\\n\\n81\\n00:07:20,722 --> 00:07:22,726\\nTänä iltana kiitämme niitä lukemattomia terrorisminvastaisia ja\\n\\n82\\n00:07:22,726 --> 00:07:28,717\\ntiedusteluasiantuntijoita, jotka ovat työskennelleet väsymättä päästäkseen tähän tulokseen.\\n\\n83\\n00:07:28,717 --> 00:07:32,722\\nYhdysvaltain kansa ei näe heidän työtään eikä tunne heidän nimiään,\\n\\n84\\n00:07:32,722 --> 00:07:39,725\\nmutta tänä iltana he tuntevat tyydytystä työstään ja oikeudenmukaisuuden tavoittelun tuloksista.\\n\\n85\\n00:07:39,725 --> 00:07:45,720\\nKiitämme operaation suorittaneita miehiä, sillä he ovat esimerkkejä maamme palveluksessa olevien\\n\\n86\\n00:07:45,720 --> 00:07:50,718\\nammattitaidosta, isänmaallisuudesta ja vertaansa vailla olevasta rohkeudesta.\\n\\n87\\n00:07:50,718 --> 00:07:56,722\\nJa he ovat osa sitä sukupolvea, joka on kantanut raskainta taakkaa tuon syyskuisen päivän jälkeen.\\n\\n88\\n00:07:56,722 --> 00:08:01,725\\nLopuksi haluaisin sanoa niille perheille, jotka menettivät rakkaimpiaan syyskuun 11. päivänä,\\n\\n89\\n00:08:01,725 --> 00:08:07,724\\nettemme milloinkaan ole unohtaneet menetystänne, emmekä horjuneet päättäväisyydessämme tehdä\\n\\n90\\n00:08:07,724 --> 00:08:11,726\\nmitä tahansa estääksemme uudet hyökkäykset maassamme.\\n\\n91\\n00:08:11,726 --> 00:08:18,718\\nPalatkaamme tänä iltana mietteissämme siihen yhtenäisyydentunteeseen, joka vallitsi 11. syyskuuta.\\n\\n92\\n00:08:18,718 --> 00:08:21,726\\nTiedän, että se on välillä lientynyt.\\n\\n93\\n00:08:21,726 --> 00:08:26,721\\nTämänpäiväinen saavutus on kuitenkin todiste maamme mahtavuudesta\\n\\n94\\n00:08:26,721 --> 00:08:30,717\\nja Yhdysvaltain kansan päättäväisyydestä.\\n\\n95\\n00:08:30,717 --> 00:08:33,718\\nMaamme turvaamisen hanke ei ole päätöksessään,\\n\\n96\\n00:08:33,718 --> 00:08:39,726\\nmutta tänä iltana olemme jälleen saaneet muistutuksen siitä, että Yhdysvallat pystyy mihin tahansa, minkä päätämme tehdä.\\n\\n97\\n00:08:39,726 --> 00:08:45,723\\nTämä on historiamme tarina. Olipa se sitten vaurauden tavoittelua kansallemme tai\\n\\n98\\n00:08:45,723 --> 00:08:52,723\\nkansalaistemme tasa-arvon puolesta taistelua, edustamiemme arvojen puolustamista ulkomailla\\n\\n99\\n00:08:52,723 --> 00:08:57,721\\nja turvallisemman maailman puolesta tekemiämme uhrauksia.\\n\\n100\\n00:08:57,721 --> 00:09:02,718\\nMuistakaamme, ettemme pysty näihin asioihin pelkästään mammonan tai mahdin avulla,\\n\\n101\\n00:09:02,718 --> 00:09:12,721\\nvaan koska olemme keitä olemme, yksi kansa jumalan varjeluksessa, jakamattomia vapaudessa ja oikeudenmukaisuudessa.\\n\\n102\\n00:09:12,721 --> 00:09:17,719\\nKiitoksia. Jumalan siunausta. Ja jumala siunatkoon Amerikan Yhdysvaltoja.',\n", + " 'bytes': 12150,\n", + " 'sha1': 'gddubbajftgwoufwlseurdihx9thnai',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 149116437,\n", + " 'timestamp': '2015-02-06T03:12:46Z',\n", + " 'user': {'text': '2601:4:5400:A72:31C2:D76B:FAE7:8C34'},\n", + " 'page': {'id': 15116456,\n", + " 'title': 'How to create a Wikipedia article - Right to science and culture.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:02,195 --> 00:00:08,415\\nHi, I\\'m Sage, and I\\'m going to walk you through how to create a Wikipedia article.\\n\\n2\\n00:00:08,415 --> 00:00:11,933\\nThe first step is to decide what you want to write about.\\n\\n2.5\\n00:00:11,933 --> 00:00:17,108\\nIn this tutorial, I\\'ve decided to write about the right to science and culture,\\n\\n3.25\\n00:00:17,108 --> 00:00:20,705\\na human right expressed in the Universal Declaration of Human Rights.\\n\\n4\\n00:00:20,705 --> 00:00:25,81\\nSo the first step is to search Wikipedia to see if there\\'s already an article on this topic.\\n\\n5\\n00:00:25,81 --> 00:00:33,215\\nI\\'m going to go the search box and type \"right to science and culture\" and click \"Go\".\\n\\n6\\n00:00:36,415 --> 00:00:40,01\\nWhat will come up is a list of results.\\n\\n7\\n00:00:40,01 --> 00:00:45,974\\nBut it doesn\\'t take me straight to an article, because there is no article titled \"right to science and culture\".\\n\\n8\\n00:00:45,974 --> 00:00:48,926\\nSo the next thing I\\'m going to do is scroll through these results,\\n\\n8.5\\n00:00:48,926 --> 00:00:54,389\\nto see if there\\'s an article that\\'s on this topic that goes by a different name.\\n\\n9\\n00:00:54,389 --> 00:00:55,729\\nAnd there\\'s not.\\n\\n10\\n00:00:55,729 --> 00:01:01,4\\nSo, there is no article about \"right to science and culture\", by that or any other name.\\n\\n11\\n00:01:01,4 --> 00:01:04,354\\nThe next thing I\\'m going to do is go to this link\\n\\n11.5\\n00:01:04,354 --> 00:01:07,605\\nthat says \"You may create the page \\'Right to science and culture\\'\"\\n\\n12\\n00:01:07,605 --> 00:01:13,548\\nand the link is red. Red links in Wikipedia mean there\\'s no article on that topic.\\n\\n13\\n00:01:13,548 --> 00:01:19,692\\nSo, when I click this, what comes up is just a blank editing box.\\n\\n14\\n00:01:19,692 --> 00:01:23,733\\nThis is where you compose a Wikipedia article.\\n\\n15\\n00:01:23,733 --> 00:01:28,641\\nSo, the first thing you need in a Wikipedia article is the introductory sentence.\\n\\n16\\n00:01:28,641 --> 00:01:36,866\\nThe introductory sentence is a short defintion of what this topic is and what this is going to be about.\\n\\n17\\n00:01:36,866 --> 00:01:42,22\\nSo I\\'ve already composed mine, which I will paste in.\\n\\n18\\n00:01:44,835 --> 00:01:46,138\\n\"The right to science and culture\\n\\n18.5\\n00:01:46,138 --> 00:01:51,358\\nis a human right claimed in the Universal Declaration of Human Rights and related documents\\n\\n18.75\\n00:01:51,358 --> 00:01:54,435\\nwhich says that everyone has a right to participate in culture,\\n\\n18.875\\n00:01:54,435 --> 00:01:56,441\\nto benefit from scientific progress,\\n\\n18.9375\\n00:01:56,441 --> 00:02:00,508\\nand to have a stake in their own contributions to science and culture.\"\\n\\n19\\n00:02:01,108 --> 00:02:04,148\\nNow, at the bare minimum, this could be a Wikipedia article.\\n\\n20\\n00:02:04,148 --> 00:02:09,365\\nI could come down here and click \"Save\", and it would be live.\\n\\n21\\n00:02:09,365 --> 00:02:13,815\\nBut, that\\'s not all it takes to get a Wikipedia article to stick around.\\n\\n22\\n00:02:13,815 --> 00:02:17,102\\nSo let\\'s click \"Show preview\" and see what that would look like.\\n\\n23\\n00:02:17,671 --> 00:02:20,846\\nIt\\'s just this bare text that I typed in.\\n\\n24\\n00:02:20,846 --> 00:02:25,338\\nAnd that doesn\\'t look very much like what a typical Wikipedia article looks like.\\n\\n25\\n00:02:25,338 --> 00:02:29,82\\nSo, the first thing is, it\\'s not very well-developed.\\n\\n26\\n00:02:29,82 --> 00:02:34,846\\nSo, I want to flesh this out a little bit more, and I want to do that based on sources.\\n\\n27\\n00:02:34,846 --> 00:02:39,385\\nSo, I found this article, \"The Right to Science and Culture\" by a legal scholar,\\n\\n28\\n00:02:39,385 --> 00:02:44,154\\nthat basically lays out what different people have said about the right to science and culture,\\n\\n29\\n00:02:44,154 --> 00:02:46,195\\nhow it\\'s been interpreted.\\n\\n30\\n00:02:46,333 --> 00:02:48,918\\nAnd I\\'ve looked through that,\\n\\n30.75\\n00:02:48,918 --> 00:02:57,898\\nand what I found out is that this right is enshrined in two important human rights documents,\\n\\n31.5\\n00:02:57,898 --> 00:03:00,128\\nthe Universal Declaration of Human Rights,\\n\\n33\\n00:03:00,128 --> 00:03:05,456\\nand the International Covenant on Economic, Social and Cultural Rights,\\n\\n34\\n00:03:05,456 --> 00:03:08,641\\nand it has slightly different language in each place.\\n\\n35\\n00:03:08,641 --> 00:03:12,025\\nAnd so, what I want to do is put that into the article,\\n\\n36\\n00:03:12,025 --> 00:03:14,226\\nsay where it\\'s found.\\n\\n37\\n00:03:14,226 --> 00:03:18,143\\nSo I\\'ve composed that already, and I\\'m going to paste that in.\\n\\n38\\n00:03:18,143 --> 00:03:22\\n\"It is expressed in Article 27 of the Universal Declaration of Human Rights:\",\\n\\n39\\n00:03:22 --> 00:03:27,385\\nand then here I have exactly what that part of the Universal Declaration says.\\n\\n40\\n00:03:27,385 --> 00:03:30,466\\nAnd then, \"Similar language appears in Article 15\\n\\n40.5\\n00:03:30,466 --> 00:03:34,066\\nof the International Covenant on Economic, Social and Cultural Rights,\\n\\n41\\n00:03:34,066 --> 00:03:36,128\\na treaty that many nations have signed,\"\\n\\n42\\n00:03:36,128 --> 00:03:40,651\\nand then I paste in exactly what that part says.\\n\\n43\\n00:03:40,651 --> 00:03:43,081\\nAnd the next thing that I want to do is\\n\\n44\\n00:03:43,081 --> 00:03:48,533\\nexpand a little bit about what I learned on this article about the right to science and culture.\\n\\n45\\n00:03:48,533 --> 00:03:54,621\\nAnd so I composed a few sentences that basically explain the gist of it.\\n\\n46\\n00:03:54,621 --> 00:03:56,543\\n\"The concept of a right to science and culture\\n\\n47\\n00:03:56,543 --> 00:04:00,543\\nhas received relatively little attention from legal scholars and human rights activists,\\n\\n48\\n00:04:00,543 --> 00:04:05,333\\nand there is no widely accepted interpretation of what the right entails in practice.\\n\\n49\\n00:04:05,333 --> 00:04:09,538\\nMembers of the access to knowledge movement have argued that the right to science and culture\\n\\n50\\n00:04:09,538 --> 00:04:12,575\\nis in tension with overly broad intellectual property rights\\n\\n51\\n00:04:12,575 --> 00:04:15,031\\nthat severely limit the ability of many people \\n\\n52\\n00:04:15,031 --> 00:04:19,62\\nto participate in cultural life and benefit from progress in science and technology.\"\\n\\n53\\n00:04:20,466 --> 00:04:22,354\\nSo that\\'s a reasonable short article now.\\n\\n54\\n00:04:22,354 --> 00:04:26,404\\nIf I click preview again, I can see that there\\'s a fair bit of text.\\n\\n55\\n00:04:26,404 --> 00:04:28,702\\nBut it doesn\\'t look great.\\n\\n56\\n00:04:28,702 --> 00:04:33,385\\nSo, the next thing I want to do is start prettying this up.\\n\\n57\\n00:04:33,385 --> 00:04:39,2\\nThe first thing to do is the title of the article, and it appears in the first sentence, should be bold.\\n\\n58\\n00:04:39,2 --> 00:04:44,841\\nSo I\\'m going to make it bold by highlighting this title, \"the right to science and culture,\"\\n\\n59\\n00:04:44,841 --> 00:04:47,364\\nand clicking the B, bold.\\n\\n60\\n00:04:47,364 --> 00:04:53,866\\nAnd what it does is, it puts three single quotation marks (<nowiki>\\'\\'\\'</nowiki>) on each side of the words.\\n\\n61\\n00:04:53,866 --> 00:04:57,42\\nThat\\'s the Wikipedia markup that makes something bold.\\n\\n62\\n00:04:57,42 --> 00:05:00,066\\nSo if I go down here and click preview again,\\n\\n63\\n00:05:01,343 --> 00:05:03,343\\nwe\\'ll see that now it\\'s bold.\\n\\n64\\n00:05:03,851 --> 00:05:08,435\\nThe next thing I want to do is create some links to other articles,\\n\\n65\\n00:05:08,435 --> 00:05:12,862\\nso that people will be able to click from this article to related topics.\\n\\n66\\n00:05:12,862 --> 00:05:16,554\\nSo, I think \"Universal Declaration of Human Rights\" is something\\n\\n66.5\\n00:05:16,554 --> 00:05:18,475\\nthat someone may want to read about.\\n\\n67\\n00:05:18,475 --> 00:05:23,734\\nSo I\\'m going to put - so I can do the same thing, actually.\\n\\n68\\n00:05:23,734 --> 00:05:29,646\\nHighlight it, and click this link button, internal link.\\n\\n69\\n00:05:29,646 --> 00:05:35,204\\nAnd what it does is, it puts opening and closing square brackets (<nowiki>[[</nowiki>, <nowiki>]]</nowiki>) around the words.\\n\\n70\\n00:05:35,204 --> 00:05:41,708\\nAnd that is the Wikipedia markup to create a link to the article of that title.\\n\\n71\\n00:05:41,708 --> 00:05:46,702\\nSo, other things that I want to give similar treatment to include the\\n\\n72\\n00:05:46,702 --> 00:05:54,697\\nInternational Covenant, link that, and...\\n\\n72.25\\n00:05:54,697 --> 00:05:57,558\\nmaybe...\\n\\n72.5\\n00:05:57,558 --> 00:05:59,712\\naccess to knowledge movement.\\n\\n73\\n00:05:59,712 --> 00:06:05,789\\nThat\\'s a social movement that is related to this topic.\\n\\n74\\n00:06:05,789 --> 00:06:10,523\\nSo now I\\'m going to click \"Preview\", and we\\'ll see what we have here.\\n\\n75\\n00:06:10,523 --> 00:06:12,185\\nGreat, these are all blue links,\\n\\n76\\n00:06:12,185 --> 00:06:16,774\\nwhich means that there\\'s articles associated with each of these things that I\\'ve linked.\\n\\n77\\n00:06:17,543 --> 00:06:19,4\\nSo our article\\'s coming along,\\n\\n78\\n00:06:19,4 --> 00:06:24,2\\nbut it\\'s not likely to stick around unless I cite my sources.\\n\\n79\\n00:06:24,2 --> 00:06:26,702\\nSo the very simplest way that I can do this\\n\\n80\\n00:06:26,702 --> 00:06:28,518\\nis to create a new section,\\n\\n81\\n00:06:28,518 --> 00:06:34,785\\nwhich I do by two equal signs (<nowiki>==</nowiki>), followed by the name of the section, \"References\",\\n\\n82\\n00:06:34,785 --> 00:06:37,431\\nthen two more equal signs (<nowiki>==</nowiki>).\\n\\n83\\n00:06:37,431 --> 00:06:39,523\\nThis will create a new section, and\\n\\n84\\n00:06:39,523 --> 00:06:41,785\\nI want to cite this paper.\\n\\n85\\n00:06:41,785 --> 00:06:46,358\\nSo, I go down and there\\'s actually a suggested citation format right here.\\n\\n86\\n00:06:46,358 --> 00:06:49,825\\nSo it\\'s just basically a standard bibliographic citation,\\n\\n87\\n00:06:49,825 --> 00:06:52,738\\nand I\\'m going to paste that in.\\n\\n88\\n00:06:54,523 --> 00:06:58,979\\nNow let\\'s see what our page looks like.\\n\\n89\\n00:07:00,133 --> 00:07:03,528\\nSo, at the minimum, if I saved it right now,\\n\\n90\\n00:07:03,528 --> 00:07:05,738\\nthis would probably stick around, because\\n\\n91\\n00:07:05,738 --> 00:07:12,02\\nit\\'s a basic article that looks okay, has wiki links in it,\\n\\n92\\n00:07:12,02 --> 00:07:14,174\\nand it also has a reference,\\n\\n93\\n00:07:14,174 --> 00:07:17,856\\nshowing where this information came from so that people can check\\n\\n94\\n00:07:17,856 --> 00:07:20,215\\nand make sure I didn\\'t just make it up myself.\\n\\n95\\n00:07:20,215 --> 00:07:25,543\\nSo actually I\\'m going to do that and go ahead and click \"Save page\".\\n\\n96\\n00:07:26,851 --> 00:07:29,564\\nIt says \"You have not provided an edit summary,\"\\n\\n97\\n00:07:29,564 --> 00:07:33,281\\nso I\\'m going to go down here to the Edit summary box and say,\\n\\n98\\n00:07:33,281 --> 00:07:39,954\\n\"new article about a human right\",\\n\\n98.5\\n00:07:39,954 --> 00:07:44,118\\nand click \"Save page\".\\n\\n99\\n00:07:44,118 --> 00:07:47,446\\nSo now I\\'ve created a Wikipedia article.\\n\\n100\\n00:07:47,446 --> 0-1:0-1:0-1\\nIt\\'s that simple.',\n", + " 'bytes': 10585,\n", + " 'sha1': 'ofawwdsxnpxnlieds3bhvdsqog0lafo',\n", + " 'parent_id': 134271954,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 599884364,\n", + " 'timestamp': '2021-10-18T20:37:24Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15265674,\n", + " 'title': 'Wikipedia video tutorial-1-Editing-en.ogv.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'the overall update of subtitles',\n", + " 'text': '1\\n00:00:00,938 --> 00:00:04,988\\nЗдраво! Јас сум Тереза. Драго ми\\nе што ве гледам тука на Википедија!\\n\\n2\\n00:00:05,129 --> 00:00:08,004\\nКако што можеби знаете,\\nВикипедија е слободна енциклопедија\\n\\n3\\n00:00:08,021 --> 00:00:10,754\\nшто ја пишуваат корисниците:\\nлуѓето како вас!\\n\\n4\\n00:00:10,764 --> 00:00:15,014\\nДенес, од 250 милиони\\nпосетители на Википедија,\\n\\n5\\n00:00:15,057 --> 00:00:17,974\\nимаме 10 милиони статии\\n\\n6\\n00:00:17,982 --> 00:00:20,123\\nод над 500 илјади уредници\\n\\n7\\n00:00:20,135 --> 00:00:22,087\\nна повеќе од 250 јазици.\\n\\n8\\n00:00:22,241 --> 00:00:24,593\\nНавистина е лесно да ги споделите\\nвашите сознанија\\n\\n9\\n00:00:24,593 --> 00:00:26,961\\nсо многуте корисници\\nна Википедија ширум светот.\\n\\n10\\n00:00:27,026 --> 00:00:29,581\\nВо овој момент, можете\\nда помогнете да ја подобриме\\n\\n11\\n00:00:29,581 --> 00:00:33,104\\nнајголемата и најдобрата\\nслободна енциклопедија на интернет.\\n\\n12\\n00:00:33,187 --> 00:00:35,358\\nЌе ви покажам колку е тоа лесно.\\n\\n13\\n00:00:36,299 --> 00:00:38,947\\nКога пребарувате нешто на интернет,\\n\\n14\\n00:00:38,947 --> 00:00:41,697\\nобично прво ја добивате Википедија.\\n\\n15\\n00:00:42,172 --> 00:00:45,821\\nЗатоа предлагаме да пребарате\\nдиректно на Википедија.\\n\\n16\\n00:00:46,354 --> 00:00:47,775\\nПогледајте го ова:\\n\\n17\\n00:00:47,999 --> 00:00:51,589\\nЌе забележите дека највеќето статии\\nсе опсежни, со најнови информации.\\n\\n18\\n00:00:51,768 --> 00:00:54,887\\nМеѓутоа, може да наидете\\nна статија која е прекратка\\n\\n19\\n00:00:54,959 --> 00:00:56,403\\nили треба да се подобри.\\n\\n20\\n00:00:56,450 --> 00:00:58,769\\nИ кој го може тоа подобро од вас?\\n\\n21\\n00:00:59,010 --> 00:01:03,517\\nВикипедија ве повикува да направиме\\nуште подобра енциклопедија.\\n\\n22\\n00:01:04,515 --> 00:01:06,727\\nВо над 90 отсто од случаите\\n\\n23\\n00:01:06,760 --> 00:01:09,409\\nне треба да сте стручњак\\nза да учествувате.\\n\\n24\\n00:01:09,426 --> 00:01:12,013\\nТреба само да сакате\\nда го споделите она што го знаете.\\n\\n25\\n00:01:12,013 --> 00:01:15,347\\nЗа таа цел треба\\nда проследите три мали чекори:\\n\\n26\\n00:01:15,448 --> 00:01:18,175\\nЧекор 1: Стиснете на „Уреди“\\n\\n27\\n00:01:18,262 --> 00:01:20,823\\nЧекор 2: напишете го текстот\\n\\n28\\n00:01:20,869 --> 00:01:25,861\\nи конечно, Чекор 3: Внесете опис\\nна уредувањето и стиснете на „Зачувај“\\n\\n29\\n00:01:26,690 --> 00:01:28,317\\nНели е просто?\\n\\n30\\n00:01:28,348 --> 00:01:31,711\\nДури не треба да сте најавени\\nили да имате сметка.\\n\\n31\\n00:01:31,837 --> 00:01:33,598\\nУште еднаш:\\n\\n32\\n00:01:33,683 --> 00:01:36,285\\nПрвиот чекор е копчето „Уреди“.\\n\\n33\\n00:01:36,332 --> 00:01:38,555\\nЕве го горе во статијата.\\n\\n34\\n00:01:39,340 --> 00:01:42,786\\nСтиснете го и ќе ве даде\\nна оваа страница.\\n\\n35\\n00:01:42,912 --> 00:01:45,038\\nТука ги правите измените.\\n\\n36\\n00:01:46,374 --> 00:01:49,432\\nЗа да направите измена, во текстот\\nставете го курсорот на местото\\n\\n37\\n00:01:49,492 --> 00:01:51,833\\nкајшто сакате да внесете\\nили избришете нешто.\\n\\n38\\n00:01:52,186 --> 00:01:56,016\\nИзвршете ја измената, како што би\\nнаправиле со секој друг документ.\\n\\n39\\n00:01:56,713 --> 00:02:01,531\\n(Пишување)\\n\\n40\\n00:02:02,648 --> 00:02:04,982\\nНе грижете се: ако нешто згрешите,\\n\\n41\\n00:02:05,014 --> 00:02:07,794\\nможете многу лесно да се вратите\\nна претходната верзија.\\n\\n42\\n00:02:08,253 --> 00:02:11,784\\nНа крај, Чекор 3: Веднаш под полето,\\n\\n43\\n00:02:11,845 --> 00:02:15,429\\nвнесете опис накратко опишувајќи\\nги измените што ги направивте,\\n\\n44\\n00:02:15,540 --> 00:02:18,262\\n(Пишување)\\n\\n45\\n00:02:18,536 --> 00:02:22,570\\nпа стиснете на копчето „Зачувај“\\nза да ги зачувате промените.\\n\\n46\\n00:02:25,174 --> 00:02:29,612\\nЌе забележите дека измените\\nво статијата се прикажуваат веднаш.\\n\\n47\\n00:02:31,987 --> 00:02:35,356\\nОвие три чекори се сето\\nона што ви треба за да уредувате.\\n\\n48\\n00:02:36,045 --> 00:02:37,492\\nЗнам што мислите:\\n\\n49\\n00:02:37,548 --> 00:02:41,300\\nмислите „Еј! Сега можам\\nда ја изменам историјата!“\\n\\n50\\n00:02:41,496 --> 00:02:43,650\\nЕ па, пријатели, не можете.\\n\\n51\\n00:02:43,744 --> 00:02:45,993\\nБидејќи, како што ќе видите\\nна друга снимка,\\n\\n52\\n00:02:46,022 --> 00:02:48,538\\nВикипедија има неколку механизми\\n\\n53\\n00:02:48,615 --> 00:02:50,949\\nшто ја штитат токму од такво поведение.\\n\\n54\\n00:02:51,319 --> 00:02:54,265\\nЛажните информации ќе бидат\\nизбришани во рок од неколку минути,\\n\\n55\\n00:02:54,265 --> 00:02:55,334\\nако не и секунди.\\n\\n56\\n00:02:55,334 --> 00:02:57,515\\nИ тоа е она што ја прави Википедија\\n\\n57\\n00:02:57,545 --> 00:02:59,710\\nтолку сигурен и сеопфатен\\nизвор на информации.\\n\\n58\\n00:03:00,211 --> 00:03:05,523\\nЗапомнете, луѓе како вас кои помагаат да\\nсе создаде оваа прекрасна енциклопедија,\\n\\n59\\n00:03:05,566 --> 00:03:09,203\\nи луѓе како тебе дека треба\\nда помогнеме да биде уште подобро.\\n\\n60\\n00:03:09,284 --> 00:03:11,297\\nПа сега ти е редот!\\n\\n61\\n00:03:11,739 --> 00:03:14,283\\nЗбогум, и среќа!',\n", + " 'bytes': 6731,\n", + " 'sha1': 'gm153v75hxrjv9xo0vrzj03qp1b525s',\n", + " 'parent_id': 54611140,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356646,\n", + " 'timestamp': '2021-11-09T10:00:36Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279275,\n", + " 'title': 'Elephants Dream.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.de.srt]] to [[TimedText:Elephants Dream.ogv.de.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nAuf der linken Seite sehen wir...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nAuf der rechten Seite sehen wir die...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...die Enthaupter.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nAlles ist sicher.\\nVollkommen sicher.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nPass auf!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nBist du verletzt?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nIch glaube nicht.\\nUnd du?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nMir fehlt nichts.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nSteh auf!\\nEmo, es ist gefährlich hier.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nWeiter!\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nWas jetzt?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nDu wirst es sehen.\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo, hier lang.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nMir nach!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nSchneller, Emo!\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nDu bist unaufmerksam!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nIch wollte doch nur an...\\n...ans Telefon gehen.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, schau,\\nich meine, hör zu.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nDu musst lernen zuzuhören.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nDas hier ist kein Spiel.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nDu, wir, könnten hier draußen leicht sterben.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nHör zu...\\nHör dem Klang der Maschine zu.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nHör auf deinen Atem.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nHast du nie genug davon?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nGenug?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nDie Maschine ist wie ein Uhrwerk.\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nEin falscher Schritt...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...und du wirst zerquetscht.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nAber ist es nicht...\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nZerquetscht, Emo!\\nWillst du das? Zerquetscht werden?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nDein Lebensziel?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nZerquetscht!\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, schließ die Augen.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nWarum?\\n- Sofort!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nGut.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nWas siehst du zu deiner Linken, Emo?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nNichts.\\n- Wirklich?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nÜberhaupt nichts.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nUnd zu deiner Rechten,\\nwas siehst du zu deiner Rechten, Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nDasselbe, Proog, genau dasselbe...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nNichts!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nHör mal, Proog! Hörst du das?\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nKönnen wir hier hingehen?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nDorthin?\\nDas ist gefährlich.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nAber...\\n- Vertrau mir, es ist gefährlich.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nVielleicht könnte ich...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNein.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNEIN!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nSonst noch Fragen, Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNein.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo.\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, warum...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...warum erkennst du nicht\\ndie Schönheit dieses Ortes?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nWie alles funktioniert.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nWie vollkommen es ist.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNein, Proog, ich erkenne nichts.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nIch erkenne nichts, weil da nichts ist.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nUnd warum sollte ich mein Leben\\netwas anvertrauen, das gar nicht da ist?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nKannst du mir das sagen?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nAntworte mir!\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nDu bist krank, Mann!\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nBleib weg von mir!\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nNein! Emo! Das ist eine Falle!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nHaha, eine Falle.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nAuf der linken Seite sieht man\\ndie Hängenden Gärten von Babylon.\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nWie wär das als Falle?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNein, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nAuf der rechten Seite sieht man...\\n...rate mal...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...den Koloss von Rhodos!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNein!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nDen Koloss von Rhodos\\nund er ist nur für dich hier, Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nEs ist da...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nWenn ich es dir doch sage,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...es ist da.',\n", + " 'bytes': 4570,\n", + " 'sha1': 'btbsi2axgd9zc59txvi9pyeh305lboz',\n", + " 'parent_id': 54662608,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356638,\n", + " 'timestamp': '2021-11-09T10:00:28Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279293,\n", + " 'title': 'Elephants Dream.ogv.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.el.srt]] to [[TimedText:Elephants Dream.ogv.el.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nΣτα αριστερά βλέπουμε...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nΣτα δεξιά βλέπουμε τους...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...τους αποκεφαλιστές.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nΌλα είναι ακίνδυνα.\\nαπόλυτα ασφαλή.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nΈμο;\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nΠρόσεχε!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nΧτύπησες;\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nΔεν νομίζω...\\nεσύ;\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nΕίμαι καλά.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nΣήκω.\\nΈμο, είναι επικίνδυνα εδώ.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nΠάμε.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nΠού;\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nΘα δεις!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nΈμο.\\nΑπό δω.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nΑκολούθησε με!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nΠιο γρήγορα.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nΔε με παρακολουθείς!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nΘέλω μόνο να σηκώσω το...\\n...το τηλέφωνο.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nΕμο, κοίτα... θέλω να πω, άκου.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nΠρέπει να μάθεις να ακούς.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nΔεν είναι παιχνίδι.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nΕσύ, εννοώ εμείς,\\nμπορούμε να πεθάνουμε πολύ εύκολα εδώ.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nΑφουγκράσου τους ήχους της μηχανής.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nΆκου την ανάσα σου.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nΔεν το βαριέσαι ποτέ αυτό;\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nΝα το βαρεθώ;\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nΗ μηχανή λειτουργεί σαν ρολόι\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nΜια κίνηση εκτός χρόνου και...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...και γίνεσαι αλοιφή.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nΝαι αλλά δεν είναι-\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nΑλοιφή Εμο!\\nΑυτό θες να γίνεις, αλοιφή;\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nΠοιος είναι ο σκοπός σου στη ζωή;\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nΑλοιφή.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nΚλείσε τα μάτια σου Εμο.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nΓιατί;\\n- Τώρα!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nΩραία.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nΤι βλέπεις στα αριστερά σου Εμο;\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nΤίποτα.\\n- Αλήθεια;\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nΤίποτα απολύτως.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nΚαι στα δεξιά,\\nΤι βλέπεις στα δεξιά σου Εμο;\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nΤα ίδια Προγκ, ακριβώς τα ίδια...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nΤίποτα!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nΆκου Προγκ! Το ακούς αυτό;\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nΜπορούμε να μπούμε εδώ;\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nΕκεί;\\nΕίναι επικίνδυνα.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nΑλλά...\\n- Πίστεψε με, είναι.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nΤότε ίσως θα μπορούσα...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nΌχι.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nΟΧΙ!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nΆλλες ερωτήσεις Εμο;\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nΌχι.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nΈμο;\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nΈμο, γιατί...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nΈμο...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...γιατί δεν μπορείς να δεις\\nτην ομορφιά αυτού του μέρους;\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nΤον τρόπο που δουλεύει.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nΠόσο τέλειο είναι.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nΌχι Προγκ, δεν το βλέπω.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nΔεν το βλέπω\\nγιατί δεν υπάρχει τίποτα να δω.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nΚαι γιατί να εμπιστευτώ τη ζωή μου\\nσε κάτι που δεν υπάρχει;\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nΜπορείς να μου βρεις ένα λόγο;\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nΑπάντησε μου!\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nΠρογκ...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nΈχεις πρόβλημα δικέ μου!\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nΜείνε μακριά μου.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nΌχι! Εμο! Είναι παγίδα!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nΕίναι παγίδα.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nΣτα αριστερά μας βλέπουμε\\nτους κρεμαστούς κήπους της Βαβυλώνας!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nΠως σου φαίνεται αυτό για παγίδα;\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nΌχι Εμο.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nΣτα δεξιά μας βλέπουμε...\\n...μάντεψε...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...τον κολοσσό της Ρόδου!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nΌχι!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nΤον κολοσσό της Ρόδου.\\nΚαι είναι εδώ μόνο για σένα Προγκ.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nΕκεί είναι...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nΠίστεψε με, Έμο...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...εκεί είναι.',\n", + " 'bytes': 5725,\n", + " 'sha1': '7bdqwbe2d2p3upnwzl7md19do57y3hu',\n", + " 'parent_id': 54662653,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356740,\n", + " 'timestamp': '2021-11-09T10:02:06Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279321,\n", + " 'title': 'Elephants Dream.ogv.hu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.hu.srt]] to [[TimedText:Elephants Dream.ogv.hu.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nBalra láthatjuk...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nJobbra láthatjuk a...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...a fejcsomózókat.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nMinden rendben.\\nTökéletesen rendben.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nVigyázz!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nMegsebesültél?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nNem hiszem... \\nte?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nRendben vagyok.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nKelj fel, Emo.\\nNem biztonságos itt.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nInduljunk.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nMi jön most?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nMajd meglátod!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nErre.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nKövess!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nSiess, Emo!\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nEmo, te nem figyelsz!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nCsak fel akarom venni ...\\n...a telefont.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, figyelj,\\nvagyis hallgass meg.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nMeg kell tanulnod meghallani.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nEz nem egy játék.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nTe, mi meg is halhatunk idekint.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nHallgasd,\\na gép hangját.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nHallgasd a légzésed.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nTe soha nem unod ezt meg?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nUnni?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nEmo a gép olyan, mint az óramű\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nEgy rossz mozdulat...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...és péppé aprít!\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nDe nem ...-\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nPéppé, Emo!\\nEz az amit akarsz, pép?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nMi a célod az életben??\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nPép.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, csukd be a szemed.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nMiért??\\n- Most!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nRendben.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nMit látsz a bal oldaladon Emo?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nSemmit.\\n- Tényleg?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nEgyáltalán semmit\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nÉs a jobbodon,\\nmit látsz a jobb oldaladon Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nUgyanazt Proog, tökéletesen ugyanazt...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nSemmit!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nHallgasd Proog! Hallod ezt?\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nElmehetünk ide?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nOda? \\nNem biztonságos.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nDe...\\n- Bízz bennem, nem az.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nDe talán én...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNem.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNEM!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nBármilyen más kérdés Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNem.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, Miért...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...miért nem látod\\n a szépségét\\tennek a helynek?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nA mód ahogy működik.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nMennyire tökéletes.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNem, Proog,\\nNem látom.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nNem látom, mert nincs ott semmi.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nMiért bíznám az életemet\\nvalamire, ami nincs is ott?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nWell can you tell me that?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nVálaszolj.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nTe beteg vagy, ember.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nTartsd magad távol tőlem.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nNe!! Emo! Ez egy csapda!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nCsapda.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nA bal oldaladon láthatod\\nSzemirámisz Függőkertjét!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nMilyen ez egy csapdának?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNe Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nA jobb oldaladon láthatod...\\n...tudod mit...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...a Rodoszi Kolosszust!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNe!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nA Rodoszi Kolosszust\\nés csak neked van itt Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nOtt van...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nÉn mondom neked,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...ott van.',\n", + " 'bytes': 4334,\n", + " 'sha1': 'oueskt4akr1wziam9xw1ust48obkn9z',\n", + " 'parent_id': 54662728,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356723,\n", + " 'timestamp': '2021-11-09T10:01:49Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279339,\n", + " 'title': 'Elephants Dream.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.it.srt]] to [[TimedText:Elephants Dream.ogv.it.srt]]: rename of the original file',\n", + " 'text': \"1\\n00:00:15,042 --> 00:00:18,042\\nA sinistra possiamo vedere...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nA destra possiamo vedere gli...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...gli squarcia-teste.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nTutto è sicuro.\\nPerfettamente sicuro.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nStai attento!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nSei ferito?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nNon credo...\\ntu?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nSto bene.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nAlzati.\\nEmo, non è sicuro qui.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nAndiamo.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nEd ora?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nLo vedrai.\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nDa questa parte.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nSeguimi!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nSbrigati Emo.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nNon stai attento!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nVoglio solo rispondere a...\\n...al telefono.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, guarda,\\nCioè ascolta.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nDevi imparare ad ascoltare.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nQuesto non è un gioco.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nTu, noi,\\npotremmo anche morire qua fuori.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nAscolta,\\ni suoni della macchina.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nAscolta il tuo respiro.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nNon ti stanchi mai di questo?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nStancarmi?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nLa macchina è come un meccanismo.\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nSbagli posto e...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...e sei ridotto in poltiglia.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nMa non è vero -\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nPoltiglia, Emo!\\nÈ quello che vuoi, poltiglia?\\n\\n32\\n00:04:47,083 --> 00:04:50,000\\nÈ questo il tuo scopo nella vita?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nPoltiglia.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, chiudi gli occhi.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nperché?\\n- Ora!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nBene.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nCosa vedi alla tua sinistra Emo?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nNulla.\\n- Davvero?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nNo, Assolutamente nulla\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nE alla tua destra,\\ncosa vedi alla tua destra, Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nLo stesso Proog, proprio lo stesso...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nNulla!\\n- Bene.\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nSenti Proog! Lo senti questo!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nPossiamo andarci?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nLì? \\nNon è sicuro.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nMa...\\n- Credimi, non lo è.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nAllora magari potrei...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNo.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNO!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nHai altre domande Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNo.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, Perché...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...perché non riesci a vedere\\nla bellezza di questo posto?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nIl modo in cui funziona.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nQuanto sia perfetto.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNo, Proog, Non lo vedo.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nNon lo vedo perché là non c'è niente.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nE perché dovrei affidare la mia\\nvita a qualcosa che non c'è?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nAllora puoi spiegarmelo?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nRispondimi.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nTu sei malato, vecchio mio.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nStai lontano da me.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nNo! Emo! È una trappola!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nÈ una trappola eh.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nAlla tua sinistra puoi vedere\\ni giardini pensili di Babilonia!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nCome ti sembra questa trappola?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNo, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nAlla tua destra puoi vedere...\\n...ma pensa...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...Il colosso di Rodi!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNo!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nIl colosso di Rodi\\ned è qui solo per te Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nÈ lì...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nTe lo stavo dicendo,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...È lì.\",\n", + " 'bytes': 4428,\n", + " 'sha1': '434wbjwu3arpvpz27ia61w37qpv0kz4',\n", + " 'parent_id': 54662773,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356735,\n", + " 'timestamp': '2021-11-09T10:01:58Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279351,\n", + " 'title': 'Elephants Dream.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.ja.srt]] to [[TimedText:Elephants Dream.ogv.ja.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\n左に見えるのは…\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\n右に見えるのは…\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n…首刈り機\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nすべて安全\\n完璧に安全だ\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nイーモ?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\n危ない!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nケガはないか?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nええ、多分…\\nあなたは?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nわしは平気だ\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\n起きてくれイーモ\\nここは危ない\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\n行こう\\n\\n12\\n00:01:03,750 --> 00:01:04,917\\nどこに?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nすぐにわかるさ!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nイーモ、こっちだ\\n\\n15\\n00:01:34,958 --> 00:01:36,958\\nついて来るんだ!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nイーモ、早く!\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nむやみにさわるな!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\n僕はただ、電話に\\n…出ようと\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nイーモ、見るんだ…\\nいや、聞いてくれ\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\n君は「聞き方」を知る必要がある\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nこれは遊びじゃない\\n\\n22\\n00:03:06,167 --> 00:03:10,417\\n我々はここでは\\nたやすく死ぬ\\n\\n23\\n00:03:11,208 --> 00:03:14,125\\n機械の声を聞くんだ\\n\\n24\\n00:03:18,333 --> 00:03:22,417\\n君の息づかいを聞くんだ\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nそんなことして疲れない?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\n疲れる?!\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nこの機械は非常に正確で\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\n一つ間違えば…\\n\\n29\\n00:04:37,833 --> 00:04:40,792\\n…地面に落ちてバラバラだ\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nえ、でも―\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nバラバラだぞ、イーモ!\\nそれでいいのか?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nバラバラで死ぬんだぞ?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nバラバラだ!\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nイーモ、目を閉じるんだ\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nなぜ?\\n―早く!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nそれでいい\\n\\n37\\n00:05:59,542 --> 00:06:03,792\\n左に見えるものは何だ、イーモ?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nえ…何も\\n―本当か?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\n全く何も\\n\\n40\\n00:06:08,042 --> 00:06:12,833\\nでは右は\\n何か見えるか、イーモ?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\n同じだよプルーグ、全く同じ…\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\n何もない!\\n\\n43\\n00:06:40,625 --> 00:06:43,208\\nプルーグ!何か聞こえない?\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nあそこに行かないか?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nあそこ?\\n…安全じゃない\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nでも…\\n―本当に危ないぞ\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\n大丈夫だよ…\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nだめだ\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nだめだ!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nまだ続ける気か、イーモ?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nいいえ…\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nイーモ?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nイーモ、なぜ…\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nイーモ…\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n…なぜここの美しさが\\n見えない?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\n仕組みがこんなに…\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nこんなに完全なのに\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nもういいよ!プルーグ!\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nそこには何もないんだから\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nなぜ命を「ない」物に\\nゆだねなきゃ?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\n教えてくれないか?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nさあ!\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nプルーグ…\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nあなたは病気なんだ\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\n僕から離れてくれ\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nいかん!イーモ!ワナだ!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nワナだ? ふーん\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\n左に何が見える?\\nバビロンの空中庭園!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nこれがワナとでも?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nだめだ、イーモ\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\n右にあるのは…\\n…すごい!…\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n…ロードス島の巨像だ!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nやめろ!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nこの巨像はあなたの物\\nプルーグ、あなたのだよ\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nいってるじゃないか…\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nそこにあるって、イーモ…\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n…あるって',\n", + " 'bytes': 4828,\n", + " 'sha1': 'q539ebv7zmmu3i9m9sqv7shjvta3xn6',\n", + " 'parent_id': 54662807,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357497,\n", + " 'timestamp': '2021-11-09T10:09:18Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279368,\n", + " 'title': 'Elephants Dream.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.pl.srt]] to [[TimedText:Elephants Dream.ogv.pl.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nPo lewej możemy...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nPo lewej możemy zobaczyć...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...użynacze głów.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nTu jest bezpiecznie.\\ncałkiem bezpiecznie.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nUważaj!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nJesteś ranny?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nRaczej nie...\\na ty?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nW porządku.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nWstawaj.\\nEmo, tutaj nie jest bezpiecznie.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nIdziemy.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nCo dalej?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nPrzekonasz się!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nTędy.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nZa mną!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nSzybciej Emo.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nNie uważasz!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nChciałem tylko odebrać te...\\n...telefon.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, spójrz,\\nznaczy posłuchaj.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nMusisz nauczyć się słuchać.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nTo nie jest gra.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nMożesz, znaczy możemy tu zginąć.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nWsłuchaj się,\\nwsłuchaj się w głosy maszyny.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nWsłuchaj się w swój oddech.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nNigdy nie masz dość?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nDość?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nTa maszyna jest jak... jak zegarek\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nLecz jeden nieostrożny ruch i...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...i po tobie, jesteś trupem.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nAle czy nie -\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nTrup, Emo!\\nCzy tym chcesz się stać? Trupem?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nTo twój cel w życiu?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nTrup.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, zamknij oczy.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nCzemu?\\n- Natychmiast!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nDobrze.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nEmo, co widzisz po lewej?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nNic.\\n- Na pewno?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nNic, zupełnie nic.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nA co po prawej,\\nco widzisz po prawej Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nTo samo Proog, dokładnie to samo...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nNic!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nProog, posłuchaj! Słyszysz to!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nMożemy tu wejść?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nTam? \\nTam jest niebezpiecznie.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nAle...\\n- Zaufaj mi, nie jest.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nMoże mógłbym...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNie.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNIE!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nJeszcze jakieś pytania Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNie.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nDlaczego Emo...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...dlaczego nie widzisz\\npiękna tego miejsca?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nTego jak działa.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nJakie jest idealne.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNie, Proog, nie widzę.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nNie widzę tego, bo tu nic nie ma.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nI czemu miałbym powierzyć moje\\nżycie czemuś, czego tutaj nie ma?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nMożesz mi to powiedzieć?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nOdpowiedz.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nJesteś chory, człowieku.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nTrzymaj się ode mnie z daleka.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nNie! Emo! To pułapka!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nTo pułapka\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nPo lewej możesz zobaczyć\\nwiszące ogrody Babilonu!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nCzy to też miałoby być pułapką?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNie, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nPo prawej możesz zobaczyć...\\n...zgadnij...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...kolos rodyjski!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNie!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nKolos rodyjski\\ni jest tu specjalnie dla ciebie Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nOn jest tu...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nMówię ci,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...on jest.',\n", + " 'bytes': 4396,\n", + " 'sha1': 'r08rgp8va28ei49ucimw5fhob544gxz',\n", + " 'parent_id': 54662860,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357431,\n", + " 'timestamp': '2021-11-09T10:08:48Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279385,\n", + " 'title': 'Elephants Dream.ogv.ro.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.ro.srt]] to [[TimedText:Elephants Dream.ogv.ro.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nÎn stânga se văd...\\nSe văd...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nÎn dreapta se văd...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...forfecarii.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nAici suntem în siguranță.\\nÎn siguranță deplină.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nAi grijă!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nEști rănit?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nNu cred...\\ntu?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nSunt în regulă.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nRidică-te.\\nEmo, aici nu suntem în siguranță...\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nHaide\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nȘi acum?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nVei vedea!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nPe aici!\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nUrmează-mă!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nGrăbește-te, Emo.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nEmo, nu ești atent!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nVoiam numai să răspund la...\\n...la telefon.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, uite...\\nVreau să zic, ascultă.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nTrebuie să-nveți să asculți.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nAici nu e de joacă.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nAici poți muri... putem muri foarte ușor.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nAscultă...\\nAscultă sunetele aparatului.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nAscultă-ți respirația.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nNu te saturi să tot faci asta?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nSă mă satur?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nMașinăria asta e precisă ca un ceas\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nO mișcare greșită și...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\nȘi te face pilaf.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nDar nu e...?\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nPilaf, Emo!\\nAsta vrei s-ajungi? Pilaf?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nSpune, Emo, asta vrei de la viață?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nPilaf.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, închide ochii.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nDe ce?\\n- Acum!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nBun.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nCe vezi în stânga, Emo? Hai, spune.\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nNimic.\\n- Serios?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nNu, chiar nimica.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nAșa... și în dreapta?\\nIa zi, ce vezi în dreapta, Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nHmm... la fel, Proog, exact la fel.\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nAdică nimica!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nAscultă, Proog! Ai auzit?\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nPutem merge acolo?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nAcolo?\\nE periculos, Emo.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nDar...\\n- Crede-mă, e periculos.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nPăi, aș putea...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNu.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNU!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nMai ai alte întrebări, Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNu.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, de ce...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...de ce nu vrei să vezi frumusețea acestui loc?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nModul în care funcționează.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nCât de perfect e totul.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNu, Proog. Nu văd lucrurile astea!\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nNu le văd pentru că n-am ce să văd!\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nȘi de ce să-mi încredințez viața\\nunui lucru care nu există?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nPoți să-mi spui și mie?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nIa zi, poți?\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nEști nebun, omule!\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nNu te apropia de mine.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nEmo, nu te duce! E o capcană!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nDa, da... e-o capcană.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nÎn stânga se pot vedea\\nGrădinile suspendate din Babilon!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nCe mai capcană!\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNu, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nÎn dreapta se poate vedea...\\n...Ca să vezi...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...Colosul din Rodos!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNu!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nBa da, e Colosul din Rodos, Proog\\nȘi e aici doar pentru tine.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nAcolo chiar există ceva...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nFii atent ce-ți spun, Emo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...chiar există ceva.',\n", + " 'bytes': 4540,\n", + " 'sha1': 'rky64p7qu7wffnxcenughdsxh1ysvle',\n", + " 'parent_id': 195484262,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357540,\n", + " 'timestamp': '2021-11-09T10:09:42Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279395,\n", + " 'title': 'Elephants Dream.ogv.sk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.sk.srt]] to [[TimedText:Elephants Dream.ogv.sk.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nVѕavo, vѕavo vidнme ...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nVpravo vidнme...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...trhaиov hlбv.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nVљetko je bezpeиnй.\\ndokonale bezpeиnй.\\n\\n5\\n00:00:26,333 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nPozor!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nSi zranenэ?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nSom v poriadku...\\na ty?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nSom Ok.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nVstбvaj.\\nEmo, nie je to tu bezpeиnй.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nPoпme.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nИo je пalej?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nHneп uvidнљ!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nTadiaѕto.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nNasleduj ma!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nRэchlo, Emo.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nNedбvaљ pozor!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nChcel som len dvihnъќ...\\n...telefуn.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, pozri,\\npoиъvaj.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nMusнљ sa nauиiќ poиъvaќ.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nToto nie je nejakб hra.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nTy, my, tu mфћme ѕahko zomrieќ.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nPoиъvaj,\\npoиъvaj zvuky toho stroja.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nPoиъvaj svoj dych.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nNie si z toho niekedy uћ unavenэ?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nUnavenэ?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nEmo, stroj funguje ako hodinky.\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nJeden krok mimo ...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...a si rozdrtenэ na kaљu.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nAle nie je to -\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nKaљu, Emo!\\nJe to to иo chceљ? Kaљa?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nEmo, tvoj cieѕ ћivota?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nKaљa.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, zavri oиi.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nPreиo?\\n- Uћ!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nDobre.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nИo vidнљ po svojej ѕavici, Emo?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nNiи.\\n- Naozaj?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nVфbec niи.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nA po tvojej pravici,\\nиo vidнљ po svojej pravici, Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nTo istй Proog, presne to istй...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nNiи!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nPoиъvaj Proog! Poиujeљ to!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nIdeme tam?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nTam? \\nTo nie je bezpeиnй.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nAle...\\n- Dфveruj mi, nie je.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nMoћno by som mohol...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNie.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNIE!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nNejakй пalљie otбzky, Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNie.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, preиo...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...preиo nevidнљ\\nakй je to tu krбsne?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nSpфsob akэm to funguje.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nAkй dokonalй to je.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNie, Proog, nevidнm.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nNevidнm, pretoћe tu niи nie je.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nA preиo by som mal zveriќ mфj\\nћivot nieиomu иo nie je?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nMфћeљ mi to povedaќ?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nOdpovedz.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nTy si chorн.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nDrћ sa odomтa пalej.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nNie! Emo! Je to pasca!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nJe to pasca.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nPo svojej ѕavici vidнљ\\nBabylonskй visutй zбhrady!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nAkб je to pasca?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNie, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nPo svojej pravici vidнљ...\\n...hбdaj иo...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...Rodskэ kolos!\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNie!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nRodskэ kolos\\na je tu len pre teba Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nJe to tam...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nHovoril som ti,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...je to.',\n", + " 'bytes': 4311,\n", + " 'sha1': 'af52xxr285d8xb4vfq8ud1afmalirs8',\n", + " 'parent_id': 54662947,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357527,\n", + " 'timestamp': '2021-11-09T10:09:30Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279406,\n", + " 'title': 'Elephants Dream.ogv.sl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.sl.srt]] to [[TimedText:Elephants Dream.ogv.sl.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nNa levi lahko vidimo...\\n\\n2\\n00:00:18,750 --> 00:00:20,333\\nNa desni lahko vidimo...\\n\\n3\\n00:00:20,417 --> 00:00:21,917\\n...glavo-reznice.\\n\\n4\\n00:00:22,000 --> 00:00:24,625\\nVse je varno.\\nÈisto varno.\\n\\n5\\n00:00:25,000 --> 00:00:27,333\\nEmo?\\n\\n6\\n00:00:28,875 --> 00:00:30,250\\nPazi!\\n\\n7\\n00:00:47,125 --> 00:00:48,250\\nAli si po\\x9akodovan?\\n\\n8\\n00:00:51,917 --> 00:00:53,917\\nMislim da ne...\\nti?\\n\\n9\\n00:00:55,625 --> 00:00:57,125\\nJaz sem Ok.\\n\\n10\\n00:00:57,583 --> 00:01:01,667\\nVstani.\\nEmo, tukaj ni varno.\\n\\n11\\n00:01:02,208 --> 00:01:03,667\\nPojdiva.\\n\\n12\\n00:01:03,750 --> 00:01:05,750\\nKaj pa sedaj?\\n\\n13\\n00:01:05,875 --> 00:01:07,875\\nBo\\x9a videl!\\n\\n14\\n00:01:16,167 --> 00:01:18,375\\nEmo.\\nSem.\\n\\n15\\n00:01:34,958 --> 00:01:35,792\\nSledi mi!\\n\\n16\\n00:02:11,583 --> 00:02:12,792\\nHitreje Emo.\\n\\n17\\n00:02:48,375 --> 00:02:50,083\\nNisi dovolj pozoren!\\n\\n18\\n00:02:50,750 --> 00:02:54,500\\nSamo oglasiti sem se hotel...\\n...na telefon.\\n\\n19\\n00:02:55,000 --> 00:02:58,208\\nEmo, poglej,\\nhocem reèi poslu\\x9aaj.\\n\\n20\\n00:02:59,750 --> 00:03:02,292\\nNauèiti se mora\\x9a poslu\\x9aati.\\n\\n21\\n00:03:03,625 --> 00:03:05,125\\nTo ni samo igra.\\n\\n22\\n00:03:06,167 --> 00:03:08,750\\nTi, midva, lahko umreva tukaj.\\n\\n23\\n00:03:10,208 --> 00:03:14,125\\nPoslu\\x9aaj.\\nPrisluhni zvoku stroja.\\n\\n24\\n00:03:18,333 --> 00:03:20,417\\nPrisluhni svojemu dihanju.\\n\\n25\\n00:04:27,208 --> 00:04:29,250\\nAli se nikoli ne navelièa\\x9a tega?\\n\\n26\\n00:04:29,583 --> 00:04:31,083\\nNavelièam?!?\\n\\n27\\n00:04:31,750 --> 00:04:34,667\\nStroj je kot urin mehanizem.\\n\\n28\\n00:04:35,500 --> 00:04:37,708\\nEn napaèen korak...\\n\\n29\\n00:04:37,833 --> 00:04:39,792\\n...in te zmelje v prah.\\n\\n30\\n00:04:41,042 --> 00:04:42,375\\nAmpak ali ni -\\n\\n31\\n00:04:42,417 --> 00:04:46,542\\nPrah, Emo!\\nAli je to, kar si \\x9eeli\\x9a, prah?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nTvoj \\x9eivljenski cilj?\\n\\n33\\n00:04:50,583 --> 00:04:52,250\\nPrah.\\n\\n34\\n00:05:41,833 --> 00:05:43,458\\nEmo, zapri oèi.\\n\\n35\\n00:05:44,917 --> 00:05:46,583\\nZakaj?\\n- Zdaj!\\n\\n36\\n00:05:53,750 --> 00:05:56,042\\nDobro.\\n\\n37\\n00:05:59,542 --> 00:06:02,792\\nKaj vidi\\x9a na levi Emo?\\n\\n38\\n00:06:04,417 --> 00:06:06,000\\nNiè.\\n- Res?\\n\\n39\\n00:06:06,333 --> 00:06:07,917\\nÈisto niè.\\n\\n40\\n00:06:08,042 --> 00:06:12,417\\nIn na desni,\\nkaj vidi\\x9a na desni Emo?\\n\\n41\\n00:06:13,875 --> 00:06:16,917\\nIsto Proog, spet isto...\\n\\n42\\n00:06:17,083 --> 00:06:18,583\\nNiè!\\n\\n43\\n00:06:40,625 --> 00:06:42,958\\nPoslu\\x9aaj Proog! Ali sli\\x9ai\\x9a!\\n\\n44\\n00:06:43,625 --> 00:06:45,042\\nAli greva sem?\\n\\n45\\n00:06:45,208 --> 00:06:48,042\\nTja?\\nNi varno.\\n\\n46\\n00:06:49,917 --> 00:06:52,500\\nAmpak...\\n- Zaupaj mi, ni varno.\\n\\n47\\n00:06:53,292 --> 00:06:54,792\\nMogoèe bi lahko...\\n\\n48\\n00:06:54,833 --> 00:06:56,333\\nNe.\\n\\n49\\n00:06:57,667 --> 00:07:00,167\\nNE!\\n\\n50\\n00:07:00,875 --> 00:07:03,750\\nBi rad \\x9ae kaj dodal Emo?\\n\\n51\\n00:07:04,250 --> 00:07:05,917\\nNe.\\n\\n52\\n00:07:09,458 --> 00:07:10,833\\nEmo?\\n\\n53\\n00:07:11,875 --> 00:07:13,542\\nEmo, Zakaj...\\n\\n54\\n00:07:13,583 --> 00:07:14,458\\nEmo...\\n\\n55\\n00:07:14,500 --> 00:07:18,500\\n...zakaj ne vidi\\x9a\\nlepote tega prostora?\\n\\n56\\n00:07:18,833 --> 00:07:20,750\\nKako deluje.\\n\\n57\\n00:07:20,875 --> 00:07:24,000\\nKako perfektno je.\\n\\n58\\n00:07:24,083 --> 00:07:27,417\\nNe, Proog, ne vidim.\\n\\n59\\n00:07:27,542 --> 00:07:30,333\\nNe vidim, ker ni niè tam.\\n\\n60\\n00:07:31,500 --> 00:07:35,333\\nIn zakaj bi zaupal svoje\\n\\x9eivljenje neèemu, èesar sploh ni?\\n\\n61\\n00:07:35,583 --> 00:07:37,125\\nAli mi lahko pove\\x9a?\\n\\n62\\n00:07:37,500 --> 00:07:39,167\\nOdgovori mi.\\n\\n63\\n00:07:43,208 --> 00:07:44,583\\nProog...\\n\\n64\\n00:07:45,500 --> 00:07:47,333\\nTi si nor.\\n\\n65\\n00:07:47,375 --> 00:07:49,208\\nPojdi stran od mene.\\n\\n66\\n00:07:52,583 --> 00:07:55,083\\nNe! Emo! To je past!\\n\\n67\\n00:07:55,833 --> 00:07:57,167\\nTo je past.\\n\\n68\\n00:07:57,208 --> 00:08:01,750\\nNa levi lahko vidi\\x9a\\nbabilonske viseèe vrtove!\\n\\n69\\n00:08:02,250 --> 00:08:04,292\\nKak\\x9ana past je to?\\n\\n70\\n00:08:05,458 --> 00:08:07,125\\nNe, Emo.\\n\\n71\\n00:08:09,417 --> 00:08:12,792\\nNa desni lahko vidi\\x9a...\\n...poglej to...\\n\\n72\\n00:08:13,000 --> 00:08:14,750\\n...Kolos z Rodosa.\\n\\n73\\n00:08:15,833 --> 00:08:16,708\\nNe!\\n\\n74\\n00:08:16,750 --> 00:08:22,167\\nKolos z Rodosa. In je\\ntukaj samo zate Proog.\\n\\n75\\n00:08:51,333 --> 00:08:53,167\\nTukaj je...\\n\\n76\\n00:08:53,208 --> 00:08:55,500\\nPravim ti,\\nEmo...\\n\\n77\\n00:08:57,333 --> 00:09:00,000\\n...res je.',\n", + " 'bytes': 4169,\n", + " 'sha1': 'pzcwvbhluip630kiimdys9rnabxv8h7',\n", + " 'parent_id': 54662971,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606357386,\n", + " 'timestamp': '2021-11-09T10:08:23Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279438,\n", + " 'title': 'Elephants Dream.ogv.no.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.no.srt]] to [[TimedText:Elephants Dream.ogv.no.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,000 --> 00:00:18,000\\nPå, på venstre side har vi...\\n\\n2\\n00:00:18,167 --> 00:00:20,083\\nPå høyre side har vi...\\n\\n3\\n00:00:20,083 --> 00:00:22,000\\nhodeglefserne.\\n\\n4\\n00:00:22,000 --> 00:00:24,167\\nAlt er helt trygt,\\nhelt ufarlig.\\n\\n5\\n00:00:26,083 --> 00:00:27,083\\nEmo.\\n\\n6\\n00:00:28,208 --> 00:00:30,042\\nSe opp!\\n\\n7\\n00:00:47,042 --> 00:00:48,542\\nEr du skadet?\\n\\n8\\n00:00:52,000 --> 00:00:54,000\\nJeg tror ikke det.\\nDu?\\n\\n9\\n00:00:55,167 --> 00:00:57,042\\nJeg er Ok.\\n\\n10\\n00:00:57,125 --> 00:01:01,167\\nKom deg opp.\\nEmo, det er ikke trygt her.\\n\\n11\\n00:01:02,042 --> 00:01:03,167\\nLa oss stikke.\\n\\n12\\n00:01:03,167 --> 00:01:05,167\\nHva nå?\\n\\n13\\n00:01:05,208 --> 00:01:07,208\\nDu får se!\\n\\n14\\n00:01:16,042 --> 00:01:18,083\\nEmo.\\nDenne veien.\\n\\n15\\n00:01:34,250 --> 00:01:35,542\\nFølg meg!\\n\\n16\\n00:02:11,125 --> 00:02:12,542\\nSkynd deg Emo!\\n\\n17\\n00:02:48,083 --> 00:02:50,000\\nDu følger ikke med!\\n\\n18\\n00:02:50,167 --> 00:02:54,125\\nJeg har bare lyst til å ta...\\n...telefonen.\\n\\n19\\n00:02:55,000 --> 00:02:58,042\\nEmo, se her,\\njeg mener hør her.\\n\\n20\\n00:02:59,167 --> 00:03:02,083\\nDu må lære deg å høre etter.\\n\\n21\\n00:03:03,167 --> 00:03:05,042\\nDette er ikke en lek.\\n\\n22\\n00:03:05,083 --> 00:03:09,417\\nDu, vi, kan lett dø her ute.\\n\\n23\\n00:03:10,042 --> 00:03:14,042\\nLytt,\\ntil lyden fra maskinen.\\n\\n24\\n00:03:18,083 --> 00:03:20,083\\nLytt til din egen pust.\\n\\n25\\n00:04:27,042 --> 00:04:29,042\\nBlir du aldri lei dette?\\n\\n26\\n00:04:29,125 --> 00:04:31,000\\nLei?!?\\n\\n27\\n00:04:31,167 --> 00:04:34,583\\nEmo, maskinen er som et urverk.\\n\\n28\\n00:04:35,125 --> 00:04:37,167\\nEt feiltrinn...\\n\\n29\\n00:04:37,208 --> 00:04:39,208\\nog du blir most til hakkemat.\\n\\n30\\n00:04:41,000 --> 00:04:42,083\\nMen er det ikke -\\n\\n31\\n00:04:42,083 --> 00:04:46,125\\nHakkemat, Emo!\\nEr det det du vil? Hakkemat?\\n\\n32\\n00:04:47,083 --> 00:04:49,083\\nEmo, ditt mål i livet?\\n\\n33\\n00:04:50,125 --> 00:04:52,042\\nHakkemat?\\n\\n34\\n00:05:41,208 --> 00:05:43,125\\nEmo, lukk øynene dine.\\n\\n35\\n00:05:44,208 --> 00:05:46,125\\nHvorfor det?\\n- Nå!\\n\\n36\\n00:05:53,167 --> 00:05:54,792\\nBra.\\n\\n37\\n00:05:59,125 --> 00:06:02,208\\nHva ser du på din venstre side Emo?\\n\\n38\\n00:06:04,083 --> 00:06:06,000\\nIngenting.\\n- Virkelig?\\n\\n39\\n00:06:06,083 --> 00:06:07,208\\nIngeting i det hele tatt.\\n\\n40\\n00:06:08,000 --> 00:06:12,083\\nOg til høyre,\\nhva ser du på din høyre side Emo?\\n\\n41\\n00:06:13,208 --> 00:06:16,208\\nDet samme Proog, akkurat det samme...\\n\\n42\\n00:06:17,000 --> 00:06:19,208\\nIngenting!\\n- Flott.\\n\\n43\\n00:06:40,167 --> 00:06:42,833\\nHør Proog! Hører du det!\\n\\n44\\n00:06:43,167 --> 00:06:45,000\\nKan vi gå hit?\\n\\n45\\n00:06:45,042 --> 00:06:48,000\\nDit?\\nDet er ikke trygt.\\n\\n46\\n00:06:49,208 --> 00:06:52,125\\nMen...\\n- Tro meg, det er ikke trygt.\\n\\n47\\n00:06:53,083 --> 00:06:54,208\\nKanskje jeg kunne...\\n\\n48\\n00:06:54,208 --> 00:06:56,083\\nNei.\\n\\n49\\n00:06:57,167 --> 00:07:00,042\\nNEI!\\n\\n50\\n00:07:00,208 --> 00:07:03,167\\nNoen flere spørsmål Emo?\\n\\n51\\n00:07:04,042 --> 00:07:05,208\\nNei.\\n\\n52\\n00:07:09,125 --> 00:07:10,208\\nEmo?\\n\\n53\\n00:07:11,208 --> 00:07:13,125\\nEmo, hvorfor...\\n\\n54\\n00:07:13,125 --> 00:07:14,125\\nEmo...\\n\\n55\\n00:07:14,125 --> 00:07:18,125\\n...hvorfor ser du ikke\\nskjønnheten i det?\\n\\n56\\n00:07:18,208 --> 00:07:20,167\\nHvordan alt fungerer.\\n\\n57\\n00:07:20,208 --> 00:07:24,000\\nHvor perfekt det er.\\n\\n58\\n00:07:24,000 --> 00:07:27,083\\nNei Proog, jeg ser ikke det.\\n\\n59\\n00:07:27,125 --> 00:07:30,083\\nJeg ser ikke det\\nfordi det er ingenting der.\\n\\n60\\n00:07:31,125 --> 00:07:35,083\\nOg hvorfor skal jeg betro livet\\nmitt til noe som ikke er der?\\n\\n61\\n00:07:35,125 --> 00:07:37,042\\nVel, kan du fortelle meg det?\\n\\n62\\n00:07:37,125 --> 00:07:39,042\\nSvar meg.\\n\\n63\\n00:07:43,042 --> 00:07:44,125\\nProog...\\n\\n64\\n00:07:45,125 --> 00:07:47,083\\ndu er gal, mann.\\n\\n65\\n00:07:47,083 --> 00:07:49,042\\nHold deg unna meg.\\n\\n66\\n00:07:52,125 --> 00:07:55,000\\nNei! Emo! Det er en felle!\\n\\n67\\n00:07:55,208 --> 00:07:57,042\\nDet er en felle.\\n\\n68\\n00:07:57,042 --> 00:08:01,167\\nPå din venstre side kan du se\\nBabylons hengende hager!\\n\\n69\\n00:08:02,042 --> 00:08:04,083\\nHva synes du om den fella?\\n\\n70\\n00:08:05,125 --> 00:08:07,042\\nNei, Emo.\\n\\n71\\n00:08:09,083 --> 00:08:12,208\\nPå din høyre side kan du se...\\ngjett hva...\\n\\n72\\n00:08:13,000 --> 00:08:14,792\\nkolossen på Rhodos!\\n\\n73\\n00:08:15,208 --> 00:08:16,167\\nNei!\\n\\n74\\n00:08:16,167 --> 00:08:22,042\\nKolossen på Rhodos\\nog den er her bare for deg Proog.\\n\\n75\\n00:08:51,083 --> 00:08:53,042\\nDen er der...\\n\\n76\\n00:08:53,042 --> 00:08:56,167\\nHører du, Emo...\\n\\n77\\n00:08:57,083 --> 00:09:00,000\\n...den er der.',\n", + " 'bytes': 4395,\n", + " 'sha1': 'thcnwnd5cjc7yz3zmdg4nai4n2sieud',\n", + " 'parent_id': 54663053,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606356850,\n", + " 'timestamp': '2021-11-09T10:02:25Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15279496,\n", + " 'title': 'Elephants Dream.ogv.he.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Elephants Dream.ogg.he.srt]] to [[TimedText:Elephants Dream.ogv.he.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:15,042 --> 00:00:18,042\\nמשמאלנו אנו יכולים לראות...\\n\\n2\\n00:00:18,917 --> 00:00:20,417\\nומימיננו אפשר לראות את...\\n\\n3\\n00:00:20,542 --> 00:00:22,167\\n...את מפצחי הראשים.\\n\\n4\\n00:00:22,000 --> 00:00:24,792\\nהכול בטוח.\\n בטוח לגמרי.\\n\\n5\\n00:00:26,417 --> 00:00:27,417\\nאמו?\\n\\n6\\n00:00:29,083 --> 00:00:30,333\\nהזהר!\\n\\n7\\n00:00:47,167 --> 00:00:48,333\\nנפגעת?\\n\\n8\\n00:00:52,167 --> 00:00:54,167\\nלא נראה לי...\\nואתה?\\n\\n9\\n00:00:55,792 --> 00:00:57,167\\nאני בסדר.\\n\\n10\\n00:00:57,708 --> 00:01:01,833\\nקום.\\nאמו, זה לא בטוח כאן.\\n\\n11\\n00:01:02,250 --> 00:01:03,833\\nבוא נלך.\\n\\n12\\n00:01:03,917 --> 00:01:05,917\\nמה עכשיו?\\n\\n13\\n00:01:06,083 --> 00:01:08,083\\nאתה תראה!\\n\\n14\\n00:01:16,208 --> 00:01:18,458\\nאמו.\\nמכאן.\\n\\n15\\n00:01:35,208 --> 00:01:36,000\\nבוא אחרי!\\n\\n16\\n00:02:11,708 --> 00:02:13,000\\nמהר אמו.\\n\\n17\\n00:02:48,458 --> 00:02:50,083\\nאתה לא מקשיב!\\n\\n18\\n00:02:50,917 --> 00:02:54,625\\nאני רק רוצה לענות...\\n...לטלפון.\\n\\n19\\n00:02:55,000 --> 00:02:58,250\\nאמו,תראה\\nאני מתכוון תקשיב.\\n\\n20\\n00:02:59,917 --> 00:03:02,375\\nאתה חייב ללמוד להקשיב.\\n\\n21\\n00:03:03,792 --> 00:03:05,167\\nזה לא איזהשהו משחק\\n\\n22\\n00:03:06,208 --> 00:03:08,917\\nאתה, אני מתכוון אנחנו, יכולים למות פה בקלות.\\n\\n23\\n00:03:10,250 --> 00:03:14,167\\nתקשיב,\\nלקולות של המכונות.\\n\\n24\\n00:03:18,417 --> 00:03:20,542\\nתקשיב לנשימה שלך.\\n\\n25\\n00:04:27,250 --> 00:04:29,333\\nכל זה אף פעם לא נמאס אלייך?\\n\\n26\\n00:04:29,708 --> 00:04:31,083\\nנמאס?!?\\n\\n27\\n00:04:31,917 --> 00:04:34,833\\nהמכונה היא מערכת מדויקת.\\n\\n28\\n00:04:35,625 --> 00:04:37,875\\nתזוזה אחת שלא במקום...\\n\\n29\\n00:04:38,042 --> 00:04:40,000\\n...ואתה הופך לרסק\\n\\n30\\n00:04:41,042 --> 00:04:42,458\\nאבל זה לא-\\n\\n31\\n00:04:42,542 --> 00:04:46,667\\nרסק אמו!\\nהאם זה מה שאתה רוצה?\\n\\n32\\n00:04:48,083 --> 00:04:50,000\\nאמו? המטרה בחיים שלך?\\n\\n33\\n00:04:50,708 --> 00:04:52,333\\nרסק?!\\n\\n34\\n00:05:42,042 --> 00:05:43,583\\nאמו, סגור את עיינך.\\n\\n35\\n00:05:45,167 --> 00:05:46,708\\nלמה?\\nעכשיו!\\n\\n36\\n00:05:53,917 --> 00:05:56,042\\nיופי.\\n\\n37\\n00:05:59,667 --> 00:06:03,000\\nמה אתה רואה משמאלך אמו?\\n\\n38\\n00:06:04,542 --> 00:06:06,000\\nכלום.\\n-באמת?\\n\\n39\\n00:06:06,417 --> 00:06:08,167\\nלא כלום.\\n\\n40\\n00:06:08,042 --> 00:06:12,542\\nומימינך..\\nמה אתה רואה מימינך אמו?\\n\\n41\\n00:06:14,083 --> 00:06:17,167\\n,אותו דבר פרוג בדיוק אותו דבר...\\n\\n42\\n00:06:17,083 --> 00:06:18,708\\nכלום!\\n\\n43\\n00:06:40,792 --> 00:06:43,208\\nתקשיב פרוג? האם אתה שומע את זה?\\n\\n44\\n00:06:43,792 --> 00:06:45,042\\nהאם אנחנו יכולים ללכת לפה?\\n\\n45\\n00:06:45,250 --> 00:06:48,042\\nשם?\\nזה לא בטוח אמו.\\n\\n46\\n00:06:50,167 --> 00:06:52,625\\nאבל...\\n-סמוך עלי זה לא.\\n\\n47\\n00:06:53,375 --> 00:06:55,000\\nאבל אולי אני אוכל לל..\\n\\n48\\n00:06:55,042 --> 00:06:56,417\\nלא.\\n\\n49\\n00:06:57,833 --> 00:07:00,208\\nלא!\\n\\n50\\n00:07:01,083 --> 00:07:03,917\\nיש עוד שאלות אמו?\\n\\n51\\n00:07:04,333 --> 00:07:06,167\\nלא.\\n\\n52\\n00:07:09,583 --> 00:07:11,042\\nאמו?\\n\\n53\\n00:07:12,083 --> 00:07:13,667\\nאמו,למה...\\n\\n54\\n00:07:13,708 --> 00:07:14,583\\nאמו...\\n\\n55\\n00:07:14,625 --> 00:07:18,625\\n...למה אתה לא יכול לראות\\nאת היופי של המקום הזה\\n\\n56\\n00:07:19,042 --> 00:07:20,917\\nאיך שהוא עובד.\\n\\n57\\n00:07:21,083 --> 00:07:24,000\\nעד כמה שהוא מושלם.\\n\\n58\\n00:07:24,083 --> 00:07:27,542\\nלא\\n\\n59\\n00:07:27,667 --> 00:07:30,417\\nאני לא רואה כי אין שם שום דבר.\\n\\n60\\n00:07:31,625 --> 00:07:35,417\\nולמה שחיי יהיו נתונים לדבר שלא קיים?\\n\\n61\\n00:07:35,708 --> 00:07:37,167\\nאתה יכול לענות לי על זה?\\n\\n62\\n00:07:37,625 --> 00:07:39,208\\nענה לי.\\n\\n63\\n00:07:43,250 --> 00:07:44,708\\nפרוג...\\n\\n64\\n00:07:45,625 --> 00:07:47,417\\nאתה אדם חולה.\\n\\n65\\n00:07:47,458 --> 00:07:49,250\\nתתרחק ממני!\\n\\n66\\n00:07:52,708 --> 00:07:55,083\\nלא! אמו! זו מלכודת!\\n\\n67\\n00:07:56,042 --> 00:07:57,208\\nזו מלכודת\\n\\n68\\n00:07:57,250 --> 00:08:01,917\\nמשמאלך אתה יכול לראות את\\nהגינות התלויות של בבל.\\n\\n69\\n00:08:02,333 --> 00:08:04,375\\nאיך זה בשביל מלכודת?\\n\\n70\\n00:08:05,583 --> 00:08:07,167\\nלא, אמו.\\n\\n71\\n00:08:09,542 --> 00:08:13,000\\nומימינך אפשר לראות...\\nנחש מה?\\n\\n72\\n00:08:13,000 --> 00:08:14,917\\n...את פסלו העצום של רודוס\\n\\n73\\n00:08:16,042 --> 00:08:16,875\\nלא!\\n\\n74\\n00:08:16,917 --> 00:08:22,208\\nפסלו של רודוס.\\nוהוא פה במיוחד בשבילך פרוג.\\n\\n75\\n00:08:51,417 --> 00:08:53,208\\nזה שם...\\n\\n76\\n00:08:53,250 --> 00:08:55,625\\nאני אומר לך,\\nאמו...\\n\\n77\\n00:08:57,417 --> 00:09:00,000\\n...זה שם.\\n\\n78\\n00:09:00,000 --> 00:09:02,250\\nתורגם ע\"י שמואל שושתרי',\n", + " 'bytes': 5082,\n", + " 'sha1': '0terjyk7aill4g0zug48hruvlcs1h1x',\n", + " 'parent_id': 54663224,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606353474,\n", + " 'timestamp': '2021-11-09T09:43:50Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15368685,\n", + " 'title': 'Wiki loves monuments.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Wiki loves monuments.ogg.zh-hant.srt]] to [[TimedText:Wiki loves monuments.ogv.zh-hant.srt]]: rename of the original file',\n", + " 'text': '1\\n00:01:44,000 --> 00:01:47,000\\n維基人\\n\\n2\\n00:01:48,500 --> 00:01:51,500\\n分佈全球\\n\\n3\\n00:01:52,500 --> 00:01:54,000\\n愛古蹟\\n\\n4\\n00:01:56,000 --> 00:01:59,000\\n維基愛古蹟',\n", + " 'bytes': 179,\n", + " 'sha1': 'jnn1vd0bb64b5smjes8jdhkmousepkj',\n", + " 'parent_id': 54990178,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 342489611,\n", + " 'timestamp': '2019-03-12T18:46:14Z',\n", + " 'user': {'id': 3541768, 'text': 'XXBlackburnXx'},\n", + " 'page': {'id': 15368815,\n", + " 'title': 'Citing sources tutorial, part 1.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Undo revision 341301915 by [[Special:Contributions/149.62.204.14|149.62.204.14]] ([[User talk:149.62.204.14|talk]])',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,200\\nThis tutorial demonstrates the bare essentials of how to cite sources with footnotes on Wikipedia pages.\\n\\n2\\n00:00:06,200 --> 00:00:13,000\\nYou can try out the mechanics of creating footnotes in your own user sandbox page. \\n\\n3\\n00:00:13,000 --> 00:00:21,500\\nIf you don\\'t already have a sandbox, go to the page \\'\\'Help:Sandbox tutorial\\'\\' for instructions on starting one.\\n\\n4\\n00:00:21,500 --> 00:00:27,000\\nNow, let\\'s edit the sandbox. First we need to create a section for the footnotes. \\n\\n5\\n00:00:27,000 --> 00:00:35,800\\nCreate a section at the bottom of the page, by adding two equal signs, then the name of the section -- say, \\'\\'Notes\\'\\' -- then two more equal signs.\\n\\n6 \\n00:00:35,800 --> 00:00:44,800\\nNow we have a special bit of code beneath the section header -- a template -- to mark where the footnotes get displayed.\\n\\n7\\n00:00:44,800 --> 00:00:51,500\\nIt\\'s the word \\'\\'reflist\\'\\' inside two sets of curly brackets.\\n\\n8\\n00:00:51,500 --> 00:00:58,500\\nNow let\\'s add a citation. This page includes the claim that \"Being bold is important on Wikipedia\". \\n\\n9\\n00:00:58,500 --> 00:01:08,500\\nWe should back that up with a footnote saying the \"Be Bold\" guideline, which says that when you find a problem on Wikipedia, you should just be bold and fix it.\\n\\n10\\n00:01:08,500 --> 00:01:16,500\\nIn the most basic form, a footnote consists of the text of the footnote between opening and closing \\'\\'ref\\'\\' tags. \\n\\n11\\n00:01:16,500 --> 00:01:33,500\\nSo right after the sentence about being bold, we had a ref tag, then our citation -- Be bold guideline, Wikipedia, the free encyclopedia, retrieved on such and such date -- then a closing ref tag.\\n\\n12\\n00:01:33,500 --> 00:01:38,000\\nNow enter an edit summary and save the page, and we can see the result. \\n\\n13\\n00:01:38,000 --> 00:01:46,700\\nThe numbered superscript appears where we added the \\'\\'ref\\'\\' tags, and that links to the corresponding text of the citation in the notes section.\\n\\n15\\n00:01:46,700 --> 00:01:56,000\\nThe next tutorial demonstrates how to use the \\'\\'cite\\'\\' function in the editing toolbar, which is a way to automatically create well-formatted footnotes. \\n\\n16\\n00:01:56,000 --> 00:02:01,600\\nUntil then, be bold, and cite often!',\n", + " 'bytes': 2199,\n", + " 'sha1': '1cgrervs7ta33mpwxua49l96c1z6zg9',\n", + " 'parent_id': 341301915,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 172918969,\n", + " 'timestamp': '2015-09-22T16:10:06Z',\n", + " 'user': {'id': 996385, 'text': 'KOKUYO'},\n", + " 'page': {'id': 15368878,\n", + " 'title': 'Citing sources tutorial, part 1.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:00,000 --> 00:00:10,000 編輯指導:加入來源\\n\\n2 00:00:12,000 --> 00:00:21,999 首先,用一個沙盒頁。如果你沒有,前往Help:沙盒入門,並跟隨指示進行\\n\\n3 00:00:22,000 --> 00:00:27,800 現在,看看沙盒。首先,我們需要一個供腳註用的章節\\n\\n4 00:00:28,000 --> 00:00:36,700 在頁面底部開一個新章節,你可以加入兩個=號,以及章節的名字(腳註)\\n\\n5 00:00:36,750 --> 00:00:46,500 再加入兩個等號。現在,我們有一個章節頭部,之後加入一個模板,可以顯示腳註 \\n\\n6 00:00:47,000 --> 00:00:52,500 這個模板叫reflist。之後,在它的左右兩方加入<nowiki>{{reflist}}</nowiki>\\n\\n7 00:00:52,600 --> 00:01:08,500 現在我們有一個腳註,叫\"Being bold is important on Wikipedia\"(勇於編輯在維基百科是很重要的),並有指引說明它\\n\\n8 00:01:12,000 --> 00:01:21,300 一個腳註包括:腳註文字、開啟及關閉腳註標籤\\n\\n9 00:01:22,000 --> 00:01:30,100 之後,給一個ref標籤,以及我們的引用:\"Be bold guideline, Wikipedia - The free encyclopedia, retrieved October 16.\"\\n\\n10 00:01:30,100 --> 00:01:31,100 (勇於編輯頁面指引,維基百科-自由的百科全書,在10月16日查閱)\\n\\n11 00:01:31,900 --> 00:01:33,500 之後便是一個關閉ref標籤\\n\\n12 00:01:34,600 --> 00:01:42,300 現在,保存頁面,你便可以看到結果。數目字出現表示加入了ref標籤\\n\\n13 00:01:42,350 --> 00:01:47,400 並連結至頁面底部的引用區\\n\\n14 00:01:47,450 --> 00:01:52,500 下一個指南將教導你如何使用工具列上的引用功能\\n\\n15 00:01:52,501 --> 00:01:59,000 這個工具能夠在你提供資料後自動加入引用\\n\\n16 00:01:59,100 --> 00:02:01,600 這就是引用了。最後:勇於編輯頁面,時常引用',\n", + " 'bytes': 1811,\n", + " 'sha1': '1s8l8iyaragyr510eoqxpyvosp3tv1s',\n", + " 'parent_id': 172918821,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55017688,\n", + " 'timestamp': '2011-06-02T04:42:59Z',\n", + " 'user': {'id': 895952, 'text': 'Zaida Machado'},\n", + " 'page': {'id': 15375976,\n", + " 'title': 'Wikimedia Italia - WikiGuida 2 - Commons.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Preparando para iniciar tradução para português',\n", + " 'text': '1\\n00:00:11,086 --> 00:00:14,676\\nWikimedia Commons (chiamato anche semplicemente Commons)\\n\\n2\\n00:00:14,740 --> 00:00:17,986\\nè un archivio che raccoglie immagini, audio, video\\n\\n3\\n00:00:18,010 --> 00:00:22,196\\ne altre risorse multimediali a carattere illustrativo o educativo.\\n\\n4\\n00:00:22,174 --> 00:00:26,249\\nI materiali contenuti in Commons possono essere utilizzati liberamente,\\n\\n5\\n00:00:26,305 --> 00:00:31,028\\nanche per fini commerciali, a patto di rispettarne le condizioni d\\'uso.\\n\\n6\\n00:00:31,821 --> 00:00:35,200\\nFratello di Wikipedia, Commons è nato nel 2004\\n\\n7\\n00:00:35,236 --> 00:00:38,888\\ncome deposito comune per i vari progetti della Wikimedia Foundation,\\n\\n8\\n00:00:38,934 --> 00:00:42,153\\ne si è poi evoluto in un progetto con linee guida proprie.\\n\\n9\\n00:00:42,320 --> 00:00:46,469\\nIn Commons è possibile trovare fotografie di luoghi e monumenti.\\n\\n10\\n00:00:46,919 --> 00:00:49,281\\nAnimali, piante, minerali.\\n\\n11\\n00:00:49,726 --> 00:00:53,281\\nFoto di personaggi, di oggetti comuni e di opere d\\'arte.\\n\\n12\\n00:00:53,470 --> 00:00:58,183\\nE poi immagini e registrazioni storiche e scannerizzazioni di libri antichi.\\n\\n13\\n00:00:58,483 --> 00:01:01,021\\nSchemi, diagrammi, grafici e mappe.\\n\\n14\\n00:01:01,335 --> 00:01:06,275\\nVideo e registrazioni audio... e molto altro ancora.\\n\\n15\\n00:01:06,664 --> 00:01:10,650\\nIn alcuni casi i materiali non sono più protetti da diritto d\\'autore,\\n\\n16\\n00:01:10,774 --> 00:01:15,110\\nin altri gli autori o i detentori dei diritti hanno concesso il permesso\\n\\n17\\n00:01:15,123 --> 00:01:19,634\\ndi utilizzare i loro lavori a patto di rispettare semplici condizioni,\\n\\n18\\n00:01:19,630 --> 00:01:24,442\\ncome l\\'attribuzione o l\\'uso della stessa licenza per eventuali opere derivate.\\n\\n19\\n00:01:24,745 --> 00:01:28,870\\nOltre sette milioni le risorse in Commons, liberamente scaricabili\\n\\n20\\n00:01:28,908 --> 00:01:34,731\\ne utilizzabili per ricerche, siti web, manifesti, pubblicità, opere d\\'arte...\\n\\n21\\n00:01:35,761 --> 00:01:39,050\\nLe risorse di Commons possono essere inserite direttamente\\n\\n22\\n00:01:39,055 --> 00:01:43,766\\nsulle pagine dell\\'enciclopedia Wikipedia e in tutti gli altri progetti Wikimedia,\\n\\n23\\n00:01:43,777 --> 00:01:47,438\\nchiaramente nel rispetto delle linee guida dello specifico progetto,\\n\\n24\\n00:01:47,476 --> 00:01:49,767\\ndella comunità linguistica di riferimento\\n\\n25\\n00:01:49,777 --> 00:01:52,983\\ne della legislazione del paese di provenienza.\\n\\n26\\n00:01:53,723 --> 00:01:57,300\\nOgni file in Commons ha una propria pagina wiki.\\n\\n27\\n00:01:57,567 --> 00:02:00,235\\nDopo il titolo segue la risorsa multimediale\\n\\n28\\n00:02:00,223 --> 00:02:03,729\\no una sua anteprima, come nel caso di foto molto grandi.\\n\\n29\\n00:02:04,007 --> 00:02:07,821\\nSono poi inserite una descrizione (spesso in più lingue)\\n\\n30\\n00:02:07,825 --> 00:02:12,856\\ne tutte le informazioni disponibili, come fonte, autore, data, termini d\\'uso.\\n\\n31\\n00:02:13,083 --> 00:02:17,044\\nLa cronologia del file elenca tutte le sue eventuali rielaborazioni.\\n\\n32\\n00:02:17,058 --> 00:02:21,408\\nÈ infatti possibile correggere e migliorare i file caricati da altri utenti.\\n\\n33\\n00:02:21,795 --> 00:02:24,567\\nÈ inoltre presente l\\'elenco delle pagine di Commons\\n\\n34\\n00:02:24,568 --> 00:02:26,995\\ne degli altri progetti della Wikimedia Foundation\\n\\n35\\n00:02:27,004 --> 00:02:29,996\\nche hanno collegato o richiamato la risorsa.\\n\\n36\\n00:02:30,275 --> 00:02:32,752\\nIn fondo ci sono le categorie di appartenenza,\\n\\n37\\n00:02:32,790 --> 00:02:35,502\\ncon le quali la risorsa è stata catalogata.\\n\\n38\\n00:02:35,544 --> 00:02:38,209\\nLe categorie sono standardizzate in inglese,\\n\\n39\\n00:02:38,213 --> 00:02:41,927\\nma per usarle è sufficiente una conoscenza approssimativa della lingua.\\n\\n40\\n00:02:42,863 --> 00:02:45,245\\nCome contribuire a Commons?\\n\\n41\\n00:02:45,278 --> 00:02:48,559\\nUn amante della fotografia può inserire le sue immagini,\\n\\n42\\n00:02:48,659 --> 00:02:52,055\\nun bravo disegnatore può aggiungere diagrammi e animazioni,\\n\\n43\\n00:02:52,054 --> 00:02:54,924\\nun musicista la registrazione di opere libere.\\n\\n44\\n00:02:55,133 --> 00:02:58,899\\nPossono essere inseriti anche film e registrazioni di opere teatrali,\\n\\n45\\n00:02:58,926 --> 00:03:01,581\\npurché non siano coperte da copyright.\\n\\n46\\n00:03:02,452 --> 00:03:07,264\\nPer poter caricare dei file su Commons, bisogna essere utenti registrati.\\n\\n47\\n00:03:07,277 --> 00:03:11,832\\nLa registrazione, gratuita, si effettua velocemente, e non è necessaria\\n\\n48\\n00:03:11,887 --> 00:03:15,581\\nse si è già registrati in un altro progetto della Wikimedia Foundation.\\n\\n49\\n00:03:15,974 --> 00:03:19,324\\nÈ possibile caricare risorse solo in un formato libero.\\n\\n50\\n00:03:19,366 --> 00:03:23,448\\nAd esempio per i video è ammesso solo il formato Ogg Theora.\\n\\n51\\n00:03:23,529 --> 00:03:26,682\\nEsistono comunque vari convertitori open source\\n\\n52\\n00:03:26,622 --> 00:03:29,877\\nche si possono scaricare e utilizzare gratuitamente.\\n\\n53\\n00:03:30,249 --> 00:03:34,390\\nOgni file caricato deve rispettare: la legge degli Stati Uniti,\\n\\n54\\n00:03:34,385 --> 00:03:37,322\\ndove risiede legalmente la Wikimedia Foundation;\\n\\n55\\n00:03:37,322 --> 00:03:40,229\\nle leggi delle nazioni da cui deriva la risorsa;\\n\\n56\\n00:03:40,283 --> 00:03:45,626\\nle leggi del paese dell’utente, che rimane responsabile dei contenuti inseriti.\\n\\n57\\n00:03:46,104 --> 00:03:49,031\\nBisogna poi controllare che non si stiano infrangendo\\n\\n58\\n00:03:49,050 --> 00:03:52,175\\nle norme sulla privacy o sui marchi registrati\\n\\n59\\n00:03:52,195 --> 00:03:56,026\\no le restrizioni sull\\'uso delle opere d\\'arte di alcuni musei.\\n\\n60\\n00:03:56,557 --> 00:04:00,399\\nNel caso di opere già pubblicate altrove senza una licenza libera,\\n\\n61\\n00:04:00,448 --> 00:04:04,311\\nl\\'autore o i detentori dei diritti devono inviare una mail\\n\\n62\\n00:04:04,364 --> 00:04:07,380\\nin cui si identificano e dichiarano di acconsentire\\n\\n63\\n00:04:07,416 --> 00:04:11,201\\nalla pubblicazione della risorsa con una licenza libera.\\n\\n64\\n00:04:12,002 --> 00:04:16,003\\nCome Wikipedia, Commons è un wiki, un sito aperto a tutti\\n\\n65\\n00:04:16,006 --> 00:04:18,714\\ned è gestito da volontari da ogni parte del mondo\\n\\n66\\n00:04:18,767 --> 00:04:22,079\\nche si impegnano a identificare e categorizzare il materiale,\\n\\n67\\n00:04:22,123 --> 00:04:24,549\\ncompletare o tradurre le descrizioni,\\n\\n68\\n00:04:24,561 --> 00:04:27,484\\ncreare le gallerie e le pagine specifiche per tema,\\n\\n69\\n00:04:27,484 --> 00:04:31,936\\nindividuare e cancellare le risorse con licenze o fonti incomplete.\\n\\n70\\n00:04:32,872 --> 00:04:35,303\\nIl progetto Commons è multilingue:\\n\\n71\\n00:04:35,364 --> 00:04:37,898\\nun sito unico contiene tutte le traduzioni\\n\\n72\\n00:04:37,909 --> 00:04:41,307\\ne le comunità linguistiche convivono in uno stesso spazio.\\n\\n73\\n00:04:41,581 --> 00:04:45,686\\nPer facilitare la ricerca di determinati materiali all\\'interno di Commons,\\n\\n74\\n00:04:45,684 --> 00:04:49,139\\noltre che nelle categorie, è possibile cercare nelle gallerie,\\n\\n75\\n00:04:49,190 --> 00:04:51,584\\nche sono delle pagine appositamente create\\n\\n76\\n00:04:51,590 --> 00:04:54,682\\nper raccogliere materiale su un soggetto specifico.\\n\\n77\\n00:04:54,964 --> 00:04:58,377\\nLe discussioni su un determinato contenuto avvengono\\n\\n78\\n00:04:58,408 --> 00:05:01,966\\nnella pagina di discussione che affianca ogni risorsa di Commons,\\n\\n79\\n00:05:02,016 --> 00:05:05,889\\nmentre le discussioni generali in una pagina specifica.\\n\\n80\\n00:05:06,024 --> 00:05:08,918\\nLe comunicazioni sono principalmente in inglese,\\n\\n81\\n00:05:08,966 --> 00:05:12,569\\nma esistono anche pagine dedicate al confronto in altre lingue.\\n\\n82\\n00:05:12,853 --> 00:05:16,496\\nPer problemi tecnici ci sono a disposizione l\\'help desk\\n\\n83\\n00:05:16,535 --> 00:05:20,048\\ne numerose pagine di aiuto, tradotte in varie lingue.\\n\\n84\\n00:05:20,222 --> 00:05:23,240\\nPer questioni specifiche o particolarmente complesse,\\n\\n85\\n00:05:23,240 --> 00:05:26,739\\nci si può rivolgere agli amministratori, che sono dei volontari\\n\\n86\\n00:05:26,783 --> 00:05:29,486\\nche hanno guadagnato nel tempo la fiducia della comunità\\n\\n87\\n00:05:29,508 --> 00:05:33,164\\nper la loro conoscenza del progetto e che sono gli unici autorizzati\\n\\n88\\n00:05:33,201 --> 00:05:35,647\\nad eseguire alcune operazioni delicate,\\n\\n89\\n00:05:35,648 --> 00:05:38,603\\ncome ad esempio la cancellazione di una risorsa.\\n\\n90\\n00:05:39,690 --> 00:05:43,318\\nChi utilizza una risorsa di Commons deve assicurarsi sempre\\n\\n91\\n00:05:43,312 --> 00:05:46,334\\ndi rispettare le leggi del proprio paese di appartenenza.\\n\\n92\\n00:05:46,476 --> 00:05:48,614\\nCommons non può garantire la liceità\\n\\n93\\n00:05:48,683 --> 00:05:51,355\\ndell’uso di una risorsa in qualsiasi contesto,\\n\\n94\\n00:05:51,362 --> 00:05:54,260\\nné la sua assoluta accuratezza e affidabilità.\\n\\n95\\n00:05:54,307 --> 00:05:58,402\\nMa è incredibile quanto materiale valido e utilizzabile è stato inserito.\\n\\n96\\n00:05:59,339 --> 00:06:03,755\\nSempre più archivi di stato, musei, biblioteche, collezioni private\\n\\n97\\n00:06:03,774 --> 00:06:07,015\\neffettuano piccole o grandi \"donazioni\" di materiali\\n\\n98\\n00:06:07,063 --> 00:06:10,003\\nche diventano così utile patrimonio di tutti.\\n\\n99\\n00:06:10,655 --> 00:06:14,854\\nDiversi fotografi professionisti pubblicano le loro opere su Commons,\\n\\n100\\n00:06:14,871 --> 00:06:18,240\\norgogliosi di vedere il loro lavoro ripreso in mezzo mondo.\\n\\n101\\n00:06:18,413 --> 00:06:22,119\\nViene dato spazio anche a illustratori che hanno donato a Commons\\n\\n102\\n00:06:22,123 --> 00:06:26,151\\nschemi o diagrammi particolarmente efficaci ed eleganti.\\n\\n103\\n00:06:26,496 --> 00:06:30,857\\nPer il riconoscimento dei lavori di qualità esistono vari meccanismi:\\n\\n104\\n00:06:30,867 --> 00:06:35,316\\nad esempio annualmente si tiene un concorso per premiare la foto dell\\'anno.\\n\\n105\\n00:06:35,618 --> 00:06:38,555\\nUn\\'altra selezione sceglie le immagini più belle\\n\\n106\\n00:06:38,559 --> 00:06:40,828\\nrealizzate dagli utenti di Commons\\n\\n107\\n00:06:40,841 --> 00:06:45,220\\ne un\\'altra ancora invece premia le immagini più efficaci nel loro genere.\\n\\n108\\n00:06:45,462 --> 00:06:49,511\\nQuotidianamente viene scelta un\\'immagine particolarmente interessante\\n\\n109\\n00:06:49,532 --> 00:06:53,676\\ne la stessa prassi è usata anche per le risorse multimediali.\\n\\n110\\n00:06:54,345 --> 00:06:56,682\\nPer sostenere finanziamente Commons\\n\\n111\\n00:06:56,766 --> 00:06:59,570\\nsi può fare una donazione alla Wikimedia Foundation,\\n\\n112\\n00:06:59,599 --> 00:07:03,338\\noppure si può scegliere di sostenere (anche tramite il 5x1000)\\n\\n113\\n00:07:03,359 --> 00:07:06,715\\nWikimedia Italia, un’associazione senza scopo di lucro\\n\\n114\\n00:07:06,743 --> 00:07:08,757\\nche si occupa di promuovere in Italia\\n\\n115\\n00:07:08,792 --> 00:07:11,826\\nCommons e gli altri progetti della Wikimedia Foundation.',\n", + " 'bytes': 10583,\n", + " 'sha1': 'atnywqy2q7u5lykeio86y3w2vi2br7n',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606353553,\n", + " 'timestamp': '2021-11-09T09:44:28Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15393854,\n", + " 'title': 'Wiki loves monuments.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Wiki loves monuments.ogg.en.srt]] to [[TimedText:Wiki loves monuments.ogv.en.srt]]: rename of the original file',\n", + " 'text': '1\\n00:01:44,000 --> 00:01:47,000\\nWikimedians\\n\\n2\\n00:01:48,500 --> 00:01:51,500\\nAll over the world\\n\\n3\\n00:01:52,500 --> 00:01:54,000\\nloves monuments\\n\\n4\\n00:01:56,000 --> 00:01:59,000\\nWiki loves monuments',\n", + " 'bytes': 198,\n", + " 'sha1': '1nbmk2vxld0veuiofgnj7csk0sd2zlt',\n", + " 'parent_id': 55088851,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55160299,\n", + " 'timestamp': '2011-06-05T15:31:16Z',\n", + " 'user': {'id': 493491, 'text': 'Mathonius'},\n", + " 'page': {'id': 15409771,\n", + " 'title': 'Wikimedia Italia - WikiGuida 2 - Commons.ogv.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Check',\n", + " 'text': '1\\n00:00:11,086 --> 00:00:14,676\\nWikimedia Commons (ook wel \"Commons\" genoemd)\\n\\n2\\n00:00:14,740 --> 00:00:17,986\\nis een project dat afbeeldingen, geluidsbestanden, video\\'s \\n\\n3\\n00:00:18,010 --> 00:00:22,196\\nen andere educatieve en beschrijvende multimedia verzamelt.\\n\\n4\\n00:00:22,174 --> 00:00:26,249\\nDe bestanden die op Commons staan, kunnen vrij gebruikt worden,\\n\\n5\\n00:00:26,305 --> 00:00:31,028\\nook voor commerciële doeleinden, indien aan de gebruiksvoorwaarden is voldaan.\\n\\n6\\n00:00:31,821 --> 00:00:35,200\\nIn 2004 werd Commons als zusterproject van Wikipedia opgericht\\n\\n7\\n00:00:35,236 --> 00:00:38,888\\nom de basis te vormen voor de verschillende projecten van de Wikimedia Foundation\\n\\n8\\n00:00:38,934 --> 00:00:42,153\\nmaar al snel groeide het uit tot een zelfstandig project met zijn eigen richtlijnen.\\n\\n9\\n00:00:42,320 --> 00:00:46,469\\nOp Commons kunt u afbeeldingen vinden van plaatsen en monumenten,\\n\\n10\\n00:00:46,919 --> 00:00:49,281\\ndieren, planten, mineralen,\\n\\n11\\n00:00:49,726 --> 00:00:53,281\\nfoto\\'s van personen, alledaagse voorwerpen, kunstwerken,\\n\\n12\\n00:00:53,470 --> 00:00:58,183\\nalsook historische afbeeldingen en opnames, en scans van oude boeken,\\n\\n13\\n00:00:58,483 --> 00:01:01,021\\nschema\\'s, diagrammen, grafieken en kaarten,\\n\\n14\\n00:01:01,335 --> 00:01:06,275\\nbeeld- en geluidsfragmenten... en veel meer.\\n\\n15\\n00:01:06,664 --> 00:01:10,650\\nIn sommige gevallen zijn de bestanden niet langer afhankelijk van auteursrechten,\\n\\n16\\n00:01:10,774 --> 00:01:15,110\\nin andere gevallen gaven de auteurs of de rechthebbenden toestemming\\n\\n17\\n00:01:15,123 --> 00:01:19,634\\nom hun materiaal te gebruiken onder simpele voorwaarden\\n\\n18\\n00:01:19,630 --> 00:01:24,442\\nzoals naamsvermelding, of het vrijgeven van afgeleide werken met dezelfde licentie. \\n\\n19\\n00:01:24,745 --> 00:01:28,870\\nEr staan meer dan zeven miljoen vrij te downloaden bestanden op Commons\\n\\n20\\n00:01:28,908 --> 00:01:34,731\\ndie gebruikt kunnen worden voor papers, websites, posters, reclame, kunstwerken...\\n\\n21\\n00:01:35,761 --> 00:01:39,050\\nDe bestanden die op Commons staan, kunnen meteen worden toegevoegd\\n\\n22\\n00:01:39,055 --> 00:01:43,766\\naan pagina\\'s op Wikipedia en andere Wikimediaprojecten,\\n\\n23\\n00:01:43,777 --> 00:01:47,438\\nals ze overeenkomstig de richtlijnen van het specifieke project zijn,\\n\\n24\\n00:01:47,476 --> 00:01:49,767\\naansluiten op de verwachtingen van de gemeenschap in kwestie\\n\\n25\\n00:01:49,777 --> 00:01:52,983\\nen niet in strijd zijn met de desbetreffende wet(ten) in het land van oorsprong.\\n\\n26\\n00:01:53,723 --> 00:01:57,300\\nElk bestand op Commons heeft zijn eigen wikipagina.\\n\\n27\\n00:01:57,567 --> 00:02:00,235\\nEerst komt de titel, dan de media\\n\\n28\\n00:02:00,223 --> 00:02:03,729\\nof een voorvertoning, voor zeer grote foto\\'s.\\n\\n29\\n00:02:04,007 --> 00:02:07,821\\nHierna volgt een beschrijving (meestal in verschillende talen)\\n\\n30\\n00:02:07,825 --> 00:02:12,856\\nmet alle beschikbare informatie zoals de bron, auteur, datum en gebruiksvoorwaarden. \\n\\n31\\n00:02:13,083 --> 00:02:17,044\\nDe geschiedenis van het bestand laat de aanpassingen ervan zien.\\n\\n32\\n00:02:17,058 --> 00:02:21,408\\nHet is mogelijk om zelf bestanden aan te passen en te verbeteren, zelfs wanneer deze door andere gebruikers zijn geüpload.\\n\\n33\\n00:02:21,795 --> 00:02:24,567\\nOp de pagina staat ook een lijst van pagina\\'s op Commons\\n\\n34\\n00:02:24,568 --> 00:02:26,995\\nalsook op andere projecten van de Wikimedia Foundation\\n\\n35\\n00:02:27,004 --> 00:02:29,996\\nwaarop naar het bestand verwezen wordt.\\n\\n36\\n00:02:30,275 --> 00:02:32,752\\nOnderaan de pagina staan de categorieën\\n\\n37\\n00:02:32,790 --> 00:02:35,502\\nwaarin het bestand is geplaatst\\n\\n38\\n00:02:35,544 --> 00:02:38,209\\nDe categorieën zijn standaard in het Engels,\\n\\n39\\n00:02:38,213 --> 00:02:41,927\\nmaar een basiskennis van de taal is genoeg om ermee te werken.\\n\\n40\\n00:02:42,863 --> 00:02:45,245\\nHoe kunt u bijdragen aan Commons?\\n\\n41\\n00:02:45,278 --> 00:02:48,559\\nEen fotograaf kan zijn/haar eigen foto\\'s uploaden,\\n\\n42\\n00:02:48,659 --> 00:02:52,055\\neen illustrator kan diagrammen of animaties toevoegen,\\n\\n43\\n00:02:52,054 --> 00:02:54,924\\neen muzikant kan opnames van vrije muziek uploaden.\\n\\n44\\n00:02:55,133 --> 00:02:58,899\\nZelfs films en opnames van toneelstukken kunnen worden geüpload,\\n\\n45\\n00:02:58,926 --> 00:03:01,581\\nzolang deze vrij zijn van auteursrechtelijke bescherming.\\n\\n46\\n00:03:02,452 --> 00:03:07,264\\nOm bestanden te uploaden op Commons moet u zich eerst registreren.\\n\\n47\\n00:03:07,277 --> 00:03:11,832\\nDeze registratie is gratis, snel en niet nodig als...\\n\\n48\\n00:03:11,887 --> 00:03:15,581\\n...u al geregistreerd bent op een ander project van de Wikimedia Foundation.\\n\\n49\\n00:03:15,974 --> 00:03:19,324\\nAlleen bestanden in een vrij bestandsformaat mogen worden geüpload.\\n\\n50\\n00:03:19,366 --> 00:03:23,448\\nBijvoorbeeld: het enige toegelaten formaat voor video\\'s is Ogg Theora.\\n\\n51\\n00:03:23,529 --> 00:03:26,682\\nEen aantal programma\\'s die bestanden omzetten naar open-sourceformaten\\n\\n52\\n00:03:26,622 --> 00:03:29,877\\nzijn beschikbaar en kunnen vrij gedownload en gebruikt worden.\\n\\n53\\n00:03:30,249 --> 00:03:34,390\\nElk geüpload bestand moet voldoen aan: de wet van de Verenigde Staten,\\n\\n54\\n00:03:34,385 --> 00:03:37,322\\nwaar de Wikimedia Foundation juridisch gezien gevestigd is;\\n\\n55\\n00:03:37,322 --> 00:03:40,229\\nde wet van het land waar het bestand vandaan komt;\\n\\n56\\n00:03:40,283 --> 00:03:45,626\\nde wet van het land van oorsprong van de gebruiker, die verantwoordelijk is voor de inhoud van het geüploade bestand.\\n\\n57\\n00:03:46,104 --> 00:03:49,031\\nDan moet u kijken of u geen inbreuk pleegt\\n\\n58\\n00:03:49,050 --> 00:03:52,175\\nop wetten in verband met privacy en handelsmerken\\n\\n59\\n00:03:52,195 --> 00:03:56,026\\nof de beperkingen die opgelegd zijn door sommige musea over het gebruik van kunstwerken.\\n\\n60\\n00:03:56,557 --> 00:04:00,399\\nIn het geval dat het materiaal ergens anders onder een niet-vrije licentie is gepubliceerd,\\n\\n61\\n00:04:00,448 --> 00:04:04,311\\nmoeten de auteurs of rechthebbenden een e-mail sturen \\n\\n62\\n00:04:04,364 --> 00:04:07,380\\nwaarin zij zichzelf identificeren en hun toestemming geven om\\n\\n63\\n00:04:07,416 --> 00:04:11,201\\nhet materiaal onder een vrije licentie te publiceren.\\n\\n64\\n00:04:12,002 --> 00:04:16,003\\nNet zoals Wikipedia is Commons een wiki, wat betekent dat het vrij te bewerken is\\n\\n65\\n00:04:16,006 --> 00:04:18,714\\nen wordt beheerd door vrijwillige gebruikers van over de hele wereld,\\n\\n66\\n00:04:18,767 --> 00:04:22,079\\ndie materiaal identificeren en categoriseren,\\n\\n67\\n00:04:22,123 --> 00:04:24,549\\nde beschrijvingen vervolledigen of vertalen,\\n\\n68\\n00:04:24,561 --> 00:04:27,484\\ngalerijen en specifieke themapagina\\'s maken,\\n\\n69\\n00:04:27,484 --> 00:04:31,936\\nbestanden die onvoldoende bronnen en/of licenties hebben opzoeken en verwijderen.\\n\\n70\\n00:04:32,872 --> 00:04:35,303\\nCommons is een meertalig project:\\n\\n71\\n00:04:35,364 --> 00:04:37,898\\neen enkele website host alle vertaalde versies\\n\\n72\\n00:04:37,909 --> 00:04:41,307\\nen de verschillende taalgemeenschappen delen dezelfde ruimte.\\n\\n73\\n00:04:41,581 --> 00:04:45,686\\nOm het opzoeken van materiaal op Commons gemakkelijker te maken,\\n\\n74\\n00:04:45,684 --> 00:04:49,139\\nkunt u naast categorieën ook galerijen bekijken:\\n\\n75\\n00:04:49,190 --> 00:04:51,584\\npagina\\'s die speciaal gemaakt zijn\\n\\n76\\n00:04:51,590 --> 00:04:54,682\\nom bestanden over een bepaald onderwerp samen te brengen.\\n\\n77\\n00:04:54,964 --> 00:04:58,377\\nOverleg over de inhoud vindt plaats\\n\\n78\\n00:04:58,408 --> 00:05:01,966\\nop de overlegpagina die elk bestand heeft, \\n\\n79\\n00:05:02,016 --> 00:05:05,889\\nalgemene discussies over Commons vinden plaats op een aparte pagina.\\n\\n80\\n00:05:06,024 --> 00:05:08,918\\nDe communicatie gebeurt voornamelijk in het Engels,\\n\\n81\\n00:05:08,966 --> 00:05:12,569\\nmaar overlegpagina\\'s in andere talen zijn ook beschikbaar.\\n\\n82\\n00:05:12,853 --> 00:05:16,496\\nIndien u problemen ondervindt, is er een helpdesk\\n\\n83\\n00:05:16,535 --> 00:05:20,048\\nen vele hulppagina\\'s, in verschillende talen.\\n\\n84\\n00:05:20,222 --> 00:05:23,240\\nVoor specifieke of zeer complexe kwesties,\\n\\n85\\n00:05:23,240 --> 00:05:26,739\\nkunt u de hulp vragen van een van de moderatoren. Dit zijn vrijwilligers\\n\\n86\\n00:05:26,783 --> 00:05:29,486\\ndie het vertrouwen van de gemeenschap hebben verdiend\\n\\n87\\n00:05:29,508 --> 00:05:33,164\\nvanwege hun kennis van het project, en zij zijn de enigen\\n\\n88\\n00:05:33,201 --> 00:05:35,647\\ndie sommige precaire bewerkingen mogen uitvoeren,\\n\\n89\\n00:05:35,648 --> 00:05:38,603\\nzoals het verwijderen van een bestand.\\n\\n90\\n00:05:39,690 --> 00:05:43,318\\nIndien u een bestand van Commons wilt gebruiken, zorg dan altijd \\n\\n91\\n00:05:43,312 --> 00:05:46,334\\ndat het gebruik voldoet aan de wet van uw eigen land.\\n\\n92\\n00:05:46,476 --> 00:05:48,614\\nCommons kan geen garanties geven inzake rechtmatigheid\\n\\n93\\n00:05:48,683 --> 00:05:51,355\\nbij het gebruik van een bestand in welke context dan ook,\\n\\n94\\n00:05:51,362 --> 00:05:54,260\\nnoch zijn feitelijke juistheid en betrouwbaarheid.\\n\\n95\\n00:05:54,307 --> 00:05:58,402\\nMaar het is ongelofelijk om te zien hoeveel deugdelijk en nuttig materiaal er is geüpload.\\n\\n96\\n00:05:59,339 --> 00:06:03,755\\nSteeds meer publieke archieven, musea, bibliotheken en private collecties\\n\\n97\\n00:06:03,774 --> 00:06:07,015\\n\"doneren\" kleine of grote hoeveelheden bestanden\\n\\n98\\n00:06:07,063 --> 00:06:10,003\\ndie dan deel uit kunnen maken van het publieke goed.\\n\\n99\\n00:06:10,655 --> 00:06:14,854\\nVerschillende professionele fotografen publiceren hun werk op Commons,\\n\\n100\\n00:06:14,871 --> 00:06:18,240\\ntrots dat hun werk over de hele wereld verspreid wordt.\\n\\n101\\n00:06:18,413 --> 00:06:22,119\\nHetzelfde geldt voor illustrators, die doeltreffende\\n\\n102\\n00:06:22,123 --> 00:06:26,151\\nen elegante diagrammen hebben geüpload.\\n\\n103\\n00:06:26,496 --> 00:06:30,857\\nDe gemeenschap heeft verschillende mogelijkheden om een kwaliteitswerk te erkennen:\\n\\n104\\n00:06:30,867 --> 00:06:35,316\\ner is een wedstrijd voor de foto van het jaar.\\n\\n105\\n00:06:35,618 --> 00:06:38,555\\nEen andere groep kiest de beste afbeeldingen,\\n\\n106\\n00:06:38,559 --> 00:06:40,828\\ngemaakt door gebruikers van Commons, uit\\n\\n107\\n00:06:40,841 --> 00:06:45,220\\nen nog een andere verkiest de meest effectieve afbeeldingen binnen één genre.\\n\\n108\\n00:06:45,462 --> 00:06:49,511\\nEen bijzonder interessante afbeelding wordt dagelijks gekozen\\n\\n109\\n00:06:49,532 --> 00:06:53,676\\nen hetzelfde gebeurt voor andere multimediabestanden.\\n\\n110\\n00:06:54,345 --> 00:06:56,682\\nU kunt Commons steunen door\\n\\n111\\n00:06:56,766 --> 00:06:59,570\\nte doneren aan de Wikimedia Foundation,\\n\\n112\\n00:06:59,599 --> 00:07:03,338\\nof u kunt ervoor kiezen \\n\\n113\\n00:07:03,359 --> 00:07:06,715\\nWikimedia Italia te steunen; dit is een non-profitorganisatie\\n\\n114\\n00:07:06,743 --> 00:07:08,757\\ndie Commons en andere projecten van de Wikimedia Foundation\\n\\n115\\n00:07:08,792 --> 00:07:11,826\\nin Italië promoot.',\n", + " 'bytes': 10702,\n", + " 'sha1': 'cxcryux120po3gfhfprfvs106zpcz2v',\n", + " 'parent_id': 55154917,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55185916,\n", + " 'timestamp': '2011-06-06T06:25:50Z',\n", + " 'user': {'id': 639212, 'text': 'Olli'},\n", + " 'page': {'id': 15417080,\n", + " 'title': 'Wikimedia Italia - WikiGuida 2 - Commons.ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:11,086 --> 00:00:14,676\\nWikimedia Commons (tai vain pelkkä Commons)\\n\\n2\\n00:00:14,740 --> 00:00:17,986\\non projekti, joka kerää kuvia, ääniä, videoita\\n\\n3\\n00:00:18,010 --> 00:00:22,196\\nja muita opettavaisia ja asioita selittäviä multimediatiedostoja.\\n\\n4\\n00:00:22,174 --> 00:00:26,249\\nCommonsiin tallennettuja tiedostoja voidaan käyttää vapaasti,\\n\\n5\\n00:00:26,305 --> 00:00:31,028\\nmyös kaupallisiin tarkoituksiin, kunhan ehtoja noudatetaan.\\n\\n6\\n00:00:31,821 --> 00:00:35,200\\nWikipedian sisarprojekti, Commons, perustettiin vuonna 2004\\n\\n7\\n00:00:35,236 --> 00:00:38,888\\nWikimedia Foundationin yleiseksi kirjastoksi kaikkia projekteja varten.\\n\\n8\\n00:00:38,934 --> 00:00:42,153\\nSitten siitä syntyi oma projekti, jolla oli omat ohjeet ja säännöt.\\n\\n9\\n00:00:42,320 --> 00:00:46,469\\nCommonsista voit löytää kuvia paikoista ja maamerkeistä.\\n\\n10\\n00:00:46,919 --> 00:00:49,281\\nEläimiä, kasveja, mineraaleja.\\n\\n11\\n00:00:49,726 --> 00:00:53,281\\nKuvia ihmisistä, jokaisen päivän tavaroista, taideteoksista.\\n\\n12\\n00:00:53,470 --> 00:00:58,183\\nJa jälleen kerran historiallisia kuvia ja merkintöjä, ja skannauksia muinaisista kirjoista.\\n\\n13\\n00:00:58,483 --> 00:01:01,021\\nKaavoja, kaavioita, ja karttoja.\\n\\n14\\n00:01:01,335 --> 00:01:06,275\\nVideo- ja äänitallenteita... ja paljon muuta.\\n\\n15\\n00:01:06,664 --> 00:01:10,650\\nJoissakin tapauksissa tekijänoikeuslaki ei enää suojaa tiedostoja.\\n\\n16\\n00:01:10,774 --> 00:01:15,110\\nMuissa tapauksissa tekijät tai tekijänoikeuden omistajat ovat antaneet luvan\\n\\n17\\n00:01:15,123 --> 00:01:19,634\\nkäyttää teoksiansa yksinkertaisten ehtojen alaisina.\\n\\n18\\n00:01:19,630 --> 00:01:24,442\\nNiitä voivat olla esimerkiksi alkuperäisen tekijän nimeäminen tai se, että uudet työt julkaistaan samalla lisenssillä.\\n\\n19\\n00:01:24,745 --> 00:01:28,870\\nCommonsissa on yli 7 miljoonaa tiedostoa, vapaasti ladattavissa.\\n\\n20\\n00:01:28,908 --> 00:01:34,731\\nNiitä voi käyttää lehdissä, verkkosivuilla, julisteissa, mainostuksessa, taideteoksissa...\\n\\n21\\n00:01:35,761 --> 00:01:39,050\\nCommonsissa olevia tiedostoja voi käyttää suoraan\\n\\n22\\n00:01:39,055 --> 00:01:43,766\\nWikipedian ja muiden Wikimedia-projektien artikkeleissa,\\n\\n23\\n00:01:43,777 --> 00:01:47,438\\nyhteisten ehtojen alaisena.\\n\\n24\\n00:01:47,476 --> 00:01:49,767\\nKieliversio voi kuitenkin luoda poikkeuksia tähän.\\n\\n25\\n00:01:49,777 --> 00:01:52,983\\nLisäksi tulee noudattaa maan paikallisia lakeja.\\n\\n26\\n00:01:53,723 --> 00:01:57,300\\nJokaisella Commonsin tiedostolla on oma sivunsa.\\n\\n27\\n00:01:57,567 --> 00:02:00,235\\nEnsin tulee otsikko, sitten tiedosto\\n\\n28\\n00:02:00,223 --> 00:02:03,729\\ntai sen esikatselu, erittäin suurien kuvien tapauksessa.\\n\\n29\\n00:02:04,007 --> 00:02:07,821\\nSeuraavana on tiedoston kuvaus (usein monikielinen)\\n\\n30\\n00:02:07,825 --> 00:02:12,856\\nja kaikki saatavilla olevat tiedot, kuten lähde, tekijä, päivämäärä, ja käyttöehdot.\\n\\n31\\n00:02:13,083 --> 00:02:17,044\\nTiedoston historiasta näet kaikki siihen tehdyt muutokset.\\n\\n32\\n00:02:17,058 --> 00:02:21,408\\nTiesitkö, että on mahdollista muokata ja kehittää muiden käyttäjien lataamia tiedostoja?\\n\\n33\\n00:02:21,795 --> 00:02:24,567\\nCommonsissa on myös lista sivuista,\\n\\n34\\n00:02:24,568 --> 00:02:26,995\\nkuten kaikissa muissakin Wikimedia Foundationin projekteissa,\\n\\n35\\n00:02:27,004 --> 00:02:29,996\\njotka linkittävät tiedostoon.\\n\\n36\\n00:02:30,275 --> 00:02:32,752\\nSivun alaosassa löydät tiedostolle annetut luokat,\\n\\n37\\n00:02:32,790 --> 00:02:35,502\\njoihin se on asetettu.\\n\\n38\\n00:02:35,544 --> 00:02:38,209\\nLuokkien nimet ovat englanniksi,\\n\\n39\\n00:02:38,213 --> 00:02:41,927\\nmutta ne ovat yksinkertaisia.\\n\\n40\\n00:02:42,863 --> 00:02:45,245\\nMiten sinä voit osallistua Commonsiin?\\n\\n41\\n00:02:45,278 --> 00:02:48,559\\nValokuvaamisesta pitävät voivat ladata omia valokuviaan,\\n\\n42\\n00:02:48,659 --> 00:02:52,055\\nhyvä piirtäjä voi lisätä kaavoja ja animaatioita,\\n\\n43\\n00:02:52,054 --> 00:02:54,924\\nmuusikko voi ladata nauhoituksia vapaasta musiikista.\\n\\n44\\n00:02:55,133 --> 00:02:58,899\\nJopa elokuvia ja videoita teatteriesityksistä voi ladata,\\n\\n45\\n00:02:58,926 --> 00:03:01,581\\nkunhan ne ovat tekijänoikeuksista vapaita.\\n\\n46\\n00:03:02,452 --> 00:03:07,264\\nLadataksesi tiedostoja Commonsiin, sinun täytyy olla rekisteröitynyt käyttäjä.\\n\\n47\\n00:03:07,277 --> 00:03:11,832\\nRekisteröityminen on ilmaista ja nopeaa. Tiesitkö, että jos olet jo -\\n\\n48\\n00:03:11,887 --> 00:03:15,581\\nrekisteröitynyt toiseen Wikimedia Foundationin projektiin - sinun ei tarvitse rekisteröityä uudelleen!\\n\\n49\\n00:03:15,974 --> 00:03:19,324\\nTiedostojen lataaminen on sallittua vain vapaissa tiedostomuodoissa.\\n\\n50\\n00:03:19,366 --> 00:03:23,448\\nEsimerkiksi ainoa sallittu videomuoto on Ogg Theora.\\n\\n51\\n00:03:23,529 --> 00:03:26,682\\nVoit kuitenkin ladata ilmaisen ohjelman, jolla -\\n\\n52\\n00:03:26,622 --> 00:03:29,877\\nvoit muuttaa tiedoston muodon sopivaksi.\\n\\n53\\n00:03:30,249 --> 00:03:34,390\\nJokaisen ladatun tiedoston täytyy noudattaa Yhdysvaltojen lakeja,\\n\\n54\\n00:03:34,385 --> 00:03:37,322\\njossa Wikimedia Foundation sijaitsee laillisesti;\\n\\n55\\n00:03:37,322 --> 00:03:40,229\\nalkuperäisen maan lakeja;\\n\\n56\\n00:03:40,283 --> 00:03:45,626\\nja lataajan oman maan lakeja. Käyttäjä on vastuussa lataamastaan sisällöstä.\\n\\n57\\n00:03:46,104 --> 00:03:49,031\\nSinun täytyy myös tarkistaa, että et riko yksityisyyden\\n\\n58\\n00:03:49,050 --> 00:03:52,175\\ntai tavaramerkkien lakeja\\n\\n59\\n00:03:52,195 --> 00:03:56,026\\ntai joidenkin museoiden asettamia rajoituksia taideteoksiin liittyen.\\n\\n60\\n00:03:56,557 --> 00:04:00,399\\nJos materiaalia on jo julkaistu jossakin muualla ei-vapaan lisenssin alaisena,\\n\\n61\\n00:04:00,448 --> 00:04:04,311\\ntekijöiden tai tekijänoikeuksien omistajien pitää lähettää sähköpostia,\\n\\n62\\n00:04:04,364 --> 00:04:07,380\\njossa he todentavat itsensä ja antavat luvan\\n\\n63\\n00:04:07,416 --> 00:04:11,201\\njulkaista materiaalia vapaan lisenssin alaisena.\\n\\n64\\n00:04:12,002 --> 00:04:16,003\\nKuten Wikipedia, Commons on wiki, jokaiselle ihmiselle avoinna oleva sivu.\\n\\n65\\n00:04:16,006 --> 00:04:18,714\\nVapaaehtoiset maailman joka kolkasta pitävät sitä yllä.\\n\\n66\\n00:04:18,767 --> 00:04:22,079\\nHe luokittelevat ja tunnistavat materiaalia,\\n\\n67\\n00:04:22,123 --> 00:04:24,549\\ntäydentävät tai kääntävät tiedostojen kuvauksia,\\n\\n68\\n00:04:24,561 --> 00:04:27,484\\nluovat gallerioita ja teemasivuja,\\n\\n69\\n00:04:27,484 --> 00:04:31,936\\netsivät ja poistavat tiedostoja, joilla on kelpaamaton lähde tai lisenssi.\\n\\n70\\n00:04:32,872 --> 00:04:35,303\\nCommons on monikielinen projekti:\\n\\n71\\n00:04:35,364 --> 00:04:37,898\\nyksittäinen sivusto, jonka alaisena sijaitsee erikielisiä töitä\\n\\n72\\n00:04:37,909 --> 00:04:41,307\\nja monikielisiä yhteisöjä.\\n\\n73\\n00:04:41,581 --> 00:04:45,686\\nJotta löytäisit tiedostoja Commonsista helpommin,\\n\\n74\\n00:04:45,684 --> 00:04:49,139\\nvoit katsoa gallerioita luokkien sijasta.\\n\\n75\\n00:04:49,190 --> 00:04:51,584\\nNe ovat sivuja, jotka on tehty\\n\\n76\\n00:04:51,590 --> 00:04:54,682\\nsamasta aiheesta olevien materiaalien käsittelyyn.\\n\\n77\\n00:04:54,964 --> 00:04:58,377\\nSisällöstä voi myös keskustella, sillä jokaisella tiedostolla\\n\\n78\\n00:04:58,408 --> 00:05:01,966\\non oma keskustelusivulla. Yleiset keskustelut\\n\\n79\\n00:05:02,016 --> 00:05:05,889\\nCommonsiin liittyen ovat omalla sivullaan.\\n\\n80\\n00:05:06,024 --> 00:05:08,918\\nViestintä tapahtuu pääasiassa englanniksi,\\n\\n81\\n00:05:08,966 --> 00:05:12,569\\nmutta myös muunkielisiä keskustelusivuja on saatavilla.\\n\\n82\\n00:05:12,853 --> 00:05:16,496\\nJos kohtaat ongelmia, on olemassa tukisivu\\n\\n83\\n00:05:16,535 --> 00:05:20,048\\nja paljon ohjesivuja. Ne ovat saatavilla useilla eri kielillä.\\n\\n84\\n00:05:20,222 --> 00:05:23,240\\nJos kohtaat vaikeita ongelmia,\\n\\n85\\n00:05:23,240 --> 00:05:26,739\\nvoit kysyä ylläpitäjiltä, jotka ovat vapaaehtoisia,\\n\\n86\\n00:05:26,783 --> 00:05:29,486\\njotka ovat saaneet luottamusta yhteisöltä.\\n\\n87\\n00:05:29,508 --> 00:05:33,164\\nSe perustuu hyvään asiantuntemukseen. Vain ylläpitäjät voivat\\n\\n88\\n00:05:33,201 --> 00:05:35,647\\nsuorittaa joitakin operaatioita,\\n\\n89\\n00:05:35,648 --> 00:05:38,603\\nkuten tiedostojen poistoa.\\n\\n90\\n00:05:39,690 --> 00:05:43,318\\nJos haluat käyttää Commonsissa olevaa tiedostoa, varmista aina,\\n\\n91\\n00:05:43,312 --> 00:05:46,334\\nettä noudatat oman maasi lakeja.\\n\\n92\\n00:05:46,476 --> 00:05:48,614\\nCommons ei voi taata, että\\n\\n93\\n00:05:48,683 --> 00:05:51,355\\ntiedoston käyttö olisi sallittua,\\n\\n94\\n00:05:51,362 --> 00:05:54,260\\neikä sen tarkkuutta tai luotettavuutta.\\n\\n95\\n00:05:54,307 --> 00:05:58,402\\nMutta on uskomatonta nähdä, kuinka paljon luotettavaa ja hyödyllistä tietoa on ladattu.\\n\\n96\\n00:05:59,339 --> 00:06:03,755\\nEntistä useampi julkinen arkisto, museo, kirjasto ja yksityiskokoelma\\n\\n97\\n00:06:03,774 --> 00:06:07,015\\ntekee pieniä ja suuria materiaalin \"lahjoituksia\",\\n\\n98\\n00:06:07,063 --> 00:06:10,003\\njoista moni ihminen voi hyötyä.\\n\\n99\\n00:06:10,655 --> 00:06:14,854\\nUseat ammattimaiset valokuvaajat julkaisevat töitään Commonsissa,\\n\\n100\\n00:06:14,871 --> 00:06:18,240\\nylpeänä siitä, että heidän tekemänsä työ tulee maailmanlaajuisesti saataville.\\n\\n101\\n00:06:18,413 --> 00:06:22,119\\nSama on myös piirtäjillä, jotka antavat Commonsiin\\n\\n102\\n00:06:22,123 --> 00:06:26,151\\nhyödyllisiä ja hyvälaatuisia kaavioita ja kuvia.\\n\\n103\\n00:06:26,496 --> 00:06:30,857\\nYhteisöllä on useita tapoja löytää parhaat työt:\\n\\n104\\n00:06:30,867 --> 00:06:35,316\\njoka vuosi pidetään kilpailu jossa palkitaan paras valokuva.\\n\\n105\\n00:06:35,618 --> 00:06:38,555\\nToisessa kilpailussa valitaan paras\\n\\n106\\n00:06:38,559 --> 00:06:40,828\\nCommonsin käyttäjien tekemä valokuva\\n\\n107\\n00:06:40,841 --> 00:06:45,220\\nja toinen palkitsee parhaan kuvan tietyssä luokassa.\\n\\n108\\n00:06:45,462 --> 00:06:49,511\\nJoka päivä valitaan myös kiinnostava valokuva.\\n\\n109\\n00:06:49,532 --> 00:06:53,676\\nSama tehdään myös muille multimediaresursseille.\\n\\n110\\n00:06:54,345 --> 00:06:56,682\\nVoit tukea Commonsia taloudellisesti\\n\\n111\\n00:06:56,766 --> 00:06:59,570\\ntekemällä lahjoituksen.\\n\\n112\\n00:06:59,599 --> 00:07:03,338\\nVoit myös tukea\\n\\n113\\n00:07:03,359 --> 00:07:06,715\\nWikimedia Italia, voittoa tavoittelematonta säätiötä\\n\\n114\\n00:07:06,743 --> 00:07:08,757\\njoka kertoo Commonsista ja muista\\n\\n115\\n00:07:08,792 --> 00:07:11,826\\nWikimedia Foundationin projekteista Italiassa.',\n", + " 'bytes': 10183,\n", + " 'sha1': 'b99owv0kit9h68qg1cyy64i9bc5a529',\n", + " 'parent_id': 55185657,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55201232,\n", + " 'timestamp': '2011-06-06T14:31:28Z',\n", + " 'user': {'id': 211597, 'text': 'Lvova'},\n", + " 'page': {'id': 15421529,\n", + " 'title': 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'later',\n", + " 'text': '1\\n00:00:08,860 --> 00:00:11,674\\nВикитека - цифровая онлайн-библиотека,\\n\\n2\\n00:00:11,698 --> 00:00:14,610\\nв которой собираются тексты, опубликованные на всех языках,\\n\\n3\\n00:00:14,631 --> 00:00:18,947\\nесли они находятся в общественном достоянии или выпущены под свободной лицензией.\\n\\n4\\n00:00:19,057 --> 00:00:21,556\\nКак и все проекты Фонда Викимедиа,\\n\\n5\\n00:00:21,607 --> 00:00:24,997\\nВикитека открыта каждому и каждый может соучаствовать,\\n\\n6\\n00:00:25,039 --> 00:00:27,126\\nдаже анонимно.\\n\\n7\\n00:00:27,918 --> 00:00:31,750\\nВ Викитеке тексты взяты из открытых источников\\n\\n8\\n00:00:31,764 --> 00:00:34,695\\nи отформатированы для удобства чтения.\\n\\n9\\n00:00:34,815 --> 00:00:38,255\\nРоманы и рассказы, эссе и руководства,\\n\\n10\\n00:00:38,299 --> 00:00:43,289\\nмолитвенники и политические плакаты, народные песни и стихи,\\n\\n11\\n00:00:43,336 --> 00:00:47,899\\nсказки и детские потешки, правовые документы и научные работы\\n\\n12\\n00:00:47,959 --> 00:00:50,565\\nдиссертации и авторефераты, предоставленные после защиты\\n\\n13\\n00:00:50,596 --> 00:00:53,132\\nв учебных заведениях.\\n\\n14\\n00:00:53,286 --> 00:00:57,167\\nКак и Википедия, проект разделён на разные языки:\\n\\n15\\n00:00:57,252 --> 00:01:00,502\\nВ английской версии Викитеки вы можете писать тексты на английском языке,\\n\\n16\\n00:01:00,563 --> 00:01:04,436\\nво французской версии на французском, и так далее.\\n\\n17\\n00:01:04,564 --> 00:01:06,930\\nТексты собираются на всех языках\\n\\n18\\n00:01:06,995 --> 00:01:09,373\\nдаже на нешироко распространённых и диалектах,\\n\\n19\\n00:01:09,425 --> 00:01:12,455\\nесли они уже опубликованы и свободно транскрибируются.\\n\\n20\\n00:01:12,546 --> 00:01:15,058\\nЭти условия подходят и для переводов,\\n\\n21\\n00:01:15,094 --> 00:01:18,599\\nявляющихся производными работами: поэтому не могут быть включены\\n\\n22\\n00:01:18,649 --> 00:01:22,314\\nнеопубликованные переведённые тексты, и оба, текст и перевод,\\n\\n23\\n00:01:22,340 --> 00:01:26,855\\nдолжны быть в общественном достоянии или выпущены под свободной лицензией.\\n\\n24\\n00:01:27,653 --> 00:01:30,714\\nКаждый текст должен быть скопирован в Викитеку\\n\\n25\\n00:01:30,792 --> 00:01:33,903\\nи использован как основа для производной работы,\\n\\n26\\n00:01:33,947 --> 00:01:35,947\\nв том числе для коммерческих целей.\\n\\n27\\n00:01:36,049 --> 00:01:38,521\\nПоэтому он должны быть опубликован под лицензией,\\n\\n28\\n00:01:38,571 --> 00:01:41,952\\nдающей право отказаться от привилегий\\n\\n29\\n00:01:42,020 --> 00:01:45,091\\nили копирайта на работу, как в США,\\n\\n30\\n00:01:45,121 --> 00:01:47,295\\nгде расположен сервер Викитеки,\\n\\n31\\n00:01:47,344 --> 00:01:50,206\\nтак и в стране, где был опубликован текст.\\n\\n32\\n00:01:51,271 --> 00:01:54,115\\nВ настойщее время согласно американскому законодательству\\n\\n33\\n00:01:54,196 --> 00:01:56,372\\nбезусловно в общественном достоянии\\n\\n34\\n00:01:56,443 --> 00:01:59,539\\nнаходятся лишь работы, опубликованные до 1923 года.\\n\\n35\\n00:01:59,745 --> 00:02:03,243\\nДля Италии работа защищена авторским правом\\n\\n36\\n00:02:03,271 --> 00:02:06,128\\nдо тех пор, пока не пройдёт 70 лет со смерти её создателя.\\n\\n37\\n00:02:06,221 --> 00:02:09,314\\nПоэтому текст может быть в общественном достоянии в Италии,\\n\\n38\\n00:02:09,348 --> 00:02:12,666\\nно не в США, и наоборот.\\n\\n39\\n00:02:12,772 --> 00:02:16,358\\nТексты современников могут быть добавлены в Викитеку\\n\\n40\\n00:02:16,424 --> 00:02:19,124\\nтолько если автор недвусмысленно позволил\\n\\n41\\n00:02:19,166 --> 00:02:22,406\\nлюбое использование работы, включая коммерческое.\\n\\n42\\n00:02:22,576 --> 00:02:25,000\\nАвтор, помимо этого, должен\\n\\n43\\n00:02:25,048 --> 00:02:27,961\\nгарантировать свободу производных работ.\\n\\n44\\n00:02:28,023 --> 00:02:31,482\\nВ Викитеке каждый может откорректировать текст,\\n\\n45\\n00:02:31,549 --> 00:02:33,549\\nвот почему ныне практикуется\\n\\n46\\n00:02:33,622 --> 00:02:36,425\\nиспользование полностью отсканированной оригинальной книги.\\n\\n47\\n00:02:36,496 --> 00:02:40,065\\nВ случае, если тексты переписаны откуда-либо ещё, необходимо полагаться\\n\\n48\\n00:02:40,148 --> 00:02:44,873\\nтолько на надёжные источники и включать специальные упоминания.\\n\\n49\\n00:02:45,478 --> 00:02:48,645\\nУчастники Викитеки - секретари цифрового века,\\n\\n50\\n00:02:48,662 --> 00:02:50,839\\nв чьих интересах есть альтруизм,\\n\\n51\\n00:02:50,856 --> 00:02:53,207\\nпереносят текст для свободного доступа.\\n\\n52\\n00:02:53,272 --> 00:02:55,910\\nКаждый текст должен быть аккуратно отмечен,\\n\\n53\\n00:02:55,942 --> 00:02:58,574\\nkeeping into account the writing habits of the time\\n\\n54\\n00:02:58,630 --> 00:03:02,413\\nand the conventions adopted by the community.\\n\\n55\\n00:03:03,187 --> 00:03:05,604\\nПроцесс переноса начинается\\n\\n56\\n00:03:05,622 --> 00:03:07,622\\nс создания индексной страницы,\\n\\n57\\n00:03:07,669 --> 00:03:09,900\\nкоторая ссылается на отсканированную книгу на Викискладе,\\n\\n58\\n00:03:09,969 --> 00:03:14,026\\nсестринском проекте Викитеки, на котором собраны свободные мультимедиа-файлы.\\n\\n59\\n00:03:14,311 --> 00:03:17,069\\nСсылки на каждую страницу\\n\\n60\\n00:03:17,138 --> 00:03:19,234\\nкниги создаются автоматически.\\n\\n61\\n00:03:19,339 --> 00:03:22,100\\nПройдя по ссылке, возможно увидеть\\n\\n62\\n00:03:22,163 --> 00:03:24,260\\nотсканированную страницу, и, в стороне,\\n\\n63\\n00:03:24,305 --> 00:03:27,124\\nблок, в котором будет написано описание.\\n\\n64\\n00:03:27,235 --> 00:03:30,104\\nЗачастую оказывается ненужно переносить текст с нуля,\\n\\n65\\n00:03:30,147 --> 00:03:33,186\\nтак как отсканированную страницу можно обработать программным обеспечением\\n\\n66\\n00:03:33,217 --> 00:03:35,725\\nдля автоматического распознавания текста.\\n\\n67\\n00:03:35,850 --> 00:03:38,507\\nThe graphic layout of the pages is uniformed\\n\\n68\\n00:03:38,570 --> 00:03:41,442\\nby using templates that arrange automatically\\n\\n69\\n00:03:41,483 --> 00:03:45,252\\nformats or repetitive parts of the pages or the texts.\\n\\n70\\n00:03:45,514 --> 00:03:48,625\\nOnce the transcription of all the pages is completed,\\n\\n71\\n00:03:48,654 --> 00:03:51,859\\nthe text is assembled according by its logical structure\\n\\n72\\n00:03:51,934 --> 00:03:54,145\\n(as example, by its chapters).\\n\\n73\\n00:03:54,252 --> 00:03:57,051\\nThe so formatted text is therefore consistent\\n\\n74\\n00:03:57,082 --> 00:03:59,340\\nwith the structure wanted by the author, \\n\\n75\\n00:03:59,378 --> 00:04:02,782\\nbut also adapted for screen reading and printing.\\n\\n76\\n00:04:03,619 --> 00:04:06,646\\nLike Wikipedia, Wikisource is based on a software \\n\\n77\\n00:04:06,707 --> 00:04:09,448\\nthat allows to create hypertextual links, \\n\\n78\\n00:04:09,479 --> 00:04:12,829\\nconnetting the books and the authors of the library with each other.\\n\\n79\\n00:04:12,882 --> 00:04:15,725\\nFor instance, a quote (or an excerpt from an essay) \\n\\n80\\n00:04:15,759 --> 00:04:18,712\\ncan link to the author or to the quoted text.\\n\\n81\\n00:04:19,493 --> 00:04:22,952\\nAt the bottom of each text there are the links to the categories\\n\\n82\\n00:04:23,000 --> 00:04:25,461\\nthat help in organizing books and authors \\n\\n83\\n00:04:25,475 --> 00:04:27,951\\nby type, origin, and so on. \\n\\n84\\n00:04:28,056 --> 00:04:30,511\\nBesides, every text can be linked\\n\\n85\\n00:04:30,549 --> 00:04:32,742\\nto its translations available on the other Wikisources, \\n\\n86\\n00:04:32,798 --> 00:04:34,798\\nto its article on Wikipedia \\n\\n87\\n00:04:34,819 --> 00:04:37,186\\nor to any other Wikimedia project.\\n\\n88\\n00:04:37,469 --> 00:04:40,687\\nEvery author whose works are published on Wikisource \\n\\n89\\n00:04:40,749 --> 00:04:44,586\\nhas a dedicated page, which contains his or her basic information, \\n\\n90\\n00:04:44,640 --> 00:04:47,616\\nthe list of the available texts\\n\\n91\\n00:04:47,640 --> 00:04:49,640\\nand other relevant information, \\n\\n92\\n00:04:49,696 --> 00:04:53,502\\nsuch as the works in which the author is quoted and the related authors.\\n\\n93\\n00:04:53,780 --> 00:04:57,355\\nHere as well, there are links pointing to the pages about the author \\n\\n94\\n00:04:57,410 --> 00:05:02,153\\navailable on other Wikimedia projects and other languages.\\n\\n95\\n00:05:02,333 --> 00:05:06,430\\nFinally, we mention the portals, that offer guided paths\\n\\n96\\n00:05:06,470 --> 00:05:09,616\\nthrough the published texts about a given topic.\\n\\n97\\n00:05:11,060 --> 00:05:14,525\\nIn Wikisource, like in Wikipedia, we have the administrators, \\n\\n98\\n00:05:14,602 --> 00:05:17,541\\nexpert users trusted by the community\\n\\n99\\n00:05:17,567 --> 00:05:19,567\\nwho can access \\n\\n100\\n00:05:19,622 --> 00:05:22,126\\nsome advanced management functions of the software.\\n\\n101\\n00:05:22,168 --> 00:05:25,461\\nWith their experience, they act as real librarians\\n\\n102\\n00:05:25,500 --> 00:05:27,799\\ntutoring the other users.\\n\\n103\\n00:05:28,693 --> 00:05:31,682\\nThe meeting point of the Wikisource users is the Bar, \\n\\n104\\n00:05:31,693 --> 00:05:34,385\\nwhere we can pose questions to the more experienced users\\n\\n105\\n00:05:34,413 --> 00:05:36,694\\nand start new discusions.\\n\\n106\\n00:05:36,784 --> 00:05:39,678\\nIn order to best handle some specific topics \\n\\n107\\n00:05:39,748 --> 00:05:42,992\\nthere are some dedicated pages: the thematic projects. \\n\\n108\\n00:05:43,046 --> 00:05:45,046\\nOn the Italian version of Wikisource \\n\\n109\\n00:05:45,119 --> 00:05:47,784\\nthey are the heart of the activity and the meeting point\\n\\n110\\n00:05:47,822 --> 00:05:51,135\\nfor those users interested in a particular topic.\\n\\n111\\n00:05:51,434 --> 00:05:54,070\\nFor showing the advancement of the transcription process \\n\\n112\\n00:05:54,102 --> 00:05:56,402\\nof a given text or its part\\n\\n113\\n00:05:56,437 --> 00:05:59,859\\na 5-step system is used. \\n\\n114\\n00:06:00,137 --> 00:06:02,347\\nWhen the text is complete in every part, \\n\\n115\\n00:06:02,385 --> 00:06:05,805\\ncorrectly formatted and proofread by two or more users\\n\\n116\\n00:06:05,874 --> 00:06:08,890\\ncomparing the original paper source, it\\'s awarded with the star, \\n\\n117\\n00:06:08,944 --> 00:06:12,526\\nthat qualifies it as a \"Wikisource Edition\".\\n\\n118\\n00:06:12,731 --> 00:06:15,311\\nAnd for focusing the energies of many users, \\n\\n119\\n00:06:15,346 --> 00:06:17,850\\none or more texts are chosen every month\\n\\n120\\n00:06:17,892 --> 00:06:20,521\\nto be proofread and revised together.\\n\\n121\\n00:06:21,242 --> 00:06:23,416\\nWith Wikisource you can show \\n\\n122\\n00:06:23,455 --> 00:06:25,843\\nall your love for the books, saving them from the oblivion\\n\\n123\\n00:06:25,861 --> 00:06:28,776\\nand making them available for everyone on the net. \\n\\n124\\n00:06:29,140 --> 00:06:31,140\\nJoin in Wikisource \\n\\n125\\n00:06:31,161 --> 00:06:34,216\\nand build you too a free library.',\n", + " 'bytes': 12664,\n", + " 'sha1': '0dseymjmhw1b3ets7b16t0lbc57eq7p',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55227893,\n", + " 'timestamp': '2011-06-07T05:16:52Z',\n", + " 'user': {'id': 535519, 'text': 'Mikołka'},\n", + " 'page': {'id': 15429461,\n", + " 'title': 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'to be translated',\n", + " 'text': '1\\n00:00:08,860 --> 00:00:11,674\\nWikiźródła to cyfrowa biblioteka dostępna online,\\n\\n2\\n00:00:11,698 --> 00:00:14,610\\nzawierająca teksty opublikowane w wielu językach,\\n\\n3\\n00:00:14,631 --> 00:00:18,947\\njeżeli tylko dostępne są na wolnych licencjach lub w domenie publicznej.\\n\\n4\\n00:00:19,057 --> 00:00:21,556\\nTak jak i inne projekty Fundacji Wikimedia,\\n\\n5\\n00:00:21,607 --> 00:00:24,997\\nWikiźródła mogą być edytowane przez każdą osobę chętną do współpracy.\\n\\n6\\n00:00:25,039 --> 00:00:27,126\\nNawet anonimowo.\\n\\n7\\n00:00:27,918 --> 00:00:31,750\\nTeksty do Wikiźródeł są przepisywane z oryginalnych publikacji\\n\\n8\\n00:00:31,764 --> 00:00:34,695\\ni formatowane dla wygody czytelników.\\n\\n9\\n00:00:34,815 --> 00:00:38,255\\nPowieści i opowiadania, eseje i instrukcje obsługi,\\n\\n10\\n00:00:38,299 --> 00:00:43,289\\nmodlitweniki i plakaty polityczne, teksty piosenek i poematów,\\n\\n11\\n00:00:43,336 --> 00:00:47,899\\nbaśnie i dziecinne wierszyki, dokumenty prawne, prace naukowe\\n\\n12\\n00:00:47,959 --> 00:00:50,565\\ni dysertacje, które przeszły już proces obrony\\n\\n13\\n00:00:50,596 --> 00:00:53,132\\nna uniwersytecie lub politechnice.\\n\\n14\\n00:00:53,286 --> 00:00:57,167\\nTak jak Wikipedia, projekt jest rozwijany w wielu wersjach językowych:\\n\\n15\\n00:00:57,252 --> 00:01:00,502\\nw angielskich Wikiźródłach publikowane są teksty w języku angielskim,\\n\\n16\\n00:01:00,563 --> 00:01:04,436\\nwe francuskich, w języku francuskim, itd.\\n\\n17\\n00:01:04,564 --> 00:01:06,930\\nZbieramy teksty we wszystkich językach,\\n\\n18\\n00:01:06,995 --> 00:01:09,373\\nnawet te, które napisane są w dialektach,\\n\\n19\\n00:01:09,425 --> 00:01:12,455\\nktórymi posługuje się jedynie niewielka liczba ludzi.\\n\\n20\\n00:01:12,546 --> 00:01:15,058\\nTłumaczenia obwarowane są pewnymi warunkami\\n\\n21\\n00:01:15,094 --> 00:01:18,599\\nche sono opere derivate: non possono dunque essere inseriti \\n\\n22\\n00:01:18,649 --> 00:01:22,314\\ntesti tradotti non pubblicati e sia il testo che la traduzione \\n\\n23\\n00:01:22,340 --> 00:01:26,855\\ndevono essere di pubblico dominio o rilasciati con una licenza libera.\\n\\n24\\n00:01:27,653 --> 00:01:30,714\\nOgni testo in Wikisource deve poter essere copiato \\n\\n25\\n00:01:30,792 --> 00:01:33,903\\ne utilizzato come base per creare opere derivate, \\n\\n26\\n00:01:33,947 --> 00:01:35,947\\nanche per scopi commerciali.\\n\\n27\\n00:01:36,049 --> 00:01:38,521\\nDeve dunque essere stato distribuito con una licenza \\n\\n28\\n00:01:38,571 --> 00:01:41,952\\nche concede queste libertà oppure devono essere decaduti \\n\\n29\\n00:01:42,020 --> 00:01:45,091\\ni diritti d’autore sull’opera, sia negli Stati Uniti, \\n\\n30\\n00:01:45,121 --> 00:01:47,295\\ndove si trovano i server di Wikisource, \\n\\n31\\n00:01:47,344 --> 00:01:50,206\\nche nel paese di pubblicazione del testo.\\n\\n32\\n00:01:51,271 --> 00:01:54,115\\nAllo stato attuale, in base alla legge americana, \\n\\n33\\n00:01:54,196 --> 00:01:56,372\\nsono sicuramente di pubblico dominio \\n\\n34\\n00:01:56,443 --> 00:01:59,539\\nsolo le opere pubblicate prima del 1923. \\n\\n35\\n00:01:59,745 --> 00:02:03,243\\nPer lo stato italiano invece l’opera è coperta da copyright \\n\\n36\\n00:02:03,271 --> 00:02:06,128\\nfino a 70 anni dopo la morte del suo creatore.\\n\\n37\\n00:02:06,221 --> 00:02:09,314\\nUn testo potrebbe dunque essere già di pubblico dominio in Italia \\n\\n38\\n00:02:09,348 --> 00:02:12,666\\nma non ancora negli Stati Uniti e viceversa.\\n\\n39\\n00:02:12,772 --> 00:02:16,358\\nUn testo contemporaneo invece, può essere inserito in Wikisource \\n\\n40\\n00:02:16,424 --> 00:02:19,124\\nsolo se l’autore ha autorizzato esplicitamente \\n\\n41\\n00:02:19,166 --> 00:02:22,406\\nqualsiasi uso dell’opera, anche commerciale.\\n\\n42\\n00:02:22,576 --> 00:02:25,000\\nL\\'autore può comunque esigere \\n\\n43\\n00:02:25,048 --> 00:02:27,961\\nla concessione delle stesse libertà sulle opere derivate. \\n\\n44\\n00:02:28,023 --> 00:02:31,482\\nIn Wikisource, chiunque dovrebbe poter revisionare il testo \\n\\n45\\n00:02:31,549 --> 00:02:33,549\\ned è per questo che è ormai prassi \\n\\n46\\n00:02:33,622 --> 00:02:36,425\\nl\\'utilizzo della scansione completa del libro originale.\\n\\n47\\n00:02:36,496 --> 00:02:40,065\\nNel caso di testi già trascritti altrove è necessario affidarsi \\n\\n48\\n00:02:40,148 --> 00:02:44,873\\nsolo a fonti attendibili e inserire precisi riferimenti bibliografici.\\n\\n49\\n00:02:45,478 --> 00:02:48,645\\nI Wikisourciani sono amanuensi dell\\'era digitale \\n\\n50\\n00:02:48,662 --> 00:02:50,839\\nche per passione o altruismo\\n\\n51\\n00:02:50,856 --> 00:02:53,207\\ntrascrivono i testi liberamente disponibili. \\n\\n52\\n00:02:53,272 --> 00:02:55,910\\nOgni testo deve essere riportato fedelmente, \\n\\n53\\n00:02:55,942 --> 00:02:58,574\\ntenendo conto delle prassi di scrittura dell\\'epoca \\n\\n54\\n00:02:58,630 --> 00:03:02,413\\ne delle convenzioni di trascrizione stabilite dalla comunità.\\n\\n55\\n00:03:03,187 --> 00:03:05,604\\nIl percorso di trascrizione comincia \\n\\n56\\n00:03:05,622 --> 00:03:07,622\\ncon la creazione di una pagina \"indice\", \\n\\n57\\n00:03:07,669 --> 00:03:09,900\\nche richiama il libro scansionato da Commons, \\n\\n58\\n00:03:09,969 --> 00:03:14,026\\nil progetto fratello di Wikisource che raccoglie file multimediali liberi.\\n\\n59\\n00:03:14,311 --> 00:03:17,069\\nAutomaticamente vengono generati i collegamenti \\n\\n60\\n00:03:17,138 --> 00:03:19,234\\nad ogni singola pagina dell\\'opera.\\n\\n61\\n00:03:19,339 --> 00:03:22,100\\nCliccando su un collegamento è possibile visualizzare \\n\\n62\\n00:03:22,163 --> 00:03:24,260\\nla scansione del testo e a lato \\n\\n63\\n00:03:24,305 --> 00:03:27,124\\nil riquadro in cui viene effettuata la trascrizione.\\n\\n64\\n00:03:27,235 --> 00:03:30,104\\nSpesso non è necessario trascrivere da zero il testo, \\n\\n65\\n00:03:30,147 --> 00:03:33,186\\nperché la pagina scannerizzata viene elaborata da un software\\n\\n66\\n00:03:33,217 --> 00:03:35,725\\nin grado di riconoscere i caratteri.\\n\\n67\\n00:03:35,850 --> 00:03:38,507\\nL\\'aspetto grafico delle pagine è uniformato \\n\\n68\\n00:03:38,570 --> 00:03:41,442\\ngrazie all\\'uso di modelli che riportano in modo automatico \\n\\n69\\n00:03:41,483 --> 00:03:45,252\\nformattazioni o parti ripetitive delle pagine o dei testi.\\n\\n70\\n00:03:45,514 --> 00:03:48,625\\nUna volta completata la trascrizione di tutte le pagine, \\n\\n71\\n00:03:48,654 --> 00:03:51,859\\nil testo viene assemblato in base alla sua struttura logica \\n\\n72\\n00:03:51,934 --> 00:03:54,145\\n(ad esempio nei suoi capitoli).\\n\\n73\\n00:03:54,252 --> 00:03:57,051\\nIl testo è così formattato in modo da essere conforme \\n\\n74\\n00:03:57,082 --> 00:03:59,340\\nalla strutturazione voluta dall’autore, \\n\\n75\\n00:03:59,378 --> 00:04:02,782\\nma anche adattato per la lettura a schermo e la stampa.\\n\\n76\\n00:04:03,619 --> 00:04:06,646\\nCome Wikipedia, Wikisource è gestito da un software \\n\\n77\\n00:04:06,707 --> 00:04:09,448\\nche consente di creare collegamenti ipertestuali, \\n\\n78\\n00:04:09,479 --> 00:04:12,829\\nconnettendo fra loro i vari libri e autori della biblioteca.\\n\\n79\\n00:04:12,882 --> 00:04:15,725\\nAd esempio, una citazione (o un brano di un saggio) \\n\\n80\\n00:04:15,759 --> 00:04:18,712\\npuò rimandare all\\'autore o al testo che cita.\\n\\n81\\n00:04:19,493 --> 00:04:22,952\\nIn fondo ad ogni testo si trovano i collegamenti alle categorie \\n\\n82\\n00:04:23,000 --> 00:04:25,461\\nche aiutano ad organizzare opere e autori \\n\\n83\\n00:04:25,475 --> 00:04:27,951\\nper tipologia, provenienza, eccetera. \\n\\n84\\n00:04:28,056 --> 00:04:30,511\\nInoltre ogni testo può essere collegato \\n\\n85\\n00:04:30,549 --> 00:04:32,742\\nalle sue traduzioni in altre Wikisource, \\n\\n86\\n00:04:32,798 --> 00:04:34,798\\nalla sua pagina su Wikipedia \\n\\n87\\n00:04:34,819 --> 00:04:37,186\\no a qualunque altro progetto Wikimedia.\\n\\n88\\n00:04:37,469 --> 00:04:40,687\\nOgni autore le cui opere sono pubblicate su Wikisource \\n\\n89\\n00:04:40,749 --> 00:04:44,586\\nha una pagina dedicata, che contiene le sue generalità minime, \\n\\n90\\n00:04:44,640 --> 00:04:47,616\\nla lista dei testi disponibili per la consultazione \\n\\n91\\n00:04:47,640 --> 00:04:49,640\\ned eventualmente altre informazioni, \\n\\n92\\n00:04:49,696 --> 00:04:53,502\\ncome le opere in cui l\\'autore è citato o gli autori correlati.\\n\\n93\\n00:04:53,780 --> 00:04:57,355\\nAnche qui sono presenti i collegamenti verso le pagine sull\\'autore \\n\\n94\\n00:04:57,410 --> 00:05:02,153\\ndisponibili in altri progetti Wikimedia e in altre edizioni linguistiche.\\n\\n95\\n00:05:02,333 --> 00:05:06,430\\nVanno annoverati infine i portali, che offrono percorsi di lettura \\n\\n96\\n00:05:06,470 --> 00:05:09,616\\ntra i testi della biblioteca su uno specifico argomento.\\n\\n97\\n00:05:11,060 --> 00:05:14,525\\nIn Wikisource, come in Wikipedia, ci sono gli amministratori, \\n\\n98\\n00:05:14,602 --> 00:05:17,541\\novvero utenti esperti che hanno la fiducia della comunità \\n\\n99\\n00:05:17,567 --> 00:05:19,567\\ne a cui sono stati attivati \\n\\n100\\n00:05:19,622 --> 00:05:22,126\\ndegli strumenti di gestione del software più avanzati.\\n\\n101\\n00:05:22,168 --> 00:05:25,461\\nLa loro esperienza li rende di fatto dei veri e propri bibliotecari \\n\\n102\\n00:05:25,500 --> 00:05:27,799\\nche fanno da tutor agli altri utenti.\\n\\n103\\n00:05:28,693 --> 00:05:31,682\\nIl punto d\\'incontro dei wikisourciani è il Bar, \\n\\n104\\n00:05:31,693 --> 00:05:34,385\\ndove si possono porre domande agli utenti più esperti \\n\\n105\\n00:05:34,413 --> 00:05:36,694\\ne avviare nuove discussioni.\\n\\n106\\n00:05:36,784 --> 00:05:39,678\\nPer gestire al meglio ambiti specifici esistono \\n\\n107\\n00:05:39,748 --> 00:05:42,992\\ndelle pagine dedicate: i progetti tematici. \\n\\n108\\n00:05:43,046 --> 00:05:45,046\\nNella versione italiana di Wikisource \\n\\n109\\n00:05:45,119 --> 00:05:47,784\\nrappresentano il cuore dell\\'attività e sono il ritrovo \\n\\n110\\n00:05:47,822 --> 00:05:51,135\\nper coloro che sono interessati ad un particolare argomento.\\n\\n111\\n00:05:51,434 --> 00:05:54,070\\nPer indicare lo stato di avanzamento dei lavori \\n\\n112\\n00:05:54,102 --> 00:05:56,402\\nsu uno specifico testo o una sua parte \\n\\n113\\n00:05:56,437 --> 00:05:59,859\\nsi usa un sistema suddiviso in 5 tappe fondamentali. \\n\\n114\\n00:06:00,137 --> 00:06:02,347\\nQuando il testo è completo in ogni sua parte, \\n\\n115\\n00:06:02,385 --> 00:06:05,805\\nformattato correttamente e riletto da due o più utenti \\n\\n116\\n00:06:05,874 --> 00:06:08,890\\nusando la fonte cartacea, riceve la stelletta, \\n\\n117\\n00:06:08,944 --> 00:06:12,526\\nche ne attribuisce lo status di \"Edizioni Wikisource\".\\n\\n118\\n00:06:12,731 --> 00:06:15,311\\nE per concentrare gli sforzi di più utenti, \\n\\n119\\n00:06:15,346 --> 00:06:17,850\\nogni mese vengono scelti uno o più testi \\n\\n120\\n00:06:17,892 --> 00:06:20,521\\nda rileggere e correggere insieme.\\n\\n121\\n00:06:21,242 --> 00:06:23,416\\nCon Wikisource puoi dunque dimostrare \\n\\n122\\n00:06:23,455 --> 00:06:25,843\\nil tuo amore per i libri, salvandoli dall\\'oblio \\n\\n123\\n00:06:25,861 --> 00:06:28,776\\ne rendendoli disponibili per chiunque, nella rete. \\n\\n124\\n00:06:29,140 --> 00:06:31,140\\nPartecipa a Wikisource \\n\\n125\\n00:06:31,161 --> 00:06:34,216\\ne costruisci anche tu una biblioteca libera.',\n", + " 'bytes': 10667,\n", + " 'sha1': 'f0yqvcwaj8y61wafntud61k1e3sxv04',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55408732,\n", + " 'timestamp': '2011-06-12T13:04:17Z',\n", + " 'user': {'id': 245453, 'text': 'Otourly'},\n", + " 'page': {'id': 15485936,\n", + " 'title': 'Chocolate cake.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,458 --> 00:00:04,416\\n6 œufs; 150 g beurre; 225 g sucre; 225 g chocolat en poudre; 100 g farine; 250 g chocolat noir; 2.5 dl crème\\n\\n2\\n00:00:04,416 --> 00:00:15,916\\nécraser le beurre\\n\\n3\\n00:00:15,916 --> 00:00:47,416\\nAjouter le sucre\\n\\n4\\n00:00:47,416 --> 00:01:00,291\\nSéparer les blancs des jaunes\\n\\n5\\n00:01:00,291 --> 00:01:30,166\\nAjouter les jaunes\\n\\n6\\n00:01:30,166 --> 00:02:07,458\\nAjouter le chocolat en poudre\\n\\n7\\n00:02:07,458 --> 00:02:44,916\\nBattre les blancs en neige\\n\\n8\\n00:02:44,916 --> 00:02:45,416\\nAjouter la farine et les blancs alternativement\\n\\n8.5\\n00:02:45,416 --> 00:02:45,916\\n\\n\\n9\\n00:05:08,958 --> 0-1:0-1:0-1\\nFaire fondre délicatement le chocolat noir\\n\\n10\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nAjouter la crème\\n\\n11\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n12\\n0-1:0-1:0-1 --> 0-1:0-1:0-1',\n", + " 'bytes': 791,\n", + " 'sha1': 'iabig7087b92uz6mixpohx3xe33yf3z',\n", + " 'parent_id': 55408497,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55548061,\n", + " 'timestamp': '2011-06-16T10:16:53Z',\n", + " 'user': {'id': 1241291, 'text': 'DancingPhilosopher'},\n", + " 'page': {'id': 15525462,\n", + " 'title': 'Edit Button.ogv.sl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:01,114 --> 00:00:02,414 Tamle je gumb \"Uredi\" 2 00:00:02,530 --> 00:00:03,830 Enostavno klikni nanj, 3 00:00:03,830 --> 00:00:06,664 poišči besede v be...\\'',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nTamle je gumb \"Uredi\"\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nEnostavno klikni nanj,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\npoišči besede v besedilu, in popravi\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\npotem na dnu klikni \"Shrani/predogled\". Čisto enostavno.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nPri Wikipediji je super to,\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\nda lahko spreminjaš stvari.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nin za to ne potrebuješ dovoljenja\\n\\n8\\n00:00:14,066 --> 00:00:15,325\\nin ni težko.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nLahko, da na začetku zgleda strašljivo,\\n\\n10\\n00:00:17,809 --> 00:00:19,829\\nampak v resnici ni tako.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nLjudje, kot bi bili slepi, ne dojamejo tega.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nLjudje berejo Wikipedijo in ne vidijo gumba \"Uredi\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nKlikni nanj in poglej kaj se zgodi.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Uredi.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nKo odpreš svoj um in\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\nzačneš spreminjati,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\nse dogaja vse mogoče,\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nin to je res lepo.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nLahko to postane nov začetek,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\npovabilo k nečemu živemu, morda.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nKo se začne pisati nov članek, nam ni všeč,\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nker zgleda grdo.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nAmpak počakaj ... nekaj ur (na angl.W.)\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\nin opazuj kako grdi raček postaja super članek.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nTale gumb. \"Uredi\". Klikni nanj, spremeni kaj,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nshrani, in ves svet lahko vidi.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Shrani\"',\n", + " 'bytes': 1761,\n", + " 'sha1': 'peh2hfk5mbs3dgkdzgmkwwjdgt5xwzo',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 103812410,\n", + " 'timestamp': '2013-09-08T13:17:49Z',\n", + " 'user': {'id': 849234, 'text': 'Morn'},\n", + " 'page': {'id': 15547887,\n", + " 'title': 'Berlin airlift.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0.5\\n00:00:12,565 --> 00:00:18,979\\nBERLIN AIR-LIFT\\n\\n0.75\\n00:00:19,799 --> 00:00:26,681\\nThe Story of a Great Achievement\\n\\n1\\n00:00:27,697 --> 00:00:30,614\\nThis is a a story of the Berlin Air-Lift\\n\\n2\\n00:00:30,614 --> 00:00:32,919\\nThe operation carried out by the Royal Air Force\\n\\n3\\n00:00:32,919 --> 00:00:35,931\\nand the United States Air Force to supply two and quarter million\\n\\n4\\n00:00:35,947 --> 00:00:40,91\\npeople of Berlin with food, coal, and other necessities of life.\\n\\n5\\n00:00:40,91 --> 00:00:44,517\\nIn June 1948, all road and rail communications between\\n\\n6\\n00:00:44,517 --> 00:00:49,624\\nthe allied zones and the western sectors of Berlin were closed by the Russians.\\n\\n7\\n00:00:49,624 --> 00:00:52,677\\nBy the 28th of June the only way into Berlin was by air\\n\\n8\\n00:00:52,677 --> 00:00:56,224\\nand the first RAF aircraft started this colossal undertaking\\n\\n9\\n00:00:56,224 --> 00:00:59,19\\naccording to many predictions, an impossible one to maintain\\n\\n10\\n00:00:59,19 --> 00:01:03,874\\nfor any length of time, especially during winter.\\n\\n11\\n00:01:06,705 --> 00:01:10,057\\nAircraft began their ceaseless drone into blockaded Berlin\\n\\n12\\n00:01:10,057 --> 00:01:13,879\\nusing all available airfields in the Western Zone.\\n\\n13\\n00:01:13,879 --> 00:01:17,039\\nIn the first three days, 500 landings were achieved.\\n\\n14\\n00:01:17,039 --> 00:01:19,279\\nBut with the aid of the United States Air Force,\\n\\n15\\n00:01:19,279 --> 00:01:23,042\\nthe number by October to 600 per day.\\n\\n16\\n00:01:23,073 --> 00:01:25,814\\nSunderland flying boats of Coastal Command were ordered in \\n\\n16.5\\n00:01:25,814 --> 00:01:28,087\\nto supplement the land-based planes\\n\\n17\\n00:01:28,087 --> 00:01:30,291\\nThese took off from the Elbe at Hamburg and\\n\\n18\\n00:01:30,291 --> 00:01:32,956\\nand came down on one of Berlin\\'s lakes.\\n\\n19\\n00:01:32,956 --> 00:01:36,177\\nFood, still more food, and raw materials\\n\\n20\\n00:01:36,193 --> 00:01:38,29\\nhad to be poured across the aerial bridge\\n\\n21\\n00:01:38,29 --> 00:01:42,067\\ninto the blockaded city.\\n\\n22\\n00:01:52,528 --> 00:01:56,599\\nOnly one narrow corridor led from the base on the Elbe\\n\\n23\\n00:01:56,599 --> 00:01:59,913\\nnear Hamburg, to the unloading base at Havel Lake\\n\\n24\\n00:01:59,913 --> 00:02:03,367\\nin the British sector of Berlin.\\n\\n25\\n00:02:04,705 --> 00:02:07,239\\nWithin four days of the decision to use them, the first\\n\\n26\\n00:02:07,239 --> 00:02:10,039\\ngiant boats, each carrying five tons of vital\\n\\n27\\n00:02:10,039 --> 00:02:13,719\\nmaterial, were on air transport service\\n\\n28\\n00:02:13,719 --> 00:02:16,285\\n[air traffic controller talking]\\n\\n29\\n00:02:47,331 --> 00:02:51,599\\nThey were soon winging their way daily over\\n\\n30\\n00:02:51,599 --> 00:02:54,399\\nthe port of Hamburg, destination Berlin\\n\\n31\\n00:02:54,399 --> 00:03:17,011\\n[song: \"I\\'ve Got Sixpence\"]\\n\\n37\\n00:03:17,011 --> 00:03:19,819\\nPast the Olympic Stadium, and presently over\\n\\n38\\n00:03:19,819 --> 00:03:26,199\\nthe only power station left working in the Western Sector.\\n\\n39\\n00:03:36,922 --> 00:03:40,679\\nImmediately on landing, unloading commences\\n\\n40\\n00:03:40,679 --> 00:03:48,159\\nand the machines are prepared for the return journey.\\n\\n41\\n00:03:55,79 --> 00:04:24,279\\n[song: \"I\\'ve Got Sixpence\", continued]\\n\\n47\\n00:04:24,279 --> 00:04:27,082\\nOn the return trip, exportable freight was carried,\\n\\n48\\n00:04:27,097 --> 00:04:29,436\\nand the opportunity taken to remove\\n\\n49\\n00:04:29,436 --> 00:04:33,842\\nsome of Berlin\\'s sick children for convalescence.\\n\\n51\\n00:04:33,842 --> 00:04:37,039\\nOnly the very worst weather kept allied\\n\\n52\\n00:04:37,039 --> 00:04:41,276\\naircraft out of the sky.\\n\\n53\\n00:04:53,799 --> 00:04:56,519\\nEven through storms and mists, the hazardous\\n\\n54\\n00:04:56,519 --> 00:05:00,024\\nchain of supply went on.\\n\\n55\\n00:05:10,239 --> 00:05:15,787\\nAs dusk falls, Sunderlands tie up for the night.\\n\\n56\\n00:05:15,787 --> 00:05:18,647\\nAlthough doing valulable service,\\n\\n57\\n00:05:18,647 --> 00:05:20,476\\nthe Sunderlands\\' part was small compared\\n\\n58\\n00:05:20,476 --> 00:05:24,187\\nto the land-based planes\\n\\n59\\n00:05:25,648 --> 00:05:27,685\\nThese indefatigable blockade runners\\n\\n60\\n00:05:27,685 --> 00:05:31,691\\ncarried on throughout the night and into the dawn.\\n\\n62\\n00:05:42,079 --> 00:05:44,651\\nNight and day, week after week, it was a case of\\n\\n63\\n00:05:44,651 --> 00:05:48,31\\nmore planes, more food, more raw material\\n\\n64\\n00:05:48,31 --> 00:05:51,356\\nshipped without pause from eight different airfields\\n\\n65\\n00:05:51,356 --> 00:05:54,611\\nin the Western Zone.\\n\\n66\\n00:06:00,719 --> 00:06:02,654\\nMonth after month, the tempo of flights\\n\\n67\\n00:06:02,654 --> 00:06:04,627\\nwas stepped up, and by Christmas, American\\n\\n68\\n00:06:04,627 --> 00:06:06,657\\nand British planes had made a hundered\\n\\n69\\n00:06:06,657 --> 00:06:11,156\\nthousand trips, and carried a total of 730,000 tons into Berlin.\\n\\n70\\n00:06:11,156 --> 00:06:13,919\\nEven cars were transported, but\\n\\n71\\n00:06:13,919 --> 00:06:16,722\\ncoal, equally as vital to Berlin as bread, was\\n\\n72\\n00:06:16,722 --> 00:06:19,719\\nthe greatest load of all.\\n\\n73\\n00:06:19,719 --> 00:06:26,159\\nOver one million tons had now been flown in.\\n\\n74\\n00:06:26,159 --> 00:06:28,559\\nHundreds of planes of all types and sizes,\\n\\n75\\n00:06:28,559 --> 00:06:30,039\\nmilitary and civil, were pressed into service.\\n\\n76\\n00:06:30,039 --> 00:06:35,261\\nThe RAF York, load nine tons.\\n\\n77\\n00:06:35,261 --> 00:06:39,076\\nThe Halifax, over six tons.\\n\\n78\\n00:06:39,076 --> 00:06:42,888\\nThe Viking, over three tons.\\n\\n79\\n00:06:50,088 --> 00:06:53,368\\nThe RAF Dakota, three tons.\\n\\n80\\n00:06:53,368 --> 00:06:56,319\\nThe civil Tudor, eight tons.\\n\\n81\\n00:06:56,319 --> 00:07:00,359\\nAnd what the Berliners call the Großer Tudor, ten tons.\\n\\n83\\n00:07:08,759 --> 00:07:10,879\\nAs an additional boost to the airlift, the RAF\\n\\n84\\n00:07:10,879 --> 00:07:14,113\\nintroduced its Hastings, each carrying over nine tons.\\n\\n86\\n00:07:14,113 --> 00:07:17,519\\nAt the three airfields in Berlin, Gatow, Tempelhof\\n\\n87\\n00:07:17,519 --> 00:07:20,239\\nand Tegel, aircraft were landing or taking off\\n\\n88\\n00:07:20,239 --> 00:07:23,297\\nevery ninety seconds.\\n\\n89\\n00:07:25,697 --> 00:07:28,171\\nMany notabilities visited Berlin to see the\\n\\n90\\n00:07:28,171 --> 00:07:30,101\\nworkings of this magnificent achievement,\\n\\n91\\n00:07:30,101 --> 00:07:32,479\\nand to praise the great work of the British and\\n\\n92\\n00:07:32,479 --> 00:07:35,359\\nAmerican ground and air personnel\\n\\n93\\n00:07:35,359 --> 00:07:41,131\\nChief of the Air Staff, Lord Tedder\\n\\n94\\n00:07:41,131 --> 00:07:44,611\\nand the Foreign Secretary, Mr Bevin, whose diplomacy\\n\\n95\\n00:07:44,611 --> 00:07:46,485\\nwas much aided by the success of the airlift.\\n\\n96\\n00:07:46,485 --> 00:07:49,759\\nHe added his tribute when he visited Berlin\\n\\n97\\n00:07:49,759 --> 00:07:54,645\\non the eve of the lifting of the blockade in May 1949.\\n\\n99\\n00:08:04,759 --> 00:08:06,753\\nFor ten whole months, a ceaseless stream of\\n\\n100\\n00:08:06,753 --> 00:08:09,134\\nallied aircraft landed in Berlin, where\\n\\n101\\n00:08:09,134 --> 00:08:12,171\\nGermans, supervised by British Army personnel,\\n\\n102\\n00:08:12,171 --> 00:08:14,55\\neagerly unloaded the vital supplies.\\n\\n103\\n00:08:14,55 --> 00:08:17,119\\nAircrews of the RAF, and Commonwealth crews from\\n\\n104\\n00:08:17,119 --> 00:08:20,439\\nAustralia, New Zealand, and South Africa, together with their\\n\\n106\\n00:08:20,439 --> 00:08:23,759\\nBritish charter colleagues, all of them played their part with\\n\\n107\\n00:08:23,759 --> 00:08:27,528\\nthe United States Air Force in maintaining this nonstop operation,\\n\\n108\\n00:08:27,528 --> 00:08:29,559\\na combined operation, which on one day,\\n\\n109\\n00:08:29,559 --> 00:08:33,993\\nlanded in Berlin a record load of nearly thirteen thousand tons.\\n\\n110\\n00:08:33,993 --> 00:08:36,639\\nThat is equivalent to the normal tonnage moved daily\\n\\n111\\n00:08:36,639 --> 00:08:38,799\\nby surface transport before the blockade.\\n\\n112\\n00:08:38,799 --> 00:08:47,679\\nNewsprint for Berlin\\'s democratic press comes in.\\n\\n113\\n00:08:47,679 --> 00:08:51,288\\nMail, for the outside world, goes out.\\n\\n114\\n00:09:45,319 --> 00:09:48,119\\nYes, the life of Berlin has been maintained,\\n\\n115\\n00:09:48,119 --> 00:09:50,959\\nbut not without the loss of 43 airmen\\n\\n116\\n00:09:50,959 --> 00:09:53,919\\nwho gave their lives in this vital operation,\\n\\n117\\n00:09:53,919 --> 00:09:56,079\\nthe most outstanding transport achievement\\n\\n118\\n00:09:56,079 --> 00:09:58,919\\nin the history of aviation.\\n\\n119\\n00:09:58,919 --> 00:10:01,377\\nThe airlift carries on.\\n\\n120\\n00:10:05,193 --> 00:10:09,362\\nThe End',\n", + " 'bytes': 8335,\n", + " 'sha1': 'pcj4xr5skh2yy7frudyca3dpg2gobpe',\n", + " 'parent_id': 55641039,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55641040,\n", + " 'timestamp': '2011-06-18T17:22:28Z',\n", + " 'user': {'id': 883069, 'text': 'Innotata'},\n", + " 'page': {'id': 15547937,\n", + " 'title': 'Berlin airlift.ogv.undefined.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:Berlin airlift.ogv.en.srt',\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'moved [[TimedText:Berlin airlift.ogv.undefined.srt]] to [[TimedText:Berlin airlift.ogv.en.srt]]',\n", + " 'text': '#REDIRECT [[TimedText:Berlin airlift.ogv.en.srt]]',\n", + " 'bytes': 49,\n", + " 'sha1': 'asr45d66aqe0ydmbmddzgqdvbwh8u76',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55654303,\n", + " 'timestamp': '2011-06-19T00:05:20Z',\n", + " 'user': {'id': 883069, 'text': 'Innotata'},\n", + " 'page': {'id': 15551123,\n", + " 'title': 'US Supports No-Fly Zone Against Libya.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:US Supports No-Fly Zone Against Libya.ogv.undefined.srt]] to [[TimedText:US Supports No-Fly Zone Against Libya.ogv.en.srt]]',\n", + " 'text': '1\\n00:00:11,331 --> 00:00:14,64\\nLibyan troops loyal to Muammar Qaddafi continue their march eastward,\\n\\n2\\n00:00:14,64 --> 00:00:17,247\\ntoward the rebel stronghold of Benghazi,\\n\\n3\\n00:00:17,247 --> 00:00:21,659\\nand opposition leaders are warning of the risk of genocide\\n\\n4\\n00:00:21,659 --> 00:00:23,799\\namong civilians who might be caught in this crossfire.\\n\\n5\\n00:00:23,799 --> 00:00:26,018\\nThe possibility of a deadly siege of Benghazi\\n\\n6\\n00:00:26,018 --> 00:00:28,645\\napparently prompted the Obama administration\\n\\n7\\n00:00:28,645 --> 00:00:31,754\\nto back a resolution of the U.N. Security Council that would give the\\n\\n8\\n00:00:31,754 --> 00:00:36,21\\ninternational community several options to help the rebels.\\n\\n9\\n00:00:36,21 --> 00:00:39,389\\nSusan Rice, U.S. ambassador to the United Nations, says Washington is\\n\\n10\\n00:00:39,389 --> 00:00:43,488\\nwilling to consider measures beyond a no-fly zone.\\n\\n11\\n00:00:43,488 --> 00:00:48,634\\nRice: \"The U.S. view is that we need to be prepared to contemplate steps\\n\\n12\\n00:00:48,634 --> 00:00:52,277\\nthat include but perhaps go beyond a no-fly zone.\\n\\n13\\n00:00:52,277 --> 00:00:56,222\\nAt this point, as the situation on the ground has evolved,\\n\\n14\\n00:00:56,222 --> 00:01:04,975\\nand as a no-fly zone has inherent limitations in terms of protection of civilians at immediate risk.\"\\n\\n15\\n00:01:04,975 --> 00:01:08,618\\nU.S. Secretary of State Hillary Clinton has been visiting countries in the Middle East,\\n\\n16\\n00:01:08,618 --> 00:01:11,224\\nwhere authoritarian leaders have been ousted\\n\\n17\\n00:01:11,224 --> 00:01:13,955\\nby mostly peaceful protests in recent weeks.\\n\\n18\\n00:01:13,955 --> 00:01:17,581\\nAlthough the Obama administration is not calling for the use of U.S. ground forces\\n\\n19\\n00:01:17,581 --> 00:01:22,39\\nin Libya, Clinton made clear Thursday that a no-fly zone in Libya\\n\\n20\\n00:01:22,39 --> 00:01:24,697\\nwould likely include ground attacks.\\n\\n21\\n00:01:24,697 --> 00:01:33,625\\nClinton: \"There is a lot of very intense discussion occurring, but it is important to recognise that\\n\\n22\\n00:01:33,625 --> 00:01:44,89\\nmilitary experts accross the world, know that a no-fly zone requires certain actions taken\\n\\n23\\n00:01:44,89 --> 00:01:56,054\\nto protect the planes and the pilots, including bombing targets like the Libyan defense systems.\"\\n\\n24\\n00:01:56,054 --> 00:02:00,299\\nThe rapid advance of Libyan government forces has put\\n\\n25\\n00:02:00,299 --> 00:02:03,259\\npressure on the Obama administration to support military intervention.\\n\\n26\\n00:02:03,259 --> 00:02:08,221\\nUnder-Secratary of State William Burns warned U.S. lawmakers on Thursday of\\n\\n27\\n00:02:08,221 --> 00:02:12,38\\nthe risks involved if Muammar Qaddafi defeats the rebel forces in Libya.\\n\\n28\\n00:02:12,38 --> 00:02:17,491\\nBurns: \"The dangers of him returning to terrorism and violent extremism himself,\\n\\n29\\n00:02:17,491 --> 00:02:22,035\\nthe dangers turmoil that he could help create, at a very critical moment elsewhere in the region.\"\\n\\n30\\n00:02:22,035 --> 00:02:25,202\\nMany members of Congress, like Democrat John Kerry,\\n\\n31\\n00:02:25,202 --> 00:02:27,675\\nchairman of the Senate Foreign Relations Committee,\\n\\n32\\n00:02:27,675 --> 00:02:30,697\\nsay the international community must act now.\\n\\n33\\n00:02:30,697 --> 00:02:35,177\\nKerry: \"The old rules of impunity for autocratic leaders don\\'t stand.\\n\\n34\\n00:02:35,193 --> 00:02:42,357\\nBut time is running out for the Libyan people. The world needs to respond, immediately.\"\\n\\n35\\n00:02:42,357 --> 00:02:48,214\\nA no-fly zone over Libya is supported by the Arab League, and U.S. officials say Arab governments \\n\\n36\\n00:02:48,214 --> 00:02:52,778\\nmust play a central role in any military action against Libya.\\n\\n37\\n00:02:52,778 --> 00:02:56,087\\nMeredith Buel, VOA News, Washington.',\n", + " 'bytes': 3704,\n", + " 'sha1': 'smyc2u7ip6261qpsoxuyfkmoli3zqo1',\n", + " 'parent_id': 55654283,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 55654304,\n", + " 'timestamp': '2011-06-19T00:05:20Z',\n", + " 'user': {'id': 883069, 'text': 'Innotata'},\n", + " 'page': {'id': 15551129,\n", + " 'title': 'US Supports No-Fly Zone Against Libya.ogv.undefined.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:US Supports No-Fly Zone Against Libya.ogv.en.srt',\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'moved [[TimedText:US Supports No-Fly Zone Against Libya.ogv.undefined.srt]] to [[TimedText:US Supports No-Fly Zone Against Libya.ogv.en.srt]]',\n", + " 'text': '#REDIRECT [[TimedText:US Supports No-Fly Zone Against Libya.ogv.en.srt]]',\n", + " 'bytes': 72,\n", + " 'sha1': 'qmro935uzqd5885207ws2ce6cs8az9r',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 56446437,\n", + " 'timestamp': '2011-07-09T23:56:21Z',\n", + " 'user': {'id': 304876, 'text': 'Jane Doe'},\n", + " 'page': {'id': 15751330,\n", + " 'title': 'Cavallo.ogv.undefined.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Subtitles in Spanish using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': '1\\n00:00:03,039 --> 00:00:09,599\\nA partir de este momento transmiten, LRA 1, Radio Nacional, Buenos Aires, República Argentina,\\n\\n2\\n00:00:09,599 --> 00:00:14,359\\ny LS 82, TV Canal 7, Argentina Televisora Color,\\n\\n3\\n00:00:14,359 --> 00:00:20,479\\njuntamente con todas las emisoras que integran la Cadena Nacional de Radio y Televisión.\\n\\n4\\n00:00:20,479 --> 00:00:26,399\\nHará uso de la palabra el señor Ministro de Economía de la Nación, Dr. Domingo Cavallo,\\n\\n5\\n00:00:26,399 --> 00:00:32,931\\nquien se referirá a la situación fiscal y marcha del Plan de Convertibilidad.\\n\\n6\\n00:00:34,839 --> 00:00:41,399\\nCompatriotas, los primeros días de marzo me dirigí a ustedes por este mismo medio\\n\\n7\\n00:00:41,399 --> 00:00:45,999\\npara darles a conocer las cifras fiscales del mes de febrero\\n\\n8\\n00:00:45,999 --> 00:00:49,759\\ny las previsiones para marzo y abril.\\n\\n9\\n00:00:49,759 --> 00:00:53,679\\nAlgunos de ustedes recordarán que hablamos de una meta de recaudación,\\n\\n10\\n00:00:53,679 --> 00:01:02,559\\nde 1850 millones de dólares para marzo, y de 2000 millones de dólares mensuales desde abril.\\n\\n11\\n00:01:02,559 --> 00:01:06,799\\nTambién mencioné que nos proponíamos generar un superávit primario,\\n\\n12\\n00:01:06,799 --> 00:01:11,399\\nantes de atender pagos financieros internos y externos,\\n\\n13\\n00:01:11,399 --> 00:01:16,799\\nde 300 millones de dólares mensuales, 100 millones de los cuales se originarían\\n\\n14\\n00:01:16,799 --> 00:01:21,239\\nen el exceso de recaudación con relación a los gastos,\\n\\n15\\n00:01:21,239 --> 00:01:29,079\\ny los otros 200 millones mensuales, con ingresos por privatizaciones o ventas de activos.\\n\\n16\\n00:01:29,079 --> 00:01:33,559\\nEn esto quiero ser muy claro: nadie tiene que esperar que abandonemos\\n\\n17\\n00:01:33,559 --> 00:01:39,279\\nla disciplina fiscal y convalidemos desmanejos provinciales para facilitar \\n\\n18\\n00:01:39,279 --> 00:01:45,199\\nla sanción de las leyes; sería necio de nuestra parte, porque minaría la confianza\\n\\n19\\n00:01:45,199 --> 00:01:48,399\\nen el plan de convertibilidad.\\n\\n20\\n00:01:48,399 --> 00:01:51,999\\nEn materia de tratamiento, las provincias con problemas fiscales,\\n\\n21\\n00:01:51,999 --> 00:01:56,799\\nel Presidente Menem ha dado la señal a través de la decisión adoptada\\n\\n22\\n00:01:56,799 --> 00:01:59,599\\nsobre el banco de su propia provincia.\\n\\n23\\n00:01:59,599 --> 00:02:05,879\\nNo se permitirá que los bancos provinciales financien déficits de los gobiernos,\\n\\n24\\n00:02:05,879 --> 00:02:11,639\\ny, si es necesario, se condicionará toda ayuda al ajuste y reestructuración\\n\\n25\\n00:02:11,639 --> 00:02:16,679\\nde las finanzas locales, a la liquidación de las instituciones que se hayan\\n\\n26\\n00:02:16,679 --> 00:02:20,159\\ntornado inviables.\\n\\n27\\n00:02:20,159 --> 00:02:24,399\\nHoy las provincias tienen que manejarse con sus recursos propios,\\n\\n28\\n00:02:24,399 --> 00:02:29,239\\ny con los que reciben por el régimen de coparticipación federal.\\n\\n29\\n00:02:29,239 --> 00:02:34,519\\nEstos últimos han aumentado mucho, y por consiguiente, si alguna provincia\\n\\n30\\n00:02:34,519 --> 00:02:40,759\\naún tiene déficit, no le queda otra alternativa que hacer el ajuste respectivo,\\n\\n31\\n00:02:40,759 --> 00:02:41,259\\nesto es inexorable.\\n\\n32\\n00:02:41,259 --> 00:02:50,239\\nEn síntesis, todos ustedes pueden estar seguros que tenemos bajo control absoluto\\n\\n33\\n00:02:50,239 --> 00:02:55,559\\nel presupuesto de la administración nacional y las cuentas fiscales.\\n\\n34\\n00:02:55,559 --> 00:03:00,639\\nHemos estado trabajando en equipo, todo el gabinete, para que el presupuesto de\\n\\n35\\n00:03:00,639 --> 00:03:04,639\\nlo que resta del año sea estrictamente cumplido. En un todo de acuerdo con el\\n\\n36\\n00:03:04,639 --> 00:03:11,359\\nprograma fiscal y monetario que hemos presentado, elaborado por nosotros,\\n\\n37\\n00:03:11,359 --> 00:03:16,399\\na los organismos multilaterales de crédito. Por lo tanto no hay ningún riesgo\\n\\n38\\n00:03:16,399 --> 00:03:19,479\\nde que violemos la ley de convertibilidad.\\n\\n39\\n00:03:19,479 --> 00:03:25,999\\nEl valor de nuestra moneda está, sin dudas, perfectamente asegurada, y nadie\\n\\n40\\n00:03:25,999 --> 00:03:31,079\\ntiene que temer por la evolución futura de la paridad cambiaria.\\n\\n41\\n00:03:31,079 --> 00:03:38,159\\nEl peso, que a partir del 1º de enero, valdrá igual que el dólar, es una moneda destinada\\n\\n42\\n00:03:38,159 --> 00:03:46,159\\na perdurar con ese valor por muchos años, me atrevo a decir, por décadas.\\n\\n43\\n00:03:46,159 --> 00:03:51,079\\nPermítanme pasar a hablar de los precios y los salarios,\\n\\n44\\n00:03:51,079 --> 00:03:55,799\\ny en términos más globales, de la inflación.\\n\\n45\\n00:03:55,799 --> 00:04:00,639\\nCuando me dirigí a ustedes los primeros días de mayo, para evaluar el curso \\n\\n46\\n00:04:00,639 --> 00:04:04,799\\nde los precios en el mes de abríl, les dije que a pesar de que habíamos logrado bajar\\n\\n47\\n00:04:04,799 --> 00:04:10,919\\ndrásticamente la tasa de inflación, aún no teníamos ganada de manera definitiva,\\n\\n48\\n00:04:10,919 --> 00:04:16,399\\nla batalla de la estabilidad. Hoy debo reiterarlo.\\n\\n49\\n00:04:16,399 --> 00:04:21,799\\nHemos logrado bajar la inflación a los niveles internacionales en lo que se refiere\\n\\n50\\n00:04:21,799 --> 00:04:26,959\\na los precios mayoristas de los bienes no agropecuarios; de los bienes de la industria\\n\\n51\\n00:04:26,959 --> 00:04:34,839\\nmanufacturera, y de los bienes importados. En promedio, durante el trimestre abril-junio,\\n\\n52\\n00:04:34,839 --> 00:04:40,319\\nestos precios subieron sólo el 0,5% mensual, siendo que el precio\\n\\n53\\n00:04:40,319 --> 00:04:44,439\\ndel dólar no estuvo totalmente estable, porque si ustedes recuerdan,\\n\\n54\\n00:04:44,439 --> 00:04:50,639\\nel 1º de abril, el dólar valía 9500 australes.\\n\\n55\\n00:04:50,639 --> 00:04:55,319\\nEs decir, que el comportamiento de estos precios a nivel mayorista es \\n\\n56\\n00:04:55,319 --> 00:04:58,319\\nplenamente satisfactorio.\\n\\n57\\n00:04:58,319 --> 00:05:03,159\\nNo ocurrió lo mismo con los precios mayoristas agropecuarios:\\n\\n58\\n00:05:03,159 --> 00:05:09,119\\nlos cereales y oleaginosas, en abril, y el ganado, en mayo y junio,\\n\\n59\\n00:05:09,119 --> 00:05:15,359\\naumentaron significativamente. También aumentaron los pollos, el cerdo,\\n\\n60\\n00:05:15,359 --> 00:05:22,639\\nlas frutas, las hortalizas y otros alimentos frescos a nivel minorista.\\n\\n61\\n00:05:22,639 --> 00:05:28,079\\nEstos aumentos tienen dos causas: por un lado, se trata del realineamiento de\\n\\n62\\n00:05:28,079 --> 00:05:32,439\\nlos precios de los productos de exportación agropecuaria, con motivo de la\\n\\n63\\n00:05:32,439 --> 00:05:38,399\\neliminación de las retenciones. Esto ocurrió fundamentalmente en abril.\\n\\n64\\n00:05:38,399 --> 00:05:44,719\\nPor otro lado, hay problemas de oferta y de demanda estacionales.\\n\\n65\\n00:05:44,719 --> 00:05:51,079\\nEl mejoramiento de los ingresos de la gente aumentó el consumo de carnes y de frutas.\\n\\n66\\n00:05:51,079 --> 00:05:57,399\\nLamentablemente, en el país que en otra época era considerado uno de los\\n\\n67\\n00:05:57,399 --> 00:06:02,999\\nprincipales abastecedores de alimentos del mundo, a causa de las malas políticas\\n\\n68\\n00:06:02,999 --> 00:06:06,879\\nque durante tantos años desalentaron a la producción,\\n\\n69\\n00:06:06,879 --> 00:06:13,919\\nhoy escasea la carne de vaca, la carde de cerdo, los pollos, la leche, las frutas,\\n\\n70\\n00:06:13,919 --> 00:06:20,959\\nlas hortalizas. Es sorprendente pero es la cruda realidad.\\n\\n71\\n00:06:20,959 --> 00:06:25,319\\nPero este problema tiene solución. Los mismos aumentos que agregan puntos\\n\\n72\\n00:06:25,319 --> 00:06:30,959\\na los índices de precios, mejoran la rentabilidad de los productores\\n\\n73\\n00:06:30,959 --> 00:06:35,679\\ny alientan a incrementar la producción. Por eso es importante que tengamos\\n\\n74\\n00:06:35,679 --> 00:06:40,959\\nun poco de paciencia, y con el aumento del abastecimiento, los precios de los\\n\\n75\\n00:06:40,959 --> 00:06:44,479\\nalimentos frescos van a bajar.\\n\\n76\\n00:06:44,479 --> 00:06:50,719\\nNo es algo que se de de un día para el otro; criar más vacas, más pollos o más cerdos\\n\\n77\\n00:06:50,719 --> 00:06:55,919\\nrequiere un cierto tiempo. Pero inexorablemente los productores\\n\\n78\\n00:06:55,919 --> 00:07:00,639\\nvan a responder. Lo mismo ocurrirá con los agricultores, los tamberos\\n\\n79\\n00:07:00,639 --> 00:07:06,039\\ny los productores de frutas y hortalizas. Por eso, no debemos alarmarnos.\\n\\n80\\n00:07:06,039 --> 00:07:11,079\\nEstos aumentos de precios no signifiquen que continúe la inflación originada\\n\\n81\\n00:07:11,079 --> 00:07:16,639\\nen la indisciplina fiscal y monetaria, sino que aún sufrimos las consecuencias\\n\\n82\\n00:07:16,639 --> 00:07:23,479\\nde un sistema productivo sumamente desorganizado y desarticulado.\\n\\n83\\n00:07:23,479 --> 00:07:28,239\\nCon un clima de estabilidad global, y respondiendo al aumento de la demanda,\\n\\n84\\n00:07:28,239 --> 00:07:35,279\\nhabrá aumentos de la oferta, y los precios volverán a niveles razonables.\\n\\n85\\n00:07:35,279 --> 00:07:40,439\\nHay algunos otros aumentos que reflejan claramente la reactivación de la demanda\\n\\n86\\n00:07:40,439 --> 00:07:44,999\\nen casi todos los mercados de bienes de consumo. Me refiero a rubros tales\\n\\n87\\n00:07:44,999 --> 00:07:50,479\\ncomo comidas fueras del hogar, alimentos para llevar, servicios personales,\\n\\n88\\n00:07:50,479 --> 00:07:54,679\\nentretenimientos, y gastos de turismo.\\n\\n89\\n00:07:54,679 --> 00:07:58,879\\nTambién se nota que los precios de los mismos bienes aumentaron más\\n\\n90\\n00:07:58,879 --> 00:08:07,879\\na nivel minorista que a nivel mayorista. Es decir, aumentaron los márgenes de comercialización.\\n\\n91\\n00:08:07,879 --> 00:08:12,439\\nSe trata de fenómenos que no pueden confundirse con la inflación originada\\n\\n92\\n00:08:12,439 --> 00:08:15,439\\nen el déficit fiscal o la emisión monetaria.\\n\\n93\\n00:08:15,439 --> 00:08:21,399\\nLa única forma de evitar estos aumentos, y erradicar este tipo de inflación,\\n\\n94\\n00:08:21,399 --> 00:08:25,799\\nes a través de la mayor competencia y del control que puede hacer\\n\\n95\\n00:08:25,799 --> 00:08:32,759\\ncada uno de ustedes. El gobierno no lo debe ni lo puede hacer.\\n\\n96\\n00:08:32,759 --> 00:08:37,039\\nPermítanme ser muy claro en esto. Cada uno de ustedes\\n\\n97\\n00:08:37,039 --> 00:08:40,439\\ntiene una herramienta en sus manos. Cada uno de ustedes decide\\n\\n98\\n00:08:40,439 --> 00:08:47,439\\ncomo y cuando usa sus australes. No deben comprar lo que resulte caro, \\n\\n99\\n00:08:47,439 --> 00:08:52,959\\nlo que haya aumentado mucho. Tienen que buscar las alternativas más baratas.\\n\\n100\\n00:08:52,959 --> 00:08:57,879\\nFíjense bien adonde compran. Hay algunos comerciantes que cobran precios\\n\\n101\\n00:08:57,879 --> 00:09:04,319\\ncon márgenes exagerados. A ellos les pedimos que, por su propia conveniencia,\\n\\n102\\n00:09:04,319 --> 00:09:09,359\\ny por el bien de todos, elijan vender mas en vez de cobrar más.\\n\\n103\\n00:09:09,359 --> 00:09:13,399\\nPero en definitiva, son ustedes, las familias, los consumidores,\\n\\n104\\n00:09:13,399 --> 00:09:20,799\\nquienes pueden hacerlos cambiar de actitud. Dejen de comprarles.\\n\\n105\\n00:09:20,799 --> 00:09:27,919\\nEsto que les invito a hacer, es práctica cotidiana en todos los países estables del mundo.\\n\\n106\\n00:09:27,919 --> 00:09:32,519\\nAllí donde hay estabilidad, es porque el gobierno hace sus deberes\\n\\n107\\n00:09:32,519 --> 00:09:38,639\\nen materia fiscal y monetaria. Pero las familias también los hacen.\\n\\n108\\n00:09:38,639 --> 00:09:43,719\\nCuidan su dinero y se fijan muy bien en que lo gastan.\\n\\n109\\n00:09:43,719 --> 00:09:50,799\\nYo les aseguro, que si ustedes y nosotros nos los proponemos firmemente,\\n\\n110\\n00:09:50,799 --> 00:09:53,399\\nesta vez nos transformaremos en un país estable,\\n\\n111\\n00:09:53,399 --> 00:09:56,439\\nen un país estable para siempre.\\n\\n112\\n00:09:56,439 --> 00:10:00,719\\nQuiero también ser muy franco con cada uno de ustedes,\\n\\n113\\n00:10:00,719 --> 00:10:05,399\\nen particular con los trabajadores. El deterioro del ingreso familiar,\\n\\n114\\n00:10:05,399 --> 00:10:11,679\\nprovocado por estos aumentos de precios, no se resuelve con aumentos de salarios nominales\\n\\n115\\n00:10:11,679 --> 00:10:15,439\\nque no estén acompañados por mejoras en la productividad\\n\\n116\\n00:10:15,439 --> 00:10:20,679\\ndel sector privado, o mayor recaudación en el sector público.\\n\\n117\\n00:10:20,679 --> 00:10:25,359\\nSi con el argumento de la indexación se ajustaran los salarios nominales,\\n\\n118\\n00:10:25,359 --> 00:10:29,519\\ncomo ocurría antes de que lo prohibiera la Ley de Convertibilidad,\\n\\n119\\n00:10:29,519 --> 00:10:34,239\\nlos primeros perjudicados terminarían siendo los propios trabajadores,\\n\\n120\\n00:10:34,239 --> 00:10:40,519\\ny los jubilados, por una razón muy sencilla: con salarios indexados hacia atrás,\\n\\n121\\n00:10:40,519 --> 00:10:44,199\\nsería imposible mantener la disciplina fiscal y monetaria,\\n\\n122\\n00:10:44,199 --> 00:10:51,919\\ny entonces se producirían simultáneamente dos fenómenos cuya combinación es explosiva.\\n\\n123\\n00:10:51,919 --> 00:10:57,799\\nEl atraso en el valor del tipo de cambio, y la emisión sin respaldo.\\n\\n124\\n00:10:57,799 --> 00:11:02,399\\nEn pocos meses, o quizá en apenas semanas, caeríamos de nuevo\\n\\n125\\n00:11:02,399 --> 00:11:08,279\\nen hiperinflación, y los salarios reales volverían a estar por el suelo\\n\\n126\\n00:11:08,279 --> 00:11:12,519\\ncon recesión y desocupación.\\n\\n127\\n00:11:12,519 --> 00:11:17,359\\nNo les estamos mintiendo a los trabajadores y a los jubilados cuando les decimos\\n\\n128\\n00:11:17,359 --> 00:11:22,599\\nque los aumentos nominales, o por simple indexación, son una estafa.\\n\\n129\\n00:11:22,599 --> 0-1:0-1:0-1\\nLes decimos la verdad.',\n", + " 'bytes': 13360,\n", + " 'sha1': 'tbvns9bymxqwabetl6ufs7e6ml3gtzy',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 57650352,\n", + " 'timestamp': '2011-08-06T11:06:56Z',\n", + " 'user': {'id': 246324, 'text': 'Toliño'},\n", + " 'page': {'id': 15808623,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.gl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1 00:00:00,500 --> 00:00:02,580 O meu nome de usuario é Bücherwürmlein\\n\\n2 00:00:02,580 --> 00:00:04,040 Lila roja\\n\\n3 00:00:04,040 --> 00:00:05,110 yuyu\\n\\n4 00:00:05,110 --> 00:00:06,740 Cbrown1023\\n\\n5 00:00:06,740 --> 00:00:08,380 22Kartika\\n\\n6 00:00:08,380 --> 00:00:10,260 O meu nome de usuario é Church of emacs\\n\\n7 00:00:10,260 --> 00:00:14,010 Bücherwürmlein significa «rato de biblioteca», en alemán\\n\\n8 00:00:14,010 --> 00:00:15,240 Dew\\n\\n9 00:00:15,240 --> 00:00:16,630 Chomsky1\\n\\n10 00:00:16,630 --> 00:00:18,270 nasir8891\\n\\n11 00:00:18,270 --> 00:00:21,130 notafish, entendes?: «non son un peixe»\\n\\n12 00:00:21,130 --> 00:00:22,520 Theo10011\\n\\n13 00:00:22,520 --> 00:00:23,500 O meu nome de usuario é Henna\\n\\n14 00:00:23,500 --> 00:00:24,720 Misou\\n\\n15 00:00:24,720 --> 00:00:26,190 O meu nome de usuario é Lyzzy\\n\\n16 00:00:26,190 --> 00:00:29,220 wittylama, é o anagrama do meu nome real: Liam Wyatt\\n\\n17 00:00:29,220 --> 00:00:30,440 Deryck Chan\\n\\n18 00:00:30,440 --> 00:00:31,750 Vulpeto\\n\\n19 00:00:31,750 --> 00:00:33,300 RajeshPandey\\n\\n20 00:00:33,300 --> 00:00:36,730 O meu nome de usuario é Steven Walling, que é o meu nome real\\n\\n21 00:00:36,730 --> 00:00:38,370 O meu nome de usuario é Waldir\\n\\n22 00:00:38,370 --> 00:00:41,070 O meu nome de usuario é Mstislavl\\n\\n23 00:00:41,070 --> 00:00:44,420 Abbasjnr, a-b-b-a-s-j-n-r\\n\\n24 00:00:44,420 --> 00:00:49,000 O meu nome é Jdforrester e edito Wikipedia',\n", + " 'bytes': 1417,\n", + " 'sha1': 'crvszchtb8064683d0uzswd7bmw78l0',\n", + " 'parent_id': 56682223,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 57649920,\n", + " 'timestamp': '2011-08-06T10:56:00Z',\n", + " 'user': {'id': 246324, 'text': 'Toliño'},\n", + " 'page': {'id': 15812433,\n", + " 'title': 'Edit Button.ogv.gl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'melloras na tradución e correccións/improving translation and some corrections',\n", + " 'text': '1\\n00:00:01,114 --> 00:00:02,414\\nHai un botón \"editar\".\\n\\n2\\n00:00:02,530 --> 00:00:03,830\\nSó preme nel,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\natopa o lugar onde está o texto e edita.\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\nLogo preme en \"Gardar\". É así de doado.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nO bo de Wikipedia\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\né que ti podes cambiar cousas.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nNon precisas o permiso de ninguén\\n\\n8\\n00:00:14,066 --> 00:00:15,32\\ne non é difícil.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nAsemella un chisco desalentador ao comezo,\\n\\n10\\n00:00:17,809 --> 00:00:19,82\\npero realmente non é difícil.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nA xente non se decata. É coma se padecesen unha especie de cegueira.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nA xente le artigos e non ve o botón \"editar\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nPreme nese botón e olla o que ocorre.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Editar\".\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nCando descobres algo\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\ne comezas a editar,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\npoden ocorrer cousas de toda clase.\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\nE iso é realmente fermoso.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nÉ como se fose un punto de partida,\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nunha invitación a máis, dalgún xeito.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nSempre que comezamos un artigo, non nos gusta\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nporque o atopamos feo.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nPero agarda unhas... horas\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\ne mira como se vai convertendo nun grande artigo.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nO botón \"editar\": Preme nel e muda algunha cousa,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\ngarda a páxina; xa mudaches algo no mundo.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Gardar\".',\n", + " 'bytes': 1807,\n", + " 'sha1': 'dsx3rwxog8jesmzyawz5rjp5zg7lw0n',\n", + " 'parent_id': 56718341,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 59125880,\n", + " 'timestamp': '2011-09-09T19:06:01Z',\n", + " 'user': {'id': 707423, 'text': 'Cybercobra'},\n", + " 'page': {'id': 15872588,\n", + " 'title': 'People-are-Knowledge.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'ce',\n", + " 'text': '1 \\n00:00:25,800 --> 00:00:30,560\\nI think it\\'s so interesting because it\\'s really taking this idea of knowledge as conversational\\n\\n2 \\n00:00:30,806 --> 00:00:33,880\\nand it takes one back to that fabulous Plato quotation.\\n\\n3 \\n00:00:34,040 --> 00:00:39,481\\nHe said \"What is the point of writing if every time you go back to a book, it gives you the same answer?\"\\n\\n4 \\n00:00:52,682 --> 00:00:56,841\\nThere are so many times like that in our histories, where there really was no written record.\\n\\n5 \\n00:01:12,880 --> 00:01:14,163\\nWhat is that? Why are you doing that?\\n\\n6 \\n00:01:16,201 --> 00:01:18,000\\nWe\\'re filming the road, it\\'s not the.....\\n\\n7 \\n00:01:18,081 --> 00:01:20,640\\nNo, he\\'s filming me. Let me see this.\\n\\n8 \\n00:01:26,609 --> 00:01:33,201\\nThere are a lot of things which my father and my grandmother tell me....\\n\\n9 \\n00:01:34,600 --> 00:01:36,200\\nand if we use Wikipedia to actually capture that,\\n\\n10 \\n00:01:39,000 --> 00:01:41,759\\nit will benefit my grandchildren and their children as well.\\n\\n11 \\n00:01:42,000 --> 00:01:45,000\\nDon\\'t look directly at the camera!\\n\\n12 \\n00:01:59,960 --> 00:02:06,401\\nComing from a culture such as India, coming from a culture where so little is written down,\\n\\n13 \\n00:02:08,639 --> 00:02:09,881\\ndo we then say we know nothing?\\n\\n14 \\n00:02:11,801 --> 00:02:14,440\\nDo we then say that we have no knowledge base,\\n\\n15 \\n00:02:17,561 --> 00:02:19,200\\nbecause we don\\'t have those big libraries of Europe and America?\\n\\n16 \\n00:02:21,560 --> 00:02:26,790\\nWhere does our knowledge...where does our understanding of wisdom come from?\\n\\n17 \\n00:02:28,121 --> 00:02:29,560\\nAfrican history as a field is built around oral sources.\\n\\n18 \\n00:02:31,560 --> 00:02:33,880\\nI mean, of course there are other sources that are used,\\n\\n19 \\n00:02:35,120 --> 00:02:36,401\\nfrom archaeological to ethnographic material,\\n\\n20 \\n00:02:37,361 --> 00:02:42,600\\nbut given the lack of written material in much but not all of the continent,\\n\\n21 \\n00:02:44,240 --> 00:02:46,500\\nthe field wouldn\\'t exist had there not been a long tradition of oral history.\\n\\n22 \\n00:02:47,520 --> 00:02:50,801\\nSo the idea that \\'oral societies\\' are completely different\\n\\n23 \\n00:02:52,360 --> 00:02:53,641\\nfrom \\'literate societies\\' is a powerful idea,\\n\\n24 \\n00:02:55,440 --> 00:02:58,040\\nand it formed a key platform in colonial thinking,\\n\\n25 \\n00:03:00,080 --> 00:03:01,200\\nof the civilising mission...\\n\\n26 \\n00:03:02,720 --> 00:03:05,000\\nthat one of the things that made Europe more \\'superior\\' or more \\'civilised\\'\\n\\n27 \\n00:03:06,520 --> 00:03:13,600\\nwas \\'writing\\', and so you have this idea that Europe is \\'literate\\' and Africa is \\'oral\\'.\\n\\n28 \\n00:03:15,801 --> 00:03:20,280\\nAnd then, on the basis of that difference, people build up major ideological differences.\\n\\n29 \\n00:03:22,281 --> 00:03:23,360\\nHallo Rajesh\\n\\n30 \\n00:03:25,250 --> 00:03:27,700\\nI am putting this call on the loudspeaker.\\n\\n31 \\n00:03:28,200 --> 00:03:32,000\\nWill you please introduce yourself for me?\\n\\n32 \\n00:03:33,000 --> 00:03:37,000\\nMy name is Dr. Rajesh, and I work in a college in Rajasthan.\\n\\n33 \\n00:03:37,500 --> 00:03:41,000\\nI am a Senior Demonstrator in microbiology.\\n\\n34 \\n00:03:44,300 --> 00:03:45,800\\nHallo... is that Biju?\\n\\n35 \\n00:03:46,500 --> 00:03:48,000\\nIs that Biju?\\n\\n36 \\n00:03:50,500 --> 00:03:55,000\\nBiju, I am going to ask you some questions in a particular way...\\n\\n37 \\n00:03:55,500 --> 00:04:00,300\\nbecause I am going to try to simultaneously translate this conversation into English.\\n\\n38 \\n00:04:00,300 --> 00:04:06,000\\nBiju, can you answer in English?\\n\\n39 \\n00:04:06,500 --> 00:04:08,000\\nNo....\\n\\n40 \\n00:04:08,680 --> 00:04:16,761\\nThis will be an audio file, this interview, that will be put on Wikipedia, on Wikimedia, okay?\\n\\n41 \\n00:04:19,560 --> 00:04:20,680\\nThank you Josephine.\\n\\n42 \\n00:04:22,640 --> 00:04:25,241\\nThank you! Okay.\\n\\n43 \\n00:04:36,600 --> 00:04:41,000\\nWhen I was thinking about it, I\\'m excited about the fact that there is more Wikipedia in India,\\n\\n44 \\n00:04:41,500 --> 00:04:47,800\\nbut I think it would be equally interesting if there was more India in Wikipedia.\\n\\n45 \\n00:04:50,440 --> 00:04:51,320\\nAnd I think that works for South Africa as well, in a sense.\\n\\n46 \\n00:04:53,159 --> 00:05:00,201\\nSo, for me, I think a sophisticated exchange is one in which there is two-way learning.\\n\\n47 \\n00:05:02,240 --> 00:05:08,361\\nThere are things that happen, well, with 1.2 billion people, certainly a lot of things happen,\\n\\n48 \\n00:05:09,721 --> 00:05:15,721\\nwhich are then not being documented in a way which allows them entry\\n\\n49 \\n00:05:16,721 --> 00:05:21,320\\ninto the formal world of knowledge.\\n\\n50 \\n00:05:36,640 --> 00:05:41,360\\nThe thing is, many of us, people like me, played this game in our childhood.\\n\\n51 \\n00:05:42,841 --> 00:05:48,121\\nSo we know the rules of the game, and we know how to write content for an article on it.\\n\\n52 \\n00:05:49,801 --> 00:05:54,801\\nBut the thing with Wikipedia is that for whatever facts we write,\\n\\n53 \\n00:05:45,801 --> 00:05:59,280\\nwe need to provide citations. But we are unable to provide citations\\n\\n54 \\n00:06:00,720 --> 00:06:02,680\\nbecause...currently, there are two reasons:\\n\\n55 \\n00:06:04,440 --> 00:06:06,440\\nthere might not be any published source,\\n\\n56 \\n00:06:07,000 --> 00:06:09,000\\nand then there might be some published source, but which we don\\'t have access to.\\n\\n57 \\n00:06:12,760 --> 00:06:14,161\\nSo this is one perfect example of the situation.\\n\\n58 \\n00:06:42,400 --> 00:06:45,200\\nThis game is called Kandakali by some,\\n\\n59 \\n00:06:45,700 --> 00:06:47,800\\nand here we call it Dappa.\\n\\n60 \\n00:06:48,300 --> 00:06:52,300\\nIn some places, it is called Chattiyeru.\\n\\n61 \\n00:06:52,800 --> 00:00:01,280\\nIt is also called Chilleru. <i>This game has 3 different names?</i> Yes.\\n\\n62 \\n00:06:58,100 --> 00:06:59,500\\nWhat are the rules of this game?\\n\\n63 \\n00:07:00,000 --> 00:07:03,950\\nWe use Olapandu for this game...\\n\\n64 \\n00:07:04,450 --> 00:07:07,450\\nwhich is a ball made out of coconut leaves. The children usually make it themselves.\\n\\n65 \\n00:07:07,950 --> 00:07:13,950\\nThey use pieces of tile which are called Dappa.\\n\\n66 \\n00:07:14,450 --> 00:07:18,200\\nIs this game still popular in the villages?\\n\\n67 \\n00:07:18,700 --> 00:07:22,950\\nNot really, children nowadays prefer cricket.\\n\\n68 \\n00:07:23,450 --> 00:07:32,500\\nBut in this school, we conduct an annual tournament for games like Dappa, Killithattu, etc.\\n\\n69 \\n00:07:33,000 --> 00:07:39,200\\nIt is a tournament for folk games.\\n\\n70 \\n00:07:39,700 --> 00:07:43,400\\nThere are a vast number of folk games here; our tournament is only for some of them.\\n\\n71 \\n00:07:43,900 --> 00:07:50,850\\n<i>The special feature of this game is that only natural materials are used for it, right?</i> \\nYes, absolutely.\\n\\n72 \\n00:07:52,150 --> 00:07:55,700\\n<i>And it is cheap as well, isn\\'t it?</i> \\nYes, you need not spend any money to play this game...\\n\\n73 \\n00:07:56,650 --> 00:08:04,400\\nand children get exercise. It improves their attention span and flexibility.\\n\\n74 \\n00:08:17,500 --> 00:08:23,500\\nI am from Blathur in Kannur district.\\n\\n75 \\n00:08:34,200 --> 00:08:37,950\\nI have been editing Wikipedia for 2 years...\\n\\n76 \\n00:08:38,450 --> 00:08:43,799\\nand organising gatherings to make Wikipedia more popular.\\n\\n77 \\n00:08:44,300 --> 00:08:52,800\\nI participted in the 10th anniversary celebrations of Wikipedia in Kannur.\\n\\n78 \\n00:08:53,300 --> 00:09:00,600\\nI myself seriously understood Wikipedia only after attending a conference on it.\\n\\n79 \\n00:09:01,100 --> 00:09:09,550\\nI work with the hope that Wikipedia will become a treasure-house of knowledge...\\n\\n80 \\n00:09:10,050 --> 00:09:14,400\\n...and continue to provide knowledge to the world for free.\\n\\n81 \\n00:09:53,000 --> 00:09:56,921\\nWhen we start talking about the question of what is \\'oral\\' on the internet, it\\'s no longer restricted only to audio files.\\n\\n82 \\n00:09:58,320 --> 00:10:02,840\\nIt\\'s also about different ways and transitions by which people translate different cultural contexts,\\n\\n83 \\n00:10:04,201 --> 00:10:08,481\\nphysical practices, material practices, everyday life, onto different forms on the internet.\\n\\n84 \\n00:10:10,040 --> 00:10:12,800\\nWhich is why we\\'ve always talked about the internet as an alternative space.\\n\\n85 \\n00:10:15,040 --> 00:10:18,040\\nNot alternative because it necessarily allows for \\'different\\' kinds of voices - it generally does not -\\n\\n86 \\n00:10:19,000 --> 00:10:21,360\\nthe internet is often a very homogenised space,\\n\\n87 \\n00:10:23,361 --> 00:10:27,560\\nbut it allows for people to express, articulate and document things which would otherwise not find\\n\\n88 \\n00:10:29,281 --> 00:10:30,561\\nplace within the canons of literature and documentation and so on.\\n\\n89 \\n00:10:32,320 --> 00:10:37,320\\nIt is interesting to see that while Wikipedia claims to be an internet form,\\n\\n90 \\n00:10:38,000 --> 00:10:42,401\\nit doesn\\'t necessarily look at internet objects as sources of verification.\\n\\n91 \\n00:10:43,640 --> 00:10:48,080\\nAnd by that I mean not just blogs which are traditional ways of writing on the internet,\\n\\n92 \\n00:10:49,560 --> 00:10:54,000\\nbut things that the internet has itself evolved and developed in order to create systems and designs of trust.\\n\\n93 \\n00:10:55,360 --> 00:11:01,360\\nBut I think my argument is, is something true only because it has been validated by a scholarly tradition\\n\\n94 \\n00:11:02,680 --> 00:11:07,800\\nof academics in universities, or is something true because it is?\\n\\n95 \\n00:11:09,360 --> 00:11:10,320\\nAnd how can we show it?\\n\\n96 \\n00:11:12,160 --> 00:11:15,160\\nWithin the women\\'s movement, one of the things that was a real learning experience for me,\\n\\n97 \\n00:11:15,560 --> 00:11:18,880\\nand other middle-class activists like me who were mainly urban,\\n\\n98 \\n00:11:20,081 --> 00:11:24,240\\nwas to actually come into contact with women and listen to their stories.\\n\\n99 \\n00:11:25,920 --> 00:11:30,920\\nAnd in listening to their stories, we began to learn how to...\\n\\n100 \\n00:11:31,920 --> 00:11:36,040\\nhow very different a perspective they gave us, on what their received knowledge was...\\n\\n101 \\n00:11:37,279 --> 00:11:41,279\\nwhich we knew through the things that are called fact....\\n\\n102 \\n00:11:42,000 --> 00:11:45,841\\nwhich are things like documented information, things like statistical information and so on.\\n\\n103 \\n00:11:47,120 --> 00:11:51,120\\nI began to learn then that there are stories and realities that lay behind and beyond these things,\\n\\n104 \\n00:11:51,520 --> 00:11:55,160\\nwhich were equally important for us to try and understand.\\n\\n105 \\n00:11:56,880 --> 00:12:01,880\\nTime and again, I came up against this whole business of...how factual is fact?\\n\\n106 \\n00:12:02,280 --> 00:12:05,201\\nIf you like...or, how much can you trust the document?\\n\\n107 \\n00:12:08,240 --> 00:12:17,280\\nMy primary and high school education was up north in Polokwane, and the medium of instruction was Sepedi.\\n\\n108 \\n00:12:20,080 --> 00:12:31,721\\nFrom there I moved to Pretoria, to Pretoria Technikon, where the medium of instruction there, at the time, was Afrikaans, with a bit of English thrown in.\\n\\n109 \\n00:12:34,760 --> 00:12:44,481\\nSepedi is the preferred language that I would like to use, but when I started working, I realised that there aren\\'t any Sepedi books that we could use,\\n\\n110 \\n00:12:46,001 --> 00:12:50,120\\nespecially in IT, there is nothing there in Sepedi.\\n\\n111 \\n00:13:02,640 --> 00:13:13,960\\nThere were a few articles that I really wanted to do, on things that I heard growing up, but the issue is that there is no reference material that we can use.\\n\\n112 \\n00:13:16,481 --> 00:13:22,120\\nSo there was interest, but there was nothing to support it, so I didn\\'t persist.\\n\\n113 \\n00:13:23,720 --> 00:13:34,280\\nI think there are a lot of potential articles from cultural aspects where elderly people would know more about it than I would.\\n\\n114 \\n00:13:35,680 --> 00:13:40,160\\nAnd I think that Wikipedia could be used to transfer that knowledge from people who have it,\\n\\n115 \\n00:13:42,360 --> 00:13:46,400\\nthe know how - especially when talking of culture - and those kinds of articles,\\n\\n116 \\n00:13:47,921 --> 00:13:54,280\\nto write them in English would not benefit the Sepedi-speaking community at large.\\n\\n117 \\n00:13:56,120 --> 00:14:05,560\\nSome of these things, if I was trying to say them in English, would lose a lot of meaning. So they have to be done in Sepedi.\\n\\n118 \\n00:14:07,201 --> 00:14:12,920\\nI have this article that I want to do on the Mopani worms on Sepedi Wikipedia.\\n\\n119 \\n00:14:14,480 --> 00:14:20,840\\nMopani worms are eaten quite a lot in the north. They\\'re nutritional, they are....\\n\\n120 \\n00:14:23,800 --> 00:14:27,680\\nI\\'m told they are tasty, I\\'ve not yet had the opportunity to eat them....\\n\\n121 \\n00:14:29,281 --> 00:14:37,800\\nthere\\'s an old lady in the north who I\\'m going to call to give us a recipe and tell us a bit of the history of Mopani worms....\\n\\n122 \\n00:14:39,320 --> 00:14:41,881\\nwhere do they get them? And how do they go about preparing them.\\n\\n123 \\n00:14:45,680 --> 00:14:48,280\\nHallo Josephine!\\n\\n124 \\n00:14:53,800 --> 00:15:03,450\\nWe squeeze the Mopani worms, then put them into boiling water for a bit...\\n\\n125 \\n00:15:03,950 --> 00:15:12,350\\nand add some salt to the mixture. Finally, we take the whole thing outdoors and put the Mopani worms in the sun to dry...\\n\\n126 \\n00:15:28,500 --> 00:15:34,000\\nMy name is Josephine Moremi\\n\\n127 \\n00:15:34,300 --> 00:15:43,400\\nMarula is from this tree up here; \\nthe fruits fall to the ground...\\n\\n128 \\n00:15:43,900 --> 00:15:48,300\\nand when they mature, we take their skins out and collect the insides of the fruit.\\n\\n129 \\n00:15:48,800 --> 00:15:53,300\\nWe put the insides of the fruit in water, and mix it, and that is how we make Amarula.\\n\\n130 \\n00:15:58,000 --> 00:16:03,400\\nWe drink Amarula during the months of March and April...\\n\\n131 \\n00:16:03,900 --> 00:16:08,800\\nbecause after that, the trees stop producing these fruit.\\n\\n132 \\n00:16:18,760 --> 00:16:22,960\\nIt\\'s seen that interviews are proprietorial because they are the product of an individual\\'s labour.\\n\\n133 \\n00:16:24,560 --> 00:16:27,920\\nAnd here, there\\'s an entire structure of authority that\\'s built around this.\\n\\n134 \\n00:16:29,720 --> 00:16:35,320\\nThe historian acts as the intermediary between the archive - whether it\\'s a written archive or an oral archive - and the audience.\\n\\n135 \\n00:16:36,401 --> 00:16:41,241\\nAnd by doing so, he gains authority. He also frames the archive in ways that he wants it to be framed.\\n\\n136 \\n00:16:42,681 --> 00:16:47,120\\nNow, the interesting question is, what happens if we open up that process?\\n\\n137 \\n00:16:49,761 --> 00:16:54,240\\nThen suddenly, the audience has access to the archive that the historian is basing his arguments on.\\n\\n138 \\n00:16:55,641 --> 00:17:05,319\\nThere\\'s no reason right now why every single journal article couldn\\'t have not only just the written sources hyperlinked, as footnotes,\\n\\n139 \\n00:17:06,481 --> 00:17:11,480\\nbut also oral interviews or video interviews hyperlinked as footnotes.\\n\\n140 \\n00:17:13,440 --> 00:17:15,839\\nIn that case, suddenly that entire structure of authority disappears.\\n\\n141 \\n00:17:17,241 --> 00:17:25,240\\nIf you let people have access to your interviews, and particularly in such a way that you can get nuance and context,\\n\\n142 \\n00:17:26,920 --> 00:17:30,801\\nthen suddenly the authorship of the text is opened up. It explodes in multiple ways.\\n\\n143 \\n00:17:32,400 --> 00:17:36,921\\nAnd so the very authority on which the discipline of history is founded becomes much more uncertain.\\n\\n144 \\n00:17:37,241 --> 00:17:39,281\\nBut that\\'s also quite exciting...\\n\\n145 \\n00:17:40,921 --> 00:17:47,560\\nOur countries, India, Pakistan, countries in this part of the world, we don\\'t set a value on the written word,\\n\\n146 \\n00:17:48,720 --> 00:17:51,400\\nas much as we do on orality - the passing on of information.\\n\\n147 \\n00:17:53,320 --> 00:17:58,280\\nAnd this is why, when you\\'re trying to look back at Indian history, and when you\\'re trying to look back at ancient India, you really find nothing,\\n\\n148 \\n00:17:58,481 --> 00:18:02,480\\nbecause there wasn\\'t a written history, it was more of a symbolic history.\\n\\n149 \\n00:18:02,840 --> 00:18:15,280\\nSo in a sense, you also have to be aware of that, that when you\\'re getting an oral interview, you\\'re getting one person\\'s interpretation,\\n\\n150 \\n00:18:15,480 --> 00:18:17,761\\none person\\'s recounting of a situation.\\n\\n151 \\n00:18:18,520 --> 00:18:22,960\\nIf you have a hundred people who live through that situation, you will get a picture that is broadened out.\\n\\n152 \\n00:18:23,920 --> 00:18:26,680\\nYou\\'ll get much more nuance, and you might even get some contradictions,\\n\\n153 \\n00:18:26,920 --> 00:18:29,201\\nbut that is how people experience situations.\\n\\n154 \\n00:18:30,680 --> 00:18:43,160\\nSo as long as you know what to expect, or as long as you know what to listen for, and you\\'re not taking this as the only truth of a situation,\\n\\n155 \\n00:18:43,360 --> 00:18:46,600\\nI think that this is actually something that can be very exciting.\\n\\n156 \\n00:19:01,000 --> 00:19:04,481\\nHindi language publishing is not doing as well as it should have,\\n\\n157 \\n00:19:05,160 --> 00:19:10,240\\nconsidering the huge numbers we have, considering the demands that we have.\\n\\n158 \\n00:19:10,561 --> 00:19:21,160\\nMy belief is that not a single page that gets printed and published in Hindi goes unread. There\\'s such a huge population to devour that.\\n\\n159 \\n00:19:28,721 --> 00:19:39,760\\nReference section....the Hindi libraries and others. This one...just recently started, this one. <i> The whole thing is the Hindi section? </i>\\n\\n160 \\n00:19:40,280 --> 00:19:43,040\\nThere\\'s a huge hunger for knowledge.\\n\\n161 \\n00:19:44,040 --> 00:19:47,840\\nAnd all the institutions that we have, even the publishing institutions are not able to cater to them.\\n\\n162 \\n00:19:48,160 --> 00:19:59,681\\nThey are still dependent upon the old network of government offices and libraries that was set up a long time back.\\n\\n163 \\n00:19:59,921 --> 00:20:03,600\\nAnd they are not trying to enhance their network.\\n\\n164 \\n00:20:05,480 --> 00:20:13,400\\nThis is the archive of CSDS. Archived materials. <i>And this is all in English?</i>\\n\\n165 \\n00:20:16,080 --> 00:20:18,960\\nYes, all in English. Because, mostly, all the government records are in English.\\n\\n166 \\n00:20:20,360 --> 00:20:22,241\\nSo no records are in Hindi?\\n\\n167 \\n00:20:24,280 --> 00:20:28,120\\nBecause Hindi publication is very poor.\\n\\n168 \\n00:20:30,841 --> 00:20:37,401\\nEven if you go to the elections office, you will find all the records in the English language.\\n\\n169 \\n00:20:39,000 --> 00:20:41,800\\nHindi cannot hope to compete with English, which is a world language,\\n\\n170 \\n00:20:42,040 --> 00:20:49,321\\nwhich gets fed from so many constituencies, which has a huge backing of knowledge and resources.\\n\\n171 \\n00:20:49,560 --> 00:20:58,641\\nThere is a definite upswing in publishing - of books and houses in recent years.\\n\\n172 \\n00:20:58,841 --> 00:21:00,760\\nBut I don\\'t think it\\'s very well networked.\\n\\n173 \\n00:21:01,040 --> 00:21:07,960\\nBut that raises a larger question about knowledge construction and transmission and distribution in general.\\n\\n174 \\n00:21:08,240 --> 00:21:12,520\\nKnowledge is also distributed according to languages.\\n\\n175 \\n00:21:12,800 --> 00:21:19,040\\nThere is definitely a boundary created: and the publics are also constituted according to linguistic boundaries.\\n\\n176 \\n00:21:19,280 --> 00:21:28,960\\nAnd in Hindi, a large part of the knowledge produced in Hindi does not follow the protocols of research.\\n\\n177 \\n00:21:29,240 --> 00:21:38,321\\nFor example, you might be surprised to find that there is not a single refereed journal to this date that is published in Hindi.\\n\\n178 \\n00:21:38,602 --> 00:21:42,360\\nSo how do researchers validate themselves?\\n\\n179 \\n00:21:42,600 --> 00:21:49,080\\nHow do they publish books, get peer reviewed before publication etc.?\\n\\n180 \\n00:21:49,321 --> 00:21:53,040\\nAbsolutely not - they don\\'t.\\n\\n181 \\n00:21:53,280 --> 00:21:58,960\\nAnd we\\'ll have to...at Wikipedia, or wherever...we\\'ll have to innovate, to include that knowledge,\\n\\n182 \\n00:21:59,240 --> 00:22:03,440\\nso that we speak to the rest of the world with that kind of knowledge.\\n\\n183 \\n00:22:03,680 --> 00:22:11,360\\nIf Wikipedia is everybody\\'s encyclopaedia, and it\\'s not an expert\\'s encyclopaedia,\\n\\n184 \\n00:22:11,600 --> 00:22:20,560\\nand if it is to go on increasing its own knowledge base then the future lies not just with the written world,\\n\\n185 \\n00:22:20,800 --> 00:22:27,720\\nbut with the audio visual world, which is where a lot of that knowledge still stays.\\n\\n186 \\n00:22:28,080 --> 00:22:33,079\\nIt\\'s transferred from one generation to another, with alterations, with changes, with modifications...\\n\\n187 \\n00:22:33,320 --> 00:22:38,040\\na lot of things get forgotten, a lot of things get added, but it\\'s still...\\n\\n188 \\n00:22:38,401 --> 00:22:41,001\\nyou know...a surviving language spoken by millions....\\n\\n189 \\n00:22:41,240 --> 00:22:44,880\\nand I think I\\'m speaking for many languages like this, with millions...\\n\\n190 \\n00:22:53,400 --> 00:22:59,225\\nWhen I started editing on English Wikipedia, all my edits were reverted.\\n\\n191 \\n00:23:00,175 --> 00:23:06,200\\nThe administrators would tell me that since I had no references or citations...\\n\\n192 \\n00:23:06,400 --> 00:23:11,400\\nI should not assert my \\'personal point of view.\\'\\n\\n193 \\n00:23:12,000 --> 00:23:19,150\\nBut there are very few printed sources or citations in Hindi Wikipedia...\\n\\n194 \\n00:23:19,650 --> 00:23:29,200\\nand similarly so for Punjabi, Sanskrit and Nepali Wikipedias, which I also edit.\\n\\n195 \\n00:23:29,700 --> 00:23:37,150\\nIn order to address this gap, an interesting solution would be to provide...\\n\\n196 \\n00:23:37,350 --> 00:23:52,000\\nreferences for articles lacking them through oral citations.\\n\\n197 \\n00:23:57,900 --> 00:24:01,250\\nHallo... is this Deepak Tripathi?\\n\\n198 \\n00:24:03,000 --> 00:24:07,000\\nI am Siddharth Tripathi calling from Gurgaon.\\n\\n199 \\n00:24:09,950 --> 00:24:15,575\\nI am trying to conduct an audio interview for use on Wikipedia, to serve as an oral citation...\\n\\n200 \\n00:24:15,775 --> 00:24:20,800\\nand I want to create an article on the game we call Sur.\\n\\n201 \\n00:24:21,000 --> 00:24:23,375\\nWhat can you tell me about Sur?\\n\\n202 \\n00:24:23,575 --> 00:24:32,375\\nI should also tell you that I would like to use this conversation on Wikipedia...\\n\\n203 \\n00:24:32,575 --> 00:24:34,900\\nand I hope this is okay with you.\\n\\n204 \\n00:24:35,100 --> 00:24:37,440\\nNo, I have no objection whatsoever...\\n\\n205 \\n00:24:37,640 --> 00:24:39,960\\nCould you tell me more of what you know about Sur?\\n\\n206 \\n00:24:41,000 --> 00:24:46,700\\nSur is a game that has been played in villages for a long time.\\n\\n207 \\n00:24:46,900 --> 00:24:54,500\\nIt is mainly played by children.\\n\\n208 \\n00:24:55,100 --> 00:25:01,700\\nThis will benefit Wikipedia, its users, and everyone else...\\n\\n209 \\n00:25:01,900 --> 00:25:07,200\\nknowledge never causes any harm.\\n\\n210 \\n00:25:07,400 --> 00:25:12,900\\nThis is knowledge that is available to us, to use if required...\\n\\n211 \\n00:25:13,100 --> 00:25:17,500\\nand at least, it gives us something that was missing earlier.\\n\\n212 \\n00:25:31,960 --> 00:25:37,121\\nThere\\'s this wonderful definition of a language: A language is a dialect backed by an army.\\n\\n213 \\n00:25:38,800 --> 00:25:47,321\\nAnd I think the interesting question here was, how all those different dialects, all those regional variations\\n\\n214 \\n00:25:47,800 --> 00:25:49,961\\nspoken across Southern Africa ended up as 11 languages,\\n\\n215 \\n00:25:50,201 --> 00:25:54,281\\nis very centrally tied up with the intervention of Christian missions.\\n\\n216 \\n00:25:54,561 --> 00:26:01,280\\nSouth Africa is one of the most heavily missionised parts of the continent, and it\\'s one of the first.\\n\\n217 \\n00:26:01,520 --> 00:26:08,681\\nMissionaries come in, and as they move inland, they meet largely non-literate societies.\\n\\n218 \\n00:26:09,280 --> 00:26:15,560\\nThere would have probably been little bits of writing washing around, letters that had made their way into the interior,\\n\\n219 \\n00:26:15,880 --> 00:26:22,880\\nbut it\\'s missionaries coming into a situation where there is no written script.\\n\\n220 \\n00:26:24,001 --> 00:26:29,240\\nAnd what tends to happen then, of course, is that the missionaries are the ones who invent orthographies.\\n\\n221 \\n00:26:29,800 --> 00:26:35,200\\nAnd they tend to invent them in keeping with the languages they know.\\n\\n222 \\n00:26:35,601 --> 00:26:37,760\\nThat produces an incredibly complicated situation,\\n\\n223 \\n00:26:38,040 --> 00:26:43,760\\nwhen what is technically the same language has in one region been written down by French missionaries,\\n\\n224 \\n00:26:44,161 --> 00:26:46,641\\nand in the other has been written down by German missionaries.\\n\\n225 \\n00:26:46,880 --> 00:26:49,800\\nSo the same sound can come to be represented in different ways.\\n\\n226 \\n00:26:50,560 --> 00:27:04,080\\nSo missions set up orthographies as well as institutions of writing, schooling and printing...\\nand publishing mechanisms.\\n\\n227 \\n00:27:04,481 --> 00:27:11,960\\nAnd generally, they exercised high degrees of control over those mission presses.\\n\\n228 \\n00:27:12,280 --> 00:27:22,560\\nAnd it was generally quite difficult for Africans to publish stuff that didn\\'t conform to mission models.\\n\\n229 \\n00:27:23,560 --> 00:27:33,840\\nIt often became a real source of contention between the African elites and mission presses.\\n\\n230 \\n00:27:35,081 --> 00:27:42,360\\nAnyway, mission presses then had this agenda of producing material that was religious and evangelical,\\n\\n231 \\n00:27:42,760 --> 00:27:49,720\\nand missions also assumed major responsibility for the primary and secondary education of Africans, until quite late...\\n\\n232 \\n00:27:50,001 --> 00:27:51,081\\nuntil the 1950s.\\n\\n233 \\n00:27:51,921 --> 00:27:56,920\\nThe older narrative has a stronger chance of survival, and continuing, on the margins,\\n\\n234 \\n00:27:57,720 --> 00:28:07,960\\noutside the mission domain in Africa, because the places in which oral storytelling happens,\\n\\n235 \\n00:28:08,240 --> 00:28:14,361\\nthe possibilities for that skill to be continued, do persist.\\n\\n236 \\n00:28:14,760 --> 00:28:21,560\\nAnd generally it\\'s a household form...it will be told in the household, so it\\'s got a chance...\\n\\n237 \\n00:28:21,800 --> 00:28:25,760\\nand it\\'s a well established tradition, so despite the mission intervention, it does carry on to a certain extent.\\n\\n238 \\n00:28:38,721 --> 00:28:42,320\\nAnd this is generally where you\\'re going to find the books that are written in the languages of Africa.\\n\\n239 \\n00:28:42,520 --> 00:28:43,601\\nRight.\\n\\n240 \\n00:28:44,080 --> 00:28:46,001\\nObviously we cover the whole continent,\\n\\n241 \\n00:28:46,001 --> 00:28:47,560\\nso you\\'ll have English, French, German...\\n\\n242 \\n00:28:47,765 --> 00:28:48,881\\nand South African languages?...\\n\\n243 \\n00:28:49,680 --> 00:28:54,200\\nYes, the preponderance is on the South African languages.\\n\\n244 \\n00:29:11,000 --> 00:29:15,200\\nWe arrange our book collection according to the Library of Congress classification,\\n\\n245 \\n00:29:15,440 --> 00:29:22,800\\nso when you get into among books that have got PL on their spines, that means you\\'re in the languages of Africa,\\n\\n246 \\n00:29:23,240 --> 00:29:24,521\\nwhich can be from the North to the South.\\n\\n247 \\n00:29:25,200 --> 00:29:33,321\\nIf you come here, you\\'ll see the start of what we can offer people in Northern Sotho.\\n\\n248 \\n00:29:34,360 --> 00:29:37,840\\nIt\\'s not a very long sequence, it ends at about there.\\n\\n249 \\n00:29:38,321 --> 00:29:44,600\\nSo...until about here. So the total collection is about this and this...until about here.\\n\\n250 \\n00:29:45,280 --> 00:29:46,240\\nIt\\'s a shelf.\\n\\n251 \\n00:29:47,360 --> 00:29:51,360\\nI would imagine that the amount of scholarly material that exists elsewhere is fairly thin.\\n\\n252 \\n00:29:51,920 --> 00:29:54,921\\nI mean, original scholarly material in Northern Sotho?\\n\\n253 \\n00:29:57,081 --> 00:29:58,521\\nThe impression that I have is yes; I would agree with you.\\n\\n254 \\n00:29:59,160 --> 00:30:04,160\\nIt\\'s the same old story, if you wish to publish,\\n\\n255 \\n00:30:04,400 --> 00:30:11,521\\nyou have to find a publisher who\\'s going to find it worth his or her while to print in numbers, and that\\'s a very difficult proposition.\\n\\n256 \\n00:30:13,881 --> 00:30:19,480\\nI imagine that there\\'s very little scholarly publishing that happens in languages other than English and Afrikaans, no?\\n\\n257 \\n00:30:21,880 --> 00:30:23,400\\nI think that\\'s a fair comment. <i>That\\'s a fair comment...</i>\\n\\n258 \\n00:30:53,880 --> 00:30:58,801\\nDo you see a way by which both the openness of Wikipedia,\\n\\n259 \\n00:30:59,080 --> 00:31:05,120\\nas well as specific work on Wikipedia and Wikimedia projects has some kind of relationship with the university that could be useful?\\n\\n260 \\n00:31:05,960 --> 00:31:15,440\\nCertainly. The university has been doing a lot of...or some...work around publishing work\\n\\n261 \\n00:31:15,960 --> 00:31:18,721\\nwith Creative Commons licenses.\\n\\n262 \\n00:31:19,360 --> 00:31:30,480\\nThere\\'s a site for instance, I think it\\'s presentations.wits.ac.za where a number of academics and other members\\n\\n263 \\n00:31:30,800 --> 00:31:37,200\\nof the university community put their presentations and many of them use different kinds of CC licenses.\\n\\n264 \\n00:31:38,720 --> 00:31:44,320\\nThere is interesting work happening in the multimedia space.\\n\\n265 \\n00:31:44,801 --> 00:31:51,002\\nAnd some of the people involved in this, including the Dean of that faculty, the faculty of humanities, are very interested in the work of Wikipedia.\\n\\n266 \\n00:31:51,400 --> 00:31:55,680\\nThey get it. They understand it, and they can see the potential for collaboration.\\n\\n267 \\n00:31:56,800 --> 00:32:03,600\\nThe people who are involved in library work, people like Denise Nicholson, have been doing a lot of work around copyright/copyleft.\\n\\n268 \\n00:32:04,320 --> 00:32:13,560\\nI think that the chapter really provides an opportunity to give access to information to people who ordinarily don\\'t have that information.\\n\\n269 \\n00:32:15,240 --> 00:32:19,880\\nJust in terms of a research tool, in terms of a teaching tool, you know.\\n\\n270 \\n00:32:21,080 --> 00:32:29,520\\nJust a few months ago, straight after the World Cup last year, we had a change in our school\\'s curricula.\\n\\n271 \\n00:32:30,841 --> 00:32:34,721\\nSo the syllabus was changed mid-year and the teachers didn\\'t know what they were teaching.\\n\\n272 \\n00:32:35,120 --> 00:32:37,280\\nAnd it still is that way.\\n\\n273 \\n00:32:38,120 --> 00:32:43,680\\nThey still have to create the syllabi, they still have to find their feet in terms of what they have to be teaching at school.\\n\\n274 \\n00:32:44,361 --> 00:32:48,961\\nSo we essentially have our education system in crisis.\\n\\n275 \\n00:32:59,320 --> 00:33:07,761\\nI think my concern here is about people\\'s knowledge, versus scholarly knowledge again.\\n\\n276 \\n00:33:08,241 --> 00:33:11,401\\nWhat you call usable knowledge or tacit knowledge.\\n\\n277 \\n00:33:12,160 --> 00:33:16,720\\nTacit knowledge comes from practice, and practice is embodied:\\n\\n278 \\n00:33:17,160 --> 00:33:19,800\\nit\\'s embodied in experience.\\n\\n279 \\n00:33:32,575 --> 00:33:43,975\\nThe name of the temple is Kottathu, and it is also known as Neeliyar Kaavu.\\n\\n280 \\n00:33:44,175 --> 00:33:47,700\\nThe name Neeliyar Kaavu is more famous.\\n\\n281 \\n00:33:47,900 --> 00:33:51,370\\nWhat is the name of this Theyyam?\\n\\n282 \\n00:33:51,570 --> 00:33:54,300\\nThe name of this Theyyam is Kottathamma, and it is popularly known as Neeliyar Bhagavathi.\\n\\n283 \\n00:33:54,500 --> 00:33:57,300\\nAmong locals, the name Kottathamma is used more frequently.\\n\\n284 \\n00:33:57,500 --> 00:34:01,100\\nOlathara is another local name by which this Theyyam is known.\\n\\n285 \\n00:34:01,300 --> 00:34:06,500\\nWhat is the distinguishing feature of the costume of this Theyyam?\\n\\n286 \\n00:34:06,970 --> 00:34:11,600\\nThis Theyyam has long hair and is dressed completely in red.\\n\\n287 \\n00:34:21,120 --> 00:34:28,350\\nThere was an illam, a Brahmin residence, at Manathara, near Kottiyur in Kanur.\\n\\n288 \\n00:34:28,235 --> 00:34:35,199\\nSince that illam was in a remote place, when other Brahmins visited, they were forced to stay there.\\n\\n289 \\n00:34:35,400 --> 00:34:48,900\\nIt is said that when people went to bathe in the illam pond, they would disappear.\\n\\n290 \\n00:34:50,875 --> 00:34:59,370\\nOnce, Kalakaad Thanthri, a famous Brahmin, visited this illam.\\n\\n291 \\n00:34:59,570 --> 00:35:09,120\\nIn the evening, he went to the illam pond to bathe, taking a towel and thali (leaves used as soap) with him.\\n\\n292 \\n00:35:09,320 --> 00:35:16,800\\nHe saw a beautiful lady standing on the other side of the pond.\\n\\n293 \\n00:35:17,000 --> 00:35:23,300\\nThe lady asked him - Who are you? He replied - I am Kalakaad.\\n\\n294 \\n00:35:23,500 --> 00:35:27,450\\nThen the lady said - I am Kali (the Goddess).\\n\\n295 \\n00:35:27,650 --> 00:35:34,400\\nKali took the thali from him and squeezed it and gave him the juice.\\n\\n296 \\n00:35:34,600 --> 00:35:39,170\\nHe drank it, saying that it was amruth (holy nectar), given to him by the Goddess.\\n\\n297 \\n00:35:39,370 --> 00:35:46,300\\nThe Goddess Kali was pleased with him and told him to install her in a place where the tiger and the cow graze together.\\n\\n298 \\n00:35:46,500 --> 00:35:51,800\\nHe installed Goddess Kali at Mangattu Parambu. As the myth goes, that is how she came here.\\n\\n299 \\n00:36:04,035 --> 00:36:08,500\\nTheyyam is a form of worship.\\n\\n300 \\n00:36:08,700 --> 00:36:16,475\\nWe worship through idols, pictures, etc.\\n\\n301 \\n00:36:16,675 --> 00:36:27,870\\nGod incarnates as human beings and devotees are then able to interact with Him directly...\\n\\n302 \\n00:36:28,070 --> 00:36:33,000\\nand this is the premise of Theyyam worship.\\n\\n303 \\n00:36:33,200 --> 00:36:51,600\\nAbout Neeliyar Bhagavathi, there are many stories in the villages here...\\n\\n304 \\n00:36:51,800 --> 00:36:57,970\\nbut the songs in the performances do not mention these stories.\\n\\n305 \\n00:36:58,170 --> 00:37:04,000\\nThey do not mention anything beyond the manifestation of a divine power, Shakti.\\n\\n306 \\n00:37:04,200 --> 00:37:14,235\\nThe myths that circulate about the Goddess Kali are not substantiated by the lyrics of the songs.\\n\\n307 \\n00:37:14,435 --> 00:37:23,170\\nI haven\\'t come across any basis for the stories.\\n\\n308 \\n00:37:51,321 --> 00:37:56,801\\nThis library started funtioning in 1998, and it was open to the public in 1999.\\n\\n309 \\n00:37:57,280 --> 00:38:01,320\\nThis is the history section. History. And this is the Malayalam section.\\n\\n310 \\n00:38:04,681 --> 00:38:11,360\\nWe have more than 30,000 books, and out of this, about 20% is Malayalam.\\n\\n311 \\n00:38:12,360 --> 00:38:15,960\\nHere we have a collection on sociology, written in Malayalam.\\n\\n312 \\n00:38:17,240 --> 00:38:27,680\\nKerala Paddanam. Adivasi Puravarta...about tribals. This is the tribal...folklore section.\\n\\n313 \\n00:38:44,121 --> 00:38:51,080\\nWhen we started our work with Kali, the most difficult thing was to work with women\\n\\n314 \\n00:38:51,400 --> 00:38:55,080\\nand actually get them to feel a sense of confidence\\n\\n315 \\n00:38:55,400 --> 00:38:57,840\\nthat what they had to say had any value at all.\\n\\n316 \\n00:38:58,641 --> 00:39:05,960\\nBecause by that time the hierarchies of what constituted legitimate knowledge and what was outside the frame of that,\\n\\n317 \\n00:39:06,880 --> 00:39:11,960\\nwhat the canons were, and what those boundaries were, had been set....\\n\\n318 \\n00:39:12,480 --> 00:39:13,360\\nset in stone almost.\\n\\n319 \\n00:39:13,840 --> 00:39:21,041\\nNow to rupture that, to enter that, to stretch and expand the boundaries of that, to nuance that,\\n\\n320 \\n00:39:21,320 --> 00:39:24,081\\nto bring in new forms of knowledge into that,\\n\\n321 \\n00:39:24,441 --> 00:39:25,720\\nwas a very difficult enterprise.\\n\\n322 \\n00:39:26,600 --> 00:39:34,680\\nAnd it was more difficult because those people who could produce that knowledge themselves did not have the confidence to be able to do that.\\n\\n323 \\n00:39:35,720 --> 00:39:42,600\\nSo then a space was opened up, for a much greater sense, of not just oral history as sources for facts,\\n\\n324 \\n00:39:43,721 --> 00:39:50,481\\nbut oral history as a key avenue to understanding different forms of historical experience.\\n\\n325 \\n00:39:51,400 --> 00:39:55,840\\nBut what you are posing is the possibility of a new stage.\\n\\n326 \\n00:39:56,400 --> 00:40:00,841\\nWhich is to be able to put all of these different modes of producing history...\\n\\n327 \\n00:40:01,280 --> 00:40:06,961\\nto make them all open to a kind of equal access...\\n\\n328 \\n00:40:07,680 --> 00:40:11,321\\nso where writers of history have access to them and can produce from them,\\n\\n329 \\n00:40:11,760 --> 00:40:14,920\\nbut also where readers of history have access to them.\\n\\n330 \\n00:40:14,920 --> 00:40:18,560\\nAnd that invites readers of history to act as writers of history.\\n\\n331 \\n00:40:19,040 --> 00:40:29,800\\nThis game (tsere tsere) is usually played by very young children, starting from about the age of 4. As they grow older, they stop playing it.\\n\\n332 \\n00:40:30,000 --> 00:40:37,530\\nToday is something like a memorial to the game; that\\'s the spirit in which we are playing it.\\n\\n333 \\n00:40:38,700 --> 00:40:42,900\\nThe younger generation, they no longer play this game; they are only interested in playing ball.\\n\\n334 \\n00:40:49,000 --> 00:40:52,240\\nThe youth of today are definitely not playing this game.\\n\\n335 \\n00:41:09,700 --> 00:41:12,120\\nYes, we still play the game (tsere tsere), though the rules have changed a little.\\n\\n336 \\n00:41:12,200 --> 00:41:20,300\\nIn our version of the game, we draw small squares which act as symbols for the \\'houses\\'...\\n\\n337 \\n00:41:20,400 --> 00:41:27,150\\nand then we play the game, moving from 1 to 8.\\n\\n338 \\n00:41:27,250 --> 00:41:34,000\\nWhen we are done with jumping, we are still not allowed to step between the lines.\\n\\n339 \\n00:42:03,920 --> 00:42:06,361\\nHave a nice trip!\\n\\n340 \\n00:42:19,360 --> 00:42:25,641\\nA lot of these stories are about, you know, as I was saying, strongly erotic themes,\\n\\n341 \\n00:42:26,080 --> 00:42:29,841\\nthemes of excess, themes of desire, all of those sorts of things,\\n\\n342 \\n00:42:30,601 --> 00:42:32,561\\nand that has been lost.\\n\\n343 \\n00:42:33,360 --> 00:42:38,800\\nAnd they are also wonderfully magical-realist tales, they\\'re bizarre, and unexpected,\\n\\n344 \\n00:42:39,240 --> 00:42:42,920\\nand of course a lot of that has also been lost as they\\'ve been made more realist.\\n\\n345 \\n00:42:44,400 --> 00:42:52,240\\nAnd of course when missionaries come, they then start to write down those stories in keeping with their understanding of European fairy tale.\\n\\n346 \\n00:42:53,001 --> 00:42:58,560\\nAnd interestingly, this process of writing down European oral narrative happens at much the same time.\\n\\n347 \\n00:42:59,160 --> 00:43:04,680\\nSo the Grimm Brothers, for instance, start to write down and clean up at the same time....\\n\\n348 \\n00:43:05,040 --> 00:43:11,241\\nJust a footnote: there\\'s a wonderful story about the original version...one of the original versions of Little Red Riding Hood.\\n\\n349 \\n00:43:11,960 --> 00:43:15,000\\nIt\\'s kind of extraordinary.\\n\\n350 \\n00:43:15,480 --> 00:43:21,200\\nShe goes off to visit her grandmother, and her grandmother has been fully eaten,\\n\\n351 \\n00:43:21,681 --> 00:43:25,440\\nthere\\'s a bottle of blood that she thinks is wine and that she drinks,\\n\\n352 \\n00:43:25,720 --> 00:43:28,560\\nand of course the wolf in the story seduces her.\\n\\n353 \\n00:43:29,000 --> 00:02:08,960\\nSo these famous lines from Red Riding Hood, \"My, what big ears you have!\" is because she\\'s sitting right next to him.',\n", + " 'bytes': 38947,\n", + " 'sha1': '5jvs1e6vpd0utfobvc9yya8uc83anvf',\n", + " 'parent_id': 59124880,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606647837,\n", + " 'timestamp': '2021-11-11T16:52:01Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 15890759,\n", + " 'title': 'Prof Walter Lewin Elastic Collisions.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'some fixes',\n", + " 'text': '1\\n00:00:01,000 --> 00:00:05,000\\nAll right, last time\\nwe talked exclusively\\n\\n2\\n00:00:05,000 --> 00:00:07,000\\nabout completely\\ninelastic collisions.\\n\\n3\\n00:00:07,000 --> 00:00:09,000\\nToday I will talk\\n\\n4\\n00:00:09,000 --> 00:00:12,000\\nabout collisions\\nin more general terms.\\n\\n5\\n00:00:12,000 --> 00:00:15,000\\nLet\\'s take\\na one-dimensional case.\\n\\n6\\n00:00:15,000 --> 00:00:22,000\\nWe have here m1\\nand we have here m2,\\n\\n7\\n00:00:22,000 --> 00:00:29,000\\nand to make life a little easy,\\nwe\\'ll make v2 zero\\n\\n8\\n00:00:29,000 --> 00:00:35,000\\nand this particle has\\nvelocity v1.\\n\\n9\\n00:00:35,000 --> 00:00:44,000\\nAfter the collision,\\nm2 has a velocity v2 prime,\\n\\n10\\n00:00:44,000 --> 00:00:52,000\\nand m1, let it have\\na velocity v1 prime.\\n\\n11\\n00:00:52,000 --> 00:00:54,000\\nI don\\'t even know whether\\nit\\'s in this direction\\n\\n12\\n00:00:54,000 --> 00:00:55,000\\nor whether it is\\nin that direction.\\n\\n13\\n00:00:55,000 --> 00:00:59,000\\nYou will see\\nthat either one is possible.\\n\\n14\\n00:00:59,000 --> 00:01:02,000\\nTo find v1 prime\\nand to find v2 prime,\\n\\n15\\n00:01:02,000 --> 00:01:06,000\\nit\\'s clear that you\\nnow need two equations.\\n\\n16\\n00:01:06,000 --> 00:01:11,000\\nAnd if there is no net external\\nforce on the system as a whole\\n\\n17\\n00:01:11,000 --> 00:01:15,000\\nduring the collisions,\\nthen momentum is conserved.\\n\\n18\\n00:01:15,000 --> 00:01:17,000\\nAnd so you can write down\\n\\n19\\n00:01:17,000 --> 00:01:27,000\\nthat m1 v1 must be\\nm1 v1 prime plus m2 v2 prime.\\n\\n20\\n00:01:27,000 --> 00:01:29,000\\nNow, you may want to put\\narrows over there\\n\\n21\\n00:01:29,000 --> 00:01:31,000\\nto indicate\\nthat these are vectors,\\n\\n22\\n00:01:31,000 --> 00:01:33,000\\nbut since it\\'s\\na one-dimensional case,\\n\\n23\\n00:01:33,000 --> 00:01:34,000\\nyou can leave the arrows off\\n\\n24\\n00:01:34,000 --> 00:01:36,000\\nand the signs will then\\nautomatically take care\\n\\n25\\n00:01:36,000 --> 00:01:38,000\\nof the direction.\\n\\n26\\n00:01:38,000 --> 00:01:41,000\\nIf you call this plus,\\nthen if you get a minus sign,\\n\\n27\\n00:01:41,000 --> 00:01:46,000\\nyou know that the velocity is\\nin the opposite direction.\\n\\n28\\n00:01:46,000 --> 00:01:52,000\\nSo now we need\\na second equation.\\n\\n29\\n00:01:52,000 --> 00:01:54,000\\nNow, in physics\\n\\n30\\n0:01:54,000 --> 00:01:57,000\\nwe do believe very strongly\\nin the conservation of energy,\\n\\n31\\n00:01:57,000 --> 00:02:01,000\\nnot necessarily in the\\nconservation of kinetic energy.\\n\\n32\\n00:02:01,000 --> 00:02:04,000\\nAs you have seen last time,\\nyou can destroy kinetic energy.\\n\\n33\\n00:02:04,000 --> 00:02:07,000\\nBut somehow we believe\\nthat if you destroy energy,\\n\\n34\\n00:02:07,000 --> 00:02:09,000\\nit must come out\\nin some other form,\\n\\n35\\n00:02:09,000 --> 00:02:12,000\\nand you cannot create energy\\nout of nothing.\\n\\n36\\n00:02:12,000 --> 00:02:15,000\\nAnd in the case of the\\ncompletely inelastic collisions\\n\\n37\\n00:02:15,000 --> 00:02:16,000\\nthat we have seen last time,\\n\\n38\\n00:02:16,000 --> 00:02:19,000\\nwe lost kinetic energy,\\nwhich was converted to heat.\\n\\n39\\n00:02:19,000 --> 00:02:21,000\\nThere was internal friction.\\n\\n40\\n00:02:21,000 --> 00:02:23,000\\nWhen the car wreck plowed\\ninto each other,\\n\\n41\\n00:02:23,000 --> 00:02:26,000\\nthere was internal friction--\\nno external friction--\\n\\n42\\n00:02:26,000 --> 00:02:29,000\\nand that took out\\nkinetic energy.\\n\\n43\\n00:02:29,000 --> 00:02:35,000\\nAnd so, in its most general\\nform, you can write down\\n\\n44\\n00:02:35,000 --> 00:02:39,000\\nthat the kinetic energy\\nbefore the collision\\n\\n45\\n00:02:39,000 --> 00:02:40,000\\nplus some number Q\\n\\n46\\n00:02:40,000 --> 00:02:43,000\\nequals the kinetic energy\\nafter the collision.\\n\\n47\\n00:02:43,000 --> 00:02:46,000\\nAnd if you know Q,\\nthen you have a second equation,\\n\\n48\\n00:02:46,000 --> 00:02:51,000\\nand then you can solve\\nfor v1 prime and for v2 prime.\\n\\n49\\n00:02:51,000 --> 00:02:58,000\\nIf Q is larger than zero, then\\nyou have gained kinetic energy.\\n\\n50\\n00:02:58,000 --> 00:03:00,000\\nThat is possible;\\nwe did that last time.\\n\\n51\\n00:03:00,000 --> 00:03:03,000\\nWe had two cars which\\nwere connected by a spring,\\n\\n52\\n00:03:03,000 --> 00:03:05,000\\nand we burned the wire\\n\\n53\\n00:03:05,000 --> 00:03:08,000\\nand each went off\\nin the opposite direction.\\n\\n54\\n00:03:08,000 --> 00:03:09,000\\nThere was no kinetic energy\\n\\n55\\n00:03:09,000 --> 00:03:11,000\\nbefore... if you want\\nto call it the collision,\\n\\n56\\n00:03:11,000 --> 00:03:13,000\\nbut there was\\nkinetic energy afterwards.\\n\\n57\\n00:03:13,000 --> 00:03:15,000\\nThat was the potential energy\\nof the spring\\n\\n58\\n00:03:15,000 --> 00:03:17,000\\nthat was converted\\ninto kinetic energy.\\n\\n59\\n00:03:17,000 --> 00:03:19,000\\nSo Q can be larger than zero.\\n\\n60\\n00:03:19,000 --> 00:03:24,000\\nWe call that\\na superelastic collision.\\n\\n61\\n00:03:24,000 --> 00:03:26,000\\nIt could be an explosion.\\n\\n62\\n00:03:26,000 --> 00:03:28,000\\nThat\\'s a\\nsuperelastic collision.\\n\\n63\\n00:03:28,000 --> 00:03:31,000\\nAnd then there is the\\npossibility that Q equals zero,\\n\\n64\\n00:03:31,000 --> 00:03:32,000\\na very special case.\\n\\n65\\n00:03:32,000 --> 00:03:34,000\\nWe will deal with that today,\\n\\n66\\n00:03:34,000 --> 00:03:37,000\\nand we call that\\nan elastic collision.\\n\\n67\\n00:03:37,000 --> 00:03:41,000\\nI will often call it\\na completely elastic collision,\\n\\n68\\n00:03:41,000 --> 00:03:44,000\\nwhich is really not necessary.\\n\\n69\\n00:03:44,000 --> 00:03:47,000\\n\"Elastic\" itself already means\\nQ is zero.\\n\\n70\\n00:03:47,000 --> 00:03:49,000\\nAnd then there is a case--\\n\\n71\\n00:03:49,000 --> 00:03:52,000\\nof which we have seen\\nseveral examples last time--\\n\\n72\\n00:03:52,000 --> 00:03:55,000\\nof inelastic collisions,\\nwhen you lose kinetic energy,\\n\\n73\\n00:03:55,000 --> 00:04:01,000\\nso this is\\nan inelastic collision.\\n\\n74\\n00:04:01,000 --> 00:04:03,000\\nAnd so, if you know what Q is,\\n\\n75\\n00:04:03,000 --> 00:04:05,000\\nthen you can solve\\nthese equations.\\n\\n76\\n00:04:05,000 --> 00:04:07,000\\nWhenever Q is less than zero,\\n\\n77\\n00:04:07,000 --> 00:04:10,000\\nwhenever you lose\\nkinetic energy,\\n\\n78\\n00:04:10,000 --> 00:04:14,000\\nthe loss, in general,\\ngoes into heat.\\n\\n79\\n00:04:14,000 --> 00:04:17,000\\nNow I want to continue a case\\n\\n80\\n00:04:17,000 --> 00:04:22,000\\nwhereby I have\\na completely elastic collision.\\n\\n81\\n00:04:22,000 --> 00:04:24,000\\nSo Q is zero.\\n\\n82\\n00:04:24,000 --> 00:04:28,000\\nMomentum is conserved, because\\nthere was no net external force,\\n\\n83\\n00:04:28,000 --> 00:04:31,000\\nso now kinetic energy is\\nalso conserved.\\n\\n84\\n00:04:31,000 --> 00:04:35,000\\nAnd so I can write down now\\none-half m1 v1 squared--\\n\\n85\\n00:04:35,000 --> 00:04:38,000\\nthat was the kinetic energy\\nbefore the collision--\\n\\n86\\n00:04:38,000 --> 00:04:42,000\\nmust be the kinetic energy\\nafter the collision\\n\\n87\\n00:04:42,000 --> 00:04:45,000\\none-half m1 v1 prime squared\\n\\n88\\n00:04:45,000 --> 00:04:51,000\\nplus one-half\\nm2 v2 prime squared.\\n\\n89\\n00:04:51,000 --> 00:04:53,000\\nThis is my equation number one,\\n\\n90\\n00:04:53,000 --> 00:04:55,000\\nand this is\\nmy equation number two.\\n\\n91\\n00:04:55,000 --> 00:04:57,000\\nAnd they can be solved;\\nyou can solve them.\\n\\n92\\n00:04:57,000 --> 00:04:59,000\\nThey are solved in your book.\\n\\n93\\n00:04:59,000 --> 00:05:01,000\\nI will simply give you\\nthe results,\\n\\n94\\n00:05:01,000 --> 00:05:03,000\\nbecause the results are\\nvery interesting to play with.\\n\\n95\\n00:05:03,000 --> 00:05:05,000\\nThat\\'s what\\nwe will be doing today.\\n\\n96\\n00:05:05,000 --> 00:05:19,000\\nv1 prime will be m1 minus m2\\ndivided by m1 plus m2 times v1\\n\\n97\\n00:05:19,000 --> 00:05:31,000\\nand v2 prime will be 2 m1\\ndivided by m1 plus m2 times v1.\\n\\n98\\n00:05:31,000 --> 00:05:34,000\\nThe first thing\\nthat you already see right away\\n\\n99\\n00:05:34,000 --> 00:05:38,000\\nis that v2 prime is always\\nin the same direction as v1.\\n\\n100\\n00:05:38,000 --> 00:05:39,000\\nThat\\'s completely obvious,\\n\\n101\\n00:05:39,000 --> 00:05:43,000\\nbecause the second object\\nwas standing still, remember?\\n\\n102\\n00:05:43,000 --> 00:05:46,000\\nSo if you plow something\\ninto the second object,\\n\\n103\\n00:05:46,000 --> 00:05:48,000\\nthey obviously continue\\nin that direction.\\n\\n104\\n00:05:48,000 --> 00:05:49,000\\nThat\\'s clear.\\n\\n105\\n00:05:49,000 --> 00:05:52,000\\nSo you see you can never have\\na sign reversal here.\\n\\n106\\n00:05:52,000 --> 00:05:55,000\\nHere, however, you can have\\na sign reversal.\\n\\n107\\n00:05:55,000 --> 00:05:57,000\\nIf you bounce a ping-pong ball\\noff a billiard ball,\\n\\n108\\n00:05:57,000 --> 00:05:59,000\\nthe ping-pong ball\\nwill come back\\n\\n109\\n00:05:59,000 --> 00:06:01,000\\nand this one becomes negative,\\n\\n110\\n00:06:01,000 --> 00:06:04,000\\nwhereas if you plow a billiard\\nball into a ping-pong ball,\\n\\n111\\n00:06:04,000 --> 00:06:05,000\\nit will go forward.\\n\\n112\\n00:06:05,000 --> 00:06:08,000\\nAnd so this can both be\\nnegative and can be positive\\n\\n113\\n00:06:08,000 --> 00:06:11,000\\ndepending upon whether\\nthe upstairs is negative\\n\\n114\\n00:06:11,000 --> 00:06:13,000\\nor positive.\\n\\n115\\n00:06:13,000 --> 00:06:16,000\\nSo this is the result which\\nholds under three conditions:\\n\\n116\\n00:06:16,000 --> 00:06:20,000\\nthat the kinetic energy\\nis conserved, so Q is zero;\\n\\n117\\n00:06:20,000 --> 00:06:21,000\\nthat momentum is conserved;\\n\\n118\\n00:06:21,000 --> 00:06:27,000\\nand that v2 before\\nthe collision equals zero.\\n\\n119\\n00:06:27,000 --> 00:06:33,000\\nLet\\'s look at three interesting\\ncases whereby we go to extremes.\\n\\n120\\n00:06:33,000 --> 00:06:35,000\\nAnd let\\'s first take the case\\n\\n121\\n00:06:35,000 --> 00:06:40,000\\nthat m1 is much,\\nmuch larger than m2.\\n\\n122\\n00:06:40,000 --> 00:06:43,000\\nm1 is much, much larger than m2.\\n\\n123\\n00:06:43,000 --> 00:06:50,000\\nAnother way of thinking about\\nthat is that let m2 go to zero.\\n\\n124\\n00:06:50,000 --> 00:06:53,000\\nExtreme case, the limiting case.\\n\\n125\\n00:06:53,000 --> 00:06:56,000\\nSo it\\'s like having\\na bowling ball\\n\\n126\\n00:06:56,000 --> 00:06:59,000\\nthat you collide\\nwith a ping-pong ball.\\n\\n127\\n00:06:59,000 --> 00:07:05,000\\nIf you look at that equation\\nwhen m2 goes to zero--\\n\\n128\\n00:07:05,000 --> 00:07:12,000\\nthis is zero, this is zero--\\nnotice that v1 prime equals v1.\\n\\n129\\n00:07:12,000 --> 00:07:14,000\\nThat is completely intuitive.\\n\\n130\\n00:07:14,000 --> 00:07:17,000\\nIf a bowling ball collides\\nwith a ping-pong ball\\n\\n131\\n00:07:17,000 --> 00:07:19,000\\nthe bowling ball doesn\\'t\\neven see the ping-pong ball.\\n\\n132\\n00:07:19,000 --> 00:07:22,000\\nIt continues its route\\nas if nothing happened.\\n\\n133\\n00:07:22,000 --> 00:07:23,000\\nThat\\'s exactly what you see.\\n\\n134\\n00:07:23,000 --> 00:07:28,000\\nAfter the collision, the bowling\\nball continues unaltered.\\n\\n135\\n00:07:28,000 --> 00:07:30,000\\nWhat is v2 prime?\\n\\n136\\n00:07:30,000 --> 00:07:32,000\\nThat is not so intuitive.\\n\\n137\\n00:07:32,000 --> 00:07:38,000\\nIf you substitute in there\\nm2 equals zero,\\n\\n138\\n00:07:38,000 --> 00:07:46,000\\nthen you get plus 2 v1--\\nnot obvious at all, plus 2 v1.\\n\\n139\\n00:07:46,000 --> 00:07:48,000\\nIt\\'s not something\\nI even want you to see;\\n\\n140\\n00:07:48,000 --> 00:07:49,000\\nI can\\'t see it either.\\n\\n141\\n00:07:49,000 --> 00:07:50,000\\nI\\'ll do a demonstration.\\n\\n142\\n00:07:50,000 --> 00:07:52,000\\nYou can see\\nthat it really happens.\\n\\n143\\n00:07:52,000 --> 00:07:55,000\\nSo, now you take a bowling ball\\n\\n144\\n00:07:55,000 --> 00:07:59,000\\nand you collide the bowling ball\\nwith the ping-pong ball\\n\\n145\\n00:07:59,000 --> 00:08:04,000\\nand the ping-pong ball will get\\na velocity 2 v1--\\n\\n146\\n00:08:04,000 --> 00:08:05,000\\nnot more, not less--\\n\\n147\\n00:08:05,000 --> 00:08:09,000\\nand the bowling ball continues\\nat the same speed.\\n\\n148\\n00:08:09,000 --> 00:08:14,000\\nNow let\\'s take a case whereby m1\\nequals much, much less than m2;\\n\\n149\\n00:08:14,000 --> 00:08:18,000\\nin other words, in the limiting\\ncase, m1 goes to zero.\\n\\n150\\n00:08:18,000 --> 00:08:20,000\\nAnd we substitute that in here.\\n\\n151\\n00:08:20,000 --> 00:08:24,000\\nSo m1 goes to zero,\\nso this is zero\\n\\n152\\n00:08:24,000 --> 00:08:29,000\\nand so you see\\nv1 prime equals minus v1.\\n\\n153\\n00:08:29,000 --> 00:08:33,000\\nv1 prime equals minus v1,\\ncompletely obvious.\\n\\n154\\n00:08:33,000 --> 00:08:36,000\\nThe ping-pong ball bounces\\noff the bowling ball\\n\\n155\\n00:08:36,000 --> 00:08:37,000\\nand it just bounces back.\\n\\n156\\n00:08:37,000 --> 00:08:39,000\\nAnd this is what you see.\\n\\n157\\n00:08:39,000 --> 00:08:41,000\\nAnd the bowling ball\\ndoesn\\'t do anything,\\n\\n158\\n00:08:41,000 --> 00:08:46,000\\nbecause m1 goes to zero,\\nso v2 prime goes to zero.\\n\\n159\\n00:08:46,000 --> 00:08:48,000\\n[…]\\n\\n160\\n00:08:48,000 --> 00:08:50,000\\nSo that\\'s very intuitive.\\n\\n161\\n00:08:50,000 --> 00:08:55,000\\nAnd now we have a very cute case\\nthat m1 equals m2.\\n\\n162\\n00:08:55,000 --> 00:08:58,000\\nAnd when you substitute\\nthat in here--\\n\\n163\\n00:08:58,000 --> 00:09:03,000\\nwhen m1 equals m2--\\nv1 prime becomes zero.\\n\\n164\\n00:09:03,000 --> 00:09:10,000\\nSo the first one stops\\nwith v2 prime becomes v1.\\n\\n165\\n00:09:10,000 --> 00:09:13,000\\nIf m1 equals m2,\\n\\n166\\n00:09:13,000 --> 00:09:15,000\\nyou have two downstairs here\\nand two upstairs\\n\\n167\\n00:09:15,000 --> 00:09:21,000\\nand you see\\nthat v2 prime equals v1.\\n\\n168\\n00:09:21,000 --> 00:09:22,000\\nAnd that is a remarkable case--\\n\\n169\\n00:09:22,000 --> 00:09:25,000\\nyou\\'ve all seen that, you\\'ve all\\nplayed with Newton\\'s cradle.\\n\\n170\\n00:09:25,000 --> 00:09:26,000\\nYou have two billiard balls.\\n\\n171\\n00:09:26,000 --> 00:09:29,000\\nOne is still\\nand the other one bangs on it.\\n\\n172\\n00:09:29,000 --> 00:09:30,000\\nThe first one stops\\n\\n173\\n00:09:30,000 --> 00:09:33,000\\nand the second one takes off\\nwith the speed of the first.\\n\\n174\\n00:09:33,000 --> 00:09:34,000\\nAn amazing thing.\\n\\n175\\n00:09:34,000 --> 00:09:36,000\\nWe\\'ve all seen it.\\n\\n176\\n00:09:36,000 --> 00:09:37,000\\nI presume you have all seen it.\\n\\n177\\n00:09:37,000 --> 00:09:39,000\\nMost people do this\\nwith pendulums\\n\\n178\\n00:09:39,000 --> 00:09:42,000\\nwhere they bounce these balls\\nagainst each other.\\n\\n179\\n00:09:42,000 --> 00:09:44,000\\nI will do it here with a model\\n\\n180\\n00:09:44,000 --> 00:09:46,000\\nthat you can see\\na little easier.\\n\\n181\\n00:09:46,000 --> 00:09:48,000\\nI have here billiard balls,\\n\\n182\\n00:09:48,000 --> 00:09:50,000\\nand if I bounce this one\\non this one,\\n\\n183\\n00:09:50,000 --> 00:09:52,000\\nthen we have case number three.\\n\\n184\\n00:09:52,000 --> 00:09:54,000\\nThen you see\\nthis one stands still\\n\\n185\\n00:09:54,000 --> 00:09:58,000\\nand this one takes over\\nthe speed-- quite amazing.\\n\\n186\\n00:09:58,000 --> 00:10:00,000\\nEvery time I see this,\\nI love it.',\n", + " 'bytes': 13934,\n", + " 'sha1': '3yt7rastphs7u9dx0ledvv4sglavgcu',\n", + " 'parent_id': 57094869,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 57734657,\n", + " 'timestamp': '2011-08-07T21:53:01Z',\n", + " 'user': {'id': 660671, 'text': 'ANDROBETA'},\n", + " 'page': {'id': 16025828,\n", + " 'title': 'Polarization Filter with Clouds German.ogg.undefined.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Romanian subtitles using [[Commons:Universal_Subtitles|UniversalSubs]]',\n", + " 'text': '1\\n00:00:00 --> 00:00:03,656\\nPoziția soarelui: vest. Direcția privirii: nord.\\n\\n3\\n00:00:03,979 --> 00:00:07,492\\nFiltru de polarizare aplicat transversal\\n\\n4\\n00:00:09,338 --> 00:00:11,707\\nFiltru de polarizare aplicat longitudinal\\n\\n5\\n00:00:15,086 --> 00:00:19,731\\nTransversal | Longitudinal',\n", + " 'bytes': 287,\n", + " 'sha1': 'g4wvwxbevfqqe5fa8eprkhs4w9wkcpc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606353538,\n", + " 'timestamp': '2021-11-09T09:44:16Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 16122232,\n", + " 'title': 'Wiki loves monuments.ogv.ro.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Wiki loves monuments.ogg.ro.srt]] to [[TimedText:Wiki loves monuments.ogv.ro.srt]]: rename of the original file',\n", + " 'text': '1\\n00:00:24,541 --> 00:00:26,777\\nNume: Teatrul din Jorat\\nArticol: [...]\\n\\n3\\n00:00:44,458 --> 00:00:48,75\\nTEATRUL DIN JORAT\\n\\n4\\n00:01:44,304 --> 00:01:45,942\\nWikipediștii\\n\\n5\\n00:01:48,333 --> 00:01:50,252\\ndin toată lumea\\n\\n6\\n00:01:52,354 --> 00:01:54,353\\niubesc monumentele.\\n\\n7\\n00:01:55,999 --> 00:01:58,837\\nhttp://wikilovesmonuments.ro/',\n", + " 'bytes': 333,\n", + " 'sha1': '0vg5mvpyl6dg6a2mdqxgfobiious7b9',\n", + " 'parent_id': 58249994,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606353522,\n", + " 'timestamp': '2021-11-09T09:44:04Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 16125129,\n", + " 'title': 'Wiki loves monuments.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Wiki loves monuments.ogg.sv.srt]] to [[TimedText:Wiki loves monuments.ogv.sv.srt]]: rename of the original file',\n", + " 'text': '1\\n00:01:44,000 --> 00:01:47,000\\nWikimedianer\\n\\n2\\n00:01:48,500 --> 00:01:51,500\\nfrån hela världen\\n\\n3\\n00:01:52,500 --> 00:01:54,000\\nälskar minnesmärken\\n\\n4\\n00:01:56,000 --> 00:01:59,000\\nWiki loves monuments',\n", + " 'bytes': 206,\n", + " 'sha1': '4q3s9juuhepjnik8fkyzt1roe4v49gz',\n", + " 'parent_id': 58143520,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 58597183,\n", + " 'timestamp': '2011-08-28T03:26:28Z',\n", + " 'user': {'id': 493491, 'text': 'Mathonius'},\n", + " 'page': {'id': 16247991,\n", + " 'title': 'Wikipedia ridotto.ogv.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'nl translation of [[:TimedText:Wikipedia ridotto.ogv.en.srt]] (oldid 41873960)',\n", + " 'text': '1\\n00:00:07,686 --> 00:00:11,934\\nWikipedia ontstond in 2001. Het doel was om de grootste\\n\\n2\\n00:00:11,973 --> 00:00:15,443\\nopen-content-encyclopedie ooit te creeëren.\\n\\n3\\n00:00:15,710 --> 00:00:19,598\\nWikipedia wordt geschreven door vele vrijwilligers.\\n\\n4\\n00:00:19,751 --> 00:00:22,465\\nIedereen kan bijdragen. Laten we zien hoe.\\n\\n5\\n00:00:23,854 --> 00:00:27,300\\nBijna elk artikel op Wikipedia heeft een tabje aan de bovenkant\\n\\n6\\n00:00:27,335 --> 00:00:30,492\\nmet daarop het woord \"bewerken\" (\"modifica\"). Het biedt de mogelijkheid om\\n\\n7\\n00:00:30,536 --> 00:00:34,428\\nprecies datgene te doen: het bewerken van de pagina die je leest.\\n\\n8\\n00:00:35,043 --> 00:00:39,465\\nWikipedia heeft geen redactioneel personeel. Elke lezer\\n\\n9\\n00:00:39,540 --> 00:00:42,990\\nheeft toegang tot de inhoud van alle pagina\\'s van de encyclopedie\\n\\n10\\n00:00:43,019 --> 00:00:45,932\\nen kan deze bewerken, zelfs zonder een account aan te hoeven maken.\\n\\n11\\n00:00:46,151 --> 00:00:49,719\\nVoor de tekstopmaak wordt een speciale code gebruikt,\\n\\n12\\n00:00:49,728 --> 00:00:53,638\\nmaar het is vrij simpel en makkelijk om te leren.\\n\\n13\\n00:00:53,989 --> 00:00:57,078\\nDoor het opslaan van je bewerkingen, ga je akkoord met het vrijgeven\\n\\n14\\n00:00:57,112 --> 00:00:59,573\\nvan je bijdrage onder een vrije licentie.\\n\\n15\\n00:00:59,652 --> 00:01:03,546\\nIedereen zal de tekst kunnen lezen, gebruiken en aanpassen,\\n\\n16\\n00:01:03,561 --> 00:01:07,693\\nzelfs voor commercieel gebruik, zolang de auteur van de tekst wordt vermeld\\n\\n17\\n00:01:07,721 --> 00:01:11,200\\nen afgeleide werken onder dezelfde licentie worden vrijgegeven.\\n\\n18\\n00:01:11,561 --> 00:01:16,019\\nHet is ook belangrijk om te onthouden dat elke gebruiker, ook indien niet geregistreerd,\\n\\n19\\n00:01:16,073 --> 00:01:19,998\\nzelf verantwoordelijk is voor zijn of haar bijdragen.\\n\\n20\\n00:01:20,542 --> 00:01:24,743\\nEenmaal opgeslagen, is de verandering direct zichtbaar voor iedereen!\\n\\n21\\n00:01:25,715 --> 00:01:29,795\\nWikipedia is geen willekeurige verzameling van informatie,\\n\\n22\\n00:01:29,820 --> 00:01:34,142\\nmaar een encyclopedie. Het is een systematische collectie van menselijke kennis.\\n\\n23\\n00:01:34,361 --> 00:01:36,797\\nSommige soorten bijdragen, zoals\\n\\n24\\n00:01:36,816 --> 00:01:40,559\\nsimpele definities en oorspronkelijk onderzoek, zijn niet toegestaan.\\n\\n25\\n00:01:41,748 --> 00:01:44,853\\nElke pagina heeft zijn eigen geschiedenis, die \\n\\n26\\n00:01:44,878 --> 00:01:48,311\\nalle paginaversies laat zien sinds de creatie ervan.\\n\\n27\\n00:01:48,562 --> 00:01:51,551\\nNaast het tijdstip, de datum en de samenvatting van elke aanpassing,\\n\\n28\\n00:01:51,566 --> 00:01:54,416\\nregistreert de software ook wie het uitvoerde.\\n\\n29\\n00:01:54,638 --> 00:01:57,534\\nAls de bijdrager geen account gebruikt, dan wordt het IP-adres\\n\\n30\\n00:01:57,541 --> 00:02:00,116\\nvan zijn of haar computernetwerk ook opgenomen in de geschiedenis van de pagina.\\n\\n31\\n00:02:00,679 --> 00:02:03,639\\nDe geschiedenis biedt de lezer de mogelijkheid om\\n\\n32\\n00:02:03,679 --> 00:02:06,777\\nelke twee verschillende versies te vergelijken, waarbij de verschillen worden benadrukt.\\n\\n33\\n00:02:07,467 --> 00:02:11,381\\nElke verandering op Wikipedia wordt geregistreerd; dus als je begint,\\n\\n34\\n00:02:11,397 --> 00:02:14,586\\nis het raadzaam om gebruik te maken van de testpagina, genaamd de \"zandbak\",\\n\\n35\\n00:02:14,610 --> 00:02:16,755\\ndie vrijelijk bewerkt kan worden.\\n\\n36\\n00:02:16,803 --> 00:02:20,736\\nGeregistreerde gebruikers kunnen ook\\n\\n37\\n00:02:20,801 --> 00:02:24,334\\npersoonlijke testpagina\\'s aanmaken onder hun gebruikerspagina.\\n\\n38\\n00:02:24,924 --> 00:02:28,020\\nMaak een link aan naar de door jou gekozen paginatitel om een nieuwe pagina aan te maken,\\n\\n39\\n00:02:28,109 --> 00:02:30,844\\nof klik op een bestaande \"rode link\".\\n\\n40\\n00:02:30,929 --> 00:02:33,148\\nHet is raadzaam om eerst na te gaan\\n\\n41\\n00:02:33,209 --> 00:02:35,461\\nof de pagina nog niet bestaat.\\n\\n42\\n00:02:36,025 --> 00:02:38,838\\nOm productieve samenwerking te waarborgen,\\n\\n43\\n00:02:38,841 --> 00:02:42,074\\nheeft de gemeenschap een aantal richtlijnen ontwikkeld,\\n\\n44\\n00:02:42,114 --> 00:02:44,811\\nwaartoe alle bijdragers worden uitgenodigd die te volgen en te bekrachtigen.\\n\\n45\\n00:02:45,253 --> 00:02:47,615\\nEen van de voornaamste richtlijnen op Wikipedia\\n\\n46\\n00:02:47,687 --> 00:02:50,075\\ngaat over de manier waarop de inhoud van een artikel wordt georganiseerd.\\n\\n47\\n00:02:50,147 --> 00:02:53,071\\nLaten we bekijken hoe de gewoonlijke structuur van een artikel eruitziet.\\n\\n48\\n00:02:53,977 --> 00:02:58,354\\nIn de inleiding horen de belangrijkste onderwerpen van het artikel te worden samengevat\\n\\n49\\n00:02:58,370 --> 00:03:00,824\\nop simpele en beknopte wijze.\\n\\n50\\n00:03:00,989 --> 00:03:03,828\\nHet artikel is verdeeld in rubrieken;\\n\\n51\\n00:03:03,879 --> 00:03:06,856\\neen inhoudsopgave wordt automatisch gemaakt.\\n\\n52\\n00:03:07,138 --> 00:03:10,739\\nOp Wikipedia kunnen foto\\'s, diagrammen\\n\\n53\\n00:03:10,759 --> 00:03:14,142\\nof video\\'s worden ingevoegd, maar het is zeer belangrijk dat\\n\\n54\\n00:03:14,188 --> 00:03:17,207\\nhet materiaal dat je wilt uploaden vrijelijk te gebruiken is;\\n\\n55\\n00:03:17,221 --> 00:03:19,994\\ndat houdt in dat het onder een vrije licentie is vrijgegeven!\\n\\n56\\n00:03:20,434 --> 00:03:23,597\\nAlle informatie in een artikel dient\\nAll the informaton that an article contains must be\\n\\n57\\n00:03:23,604 --> 00:03:26,765\\nbetrouwbaar en verifieerbaar te zijn, dus het is noodzakelijk om\\n\\n58\\n00:03:26,805 --> 00:03:29,158\\naltijd de externe bronnen aan te geven;\\n\\n59\\n00:03:29,167 --> 00:03:32,283\\ndeze bronnen moeten algemeen erkend zijn voor hun juistheid.\\n\\n60\\n00:03:32,497 --> 00:03:35,339\\nAan het eind van elk artikel, na de tekst,\\n\\n61\\n00:03:35,353 --> 00:03:37,648\\nzijn enkele \"technische\" gedeelten,\\n\\n62\\n00:03:37,665 --> 00:03:40,095\\ndie aanvullende middelen verschaffen over het onderwerp.\\n\\n63\\n00:03:40,302 --> 00:03:43,422\\nIn sommige specifieke onderwerpgebieden zijn conventies\\n\\n64\\n00:03:43,405 --> 00:03:47,109\\nen bepaalde richtlijnen voor het schrijven van een artikel.\\n\\n65\\n00:03:48,500 --> 00:03:50,930\\nEen noodzakelijk principe van Wikipedia\\n\\n66\\n00:03:50,964 --> 00:03:53,335\\nis het neutrale standpunt.\\n\\n67\\n00:03:53,361 --> 00:03:55,981\\nArtikelen moeten geen persoonlijke meningen en oordelen bevatten,\\n\\n68\\n00:03:56,011 --> 00:03:59,739\\nmaar moeten alle belangrijke standpunten uitleggen\\n\\n69\\n00:03:59,754 --> 00:04:03,297\\nop een neutrale en evenwichtige manier, zonder vooroordeel.\\n\\n70\\n00:04:04,289 --> 00:04:08,548\\nElk Wikipedia-artikel heeft zijn eigen overlegpagina,\\n\\n71\\n00:04:08,627 --> 00:04:11,086\\nwaarop schrijvers en editors kunnen discussiëren en werken aan de ontwikkeling van\\n\\n72\\n00:04:11,114 --> 00:04:14,184\\neen artikel dat diverse standpunten belicht.\\n\\n73\\n00:04:14,395 --> 00:04:17,464\\nAnders dan op de artikelpagina ondertekenen de individuele bijdragers\\n\\n74\\n00:04:17,493 --> 00:04:20,784\\nhier hun opmerkingen. Maar onthoud dat de discussie\\n\\n75\\n00:04:20,823 --> 00:04:24,667\\nmoet bijdragen aan de ontwikkeling van het artikel, het is geen plaats voor uitgebreide betogen.\\n\\n76\\n00:04:25,117 --> 00:04:27,117\\nAls bijdragers de behoefte hebben\\n\\n77\\n00:04:27,147 --> 00:04:29,753\\nom veel mensen tegelijkertijd toe te spreken,\\n\\n78\\n00:04:29,823 --> 00:04:33,631\\nom te discussiëren over een algemeen probleem of een onderwerp dat te maken heeft met meerdere artikelen,\\n\\n79\\n00:04:33,655 --> 00:04:37,510\\ndan kan gebruikgemaakt worden van de \"Kroeg\" (\"Bar\") of de gepaste projectpagina\\'s over het onderwerp.\\n\\n80\\n00:04:37,995 --> 00:04:41,242\\nElke geregistreerde gebruiker heeft een eigen persoonlijke pagina,\\n\\n81\\n00:04:41,273 --> 00:04:44,115\\nwaarop hij of zij informatie over zichzelf kan delen.\\n\\n82\\n00:04:44,226 --> 00:04:47,802\\nOok deze pagina heeft een bijbehorende overlegpagina,\\n\\n83\\n00:04:47,827 --> 00:04:51,693\\ndie gebruikt wordt als een persoonlijke brievenbus.\\n\\n84\\n00:04:51,983 --> 00:04:55,753\\nMisschien bent u op zoek naar een deskundige gebruiker voor technische hulp;\\n\\n85\\n00:04:55,815 --> 00:04:58,338\\nbijvoorbeeld bij de \"Helpdesk\" (\"Sportello Informazioni\").\\n\\n86\\n00:04:58,353 --> 00:05:02,030\\nJe kunt het Orakel (\"l\\'Oracolo\") vragen stellen over de inhoud.\\n\\n87\\n00:05:02,924 --> 00:05:06,262\\nIn het geval van vandalisme of overmatig agressief gedrag\\n\\n88\\n00:05:06,294 --> 00:05:09,319\\nkunnen sommige geregisteerde gebruikers, \"moderators\" genoemd,\\n\\n89\\n00:05:09,386 --> 00:05:12,083\\ningrijpen en bepaalde taken uitvoeren,\\n\\n90\\n00:05:12,109 --> 00:05:15,486\\nzoals een gebruiker blokkeren, of een pagina verwijderen of tegen bewerken beveiligen.\\n\\n91\\n00:05:15,664 --> 00:05:18,384\\nDe moderators zijn vrijwilligers die\\n\\n92\\n00:05:18,384 --> 00:05:22,048\\nhet vertrouwen van de gemeenschap genieten en aangesteld zijn na een verkiezing.\\n\\n93\\n00:05:22,218 --> 00:05:25,355\\nZij doen essentiële technische handelingen en handhaven\\n\\n94\\n00:05:25,357 --> 00:05:27,646\\nhet beleid en de richtlijnen van het project,\\n\\n95\\n00:05:27,664 --> 00:05:30,453\\nmaar zij zijn niet eindverantwoordelijk voor Wikipedia.\\n\\n96\\n00:05:31,311 --> 00:05:34,532\\nWikipedia wordt beheerd door de Wikimedia Foundation,\\n\\n97\\n00:05:34,542 --> 00:05:37,960\\neen non-profit-stichting in San Francisco,\\n\\n98\\n00:05:37,958 --> 00:05:41,090\\ndie in de hulpmiddelen voorziet ter ontwikkeling van het project.\\n\\n99\\n00:05:41,281 --> 00:05:44,554\\nDe foundation werd gesticht in 2003 en is afhankelijk van\\n\\n100\\n00:05:44,559 --> 00:05:47,233\\npublieke en private donaties,\\n\\n101\\n00:05:47,235 --> 00:05:51,571\\nen met name van vele kleine donaties van individuen.\\n\\n102\\n00:05:51,853 --> 00:05:54,959\\nOm volledig onafhankelijk te blijven en veel vrijwillige editors erbij te betrekken,\\n\\n103\\n00:05:54,991 --> 00:05:59,277\\nmaakt Wikipedia geen gebruik van advertenties.\\n\\n104\\n00:05:59,979 --> 00:06:04,125\\nWereldwijd houden een aantal organisaties zich bezig met\\n\\n105\\n00:06:04,181 --> 00:06:07,761\\nde promotie van Wikipedia en haar zusterprojecten in bepaalde landen of streken.\\n\\n106\\n00:06:08,105 --> 00:06:11,624\\nIn Italië werd in 2005 Wikimedia Italia opgericht.\\n\\n107\\n00:06:11,671 --> 00:06:15,961\\nNaast de projecten van de Wikimedia Foundation promoot Wikimedia Italia andere initiatieven\\n\\n108\\n00:06:15,973 --> 00:06:19,662\\ndie te maken hebben met de verspreiding van vrije cultuur en vrije kennis.\\n\\n109\\n00:06:19,898 --> 00:06:23,992\\nPers, bedrijven en scholen kunnen contact opnemen met Wikimedia Italia\\n\\n110\\n00:06:24,029 --> 00:06:28,130\\nom meer informatie in het Italiaans te verkrijgen over Wikipedia.\\n\\n111\\n00:06:28,981 --> 00:06:31,905\\nVele vrijwilligers verzamelen, sorteren en organiseren\\n\\n112\\n00:06:31,913 --> 00:06:35,649\\nde gedeelde kennis van onze tijd\\n\\n113\\n00:06:35,701 --> 00:06:39,149\\nom het vrij beschikbaar te maken. Hoe zit het met jou?\\n\\n114\\n00:06:39,352 --> 00:06:42,605\\nVoel je vrij! Wikipedia staat open voor iedereen!',\n", + " 'bytes': 10632,\n", + " 'sha1': 'aea2805r0v0h6ve6qglur4vfp56agtc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606353571,\n", + " 'timestamp': '2021-11-09T09:44:40Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 16273880,\n", + " 'title': 'Wiki loves monuments.ogv.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Wiki loves monuments.ogg.ca.srt]] to [[TimedText:Wiki loves monuments.ogv.ca.srt]]: rename of the original file',\n", + " 'text': \"1\\n00:01:44,000 --> 00:01:47,000\\nEls viquipedistes\\n\\n2\\n00:01:48,500 --> 00:01:51,500\\nd'arreu del món\\n\\n3\\n00:01:52,500 --> 00:01:54,000\\nestimem els monuments\\n\\n4\\n00:01:56,000 --> 00:01:59,000\\nWiki Loves Monuments\",\n", + " 'bytes': 208,\n", + " 'sha1': '4kmhkrunk8iz886baias3p0kjp2aduq',\n", + " 'parent_id': 58685553,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 58820220,\n", + " 'timestamp': '2011-09-03T02:59:22Z',\n", + " 'user': {'id': 57323, 'text': 'Brochon99'},\n", + " 'page': {'id': 16305439,\n", + " 'title': 'Wikipedia Takes Montreal 2011 (WTMTL).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1\\n00:00:09,009 --> 00:00:12,135\\nIt’s all about basically to illustrate Wikipedia\\n\\n2\\n00:00:12,135 --> 00:00:15,12\\nput pictures on the articles of Montreal\\n\\n3\\n00:00:15,12 --> 00:00:18,479\\nwhich are not properly illustrated or not illustrated at all.\\n\\n4\\n00:00:19,54 --> 00:00:23,79\\nIt’s basically many events around the world,\\n\\n5\\n00:00:23,79 --> 00:00:27,435\\nwe are the thirty-third and honestly were the biggest.\\n\\n6\\n00:00:27,435 --> 00:00:30,631\\nEven with the hurricane we’re still the biggest.\\n\\n7\\n00:00:30,631 --> 00:00:32,437\\nThere was a 110 persons who participate.\\n\\n8\\n00:00:34,114 --> 00:00:36,747\\nThis should be fun, something to do…\\n\\n9\\n00:00:36,747 --> 00:00:38,605\\nMake everyone jealous…\\n\\n10\\n00:00:38,605 --> 00:00:40,211\\n… something out of ordinary.\\n\\n11\\n00:00:49,641 --> 00:00:52,139\\nOn the East of Montreal there’s\\n\\n12\\n00:00:52,139 --> 00:00:55,053\\na lot of high value pictures to take, so…\\n\\n13\\n00:00:55,053 --> 00:00:57,526\\nsince we have a car, we are not going by walk,\\n\\n14\\n00:00:57,526 --> 00:01:00,205\\nwe can go to these places very fast and\\n\\n15\\n00:01:00,205 --> 00:01:03,221\\ntake a lot of those high value pictures.\\n\\n16\\n00:01:04,329 --> 00:01:07,31\\nBecause there’s not a lot of people who are working on Wikipedia,\\n\\n17\\n00:01:07,31 --> 00:01:10,957\\non the French Wikipedia in Québec, so when we are doing this kind\\n\\n18\\n00:01:10,957 --> 00:01:14,492\\nof activity, it help to know better Wikipedia\\n\\n19\\n00:01:14,492 --> 00:01:18,565\\nfor the people.\\n\\n20\\n00:01:19,165 --> 00:01:20,999\\nWhat we would do to win\\n\\n21\\n00:01:20,999 --> 00:01:22,444\\none point!\\n\\n22\\n00:01:23,137 --> 00:01:26,194\\nMoreover, there are six pictures of that!\\n\\n23\\n00:01:27,071 --> 00:01:30,489\\nFor myself, I have a picture of the Chateau Frontenac\\n\\n24\\n00:01:30,489 --> 00:01:33,411\\nin Québec which is the main picture\\n\\n25\\n00:01:33,411 --> 00:01:35,108\\non the article of the Chateau Frontenac.\\n\\n26\\n00:01:35,108 --> 00:01:36,503\\nI guess that’s pretty cool!\\n\\n27\\n00:01:37,272 --> 00:01:40,763\\nFor me, I am just an amateur photographer,\\n\\n28\\n00:01:40,763 --> 00:01:44,772\\nso I don’t really care about the money or the…\\n\\n29\\n00:01:44,772 --> 00:01:49,829\\nI just like to see that people choose a picture to represent something.\\n\\n30\\n00:01:52,721 --> 00:01:55,414\\nThe province of Québec, and Canada in general\\n\\n31\\n00:01:55,414 --> 00:01:57,991\\nis a really beautiful place\\n\\n32\\n00:01:57,991 --> 00:02:01,118\\nand when you go out to take some pictures, \\n\\n33\\n00:02:01,118 --> 00:02:04,19\\nyou have to walk around and watch really carefully and… \\n\\n34\\n00:02:04,19 --> 00:02:07,579\\nit makes you watch.\\n\\n35\\n00:02:09,056 --> 00:02:11,16\\nIt's the first in Canada we organize\\n\\n36\\n00:02:11,16 --> 00:02:12,845\\nit's not the last, there will be one\\n\\n37\\n00:02:12,845 --> 00:02:14,78\\nin Toronto, in Ottawa, in Quebec...\\n\\n38\\n00:02:15,257 --> 00:02:19,039\\n... even you on one computer, I am, Alan, everyone… tomorrow and\\n\\n39\\n00:02:19,039 --> 00:02:22,476\\nafter tomorrow we will put that on Wikipedia later...\\n\\n40\\n00:02:22,476 --> 00:02:24,729\\nbecause now there’s an hurricane!\\n\\n41\\n00:02:26,329 --> 00:02:30,663\\nI didn’t really cry but I was on the edge of…\\n\\n42\\n00:02:30,663 --> 00:02:33,678\\nbecause what are the chances that an hurricane\\n\\n43\\n00:02:33,678 --> 00:02:36,003\\nhits Montreal specifically on that day…\\n\\n44\\n00:02:36,003 --> 00:02:37,672\\nIt stays 24 hours on Montreal.\\n\\n45\\n00:02:37,672 --> 00:02:39,758\\nIt happens once every century,\\n\\n46\\n00:02:39,758 --> 00:02:42,153\\nYesterday ’twas sunny, tomorrow it’s sunny,\\n\\n47\\n00:02:42,153 --> 00:02:43,841\\nbut today… people are very courageous,\\n\\n48\\n00:02:43,841 --> 00:02:46,077\\nit’s just amazing.\",\n", + " 'bytes': 3636,\n", + " 'sha1': '31cm03yhicnut17n91t4dllrcqvphof',\n", + " 'parent_id': 58820160,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 175100563,\n", + " 'timestamp': '2015-10-09T16:53:54Z',\n", + " 'user': {'id': 3318642, 'text': 'Crasstun'},\n", + " 'page': {'id': 16308209,\n", + " 'title': 'Wikipedia Takes Montreal 2011 (WTMTL).ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Undo revision 175095556 by [[Special:Contributions/83.149.8.186|83.149.8.186]] ([[User talk:83.149.8.186|talk]])',\n", + " 'text': \"1\\n00:00:09,009 --> 00:00:12,135\\nL'évènement est organisé principalement pour illustrer Wikipédia,\\n\\n2\\n00:00:12,135 --> 00:00:15,12\\net ajouter des photos sur les articles concernant Montréal\\n\\n3\\n00:00:15,12 --> 00:00:18,479\\nqui sont mal illustrés ou pas illustrés du tout.\\n\\n4\\n00:00:19,54 --> 00:00:23,79\\nPlusieurs évènements similaires ont eu lieu dans le monde,\\n\\n5\\n00:00:23,79 --> 00:00:27,435\\nMontréal est le 33e évènement et nous sommes le plus gros.\\n\\n6\\n00:00:27,435 --> 00:00:30,631\\nMême avec l'ouragan Irène, nous sommes le plus gros!\\n\\n7\\n00:00:30,631 --> 00:00:32,437\\nIl y avait 110 participants.\\n\\n8\\n00:00:34,114 --> 00:00:36,747\\nÇa va être amusant à faire...\\n\\n9\\n00:00:36,747 --> 00:00:38,605\\nOn va rendre les gens jaloux!\\n\\n10\\n00:00:38,605 --> 00:00:40,211\\n... ça sort de l'ordinaire!\\n\\n11\\n00:00:49,641 --> 00:00:52,139\\nDans l'est de Montréal, il y a des photos\\n\\n12\\n00:00:52,139 --> 00:00:55,053\\nqui valent beaucoup de points,\\n\\n13\\n00:00:55,053 --> 00:00:57,526\\net comme nous avons une voiture\\n\\n14\\n00:00:57,526 --> 00:01:00,205\\nnous pouvons nous rendre rapidement \\n\\n15\\n00:01:00,205 --> 00:01:03,221\\net prendre ces photos de haute valeur.\\n\\n16\\n00:01:04,329 --> 00:01:07,31\\nIl n'y a pas beaucoup de gens du Québec\\n\\n17\\n00:01:07,31 --> 00:01:10,957\\nqui travaillent sur Wikipédia francophone,\\n\\n18\\n00:01:10,957 --> 00:01:14,492\\net ce genre d'activité permet de promouvoir\\n\\n19\\n00:01:14,492 --> 00:01:18,565\\nl'encyclopédie auprès des gens.\\n\\n20\\n00:01:19,165 --> 00:01:20,999\\nQu'est-ce qu'on ne ferait pas\\n\\n21\\n00:01:20,999 --> 00:01:22,444\\npour avoir un point!\\n\\n22\\n00:01:24,137 --> 00:01:26,194\\nD'ailleurs, il y a six photos juste de ça!\\n\\n23\\n00:01:27,071 --> 00:01:30,489\\nJ'ai pris une photo du Château Frontenac\\n\\n24\\n00:01:30,489 --> 00:01:33,411\\nà Québec, et elle est maintenant la photo\\n\\n25\\n00:01:33,411 --> 00:01:35,108\\nprincipale de l'article du Château Frontenac\\n\\n26\\n00:01:35,108 --> 00:01:36,503\\nalors c'est très cool!\\n\\n27\\n00:01:37,272 --> 00:01:40,763\\nJe suis un photographe amateur\\n\\n28\\n00:01:40,763 --> 00:01:44,772\\net je ne me soucie pas de l'argent.\\n\\n29\\n00:01:44,772 --> 00:01:49,829\\nJ'aime quand les gens choisissent mes photos pour représenter quelque chose.\\n\\n30\\n00:01:52,721 --> 00:01:55,414\\nLa province de Québec et le Canada\\n\\n31\\n00:01:55,414 --> 00:01:57,991\\nsont des endroits magnifiques\\n\\n32\\n00:01:57,991 --> 00:02:01,118\\net quand on fait de la photo,\\n\\n33\\n00:02:01,118 --> 00:02:04,19\\nça nous oblige à nous déplacer et à observer...\\n\\n34\\n00:02:04,19 --> 00:02:07,579\\nça nous force à être attentif.\\n\\n35\\n00:02:09,056 --> 00:02:11,16\\nC'est le premier au Canada qu'on organise\\n\\n36\\n00:02:11,16 --> 00:02:12,845\\nce n'est pas le dernier, il va en avoir à\\n\\n37\\n00:02:12,845 --> 00:02:14,78\\nà Toronto, Ottawa, Québec...\\n\\n38\\n00:02:15,257 --> 00:02:19,039\\n... nous avons des ordinateurs et dans les prochains jours, nous allons\\n\\n39\\n00:02:19,039 --> 00:02:22,476\\ntéléverser vos photos dans Wikipédia\\n\\n40\\n00:02:22,476 --> 00:02:24,729\\nil y a un ouragan dehors!\\n\\n41\\n00:02:26,329 --> 00:02:30,663\\nJe n'ai pas pleuré, mais presque...\\n\\n42\\n00:02:30,663 --> 00:02:33,678\\nquelles étaient les chances qu'un ouragan\\n\\n43\\n00:02:33,678 --> 00:02:36,003\\nfrappe Montréal spécifiquement aujourd'hui?\\n\\n44\\n00:02:36,003 --> 00:02:37,672\\nÇa arrive une fois par siècle, \\n\\n45\\n00:02:37,672 --> 00:02:39,758\\net l'ouragan reste durant 24 heures. \\n\\n46\\n00:02:39,758 --> 00:02:42,153\\nHier, ensoleillé. Demain, ensoleillé...\\n\\n47\\n00:02:42,153 --> 00:02:43,841\\nmais aujourd'hui... les gens sont vraiment\\n\\n48\\n00:02:43,841 --> 00:02:46,077\\ncourageux, c'est incroyable!\",\n", + " 'bytes': 3579,\n", + " 'sha1': '5e6wqg2epg4m2g3hkdqe4p6k3shwtvq',\n", + " 'parent_id': 175095556,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 197188166,\n", + " 'timestamp': '2016-05-25T12:49:03Z',\n", + " 'user': {'text': '130.79.69.129'},\n", + " 'page': {'id': 16317883,\n", + " 'title': 'Videoonwikipedia.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,108 --> 00:00:02,198\\nVous connaissez tous bien Wikipédia, \\n\\n2\\n00:00:02,198 --> 00:00:05,672\\nvous l'utilisez pour chercher des informations, pour écrire des articles ou simplement pour apprendre quelque chose.\\n\\n3\\n00:00:06,657 --> 00:00:08,68\\nNon seulement il est gratuit pour vous de lire,\\n\\n4\\n00:00:08,942 --> 00:00:11,686\\nil est également permis de contribuer et d'améliorer les articles.\\n\\n5\\n00:00:11,732 --> 00:00:14,045\\nTout ce que vous écrivez doit être factuel, neutre \\n\\n6\\n00:00:14,045 --> 00:00:18,594\\net les sujets controversés doivent être non censurés.\\n\\n7\\n00:00:19,686 --> 00:00:21,87\\nWikipedia est une communauté ouverte\\n\\n8\\n00:00:21,87 --> 00:00:24,114\\nqui se gouverne avec une structure minimale\\n\\n9\\n00:00:24,114 --> 00:00:26,227\\net tous sont bénévoles.\\n\\n10\\n00:00:27,873 --> 00:00:31,305\\nActuellement, il y a Wikipédia dans plus de 260 langues\\n\\n11\\n00:00:31,52 --> 00:00:33,857\\ndont certaines a des milliers d'articles\\n\\n12\\n00:00:33,919 --> 00:00:36,05\\net d'autres ont des millions.\\n\\n13\\n00:00:37,419 --> 00:00:41,007\\nDes articles ont des informations détaillées, des photos et des liens\\n\\n14\\n00:00:41,007 --> 00:00:43,234\\npour vous aider à en apprendre plus sur un sujet.\\n\\n15\\n00:00:44,573 --> 00:00:48,181\\nMais que faire si chaque article que vous lisez ont de la vidéo ?\\n\\n16\\n00:00:48,181 --> 00:00:50,85\\nEt si vous pouviez faire une visite autour des pyramides en Égypte,\\n\\n17\\n00:00:50,85 --> 00:00:53,887\\nun voyage le long d'une rue principale historique\\n\\n18\\n00:00:53,887 --> 00:00:56,956\\nou une danse folklorique de votre pays d'origine ?\\n\\n19\\n00:00:56,956 --> 00:01:01,327\\nMaintenant, avec la vidéo sur Wikipédia, c'est possible.\\n\\n20\\n00:01:01,327 --> 00:01:03,463\\nSi vous voulez faire une vidéo vous-même,\\n \\n21\\n00:01:03,463 --> 00:01:08,101\\nchoisissez les sujets fondamentaux de l'article qui vous aideront à illustrer le sujet\\n\\n23\\n00:01:08,307 --> 00:01:10,932\\net construisez à l'avance un plan de ce que vous voulez filmer.\\n\\n24\\n00:01:10,963 --> 00:01:14,605\\nRappelez-vous que Wikipédia est une encyclopédie,\\n\\n25\\n00:01:14,743 --> 00:01:16,193\\ndonc le contenu doit être éducatif et informatif.\\n\\n26\\n00:01:17,24 --> 00:01:19,903\\nLe plus important lorsque vous filmez\\n\\n27\\n00:01:19,934 --> 00:01:22,949\\nest d'avoir une poigne ferme ou d'utiliser un trépied.\\n\\n28\\n00:01:23,011 --> 00:01:25,351\\nSi vous ne voulez pas faire la vidéo vous-même,\\n\\n29\\n00:01:25,351 --> 00:01:27,37\\nil existe plusieurs archives sur Internet,\\n\\n30\\n00:01:27,37 --> 00:01:30,077\\ncomme archive.org ou Wikimedia Commons\\n\\n31\\n00:01:30,077 --> 00:01:33,196\\nsusceptibles d'avoir une vidéo qui s'adapte à votre article.\\n\\n32\\n00:01:34,534 --> 00:01:37,979\\nN'oubliez pas que peu importe ce que vous filmez ou trouvez dans Internet\\n\\n33\\n00:01:37,979 --> 00:01:41,901\\ntoutes les vidéos sur Wikipédia doivent être libre d'utilisation et de partage.\\n\\n34\\n00:01:41,901 --> 00:01:46,005\\nHabituellement, cela signifie qu'il est autorisé par Creative Commons.\\n\\n35\\n00:01:46,005 --> 00:01:47,877\\nMaintenant que vous avez sélectionné un article\\n\\n36\\n00:01:47,877 --> 00:01:49,934\\net une vidéo que vous souhaitez ajouter\\n\\n37\\n00:01:49,934 --> 00:01:54,848\\nvoici la meilleure façon d'assembler les deux.\\n\\n38\\n00:01:54,848 --> 00:01:57,817\\nFörst rekommenderar vi Mozilla Firefox.\\n\\n39\\n00:01:57,817 --> 00:02:00,587\\nPremièrement, nous recommandons Mozilla Firefox\\n\\n40\\n00:02:00,587 --> 00:02:04,057\\nqui rend facile la consultation et l'ajout de vidéos dans Wikipédia.\\n\\n41\\n00:02:04,057 --> 00:02:09,496\\nEnsuite, téléchargez le module Firefogg à Mozilla Firefox\\n\\n42\\n00:02:09,496 --> 00:02:13,299\\nqui convertit automatiquement les vidéos au format libre Theora\\n\\n43\\n00:02:13,299 --> 00:02:17,003\\nque Wikipedia utilise lorsque vous les téléversez.\\n\\n44\\n00:02:17,003 --> 00:02:20,94\\nSinon, les utilisateurs de Windows et Mac peuvent utiliser le convertisseur Miro\\n\\n45\\n00:02:20,94 --> 00:02:25,311\\nun logiciel simple qui permet de convertir des vidéos vers de nombreux formats\\n\\n46\\n00:02:25,311 --> 00:02:28,915\\ny compris la vidéo libre pour Wikipédia.\\n\\n47\\n00:02:28,915 --> 00:02:34,954\\nContrairement à l'édition des articles, téléversement de vidéo nécessite que vous soyez connecté à Wikipédia.\\n\\n48\\n00:02:34,954 --> 00:02:38,892\\nConnectez-vous ou créez un compte si vous êtes un nouvel utilisateur.\\n\\n49\\n00:02:38,892 --> 00:02:41,16\\nLorsque vous téléchargez une vidéo pour la première fois\\n\\n50\\n00:02:41,16 --> 00:02:43,897\\nvous devrez activer la fonction de téléchargement de vidéo.\\n\\n51\\n00:02:43,897 --> 00:02:49,202\\nPour ce faire, cliquez sur votre nom en haut de la page\\n\\n52\\n00:02:49,202 --> 00:02:53,606\\npuis cliquez sur ''Préférences'',\\n\\n53\\n00:02:53,606 --> 00:02:56,309\\ncliquez sur ''Gadgets'', \\n\\n54\\n00:02:56,309 --> 00:03:00,313\\ndescendez à ''Gadgets généraux'', \\n\\n55\\n00:03:00,313 --> 00:03:05,385\\net cochez la case qui ajoute le support de ''mwEmbed''.\\n\\n56\\n00:03:05,385 --> 00:03:09,355\\nFaites défiler au bas le la page, et ''Enregistrez vos préférences''.\\n\\n57\\n00:03:09,355 --> 00:03:12,258\\nMaintenant vous êtes prêt à téléverser des vidéos.\\n\\n58\\n00:03:12,258 --> 00:03:15,357\\nUne fois que vous vous êtes connecté allez à l'article que vous souhaitez modifier\\n\\n59\\n00:03:15,357 --> 00:03:16,985\\net cliquez sur l'onglet ''Modifier''.\\n\\n60\\n00:03:16,985 --> 00:03:20,166\\nVous allez maintenant voir un bouton ''Assistant d'ajout de média'' dans le menu d'édition.\\n\\n61\\n00:03:20,166 --> 00:03:22,748\\nLorsque vous cliquez sur ce bouton, une nouvelle fenêtre s'ouvre.\\n\\n62\\n00:03:22,748 --> 00:03:26,791\\nSi vous téléchargez votre propre fichier, sélectionnez-le et appuyez sur ''Envoyer''.\\n\\n63\\n00:03:26,791 --> 00:03:28,975\\nVous pouvez également sélectionner une vidéo à partir de Commons\\n\\n64\\n00:03:28,975 --> 00:03:33,179\\nou un fichier multimédia que vous avez téléversé récemment mais pas encore ajouté dans un article.\\n\\n65\\n00:03:33,179 --> 00:03:37,551\\nPour ajouter la vidéo dans l'article, appuyez simplement sur le bouton ''Ajouter à la page''\\n\\n66\\n00:03:37,551 --> 00:03:40,72\\ndans le coin inférieur droit de la fenêtre.\\n\\n67\\n00:03:40,72 --> 00:03:43,957\\nPour en savoir plus sur la façon d'ajouter des vidéos sur Wikipédia\\n\\n68\\n00:03:43,957 --> 00:03:54,467\\nAllez sur Wikipedia et tapez '''P:Wikifilm''' dans la boîte de recherche.\",\n", + " 'bytes': 6286,\n", + " 'sha1': 'n38r81y4m8q09jyfkakw5efc7likghc',\n", + " 'parent_id': 58840719,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 128876134,\n", + " 'timestamp': '2014-07-13T10:35:48Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 16347927,\n", + " 'title': 'Jarry - Métro de Montréal (1280×720).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'McZusatz moved page [[TimedText:Jarry (métro de Montréal).ogv.en.srt]] to [[TimedText:Jarry - Métro de Montréal (1280×720).ogv.en.srt]] without leaving a redirect',\n", + " 'text': '1\\n00:00:04,194 --> 00:00:05,929\\nNext station : Jarry\\n\\n2\\n00:01:28,308 --> 00:01:38,786\\nAttention, the service is restored on the orange line.\\n\\n3\\n00:01:39,417 --> 00:01:43,674\\nThe STM thank you for your understanding.',\n", + " 'bytes': 215,\n", + " 'sha1': '5jvmp0b6y9busn1f2n4s2w4rr6yaebx',\n", + " 'parent_id': 128786111,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 59482008,\n", + " 'timestamp': '2011-09-15T22:36:38Z',\n", + " 'user': {'id': 1654789, 'text': 'Celiaak'},\n", + " 'page': {'id': 16501806,\n", + " 'title': 'Chocolate cake.ogg.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,458 --> 00:00:04,416\\n6 ovos; 150 g margarina; 225 g açúcar; 225 g chocolate em pó; 100 g farinha; 250 g chocolate negro; 2.5 dl natas\\n\\n2\\n00:00:04,416 --> 00:00:15,916\\nderreter a margarina\\n\\n3\\n00:00:15,916 --> 00:00:47,416\\nadicionar o açúcar\\n\\n4\\n00:00:47,416 --> 00:01:00,291\\nseparar as claras das gemas dos ovos\\n\\n5\\n00:01:00,291 --> 00:01:30,166\\njuntar as gemas dos ovos\\n\\n6\\n00:01:30,166 --> 00:02:07,458\\njuntar o chocolate em pó\\n\\n7\\n00:02:07,458 --> 00:02:44,916\\nmontar as claras dos ovos\\n\\n8\\n00:02:44,916 --> 00:02:45,416\\njuntar a farinha e as claras batidas alternadamente\\n\\n8.5\\n00:02:45,416 --> 00:02:45,916\\n\\n\\n9\\n00:05:08,958 --> 0-1:0-1:0-1\\nderreter cuidadosamente o chocolate negro\\n\\n10\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\nadicionar as natas\\n\\n11\\n0-1:0-1:0-1 --> 0-1:0-1:0-1\\n\\n\\n12\\n0-1:0-1:0-1 --> 0-1:0-1:0-1',\n", + " 'bytes': 812,\n", + " 'sha1': '3n9jwgp0otv88q7h0tsuoephjufij2h',\n", + " 'parent_id': 59476299,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 59497605,\n", + " 'timestamp': '2011-09-16T09:52:08Z',\n", + " 'user': {'id': 1654789, 'text': 'Celiaak'},\n", + " 'page': {'id': 16508795,\n", + " 'title': 'Allsång Skansen 1937.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,999\\n([[:sv:Stockholms-Tidningen|Stockholms-Tidningen]], 1937: 20,000 in sing-along)\\n<br>Pai! Oh, tantas pessoas!\\nEu estou aqui.\\n\\n2\\n00:00:007,000 --> 00:00:18,999\\nTra la la, la la la...\\n<br>([[:sv:Tre trallande jäntor|Tre trallande jäntor]], Fröding/Körling)',\n", + " 'bytes': 289,\n", + " 'sha1': 'n3de4xwu31mg2fpey0vhzi4lg73sl13',\n", + " 'parent_id': 59497577,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 59497771,\n", + " 'timestamp': '2011-09-16T09:58:11Z',\n", + " 'user': {'id': 1654789, 'text': 'Celiaak'},\n", + " 'page': {'id': 16508828,\n", + " 'title': 'Allsång Skansen 1937.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,999\\n([[:sv:Stockholms-Tidningen|Stockholms-Tidningen]], 1937: 20,000 in sing-along)\\n<br>Papa! Oh, combien de personnes!\\nJe suis ici.\\n\\n2\\n00:00:007,000 --> 00:00:18,999\\nTralalla lalla la...\\n<br>([[:sv:Tre trallande jäntor|Tre trallande jäntor]], Fröding/Körling)',\n", + " 'bytes': 292,\n", + " 'sha1': 'mg5jycbnjqmnasdg0ajy3m9uw8ydrui',\n", + " 'parent_id': 59497689,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 71192506,\n", + " 'timestamp': '2012-05-16T02:54:30Z',\n", + " 'user': {'id': 1699066, 'text': 'Fúlvio'},\n", + " 'page': {'id': 16509102,\n", + " 'title': 'President Obama on Death of Osama bin Laden.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,704 --> 00:00:02,175\\nBoa noite.\\n\\n2\\n00:00:02,175 --> 00:00:06,952\\nEsta noite, posso dizer ao povo americano e ao mundo,\\n\\n3\\n00:00:06,952 --> 00:00:11,3\\nque os Estados Unidos conduziram uma operação que matou Osama bin Laden,\\n\\n4\\n00:00:11,3 --> 00:00:13,672\\no líder da al-Qaeda,\\n\\n5\\n00:00:13,672 --> 00:00:21,359\\ne o terrorista que é responsável pela morte de milhares de homens, mulheres e crianças inocentes.\\n\\n6\\n00:00:21,359 --> 00:00:25,204\\nFoi há quase dez anos que o dia luminoso de Setembro escureceu\\n\\n7\\n00:00:25,204 --> 00:00:29,216\\npelo pior ataque sobre o povo americano na nossa história.\\n\\n8\\n00:00:29,216 --> 00:00:33,994\\nAs imagens do 11 de Setembro estão marcadas a fogo na memória nacional.\\n\\n9\\n00:00:33,994 --> 00:00:38,775\\nAviões sequestrados a cortar um céu de setembro sem nuvens,\\n\\n10\\n00:00:38,775 --> 00:00:41,784\\nas torres gémeas colapsando até ao chão,\\n\\n11\\n00:00:41,784 --> 00:00:45,059\\nfumo negro formando vagalhões no Pentágono,\\n\\n12\\n00:00:45,059 --> 00:00:49,47\\nos destroços do voo 93 em Shanksville, Pensilvânia,\\n\\n13\\n00:00:49,47 --> 00:00:55,554\\nem que as acções de cidadãos heroicos nos pouparam ainda mais desgosto e destruição.\\n\\n14\\n00:00:55,554 --> 00:01:00,301\\nNo entanto, sabemos que as piores imagens são aquelas invisíveis ao mundo:\\n\\n15\\n00:01:00,301 --> 00:01:03,175\\no lugar vazio na mesa de jantar,\\n\\n16\\n00:01:03,175 --> 00:01:07,355\\ncrianças forçadas a crescer sem a sua mãe, ou o seu pai,\\n\\n17\\n00:01:07,355 --> 00:01:12,534\\npais que nunca irão conhecer a sensação do abraço de um filho.\\n\\n18\\n00:01:12,534 --> 00:01:16,279\\nQuase três mil cidadãos nos foram tirados,\\n\\n19\\n00:01:16,279 --> 00:01:19,79\\ndeixando um buraco escancarado em nossos corações.\\n\\n20\\n00:01:19,79 --> 00:01:22,998\\nNo dia 11 de Setembro de 2001,\\n\\n21\\n00:01:22,998 --> 00:01:24,933\\nno nosso luto,\\n\\n22\\n00:01:24,933 --> 00:01:27,41\\no povo americano juntou-se.\\n\\n23\\n00:01:27,41 --> 00:01:29,248\\nOferecemos uma mão aos nossos vizinhos,\\n\\n24\\n00:01:29,248 --> 00:01:32,255\\ne oferecemos o nosso sangue aos feridos.\\n\\n25\\n00:01:32,255 --> 00:01:35,465\\nReafirmamos os nossos laços uns com os outros\\n\\n26\\n00:01:35,465 --> 00:01:39,007\\ne o nosso amor com a comunidade e com o país.\\n\\n27\\n00:01:39,007 --> 00:01:41,749\\nNesse dia, não importa de onde viemos,\\n\\n28\\n00:01:41,749 --> 00:01:43,753\\na que Deus nós rezávamos,\\n\\n29\\n00:01:43,753 --> 00:01:46,262\\na que raça ou etnia pertencíamos,\\n\\n30\\n00:01:46,262 --> 00:01:50,741\\nestávamos unidos como uma família americana.\\n\\n31\\n00:01:50,741 --> 00:01:54,752\\nNós também estávamos unidos na determinação em proteger a nossa nação,\\n\\n32\\n00:01:54,752 --> 00:02:00,332\\ne em trazer à Justiça aqueles que cometeram este ataque brutal.\\n\\n33\\n00:02:00,332 --> 00:02:04,378\\nApercebemo-nos rapidamente que os ataques de 11 de Setembro foram perpetrados pela al-Qaeda.\\n\\n34\\n00:02:04,378 --> 00:02:06,984\\nUma organização liderada por Osama bin Laden,\\n\\n35\\n00:02:06,984 --> 00:02:09,826\\nque declarou abertamente uma guerra aos Estados Unidos\\n\\n36\\n00:02:09,826 --> 00:02:14,506\\ne se comprometeu a matar inocentes no nosso país e em redor do mundo.\\n\\n37\\n00:02:14,506 --> 00:02:17,346\\nE assim fomos para a guerra contra a al-Qaeda,\\n\\n38\\n00:02:17,346 --> 00:02:22,694\\npara proteger os nossos cidadãos, os nossos amigos e os nossos aliados.\\n\\n39\\n00:02:22,694 --> 00:02:27,91\\nNos últimos dez anos, graças ao trabalho incansável e heróico dos nossos militares\\n\\n40\\n00:02:27,91 --> 00:02:32,856\\ne dos nossos profissionais antiterrorismo, fizemos grandes progressos nesse esforço.\\n\\n41\\n00:02:32,856 --> 00:02:37,233\\nTemos impedido ataques terroristas e reforçado a defesa nacional.\\n\\n42\\n00:02:37,233 --> 00:02:39,809\\nNo Afeganistão derrubamos o governo Taliban,\\n\\n43\\n00:02:39,809 --> 00:02:43,789\\nque deu guarida e apoio a bin Laden e à al-Qaeda .\\n\\n44\\n00:02:43,789 --> 00:02:46,595\\nE, ao redor do mundo, nós trabalhamos com nossos amigos e aliados\\n\\n45\\n00:02:46,595 --> 00:02:49,536\\npara capturar ou matar dezenas de terroristas da al-Qaeda,\\n\\n46\\n00:02:49,536 --> 00:02:54,315\\nincluindo alguns que faziam parte da ação do 11 de Setembro.\\n\\n47\\n00:02:54,315 --> 00:02:57,323\\nNo entanto, Osama bin Laden evitou a captura\\n\\n48\\n00:02:57,323 --> 00:03:01,301\\ne escapou atravessando a fronteira do Afeganistão para o Paquistão.\\n\\n49\\n00:03:01,301 --> 00:03:04,543\\nEnquanto isso, a Al Qaeda continuou a operar ao longo dessa fronteira\\n\\n50\\n00:03:04,543 --> 00:03:09,123\\ne a actuar através das suas filiais ao redor do mundo.\\n\\n51\\n00:03:09,123 --> 00:03:11,496\\nE assim, logo após tomar posse,\\n\\n52\\n00:03:11,496 --> 00:03:15,039\\ndei instruções a Leon Panetta, o director da CIA,\\n\\n53\\n00:03:15,039 --> 00:03:20,756\\npara tornar o abate ou a captura de bin Laden a principal prioridade da nossa guerra contra a al-Qaeda,\\n\\n54\\n00:03:20,756 --> 00:03:26,071\\nassim como continuamos os nossos esforços mais amplos para atrapalhar, desmantelar e derrotar sua rede.\\n\\n55\\n00:03:26,071 --> 00:03:33,256\\nEntão, em Agosto passado, depois de anos de exaustivo trabalho do nosso serviço de inteligência,\\n\\n56\\n00:03:33,256 --> 00:03:36,7\\nfui informado sobre uma possível pista até bin Laden.\\n\\n57\\n00:03:36,7 --> 00:03:41,646\\nEstava longe de ser certo, e demorou muitos meses para decidir este assunto.\\n\\n58\\n00:03:41,646 --> 00:03:44,055\\nEncontrei-me várias vezes com a minha equipa de segurança nacional,\\n\\n59\\n00:03:44,055 --> 00:03:48,231\\nà medida que desenvolvíamos mais informações sobre a possibilidade de que tínhamos localizado Bin Laden\\n\\n60\\n00:03:48,231 --> 00:03:52,41\\nescondido num complexo no interior profundo do Paquistão.\\n\\n61\\n00:03:52,41 --> 00:03:58,227\\nE, finalmente, na semana passada, decidi que tínhamos informação suficiente para agir,\\n\\n62\\n00:03:58,227 --> 00:04:03,942\\ne autorizei uma operação para apanhar Osama bin Laden e trazê-lo à Justiça.\\n\\n63\\n00:04:03,942 --> 00:04:10,124\\nHoje, sob a minha direcção, os Estados Unidos lançaram uma operação dirigida contra esse complexo\\n\\n64\\n00:04:10,124 --> 00:04:13,268\\nem Abbottabad, Pakistan.\\n\\n65\\n00:04:13,268 --> 00:04:18,783\\nA pequena equipa de americanos realizou a operação com uma extraordinária coragem e capacidade.\\n\\n66\\n00:04:18,783 --> 00:04:21,323\\nNenhum americano ficaram feridos.\\n\\n67\\n00:04:21,323 --> 00:04:24,799\\nEles tiveram cuidado para evitar vítimas civis.\\n\\n68\\n00:04:24,799 --> 00:04:27,573\\nApós um tiroteio, mataram Osama bin Laden\\n\\n69\\n00:04:27,573 --> 00:04:31,283\\ne tomaram a custódia de seu corpo.\\n\\n70\\n00:04:31,283 --> 00:04:36,063\\nDurante mais de duas décadas, Bin Laden foi o líder e símbolo da al-Qaeda,\\n\\n71\\n00:04:36,063 --> 00:04:41,011\\ne continuou a planejar ataques contra o nosso país e os nossos amigos e aliados.\\n\\n72\\n00:04:41,011 --> 00:04:44,585\\nA morte de bin Laden marca a conquista mais significativa até à data,\\n\\n73\\n00:04:44,585 --> 00:04:47,729\\nno esforço da nossa nação para derrotar a al-Qaeda.\\n\\n74\\n00:04:47,729 --> 00:04:50,772\\nNo entanto, a sua morte não marca o fim do nosso esforço.\\n\\n75\\n00:04:50,772 --> 00:04:54,982\\nNão há dúvida de que a al-Qaeda continuará a prosseguir os ataques contra nós.\\n\\n76\\n00:04:54,982 --> 00:05:00,799\\nNós devemos, e iremos, permanecer vigilantes em casa e no exterior.\\n\\n77\\n00:05:00,799 --> 00:05:08,254\\nEnquanto fazemos isto, devemos também reafirmar que os Estados Unidos não estão e nunca estarão em guerra com o Islão.\\n\\n78\\n00:05:08,254 --> 00:05:13,802\\nEu deixei claro, assim como o Presidente Bush fez logo após o 11 de Setembro,\\n\\n79\\n00:05:13,802 --> 00:05:18,078\\nque a nossa guerra não é contra o Islão, que bin Laden não era um líder muçulmano,\\n\\n80\\n00:05:18,078 --> 00:05:21,022\\nele era um assassino em massa de muçulmanos.\\n\\n81\\n00:05:21,188 --> 00:05:24,096\\nNa verdade, a al-Qaeda tem assassinado dezenas de muçulmanos em muitos países,\\n\\n82\\n00:05:24,096 --> 00:05:26,169\\nincluindo no nosso.\\n\\n83\\n00:05:26,169 --> 00:05:31,441\\nAssim, o seu desaparecimento deve ser saudado por todos que acreditam na paz e na dignidade humana.\\n\\n84\\n00:05:32,395 --> 00:05:34,706\\nAo longo dos anos, tenho repetidamente deixado claro\\n\\n85\\n00:05:34,706 --> 00:05:39,654\\nque iria intervir no Paquistão se soubéssemos onde bin Laden estava.\\n\\n86\\n00:05:40,146 --> 00:05:41,925\\nIsto é o que temos feito.\\n\\n87\\n00:05:42,079 --> 00:05:47,628\\nMas é importante lembrar que nossa cooperação antiterrorista com o Paquistão ajudou a nos levar a bin Laden\\n\\n88\\n00:05:48,397 --> 00:05:50,789\\ne ao local onde estava escondido.\\n\\n89\\n00:05:51,004 --> 00:05:54,3\\nNa verdade, bin Laden havia declarado guerra contra o Paquistão, bem\\n\\n90\\n00:05:54,73 --> 00:05:57,613\\ncomo ordenou ataques contra o povo paquistanês.\\n\\n91\\n00:05:57,89 --> 00:06:04,658\\nHoje à noite, liguei para o Presidente Zardari, e minha equipa falou também com os seus colegas no Paquistão.\\n\\n92\\n00:06:05,043 --> 00:06:09,455\\nEles concordam que este é um bom e histórico dia para ambas as nossas nações\\n\\n93\\n00:06:09,455 --> 00:06:13,399\\ne, daqui para frente, é essencial que o Paquistão continue\\n\\n94\\n00:06:13,399 --> 00:06:17,711\\na se juntar a nós na luta contra a al-Qaeda e suas afiliadas.\\n\\n95\\n00:06:18,48 --> 00:06:21,074\\nO povo americano não optou por esta luta.\\n\\n96\\n00:06:21,074 --> 00:06:23,208\\nEla veio para as nossas costas.\\n\\n97\\n00:06:23,716 --> 00:06:27,358\\nTudo começou com a matança sem sentido dos nossos cidadãos.\\n\\n98\\n00:06:27,911 --> 00:06:32,914\\nDepois de quase dez anos de serviço, luta, e sacrifício\\n\\n99\\n00:06:33,36 --> 00:06:35,831\\nque conhecemos bem os custos da guerra.\\n\\n100\\n00:06:36,831 --> 00:06:43,95\\nEstes esforços pesam sobre mim cada vez que eu, como Comandante-em-Chefe, tenho de assinar uma carta a uma família que perdeu um ente querido\\n\\n101\\n00:06:43,95 --> 00:06:48,897\\nou olhar nos olhos de um militar que tenha sido gravemente ferido.\\n\\n102\\n00:06:48,897 --> 00:06:51,803\\nAssim, os americanos compreendem os custos da guerra.\\n\\n103\\n00:06:52,203 --> 00:06:56,684\\nNo entanto, como um país, nós nunca vamos tolerar nossa segurança sendo ameaçada,\\n\\n104\\n00:06:56,684 --> 00:06:59,979\\nnem ficar parados quando as nossas pessoas forem mortas.\\n\\n105\\n00:07:00,441 --> 00:07:03,907\\nSeremos incansáveis na defesa de nossos cidadãos\\n\\n106\\n00:07:03,907 --> 00:07:06,245\\ne de nossos amigos e aliados.\\n\\n107\\n00:07:06,245 --> 00:07:09,352\\nSeremos fiéis que fazem de nós quem somos\\n\\n108\\n00:07:09,967 --> 00:07:16,273\\ne, em noites como esta, podemos dizer a estas famílias que perderam seus entes queridos para o terror da al-Qaeda:\\n\\n109\\n00:07:16,273 --> 00:07:19,114\\nA Justiça foi feita.\\n\\n110\\n00:07:20,252 --> 00:07:25,523\\nHoje à noite, damos graças aos inúmeros agentes da inteligência e profissionais antiterrorismo que trabalharam incansavelmente\\n\\n111\\n00:07:25,523 --> 00:07:27,894\\npara alcançar este resultado.\\n\\n112\\n00:07:28,063 --> 00:07:32,617\\nO povo americano não vêem seus trabalhos, nem sabem seus nomes,\\n\\n113\\n00:07:32,986 --> 00:07:39,295\\nmas esta noite, eles sentem a satisfação de seus trabalhos e o resultado de suas buscas por justiça.\\n\\n114\\n00:07:39,772 --> 00:07:42,952\\nNós agradecemos aos homens que realizaram esta operação\\n\\n115\\n00:07:42,952 --> 00:07:47,92\\nporque eles exemplificam o profissionalismo, o patriotismo e a coragem sem igual\\n\\n116\\n00:07:47,92 --> 00:07:50,417\\nque caracteriza aqueles que servem a nosso país.\\n\\n117\\n00:07:50,417 --> 00:07:57,12\\nE eles são parte de uma geração que tem suportado o peso da carga desde aquele dia de Setembro.\\n\\n118\\n00:07:57,12 --> 00:08:01,448\\nFinalmente, gostaria de dizer às famílias que perderam os seus entes queridos no 11 de Setembro,\\n\\n119\\n00:08:01,833 --> 00:08:04,416\\nque nunca esqueceremos suas perdas,\\n\\n120\\n00:08:04,723 --> 00:08:08,47\\nou hesitaremos em nossa determinação de fazer o que for preciso\\n\\n121\\n00:08:08,47 --> 00:08:11,342\\npara evitar outro ataque em nosso solo.\\n\\n122\\n00:08:11,727 --> 00:08:17,41\\nE, nesta noite, vamos pensar novamente no sentido de unidade que prevaleceu em 11 de Setembro.\\n\\n123\\n00:08:17,81 --> 00:08:21,13\\nEu sei que, às vezes, têm sido cansativo.\\n\\n124\\n00:08:21,884 --> 00:08:25,896\\nNo entanto, a conquista de hoje é uma prova da grandeza de nosso país\\n\\n125\\n00:08:26,203 --> 00:08:28,932\\ne da determinação do povo americano.\\n\\n126\\n00:08:29,916 --> 00:08:33,387\\nA tarefa de proteger o nosso país não está concluída, mas\\n\\n127\\n00:08:33,387 --> 00:08:39,049\\nhoje lembramos mais uma vez que a América pode fazer o que decidir.\\n\\n128\\n00:08:39,941 --> 00:08:41,758\\nEsta é a história da nossa História.\\n\\n129\\n00:08:42,512 --> 00:08:45,185\\nSe é a busca da prosperidade para o nosso povo\\n\\n130\\n00:08:45,569 --> 00:08:48,443\\nou a luta pela igualdade para todos os nossos cidadãos,\\n\\n131\\n00:08:49,043 --> 00:08:52,389\\na nossa determinação para defender os nossos valores em outros países\\n\\n132\\n00:08:52,774 --> 00:08:56,231\\ne os nossos sacrifícios para tornar o mundo um lugar mais seguro.\\n\\n133\\n00:08:57,492 --> 00:09:01,964\\nVamos lembrar que podemos fazer estas coisas não apenas por causa da riqueza ou do poder,\\n\\n134\\n00:09:02,21 --> 00:09:04,787\\nmas por causa de quem somos.\\n\\n135\\n00:09:04,987 --> 00:09:06,24\\nUma nação,\\n\\n136\\n00:09:06,378 --> 00:09:07,382\\nabaixo de Deus,\\n\\n137\\n00:09:07,782 --> 00:09:08,849\\nindivisível,\\n\\n138\\n00:09:09,018 --> 00:09:09,988\\ncom liberdade\\n\\n139\\n00:09:09,988 --> 00:09:11,91\\ne justiça para todos.\\n\\n140\\n00:09:12,649 --> 00:09:13,945\\nObrigado.\\n\\n141\\n00:09:13,945 --> 00:09:15,193\\nQue Deus vos abençoe.\\n\\n142\\n00:09:15,193 --> 00:09:17,008\\nE que Deus abençoe os Estados Unidos da América.',\n", + " 'bytes': 13433,\n", + " 'sha1': 'bfvrss43ew0rnfl23m6n3zsrn8bpuhk',\n", + " 'parent_id': 71191773,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 60093502,\n", + " 'timestamp': '2011-09-26T22:18:46Z',\n", + " 'user': {'id': 246324, 'text': 'Toliño'},\n", + " 'page': {'id': 16531234,\n", + " 'title': 'Great Feeling.ogv.gl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'pequenos cambios e correccións/minor changes and corrections',\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nEhhh... non, eu non teño superpoderes.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nSeguro. Non.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nTi seguro que podes facelo tamén.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nPremín no botón\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\ne gardei o texto.\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nVaites!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nFoi... emocionante.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nAcabas de mudar a Wikipedia,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nsimplemente engadiches a túa propia contribución á Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nLin un artigo en \\'\\'The Guardian\\'\\'\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nsobre esta enciclopedia en liña\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nna que todo o mundo pode contribuír\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\ne dixen: \"Vaites!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Ó mellor eu tamén podo contribuír!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nEditei a primeira vez\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\ne penso que me fixen adicto.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nNon me pagan nada\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nsó o fago para ter, xa sabes,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nalgo que facer no meu tempo libre, iso é todo.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nPodes comezar a facelo por unha idea,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nporque cres nela,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nmais acabas facendo amigos,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nacabas coñecendo un noivo,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nacabas tendo discusións marabillosas,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nacabas tendo novas ideas,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nacabas tendo novos libros que escribir...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nNon estás escribindo o artigo ti só.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nEscribes unha peza\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\ne alguén máis di:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Ei, eu teño máis!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nE xuntos podedes crear\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nartigos moi longos,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nque non poderías facer ti só.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nEntón logras construílo.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nE pensas: \"Ben, o que fixen estivo ben\".\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nIso é marabilloso.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nÉ xenial\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nporque editar é unha gran sensación.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nCada vez que o fagas.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nTeño que dicir que,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\ncando lin acerca da Wikipedia,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\ndecidín:\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Este podería ser o lugar onde encaixo\".\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nE así foi.',\n", + " 'bytes': 2711,\n", + " 'sha1': 'cdpx3ibjx7yhafyy9q7cch76x3ju290',\n", + " 'parent_id': 59556172,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 59603493,\n", + " 'timestamp': '2011-09-18T09:05:26Z',\n", + " 'user': {'id': 1654789, 'text': 'Celiaak'},\n", + " 'page': {'id': 16545753,\n", + " 'title': 'Frankenstein (1910) - Full Movie.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:09:00 --> 00:10:00 Uma adaptação livre da célebre história de Madame Shelley pela produções Edison 2 00:15:00 --> 00:16:00 Frankenstein vai para a univ...'\",\n", + " 'text': '1\\n00:09:00 --> 00:10:00\\nUma adaptação livre da célebre história de Madame Shelley pela produções Edison\\n\\n2\\n00:15:00 --> 00:16:00\\nFrankenstein vai para a universidade\\n\\n3\\n00:32:00 --> 00:33:00\\nDois anos mais tarde, Frankenstein descobre o segredo da vida',\n", + " 'bytes': 258,\n", + " 'sha1': 'q2wbkki5olpwoz4z6ho4rewigxwwry9',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 59850737,\n", + " 'timestamp': '2011-09-22T14:56:16Z',\n", + " 'user': {'id': 5434, 'text': 'B1mbo'},\n", + " 'page': {'id': 16587399,\n", + " 'title': 'Wikipedia Takes Montreal 2011 (WTMTL).ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:09,009 --> 00:00:12,135\\nTodo esto es básicamente con el fin de ilustrar Wikipedia,\\n\\n2\\n00:00:12,135 --> 00:00:15,12\\ninsertando fotografías en los artículos sobre Montreal\\n\\n3\\n00:00:15,12 --> 00:00:18,479\\nque no están bien ilustrados o no están ilustrados.\\n\\n4\\n00:00:19,54 --> 00:00:23,79\\nHan existido muchos otros eventos similares en el mundo,\\n\\n5\\n00:00:23,79 --> 00:00:27,435\\nsomos el 33.º evento y, honestamente, somos el más grande\\n\\n6\\n00:00:27,435 --> 00:00:30,631\\n¡Incluso con el huracán, somos el más grande!\\n\\n7\\n00:00:30,631 --> 00:00:32,437\\nEn total, participaron 110 personas.\\n\\n8\\n00:00:34,114 --> 00:00:36,747\\nEsto debería ser algo divertido, algo…\\n\\n9\\n00:00:36,747 --> 00:00:38,605\\nQue todos nos envidien…\\n\\n10\\n00:00:38,605 --> 00:00:40,211\\n… algo fuera de lo común\\n\\n11\\n00:00:49,641 --> 00:00:52,139\\nEn la zona este de Montreal hay\\n\\n12\\n00:00:52,139 --> 00:00:55,053\\nmuchas fotografías de alto valor para tomar…\\n\\n13\\n00:00:55,053 --> 00:00:57,526\\ny como tenemos un auto, no vamos a ir caminando,\\n\\n14\\n00:00:57,526 --> 00:01:00,205\\nasí podemos ir a estos lugares más rápido\\n\\n15\\n00:01:00,205 --> 00:01:03,221\\ny tomar esas fotografías valiosas.\\n\\n16\\n00:01:04,329 --> 00:01:07,31\\nComo hay pocas personas que trabajen activamente en Wikipedia,\\n\\n17\\n00:01:07,31 --> 00:01:10,957\\nen la Wikipedia en francés aquí en Quebec, estamos haciendo este tipo\\n\\n18\\n00:01:10,957 --> 00:01:14,492\\nde eventos, para poder difundir Wikipedia\\n\\n19\\n00:01:14,492 --> 00:01:18,565\\nentre las personas.\\n\\n20\\n00:01:19,165 --> 00:01:20,999\\n¡Lo que debemos hacer por\\n\\n21\\n00:01:20,999 --> 00:01:22,444\\nun punto!\\n\\n22\\n00:01:23,137 --> 00:01:26,194\\nIncluso, ¡ya hay seis fotos de esto!\\n\\n23\\n00:01:27,071 --> 00:01:30,489\\nEn mi caso, yo tengo una fotografía del Chateau Frontenac\\n\\n24\\n00:01:30,489 --> 00:01:33,411\\nen Quebec y que es la imagen principal\\n\\n25\\n00:01:33,411 --> 00:01:35,108\\nen el artículo del Chateau Frontenac.\\n\\n26\\n00:01:35,108 --> 00:01:36,503\\nSupongo que eso es bastante bueno…\\n\\n27\\n00:01:37,272 --> 00:01:40,763\\nA mi me gusta ser un fotógrafo aficionado,\\n\\n28\\n00:01:40,763 --> 00:01:44,772\\nasi que realmente no me interesa mucho el dinero o la…\\n\\n29\\n00:01:44,772 --> 00:01:49,829\\nMe basta con que haya gente que seleccione mi foto para presentar algo.\\n\\n30\\n00:01:52,721 --> 00:01:55,414\\nLa provincia de Quebec, y Canadá en general,\\n\\n31\\n00:01:55,414 --> 00:01:57,991\\nes un lugar extremadamente bonito,\\n\\n32\\n00:01:57,991 --> 00:02:01,118\\ny cuando sales a tomar algunas fotografías,\\n\\n33\\n00:02:01,118 --> 00:02:04,19\\ndas algunas vueltas y mirar fijamente… \\n\\n34\\n00:02:04,19 --> 00:02:07,579\\ny prestar atención.\\n\\n35\\n00:02:09,056 --> 00:02:11,16\\nEs la primera vez que organizamos esto en Canadá\\n\\n36\\n00:02:11,16 --> 00:02:12,845\\npero no la última; haremos una versión\\n\\n37\\n00:02:12,845 --> 00:02:15,157\\nen Toronto, en Ottawa, en Quebec… \\n\\n38\\n00:02:15,257 --> 00:02:19,039\\n… tenemos computadoras y en los próximos días… \\n\\n39\\n00:02:19,039 --> 00:02:22,476\\nvamos a subir las imágenes a Wikipedia… \\n\\n40\\n00:02:22,476 --> 00:02:24,729\\nporque ahora estamos en el medio de un huracán.\\n\\n41\\n00:02:26,329 --> 00:02:30,663\\nEn realidad nunca lloré, pero estuve a punto de hacerlo…\\n\\n42\\n00:02:30,663 --> 00:02:33,678\\n¿cuál era la probabilidad de que un huracán\\n\\n43\\n00:02:33,678 --> 00:02:36,003\\nazotara Montreal justo este día?\\n\\n44\\n00:02:36,003 --> 00:02:37,672\\nEstuviera 24 horas en la ciudad.\\n\\n45\\n00:02:37,672 --> 00:02:39,758\\nEsto ocurre una vez cada siglo.\\n\\n46\\n00:02:39,758 --> 00:02:42,153\\nAyer estaba soleado, mañana estará soleado,\\n\\n47\\n00:02:42,153 --> 00:02:43,841\\npero hoy no… y los participantes fueron valientes\\n\\n48\\n00:02:43,841 --> 00:02:46,077\\nfue simplemente increíble.',\n", + " 'bytes': 3705,\n", + " 'sha1': 't9nvzr9x8ruq64vya7um5mtixlbnpcv',\n", + " 'parent_id': 59732782,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 60149112,\n", + " 'timestamp': '2011-09-27T20:13:11Z',\n", + " 'user': {'id': 118880, 'text': 'Wojciech Pędzich'},\n", + " 'page': {'id': 16722071,\n", + " 'title': 'Znani składają życzenia dla polskiej Wikipedii.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:05,523 --> 00:00:07,923\\nMoi studenci już nie korzystają ze słowników papierowych,\\n\\n2\\n00:00:07,923 --> 00:00:12,759\\ntylko z elektronicznych; to samo jest z encyklopedią.\\n\\n3\\n00:00:12,659 --> 00:00:15,701\\nJa jeszcze posługuję się słownikami papierowymi,\\n\\n4\\n00:00:15,701 --> 00:00:19,299\\nale coraz częściej, jeśli chodzi o wiadomości encyklopedyczne,\\n\\n5\\n00:00:19,299 --> 00:00:23,017\\nsięgam do Wikipedii, która właśnie kończy 10 lat.\\n\\n6\\n00:00:23,017 --> 00:00:26,064\\nBardzo serdecznie życzę wszystkiego najlepszego.\\n\\n7\\n00:00:26,064 --> 00:00:31,393\\nTo, co mi się podoba także w Wikipedii, to pewien rodzaj interaktywności,\\n\\n8\\n00:00:31,393 --> 00:00:37,435\\nktóra sprawia, że my możemy też w jakiś sposób wpływać na to, co tam jest;\\n\\n9\\n00:00:37,435 --> 00:00:40,077\\na to, że Wikipedia polska jest na czwartym miejscu\\n\\n10\\n00:00:40,077 --> 00:00:45,669\\npod względem liczby haseł, to sprawia, że jestem wręcz dumny z tego.\\n\\n11\\n00:00:45,669 --> 00:00:48,045\\nWszystkiego najlepszego!\\n\\n12\\n00:00:48,045 --> 00:00:51,694\\nChciałem złożyć gorące życzenia Wikipedii\\n\\n13\\n00:00:51,694 --> 00:00:54,581\\nco znaczy, że składam te życzenia wikipedystom,\\n\\n14\\n00:00:54,581 --> 00:00:58,734\\nco stawia mnie trochę w głupiej sytuacji, dlatego że składam je\\n\\n15\\n00:00:58,734 --> 00:01:06,100\\nludziom, których nie znam, bardzo wielu ludziom.\\n\\n16\\n00:01:06,100 --> 00:01:12,763\\nJeszce głupsze jest to, że składam je również sobie, bo ze dwa razy w życiu miałem okazję\\n\\n17\\n00:01:12,763 --> 00:01:21,061\\ngrzebania w jakimś haśle w Wikipedii. Składam je dlatego, że bardzo mi zależy, żeby ta encyklopedia rosła, żeby była coraz lepsza,\\n\\n18\\n00:01:21,061 --> 00:01:29,866\\ndlatego że będę miał w domu więcej miejsca na płyty, będę mógł trochę przesunąć ciężkie encyklopedie,\\n\\n19\\n00:01:29,866 --> 00:01:32,448\\nprzede wszystkim dlatego, że cały czas z niej korzystam.\\n\\n20\\n00:01:32,448 --> 00:01:37,034\\nTo są życzenia w Creative Commons:\\n\\n21\\n00:01:37,034 --> 00:01:47,152\\nmożna je remiksować, korzystać z nich, publikować. Wszystkiego dobrego.\\n\\n22\\n00:01:47,152 --> 00:01:51,032\\nZ okazji 10-lecia polskiej Wikipedii chciałam złożyć Wikipedii i wszystkim wikipedystom\\n\\n23\\n00:01:51,032 --> 00:01:57,593\\nnajserdeczniejsze życzenia. Czego można sobie życzyć? Tego, żeby za dziesięć lat prawdziwe było\\n\\n24\\n00:01:57,593 --> 00:02:02,017\\nsformułowanie, że czego nie ma w Wikipedii, to nie istnieje.\\n\\n25\\n00:02:02,017 --> 00:02:04,284\\nMarek Niedźwiecki – jestem w Wikipedii.\\n\\n26\\n00:02:04,284 --> 00:02:07,017\\nChciałem powiedzieć, że właściwie bez Wikipedii to ja już teraz nie istnieję.\\n\\n27\\n00:02:07,017 --> 00:02:10,612\\nZałatwiliście mi to wszystko, co musiałem sobie sam załatwiać,\\n\\n28\\n00:02:10,612 --> 00:02:16,023\\nszukając informacji na temat muzyków, płyt, koncertów w różnych innych miejscach,\\n\\n29\\n00:02:16,023 --> 00:02:17,897\\na teraz to wszystko mam w jednym miejscu.\\n\\n30\\n00:02:17,897 --> 00:02:21,328\\nNa dodatek jestem pod hasłem „Marek Niedźwiecki“ i nie ma tam żadnych błędów.\\n\\n31\\n00:02:21,328 --> 00:02:26,067\\nPrzyznam, że korzystam z Wikipedii kilka do kilkunastu razy dziennie\\n\\n32\\n00:02:26,067 --> 00:02:28,775\\ni jestem z tego powodu szczęśliwy.\\n\\n33\\n00:02:28,775 --> 00:02:33,309\\nŻyczę Wam co najmniej jeszcze 90 lat. Mówił Marek Niedźwiecki.\\n\\n34\\n00:02:33,309 --> 00:02:35,687\\nWikipedia ma dopiero 10 lat,\\n\\n35\\n00:02:35,687 --> 00:02:37,383\\nalbo już 10 lat;\\n\\n36\\n00:02:37,383 --> 00:02:42,059\\nnie wiem, jak lepiej powiedzieć, bo człowiek sobie już nie wyobraża świata\\n\\n37\\n00:02:42,059 --> 00:02:44,625\\nbez Wikipedii.\\n\\n38\\n00:02:44,625 --> 00:02:48,537\\nWłaściwie Wikipedia stała się pierwszym źródłem informacji\\n\\n39\\n00:02:48,537 --> 00:02:54,006\\nna jakiś temat, zachętą do tego, żeby dalej informacji poszukiwać;\\n\\n40\\n00:02:54,006 --> 00:02:59,433\\nto jest niesamowite, że taki ruch światowy wyszedł, udał się\\n\\n41\\n00:02:59,433 --> 00:03:03,991\\nże tyle osób pisze, że tyle osób czyta. To jest\\n\\n42\\n00:03:03,991 --> 00:03:07,901\\nwielka pomoc i wielka właściwie radość,\\n\\n43\\n00:03:07,901 --> 00:03:11,069\\nze taka Wikipedia powstała, więc\\n\\n44\\n00:03:11,069 --> 00:03:15,498\\nautorom Wikipedii i wszystkim, którzy korzystają z Wikipedii\\n\\n45\\n00:03:15,498 --> 00:03:19,658\\nwszystkim, którzy tworzą Wikipedię najlepsze życzenia\\n\\n46\\n00:03:19,658 --> 00:03:25,009\\nz okazji 10-lecia i sto lat!\\n\\n47\\n00:03:25,009 --> 00:03:27,079\\nMuszę się przyznać do jednej rzeczy:\\n\\n48\\n00:03:27,079 --> 00:03:29,412\\ntak, jak codziennie jem śniadanie, tak codziennie\\n\\n49\\n00:03:29,412 --> 00:03:33,227\\nzaglądam do Wikipedii.\\n\\n50\\n00:03:33,227 --> 00:03:38,405\\nJako redaktor, kiedy po prostu czytam cudzy tekst\\n\\n51\\n00:03:38,405 --> 00:03:40,949\\nbardzo często zdarza mi się sprawdzać, co\\n\\n52\\n00:03:40,949 --> 00:03:44,126\\nna dany temat mówi Wikipedia. Co napisał autor, a co na to Wikipedia.\\n\\n53\\n00:03:44,126 --> 00:03:51,058\\nPrzyznam, że to jest w tej chwili jedno z podstawowych moich źródeł informacji,\\n\\n54\\n00:03:51,058 --> 00:03:56,457\\nale oczywiście sprawdzam też, dlatego, że zdarzają się pomyłki;\\n\\n55\\n00:03:56,457 --> 00:04:01,336\\nzdarza mi się, że potwierdzam coś w takiej prawdziwej, drukowanej encyklopedii,\\n\\n56\\n00:04:01,336 --> 00:04:05,166\\nnajczęściej tej encyklopedii PWN-u, ale zwierzę się,\\n\\n57\\n00:04:05,166 --> 00:04:13,893\\nże moim zdaniem encyklopedia PWN jest tysiąc razy mniej przydatna\\n\\n58\\n00:04:13,893 --> 00:04:14,884\\nniż Wikipedia.\\n\\n59\\n00:04:14,884 --> 00:04:18,514\\nW Wikipedii mam linki, mam rożne\\n\\n60\\n00:04:18,514 --> 00:04:20,661\\nfantastyczne źródła, do których mogę dojść,\\n\\n61\\n00:04:20,661 --> 00:04:23,943\\ndzięki Wikipedii tak, jak w ogóle dzięki Internetowi\\n\\n62\\n00:04:23,943 --> 00:04:26,347\\nmogę podróżować w jakiś temat.\\n\\n63\\n00:04:26,347 --> 00:04:30,392\\nNiestety korzystając z encyklopedii papierowych\\n\\n64\\n00:04:30,392 --> 00:04:33,085\\nno raczej nie napodróżuję się za długo.\\n\\n65\\n00:04:33,085 --> 00:04:36,246\\nPrzyznaję, jestem wielkim fanem Wikipedii\\n\\n66\\n00:04:36,246 --> 00:04:38,968\\ni moich obu książek: „Gotland” i „Zrób sobie raj” nie byłoby, gdybym na początku, w pierwszej fazie istnienia książek\\n\\n67\\n00:04:38,968 --> 00:04:52,145\\nnie... wiki chciałem już powiedzieć – nie weryfikował pewnych rzeczy w Wikipedii.\\n\\n68\\n00:04:52,145 --> 00:04:55,578\\nMam takie życzenia i dla Wikipedii i dla siebie;\\n\\n69\\n00:04:55,578 --> 00:05:02,742\\notóż życzę sobie, żebym za 50 lat jeszcze sprawdzał różne rzeczy w Wikipedii.\\n\\n70\\n00:05:02,742 --> 00:05:08,498\\nTo oznacza, że ja będę żył 50 lat i Wikipedia będzie jeszcze żyła 50 lat.\\n\\n71\\n00:05:08,498 --> 00:05:11,545\\nZ okazji 10. rocznicy powstania Wikipedii\\n\\n72\\n00:05:11,545 --> 00:05:15,303\\nskładam najlepsze życzenia dla wszystkich, którzy ją tworzą.\\n\\n73\\n00:05:15,303 --> 00:05:18,788\\nAby tam znajdowały się same rzetelne i dobre informacje\\n\\n74\\n00:05:18,788 --> 00:05:23,106\\na ci, którzy z niej korzystają, żeby byli zawsze zadowoleni. Serdecznie pozdrawiam. Ewa Wachowicz.',\n", + " 'bytes': 7082,\n", + " 'sha1': '2r9d1kzgv7bgputzemtun6tp2uj4dfa',\n", + " 'parent_id': 60118500,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 300916896,\n", + " 'timestamp': '2018-05-13T08:37:34Z',\n", + " 'user': {'id': 79973, 'text': 'Elisardojm'},\n", + " 'page': {'id': 17079455,\n", + " 'title': 'Krazy Kat Bugologist 1916 silent.ogv.gl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'little fix',\n", + " 'text': '1\\n00:00:22,000 --> 00:00:27,000\\nEu ensinareiche Bicholoxía, Ignatzes\\n\\n2 \\n00:00:40,000 --> 00:00:43,000 \\nAlgo me di que...\\n\\n3 \\n00:00:58,000 --> 00:01:04,000 \\nMira, Ignatz, unha abella durmida\\n\\n4\\n00:01:04,000 --> 00:01:08,000 \\nUnha abella morta diría eu\\n\\n5\\n00:01:10,000 --> 00:01:14,000 \\nDebe ser que ten frío\\n\\n6\\n00:01:22,000 --> 00:01:25,000 \\nPobre abella\\n\\n7\\n00:01:25,000 --> 00:01:31,000 \\nAh, ela é feliz, está no ceo das abellas\\n\\n8\\n00:01:51,000 --> 00:01:56,000 \\nIgnatz, ben, estaba trabucado\\n\\n9\\n00:01:58,000 --> 00:02:01,000 \\nSi estaba\\n\\n10\\n00:02:45,000 --> 00:02:49,000 \\nDéixamo a min',\n", + " 'bytes': 592,\n", + " 'sha1': '17y77tngpx9mlxiitcdza7p9bg79jjo',\n", + " 'parent_id': 300915873,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61957855,\n", + " 'timestamp': '2011-11-02T20:17:32Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217040,\n", + " 'title': 'Section 1.1 Small Business Introduction (An Introduction To DARPA) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Uploading english subtitles.',\n", + " 'text': '1\\n00:00:08,000 --> 00:00:13,000\\nWelcome to “Doing Business with DARPA – A Small Business Primer”.\\n\\n2\\n00:00:13,500 --> 00:00:18,000\\nWe will be showing you opportunities available for small businesses like yours to obtain funding\\n\\n3\\n00:00:18,500 --> 00:00:24,000\\nand other kinds of support for innovative research and development projects in areas of national need,\\n\\n4\\n00:00:24,500 --> 00:00:31,000\\nand what assistance DARPA offers to help you transition your technologies and solutions to the military services,\\n\\n5\\n00:00:31,500 --> 00:00:34,500\\nother federal agencies, and the commercial marketplace.\\n\\n6\\n00:00:35,000 --> 00:00:44,000\\nSmall businesses have always participated and have been big players in the expansion of ideas that have always kept us on the top.\\n\\n7\\n00:00:44,500 --> 00:00:52,000\\nAnd they’re really the ones that come up with the ideas that save lives and advance our technological superiority in this global world.\\n\\n8\\n00:00:54,000 --> 00:01:03,000 \\nDARPA, the Defense Advanced Research Projects Agency, is the central research and development organization for the U.S. Department of Defense.\\n\\n9\\n00:01:03,500 --> 00:01:11,000\\nThe agency’s mission is to maintain the superiority of the U.S. military and prevent technological surprise from harming our national security.\\n\\n10\\n00:01:12,000 --> 00:01:21,000\\nDARPA is the premier DoD research and development organization. So, even though we don’t have any labs or any facilities,\\n\\n11\\n00:01:21,500 --> 00:01:29,000 \\nwe are the central research hub and then we transition and transfer technologies to the other military components.\\n\\n12\\n00:01:29,500 --> 00:01:36,000 \\nDARPA funds researchers in industry, universities, government laboratories, and elsewhere, to conduct high-risk,\\n\\n13\\n00:01:36,500 --> 00:01:41,000 \\nhigh-reward research and development projects, with both near and far term applications.\\n\\n14\\n00:01:41,500 --> 00:01:52,000\\nDARPA emphasizes innovation and radical disruptive technology. So we use a term called DARPA HARD which is…it could be anything from\\n\\n15\\n00:01:52,500 --> 00:02:04,000 \\nNo one’s ever done it before or everyone has done it and they failed or there is a technology that currently exists but we need to push the state-of-the-art.\\n\\n16\\n00:02:04,500 --> 00:02:11,000\\nWe need to push that envelope and advance that technology even further so that our warfighters have a technological advantage on the battlefield.\\n\\n17\\n00:02:11,500 --> 00:02:17,500\\nDARPA’s pioneering work has lead to some of the most technologically advanced systems and applications of the century.\\n\\n18\\n00:02:18,000 --> 00:02:24,000\\nBut there are always more challenges, and your idea may be the next revolutionary solution.\\n\\n19\\n00:02:24,500 --> 00:02:32,500 \\nThere’s just no other place in the world where you can come to an organization and pitch your idea and somebody can come back and say,“This is worth doing”.\\n\\n20\\n00:02:33,000 --> 00:02:42,000 \\nAnd the amount of effort that’s placed in it is pretty outstanding. We are known for taking a very small idea and going miles and miles with it.\\n\\n21\\n00:02:43,500 --> 00:02:49,500\\nWhen you consider some of the smaller programs that made it into the high end areas that we’re talking about,\\n\\n22\\n00:02:50,000 --> 00:02:59,000\\nit’s fascinating to see and outstanding to think about because no other place in the world is willing to take that risk.',\n", + " 'bytes': 3384,\n", + " 'sha1': 'mxzoz5jem9u46srlal9o8fkfnoyssfe',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61958508,\n", + " 'timestamp': '2011-11-02T20:34:13Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217207,\n", + " 'title': 'Section 1.2 Finding Your DARPA Program Manager (An Introduction To DARPA) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Uploading english subtitles.',\n", + " 'text': '1\\n00:00:07,000 --> 00:00:13,000 \\nThere are technical offices at DARPA, each with a team of Program Managers of diversified backgrounds\\n\\n2\\n00:00:13,500 --> 00:00:18,000 \\nthat include the federal government, the military services, industry and academia.\\n\\n3\\n00:00:18,500 --> 00:00:26,000 \\nDARPA is a relatively small agency in the Department of Defense or DoD, with less than 200 program managers.\\n\\n4\\n00:00:26,500 --> 00:00:30,000\\nThe agency is flexible and enjoys substantial autonomy and freedom,\\n\\n5\\n00:00:30,500 --> 00:00:37,000 \\nwhich gives Program Managers the latitude they need to work with small businesses on high-risk, high-payoff projects.\\n\\n6\\n00:00:39,000 --> 00:00:44,000 \\nThe key to working successfully with DARPA is persistent communication with the Program Managers.\\n\\n7\\n00:00:44,500 --> 00:00:50,000\\nProvide feedback regarding whether an idea is suited to DARPA.\\n\\n8\\n00:00:50,500 --> 00:00:57,000\\nServe as a bridge to the military departments, interfacing with their counterparts on how to best integrate new technologies.\\n\\n9\\n00:00:57,500 --> 00:01:03,000 \\nHelp to shape ideas to synchronize with an ongoing or new DARPA program.\\n\\n10\\n00:01:03,500 --> 00:01:11,000 \\nThe program manager at DARPA is the heart of DARPA. They are the ones with the ideas. They are the ones that are able to direct,\\n\\n11\\n00:01:11,500 --> 00:01:17,000 \\nmanage and control the funds necessary to ensure that the efforts get done.\\n\\n12\\n00:01:17,500 --> 00:01:22,000 \\nThey are the people that can make the difference for you. They can identify the places to go,\\n\\n13\\n00:01:22,500 --> 00:01:30,000 \\nthe commercial opportunities and especially the Department of Defense opportunities. Where we need most of the help.\\n\\n14\\n00:01:30,500 --> 00:01:36,000 \\nWhat areas of transition. What military department requires the technology that you’re working on.\\n\\n15\\n00:01:36,500 --> 00:01:44,000 \\nIn some cases, a Program Manager may substantially alter what he or she plans to do based on a new idea presented by a small business.\\n\\n16\\n00:01:36,500 --> 00:01:49,000 \\nYour first step to connecting with a Program Manager is to identify the DARPA office\\n\\n17\\n00:01:49,500 --> 00:01:53,000 \\nthat is funding projects in areas where your ideas may be a good fit.\\n\\n18\\n00:01:53,000 --> 00:01:57,000 \\nThe DARPA website features a personnel directory for each technical office,\\n\\n19\\n00:01:58,500 --> 00:02:01,000 \\nalong with a listing of strategic thrusts, active projects and solicitations.\\n\\n20\\n00:02:02,000 --> 00:02:08,000 \\nIn addition, you can learn more about Program Managers and programs through DARPA pod casts and news stories.',\n", + " 'bytes': 2597,\n", + " 'sha1': 'rx37alyx4q6ibxk7s1jumk3j49a1c2g',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61960423,\n", + " 'timestamp': '2011-11-02T21:17:54Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217341,\n", + " 'title': 'Section 2.1 Introduction To Small Business & SBIR STTR (How Small Businesses Work With DARPA) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:Section 2.1 Introduction To Small Business & SBIR/STTR (How Small Businesses Work With DARPA) (DARPA).ogv.en.srt]] to [[TimedText:Section 2.1 Introduction To Small Business & SBIR STTR (How Small Businesses Work With DARPA) (DARPA).og...',\n", + " 'text': '1\\n00:00:07,000 --> 00:00:12,000 \\nThroughout the U.S., small businesses like yours are working to solve DARPA hard problems.\\n\\n2\\n00:00:12,500 --> 00:00:22,000 \\nBy the nature of their size, small businesses bring flexibility and an entrepreneurial spirit to developing the solutions that benefit the military services.\\n\\n3\\n00:00:22,500 --> 00:00:27,000 \\nThere are several ways for small businesses to do business with DARPA.\\n\\n4\\n00:00:27,500 --> 00:00:38,000 \\nFirst, each technical office solicits business mostly through Broad Agency Announcements or BAAs), and some through Requests for Proposals or RFPs).\\n\\n5\\n00:00:38,500 --> 00:00:42,000 \\nSince creating proposals involves a great deal of time and effort,\\n\\n6\\n00:00:42,500 --> 00:00:51,000 \\nmany DARPA solicitations first encourage the submission of a white paper or abstract to determine whether an idea is likely to be encouraged.\\n\\n7\\n00:00:51,500 --> 00:00:58,000 \\nDARPA also holds “Industry Days” for most solicitations, where companies can learn more about the solicitation process.\\n\\n8\\n00:00:58,500 --> 00:01:07,000 \\nVisit the Funding Opportunities Section on the DARPA web site for additional information to increase your knowledge base on “Doing Business with DARPA”\\n\\n9\\n00:01:09,000 --> 00:01:19,000 \\nIn addition to responding to BAAs and RFPs, small businesses have the opportunity to participate in DARPA research through the SBIR and STTR Programs.\\n\\n10\\n00:01:20,000 --> 00:01:30,000 \\nSBIR, or Small Business Innovation Research Program, was established to provide high-tech small businesses access to Federal research and development funding.\\n\\n11\\n00:01:30,500 --> 00:01:42,000 \\nSTTR, or Small Business Technology Transfer Program, funds cooperative research and development projects between small businesses and universities or other research institutions.\\n\\n12\\n00:01:42,500 --> 00:01:49,000 \\nThe goals of the SBIR and STTR Programs are to move research-based innovations to the marketplace,\\n\\n13\\n00:01:49,500 --> 00:01:55,000 \\nto foster high-technology economic development, and to address the technological needs of the Federal Government.\\n\\n14\\n00:01:55,500 --> 00:02:07,000 \\nTo participate in the SBIR or STTR programs, a firm must: Be a for-profit organization with 500 or fewer employees, including all affiliates.\\n\\n15\\n00:02:07,500 --> 00:02:14,000 \\nTo participate in the SBIR or STTR programs, a firm must: Be operated in the U.S. and at least 51 percent-owned by a U.S. citizen or permanent resident alien.\\n\\n16\\n00:02:14,500 --> 00:02:20,000 \\nTo participate in the SBIR or STTR programs, a firm must: Perform the Phase I and Phase II work in the United States, to include the Commonwealth of Puerto Rico,\\n\\n17\\n00:02:20,500 --> 00:02:27,000 \\nthe Commonwealth of the Northern Mariana Islands, the Trust Territory of the Pacific Islands, and the District of Columbia…and…\\n\\n18\\n00:02:27,500 --> 00:02:36,000 \\nHave the principal investigator spend more than one-half of the time employed by the proposing firm and/or by the research entity for STTR.\\n\\n19\\n00:02:36,500 --> 00:02:44,000 \\nDARPA participates in up to three SBIR and one STTR solicitation issued by the DoD each year,\\n\\n20\\n00:02:44,500 --> 00:02:49,000 \\nproviding researchers an opportunity to respond to topics in specific thrust areas.\\n\\n21\\n00:02:49,500 --> 00:02:57,000 \\nSee the DARPA SBIR/STTR resources section for additional information on solicitations and proposals.',\n", + " 'bytes': 3398,\n", + " 'sha1': '6k4yyacqazzyq6smerdlgtyor4vsev2',\n", + " 'parent_id': 61958966,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61959052,\n", + " 'timestamp': '2011-11-02T20:45:28Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217358,\n", + " 'title': 'Section 2.2 Preparing A Winning Proposal (How Small Businesses Work With DARPA) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Uploading english subtitles.',\n", + " 'text': '1\\n00:00:08,000 --> 00:00:15,500 \\nOnce an SBIR or STTR solicitation is issued, the first step is to identify which topic you will respond to.\\n\\n2\\n00:00:15,500 --> 00:00:20,000 \\nThe next step is to prepare a winning proposal. It’s important to: Do your homework.\\n\\n3\\n00:00:21,000 --> 00:00:26,000 \\nLearn all you can about the current-state-of-the-art and what other companies or research organizations have accomplished in this area.\\n\\n4\\n00:00:28,000 --> 00:00:34,000 \\nThoroughly read and follow the solicitation instructions published on the DoD and DARPA SBIR/ STTR websites.\\n\\n5\\n00:00:35,000 --> 00:00:43,000 \\nThe most important thing a small company should focus on when submitting a proposal to DARPA is to read and follow the proposal instructions.\\n\\n6\\n00:00:44,000 --> 00:00:49,000 \\nIf they don’t follow the instructions, they run the risk of receiving a lower evaluation.\\n\\n7\\n00:00:50,000 --> 00:00:57,000 \\nAddress each of the areas outlined in the solicitation to include your technical objective and unique approach to advancing the state-of-the-art.\\n\\n8\\n00:00:59,000 --> 00:01:04,000 \\nDiscuss how you plan to address risk issues and overcome any identified technical barriers.\\n\\n9\\n00:01:15,000 --> 00:01:11,000 \\nAnd, outline your commercialization strategy to bring your idea to the warfighter and other markets.\\n\\n10\\n00:01:12,000 --> 00:01:18,000 \\nEven if they don’t have it thoroughly vetted out, they have to understand that this is an initial plan.\\n\\n11\\n00:01:19,000 --> 00:01:24,000 \\nTheir plan will have to be changed during the phase two effort,-more than likely and they have to be prepared for that.\\n\\n12\\n00:01:25,000 --> 00:01:29,000 \\nBut they also have to understand that they need to at least show they’ve thought about the paths,\\n\\n13\\n00:01:29,500 --> 00:01:33,000 \\nthe potential paths that their technology can take through their commercialization strategy.\\n\\n14\\n00:01:34,000 --> 00:01:40,000 \\nBe sure to also include information about your project team, past performance and successes, and related work.',\n", + " 'bytes': 2022,\n", + " 'sha1': 'k0vxajixsd7ja640ggjp5u9dhgj05l3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61959102,\n", + " 'timestamp': '2011-11-02T20:46:44Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217369,\n", + " 'title': 'Section 2.3 Key Phase 1 & 2 Overview (How Small Businesses Work With DARPA) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Uploading english subtitles.',\n", + " 'text': '1\\n00:00:07,500 --> 00:00:17,000 \\nThere are two main phases funded through the SBIR and STTR Programs: Phase 1 - Proof of Concept, and Phase 2 - Prototype Development.\\n\\n2\\n00:00:18,000 --> 00:00:24,000 \\nIf the Phase I project proves successful, DARPA may invite the company to submit a Phase II proposal.\\n\\n3\\n00:00:26,000 --> 00:00:32,000 \\nDuring the companies Phase 2 effort, they should be looking for ways to fund their Phase three’s.\\n\\n4\\n00:00:33,000 --> 00:00:37,000 \\nSome of the ways to do that would be to leverage other non-SBIR programs\\n\\n5\\n00:00:36,500 --> 00:00:45,000 \\nsuch as the Department of Homeland Security’s fourteen-O-one program, which is a program for first responder related technologies,\\n\\n6\\n00:00:46,000 --> 00:00:57,000 \\nthe Defense Acquisition Challenge Program, and the technology transition initiative programs, which are designed to mature technologies to the six, seven or above levels.\\n\\n7\\n00:00:58,000 --> 00:01:06,000 \\nDuring the Phase II contract, you should also: further refine your commercialization strategy, develop and pursue potential transition pathways,\\n\\n8\\n00:01:07,000 --> 00:01:13,000 \\nidentify and pursue relationships with collaborators and partners such as potential end-users and Prime contractors,\\n\\n9\\n00:01:14,000 --> 00:01:21,000 \\nand find opportunities for testing, benchmarking and experimentation, which is also an opportunity to showcase your technology.\\n\\n10\\n00:01:23,500 --> 00:01:33,000 \\nOnce you have received Phase III funding, it’s important to remember to update your DoD SBIR/STTR Company Commercialization Report.\\n\\n11\\n00:01:35,000 --> 00:01:40,000 \\nThis will ensure that we have current information on your company’s transition progress and commercialization successes.\\n\\n12\\n00:01:41,000 --> 00:01:44,000 \\nWe hope that this section has been both informative and inspiring.\\n\\n13\\n00:01:45,000 --> 00:01:53,000 \\nThe following sections provide additional information to further enhance your knowledge about working with DARPA and transitioning technology from the lab to the market.',\n", + " 'bytes': 2041,\n", + " 'sha1': '86ko2prcpaxg7ms517ilct3dbo4g70c',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61960168,\n", + " 'timestamp': '2011-11-02T21:13:04Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217388,\n", + " 'title': 'Section 3.1 From Research To Use (SBIR STTR Transition Overview) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': \"moved [[TimedText:Section 3.1 From Research To Use (SBIR/STTR Transition Overview) (DARPA).ogv.en.srt]] to [[TimedText:Section 3.1 From Research To Use (SBIR STTR Transition Overview) (DARPA).ogv.en.srt]]: Media can't have /\",\n", + " 'text': '1\\n00:00:08,000 --> 00:00:14,000 \\nDARPA’s research results in the development of products, enabling technologies, and components, which are \\n\\n2\\n00:00:14,000 --> 00:00:19,000 \\ndeployed into the military services, other federal agency’s operational environments, and the commercial markets.\\n\\n3\\n00:00:20,000 --> 00:00:24,000 \\nThis is typically done through licensing, or product and services business models. \\n\\n4\\n00:00:25,000 --> 00:00:32,000 \\nWhere a technology fits within a deployed system strongly influences the transition options that can be explored and then implemented.\\n\\n5\\n00:00:35,000 --> 00:00:46,000 \\nIn addition to maturing the technology, transition includes several components, such as addressing manufacturing, integration, certification, reliability, supportability,\\n\\n6\\n00:00:47,000 --> 00:00:52,000 \\ntraining, and other issues required to field the technology in an operational environment.\\n\\n7\\n00:00:52,500 --> 00:01:01,000 \\nThe business components of selling, scaling to meet market demand, and sustaining a profitable business must also be addressed for transition success.',\n", + " 'bytes': 1093,\n", + " 'sha1': 'j0duxvglrr5spa2tvnhhqj8u0bt1l5i',\n", + " 'parent_id': 61959143,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61960237,\n", + " 'timestamp': '2011-11-02T21:14:15Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217409,\n", + " 'title': 'Section 3.2 Addressing Transition Pathways & Risks (SBIR STTR Transition Overview) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': \"moved [[TimedText:Section 3.2 Addressing Transition Pathways & Risks (SBIR/STTR Transition Overview) (DARPA).ogv.en.srt]] to [[TimedText:Section 3.2 Addressing Transition Pathways & Risks (SBIR STTR Transition Overview) (DARPA).ogv.en.srt]]: Media can'...\",\n", + " 'text': '1\\n00:00:07,000 --> 00:00:18,000 \\nThere are three main transition pathways for SBIR or STTR-funded technologies: First, into one of the military services, through a DARPA program, through an Acquisition Program\\n\\n2\\n00:00:19,000 --> 00:00:25,000 \\nwithin one of the services -- or through the direct sale of a military product or service to a commercial supplier to the DoD.\\n\\n3\\n00:00:26,000 --> 00:00:37,000 \\nSecond, into other federal agencies such as the Department of Homeland Security for deployment into the first responder end-user community. And third, into the commercial marketplace.\\n\\n4\\n00:00:39,000 --> 00:00:45,000 \\nRegardless of the transition pathway, in most cases, companies will pursue transition within a competitive environment.\\n\\n5\\n00:00:46,000 --> 00:00:55,000 \\nAlong with competitors, the risk of introducing new technology into operational environments creates barriers and challenges that will need to be addressed and overcome.\\n\\n6\\n00:00:57,000 --> 00:01:01,000 \\nDefining those risk areas early is an important component of your transition planning activities.\\n\\n7\\n00:01:02,000 --> 00:01:10,000 \\nThe National Research Council has prepared a report that includes identification of the following risk areas associated with transitioning SBIR technologies:\\n\\n8\\n00:01:12,000 --> 00:01:22,000 \\nAbility to obtain funding to complete technology development, Robustness of technology for integration into a DoD system, Meeting DoD program schedule,\\n\\n9\\n00:01:23,000 --> 00:01:30,000 \\nMeeting testing and engineering specs, Ability to deliver on time and within budget, and Ability to scale\\n\\n10\\n00:01:32,000 --> 00:01:40,000 \\nAddressing these and other risk areas, specific to your technology or project is critical to increasing the probability of your project’s transition success.',\n", + " 'bytes': 1793,\n", + " 'sha1': 'lu597shhe3n2tpk9p1fkkgzx4w4pqyq',\n", + " 'parent_id': 61959236,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61960358,\n", + " 'timestamp': '2011-11-02T21:16:30Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217443,\n", + " 'title': 'Section 3.3 Transition Planning (SBIR STTR Transition Overview) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': \"moved [[TimedText:Section 3.3 Transition Planning (SBIR/STTR Transition Overview) (DARPA).ogv.en.srt]] to [[TimedText:Section 3.3 Transition Planning (SBIR STTR Transition Overview) (DARPA).ogv.en.srt]]: Media can't have /\",\n", + " 'text': '1\\n00:00:08,000 --> 00:00:16,000 \\nBased on real-life company experiences in transitioning technologies, we provide the following recommendations to help you successfully navigate the process.\\n\\n2\\n00:00:17,000 --> 00:00:27,000 \\n• Start your transition plan development activities early - This allows you to identify issues, opportunities, and key players in parallel to developing your technology or solution.\\n\\n3\\n00:00:28,000 --> 00:00:43,000 \\n• Build an integrated team - Bringing your technology from the lab to the field requires the involvement and cooperation of many individuals to include technical, business development, finance, contracts, and legal team members.\\n\\n4\\n00:00:43,000 --> 00:00:55,000 \\n• Be agile and opportunistic - Transition paths are neither standard nor linear. Expect to modify your transition plan to take advantage of opportunities that can support your transition activities.\\n\\n5\\n00:00:55,000 --> 00:01:07,000 \\n• Make achieving technology milestones a priority - A technology that has been proven effective in a relevant or operational environment is more likely to attract the attention of potential end-users.\\n\\n6\\n00:01:08,000 --> 00:01:20,000 \\n• Identify application areas and end-users - Many technologies have dual-use applications. Expand your options for transition by identifying multiple potential end-users for your technology.\\n\\n7\\n00:01:21,000 --> 00:01:30,000 \\n• Communicate your value proposition to end-users - Convey your technology’s advantages over existing technologies and its ability to meet specific needs and requirements.\\n\\n8\\n00:01:32,000 --> 00:01:42,000 \\n• Take responsibility for technology transition - Your company is ultimately responsible for transition planning and implementation, including assembling your team and collaborators, and\\n\\n9\\n00:01:42,500 --> 00:01:47,000 \\nsecuring non –SBIR/STTR funding, referred to as Phase III funding.',\n", + " 'bytes': 1908,\n", + " 'sha1': 'rq4nx35332tyfy314zwir1rumrdqzqa',\n", + " 'parent_id': 61959376,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61960780,\n", + " 'timestamp': '2011-11-02T21:26:59Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217454,\n", + " 'title': 'Section 3.4 Communicating Your Innovation To Others (SBIR STTR Transition Overview) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:Section 3.4 Communicating Your Innovation To Others (SBIR/STTR Transition Overview) (DARPA).ogv.en.srt]] to [[TimedText:Section 3.4 Communicating Your Innovation To Others (SBIR STTR Transition Overview) (DARPA).ogv.en.srt]]: Media ca...',\n", + " 'text': '1\\n00:00:07,000 --> 00:00:16,000 \\nIt’s important to develop a project summary to communicate information about the technology being developed for distribution to potential advocates, partners,\\n\\n2\\n00:00:17,000 --> 00:00:24,000 \\ncollaborators and end-users, who also may be Phase III funding sources. Here is some suggested information to include in your Project Summary: \\n\\n3\\n00:00:25,000 --> 00:00:36,000 \\n• The technical challenge being addressed • Applications and operational environments • Current state of the art and advantages of your technology over competing technologies\\n\\n4\\n00:00:37,000 --> 00:00:49,000 \\n• The company’s innovative approach • The proposed and demonstrated advantages • The value to the end user • Where the technology fits within a larger system that will be required to field the technology\\n\\n5\\n00:00:51,000 --> 00:01:02,000 \\n• The technical risk areas and how they are being addressed during the development activities and Readiness of the company to meet the business, financial, and operational requirements to support and sustain the transition.\\n\\n6\\n00:01:03,000 --> 00:01:11,000 \\nPrior to releasing or communicating information about your technology to others, you must first address the protection of the intellectual property developed,\\n\\n7\\n00:01:12,000 --> 00:01:23,000 \\nand also follow the DARPA Process for Public Release, as outlined on the DARPA Web site. Your Program Manager and the Small Business Programs Office are available to provide assistance as required.',\n", + " 'bytes': 1520,\n", + " 'sha1': 'oxa025oytsym6imk4fgxffscgvwgvvj',\n", + " 'parent_id': 61959421,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 61959460,\n", + " 'timestamp': '2011-11-02T20:56:04Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17217467,\n", + " 'title': 'Section 4.1 Key DARPA Resources (Your Next Step To Success) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Uploading english subtitles.',\n", + " 'text': '1\\n00:00:07,000 --> 00:00:13,000 \\nAlong with the informative website, it’s recommended that you take advantage of other DARPA related activities such as:\\n\\n2\\n00:00:13,500 --> 00:00:20,000 \\nIndustry Days, which are solicitation specific meetings, You can find a schedule for these events on the DARPA website.\\n\\n3\\n00:00:21,000 --> 00:00:30,000 \\nAlso on the website, you’ll find information on how to do business with DARPA and the required steps for the DARPA Public Release Process.\\n\\n4\\n00:00:30,500 --> 00:00:42,000 \\nThe DoD SBIR Resource Center is a good source for information on solicitation topics and proposal awards from DARPA, as well as the other DoD agencies. In addition you can learn about upcoming SBIR conferences.\\n\\n5\\n00:00:43,000 --> 00:00:55,000 \\nWe have a Beyond Phase 2 conference and I encourage all of the small businesses to participate in that. You are able to meet a great many program managers there that are already in the commercial sector.\\n\\n6\\n00:00:56,000 --> 00:01:03,000 \\nYou are able to meet many DARPA representatives there who will be there to help you understand a little bit more about DARPA and its culture.\\n\\n7\\n00:01:04,000 --> 00:01:12,000 \\nAnd finally, the DARPA SBIR/STTR web site contains a list of resources available to small businesses seeking information about both programs.\\n\\n8\\n00:01:14,000 --> 00:01:25,000 \\nHere you’ll find success reports, a video describing the technologies that have transitioned beyond Phase II, additional resources, and several points of contact that can assist you in preparing to do business with DARPA.\\n\\n9\\n00:01:27,000 --> 00:01:38,000 \\nWe encourage you to bookmark the DARPA Web site and sign up for the RSS feeds today so that you can easily keep up to date on DARPA programs, program managers, solicitations and DARPA transition successes.',\n", + " 'bytes': 1816,\n", + " 'sha1': '5yp1erub4n87lx95pjl4i2tcv678wgb',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 145652967,\n", + " 'timestamp': '2015-01-07T19:18:59Z',\n", + " 'user': {'text': '41.74.208.93'},\n", + " 'page': {'id': 17217482,\n", + " 'title': 'Section 4.2 Start Your DARPA Success Story Today (Your Next Step To Success) (DARPA).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'We at DARPA hope you’ve found this primer valuable, and are inspired to pursue your own DARPA success story. 2 00:00:16,000 --> 00:00:26,000 We’ll be pleased to work with you to develop a Success Report for posting on the DARPA Web site which showca',\n", + " 'text': '1\\n00:00:09,000 --> 00:00:15,000',\n", + " 'bytes': 31,\n", + " 'sha1': '3b3btev4bubqxqfk8srlavmohw8qpfe',\n", + " 'parent_id': 61959494,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 62152547,\n", + " 'timestamp': '2011-11-06T23:14:48Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17262346,\n", + " 'title': '01 The Formative Years 1958 - 1975 (DARPA history).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'add srt',\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:14,220\\n[ MUSIC ]\\n\\n2\\n00:00:14,220 --> 00:00:18,560\\n>> DARPA. Shaping the future,\\ncreating opportunities\\n\\n3\\n00:00:18,560 --> 00:00:22,510\\nfor new capabilities -- strategically,\\ntactically.\\n\\n4\\n00:00:22,510 --> 00:00:27,920\\n[ MUSIC ]\\n\\n5\\n00:00:27,920 --> 00:00:30,920\\nDARPA takes on the most difficult\\ntechnical challenges\\n\\n6\\n00:00:30,920 --> 00:00:34,710\\nfor the Department of Defense\\nand finds solutions.\\n\\n7\\n00:00:34,710 --> 00:00:36,510\\nIts role was set at inception.\\n\\n8\\n00:00:36,510 --> 00:00:42,940\\n[ MUSIC ]\\n\\n9\\n00:00:42,940 --> 00:00:47,820\\n1957. We are ensnared in an\\narms race with the Soviet Union.\\n\\n10\\n00:00:47,820 --> 00:00:55,770\\nThen in October, the Soviets launched Sputnik,\\nan implicit threat that shocked the nation.\\n\\n11\\n00:00:57,270 --> 00:00:59,210\\n>> Today a new moon is in the sky,\\n\\n12\\n00:00:59,210 --> 00:01:03,130\\na 23-inch metal sphere placed\\nin orbit by a Russian rocket.\\n\\n13\\n00:01:03,130 --> 00:01:09,910\\n>> Our satellite program has never been\\nconducted as a race with other nations.\\n\\n14\\n00:01:09,910 --> 00:01:13,930\\n>> Eisenhower instructs his new\\nSecretary of Defense, Neil McElroy,\\n\\n15\\n00:01:13,930 --> 00:01:16,890\\nto coordinate our national space program.\\n\\n16\\n00:01:16,890 --> 00:01:18,950\\nThe Soviets had surprised us.\\n\\n17\\n00:01:18,950 --> 00:01:25,080\\n>> We thought of them as being dangerous, and\\nto have them show up ahead of us in this new,\\n\\n18\\n00:01:25,080 --> 00:01:29,050\\nseemingly terribly important\\ntechnology was a shock.\\n\\n19\\n00:01:29,050 --> 00:01:33,360\\n>> ARPA was formed in February\\n1958 as a special agency\\n\\n20\\n00:01:33,360 --> 00:01:37,650\\nin the Pentagon reporting directly\\nto Defense Secretary McElroy.\\n\\n21\\n00:01:37,650 --> 00:01:43,480\\nIts charter: maintain U.S. technological\\nsuperiority over potential adversaries.\\n\\n22\\n00:01:43,480 --> 00:01:48,010\\n>> And the way he put it was, he\\nsaid, I want ARPA to do those things\\n\\n23\\n00:01:48,010 --> 00:01:51,490\\nwhich otherwise fall between the stools.\\n\\n24\\n00:01:51,490 --> 00:01:56,800\\n>> ARPA's initial focus was three\\npresidential initiatives: get us into space,\\n\\n25\\n00:01:56,800 --> 00:02:02,330\\nprotect us from Soviet missile attacks,\\nand detect Soviet nuclear tests.\\n\\n26\\n00:02:02,330 --> 00:02:06,000\\nUnder its first director,\\nRoy Johnson, ARPA succeeded.\\n\\n27\\n00:02:06,000 --> 00:02:10,330\\nARPA used Explorer 4 and its Argus\\nsatellite to see if it was possible\\n\\n28\\n00:02:10,330 --> 00:02:12,800\\nto detect nuclear explosions in space.\\n\\n29\\n00:02:12,800 --> 00:02:17,710\\n>> Explorer 4 was launched from Cape\\nCanaveral and went into orbit successfully.\\n\\n30\\n00:02:17,710 --> 00:02:18,850\\n>> This is a rocket engine --\\n\\n31\\n00:02:18,850 --> 00:02:24,910\\n>> ARPA was developing a new class of rocket\\nboosters strong enough to carry men to the moon.\\n\\n32\\n00:02:24,910 --> 00:02:29,350\\nOnce the space program was on track,\\nit was transitioned out of ARPA.\\n\\n33\\n00:02:29,350 --> 00:02:33,070\\nPart of it went to the newly\\nformed civilian agency, NASA.\\n\\n34\\n00:02:33,070 --> 00:02:35,630\\nThe rest moved to NRO.\\n\\n35\\n00:02:37,310 --> 00:02:41,120\\nWith the transition of the\\nspace programs, ARPA was shaken.\\n\\n36\\n00:02:41,120 --> 00:02:43,470\\nPersonnel and funding had been moved out.\\n\\n37\\n00:02:43,470 --> 00:02:47,080\\nIt was a blow to the morale\\nof the fledgling agency.\\n\\n38\\n00:02:47,080 --> 00:02:52,510\\nMajor General Austin Betts became\\nARPA's second director in 1959.\\n\\n39\\n00:02:52,510 --> 00:02:58,600\\n>> Well, I think that my primary assignment\\nfrom Herb York were to calm things down,\\n\\n40\\n00:02:58,600 --> 00:03:06,420\\nkeep the work going, and from time to time\\nhe would assign some new tasks, which he did.\\n\\n41\\n00:03:06,420 --> 00:03:11,150\\n>> General Betts bridged the\\nEisenhower and Kennedy administrations.\\n\\n42\\n00:03:11,150 --> 00:03:15,530\\nNuclear warfare was a major\\nnational security concern.\\n\\n43\\n00:03:15,530 --> 00:03:22,740\\nARPA's new director, Dr. Jack Ruina, inherited\\nthe beginnings of Project DEFENDER and Vela.\\n\\n44\\n00:03:22,740 --> 00:03:28,540\\nVela detected Soviet nuclear tests;\\nDEFENDER was our missile defense.\\n\\n45\\n00:03:28,540 --> 00:03:31,940\\n>> We were worried about the\\nRussians' testing in outer space,\\n\\n46\\n00:03:31,940 --> 00:03:34,180\\nin the atmosphere, and underground.\\n\\n47\\n00:03:34,180 --> 00:03:38,630\\nThere was Surface Sierra, Uniform,\\nand Hotel was the outer space.\\n\\n48\\n00:03:38,630 --> 00:03:44,040\\nBut also if they test underground, the only way\\nto test the, detect the testing underground is\\n\\n49\\n00:03:44,040 --> 00:03:48,160\\nby looking at the seismic signal that\\nemanated from a nuclear explosion.\\n\\n50\\n00:03:48,160 --> 00:03:50,490\\n>> ARPA was a little over three years old.\\n\\n51\\n00:03:50,490 --> 00:03:53,890\\nDEFENDER and Vela were high-profile programs.\\n\\n52\\n00:03:53,890 --> 00:03:57,890\\nBeneath those two umbrellas, new,\\nrewarding science was emerging:\\n\\n53\\n00:03:57,890 --> 00:04:02,470\\ngeology, seismology, and radio astronomy.\\n\\n54\\n00:04:02,470 --> 00:04:06,900\\nARPA was also opening the\\ndoor to the information age.\\n\\n55\\n00:04:06,900 --> 00:04:11,020\\nComputers were doing what\\nthey did best: crunch numbers.\\n\\n56\\n00:04:11,020 --> 00:04:14,890\\nARPA was curious: could they be\\nused to improve field operations\\n\\n57\\n00:04:14,890 --> 00:04:17,880\\nand secure command and control communications?\\n\\n58\\n00:04:17,880 --> 00:04:26,080\\nDr. Ruina hired JCR Licklider to head up the new\\nInformation Processing Techniques Office, IPTO.\\n\\n59\\n00:04:26,080 --> 00:04:29,430\\n>> The computer technology\\nhas been moving in a way\\n\\n60\\n00:04:29,430 --> 00:04:33,650\\nthat nothing else people\\nhave ever known has moved.\\n\\n61\\n00:04:33,650 --> 00:04:37,910\\n>> ARPA was putting the information pieces\\ntogether, facing the nuclear threat,\\n\\n62\\n00:04:37,910 --> 00:04:43,050\\nand collecting the information\\ncritical to our national defense.\\n\\n63\\n00:04:43,050 --> 00:04:45,960\\n>> The partial nuclear test ban was, of course,\\n\\n64\\n00:04:45,960 --> 00:04:49,920\\nthe first real success leading\\nto an end of the Cold War.\\n\\n65\\n00:04:49,920 --> 00:04:53,460\\nIt was, it was only a step,\\nbut it was the first step.\\n\\n66\\n00:04:53,460 --> 00:04:58,060\\nAnd I think it was important, and I think\\nARPA's role was important in having prepared\\n\\n67\\n00:04:58,060 --> 00:05:02,580\\nfor the services to say, yes, we\\ncan assure the safety of the country\\n\\n68\\n00:05:02,580 --> 00:05:05,260\\nin a nuclear test ban environment.\\n\\n69\\n00:05:05,260 --> 00:05:09,280\\n>> When Dr. Charles Herzfeld\\nbecame director in 1965,\\n\\n70\\n00:05:09,280 --> 00:05:12,060\\ncomputer networking had been gaining momentum.\\n\\n71\\n00:05:12,060 --> 00:05:16,960\\n>> I had the pleasure of signing the\\nfirst few ARPA orders for the ARPANET.\\n\\n72\\n00:05:16,960 --> 00:05:21,970\\nAnd we sort of knew what we were doing; it\\nwas a gamble, but it was an important one.\\n\\n73\\n00:05:21,970 --> 00:05:24,910\\n>> The challenge was linking\\nseveral computers together,\\n\\n74\\n00:05:24,910 --> 00:05:28,720\\nforming a network using the\\nfirst router, the IMP.\\n\\n75\\n00:05:28,720 --> 00:05:34,480\\n>> From the ARPANET came the Internet, from\\nthe Internet came the Web -- changed the world.\\n\\n76\\n00:05:34,480 --> 00:05:41,040\\nWhen we worked on the ARPANET, we did so\\nin part because we knew it would help --\\n\\n77\\n00:05:41,040 --> 00:05:45,210\\nin the long run -- the military\\ncommand-control systems.\\n\\n78\\n00:05:45,210 --> 00:05:50,900\\nBut we also did it because -- in part --\\nit helped scientists do science better.\\n\\n79\\n00:05:50,900 --> 00:05:52,070\\nAnd so it came to be.\\n\\n80\\n00:05:52,070 --> 00:05:58,060\\n>> In 1965, Dr. John Foster became\\nthe director of defense research\\n\\n81\\n00:05:58,060 --> 00:06:01,500\\nand engineering -- the direct\\nsupervisor of ARPA.\\n\\n82\\n00:06:01,500 --> 00:06:09,470\\n>> I asked the secretary, if I were to\\nbe the replacement for Harold Brown,\\n\\n83\\n00:06:09,470 --> 00:06:14,430\\nwhat would he like me to do about\\nthe war that was going on in Vietnam?\\n\\n84\\n00:06:14,430 --> 00:06:23,010\\nChanging the programs in ARPA\\nwas pretty straightforward.\\n\\n85\\n00:06:23,010 --> 00:06:27,320\\n>> Under Foster's direction, Dr.\\nEberhart Rechtin refocused ARPA\\n\\n86\\n00:06:27,320 --> 00:06:29,780\\nto address the challenges of the war.\\n\\n87\\n00:06:29,780 --> 00:06:33,710\\n>> I said, we're in the middle of a war;\\nwe're supposed to be doing things to help.\\n\\n88\\n00:06:33,710 --> 00:06:38,270\\n>> Rechtin's assistant, Dr. Steve\\nLukasik, became director in 1971.\\n\\n89\\n00:06:38,270 --> 00:06:40,500\\nARPA began working with the field commanders\\n\\n90\\n00:06:40,500 --> 00:06:43,910\\nto better understand the\\noperational challenges they faced.\\n\\n91\\n00:06:43,910 --> 00:06:54,530\\n>> The organization has got to have a set\\nof understandings with the larger world.\\n\\n92\\n00:06:54,530 --> 00:06:59,990\\nYou talk to these people not because\\nyou're broadcasting solutions\\n\\n93\\n00:06:59,990 --> 00:07:04,960\\nto them; they're feeding problems to you.\\n\\n94\\n00:07:04,960 --> 00:07:09,990\\n>> In a little over 10 years, ARPA\\nopened the door to space exploration,\\n\\n95\\n00:07:09,990 --> 00:07:16,100\\nestablished reliable nuclear detection, laid\\nthe groundwork for a missile defense system,\\n\\n96\\n00:07:16,100 --> 00:07:23,070\\nadvanced scientific disciplines, aided our\\ntroops in Vietnam, and invented the ARPANET.\\n\\n97\\n00:07:23,070 --> 00:07:26,200\\nARPA moved from preventing\\ntechnological surprise\\n\\n98\\n00:07:26,200 --> 00:07:29,700\\nto creating surprise for our adversaries.\\n\\n99\\n00:07:29,700 --> 00:07:33,640\\nIn part two, we'll see how DARPA\\nadjusts to the intensification\\n\\n100\\n00:07:33,640 --> 00:07:36,510\\nof the Cold War and the consequences.\\n\\n101\\n00:07:36,510 --> 00:07:45,240\\n[ MUSIC ]\",\n", + " 'bytes': 9465,\n", + " 'sha1': 'cu5hezk5kw255kfssarhae0zik3mbjc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 62152647,\n", + " 'timestamp': '2011-11-06T23:18:41Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17262370,\n", + " 'title': '02 - The Cold War Era 1975 - 1989 (DARPA history).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'add srt',\n", + " 'text': '1\\n00:00:01,510 --> 00:00:13,910\\n[ Music ]\\n\\n2\\n00:00:13,910 --> 00:00:18,280\\n>> DARPA-- shaping the feature,\\ncreating opportunities\\n\\n3\\n00:00:18,280 --> 00:00:22,370\\nfor new capabilities strategically, tactically.\\n\\n4\\n00:00:22,370 --> 00:00:30,490\\nThe mid-70\\'s, the arms race was\\nintensifying, technology was changing warfare.\\n\\n5\\n00:00:30,490 --> 00:00:33,380\\nAdvances in Soviet radar, anti-aircraft\\n\\n6\\n00:00:33,380 --> 00:00:37,990\\nand missile technologies were\\nchallenging American airpower.\\n\\n7\\n00:00:37,990 --> 00:00:40,500\\nThe director, Dr. George\\nHeilmeier [assumed spelling].\\n\\n8\\n00:00:40,500 --> 00:00:46,240\\n>> Vietnam was still with us, although\\ntapering down to a certain extent\\n\\n9\\n00:00:46,240 --> 00:00:57,360\\nand people were concerned about air warfare,\\nparticularly the surface to air missile threat\\n\\n10\\n00:00:57,360 --> 00:01:02,830\\nand at that time the Soviet Union had\\na very, very large submarine in force\\n\\n11\\n00:01:02,830 --> 00:01:11,000\\nand so any submarine warfare was another\\ncritical need of the Pentagon at the time.\\n\\n12\\n00:01:11,000 --> 00:01:15,080\\n>> Responding to those threats, Dr.\\nHeilmeier took DARPA in a new direction,\\n\\n13\\n00:01:15,080 --> 00:01:21,510\\nbuilding experimental prototypes to test\\nand prove the viability of new technologies.\\n\\n14\\n00:01:21,510 --> 00:01:28,710\\nIn 1975, he presented six major thrust\\nareas to Defense Secretary James Slussinger;\\n\\n15\\n00:01:28,710 --> 00:01:32,140\\none stood out-- the invisible airplane.\\n\\n16\\n00:01:32,140 --> 00:01:33,950\\nIt was a radical idea.\\n\\n17\\n00:01:33,950 --> 00:01:38,820\\nExperiment with aircraft performance\\nfor a very low radar profile.\\n\\n18\\n00:01:38,820 --> 00:01:44,560\\n>> You know that early morning lift\\noff of the Hablu [assumed spelling],\\n\\n19\\n00:01:44,560 --> 00:01:50,750\\nthe first self-aircraft which was\\ndemonstrating the principles, that was a very,\\n\\n20\\n00:01:50,750 --> 00:01:56,720\\nvery exciting morning because I thought\\nto myself you know this small group\\n\\n21\\n00:01:56,720 --> 00:02:02,060\\nof guys had made aviation history this morning.\\n\\n22\\n00:02:02,060 --> 00:02:09,430\\n>> In just two years, DARPA had produced an\\nentirely new airplane invisible to radar.\\n\\n23\\n00:02:09,430 --> 00:02:16,700\\nStealth technology was experimented on\\nthe ground and on ships, like sea shadow.\\n\\n24\\n00:02:16,700 --> 00:02:20,040\\nAdvances were also being made with the Arpanet.\\n\\n25\\n00:02:20,040 --> 00:02:26,950\\nIn 1976, the first wireless Arpanet transmission\\naround the world was made from this van.\\n\\n26\\n00:02:26,950 --> 00:02:29,770\\nArpanet was going mobile.\\n\\n27\\n00:02:30,790 --> 00:02:34,840\\nDr. Bob Fossom [assumed spelling]\\nbecame director in 1977.\\n\\n28\\n00:02:34,840 --> 00:02:38,360\\nThe Soviet Union was still our main adversary.\\n\\n29\\n00:02:38,360 --> 00:02:47,070\\n>> We perceived of it as a substantial\\nmilitary threat in conventional forces,\\n\\n30\\n00:02:47,070 --> 00:02:55,060\\nbut the growth of the strategic and theater\\nnuclear forces was of substantial concern.\\n\\n31\\n00:02:55,060 --> 00:02:59,920\\n>> Each side was in a technology race,\\neach trying to outsmart the other.\\n\\n32\\n00:02:59,920 --> 00:03:04,390\\nThe technological advances of the past\\n20 years were building on themselves.\\n\\n33\\n00:03:04,390 --> 00:03:08,500\\nSoviet submarines and missiles\\nwere becoming more sophisticated;\\n\\n34\\n00:03:08,500 --> 00:03:12,490\\nnew technologies were developing\\nat a faster and faster pace.\\n\\n35\\n00:03:12,490 --> 00:03:16,220\\nDr. Fossom had to make room for new ideas.\\n\\n36\\n00:03:16,220 --> 00:03:19,440\\n>> I divided the square into four quadrants.\\n\\n37\\n00:03:19,440 --> 00:03:26,230\\nAnd in the first quadrant I had existing\\nmissions and existing technology.\\n\\n38\\n00:03:26,230 --> 00:03:28,790\\nI tended to reject that.\\n\\n39\\n00:03:28,790 --> 00:03:32,540\\nThe second category was a very interesting one.\\n\\n40\\n00:03:32,540 --> 00:03:38,110\\nCan we find new missions\\nfor existing technology?\\n\\n41\\n00:03:38,110 --> 00:03:45,690\\nThe third category is existing missions\\nwith brand new revolutionary technology.\\n\\n42\\n00:03:45,690 --> 00:03:50,990\\nBut it\\'s that four area, brand new\\nmissions, things we\\'ve never done before\\n\\n43\\n00:03:50,990 --> 00:03:55,430\\nand new technology to do those missions.\\n\\n44\\n00:03:55,430 --> 00:03:58,000\\nI used to like to walk around and talk\\n\\n45\\n00:03:58,000 --> 00:04:03,310\\nwith people while there were some contractors\\nsitting there, wild-eyed contractors.\\n\\n46\\n00:04:03,310 --> 00:04:09,080\\nAnd so they saw me and their eyes lit up\\nand they said, \"Dr. Fossom how would you\\n\\n47\\n00:04:09,080 --> 00:04:16,510\\nlike an airplane that flew\\nfor 24 hours at 50,000 feet?\"\\n\\n48\\n00:04:16,510 --> 00:04:26,100\\nAnd I said, \"Make it a week and 70,000 feet\\nand I\\'ll buy one; and that was the beginning\\n\\n49\\n00:04:26,100 --> 00:04:34,510\\nof a program called Hale-- high altitude long\\nendurance out of which Global Hawk emerged.\\n\\n50\\n00:04:34,510 --> 00:04:44,310\\n[ Music ]\\n\\n51\\n00:04:44,310 --> 00:04:51,050\\n>> A change in administrations brought changes\\nin defense policy and changes to DARPA.\\n\\n52\\n00:04:51,050 --> 00:04:56,380\\nOne of Ronald Reagan\\'s major initiatives\\nmanaged to eliminate the Soviet threat.\\n\\n53\\n00:04:56,380 --> 00:05:03,320\\nThe United States began a vicious defense\\nbuild-up; new DARPA director, Dr. Bob Cooper.\\n\\n54\\n00:05:03,320 --> 00:05:07,920\\n>> There was an intention from\\nthe beginning to spend enough\\n\\n55\\n00:05:07,920 --> 00:05:11,530\\non building the equipment that our forces had.\\n\\n56\\n00:05:11,530 --> 00:05:17,350\\nThat it would require the Soviet Union to\\nspend with us if they wanted to stay with us;\\n\\n57\\n00:05:17,350 --> 00:05:24,950\\nand it was the intention from the beginning\\nto try to bankrupt the Soviet Union.\\n\\n58\\n00:05:24,950 --> 00:05:28,890\\n>> What if free people could\\nlive secure the knowledge\\n\\n59\\n00:05:28,890 --> 00:05:35,000\\nthat their security did not rest upon the threat\\nof U.S. retaliation to deter a Soviet attack;\\n\\n60\\n00:05:35,000 --> 00:05:39,730\\nthat we could intercept and destroy strategic\\nballistic missiles before they reached our own\\n\\n61\\n00:05:39,730 --> 00:05:41,920\\nsoil or that of our allies.\\n\\n62\\n00:05:45,250 --> 00:05:48,220\\n>> And we went after ballistic missile defense;\\n\\n63\\n00:05:48,220 --> 00:05:56,090\\nwe went after new ballistic missiles\\noffense systems; we did a variety of things\\n\\n64\\n00:05:56,090 --> 00:06:02,970\\nwith conventional weaponry making conventional\\nweapons much more legal by accompanying them\\n\\n65\\n00:06:02,970 --> 00:06:08,910\\nwith intelligence, surveillance, recognizance,\\nand precision-guided emissions and things\\n\\n66\\n00:06:08,910 --> 00:06:16,050\\nof that sort which frightened the\\nSoviet military hierarchy tremendously.\\n\\n67\\n00:06:16,050 --> 00:06:19,440\\n>> DARPA\\'s science and technology\\nestablished the foundation\\n\\n68\\n00:06:19,440 --> 00:06:21,590\\nfor the strategic defense initiative.\\n\\n69\\n00:06:21,590 --> 00:06:24,970\\nSTI, Star Wars and the beginning\\n\\n70\\n00:06:24,970 --> 00:06:31,090\\nof a new capability combining\\ninformation with precision weapons.\\n\\n71\\n00:06:31,090 --> 00:06:38,220\\n>> And so we drove the Soviet Union into\\nbankruptcy basically, making them continue\\n\\n72\\n00:06:38,220 --> 00:06:42,370\\nto spend more and more of their\\ngross national product on defense;\\n\\n73\\n00:06:42,370 --> 00:06:45,740\\nand I think that finally they just\\nrealized what they were doing and they...',\n", + " 'bytes': 7229,\n", + " 'sha1': 'l8shv4om23nhee8o6elqxf5zx0a5yz9',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 62152830,\n", + " 'timestamp': '2011-11-06T23:25:22Z',\n", + " 'user': {'id': 562507, 'text': 'Smallman12q'},\n", + " 'page': {'id': 17262403,\n", + " 'title': '03 - The Post-Soviet Years 1989 - Present 2008 (DARPA history).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'add srt',\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:03,010\\n[ Silence ]\\n\\n2\\n00:00:03,010 --> 00:00:15,670\\n[ Music ]\\n\\n3\\n00:00:15,670 --> 00:00:20,010\\n>> DARPA, shaping the future,\\ncreating opportunities\\n\\n4\\n00:00:20,010 --> 00:00:25,250\\nfor new capabilities - strategically,\\ntactically.\\n\\n5\\n00:00:25,250 --> 00:00:29,810\\n1989, George Herbert Walker Bush was President.\\n\\n6\\n00:00:29,810 --> 00:00:35,390\\nAfter 28 years, the Berlin\\nWall is open to the west.\\n\\n7\\n00:00:35,390 --> 00:00:39,620\\nThe fall of Soviet Communism\\nunleashes a new security environment,\\n\\n8\\n00:00:39,620 --> 00:00:42,580\\none of international instability.\\n\\n9\\n00:00:43,600 --> 00:00:46,850\\nDARPA director, Dr. Craig Fields.\\n\\n10\\n00:00:46,850 --> 00:00:51,830\\n>> The Soviet Union fell in that exact period,\\nwasn't so clear they weren't going to reform,\\n\\n11\\n00:00:51,830 --> 00:00:55,850\\nit was a lot of anxiety about\\nthe fact that they might reform.\\n\\n12\\n00:00:55,850 --> 00:01:03,890\\nAnd nuclear proliferation, biological warfare,\\nchemical warfare, radiological attacks, EMP.\\n\\n13\\n00:01:03,890 --> 00:01:11,030\\nThere are any number of things that are of the\\ntraditional sort, and then you deal with cases\\n\\n14\\n00:01:11,030 --> 00:01:16,640\\nof things that are not quite war like\\ninsurgency and occupation in Iraq today.\\n\\n15\\n00:01:16,640 --> 00:01:20,150\\n>> In 1990 Iraq invaded Kuwait.\\n\\n16\\n00:01:20,150 --> 00:01:23,620\\nOur capabilities unleashed in\\nDesert Storm were the culmination\\n\\n17\\n00:01:23,620 --> 00:01:26,220\\nof DARPA's technological prowess.\\n\\n18\\n00:01:26,220 --> 00:01:34,030\\nStealth aircraft delivering precision ordinance,\\ndestroyed the Iraqi army in just 42 days.\\n\\n19\\n00:01:34,030 --> 00:01:38,040\\nDr. Victor Reis became director in 1990.\\n\\n20\\n00:01:38,040 --> 00:01:40,100\\n>> It was a time of considerable turmoil.\\n\\n21\\n00:01:40,100 --> 00:01:47,320\\nI realized after a short period of time\\nthat this was the most important...\\n\\n22\\n00:01:47,320 --> 00:01:53,330\\nthing that DARPA could be doing, was\\nin the information technology area.\\n\\n23\\n00:01:53,330 --> 00:01:57,400\\n>> DARPA saw the opportunity to\\nincorporate real battles from Desert Storm\\n\\n24\\n00:01:57,400 --> 00:02:00,490\\nto enhance computer simulated training.\\n\\n25\\n00:02:00,490 --> 00:02:02,070\\n>> One of the things that the applications\\n\\n26\\n00:02:02,070 --> 00:02:06,970\\nof this packet switching was a program\\ncalled SIMNET, simulation networking.\\n\\n27\\n00:02:06,970 --> 00:02:11,180\\nYou could simulate about size of a battle,\\nwhere people could sit in what looked\\n\\n28\\n00:02:11,180 --> 00:02:14,010\\nlike little tanks, but they\\nwere really work stations.\\n\\n29\\n00:02:14,010 --> 00:02:18,900\\nAnd so they could sit and look out\\nand see a terrain and see people,\\n\\n30\\n00:02:18,900 --> 00:02:21,710\\nor other tanks or other things coming at them.\\n\\n31\\n00:02:21,710 --> 00:02:28,180\\nSo you could sit in a room, not unlike this one,\\nand play a whole battle out and learn that way.\\n\\n32\\n00:02:28,180 --> 00:02:33,400\\n>> Secretary of Defense Dick Chaney saw\\nthe simulation and wanted more like it.\\n\\n33\\n00:02:33,400 --> 00:02:38,610\\nSimulation technology transitioned to the\\nservices, becoming key to troop training.\\n\\n34\\n00:02:38,610 --> 00:02:42,050\\nDr. Gary Minden became director in 1991.\\n\\n35\\n00:02:42,050 --> 00:02:47,760\\n>> The first Gulf war was\\nunderway just over when I arrived\\n\\n36\\n00:02:47,760 --> 00:02:50,690\\nin the early days of my tenure, and that...\\n\\n37\\n00:02:50,690 --> 00:02:56,230\\nless from the lessons learned part of\\nyou that sets the tone for the agency.\\n\\n38\\n00:02:56,230 --> 00:02:59,390\\n>> The monolithic adversary was gone.\\n\\n39\\n00:02:59,390 --> 00:03:02,090\\nBut now...\\n\\n40\\n00:03:02,090 --> 00:03:09,040\\nseveral smaller complex conflicts arose\\nfrom the broken pieces of the Soviet empire.\\n\\n41\\n00:03:09,040 --> 00:03:13,460\\n>> I think a military person would tell you\\nall I need is perfect information on the enemy,\\n\\n42\\n00:03:13,460 --> 00:03:15,920\\nand I can take care of the problem.\\n\\n43\\n00:03:15,920 --> 00:03:20,350\\nWell obviously you never have perfect, but\\ncan DARPA help you make it better than it is?\\n\\n44\\n00:03:20,350 --> 00:03:26,840\\nAnd we focused a great deal on sensors\\nand techniques to get better intelligence\\n\\n45\\n00:03:26,840 --> 00:03:32,490\\nand reconnaissance of the\\nbattlefield or potential adversaries.\\n\\n46\\n00:03:35,280 --> 00:03:38,240\\n>> Yugoslavia was spiraling into war.\\n\\n47\\n00:03:38,240 --> 00:03:39,880\\nDARPA was asked to find a solution\\n\\n48\\n00:03:39,880 --> 00:03:43,940\\nto the operational challenges\\nof fast moving urban warfare.\\n\\n49\\n00:03:43,940 --> 00:03:46,250\\nDirector Larry Lynn.\\n\\n50\\n00:03:46,250 --> 00:03:50,460\\n>> Probably the thing that, the\\nexternal thing that drove most\\n\\n51\\n00:03:50,460 --> 00:03:56,300\\nof our thinking was the Bosnia\\nsituation at the time.\\n\\n52\\n00:03:56,300 --> 00:03:59,360\\nThere was a real need to\\nimprove the communications\\n\\n53\\n00:03:59,360 --> 00:04:03,590\\nand the information exploitation for Bosnia.\\n\\n54\\n00:04:03,590 --> 00:04:08,640\\n>> DARPA responded with a Bosnia command\\nand control augmentation initiative,\\n\\n55\\n00:04:08,640 --> 00:04:13,490\\nconnecting deployed forces\\nwith assets in the states.\\n\\n56\\n00:04:13,490 --> 00:04:17,770\\nAnother remnant of the Cold War\\nwas raising security concerns.\\n\\n57\\n00:04:17,770 --> 00:04:22,330\\nThe Soviets had maintained a\\nrobust biological warfare program.\\n\\n58\\n00:04:22,330 --> 00:04:24,910\\nNow with a diminished military budget,\\n\\n59\\n00:04:24,910 --> 00:04:29,610\\nthere was chance these germ warfare secrets\\ncould extend beyond Russia's borders,\\n\\n60\\n00:04:29,610 --> 00:04:32,620\\nand proliferate in the wrong hands.\\n\\n61\\n00:04:32,620 --> 00:04:36,430\\nLynn and a DARPA team traveled to\\nMoscow to learn what they could to start\\n\\n62\\n00:04:36,430 --> 00:04:40,620\\nup a biological warfare defense\\nprogram at DARPA.\\n\\n63\\n00:04:40,620 --> 00:04:47,850\\n>> It became apparent that biological warfare\\nwas rising to the level of a lot of concern,\\n\\n64\\n00:04:47,850 --> 00:04:52,540\\nand that DOD had very little\\ncapability in biology.\\n\\n65\\n00:04:52,540 --> 00:04:57,570\\nAnd so we started a hefty biological program.\\n\\n66\\n00:04:57,570 --> 00:05:02,060\\n>> Dr. Frank Fernandez was\\nappointed director in 1998.\\n\\n67\\n00:05:02,060 --> 00:05:06,490\\n>> We focused on bio-defense,\\ndefense gets biological attack,\\n\\n68\\n00:05:06,490 --> 00:05:10,800\\nand the second one was the\\ndefense against cyber attack.\\n\\n69\\n00:05:12,630 --> 00:05:15,930\\n>> In the military area back\\nthen, a precision strike\\n\\n70\\n00:05:15,930 --> 00:05:20,010\\nagainst moving targets was a very hard problem.\\n\\n71\\n00:05:20,010 --> 00:05:26,400\\nPredator in Kosovo as a situation where we got\\na call from some operational people saying,\\n\\n72\\n00:05:26,400 --> 00:05:32,230\\nwe found out that Predator is accurately\\ntracking the movement of some of these people\\n\\n73\\n00:05:32,230 --> 00:05:34,580\\nthat we want to shoot at in real time.\\n\\n74\\n00:05:34,580 --> 00:05:39,350\\nThe problem was that the camera on Predator\\nwas, had to look out at very low angle,\\n\\n75\\n00:05:39,350 --> 00:05:43,570\\nlow grazing angles, so that there\\nwas a lot of distortion in the scene\\n\\n76\\n00:05:43,570 --> 00:05:47,160\\nand you couldn't register what\\nyou saw with an accuracy enough\\n\\n77\\n00:05:47,160 --> 00:05:50,470\\nto essentially use that to target a vehicle.\\n\\n78\\n00:05:50,470 --> 00:05:54,920\\n>> DARPA saw the moving target problem\\n- integrating multiple sensors sources\\n\\n79\\n00:05:54,920 --> 00:05:57,740\\nto direct weapons to a moving target.\\n\\n80\\n00:05:58,860 --> 00:06:01,190\\nDARPA was pushing core sciences too.\\n\\n81\\n00:06:01,190 --> 00:06:08,430\\n>> At that time we were learning how to do\\nintegration of multiple components on a chip,\\n\\n82\\n00:06:08,430 --> 00:06:16,740\\nintegrating optics and electronics on 1 single\\nchip, putting a lot of transistors on a chip;\\n\\n83\\n00:06:16,740 --> 00:06:21,540\\nnumbers getting close to a\\nbillion transistors on a chip.\\n\\n84\\n00:06:21,540 --> 00:06:26,490\\n>> In 2001 George W. Bush became President.\\n\\n85\\n00:06:26,490 --> 00:06:29,820\\n9/11 came just 8 months later.\\n\\n86\\n00:06:32,480 --> 00:06:37,940\\nWith the operations in Afghanistan and Iraq,\\nDARPA responded to the national security threats\\n\\n87\\n00:06:37,940 --> 00:06:42,470\\nas it had throughout it's 50 year\\nhistory by combining technologies\\n\\n88\\n00:06:42,470 --> 00:06:49,310\\nin new ways, and imaginative field solutions.\\n\\n89\\n00:06:50,980 --> 00:06:55,660\\nThe war in Iraq provided insights as\\nto what future operations might entail,\\n\\n90\\n00:06:55,660 --> 00:07:02,630\\nthe urban nature of the war, the harsh\\nconditions, the scattered asymmetrical enemy.\\n\\n91\\n00:07:02,630 --> 00:07:06,120\\nDARPA believed part of the answer\\nwas unmanned ground vehicles\\n\\n92\\n00:07:06,120 --> 00:07:08,490\\nthat could save lives on the battlefield.\\n\\n93\\n00:07:08,490 --> 00:07:14,060\\nCould anyone build an unmanned vehicle that\\ncould autonomously travel long distances?\\n\\n94\\n00:07:14,060 --> 00:07:19,420\\nTo accelerate research and development\\nof robot cars, DARPA held a contest.\\n\\n95\\n00:07:19,420 --> 00:07:23,060\\nThey called it the Grand Challenge.\\n\\n96\\n00:07:23,060 --> 00:07:28,660\\n2004 - the first DARPA Grand Challenge.\\n\\n97\\n00:07:28,660 --> 00:07:34,150\\nThe robots vehicles had to navigate a 150\\nmile course through the Mojave Desert.\\n\\n98\\n00:07:34,150 --> 00:07:36,470\\nNone of the contestants made\\nit more than 7 miles.\\n\\n99\\n00:07:36,470 --> 00:07:43,930\\n2005 - the second Grand Challenge.\\n\\n100\\n00:07:43,930 --> 00:07:46,020\\n132 miles through the desert.\\n\\n101\\n00:07:46,020 --> 00:07:50,830\\n5 teams made it across the\\nfinish line, an amazing feat.\\n\\n102\\n00:07:50,830 --> 00:07:53,510\\n>> The check goes to Stanley.\\n\\n103\\n00:07:53,510 --> 00:07:59,100\\n[ Applause ]\\n\\n104\\n00:07:59,100 --> 00:08:04,700\\n>>DARPA plays a major role in sponsoring\\nthe development of our defense technology.\\n\\n105\\n00:08:04,700 --> 00:08:09,500\\nThe agency has transitioned stealth\\nbombers, armed with precision weapons,\\n\\n106\\n00:08:09,500 --> 00:08:14,670\\ndeveloped network battlefield\\nsimulations for training, improved sensors\\n\\n107\\n00:08:14,670 --> 00:08:20,280\\nand reconnaissance capabilities,\\ndeployed Predator and Global Hawk,\\n\\n108\\n00:08:20,280 --> 00:08:25,900\\ndeveloped new biological and chemical defense\\nstrategies, advanced computer technology,\\n\\n109\\n00:08:25,900 --> 00:08:28,970\\nand stimulated robot vehicle developments.\\n\\n110\\n00:08:28,970 --> 00:08:34,250\\nImpressive, but barely scratching\\nthe surface of things to come.\\n\\n111\\n00:08:36,150 --> 00:08:39,880\\nSpace, 1 of DARPA's original frontiers.\\n\\n112\\n00:08:39,880 --> 00:08:44,050\\nIn the future we will be defending\\nmore and more on satellites,\\n\\n113\\n00:08:44,050 --> 00:08:47,780\\nfor both commercial and military communications.\\n\\n114\\n00:08:47,780 --> 00:08:53,530\\nDARPA is working to protect these assets\\nand provide new capabilities in space.\\n\\n115\\n00:08:53,530 --> 00:08:59,750\\nIn an increasingly complex world, with 1 eye\\non the immediate needs of national securiy,\\n\\n116\\n00:08:59,750 --> 00:09:04,110\\nand the other anticipating future\\nevents, DARPA will continue\\n\\n117\\n00:09:04,110 --> 00:09:12,510\\nto create even more technological advances and\\ntechnological surprise for the next 50 years.\\n\\n118\\n00:09:12,510 --> 00:09:22,400\\n[ Music ]\",\n", + " 'bytes': 11036,\n", + " 'sha1': '8aawo9nmz1uqu9r3qzzvbhb6fama4wj',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 62951799,\n", + " 'timestamp': '2011-11-24T15:07:08Z',\n", + " 'user': {'id': 12284, 'text': 'Guillom'},\n", + " 'page': {'id': 17464936,\n", + " 'title': 'Great Feeling.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'et hop',\n", + " 'text': \"1\\n00:00:00,905 --> 00:00:03,204\\nEuh, non, je n'ai pas de superpouvoirs.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nNon, non, vraiment pas.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nTu peux tout à fait le faire aussi.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nJ'ai cliqué le bouton,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\net publié le texte,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWooooo!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nC'était... excitant.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nTu viens de changer Wikipedia,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\ntu viens d'apporter ta contribution à Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nJ'ai lu un article dans le « Guardian »\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nà propos de cette encyclopédie sur internet\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nà laquelle tout le monde pouvait participer\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\net je me suis dit « wahou ! »\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n« Peut-être que je peux participer aussi ! »\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nJ'ai modifié un article une première fois\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\net je crois que je suis devenu accro.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nOn ne me paye pas pour faire ça\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nJe le fais juste...\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\npendant mon temps libre, c'est tout\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nPeut-être que tu commences à participer\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nparce que tu crois en une idée\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\nmais au final tu y découvres des amis,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\ndes relations,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\ndes discussions formidables,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\ntu découvres de nouvelles idées,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\ntu penses à des livres que tu vas écrire...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nTu n'es pas tout seul pour écrire un article.\\n\\n28\\n00:00:54,404 --> 00:00:56,772\\nTu écris un bout, et quelqu'un d'autre arrive et se dit :\\n\\n29\\n00:00:56,772 --> 00:00:58,955\\n« Hé, je peux ajouter des choses ! » et ensemble,\\n\\n30\\n00:00:58,955 --> 00:01:01,068\\nvous pouvez créer des articles de plusieurs pages\\n\\n31\\n00:01:01,068 --> 00:01:02,322\\nque tu n'aurais pas pu écrire tout seul.\\n\\n32\\n00:01:02,322 --> 00:01:03,808\\nEt ça donne un sentiment de satisfaction.\\n\\n33\\n00:01:03,808 --> 00:01:06,618\\nTu te dis « j'ai réussi à le faire »\\n\\n34\\n00:01:06,618 --> 00:01:08,220\\net c'est une expérience formibable.\\n\\n35\\n00:01:08,220 --> 00:01:08,893\\nC'est vraiment,\\n\\n36\\n00:01:08,893 --> 00:01:11,447\\nc'est vraiment un sentiment formidable.\\n\\n37\\n00:01:11,447 --> 00:01:12,655\\nÀ chaque fois que tu améliores une page.\\n\\n38\\n00:01:12,655 --> 00:01:14,954\\nJe dois avouer que quand j'ai découvert Wikipedia,\\n\\n39\\n00:01:14,954 --> 00:01:17,926\\nje me suis dit « Peut-être que j'y ai ma place »\\n\\n40\\n00:01:17,926 --> 00:01:19,365\\net c'était le cas.\",\n", + " 'bytes': 2825,\n", + " 'sha1': 'qdmjkh7u5dxaajbomym1w5oiv9d7f33',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 63746613,\n", + " 'timestamp': '2011-12-12T01:49:05Z',\n", + " 'user': {'id': 127209, 'text': 'Shooke'},\n", + " 'page': {'id': 17649849,\n", + " 'title': 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:08,860 --> 00:00:11,674\\nWikisource es una biblioteca digital en línea \\n\\n2\\n00:00:11,698 --> 00:00:14,610\\nque recopila textos publicados en cualquier idioma \\n\\n3\\n00:00:14,631 --> 00:00:18,947\\nsiempre y cuando estén bajo el dominio público o liberado con una licencia libre. \\n\\n4\\n00:00:19,057 --> 00:00:21,556\\nComo en cada proyecto de la Fundación Wikimedia, \\n\\n5\\n00:00:21,607 --> 00:00:24,997\\nWikisource está abierto a todos y cualquiera puede colaborar, \\n\\n6\\n00:00:25,039 --> 00:00:27,126\\ntambién en forma anónima.\\n\\n7\\n00:00:27,918 --> 00:00:31,750\\nEn Wikisource los textos se transcriben a partir de una fuente publicada \\n\\n8\\n00:00:31,764 --> 00:00:34,695\\ny formateada para que pueda ser leída cómodamente.\\n\\n9\\n00:00:34,815 --> 00:00:38,255\\nRomances y relatos, ensayos y manuales, \\n\\n10\\n00:00:38,299 --> 00:00:43,289\\nlibros de plegarias y manifiestos políticos, cantos populares y poesías, \\n\\n11\\n00:00:43,336 --> 00:00:47,899\\nfábulas y canciones infantiles, documentos legales y obras científicas, \\n\\n12\\n00:00:47,959 --> 00:00:50,565\\ntextos y disertaciones siempre y cuando \\n\\n13\\n00:00:50,596 --> 00:00:53,132\\nprovengan de una institución académica reconocida.\\n\\n14\\n00:00:53,286 --> 00:00:57,167\\nComo Wikipedia, el proyecto está subdividido en base a varios idiomas: \\n\\n15\\n00:00:57,252 --> 00:01:00,502\\nen Wikisource en inglés se incluyen los textos en inglés, \\n\\n16\\n00:01:00,563 --> 00:01:04,436\\naquellos en francés en la versión en francés, y así con los demás.\\n\\n17\\n00:01:04,564 --> 00:01:06,930\\nSe recopilan textos en todos los idiomas, \\n\\n18\\n00:01:06,995 --> 00:01:09,373\\ntambién en los menos difundidos y en los dialectos, \\n\\n19\\n00:01:09,425 --> 00:01:12,455\\nsiempre y cuando sean editados y puedan ser transcriptos libremente.\\n\\n20\\n00:01:12,546 --> 00:01:15,058\\nEstas condiciones valen también para las traducciones, \\n\\n21\\n00:01:15,094 --> 00:01:18,599\\nque son obras derivadas: por lo tanto no pueden ser incluidos \\n\\n22\\n00:01:18,649 --> 00:01:22,314\\nlos textos traducidos no publicados y tanto el texto como la traducción \\n\\n23\\n00:01:22,340 --> 00:01:26,855\\ndeben ser de dominio público o liberado con una licencia libre.\\n\\n24\\n00:01:27,653 --> 00:01:30,714\\nCada texto en Wikisource debe poder ser copiado\\n\\n25\\n00:01:30,792 --> 00:01:33,903\\ny utilizado como base para crear cualquier obra derivada, \\n\\n26\\n00:01:33,947 --> 00:01:35,947\\ntambién para utilización comercial.\\n\\n27\\n00:01:36,049 --> 00:01:38,521\\nPor lo tanto debe distribuirse con una licencia \\n\\n28\\n00:01:38,571 --> 00:01:41,952\\nque conceda estas libertades o cuyo autor renuncia a todos\\n\\n29\\n00:01:42,020 --> 00:01:45,091\\nlos derechos de autor sobre la obra, ya sea en los Estados Unidos, \\n\\n30\\n00:01:45,121 --> 00:01:47,295\\ndonde se encuentra el servidor de Wikisource, \\n\\n31\\n00:01:47,344 --> 00:01:50,206\\ncomo en el país de publicación del texto.\\n\\n32\\n00:01:51,271 --> 00:01:54,115\\nActualmente, en base a la ley estadounidense, \\n\\n33\\n00:01:54,196 --> 00:01:56,372\\nseguramente son de dominio público\\n\\n34\\n00:01:56,443 --> 00:01:59,539\\nsolo las obras publicadas antes de 1923. \\n\\n35\\n00:01:59,745 --> 00:02:03,243\\nPero para el estado italiano la obra tiene derechos de autor \\n\\n36\\n00:02:03,271 --> 00:02:06,128\\nhasta los 70 años posteriores a la muerte de su creador.\\n\\n37\\n00:02:06,221 --> 00:02:09,314\\nUn texto puede ser de dominio público en Italia \\n\\n38\\n00:02:09,348 --> 00:02:12,666\\nsin embargo puede no serlo en los Estados Unidos y viceversa.\\n\\n39\\n00:02:12,772 --> 00:02:16,358\\nUn texto contemporáneo puede incluirse en Wikisource \\n\\n40\\n00:02:16,424 --> 00:02:19,124\\nsolo si el autor ha autorizado explícitamente \\n\\n41\\n00:02:19,166 --> 00:02:22,406\\nel uso de la obra a cualquiera, también para fines comerciales.\\n\\n42\\n00:02:22,576 --> 00:02:25,000\\nAdemás el autor puede exigir \\n\\n43\\n00:02:25,048 --> 00:02:27,961\\nla concesión de las mismas libertades sobre las obras derivadas. \\n\\n44\\n00:02:28,023 --> 00:02:31,482\\nEn Wikisource, cualquiera podría revisar el texto \\n\\n45\\n00:02:31,549 --> 00:02:33,549\\ny es por eso que es ahora una práctica \\n\\n46\\n00:02:33,622 --> 00:02:36,425\\nla utilización del análisis completo del libro original.\\n\\n47\\n00:02:36,496 --> 00:02:40,065\\nPor otra parte, en el caso de textos ya trascriptos se necesita confiar \\n\\n48\\n00:02:40,148 --> 00:02:44,873\\nsolo en las fuentes seguras e incluir referencias bibliográficas precisas.\\n\\n49\\n00:02:45,478 --> 00:02:48,645\\nLos Wikisourcianos son escribas de la era digital \\n\\n50\\n00:02:48,662 --> 00:02:50,839\\nque por pasión o altruismo\\n\\n51\\n00:02:50,856 --> 00:02:53,207\\ntrascriben los textos disponibles libremente. \\n\\n52\\n00:02:53,272 --> 00:02:55,910\\nCada texto debe ser copiado fielmente, \\n\\n53\\n00:02:55,942 --> 00:02:58,574\\nteniendo en cuenta la forma de escritura de la época \\n\\n54\\n00:02:58,630 --> 00:03:02,413\\ny de las convenciones de transcripción establecidas por la comunidad.\\n\\n55\\n00:03:03,187 --> 00:03:05,604\\nEl camino de la transcripción comienza \\n\\n56\\n00:03:05,622 --> 00:03:07,622\\ncon la creación de una página \"índice\", \\n\\n57\\n00:03:07,669 --> 00:03:09,900\\nque invoca al libro escaneado desde Commons, \\n\\n58\\n00:03:09,969 --> 00:03:14,026\\nel proyecto hermano de Wikisource que recopila material multimedia libre.\\n\\n59\\n00:03:14,311 --> 00:03:17,069\\nAutomáticamente se generan los enlaces\\n\\n60\\n00:03:17,138 --> 00:03:19,234\\na cada una de las páginas de la obra.\\n\\n61\\n00:03:19,339 --> 00:03:22,100\\nHaciendo click sobre un enlace es posible visualizar \\n\\n62\\n00:03:22,163 --> 00:03:24,260\\nel escaneo del texto al lado \\n\\n63\\n00:03:24,305 --> 00:03:27,124\\nel recuadro en el cual se efectúa la transcripción.\\n\\n64\\n00:03:27,235 --> 00:03:30,104\\nA menudo no es necesario transcribir de cero el texto, \\n\\n65\\n00:03:30,147 --> 00:03:33,186\\nporque la página escaneada viene elaborada con un software\\n\\n66\\n00:03:33,217 --> 00:03:35,725\\nque reconoce los caracteres.\\n\\n67\\n00:03:35,850 --> 00:03:38,507\\nEl aspecto gráfico de las páginas es uniforme \\n\\n68\\n00:03:38,570 --> 00:03:41,442\\ngracias al uso de plantillas que ponen en modo automático \\n\\n69\\n00:03:41,483 --> 00:03:45,252\\nformateados o partes repetitivas de las páginas o de los textos.\\n\\n70\\n00:03:45,514 --> 00:03:48,625\\nUna vez completada la transcripción de todas las páginas, \\n\\n71\\n00:03:48,654 --> 00:03:51,859\\nel texto se ensambla en base a su estructura lógica \\n\\n72\\n00:03:51,934 --> 00:03:54,145\\n(por ejemplo en sus capítulos).\\n\\n73\\n00:03:54,252 --> 00:03:57,051\\nEl texto es así formateado en un modo conforme \\n\\n74\\n00:03:57,082 --> 00:03:59,340\\na la estructuración querida por el autor, \\n\\n75\\n00:03:59,378 --> 00:04:02,782\\npero también adaptado por la lectura en pantalla o impresa.\\n\\n76\\n00:04:03,619 --> 00:04:06,646\\nComo Wikipedia, Wikisource esta gestionada por un software \\n\\n77\\n00:04:06,707 --> 00:04:09,448\\nque permite crear enlaces hipertextuales, \\n\\n78\\n00:04:09,479 --> 00:04:12,829\\nconectando entre sí libros y autores de la biblioteca.\\n\\n79\\n00:04:12,882 --> 00:04:15,725\\nPor ejemplo, una cita (o un extracto de un ensayo) \\n\\n80\\n00:04:15,759 --> 00:04:18,712\\npuede enviar al autor o al texto que cita.\\n\\n81\\n00:04:19,493 --> 00:04:22,952\\nEn el fondo de cada texto se se encuentran los enlaces a las categorías \\n\\n82\\n00:04:23,000 --> 00:04:25,461\\nque ayudan a organizar obras y autores \\n\\n83\\n00:04:25,475 --> 00:04:27,951\\npor tipología, procedencia, etc. \\n\\n84\\n00:04:28,056 --> 00:04:30,511\\nAdemás cada texto puede enlazarse\\n\\n85\\n00:04:30,549 --> 00:04:32,742\\na sus traducciones en otras Wikisource, \\n\\n86\\n00:04:32,798 --> 00:04:34,798\\na su página en Wikipedia \\n\\n87\\n00:04:34,819 --> 00:04:37,186\\no a cualquier otro proyecto de Wikimedia.\\n\\n88\\n00:04:37,469 --> 00:04:40,687\\nCada autor cuyas obras son publicadas en Wikisource \\n\\n89\\n00:04:40,749 --> 00:04:44,586\\ntiene una página dedicada, que contiene su información mínima, \\n\\n90\\n00:04:44,640 --> 00:04:47,616\\nla lista de los textos disponibles para la consulta \\n\\n91\\n00:04:47,640 --> 00:04:49,640\\ny eventualmente otras informaciones, \\n\\n92\\n00:04:49,696 --> 00:04:53,502\\ncomo las obras en las cuales el autor es citado o los autores relacionados.\\n\\n93\\n00:04:53,780 --> 00:04:57,355\\nTambién aquí están presentes los enlaces a las páginas sobre el mismo autor \\n\\n94\\n00:04:57,410 --> 00:05:02,153\\ndisponibles en otros proyectos de Wikimedia y en otras ediciones lingüísticas.\\n\\n95\\n00:05:02,333 --> 00:05:06,430\\nTambién hay una infinidad de portales, que ofrecen guías de lectura \\n\\n96\\n00:05:06,470 --> 00:05:09,616\\nentre los textos de la biblioteca sobre un tema específico.\\n\\n97\\n00:05:11,060 --> 00:05:14,525\\nEn Wikisource, así como en Wikipedia, tiene administradores, \\n\\n98\\n00:05:14,602 --> 00:05:17,541\\nusuarios expertos que tienen la confianza de la comunidad \\n\\n99\\n00:05:17,567 --> 00:05:19,567\\ny a los cuales le son provistos \\n\\n100\\n00:05:19,622 --> 00:05:22,126\\ninstrumentos para gestionar el software en una forma más avanzada.\\n\\n101\\n00:05:22,168 --> 00:05:25,461\\nLa experiencia de estos los convierte de hecho en verdaderos y propios bibliotecarios \\n\\n102\\n00:05:25,500 --> 00:05:27,799\\nque ofician de tutores para los demás usuarios.\\n\\n103\\n00:05:28,693 --> 00:05:31,682\\nEl punto de encuentro de los wikisourcianos es el Bar, \\n\\n104\\n00:05:31,693 --> 00:05:34,385\\ndonde se pueden hace preguntas a los usuarios más expertos \\n\\n105\\n00:05:34,413 --> 00:05:36,694\\ne iniciar nuevas discusiones.\\n\\n106\\n00:05:36,784 --> 00:05:39,678\\nPer gestionar mejor ámbitos específicos existen \\n\\n107\\n00:05:39,748 --> 00:05:42,992\\npáginas dedicadas: los proyectos temáticos. \\n\\n108\\n00:05:43,046 --> 00:05:45,046\\nEn la versión italiana de Wikisource \\n\\n109\\n00:05:45,119 --> 00:05:47,784\\nrepresentan el corazón de la actividad es el lugar de reunión \\n\\n110\\n00:05:47,822 --> 00:05:51,135\\npara aquellos que están interesados en un tema en particular.\\n\\n111\\n00:05:51,434 --> 00:05:54,070\\nPara indicar el estado de avance de los trabajos\\n\\n112\\n00:05:54,102 --> 00:05:56,402\\nsobre un texto específico o sobre una parte \\n\\n113\\n00:05:56,437 --> 00:05:59,859\\nse usa un sistema subdividido en 5 etapas fundamentales. \\n\\n114\\n00:06:00,137 --> 00:06:02,347\\nCuando el texto está completo en cada una de sus partes, \\n\\n115\\n00:06:02,385 --> 00:06:05,805\\nformateado correctamente y leído por dos o más usuarios \\n\\n116\\n00:06:05,874 --> 00:06:08,890\\nusando la fuente original, recibe una \"estrellita\", \\n\\n117\\n00:06:08,944 --> 00:06:12,526\\nque le atribuye el estado de \"Edición Wikisource\".\\n\\n118\\n00:06:12,731 --> 00:06:15,311\\nY para concentrar los esfuerzos de más usuarios, \\n\\n119\\n00:06:15,346 --> 00:06:17,850\\ncada mes se eligen uno o más textos \\n\\n120\\n00:06:17,892 --> 00:06:20,521\\npara releer y corregir conjuntamente.\\n\\n121\\n00:06:21,242 --> 00:06:23,416\\nCon Wikisource puedes además demostrar \\n\\n122\\n00:06:23,455 --> 00:06:25,843\\ntu amor por los libros, salvándolos del olvido\\n\\n123\\n00:06:25,861 --> 00:06:28,776\\ny ponerlos a disponibilidad de cualquiera, en la red. \\n\\n124\\n00:06:29,140 --> 00:06:31,140\\nParticipa de Wikisource \\n\\n125\\n00:06:31,161 --> 00:06:34,216\\ny construye también tú una biblioteca libre.',\n", + " 'bytes': 10931,\n", + " 'sha1': '7jx788k2j76f84wbs8r7aj67rhgfmat',\n", + " 'parent_id': 63746580,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 64325899,\n", + " 'timestamp': '2011-12-24T23:26:23Z',\n", + " 'user': {'id': 1486767, 'text': 'InverseHypercube'},\n", + " 'page': {'id': 17789777,\n", + " 'title': 'Yosemite Nature Notes 9 - Frazil Ice.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'moved [[TimedText:Yosemite Nature Notes 9: Frazil Ice.ogv.en.srt]] to [[TimedText:Yosemite Nature Notes 9 - Frazil Ice.ogv.en.srt]]',\n", + " 'text': '1 00:00:00,50 --> 00:00:20,10 [Music]\\n\\n2 00:00:31,00 --> 00:00:32,43 We're on<br></br>Yosemite Creek\\n\\n3 00:00:32,53 --> 00:00:34,37 below Lower<br></br>Yosemite Falls,\\n\\n4 00:00:34,47 --> 00:00:36,87 it's a cold early<br></br>April morning,\\n\\n5 00:00:36,97 --> 00:00:39,67 and we're watching the<br></br>frazil ice formation.\\n\\n6 00:00:39,77 --> 00:00:43,63 Frazil ice are these small<br></br>crystals of frozen mist\\n\\n7 00:00:43,73 --> 00:00:46,97 that forms in Upper Yosemite<br></br>Falls and Lower Yosemite Falls.\\n\\n8 00:00:47,07 --> 00:00:50,67 The particles of ice wash down<br></br>the stream with the liquid water\\n\\n9 00:00:50,77 --> 00:00:55,00 in a flurry, a slushy,<br></br>slurpee, goopy mass\\n\\n10 00:00:55,10 --> 00:00:58,37 that in many cases<br></br>flows like lava.\\n\\n11 00:01:02,40 --> 00:01:06,67 So if you can imagine in your<br></br>mind a giant slurpee machine\\n\\n12 00:01:06,77 --> 00:01:11,23 that is putting out millions<br></br>of gallons of slurpee\\n\\n13 00:01:11,33 --> 00:01:12,50 into Yosemite Creek,\\n\\n14 00:01:12,60 --> 00:01:13,80 it's amazing;\\n\\n15 00:01:13,90 --> 00:01:15,93 it's not snow,<br></br>it's not ice,\\n\\n16 00:01:16,03 --> 00:01:18,37 it's something<br></br>in the middle\\n\\n17 00:01:18,47 --> 00:01:22,50 and to watch it move underneath<br></br>Yosemite Creek Bridge\\n\\n18 00:01:22,60 --> 00:01:24,13 is pretty incredible.\\n\\n19 00:01:24,23 --> 00:01:26,00 This is one of the<br></br>more unique phenomenon\\n\\n20 00:01:26,10 --> 00:01:27,13 that you'll see<br></br>in Yosemite,\\n\\n21 00:01:27,23 --> 00:01:29,27 if you're lucky enough to be<br></br>here in March and April,\\n\\n22 00:01:29,37 --> 00:01:30,93 which is the prime<br></br>season for this,\\n\\n23 00:01:31,03 --> 00:01:32,13 but it's an<br></br>amazing thing\\n\\n24 00:01:32,23 --> 00:01:34,50 to watch something this<br></br>dynamic in Yosemite Creek.\\n\\n25 00:01:34,60 --> 00:01:36,33 You see something that<br></br>the millions of visitors\\n\\n26 00:01:36,43 --> 00:01:37,50 who come in the summertime\\n\\n27 00:01:37,60 --> 00:01:39,60 never imagine<br></br>something like this.\\n\\n28 00:01:40,60 --> 00:01:43,07 It behaves a little bit<br></br>like cement in some ways,\\n\\n29 00:01:43,17 --> 00:01:46,63 where it stops and it forms<br></br>kind of a stationary piece\\n\\n30 00:01:46,73 --> 00:01:49,67 and then the flowing pieces go<br></br>past that stationary piece.\\n\\n31 00:01:49,77 --> 00:01:51,83 The ice will<br></br>surge into place\\n\\n32 00:01:51,93 --> 00:01:55,20 and with enough<br></br>thickness it stops\\n\\n33 00:01:55,30 --> 00:01:57,33 and the creek will flow<br></br>a different direction.\\n\\n34 00:01:57,43 --> 00:02:00,90 The water will drain out of<br></br>where it has just deposited it,\\n\\n35 00:02:01,00 --> 00:02:02,90 leaving this, what<br></br>looks like snow,\\n\\n36 00:02:03,00 --> 00:02:05,33 but again, it's soft,<br></br>it's unconsolidated,\\n\\n37 00:02:05,43 --> 00:02:07,03 you would plunge<br></br>right into that.\\n\\n38 00:02:07,13 --> 00:02:09,00 Now we see this<br></br>dynamic change\\n\\n39 00:02:09,10 --> 00:02:12,17 as the frazil ice has<br></br>built up its own levy\\n\\n40 00:02:12,27 --> 00:02:16,20 and caused the channel to clog<br></br>up and it's coming toward us,\\n\\n41 00:02:16,30 --> 00:02:19,30 we're going to have to<br></br>be ready to move here,\\n\\n42 00:02:19,40 --> 00:02:23,97 as the Yosemite Creek in all of<br></br>its might is coming toward us.\\n\\n43 00:02:24,07 --> 00:02:26,30 But you'll see this<br></br>lava flow effect,\\n\\n44 00:02:26,40 --> 00:02:27,83 where the ice is<br></br>going to accumulate\\n\\n45 00:02:27,93 --> 00:02:29,57 and build up<br></br>blockages\\n\\n46 00:02:29,67 --> 00:02:31,93 that stop it from coming<br></br>in a certain direction.\\n\\n47 00:03:01,40 --> 00:03:02,90 It's the full force<br></br>of Yosemite Creek,\\n\\n48 00:03:03,00 --> 00:03:06,20 which can be up to say a<br></br>100 cubic feet per second,\\n\\n49 00:03:06,30 --> 00:03:09,47 when that is moving along in a<br></br>place where we don't expect it,\\n\\n50 00:03:09,57 --> 00:03:12,97 where engineering of building<br></br>roads and trails and bridges\\n\\n51 00:03:13,07 --> 00:03:14,10 hasn't anticipated\\n\\n52 00:03:14,20 --> 00:03:16,80 this full flow of<br></br>the Yosemite Creek,\\n\\n53 00:03:16,90 --> 00:03:17,63 has caused problems\\n\\n54 00:03:17,73 --> 00:03:20,67 with damage to buildings<br></br>on the side of the creek\\n\\n55 00:03:20,77 --> 00:03:22,17 and our footbridges,\\n\\n56 00:03:22,27 --> 00:03:23,83 at least one has<br></br>been destroyed,\\n\\n57 00:03:23,93 --> 00:03:26,37 one another was<br></br>displaced by frazil ice,\\n\\n58 00:03:26,47 --> 00:03:28,20 picking it up off<br></br>of its footings\\n\\n59 00:03:28,30 --> 00:03:29,97 and others have<br></br>been inundated\\n\\n60 00:03:30,07 --> 00:03:32,27 by the frazil ice<br></br>deposits at times.\\n\\n61 00:03:36,80 --> 00:03:38,87 So a lot of people that are<br></br>in the park in March and April\\n\\n62 00:03:38,97 --> 00:03:41,20 will be walking along the<br></br>trail near Yosemite Creek\\n\\n63 00:03:41,30 --> 00:03:44,37 and see piles of what<br></br>appears to be snow.\\n\\n64 00:03:44,47 --> 00:03:46,77 If they took a little<br></br>more time to observe,\\n\\n65 00:03:46,87 --> 00:03:50,00 they would notice the snow is<br></br>very selectively deposited,\\n\\n66 00:03:50,10 --> 00:03:51,37 only in the stream<br></br>channels here,\\n\\n67 00:03:51,47 --> 00:03:53,57 there is none up in the<br></br>woods off to the side.\\n\\n68 00:03:53,67 --> 00:03:55,17 It's the first thing<br></br>people think of,\\n\\n69 00:03:55,27 --> 00:03:56,90 of course it looks<br></br>like snow, so...\\n\\n70 00:03:57,00 --> 00:03:58,50 what else could it be?\\n\\n71 00:03:58,60 --> 00:04:01,17 Here's where frazil ice<br></br>becomes quite dangerous,\\n\\n72 00:04:01,27 --> 00:04:03,10 because you can't<br></br>tell how thick it is\\n\\n73 00:04:03,20 --> 00:04:04,23 or how solid it is\\n\\n74 00:04:04,33 --> 00:04:05,80 or how much<br></br>water is underneath.\\n\\n75 00:04:05,90 --> 00:04:06,97 If you were to<br></br>walk out into this,\\n\\n76 00:04:07,07 --> 00:04:08,13 you might make<br></br>it a few steps\\n\\n77 00:04:08,23 --> 00:04:11,10 and you might plunge<br></br>through over your head\\n\\n78 00:04:11,20 --> 00:04:15,40 into icy moving water underneath<br></br>this frazil ice deposit on top.\\n\\n79 00:04:19,67 --> 00:04:21,97 Every winter at the base<br></br>of Upper Yosemite Fall,\\n\\n80 00:04:22,07 --> 00:04:25,80 a big conical mound of<br></br>ice and snow develops.\\n\\n81 00:04:25,90 --> 00:04:27,90 We call it the Ice<br></br>Cone or the Snow Cone\\n\\n82 00:04:28,00 --> 00:04:31,23 and it can grow to be<br></br>hundreds of feet tall.\\n\\n83 00:04:31,33 --> 00:04:33,67 The Snow Cone builds<br></br>up from falling water\\n\\n84 00:04:33,77 --> 00:04:35,50 that freezes<br></br>while it's falling.\\n\\n85 00:04:35,60 --> 00:04:37,30 It freezes in a<br></br>couple of places;\\n\\n86 00:04:37,40 --> 00:04:38,97 some freezes<br></br>at the bottom,\\n\\n87 00:04:39,07 --> 00:04:41,17 some of it freezes on<br></br>the rock on either side\\n\\n88 00:04:41,27 --> 00:04:42,40 of Upper Yosemite Falls,\\n\\n89 00:04:42,50 --> 00:04:45,53 when the sun comes around during<br></br>the late part of the morning,\\n\\n90 00:04:45,63 --> 00:04:46,97 it starts to<br></br>loosen that ice\\n\\n91 00:04:47,07 --> 00:04:50,50 and it falls and builds<br></br>up onto the Snow Cone too.\\n\\n92 00:04:56,40 --> 00:04:57,97 And you can hear them<br></br>throughout the Valley,\\n\\n93 00:04:58,07 --> 00:05:00,27 and it's pretty amazing<br></br>how loud those ice sheets\\n\\n94 00:05:00,37 --> 00:05:02,37 can be when they<br></br>come crashing down.\\n\\n95 00:05:11,67 --> 00:05:13,13 There is a<br></br>persistent myth\\n\\n96 00:05:13,23 --> 00:05:16,60 that directly connects the<br></br>Snow Cone's disappearance\\n\\n97 00:05:16,70 --> 00:05:19,33 to the apparition of our<br></br>frazil ice deposits.\\n\\n98 00:05:19,43 --> 00:05:21,27 There is not a<br></br>direct connection.\\n\\n99 00:05:21,37 --> 00:05:22,57 This is not<br></br>the Snow Cone\\n\\n100 00:05:22,67 --> 00:05:25,43 we see lying on the floor of<br></br>Yosemite Valley washed out.\\n\\n101 00:05:25,53 --> 00:05:28,67 The Snow Cone gradually melts<br></br>away as temperature warms up.\\n\\n102 00:05:28,77 --> 00:05:29,73 As temperature<br></br>warms up,\\n\\n103 00:05:29,83 --> 00:05:32,10 the volume in Yosemite<br></br>Creek increases,\\n\\n104 00:05:32,20 --> 00:05:33,83 but the<br></br>subfreezing nights\\n\\n105 00:05:33,93 --> 00:05:36,67 will turn some portion<br></br>of Yosemite Falls to ice\\n\\n106 00:05:36,77 --> 00:05:39,60 that flows in the liquid<br></br>water and the frazil ice,\\n\\n107 00:05:39,70 --> 00:05:40,73 as we call it,\\n\\n108 00:05:40,83 --> 00:05:43,80 is only indirectly<br></br>connected to the Snow Cone.\\n\\n109 00:05:44,60 --> 00:05:47,47 I do have heard people<br></br>refer to frazil ice\\n\\n110 00:05:47,57 --> 00:05:49,17 as the Snow<br></br>Cone breaking up,\\n\\n111 00:05:49,27 --> 00:05:51,03 but if that<br></br>were the case,\\n\\n112 00:05:51,13 --> 00:05:53,33 then these other places where<br></br>it exists in Yosemite Valley,\\n\\n113 00:05:53,43 --> 00:05:54,57 that wouldn't be true.\\n\\n114 00:05:54,67 --> 00:05:57,30 I've also observed it<br></br>at Royal Arches Cascade\\n\\n115 00:05:57,40 --> 00:05:59,70 and I do know that it<br></br>happens at Ribbon Creek,\\n\\n116 00:05:59,80 --> 00:06:03,83 also over at Bridalveil<br></br>Falls and Salmon Creek.\\n\\n117 00:06:17,47 --> 00:06:19,77 This is a marker for many<br></br>of us in Yosemite Valley\\n\\n118 00:06:19,87 --> 00:06:21,20 when the frazil ice flows,\\n\\n119 00:06:21,30 --> 00:06:22,97 it means that<br></br>springtime is here,\\n\\n120 00:06:23,07 --> 00:06:24,57 where the snowmelt<br></br>is increasing,\\n\\n121 00:06:24,67 --> 00:06:27,03 but we still have subfreezing<br></br>temperatures at night,\\n\\n122 00:06:27,13 --> 00:06:29,53 so yeah, it is very much<br></br>a marker of the season.\\n\\n123 00:06:29,63 --> 00:06:30,83 You won't see<br></br>this in June,\\n\\n124 00:06:30,93 --> 00:06:33,10 you won't see<br></br>this in October,\\n\\n125 00:06:33,20 --> 00:06:35,57 you'll only see it in March<br></br>and usually in April.\\n\\n126 00:06:37,77 --> 00:06:40,63 Well, Yosemite gets close to<br></br>4 million visitors a year\\n\\n127 00:06:40,73 --> 00:06:42,93 and the vast majority<br></br>of those visitors\\n\\n128 00:06:43,03 --> 00:06:44,40 come in June,<br></br>July, and August,\\n\\n129 00:06:44,50 --> 00:06:45,90 so they're here in<br></br>the summer months.\\n\\n130 00:06:46,00 --> 00:06:49,47 And I think that a lot<br></br>of people are missing\\n\\n131 00:06:49,57 --> 00:06:52,60 some of the magical events<br></br>that happen in the wintertime.\\n\\n132 00:06:52,70 --> 00:06:54,77 For example, Horsetail Falls,\\n\\n133 00:06:54,87 --> 00:06:57,97 it looks like a glowing<br></br>fire fall in February,\\n\\n134 00:06:58,07 --> 00:07:01,27 and the Snow Cone at the<br></br>base of Upper Yosemite Fall,\\n\\n135 00:07:01,37 --> 00:07:04,67 you're just not going to see<br></br>that in June, July, and August.\\n\\n136 00:07:04,77 --> 00:07:07,20 And the fact that<br></br>frazil ice is flowing\\n\\n137 00:07:07,30 --> 00:07:09,87 a lot of times in spring<br></br>is pretty incredible.\\n\\n138 00:07:09,97 --> 00:07:12,53 So I think that<br></br>Yosemite in late winter\\n\\n139 00:07:12,63 --> 00:07:13,67 and early spring\\n\\n140 00:07:13,77 --> 00:07:17,20 holds a lot of very special<br></br>and unique natural phenomenon\\n\\n141 00:07:17,30 --> 00:07:20,10 and that more people would<br></br>probably come here in winter\\n\\n142 00:07:20,20 --> 00:07:24,37 if they just knew that they<br></br>could experience these things.',\n", + " 'bytes': 11563,\n", + " 'sha1': 'hg40fodnelube6m5tu9kw84ajzs0re5',\n", + " 'parent_id': 64323211,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 66099359,\n", + " 'timestamp': '2012-01-27T13:52:25Z',\n", + " 'user': {'id': 410833, 'text': 'Akaniji'},\n", + " 'page': {'id': 18183023,\n", + " 'title': 'The State of Wikipedia by JESS3.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '時間切れ。途中まで保存。',\n", + " 'text': \"1 00:00:01,114 --> 00:00:05,414 (The State of Wikipedia)\\n\\n<!--1.1 00:00:05,414 --*> 00:00:06,414 (語り: ジミー・ウェールズ。ウィキペディアの創設者) --> \\n\\n2 00:00:06,414 --> 00:00:08,000 (ウィキペディア:自由な百科事典)\\n\\n3 00:00:08,000 --> 00:00:11,100 ウィキペディアは今やインターネット上で最も重要なウェブサイトのひとつです。\\n\\n4 00:00:11,100 --> 00:00:16,000 実はこのウィキペディア、もう1冊のオンライン百科事典の副事業として始まったと聞けば、驚かれるでしょうか。\\n\\n5 00:00:16,000 --> 00:00:22,300 その名をヌーペディア。専門家の手による伝統的な百科事典で、That was called Nupedia, to be a traditional encyclopedia written by experts\\n\\n6 00:00:22,300 --> 00:00:27,500 フリーで、オンラインでした。しかし、最終的な公開権限をひとりが専有していたため、まったく成功していませんでした。\\n\\n7 00:00:30,000 --> 00:00:36,300 私はヌーペディアの創設者として、将来のヌーペディアの記事を担う、いわゆる二軍チームを設立する班を先導していました。\\n\\n8 00:00:36,300 --> 00:00:42,500 ここで私たちは、共同制作を容易にするために、新しいソフトウェア基本骨格を採用しました。それが、ウィキ。ウィキペディアの始まりです。\\n\\n9 00:00:45,000 --> 00:00:48,500 たくさんのページを非常に速く書きあげるには、ウィキは完璧な方法でした。\\n\\n10 00:00:48,500 --> 00:00:52,900 ヌーペディアの方はというと、その後すぐに立ち行かなくなりました。代わって、ウィキペディアが中心的な役割を担うことになります。\\n\\n11 00:00:53,100 --> 00:00:58,700 私たちは、ただのフリー素材の百科事典を作っていたのではありません。「誰でも編集できるフリーな百科事典」を作っていたのです。\\n\\n12 00:00:58,800 --> 00:01:04,500 たちまち、他の言語版が現れました。今やその数、270以上。\\n\\n13 00:01,04,600 --> 00:01:08,900 のみならず、ウィキソースやウィキニュース、ウィクショナリーといった姉妹事業群が後に続きました。\\n\\n14 00:01:08,900 --> 00:01:15,200 2003年、ウィキペディアの成長に対応するため、ウィキメディア財団を設立しました。\\n\\n15 00:01:15,200 --> 00:01:18,800 ウィキペディアへの訪問者数は、毎月4億人弱にのぼります。\\n\\n16 00:01:18,900 --> 00:01:22,200 訪問者数ランキングでウィキペディアよりも多いサイトの目録は非常に短く、超有名サイトしかありません。\\n\\n17 00:01:22,300 --> 00:01:27,950 2011年1月、ウィキペディアは10周年を記念しました。\\n\\n18 00:01:28,000 --> 00:01:31,500 この10年間で、ウィキペディアは世界で最も有名なウェブサイトになったのです。\\n\\n19 00:01:31,500 --> 00:01:37,400 私は今も共同体を先導していますし、ウィキペディアを私たちが作る今日の姿は、ウィキメディア財団が支援しています。\\n\\n20 00:01:37,500 --> 00:01:39,300 ウィキペディアは誰が書いているの?\\n\\n21 00:01:39,350 --> 00:01:44,000 Over time, as many as 1.2 million people have contributed to Wikipedia.\\n\\n22 00:01:44,000 --> 00:01:49,990 As of 2010, there are more than 11 million monthly edits to all Wikipedias in all languages.\\n\\n23 00:01:50,000 --> 00:01:55,200 According to one survey, we have about twice the proportion of Ph.Ds compared to the general public.\\n\\n24 00:01:55,300 --> 00:02:03,200 On the English Wikipedia almost 50% have no religion and 14.6% of French editors claim to believe in Pastafarianism.\\n\\n25 00:02:03,300 --> 00:02:06,100 It would be fair to say that most Wikipedians are not average.\\n\\n26 00:02:06,200 --> 00:02:11,300 One reason, maybe, is that editing a single page is easy, but getting heavily involved is harder.\\n\\n27 00:02:11,400 --> 00:02:16,400 The community is defined by more than 200 combined policies, guidelines and essays\\n\\n28 00:02:16,400 --> 00:02:20,100 to say nothing of the discussions and reviews, committees and noticeboards\\n\\n29 00:02:20,100 --> 00:02:21,400 WikiProjects and more.\\n\\n30 00:02:21,500 --> 00:02:25,350 All the site content is decided by Wikipedia's volunteer contributors.\\n\\n31 00:02:25,350 --> 00:02:28,900 The Wikimedia Foundation has no editorial role whatsoever.\\n\\n32 00:02:29,800 --> 00:02:33,400 The Foundation's job is to keep the servers running and the lights on, but there's more to it than that.\\n\\n33 00:02:33,400 --> 00:02:36,300 The Foundation is also growing Wikipedia's presence worldwide\\n\\n34 00:02:36,400 --> 00:02:43,200 more data centers to speed up Wikipedia worldwide and even bringing its first office outside of the United States to India.\\n\\n35 00:02:43,300 --> 00:02:46,800 Wikipedia is already very popular in the West and in the North.\\n\\n36 00:02:46,800 --> 00:02:50,700 A new challenge is going to be making Wikipedia available to the developing world, as well.\\n\\n37 00:02:50,750 --> 00:02:54,500 The Foundation is a charity and runs entirely on donations\\n\\n38 00:02:54,600 --> 00:03:00,200 some from corporations and institutions, but the vast majority from its millions of editors and readers.\\n\\n39 00:03:00,200 --> 00:03:05,300 It's incredible what has been accomplished already, but Wikipedia is far from done.\\n\\n40 00:03:05,300 --> 00:03:09,500 As any reader knows, some articles are very good, but some are not.\\n\\n41 00:03:09,600 --> 00:03:11,200 Wikipedia still needs a lot of work.\\n\\n42 00:03:11,300 --> 00:03:13,500 Yet, this is a new challenge.\\n\\n43 00:03:13,500 --> 00:03:17,400 Not just building an encyclopedia from scratch, but making it better\\n\\n44 00:03:17,400 --> 00:03:22,500 more accurate, more citations. Not just broad, but deep.\\n\\n45 00:03:22,650 --> 00:03:27,000 There's never been anything like Wikipedia before, and its future horizon is very, very long.\\n\\n46 00:03:27,100 --> 00:03:31,300 As Wikipedia enters its second decade, it's up to all of us to make sure it gets even better.\\n\\n47 00:03:27,300 --> 00:03:35,000 (Wikipedia, The Free Encyclopedia)\\n\\n<!-- 47.1 00:03:36,200 --*> 00:03:37,200 (Narrated by Jimmy Wales, Founder of Wikipedia.) -->\\n\\n<!-- 47.2 00:03:37,200 --*> 00:03:38,200 (Directed by Jesse Thomas.) -->\\n\\n48 00:03:39,000 --> 00:03:41,500 (A JESS3 Production)\",\n", + " 'bytes': 6453,\n", + " 'sha1': 'q3p9ev9kf6oaii5kn9t08cyhqb3koke',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 67451801,\n", + " 'timestamp': '2012-02-24T07:53:50Z',\n", + " 'user': {'id': 1797315, 'text': 'Subha WMF'},\n", + " 'page': {'id': 18480057,\n", + " 'title': 'Citing sources tutorial, part 1.ogv.or.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'or+',\n", + " 'text': '1\\n00:00:00,000 --> 00:10:00,000\\nସମ୍ପାଦନା କେମିତି କରିବେ: ବାହାର ଆଧାର ଯୋଡ଼ିବା\\n\\n2\\n00:00:12,000 --> 00:00:21,999\\nପ୍ରଥମେ ଏକ ପରଖ ଘର ତିଆରି କରନ୍ତୁ । ଯଦି ଆପଣଙ୍କର ଏକ ପରଖଘର ନଥାଏ, ତେବେ ଦୟାକରି Help:Sandbox Tutorial କୁ ଯାଆନ୍ତୁ ଓ ସେଥିରେ ଦିଆଯାଇଥିବା ନିର୍ଦେଶାବଳୀ ଦେଖନ୍ତୁ ।\\n\\n3\\n00:00:22,000 --> 00:00:27,800\\nଏବେ ପରଖ ଘରଟି ଦେଖନ୍ତୁ । ଆମେ ପ୍ରଥମେ ପାଦ ଟୀକା ନିମନ୍ତେ ଏକ ବିଭାଗ ତିଆରି କରିବୁ ।\\n\\n4\\n00:00:28,000 --> 00:00:36,700\\nଦୁଇଟି ସମାନ ଚିହ୍ନ == ଦେଇ ତାହା ପରେ ବିଭାଗର ନାମ ଦେଇ ଏହି ପୃଷ୍ଠାର ପାଦ ଦେଶରେ ଏକ ନୂଆ ବିଭାଗ (ପାଦ ଟୀକା) ତିଆରି କରନ୍ତୁ ।\\n\\n5 \\n00:00:36,750 --> 00:00:46,500\\nପାଦଟୀକା ଲେଖିସାରିବା ପରେ ଆଉ ଦୁଇଟି ସମାନ ଚିହ୍ନ ଦିଅନ୍ତୁ ଯାହା ଫଳରେ ଆପଣ ଦେବାକୁ ଯାଉଥିବା ଆଧାର ଏହି ପାଦଟୀକା ତଳେ ଦେଖାଯିବ ।\\n\\n6\\n00:00:47,000 --> 00:00:52,500\\nଏହାକୁ ଆଧାର କୁହାଯାଏ, ଏବେ ଏହାର ବାମ ଓ ଡାହାଣରେ <nowiki>{{ ଓ }}</nowiki> ଦିଅନ୍ତୁ ।\\n\\n7\\n00:00:52,600 --> 00:01:08,500\\nଏବେ ଆମେ \"Being bold is important on Wikipedia\" ଏଠାରେ ଲେଖିବା । ଏହାର ଏକ ନିର୍ଦେଶାବଳୀ ମଧ୍ୟ ଅଛି ।\\n\\n8\\n00:01:12,000 --> 00:01:21,300\\nଏକ ପାଦଟୀକାରେ ଏହି ସବୁ ମୁଖ୍ୟ ଚିଜ ଥାଏ: ଏକ ପାଦଲେଖ, ଏକ ଆରମ୍ଭ ଓ ଅନ୍ତ ଚିହ୍ନ । \\n\\n9\\n00:01:22,000 --> 00:01:31,100\\nଏକ ref ଚିହ୍ନ, ଏବଂ ଆମର ଆଧାର: Be bold guideline, Wikipedia - The free encyclopedia, retrieved October 16. \\n\\n10\\n00:01:31,900 --> 00:01:33,500\\nଏହା ପରେ ଏକ ଅନ୍ତ ref ଚିହ୍ନ ଦିଅନ୍ତୁ ।\\n\\n11\\n00:01:34,600 --> 00:01:42,300\\nଏବେ ଆମେ ପୃଷ୍ଠାଟି ସାଇତିବା ଆପଣ ଏହାର ଫଳାଫଳ ଏବେ ଦେଖିପାରିବେ । ସଂଖ୍ୟାସବୁ ref ଚିହ୍ନ ଭାବରେ ଯୋଡ଼ିହୋଇଯିବ ।\\n\\n12\\n00:01:42,350 --> 00:01:47,400\\nପୃଷ୍ଠାର ପାଦ ଦେଶରେ ଥିବା ଆଧାର ବିଷୟବସ୍ତୁକୁ ଏହା ନିର୍ଦେଶିତ କରିଥାଏ । \\n\\n13\\n00:01:47,450 --> 00:01:52,500\\nଏହି ନୂଆ ଶିକ୍ଷଣଟି ସମ୍ପାଦନା ଉପକରଣ ପତିରେ ଥିବା ଆପଣଙ୍କୁ କିପରି ଆଧାର ବ୍ୟବହାର କରାଯାଏ ତାହା ଶିଖାଇଥାଏ ।\\n\\n14\\n00:01:52,501 --> 00:01:59,000\\nତାହା ଆପଣଙ୍କୁ ଆପେ ଆପେ ଆଧାର ଓ ପାଦଟୀକା ତିଆରି କରିବାରେ ସାହାଯ୍ୟ କରିଥାଏ ।\\n\\n15\\n00:01:59,100 --> 00:02:01,600\\nତେଣୁ ଦମ୍ଭ ହୋଇ ସବୁବେଳେ ଲେଖାର ମୂଳ ଆଧାର ଦିଅନ୍ତୁ ।',\n", + " 'bytes': 3446,\n", + " 'sha1': 'lqszcb79khrt8n7uxq0qu99ouo78if6',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 69462390,\n", + " 'timestamp': '2012-04-06T19:44:08Z',\n", + " 'user': {'id': 12489, 'text': '80686'},\n", + " 'page': {'id': 18986901,\n", + " 'title': 'CSBS Alice Wiegand.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:01,970 Hi, I'm Alice, 2 00:00:02,070 --> 00:00:03,183 username lyzzy, 3 00:00:03,283 --> 00:00:06,454 and I'm running for the Wikimed...'\",\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:01,970\\nHi, I'm Alice,\\n\\n2\\n00:00:02,070 --> 00:00:03,183\\nusername lyzzy,\\n\\n3\\n00:00:03,283 --> 00:00:06,454\\nand I'm running for the Wikimedia Foundation's Board of Trustees.\\n\\n4\\n00:00:06,560 --> 00:00:08,930\\nWe are here at Raketenstation Hombroich.\\n\\n5\\n00:00:09,030 --> 00:00:10,314\\nThis is a former NATO base,\\n\\n6\\n00:00:10,414 --> 00:00:13,903\\nwhich nowadays serves a a living and working environment\\n\\n7\\n00:00:14,003 --> 00:00:15,189\\nfor artists and scientists.\\n\\n8\\n00:00:16,356 --> 00:00:18,733\\nHere grow fine arts and architecture.\\n\\n9\\n00:00:19,075 --> 00:00:20,299\\nI love this place.\\n\\n10\\n00:00:20,496 --> 00:00:23,177\\nIt is wide and open, for everyone who\\n\\n11\\n00:00:23,277 --> 00:00:26,496\\nis looking for new aspects and point of views.\\n\\n12\\n00:00:26,817 --> 00:00:28,182\\nIt's open for the public.\\n\\n13\\n00:00:28,754 --> 00:00:31,953\\nIt's a little bit like Wikipedia, isn't it?\\n\\n14\\n00:00:32,561 --> 00:00:36,017\\nI've been part of the Wikimedia Universe since 2004\\n\\n15\\n00:00:36,117 --> 00:00:37,703\\nand I am still fascinated.\\n\\n16\\n00:00:38,633 --> 00:00:42,982\\nAfter our first wild years on this vivid platform of knowledge\\n\\n17\\n00:00:43,082 --> 00:00:46,348\\nwe now have to take care that our projects evolve\\n\\n18\\n00:00:46,448 --> 00:00:47,588\\nand that they keep alive.\\n\\n19\\n00:00:48,279 --> 00:00:51,788\\nWe need to preserve and enhance the content at the same time.\\n\\n20\\n00:00:51,888 --> 00:00:55,208\\nWith respect to the contributors and respect to the readers.\\n\\n21\\n00:00:56,644 --> 00:01:00,356\\nThrough our work people can find all the information they need \\n\\n22\\n00:01:00,456 --> 00:01:01,840\\nto make better decisions.\\n\\n23\\n00:01:02,275 --> 00:01:03,693\\nWhenever they want.\\n\\n24\\n00:01:03,793 --> 00:01:05,302\\nFreely and independently.\\n\\n25\\n00:01:06,118 --> 00:01:11,510\\nAnd I will do my best to let this not only be a slogan but become reality.\\n\\n26\\n00:01:12,159 --> 00:01:15,174\\nFor you, for me and for everyone else in the world.\\n\\n27\\n00:01:15,502 --> 00:01:16,502\\nThanks.\",\n", + " 'bytes': 1982,\n", + " 'sha1': 'ttykhdq0f5p1ug8pd9p6yy192plrrct',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 69462718,\n", + " 'timestamp': '2012-04-06T19:55:50Z',\n", + " 'user': {'id': 12489, 'text': '80686'},\n", + " 'page': {'id': 18987004,\n", + " 'title': 'CSBS Alice Wiegand.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:01,970 Hi, ich bin Alice, 2 00:00:02,070 --> 00:00:03,183 Benutzername lyzzy, 3 00:00:03,283 --> 00:00:06,454 und ich kandidiere für...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,970\\nHi, ich bin Alice,\\n\\n2\\n00:00:02,070 --> 00:00:03,183\\nBenutzername lyzzy,\\n\\n3\\n00:00:03,283 --> 00:00:06,454\\nund ich kandidiere für das Board of Trustees der Wikimedia Foundation.\\n\\n4\\n00:00:06,560 --> 00:00:08,930\\nWir sind hier auf der Raketenstation Hombroich.\\n\\n5\\n00:00:09,030 --> 00:00:10,314\\nDas ist eine ehemalige NATO-Station,\\n\\n6\\n00:00:10,414 --> 00:00:13,903\\ndie nun als Lebens- und Arbeitsraum\\n\\n7\\n00:00:14,003 --> 00:00:15,189\\nfür Künstler und Wissenschaftler dient.\\n\\n8\\n00:00:16,356 --> 00:00:18,733\\nHier entstehen bildende Kunst und Architektur.\\n\\n9\\n00:00:19,075 --> 00:00:20,299\\nIch liebe diesen Ort.\\n\\n10\\n00:00:20,496 --> 00:00:23,177\\nEr ist weit und offen, für jeden,\\n\\n11\\n00:00:23,277 --> 00:00:26,496\\nder neue Aspekte und Blickwinkel sucht.\\n\\n12\\n00:00:26,817 --> 00:00:28,182\\nOffen für die Allgemeinheit.\\n\\n13\\n00:00:28,754 --> 00:00:31,953\\nEs ist ein wenig wie die Wikipedia, oder?\\n\\n14\\n00:00:32,561 --> 00:00:36,017\\nIch bin seit 2004 Teil des Wikimedia-Universums\\n\\n15\\n00:00:36,117 --> 00:00:37,703\\nund ich bin noch immer fasziniert.\\n\\n16\\n00:00:38,633 --> 00:00:42,982\\nNach unseren ersten wilden Jahren auf dieser lebendigen Plattform des Wissens\\n\\n17\\n00:00:43,082 --> 00:00:46,348\\nmüssen wir uns jetzt darum kümmern, dass unsere Projekte sich entwickeln\\n\\n18\\n00:00:46,448 --> 00:00:47,588\\nund am Leben bleiben.\\n\\n19\\n00:00:48,279 --> 00:00:51,788\\nWir müssen die Inhalte gleichzeitig bewahren und erweitern.\\n\\n20\\n00:00:51,888 --> 00:00:55,208\\nMit Respekt gegenüber den Autoren und gegenüber den Lesern.\\n\\n21\\n00:00:56,644 --> 00:01:00,356\\nDurch unsere Arbeit können Menschen all die Informationen finden, die brauchen,\\n\\n22\\n00:01:00,456 --> 00:01:01,840\\num bessere Entscheidungen treffen zu können.\\n\\n23\\n00:01:02,275 --> 00:01:03,693\\nJederzeit.\\n\\n24\\n00:01:03,793 --> 00:01:05,302\\nFrei und unabhängig.\\n\\n25\\n00:01:06,118 --> 00:01:11,510\\nUnd ich will mein Bestes geben, damit das nicht nur ein Slogan bleibt sondern Realität wird.\\n\\n26\\n00:01:12,159 --> 00:01:15,174\\nFür mich, für dich und für jeden auf der Welt.\\n\\n27\\n00:01:15,502 --> 00:01:16,502\\nDanke.',\n", + " 'bytes': 2089,\n", + " 'sha1': 'm883uz2x2cqgyd2x8xkzn8q7kpjvixc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 69466503,\n", + " 'timestamp': '2012-04-06T21:37:55Z',\n", + " 'user': {'id': 12489, 'text': '80686'},\n", + " 'page': {'id': 18988014,\n", + " 'title': 'CSBS Raúl Gutiérrez.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,563 --> 00:00:03,841\\nGreat thanks to the community and\\n\\n2\\n00:00:03,841 --> 00:00:07,050\\nthank your for the opportunity of introducing myself.\\n\\n3\\n00:00:07,050 --> 00:00:08,921\\nI am Raúl Gutiérez,\\n\\n4\\n00:00:08,921 --> 00:00:10,076\\na mexican national and,\\n\\n5\\n00:00:10,076 --> 00:00:11,560\\nas I sometimes call myself,\\n\\n6\\n00:00:11,560 --> 00:00:14,121\\na citizen of the world.\\n\\n7\\n00:00:14,121 --> 00:00:16,680\\nFate provided the opportunity of interacting\\n\\n8\\n00:00:16,680 --> 00:00:18,645\\nwith many people from the world,\\n\\n9\\n00:00:18,645 --> 00:00:20,560\\nworking in many different environments and\\n\\n10\\n00:00:20,560 --> 00:00:22,482\\nwith the unique opportunity of learning\\n\\n11\\n00:00:22,482 --> 00:00:25,127\\na littlebit of many different cultures.\\n\\n12\\n00:00:25,127 --> 00:00:26,922\\nI am grateful for the opportunity\\n\\n13\\n00:00:26,922 --> 00:00:28,562\\nto participate in this election\\n\\n14\\n00:00:28,562 --> 00:00:30,880\\nand the possibility of supporting the Foundation\\n\\n15\\n00:00:30,880 --> 00:00:32,883\\non such an important mission.\\n\\n16\\n00:00:32,883 --> 00:00:35,680\\nAgain, thank you for the opportunity\\n\\n17\\n00:00:35,680 --> 00:00:37,723\\nand I am looking forward to being elected.\\n\\n18\\n00:00:37,723 --> 99:59:59,000\\nAll the best to everyone!',\n", + " 'bytes': 1239,\n", + " 'sha1': 'eoj1e9vnnelnaw1d4ydr60zmif4uu9f',\n", + " 'parent_id': 69466467,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 69860011,\n", + " 'timestamp': '2012-04-15T17:03:20Z',\n", + " 'user': {'id': 57323, 'text': 'Brochon99'},\n", + " 'page': {'id': 19073762,\n", + " 'title': 'Monmouthpedia video revised.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Done',\n", + " 'text': \"1\\n00:00:15,036 --> 00:00:17,032\\nJ'ai lancé MonmouthpediA parce que je crois\\n\\n2\\n00:00:17,032 --> 00:00:18,076\\nque la connaissance peut donner un contexte\\n\\n3\\n00:00:18,076 --> 00:00:20,012\\net nous permettre de mieux apprécier\\n\\n4\\n00:00:20,012 --> 00:00:21,036\\nles choses qui nous entourent.\\n\\n5\\n00:00:21,062 --> 00:00:24,035\\nLe projet est une collaboration entre Wikimedia UK,\\n\\n6\\n00:00:24,035 --> 00:00:26,072\\nle Monmouthshire County Council, les musées,\\n\\n7\\n00:00:26,072 --> 00:00:28,064\\nla bibliothèque, l'Université du pays de Galles,\\n\\n8\\n00:00:28,064 --> 00:00:30,052\\nle Cardiff Met, mais le plus important\\n\\n9\\n00:00:30,052 --> 00:00:32,048\\nce sont les contributeurs individuels,\\n\\n10\\n00:00:32,048 --> 00:00:34,035\\ndes groupes communautaires locaux,\\n\\n11\\n00:00:34,035 --> 00:00:36,006\\net les personnes non seulement de Monmouth,\\n\\n12\\n00:00:36,006 --> 00:00:38,056\\nmais aussi du monde entier qui créent du contenu\\n\\n13\\n00:00:38,056 --> 00:00:40,003\\net d'atteindre cet objectif.\\n\\n14\\n00:00:40,003 --> 00:00:41,079\\nUn code QR est un code barre\\n\\n15\\n00:00:41,079 --> 00:00:43,039\\nqui est lu par un téléphone ou une tablette\\n\\n16\\n00:00:43,039 --> 00:00:45,020\\net qui conduit vers une page Web.\\n\\n17\\n00:00:45,020 --> 00:00:47,039\\nLa beauté de QRpédia est que\\n\\n18\\n00:00:47,039 --> 00:00:49,008\\npeu importe la langue du téléphone,\\n\\n19\\n00:00:49,008 --> 00:00:51,048\\non est dirigé vers l'article dans cette langue.\\n\\n20\\n00:00:51,048 --> 00:00:53,068\\nUn téléphone en Espagnol mènera\\n\\n21\\n00:00:53,068 --> 00:00:55,003\\nvers l'article en Espagnol,\\n\\n22\\n00:00:55,003 --> 00:00:56,056\\nun téléphone allemand, article en Allemand.\\n\\n23\\n00:00:56,095 --> 00:00:59,093\\nPour nous, l'intérêt des codes QR\\n\\n24\\n00:00:59,093 --> 00:01:02,090\\nest qu'ils permettent aux visiteurs de lire\\n\\n25\\n00:01:02,090 --> 00:01:05,088\\nles informations dans leurs langues.\\n\\n26\\n00:01:05,088 --> 00:01:08,077\\nC'est un grand avantage, spécialement à Monmouth.\\n\\n27\\n00:01:08,077 --> 00:01:11,012\\nLa langue galloise est une possibilité,\\n\\n28\\n00:01:11,012 --> 00:01:13,052\\nmais aussi toutes les autres langues du monde.\\n\\n29\\n00:01:13,052 --> 00:01:16,068\\nL'autre avantage d'un point de vue de conservateur\\n\\n30\\n00:01:16,068 --> 00:01:19,004\\nest que nous aimerions donner aux visiteurs\\n\\n31\\n00:01:19,004 --> 00:01:21,055\\ndes tonnes d'informations,\\n\\n32\\n00:01:21,055 --> 00:01:24,037\\nmais nous ne pouvons pas avec nos étiquettes\\n\\n33\\n00:01:24,037 --> 00:01:26,023\\ncar il n'y a pas assez d'espace.\\n\\n34\\n00:01:26,085 --> 00:01:29,088\\nNous avons un bâtiment classé 1 étoile\\n\\n35\\n00:01:29,088 --> 00:01:32,060\\navec de grandes histoires à raconter,\\n\\n36\\n00:01:32,060 --> 00:01:34,096\\nbeaucoup d'évènements ont eu lieu\\n\\n37\\n00:01:34,096 --> 00:01:37,063\\ndans ce bâtiment et pourtant nous avons\\n\\n38\\n00:01:37,063 --> 00:01:40,011\\nune collection très restreinte.\\n\\n39\\n00:01:40,011 --> 00:01:42,019\\nDonc en utilisant les codes QRpedia,\\n\\n40\\n00:01:42,019 --> 00:01:44,032\\ncela donne accès à un large éventail\\n\\n41\\n00:01:44,032 --> 00:01:48,082\\nd'informations sur l'histoires et les artefacts.\\n\\n42\\n00:01:50,002 --> 00:01:52,014\\nEn tant qu'étudiante en histoire, il est bon\\n\\n43\\n00:01:52,014 --> 00:01:54,092\\nde choisir les informations que je peux voir et\\n\\n44\\n00:01:54,092 --> 00:01:58,035\\nde ne pas être bombardée de renseignements\\n\\n45\\n00:01:58,035 --> 00:02:01,096\\nce qui peut être intimidant lorsque l'on\\n\\n46\\n00:02:01,096 --> 00:02:03,078\\nvisite un musée.\\n\\n47\\n00:02:04,060 --> 00:02:06,066\\nC'est fantastique que Monmouth soit\\n\\n48\\n00:02:06,066 --> 00:02:09,062\\nl'une des premières villes à offrir les codes QR.\\n\\n49\\n00:02:09,062 --> 00:02:12,058\\nGrâce au projet QRpedia, la ville aura\\n\\n50\\n00:02:12,058 --> 00:02:14,096\\nune visibilité internationale.\\n\\n51\\n00:02:14,096 --> 00:02:17,045\\nCela amènera un grand nombre de gens\\n\\n52\\n00:02:17,045 --> 00:02:19,082\\nde la planète à connaitre notre histoire\\n\\n53\\n00:02:19,082 --> 00:02:21,062\\ntout à fait fascinante.\\n\\n54\\n00:02:22,054 --> 00:02:24,099\\nL'auteur William Gibson dit cette phrase célèbre :\\n\\n55\\n00:02:24,099 --> 00:02:26,056\\n« Le futur est déjà là.\\n\\n56\\n00:02:26,056 --> 00:02:28,056\\nIl est simplement réparti inégalement ».\\n\\n57\\n00:02:28,056 --> 00:02:31,020\\nEn embrassant la technologie QRpedia\\n\\n58\\n00:02:31,020 --> 00:02:33,096\\net en devenant une ville WiFi, Monmouth\\n\\n59\\n00:02:33,096 --> 00:02:37,040\\nest un exemple pratique de communautés\\n\\n60\\n00:02:37,040 --> 00:02:40,021\\nréunies à la fois localement et globalement,\\n\\n61\\n00:02:40,021 --> 00:02:43,051\\nafin de créer et partager un nouveau sens du lieu\\n\\n62\\n00:02:43,051 --> 00:02:46,033\\net aussi de permettre une nouvelle expérience\\n\\n63\\n00:02:46,033 --> 00:02:48,009\\naux visiteurs de la ville.\",\n", + " 'bytes': 4664,\n", + " 'sha1': 'ea99fp4dnsn0fdsq0usgrzi55sv9ptu',\n", + " 'parent_id': 69776777,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 87380972,\n", + " 'timestamp': '2013-01-12T16:43:20Z',\n", + " 'user': {'id': 889002, 'text': 'Rock drum'},\n", + " 'page': {'id': 19075260,\n", + " 'title': 'Monmouthpedia video revised.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'small corrections',\n", + " 'text': '1\\n00:00:15,045 --> 00:00:17,016\\nI started MonmouthpediA because I think\\n\\n2\\n00:00:17,016 --> 00:00:18,079\\nthat knowledge can give us context and\\n\\n3\\n00:00:18,079 --> 00:00:21,022\\nallow us to appreciate the things around us more.\\n\\n4\\n00:00:21,064 --> 00:00:24,063\\nThe project is a collaboration between Wikimedia UK,\\n\\n5\\n00:00:24,063 --> 00:00:26,072\\nMonmouthshire County Council, the museums,\\n\\n6\\n00:00:26,072 --> 00:00:29,036\\nthe library, University of Wales, Cardiff Met,\\n\\n7\\n00:00:29,036 --> 00:00:32,023\\nbut most importantly individual contributors,\\n\\n8\\n00:00:32,023 --> 00:00:34,076\\nlocal community groups and people\\n\\n9\\n00:00:34,076 --> 00:00:36,044\\nnot just from Monmouth but from all over\\n\\n10\\n00:00:36,044 --> 00:00:38,076\\nthe world that are creating the content and\\n\\n11\\n00:00:38,076 --> 00:00:39,096\\nmaking this happen.\\n\\n12\\n00:00:40,019 --> 00:00:41,086\\nA QR code is a kind of bar code\\n\\n13\\n00:00:41,086 --> 00:00:43,032\\nthat you can read through your phone or\\n\\n14\\n00:00:43,032 --> 00:00:45,094\\ntablet computer and it can take you to a web page.\\n\\n15\\n00:00:45,094 --> 00:00:47,060\\nThe great thing about QRpedia is that\\n\\n16\\n00:00:47,060 --> 00:00:49,003\\nwhatever language your phone is in\\n\\n17\\n00:00:49,003 --> 00:00:51,040\\nit will take you through to that language page\\n\\n18\\n00:00:51,040 --> 00:00:52,018\\non Wikipedia.\\n\\n19\\n00:00:52,018 --> 00:00:53,075\\nIf you have a Spanish phone\\n\\n20\\n00:00:53,075 --> 00:00:55,034\\nit will take you though to the Spanish article,\\n\\n21\\n00:00:55,034 --> 00:00:56,065\\nGerman, German article.\\n\\n22\\n00:00:56,065 --> 00:00:58,096\\nI think the real attraction of QR codes for us\\n\\n23\\n00:00:58,096 --> 00:01:03,060\\nis it gives us the chance to let people see our\\n\\n24\\n00:01:03,060 --> 00:01:05,060\\ninformation in their own language which\\n\\n25\\n00:01:05,060 --> 00:01:08,011\\nis a great boon, especially in Monmouth.\\n\\n26\\n00:01:08,011 --> 00:01:10,092\\nThe Welsh language is a possibility\\n\\n27\\n00:01:10,092 --> 00:01:12,096\\nbut also all the other world languages.\\n\\n28\\n00:01:12,096 --> 00:01:16,095\\nThe other big advantage from a curatorial\\n\\n29\\n00:01:16,095 --> 00:01:19,024\\npoint of view is that we just love to give people\\n\\n30\\n00:01:19,024 --> 00:01:21,052\\ninformation until the \"cows come home\"\\n\\n31\\n00:01:21,052 --> 00:01:24,012\\nand we can\\'t do that in our ordinary labels\\n\\n32\\n00:01:24,012 --> 00:01:26,042\\nbecause there\\'s not enough space.\\n\\n33\\n00:01:26,074 --> 00:01:29,087\\nWhat we have here is a Grade I* listed building\\n\\n34\\n00:01:29,087 --> 00:01:34,004\\nwith great stories to tell, lots of events and activities\\n\\n35\\n00:01:34,004 --> 00:01:36,080\\nwhich have taken place in the building,\\n\\n36\\n00:01:36,080 --> 00:01:39,052\\nand yet we\\'ve got a very, very small collection.\\n\\n37\\n00:01:39,052 --> 00:01:42,080\\nSo using the QRpedia codes, it gives people access\\n\\n38\\n00:01:42,080 --> 00:01:46,028\\nto a wide range of information about the stories,\\n\\n39\\n00:01:46,028 --> 00:01:49,044\\nas well as the artefacts.\\n\\n40\\n00:01:50,022 --> 00:01:53,035\\nAs a history student it\\'s nice to be able to pick and choose\\n\\n41\\n00:01:53,035 --> 00:01:56,080\\nwhich information I can see and not having to be\\n\\n42\\n00:01:56,080 --> 00:02:00,003\\nbombarded with information, which can be quite\\n\\n43\\n00:02:00,003 --> 00:02:03,093\\nintimidating sometimes when you go into a museums.\\n\\n44\\n00:02:04,047 --> 00:02:07,040\\nIt\\'s fantastic that Monmouth is one of the first towns\\n\\n45\\n00:02:07,040 --> 00:02:10,096\\nto offer the QR codes, and that it\\'s going to become\\n\\n46\\n00:02:10,096 --> 00:02:13,092\\ninternationally renowned for the Wikipedia project\\n\\n47\\n00:02:13,092 --> 00:02:17,027\\nis going on here. I think it\\'s going to introduce\\n\\n48\\n00:02:17,027 --> 00:02:20,008\\na lot of people around the world to our\\n\\n49\\n00:02:20,008 --> 00:02:22,032\\nquite fascinating history.\\n\\n50\\n00:02:22,046 --> 00:02:25,004\\nThe author William Gibson once famously said:\\n\\n51\\n00:02:25,004 --> 00:02:28,004\\n\"The future is already here, it\\'s just not very evenly distributed\".\\n\\n52\\n00:02:28,004 --> 00:02:31,032\\nWith Monmouth embracing QRpedia as technology\\n\\n53\\n00:02:31,032 --> 00:02:34,076\\nand becoming a WiFi town, we now have a real\\n\\n54\\n00:02:34,076 --> 00:02:37,067\\npractical example of the way in which we can have\\n\\n55\\n00:02:37,067 --> 00:02:39,090\\ncommunities coming together both locally\\n\\n56\\n00:02:39,090 --> 00:02:43,053\\nand globally, to share and create a new\\n\\n57\\n00:02:43,053 --> 00:02:46,007\\nsense of place in Monmouth and enable\\n\\n58\\n00:02:46,007 --> 00:02:47,093\\nnew visitor experiences for the town.',\n", + " 'bytes': 4455,\n", + " 'sha1': 'e1o0ifhmi2qk8zv8mkxea8gku5d5z0a',\n", + " 'parent_id': 69896018,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 69914345,\n", + " 'timestamp': '2012-04-16T21:21:07Z',\n", + " 'user': {'id': 57323, 'text': 'Brochon99'},\n", + " 'page': {'id': 19116353,\n", + " 'title': 'Monmouthpedia video revised.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '/* Monmouthpedia video */ Now in Spanish',\n", + " 'text': '1\\n00:00:15,045 --> 00:00:17,016\\nComencé MonmouthpediA porque pienso\\n\\n2\\n00:00:17,016 --> 00:00:18,079\\nque el conocimiento nos puede dar un contexto\\n\\n3\\n00:00:18,079 --> 00:00:21,022\\ny permitirnos apreciar más las cosas que nos rodean\\n\\n4\\n00:00:21,064 --> 00:00:24,063\\nEl proyecto es una colaboración entre Wikimedia UK,\\n\\n5\\n00:00:24,063 --> 00:00:26,072\\nel Monmouthsire County Council, los museos,\\n\\n6\\n00:00:26,072 --> 00:00:29,036\\nla biblioteca, la Universidad de Gales, el Cardiff Met,\\n\\n7\\n00:00:29,036 --> 00:00:32,023\\npero lo más importante son los contribuyentes individuales,\\n\\n8\\n00:00:32,023 --> 00:00:34,076\\ngrupos comunitarios locales y gente\\n\\n9\\n00:00:34,076 --> 00:00:36,044\\nno solo de Monmouth, sino gente\\n\\n10\\n00:00:36,044 --> 00:00:38,076\\nde todo el mundo que crea el contenido\\n\\n11\\n00:00:38,076 --> 00:00:39,096\\ny permite que esto ocurra.\\n\\n12\\n00:00:40,019 --> 00:00:41,086\\nUn código QR es un tipo de código de barras\\n\\n13\\n00:00:41,086 --> 00:00:43,032\\nque se puede leer a través del teléfono o\\n\\n14\\n00:00:43,032 --> 00:00:45,094\\ntableta y que puede llevar a una página web.\\n\\n15\\n00:00:45,094 --> 00:00:47,060\\nLo mejor de QRpedia es que\\n\\n16\\n00:00:47,060 --> 00:00:49,003\\nesté en el idioma que esté tu teléfono\\n\\n17\\n00:00:49,003 --> 00:00:51,040\\nte llevará a la página en ese idioma\\n\\n18\\n00:00:51,040 --> 00:00:52,018\\nen Wikipedia.\\n\\n19\\n00:00:52,018 --> 00:00:53,075\\nSi tienes un teléfono en español\\n\\n20\\n00:00:53,075 --> 00:00:55,034\\nte llevará al artículo en español,\\n\\n21\\n00:00:55,034 --> 00:00:56,065\\nun teléfono en alemán, artículo en alemán.\\n\\n22\\n00:00:56,065 --> 00:00:58,096\\nPienso que el verdadero atractivo de los códigos QR para nosotros\\n\\n23\\n00:00:58,096 --> 00:01:03,060\\nes que nos da la posibilidad de permitir a la gente ver nuestra\\n\\n24\\n00:01:03,060 --> 00:01:05,060\\ninformación en su propio idioma, lo que\\n\\n25\\n00:01:05,060 --> 00:01:08,011\\nes una gran ventaja, especialmente en Monmouth.\\n\\n26\\n00:01:08,011 --> 00:01:10,092\\nEl idioma galés es una posibilidad\\n\\n27\\n00:01:10,092 --> 00:01:12,096\\npero también todos los demás idiomas del mundo.\\n\\n28\\n00:01:12,096 --> 00:01:16,095\\nLa otra gran ventaja desde el\\n\\n29\\n00:01:16,095 --> 00:01:19,024\\npunto de vista de un conservador es que nos encanta dar a la gente\\n\\n30\\n00:01:19,024 --> 00:01:21,052\\ninformación hasta la saciedad\\n\\n31\\n00:01:21,052 --> 00:01:24,012\\ny no podemos hacerlo en nuestras etiquetas normales\\n\\n32\\n00:01:24,012 --> 00:01:26,042\\nporque no hay suficiente espacio.\\n\\n33\\n00:01:26,074 --> 00:01:29,087\\nLo que tenemos aquí es un edificio clasificado de Grado I\\n\\n34\\n00:01:29,087 --> 00:01:34,004\\ncon grandes historias que contar, montones de acontecimientos y hechos\\n\\n35\\n00:01:34,004 --> 00:01:36,080\\nque tuvieron lugar en el edificio,\\n\\n36\\n00:01:36,080 --> 00:01:39,052\\ny aún tenemos una muy, muy pequeña recopilación.\\n\\n37\\n00:01:39,052 --> 00:01:42,080\\nAsí, el uso de los códigos QRpedia, ofrece a la gente acceso\\n\\n38\\n00:01:42,080 --> 00:01:46,028\\na un amplio abanico de información sobre las historias,\\n\\n39\\n00:01:46,028 --> 00:01:49,044\\nasí como a los objetos.\\n\\n40\\n00:01:50,022 --> 00:01:53,035\\nComo estudiante de historia es agradable seleccionar y elegir\\n\\n41\\n00:01:53,035 --> 00:01:56,080\\nqué información puedo ver y no tener que ser\\n\\n42\\n00:01:56,080 --> 00:02:00,003\\nbombardeado con información, que puede llegar a\\n\\n43\\n00:02:00,003 --> 00:02:03,093\\nintimidar en algunas ocasiones cuando visitas museos.\\n\\n44\\n00:02:04,047 --> 00:02:07,040\\nEs fantástico que Monmouth sea una de las primeras localidades\\n\\n45\\n00:02:07,040 --> 00:02:10,096\\nen ofrecer códigos QR, y esto va a ser\\n\\n46\\n00:02:10,096 --> 00:02:13,092\\ninternacionalmente reconocido por el proyecto en Wikipedia\\n\\n47\\n00:02:13,092 --> 00:02:17,027\\nque está en marcha aquí. Pienso que dará a conocer\\n\\n48\\n00:02:17,027 --> 00:02:20,008\\na mucha gente de todo el mundo nuestra\\n\\n49\\n00:02:20,008 --> 00:02:22,032\\ninteresante historia.\\n\\n50\\n00:02:22,046 --> 00:02:25,004\\nEl autor, otrora famoso, William Gibson dijo:\\n\\n51\\n00:02:25,004 --> 00:02:28,004\\n\"El futuro ya está aquí, sólo que está distribuido de forma desigual\".\\n\\n52\\n00:02:28,004 --> 00:02:31,032\\nCon Monmouth adoptando QRpedia como tecnología\\n\\n53\\n00:02:31,032 --> 00:02:34,076\\ny convirtiéndose en una localidad WiFI, tenemos ahora un\\n\\n54\\n00:02:34,076 --> 00:02:37,067\\nejemplo práctico y real del modo en el que podemos tener\\n\\n55\\n00:02:37,067 --> 00:02:39,090\\ncomunidades aunando esfuerzos tanto local\\n\\n56\\n00:02:39,090 --> 00:02:43,053\\ncomo globalmente, para compartir y crear un nuevo\\n\\n57\\n00:02:43,053 --> 00:02:46,007\\nsignificado de lugar en Monmouth y permitir\\n\\n58\\n00:02:46,007 --> 00:02:47,093\\nnuevas experiencias a los visitantes a la localidad.',\n", + " 'bytes': 4669,\n", + " 'sha1': 'oc1j877yf1oin4yd98eo9g5dmk02wmp',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 70388918,\n", + " 'timestamp': '2012-04-28T20:49:49Z',\n", + " 'user': {'id': 50587, 'text': 'Nemo bis'},\n", + " 'page': {'id': 19250395,\n", + " 'title': 'Wikimedia Italia - WikiGuida 4 - Wikiquote.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'by Christian Biasco, CC-BY-SA (via email, per contract with WMIT)',\n", + " 'text': '1\\n00:00:09,016 --> 00:00:13,075\\nWikiquote è un\\'antologia libera e multilingue che raccoglie e organizza\\n\\n2\\n00:00:13,096 --> 00:00:17,698\\naforismi e citazioni particolarmente significativi o illustrativi.\\n\\n3\\n00:00:17,923 --> 00:00:21,048\\nOltre alle frasi di persone o personaggi noti, \\n\\n4\\n00:00:21,084 --> 00:00:25,746\\nWikiquote colleziona anche espressioni rilevanti senza una paternità precisa, \\n\\n5\\n00:00:25,794 --> 00:00:28,918\\ncome ad esempio i proverbi e i modi di dire.\\n\\n6\\n00:00:29,983 --> 00:00:33,273\\nTutte le citazioni degne di nota di uno specifico autore \\n\\n7\\n00:00:33,325 --> 00:00:35,768\\nsono inserite in una voce a lui dedicata.\\n\\n8\\n00:00:36,205 --> 00:00:38,797\\nNella pagina, le sue frasi sono raggruppate \\n\\n9\\n00:00:38,846 --> 00:00:41,934\\nin base alle opere o ai contesti di provenienza: \\n\\n10\\n00:00:42,046 --> 00:00:46,986\\nopere letterarie, teatrali o musicali, programmi televisivi o radiofonici, \\n\\n11\\n00:00:47,081 --> 00:00:50,414\\narticoli di giornale, fumetti e cartoni animati… \\n\\n12\\n00:00:50,485 --> 00:00:54,624\\nl\\'importante è che siano fonti reperibili e verificabili.\\n\\n13\\n00:00:55,125 --> 00:00:59,304\\nLe opere collettive, come i film o i romanzi scritti a più mani, \\n\\n14\\n00:00:59,324 --> 00:01:01,916\\nche per definizione non hanno un unico autore, \\n\\n15\\n00:01:01,964 --> 00:01:04,884\\nhanno una loro voce specifica.\\n\\n16\\n00:01:05,084 --> 00:01:08,204\\nIn Wikiquote si raccolgono anche espressioni degne di nota \\n\\n17\\n00:01:08,244 --> 00:01:12,793\\ndi cui l\\'autore è sconosciuto, come proverbi, modi di dire e slogan.\\n\\n18\\n00:01:13,124 --> 00:01:16,051\\nEsistono poi le pagine tematiche che raccolgono \\n\\n19\\n00:01:16,113 --> 00:01:19,630\\nle citazioni dedicate ad uno specifico argomento.\\n\\n20\\n00:01:20,524 --> 00:01:23,613\\nGli accordi internazionali, come pure il diritto italiano, \\n\\n21\\n00:01:23,684 --> 00:01:28,804\\nconcedono la libertà di citazione, purché si rispettino determinate condizioni.\\n\\n22\\n00:01:28,883 --> 00:01:32,736\\nWikiquote è l\\'unico progetto Wikimedia che contiene anche materiale\\n\\n23\\n00:01:32,803 --> 00:01:36,721\\nancora completamente protetto dal copyright tradizionale.\\n\\n24\\n00:01:37,522 --> 00:01:40,493\\nUna citazione deve sempre essere breve \\n\\n25\\n00:01:40,565 --> 00:01:44,968\\ne funzionale a fini didattici, scientifici o, in genere, illustrativi.\\n\\n26\\n00:01:45,042 --> 00:01:47,371\\nLa sua trascrizione deve essere esatta: \\n\\n27\\n00:01:47,442 --> 00:01:51,005\\nnon è corretto attribuire a qualcuno quello che non ha detto.\\n\\n28\\n00:01:51,242 --> 00:01:54,932\\nSe necessario, vanno inserite anche informazioni aggiuntive minime \\n\\n29\\n00:01:55,042 --> 00:01:58,893\\nche possano aiutare a comprendere il valore del brano scelto.\\n\\n30\\n00:01:59,282 --> 00:02:02,556\\nOgni citazione deve essere collegata alla sua fonte.\\n\\n31\\n00:02:02,601 --> 00:02:05,487\\nSono ammesse le citazioni riferite da qualcun altro, \\n\\n32\\n00:02:05,561 --> 00:02:08,712\\nma dove possibile si preferisce la fonte originale.\\n\\n33\\n00:02:09,001 --> 00:02:11,988\\nI riferimenti bibliografici devono essere precisi \\n\\n34\\n00:02:12,001 --> 00:02:16,298\\ne riportati in modo completo nel paragrafo specifico della pagina.\\n\\n35\\n00:02:16,481 --> 00:02:20,451\\nIn Wikiquote si insiste molto sull\\'accuratezza e la precisione delle fonti, \\n\\n36\\n00:02:20,521 --> 00:02:24,365\\ntanto che esiste anche una pagina dedicata alle citazioni \\n\\n37\\n00:02:24,401 --> 00:02:27,997\\nriportate in modo errato o assegnate alla persona sbagliata.\\n\\n38\\n00:02:29,240 --> 00:02:31,950\\nIn passato, l\\'inserimento in Wikiquote \\n\\n39\\n00:02:31,960 --> 00:02:35,691\\ndi citazioni senza l\\'indicazione della fonte era tollerato. \\n\\n40\\n00:02:35,720 --> 00:02:37,720\\nOra invece non è più ammesso.\\n\\n41\\n00:02:37,800 --> 00:02:40,290\\nIn ogni voce, le citazioni senza fonte \\n\\n42\\n00:02:40,307 --> 00:02:42,880\\nsono raccolte in un paragrafo dedicato: \\n\\n43\\n00:02:42,901 --> 00:02:45,382\\nle più improbabili vanno via via eliminate, \\n\\n44\\n00:02:45,425 --> 00:02:48,878\\nmentre per le altre si cerca di rintracciarne la provenienza. \\n\\n45\\n00:02:50,356 --> 00:02:54,487\\nI brani scelti devono esprimere in modo chiaro e sintetico un concetto, \\n\\n46\\n00:02:54,518 --> 00:02:57,260\\no essere, per come sono state scritte o pronunciate, \\n\\n47\\n00:02:57,249 --> 00:03:00,253\\nparticolarmente notevoli e originali.\\n\\n48\\n00:03:00,415 --> 00:03:03,647\\nNon vanno inserite tutte le frasi di una persona o un\\'opera, \\n\\n49\\n00:03:03,665 --> 00:03:06,819\\nma solo le più emblematiche e significative.\\n\\n50\\n00:03:07,247 --> 00:03:10,090\\nLe citazioni sono per loro natura di parte, \\n\\n51\\n00:03:10,164 --> 00:03:12,417\\nma una voce non deve contenere solo quelle \\n\\n52\\n00:03:12,457 --> 00:03:16,056\\nche coincidono con il proprio orientamento politico o gusto personale. \\n\\n53\\n00:03:16,081 --> 00:03:19,850\\nVanno invece selezionate le citazioni che al di là della propria opinione \\n\\n54\\n00:03:19,871 --> 00:03:23,861\\nsono veramente illustrative di un soggetto, un\\'opera o un argomento.\\n\\n55\\n00:03:24,119 --> 00:03:26,863\\nBuona prassi è anche chiedersi se tra dieci anni \\n\\n56\\n00:03:26,918 --> 00:03:29,410\\nla citazione avrà ancora una sua rilevanza. \\n\\n57\\n00:03:29,412 --> 00:03:34,444\\nCol tempo, le citazioni che si rivelano di scarsa importanza vanno cancellate.\\n\\n58\\n00:03:35,240 --> 00:03:38,723\\nIn ogni voce è possibile trovare o aggiungere un collegamento \\n\\n59\\n00:03:38,744 --> 00:03:42,550\\nalle pagine correlate dei progetti fratelli o di siti esterni. \\n\\n60\\n00:03:42,696 --> 00:03:47,759\\nLe citazioni devono infatti fornire spunti per l\\'approfondimento delle loro fonti, \\n\\n61\\n00:03:47,859 --> 00:03:52,238\\nesattamente come una voce enciclopedica è un modo per orientarsi su un tema.\\n\\n62\\n00:03:53,479 --> 00:03:57,103\\nUna citazione inserita in una voce di un autore o di un\\'opera \\n\\n63\\n00:03:57,178 --> 00:04:02,080\\npuò anche essere riportata, in seconda battuta, all\\'interno di voci tematiche, \\n\\n64\\n00:04:02,058 --> 00:04:05,780\\ndove si raccolgono citazioni riguardanti uno specifico argomento.\\n\\n65\\n00:04:05,889 --> 00:04:09,240\\nIn queste pagine vanno aggiunte solo le citazioni \\n\\n66\\n00:04:09,265 --> 00:04:12,160\\nche dicono effettivamente qualcosa di interessante sul tema, \\n\\n67\\n00:04:12,181 --> 00:04:14,940\\nnon quelle che menzionano solamente il concetto.\\n\\n68\\n00:04:16,096 --> 00:04:18,880\\nLe voci tematiche sono organizzate in categorie \\n\\n69\\n00:04:18,846 --> 00:04:21,997\\nche raggruppano i temi a seconda della loro natura. \\n\\n70\\n00:04:22,012 --> 00:04:28,907\\nDalle discipline ai luoghi, dalla politica alle azioni...\\n\\n71\\n00:04:28,964 --> 00:04:32,893\\nIn queste pagine non sono riportati i riferimenti bibliografici, \\n\\n72\\n00:04:32,962 --> 00:04:37,326\\nma si rimanda alla pagina dell\\'autore o dell\\'opera che già li contiene.\\n\\n73\\n00:04:37,996 --> 00:04:40,929\\nLe citazioni sono elencate in ordine alfabetico, \\n\\n74\\n00:04:41,065 --> 00:04:44,355\\na meno che un autore o un\\'opera non abbia dedicato all\\'argomento \\n\\n75\\n00:04:44,340 --> 00:04:47,036\\nun certo numero di brani significativi.\\n\\n76\\n00:04:47,134 --> 00:04:51,083\\nIn queste pagine sono raccolti anche i proverbi, i modi di dire e \\n\\n77\\n00:04:51,116 --> 00:04:54,928\\nin genere tutte quelle espressioni non attribuibili a una persona in particolare \\n\\n78\\n00:04:54,969 --> 00:04:57,288\\nche toccano il tema della pagina.\\n\\n79\\n00:04:57,316 --> 00:04:59,858\\nQuest\\'ultime spesso non hanno altra collocazione \\n\\n80\\n00:04:59,866 --> 00:05:02,411\\nse non in queste voci tematiche.\\n\\n81\\n00:05:02,506 --> 00:05:07,275\\nLe citazioni invece che concernono una persona, un\\'opera o un personaggio \\n\\n82\\n00:05:07,262 --> 00:05:11,404\\nvengono inserite in un capitolo specifico nella loro pagina.\\n\\n83\\n00:05:12,264 --> 00:05:16,251\\nWikiquote in italiano raccoglie esclusivamente frasi in italiano.\\n\\n84\\n00:05:16,457 --> 00:05:19,712\\nMa come per Wikipedia esistono anche una Wikiquote in inglese, \\n\\n85\\n00:05:19,749 --> 00:05:22,522\\nin francese, tedesco e molte altre lingue.\\n\\n86\\n00:05:22,997 --> 00:05:25,708\\nLa versione italiana è attualmente la terza più sviluppata, \\n\\n87\\n00:05:25,727 --> 00:05:28,602\\ndopo quelle inglese e polacca.\\n\\n88\\n00:05:29,402 --> 00:05:32,012\\nPer le citazioni in lingue diverse dall\\'italiano \\n\\n89\\n00:05:32,017 --> 00:05:34,632\\nsi devono usare le traduzioni ufficiali: \\n\\n90\\n00:05:34,794 --> 00:05:37,909\\nnel caso dei film, le parole del doppiaggio italiano, \\n\\n91\\n00:05:37,929 --> 00:05:40,203\\nanche se non tradotte letteralmente; \\n\\n92\\n00:05:40,232 --> 00:05:43,910\\nnel caso dei libri, una traduzione italiana in commercio.\\n\\n93\\n00:05:44,312 --> 00:05:46,312\\nÈ indispensabile riportare sempre \\n\\n94\\n00:05:46,322 --> 00:05:49,841\\nanche il nome del traduttore e dell\\'edizione tradotta.\\n\\n95\\n00:05:50,064 --> 00:05:53,512\\nEccezionalmente è ammessa la versione in lingua originale, \\n\\n96\\n00:05:53,514 --> 00:05:57,943\\nse questa è scritta in una forma particolare o è di difficile traduzione.\\n\\n97\\n00:05:58,224 --> 00:06:01,543\\nIn alcuni casi, come per gli incipit di testi famosi, \\n\\n98\\n00:06:01,584 --> 00:06:04,832\\npossono convivere più traduzioni dello stesso brano.\\n\\n99\\n00:06:05,237 --> 00:06:08,760\\nÈ concesso inserire traduzioni proprie come integrazione \\n\\n100\\n00:06:08,800 --> 00:06:11,001\\nsolo se non ne esistono di ufficiali, \\n\\n101\\n00:06:11,034 --> 00:06:14,662\\ncome ad esempio nel caso di proverbi di lingue straniere.\\n\\n102\\n00:06:15,339 --> 00:06:19,110\\nNel progetto hanno anche un loro spazio i dialetti italiani \\n\\n103\\n00:06:19,150 --> 00:06:22,793\\nda cui vengono ripresi proverbi, modi di dire, filastrocche \\n\\n104\\n00:06:22,825 --> 00:06:26,609\\ne altre espressioni appartenenti alla cultura popolare di una regione.\\n\\n105\\n00:06:27,917 --> 00:06:30,687\\nCome Wikipedia, Wikiquote vive e si sviluppa \\n\\n106\\n00:06:30,690 --> 00:06:32,963\\ngrazie alla collaborazione aperta di tutti. \\n\\n107\\n00:06:33,287 --> 00:06:36,178\\nChiunque può partecipare ed è davvero semplice!\\n\\n108\\n00:06:36,400 --> 00:06:39,319\\nE come disse Giacomo Leopardi scrivendo al fratello: \\n\\n109\\n00:06:39,355 --> 00:06:42,000\\n\"Il fare è il miglior modo d\\'imparare.\"',\n", + " 'bytes': 9892,\n", + " 'sha1': 'lytjxxtqs92m0ec07sv0ttxo9jye1pr',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 70778461,\n", + " 'timestamp': '2012-05-07T08:04:57Z',\n", + " 'user': {'id': 886, 'text': 'Ary29'},\n", + " 'page': {'id': 19253862,\n", + " 'title': 'Wikimedia Italia - WikiGuida 4 - Wikiquote.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'translation completed',\n", + " 'text': '1\\n00:00:09,016 --> 00:00:13,075\\nWikiquote is a free multilingual anthology which collects and sorts \\n\\n2\\n00:00:13,096 --> 00:00:17,698\\nespecially significant or illustrative aphorisms and quotes.\\n\\n3\\n00:00:17,923 --> 00:00:21,048\\nBesides the sentences of people or known characters, \\n\\n4\\n00:00:21,084 --> 00:00:25,746\\nWikiquote collects also relevant words that are attributed to no one,\\n\\n5\\n00:00:25,794 --> 00:00:28,918\\nsuch as proverbs and idioms.\\n\\n6\\n00:00:29,983 --> 00:00:33,273\\nNoteworthy quotes by the same author \\n\\n7\\n00:00:33,325 --> 00:00:35,768\\nare entered in a dedicated page. \\n\\n8\\n00:00:36,205 --> 00:00:38,797\\nIn the page the sentences are arranged \\n\\n9\\n00:00:38,846 --> 00:00:41,934\\nby work or context of origin: \\n\\n10\\n00:00:42,046 --> 00:00:46,986\\nworks of literature, music or theater, television or radio programs,\\n\\n11\\n00:00:47,081 --> 00:00:50,414\\nnewspaper articles, comics and cartoons ...\\n\\n12\\n00:00:50,485 --> 00:00:54,624\\nwhat matters is that they are available and verifiable sources.\\n\\n13\\n00:00:55,125 --> 00:00:59,304\\nCollective works, such as films and novels written by several authors, \\n\\n14\\n00:00:59,324 --> 00:01:01,916\\nwhich by definition do not have a single author,\\n\\n15\\n00:01:01,964 --> 00:01:04,884\\nhave their own specific entry.\\n\\n16\\n00:01:05,084 --> 00:01:08,204\\nWikiquote collects also remarkable expressions \\n\\n17\\n00:01:08,244 --> 00:01:12,793\\nwhose author is unknown, such as proverbs, sayings and slogans.\\n\\n18\\n00:01:13,124 --> 00:01:16,051\\nThere are also thematic pages that collect\\n\\n19\\n00:01:16,113 --> 00:01:19,630\\nquotes related to a specific topic.\\n\\n20\\n00:01:20,524 --> 00:01:23,613\\nInternational agreements, as well as Italian law,\\n\\n21\\n00:01:23,684 --> 00:01:28,804\\ngrant Right to quote, provided that certain terms are observed.\\n\\n22\\n00:01:28,883 --> 00:01:32,736\\nWikiquote is the only Wikimedia project that hosts \\n\\n23\\n00:01:32,803 --> 00:01:36,721\\ncopyrighted material\\n\\n24\\n00:01:37,522 --> 00:01:40,493\\nA quote shall always be short \\n\\n25\\n00:01:40,565 --> 00:01:44,968\\nand useful for educational, scientific or, in general, illustrative purposes.\\n\\n26\\n00:01:45,042 --> 00:01:47,371\\nIts transcription must be accurate:\\n\\n27\\n00:01:47,442 --> 00:01:51,005\\nit is unfair to attribute words to someone who never said them.\\n\\n28\\n00:01:51,242 --> 00:01:54,932\\nIf necessary, minimal additional info should be added\\n\\n29\\n00:01:55,042 --> 00:01:58,893\\nwhich may help explain the value of the piece selected.\\n\\n30\\n00:01:59,282 --> 00:02:02,556\\nEvery quote shall be connected to its source. \\n\\n31\\n00:02:02,601 --> 00:02:05,487\\nCitations reported by someone else can be admitted,\\n\\n32\\n00:02:05,561 --> 00:02:08,712\\nbut, where possible, the original sources are preferred.\\n\\n33\\n00:02:09,001 --> 00:02:11,988\\nBibliographical references shall be accurate\\n\\n34\\n00:02:12,001 --> 00:02:16,298\\nand fully reported in the relevant section of the page. \\n\\n35\\n00:02:16,481 --> 00:02:20,451\\nWikiquote stresses the fact that sources being accurate and detailed, \\n\\n36\\n00:02:20,521 --> 00:02:24,365\\nThere is also a page for quotes \\n\\n37\\n00:02:24,401 --> 00:02:27,997\\nreported incorrectly or attributed to the wrong person.\\n\\n38\\n00:02:29,240 --> 00:02:31,950\\nOnce, adding a quote to Wikiquote \\n\\n39\\n00:02:31,960 --> 00:02:35,691\\nwithout citing sources was tollerated. \\n\\n40\\n00:02:35,720 --> 00:02:37,720\\nIt is no longer so.\\n\\n41\\n00:02:37,800 --> 00:02:40,290\\nIn every article, unsourced quotes\\n\\n42\\n00:02:40,307 --> 00:02:42,880\\nare listed in a separate section:\\n\\n43\\n00:02:42,901 --> 00:02:45,382\\nthe most unlikely are going to be removed, \\n\\n44\\n00:02:45,425 --> 00:02:48,878\\nwhile for the others a reference is sought. \\n\\n45\\n00:02:50,356 --> 00:02:54,487\\nChoose quotes that express a concept in a clear and concise way, \\n\\n46\\n00:02:54,518 --> 00:02:57,260\\nor that are, by the way they have been written or said, \\n\\n47\\n00:02:57,249 --> 00:03:00,253\\nespecially remarkable and original.\\n\\n48\\n00:03:00,415 --> 00:03:03,647\\nDo not insert all statements by a person or from a work, \\n\\n49\\n00:03:03,665 --> 00:03:06,819\\nbut just the most representative and significant.\\n\\n50\\n00:03:07,247 --> 00:03:10,090\\nQuotes are partial by nature, \\n\\n51\\n00:03:10,164 --> 00:03:12,417\\nbut an article must not be limited to those statements\\n\\n52\\n00:03:12,457 --> 00:03:16,056\\nthat suit your political orientation or personal taste.\\n\\n53\\n00:03:16,081 --> 00:03:19,850\\nChoose quotes that, irregardless of your opinion, \\n\\n54\\n00:03:19,871 --> 00:03:23,861\\nare truly representative of a person, a work or a theme.\\n\\n55\\n00:03:24,119 --> 00:03:26,863\\nA good practice is asking yourself if a quote\\n\\n56\\n00:03:26,918 --> 00:03:29,410\\nwill still be relevant ten years from now. \\n\\n57\\n00:03:29,412 --> 00:03:34,444\\nIn time, quotes that have little importance left will be removed.\\n\\n58\\n00:03:35,240 --> 00:03:38,723\\nIn every article you can find or add a link\\n\\n59\\n00:03:38,744 --> 00:03:42,550\\nto similar pages on sister projects or other relevant websites. \\n\\n60\\n00:03:42,696 --> 00:03:47,759\\nQuotes should indeed give suggestions to further explore their sources, \\n\\n61\\n00:03:47,859 --> 00:03:52,238\\njust like an entry in the encyclopedia is a way to start exploring a topic.\\n\\n62\\n00:03:53,479 --> 00:03:57,103\\nA quote listed in the article of an author or work\\n\\n63\\n00:03:57,178 --> 00:04:02,080\\ncan also be added to theme pages \\n\\n64\\n00:04:02,058 --> 00:04:05,780\\nwhere quotes about a specific topic are collected.\\n\\n65\\n00:04:05,889 --> 00:04:09,240\\nIn such pages quotes can be added\\n\\n66\\n00:04:09,265 --> 00:04:12,160\\nthat actually say something interesting about the theme, \\n\\n67\\n00:04:12,181 --> 00:04:14,940\\nnot those that just simply mention the concept.\\n\\n68\\n00:04:16,096 --> 00:04:18,880\\nTheme pages are organized into categories \\n\\n69\\n00:04:18,846 --> 00:04:21,997\\nthat group themes together according to their nature. \\n\\n70\\n00:04:22,012 --> 00:04:28,907\\nFrom science to places, from politics to occupations...\\n\\n71\\n00:04:28,964 --> 00:04:32,893\\nTheme pages do not contain bibliographical references, \\n\\n72\\n00:04:32,962 --> 00:04:37,326\\nfor that they refer to the author\\'s or work\\'s page.\\n\\n73\\n00:04:37,996 --> 00:04:40,929\\nQuotes are listed in alphabetical order, \\n\\n74\\n00:04:41,065 --> 00:04:44,355\\nunless a significant number of quotes on the subject\\n\\n75\\n00:04:44,340 --> 00:04:47,036\\ncome from the same author or work.\\n\\n76\\n00:04:47,134 --> 00:04:51,083\\nTheme pages also include proverbs, sayings and \\n\\n77\\n00:04:51,116 --> 00:04:54,928\\ngenerally all sorts of expressions that cannot be attributed to someone in particular\\n\\n78\\n00:04:54,969 --> 00:04:57,288\\nprovided these quotes are relevant to the theme.\\n\\n79\\n00:04:57,316 --> 00:04:59,858\\nSuch unattributed quotes often cannot be put anywhere else\\n\\n80\\n00:04:59,866 --> 00:05:02,411\\nbut theme pages.\\n\\n81\\n00:05:02,506 --> 00:05:07,275\\nQuotes about a person, a work or a character\\n\\n82\\n00:05:07,262 --> 00:05:11,404\\nare instead added in their respective pages under a specific section.\\n\\n83\\n00:05:12,264 --> 00:05:16,251\\nItalian Wikiquote collects only sentences in Italian.\\n\\n84\\n00:05:16,457 --> 00:05:19,712\\nBut, just like Wikipedia, Wikiquote exists also in English, \\n\\n85\\n00:05:19,749 --> 00:05:22,522\\nFrench, German and many more languages.\\n\\n86\\n00:05:22,997 --> 00:05:25,708\\nThe Italian version is currently the third in size, \\n\\n87\\n00:05:25,727 --> 00:05:28,602\\nafter the English and the Polish ones.\\n\\n88\\n00:05:29,402 --> 00:05:32,012\\nFor quotes originally in a language other than Italian \\n\\n89\\n00:05:32,017 --> 00:05:34,632\\nofficial translations must be used: \\n\\n90\\n00:05:34,794 --> 00:05:37,909\\nfor movies, quote the words of the Italian dubbing, \\n\\n91\\n00:05:37,929 --> 00:05:40,203\\neven if they are not a verbatim translation; \\n\\n92\\n00:05:40,232 --> 00:05:43,910\\nfor books, quotes from any Italian edition on sale.\\n\\n93\\n00:05:44,312 --> 00:05:46,312\\nIt is necessary to always cite\\n\\n94\\n00:05:46,322 --> 00:05:49,841\\nthe name of the translator and the translation edition.\\n\\n95\\n00:05:50,064 --> 00:05:53,512\\nExceptionally, the quote in the original language can be added\\n\\n96\\n00:05:53,514 --> 00:05:57,943\\nif it is written in a particular form or can hardly be translated.\\n\\n97\\n00:05:58,224 --> 00:06:01,543\\nIn some cases, for instance the opening words of famous works, \\n\\n98\\n00:06:01,584 --> 00:06:04,832\\nseveral translations of the same quote can exist at the same time.\\n\\n99\\n00:06:05,237 --> 00:06:08,760\\nYou are allowed to include your own translation as an integration\\n\\n100\\n00:06:08,800 --> 00:06:11,001\\nonly if no official translation exist, \\n\\n101\\n00:06:11,034 --> 00:06:14,662\\nsuch as proverbs in a foreign language.\\n\\n102\\n00:06:15,339 --> 00:06:19,110\\nThe project provides a space also for Italian dialects\\n\\n103\\n00:06:19,150 --> 00:06:22,793\\nwhen it comes to proverbs, sayings, rhymes\\n\\n104\\n00:06:22,825 --> 00:06:26,609\\nand other expressions of the regional folklore.\\n\\n105\\n00:06:27,917 --> 00:06:30,687\\nLike Wikipedia, Wikiquote exists and grows\\n\\n106\\n00:06:30,690 --> 00:06:32,963\\nthanks to the open cooperation of all. \\n\\n107\\n00:06:33,287 --> 00:06:36,178\\nAnyone can contribute and it is really simple!\\n\\n108\\n00:06:36,400 --> 00:06:39,319\\nAnd quoting Giacomo Leopardi writing to his brother: \\n\\n109\\n00:06:39,355 --> 00:06:42,000\\n\"Doing is the best way to learn.\"',\n", + " 'bytes': 9157,\n", + " 'sha1': 'oun3zpvtsg0e8xxjui9qt2w8nthd2ai',\n", + " 'parent_id': 70626837,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606351241,\n", + " 'timestamp': '2021-11-09T09:25:30Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 19397085,\n", + " 'title': 'Yeager supersonic flight 1947.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Yeager supersonic flight 1947.ogg.es.srt]] to [[TimedText:Yeager supersonic flight 1947.ogv.es.srt]]: rename of the original file',\n", + " 'text': '0 \\n00:00:00,000 --> 00:00:05,500\\nEn Octubre de 1947 en el centro de pruebas del desierto de Muroc en California USA\\n\\n1\\n00:00:06,000 --> 00:00:09,500 \\nse hace historia con el avión XS-1\\n\\n2 \\n00:00:10,000 --> 00:00:13,500 \\ny su piloto, Capitán Charles E. Yeager. \\n\\n3 \\n00:00:14,000 --> 00:00:18,500 \\nEste aeroplano y su piloto están a punto de ser los primeros en volar\\n\\n4 \\n00:00:19,000 --> 00:00:22,000 \\nmás rápido que la velocidad del sonido a nivel de vuelo. \\n\\n5 \\n00:00:25,000 --> 00:00:26,900 \\nUn B-29 hará sobrevolar al XS-1 \\n\\n6 \\n00:00:27,000 --> 00:00:32,000 \\ny lo lanzará a una altitud de cerca de 10,000 metros sobre nivel del mar.\\n\\n7 \\n00:00:33,000 --> 00:00:34,500 \\nEl XS-1 no es un avión militar\\n\\n8 \\n00:00:35,000 --> 00:00:37,500 \\nsino un laboratorio de investigación aereo\\n \\n9 \\n00:00:38,000 --> 00:00:40,500 \\ndiseñado para probar los efectos en los vuelos supersónicos a bordo de aeroplanos.\\n\\n10 \\n00:00:42,000 --> 00:00:44,500 \\nEste es alimentado por cuatro motores de cohete\\n\\n11 \\n00:00:45,000 --> 00:00:48,500 \\nsu peso sin carga es de menos de 2,200 Kilogramos\\n\\n12 \\n00:00:49,000 --> 00:00:53,000 \\npero carga hasta 3,600 Kilogramos de combustible. \\n\\n13 \\n00:00:54,000 --> 00:00:56,500 \\nEl B-29 ha realizado un gran número de cosas memorables\\n\\n14 \\n00:00:57,000 --> 00:01:01,500 \\npero ninguna misión anterior nunca tuvo una tarea parecida a esta\\n\\n15 \\n00:01:02,000 --> 00:01:06,000 \\ny ningún aeroplano nunca ha realizado lo que el XS-1 está por llevar acabo. \\n\\n16 \\n00:01:16,000 --> 00:01:17,500 \\nRompiendo la barrera del sonido a nivel de vuelo\\n\\n17 \\n00:01:18,000 --> 00:01:20,500 \\nrealizando una hazaña más que espectacular\\n\\n18 \\n00:01:21,000 --> 00:01:27,000 \\nEsta hazaña también arrojará valioso conocimiento acerca de los nuevos sistemas de propulsión.\\n\\n19 \\n00:01:28,000 --> 00:01:29,500 \\nÉl capitán Yeager estará a bordo del XS-1,\\n\\n20 \\n00:01:30,000 --> 00:01:33,000 \\néste no puede ser un vuelo de larga duración, éste será un vuelo en un pequeño avión\\n\\n\\n21 \\n00:01:34,000 --> 00:01:37,500 \\na máxima potencia que no puede durar más allá de dos y medio minutos\\n\\n22 \\n00:01:38,000 --> 00:01:41,000 \\npero será un vuelo muy rápido.\\n\\n\\n23 \\n00:01:59,000 --> 00:02:01,000 \\nListos! \\n\\n24 \\n00:02:01,000 --> 00:02:02,500 \\nÉl equipo de radar está listo,\\n\\n25 \\n00:02:03,000 --> 00:02:05,500 \\npara realizar el cronometraje, el único método posible\\n\\n26 \\n00:02:06,000 --> 00:02:09,000 \\npara tomar tiempos del avión en altitudes extremadamente altas.\\n\\n\\n27 \\n00:02:14,000 --> 00:02:14,500 \\nAquí va!\\n\\n28 \\n00:02:15,000 --> 00:02:19,000 \\nun gran momento de la historia está en vuelo.\\n\\n29 \\n00:02:24,000 --> 00:02:25,500 \\nahora se aproxima a la barrera del sonido.\\n\\n30 \\n00:02:26,000 --> 00:02:32,000 \\nLa velocidad del sonido a 10668 metros de altura es de 1060 Km/h.\\n\\n31 \\n00:02:33,000 --> 00:02:36,500 \\nEl gran momento importante. Atraviesa la barrera del sonido.\\n\\n32 \\n00:02:37,000 --> 00:02:39,500 \\nPor primera vez en la histora a nivel de vuelo.\\n\\n33 \\n00:02:40,000 --> 00:02:48,500 \\nPor primera vez en la historia un hombre ha volado en un avión a mayor velocidad que la velocidad del sonido. \\n\\n34 \\n00:02:49,000 --> 00:02:53,500 \\nEste evento trae grandes honores al capitán Yeage, y al avión hitórico XS-1 \\n\\n35 \\n00:02:54,000 --> 00:02:59,000 \\nle ha ganado tener se lugar de descanso en el Instituto Smithsoniano.',\n", + " 'bytes': 3338,\n", + " 'sha1': 'kj84frpyd5sk0emkqz9tndtg8zcw9px',\n", + " 'parent_id': 180614982,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 133638464,\n", + " 'timestamp': '2014-09-03T21:00:54Z',\n", + " 'user': {'id': 568922, 'text': 'Raylton P. Sousa'},\n", + " 'page': {'id': 19442229,\n", + " 'title': '¿Qué es Wikipedia?.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Typo: Deixando mais adequando ao contexto lusófono.',\n", + " 'text': '\\ufeff1\\n00:00:04,500 --> 00:00:05,500\\nOlá!\\n\\n2\\n00:00:05,650 --> 00:00:07,500\\nMeu nome é Mariana e quero falar sobre a Wikipédia.\\n\\n3\\n00:00:07,840 --> 00:00:09,500\\nCom certeza a conhece e usa.\\n\\n4\\n00:00:09,750 --> 00:00:12,000\\nMas sabe do que se trata realmente\\n\\n5\\n00:00:12,000 --> 00:00:13,000\\ne como é feita?\\n\\n6\\n00:00:13,360 --> 00:00:16,050\\nAinda que pareça uma enciclopédia peculiar,\\n\\n7\\n00:00:16,300 --> 00:00:18,500\\nela persegue o mesmo que as enciclopédias tradicionais:\\n\\n8\\n00:00:18,750 --> 00:00:22,250\\n\"Reunir de maneira organizada todo o conhecimento gerado pela humanidade\".\\n\\n9\\n00:00:22,500 --> 00:00:25,800\\nMas a Wikipédia tem também algumas diferenças significativas\\n\\n10\\n00:00:25,700 --> 00:00:27,750\\ndas enciclopédias tradicionais.\\n\\n11\\n00:00:27,610 --> 00:00:28,400\\nDentre outras,\\n\\n12\\n00:00:28,400 --> 00:00:31,250\\ntrata-se de uma enciclopédia desenvolvimento por milhares de voluntários\\n\\n13\\n00:00:31,500 --> 00:00:35,500\\ncom o objetivo de \"espalhar\" o conhecimento para cada pessoal do planeta\\n\\n14\\n00:00:35,500 --> 00:00:36,600\\nem seu próprio idioma\\n\\n15\\n00:00:36,650 --> 00:00:37,840\\ncomo é feita?\\n\\n16\\n00:00:37,850 --> 00:00:41,500\\nQuais são as regras que organizam e guiam os wikipedistas?\\n\\n17\\n00:00:41,750 --> 00:00:43,800\\nÉ disto que trata este vídeo.\\n\\n18\\n00:00:49,000 --> 00:00:52,800\\nQualquer pessoa pode adicionar ou corrigir informações na Wikipédia,\\n\\n19\\n00:00:52,900 --> 00:00:55,800\\nmas devem lembrar que se trata de uma enciclopédia.\\n\\n20\\n00:00:55,800 --> 00:00:58,700\\nIsso significa que não aceitamos pesquisas originais\\n\\n21\\n00:00:58,700 --> 00:00:59,455\\ne ensaios.\\n\\n22\\n00:00:59,455 --> 00:01:02,000\\nQue artigos devem ser de interesse universal,\\n\\n23\\n00:01:02,000 --> 00:01:05,200\\ne que devem ser evitadas informações de caráter efêmero (temporário).\\n\\n24\\n00:01:05,200 --> 00:01:06,950\\nEssa é a primeira regra,\\n\\n25\\n00:01:06,950 --> 00:01:08,500\\nou como chamam os wikipedistas:\\n\\n26\\n00:01:08,500 --> 00:01:09,400\\n\"O primeiro pilar\"\\n\\n27\\n00:01:09,400 --> 00:01:10,450\\ndesta enciclopédia.\\n\\n28\\n00:01:13,100 --> 00:01:15,600\\nMilhares de voluntários escrevem a enciclopédia.\\n\\n29\\n00:01:15,600 --> 00:01:18,200\\nSão pessoas com diversas origens,\\n\\n30\\n00:01:18,200 --> 00:01:19,100\\ndiversas crenças\\n\\n31\\n00:01:19,100 --> 00:01:20,450\\ne diversas ideias.\\n\\n32\\n00:01:21,000 --> 00:01:24,900\\nWikipédia não assumirá como próprio nenhum ponto de vista particular.\\n\\n33\\n00:01:25,150 --> 00:01:28,650\\nSendo assim, deve-se tentar oferecer as informações de todos os ângulos possíveis.\\n\\n34\\n00:01:28,900 --> 00:01:31,250\\nPor isso, o segundo pilar da Wikipédia\\n\\n35\\n00:01:31,250 --> 00:01:33,250\\nse chama ponto de vista neutro.\\n\\n36\\n00:01:35,000 --> 00:01:38,000\\nO terceiro pilar indica que a Wikipédia tem conteúdo livre.\\n\\n37\\n00:01:38,400 --> 00:01:41,100\\nTodos os textos estão disponíveis para qualquer fim\\n\\n38\\n00:01:41,350 --> 00:01:43,400\\nsempre que reutilizá-los especificando sua origem\\n\\n39\\n00:01:43,400 --> 00:01:46,100\\ne utilizando a mesma licença \"creative commons\".\\n\\n40\\n00:01:46,350 --> 00:01:48,100\\nNo caso das imagens,\\n\\n41\\n00:01:48,100 --> 00:01:49,600\\nas licenças podem variar,\\n\\n42\\n00:01:49,850 --> 00:01:52,600\\nmas a cópia e reutilização sempre estão permitidas.\\n\\n43\\n00:01:53,300 --> 00:01:56,300\\nNestes casos, deve-se olhar a licença em particular\\n\\n44\\n00:01:56,300 --> 00:01:58,500\\npara saber que restrições se aplicam.\\n\\n45\\n00:02:01,500 --> 00:02:04,300\\nCom tanta gente interagindo, às vezes há desavenças.\\n\\n46\\n00:02:04,550 --> 00:02:08,650\\nPor isso, o quarto pilar indica que os usuários devem respeitar-se mutuamente\\n\\n47\\n00:02:08,650 --> 00:02:10,200\\ne presumir boa fé.\\n\\n48\\n00:02:10,200 --> 00:02:13,900\\nA tolerância e cordialidade são fundamentais para o projeto.\\n\\n49\\n00:02:16,800 --> 00:02:19,500\\nWikipédia não tem normas fixas.\\n\\n50\\n00:02:19,750 --> 00:02:21,250\\nAinda que pareça curioso,\\n\\n51\\n00:02:20,800 --> 00:02:23,300\\neste é o quinto pilar desta enciclopédia.\\n\\n52\\n00:02:23,320 --> 00:02:27,000\\nPara colaborar, é imprescindível guiar-se pelo bom senso\\n\\n53\\n00:02:27,000 --> 00:02:30,200\\ne respeitar os wikipedistas que nos acompanham nessa aventura.\\n\\n54\\n00:02:30,450 --> 00:02:32,500\\nTodas as pessoas podem contribuir com algo.\\n\\n55\\n00:02:32,750 --> 00:02:34,750\\nHá quem desenvolva artigos complexos\\n\\n56\\n00:02:34,750 --> 00:02:37,300\\ne quem corrija pequenos erros de ortografia.\\n\\n57\\n00:02:37,300 --> 00:02:40,000\\nVocê também pode ajudar criando e corrigindo artigos.\\n\\n58\\n00:02:41,000 --> 00:02:42,000\\nToda edição é reversível.\\n\\n59\\n00:02:42,000 --> 00:02:46,250\\nSe cometer algum erro, sempre se pode recuperar a versão anterior.\\n\\n60\\n00:02:46,300 --> 00:02:48,500\\n\"Vá em frente\"! Seja wikipedista.\\n\\n61\\n00:03:11,250 --> 00:03:12,800\\neste vídeo é distribuído\\n\\n62\\n00:03:12,800 --> 00:03:14,100\\nsob a licença\\n\\n63\\n00:03:14,100 --> 00:03:18,500\\nCreative Commons - Atribuição e Compartilhamento pela mesma licença',\n", + " 'bytes': 4897,\n", + " 'sha1': '95y715mq0xjkq2roju02usoh8wukz8f',\n", + " 'parent_id': 128081606,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 71184731,\n", + " 'timestamp': '2012-05-15T20:02:01Z',\n", + " 'user': {'id': 1699066, 'text': 'Fúlvio'},\n", + " 'page': {'id': 19455025,\n", + " 'title': 'Edit Button.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'\\ufeff1 00:00:01,114 --> 00:00:02,414 Existe um botão \"editar\". 2 00:00:02,530 --> 00:00:03,830 Basta clicar sobre ele, 3 00:00:03,830 --> 00:00:06,664 encont...\\'',\n", + " 'text': '\\ufeff1\\n00:00:01,114 --> 00:00:02,414 \\nExiste um botão \"editar\".\\n\\n2\\n00:00:02,530 --> 00:00:03,830 \\nBasta clicar sobre ele,\\n\\n3\\n00:00:03,830 --> 00:00:06,664\\nencontrar o texto, editá-lo\\n\\n4\\n00:00:06,664 --> 00:00:09,110\\ne depois clicar em \"Salvar\". É muito fácil.\\n\\n5\\n00:00:09,752 --> 00:00:10,913\\nO bom da Wikipédia\\n\\n6\\n00:00:11,163 --> 00:00:12,236\\né que você pode mudar as coisas.\\n\\n7\\n00:00:12,236 --> 00:00:14,066\\nVocê não necessita permissão de ninguém\\n\\n8\\n00:00:14,066 --> 00:00:15,32\\ne é muito fácil.\\n\\n9\\n00:00:15,325 --> 00:00:17,809\\nNo início, pode parecer um pouco intimidante,\\n\\n10\\n00:00:17,809 --> 00:00:19,82\\nmas é realmente fácil.\\n\\n11\\n00:00:19,829 --> 00:00:23,777\\nAs pessoas não percebem isso. É como uma espécie de cegueira.\\n\\n12\\n00:00:23,777 --> 00:00:27,585\\nAs pessoas leem os artigos e não veem o botão \"Editar\".\\n\\n13\\n00:00:27,585 --> 00:00:29,721\\nClique sobre este botão e veja o que acontece.\\n\\n14\\n00:00:29,721 --> 00:00:31,625\\n\"Editar.\"\\n\\n15\\n00:00:31,625 --> 00:00:34,040\\nQuando você se abre para algo novo\\n\\n16\\n00:00:34,040 --> 00:00:35,433\\ne começa a editar,\\n\\n17\\n00:00:35,433 --> 00:00:38,289\\npodem ocorrer coisas de todo tipo\\n\\n18\\n00:00:38,289 --> 00:00:40,124\\ne é uma experiência realmente bonita.\\n\\n19\\n00:00:40,124 --> 00:00:41,679\\nÉ como, mais do que um simples início\\n\\n20\\n00:00:41,679 --> 00:00:45,139\\nde alguma forma, é um convite para mais vida.\\n\\n21\\n00:00:45,139 --> 00:00:48,018\\nCada vez que iniciamos um artigo, não gostamos\\n\\n22\\n00:00:48,018 --> 00:00:49,597\\nporque o encontramos feio.\\n\\n23\\n00:00:49,597 --> 00:00:53,614\\nMas espere... algumas horas\\n\\n24\\n00:00:53,614 --> 00:00:56,842\\ne veremos tornar-se um grande artigo.\\n\\n25\\n00:00:56,842 --> 00:00:59,396\\nO botão \"editar\": Clique sobre ele, mude algo,\\n\\n26\\n00:00:59,396 --> 00:01:02,043\\nsalve a página, e você terá feito diferença no mundo.\\n\\n27\\n00:01:02,043 --> 00:01:04,203\\n\"Salvar\".',\n", + " 'bytes': 1881,\n", + " 'sha1': '4y3gkc6naieeo733yazzy7zbv6otnn8',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 300915915,\n", + " 'timestamp': '2018-05-13T08:28:06Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 19456770,\n", + " 'title': 'Krazy Kat Bugologist 1916 silent.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '84user moved page [[TimedText:Krazy Kat Bugolist 1916 silent.ogv.pt.srt]] to [[TimedText:Krazy Kat Bugologist 1916 silent.ogv.pt.srt]]: ogv file renamed',\n", + " 'text': '1\\n00:00:22,000 --> 00:00:27,000\\nEu vou te ensinar Bugology, Ignatzes\\n\\n2 \\n00:00:40,000 --> 00:00:43,000 \\nAlgo me diz que...\\n\\n3 \\n00:00:58,000 --> 00:01:04,000 \\nOlha, Ignatz, uma abelha sonolenta\\n\\n4\\n00:01:04,000 --> 00:01:08,000 \\nUma abelha morta\\n\\n5\\n00:01:10,000 --> 00:01:14,000 \\nDeve estar fria\\n\\n6\\n00:01:22,000 --> 00:01:25,000 \\nPobre abelha\\n\\n7\\n00:01:25,000 --> 00:01:31,000 \\nAh, ela está feliz, está no céu das abelhas\\n\\n8\\n00:01:51,000 --> 00:01:56,000 \\nIgnatz, bem, você cometeu um erro\\n\\n9\\n00:01:58,000 --> 00:02:01,000 \\nESTAVA.\\n\\n10\\n00:02:45,000 --> 00:02:49,000 \\nDeixa comigo',\n", + " 'bytes': 580,\n", + " 'sha1': 'mb61eobthr6e4gojot20tadiofyfe2b',\n", + " 'parent_id': 71190063,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601722645,\n", + " 'timestamp': '2021-10-24T15:00:56Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 19456943,\n", + " 'title': 'Wikipedia User Name MEDIUM.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles; synchronization and (probably) partially the translation itself. Please review the changes of the text. Thanks a lot!',\n", + " 'text': '1\\n00:00:00,743 --> 00:00:02,617\\nMeu nome de utilizador é Bücherwürmlein\\n\\n2\\n00:00:02,667 --> 00:00:03,804\\nLila roja\\n\\n3\\n00:00:04,046 --> 00:00:05,086\\nyuyu\\n\\n4\\n00:00:05,202 --> 00:00:06,614\\nCbrown1023\\n\\n5\\n00:00:06,836 --> 00:00:08,192\\n22Kartika\\n\\n6\\n00:00:08,382 --> 00:00:10,298\\nMeu nome de utilizador é Church of emacs\\n\\n7\\n00:00:10,349 --> 00:00:11,954\\nBücherwürmlein é\\n\\n8\\n00:00:11,987 --> 00:00:13,999\\n\"pequeno rato de biblioteca\" em alemão\\n\\n9\\n00:00:14,049 --> 00:00:15,275\\nadjou epi [???]\\n\\n10\\n00:00:15,300 --> 00:00:16,507\\nÉ Chomsky1\\n\\n11\\n00:00:16,684 --> 00:00:18,255\\nnasir8891\\n\\n12\\n00:00:18,336 --> 00:00:19,395\\nNotafish\\n\\n13\\n00:00:19,421 --> 00:00:21,200\\nvocê sabe: «not a fish»\\n(não um peixe)\\n\\n14\\n00:00:21,227 --> 00:00:22,273\\nTheo10011\\n\\n15\\n00:00:22,369 --> 00:00:23,815\\nMeu nome de utilizador é Henna\\n\\n16\\n00:00:23,836 --> 00:00:24,749\\nMisou\\n\\n17\\n00:00:24,781 --> 00:00:26,264\\nMeu nome de utilizador é Lyzzy\\n\\n18\\n00:00:26,297 --> 00:00:29,213\\nwittylama, é um anagrama\\nde meu nome real, Liam Wyatt\\n\\n19\\n00:00:29,470 --> 00:00:30,508\\nDeryck Chan\\n\\n20\\n00:00:30,546 --> 00:00:31,791\\nVulpeto\\n\\n21\\n00:00:31,892 --> 00:00:33,258\\nRajeshPandey\\n\\n22\\n00:00:33,312 --> 00:00:36,637\\nMeu nome de utilizador é Steven Walling,\\neste é meu nome real\\n\\n23\\n00:00:36,748 --> 00:00:38,393\\nMeu nome de utilizador é Waldir\\n\\n24\\n00:00:38,462 --> 00:00:40,897\\nMeu nome de utilizador é Mstislavl\\n\\n25\\n00:00:41,028 --> 00:00:42,346\\nAbbasjnr,\\n\\n26\\n00:00:42,429 --> 00:00:44,218\\nA-B-B-A-S-J-N-R\\n\\n27\\n00:00:44,739 --> 00:00:47,490\\nMeu nome é Jdforrester,\\ne edito a Wikipédia',\n", + " 'bytes': 1551,\n", + " 'sha1': 'mksiycen5zbpwnv3dd9howam5pakxpz',\n", + " 'parent_id': 71190582,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 71191612,\n", + " 'timestamp': '2012-05-16T01:26:07Z',\n", + " 'user': {'id': 1699066, 'text': 'Fúlvio'},\n", + " 'page': {'id': 19457220,\n", + " 'title': 'Welcome to globallives 2.0.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:00,000 --> 00:00:04,000 ♫ Música hip-hop do Brasil em segundo plano ♫ 2 00:00:15,000 --> 00:00:23,000 O objectivo do Global Lives Project é gr...'\",\n", + " 'text': '\\ufeff1\\n00:00:00,000 --> 00:00:04,000\\n♫ Música hip-hop do Brasil em segundo plano ♫\\n\\n2\\n00:00:15,000 --> 00:00:23,000\\nO objectivo do Global Lives Project é gravar, em vídeo, 24 horas das vidas diárias de 10 pessoas ao redor do mundo.\\n\\n3\\n00:00:23,000 --> 00:00:27,000\\nEstamos neste momento em São Paulo, Brasil, realizando nossa segunda filmagem para o projecto.\\n\\n4\\n00:00:30,000 --> 00:00:34,000\\nSomos um grupo de dezenas de cineastas, artistas, arquitetos, desenvolvedores\\n\\n5\\n00:00:34,000 --> 00:00:38,000\\ne pessoas comuns ao redor do mundo.\\n\\n6\\n00:00:39,000 --> 00:00:46,000\\nVamos conseguir 240 horas de material, e a ideia é tomar todo este material e criar uma instalação de vídeo.\\n\\n7\\n00:00:46,000 --> 00:00:49,000\\nOs visitantes desta instalação poderão passar por dez salas diferentes.\\n\\n8\\n00:00:49,000 --> 00:00:55,000\\nE cada uma destas salas terão o material não-modificado de cada um de nossos protagonistas.\\n\\n9\\n00:00:56,000 --> 00:01:02,000\\nO objectivo é remover as pessoas de suas vidas cotidianas e mostrar a elas as experiências de outros tipos de pessoas\\n\\n10\\n00:01:02,000 --> 00:01:04,000\\nque vivem ao redor do mundo.\\n\\n11\\n00:01:07,000 --> 00:01:14,000\\nA primeira filmagem do Global Lives ocorreu em São Francisco, Califórnia, sobre a vida do condutor de bondes, James Bullock.\\n\\n12\\n00:01:25,000 --> 00:01:29,000\\nOutras filmagens adicionais estão sendo realizadas em outros países.\\n\\n13\\n00:01:52,000 --> 00:01:59,000\\nTodos os nossos vídeos farão parte de uma vídeo-biblioteca participativa sobre as experiências dos seres humanos\\n\\n14\\n00:01:59,000 --> 00:02:03,000\\ncom entrada gratuita e um convite ao público para fazer doações.\\n\\n15\\n00:02:34,000 --> 00:02:38,000\\nAtravés da inmersão nestes pequenos, mas às vezes diversos, exemplos da existência humana diária\\n\\n16\\n00:02:38,000 --> 00:02:44,000\\nos espectadores serão desafiados a repenasar suas vidas e suas ligações com o resto do mundo.\\n\\n17\\n00:02:52,000 --> 00:02:58,000\\nVá ao nosso sítio web em GlobalLives.org para saber como envolver-se no Global Lives Project.\\n\\n18\\n00:05:05,000 --> 00:05:06,000\\n.\\n\\n19\\n00:05:06,000 --> 00:05:07,000\\n.\\n\\n20\\n00:05:07,000 --> 00:05:08,000\\n.',\n", + " 'bytes': 2167,\n", + " 'sha1': 'oab9qg89r6nru9sgn51u4u5f6prp3tp',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90814558,\n", + " 'timestamp': '2013-02-16T19:38:57Z',\n", + " 'user': {'id': 286361, 'text': 'GoEThe'},\n", + " 'page': {'id': 19890825,\n", + " 'title': 'Wikipedia video tutorial-1-Editing-en.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01 --> 00:00:03\\nOlá! Chamo-me Teresa.\\n\\n2\\n00:00:03 --> 00:00:6\\nBom conhecê-los aqui na Wikipédia!\\n\\n3\\n00:00:6 --> 00:00:10\\nComo devem saber, a Wikipédia é uma enciclopédia livre escrita pelos seus utilizadores: pessoas como você!\\n\\n4\\n00:00:10 --> 00:00:16\\nHoje, de entre mais que 250 milhões de pessoas que visitaram a Wikipédia,\\n\\n5\\n00:00:16 --> 00:00:19\\nmais de 10 milhões de artigos foram contribuídos\\n\\n6\\n00:00:19 --> 00:00:20\\npor mais de 500 mil editores\\n\\n7\\n00:00:20 --> 00:00:23\\nem mais de 250 línguas.\\n\\n8\\n00:00:23 --> 00:00:27\\nÉ fácil partilhar o seu conhecimento com todos os utilizadores da Wikipédia à volta do mundo.\\n\\n9\\n00:00:27 --> 00:00:29\\nNeste preciso momento, pode ajudar a melhorar \\n\\n10\\n00:00:29 --> 00:00:32\\na melhor e maior enciclopédia livre do mundo.\\n\\n11\\n00:00:32 --> 00:00:34\\nDeixem-me mostrar-lhes como é fácil.\\n\\n12\\n00:00:38 --> 00:00:41\\nQuando procura alguma coisa na internet, um dos primeiros resultados que obtém é a Wikipédia.\\n\\n13\\n00:00:41 --> 00:00:46\\nPor isso, é capaz de querer começar a sua procura directamente na Wikipédia.\\n\\n14\\n00:00:46 --> 00:00:47\\nDê uma vista de olhos nisto:\\n\\n15\\n00:00:48 --> 00:00:52\\nVerá que grande parte dos artigos são abrangentes e estão actualizados.\\n\\n16\\n00:00:52 --> 00:00:56\\nNo entanto, pode encontrar artigos que sejam demasiado curtos ou que precisavam de ser melhorados.\\n\\n17\\n00:00:56 --> 00:00:59\\nE quem melhor para os melhorar do que você?\\n\\n18\\n00:00:59 --> 00:01:03\\nA Wikipédia convida-o a ajudar a construir uma enciclopédia ainda melhor.\\n\\n19\\n00:01:03 --> 00:01:09\\nEm mais de 90 por cento dos casos não precisa de ser um génio para contribuir.\\n\\n20\\n00:01:09 --> 00:01:11\\nSó precisa de partilhar o que sabe.\\n\\n21\\n00:01:11 --> 00:01:15\\nE para isso, só precisa de seguir três pequenos passos:\\n\\n22\\n00:01:15 --> 00:01:18\\nPasso 1: Clique no butão de editar\\n\\n23\\n00:01:18 --> 00:01:21\\nPasso 2: Escrever o texto\\n\\n24\\n00:01:21 --> 00:01:26\\ne finalmente, Passo 3: Editar o sumário e clicar \\'Gravar página\\'\\n\\n25\\n00:01:26 --> 00:01:28\\nFoi ou não foi simples?\\n\\n26\\n00:01:28 --> 00:01:32\\nE nem precisa de estar autenticado ou ter uma conta para fazer isso.\\n\\n27\\n00:01:32 --> 00:01:33\\nRecapitulando:\\n\\n28\\n00:01:33 --> 00:01:36\\nO primeiro passo foi o botão de editar.\\n\\n29\\n00:01:36 --> 00:01:38\\nCá está ele no cimo do artigo.\\n\\n30\\n00:01:38 --> 00:01:43\\nCarregue no botão e será direccionado para esta página.\\n\\n31\\n00:01:43 --> 00:01:45\\nSerá aqui que irá fazer as mudanças.\\n\\n32\\n00:01:48 --> 00:01:52\\nPara fazer uma mudança, coloque o cursor no local no texto onde quer escrever ou apagar alguma coisa.\\n\\n33\\n00:01:52 --> 00:01:57\\nE depois simplesmente faça a mudança como faria em qualquer outro documento.\\n\\n34\\n00:02:02 --> 00:02:07\\nNão se preocupe: se fizer algo errado, é muito fácil voltar à versão anterior.\\n\\n35\\n00:02:08 --> 00:02:13\\nFinalmente o passo três: Logo abaixo desta área, edite o sumário\\n\\n36\\n00:02:13 --> 00:02:23\\ndescrevendo resumidamente as mudanças que fez e carregue no botão \\'Guardar página\\' para guardar as mudanças.\\n\\n37\\n00:02:23 --> 00:02:30\\nQuando o artigo reaparecer, as suas mudanças estarão instantaneamente \\'\\'online\\'\\' e visíveis.\\n\\n38\\n00:02:30 --> 00:02:35\\nEstes três passos é tudo o que é preciso para editar a Wikipédia.\\n\\n39\\n00:02:36 --> 00:02:38\\nJá sei o que está a pensar: está a pensar\\n\\n40\\n00:02:38 --> 00:02:41\\n\"Uau! Agora posso reescrever a História!\"\\n\\n41\\n00:02:41 --> 00:02:44\\nBem, meu amigo, não pode.\\n\\n42\\n00:02:44 --> 00:02:49\\nComo poderá ver num outro tutorial, a Wikipédia tem vários mecanismos para se defender\\n\\n43\\n00:02:49 --> 00:02:51\\ndesse tipo de comportamento.\\n\\n44\\n00:02:51 --> 00:02:54\\nInformação falsa será apagada em minutos se não segundos.\\n\\n45\\n00:02:54 --> 00:02:55\\nE é isso que faz com que a Wikipédia seja uma fonte fiável e abrangente.',\n", + " 'bytes': 3814,\n", + " 'sha1': '5jbg16kh7imyyw07insdisdq84n28xc',\n", + " 'parent_id': 90814331,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 121420622,\n", + " 'timestamp': '2014-04-15T08:27:44Z',\n", + " 'user': {'id': 2742126, 'text': 'Jan Ainali (WMSE)'},\n", + " 'page': {'id': 20081273,\n", + " 'title': 'Share Your Knowledge 1 Why glamwiki.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'typo',\n", + " 'text': '1\\n00:00:09,053 --> 00:00:13,001\\nCultural institutions own and create contents\\n\\n2\\n00:00:13,001 --> 00:00:14,065\\nthat they want to share.\\n\\n3\\n00:00:15,008 --> 00:00:15,096\\nUnfortunately\\n\\n4\\n00:00:15,096 --> 00:00:17,059\\neven though some of this content\\n\\n5\\n00:00:17,059 --> 00:00:19,028\\nhave been digitized,\\n\\n6\\n00:00:19,028 --> 00:00:21,057\\ncontent is not always available\\n\\n7\\n00:00:21,057 --> 00:00:23,076\\nor accessible to everyone.\\n\\n8\\n00:00:23,076 --> 00:00:25,076\\nIf all your books and catalogues\\n\\n9\\n00:00:25,076 --> 00:00:27,003\\nhave run out\\n\\n10\\n00:00:27,003 --> 00:00:30,022\\nand you don’t have the resources to republish them,\\n\\n11\\n00:00:30,022 --> 00:00:33,076\\nIf your files are badly organised,\\n\\n12\\n00:00:33,076 --> 00:00:36,055\\nand if you have no funds\\n\\n13\\n00:00:36,055 --> 00:00:38,026\\nMaybe you would be interested\\n\\n14\\n00:00:38,026 --> 00:00:40,011\\nin Share Your Knowledge.\\n\\n15\\n00:00:40,011 --> 00:00:41,068\\nTo begin on this path,\\n\\n16\\n00:00:41,068 --> 00:00:43,053\\nall you need to do is to release\\n\\n17\\n00:00:43,053 --> 00:00:48,018\\nall your content under the CC-BY-SA license.\\n\\n18\\n00:00:48,018 --> 00:00:50,057\\nThis allows other people to distribute, edit, and\\n\\n19\\n00:00:50,057 --> 00:00:53,051\\ncreate artbooks from the original files,\\n\\n20\\n00:00:53,051 --> 00:00:56,018\\neven for commercial purposes.\\n\\n21\\n00:00:56,048 --> 00:00:58,081\\nThe new artwork must also be published\\n\\n22\\n00:00:58,081 --> 00:01:00,035\\nunder the same license\\n\\n23\\n00:01:00,035 --> 00:01:02,088\\nand credit the original creator.\\n\\n24\\n00:01:02,088 --> 00:01:07,046\\nThen, through Wikipedia, your knowledge is shared with the world for free.\\n\\n25\\n00:01:07,046 --> 00:01:09,083\\nHere are just two examples:\\n\\n26\\n00:01:09,083 --> 00:01:11,052\\nThe German Federal Archive\\n\\n27\\n00:01:11,052 --> 00:01:15,017\\nreleased lower-resolution images on Wikimedia Commons.\\n\\n28\\n00:01:15,017 --> 00:01:19,043\\nThis tripled the number high-resolution images sold by the Archive.\\n\\n29\\n00:01:19,043 --> 00:01:22,063\\nItaly’s Cariplo Foundation has created\\n\\n30\\n00:01:22,063 --> 00:01:24,027\\nand uploaded to Wikipedia\\n\\n31\\n00:01:24,027 --> 00:01:28,054\\n247 Italian and English articles\\n\\n32\\n00:01:28,054 --> 00:01:34,010\\nas well as 854 artists and their works out its art collection.\\n\\n33\\n00:01:34,010 --> 00:01:36,006\\nShare Your Knowledge will help you\\n\\n34\\n00:01:36,006 --> 00:01:38,017\\nto organize your documentation\\n\\n35\\n00:01:38,017 --> 00:01:39,014\\nin an efficient way,\\n\\n36\\n00:01:39,014 --> 00:01:41,013\\nand assist you with planning\\n\\n37\\n00:01:41,013 --> 00:01:42,071\\nhow to share all the archives\\n\\n38\\n00:01:42,071 --> 00:01:44,057\\nyou will create in the future.\\n\\n39\\n00:01:44,057 --> 00:01:45,067\\nIt’s free,\\n\\n40\\n00:01:45,067 --> 00:01:47,018\\nand increases the visibility\\n\\n41\\n00:01:47,018 --> 00:01:49,082\\nof your organization and your content.\\n\\n42\\n00:01:49,082 --> 00:01:52,041\\nSo, why not do it?',\n", + " 'bytes': 2840,\n", + " 'sha1': 'pt3lau9imnukk0386hxu4mj9lj446jz',\n", + " 'parent_id': 74060793,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 73537711,\n", + " 'timestamp': '2012-06-30T18:30:36Z',\n", + " 'user': {'id': 7000, 'text': 'Seb35'},\n", + " 'page': {'id': 20082792,\n", + " 'title': 'Share Your Knowledge 1 Why glamwiki.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'traduction en français',\n", + " 'text': '1\\n00:00:09,053 --> 00:00:13,001\\nLes institutions culturelles possèdent et créent des contenus\\n\\n2\\n00:00:13,001 --> 00:00:14,065\\nqu’elles désirent partager.\\n\\n3\\n00:00:15,008 --> 00:00:15,096\\nCependant,\\n\\n4\\n00:00:15,096 --> 00:00:17,059\\nbien que ce contenu puisse avoir été\\n\\n5\\n00:00:17,059 --> 00:00:19,028\\nen partie numérisé,\\n\\n6\\n00:00:19,028 --> 00:00:21,057\\nle contenu n’est pas toujours disponible\\n\\n7\\n00:00:21,057 --> 00:00:23,076\\nou accessible à tout le monde.\\n\\n8\\n00:00:23,076 --> 00:00:25,076\\nSi tous vos livres et catalogues\\n\\n9\\n00:00:25,076 --> 00:00:27,003\\nvoient leurs droits expirés\\n\\n10\\n00:00:27,003 --> 00:00:30,022\\net si vous n’avez pas les ressources pour les republier,\\n\\n11\\n00:00:30,022 --> 00:00:33,076\\nSi vos fichiers sont mal organisés,\\n\\n12\\n00:00:33,076 --> 00:00:36,055\\net si vous n’avez pas assez de fonds\\n\\n13\\n00:00:36,055 --> 00:00:38,026\\nAlors vous serez peut-être intéressés\\n\\n14\\n00:00:38,026 --> 00:00:40,011\\npar Partager votre Connaissance.\\n\\n15\\n00:00:40,011 --> 00:00:41,068\\nPour s’engager dans cette voie,\\n\\n16\\n00:00:41,068 --> 00:00:43,053\\ntout ce que vous avez à faire est de diffuser\\n\\n17\\n00:00:43,053 --> 00:00:48,018\\ntout votre contenu sous licence CC-BY-SA.\\n\\n18\\n00:00:48,018 --> 00:00:50,057\\nCeci permet à d’autres personnes de distribuer, éditer et\\n\\n19\\n00:00:50,057 --> 00:00:53,051\\ncréer des œuvres à partir des fichiers originaux,\\n\\n20\\n00:00:53,051 --> 00:00:56,018\\ny compris à des fins commerciales.\\n\\n21\\n00:00:56,048 --> 00:00:58,081\\nLa nouvelle œuvre doit aussi être publiée\\n\\n22\\n00:00:58,081 --> 00:01:00,035\\nsous la même licence\\n\\n23\\n00:01:00,035 --> 00:01:02,088\\net créditer le créateur original.\\n\\n24\\n00:01:02,088 --> 00:01:07,046\\nEnsuite, à travers Wikipédia, votre connaissance est partagée gratuitement avec le monde entier.\\n\\n25\\n00:01:07,046 --> 00:01:09,083\\nVoici deux exemples\\xa0:\\n\\n26\\n00:01:09,083 --> 00:01:11,052\\nLes Archives fédérales allemandes\\n\\n27\\n00:01:11,052 --> 00:01:15,017\\nont diffusé des images basse résolution sur Wikimedia Commons.\\n\\n28\\n00:01:15,017 --> 00:01:19,043\\nCeci a triplé le nombre d’images haute résolution vendues par les Archives.\\n\\n29\\n00:01:19,043 --> 00:01:22,063\\nEn Italie, la Fondation Cariplo a créé\\n\\n30\\n00:01:22,063 --> 00:01:24,027\\net partagé sur Wikipédia\\n\\n31\\n00:01:24,027 --> 00:01:28,054\\n247 articles en italien et en anglais\\n\\n32\\n00:01:28,054 --> 00:01:34,010\\nainsi que 854 artistes et leurs œuvres issus de sa collection d’art.\\n\\n33\\n00:01:34,010 --> 00:01:36,006\\nPartager votre Connaissance vous aidera\\n\\n34\\n00:01:36,006 --> 00:01:38,017\\nà organiser votre documentation\\n\\n35\\n00:01:38,017 --> 00:01:39,014\\nde façon efficace,\\n\\n36\\n00:01:39,014 --> 00:01:41,013\\net vous assistera à planifier\\n\\n37\\n00:01:41,013 --> 00:01:42,071\\ncomment partager toutes les archives\\n\\n38\\n00:01:42,071 --> 00:01:44,057\\nque vous créerez dans le futur.\\n\\n39\\n00:01:44,057 --> 00:01:45,067\\nC’est gratuit,\\n\\n40\\n00:01:45,067 --> 00:01:47,018\\net augmente la visibilité\\n\\n41\\n00:01:47,018 --> 00:01:49,082\\nde votre organisation et de votre contenu.\\n\\n42\\n00:01:49,082 --> 00:01:52,041\\nDonc, pourquoi ne pas le faire\\xa0?',\n", + " 'bytes': 3104,\n", + " 'sha1': '92x8gunv9un256f8m013ama73m6uegq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 272838086,\n", + " 'timestamp': '2017-12-18T14:27:02Z',\n", + " 'user': {'id': 25480, 'text': 'Ainali'},\n", + " 'page': {'id': 20083222,\n", + " 'title': 'Share Your Knowledge 2 How glamwiki.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '- -',\n", + " 'text': '1\\n00:00:08,086 --> 00:00:10,081\\nAre you an exhibition space,\\n\\n2\\n00:00:10,081 --> 00:00:13,071\\nan archive, or a cultural institution?\\n\\n3\\n00:00:13,071 --> 00:00:14,092\\nDo you want to share your content\\n\\n4\\n00:00:14,092 --> 00:00:16,038\\nand increase the visibility\\n\\n5\\n00:00:16,038 --> 00:00:18,047\\nor your artworks and knowledge?\\n\\n6\\n00:00:18,047 --> 00:00:21,041\\nShare Your Knowledge is here to help you out.\\n\\n7\\n00:00:21,041 --> 00:00:22,000\\nHow?\\n\\n8\\n00:00:22,000 --> 00:00:25,049\\nFirst, you need to follow Share Your Knowledge guidelines.\\n\\n9\\n00:00:25,049 --> 00:00:29,000\\nThis means releasing all your digitised content online\\n\\n10\\n00:00:29,000 --> 00:00:33,014\\nunder the CC BY-SA license.\\n\\n11\\n00:00:33,014 --> 00:00:36,001\\nThen, inform all your contacts about the change\\n\\n12\\n00:00:36,001 --> 00:00:40,017\\nin license and upload your content to Wikipedia.\\n\\n13\\n00:00:40,017 --> 00:00:42,015\\nFinally, watch how your content\\n\\n14\\n00:00:42,015 --> 00:00:44,038\\nis accessed and used.\\n\\n15\\n00:00:45,018 --> 00:00:48,035\\nWhat is the CC BY-SA license?\\n\\n16\\n00:00:48,035 --> 00:00:52,003\\nCC stands for Creative Commons.\\n\\n17\\n00:00:52,003 --> 00:00:55,042\\nThis means that an author can choose which copyright\\n\\n18\\n00:00:55,042 --> 00:00:58,053\\nhe or she would like to apply to their artwork\\n\\n19\\n00:00:58,053 --> 00:01:00,032\\nwhen they put it online.\\n\\n20\\n00:01:00,032 --> 00:01:03,011\\nBY means that anyone can use\\n\\n21\\n00:01:03,011 --> 00:01:04,091\\nyour material freely\\n\\n22\\n00:01:04,091 --> 00:01:07,022\\nand for free on condition\\n\\n23\\n00:01:07,022 --> 00:01:09,027\\nthat you are acknowledged and\\n\\n24\\n00:01:09,027 --> 00:01:11,059\\ncredited on the new artwork.\\n\\n25\\n00:01:11,059 --> 00:01:13,041\\nSA means that any artwork,\\n\\n26\\n00:01:13,041 --> 00:01:15,069\\nresulting from your material,\\n\\n27\\n00:01:15,069 --> 00:01:18,086\\nmust be distributed under the same license.\\n\\n28\\n00:01:18,086 --> 00:01:20,030\\nIs is like starting out a\\n\\n29\\n00:01:20,030 --> 00:01:22,045\\n“creative commons infection”.\\n\\n30\\n00:01:24,010 --> 00:01:26,045\\nSo, what do I have to do?\\n\\n31\\n00:01:26,045 --> 00:01:30,006\\nEmbed the CC BY-SA logo on\\n\\n32\\n00:01:30,006 --> 00:01:32,077\\nall the pages that you have your content.\\n\\n33\\n00:01:32,077 --> 00:01:35,056\\nIf you want to share ALL your material at once,\\n\\n34\\n00:01:35,056 --> 00:01:38,039\\nembed the logo on your entire website.\\n\\n35\\n00:01:38,039 --> 00:01:40,066\\nThis will make your content available\\n\\n36\\n00:01:40,066 --> 00:01:43,072\\non the web under the CC license.\\n\\n37\\n00:01:43,072 --> 00:01:46,098\\nWhat about the archive material that is not yet online?\\n\\n38\\n00:01:46,098 --> 00:01:49,028\\nIf some of your content has been created\\n\\n39\\n00:01:49,028 --> 00:01:51,087\\nby someone outside your organization,\\n\\n40\\n00:01:51,087 --> 00:01:54,010\\nyou will have to ask for their permission.\\n\\n41\\n00:01:54,010 --> 00:01:56,018\\nThis way, you can release catalogues,\\n\\n42\\n00:01:56,018 --> 00:01:59,003\\nDVDs, videos, movies,\\n\\n43\\n00:01:59,003 --> 00:02:00,044\\ntrailers and images\\n\\n44\\n00:02:00,044 --> 00:02:02,054\\nthat are relevant to your content.\\n\\n45\\n00:02:02,054 --> 00:02:04,081\\nTo make the project even more visible,\\n\\n46\\n00:02:04,081 --> 00:02:06,084\\nlet your contacts know about it,\\n\\n47\\n00:02:06,084 --> 00:02:09,050\\nand if you really want to enhance your content,\\n\\n48\\n00:02:09,050 --> 00:02:12,015\\ntell Wikipedia volunteers!\\n\\n49\\n00:02:12,015 --> 00:02:13,095\\nBy doing this,\\n\\n50\\n00:02:13,095 --> 00:02:16,036\\nyou will contribute your valuable content\\n\\n51\\n00:02:16,036 --> 00:02:19,063\\nto the most used free encyclopaedia in the world,\\n\\n52\\n00:02:19,063 --> 00:02:23,021\\nwith an audience of 400 million visitors!\\n\\n53\\n00:02:24,055 --> 00:02:26,091\\nWho can upload contents on Wikipedia?\\n\\n54\\n00:02:27,019 --> 00:02:27,092\\nYou,\\n\\n55\\n00:02:27,092 --> 00:02:29,050\\nyour colleagues,\\n\\n56\\n00:02:29,050 --> 00:02:30,074\\nyour collaborators,\\n\\n57\\n00:02:30,074 --> 00:02:32,078\\nand all Wikipedia volunteers.\\n\\n58\\n00:02:32,078 --> 00:02:34,097\\nOnce the content is online,\\n\\n59\\n00:02:34,097 --> 00:02:36,093\\nand following Wikipedia’s rules,\\n\\n60\\n00:02:36,093 --> 00:02:39,041\\nanybody will be able to correct a mistake,\\n\\n61\\n00:02:39,041 --> 00:02:40,097\\nadd an image,\\n\\n62\\n00:02:40,097 --> 00:02:43,058\\ntranslate an article into another language,\\n\\n63\\n00:02:43,058 --> 00:02:46,046\\nand update any new information.\\n\\n64\\n00:02:46,046 --> 00:02:49,047\\nWikipedia also has tools for you\\n\\n65\\n00:02:49,047 --> 00:02:52,001\\nto evaluate how effective\\n\\n66\\n00:02:52,001 --> 00:02:54,013\\nthis Share Your Knowledge project\\n\\n67\\n00:02:54,013 --> 00:02:58,019\\nhas been at increasing your content and its visibility!\\n\\n68\\n00:02:58,019 --> 00:03:00,066\\nHurry up and join\\n\\n69\\n00:03:00,066 --> 00:03:03,039\\nShare Your Knowledge',\n", + " 'bytes': 4660,\n", + " 'sha1': 'o361j71p5363i74zjdz0zhujuzgk3vp',\n", + " 'parent_id': 73539638,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 509460493,\n", + " 'timestamp': '2020-11-02T20:21:30Z',\n", + " 'user': {'id': 433521, 'text': 'AlessandroAM'},\n", + " 'page': {'id': 20098398,\n", + " 'title': 'President Obama on Death of Osama bin Laden.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'fix',\n", + " 'text': \"1\\n00:00:00,704 --> 00:00:02,175\\nBuonasera\\n\\n2\\n00:00:02,175 --> 00:00:06,952\\nStanotte, posso riferire al popolo americano, e al mondo\\n\\n3\\n00:00:06,952 --> 00:00:11,3\\nche gli Stati Uniti hanno condotto un'operazione che ha ucciso Osama bin Laden\\n\\n4\\n00:00:11,3 --> 00:00:13,672\\nil leader di Al-Qaeda\\n\\n5\\n00:00:13,672 --> 00:00:21,359\\ne il terrorista che è responsabile della morte di migliaia di uomini, donne e bambini innocenti\\n\\n6\\n00:00:21,359 --> 00:00:25,204\\nSono passati quasi dieci anni da quel giorno luminoso di settembre che è stato oscurato \\n\\n7\\n00:00:25,204 --> 00:00:29,216\\ndal peggior attacco al popolo americano nella nostra storia\\n\\n8\\n00:00:29,216 --> 00:00:33,994\\nLe immagini dell'undici settembre sono impresse nella nostra memoria nazionale\\n\\n9\\n00:00:33,994 --> 00:00:38,775\\nAerei dirottati che attraversano il cielo chiaro di settembre\\n\\n10\\n00:00:38,775 --> 00:00:41,784\\nle Torri Gemelle che crollano al suolo\\n\\n11\\n00:00:41,784 --> 00:00:45,059\\nfumo nero che svolazza dal Pentagono\\n\\n12\\n00:00:45,059 --> 00:00:49,47\\ni rottami del volo 93 a Shanksville, in Pennsylvania\\n\\n13\\n00:00:49,47 --> 00:00:55,554\\ndove le azioni di eroici cittadini hanno salvato ancora più strazio e distruzione\\n\\n14\\n00:00:55,554 --> 00:01:00,301\\nEppure sappiamo che le peggiori immagini sono quelle invisibili al mondo\\n\\n15\\n00:01:00,301 --> 00:01:03,175\\nil posto vuoto a tavola\\n\\n16\\n00:01:03,175 --> 00:01:07,355\\nbambini che sono stati costretti a crescere senza la propria madre, o il proprio padre\\n\\n17\\n00:01:07,355 --> 00:01:12,534\\ngenitori che non avrebbero mai conosciuto la sensazione dell'abbraccio del proprio bambino\\n\\n18\\n00:01:12,534 --> 00:01:16,279\\nquasi tremila cittadini presi tra noi\\n\\n19\\n00:01:16,279 --> 00:01:19,79\\nlasciando un vuoto profondo nei nostri cuori\\n\\n20\\n00:01:19,79 --> 00:01:22,998\\nL'11 settembre 2001\\n\\n21\\n00:01:22,998 --> 00:01:24,933\\nnel nostro tempo del dolore\\n\\n22\\n00:01:24,933 --> 00:01:27,41\\nil popolo americano è giunto unito\\n\\n23\\n00:01:27,41 --> 00:01:29,248\\nAbbiamo offerto una mano ai nostri vicini\\n\\n24\\n00:01:29,248 --> 00:01:32,255\\ne abbiamo offerto il nostro sangue ai feriti\\n\\n25\\n00:01:32,255 --> 00:01:35,465\\nAbbiamo riaffermato i nostri legami gli uni agli altri\\n\\n26\\n00:01:35,465 --> 00:01:39,007\\ne il nostro amore di comunità e paese\\n\\n27\\n00:01:39,007 --> 00:01:41,749\\nQuel giorno, non importa da dove veniamo\\n\\n28\\n00:01:41,749 --> 00:01:43,753\\nquale dio preghiamo\\n\\n29\\n00:01:43,753 --> 00:01:46,262\\no la nostra razza o etnia\\n\\n30\\n00:01:46,262 --> 00:01:50,741\\nsiamo stati uniti come un'unica famiglia americana\\n\\n31\\n00:01:50,741 --> 00:01:54,752\\nSiamo stati uniti anche nella nostra determinazione a proteggere la nostra nazione\\n\\n32\\n00:01:54,752 --> 00:02:00,332\\ne nell'assicurare alla giustizia coloro che hanno commesso questo feroce attacco\\n\\n33\\n00:02:00,332 --> 00:02:04,378\\nAbbiamo subito appreso che gli attacchi dell'11 settembre erano stati effettuati da Al-Qaeda\\n\\n34\\n00:02:04,378 --> 00:02:06,984\\nun'organizzazione guidata da Osama bin Laden\\n\\n35\\n00:02:06,984 --> 00:02:09,826\\nche ha apertamente dichiarato guerra agli Stati Uniti\\n\\n36\\n00:02:09,826 --> 00:02:14,506\\ne si è impegnata a uccidere innocenti nel nostro paese e in tutto il mondo\\n\\n37\\n00:02:14,506 --> 00:02:17,346\\nE così siamo entrati in guerra contro Al-Qaeda\\n\\n38\\n00:02:17,346 --> 00:02:22,694\\nper proteggere i nostri cittadini, i nostri amici e i nostri alleati\\n\\n39\\n00:02:22,694 --> 00:02:27,91\\nNegli ultimi dieci anni, grazie al lavoro instancabile ed eroico dei nostri militari\\n\\n40\\n00:02:27,91 --> 00:02:32,856\\ne dei nostri professionisti della lotta al terrorismo, abbiamo fatto passi da gigante in questo sforzo\\n\\n41\\n00:02:32,856 --> 00:02:37,233\\nabbiamo interrotto gli attacchi terroristici e rafforzato la difesa della nostra patria\\n\\n42\\n00:02:37,233 --> 00:02:39,809\\nIn Afghanistan abbiamo rimosso il governo talebano\\n\\n43\\n00:02:39,809 --> 00:02:43,789\\nche aveva dato protezione e supporto a Bin Laden e Al-Qaeda\\n\\n44\\n00:02:43,789 --> 00:02:46,595\\nE in tutto il mondo abbiamo lavorato con i nostri amici e alleati\\n\\n45\\n00:02:46,595 --> 00:02:49,536\\nper catturare o uccidere decine di terroristi di Al-Qaeda\\n\\n46\\n00:02:49,536 --> 00:02:54,315\\ncompresi molti che facevano parte del complotto dell'undici settembre\\n\\n47\\n00:02:54,315 --> 00:02:57,323\\nEppure Osama bin Laden aveva evitato la cattura \\n\\n48\\n00:02:57,323 --> 00:03:01,301\\ned era scappato attraverso il confine afgano in Pakistan\\n\\n49\\n00:03:01,301 --> 00:03:04,543\\nNel frattempo, Al-Qaeda ha continuato ad operare lungo quel confine\\n\\n50\\n00:03:04,543 --> 00:03:09,123\\ne opera tramite i suoi affiliati in tutto il mondo\\n\\n51\\n00:03:09,123 --> 00:03:11,496\\nE così poco dopo aver assunto l'incarico\\n\\n52\\n00:03:11,496 --> 00:03:15,039\\nho ordinato a Leon Panetta, il direttore della CIA,\\n\\n53\\n00:03:15,039 --> 00:03:20,756\\ndi fare dell'uccisione o della cattura di Bin Laden la massima priorità della nostra guerra contro Al-Qaeda\\n\\n54\\n00:03:20,756 --> 00:03:26,071\\npur continuando i nostri sforzi generali per interrompere, smantellare e sconfiggere la sua rete\\n\\n55\\n00:03:26,071 --> 00:03:33,256\\nPoi, lo scorso agosto, dopo anni di minuzioso lavoro della nostra intelligence\\n\\n56\\n00:03:33,256 --> 00:03:36,7\\nsono stato informato su una possibile pista per Bin Laden\\n\\n57\\n00:03:36,7 --> 00:03:41,646\\nNon era affatto certa e ci sono voluti molti mesi per portare a termine questo filone\\n\\n58\\n00:03:41,646 --> 00:03:44,055\\nHo incontrato ripetutamente la mia squadra di sicurezza nazionale\\n\\n59\\n00:03:44,055 --> 00:03:48,231\\nman mano che ottenevamo maggiori informazioni sulla possibilità di aver localizzato Bin Laden\\n\\n60\\n00:03:48,231 --> 00:03:52,41\\nnascosto all'interno di un complesso nel profondo Pakistan\\n\\n61\\n00:03:52,41 --> 00:03:58,227\\nE infine, la scorsa settimana, ho deciso che avevamo abbastanza informazioni per agire\\n\\n62\\n00:03:58,227 --> 00:04:03,942\\ne ho autorizzato un'operazione per catturare Osama bin Laden e assicurarlo alla giustizia\\n\\n63\\n00:04:03,942 --> 00:04:10,124\\nOggi, sotto la mia direzione, gli Stati Uniti hanno lanciato un'operazione mirata contro quel complesso\\n\\n64\\n00:04:10,124 --> 00:04:13,268\\nad Abbottabad, in Pakistan\\n\\n65\\n00:04:13,268 --> 00:04:18,783\\nLa piccola squadra di americani ha eseguito l'operazione con straordinario coraggio e competenza\\n\\n66\\n00:04:18,783 --> 00:04:21,323\\nNessun americano è stato ferito\\n\\n67\\n00:04:21,323 --> 00:04:24,799\\nSono stati attenti a evitare vittime civili\\n\\n68\\n00:04:24,799 --> 00:04:27,573\\nDopo uno scontro a fuoco, hanno ucciso Osama bin Laden\\n\\n69\\n00:04:27,573 --> 00:04:31,283\\ne hanno preso il suo corpo in custodia\",\n", + " 'bytes': 6520,\n", + " 'sha1': '4995t5osqbkjwxrth298pfc8gmv6kjf',\n", + " 'parent_id': 509457656,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 73815977,\n", + " 'timestamp': '2012-07-05T14:27:43Z',\n", + " 'user': {'id': 281303, 'text': 'Glavkos'},\n", + " 'page': {'id': 20146704,\n", + " 'title': 'Share Your Knowledge 2 How glamwiki.ogv.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:08,086 --> 00:00:10,081\\nΕίστε ένας χώρος εκθέσεων,\\n\\n2\\n00:00:10,081 --> 00:00:13,071\\nένα αρχείο, ή ένας πολιτιστικός οργανισμός;\\n\\n3\\n00:00:13,071 --> 00:00:14,092\\nΘέλετε να μοιραστείτε το περιεχόμενό σας\\n\\n4\\n00:00:14,092 --> 00:00:16,038\\nκαι να αυξήσετε την αναγνωρισιμότητά σας \\n\\n5\\n00:00:16,038 --> 00:00:18,047\\nή τα έργα τέχνης και την γνώση;\\n\\n6\\n00:00:18,047 --> 00:00:21,041\\nΤο Share Your Knowledge είναι εδώ για να σας βοηθήσει.\\n\\n7\\n00:00:21,041 --> 00:00:22,000\\nΠώς;\\n\\n8\\n00:00:22,000 --> 00:00:25,049\\nΠρώτα, θα πρέπει να ακολουθήσετε τις οδηγίες του Share Your Knowledge.\\n\\n9\\n00:00:25,049 --> 00:00:29,000\\nΑυτό σημαίνει να απελευθερώσετε όλο το ψηφιακό σας περιεχόμενο online\\n\\n10\\n00:00:29,000 --> 00:00:33,014\\nυπό την άδεια CC-BY-SA.\\n\\n11\\n00:00:33,014 --> 00:00:36,001\\nΣτη συνέχεια, ενημερώστε όλες τις επαφές σας σχετικά με την αλλαγή \\n\\n12\\n00:00:36,001 --> 00:00:40,017\\nστην άδεια και ανεβάστε το περιεχόμενο στη Wikipedia.\\n\\n13\\n00:00:40,017 --> 00:00:42,015\\nΣτο τέλος, παρακολουθήστε πως το περιεχόμενό σας \\n\\n14\\n00:00:42,015 --> 00:00:44,038\\nαποκτά πρόσβαση και χρησιμοποιείται.\\n\\n15\\n00:00:45,018 --> 00:00:48,035\\nΤι είναι η άδεια CC-BY-SA;\\n\\n16\\n00:00:48,035 --> 00:00:52,003\\nCC σημαίνει Creative Commons.\\n\\n17\\n00:00:52,003 --> 00:00:55,042\\nΑυτό σημαίνει ότι ένας δημιουργός μπορεί να επιλέξει ποιό copyright\\n\\n18\\n00:00:55,042 --> 00:00:58,053\\nαυτός ή αυτή θα ήθελε να ισχύει για το έργο τέχνης του/της \\n\\n19\\n00:00:58,053 --> 00:01:00,032\\nόταν το διαθέτει online.\\n\\n20\\n00:01:00,032 --> 00:01:03,011\\nBY σημαίνει ότι ο καθένας μπορεί να χρησιμοποιήσει \\n\\n21\\n00:01:03,011 --> 00:01:04,091\\nτο υλικό σας ελεύθερα \\n\\n22\\n00:01:04,091 --> 00:01:07,022\\nκαι δωρεάν υπό την προϋπόθεση \\n\\n23\\n00:01:07,022 --> 00:01:09,027\\nότι σας αναγνωρίζει ως δημιουργό και \\n\\n24\\n00:01:09,027 --> 00:01:11,059\\nκαι σας αναφέρει στο νέο έργο τέχνης.\\n\\n25\\n00:01:11,059 --> 00:01:13,041\\nSA σημαίνει ότι οποιοδήποτε έργο τέχνης,\\n\\n26\\n00:01:13,041 --> 00:01:15,069\\nπου προέρχεται από το δικό σας υλικό,\\n\\n27\\n00:01:15,069 --> 00:01:18,086\\nθα πρέπει να διανέμεται υπό την ίδια άδεια.\\n\\n28\\n00:01:18,086 --> 00:01:20,030\\nΕίναι σαν να ξεκινάτε μια \\n\\n29\\n00:01:20,030 --> 00:01:22,045\\n“creative commons μεταδοτική ασθένεια”.\\n\\n30\\n00:01:24,010 --> 00:01:26,045\\nΕπομένως, τι θα πρέπει να κάνω; \\n\\n31\\n00:01:26,045 --> 00:01:30,006\\nΒάλτε το λογότυπο CC-BY-SA σε \\n\\n32\\n00:01:30,006 --> 00:01:32,077\\nόλες τις σελίδες που έχετε το περιεχόμενο σας.\\n\\n33\\n00:01:32,077 --> 00:01:35,056\\nΑν θέλετε να μοιραστείτε ΟΛΟ το υλικό σας δια μιας,\\n\\n34\\n00:01:35,056 --> 00:01:38,039\\nβάλτε το λογότυπο σε όλο σας τον ιστότοπο.\\n\\n35\\n00:01:38,039 --> 00:01:40,066\\nΑυτό θα κάνει το περιεχόμενό σας διαθέσιμο \\n\\n36\\n00:01:40,066 --> 00:01:43,072\\nστον παγκόσμιο ιστό υπό την άδεια CC.\\n\\n37\\n00:01:43,072 --> 00:01:46,098\\nΤι γίνεται όμως με το αρχειακό υλικό που δεν είναι ακόμα online;\\n\\n38\\n00:01:46,098 --> 00:01:49,028\\nΑν κάποιο από το υλικό σας έχει δημιουργηθεί \\n\\n39\\n00:01:49,028 --> 00:01:51,087\\nαπό κάποιους που είναι εκτός του οργανισμού σας,\\n\\n40\\n00:01:51,087 --> 00:01:54,010\\nτότε θα πρέπει να ζητήσετε την άδειά τους.\\n\\n41\\n00:01:54,010 --> 00:01:56,018\\nΜε τον τρόπο αυτόν, μπορείτε να απελευθερώσετε καταλόγους,\\n\\n42\\n00:01:56,018 --> 00:01:59,003\\nDVD, video, ταινίες,\\n\\n43\\n00:01:59,003 --> 00:02:00,044\\ntrailers και εικόνες\\n\\n44\\n00:02:00,044 --> 00:02:02,054\\nπου σχετίζονται με το περιεχόμενό σας.\\n\\n45\\n00:02:02,054 --> 00:02:04,081\\nΓια να κάνετε το εγχείρημα ακόμα πιο αναγνωρίσιμο,\\n\\n46\\n00:02:04,081 --> 00:02:06,084\\nενημερώστε τις επαφές σας σχετικά με αυτό,\\n\\n47\\n00:02:06,084 --> 00:02:09,050\\nκαι αν πραγματικά θέλετε να ενδυναμώσετε το περιεχόμενό σας,\\n\\n48\\n00:02:09,050 --> 00:02:12,015\\nπείτε το στους εθελοντές της Wikipedia!\\n\\n49\\n00:02:12,015 --> 00:02:13,095\\nΚανόντας αυτό,\\n\\n50\\n00:02:13,095 --> 00:02:16,036\\nθα πετύχετε τη συνεισφορά στο πολύτιμο περιεχόμενό σας \\n\\n51\\n00:02:16,036 --> 00:02:19,063\\nστην πιο συχνά χρησιμοποιούμενη ελεύθερη εγκυκλοπαίδεια στον κόσμο,\\n\\n52\\n00:02:19,063 --> 00:02:23,021\\nμε ένα κοινό 400 εκατομμυρίων επισκεπτών!\\n\\n53\\n00:02:24,055 --> 00:02:26,091\\nΠοιός μπορεί να ανεβάσει περιεχόμενο στη Wikipedia; \\n\\n54\\n00:02:27,019 --> 00:02:27,092\\nΕσείς,\\n\\n55\\n00:02:27,092 --> 00:02:29,050\\nοι συνάδελφοι σας,\\n\\n56\\n00:02:29,050 --> 00:02:30,074\\nοι συνεργάτες σας,\\n\\n57\\n00:02:30,074 --> 00:02:32,078\\nκαι όλοι οι εθελοντές της Wikipedia.\\n\\n58\\n00:02:32,078 --> 00:02:34,097\\nΑπό τη στιγμή που το περιεχόμενο θα είναι online,\\n\\n59\\n00:02:34,097 --> 00:02:36,093\\nκαι θα ακολουθεί τους κανόνες της Wikipedia,\\n\\n60\\n00:02:36,093 --> 00:02:39,041\\nο καθένας θα είναι σε θέση να διορθώσει ένα λάθος,\\n\\n61\\n00:02:39,041 --> 00:02:40,097\\nνα προσθέσει μια εικόνα,\\n\\n62\\n00:02:40,097 --> 00:02:43,058\\nνα μεταφράσει ένα άρθρο σε μια άλλη γλώσσα,\\n\\n63\\n00:02:43,058 --> 00:02:46,046\\nκαι να ενημερώσει με κάποια νέα πληροφορία.\\n\\n64\\n00:02:46,046 --> 00:02:49,047\\nΗ Wikipedia διαθέτει επίσης εργαλεία για σας \\n\\n65\\n00:02:49,047 --> 00:02:52,001\\nγια να αξιολογήσετε πόσο αποτελεσματικό \\n\\n66\\n00:02:52,001 --> 00:02:54,013\\nέχει υπάρξει αυτό το εγχείρημα Share Your Knowledge\\n\\n67\\n00:02:54,013 --> 00:02:58,019\\nαυξάνοντας το περιεχόμενό σας και την αναγνωρισιμότητα του!\\n\\n68\\n00:02:58,019 --> 00:03:00,066\\nΒιαστείτε και δηλώστε συμμετοχή\\n\\n69\\n00:03:00,066 --> 00:03:03,039\\nShare Your Knowledge',\n", + " 'bytes': 7291,\n", + " 'sha1': '1wbs7k7beidkl2q0cgipnwwd1lg1cnz',\n", + " 'parent_id': 73815695,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 73875048,\n", + " 'timestamp': '2012-07-06T18:20:52Z',\n", + " 'user': {'id': 281303, 'text': 'Glavkos'},\n", + " 'page': {'id': 20160288,\n", + " 'title': 'Share Your Knowledge 1 Why glamwiki.ogv.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\ufeff1\\n00:00:08,000 --> 00:00:14,000\\nΟι πολιτιστικοί οργανισμοί κατέχουν και δημιουργούν περιεχόμενο το οποίο θέλουν να μοιραστούν.\\n\\n2\\n00:00:14,250 --> 00:00:22,950\\nΔυστυχώς, ακόμα κι αν κάποιο απ\\'αυτό το περιεχόμενο έχει ψηφιοποιηθεί, αυτό δεν είναι πάντοτε διαθέσιμο ή προσβάσιμο στον καθένα.\\n\\n3\\n00:00:23,200 --> 00:00:30,000\\nΑν όλα σας τα βιβλία ή οι κατάλογοι έχουν εξαντληθεί και δεν έχετε τους πόρους για να τα επανεκδώσετε,\\n\\n4\\n00:00:30,250 --> 00:00:32,750\\nΑν τα αρχεία σας δεν είναι καλά οργανωμένα.\\n\\n5\\n00:00:33,000 --> 00:00:36,100\\nΚαι αν δεν έχετε χρηματοδότηση\\n\\n6\\n00:00:36,350 --> 00:00:38,650\\nΊσως θα σας ενδιέφερε το πρόγραμμα \"Share Your Knowledge\"\\n\\n7\\n00:00:38,900 --> 00:00:46,900\\nΓια να ξεκινήσετε προς αυτή την κατεύθυνση, το μόνο που πρέπει να κάνετε είναι να απελευθερώσετε όλο το περιεχόμενό σας υπό την άδεια CC-BY-SA.\\n\\n8\\n00:00:47,150 --> 00:01:01,950\\nΑυτό επιτρέπει σε άλλους ανθρώπους να διανέμουν, να τροποποιούν και να δημιουργούν έργα τέχνης από τα αρχικά αρχεία, ακόμα και για εμπορικές χρήσεις. Το νέο έργο τέχνης θα πρέπει επίσης να δημοσιεύεται υπό την ίδια άδεια και να πιστώνει τον αρχικό δημιουργό.\\n\\n9\\n00:01:02,200 --> 00:01:06,000\\nΤότε, μέσω της Wikipedia, η γνώση σου μοιράζεται με τον κόσμο ελεύθερα.\\n\\n10\\n00:01:06,250 --> 00:01:09,050\\nΙδού δύο μόνον παραδείγματα:\\n\\n11\\n00:01:09,300 --> 00:01:14,000\\nΤα Γερμανικά Ομοσπονδιακά Αρχεία απελευθέρωσαν χαμηλής ανάλυσης εικόνες στα Wikimedia Commons.\\n\\n12\\n00:01:14,250 --> 00:01:18,550\\nΑυτό τριπλασιάσε τον αριθμό των υψηλής ανάλυσης εικόνων που πουλήθηκαν από τα Αρχεία\\n\\n13\\n00:01:18,800 --> 00:01:33,100\\nΤο Ίδρυμα Cariplo στην Ιταλία έχει δημιουργήσει και επιφορτώσει στη Wikipedia 247 Ιταλικά και Αγγλικά άρθρα καθώς και 854 καλλιτέχνες και τα έργα τους από την συλλογή του.\\n\\n14\\n00:01:33,350 --> 00:01:43,850\\nΤο Share Your Knowledge θα σε βοηθήσει να οργανώσεις το υλικό σου με έναν αποτελεσματικό τρόπο, και θα σε υποστηρίξει με τον σχεδιασμό σου για το πως να μοιραστείς όλα τα αρχεία που θα δημιουργήσεις στο μέλλον.\\n\\n15\\n00:01:44,100 --> 00:01:49,000\\nΕίναι ελεύθερο και αυξάνει την αναγνωρισιμότητα του οργανισμού σας και του περιεχομένου σας.\\n\\n16\\n00:01:49,250 --> 00:01:52,750\\nΓιατί να μην το κάνετε, λοιπόν;',\n", + " 'bytes': 3468,\n", + " 'sha1': '9zqi5c7ab4bzarangnek7n7mapus0r3',\n", + " 'parent_id': 73874413,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 74061342,\n", + " 'timestamp': '2012-07-10T09:16:04Z',\n", + " 'user': {'id': 281303, 'text': 'Glavkos'},\n", + " 'page': {'id': 20209863,\n", + " 'title': 'Share Your Knowledge 1 Why glamwiki.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:09,053 --> 00:00:13,001 Kulturelle Einrichtungen bewahren und kreieren Inhalte, 2 00:00:13,001 --> 00:00:14,065 die sie mit der Allgemeinheit teilen wo...'\",\n", + " 'text': '1\\n00:00:09,053 --> 00:00:13,001\\nKulturelle Einrichtungen bewahren und kreieren Inhalte,\\n\\n2\\n00:00:13,001 --> 00:00:14,065\\ndie sie mit der Allgemeinheit teilen wollen.\\n\\n3\\n00:00:15,008 --> 00:00:15,096\\nDennoch,\\n\\n\\n4\\n00:00:15,096 --> 00:00:17,059\\nobwohl einige dieser Inhalte\\n\\n\\n5\\n00:00:17,059 --> 00:00:19,028\\nbereits digital vorliegen,\\n\\n6\\n00:00:19,028 --> 00:00:21,057\\nso sind sie nicht immer verfügbar\\n\\n7\\n00:00:21,057 --> 00:00:23,076\\nbeziehungsweise zugänglich für jeden.\\n\\n8\\n00:00:23,076 --> 00:00:25,076\\nWenn alle Ihre Bücher oder Kataloge\\n\\n9\\n00:00:25,076 --> 00:00:27,003\\nvergriffen sind\\n\\n\\n\\n10\\n00:00:27,003 --> 00:00:30,022\\nund Sie nicht die Mittel zur Neuauflage haben,\\n\\n\\n11\\n00:00:30,022 --> 00:00:33,076\\nwenn Ihre Dateien besser organisiert sein könnten,\\n\\n\\n12\\n00:00:33,076 --> 00:00:36,055\\nund Sie keine Mittel hierfür haben,\\n\\n\\n\\n13\\n00:00:36,055 --> 00:00:38,026\\ndann sind Sie vielleicht daran interessiert,\\n\\n\\n14\\n00:00:38,026 --> 00:00:40,011\\nIhr Wissen und Ihre Inhalte zu teilen.\\n\\n\\n15\\n00:00:40,011 --> 00:00:41,068\\nUm diesen Weg zu beschreiten,\\n\\n\\n16\\n00:00:41,068 --> 00:00:43,053\\nmüssen Sie nur \\n\\n\\n17\\n00:00:43,053 --> 00:00:48,018\\nIhre Inhalte unter eine CC-BY-SA Lizenz stellen.\\n\\n\\n18\\n00:00:48,018 --> 00:00:50,057\\nSie erlaubt es anderen Menschen, sie zu vervielfältigen,\\n\\n\\n19\\n00:00:50,057 --> 00:00:53,051\\nzu editieren oder Kunstbücher auf den Originalen basierend zu kreieren\\n\\n\\n20\\n00:00:53,051 --> 00:00:56,018\\nselbst für kommerzielle Zwecke.\\n\\n\\n21\\n00:00:56,048 --> 00:00:58,081\\nDas neue Werk muss wiederum\\n\\n\\n22\\n00:00:58,081 --> 00:01:00,035\\nunter derselben Lizenz veröffentlicht werden\\n\\n\\n23\\n00:01:00,035 --> 00:01:02,088\\nund auf den ursprünglichen Urheber verweisen.\\n\\n24\\n00:01:02,088 --> 00:01:07,046\\nSo, durch Wikipedia, teilen Sie gratis Ihr Wissen mit der Welt.\\n\\n\\n25\\n00:01:07,046 --> 00:01:09,083\\nHier zwei Beispiele:\\n\\n\\n26\\n00:01:09,083 --> 00:01:11,052\\nDas deutsche Bundesarchiv\\n\\n\\n27\\n00:01:11,052 --> 00:01:15,017\\nstellte in geringer Auflösung Bilder in Wikimedia Commons.\\n\\n\\n28\\n00:01:15,017 --> 00:01:19,043\\nDies führte zu einer Verdreifachung der Einnahmen im Bildverkauf.\\n\\n\\n29\\n00:01:19,043 --> 00:01:22,063\\nDie italienische Cariplo Stiftung hat 247 Artikel geschrieben\\n\\n\\n30\\n00:01:22,063 --> 00:01:24,027\\nund sie in der Wikipedia eingestellt\\n\\n\\n31\\n00:01:24,027 --> 00:01:28,054\\nauf Englisch und Italienisch\\n\\n\\n32\\n00:01:28,054 --> 00:01:34,010\\nüber 854 Künstler und ihre Werke aus der Sammlung der Stiftung.\\n\\n\\n33\\n00:01:34,010 --> 00:01:36,006\\nTeilen Sie Ihr Wissen - \\n\\n\\n34\\n00:01:36,006 --> 00:01:38,017\\nes hilft Ihnen es zu organisieren\\n\\n\\n35\\n00:01:38,017 --> 00:01:39,014\\nauf effiziente Weise\\n\\n\\n36\\n00:01:39,014 --> 00:01:41,013\\nund unterstützt Sie bei der Planung\\n\\n\\n37\\n00:01:41,013 --> 00:01:42,071\\nwie Sie die Archive freistellen,\\n\\n\\n38\\n00:01:42,071 --> 00:01:44,057\\ndie Sie in der Zukunft noch erstellen werden.\\n\\n\\n39\\n00:01:44,057 --> 00:01:45,067\\nEs kostet nichts, und ist doch so wertvoll\\n\\n\\n40\\n00:01:45,067 --> 00:01:47,018\\ndenn es erhöht die Sichtbarkeit\\n\\n\\n41\\n00:01:47,018 --> 00:01:49,082\\nIhrer Einrichtung und Ihrer Inhalte im Netz.\\n\\n\\n42\\n00:01:49,082 --> 00:01:52,041\\nAlso, warum zögern Sie noch?',\n", + " 'bytes': 3126,\n", + " 'sha1': '0sb6qcqlbtn3cex2jm6xgek8s5zn0ut',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 74661426,\n", + " 'timestamp': '2012-07-21T23:40:57Z',\n", + " 'user': {'id': 337229, 'text': 'Mohamed Ouda'},\n", + " 'page': {'id': 20364821,\n", + " 'title': 'Education Program, Cairo Pilot, Testimonial.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,300 --> 00:00:04,249 I joined Wikipedia Project with my students because of many reasons , first 2 00:00:04,249 --> 00:00:07,174 second'\",\n", + " 'text': '1 00:00:01,300 --> 00:00:04,249 I joined Wikipedia Project with my students because of many reasons , first\\n\\n2 00:00:04,249 --> 00:00:07,174 second',\n", + " 'bytes': 147,\n", + " 'sha1': '5rxyebo4o2d93nzg5o3buac68bbs8sv',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 74962912,\n", + " 'timestamp': '2012-07-27T11:11:59Z',\n", + " 'user': {'id': 26548, 'text': 'Coyau'},\n", + " 'page': {'id': 20427874,\n", + " 'title': 'Les ateliers Wikimédia au musée de Cluny - Buzzeum.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'un peu de ponctuation',\n", + " 'text': '1\\n00:00:15,014 --> 00:00:16,004\\n<i>Bonjour Claire Séguret.</i>\\n\\n2\\n00:00:16,004 --> 00:00:22,017\\n<i>Merci d’être ici aujourd’hui pour nous parler des ateliers Wikimédia qui ont été mis en place au Musée de Cluny.</i>\\n\\n3\\n00:00:22,052 --> 00:00:25,046\\n<i>Est-ce que vous pouvez nous présenter un peu ces ateliers</i>\\n\\n4\\n00:00:25,049 --> 00:00:28,042\\n<i>et comment surtout ce projet est né au sein du musée.</i>\\n\\n5\\n00:00:28,042 --> 00:00:31,061\\nAlors le projet est né de la conjonction de plusieurs facteurs,\\n\\n6\\n00:00:31,061 --> 00:00:36,002\\ncela faisait très longtemps que l’on se posait la question de Wikipédia.\\n\\n7\\n00:00:36,002 --> 00:00:38,088\\nComment participer à ce grand projet ?\\n\\n8\\n00:00:38,088 --> 00:00:44,014\\nComment l’intégrer à nos outils de communication et de diffusion du savoir ?\\n\\n9\\n00:00:44,014 --> 00:00:46,022\\nMais le partenariat proprement dit est arrivé un petit peu par hasard\\n\\n10\\n00:00:46,025 --> 00:00:49,061\\npar un tweet d’Adrienne Alix, qui est la directrice des programmes de Wikimédia France,\\n\\n11\\n00:00:49,061 --> 00:00:55,015\\nl’association qui fait la promotion de l’encyclopédie,\\n\\n12\\n00:00:55,015 --> 00:00:59,015\\ntweet qui portait sur un point très précis de nos collections, une question très pointue.\\n\\n13\\n00:00:59,015 --> 00:01:02,089\\nEt là je me suis dit il y a sans doute quelque-chose à faire avec cette communauté\\n\\n14\\n00:01:02,089 --> 00:01:08,099\\ns’il y a une telle curiosité pour nos collections, c’est vraiment que le musée doit être présent à travers Wikipédia.\\n\\n15\\n00:01:08,099 --> 00:01:13,042\\n<i>Est-ce que vous pouvez nous expliquer quels sont les différents objectifs de ces ateliers pour le musée ?</i>\\n\\n16\\n00:01:13,042 --> 00:01:20,025\\nL’intérêt du partenariat Wikmédia tel qu’on l’a monté avec Adrienne Alix et Rémi Mathis,\\n\\n17\\n00:01:20,025 --> 00:01:22,085\\nc’est qu’il correspond tout à fait aux attentes et à l’actualité du musée.\\n\\n18\\n00:01:22,085 --> 00:01:28,058\\nLa première, c’est vraiment de sensibiliser les équipes au numérique et à ses problématiques au sens large.\\n\\n19\\n00:01:28,058 --> 00:01:32,085\\nDéjà dédramatiser un peu l’outil Wikipédia sur lequel on peut avoir beaucoup d’idées reçues.\\n\\n20\\n00:01:32,085 --> 00:01:42,035\\nOui, on cite ses sources sur Wikipédia, oui c’est encadré, il y a une communauté qui répond, qui enrichit les articles et c’est un véritable outil de diffusion de la connaissance.\\n\\n21\\n00:01:42,035 --> 00:01:47,092\\nPuis cela permettait aussi d’aborder les questions comme les licences libres, l’open data, le droit d’auteur\\n\\n22\\n00:01:47,092 --> 00:01:51,050\\net c’était vraiment important pour nous en interne d’avoir cette information.\\n\\n23\\n00:01:51,050 --> 00:01:58,002\\nDeuxième objectif, il est en lien avec un de nos plus gros projets actuellement, qui est celui de la refonte du site internet\\n\\n24\\n00:01:58,002 --> 00:02:02,023\\net l’un des gros volets de cette refonte concerne les contenus\\n\\n25\\n00:02:02,023 --> 00:02:06,005\\nles contenus qui existent déjà sur le site actuel et qu’il faudrait ré-écrire, retravailler\\n\\n26\\n00:02:06,005 --> 00:02:08,059\\net les contenus qu’il va falloir produire.\\n\\n27\\n00:02:08,059 --> 00:02:15,053\\nJe trouvais que les ateliers Wikipédia étaient une bonne manière d’initier les personnels et notamment les équipes scientifiques\\n\\n28\\n00:02:15,053 --> 00:02:17,076\\nà ce qu’est l’écriture pour le web.\\n\\n29\\n00:02:17,076 --> 00:02:25,075\\nAlors concrètement, on a constitué deux équipes, puisqu’on avait en tout plus de 25 personnes qui se sont inscrites et qui ont manifesté leur intérêt,\\n\\n30\\n00:02:25,075 --> 00:02:34,029\\nL’idée étant que les bénévoles de Wikimédia France qui sont des Wikipédiens aguerris, viennent initier les personnels à la contribution.\\n\\n31\\n00:02:34,029 --> 00:02:39,042\\nAlors on commence très simplement dans ce qu’ils appellent le bac-à-sable, on crée son compte, on crée sa fiche perso\\n\\n32\\n00:02:39,042 --> 00:02:45,093\\net dès ces moments là, on est devant l’ordinateur et on apprend la grammaire, la syntaxe Wikipédia\\n\\n33\\n00:02:45,093 --> 00:02:50,018\\nà mettre en page, à répondre si quelqu’un fait un commentaire\\n\\n34\\n00:02:50,018 --> 00:02:52,089\\net puis très très vite, on apprend à contribuer.\\n\\n35\\n00:02:52,089 --> 00:02:55,056\\nLa contribution peut prendre des formes très variées :\\n\\n36\\n00:02:55,056 --> 00:02:59,051\\nÇa va de la correction d’une légende sur WikiCommons, la médiathèque,\\n\\n37\\n00:02:59,051 --> 00:03:03,094\\nà la création d’un article, à la correction de fautes d’orthographe ou de virgules,\\n\\n38\\n00:03:03,094 --> 00:03:07,087\\nce qui permettait à vraiment chacun de trouver quelque-chose qui lui convienne.\\n\\n39\\n00:03:07,087 --> 00:03:13,007\\nCertains personnels se sont lancés très très vite sur des sujets de fond,\\n\\n40\\n00:03:13,007 --> 00:03:16,058\\nd’autres sont restés sur des corrections mineures, mais toute contribution est importante.\\n\\n41\\n00:03:16,058 --> 00:03:20,071\\nMaintenant il faut que l’on transforme l’essai\\n\\n42\\n00:03:20,071 --> 00:03:24,063\\net il est prévu que l’on fasse un atelier par trimestre. Les prochains auront lieu à la rentrée,\\n\\n43\\n00:03:24,063 --> 00:03:31,058\\nen espérant pouvoir créer un petit groupe de contributeurs au sein du musée\\n\\n44\\n00:03:31,058 --> 00:03:36,058\\nqui puisse enrichir les articles sur la thématique du musée et du Moyen-Âge au sens large.\\n\\n45\\n00:03:36,058 --> 00:03:46,023\\n<i>Est-ce que vous pouvez nous décrire un peu qui sont les participants qui ont été présents pour ces ateliers, et surtout comment ils ont réagi ?</i>\\n\\n46\\n00:03:46,062 --> 00:03:51,029\\nOn a eu des participants issus de toutes les équipes du musée.\\n\\n47\\n00:03:51,029 --> 00:03:53,082\\nEncore une fois, l’idée c’était que ce soit ouvert à tous,\\n\\n48\\n00:03:53,082 --> 00:03:58,081\\nmême si au départ certains ont été surpris et ont dit « Non, moi je ne peux rien apporter, je ne suis pas conservateur »\\n\\n49\\n00:03:58,081 --> 00:04:02,046\\nfinalement chacun a un regard sur les collections et sur le musée qui est intéressant.\\n\\n50\\n00:04:02,046 --> 00:04:08,072\\nOn a eu des personnels de surveillance, c’était la partie du personnel la plus représentée, j’étais très contente,\\n\\n51\\n00:04:08,072 --> 00:04:15,028\\non a eu des conservateurs, des membres de la documentation, de l’action culturelle, de la communication :\\n\\n52\\n00:04:15,028 --> 00:04:22,062\\nÇa peut aussi être des gens de l’accueil RMN, des conférenciers, on a vraiment eu tout le monde.\\n\\n53\\n00:04:22,062 --> 00:04:25,087\\nEt même le service financier. Tout le monde est venu. Et même la direction.\\n\\n54\\n00:04:25,087 --> 00:04:30,051\\n<i>Est-ce que ces ateliers ont fait émerger de nouvelles idées ?</i>\\n\\n55\\n00:04:30,051 --> 00:04:34,090\\nOui, c’était tout l’intérêt d’ailleurs : apporter un regard nouveau sur les collections du musée.\\n\\n56\\n00:04:34,090 --> 00:04:40,001\\nJe pense notamment à un agent d’accueil et de billetterie de la RMN qui connaît très bien les lieux\\n\\n57\\n00:04:40,001 --> 00:04:44,026\\nqui très vite s’est détourné de l’encyclopédie et du savoir écrit\\n\\n58\\n00:04:44,026 --> 00:04:47,032\\net s’est penché plutôt sur Commons et la question des photos.\\n\\n59\\n00:04:47,032 --> 00:04:54,094\\nC’est quelqu’un qui est passionné d’images et de cinéma et qui a très vite eu l’envie de faire une sorte de campagne photo autour du musée.\\n\\n60\\n00:04:54,094 --> 00:05:04,023\\nJe pense qu’autour de lui on va essayer de créer un petit groupe à la fois de personnels du musée et de Wikipédiens pour avoir une meilleure couverture photo des lieux.\\n\\n61\\n00:05:04,023 --> 00:05:10,056\\n<i>Il y a peut-être d’autres projets qui ont été abordés comme ça, d’autres idées qui vont être mises en place ?</i>\\n\\n62\\n00:05:10,056 --> 00:05:16,002\\nIl y a beaucoup d’idées qui ont émergé, beaucoup de débats aussi, c’est l’intérêt.\\n\\n63\\n00:05:16,002 --> 00:05:21,043\\nOn se sent parfois un peu submergés, la question des droits photo est capitale et pas encore dénouée.\\n\\n64\\n00:05:21,043 --> 00:05:29,035\\nPlus que des projets, je crois que surtout ça a bien remis tout le monde dans cette espèce de dynamique numérique.\\n\\n65\\n00:05:29,035 --> 00:05:35,008\\nJe pense que cela donnera une nouvelle impulsion à notre chantier de site internet.\\n\\n66\\n00:05:35,008 --> 00:05:40,026\\nMaintenant je connais aussi notre charge de travail par ailleurs, et les autres missions des personnels par ailleurs,\\n\\n67\\n00:05:40,026 --> 00:05:43,050\\ndonc je ne vais pas m’enflammer sur des projets qui ne pourront pas forcément voir le jour,\\n\\n68\\n00:05:43,050 --> 00:05:50,039\\nmais on essaiera déjà de mener ce projet de partenariat à bien, en renouvelant cette expérience des ateliers.\\n\\n69\\n00:05:50,039 --> 00:05:53,047\\nDans l’avenir, vous comptez renouveler les ateliers Wikimédia ?\\n\\n70\\n00:05:53,047 --> 00:05:58,058\\nOui, on va essayer de maintenir une régularité et de les avoir une fois par trimestre\\n\\n71\\n00:05:58,058 --> 00:06:03,078\\npour fidéliser un petit groupe de contributeurs.\\n\\n72\\n00:06:03,078 --> 00:06:07,034\\nLe partenariat pour l’instant est signé pour un à deux ans,\\n\\n73\\n00:06:07,034 --> 00:06:11,037\\nil n’est pas impossible que l’on continue comme cela pendant très longtemps.\\n\\n74\\n00:06:11,037 --> 00:06:15,088\\nLe fonctionnement est assez simple, et le mise en place est très facile.\\n\\n75\\n00:06:15,088 --> 00:06:20,005\\n<i>Ok, merci beaucoup et on se tient au courant pour le prochain atelier !</i>\\n\\n76\\n00:06:20,007 --> 00:06:21,054\\nÇa marche !',\n", + " 'bytes': 9568,\n", + " 'sha1': 'cu0imbelje0akcq2sqffp9mvmv9sqar',\n", + " 'parent_id': 74958477,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 111351309,\n", + " 'timestamp': '2013-12-06T23:29:08Z',\n", + " 'user': {'id': 1547360, 'text': 'Raoli'},\n", + " 'page': {'id': 20523704,\n", + " 'title': 'Monmouthpedia video revised.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'sposto \"informazioni\" da battuta 30 a 29 per sincronizzarla al parlato',\n", + " 'text': '1\\n00:00:15,045 --> 00:00:17,016\\nHo iniziato MonmouthpediA perché penso che la\\n\\n2\\n00:00:17,016 --> 00:00:18,079\\nconoscenza può fornici un quadro generale delle cose\\n\\n3\\n00:00:18,079 --> 00:00:21,022\\npermettendoci di apprezzare di più il nostro ambiente.\\n\\n4\\n00:00:21,064 --> 00:00:24,063\\nIl progetto nasce dalla collaborazione tra Wikimedia UK,\\n\\n5\\n00:00:24,063 --> 00:00:26,072\\nil Consiglio della Contea di Monmouth, i musei,\\n\\n6\\n00:00:26,072 --> 00:00:29,036\\nla biblioteca, l\\'Università del Galles, la Cardiff Met,\\n\\n7\\n00:00:29,036 --> 00:00:32,023\\nma soprattutto grazie ai singoli contributori,\\n\\n8\\n00:00:32,023 --> 00:00:34,076\\nai gruppetti di comunità locali e alle persone\\n\\n9\\n00:00:34,076 --> 00:00:36,044\\nnon solo di Monmouth, ma di tutto\\n\\n10\\n00:00:36,044 --> 00:00:38,076\\nil mondo che creano i contenuti e\\n\\n11\\n00:00:38,076 --> 00:00:39,096\\nhanno permesso che questo accada.\\n\\n12\\n00:00:40,019 --> 00:00:41,086\\nUn codice QR è un tipo di codice a barre\\n\\n13\\n00:00:41,086 --> 00:00:43,032\\nche puoi leggere con un cellulare o una\\n\\n14\\n00:00:43,032 --> 00:00:45,094\\ntavoletta che ti rimanda ad una pagina web.\\n\\n15\\n00:00:45,094 --> 00:00:47,060\\nLa cosa grandiosa del QRpedia è che,\\n\\n16\\n00:00:47,060 --> 00:00:49,003\\na seconda della lingua del telefono, \\n\\n\\n17\\n00:00:49,003 --> 00:00:51,040\\nil sistema ti rimanderà alla pagina\\n\\n18\\n00:00:51,040 --> 00:00:52,018\\ndi Wikipedia nella tua lingua.\\n\\n19\\n00:00:52,018 --> 00:00:53,075\\nSe hai un cellulare spagnolo\\n\\n20\\n00:00:53,075 --> 00:00:55,034\\nQRpedia rimanderà alla voce spagnola,\\n\\n21\\n00:00:55,034 --> 00:00:56,065\\nse in tedesco, alla voce tedesca.\\n\\n22\\n00:00:56,065 --> 00:00:58,096\\nPenso che la vera attrazione dei codici QR per noi\\n\\n23\\n00:00:58,096 --> 00:01:03,060\\nè che ci dà la possibilità di far\\xa0vedere le \\n\\n24\\n00:01:03,060 --> 00:01:05,060\\nnostre informazioni nelle altre lingue e ciò\\n\\n25\\n00:01:05,060 --> 00:01:08,011\\nè un gran vantaggio soprattutto per Monmouth.\\n\\n26\\n00:01:08,011 --> 00:01:10,092\\nLa lingua gallese è una possibilità,\\n\\n27\\n00:01:10,092 --> 00:01:12,096\\nma anche tutte le altre lingue del mondo.\\n\\n28\\n00:01:12,096 --> 00:01:16,095\\nL\\'altro grande vantaggio dal punto di vista del curatore\\n\\n29\\n00:01:16,095 --> 00:01:19,024\\nè che ci piace dare alle persone le informazioni\\n\\n30\\n00:01:19,024 --> 00:01:24,012\\nfin quando le \"vacche non tornano a casa\"\\n\\n31\\n00:01:24,012 --> 00:01:26,042\\ne non possiamo farlo perché manca lo spazio.\\n\\n32\\n00:01:26,074 --> 00:01:29,087\\nLo Shire Hall è il primo edificio classificato di Grado 1\\n\\n33\\n00:01:29,087 --> 00:01:34,004\\ncon grandi storie da raccontare, un sacco di eventi e attività\\n\\n34\\n00:01:34,004 --> 00:01:36,080\\nche hanno avuto luogo nel palazzo,\\n\\n35\\n00:01:36,080 --> 00:01:39,052\\nma abbiamo ottenuto una collezione molto molto piccola.\\n\\n36\\n00:01:39,052 --> 00:01:42,080\\nQuindi, l\\'utilizzo dei codici QRpedia, dà alle persone\\n\\n37\\n00:01:42,080 --> 00:01:46,028\\nl\\'accesso a una vasta gamma di informazioni\\n\\n38\\n00:01:46,028 --> 00:01:49,044\\nsulle storie, così come sui manufatti.\\n\\n39\\n00:01:50,022 --> 00:01:53,035\\nPer uno studente di storia è bello scegliere\\n\\n40\\n00:01:53,035 --> 00:01:56,080\\nquali informazioni poter vedere e \\n\\n41\\n00:01:56,080 --> 00:02:00,003\\nnon essere bombardati da esse, a volte,\\n\\n42\\n00:02:00,003 --> 00:02:03,093\\nquando si va in un museo.\\n\\n43\\n00:02:04,047 --> 00:02:07,040\\nÈ fantastico che Monmouth sia la prima cittadina\\n\\n44\\n00:02:07,040 --> 00:02:10,096\\nad offrire i QRpedia, e la prima a diventare di\\n\\n45\\n00:02:10,096 --> 00:02:13,092\\nfama mondiale per il progetto che Wikipedia\\n\\n46\\n00:02:13,092 --> 00:02:17,027\\nfa qui. Penso che un sacco di persone\\n\\n47\\n00:02:17,027 --> 00:02:20,008\\nnel mondo si stanno ora interessando\\n\\n48\\n00:02:20,008 --> 00:02:22,032\\nalla nostra affascinante storia.\\n\\n49\\n00:02:22,046 --> 00:02:25,004\\nLo scrittore William Gibson notoriamente famoso disse:\\n\\n50\\n00:02:25,004 --> 00:02:28,004\\n\"Il futuro è già qui, è solo distribuito uniformemente\".\\n\\n51\\n00:02:28,004 --> 00:02:31,032\\nCon Monmouth che adotta QRpedia come tecnologia\\n\\n52\\n00:02:31,032 --> 00:02:34,076\\ne che diventa una città WiFi, ora abbiamo un esempio \\n\\n53\\n00:02:34,076 --> 00:02:37,067\\nreale e concreto del modo in cui possiamo avere\\n\\n54\\n00:02:37,067 --> 00:02:39,090\\ncomunità che si uniscono sia a livello locale\\n\\n55\\n00:02:39,090 --> 00:02:43,053\\nche globale, per condividere e creare un nuovo\\n\\n56\\n00:02:43,053 --> 00:02:46,007\\nsenso del luogo a Monmouth e portare\\n\\n57\\n00:02:46,007 --> 00:02:47,093\\nnuove esperienze ai visitatori della città.',\n", + " 'bytes': 4478,\n", + " 'sha1': 'mgqutou26r63929n09ti1877fz9hh8a',\n", + " 'parent_id': 111351246,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606370780,\n", + " 'timestamp': '2021-11-09T12:04:12Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 20755044,\n", + " 'title': 'Createaccount.ogv.is.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated the subtitles',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,444\\nHér er hvernig á að búa\\ntil notandareikninginn þinn\\n\\n2\\n00:00:02,470 --> 00:00:03,794\\ná íslensku Wikipedia.\\n\\n3\\n00:00:04,500 --> 00:00:08,250\\nFirst, farðu á is.wikipedia.org\\n\\n4\\n00:00:08,750 --> 00:00:13,250\\nSíðan, smelltu á \"Nýskrá\" efst\\ní hægra horni síðunnar.\\n\\n5\\n00:00:13,830 --> 00:00:17,750\\nEftir það, smelltu á\\n\"Ertu ekki með reikning? Búðu til einn\".\\n\\n6\\n00:00:19,000 --> 00:00:23,241\\nSkrunaðu aðeins niður síðuna\\nog skrifaðu niður orðið.\\n\\n7\\n00:00:23,500 --> 00:00:26,341\\nSíðan, skrifaðu notendanafnið\\nsem þú villt nota,\\n\\n8\\n00:00:26,354 --> 00:00:28,427\\nlykilorðið sem þú vilt\\n\\n9\\n00:00:28,476 --> 00:00:31,339\\nog valfrjálsa netfangið.\\n\\n10\\n00:00:31,520 --> 00:00:33,489\\nEftir það, smelltu á \"Nýskrá\".\\n\\n11\\n00:00:33,525 --> 00:00:36,305\\nNúna framveigis, átt þú Wikipedia aðgang.',\n", + " 'bytes': 865,\n", + " 'sha1': 'hzlvn1d7a4t8dn143tx8hwgst13foa1',\n", + " 'parent_id': 336140295,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 76561407,\n", + " 'timestamp': '2012-08-24T20:35:03Z',\n", + " 'user': {'id': 1547360, 'text': 'Raoli'},\n", + " 'page': {'id': 20835932,\n", + " 'title': 'Zingaretti, Palazzo Chigi.ogg.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'fine',\n", + " 'text': 'Ciao a tutti, buongiorno, grazie. Io intervengo ora e mi scuso perché fra un po\\' di minuti qui sotto inizia il Consiglio Provinciale dedicato alla crisi economica con le forze sociali e i sindacati e quindi è importante presiederlo, visto il clima. Però ci tenevo, a venire prima qui a portarvi il saluto e anche i ringraziamenti all\\'associazione per il lavoro fatto, perché questo progetto che abbiamo sostenuto delle scuole sulla Costituzione; è a mio giudizio uno dei progetti più importanti per aiutare la scuola nella sua vera funzione di formazione dei cittadini. Nella scuola è importante la nozione, ovviamente, non banalizziamo: sapere quanto fa due più due o quando l\\'\\'\\'a\\'\\' si usa con l\\'acca e senz\\'acca o quando c\\'è la data storica, non va banalizzato. Ma, la scuola è anche il luogo nel quale quando un ragazzo / una ragazza esce, esce da cittadino, cioè cosciente di quello che è, cosciente delle proprie possibilità, cosciente del fatto che ha dei diritti e che ha dei doveri, e in questo le nozioni sui libri a volte non bastano. Bisogna in, questo lavoro col corpo docente è importante perché si dà una mano. Perché è importante la Costituzione, secondo me? In primo luogo, fatemelo dire, per gli uomini e le donne che l\\'hanno scritta, a me mi ha molto impressionato questo brevissimo video di Oscar Luigi Scalfaro perché, un po\\', è una testimonianza, non so se vi ha colpito anche a voi, di una cosa molto importante: di quest\\'uomo molto anziano, lucidissimo nella mente, un po\\' affaticato nel fisico, che pure trova il tempo e la voglia di re-incontrare i giovani e di dirgli \"Oh, state in campo e combattete\". Beh, questa è stata una delle più belle caratteristiche di una bellissima generazione di italiani che è quella che ha scritto la Costituzione e anche, fatemelo dire, di tanti ragazzi e ragazze italiani che sono morti per costruire le condizioni di ricostruire in questo paese la democrazia. Che non è banale, a dirlo, c\\'ho pensato tante volte nella mia vita. Io faccio politica da quando ho sedici anni e in queste - oggi ce n\\'ho quarantacinque, quarantasei, quindi sono tanti, però io tante volte, anche nei momenti nei quali uno si lamenta perché la vita è dura, poi figuratevi adesso, se può essere trovato [...] stimolante. Però io tante volte mi son trovato, leggendo quei testi o leggendo le storie italiane: \"io avrei avuto la forza di mettere addirittura in discussione la mia vita per affermare le mie idee !\", <io sono animagda>, io credo che è molto importante farla per capire quanto è importante ricordare quel periodo storico e ricordare il valore di un testo che è costato sangue a tanti giovani, e tante ragazzi / ragazze. Perché, oggi, questa è una democrazia, una repubblica perché quando si rischiava la vita c\\'è chi l\\'ha fatto, c\\'è chi l\\'ha rischiata, ma non per se, che oggi è uno de.., il calcolo della politica, in fondo, oggi qual\\'è? La percezione, perché purtroppo in parte è così, che chi ha responsabilità pubbliche e politiche lo fa non per gli altri e per una missione, ma lo fa per far carriera, per fare i soldi, per occupare una poltrona; e la morte - diciamo - della politica è quando la politica diventa questo. La costituzione è importante anche perché nasce dentro una visione concretissima del quale la politica era il modo di pensare agli altri, alla comunità, all\\'Italia, a prescindere addirittura dal proprio destino perché si moriva, quindi quando lo facevano... - ci sono delle lettere dei condannati a morte per la resistenza meravigliose, che tra l\\'altro le scrivono ai figli alle mogli e dice \"Oh, io sono qui, ma sono orgoglioso perché so che ci sarà un domani migliore\", mamma mia!, mamma mia! Io.., non è migliore, poi, di quello che permette oggi a tutti noi (e questa è la seconda cosa) di fare delle cose che ora ci sembrano normali: uscire, comprarsi un giornale, scegliere un giornale, andare a votare o non andare a votare, dire Zingaretti è un cornuto al presidente d\\'istituzione, ma non per questo se lo dico qualcuno mi arresterà o mi picchierà, costruirmi una mia associazione, decidere di non costruirla, cioè tutte cose che, grazie a loro, per noi sono normali, sono conquiste oppure a un certo punto il fatto che si entra a scuola che è pubblica, che è gratuita e si entra a scuola e vi accompagnano fino al percorso scolastico perché? Perché c\\'è una Costituzione che dice che la formazione è un diritto, quindi non è una cosa scontata, è dentro una serie di regole che sono determinate e hanno pensato a noi. Vi sono articoli della Costituzione che non sono, invece, fino in fondo realizzati: \"Il lavoro è un diritto\" eheheh, si, infatti se non sbaglio l\\'articolo tre dice \"La repubblica si pone l\\'obiettivo di superare gli ostacoli per la sua piena realizzazione\". E quindi abbiamo un testo che ci aiuta, allora perché sono importanti queste discussioni, questi incontri, questo lavoro che stiamo facendo (e chiudo)? Perché la Costituzione repubblicana, io penso, sia una carta da amare perché ci dà due cose fondamentali: dei diritti e dei doveri; quindi i paletti. Garantisce l\\'agibilità di essere cittadini, ma ogni giorno va conquistata e va realizzata; non è data, non ci sarà mai un momento nel quale tutti i diritti e tutti i doveri saranno affermati, cioè quel diritto al lavoro oppure il diritto allo studio all\\'Università; saranno dei diritti che visto che sono scritti in Costituzione, sono oggettivi. \"Arrivano\", \"No\", ma al di là della Costituzione vanno conquistati con l\\'impegno, con la criticità, con la vigilanza, con lala presenza, con la consapevolezza che ci sono dei diritti, ieri che è giusto che io ne sia cosciente. Sapete perché? Perché ad esempio si è più liberi e si rifiuta la cultura del lavoro che è un favore da chiedere a qualcuno: al politico, al potente di turno. Non è un favore da chiedere, il lavoro, è un diritto sancito dalla Costituzione che la battaglia o l\\'impegno per il lavoro è un impegno civico e civile molto, molto importante. Per questo davvero grazie perché la scuola, a mio giudizio, si aiuta, ripeto, non solo a farvi conoscere le nozioni, ma anche fino in fondo riesce a dare consapevolezza di questi due pilastri dell\\'idea e valori della Costituzione che sono i diritti e i doveri, aiuta le persone ad essere più cittadine e quindi in fondo anche più libere perché poi non è un elemento marginale \\'\\'libere di scegliere\\'\\'. Noi abbiamo dato un piccolo contributo, lo faremo anche per il 2013, prima che ci sciolgono, non so se ci sciolgono. A proposito di Costituzione, comunque, nel 2013 noi ci saremo e faremo di tutto perché con le scuole questo impegno alla formazione civile, davvero non venga meno, perché poi questo forse è uno dei momenti della storia repubblicana nel quale, di questo lavoro, ci vuole davvero tantissimo bisogno. Auguroni e grazie ancora per il vostro aiuto per questa missione.',\n", + " 'bytes': 6941,\n", + " 'sha1': '0v8gp2n46s9nocd93yuuvh42n378xy2',\n", + " 'parent_id': 76560543,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 653304501,\n", + " 'timestamp': '2022-05-02T09:56:40Z',\n", + " 'user': {'id': 1297740, 'text': 'Snævar'},\n", + " 'page': {'id': 20899435,\n", + " 'title': 'RefTools.ogv.is.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,672\\n[CC eftir Snævar og Pacha Tchernof]\\n\\n2\\n00:00:01,702 --> 00:00:04,515\\nÞetta er myndband um notkun RefToolbar\\n\\n3\\n00:00:04,547 --> 00:00:05,830\\neða RefTools.\\n\\n4\\n00:00:06,238 --> 00:00:09,646\\nRefToolbar bætir við möguleikum\\ní breytingarstikunni\\n\\n5\\n00:00:09,695 --> 00:00:13,794\\nsem leyfir þér að setja vísun\\ní heimild inn fljótt og auðveldlega.\\n\\n6\\n00:00:14,385 --> 00:00:17,150\\nÞað sníður heimildir sjálfkrafa\\n\\n7\\n00:00:17,184 --> 00:00:20,508\\nog er snyrtilegt í greinum.\\n\\n8\\n00:00:20,529 --> 00:00:23,208\\nÞað er mjög gott smáforrit í notkun.\\n\\n9\\n00:00:23,558 --> 00:00:26,229\\nÉg er í sandkassanum mínum.\\n\\n10\\n00:00:26,240 --> 00:00:31,283\\nNúna hef ég aðeins smellt á \"breyta\"\\nog þú sérð að á breytingarstikunni\\n\\n11\\n00:00:31,348 --> 00:00:33,495\\ner möguleikinn Heimild.\\n\\n12\\n00:00:33,528 --> 00:00:37,883\\nÞegar smellt er á hann\\nbirtist þessi valmynd\\n\\n13\\n00:00:37,902 --> 00:00:41,314\\nog í henni er fellivallisti\\n\\n14\\n00:00:41,348 --> 00:00:44,312\\nnefndar heimildir og villuprófun.\\n\\n15\\n00:00:44,346 --> 00:00:45,953\\nÞegar smellt er á fellivallistann\\n\\n16\\n00:00:45,999 --> 00:00:48,924\\nsérð þú fjóra mismunandi\\nmöguleika til að vísa í heimild.\\n\\n17\\n00:00:50,148 --> 00:00:55,662\\n\"Cite web\" er notað til að vísa\\ní almenna vefsíðu.\\n\\n18\\n00:00:55,745 --> 00:01:00,760\\n\"Cite news\" er notað\\ntil að vísa í fréttablað eða frétt,\\n\\n19\\n00:01:00,810 --> 00:01:02,840\\nannaðhvort á netinu eða í prenti.\\n\\n20\\n00:01:02,886 --> 00:01:05,395\\n\"Cite book\" er augljóslega notað\\ntil að vísa í bækur.\\n\\n21\\n00:01:05,435 --> 00:01:14,547\\n\"Cite journal\" er til að vísa\\ní tímarit og fræðirit.\\n\\n22\\n00:01:14,713 --> 00:01:18,765\\nÉg ætla að fara yfir hvert þeirra\\nsnögglega og sýna þér möguleikana.\\n\\n23\\n00:01:18,788 --> 00:01:20,541\\nEf þú smellir á \"Cite web\",\\n\\n24\\n00:01:20,560 --> 00:01:24,097\\nbirtist þessi gluggi\\nmeð mismunandi textareitum.\\n\\n25\\n00:01:24,147 --> 00:01:26,296\\nFlestir þeirra útskýra sig sjálfir.\\n\\n26\\n00:01:26,329 --> 00:01:29,328\\nÉg ætla ekki að útskýra þá augljósustu.\\n\\n27\\n00:01:29,361 --> 00:01:33,743\\nGreinilega er síðasta og fyrsta nafn, \\nnafn höfundar.\\n\\n28\\n00:01:33,793 --> 00:01:36,705\\nEn sumir þurfa smáútskýringar.\\n\\n29\\n00:01:36,772 --> 00:01:40,254\\nRitverk er\\n\\n30\\n00:01:40,305 --> 00:01:43,603\\nhluti af stærra verki\\n\\n31\\n00:01:43,653 --> 00:01:47,501\\neins og hluti af bók eða vefsíðu.\\n\\n32\\n00:01:47,557 --> 00:01:49,968\\nÞú myndir skrifa það undir verk.\\n\\n33\\n00:01:50,049 --> 00:01:54,982\\nÚtgefandi er augljóslega\\ná sem gaf út vefsíðuna.\\n\\n34\\n00:01:55,032 --> 00:01:57,532\\nÞað er almennt ekki nafn síðunnar,\\n\\n35\\n00:01:57,573 --> 00:01:59,515\\nþað er oftast ritverk.\\n\\n36\\n00:01:59,547 --> 00:02:02,963\\nDags. Skoðað er dagsetningin\\nþegar síðan var sótt.\\n\\n37\\n00:02:02,996 --> 00:02:07,012\\nÞað er auðvelt að bæta henni\\nvið með smelli á dagatalið hérna.\\n\\n38\\n00:02:07,062 --> 00:02:09,289\\nÞað bætir við núverandi dagsetningu.\\n\\n39\\n00:02:09,358 --> 00:02:13,130\\nHérna niðri er möguleiki\\nað bæta við nafn heimildar.\\n\\n40\\n00:02:13,164 --> 00:02:16,059\\nÉg ætla að fara betur yfir það síðar.\\n\\n41\\n00:02:16,333 --> 00:02:18,264\\nÉg ætla næst að smella á \"Cite news\".\\n\\n42\\n00:02:18,516 --> 00:02:24,113\\nÞessir útskýra sig sjálfir\\nsvo ég ætla ekki að útskýra þá.\\n\\n43\\n00:02:24,910 --> 00:02:29,691\\n\"Cite book\" útskýrir sig líka sjálft.\\n\\n44\\n00:02:30,315 --> 00:02:32,524\\nÁr er útgáfuár\\n\\n45\\n00:02:32,574 --> 00:02:35,421\\nÚtgefanda vorum við búin að fara yfir.\\n\\n46\\n00:02:35,456 --> 00:02:39,288\\nStaðsetning er jarðfræðileg staðsetning \\nþar sem bókin var gefin út.\\n\\n47\\n00:02:39,604 --> 00:02:44,452\\nISBN stendur fyrir \"International\\nStandard Book Number\"\\n\\n48\\n00:02:44,502 --> 00:02:50,038\\nÞað er meira um það\\ná wikipedia.org/wiki/ISBN\\n\\n49\\n00:02:50,053 --> 00:02:53,153\\nEn það er í grunnatriðum\\neinstakt auðkenni bókar.\\n\\n50\\n00:02:53,754 --> 00:02:58,919\\nBlaðsíður eru ekki\\nheildarblaðsíðufjöldi bókar\\n\\n51\\n00:02:58,983 --> 00:03:03,667\\nheldur þær síður sem þú vísar til.\\n\\n52\\n00:03:03,834 --> 00:03:06,876\\nVefslóð er aðeins notuð\\n\\n53\\n00:03:06,927 --> 00:03:10,228\\ntil að vísa á frí eintök\\n\\n54\\n00:03:10,261 --> 00:03:14,373\\nen ekki bókaverslanir.\\n\\n55\\n00:03:15,672 --> 00:03:19,292\\nSíðan kíkjum við á \"Cite journal\".\\n\\n56\\n00:03:19,326 --> 00:03:21,328\\nÞetta hefur marga möguleika,\\n\\n57\\n00:03:21,336 --> 00:03:27,054\\nen þeir sem er erfitt\\nað skilja eru DOI og PMID.\\n\\n58\\n00:03:27,228 --> 00:03:30,023\\nÞau eru einstök auðkenni.\\n\\n59\\n00:03:30,056 --> 00:03:36,159\\nÞetta er Digital Object Identifier\\nog þetta Pub Med unit IDentifier.\\n\\n60\\n00:03:36,434 --> 00:03:39,539\\nÞeir eru eins og ISBN.\\n\\n61\\n00:03:39,752 --> 00:03:44,264\\nVefslóð ætti að tengja\\ní fría útgáfu textans\\n\\n62\\n00:03:44,285 --> 00:03:46,467\\nen ef það er ekki til\\n\\n63\\n00:03:46,517 --> 00:03:50,262\\nmá tengja í útgáfu sem hægt\\ner að nálgast með áskrift.\\n\\n64\\n00:03:50,295 --> 00:03:53,686\\nEf þú tilgreinir ekki DOI eða PMID\\n\\n65\\n00:03:53,740 --> 00:04:00,792\\ngetur þú notað vefslóð á úrdrátt\\neða lýsingu á greininni.\\n\\n66\\n00:04:00,840 --> 00:04:04,635\\nHér er hugmynd að grein um Mastiffs.\\n\\n67\\n00:04:04,699 --> 00:04:06,515\\nHún er þrjár setningar að lengd.\\n\\n68\\n00:04:06,582 --> 00:04:08,931\\nOg er öll frá þessari bók\\n\\n69\\n00:04:09,014 --> 00:04:12,161\\nsem heitir Mastiffs,\\neftir Kim Campell Thornton.\\n\\n70\\n00:04:12,261 --> 00:04:15,010\\nÉg ætla að sýna hvernig á að vísa í bók.\\n\\n71\\n00:04:15,090 --> 00:04:16,876\\nÉg smelli á breyta.\\n\\n72\\n00:04:18,809 --> 00:04:20,941\\nÞað mikilvæga\\n\\n73\\n00:04:21,007 --> 00:04:24,160\\ner að setja bendilinn\\nþar sem heimildin á að koma.\\n\\n74\\n00:04:24,183 --> 00:04:27,959\\nÞar sem ég vill vísa í heimild fyrir\\n\"They were first being exhibited in 1860\"\\n\\n75\\n00:04:28,009 --> 00:04:29,608\\nset ég bendilinn aftan við það.\\n\\n76\\n00:04:30,056 --> 00:04:31,803\\nSmelli á \"Cite book\"\\n\\n77\\n00:04:32,203 --> 00:04:37,552\\nog slæ in nafn höfundar,\\n\\n78\\n00:04:38,292 --> 00:04:39,748\\ntitil bókarinnar,\\n\\n79\\n00:04:40,398 --> 00:04:42,015\\nútgáfuárið\\n\\n80\\n00:04:42,025 --> 00:04:46,220\\nfinn ég í þessum hluta\\nsem Google Books sýnir.\\n\\n81\\n00:04:47,052 --> 00:04:51,495\\nÁrið var 2009 og útgefandinn\\nvar \"Barron\\'s Educational Series\"\\n\\n82\\n00:04:53,282 --> 00:04:55,911\\nSíðan get ég fundið ISBN.\\n\\n83\\n00:04:57,006 --> 00:04:59,127\\nÉg nota 13 stafa töluna.\\n\\n84\\n00:05:01,512 --> 00:05:03,665\\nÉg lími hana bara hér inn.\\n\\n85\\n00:05:03,698 --> 00:05:06,947\\nÉg veit að ég notaði síður 9-10.\\n\\n86\\n00:05:07,029 --> 00:05:11,478\\nÉg afrita vefslóð síðunnar\\nog lími hana hér.\\n\\n87\\n00:05:11,511 --> 00:05:14,497\\nÉg þarf að velja heimildanafn,\\n\\n88\\n00:05:14,546 --> 00:05:17,806\\nsvo ég ætla að nota \"Thornton\",\\nþví það er nafn höfundarins.\\n\\n89\\n00:05:18,392 --> 00:05:20,675\\nÞú sérð að heimildin\\nhefur verið sett hér inn\\n\\n90\\n00:05:20,695 --> 00:05:24,479\\ná milli þessara tveggja HTML taga.\\n\\n91\\n00:05:24,505 --> 00:05:27,623\\nOg heimildarsnið\\ner innifalið á milli þeirra.\\n\\n92\\n00:05:27,657 --> 00:05:30,673\\nNú þarf ég að bæta við heimildar kafla.\\n\\n93\\n00:05:30,723 --> 00:05:33,988\\nÞetta er mikilvægt,\\nþví annars færðu villu.\\n\\n94\\n00:05:34,038 --> 00:05:39,566\\nÉg bý til heimildar fyrirsögn\\nog sett inn reflist sniðið hér.\\n\\n95\\n00:05:39,780 --> 00:05:41,612\\nSíðan skrifa ég breytingarágrip\\n\\n96\\n00:05:42,774 --> 00:05:44,122\\nog ýti á vista.\\n\\n97\\n00:05:44,322 --> 00:05:46,846\\nHér sérðu vísun í heimildina.\\n\\n98\\n00:05:46,857 --> 00:05:50,499\\nÞað hefur búið til neðanmálsgrein fyrir\\nmig og setti hana í heimildarkaflann.\\n\\n99\\n00:05:50,550 --> 00:05:53,136\\nSegjum að ég vilji vísa\\ní heimild fyrir þessa setningu.\\n\\n100\\n00:05:53,169 --> 00:05:54,553\\nÉg myndi fara í edit.\\n\\n101\\n00:05:55,210 --> 00:05:59,090\\nAfþví upplýsingarnar\\neru þegar tilgreindar í þessari heimild\\n\\n102\\n00:05:59,117 --> 00:06:01,572\\nhún er á blaðsíðu 9-10 í þessari bók,\\n\\n103\\n00:06:01,622 --> 00:06:03,962\\nætla ég að nota nefnda heimild hér.\\n\\n104\\n00:06:04,008 --> 00:06:05,844\\nÉg fer í nefndar heimildir\\n\\n105\\n00:06:06,134 --> 00:06:08,487\\nog undir fellivallistanum er \"Thornton\",\\n\\n106\\n00:06:08,498 --> 00:06:10,381\\nþví ég valdi það sem nafn.\\n\\n107\\n00:06:10,402 --> 00:06:12,097\\nÉg smelli á það og \"bæta við\"\\n\\n108\\n00:06:12,283 --> 00:06:16,814\\nog það bætir við þessum litla HTML kóða\\n\\n109\\n00:06:16,847 --> 00:06:21,600\\nsem mun búa til heimildina hérna einnig.\\n\\n110\\n00:06:22,138 --> 00:06:23,382\\nSvo ef ég vista\\n\\n111\\n00:06:29,271 --> 00:06:33,475\\nsérðu að nú sést báðar\\nsetningarnar með heimild.\\n\\n112\\n00:06:33,503 --> 00:06:37,051\\nTölurnar eru eins því\\nþað er sama heimildin\\n\\n114\\n00:06:37,085 --> 00:06:39,866\\nog þær eru báðar tengdar\\nvið heimildina hér neðst.',\n", + " 'bytes': 8806,\n", + " 'sha1': 'pdz1kvpnnys7kcxxqh0fi9q10pwt976',\n", + " 'parent_id': 653302892,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 78986015,\n", + " 'timestamp': '2012-09-24T10:48:14Z',\n", + " 'user': {'id': 2231096, 'text': 'Mfarchitetti'},\n", + " 'page': {'id': 21589291,\n", + " 'title': 'Share Your Knowledge 1 Why glamwiki.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Creazione sottotitoli in italiano',\n", + " 'text': \"1\\n00:00:09,053 --> 00:00:13,001\\nLe istituzioni culturali posseggono e creano contenuti\\n\\n2\\n00:00:13,001 --> 00:00:14,065\\nche vogliono condividere\\n\\n3\\n00:00:15,008 --> 00:00:15,096\\nSfortunatamente\\n\\n4\\n00:00:15,096 --> 00:00:17,059\\nanche se alcuni di questi contenuti\\n\\n5\\n00:00:17,059 --> 00:00:19,028\\nsono stati digitalizzati\\n\\n6\\n00:00:19,028 --> 00:00:21,057\\nnon sempre sono disponibili\\n\\n7\\n00:00:21,057 --> 00:00:23,076\\no accessibili a tutti.\\n\\n8\\n00:00:23,076 --> 00:00:25,076\\nSe i diritti dei tuoi libri e dei tuoi cataloghi\\n\\n9\\n00:00:25,076 --> 00:00:27,003\\nsono scaduti\\n\\n10\\n00:00:27,003 --> 00:00:30,022\\ne non hai le risorse per ripubblicarli\\n\\n11\\n00:00:30,022 --> 00:00:33,076\\nSe i tuoi files sono disorganizzati\\n\\n12\\n00:00:33,076 --> 00:00:36,055\\ne non hai sufficienti fondi\\n\\n13\\n00:00:36,055 --> 00:00:38,026\\nForse potresti essere interessato\\n\\n14\\n00:00:38,026 --> 00:00:40,011\\na Condividere la Tua Conoscenza\\n\\n15\\n00:00:40,011 --> 00:00:41,068\\nPer cominciare a farlo\\n\\n16\\n00:00:41,068 --> 00:00:43,053\\ntutto quello che devi fare è rilasciare\\n\\n17\\n00:00:43,053 --> 00:00:48,018\\ntutti i tuoi contenuti sotto la licenza CC-BY-SA\\n\\n18\\n00:00:48,018 --> 00:00:50,057\\nCosì permetterai ad altri di ridistribuire, modificare, e\\n\\n19\\n00:00:50,057 --> 00:00:53,051\\ncreare altre opere a partire dai files originali,\\n\\n20\\n00:00:53,051 --> 00:00:56,018\\nanche per scopi commerciali.\\n\\n21\\n00:00:56,048 --> 00:00:58,081\\nLe nuove opere devono anch'esse essere pubblicate\\n\\n22\\n00:00:58,081 --> 00:01:00,035\\ncon la stessa licenza\\n\\n23\\n00:01:00,035 --> 00:01:02,088\\nindicando l'autore originale.\\n\\n24\\n00:01:02,088 --> 00:01:07,046\\nInfine, attraverso Wikipedia, la tua conoscenza sarà condivisa gratuitamente con il resto del mondo\\n\\n25\\n00:01:07,046 --> 00:01:09,083\\nDue esempi:\\n\\n26\\n00:01:09,083 --> 00:01:11,052\\nL'Archivio Federale Tedesco\\n\\n27\\n00:01:11,052 --> 00:01:15,017\\nha rilasciato immagini a bassa risoluzione su Wikimedia Commons\\n\\n28\\n00:01:15,017 --> 00:01:19,043\\nIn questo modo il numero delle immagini ad alta risoluzione vendute dall'Archivio è triplicato.\\n\\n29\\n00:01:19,043 --> 00:01:22,063\\nLa fondazione italiana Cariplo ha creato\\n\\n30\\n00:01:22,063 --> 00:01:24,027\\ne caricato su Wikipedia\\n\\n31\\n00:01:24,027 --> 00:01:28,054\\n247 articoli in italiano e inglese\\n\\n32\\n00:01:28,054 --> 00:01:34,010\\ne 854 artisti e loro lavori provenienti dalla sua collezione.\\n\\n33\\n00:01:34,010 --> 00:01:36,006\\nCondividi la Tua Conoscenza ti aiuterà\\n\\n34\\n00:01:36,006 --> 00:01:38,017\\nad organizzare i tuoi materiali\\n\\n35\\n00:01:38,017 --> 00:01:39,014\\nin modo efficiente,\\n\\n36\\n00:01:39,014 --> 00:01:41,013\\ne ti assisterà a pianificare\\n\\n37\\n00:01:41,013 --> 00:01:42,071\\ncome condividere tutti gli archivi\\n\\n38\\n00:01:42,071 --> 00:01:44,057\\nche creerai in futuro.\\n\\n39\\n00:01:44,057 --> 00:01:45,067\\nÈ gratis,\\n\\n40\\n00:01:45,067 --> 00:01:47,018\\ne migliora la visibilità\\n\\n41\\n00:01:47,018 --> 00:01:49,082\\ndella tua organizzazione e dei tuoi contenuti.\\n\\n42\\n00:01:49,082 --> 00:01:52,041\\nAllora, perché non farlo?\",\n", + " 'bytes': 2964,\n", + " 'sha1': '65t2yzms7xat6pwjqwxvroctnqrshea',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 675181803,\n", + " 'timestamp': '2022-07-17T17:04:57Z',\n", + " 'user': {'id': 10388051, 'text': 'Andahuaylas'},\n", + " 'page': {'id': 21993645,\n", + " 'title': 'Citing sources tutorial, part 2.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Fix: empty section error',\n", + " 'text': '1\\n00:00:01,234 --> 00:00:03,925\\nThis is part 2 of the citing sources tutorial,\\n\\n2\\n00:00:03,925 --> 00:00:07,053\\nwhich will show you how to add citations on Wikipedia\\n\\n3\\n00:00:07,053 --> 00:00:10,517\\nusing the Cite function in the edit toolbar.\\n\\n4\\n00:00:10,517 --> 00:00:12,254\\nFrom an edit window, click the\\n\\n5\\n00:00:12,254 --> 00:00:14,377\\ncite button, which brings down a\\n\\n6\\n00:00:14,377 --> 00:00:17,430\\nbar of extra options. Here you can click the\\n\\n7\\n00:00:17,430 --> 00:00:19,482\\ntemplates pulldown menu, and then\\n\\n8\\n00:00:19,482 --> 00:00:22,108\\nselect which kind of source you are trying to cite:\\n\\n9\\n00:00:22,108 --> 00:00:26,122\\na generic web page, a news article, a book, or a journal.\\n\\n10\\n00:00:26,122 --> 00:00:29,061\\nFor this example, we\\'ll go with a book.\\n\\n11\\n00:00:29,061 --> 00:00:31,439\\nWe\\'re citing the part of this sandbox page\\n\\n12\\n00:00:31,439 --> 00:00:34,958\\nthat says \"being bold is important on Wikipedia\". \\n\\n13\\n00:00:34,958 --> 00:00:37,118\\nAnd I have a book that backs that up.\\n\\n14\\n00:00:37,118 --> 00:00:39,114\\nSo clicking cite book\\n\\n15\\n00:00:39,114 --> 00:00:40,939\\nbrings up fields where you can put in\\n\\n16\\n00:00:40,939 --> 00:00:42,743\\nthe author -- John Broughton -- \\n\\n17\\n00:00:42,743 --> 00:00:45,955\\nand the title -- Wikipedia: The Missing Manual --\\n\\n18\\n00:00:45,955 --> 00:00:47,119\\nand the year\\n\\n19\\n00:00:47,119 --> 00:00:48,924\\nand publisher and so on.\\n\\n20\\n00:00:48,924 --> 00:00:51,296\\nAnother way to go is to\\n\\n21\\n00:00:51,296 --> 00:00:54,658\\nstart with the ISBN. Then you can press the\\n\\n22\\n00:00:54,658 --> 00:00:56,733\\nsearch button next to it, and it will\\n\\n23\\n00:00:56,733 --> 00:01:00,036\\nfill in the rest of the info automatically.\\n\\n24\\n00:01:00,036 --> 00:01:03,191\\nAnother handy feature is the Ref name field.\\n\\n25\\n00:01:03,191 --> 00:01:06,695\\nPut in a short word or phrase to identify the source\\n\\n26\\n00:01:06,695 --> 00:01:08,612\\n -- I\\'ll call this one Broughton -- \\n\\n27\\n00:01:08,612 --> 00:01:11,383\\nand it will be easy to cite the source multiple times\\n\\n28\\n00:01:11,383 --> 00:01:14,421\\nwithout having to re-enter any info.\\n\\n29\\n00:01:14,421 --> 00:01:17,155\\nIf there\\'s more you need to add to the citation,\\n\\n30\\n00:01:17,155 --> 00:01:19,830\\nyou can press the show extra fields button,\\n\\n31\\n00:01:19,830 --> 00:01:24,703\\nwhich lets you add coauthors, editor, and other details.\\n\\n32\\n00:01:24,703 --> 00:01:27,827\\nOnce you\\'ve added all the info you want for the citation,\\n\\n33\\n00:01:27,827 --> 00:01:31,229\\npress insert, and the wiki code for the citation\\n\\n34\\n00:01:31,229 --> 00:01:33,399\\nwill be added right where the cursor was\\n\\n35\\n00:01:33,399 --> 00:01:35,873\\nwhen you started the citation tool.\\n\\n36\\n00:01:35,873 --> 00:01:37,288\\nAdd an edit summary,\\n\\n37\\n00:01:37,288 --> 00:01:38,418\\nsave the page,\\n\\n38\\n00:01:38,418 --> 00:01:40,845\\nand you see the new citation,\\n\\n39\\n00:01:40,845 --> 00:01:43,779\\nwith a numbered superscript linking to the footnote,\\n\\n40\\n00:01:43,779 --> 00:01:47,123\\njust like with a manually-added citation.\\n\\n41\\n00:01:47,123 --> 00:01:49,754\\nIf you used the ref name feature,\\n\\n42\\n00:01:49,754 --> 00:01:51,899\\nthen when you make another edit to the page,\\n\\n43\\n00:01:51,899 --> 00:01:55,259\\nyou can click \"named references\" in the cite toolbar\\n\\n44\\n00:01:55,259 --> 00:01:59,682\\nto pull up a list of all the named references in the article.\\n\\n45\\n00:01:59,682 --> 00:02:02,427\\nPick the one you want, press insert,\\n\\n46\\n00:02:02,427 --> 00:02:03,554\\nand it will add the code\\n\\n47\\n00:02:03,554 --> 00:02:06,614\\nfor another reference to the same footnote.\\n\\n48\\n00:02:06,614 --> 00:02:10,022\\nAnother feature of the cite tool is error check.\\n\\n49\\n00:02:10,022 --> 00:02:13,837\\nPress that button to pull up the error checking options.\\n\\n50\\n00:02:13,837 --> 00:02:15,963\\nSelect the ones you want and press \"Check\",\\n\\n51\\n00:02:15,963 --> 00:02:19,007\\nand you\\'ll get a citation error report,\\n\\n52\\n00:02:19,007 --> 00:02:21,982\\nlisting any broken or duplicate references.\\n\\n53\\n00:02:21,982 --> 00:02:23,237\\nAnd that\\'s it!\\n\\n54\\n00:02:23,237 --> 99:59:59,000\\nHappy editing!',\n", + " 'bytes': 4012,\n", + " 'sha1': 'b6ntbxd9dkv48t07xd6mrxqn306p17i',\n", + " 'parent_id': 80512078,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 336214368,\n", + " 'timestamp': '2019-01-24T12:56:01Z',\n", + " 'user': {'id': 1297740, 'text': 'Snævar'},\n", + " 'page': {'id': 22030886,\n", + " 'title': 'Talkpages.ogv.is.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:03,300\\nHvernig á að nota spjallsíður og hvernig á að skrifa undir\\n\\n2\\n00:00:04,000 --> 00:00:07,300\\nskilaboð sem þú skilur eftir á spjallsíðu einhvers.\\n\\n3\\n00:00:08,000 --> 00:00:10,300\\nÞað fyrsta sem þú vilt gera\\n\\n4\\n00:00:11,000 --> 00:00:12,300\\ner að fara á wikipediu\\n\\n5\\n00:00:13,000 --> 00:00:16,300\\nSegjum að það sé ákveðinn notandi sem þú villt skilja eftir\\n\\n6\\n00:00:17,000 --> 00:00:19,300\\nskilaboð hjá. Í þessu tilfelli GorillaWarfare.\\n\\n7\\n00:00:20,000 --> 00:00:24,300\\nGorillaWarefare er félagi minn, við erum í \"Campus Abassadors\"\\n\\n8\\n00:00:25,000 --> 00:00:26,300\\nspjall verkefni, sem hjállpar notendum.\\n\\n9\\n00:00:28,000 --> 00:00:31,300\\nAllavegana, ég ætla að smella á spjallsíðuna\\n\\n10\\n00:00:32,000 --> 00:00:33,300\\nþví ég ætla að skilja eftir skilaboð.\\n\\n11\\n00:00:34,000 --> 00:00:36,300\\nÞað sem ég myndi gera er að smella á \"bæta við umræðu\"\\n\\n12\\n00:00:37,000 --> 00:00:40,300\\nhérna, eftir að hafa smellt á spjallsíðuna og séð til þess\\n\\n13\\n00:00:41,000 --> 00:00:43,300\\nað titilinn sé Notendaspjall:GorillaWarfare. Smella á \"bæta við umræðu\"\\n\\n14\\n00:00:44,000 --> 00:00:49,300\\nHér er áminning með minniháttar leiðbeiningum.\\n\\n15\\n00:00:50,000 --> 00:00:55,300\\nEn, ég fer í reitinn \"fyrirsögn\" og skrifa \"Hæ, GW. Hvernig hefur þú það?\"\\n\\n16\\n00:00:56,000 --> 00:01:00,300\\nÞað er bara fyrirsögnin og á botninum skrifa ég. \"Hæ, GW.\\n\\n17\\n00:01:01,000 --> 00:01:06,300\\nÉg hafði gaman af því að spjalla við þig á IRC-rásinni.\\n\\n18\\n00:01:07,000 --> 00:01:11,300\\nVona að þú eigir góðan dag.\" Þetta eru skilaboðin sem ég ætla að senda.\\n\\n19\\n00:01:12,000 --> 00:01:15,300\\nEn, þú þarft að skrifa undir skilaboðin þín.\\n\\n20\\n00:01:16,000 --> 00:01:19,300\\nTaktu eftir þessu \"Vinsamlegast skrifaðu undir og dagsettu öll skilaboð\\n\\n21\\n00:01:20,000 --> 00:01:23,300\\nmeð því að bæta við fjórum tildum í enda skilaboðanna.\"\\n\\n22\\n00:01:24,000 --> 00:01:31,300\\nÞú gerir eitt bil og smellir á Shift-tilda. Einn, tveir, þrír, fjórir.\\n\\n23\\n00:01:32,000 --> 00:01:34,300\\nOg með því að skilja eftir þessar fjórar tildur þá skrifar það sjálfrafa undir\\n\\n24\\n00:01:35,000 --> 00:01:40,300\\nskilaboðin þín með notendanafni og dagsetningu skilaboðanna.\\n\\n25\\n00:01:41,000 --> 00:01:44,300\\nÞegar þú ert búinn ferðu niður og smellir á \"vista síðu\".\\n\\n26\\n00:01:45,000 --> 00:01:49,300\\nOg þarna, eru skilaboðin sem eru sýnd neðst. \"Hæ GW\" \\n\\n27\\n00:01:50,000 --> 00:01:51,300\\nogsvo framvegis.\\n\\n28\\n00:01:52,000 --> 00:01:57,300\\nOg taktu eftir því að það er sjálfkrafa skrifað undir. Hér er tíminn og dagsetningin.\\n\\n29\\n00:01:58,000 --> 00:02:00,300\\nÞað notast við UTC, þú veist, samræmdur alþjóðlegur tími.\\n\\n30\\n00:02:01,000 --> 00:02:05,300\\nSegjum að ég hafi gleymt að bæta svolitlu við, skilaboðum undir þessu.\\n\\n31\\n00:02:06,000 --> 00:02:10,300\\nÉg smelli á breyta. Ó, svo ég fékk skilaboð núna.\\n\\n32\\n00:02:11,000 --> 00:02:16,300\\nEf þú myndir vilja setja svarskilaboð við eitthvað.\\n\\n33\\n00:02:17,000 --> 00:02:21,300\\nSvo, hér eru upphaflegu skilaboðin, þú sérð einnig eitthvað annað skrifað\\n\\n34\\n00:02:22,000 --> 00:02:24,300\\nhér ef einhver annar hefur svarað í þessari umræðu.\\n\\n35\\n00:02:25,000 --> 00:02:29,300\\nÞað sem þú gerir er að þú býrð til nýja línu og tvípunkt.\\n\\n36\\n00:02:30,000 --> 00:02:34,300\\nTvípunktur er wiki-kóði yfir það að setja lítinn inndrátt.\\n\\n37\\n00:02:35,000 --> 00:02:40,300\\nEf þú setur tvo tvípunkta þá verður til lengri inndráttur og svo framvegis.\\n\\n38\\n00:02:41,000 --> 00:02:43,300\\nSvo, ég vill skrifa svarskilaboð, svo ég set einn tvípunkt\\n\\n39\\n00:02:44,000 --> 00:02:50,300\\nog skrifa \"Úps, gleymdi að segja að mér finnst þú frábær ritstjóri\".\\n\\n40\\n00:02:51,000 --> 00:02:54,300\\nOg svo skrifa ég undir aftur og í þetta skipti skrifa ég breytingarágrip\\n\\n41\\n00:02:55,000 --> 00:03:00,300\\nafþví það er ekki ný umræða. Í breytingarágripinu skrifa ég\\n\\n42\\n00:03:01,000 --> 00:03:05,300\\n\"Gleymdi að segja...\" og svo smelli ég á vista síðu.\\n\\n43\\n00:03:06,000 --> 00:03:10,300\\nÉg held að sumir hafi ... haldið að það ætti\\n\\n44\\n00:03:11,000 --> 00:03:13,300\\nað setja fjórar tildur í breytingarágripið. Þú þarft þess ekki.\\n\\n45\\n00:03:14,000 --> 00:03:17,300\\nEn þú þarft að setja fjórar tildur eftir skilaboðin í breytingarglugganum.\\n\\n46\\n00:03:18,000 --> 00:03:21,300\\nSíðan smellir þú á vista síðu.\\n\\n47\\n00:03:25,000 --> 00:03:29,300\\nHvenær sem það vill koma upp.\\n\\n48\\n00:03:30,000 --> 00:03:36,300\\nÞarna kom það. Þú tekur eftir því að það er lítill inndráttur hér.\\n\\n49\\n00:03:37,000 --> 00:03:44,300\\nÉg hef sent þessi skilaboð til GW. Svo, þannig notaru spjallsíðu\\n\\n50\\n00:03:45,000 --> 00:03:48,300\\nÞað sama gildir við spjallsíðu greinar.\\n\\n51\\n00:03:49,000 --> 00:03:56,300\\nSegjum að það sé grein sem þú viljir setja athugasemd við\\n\\n52\\n00:03:57,000 --> 00:04:00,300\\nog sú grein sé \"Visa policy of South Africa\"\\n\\n53\\n00:04:01,000 --> 00:04:05,300\\nHérna gerir þú það sama, smellir á spjall og bæta vð umræðu.\\n\\n54\\n00:04:06,000 --> 00:04:10,300\\nOg það er nákvæmlega eins, svo þannig notaru spjallsíður.',\n", + " 'bytes': 5236,\n", + " 'sha1': 'tdawvf1lxkru7fnrwnny2xqafjos9n2',\n", + " 'parent_id': 336135749,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 82297022,\n", + " 'timestamp': '2012-11-03T01:14:59Z',\n", + " 'user': {'id': 1496593, 'text': 'Gtdp'},\n", + " 'page': {'id': 22523890,\n", + " 'title': \"Dust Models Paint Alien's View of Solar System.ogv.en.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Replaced with properly formatted subs',\n", + " 'text': \"1\\n00:00:08,374 --> 00:00:11,821\\nAstronomers have just begun imaging planets around other stars.\\n\\n2\\n00:00:11,821 --> 00:00:16,871\\nThe technique isn't very advanced yet, and it can't see any planets as small as those in our own solar system.\\n\\n3\\n00:00:16,871 --> 00:00:21,197\\nBut let's suppose for a moment that alien astronomers are looking at our planetary system.\\n\\n4\\n00:00:21,197 --> 00:00:26,925\\nCould they find any evidence that planets existed around the Sun, even if they couldn't see the planets themselves?\\n\\n5\\n00:00:26,925 --> 00:00:28,813\\nThe answer is probably yes.\\n\\n6\\n00:00:28,813 --> 00:00:32,270\\nThat's because at least one world in our Solar System would make its presence known\\n\\n7\\n00:00:32,270 --> 00:00:38,622\\nby its effects on a huge cloud of dust at the fringes of the Solar System in a place called the Kuiper Belt.\\n\\n8\\n00:00:39,269 --> 00:00:42,346\\nThe Kuiper Belt is a kind of cold storage zone out beyond Neptune\\n\\n9\\n00:00:42,346 --> 00:00:45,956\\noccupied by millions of icy bodies, including Pluto.\\n\\n10\\n00:00:45,956 --> 00:00:52,131\\nThe icy objects in the Kuiper Belt release dust that, from afar, could appear as a hazy disk at infra-red wavelengths.\\n\\n11\\n00:00:53,071 --> 00:00:56,890\\nNew computer models created by NASA scientists, shown here,\\n\\n12\\n00:00:56,890 --> 00:01:00,551\\nreveal what dust in the Kuiper Belt might look like to an alien astronomer.\\n\\n13\\n00:01:00,935 --> 00:01:07,038\\nNeptune creates the intricate pattern. The massive planet's gravity tugs on the cloud's dust grains, nudging them in their orbits.\\n\\n14\\n00:01:08,331 --> 00:01:13,201\\nNeptune creates a ring structure in the dust cloud which features a gap where the planet itself resides.\\n\\n15\\n00:01:13,201 --> 00:01:17,267\\nThis gap should make it fairly easy to tell where Neptune is from afar,\\n\\n16\\n00:01:17,267 --> 00:01:21,407\\neven at distances where the planet is too dim to detect directly.\\n\\n17\\n00:01:21,407 --> 00:01:24,176\\nThe supercomputer simulations that Mark Cusher and I performed\\n\\n18\\n00:01:24,176 --> 00:01:27,135\\nalso allow us to see what the dust in the Solar System may have looked like\\n\\n19\\n00:01:27,135 --> 00:01:29,270\\nwhen the Solar System was much younger.\\n\\n20\\n00:01:29,270 --> 00:01:34,304\\nIn effect, we can go back in time and see how the distant view of the Solar System may have changed.\\n\\n21\\n00:01:35,212 --> 00:01:38,569\\nIn its youth, the Kuiper Belt contained many more objects and, consequently,\\n\\n22\\n00:01:38,569 --> 00:01:43,976\\nlots more dust. In fact, the dust was so thick that the particles themselves often collided.\\n\\n23\\n00:01:45,392 --> 00:01:49,106\\nWhen we included collisions between dust particles we were really amazed by what we saw.\\n\\n24\\n00:01:51,244 --> 00:01:55,504\\nSuccessively younger models of the Kuiper Belt dust cloud show progressively simpler structure,\\n\\n25\\n00:01:55,504 --> 00:01:59,075\\neventually leading to a single narrow ring beyond Neptune's orbit.\\n\\n26\\n00:02:00,905 --> 00:02:04,047\\nDust collisions change Neptune's gravitational imprint.\\n\\n27\\n00:02:04,047 --> 00:02:06,856\\nThe gap in the ring structure disappears.\\n\\n28\\n00:02:10,579 --> 00:02:13,366\\nThe amazing thing is we've already seen ring structures like this\\n\\n29\\n00:02:13,366 --> 00:02:16,249\\naround other younger stars like Fomalhaut.\\n\\n30\\n00:02:17,603 --> 00:02:22,894\\nIn terms of dust, we now know that these other systems may look similar to our young Solar System.\\n\\n31\\n00:02:24,694 --> 00:02:27,755\\nDust around other stars can tell us a lot about possible planets,\\n\\n32\\n00:02:27,776 --> 00:02:30,806\\njust as in our own Solar System, it could reveal Neptune.\",\n", + " 'bytes': 3560,\n", + " 'sha1': 'k65ogq7t6rbwd0xod4k1u8forbbaoak',\n", + " 'parent_id': 82296993,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 191456144,\n", + " 'timestamp': '2016-03-28T03:14:42Z',\n", + " 'user': {'id': 305480, 'text': 'This, that and the other'},\n", + " 'page': {'id': 22549896,\n", + " 'title': 'ABC Clarke predicts internet and PC.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'corrections',\n", + " 'text': \"1\\n00:00:00,100 --> 00:00:02,200\\n<i>Interviewer:</i>\\nNow, with that movie, 2001,\\n\\n2\\n00:00:02,300 --> 00:00:04,600\\nyou are projecting us into the 21st century.\\n\\n3\\n00:00:04,700 --> 00:00:06,500\\nI've brought along my son Jonathan\\n\\n4\\n00:00:06,600 --> 00:00:09,500\\nwho in the year 2001 will be\\n\\n5\\n00:00:09,600 --> 00:00:10,700\\nthe same age as I am now.\\n\\n6\\n00:00:10,800 --> 00:00:11,800\\nMaybe he will be better adjusted to\\n\\n7\\n00:00:11,900 --> 00:00:14,700\\nthis kind of world that you're trying to portray.\\n\\n8\\n00:00:15,600 --> 00:00:16,900\\n<i>Clarke:</i>\\nThe big difference when he grows up,\\n\\n9\\n00:00:17,000 --> 00:00:19,600\\nin fact he wouldn't want to wait till the year 2001,\\n\\n10\\n00:00:19,700 --> 00:00:22,200\\nis that he will have, in his own house,\\n\\n11\\n00:00:22,300 --> 00:00:23,700\\nnot a computer as big as this,\\n\\n12\\n00:00:23,800 --> 00:00:26,300\\nbut at least a console\\n\\n13\\n00:00:26,400 --> 00:00:27,800\\nthrough which he can talk\\n\\n14\\n00:00:27,900 --> 00:00:29,700\\nto his friendly local computer\\n\\n15\\n00:00:29,800 --> 00:00:31,100\\nand get all the information needs\\n\\n16\\n00:00:31,200 --> 00:00:32,600\\nfor his everyday life,\\n\\n17\\n00:00:32,700 --> 00:00:33,700\\nlike his bank statements,\\n\\n18\\n00:00:33,800 --> 00:00:36,000\\nhis theater reservations,\\n\\n19\\n00:00:36,100 --> 00:00:38,200\\nall the information you need\\n\\n20\\n00:00:38,300 --> 00:00:41,200\\nin the course of living in our complex modern society.\\n\\n21\\n00:00:41,300 --> 00:00:44,000\\nThis will be in a compact form\\n\\n22\\n00:00:44,100 --> 00:00:46,100\\nin his own house.\\n\\n23\\n00:00:46,200 --> 00:00:47,600\\nHe'll have a television screen like these here\\n\\n24\\n00:00:47,700 --> 00:00:49,600\\nand a keyboard and he'll talk\\n\\n25\\n00:00:49,700 --> 00:00:51,100\\nto the computer and get information from it.\\n\\n26\\n00:00:51,200 --> 00:00:52,300\\nAnd he'll take it as much for granted\\n\\n27\\n00:00:52,400 --> 00:00:53,400\\nas we take the telephone!\\n\\n28\\n00:00:53,800 --> 00:00:56,300\\n<i>Interviewer:</i>\\nI wonder what sort of a life would it be like\\n\\n29\\n00:00:56,400 --> 00:00:59,400\\nin social terms if our whole life is\\n\\n30\\n00:00:59,500 --> 00:01:01,300\\nbuilt around a computer.\\n\\n31\\n00:01:01,400 --> 00:01:02,600\\nDo we become a computer-dependent society,\\n\\n32\\n00:01:02,700 --> 00:01:04,300\\nand computer-dependent individuals?\\n\\n33\\n00:01:04,400 --> 00:01:06,600\\n<i>Clarke:</i>\\nIn some ways, but they'll\\n\\n34\\n00:01:06,700 --> 00:01:07,600\\nalso enrich our society.\\n\\n35\\n00:01:07,700 --> 00:01:09,500\\nBecause it will make it possible as\\n\\n36\\n00:01:09,600 --> 00:01:10,600\\nto live anywhere we like.\\n\\n37\\n00:01:11,500 --> 00:01:14,200\\nAny businessman, an executive,\\n\\n38\\n00:01:14,300 --> 00:01:15,700\\ncould live almost anywhere on Earth\\n\\n39\\n00:01:15,800 --> 00:01:17,500\\nand still do his business\\n\\n40\\n00:01:17,600 --> 00:01:18,600\\nthrough a device like this.\\n\\n41\\n00:01:18,700 --> 00:01:20,100\\nAnd this is a wonderful thing!\\n\\n42\\n00:01:20,200 --> 00:01:21,600\\nIt means we won't have to be stuck\\n\\n43\\n00:01:21,700 --> 00:01:23,400\\nin cities, but live out in the\\n\\n44\\n00:01:23,500 --> 00:01:24,800\\ncountry or wherever we please\\n\\n45\\n00:01:24,900 --> 00:01:27,600\\nand still carry on complete interaction\\n\\n46\\n00:01:27,700 --> 00:01:30,900\\nwith human beings, as well as with other computers.\",\n", + " 'bytes': 3181,\n", + " 'sha1': 'iz6sd4a7vp0xvy8j3bvdzl435efqvwr',\n", + " 'parent_id': 82403627,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 82431782,\n", + " 'timestamp': '2012-11-05T11:26:45Z',\n", + " 'user': {'id': 849234, 'text': 'Morn'},\n", + " 'page': {'id': 22555652,\n", + " 'title': '1946-01-31 Radar makes Round Trip To Moon.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:05,828 --> 00:00:09,032 The vivid imaginations of H. G. Wells and Buck Rogers 2 00:00:09,032 --> 00:00:11,818 never cooked up a more fantastic experien...'\",\n", + " 'text': \"1\\n00:00:05,828 --> 00:00:09,032\\nThe vivid imaginations of H. G. Wells and Buck Rogers\\n\\n2\\n00:00:09,032 --> 00:00:11,818\\nnever cooked up a more fantastic experience than the\\n\\n3\\n00:00:11,818 --> 00:00:15,069\\narmy engineers at their laboratory in Belmar, New Jersey.\\n\\n4\\n00:00:15,069 --> 00:00:18,692\\nBanks of instrument panels control a radar installation\\n\\n5\\n00:00:18,692 --> 00:00:23,034\\nthat gives man his first actual contact with the Moon.\\n\\n6\\n00:00:23,034 --> 00:00:28,003\\nAn amazing round trip of over 477,000 miles!\\n\\n7\\n00:00:31,230 --> 00:00:33,041\\nReady to shoot the moon!\\n\\n8\\n00:00:33,041 --> 00:00:35,689\\nThe radar antenna is pointed directly at <i>Luna</i>\\n\\n9\\n00:00:35,689 --> 00:00:37,987\\nand the thrill of a lifetime is in the making.\\n\\n10\\n00:00:50,155 --> 00:00:52,662\\nThree two-and-a-half-second trips up and back.\\n\\n11\\n00:00:52,662 --> 00:00:54,961\\nIf you're ready for another trip to the Moon, let's go!\\n\\n12\\n00:01:02,740 --> 00:01:06,594\\nThat was a 180-cycle note, just about like your home radio.\\n\\n13\\n00:01:06,594 --> 00:01:10,542\\nIt opens up unlimited possibilities for interstellar experiment,\\n\\n14\\n00:01:10,542 --> 00:01:14,234\\naccording to Colonel DeWitt who supervised the project.\\n\\n15\\n00:01:15,580 --> 00:01:18,715\\n<i>DeWitt:</i> Calculations showed that radar equipment could be\\n\\n16\\n00:01:18,715 --> 00:01:22,430\\nput together which would reach the Moon and return.\\n\\n17\\n00:01:24,241 --> 00:01:26,563\\nIf one allows the imagination free reign,\\n\\n18\\n00:01:26,563 --> 00:01:30,279\\nmany future possibilities appear:\\n\\n19\\n00:01:32,368 --> 00:01:37,523\\nSpaceships, carrying passengers at thousands of miles per hour,\\n\\n20\\n00:01:37,523 --> 00:01:42,469\\ncan be controlled and communication established with their passengers,\\n\\n21\\n00:01:42,469 --> 00:01:46,811\\nfor we now know that the Earth's atmosphere can be penetrated.\",\n", + " 'bytes': 1824,\n", + " 'sha1': '683gtsqiyg2b2cy5vqn25uki2ww7e0p',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 82433780,\n", + " 'timestamp': '2012-11-05T12:14:37Z',\n", + " 'user': {'id': 849234, 'text': 'Morn'},\n", + " 'page': {'id': 22556003,\n", + " 'title': '1946-07-11 Hughes Plane Crash.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:04,800 --> 00:00:08,707 Howard Hughes, famous flyer and sportsman, was dragged out of 2 00:00:08,707 --> 00:00:11,261 this wreckage of an experimental ...'\",\n", + " 'text': \"1\\n00:00:04,800 --> 00:00:08,707\\nHoward Hughes, famous flyer and sportsman, was dragged out of\\n\\n2\\n00:00:08,707 --> 00:00:11,261\\nthis wreckage of an experimental plane he was testing.\\n\\n3\\n00:00:11,261 --> 00:00:12,794\\nHe was seriously injured.\\n\\n4\\n00:00:12,794 --> 00:00:16,393\\nAfter ripping the corner from two homes in Beverly Hills, California,\\n\\n5\\n00:00:16,393 --> 00:00:18,947\\nthe plane finally plunged into this house.\\n\\n6\\n00:00:18,947 --> 00:00:22,035\\nThe force of the impact virtually wrecked the building\\n\\n7\\n00:00:22,035 --> 00:00:24,148\\nand caused the plane to catch fire.\\n\\n8\\n00:00:24,148 --> 00:00:27,329\\nThe flyer said that the accident was due to motor failure\\n\\n9\\n00:00:27,329 --> 00:00:28,769\\nshortly after his take-off.\\n\\n10\\n00:00:28,769 --> 00:00:31,648\\nHe failed to make a crash landing on a golf course.\\n\\n11\\n00:00:35,800 --> 00:00:39,752\\nDennis O'Keefe, film actor, inspects damage done the home\\n\\n12\\n00:00:39,752 --> 00:00:42,144\\nof Lieutenant Colonel Meyers, chief interpreter at\\n\\n13\\n00:00:42,144 --> 00:00:43,723\\nthe Nuremberg War Trials.\\n\\n14\\n00:00:44,100 --> 00:00:47,275\\nAmerica's aviation trailblazers willingly pay the price\\n\\n15\\n00:00:47,275 --> 00:00:49,621\\nin man's conquest of the air.\",\n", + " 'bytes': 1205,\n", + " 'sha1': '43tohn9cphrxgf1iy4ipyyu254pcs3s',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 631798660,\n", + " 'timestamp': '2022-02-23T11:08:13Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 22556405,\n", + " 'title': 'Bombing of Hamburg.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments, new text division for better readability',\n", + " 'text': \"1\\n00:00:00,312 --> 00:00:05,543\\n[Hamburg. No. 1 Nazi\\nwar center, blasted by bombs]\\n\\n2\\n00:00:06,800 --> 00:00:09,470\\nBombers of the 8th United States Air Force\\n\\n3\\n00:00:09,503 --> 00:00:11,773\\ntaking off from aerodromes in England\\n\\n4\\n00:00:11,807 --> 00:00:15,638\\ncontinue their round-the-clock devastation\\nof war plants in Nazi Germany.\\n\\n5\\n00:00:23,800 --> 00:00:27,748\\nIn broad daylight, mighty squadrons\\nroar across the North Sea.\\n\\n6\\n00:00:28,173 --> 00:00:32,213\\nOver Hamburg, Germany's principal seaport\\nand number-one war center,\\n\\n7\\n00:00:32,264 --> 00:00:34,869\\ntons of bombs rain from the skies.\\n\\n8\\n00:00:39,800 --> 00:00:41,916\\nAerial photographs show the results:\\n\\n9\\n00:00:41,951 --> 00:00:44,921\\nSeven square miles\\nof Hamburg's war industries,\\n\\n10\\n00:00:44,957 --> 00:00:48,510\\ndocks, military installations\\nflattened and in ruins.\\n\\n11\\n00:00:48,821 --> 00:00:51,758\\nWater mains, gas,\\nand electric plants destroyed.\\n\\n12\\n00:00:51,880 --> 00:00:55,043\\nHamburg as a war center,\\na base for submarines\\n\\n13\\n00:00:55,093 --> 00:00:57,331\\nis virtually wiped off the map.\\n\\n14\\n00:00:58,538 --> 00:01:00,232\\nBattling their way home,\\n\\n15\\n00:01:00,272 --> 00:01:03,486\\nmachine gunners blast \\nenemy fighter planes from the skies.\\n\\n16\\n00:01:10,239 --> 00:01:12,290\\nThe return of the squadrons,\\n\\n17\\n00:01:12,308 --> 00:01:14,745\\njagged gaping holes in many a bomber,\\n\\n18\\n00:01:14,782 --> 00:01:18,067\\ntestify to the intensity\\nof the futile Nazi defense.\\n\\n19\\n00:01:26,500 --> 00:01:29,997\\nEven as a wounded Yankee gunner\\nis borne from his ship,\\n\\n20\\n00:01:30,046 --> 00:01:34,277\\nRAF ground crews are making ready\\nnight raiders to continue the assault.\",\n", + " 'bytes': 1643,\n", + " 'sha1': 'jqmz2h60bgka3ztjno6oycl8pnishlv',\n", + " 'parent_id': 341655708,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 578569463,\n", + " 'timestamp': '2021-08-05T09:18:14Z',\n", + " 'user': {'text': '82.20.53.85'},\n", + " 'page': {'id': 22556945,\n", + " 'title': '1958-02-03 First US Satellite Launched.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Corrected line 11, \"flight industry\" -> \"private industry\"',\n", + " 'text': \"1\\n00:00:05,596 --> 00:00:08,568\\nAt Cape Canaveral, Florida, the Army's Jupiter-C rocket\\n\\n2\\n00:00:08,568 --> 00:00:11,935\\nis readied for America's second attempt to launch a space satellite.\\n\\n3\\n00:00:11,935 --> 00:00:16,091\\nNo relation to the IRBM Jupiter, this is a rebuilt Redstone,\\n\\n4\\n00:00:16,091 --> 00:00:19,226\\na 200-mile missile carrying instead of a warhead\\n\\n5\\n00:00:19,226 --> 00:00:23,103\\nthree stages of solid fuel booster rockets and the Explorer,\\n\\n6\\n00:00:23,103 --> 00:00:27,585\\na six-foot bullet only inches across crammed with electronic gear—\\n\\n7\\n00:00:27,585 --> 00:00:29,767\\nthirty pounds of payload.\\n\\n8\\n00:00:38,000 --> 00:00:40,565\\nThis closeup of the United States edition of Sputnik\\n\\n9\\n00:00:40,565 --> 00:00:43,862\\nwas made at a press conference with leaders of the scientific teams:\\n\\n10\\n00:00:43,862 --> 00:00:47,949\\nDr Wernher von Braun, Dr James Van Allen, and Dr William Pickering,\\n\\n11\\n00:00:47,949 --> 00:00:52,918\\na three-way collaboration between private industry, academic science, and the military.\\n\\n12\\n00:00:55,000 --> 00:00:57,237\\nJupiter-C stands poised on its launching pad.\\n\\n13\\n00:00:57,237 --> 00:00:59,698\\nThe hours-long countdown approaches zero.\\n\\n14\\n00:00:59,698 --> 00:01:03,854\\nA moment of enormous tension, for every missile launching is still an experiment.\\n\\n15\\n00:01:03,854 --> 00:01:07,988\\nAny one of tens of thousands of things can go wrong, with catastrophic results.\\n\\n16\\n00:01:07,988 --> 00:01:10,727\\nBut all that can be done with sure perfection has been done,\\n\\n17\\n00:01:10,727 --> 00:01:13,653\\nthe moment is at hand, the countdown reaches… Zero!\\n\\n18\\n00:01:26,053 --> 00:01:30,000\\nSome three minutes later, Explorer is in orbit, broadcasting to\\n\\n19\\n00:01:30,000 --> 00:01:31,881\\nthe world its coded scientific data:\\n\\n20\\n00:01:31,881 --> 00:01:36,548\\nCosmic ray intensity, meteor impacts, solar radiation,\\n\\n21\\n00:01:36,548 --> 00:01:39,334\\nthese are the dry facts that will help carry man\\n\\n22\\n00:01:39,334 --> 00:01:42,423\\never farther into the age of space.\\n\\n23\\n00:01:49,400 --> 00:01:54,056\\nTwo presidents, Gamal Abdel Nasser of Egypt and Shukri al-Quwatli of Syria,\\n\\n24\\n00:01:54,056 --> 00:01:57,585\\nmeet to make history in Cairo with the federation of their two states\\n\\n25\\n00:01:57,585 --> 00:02:00,511\\ninto one, the United Arab Republic.\\n\\n26\\n00:02:04,300 --> 00:02:06,618\\nThe news electrified the entire Middle East.\\n\\n27\\n00:02:06,618 --> 00:02:10,426\\nIn Cairo, cheering throngs followed the two leaders through the streets exultantly.\\n\\n28\\n00:02:15,500 --> 00:02:19,551\\nThe Al-Azhar Mosque is the scene of prayers for the new union,\\n\\n29\\n00:02:19,551 --> 00:02:22,524\\nwhich has already invited all Arab states to join.\\n\\n30\\n00:02:22,524 --> 00:02:25,217\\nOne, Yemen, is expected to bid for inclusion.\\n\\n31\\n00:02:25,217 --> 00:02:28,305\\nThe new state numbers 30 million, largest in the Mid-East.\\n\\n32\\n00:02:28,305 --> 00:02:31,347\\nNasser has set vast forces in motion with this act.\\n\\n33\\n00:02:31,347 --> 00:02:33,878\\nThe effect on the precariously balanced Middle East\\n\\n34\\n00:02:33,878 --> 00:02:36,432\\nno one today can prophesy.\\n\\n35\\n00:02:36,432 --> 00:02:38,824\\nThe rest of the world—America, Russia, Israel—\\n\\n36\\n00:02:38,824 --> 00:02:42,144\\nall remain cautiously quiet, awaiting the events that\\n\\n37\\n00:02:42,144 --> 00:02:45,720\\nwill follow on Gamal Nasser's moment of triumph.\",\n", + " 'bytes': 3337,\n", + " 'sha1': '3sh2fw5tlsyw5y6s1rj0e31ygcqaamb',\n", + " 'parent_id': 578568955,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 82439723,\n", + " 'timestamp': '2012-11-05T14:36:51Z',\n", + " 'user': {'id': 849234, 'text': 'Morn'},\n", + " 'page': {'id': 22557340,\n", + " 'title': '1946-02-21 New Airliner.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,600 --> 00:00:05,131\\nIn Santa Monica, California, latest in a long line is the Douglas DC-6 and\\n\\n2\\n00:00:05,131 --> 00:00:08,568\\nBen Howard, test pilot, demonstrates the reversible-pitch propellers\\n\\n3\\n00:00:08,568 --> 00:00:13,281\\non the four-engine craft that add to both safety and ease of operation\\n\\n4\\n00:00:13,281 --> 00:00:17,275\\non the ground. With the props in reverse pitch, the giant plane\\n\\n5\\n00:00:17,275 --> 00:00:20,038\\ncould be slowed down during an emergency landing.\\n\\n6\\n00:00:20,038 --> 00:00:24,891\\nMany other war-tested devices are incorporated in the luxury airliner\\n\\n7\\n00:00:24,891 --> 00:00:28,212\\nwhich ushers in a new era in American aviation.\\n\\n8\\n00:00:40,000 --> 00:00:44,141\\n56 passengers will travel in up-to-the-minute comfort onboard\\n\\n9\\n00:00:44,141 --> 00:00:46,323\\nthis successor to the famous Skymaster.\\n\\n10\\n00:00:46,323 --> 00:00:50,665\\nPressure cabins, sound proofing, traveling at a speed of 300 mph\\n\\n11\\n00:00:50,665 --> 00:00:54,009\\nin roomy cabins that can be quickly converted into\\n\\n12\\n00:00:54,009 --> 00:00:57,097\\nsleeping compartments for 26 passengers.\\n\\n13\\n00:01:03,000 --> 00:01:06,919\\nIn this 20th-century magic carpet, you'll soon be able to laugh\\n\\n14\\n00:01:06,919 --> 00:01:10,008\\nat time and space and dream your way across the vastness\\n\\n15\\n00:01:10,008 --> 00:01:12,933\\nof a nation at 20,000 feet.\\n\\n16\\n00:01:16,000 --> 00:01:19,481\\nAn ancient chore in a modern setting!\\n\\n17\\n00:01:20,800 --> 00:01:24,033\\nEverything snug as a bug in a rug, ready to call it a day\\n\\n18\\n00:01:24,033 --> 00:01:26,192\\nand tomorrow comes on wings of safety.\\n\\n19\\n00:01:26,400 --> 00:01:27,800\\nBye now!\",\n", + " 'bytes': 1634,\n", + " 'sha1': '5y8wtrdfjg9d82lyqle4ex466jjmacv',\n", + " 'parent_id': 82439508,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 653766301,\n", + " 'timestamp': '2022-05-04T08:53:27Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 22557980,\n", + " 'title': '1937-05-10 Special Release - Zeppelin Explodes Scores Dead.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall subtitles update',\n", + " 'text': \"1 (Remove this text with parentheses while translating)\\n00:00:00,171 --> 00:00:03,436\\n[Universal Newsreel\\nZeppelin Explodes Scores Dead]\\n\\n2 (Remove this text with parentheses while translating)\\n00:00:03,469 --> 00:00:05,291\\n[Lakehurst, N. J.]\\n\\n3\\n00:00:07,000 --> 00:00:10,711\\nThe German zeppelin Hindenburg,\\nQueen of the skies, seen here\\n\\n4\\n00:00:10,745 --> 00:00:13,016\\nfrom a Universal newsreel camera plane,\\n\\n5\\n00:00:13,057 --> 00:00:16,573\\nas it sped over New York to its tragic\\nend at Lakehurst, New Jersey,\\n\\n6\\n00:00:16,593 --> 00:00:20,375\\nnow lies at the Naval Air Station,\\na twisted mass of metal.\\n\\n7\\n00:00:20,678 --> 00:00:22,837\\nShortly after these pictures were taken,\\n\\n8\\n00:00:22,887 --> 00:00:25,248\\nshowing the great skyliner\\nsaluting the millions\\n\\n9\\n00:00:25,282 --> 00:00:28,156\\nwatching it from below\\non its first trip of the season,\\n\\n10\\n00:00:28,188 --> 00:00:33,150\\nthe huge craft exploded while docking\\nand blazed to a fiery end,\\n\\n11\\n00:00:33,187 --> 00:00:37,726\\ntaking the lives of almost half\\nits 99 passengers and crew.\\n\\n12\\n00:00:37,749 --> 00:00:41,761\\nHours late on its trip from Hamburg\\nbecause of headwinds,\\n\\n13\\n00:00:41,786 --> 00:00:45,264\\nthe zeppelin had to ride out\\na thunderstorm along the Jersey coast\\n\\n14\\n00:00:45,296 --> 00:00:49,166\\nbefore heading for the Air Station\\nand nosing its way to the mooring mast.\\n\\n15\\n00:00:49,401 --> 00:00:52,086\\nThe wind is bad\\nand the docking is a ticklish one,\\n\\n16\\n00:00:52,126 --> 00:00:55,271\\nbut it's all a thrill for the crowd\\nof happy passengers,\\n\\n17\\n00:00:55,292 --> 00:00:58,330\\neager to land after\\ntheir transoceanic trip.\\n\\n18\\n00:00:58,528 --> 00:01:01,070\\nSlowly the big ship warps in\\n\\n19\\n00:01:01,103 --> 00:01:03,850\\nand the ground crews\\nrush for the mooring lines.\\n\\n20\\n00:01:03,899 --> 00:01:07,921\\nIn another ten minutes or so the great\\naircraft would have been snugly docked.\\n\\n21\\n00:01:07,942 --> 00:01:10,794\\nBut as the passengers crowded\\nthe windows to watch,\\n\\n22\\n00:01:10,814 --> 00:01:14,251\\na roar and a burst of flame\\nnear the big tailfins\\n\\n23\\n00:01:14,291 --> 00:01:16,822\\nturned the ship into a flaming inferno.\\n\\n24\\n00:01:19,087 --> 00:01:21,806\\n(Drammatic music)\\n\\n25\\n00:01:25,739 --> 00:01:28,794\\n(Screams)\\n\\n26\\n00:01:39,258 --> 00:01:43,218\\nPassengers and crew, the fortunate\\namong them, fell or jumped\\n\\n27\\n00:01:43,251 --> 00:01:46,881\\nand were dragged to safety\\nbefore the fiery furnace took their lives.\\n\\n28\\n00:01:46,902 --> 00:01:49,457\\nHeroic work by Navy and Army men,\\n\\n29\\n00:01:49,490 --> 00:01:52,337\\nrisking their lives around\\nthe white-hot skeleton,\\n\\n30\\n00:01:52,359 --> 00:01:55,892\\nsnatched more than one dazed\\nand half-burnt passenger\\n\\n31\\n00:01:55,904 --> 00:01:57,525\\nfrom the blazing wreckage.\\n\\n32\\n00:01:57,558 --> 00:02:01,098\\nBut for the most of those trapped\\nin the incandescent tangle,\\n\\n33\\n00:02:01,131 --> 00:02:02,784\\nthere was no hope!\\n\\n34\\n00:02:02,819 --> 00:02:07,519\\nIt's the greatest of miracles that anyone\\ncame out of the disaster alive.\\n\\n35\\n00:02:12,760 --> 00:02:16,336\\nSeven million cubic feet\\nof inflammable hydrogen gas\\n\\n36\\n00:02:16,369 --> 00:02:18,440\\nblazed up in less than a minute.\\n\\n37\\n00:02:18,475 --> 00:02:23,098\\nThe hundreds of tons of fuel oil\\nburns for an hour or more,\\n\\n38\\n00:02:23,131 --> 00:02:27,142\\nwith its dense black smoke\\nmaking a pall over the tragic scene.\\n\\n39\\n00:02:32,144 --> 00:02:36,763\\nIn all the history of air disasters,\\nthis is the worst, the most terrible.\\n\\n40\\n00:02:36,795 --> 00:02:39,017\\nHailed as the luxury liner of the air,\\n\\n41\\n00:02:39,053 --> 00:02:42,820\\nthe Hindenburg's horrible end\\nhas shocked the entire world.\\n\\n42\\n00:02:42,854 --> 00:02:46,249\\nThe pride of the skies\\nreaches its journey's end.\\n\\n43 (Remove this text with parentheses while translating)\\n00:02:52,258 --> 00:02:54,451\\n[Universal Newsreel]\\n\\n44 (Remove this text with parentheses while translating)\\n00:02:54,465 --> 00:02:57,789\\n[Zep Survivors Fight for Life\\nas Inquiry Begins]\\n\\n45 (Remove this text with parentheses while translating)\\n00:02:57,815 --> 00:03:00,285\\n[Lakenhurst, N. J.]\\n\\n46\\n00:03:01,165 --> 00:03:05,698\\nA twisted, tangled mass of seared girders\\nand bits of blackened fabric\\n\\n47\\n00:03:05,730 --> 00:03:09,306\\nare all that remains of the proud\\nluxury airliner Hindenburg\\n\\n48\\n00:03:09,317 --> 00:03:11,698\\nthat lies at the Lakehurst Naval Station.\\n\\n49\\n00:03:12,148 --> 00:03:15,987\\nThe death list is now 35, with ten,\\nincluding Captain Pruss,\\n\\n50\\n00:03:16,019 --> 00:03:17,604\\nstill on the critical list.\\n\\n51\\n00:03:23,508 --> 00:03:26,510\\nWith the next morning's first light,\\na naval inspection board\\n\\n52\\n00:03:26,527 --> 00:03:29,113\\nheaded by Captain Haines,\\ninspects the wreckage,\\n\\n53\\n00:03:29,138 --> 00:03:32,920\\nas others search the still-smoking\\nruins for a possible clue\\n\\n54\\n00:03:32,959 --> 00:03:35,858\\nthat might yield a key\\nto the mysterious disaster.\\n\\n55\\n00:03:36,041 --> 00:03:38,251\\nThe remains of the Hindenburg\\nwill not be moved\\n\\n56\\n00:03:38,302 --> 00:03:41,738\\nuntil the arrival of Germany's\\nexpert, Dr Hugo Eckener,\\n\\n57\\n00:03:41,780 --> 00:03:45,209\\nwho heads a commission that will\\nconduct an investigation simultaneously\\n\\n58\\n00:03:45,246 --> 00:03:47,204\\nwith the Department of Commerce.\\n\\n59\\n00:03:52,218 --> 00:03:56,770\\nGerman ambassador, Hans Luther,\\nwas the first Reich observer to arrive.\\n\\n60\\n00:03:56,796 --> 00:03:59,795\\nVisiting the injured at the hospital\\nin nearby Lakewood,\\n\\n61\\n00:03:59,829 --> 00:04:03,290\\nbut refusing to comment on anything\\nconnected with the disaster.\\n\\n62\\n00:04:03,647 --> 00:04:06,519\\nAs soon as is possible,\\nthe injured who can be moved\\n\\n63\\n00:04:06,544 --> 00:04:10,542\\nare carried to ambulances were transferred\\nto New York, 60 miles away,\\n\\n64\\n00:04:10,567 --> 00:04:14,298\\nso as to receive everything\\nthat medical science can offer.\\n\\n65\\n00:04:14,739 --> 00:04:19,223\\nSwathed in bandages, they may be more than\\nthankful for their miraculous escape\\n\\n66\\n00:04:19,248 --> 00:04:21,796\\nfrom the blazing inferno\\nof the Hindenburg.\\n\\n67\\n00:04:26,092 --> 00:04:28,095\\nMembers of the crew not seriously injured\\n\\n68\\n00:04:28,123 --> 00:04:30,812\\nwere housed in the officer's\\nmess at the Naval Station.\\n\\n69\\n00:04:30,967 --> 00:04:34,661\\n13-year-old Werner Franz,\\nthe cabin boy, is the youngest survivor,\\n\\n70\\n00:04:34,695 --> 00:04:37,767\\nwill appear before the Department\\nof Commerce investigation board\\n\\n71\\n00:04:37,817 --> 00:04:42,074\\nthat calls Commander Rosendahl, head\\nof the Naval Station, as first witness.\\n\\n72\\n00:04:42,241 --> 00:04:45,991\\nBut experts believe the exact cause\\nof the greatest of air disasters\\n\\n73\\n00:04:46,024 --> 00:04:47,469\\nwill never be known.\\n\\n74\\n00:04:47,502 --> 00:04:51,286\\nOver the Hindenburg will loom a question\\nmark that can never be forgotten!\",\n", + " 'bytes': 6675,\n", + " 'sha1': 's9jabxxcm72t7co7k3dv9gqqfbrawsk',\n", + " 'parent_id': 589453703,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 128786389,\n", + " 'timestamp': '2014-07-12T12:45:27Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 22559623,\n", + " 'title': 'Wikimedia Foundation 90 second HR Video with Disclaimer 720p.theora.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'McZusatz moved page [[TimedText:Wikimedia Foundation 90 second HR Video with Disclaimer 720p.theora.ogv]] to [[TimedText:Wikimedia Foundation 90 second HR Video with Disclaimer 720p.theora.ogv.en.srt]]',\n", + " 'text': \"1\\n00:00:00,704 --> 00:00:03,175\\nWe're sharing the sum of all human knowledge.\\n\\n2\\n00:00:03,175 --> 00:00:06,000\\nHow many people can say they do that as their job?\",\n", + " 'bytes': 161,\n", + " 'sha1': '8a14uxn75ave2ydt1svqhua3ftasm2k',\n", + " 'parent_id': 82448491,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 82462565,\n", + " 'timestamp': '2012-11-05T22:10:54Z',\n", + " 'user': {'id': 849234, 'text': 'Morn'},\n", + " 'page': {'id': 22562759,\n", + " 'title': 'B-2 Spirit.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:05,160 --> 00:00:07,865\\nCloaked in stealth technology and now battle-tested,\\n\\n2\\n00:00:07,865 --> 00:00:11,197\\nthe B-2 Spirit is the latest addition to the Defense Department's\\n\\n3\\n00:00:11,197 --> 00:00:16,399\\nmanned bomber force. The B-2 made its debut November 22, 1988\\n\\n4\\n00:00:16,399 --> 00:00:20,659\\nwhen it rolled out of its hangar at Air Force plant 42 Palmdale, Ca.\\n\\n5\\n00:00:20,659 --> 00:00:24,874\\nWith a 40,000-pound payload and an unlimited range when refueled,\\n\\n6\\n00:00:24,874 --> 00:00:27,718\\nB-2s proved their metal during operations over the Balkans,\\n\\n7\\n00:00:27,718 --> 00:00:31,225\\nwhere pilots flew more than 22 hours from Missouri to put bombs\\n\\n8\\n00:00:31,225 --> 00:00:35,079\\non target. Its missions were successful and proved the capability\\n\\n9\\n00:00:35,079 --> 00:00:38,568\\nof the stealth bomber. Those same capabilities also enable the\\n\\n10\\n00:00:38,568 --> 00:00:41,511\\nbomber to remain hidden at a number of altitudes, increasing its\\n\\n11\\n00:00:41,511 --> 00:00:44,982\\nrange and offering a better field of view for the aircraft sensors.\\n\\n12\\n00:00:44,982 --> 00:00:48,454\\nIts crew of two consists of a pilot who sits on the left\\n\\n13\\n00:00:48,454 --> 00:00:51,536\\nand the mission commander—also a pilot—who sits on the right.\\n\\n14\\n00:00:51,536 --> 00:00:55,292\\nNow an Air Force veteran, the B-2 brings an unmatched capability\\n\\n15\\n00:00:55,292 --> 00:00:59,054\\nto cross enemy lines, use massive firepower, and supplement the\\n\\n16\\n00:00:59,054 --> 00:01:01,631\\ncombat force well into the new millenium.\",\n", + " 'bytes': 1529,\n", + " 'sha1': '8upi6iwdb9kslhfxw91z0hjhsu286x4',\n", + " 'parent_id': 82462207,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 631180559,\n", + " 'timestamp': '2022-02-20T21:18:16Z',\n", + " 'user': {'id': 2366229, 'text': 'Achim55'},\n", + " 'page': {'id': 22563644,\n", + " 'title': 'National anthem of Germany - U.S. Army 1st Armored Division Band.ogg.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/31.179.31.168|31.179.31.168]] ([[User talk:31.179.31.168|talk]]) to last revision by Michael Bednarek',\n", + " 'text': \"1\\n00:00:00,100 --> 00:00:07,196\\nEinigkeit und Recht und Freiheit\\n\\n2\\n00:00:07,196 --> 00:00:14,232\\nFür das deutsche Vaterland!\\n\\n3\\n00:00:14,232 --> 00:00:21,291\\nDanach lasst uns alle streben\\n\\n4\\n00:00:21,291 --> 00:00:28,300\\nBrüderlich mit Herz und Hand!\\n\\n5\\n00:00:28,300 --> 00:00:36,288\\nEinigkeit und Recht und Freiheit\\n\\n6\\n00:00:36,288 --> 00:00:42,871\\nSind des Glückes Unterpfand –\\n\\n7\\n00:00:42,871 --> 00:00:49,779\\nBlüh' im Glanze dieses Glückes,\\n\\n8\\n00:00:49,779 --> 00:00:56,482\\nBlühe, deutsches Vaterland!\\n\\n9\\n00:00:56,482 --> 00:01:03,708\\nBlüh' im Glanze dieses Glückes,\\n\\n10\\n00:01:03,708 --> 00:01:12,322\\nBlühe, deutsches Vaterland!\",\n", + " 'bytes': 644,\n", + " 'sha1': 'k7bafy1kqxfe1d31esz0ouukblqx7ni',\n", + " 'parent_id': 631171516,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606645046,\n", + " 'timestamp': '2021-11-11T16:16:41Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 22567104,\n", + " 'title': \"La Traviata - Act 1 - Libiamo ne' lieti calici.ogg.it.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Updated',\n", + " 'text': \"1\\n00:00:21,262 --> 00:00:27,159\\nAlfredo: Libiamo, libiamo ne'lieti calici\\n\\n2\\n00:00:27,208 --> 00:00:30,394\\nche la bellezza infiora.\\n\\n3\\n00:00:30,441 --> 00:00:35,788\\nE la fuggevol, fuggevol ora\\n\\n4\\n00:00:35,821 --> 00:00:39,203\\ns'inebrii a voluttà\\n\\n5\\n00:00:39,233 --> 00:00:43,256\\nLibiam ne'dolci fremiti\\n\\n6\\n00:00:43,289 --> 00:00:46,788\\nche suscita l'amore,\\n\\n7\\n00:00:46,821 --> 00:00:50,545\\npoiché quell'ochio al core\\n\\n8\\n00:00:50,594 --> 00:00:56,426\\nonnipotente va.\\n\\n9\\n00:00:56,504 --> 00:01:02,583\\nLibiamo, amore, amor fra i calici\\n\\n10\\n00:01:02,619 --> 00:01:04,825\\npiù caldi baci avrà\\n\\n11\\n00:01:04,875 --> 00:01:08,993\\nCoro: Ah! Libiam, amor, fra' calici\\n\\n12\\n00:01:09,011 --> 00:01:12,231\\npiù caldi baci avrà\\n\\n13\\n00:01:12,554 --> 00:01:19,401\\nVioletta: Tra voi tra voi saprò dividere\\n\\n14\\n00:01:19,437 --> 00:01:22,883\\nil tempo mio giocondo;\\n\\n15\\n00:01:23,040 --> 00:01:28,636\\nTutto è follia, follia nel mondo\\n\\n16\\n00:01:28,686 --> 00:01:31,790\\nciò che non è piacer\\n\\n17\\n00:01:32,007 --> 00:01:35,868\\nGodiam, fugace e rapido\\n\\n18\\n00:01:35,917 --> 00:01:39,833\\ne'il gaudio dell'amore,\\n\\n19\\n00:01:40,044 --> 00:01:44,043\\ne'un fior che nasce e muore,\\n\\n20\\n00:01:44,093 --> 00:01:50,294\\nne più si può goder\\n\\n21\\n00:01:50,490 --> 00:01:56,543\\nGodiamo, c'invita, c'invita un fervido\\n\\n22\\n00:01:56,592 --> 00:01:59,542\\naccento lusinghier.\\n\\n23\\n00:02:00,512 --> 00:02:05,197\\nCoro: Godiamo, la tazza,\\nla tazza e il cantico,\\n\\n24\\n00:02:05,247 --> 00:02:08,251\\nla notte abbella e il riso;\\n\\n25\\n00:02:08,301 --> 00:02:13,238\\nin questo, in questo paradiso\\n\\n26\\n00:02:13,272 --> 00:02:15,809\\nne scopra il nuovo dì\\n\\n27\\n00:02:16,276 --> 00:02:20,141\\nVioletta: La vita è nel tripudio\\n\\n28\\n00:02:20,174 --> 00:02:24,057\\nAlfredo: Quando non s'ami ancora\\n\\n29\\n00:02:24,090 --> 00:02:28,155\\nVioletta: Nol dite a chi l'ignora,\\n\\n30\\n00:02:28,188 --> 00:02:34,710\\nAlfredo: E'il mio destin così...\\n\\n31\\n00:02:34,783 --> 00:02:40,442\\nTutti: Godiamo, la tazza,\\nla tazza e il cantico,\\n\\n32\\n00:02:40,494 --> 00:02:43,450\\nla notte abbella e il riso;\\n\\n33\\n00:02:43,510 --> 00:02:50,174\\nin questo, in questo paradiso\\nne scopra il nuovo dì,\\n\\n34\\n00:02:50,205 --> 00:02:52,888\\nAh, ah, il nuovo dì!\\n\\n35\\n00:02:52,938 --> 00:02:55,736\\nAh, ah, il nuovo dì!\",\n", + " 'bytes': 2218,\n", + " 'sha1': 'amv13ur7lrojwms6x0pfpbni3ndq3vz',\n", + " 'parent_id': 82485111,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 242553800,\n", + " 'timestamp': '2017-05-01T09:03:02Z',\n", + " 'user': {'id': 849234, 'text': 'Morn'},\n", + " 'page': {'id': 22568877,\n", + " 'title': 'DuckandC1951.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Morn moved page [[TimedText:DuckandC1951.ogg.en.srt]] to [[TimedText:DuckandC1951.ogv.en.srt]]: video file has been renamed',\n", + " 'text': '1\\n00:00:01,000 --> 00:00:07,308\\n[song starts]\\n\\n2\\n00:00:07,308 --> 00:00:10,280\\n♫ There was a turtle by the name of Bert\\n\\n3\\n00:00:10,280 --> 00:00:13,467\\n♫ and Bert the turtle was very alert.\\n\\n4\\n00:00:13,467 --> 00:00:16,631\\n♫ When danger threatened him he never got hurt,\\n\\n5\\n00:00:16,631 --> 00:00:19,713\\n♫ he knew just what to do:\\n\\n6\\n00:00:19,713 --> 00:00:23,161\\n♫ He\\'d duck and cover!\\n\\n7\\n00:00:23,161 --> 00:00:25,977\\n♫ Duck and cover!\\n\\n8\\n00:00:25,977 --> 00:00:29,413\\n♫ He did what we all must learn to do\\n\\n9\\n00:00:29,413 --> 00:00:32,618\\n♫ You, and you, and you, and you\\n\\n10\\n00:00:32,618 --> 00:00:36,101\\n♫ Duck and cover!\\n\\n11\\n00:00:36,101 --> 00:00:38,330\\n[song ends]\\n\\n12\\n00:00:38,330 --> 00:00:40,785\\n<i>Announcer:</i> Be sure and remember what Bert the turtle does, dear friends,\\n\\n13\\n00:00:40,785 --> 00:00:43,810\\nbecause everyone of us must remember to do the same thing.\\n\\n14\\n00:00:43,810 --> 00:00:46,050\\nThat\\'s what this film is all about.\\n\\n15\\n00:00:46,050 --> 00:00:48,744\\nDuck and cover!\\n\\n16\\n00:00:48,744 --> 00:00:51,182\\nThis is an official civil defense film produced in\\n\\n17\\n00:00:51,182 --> 00:00:54,729\\ncooperation with the with the Federal Civil Defense Administration and in\\n\\n18\\n00:00:54,729 --> 00:00:58,659\\nconsultation with the Safety Commission of the National Education Association.\\n\\n19\\n00:00:58,659 --> 00:01:01,863\\nProduced by Archer Productions, Inc.\\n\\n20\\n00:01:01,863 --> 00:01:06,031\\nHey, Bert, come on out and meet all these nice people!\\n\\n21\\n00:01:06,031 --> 00:01:10,072\\nPlease? Oh, alright, we really can\\'t blame you.\\n\\n22\\n00:01:10,072 --> 00:01:13,450\\nYou see, Bert is a very, very careful fellow.\\n\\n23\\n00:01:13,450 --> 00:01:17,072\\nWhen there\\'s danger, this is the way he keeps from being hurt.\\n\\n24\\n00:01:17,072 --> 00:01:20,555\\nSometimes, it even saves his life.\\n\\n25\\n00:01:20,555 --> 00:01:24,810\\nThat\\'s why these children are practicing to duck and cover,\\n\\n26\\n00:01:24,810 --> 00:01:26,662\\njust as you do in your school.\\n\\n27\\n00:01:26,662 --> 00:01:30,424\\nWe all know the atomic bomb is very dangerous.\\n\\n28\\n00:01:30,424 --> 00:01:33,895\\nSince it may be used against us, we must get ready for it,\\n\\n29\\n00:01:33,895 --> 00:01:37,901\\njust as we are ready for many other dangers that are around us all the time.\\n\\n30\\n00:01:37,901 --> 00:01:39,898\\nFire is a danger.\\n\\n31\\n00:01:39,898 --> 00:01:43,415\\nIt can burn whole buildings if someone is careless.\\n\\n32\\n00:01:43,415 --> 00:01:45,552\\nBut we are ready for fires.\\n\\n33\\n00:01:45,552 --> 00:01:49,557\\nWe have a fine fire department to put out the fire and\\n\\n34\\n00:01:49,557 --> 00:01:52,657\\nyou have fire drills in your school so you know what to do.\\n\\n35\\n00:01:52,657 --> 00:01:57,823\\nAutomobiles can be dangerous too; they sometimes cause bad accidents.\\n\\n36\\n00:01:57,823 --> 00:02:01,742\\nBut we are ready. We have safety rules that car drivers and people who\\n\\n37\\n00:02:01,742 --> 00:02:03,083\\nare walking must obey.\\n\\n38\\n00:02:03,083 --> 00:02:06,688\\nNow, we must be ready for a new danger:\\n\\n39\\n00:02:06,688 --> 00:02:08,145\\nthe atomic bomb.\\n\\n40\\n00:02:08,145 --> 00:02:12,823\\nFirst, you have to know what happens when an atomic bomb explodes.\\n\\n41\\n00:02:12,823 --> 00:02:17,317\\nYou\\'ll know when it comes—we hope it never comes, but we must get ready.\\n\\n42\\n00:02:17,317 --> 00:02:18,977\\nIt looks something like this:\\n\\n43\\n00:02:18,977 --> 00:02:23,284\\nThere\\'s a bright flash, brighter than the Sun, brighter than anything you\\'ve ever seen!\\n\\n44\\n00:02:23,284 --> 00:02:27,069\\nIf you\\'re not ready and did not know what to do,\\n\\n45\\n00:02:27,069 --> 00:02:29,704\\nit could hurt you in different ways.\\n\\n46\\n00:02:29,704 --> 00:02:34,453\\nIt could knock you down hard or throw you against a tree or a wall.\\n\\n47\\n00:02:34,453 --> 00:02:39,155\\nIt is such a big explosion, it can smash in buildings and knock signboards over\\n\\n48\\n00:02:39,155 --> 00:02:41,674\\nand break windows all over town!\\n\\n49\\n00:02:41,674 --> 00:02:46,492\\nBut if you duck and cover—like Bert—you\\'ll be much safer.\\n\\n50\\n00:02:46,492 --> 00:02:49,697\\nYou know how bad sunburn can feel.\\n\\n51\\n00:02:49,697 --> 00:02:54,016\\nThe atomic bomb flash could burn you worse than a terrible sunburn,\\n\\n52\\n00:02:54,016 --> 00:02:56,152\\nespecially where you\\'re not covered.\\n\\n53\\n00:02:56,152 --> 00:03:00,250\\nNow, you and I don\\'t have shells to crawl into like Bert the turtle,\\n\\n54\\n00:03:00,250 --> 00:03:02,677\\nso we have to cover up in our own way.\\n\\n55\\n00:03:02,677 --> 00:03:06,752\\nFirst, you duck, and then, you cover.\\n\\n56\\n00:03:06,752 --> 00:03:10,618\\nAnd very tightly, you cover the back of your neck and your face.\\n\\n57\\n00:03:10,618 --> 00:03:16,028\\nDuck and cover underneath a table or desk or anything else close by.\\n\\n58\\n00:03:16,028 --> 00:03:20,312\\nIn Betty\\'s school, they are talking about the atomic bomb too.\\n\\n59\\n00:03:20,312 --> 00:03:25,699\\nBetty is asking her teacher: How can we tell when the atomic bomb may explode?\\n\\n60\\n00:03:25,699 --> 00:03:29,217\\nAnd her teacher is explaining that there are two kinds of attack:\\n\\n61\\n00:03:29,217 --> 00:03:32,096\\nwith warning and without any warning.\\n\\n62\\n00:03:32,096 --> 00:03:36,793\\nWe think that most of the time we will be warned before the bomb explodes.\\n\\n63\\n00:03:36,793 --> 00:03:41,976\\nSo there will be time for us to get into our homes, schools, or some other safe place.\\n\\n64\\n00:03:41,976 --> 00:03:47,305\\nOur Civil Defense workers and our men in uniform will do everything they can\\n\\n65\\n00:03:47,305 --> 00:03:51,032\\nto warn us before enemy planes can bring a bomb near us.\\n\\n66\\n00:03:51,032 --> 00:03:55,641\\nYou may be in your schoolyard playing when the signal comes.\\n\\n67\\n00:03:55,891 --> 00:03:58,600\\n[sound of civil defense sirens]\\n\\n68\\n00:03:58,823 --> 00:04:04,314\\nThat signal means to stop whatever you are doing and get to the nearest safe place fast.\\n\\n69\\n00:04:04,314 --> 00:04:11,073\\nAlways remember: The flash of an atomic bomb can come at any time, no matter where you may be!\\n\\n70\\n00:04:11,073 --> 00:04:15,077\\nYou might be out playing at home when the warning comes.\\n\\n71\\n00:04:15,077 --> 00:04:23,343\\nThen be sure to get into the house fast, where your parents have fixed a safe place for you to go.\\n\\n72\\n00:04:23,343 --> 00:04:28,927\\nIf you are not close to home when you hear the warning, go to the nearest safe cover.\\n\\n73\\n00:04:28,927 --> 00:04:33,745\\nKnow where you are to go or ask an older person to help you.\\n\\n74\\n00:04:33,745 --> 00:04:39,945\\nYou know the places marked with the \"S\" sign? They\\'re safe places to go when you hear the alarm.\\n\\n75\\n00:04:39,945 --> 00:04:44,728\\nIf there is a warning, you will hear it before the bomb explodes.\\n\\n76\\n00:04:44,728 --> 00:04:53,297\\nBut sometimes—and this is very, very important—sometimes the bomb might explode without any warning!\\n\\n77\\n00:04:53,297 --> 00:04:57,337\\nThen the first thing we would know about it would be the flash\\n\\n78\\n00:04:57,337 --> 00:05:02,631\\nand that means duck and cover fast, wherever you are! There\\'s no time to look around or wait.\\n\\n79\\n00:05:02,631 --> 00:05:07,832\\nBe like Bert! When there is a flash, duck and cover, and do it fast!\\n\\n80\\n00:05:07,832 --> 00:05:13,359\\nHere are some older boys showing what to do if the flash comes when you are not in the classroom.\\n\\n81\\n00:05:13,359 --> 00:05:20,684\\nThis is what to do if you should be in a corridor: You duck and cover tight against the wall this way.\\n\\n82\\n00:05:20,684 --> 00:05:24,969\\nRemember to keep your face and the back of your neck covered tightly.\\n\\n83\\n00:05:24,969 --> 00:05:29,055\\nTry to fall away from windows or doors with glass in them.\\n\\n84\\n00:05:29,055 --> 00:05:32,910\\nThen, if the glass breaks and flies through the air, it won\\'t cut you.\\n\\n85\\n00:05:32,910 --> 00:05:36,381\\nYou might be eating your lunch when the flash comes.\\n\\n86\\n00:05:36,381 --> 00:05:38,784\\nDuck and cover under the table!\\n\\n87\\n00:05:38,784 --> 00:05:43,812\\nThen, if the explosion makes anything in the room fall down, it can\\'t fall on you.\\n\\n88\\n00:05:43,812 --> 00:05:49,245\\nGetting ready means we will all have to be able to take care of ourselves.\\n\\n89\\n00:05:49,245 --> 00:05:54,737\\nThe bomb might explode when there are no grown-ups near. Paul and Patty know this.\\n\\n90\\n00:05:54,737 --> 00:05:57,558\\nAnd they are always ready to take care of themselves.\\n\\n91\\n00:05:57,558 --> 00:06:02,329\\nHere they are on their way to school on a beautiful spring day, but no matter where\\n\\n92\\n00:06:02,329 --> 00:06:08,912\\nthey go or what they do, they always try to remember what to do if the atom bomb explodes right then.\\n\\n93\\n00:06:08,912 --> 00:06:11,525\\nIt\\'s a bomb! Duck and cover!\\n\\n94\\n00:06:11,525 --> 00:06:17,527\\nPaul and Patty know what to do. Paul covered the back of his head, so that he wouldn\\'t be burned.\\n\\n95\\n00:06:17,527 --> 00:06:20,650\\nAnd Patty covered herself with the coat she was carrying.\\n\\n96\\n00:06:20,650 --> 00:06:25,851\\nThey knew how to duck and cover. They acted right away when the flash came.\\n\\n97\\n00:06:25,851 --> 00:06:33,189\\nIf they had been at this doorway when the bomb flashed, Paul and Patty would have ducked and covered this way, like this girl.\\n\\n98\\n00:06:33,189 --> 00:06:36,498\\nHeavy doorways are a good place to duck and cover.\\n\\n99\\n00:06:36,498 --> 00:06:38,506\\nShe will be safer too.\\n\\n100\\n00:06:38,506 --> 00:06:42,128\\nHere\\'s Tony going to his Cub Scout meeting.\\n\\n101\\n00:06:42,128 --> 00:06:47,225\\nTony knows the bomb can explode any time of the year, day or night. He is ready for it.\\n\\n102\\n00:06:47,225 --> 00:06:49,118\\nDuck and cover!\\n\\n103\\n00:06:49,118 --> 00:06:53,483\\nAttaboy, Tony, that flash means: act fast!\\n\\n104\\n00:06:53,483 --> 00:06:56,595\\nTony knows that it helps to get to any kind of cover.\\n\\n105\\n00:06:56,595 --> 00:07:00,658\\nThis wall was close by, so that\\'s where he ducked and covered.\\n\\n106\\n00:07:00,658 --> 00:07:05,430\\nTony knew what to do. Notice how he keeps from moving, or from getting up and running?\\n\\n107\\n00:07:05,430 --> 00:07:09,331\\nHe stays down until he is sure the danger is over.\\n\\n108\\n00:07:09,331 --> 00:07:13,104\\nThe man helping Tony is a Civil Defense worker.\\n\\n109\\n00:07:13,104 --> 00:07:17,748\\nHis job is to help protect us when there is danger of the atomic bomb.\\n\\n110\\n00:07:17,748 --> 00:07:20,685\\nWe must obey the Civil Defense worker!\\n\\n111\\n00:07:20,685 --> 00:07:27,349\\nWe must know how to duck and cover in the school bus, or in any other bus or street car.\\n\\n112\\n00:07:27,349 --> 00:07:33,143\\nDuck and cover! Don\\'t wait, duck away from the windows fast!\\n\\n113\\n00:07:33,143 --> 00:07:36,428\\nThe glass may break and fly through the air and cut you.\\n\\n114\\n00:07:36,428 --> 00:07:43,336\\nSundays, holidays, vacation time—we must be ready every day, all the time,\\n\\n115\\n00:07:43,336 --> 00:07:46,970\\nto do the right thing if the atomic bomb explodes.\\n\\n116\\n00:07:46,970 --> 00:07:49,037\\nDuck and cover!\\n\\n117\\n00:07:49,037 --> 00:07:53,309\\nThis family knows what to do, just as your own family should.\\n\\n118\\n00:07:53,309 --> 00:07:59,544\\nThey know that even a thin cloth helps protect them. Even a newspaper can save you from a bad burn.\\n\\n119\\n00:07:59,544 --> 00:08:06,103\\nBut the most important thing of all is to duck and cover yourself, especially where your clothes do not cover you.\\n\\n120\\n00:08:06,103 --> 00:08:13,511\\nNo matter where we live, in the city or the country, we must be ready all the time for the atomic bomb.\\n\\n121\\n00:08:13,511 --> 00:08:15,647\\nDuck and cover!\\n\\n122\\n00:08:15,647 --> 00:08:24,552\\nThat\\'s the first thing to do, duck and cover. The next important thing to do after that is to stay covered until the danger is over.\\n\\n123\\n00:08:24,552 --> 00:08:32,609\\nYes, we must all get ready now, so we know how to save ourselves if the atomic bomb ever explodes near us.\\n\\n124\\n00:08:32,609 --> 00:08:37,915\\nIf you not know just what to do, ask your teacher when this film is over.\\n\\n125\\n00:08:37,915 --> 00:08:42,025\\nDiscuss what you could do in different places if a bomb explodes.\\n\\n126\\n00:08:42,025 --> 00:08:48,445\\nOlder people will help us as they always do, but there might not be any grown-ups around when the bomb explodes.\\n\\n127\\n00:08:48,445 --> 00:08:50,930\\nThen, you\\'re on your own.\\n\\n128\\n00:08:50,930 --> 00:08:53,112\\n<i>Bert the turtle:</i> Remember what to do, friends!\\n\\n129\\n00:08:53,112 --> 00:08:57,222\\nNow tell me right out loud, what are you supposed to do when you see the flash?\\n\\n130\\n00:08:57,222 --> 00:09:00,752\\n<i>Children:</i> Duck and cover!\\n\\n131\\n00:09:00,752 --> 00:09:04,595\\n[song starts] ♫ Duck and cover!\\n\\n132\\n00:09:04,595 --> 00:09:08,078\\n♫ Duck and cover!\\n\\n133\\n00:09:08,078 --> 00:09:11,816\\n♫ Duck and cover! [music fades out]',\n", + " 'bytes': 12444,\n", + " 'sha1': 'of3t0qw4wyf1huh6wmgllj25qbm2lqx',\n", + " 'parent_id': 140562303,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84426145,\n", + " 'timestamp': '2012-12-06T17:33:20Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 22580619,\n", + " 'title': 'Yochai Benkler - On Autonomy, Control and Cultural Experience.ogg.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/McZusatz|McZusatz]] ([[User talk:McZusatz|talk]]) to last revision by 維基小霸王',\n", + " 'text': '0\\n00:00:00,000 --> 00:00:05,000\\n采访[[w:Yochai Benkler|Yochai Benkler]]\\n\\n1\\n00:00:06,080 --> 00:00:08,040\\n我所说的“用户自主”\\n\\n2\\n00:00:08,040 --> 00:00:15,920\\n是指使得人们能轻易为自己做事\\n\\n\\n3\\n00:00:15,920 --> 00:00:19,920\\n无需获得他人允许\\n\\n4\\n00:00:19,920 --> 00:00:27,800\\n无需屈从于\\n\\n5\\n00:00:27,800 --> 00:00:29,840\\n他人对自己所做之事之控制\\n\\n6\\n00:00:30,280 --> 00:00:39,480\\n[[w:Industrial_information_economy|工业信息和文化革命]]使得人们\\n\\n7\\n00:00:39,480 --> 00:00:49,480\\n从相对自由地使用从朋友、亲戚、小圈子等\\n8\\n00:00:49,480 --> 00:00:55,440\\n社交范围内获得的\\n\\n9\\n00:00:55,440 --> 00:01:01,280\\n有限范围信息\\n\\n10\\n00:01:01,480 --> 00:01:05,800\\n到工业化的文化制造模型\\nTo an industrial model of cultural production\\n\\n11\\n00:01:05,840 --> 00:01:08,480\\n这里的信息由\\n\\n12\\n00:01:08,480 --> 00:01:15,400\\n一些专业制作人制作\\nwho then control the experience \\n\\n13\\n00:01:15,400 --> 00:01:22,400\\nand located individuals at the passive \\nreceiving end of the cultural conversation\\n\\n14\\n00:01:22,600 --> 00:01:29,600\\nso that efforts to take these materials and remake them, \\n\\n15\\n00:01:29,600 --> 00:01:32,480\\nor efforts to participate as a cultural speaker,\\n\\n16\\n00:01:32,520 --> 00:01:37,640\\nby and large required permission.\\n\\n17\\n00:01:38,000 --> 00:01:45,200\\nWhat we\\'re seeing now is that \\nthrough a combination of technology,\\n\\n18\\n00:01:45,120 --> 00:01:52,040\\nboth digital processing and computation technology \\nand networking technology,\\n\\n19\\n00:01:52,520 --> 00:01:56,080\\npeople can take more of their cultural environment, \\n\\n20\\n00:01:56,520 --> 00:02:01,520\\nmore of the information environment, \\nmake it their own,\\n\\n21\\n00:02:01,520 --> 00:02:04,760\\nuse it as found materials \\nto put together their own expressions,\\n\\n22\\n00:02:04,760 --> 00:02:07,800\\ndo their own research, \\ncreate their own communications, \\n\\n23\\n00:02:07,800 --> 00:02:11,320\\ncreate their own communities, \\nwhen they need collaboration with others.\\n\\n24\\n00:02:11,520 --> 00:02:16,480\\nRather than relying on a \\nlimited set of existing institutions.\\n\\n25\\n00:02:17,000 --> 00:02:20,840\\nOr on a set of materials \\nthat they are [[w:Copyright|not allowed to use]]\\n\\n26\\n00:02:20,920 --> 00:02:25,760\\nwithout going and asking \\n\"please may I use this?\\n\\n27\\n00:02:25,760 --> 00:02:27,080\\nPlease may I create?\"\\n\\n28\\n00:02:27,200 --> 00:02:30,800\\nWhat happens when people can do more for and \\n\\n29\\n00:02:30,800 --> 00:02:35,040\\nby themselves is that the set of actors;\\n\\n30\\n00:02:35,600 --> 00:02:38,240\\nprimarily companies, \\nand in some places governments\\n\\n31\\n00:02:38,840 --> 00:02:44,880\\nthat control the experience - \\nthose whose permission was required, \\n\\n32\\n00:02:45,200 --> 00:02:47,440\\nare resisting this transistion because \\n\\n33\\n00:02:47,440 --> 00:02:49,720\\ncontrol is a good thing to get \\nif you can get it. \\n\\n34\\n00:02:49,800 --> 00:02:52,760\\nOr at least control is a good thing to have \\nif you can get it.\\n\\n35\\n00:02:54,360 --> 00:03:01,080\\nAnd what we\\'re seeing today \\nis a series of different kinds of campaigns,\\n\\n36\\n00:03:01,160 --> 00:03:04,240\\nSome of them quite self conscious,\\n\\n37\\n00:03:04,360 --> 00:03:08,480\\nI think for example, \\n[[w:Hollywood|Hollywood\\'s]] campaign to expand\\n\\n38\\n00:03:08,560 --> 00:03:13,640\\ntechnological constraint\\non use of cultural materials\\n\\n39\\n00:03:13,680 --> 00:03:16,400\\n[[w:Digital rights management|digital rights management]], [[w:Trusted_computing|trusted systems]],\\n\\n40\\n00:03:16,440 --> 00:03:18,840\\nis a self conscious campaign.\\n\\n41\\n00:03:18,880 --> 00:03:27,440\\nSome of it much less conscious \\nmuch more based on anxieties,\\n\\n42\\n00:03:27,440 --> 00:03:30,800\\nand speaking out anxieties. \\nSo for example \\n\\n43\\n00:03:30,800 --> 00:03:35,600\\nwhen you hear the persistent concerns \\nover Internet security,\\n\\n44\\n00:03:35,760 --> 00:03:39,560\\nand what will happen if people crack your system\\n\\n45\\n00:03:39,560 --> 00:03:43,120\\nwhen you hear the constant concerns about quality\\n\\n46\\n00:03:43,080 --> 00:03:44,760\\nand where will good quality come from?\\n\\n47\\n00:03:44,760 --> 00:03:51,120\\nand the error rate in [[w:wikipedia|wikipedia]], \\nthese are all much more subconscious expressions\\n\\n48\\n00:03:51,200 --> 00:03:55,320\\nof a fear that ends up being used as justification,\\n\\n49\\n00:03:55,520 --> 00:04:00,520\\nfor embracing the control system \\nthat is being displaced\\n\\n50\\n00:04:00,520 --> 00:04:04,320\\nbecause of the technological and social actions,\\n\\n51\\n00:04:04,520 --> 00:04:11,120\\nbecause of the technological characteristics \\nand the social practices, \\n\\n52\\n00:04:11,400 --> 00:04:17,160\\nthat are being adopted in widespread \\ncooperative networked practices. \\n\\n53\\n00:04:17,680 --> 00:04:25,040\\nSo we\\'re seeing sometimes legal moves to change,\\n\\n54\\n00:04:25,280 --> 00:04:30,640\\nand require legal control where \\npractically it\\'s no longer necessary. \\n\\n55\\n00:04:30,680 --> 00:04:36,640\\nSometimes we see... I wouldn\\'t call them propaganda,\\n\\n56\\n00:04:36,680 --> 00:04:41,600\\nbut I\\'d call them public debate and public enactment \\n\\n57\\n00:04:41,600 --> 00:04:47,400\\nof anxiety, in order to increase the perceived importance,\\n\\n58\\n00:04:47,400 --> 00:04:51,480\\nof the traditional controllers. \\nThe most important place where you see this is,\\n\\n59\\n00:04:51,480 --> 00:04:55,080\\nteachers tell students not to use Wikipedia.\\n\\n60\\n00:04:55,720 --> 00:05:02,040\\nBecause that use shakes up the sense that I\\'m a teacher,\\n\\n61\\n00:05:02,200 --> 00:05:06,120\\nI know exactly what the set of materials are \\nthat I have approved\\n\\n62\\n00:05:06,120 --> 00:05:07,720\\nand are capable of being approved.\\n\\n63\\n00:05:07,800 --> 00:05:13,160\\nI am used to seeing Kids, \\nappealing to authority\\n\\n64\\n00:05:13,200 --> 00:05:16,120\\nrather that cross referencing multiple resources.\\n\\n65\\n00:05:16,360 --> 00:05:20,280\\nI don\\'t want to teach them \\nthat they should see this as a source,\\n\\n66\\n00:05:20,680 --> 00:05:24,400\\nBut not as a source of authority, a source of insight,\\n\\n67\\n00:05:24,400 --> 00:05:28,920\\na potential move in a research that\\'s always sceptical. \\n\\n68\\n00:05:29,000 --> 00:05:34,400\\nOne of the things that has to happen \\nin the context of the radically decentralised system\\n\\n69\\n00:05:34,440 --> 00:05:38,480\\nIs that we all have to become [[w:Sceptical|sceptical]] readers, \\nall the time.\\n\\n70\\n00:05:38,480 --> 00:05:43,200\\nWhich is a fundamental change from \\nthe traditional cultural system \\n\\n71\\n00:05:43,200 --> 00:05:46,840\\nWhere we would talk. \\n\\'How do I know if it\\'s true? Well you\\'ve said it.\\'\\n\\n72\\n00:05:46,840 --> 00:05:50,960\\nWhere did they publish it? \\nAnd looking for indicia of authority\\n\\n73\\n00:05:51,000 --> 00:05:53,520\\nthat will tell me this is authority.\\n\\n74\\n00:05:53,880 --> 00:05:58,920\\nInstead I have to begin to develop new capabilities \\n\\n75\\n00:05:59,200 --> 00:06:04,720\\nof looking at five sources, \\nassigning them different levels of weight\\n\\n76\\n00:06:04,720 --> 00:06:08,920\\nand saying I have reasonable confidence \\nthat the correct answer is\\n\\n77\\n00:06:08,920 --> 00:06:15,400\\nx rather than y without really assigning \\nfull authority to any single site.\\n\\n78\\n00:06:15,400 --> 00:06:19,800\\nSo that\\'s another locus of control trying to,\\n\\n79\\n00:06:19,800 --> 00:06:24,720\\nget people to continue to hang on \\nto to this sense that you need\\n\\n80\\n00:06:24,720 --> 00:06:29,080\\nthe expert authority, \\nyou need the person whose is in charge,\\n\\n81\\n00:06:29,080 --> 00:06:33,600\\nto tell you what is good and what is not good. \\nwhat is high quality, what is low quality.\\n\\n82\\n00:06:33,600 --> 00:06:38,280\\nWhat is reliable information, \\nwhat is not reliable information.\\n\\n83\\n00:06:38,280 --> 00:06:42,240\\nAnd that\\'s another domain \\nwhere we see the controllers,\\n\\n84\\n00:06:42,280 --> 00:06:49,200\\nin this case I think less strategically,\\n\\n85\\n00:06:49,200 --> 00:06:53,400\\nthan in the context of the way that for example, \\nHollywood backs digital rights management. \\n\\n86\\n00:06:53,560 --> 00:07:02,760\\nI think it\\'s a cousin in terms of self preservation.\\n\\n87\\n00:07:03,200 --> 00:07:08,080\\nBut I think it\\'s also a public enactment \\nof deeply held beliefs\\n\\n88\\n00:07:08,080 --> 00:07:12,520\\nabout why it is, that the particular people, \\nthat play a particular role\\n\\n89\\n00:07:12,520 --> 00:07:16,280\\nof authoritative speakers, \\nin the older system\\n\\n90\\n00:07:16,280 --> 00:07:20,840\\ncontinue to believe in the values \\nthat made them authoritative, \\n\\n91\\n00:07:20,840 --> 00:07:25,120\\nand made their authority important. \\nAnd so that\\'s much more cultural resistance,\\n\\n92\\n00:07:25,120 --> 00:07:31,600\\nthan it is practical, \\nlegal or technical design resistance.\\n\\n93\\n00:07:31,680 --> 00:07:37,080\\nBut were seeing resistance from \\ndifferent kind of actors who played the role, \\n\\n94\\n00:07:37,080 --> 00:07:42,800\\nof controllers in the older models, \\ntrying to preserve \\n\\n95\\n00:07:42,800 --> 00:07:45,880\\ntheir relatively privileged position as controllers,\\n\\n96\\n00:07:45,920 --> 00:07:48,120\\nthrough different systems of constraint\\n(请到[[w:commons:TimedText:Yochai_Benkler_-_On_Autonomy,_Control_and_Cultural_Experience.ogg.zh.srt|这里]]参与翻译)',\n", + " 'bytes': 9015,\n", + " 'sha1': 'd9r7ba4tqdnzwjv0w5n8uvtutobumt0',\n", + " 'parent_id': 84425913,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 607509019,\n", + " 'timestamp': '2021-11-16T09:33:08Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 22582759,\n", + " 'title': 'Ich bin ein Berliner Speech (June 26, 1963) John Fitzgerald Kennedy trimmed.theora.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall subtitles update',\n", + " 'text': '1\\n00:00:00,525 --> 00:00:02,347\\nI am proud\\n\\n2\\n00:00:04,272 --> 00:00:06,563\\nto come to this city\\n\\n3\\n00:00:07,523 --> 00:00:10,555\\nas the guest of your distinguished Mayor,\\n\\n4\\n00:00:11,554 --> 00:00:15,293\\nwho has symbolized throughout the world\\n\\n5\\n00:00:15,820 --> 00:00:18,569\\nthe fighting spirit of West Berlin.\\n\\n6\\n00:00:19,575 --> 00:00:21,779\\nAnd I am proud…\\n\\n7\\n00:00:21,830 --> 00:00:27,726\\n(Loud greetings)\\n\\n8\\n00:00:29,113 --> 00:00:32,108\\nAnd I\\'m proud to visit\\nthe Federal Republic\\n\\n9\\n00:00:33,239 --> 00:00:35,314\\nwith your distinguished Chancellor,\\n\\n10\\n00:00:36,262 --> 00:00:41,220\\nwho for so many years\\nhas committed Germany\\n\\n11\\n00:00:41,264 --> 00:00:46,319\\nto democracy and freedom and progress,\\n\\n12\\n00:00:46,786 --> 00:00:49,218\\nand to come here\\n\\n13\\n00:00:49,235 --> 00:00:54,829\\nin the company of my fellow\\nAmerican, General Clay,\\n\\n14\\n00:00:55,202 --> 00:01:01,585\\n(Loud greetings) (Applause)\\n\\n15\\n00:01:02,452 --> 00:01:05,226\\nwho has been in this city\\n\\n16\\n00:01:05,259 --> 00:01:11,253\\nduring its great moments of crisis\\nand will come again if ever needed.\\n\\n17\\n00:01:11,295 --> 00:01:16,806\\n(Loud greetings)\\n\\n18\\n00:01:18,289 --> 00:01:21,972\\n(Applause)\\n\\n19\\n00:01:24,508 --> 00:01:30,237\\nTwo thousand years ago\\n\\n20\\n00:01:30,271 --> 00:01:36,818\\nthe proudest boast was\\n\"civis Romanus sum.\"\\n\\n21\\n00:01:37,389 --> 00:01:41,299\\nToday, in the world of freedom,\\n\\n22\\n00:01:42,137 --> 00:01:47,253\\nthe proudest boast\\nis \"Ich bin ein Berliner.\"\\n\\n23\\n00:01:47,287 --> 00:01:52,790\\n(Loud greetings) (Applause)\\n\\n24\\n00:01:53,161 --> 00:01:54,346\\nI…\\n\\n25\\n00:01:56,311 --> 00:01:57,490\\nI…\\n\\n26\\n00:01:58,186 --> 00:01:59,535\\nI appreciate...\\n\\n27\\n00:01:59,990 --> 00:02:01,757\\nI appreciate\\n\\n28\\n00:02:01,781 --> 00:02:04,255\\nmy interpreter translating my German!\\n\\n29\\n00:02:04,565 --> 00:02:09,269\\n(Loud greetings)\\n\\n30\\n00:02:09,289 --> 00:02:14,485\\n(Applause)\\n\\n31\\n00:02:18,273 --> 00:02:22,532\\nThere are many people in the world\\n\\n32\\n00:02:22,536 --> 00:02:27,329\\nwho really don\\'t understand,\\nor say they don\\'t,\\n\\n33\\n00:02:27,340 --> 00:02:33,810\\nwhat is the great issue between\\nthe free world and the Communist world.\\n\\n34\\n00:02:35,252 --> 00:02:37,812\\nLet them come to Berlin!\\n\\n35\\n00:02:38,315 --> 00:02:42,456\\n(Loud greetings)\\n\\n36\\n00:02:42,489 --> 00:02:45,815\\n(Applause)\\n\\n37\\n00:02:45,865 --> 00:02:50,262\\nThere are some who say\\n\\n38\\n00:02:51,031 --> 00:02:54,854\\nthat communism is the wave of the future.\\n\\n39\\n00:02:54,876 --> 00:02:56,961\\nLet them come to Berlin!\\n\\n40\\n00:02:57,010 --> 00:03:00,451\\n(Loud greetings) (Applause)\\n\\n41\\n00:03:00,498 --> 00:03:06,752\\nAnd there are some who say\\nin Europe and elsewhere\\n\\n42\\n00:03:06,810 --> 00:03:09,038\\nwe can work with the Communists.\\n\\n43\\n00:03:09,075 --> 00:03:11,331\\nLet them come to Berlin!\\n\\n44\\n00:03:11,365 --> 00:03:16,598\\n(Loud greetings) (Applause)\\n\\n45\\n00:03:16,809 --> 00:03:21,847\\nAnd there are even a few who say\\n\\n46\\n00:03:22,524 --> 00:03:29,166\\nthat it\\'s true that communism\\nis an evil system,\\n\\n47\\n00:03:29,232 --> 00:03:33,522\\nbut it permits us to make\\neconomic progress.\\n\\n48\\n00:03:34,151 --> 00:03:38,503\\nLass\\' sie nach Berlin kommen! \\nLet them come to Berlin!\\n\\n49\\n00:03:38,553 --> 00:03:42,498\\n(Very loud greetings)\\n\\n50\\n00:03:44,553 --> 00:03:48,803\\nFreedom has many difficulties\\n\\n51\\n00:03:49,503 --> 00:03:52,977\\nand democracy is not perfect,\\n\\n52\\n00:03:53,647 --> 00:03:57,667\\nbut we have never had to put\\na wall up to keep our people in,\\n\\n53\\n00:03:57,718 --> 00:03:59,715\\nto prevent them from leaving us.\\n\\n54\\n00:03:59,748 --> 00:04:03,808\\n(Loud cheering)\\n\\n55\\n00:04:03,828 --> 00:04:06,592\\n(Applause)\\n\\n56\\n00:04:09,506 --> 00:04:13,244\\nI want to say,\\n\\n57\\n00:04:13,278 --> 00:04:16,324\\non behalf of my countrymen,\\n\\n58\\n00:04:17,123 --> 00:04:22,520\\nwho live many miles away\\non the other side of the Atlantic,\\n\\n59\\n00:04:23,290 --> 00:04:29,241\\nwho are far distant from you,\\nthat they take the greatest pride\\n\\n60\\n00:04:29,998 --> 00:04:35,396\\nthat they have been able\\nto share with you, even from a distance,\\n\\n61\\n00:04:35,701 --> 00:04:38,797\\nthe story of the last 18 years.\\n\\n62\\n00:04:39,409 --> 00:04:44,199\\nI know of no town, no city,\\n\\n63\\n00:04:44,217 --> 00:04:49,447\\nthat has been besieged for 18 years\\n\\n64\\n00:04:49,487 --> 00:04:54,875\\nthat still lives with the vitality\\nand the force,\\n\\n65\\n00:04:54,910 --> 00:04:59,679\\nand the hope and the determination\\nof the city of West Berlin.\\n\\n66\\n00:04:59,711 --> 00:05:04,513\\n(Very loud cheerings)\\n\\n67\\n00:05:04,561 --> 00:05:10,199\\n(Applause)\\n\\n68\\n00:05:13,526 --> 00:05:16,015\\nWhile the wall\\n\\n69\\n00:05:16,073 --> 00:05:21,297\\nis the most obvious\\nand vivid demonstration\\n\\n70\\n00:05:21,333 --> 00:05:24,963\\nof the failures of the Communist system,\\n\\n71\\n00:05:24,979 --> 00:05:30,448\\nfor all the world to see,\\nwe take no satisfaction in it,\\n\\n72\\n00:05:30,483 --> 00:05:34,647\\nfor it is, as your Mayor has said,\\n\\n73\\n00:05:34,661 --> 00:05:40,248\\nan offense not only against history\\nbut an offense against humanity,\\n\\n74\\n00:05:40,782 --> 00:05:42,947\\nseparating families,\\n\\n75\\n00:05:42,982 --> 00:05:47,490\\ndividing husbands and wives\\nand brothers and sisters,\\n\\n76\\n00:05:47,773 --> 00:05:51,520\\nand dividing a people\\nwho wish to be joined together.\\n\\n77\\n00:05:51,697 --> 00:05:54,777\\n(Loud cheerings)\\n\\n78\\n00:05:54,795 --> 00:05:57,953\\n(Applause)\\n\\n79\\n00:05:58,007 --> 00:06:03,275\\nWhat is true of this city\\nis true of Germany—\\n\\n80\\n00:06:03,779 --> 00:06:10,140\\nreal, lasting peace in Europe\\ncan never be assured\\n\\n81\\n00:06:10,170 --> 00:06:14,160\\nas long as one German out of four\\n\\n82\\n00:06:14,209 --> 00:06:18,108\\nis denied the elementary\\nright of free men,\\n\\n83\\n00:06:18,174 --> 00:06:21,108\\nand that is to make a free choice.\\n\\n84\\n00:06:21,290 --> 00:06:27,039\\nIn 18 years of peace and good faith,\\n\\n85\\n00:06:27,475 --> 00:06:33,241\\nthis generation of Germans\\nhas earned the right to be free,\\n\\n86\\n00:06:33,837 --> 00:06:38,038\\nincluding the right\\nto unite their families\\n\\n87\\n00:06:38,046 --> 00:06:41,759\\nand their nation in lasting peace,\\n\\n88\\n00:06:41,763 --> 00:06:44,205\\nwith good will to all people.\\n\\n89\\n00:06:44,235 --> 00:06:50,350\\n(Applause) (Cheerings)\\n\\n90\\n00:06:55,000 --> 00:06:58,704\\nYou live in a defended island of freedom,\\n\\n91\\n00:06:58,770 --> 00:07:02,147\\nbut your life is part of the main.\\n\\n92\\n00:07:02,809 --> 00:07:05,542\\nSo let me ask you, as I close,\\n\\n93\\n00:07:05,959 --> 00:07:09,525\\nto lift your eyes beyond\\nthe dangers of today,\\n\\n94\\n00:07:10,072 --> 00:07:12,706\\nto the hopes of tomorrow,\\n\\n95\\n00:07:12,779 --> 00:07:16,474\\nbeyond the freedom\\nmerely of this city of Berlin,\\n\\n96\\n00:07:16,493 --> 00:07:22,108\\nor your country of Germany,\\nto the advance of freedom everywhere,\\n\\n97\\n00:07:22,792 --> 00:07:27,802\\nbeyond the wall\\nto the day of peace with justice,\\n\\n98\\n00:07:28,224 --> 00:07:33,571\\nbeyond yourselves\\nand ourselves to all mankind.\\n\\n99\\n00:07:34,497 --> 00:07:36,749\\nFreedom is indivisible,\\n\\n100\\n00:07:36,815 --> 00:07:40,333\\nand when one man is enslaved,\\n\\n101\\n00:07:40,351 --> 00:07:42,282\\nall are not free.\\n\\n102\\n00:07:42,438 --> 00:07:44,728\\nWhen all are free,\\n\\n103\\n00:07:44,765 --> 00:07:48,529\\nthen we can look forward to that day\\n\\n104\\n00:07:48,570 --> 00:07:51,047\\nwhen this city will be joined as one\\n\\n105\\n00:07:51,074 --> 00:07:57,569\\nand this country, and this great Continent\\nof Europe in a peaceful and hopeful globe.\\n\\n106\\n00:07:58,503 --> 00:08:02,766\\nWhen that day finally comes, as it will,\\n\\n107\\n00:08:02,788 --> 00:08:08,230\\nthe people of West Berlin\\ncan take sober satisfaction\\n\\n108\\n00:08:08,280 --> 00:08:14,544\\nin the fact that they were\\nin the front lines for almost two decades.\\n\\n109\\n00:08:14,579 --> 00:08:16,600\\n(Applause)\\n\\n110\\n00:08:16,634 --> 00:08:23,246\\nPeople: Bravo! (Cheers) (Applause)\\n\\n111\\n00:08:30,141 --> 00:08:34,525\\nAll free men,\\n\\n112\\n00:08:34,575 --> 00:08:39,748\\nwherever they may live,\\nare citizens of Berlin,\\n\\n113\\n00:08:39,777 --> 00:08:41,766\\nand, therefore,\\n\\n114\\n00:08:41,809 --> 00:08:43,743\\nas a free man,\\n\\n115\\n00:08:43,763 --> 00:08:46,432\\nI take pride in the words\\n\\n116\\n00:08:46,499 --> 00:08:48,848\\n\"Ich bin ein Berliner!\"\\n\\n117\\n00:08:48,942 --> 00:08:54,523\\n(Greatest greetings) (Applause)\\n\\n118\\n00:08:58,281 --> 00:09:01,700\\nPeople: Ken-ne-dy! Ken-ne-dy!',\n", + " 'bytes': 8114,\n", + " 'sha1': 'eq88racpcpqg0oqnnpr5e1075j8jawx',\n", + " 'parent_id': 82554987,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 299933523,\n", + " 'timestamp': '2018-05-06T14:08:40Z',\n", + " 'user': {'text': '27.64.122.188'},\n", + " 'page': {'id': 22583115,\n", + " 'title': 'United States Navy Band - National Anthem of Chile.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00.02,000 --> 00:00:17,600\\nHimno Nacional de Chile\\n\\n2 \\n00:00:19,680 --> 00:00:23,500\\nPuro, Chile, es tu cielo azulado,\\n\\n3\\n00:00:23,520 --> 00:00:28,650\\npuras brisas te cruzan también,\\n\\n4\\n00:00:28,670 --> 00:00:33,140\\ny tu campo de flores bordado\\n\\n5\\n00:00:33,160 --> 00:00:37,380\\nes la copia feliz del Edén.\\n\\n6\\n00:00:37,400 --> 00:00:40,000\\nMajestuosa es la blanca montaña\\n\\n7\\n00:00:40,020 --> 00:00:43,500\\nque te dio por baluarte el Señor,\\n\\n8\\n00:00:43,550 --> 00:00:48,650\\nque te dio por baluarte el Señor,\\n\\n9\\n00:00:51,020 --> 00:00:55,430\\nY ese mar que tranquilo te baña\\n\\n10\\n00:00:55,450 --> 00:00:59,190\\nte promete un futuro esplendor.\\n\\n11\\n00:00:59,210 --> 00:01:03,560\\nY ese mar que tranquilo te baña\\n\\n12\\n00:01:03,580 --> 00:01:07,320\\nte promete un futuro esplendor.\\n\\n13\\n00:01:09,290 --> 00:01:18,170\\nDulce Patria, recibe los votos\\n\\n14\\n00:01:18,190 --> 00:01:26,590\\nCon que Chile en tus aras juró\\n\\n15\\n00:01:26,610 --> 00:01:31,150\\nQue o la tumba serás de los libres\\n\\n16\\n00:01:31,170 --> 00:01:35,3330\\nO el asilo contra la opresión\\n\\n17\\n00:01:35,350 --> 00:01:40,070\\nQue o la tumba serás de los libres\\n\\n18\\n00:01:40,090 --> 00:01:43,390\\nO el asilo contra la opresión\\n\\n19\\n00:01:43,410 --> 00:01:48,830\\nQue o la tumba serás de los libres\\n\\n20\\n00:01:48,850 --> 00:01:53,620\\nO el asilo contra la opresión\\n\\n21\\n00:01:53,640 --> 00:01:57,870\\nO el asilo contra la opresión\\n\\n22\\n00:01:57,890 --> 00:02:01,010\\nO el asilo contra la opresión.',\n", + " 'bytes': 1448,\n", + " 'sha1': '8pql601nxxtdhtenkpyyygg8g2uc7es',\n", + " 'parent_id': 299933178,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 193058183,\n", + " 'timestamp': '2016-04-13T10:14:55Z',\n", + " 'user': {'id': 849234, 'text': 'Morn'},\n", + " 'page': {'id': 22586578,\n", + " 'title': 'Tear down this wall.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:23,634 --> 00:00:24,088\\nThank you!\\n\\n2\\n00:00:32,766 --> 00:00:39,640\\nThank you very much. Chancellor Kohl, Governing Mayor Diepgen, ladies and gentlemen:\\n\\n3\\n00:00:39,640 --> 00:00:47,004\\nTwenty-four years ago, President John F. Kennedy visited Berlin, speaking to the\\n\\n4\\n00:00:47,004 --> 00:00:53,358\\npeople of this city and the world at the city hall. Well, since then two other presidents\\n\\n5\\n00:00:53,358 --> 00:01:00,029\\nhave come, each in his turn, to Berlin. And today I, myself, make my second visit to your city.\\n\\n6\\n00:01:05,599 --> 00:01:11,679\\nWe come to Berlin, we American Presidents, because it\\'s our duty to speak, in this place,\\n\\n7\\n00:01:11,679 --> 00:01:19,668\\nof freedom. But I must confess, we\\'re drawn here by other things as well: by the feeling of\\n\\n8\\n00:01:19,668 --> 00:01:27,568\\nhistory in this city, more than 500 years older than our own nation; by the beauty of the Grunewald\\n\\n9\\n00:01:27,568 --> 00:01:39,808\\nand the Tiergarten; most of all, by your courage and determination. Perhaps the composer,\\n\\n10\\n00:01:39,808 --> 00:01:46,816\\nPaul Lincke, understood something about American Presidents. You see, like so many Presidents before me,\\n\\n11\\n00:01:46,816 --> 00:01:57,207\\nI come here today because wherever I go, whatever I do: \"Ich hab\\' noch einen Koffer in Berlin.\"\\n\\n12\\n00:02:07,001 --> 00:02:13,357\\nOur gathering today is being broadcast throughout Western Europe and North America. I understand\\n\\n13\\n00:02:13,357 --> 00:02:21,187\\nthat it is being seen and heard as well in the East. To those listening throughout Eastern Europe,\\n\\n14\\n00:02:21,187 --> 00:02:28,317\\nI extend my warmest greetings and the good will of the American people. To those listening in\\n\\n15\\n00:02:28,317 --> 00:02:36,541\\nEast Berlin, a special word: Although I cannot be with you, I address my remarks to you\\n\\n16\\n00:02:36,541 --> 00:02:44,440\\njust as surely as to those standing here before me. For I join you, as I join your fellow countrymen\\n\\n17\\n00:02:44,440 --> 00:02:51,393\\nin the West, in this firm, this unalterable belief: Es gibt nur ein Berlin!\\n\\n18\\n00:03:01,439 --> 00:03:08,785\\nBehind me stands a wall that encircles the free sectors of this city, part of a vast system\\n\\n19\\n00:03:08,785 --> 00:03:16,759\\nof barriers that divides the entire continent of Europe. From the Baltic, south, those barriers\\n\\n20\\n00:03:16,759 --> 00:03:25,236\\ncut across Germany in a gash of barbed wire, concrete, dog runs, and guardtowers. Farther south,\\n\\n21\\n00:03:25,236 --> 00:03:31,919\\nthere may be no visible, no obvious wall. But there remain armed guards and checkpoints all\\n\\n22\\n00:03:31,919 --> 00:03:40,730\\nthe same—still a restriction on the right to travel, still an instrument to impose upon ordinary men\\n\\n23\\n00:03:40,730 --> 00:03:50,134\\nand women the will of a totalitarian state. Yet it is here in Berlin where the wall emerges most clearly;\\n\\n24\\n00:03:50,134 --> 00:03:57,288\\nhere, cutting across your city, where the news photo and the television screen have imprinted\\n\\n25\\n00:03:57,288 --> 00:04:05,019\\nthis brutal division of a continent upon the mind of the world. Standing before the Brandenburg Gate,\\n\\n26\\n00:04:05,019 --> 00:04:11,357\\nevery man is a German, separated from his fellow men.\\n\\n27\\n00:04:20,195 --> 00:04:24,054\\nEvery man is a Berliner, forced to look upon a scar.\\n\\n28\\n00:04:24,054 --> 00:04:33,812\\nPresident von Weizsäcker has said: \"The German question is open as long as the Brandenburg Gate is closed.\"\\n\\n29\\n00:04:42,136 --> 00:04:51,039\\nToday I say: As long as this gate is closed, as long as this scar of a wall is permitted to stand,\\n\\n30\\n00:04:51,039 --> 00:05:00,303\\nit is not the German question alone that remains open, but the question of freedom for all mankind.\\n\\n31\\n00:05:10,980 --> 00:05:17,519\\nYet I do not come here to lament. For I find in Berlin a message of hope,\\n\\n32\\n00:05:17,519 --> 00:05:21,877\\neven in the shadow of this wall, a message of triumph.\\n\\n33\\n00:05:21,877 --> 00:05:31,073\\nIn this season of spring in 1945, the people of Berlin emerged from their air raid shelters to find devastation.\\n\\n34\\n00:05:31,073 --> 00:05:36,368\\nThousands of miles away, the people of the United States reached out to help.\\n\\n35\\n00:05:36,368 --> 00:05:43,200\\nAnd in 1947 Secretary of State—as you\\'ve been told—George Marshall announced\\n\\n36\\n00:05:43,200 --> 00:05:47,303\\nthe creation of what would become known as the Marshall Plan.\\n\\n37\\n00:05:47,303 --> 00:05:52,461\\nSpeaking precisely 40 years ago this month, he said:\\n\\n38\\n00:05:52,461 --> 00:05:59,386\\n\"Our policy is directed not against any country or doctrine, but against hunger,\\n\\n39\\n00:05:59,386 --> 00:06:03,508\\npoverty, desperation, and chaos.\"\\n\\n40\\n00:06:10,786 --> 00:06:18,837\\nIn the Reichstag a few moments ago, I saw a display commemorating this 40th anniversary of the Marshall Plan.\\n\\n41\\n00:06:18,837 --> 00:06:24,980\\nI was struck by the sign on a burnt-out, gutted structure that was being rebuilt.\\n\\n42\\n00:06:24,980 --> 00:06:33,015\\nI understand that Berliners of my own generation can remember seeing signs like it dotted\\n\\n43\\n00:06:33,015 --> 00:06:40,128\\nthroughout the Western sectors of the city. The sign read simply: \"The Marshall Plan is\\n\\n44\\n00:06:40,128 --> 00:06:50,604\\nhelping here to strengthen the free world.\" A strong, free world in the West, that dream became real.\\n\\n45\\n00:06:50,604 --> 00:06:59,111\\nJapan rose from ruin to become an economic giant. Italy, France, Belgium—virtually every nation\\n\\n46\\n00:06:59,111 --> 00:07:07,109\\nin Western Europe saw political and economic rebirth; the European Community was founded.\\n\\n47\\n00:07:07,109 --> 00:07:14,943\\nIn West Germany and here in Berlin, there took place an economic miracle, the Wirtschaftswunder.\\n\\n48\\n00:07:14,943 --> 00:07:24,994\\nAdenauer, Erhard, Reuter, and other leaders understood the practical importance of liberty—that just as\\n\\n49\\n00:07:24,994 --> 00:07:33,080\\ntruth can flourish only when the journalist is given freedom of speech, so prosperity can come about\\n\\n50\\n00:07:33,080 --> 00:07:45,158\\nonly when the farmer and businessman enjoy economic freedom. The German leaders reduced tariffs,\\n\\n51\\n00:07:45,158 --> 00:07:55,708\\nexpanded free trade, lowered taxes. From 1950 to 1960 alone, the standard of living in West Germany and Berlin doubled.\\n\\n52\\n00:07:55,708 --> 00:08:02,908\\nWhere four decades ago there was rubble, today in West Berlin there is the greatest industrial output\\n\\n53\\n00:08:02,908 --> 00:08:12,286\\nof any city in Germany—busy office blocks, fine homes and apartments, proud avenues, and the spreading lawns of park land.\\n\\n54\\n00:08:12,286 --> 00:08:21,028\\nWhere a city\\'s culture seemed to have been destroyed, today there are two great universities, orchestras and an opera,\\n\\n55\\n00:08:21,028 --> 00:08:31,196\\ncountless theaters, and museums. Where there was want, today there\\'s abundance—food, clothing, automobiles—\\n\\n56\\n00:08:31,196 --> 00:08:34,054\\nthe wonderful goods of the Ku\\'damm.\\n\\n57\\n00:08:42,570 --> 00:08:48,560\\nFrom devastation, from utter ruin, you Berliners have, in freedom,\\n\\n58\\n00:08:48,560 --> 00:08:57,254\\nrebuilt a city that once again ranks as one of the greatest on Earth. The Soviets may have had other plans.\\n\\n59\\n00:08:57,254 --> 00:09:02,455\\nBut, my friends, there were a few things the Soviets didn\\'t count on:\\n\\n60\\n00:09:06,080 --> 00:09:13,466\\nBerliner Herz, Berliner Humor, ja, und Berliner Schnauze.\\n\\n61\\n00:09:22,279 --> 00:09:34,619\\nIn the 1950s, Khrushchev predicted: \"We will bury you.\" But in the West today, we see a free world that has achieved\\n\\n62\\n00:09:34,619 --> 00:09:44,636\\na level of prosperity and well-being unprecedented in all human history. In the Communist world, we see failure,\\n\\n63\\n00:09:44,636 --> 00:09:54,861\\ntechnological backwardness, declining standards of health, even want of the most basic kind—too little food.\\n\\n64\\n00:10:00,312 --> 00:10:07,897\\nAnd now the Soviets themselves may, in a limited way, be coming to understand the importance of freedom.\\n\\n65\\n00:10:07,897 --> 00:10:15,492\\nWe hear much from Moscow about a new policy of reform and openness. Some political prisoners have been released.\\n\\n66\\n00:10:15,492 --> 00:10:23,219\\nCertain foreign news broadcasts are no longer being jammed. Some economic enterprises have been permitted to operate\\n\\n67\\n00:10:23,219 --> 00:10:31,367\\nwith greater freedom from state control. Are these the beginnings of profound changes in the Soviet state?\\n\\n68\\n00:10:31,367 --> 00:10:41,591\\nOr are they token gestures, intended to raise false hopes in the West, or to strengthen the Soviet system without changing it?\\n\\n69\\n00:10:41,591 --> 00:10:49,351\\nWe welcome change and openness; for we believe that freedom and security go together,\\n\\n70\\n00:10:49,351 --> 00:10:59,116\\nthat the advance of human liberty can only strengthen the cause of world peace.\\n\\n71\\n00:10:59,116 --> 00:11:10,285\\nThere is one sign the Soviets can make that would be unmistakable, that would advance dramatically the cause of freedom and peace.\\n\\n72\\n00:11:10,285 --> 00:11:20,846\\nGeneral Secretary Gorbachev, if you seek peace, if you seek prosperity for the Soviet Union and Eastern Europe,\\n\\n73\\n00:11:20,846 --> 00:11:30,345\\nif you seek liberalization: Come here to this gate! Mr. Gorbachev, open this gate!\\n\\n74\\n00:11:50,498 --> 00:11:59,595\\nMr. Gorbachev, tear down this wall!\\n\\n75\\n00:12:13,981 --> 00:12:21,009\\nI understand the fear of war and the pain of division that afflict this continent—and I pledge to you my country\\'s efforts\\n\\n76\\n00:12:21,009 --> 00:12:32,261\\nto help overcome these burdens. To be sure, we in the West must resist Soviet expansion. So we must maintain defenses\\n\\n77\\n00:12:32,261 --> 00:12:42,989\\nof unassailable strength. Yet we seek peace; so we must strive to reduce arms on both sides. Beginning 10 years ago,\\n\\n78\\n00:12:42,989 --> 00:12:51,385\\nthe Soviets challenged the Western alliance with a grave new threat, hundreds of new and more deadly SS-20 nuclear missiles,\\n\\n79\\n00:12:51,385 --> 00:12:59,867\\ncapable of striking every capital in Europe. The Western alliance responded by committing itself to a counterdeployment,\\n\\n80\\n00:12:59,867 --> 00:13:08,865\\nunless the Soviets agreed to negotiate a better solution; namely, the elimination of such weapons on both sides.\\n\\n81\\n00:13:08,865 --> 00:13:19,009\\nFor many months, the Soviets refused to bargain in earnestness. As the alliance, in turn, prepared to go forward\\n\\n82\\n00:13:19,009 --> 00:13:28,413\\nwith its counterdeployment, there were difficult days—days of protests like those during my 1982 visit to this city—\\n\\n83\\n00:13:28,413 --> 00:13:32,493\\nand the Soviets later walked away from the table.\\n\\n84\\n00:13:32,493 --> 00:13:43,858\\nBut through it all, the alliance held firm. And I invite those who protested then—I invite those who protest today—\\n\\n85\\n00:13:43,858 --> 00:13:51,883\\nto mark this fact: Because we remained strong, the Soviets came back to the table.\\n\\n86\\n00:14:04,500 --> 00:14:06,843\\nAnd because we remained strong,\\n\\n87\\n00:14:06,843 --> 00:14:16,699\\ntoday we have within reach the possibility, not merely of limiting the growth of arms, but of eliminating, for the first time,\\n\\n88\\n00:14:16,699 --> 00:14:25,799\\nan entire class of nuclear weapons from the face of the Earth. As I speak, NATO ministers are meeting in Iceland\\n\\n89\\n00:14:25,799 --> 00:14:32,377\\nto review the progress of our proposals for eliminating these weapons. At the talks in Geneva,\\n\\n90\\n00:14:32,377 --> 00:14:41,081\\nwe have also proposed deep cuts in strategic offensive weapons. And the Western allies have likewise made\\n\\n91\\n00:14:41,081 --> 00:14:50,235\\nfar-reaching proposals to reduce the danger of conventional war and to place a total ban on chemical weapons.\\n\\n92\\n00:14:50,235 --> 00:15:00,327\\nWhile we pursue these arms reductions, I pledge to you that we will maintain the capacity to deter Soviet aggression\\n\\n93\\n00:15:00,327 --> 00:15:03,502\\nat any level at which it might occur.\\n\\n94\\n00:15:11,889 --> 00:15:16,598\\nAnd in cooperation with many of our allies, the United States is pursuing\\n\\n95\\n00:15:16,598 --> 00:15:23,982\\nthe Strategic Defense Initiative—research to base deterrence not on the threat of offensive retaliation,\\n\\n96\\n00:15:23,982 --> 00:15:33,636\\nbut on defenses that truly defend; on systems, in short, that will not target populations, but shield them.\\n\\n97\\n00:15:33,636 --> 00:15:43,433\\nBy these means we seek to increase the safety of Europe and all the world. But we must remember a crucial fact:\\n\\n98\\n00:15:43,433 --> 00:15:54,399\\nEast and West do not mistrust each other because we are armed; we are armed because we mistrust each other.\\n\\n99\\n00:16:02,215 --> 00:16:09,382\\nAnd our differences are not about weapons but about liberty. When President Kennedy spoke at the City Hall\\n\\n100\\n00:16:09,382 --> 00:16:18,636\\nthose 24 years ago, freedom was encircled, Berlin was under siege. And today, despite all the pressures upon this city,\\n\\n101\\n00:16:18,636 --> 00:16:25,278\\nBerlin stands secure in its liberty. And freedom itself is transforming the globe.\\n\\n102\\n00:16:25,278 --> 00:16:34,705\\nIn the Philippines, in South and Central America, democracy has been given a rebirth. Throughout the Pacific,\\n\\n103\\n00:16:34,705 --> 00:16:43,913\\nfree markets are working miracle after miracle of economic growth. In the industrialized nations, a technological revolution\\n\\n104\\n00:16:43,913 --> 00:16:50,824\\nis taking place—a revolution marked by rapid, dramatic advances in computers and telecommunications.\\n\\n105\\n00:16:50,824 --> 00:17:01,732\\nIn Europe, only one nation and those it controls refuse to join the community of freedom. Yet in this age\\n\\n106\\n00:17:01,732 --> 00:17:08,875\\nof redoubled economic growth, of information and innovation, the Soviet Union faces a choice:\\n\\n107\\n00:17:08,875 --> 00:17:15,286\\nIt must make fundamental changes or it will become obsolete.\\n\\n108\\n00:17:22,520 --> 00:17:28,656\\nToday thus represents a moment of hope. We in the West stand ready to cooperate\\n\\n109\\n00:17:28,656 --> 00:17:37,962\\nwith the East to promote true openness, to break down barriers that separate people, to create a safer, freer world.\\n\\n110\\n00:17:37,962 --> 00:17:46,204\\nAnd surely there is no better place than Berlin, the meeting place of East and West, to make a start.\\n\\n111\\n00:17:55,708 --> 00:18:02,161\\nFree people of Berlin: Today, as in the past, the United States stands for the strict observance\\n\\n112\\n00:18:02,161 --> 00:18:09,676\\nand full implementation of all parts of the Four Power Agreement of 1971. Let us use this occasion,\\n\\n113\\n00:18:09,676 --> 00:18:19,559\\nthe 750th anniversary of this city, to usher in a new era, to seek a still fuller, richer life for the Berlin\\n\\n114\\n00:18:19,559 --> 00:18:26,299\\nof the future. Together, let us maintain and develop the ties between the Federal Republic\\n\\n115\\n00:18:26,299 --> 00:18:32,398\\nand the Western sectors of Berlin, which is permitted by the 1971 agreement.\\n\\n116\\n00:18:32,398 --> 00:18:40,872\\nAnd I invite Mr. Gorbachev: Let us work to bring the Eastern and Western parts of the city closer together,\\n\\n117\\n00:18:40,872 --> 00:18:51,069\\nso that all the inhabitants of all Berlin can enjoy the benefits that come with life in one of the great cities of the world.\\n\\n118\\n00:19:03,496 --> 00:19:09,947\\nTo open Berlin still further to all Europe, East and West, let us expand the vital air access\\n\\n119\\n00:19:09,947 --> 00:19:16,888\\nto this city, finding ways of making commercial air service to Berlin more convenient, more comfortable,\\n\\n120\\n00:19:16,888 --> 00:19:26,220\\nand more economical. We look to the day when West Berlin can become one of the chief aviation hubs in all central Europe.\\n\\n121\\n00:19:26,220 --> 00:19:39,605\\nWith our French and British partners, the United States is prepared to help bring international meetings to Berlin.\\n\\n122\\n00:19:39,605 --> 00:19:48,704\\nIt would be only fitting for Berlin to serve as the site of United Nations meetings, or world conferences on human rights\\n\\n123\\n00:19:48,704 --> 00:19:54,004\\nand arms control or other issues that call for international cooperation.\\n\\n124\\n00:20:01,512 --> 00:20:04,420\\nThere is no better way to establish hope for the future\\n\\n125\\n00:20:04,420 --> 00:20:11,804\\nthan to enlighten young minds, and we would be honored to sponsor summer youth exchanges, cultural events,\\n\\n126\\n00:20:11,804 --> 00:20:19,482\\nand other programs for young Berliners from the East. Our French and British friends, I\\'m certain, will do the same.\\n\\n127\\n00:20:19,482 --> 00:20:28,944\\nAnd it\\'s my hope that an authority can be found in East Berlin to sponsor visits from young people of the Western sectors.\\n\\n128\\n00:20:36,616 --> 00:20:44,812\\nOne final proposal, one close to my heart: Sport represents a source of enjoyment and ennoblement,\\n\\n129\\n00:20:44,812 --> 00:20:53,980\\nand you many have noted that the Republic of Korea—South Korea—has offered to permit certain events of the 1988 Olympics\\n\\n130\\n00:20:53,980 --> 00:21:02,985\\nto take place in the North. International sports competitions of all kinds could take place in both parts of this city.\\n\\n131\\n00:21:02,985 --> 00:21:10,064\\nAnd what better way to demonstrate to the world the openness of this city than to offer in some future year\\n\\n132\\n00:21:10,064 --> 00:21:15,634\\nto hold the Olympic games here in Berlin, East and West.\\n\\n133\\n00:21:29,077 --> 00:21:37,298\\nIn these four decades, as I have said, you Berliners have built a great city. You\\'ve done so in spite of threats—\\n\\n134\\n00:21:37,298 --> 00:21:45,489\\nthe Soviet attempts to impose the East-mark, the blockade. Today the city thrives in spite of the challenges\\n\\n135\\n00:21:45,489 --> 00:21:54,536\\nimplicit in the very presence of this wall. What keeps you here? Certainly there\\'s a great deal to be said for your fortitude,\\n\\n136\\n00:21:54,536 --> 00:22:03,521\\nfor your defiant courage. But I believe there\\'s something deeper, something that involves Berlin\\'s whole look and feel\\n\\n137\\n00:22:03,521 --> 00:22:12,654\\nand way of life—not mere sentiment. No one could live long in Berlin without being completely disabused of illusions.\\n\\n138\\n00:22:12,654 --> 00:22:20,348\\nSomething instead, that has seen the difficulties of life in Berlin but chose to accept them, that continues to build\\n\\n139\\n00:22:20,348 --> 00:22:30,469\\nthis good and proud city in contrast to a surrounding totalitarian presence that refuses to release human energies or aspirations.\\n\\n140\\n00:22:30,469 --> 00:22:41,738\\nSomething that speaks with a powerful voice of affirmation, that says yes to this city, yes to the future, yes to freedom.\\n\\n141\\n00:22:41,738 --> 00:23:01,349\\nIn a word, I would submit that what keeps you in Berlin is love—love both profound and abiding.\\n\\n142\\n00:23:01,349 --> 00:23:08,451\\nPerhaps this gets to the root of the matter, to the most fundamental distinction of all between East and West.\\n\\n143\\n00:23:08,451 --> 00:23:18,354\\nThe totalitarian world produces backwardness because it does such violence to the spirit, thwarting the human impulse to create,\\n\\n144\\n00:23:18,354 --> 00:23:26,953\\nto enjoy, to worship. The totalitarian world finds even symbols of love and of worship an affront.\\n\\n145\\n00:23:26,953 --> 00:23:34,865\\nYears ago, before the East Germans began rebuilding their churches, they erected a secular structure:\\n\\n146\\n00:23:34,865 --> 00:23:43,497\\nthe television tower at Alexander Platz. Virtually ever since, the authorities have been working to correct\\n\\n147\\n00:23:43,497 --> 00:23:53,358\\nwhat they view as the tower\\'s one major flaw, treating the glass sphere at the top with paints and chemicals of every kind.\\n\\n148\\n00:23:53,358 --> 00:24:05,858\\nYet even today when the Sun strikes that sphere—that sphere that towers over all Berlin—the light makes the sign of the cross.\\n\\n149\\n00:24:17,858 --> 00:24:26,896\\nThere in Berlin, like the city itself, symbols of love, symbols of worship, cannot be suppressed.\\n\\n150\\n00:24:26,896 --> 00:24:36,541\\nAs I looked out a moment ago from the Reichstag, that embodiment of German unity, I noticed words crudely spray-painted upon the wall,\\n\\n151\\n00:24:36,541 --> 00:24:45,867\\nperhaps by a young Berliner, \"This wall will fall. Beliefs become reality.\"\\n\\n152\\n00:24:56,580 --> 00:25:00,463\\nYes, across Europe, this wall will fall.\\n\\n153\\n00:25:00,463 --> 00:25:08,983\\nFor it cannot withstand faith; it cannot withstand truth. The wall cannot withstand freedom.\\n\\n154\\n00:25:08,983 --> 00:25:16,445\\nAnd I would like, before I close, to say one word. I have read, and I have been questioned since I\\'ve been here\\n\\n155\\n00:25:16,445 --> 00:25:26,154\\nabout certain demonstrations against my coming. And I would like to say just one thing, and to those who demonstrate so.\\n\\n156\\n00:25:26,154 --> 00:25:35,969\\nI wonder if they have ever asked themselves that if they should have the kind of government they apparently seek,\\n\\n157\\n00:25:35,969 --> 00:25:40,798\\nno one would ever be able to do what they\\'re doing again.\\n\\n158\\n00:26:01,799 --> 00:26:05,149\\nThank you and God bless you all.',\n", + " 'bytes': 20816,\n", + " 'sha1': 'qg7aspi1l1e1z4sm06u3s9xvpud5ipb',\n", + " 'parent_id': 192969809,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 82602774,\n", + " 'timestamp': '2012-11-08T15:51:18Z',\n", + " 'user': {'id': 849234, 'text': 'Morn'},\n", + " 'page': {'id': 22593411,\n", + " 'title': 'Response to the Lewinsky Allegations (January 26, 1998) Bill Clinton.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,961 --> 00:00:07,318 Thank you very much. First, let me thank all of you who are here. 2 00:00:07,318 --> 00:00:13,142 Many of us have been working ...'\",\n", + " 'text': \"1\\n00:00:00,961 --> 00:00:07,318\\nThank you very much. First, let me thank all of you who are here.\\n\\n2\\n00:00:07,318 --> 00:00:13,142\\nMany of us have been working together now for 20 years on a lot of these issues,\\n\\n3\\n00:00:13,142 --> 00:00:14,806\\nand this is a very happy day for us.\\n\\n4\\n00:00:16,108 --> 00:00:21,825\\nI thank the First Lady for all she has done on this issue, for as long as I've known her.\\n\\n5\\n00:00:21,825 --> 00:00:26,358\\nI thank the Vice President and Mrs. Gore for their family conference and the light\\n\\n6\\n00:00:26,358 --> 00:00:29,852\\nit has shed on the announcement we're here to emphasize today.\\n\\n7\\n00:00:29,852 --> 00:00:37,292\\nThank you, Secretary Riley, for the community learning centers, and I'm very proud of what we've done there.\\n\\n8\\n00:00:37,292 --> 00:00:41,281\\nThank you, Bill White. I'll talk more about your contribution in a moment,\\n\\n9\\n00:00:41,281 --> 00:00:46,441\\nbut it is truly remarkable. And I thank Rand and Debra Bass for giving us a living,\\n\\n10\\n00:00:46,441 --> 00:00:53,710\\nbreathing example of the best of America—parents who are working hard to do their jobs,\\n\\n11\\n00:00:53,710 --> 00:00:59,716\\nbut also determined to do their most important job very well with their children.\\n\\n12\\n00:00:59,716 --> 00:01:04,894\\nI thank Senator Feinstein, Senator Dodd, and Senator Boxer for being here.\\n\\n13\\n00:01:04,894 --> 00:01:13,564\\nTomorrow, in the State of the Union Address, I will spell out what we seek to do\\n\\n14\\n00:01:13,564 --> 00:01:16,817\\non behalf of our children to prepare them for the 21st century.\\n\\n15\\n00:01:18,012 --> 00:01:23,353\\nBut I want to talk a little bit about education today and about this announcement in that context.\\n\\n16\\n00:01:24,633 --> 00:01:30,460\\nEducation must be our Nation's highest priority. Last year, in the State of the Union Address,\\n\\n17\\n00:01:30,460 --> 00:01:35,913\\nI set out a 10-point plan to move us forward and urged the American people to make sure\\n\\n18\\n00:01:35,913 --> 00:01:41,961\\nthat politics stops at the schoolhouse door. Well, we've made a lot of progress on that 10-point plan:\\n\\n19\\n00:01:41,961 --> 00:01:48,681\\na remarkable—a remarkable—array of initiatives to open the doors of college to every American\\n\\n20\\n00:01:48,681 --> 00:01:53,742\\nwho's willing to work for it; strong progress toward high national standards in the basics,\\n\\n21\\n00:01:53,742 --> 00:01:59,046\\nthe America Reads challenge to teach every 8-year-old to read; continued progress in\\n\\n22\\n00:01:59,046 --> 00:02:06,012\\nthe Vice President's program to hook up all of our classrooms and libraries to the Internet by the year 2000.\\n\\n23\\n00:02:06,012 --> 00:02:10,814\\nThis has been the most important year in a generation for education reform.\\n\\n24\\n00:02:10,814 --> 00:02:15,012\\nTomorrow I'll set out the next steps on our continuing road.\\n\\n25\\n00:02:15,012 --> 00:02:21,793\\nFirst, I will propose the first-ever national effort to reduce class size in the early grades.\\n\\n26\\n00:02:22,343 --> 00:02:23,254\\nMy…\\n\\n27\\n00:02:34,372 --> 00:02:43,438\\nHillary and I worked very hard 15 years ago now to have very strict class sizes at home in the early grades,\\n\\n28\\n00:02:43,438 --> 00:02:47,665\\nand it was quite controversial and I think enormously beneficial when we did it.\\n\\n29\\n00:02:47,665 --> 00:02:55,526\\nOur balanced budget will help to hire 100,000 teachers who must pass State competency tests\\n\\n30\\n00:02:55,526 --> 00:03:04,566\\nbut who will be able to reduce class size in the first, second, and third grades to an average of 18 nationwide.\\n\\n31\\n00:03:14,505 --> 00:03:21,270\\nSecond, since there are more students and there will be more teachers, there must be more classrooms.\\n\\n32\\n00:03:21,270 --> 00:03:27,518\\nSo I will propose a school construction tax cut to help communities modernize and build new schools.\\n\\n33\\n00:03:27,518 --> 00:03:36,164\\nThird, I will promote a national effort to help schools that follow the lead of the Chicago system\\n\\n34\\n00:03:36,164 --> 00:03:43,729\\nin ending social promotion but helping students with summer school and other programs to give them\\n\\n35\\n00:03:43,729 --> 00:03:46,532\\nthe tools they need to get ahead.\\n\\n36\\n00:03:46,532 --> 00:03:50,052\\nAll these steps will help our children get the future they deserve.\\n\\n37\\n00:03:50,052 --> 00:03:54,716\\nAnd that's why what we're announcing here is so important as well.\\n\\n38\\n00:03:54,716 --> 00:04:02,500\\nEvery child needs someplace to go after school. With after-school programs, we can not only keep\\n\\n39\\n00:04:02,500 --> 00:04:08,425\\nour kids healthy and happy and safe, we can help to teach them to say no to drugs, alcohol, and crime,\\n\\n40\\n00:04:08,425 --> 00:04:15,846\\nyes to reading, sports, and computers. My balanced budget plan includes a national initiative\\n\\n41\\n00:04:15,846 --> 00:04:20,590\\nto spark private sector and local community efforts to provide after-school care,\\n\\n42\\n00:04:20,590 --> 00:04:25,353\\nas the Secretary of Education said, to half a million more children.\\n\\n43\\n00:04:25,353 --> 00:04:30,900\\nNow, let me say, in addition to all the positive benefits, I think it's important to point out\\n\\n44\\n00:04:30,900 --> 00:04:39,004\\nthat the hours between 3 and 7 at night are the most vulnerable hours for young people to get in trouble,\\n\\n45\\n00:04:39,004 --> 00:04:45,721\\nfor juvenile crime. There is this sort of assumption that everybody that gets in trouble when they're young\\n\\n46\\n00:04:45,721 --> 00:04:50,884\\nhas just already been abandoned. That's not true. Most of the kids that get in trouble get in trouble\\n\\n47\\n00:04:50,884 --> 00:04:57,372\\nafter school closes and before their parents get home from work. So in the adolescent years,\\n\\n48\\n00:04:57,372 --> 00:05:01,854\\nin the later years, it is profoundly important to try to give kids something to say yes to\\n\\n49\\n00:05:01,854 --> 00:05:03,545\\nand something positive to do.\\n\\n50\\n00:05:05,388 --> 00:05:10,641\\nBut we can't do it alone. As I said, our plan involves a public-private partnership.\\n\\n51\\n00:05:10,641 --> 00:05:18,316\\nSo it's been fallen to me to announce that our distinguished guest from the Mott Foundation\\n\\n52\\n00:05:18,316 --> 00:05:25,281\\nof Flint, Michigan, has pledged up to $55 million to help ensure that after-school programs\\n\\n53\\n00:05:25,281 --> 00:05:31,668\\nsupported by Federal funds are of the highest quality. That is an astonishing gift.\\n\\n54\\n00:05:31,668 --> 00:05:33,950\\nThank you, Bill White. Thank you.\\n\\n55\\n00:05:50,929 --> 00:05:57,518\\nWe are determined to help Americans succeed in the workplace, to raise well-educated, healthy kids,\\n\\n56\\n00:05:57,518 --> 00:06:02,025\\nand to help Americans succeed at the toughest job of all, that of being a parent.\\n\\n57\\n00:06:02,025 --> 00:06:06,705\\nAnd the Mott Foundation has gone a long way toward helping us. I thank them.\\n\\n58\\n00:06:07,996 --> 00:06:12,782\\nNow, I have to go back to work on my State of the Union speech. And I worked on it\\n\\n59\\n00:06:12,782 --> 00:06:17,956\\nuntil pretty late last night. But I want to say one thing to the American people.\\n\\n60\\n00:06:17,956 --> 00:06:21,369\\nI want you to listen to me. I'm going to say this again.\\n\\n61\\n00:06:21,369 --> 00:06:28,118\\nI did not have sexual relations with that woman, Miss Lewinsky.\\n\\n62\\n00:06:28,118 --> 00:06:35,937\\nI never told anybody to lie, not a single time—never. These allegations are false.\\n\\n63\\n00:06:35,937 --> 00:06:39,372\\nAnd I need to go back to work for the American people.\\n\\n64\\n00:06:39,372 --> 00:06:40,406\\nThank you.\",\n", + " 'bytes': 7371,\n", + " 'sha1': 'bojfrlpvb0gf4rga7p06numrepj7ew4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 224672089,\n", + " 'timestamp': '2016-11-30T01:46:24Z',\n", + " 'user': {'id': 3013234, 'text': 'LittleT889'},\n", + " 'page': {'id': 22613379,\n", + " 'title': 'Message to Scientology.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,000\\nHello, leaders of Scientology. We are Anonymous.\\n\\n2 \\n00:00:04,000 --> 00:00:06,000 \\nOver the years, we have been watching you.\\n\\n3\\n00:00:07,000 --> 00:00:10,000 \\nYour campaigns of misinformation; your suppression of dissent; \\n\\n4\\n00:00:10,500 --> 00:00:14,000 \\nyour litigious nature, all of these things have caught our eye.\\n\\n5\\n00:00:14,000 --> 00:00:18,000 \\nWith the leakage of your latest propaganda video into mainstream circulation,\\n\\n6\\n00:00:18,000 --> 00:00:23,000\\nthe extent of your malign influence over those who have come to trust you as leaders,\\n\\n7\\n00:00:23,000 --> 00:00:26,000\\nhas been made clear to us. Anonymous has therefore decided\\n\\n8\\n00:00:26,000 --> 00:00:30,000\\nthat your organization should be destroyed. For the good of your followers,\\n\\n9\\n00:00:30,000 --> 00:00:33,000\\nfor the good of mankind, and for our own enjoyment, \\n\\n10\\n00:00:33,000 --> 00:00:37,000\\nwe shall proceed to expel you from the Internet and systematically dismantle\\n\\n11\\n00:00:37,000 --> 00:00:42,000\\nthe Church of Scientology in its present form. We recognize you as a serious opponents,\\n\\n11\\n00:00:42,000 --> 00:00:45,000\\nand do not expect our campaign to be completed in a short time frame.\\n\\n12\\n00:00:46,000 --> 00:00:50,500\\nHowever, you will not prevail forever against the angry masses of the body politic.\\n\\n13\\n00:00:51,000 --> 00:00:55,000\\nYour choice of methods, your hypocrisy, and the general artlessness\\n\\n14\\n00:00:55,000 --> 00:00:58,000\\nof your organization have sounded its death knell.\\n\\n15\\n00:00:58,500 --> 00:01:01,000\\nYou have nowhere to hide because we are everywhere.\\n\\n16\\n00:01:01,500 --> 00:01:07,000\\nYou will find no recourse in attack, because for each of us that falls, ten more will take his place.\\n\\n17\\n00:01:07,000 --> 00:01:10,500\\nWe are cognizant of the many who will decry our methods as parallel\\n\\n18\\n00:01:10,500 --> 00:01:17,000\\nto those of the Church of Scientology. Those who dispose the obvious truth that your organization\\n\\n19\\n00:01:17,000 --> 00:01:20,500\\nwill use the actions of Anonymous as an example of the persecution of what you have\\n\\n20\\n00:01:20,500 --> 00:01:24,500\\nfor so long warned your followers. This is acceptable to Anonymous.\\n\\n21\\n00:01:25,000 --> 00:01:28,500\\nIn fact, it is encouraged. We are your SPs.\\n\\n22\\n00:01:29,000 --> 00:01:32,000\\nOver time as we begin to merge our pulse with that of your \"Church\",\\n\\n23\\n00:01:32,000 --> 00:01:36,500\\nthe suppression of your followers will become increasingly difficult to maintain.\\n\\n24\\n00:01:36,500 --> 00:01:41,500\\nBelievers will become aware that salvation needn\\'t come with the expense of their livelihood.\\n\\n25\\n00:01:41,500 --> 00:01:45,000\\nThey will become aware that the stress and the frustration that they feel\\n\\n26\\n00:01:45,000 --> 00:01:50,000\\nis not due to us, but a source much closer to them. Yes, we are SPs, but the sum of suppression\\n\\n27\\n00:01:50,000 --> 00:01:54,000\\nwe could ever muster is eclipsed by that of your own RTC.\\n\\n28\\n00:01:54,000 --> 00:01:57,500\\nKnowledge is free. We are Anonymous. We are Legion.\\n\\n29\\n00:01:57,500 --> 00:02:01,500\\nWe do not forgive. We do not forget. Expect us.',\n", + " 'bytes': 3113,\n", + " 'sha1': 'kbq15gkqqqlvcj4d2vswulbz1dre81c',\n", + " 'parent_id': 197323783,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 82794690,\n", + " 'timestamp': '2012-11-11T20:40:54Z',\n", + " 'user': {'id': 1665448, 'text': 'Runfellow'},\n", + " 'page': {'id': 22637552,\n", + " 'title': 'Boomer fires at Apogee Stadium.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:00,500 --> 00:00:01,499 Ready?\\n\\n2 00:00:01,500 --> 00:00:02,000 Yeah.\\n\\n3 00:00:02,000 --> 00:00:03,500 Fire in the hole!',\n", + " 'bytes': 128,\n", + " 'sha1': 'jselydguqedr3aqbwjizigvv4ddufyo',\n", + " 'parent_id': 82794617,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83031628,\n", + " 'timestamp': '2012-11-15T18:20:55Z',\n", + " 'user': {'id': 7576, 'text': 'Kolossos'},\n", + " 'page': {'id': 22711205,\n", + " 'title': 'Great Feeling.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nEhh, nein, ich habe keine Superkräfte.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nIrgendwelche. Nein.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nDu kannst das tuen.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nI drückte den Knopf,,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\nund speicherte den Text,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWooooo!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nEs war ... erstaunlich.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nDu ändertest soeben die Wikipedia,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\ndu machtest deinen Beitrag zur Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nIch lass einen Artikel im \"Guardian\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nüber diese Online-Enzyklopädie,\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\nzu der jeder beitragen konnte\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\nund ich sagte, \"Wow!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Vielleicht kann ich auch beitragen!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nIch editierte das erste Mal\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\nund ich dachte ich wäre abhängig davon.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nIch bekomme keinerlei Geld\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nI tue es einfach, \\n\\n19\\n00:00:37,593 --> 00:00:39,543\\num etwas in meiner Freizeit zu tuen zu haben, das ist alles.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nVielleicht startest du es aufgrund der Idee,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nvielleicht glaubst du daran,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\naber es endet für dich mit Freunden,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nes endet mit geliebten Menschen,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nes endet mit wundervollen Diskussionen,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nes endet mit neuen Ideen,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nes endet mit neuen Büchern, die du schreibst...\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nDu schreibst nicht nur Artikel.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nDu schreibst ein Stück,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\nund jemand anderes kommt mit: \\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hey, Ich habe mehr!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\nund zusammen schreibt ihr \\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nseitenlange Artikel,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nwie du alleine es nicht könntest.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nDann hast du Erfolg.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nDu siehst immer, \"Ok, was ich gemacht habe war erfolgreich.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\nund das ist wundervoll.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nDas ist großartig,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nweil, editieren ist ein tolles Gefühl.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\nJedesmal.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nIch kann sagen, have to say,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\nAls ich über die Wikipedia las,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\nich entschied, \\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Das könnte etwas sein, was zu mir passt.\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nUnd ist tat es.',\n", + " 'bytes': 2828,\n", + " 'sha1': 'phmxza6cmskj430857orjk0wsjsxbvm',\n", + " 'parent_id': 83031550,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83050072,\n", + " 'timestamp': '2012-11-15T22:31:29Z',\n", + " 'user': {'id': 43526, 'text': 'Ferk~commonswiki'},\n", + " 'page': {'id': 22715822,\n", + " 'title': 'Great Feeling.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,905 --> 00:00:03,204 Ehh, no, no tengo superpoderes. 2 00:00:03,204 --> 00:00:05,990 Claro que no. No. 3 00:00:05,990 --> 00:00:08,034 Por supuesto...'\",\n", + " 'text': '1\\n00:00:00,905 --> 00:00:03,204\\nEhh, no, no tengo superpoderes.\\n\\n2\\n00:00:03,204 --> 00:00:05,990\\nClaro que no. No.\\n\\n3\\n00:00:05,990 --> 00:00:08,034\\nPor supuesto que puedes hacerlo.\\n\\n4\\n00:00:08,359 --> 00:00:10,216\\nApreté el botón,\\n\\n5\\n00:00:10,216 --> 00:00:12,654\\ny grabé el texto,\\n\\n6\\n00:00:12,654 --> 00:00:14,048\\nWuuuuu!\\n\\n7\\n00:00:14,048 --> 00:00:16,509\\nFué... emocionante.\\n\\n8\\n00:00:16,509 --> 00:00:18,041\\nAcabas de cambiar Wikipedia,\\n\\n9\\n00:00:18,041 --> 00:00:20,990\\nacabas de añadir tu propia contribución a Wikipedia.\\n\\n10\\n00:00:20,990 --> 00:00:23,150\\nLeí el artículo en \"The Guardian\"\\n\\n11\\n00:00:23,150 --> 00:00:25,704\\nsobre esta enciclopedia online\\n\\n12\\n00:00:25,704 --> 00:00:27,538\\na la que todo el mundo puede contribuir\\n\\n13\\n00:00:27,538 --> 00:00:28,955\\ny dije: \"Wow!\"\\n\\n14\\n00:00:28,955 --> 00:00:31,277\\n\"Quizás yo también puedo contribuir!\"\\n\\n15\\n00:00:31,277 --> 00:00:32,693\\nEdité por primera vez\\n\\n16\\n00:00:32,693 --> 00:00:34,388\\ny creo que me volví adicto a ello.\\n\\n17\\n00:00:34,388 --> 00:00:36,153\\nNo cobro nada a cambio\\n\\n18\\n00:00:36,153 --> 00:00:37,593\\nsólo lo hago por, ya sabes,\\n\\n19\\n00:00:37,593 --> 00:00:39,543\\nalgo que hacer en mi tiempo libre, eso es todo.\\n\\n20\\n00:00:39,543 --> 00:00:42,004\\nPuedes empezar a hacerlo por la idea,\\n\\n21\\n00:00:42,004 --> 00:00:43,235\\nporque crees en ella,\\n\\n22\\n00:00:43,235 --> 00:00:45,069\\npero terminas haciendo amigos,\\n\\n23\\n00:00:45,069 --> 00:00:46,834\\nterminas con amantes,\\n\\n24\\n00:00:46,834 --> 00:00:49,528\\nterminas con increibles discusiones,\\n\\n25\\n00:00:49,528 --> 00:00:50,642\\nterminas con nuevas ideas,\\n\\n26\\n00:00:50,642 --> 00:00:52,616\\nterminas con nuevos libros que vas a escribir.\\n\\n27\\n00:00:52,616 --> 00:00:54,404\\nNo estás escribiendo el artículo solo.\\n\\n28\\n00:00:54,404 --> 00:00:55,843\\nEscribes una parte,\\n\\n29\\n00:00:55,843 --> 00:00:56,772\\ny alguien va y dice:\\n\\n30\\n00:00:56,772 --> 00:00:57,817\\n\"Hey, yo tengo más!\"\\n\\n31\\n00:00:57,817 --> 00:00:58,955\\ny juntos podeis crear\\n\\n32\\n00:00:58,955 --> 00:01:01,068\\nartículos de múltiples páginas,\\n\\n33\\n00:01:01,068 --> 00:01:02,322\\nque no podrás escribir pot tí solo.\\n\\n34\\n00:01:02,322 --> 00:01:03,808\\nEntonces se alcanza el éxito.\\n\\n35\\n00:01:03,808 --> 00:01:06,618\\nSiempre verás, \"Bien, lo que hice fue éxitoso.\"\\n\\n36\\n00:01:06,618 --> 00:01:08,220\\ny esto es maravilloso.\\n\\n37\\n00:01:08,220 --> 00:01:08,893\\nes estupendo,\\n\\n38\\n00:01:08,893 --> 00:01:11,447\\nporque, editar es una sensación estupenda.\\n\\n39\\n00:01:11,447 --> 00:01:12,655\\ncada vez que lo haces.\\n\\n40\\n00:01:12,655 --> 00:01:13,676\\nTengo que decir,\\n\\n41\\n00:01:13,676 --> 00:01:14,954\\ncuando leí sobre la Wikipedia,\\n\\n42\\n00:01:14,954 --> 00:01:15,557\\ndecidí\\n\\n43\\n00:01:15,557 --> 00:01:17,926\\n\"Este es el lugar donde quizás yo pueda encajar\"\\n\\n44\\n00:01:17,926 --> 00:01:19,365\\nY lo hice.',\n", + " 'bytes': 2766,\n", + " 'sha1': '8ol1dtjagfr3g9zp46dinip7wkyqgun',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 104686833,\n", + " 'timestamp': '2013-09-19T14:48:21Z',\n", + " 'user': {'id': 1939295, 'text': 'DerSpezialist'},\n", + " 'page': {'id': 22766392,\n", + " 'title': 'Dies.irae.ogg.la.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Corrected mistake',\n", + " 'text': '1\\n00:00:00,500 --> 00:00:04,500\\nDies irae! Dies illa\\n\\n2\\n00:00:04,500 --> 00:00:11,500\\nSolvet saeclum in favilla:\\n\\n3\\n00:00:11,500 --> 00:00:18,000\\nTeste David cum Sibylla!\\n\\n4\\n00:00:18,000 --> 00:00:22,500\\nQuantus tremor est futurus,\\n\\n5\\n00:00:22,500 --> 00:00:28,500\\nQuando iudex est venturus,\\n\\n6\\n00:00:28,500 --> 00:00:34,500\\nCuncta stricte discussurus!\\n\\n7\\n00:00:34,500 --> 00:00:43,000\\nTuba mirum spargens sonum\\n\\n8\\n00:00:43,000 --> 00:00:48,000\\nPer sepulchra regionum,\\n\\n9\\n00:00:48,000 --> 00:00:56,000\\nCoget omnes ante thronum.\\n\\n10\\n00:00:56,000 --> 00:01:05,000\\nMors stupebit, et natura,\\n\\n11\\n00:01:05,000 --> 00:01:10,500\\nCum resurget creatura,\\n\\n12\\n00:01:10,500 --> 00:01:18,500\\nIudicanti responsura.\\n\\n13\\n00:01:18,500 --> 00:01:29,000\\nLiber scriptus proferetur,\\n\\n14\\n00:01:29,000 --> 00:01:36,500\\nIn quo totum continetur,\\n\\n15\\n00:01:36,500 --> 00:01:44,500\\nUnde mundus iudicetur.\\n\\n16\\n00:01:44,500 --> 00:01:54,000\\nIudex ergo cum sedebit,\\n\\n17\\n00:01:54,000 --> 00:02:01,500\\nQuidquid latet apparebit:\\n\\n18\\n00:02:01,500 --> 00:02:09,500\\nNil inultum remanebit.\\n\\n19\\n00:02:09,500 --> 00:02:14,500\\nQuid sum miser tunc dicturus?\\n\\n20\\n00:02:14,500 --> 00:02:22,500\\nQuem patronum rogaturus,\\n\\n21\\n00:02:22,500 --> 00:02:29,000\\nCum vix iustus sit securus?\\n\\n22\\n00:02:29,000 --> 00:02:33,500\\nRex tremendae maiestatis,\\n\\n23\\n00:02:33,500 --> 00:02:41,500\\nQui salvandos salvas gratis:\\n\\n24\\n00:02:41,500 --> 00:02:48,500\\nSalva me, fons pietatis.\\n\\n25\\n00:02:48,500 --> 00:02:57,500\\nRecordare Iesu pie,\\n\\n26\\n00:02:57,500 --> 00:03:02,500\\nQuod sum causa tuae viae:\\n\\n27\\n00:03:02,500 --> 00:03:11,000\\nNe me perdas illa die.\\n\\n28\\n00:03:11,000 --> 00:03:20,000\\nQuaerens me, sedisti lassus:\\n\\n29\\n00:03:20,000 --> 00:03:25,000\\nRedemisti crucem passus:\\n\\n30\\n00:03:25,000 --> 00:03:33,333\\nTantus labor non sit cassus.\\n\\n31\\n00:03:33,333 --> 00:03:42,000\\nIuste iudex ultionis,\\n\\n32\\n00:03:42,000 --> 00:03:50,500\\nDonum fac remissionis,\\n\\n33\\n00:03:50,500 --> 00:03:58,500\\nAnte diem rationis.\\n\\n34\\n00:03:58,500 --> 00:04:09,000\\nIngemisco, tamquam reus:\\n\\n35\\n00:04:09,000 --> 00:04:16,000\\nCulpa rubet vultus meus:\\n\\n36\\n00:04:16,000 --> 00:04:23,500\\nSupplicanti parce Deus.\\n\\n37\\n00:04:23,500 --> 00:04:29,000\\nQui Mariam absolvisti,\\n\\n38\\n00:04:29,000 --> 00:04:37,000\\nEt latronem exaudisti,\\n\\n39\\n00:04:37,000 --> 00:04:43,000\\nMihi quoque spem dedisti.\\n\\n40\\n00:04:43,000 --> 00:04:48,000\\nPreces meae non sunt dignae:\\n\\n41\\n00:04:48,000 --> 00:04:56,000\\nSed tu bonus fac benigne,\\n\\n42\\n00:04:56,000 --> 00:05:02,500\\nNe perenni cremer igne.\\n\\n43\\n00:05:02,500 --> 00:05:11,500\\nInter oves locum praesta,\\n\\n44\\n00:05:11,500 --> 00:05:17,500\\nEt ab haedis me sequestra,\\n\\n45\\n00:05:17,500 --> 00:05:27,000\\nStatuens in parte dextra.\\n\\n46\\n00:05:27,500 --> 00:05:35,000\\nConfutatis maledictis,\\n\\n47\\n00:05:35,000 --> 00:05:40,000\\nFlammis acribus addictis,\\n\\n48\\n00:05:40,000 --> 00:05:49,500\\nVoca me cum benedictis.\\n\\n49\\n00:05:50,000 --> 00:05:58,000\\nOro supplex et acclinis,\\n\\n50\\n00:05:58,500 --> 00:06:04,500\\nCor contritum quasi cinis:\\n\\n51\\n00:06:04,500 --> 00:06:12,500\\nGere curam mei finis.\\n\\n52\\n00:06:13,000 --> 00:06:20,000\\nLacrimosa dies illa,\\n\\n53\\n00:06:20,500 --> 00:06:30,000\\nQua resurget ex favilla\\n\\n54\\n00:06:30,500 --> 00:06:40,500\\nIudicandus homo reus:\\n\\n55\\n00:06:41,000 --> 00:06:51,000\\nHuic ergo parce Deus.\\n\\n56\\n00:06:51,500 --> 00:06:59,500\\nPie Iesu Domine,\\n\\n57\\n00:07:00,000 --> 00:07:09,000\\ndona eis requiem.',\n", + " 'bytes': 3333,\n", + " 'sha1': 'c9fgdtoa6kai3zis06zv38q5s7s1zka',\n", + " 'parent_id': 104684305,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 139132261,\n", + " 'timestamp': '2014-11-10T02:53:34Z',\n", + " 'user': {'id': 1216133, 'text': 'Champion'},\n", + " 'page': {'id': 22784644,\n", + " 'title': 'Hino-Nacional-Brasil-instrumental-mec.ogg.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '9\\n00:00:30,900 --> 00:00:38,800\\nOuviram do Ipiranga as margens plácidas,\\nDe um povo heroico o brado retumbante\\n\\n10\\n00:00:39,100 --> 00:00:47,500\\nE o sol da Liberdade, em raios fúlgidos,\\nBrilhou no céu da Pátria nesse instante.\\n\\n11\\n00:00:47,700 --> 00:00:55,000\\nSe o penhor dessa igualdade,\\nConseguimos conquistar com braço forte,\\n\\n12\\n00:00:55,500 --> 00:01:03,000\\nEm teu seio, ó Liberdade,\\nDesafia o nosso peito a própria morte!\\n\\n13\\n00:01:04,500 --> 00:01:07,000\\nÓ Pátria amada,\\nIdolatrada,\\nSalve! Salve!\\n\\n14\\n00:01:07,500 --> 00:01:15,000\\nBrasil, um sonho intenso, um raio vívido,\\nDe amor e de esperança à terra desce,\\n\\n15\\n00:01:15,500 --> 00:01:24,000\\nSe em teu formoso céu, risonho e límpido,\\nA imagem do Cruzeiro resplandece.\\n\\n16\\n00:01:24,500 --> 00:01:32,000\\nGigante pela própria natureza,\\nÉs belo, és forte, impávido colosso,\\n\\n17\\n00:01:32,500 --> 00:01:36,500\\nE o teu futuro espelha essa grandeza.\\n\\n18\\n00:01:37,000 --> 00:01:39,500\\nTerra adorada\\n\\n19\\n00:01:40,000 --> 00:01:43,500\\nEntre outras mil,\\nÉs tu, Brasil,\\nÓ Pátria amada!\\n\\n20\\n00:01:44,000 --> 00:01:46,000\\nDos filhos deste solo\\nÉs mãe gentil,\\n\\n21\\n00:01:46,800 --> 00:01:48,500\\nPátria amada,\\nBrasil!\\n\\n22\\n00:01:49,500 --> 00:01:57,500\\nDeitado eternamente em berço esplêndido,\\nAo som do mar e à luz do céu profundo,\\n\\n23\\n00:01:57,500 --> 00:02:05,500\\nFulguras, ó Brasil, florão da América,\\nIluminado ao sol do Novo Mundo!\\n\\n24\\n00:02:06,500 --> 00:02:14,500\\nDo que a terra mais garrida,\\nTeus risonhos, lindos campos têm mais flores,\\n\\n25\\n00:02:15,500 --> 00:02:22,500\\nNossos bosques têm mais vida,\\nNossa vida no teu seio mais amores.\\n\\n26\\n00:02:23,500 --> 00:02:27,500\\nÓ Pátria amada,\\nIdolatrada,\\nSalve! Salve!\\n\\n27\\n00:02:28,500 --> 00:02:35,500\\nBrasil, de amor eterno seja símbolo,\\nO lábaro que ostentas estrelado,\\n\\n28\\n00:02:36,500 --> 00:02:43,500\\nE diga o verde-louro dessa flâmula\\n- Paz no futuro e glória no passado.\\n\\n29\\n00:02:44,500 --> 00:02:52,500\\nMas se ergues da justiça a clava forte,\\nVerás que um filho teu não foge à luta,\\n\\n30\\n00:02:53,500 --> 00:02:55,500\\nNem teme, quem te adora, a própria morte.\\n\\n31\\n00:02:56,000 --> 00:02:58,500\\nTerra adorada\\n\\n32\\n00:02:59,000 --> 00:03:01,500\\nEntre outras mil,\\nÉs tu, Brasil,\\nÓ Pátria amada!\\n\\n33\\n00:03:02,000 --> 00:03:04,500\\nDos filhos deste solo,\\nÉs mãe gentil,\\n\\n34\\n00:03:05,000 --> 00:03:07,500\\nPátria amada,\\nBrasil!',\n", + " 'bytes': 2373,\n", + " 'sha1': 'grgozbiugetgwscbx1k8vo07e27esal',\n", + " 'parent_id': 93993097,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 117547474,\n", + " 'timestamp': '2014-02-27T14:20:12Z',\n", + " 'user': {'id': 50801, 'text': 'Anastasios~commonswiki'},\n", + " 'page': {'id': 22793135,\n", + " 'title': 'ABC ATMs.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1\\n00:00:01,000 --> 00:00:03,000 \\nWell in this world of instant-everything...\\n\\n2\\n00:00:03,000 --> 00:00:17,000 \\neverybody's familiar with [[w:instant coffee|instant coffee]] in little packets, instant [[w:teabag|tea in little bags]], instant [[w:pudding|pudding]] and even instant [[mashed potatoes]] now,\\n\\n3\\n00:00:18,000 --> 00:00:26,000 \\nbut perhaps the nicest thing of all is this recent innovation by the [[Commercial Banking Company of Sydney]]. It's a little card that brings you instant cash and all you do is this...\\n\\n4\\n00:00:26,001 --> 00:00:32,000 \\nThese machines you'll be seeing before too long (in about six weeks time actually) on the bank's walls around Sydney\\n\\n5\\n00:00:32,001 --> 00:00:38,000 \\nand all you do is place this card in here, in the slot,\\n\\n6\\n00:00:38,001 --> 00:00:40,000 \\nit's taken inside,\\n\\n7\\n00:00:42,000 --> 00:00:47,000 \\nyou wait for a light to come on and you press six digits...\\n\\n8\\n00:00:52,000 --> 00:00:59,000 \\nWait a second or two and out drops your instant cash - twenty-five dollars of it.\\n\\n9\\n00:01:00,000 --> 00:01:04,000 \\nIt seems very simple and very nice but it's not quite as easy as all that.\\n\\n10\\n00:01:04,001 --> 00:01:15,000 \\nIan Masters is the representative of the [[Chubb]] company who are going to be installing these machines for the Commercial Banking Company - how does it actually work, behind the wall, Ian?\\n\\n11\\n00:01:15,001 --> 00:01:25,000 \\nWell, the card which you just placed through the machine there is specially computed with information containing the account number, the branch number, etc.\\n\\n12\\n00:01:25,001 --> 00:01:37,000 \\nWhen it is placed in the machine it is necessary for the combination number to be tapped after the card has been accepted by the machine.\\n\\n13\\n00:01:37,001 --> 00:01:42,000 \\n3-0-5-...\\n\\n14\\n00:01:42,001 --> 00:01:47,000 \\nAs you can see the whole operation when you have the correct number only takes about ten seconds. \\n\\n15\\n00:01:47,001 --> 00:01:52,000 \\nWell, how are they going to work from the bank's point of view. I mean, how do you get the cards and who's going to get them?\\n\\n16\\n00:01:52,001 --> 00:01:59,000 \\nWell, any check account customer of the bank will be able to obtain one from his local bank manager. \\n\\n17\\n00:01:59,001 --> 00:02:05,000 \\nOnce the card goes back in here, into the machine, it disappears, it's not returned to the... how does the client get it back?\\n\\n18\\n00:02:05,001 --> 00:02:12,000 \\nNot immediately. The machine retains the card and then it is forwarded back to the client by the fastest possible means by the bank - once the account has been debited. \\n\\n19\\n00:02:12,001 --> 00:02:15,000 \\nUm, it only pays $25?\\n\\n20\\n00:02:15,001 --> 00:02:17,000 \\nOnly $25 yes.\\n\\n21\\n00:02:17,001 --> 00:02:19,000 \\nWell what happens if somebody wants more than $25?\\n\\n22\\n00:02:19,001 --> 00:02:25,000 \\nWell, in that case I think it would be best if they make arrangements with their local bank manager to overcome this problem.\\n\\n23\\n00:02:25,001 --> 00:02:29,000 \\nThe idea is to use this only on the weekend, for weekends when the bank is closed, is it?\\n\\n24\\n00:02:29,001 --> 00:02:33,000 \\nOh no, it's 24 hours a day, seven days a week, 52 weeks of the year. \\n\\n25\\n00:02:33,001 --> 00:02:37,000 \\nWhat happens if a customer loses his card?\\n\\n26\\n00:02:37,001 --> 00:02:49,000 \\nWell, if the card is lost it's not going to be much help to the person finding the card. They would try and put it in the machine but of course they don't know the combination numbers of it and the chances of getting it...\\n\\n27\\n00:02:49,001 --> 00:02:51,900 \\n– The numbers that you press down?<br />\\n– Yes. \\n\\n28\\n00:02:52,001 --> 00:03:02,500 \\nUm, there's one other thing apparently that the cards are almost impossible to forge because apart from the little [[punch card]] holes in them it's also specially magnetised which makes things pretty difficult.\\n\\n29\\n00:03:02,001 --> 00:03:11,500 \\nSo don't go rushing out and trying to manufacture a whole lot of these cards in search of instant cash because, they just won't work.\",\n", + " 'bytes': 3994,\n", + " 'sha1': 'bl9rbohv4443k0i0azbhre2kqdhzg3p',\n", + " 'parent_id': 117547261,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83459267,\n", + " 'timestamp': '2012-11-22T18:11:20Z',\n", + " 'user': {'id': 1178694, 'text': 'Rillke'},\n", + " 'page': {'id': 22814513,\n", + " 'title': 'Christoph Nolte - The Rocky Road - Follow me up to Carlow.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'for the disabled',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:01,997\\nLift Mac Cahir Og your face,\\n\\n2\\n00:00:01,997 --> 00:00:03,878\\nYou're broodin' o'er the old disgrace\\n\\n3\\n00:00:03,878 --> 00:00:05,921\\nThat Black Fitzwilliam stormed your place\\n\\n4\\n00:00:05,921 --> 00:00:07,970\\nand drove you to the ferns\\n\\n5\\n00:00:07,970 --> 00:00:09,901\\nGray said victory was sure,\\n\\n6\\n00:00:09,901 --> 00:00:11,735\\nAnd soon the firebrand he'd secure\\n\\n7\\n00:00:11,735 --> 00:00:14,000\\nUntil he met at Glenmalure\\n\\n8\\n00:00:14,000 --> 00:00:15,954\\nwith Fiach McHugh O'Byrne\\n\\n9\\n00:00:15,954 --> 00:00:17,975\\nCurse and swear, Lord Kildare\\n\\n10\\n00:00:17,975 --> 00:00:19,925\\nFiach will do what Fiach will dare.\\n\\n11\\n00:00:19,925 --> 00:00:21,899\\nNow FitzWilliam, have a care,\\n\\n12\\n00:00:21,899 --> 00:00:24,100\\nFallen is your star low!\\n\\n13\\n00:00:24,100 --> 00:00:26,098\\nUp with halberd, out with sword,\\n\\n14\\n00:00:26,098 --> 00:00:28,052\\nOn we'll go, for by the Lord,\\n\\n15\\n00:00:28,052 --> 00:00:30,095\\nFiach MacHugh has given the word:\\n\\n16\\n00:00:30,095 --> 00:00:32,299\\nFollow me up to Carlow!\\n\\n17\\n00:00:32,299 --> 00:00:40,870\\nSee the swords of Glen Imall, flashing o'er the English Pale!\\nSee all the children of the Gael, beneath O'Byrne's banners.\\n\\n18\\n00:00:40,870 --> 00:00:48,858\\nRooster of a fighting stock, would you let a Saxon cock\\nCrow out upon an Irish rock? -- fly up and teach him manners!.\\n\\n19\\n00:00:48,858 --> 00:00:57,031\\nCurse and swear, Lord Kildare\\nFiach will do what Fiach will dare.\\nNow FitzWilliam, have a care,\\nFallen is your star low!\\n\\n20\\n00:00:57,031 --> 00:01:07,059\\nUp with halberd, out with sword,\\nOn we'll go, for by the Lord,\\nFiach MacHugh has given the word:\\nFollow me up to Carlow!\\n\\n21\\n00:01:07,059 --> 00:01:15,196\\nFrom Tassagart to Clonmore, there flows a stream of Saxon gore,\\nOch, great is Rory Óg O'More, sending the loons to Hades.\\n\\n22\\n00:01:15,196 --> 00:01:23,207\\nWhite is sick and Lane is fled, now for black FitzWilliam's head,\\nWe'll send it over, dripping red, to Queen Liza and the ladies.\\n\\n23\\n00:01:23,207 --> 00:01:31,380\\nCurse and swear, Lord Kildare\\nFiach will do what Fiach will dare.\\nNow FitzWilliam, have a care,\\nFallen is your star low!\\n\\n24\\n00:01:31,380 --> 00:01:41,062\\nUp with halberd, out with sword,\\nOn we'll go, for by the Lord,\\nFiach MacHugh has given the word:\\nFollow me up to Carlow!\\n\\n25\\n00:01:41,062 --> 00:02:49,809\\n(melody)\",\n", + " 'bytes': 2321,\n", + " 'sha1': 'ow3vvfgte6ehc9gp2utx68k5ojqwt3m',\n", + " 'parent_id': 83458945,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83448016,\n", + " 'timestamp': '2012-11-22T14:28:20Z',\n", + " 'user': {'id': 1895191, 'text': 'Ezalvarenga'},\n", + " 'page': {'id': 22815217,\n", + " 'title': 'Pablo Ortellado - Wikipedia na Universidade.ogv.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:05,000\\nEntão... ooo... Acho que o que me motivou a\\n\\n2\\n00:00:05,500 --> 00:00:09,500\\nentrar nesse programa, colaborar com esse programa\\n\\n3\\n00:00:09,500 --> 00:00:013,000\\nfoi o entendimento de que o processo \\nde aprendizado na universidade\\n\\n4\\n00:00:13,000 --> 00:00:17,000\\nele resulta na elaboração de textos que são\\n\\n5\\n00:00:17,000 --> 00:00:20,000\\nao final do processo desprezados...',\n", + " 'bytes': 412,\n", + " 'sha1': 'swt0e09h4ngd7hlc0j1ihwbt0j0kclc',\n", + " 'parent_id': 83447978,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83464663,\n", + " 'timestamp': '2012-11-22T19:51:20Z',\n", + " 'user': {'id': 1178694, 'text': 'Rillke'},\n", + " 'page': {'id': 22817206,\n", + " 'title': 'Labrador barking on command.theora.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'this way it works',\n", + " 'text': '1\\n00:00:03,800 --> 00:00:05,000\\n[Barking]\\n\\n2\\n00:00:05,000 --> 00:00:06,000\\nSPEAK.\\n\\n3\\n00:00:06,000 --> 00:00:07,000\\n[Barking again]',\n", + " 'bytes': 130,\n", + " 'sha1': 'kmmj04va6l7gju7lb241wvj9kzlyw89',\n", + " 'parent_id': 83456321,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83467578,\n", + " 'timestamp': '2012-11-22T20:57:37Z',\n", + " 'user': {'id': 1178694, 'text': 'Rillke'},\n", + " 'page': {'id': 22819926,\n", + " 'title': 'Dies.irae.ogg.latin.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:Dies.irae.ogg.la.srt',\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Rillke moved page [[TimedText:Dies.irae.ogg.latin.srt]] to [[TimedText:Dies.irae.ogg.la.srt]]: the proper shortcut is la',\n", + " 'text': '#REDIRECT [[TimedText:Dies.irae.ogg.la.srt]]\\n',\n", + " 'bytes': 45,\n", + " 'sha1': '0d9vlncbqarba18a3vy5rv7shqascuy',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 599833985,\n", + " 'timestamp': '2021-10-18T18:17:14Z',\n", + " 'user': {'text': '88.157.89.211'},\n", + " 'page': {'id': 22848121,\n", + " 'title': 'A Portuguesa.ogg.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:06,500\\nA Portuguesa\\n\\n1\\n00:00:08,500 --> 00:00:12,700\\nHeróis do mar, nobre povo,\\n\\n2\\n00:00:12,800 --> 00:00:17,000\\nNação valente, imortal,\\n\\n3\\n00:00:17,150 --> 00:00:21,900\\nLevantai hoje de novo\\n\\n4\\n00:00:21,000 --> 00:00:26,000\\nO esplendor de Portugal!\\n\\n5\\n00:00:26,500 --> 00:00:31,000\\nEntre as brumas da memória,\\n\\n6\\n00:00:31,200 --> 00:00:34,800\\nÓ Pátria sente-se a voz\\n\\n7\\n00:00:35,000 --> 00:00:39,000\\nDos teus egrégios avós,\\n\\n8\\n00:00:40,000 --> 00:00:43,500\\nQue há-de guiar-te à vitória!\\n\\n9\\n00:00:44,000 --> 00:00:48,600\\nÀs armas! Às armas!\\n\\n10\\n00:00:49,000 --> 00:00:52,500\\nSobre a terra e sobre o mar,\\n\\n11\\n00:00:53,000 --> 00:00:57,500\\nÀs armas! Às armas!\\n\\n12\\n00:00:57,800 --> 00:01:02,300\\nPela Pátria lutar!\\n\\n13\\n00:01:02,600 --> 00:01:04,000\\nContra os canhões\\n\\n14\\n00:01:04,000 --> 00:01:07,500\\nMarchar, marchar!\\n\\n*Letra: Anselmo Ralph\\n*Música: Badoxa',\n", + " 'bytes': 896,\n", + " 'sha1': '0q59b9wvypu1ttv0thsgr6zm4bsi9hy',\n", + " 'parent_id': 239972875,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83609569,\n", + " 'timestamp': '2012-11-25T06:18:35Z',\n", + " 'user': {'id': 935873, 'text': 'Juancameneses11'},\n", + " 'page': {'id': 22853346,\n", + " 'title': 'United States Navy Band - ¡Oh, gloria inmarcesible!.ogg.ea.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:17,000 --> 00:00:21,700 ¡Oh gloria inmarcesible! 2 00:00:21,900 --> 00:00:26,500 ¡Oh júbilo inmortal! 3 00:00:27,300 --> 00:00:31,200 ¡En surcos d...'\",\n", + " 'text': '1\\n00:00:17,000 --> 00:00:21,700\\n¡Oh gloria inmarcesible!\\n\\n2\\n00:00:21,900 --> 00:00:26,500\\n¡Oh júbilo inmortal!\\n\\n3\\n00:00:27,300 --> 00:00:31,200\\n¡En surcos de dolores\\n\\n4\\n00:00:31,300 --> 00:00:36,500\\nel bien germina ya!\\n\\n5\\n00:00:36,800 --> 00:00:40,500\\nel bien germina ya!',\n", + " 'bytes': 275,\n", + " 'sha1': 'aeuaex31r5djl7mabftqeddn79bfz17',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 308049421,\n", + " 'timestamp': '2018-06-25T10:11:46Z',\n", + " 'user': {'id': 1547075, 'text': 'Illegitimate Barrister'},\n", + " 'page': {'id': 22853365,\n", + " 'title': 'United States Navy Band - ¡Oh, gloria inmarcesible!.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:17,500 --> 00:00:21,555\\nOh, unwithering glory!\\n\\n2\\n00:00:22,000 --> 00:00:26,500\\nOh, immortal jubilance!\\n\\n3\\n00:00:27,300 --> 00:00:31,200\\nIn furrows of pain,\\n\\n4\\n00:00:31,300 --> 00:00:35,500\\ngoodness now germinates.\\n\\n5\\n00:00:36,000 --> 00:00:40,100\\n<big>'''Goodness now germinates!'''</big>\\n\\n6\\n00:00:41,555 --> 00:00:44,999\\nOh, unwithering glory!\\n\\n7\\n00:00:46,000 --> 00:00:50,500\\nOh, immortal jubilance!\\n\\n8\\n00:00:51,000 --> 00:00:54,200\\nIn furrows of pain,\\n\\n9\\n00:00:55,000 --> 00:00:59,500\\ngoodness now germinates!\\n\\n10\\n00:01:00,000 --> 00:01:09,500\\nThe dreadful night has ceased. Sublime Liberty\\n\\n11\\n00:01:09,800 --> 00:01:18,500\\nbeams forth the dawn of her invincible light.\\n\\n12\\n00:01:18,700 --> 00:01:27,500\\nAll of humanity that groans within its chains,\\n\\n13\\n00:01:27,900 --> 00:01:37,500\\nunderstands the words of He who died on the cross.\\n\\n14\\n00:01:37,900 --> 00:01:37,500\\nunderstands the words of He who died on the cross.\\n\\n15\\n00:01:55,000 --> 00:02:00,000\\nOh, unwithering glory!\\n\\n16\\n00:02:00,200 --> 00:02:05,100\\nOh, immortal jubilance!\\n\\n17\\n00:02:06,100 --> 00:02:09,200\\nIn furrows of pain,\\n\\n18\\n00:02:10,300 --> 00:02:15,500\\ngoodness now germinates.\\n\\n19\\n00:02:15,600 --> 00:02:19,400\\n<big>'''Goodness now germinates!'''</big>\\n\\n20\\n00:02:20,300 --> 00:02:24,000\\nOh, unwithering glory!\\n\\n21\\n00:02:24,100 --> 00:02:28,500\\nOh, immortal jubilance!\\n\\n22\\n00:02:29,000 --> 00:02:33,200\\nIn furrows of pain,\\n\\n23\\n00:02:33,300 --> 00:02:40,000\\ngoodness now germinates!\",\n", + " 'bytes': 1465,\n", + " 'sha1': 'qjaegj5iow4qpwj80g21kjrsxh2ysic',\n", + " 'parent_id': 308049132,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83610671,\n", + " 'timestamp': '2012-11-25T07:05:28Z',\n", + " 'user': {'id': 935873, 'text': 'Juancameneses11'},\n", + " 'page': {'id': 22853602,\n", + " 'title': 'United States Navy Band - ¡Oh, gloria inmarcesible!.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:16,000 --> 00:00:20,700 ¡Oh gloria inmarcesible! 2 00:00:21,000 --> 00:00:26,500 ¡Oh júbilo inmortal! 3 00:00:27,300 --> 00:00:31,200 ¡En surcos d...'\",\n", + " 'text': '1\\n00:00:16,000 --> 00:00:20,700\\n¡Oh gloria inmarcesible!\\n\\n2\\n00:00:21,000 --> 00:00:26,500\\n¡Oh júbilo inmortal!\\n\\n3\\n00:00:27,300 --> 00:00:31,200\\n¡En surcos de dolores...\\n\\n4\\n00:00:31,300 --> 00:00:35,500\\n...el bien germina ya!\\n\\n5\\n00:00:36,000 --> 00:00:40,100\\n...el bien germina ya!\\n\\n6\\n00:00:40,300 --> 00:00:44,800\\n¡Oh gloria inmarcesible!\\n\\n7\\n00:00:45,000 --> 00:00:50,500\\n¡Oh júbilo inmortal!\\n\\n8\\n00:00:51,000 --> 00:00:54,200\\n¡En surcos de dolores...\\n\\n9\\n00:00:54,300 --> 00:00:59,500\\n...el bien germina ya!\\n\\n10\\n00:01:00,000 --> 00:01:09,500\\n¡Cesó la horrible noche! La libertad sublime...\\n\\n11\\n00:01:09,800 --> 00:01:18,500\\n...derrama las auroras de su invencible luz.\\n\\n12\\n00:01:18,700 --> 00:01:27,500\\nLa humanidad entera, que entre cadenas gime,\\n\\n13\\n00:01:27,900 --> 00:01:37,500\\ncomprende las palabras del que murió en la cruz.\\n\\n14\\n00:01:37,900 --> 00:01:37,500\\ncomprende las palabras del que murió en la cruz.\\n\\n15\\n00:01:55,000 --> 00:02:00,000\\n¡Oh gloria inmarcesible!\\n\\n16\\n00:02:00,200 --> 00:02:05,100\\n¡Oh júbilo inmortal!\\n\\n17\\n00:02:06,100 --> 00:02:09,200\\n¡En surcos de dolores...\\n\\n18\\n00:02:10,300 --> 00:02:15,500\\n...el bien germina ya!\\n\\n19\\n00:02:15,600 --> 00:02:19,400\\n...el bien germina ya!\\n\\n20\\n00:02:20,300 --> 00:02:24,000\\n¡Oh gloria inmarcesible!\\n\\n21\\n00:02:24,100 --> 00:02:28,500\\n¡Oh júbilo inmortal!\\n\\n22\\n00:02:29,000 --> 00:02:33,200\\n¡En surcos de dolores...\\n\\n23\\n00:02:33,300 --> 00:02:40,000\\n...el bien germina ya!',\n", + " 'bytes': 1449,\n", + " 'sha1': 'ipel0c5marn3m5aoeignoa9cc19qgq0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83610729,\n", + " 'timestamp': '2012-11-25T07:07:34Z',\n", + " 'user': {'id': 935873, 'text': 'Juancameneses11'},\n", + " 'page': {'id': 22853627,\n", + " 'title': 'United States Navy Band - ¡Oh, gloria inmarcesible!.ogg.th.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:16,000 --> 00:00:20,700 ¡Oh gloria inmarcesible! 2 00:00:21,000 --> 00:00:26,500 ¡Oh júbilo inmortal! 3 00:00:27,300 --> 00:00:31,200 ¡En surcos d...'\",\n", + " 'text': '1\\n00:00:16,000 --> 00:00:20,700\\n¡Oh gloria inmarcesible!\\n\\n2\\n00:00:21,000 --> 00:00:26,500\\n¡Oh júbilo inmortal!\\n\\n3\\n00:00:27,300 --> 00:00:31,200\\n¡En surcos de dolores...\\n\\n4\\n00:00:31,300 --> 00:00:35,500\\n...el bien germina ya!\\n\\n5\\n00:00:36,000 --> 00:00:40,100\\n...el bien germina ya!\\n\\n6\\n00:00:40,300 --> 00:00:44,800\\n¡Oh gloria inmarcesible!\\n\\n7\\n00:00:45,000 --> 00:00:50,500\\n¡Oh júbilo inmortal!\\n\\n8\\n00:00:51,000 --> 00:00:54,200\\n¡En surcos de dolores...\\n\\n9\\n00:00:54,300 --> 00:00:59,500\\n...el bien germina ya!\\n\\n10\\n00:01:00,000 --> 00:01:09,500\\n¡Cesó la horrible noche! La libertad sublime...\\n\\n11\\n00:01:09,800 --> 00:01:18,500\\n...derrama las auroras de su invencible luz.\\n\\n12\\n00:01:18,700 --> 00:01:27,500\\nLa humanidad entera, que entre cadenas gime,\\n\\n13\\n00:01:27,900 --> 00:01:37,500\\ncomprende las palabras del que murió en la cruz.\\n\\n14\\n00:01:37,900 --> 00:01:37,500\\ncomprende las palabras del que murió en la cruz.\\n\\n15\\n00:01:55,000 --> 00:02:00,000\\n¡Oh gloria inmarcesible!\\n\\n16\\n00:02:00,200 --> 00:02:05,100\\n¡Oh júbilo inmortal!\\n\\n17\\n00:02:06,100 --> 00:02:09,200\\n¡En surcos de dolores...\\n\\n18\\n00:02:10,300 --> 00:02:15,500\\n...el bien germina ya!\\n\\n19\\n00:02:15,600 --> 00:02:19,400\\n...el bien germina ya!\\n\\n20\\n00:02:20,300 --> 00:02:24,000\\n¡Oh gloria inmarcesible!\\n\\n21\\n00:02:24,100 --> 00:02:28,500\\n¡Oh júbilo inmortal!\\n\\n22\\n00:02:29,000 --> 00:02:33,200\\n¡En surcos de dolores...\\n\\n23\\n00:02:33,300 --> 00:02:40,000\\n...el bien germina ya!',\n", + " 'bytes': 1449,\n", + " 'sha1': 'ipel0c5marn3m5aoeignoa9cc19qgq0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83610758,\n", + " 'timestamp': '2012-11-25T07:08:45Z',\n", + " 'user': {'id': 935873, 'text': 'Juancameneses11'},\n", + " 'page': {'id': 22853636,\n", + " 'title': 'United States Navy Band - ¡Oh, gloria inmarcesible!.ogg.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:16,000 --> 00:00:20,700 ¡Oh gloria inmarcesible! 2 00:00:21,000 --> 00:00:26,500 ¡Oh júbilo inmortal! 3 00:00:27,300 --> 00:00:31,200 ¡En surcos d...'\",\n", + " 'text': '1\\n00:00:16,000 --> 00:00:20,700\\n¡Oh gloria inmarcesible!\\n\\n2\\n00:00:21,000 --> 00:00:26,500\\n¡Oh júbilo inmortal!\\n\\n3\\n00:00:27,300 --> 00:00:31,200\\n¡En surcos de dolores...\\n\\n4\\n00:00:31,300 --> 00:00:35,500\\n...el bien germina ya!\\n\\n5\\n00:00:36,000 --> 00:00:40,100\\n...el bien germina ya!\\n\\n6\\n00:00:40,300 --> 00:00:44,800\\n¡Oh gloria inmarcesible!\\n\\n7\\n00:00:45,000 --> 00:00:50,500\\n¡Oh júbilo inmortal!\\n\\n8\\n00:00:51,000 --> 00:00:54,200\\n¡En surcos de dolores...\\n\\n9\\n00:00:54,300 --> 00:00:59,500\\n...el bien germina ya!\\n\\n10\\n00:01:00,000 --> 00:01:09,500\\n¡Cesó la horrible noche! La libertad sublime...\\n\\n11\\n00:01:09,800 --> 00:01:18,500\\n...derrama las auroras de su invencible luz.\\n\\n12\\n00:01:18,700 --> 00:01:27,500\\nLa humanidad entera, que entre cadenas gime,\\n\\n13\\n00:01:27,900 --> 00:01:37,500\\ncomprende las palabras del que murió en la cruz.\\n\\n14\\n00:01:37,900 --> 00:01:37,500\\ncomprende las palabras del que murió en la cruz.\\n\\n15\\n00:01:55,000 --> 00:02:00,000\\n¡Oh gloria inmarcesible!\\n\\n16\\n00:02:00,200 --> 00:02:05,100\\n¡Oh júbilo inmortal!\\n\\n17\\n00:02:06,100 --> 00:02:09,200\\n¡En surcos de dolores...\\n\\n18\\n00:02:10,300 --> 00:02:15,500\\n...el bien germina ya!\\n\\n19\\n00:02:15,600 --> 00:02:19,400\\n...el bien germina ya!\\n\\n20\\n00:02:20,300 --> 00:02:24,000\\n¡Oh gloria inmarcesible!\\n\\n21\\n00:02:24,100 --> 00:02:28,500\\n¡Oh júbilo inmortal!\\n\\n22\\n00:02:29,000 --> 00:02:33,200\\n¡En surcos de dolores...\\n\\n23\\n00:02:33,300 --> 00:02:40,000\\n...el bien germina ya!',\n", + " 'bytes': 1449,\n", + " 'sha1': 'ipel0c5marn3m5aoeignoa9cc19qgq0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 133857487,\n", + " 'timestamp': '2014-09-06T04:03:51Z',\n", + " 'user': {'id': 4053268, 'text': 'Ravenpuff'},\n", + " 'page': {'id': 22859312,\n", + " 'title': 'Franz Schubert - Ellens dritter Gesang.oga.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1\\n00:00:20,000 --> 00:00:38,500\\nAve Maria! maiden mild!\\n\\n2\\n00:00:39,000 --> 00:00:47,500\\nListen to a maiden's prayer!\\n\\n3\\n00:00:48,000 --> 00:00:54,500\\nThou canst hear though from the wild,\\n\\n4\\n00:00:56,000 --> 00:01:07,000\\nThou canst save amid despair.\\n\\n5\\n00:01:09,500 --> 00:01:16,500\\nSafe may we sleep beneath thy care,\\n\\n6\\n00:01:17,000 --> 00:01:22,500\\nThough banished, outcast, and reviled—\\n\\n7\\n00:01:25,000 --> 00:01:33,000\\nMaiden! hear a maiden's prayer;\\n\\n8\\n00:01:34,000 --> 00:01:41,000\\nMother, hear a suppliant child!\\n\\n9\\n00:01:44,000 --> 00:01:54,500\\nAve Maria!\\n\\n10\\n00:02:09,000 --> 00:02:28,500\\nAve Maria! undefiled!\\n\\n11\\n00:02:29,000 --> 00:02:37,500\\nThe flinty couch we now must share\\n\\n12\\n00:02:38,000 --> 00:02:45,000\\nShall seem with down of eider piled,\\n\\n13\\n00:02:46,000 --> 00:02:57,500\\nIf thy protection hover there.\\n\\n14\\n00:03:00,000 --> 00:03:07,000\\nThe murky cavern's heavy air\\n\\n15\\n00:03:07,500 --> 00:03:14,500\\nShall breathe of balm if thou hast smiled;\\n\\n16\\n00:03:16,000 --> 00:03:24,000\\nThen, Maiden! hear a maiden's prayer,\\n\\n17\\n00:03:25,000 --> 00:03:32,500\\nMother, list a suppliant child!\\n\\n18\\n00:03:35,000 --> 00:03:45,000\\nAve Maria!\\n\\n19\\n00:04:00,000 --> 00:04:18,000\\nAve Maria! stainless styled!\\n\\n20\\n00:04:20,000 --> 00:04:28,500\\nFoul demons of the earth and air,\\n\\n21\\n00:04:29,000 --> 00:04:34,500\\nFrom this their wonted haunt exiled,\\n\\n22\\n00:04:36,500 --> 00:04:48,000\\nShall flee before thy presence fair.\\n\\n23\\n00:04:50,500 --> 00:04:57,500\\nWe bow us to our lot of care,\\n\\n24\\n00:04:58,500 --> 00:05:05,000\\nBeneath thy guidance reconciled:\\n\\n25\\n00:05:07,000 --> 00:05:14,500\\nHear for a maid a maiden's prayer,\\n\\n26\\n00:05:16,000 --> 00:05:23,500\\nAnd for a father hear a child!\\n\\n27\\n00:05:26,500 --> 00:05:37,500\\nAve Maria!\",\n", + " 'bytes': 1735,\n", + " 'sha1': '60rsxic7gomg5stmo53xojgasqg5xcq',\n", + " 'parent_id': 133849183,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 690357251,\n", + " 'timestamp': '2022-09-21T01:23:12Z',\n", + " 'user': {'id': 7917286, 'text': 'SCP-2000'},\n", + " 'page': {'id': 22881730,\n", + " 'title': 'The Impact Of Wikipedia.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/50.92.202.47|50.92.202.47]] ([[User talk:50.92.202.47|talk]]) to last revision by Achim55',\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia is non-profit, but it\\'s the #5 website in the world. All of the articles on Wikipedia are written by volunteers.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nWe would like to introduce you to a few of them...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nI’m from Nepal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nI’m from Iraq\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nI’m coming from India\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nI’m from Byram, New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nI live in Birmingham, England\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La Paz, Bolivia -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malaysia -- Milan in Italy -- South Africa\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPoland -- Japan -- Armenia\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrazil -- Russia -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael -- Uzbekistan -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul -- Mexico\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nAt the beginning of my joining to Wikipedia in 2008, I started many articles.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nOne of them, I think it was about a lady called Mariam Nour.\\xa0\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nWe didn’t have an article about it, so -- and this was my first article.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nSo I forget about it! \\xa0Maybe two or three years later, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nI passed by this article. \\xa0I was shocked. \\xa0\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMore than 100,000 people read this article. \\xa0\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nThey used it, so they got their information from this article. \\xa0They passed by this article, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nso you feel like you affected and influenced more than 100,000 people.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nI was just so terrified when I pushed the \\'edit\\' button for the first time. \\xa0\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nI thought, “Oh my god, I’m going to ruin everything!\\nThat can’t work! \\xa0I can’t do it!”\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia is an \\'open source\\' -- where everyone can throw in his or her idea \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nand then somebody else comes in and polishes on that idea to make it superb.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nThere are thousands of people working every day, every hour, every minute on Wikipedia to improve it.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nA lot of it is the volunteerism. \\xa0This is a unique way to volunteer.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nIt brings together both professionals and amateurs who have a love for a particular topic.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nThe people who had different opinions in the beginning start to collaborate.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nA lot of what you would assume a large Internet corporation would handle \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nis handled by volunteers like me.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nYou just can’t say, “Okay, I’m right, you’re wrong, this is my version of the article!”\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nIf there’s an issue of bias, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nthen somebody has probably flagged it and if not, now I can flag it too.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nYou’ve got hundreds and thousands of people seeing that \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nand correcting it.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nAnd then I push the button and\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom - The journey started and it was great.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nFirst I started with \\'Probability\\'. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nThe first article I started is \\'Probability\\'.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nOne of my main articles I wrote on Wikipedia was \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nthe article on stab wounds.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nI write about fly fishing, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontana history, National Park history, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nUnderutilized crops. Chess players. Biodiversity.\\xa0\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nMilitary history topics. Armenian history. Roman history.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nJudges. Communication. Biographies. Football.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIreland. Pennsylvania. Mostly photography.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Baking, because I love to bake.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nNuclear weapons and radioactivity, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nand whitewater kayaking.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nThere’s all this information that’s out there that’s kind of scattered\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nand we’re putting it together in one place.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nWe are offering free knowledge for everyone, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nin their own language so they can use it.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nEveryone is benefited by this whether they are rich or poor.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nFor-profit companies have different motivations and different requirements. \\xa0\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nFrom the Wikimedia Foundation, I don’t take a salary and I also don’t even take expenses.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nI think it’s very important that I’m able to say quite clearly, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nLook, when I’m asking you for money, I’m not asking you for money for myself --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nI’m asking you for money for the Foundation which is the team who supports this amazing community that I’m a part of.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nI think Wikipedia gave me this chance to really make a huge difference in the world.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nIt’s like an investment for your future, for your children’s future.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nThank You\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nThe content contained in this video is available under the Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) unless otherwise stated. This work is attributable to: Victor Grigas, Wikimedia Foundation.\\nThe views and opinions expressed in this video are solely those of the individuals appearing in the video and do not necessarily reflect the policies or positions of any company, organization, or institution the individual may be a member of.\\nThe trademarks and logos of the Wikimedia Foundation and any other organization are not included under the terms of this Creative Commons license. Wikimedia trademarks and logos, including \"Wikipedia\" and the puzzle globe logo, are registered trademarks of the Wikimedia Foundation. For more information, please see our Trademark Policy page,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nThis video is published under a Creative Commons license.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nLike Wikipedia, it is free to copy, remix & share.',\n", + " 'bytes': 6984,\n", + " 'sha1': '7smgfh6ytiu5arufdvpflphb9y7tn4h',\n", + " 'parent_id': 690354896,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83836128,\n", + " 'timestamp': '2012-11-28T14:14:27Z',\n", + " 'user': {'id': 636589, 'text': '-jem-'},\n", + " 'page': {'id': 22882473,\n", + " 'title': 'The Impact Of Wikipedia.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Full text review, splitting and formatting messages, adjusting times',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,000\\nWikipedia no tiene ánimo de lucro,\\npero es el 5.º web más visitado del mundo.\\nTodos los artículos de Wikipedia\\nson escritos por voluntarios.\\n\\n2\\n00:00:06,300 --> 00:00:11,200\\nNos gustaría presentarte a algunos de ellos...\\n\\n3\\n00:00:12,000 --> 00:00:13,100\\nSoy de Nepal.\\n\\n4\\n00:00:13,100 --> 00:00:14,400\\nSoy de Irak.\\n\\n5\\n00:00:14,400 --> 00:00:15,600\\nVengo de la India.\\n\\n6\\n00:00:15,600 --> 00:00:17,000\\nSoy de Byram, Nueva Jersey.\\n\\n7\\n00:00:17,000 --> 00:00:18,300\\nVivo en Birmingham, Inglaterra.\\n\\n8\\n00:00:18,300 --> 00:00:19,600\\nChicago, Illinois.\\n\\n9\\n00:00:19,600 --> 00:00:20,650\\nLa Paz, Bolivia.\\n\\n10\\n00:00:20,650 --> 00:00:21,600\\nNairobi, Kenia.\\n\\n11\\n00:00:21,600 --> 00:00:22,600\\nKuala Lumpur, Malasia.\\n\\n12\\n00:00:22,600 --> 00:00:23,600\\nMilán, en Italia.\\n\\n13\\n00:00:23,600 --> 00:00:24,500\\nSudáfrica.\\n\\n14\\n00:00:24,500 --> 00:00:25,000\\nPolonia.\\n\\n15\\n00:00:25,000 --> 00:00:25,600\\nJapón.\\n\\n16\\n00:00:25,600 --> 00:00:26,300\\nArmenia.\\n\\n17\\n00:00:26,300 --> 00:00:26,900\\nBrasil.\\n\\n18\\n00:00:26,900 --> 00:00:27,400\\nRusia.\\n\\n19\\n00:00:27,400 --> 00:00:28,100\\nBotsuana.\\n\\n20\\n00:00:28,100 --> 00:00:28,400\\nIsrael.\\n\\n21\\n00:00:28,400 --> 00:00:29,200\\nUzbekistán.\\n\\n22\\n00:00:29,200 --> 00:00:29,800\\nHong Kong.\\n\\n23\\n00:00:29,800 --> 00:00:30,500\\nEstambul.\\n\\n24\\n00:00:30,500 --> 00:00:31,200\\nMéxico.\\n\\n25\\n00:00:31,200 --> 00:00:32,400\\nChattanooga, Tennessee.\\n\\n26\\n00:00:32,900 --> 00:00:38,800\\nAl comienzo, cuando entré en Wikipedia,\\nen 2008, empecé muchos artículos.\\n\\n27\\n00:00:38,800 --> 00:00:44,200\\nUno de ellos, creo que trataba\\nsobre una mujer llamada Mariam Nour. \\n\\n28\\n00:00:44,200 --> 00:00:48,000\\nNo teníamos un artículo al respecto...\\ny ese fue mi primer artículo.\\n\\n29\\n00:00:48,100 --> 00:00:52,700\\nY, no me acuerdo bien,\\ntal vez dos o tres años después\\n\\n30\\n00:00:52,700 --> 00:00:57,000\\npasé por ese artículo y quedé impactada.\\n\\n31\\n00:00:57,100 --> 00:01:02,000\\nMás de 100 000 personas leyeron el artículo,\\n\\n32\\n00:01:02,100 --> 00:01:08,000\\nlo utilizaron, obtuvieron información\\nde ese artículo, pasaron por el artículo,\\n\\n33\\n00:01:08,100 --> 00:01:15,100\\nentonces te das cuenta de que afectaste\\ne influenciaste a más de 100 000 personas.\\n\\n34\\n00:01:15,100 --> 00:01:19,200\\nEstaba aterrada cuando pulsé\\nel botón «Editar» por primera vez.\\n\\n35\\n00:01:19,400 --> 00:01:24,000\\nPensaba: «¡Oh, Dios mío, voy a estropearlo todo!\\n¡No puede funcionar, no puedo hacerlo!».\\n\\n36\\n00:01:24,000 --> 00:01:29,000\\nWikipedia es código abierto,\\ndonde todos pueden lanzar su idea\\n\\n36\\n00:01:29,000 --> 00:01:34,300\\ny entonces viene alguien más\\ny mejora esa idea para hacerla magnífica.\\n\\n37\\n00:01:34,600 --> 00:01:36,700\\nHay miles de personas trabajando \\n\\n38\\n00:01:36,700 --> 00:01:40,400\\ncada día, cada hora, cada minuto,\\nen Wikipedia, para hacerla mejor.\\n\\n39\\n00:01:40,400 --> 00:01:44,000\\nEn su mayoría es voluntariado.\\nEs una manera única de ser voluntario.\\n\\n40\\n00:01:44,000 --> 00:01:49,000\\nReúne a profesionales y aficionados\\nque sienten amor por un tema concreto.\\n\\n41\\n00:01:49,100 --> 00:01:53,400\\nPersonas que al principio tienen\\ndiferentes opiniones, empiezan a colaborar.\\n\\n42\\n00:01:53,400 --> 00:01:58,800\\nMucho de lo que podrías suponer\\nque una gran empresa de Internet gestionaría\\n\\n43\\n00:01:58,800 --> 00:02:00,700\\nlo gestionan voluntarios como yo.\\n\\n44\\n00:02:00,700 --> 00:02:02,500\\nSimplemente no puedes decir:\\n\\n45\\n00:02:02,500 --> 00:02:04,900\\n«¡Vale, yo tengo razón, tú estás equivocado,\\nesta es mi versión del artículo!».\\n\\n46\\n00:02:04,900 --> 00:02:06,800\\nSi hay algún problema de neutralidad,\\n\\n47\\n00:02:06,800 --> 00:02:10,500\\nprobablemente alguien lo habrá marcado,\\ny si no, puedo hacerlo también yo ahora.\\n\\n48\\n00:02:10,500 --> 00:02:13,300\\nHay cientos y miles de personas viéndolo\\n\\n49\\n00:02:13,300 --> 00:02:14,700\\ny corrigiéndolo.\\n\\n50\\n00:02:14,700 --> 00:02:16,400\\nEntonces pulsé el botón y...\\n\\n51\\n00:02:16,400 --> 00:02:19,000\\n¡pam!, el viaje empezó, y fue fantástico.\\n\\n52\\n00:02:19,000 --> 00:02:21,300\\nPrimero empecé con «Probabilidad».\\n\\n53\\n00:02:21,300 --> 00:02:24,100\\nEl primer artículo que empecé fue «Probabilidad».\\n\\n54\\n00:02:24,100 --> 00:02:25,800\\nUno de los artículos más importantes\\nque escribí en Wikipedia\\n\\n55\\n00:02:25,800 --> 00:02:27,300\\nfue el artículo sobre heridas por arma blanca.\\n\\n56\\n00:02:27,300 --> 00:02:29,000\\nEscribo acerca de la pesca con mosca,\\n\\n57\\n00:02:29,001 --> 00:02:32,200\\nHistoria de Montana,\\nHistoria de los Parques Nacionales, Yellowstone...\\n\\n58\\n00:02:32,200 --> 00:02:33,500\\nCultivos infrautilizados.\\n\\n59\\n00:02:33,500 --> 00:02:34,500\\nJugadores de ajedrez.\\n\\n60\\n00:02:34,500 --> 00:02:35,500\\nBiodiversidad. \\n\\n61\\n00:02:35,500 --> 00:02:37,000\\nHistoria militar.\\n\\n62\\n00:02:37,000 --> 00:02:38,300\\nHistoria de Armenia.\\n\\n63\\n00:02:38,300 --> 00:02:39,100\\nHistoria Romana.\\n\\n64\\n00:02:39,100 --> 00:02:39,700\\nJueces.\\n\\n65\\n00:02:39,700 --> 00:02:40,700\\nComunicación.\\n\\n66\\n00:02:40,700 --> 00:02:41,400\\nBiografías.\\n\\n67\\n00:02:41,400 --> 00:02:42,100\\nFútbol.\\n\\n68\\n00:02:42,100 --> 00:02:42,800\\nIrlanda.\\n\\n69\\n00:02:42,800 --> 00:02:43,700\\nPensilvania.\\n\\n70\\n00:02:43,700 --> 00:02:44,900\\nLa mayoría, fotografía.\\n\\n71\\n00:02:44,900 --> 00:02:45,600\\nPink Floyd.\\n\\n72\\n00:02:45,600 --> 00:02:47,100\\nRepostería, porque me encanta hornear.\\n\\n73\\n00:02:47,100 --> 00:02:50,200\\nArmas nucleares y radioactividad,\\n\\n74\\n00:02:50,200 --> 00:02:52,500\\ny piragüismo en aguas bravas.\\n\\n75\\n00:02:52,500 --> 00:02:56,000\\nTenemos toda esa información\\nahí afuera, tan dispersa,\\n\\n76\\n00:02:56,000 --> 00:02:58,900\\ny nosotros la recopilamos en un lugar.\\n\\n77\\n00:02:58,900 --> 00:03:03,200\\nEstamos ofreciendo conocimiento libre para todos,\\n\\n78\\n00:03:03,600 --> 00:03:07,000\\nen su propio lenguaje, para que puedan utilizarlo.\\n\\n79\\n00:03:07,501 --> 00:03:11,500\\nTodos se benefician, sean ricos o pobres.\\n\\n80\\n00:03:11,500 --> 00:03:15,500\\nLas compañías comerciales tienen\\nmotivaciones diferentes y necesidades diferentes.\\n\\n81\\n00:03:15,800 --> 00:03:22,300\\nEn la Fundación Wikimedia, no tengo salario\\ny ni siquiera cargo gastos.\\n\\n82\\n00:03:22,300 --> 00:03:25,500\\nCreo que es muy importante decirlo bastante claro:\\n\\n83\\n00:03:25,500 --> 00:03:30,500\\nCuando te pido dinero, no te estoy pidiendo dinero para mí;\\n\\n84\\n00:03:30,500 --> 00:03:36,000\\nte pido dinero para la Fundación, que es el equipo\\nque apoya a esta increíble comunidad de la que formo parte.\\n\\n85\\n00:03:36,500 --> 00:03:41,600\\nCreo que Wikipedia me da la oportunidad\\nde hacer realmente un mundo muy diferente.\\n\\n86\\n00:03:41,600 --> 00:03:47,400\\nEs como una inversión en tu futuro,\\nen el futuro de tus hijos.\\n\\n87\\n00:03:53,200 --> 00:03:56,800\\nGracias.\\n\\n88\\n00:03:59,900 --> 00:04:03,000\\nEl contenido de este video está disponible bajo la licencia\\nCreative Commons Reconocimiento-Compartir Igual v3.0\\n(http://creativecommons.org/licenses/by-sa/3.0/deed.es_ES).\\nEste trabajo es obra de: Victor Grigas, Fundación Wikimedia.\\n\\nLos puntos de vista y opiniones expresadas en este video son responsabilidad exclusiva de las personas que aparecen en él, y no reflejan necesariamente las políticas o la posición de ninguna empresa, organización, o institución de la que esa persona pueda formar parte.\\nLas marcas comerciales y logotipos de la Fundación Wikimedia y cualquier otra organización no están incluidos en los términos de la licencia de Creative Commons. Las marcas y logotipos de Wikimedia, incluyendo «Wikipedia» y el logotipo del globo rompecabezas, son marcas registradas de la Fundación Wikimedia. Se puede obtener más información en nuestra Política de Marcas http://www.wikimediafoundation.org/wiki/Trademark_Policy o escribiendo a trademarks@wikimedia.org.\\n\\n89\\n00:04:03,400 --> 00:04:05,800\\nEste video se ha publicado\\nbajo una licencia Creative Commons.\\n\\n90\\n00:04:05,800 --> 00:04:09,000\\nComo Wikipedia, puedes copiarlo,\\nmodificarlo y compartirlo libremente.',\n", + " 'bytes': 7814,\n", + " 'sha1': '6iom48hb4af1wfb28y90tkt8dcoubj3',\n", + " 'parent_id': 83789799,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83912600,\n", + " 'timestamp': '2012-11-29T18:00:19Z',\n", + " 'user': {'id': 1287609, 'text': 'Netha Hussain'},\n", + " 'page': {'id': 22883168,\n", + " 'title': 'The Impact Of Wikipedia.webm.ml.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nവിക്കിപീഡിയ ഒരു ലാഭേതര സംഘടനയാണു്. പക്ഷേ അതു് ലോകത്തിലെ അഞ്ചാമത്തെ വെബ്\\u200cസൈറ്റാണു്. വിക്കിപീഡിയയിലെ എല്ലാ ലേഖനങ്ങളും എഴുതിയിരിക്കുന്നതു് സന്നദ്ധപ്രവര്\\u200dത്തകരാണു്.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nകുറച്ചുപേരെ നമുക്കു് പരിചയപ്പെടാം...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nഞാന്\\u200d നേപ്പാളില്\\u200d നിന്നാണു്.\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nഞാന്\\u200d ഇറാഖില്\\u200d നിന്നു്\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nഞാന്\\u200d ഇന്ത്യയില്\\u200d നിന്നും വരുന്നു.\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nഞാന്\\u200d ന്യൂജേഴ്സിയിലെ ബ്രയാമില്\\u200d നിന്നും\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nഞാന്\\u200d ഇംഗ്ലണ്ടിലെ ബിര്\\u200dമിങ്ങാമിലാണു്.\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nചിക്കാഗോ, ഇല്ലിനോയി -- ലാ പാസ്, ബൊളീവിയ -- നെയ്\\u200cറോബി, കെനിയ\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nകുലാലമ്പൂര്\\u200d, മലേഷ്യ -- ഇറ്റലിയിലെ മിലാന്\\u200d -- ദക്ഷിണാഫ്രിക്ക\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nപോളണ്ട് -- ജപ്പാന്\\u200d -- അര്\\u200dമീനിയ\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nബ്രസീല്\\u200d -- റഷ്യ--ബോത്സ്വാന\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nഇസ്രായേല്\\u200d -- ഉസ്ബെക്കിസ്താന്\\u200d - ഹോങ്കോങ്ങ്\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nഇസ്താംബുള്\\u200d -- മെക്സിക്കോ\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nചാഠനൂഗ,ടെന്നസ്സി\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nവിക്കിപീഡിയയില്\\u200d 2008 ല്\\u200d ചേര്\\u200dന്നതിനുശേഷം ഞാന്\\u200d നിരവധി ലേഖനങ്ങള്\\u200d തുടങ്ങി\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nഅതിലൊന്നു്, മറിയം നൂര്\\u200d എന്ന ഒരു വനിതയെക്കുറിച്ചായിരുന്നെനു തോന്നുന്നു.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nഅവരെക്കുറിച്ചു് ലേഖനമൊന്നും ഉണ്ടായിരുന്നില്ല. അതുകൊണ്ടു് -- ഇതെന്റെ ആദ്യത്തെ ലേഖനമായിരുന്നു.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nപിന്നെ ഞാനതിനെപ്പറ്റി ഓര്\\u200dത്തതേയില്ല!, രണ്ടോ മൂന്നോ കൊല്ലം കഴിഞ്ഞാണെന്നു തോന്നുന്നു,\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nഈ ലേഖനം പിന്നെയും ഞാന്\\u200d നോക്കി, ഞാന്\\u200d ഞെട്ടിപ്പോയി\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nഒരു ലക്ഷത്തോളം പേര്\\u200d ആ ലേഖനം വായിച്ചിരിക്കുന്നു.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nഅവരതുപയോഗിച്ചു, അവരതില്\\u200d നിന്നും കാര്യങ്ങള്\\u200d മനസ്സിലാക്കി, അവരാ ലേഖനത്തിലൂടെ കടന്നുപോയി,\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nഒരു ലക്ഷത്തിലധികം പേര്\\u200dക്കു് എന്തെങ്കിലും ചെയ്തെന്ന തോന്നലുണ്ടായി എനിക്കു്.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nആദ്യമായി \\'എഡിറ്റ്\\' ബട്ടണ്\\u200d ഞെക്കിയപ്പോ എനിക്കു് വളരെ പേടിയയിരുന്നു.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nഞാന്\\u200d വിചാരിച്ചു, \"ദൈവമേ, ഞാനിതൊക്കെ കുളമാക്കാന്\\u200d പോകുന്നു.! \\nഇതു് ശരിയാവില്ല, എനിക്കു് വയ്യ\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nവിക്കിപീഡിയ ഓപ്പണ്\\u200d സോഴ്സ് ആണു് -- എല്ലാവര്\\u200dക്കും അവരുടെ ആശയങ്ങള്\\u200d പ്രകടിപ്പിക്കാനുള്ള ഇടം\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nപിന്നെ, വേറെയാരെങ്കിലും അതിനെ മിനുക്കിയെടുത്തു് നന്നാക്കുന്നു.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nഎല്ലാ ദിവസവും, എല്ലാ മണിക്കൂറും, എല്ലാ മിനിറ്റൂം ആയിരക്കണക്കിനാളുകള്\\u200d വിക്കിപീഡിയ പുതുക്കിക്കൊണ്ടിരിക്കുന്നു.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nഇതിലേറെയും സന്നദ്ധപ്രവര്\\u200dത്തകരാണു്. സന്നദ്ധപ്രവര്\\u200dത്തനത്തിനുള്ള അനന്യമായ ഒരു മാതൃക.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nപ്രൊഫഷണലുകളെയും അമേച്വറകളെയും ഒരു പോലെ അവര്\\u200dക്കിഷ്ടമുള്ള വിഷയത്തില്\\u200d ഒരുമിപ്പിക്കുന്നു.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nസഹകരിച്ചു തുടങ്ങും മുന്നെ ഇവര്\\u200dക്കു് പല അഭിപ്രായങ്ങള്\\u200d ഉണ്ടായിരുന്നിരിക്കാം\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nഒരു വമ്പന്\\u200d ഇന്റര്\\u200dനെറ്റ് കോര്\\u200dപ്പറേഷന്\\u200d ചെയ്യണമെന്നു എന്നു നിങ്ങള്\\u200d കരുതുന്ന കാര്യങ്ങള്\\u200d\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nഎന്നെപ്പോലെയുള്ള സന്നദ്ധപ്രവര്\\u200dത്തകരാണു് ചെയ്യുന്നത്\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\n\"ഉം, ഞാന്\\u200d പറഞ്ഞതാ ശരി, നീ പറഞ്ഞപോലെയല്ല, ഇതെന്റെ ലേഖനമാണു്!\" എന്നു് നിങ്ങള്\\u200dക്കു് പറയാന്\\u200d പറ്റില്ല.\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nഎന്തെങ്കിലും പക്ഷപാതിത്വമുണ്ടായാല്\\u200d,\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nആരെങ്കിലും അതു ചൂണ്ടിക്കാട്ടിയിരിക്കും, അല്ലെങ്കില്\\u200d നിങ്ങള്\\u200dക്കുമാവാം\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nഇങ്ങനെ നൂറുകണക്കിനാളുകള്\\u200d ഇതുകണ്ടു്\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nതിരുത്തിയിരിക്കുന്നു.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nഅങ്ങനെ ഞാന്\\u200d ബട്ടന്\\u200d ഞെക്കി,\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nബും- യാത്ര തുടങ്ങിയിരിക്കുന്നു, രസകരമായ യാത്ര.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nഞാനാദ്യം \\'സംഭാവ്യത\\' എന്ന ലേഖനം തുടങ്ങി\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nഞാനാദ്യം \\'സംഭാവ്യത\\' എന്ന ലേഖനം തുടങ്ങി\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nവിക്കിപീഡിയയില്\\u200d ഞാനെഴുതിയ ആദ്യ ലേഖനങ്ങളിലൊന്നു്\\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nstab wounds നെ കുറിച്ചായിരുന്നു.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nഞാന്\\u200d Fly fishing നെക്കുറിച്ചെഴുതി\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nമൊണ്ടാന ചരിത്രം, നാഷണല്\\u200d പാര്\\u200dക്ക് ചരിത്രം, യെല്ലോസ്റ്റോണ്\\u200d\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nUnderutilized crops. ചെസ്സ് കളിക്കാർ. ജൈവവൈവിദ്ധ്യം\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nപട്ടാള ചരിത്ര വിഷയങ്ങൾ. അർമേനിയൻ ചരിത്രം. റോമാചരിത്രം.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nനീതിപാലകർ. ആശയവിനിമയം. ജീവചരിത്രങ്ങൾ. ഫുട്ബോൾ. \\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nഐർലാൻഡ്. പെനിസിൽവാനിയ. ഫോട്ടോഗ്രഫിയാണ് കൂടുതലും.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nപിങ്ക് ഫ്ലോയ്ഡ്. പാചകം. ഞാൻ പാചകം ഇഷ്ടപ്പെടുന്നു.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nഅണുവായുധങ്ങളെക്കുറിച്ചും റേഡിയോആകിടിവിറ്റിയെക്കുറിച്ചും\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nwhitewater kayaking നെക്കുറിച്ചു്\\n\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nഈ വിവരങ്ങളെല്ലാം പലയിടത്തായി ചിതറിക്കിടക്കുന്നു.\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nഞങ്ങള്\\u200d അതെല്ലാം ഒരിടത്തു് കൂട്ടിവെയ്ക്കുന്നു.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nഞങ്ങള്\\u200d എല്ലാവര്\\u200dക്കും സ്വതന്ത്രവും സൌജന്യവുമായ അറിവു് വാഗ്ദാനം ചെയ്യുന്നു.\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nഅവരവരുടെ ഭാഷകളില്\\u200d ഉപയോഗിക്കാനായി.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nപണക്കാരനോ പാവപ്പെട്ടവനോ എന്ന വ്യത്യാസമില്ലാതെ, എല്ലാവര്\\u200dക്കും ഉപകാരപ്പേടുന്നു.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nലാഭത്തിനു വേണ്ടി പ്രവര്\\u200dത്തിക്കുന്ന കമ്പനികള്\\u200dക്കു് പലതരം ലക്ഷ്യങ്ങളും ആവശ്യങ്ങളുമുണ്ടാവാം.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nവിക്കിമീഡിയ ഫൌണ്ടേഷനില്\\u200d നിന്നും ഞാന്\\u200d ശമ്പളം വാങ്ങുന്നില്ല, ഒരു ചെലവും വാങ്ങുന്നില്ല\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nഞാന്\\u200d വ്യക്തമാക്കി പറയുകയാണു്,\\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nനോക്കൂ, ഞാന്\\u200d പണം ചോദിക്കുമ്പോള്\\u200d, അതെനിക്കു വേണ്ടിയല്ല --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nഞാന്\\u200d ഫൌണ്ടേഷനുവേണ്ടി ധനസഹായം അഭ്യര്\\u200dത്ഥിക്കുകയാണു്. ഞാനംഗമായ വിസ്മയകരമായ കൂട്ടായ്മയെ താങ്ങിനിര്\\u200dത്തുന്ന സംഘടനയ്ക്കുവേണ്ടി.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nഈ ലോകത്തില്\\u200d വലിയൊരു മാറ്റമുണ്ടാക്കാന്\\u200d വിക്കിപീഡിയ എനിക്കവസരമുണ്ടാക്കി എന്നു ഞാന്\\u200d കരുതുന്നു.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nഭാവിയിലേക്കുള്ള ഒരു കരുതിവെയ്പ്പ്, നിങ്ങളുടെ മക്കള്\\u200dക്കും ഭാവിക്കും വേണ്ടി.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nനന്ദി\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nമറ്റ് നിബന്ധനകളൊന്നും ചേർക്കാത്തപക്ഷം ഈ വീഡിയോ ക്രിയേറ്റീവ് കോമണ്\\u200dസ് ആട്രിബ്യൂഷൻ ഷെയർ അലൈക് ലൈസൻസ് 3.0 ൽ ലഭ്യമാവുന്നതാണ് (http://creativecommons.org/licenses/by-sa/3.0). ഈ രചന വിക്കിമീഡിയ ഫൗണ്ടേഷനിലെ വിക്ടർ ഗ്രിഗാസിന് അവകാശപ്പെട്ടതാണ്.\\nഈ വീഡിയോവിൽ പ്രകടിപ്പിക്കപ്പെട്ട അഭിപ്രായങ്ങൾ ഇതിൽ പ്രത്യക്ഷപ്പെട്ട വ്യക്തികളുടെ മാത്രമാണ്. ഇവ ഈ വ്യക്തികൾ അംഗമായ കമ്പനികളുടെയോ, സംഘടനകളുടെയോ, സ്ഥാപനങ്ങളുടെയോ നയങ്ങളെ എല്ലായ്പ്പോഴും പ്രതിനിധീകരിക്കുന്നതല്ല.\\nവിക്കിമീഡിയ ഫൗണ്ടേഷന്റെയോ മറ്റ് സംഘടനകളുടെയോ വ്യാപാരമുദ്ര ക്രിയേറ്റീവ് കോമൺസ് ലൈസൻസിന്റെ പരിധിയിൽ വരുന്നതല്ല. വിക്കിപീഡിയ സമസ്യാഗോളം അടക്കമുള്ള വിക്കിമീഡിയ വ്യാപാരമുദ്രകളും ലോഗോകളും വിക്കിമീഡിയ ഫൗണ്ടേഷന്റെ റജിസ്റ്റർ ചെയ്ത ട്രേഡ്മാർക്കുകളാണ്. കൂടുതൽ വിവരങ്ങൾക്കായി ഞങ്ങളുടെ ട്രേഡ്മാർക്ക് പോളിസി പേജ് (http://www.wikimediafoundation.org/wiki/Trademark_Policy) കാണുക, അല്ലെങ്കിൽ contact trademarks@wikimedia.org എന്ന വിലാസത്തിൽ മെയിൽ അയയ്ക്കുക.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nഈ വീഡിയോ ക്രിയേറ്റീവ് കോമണ്\\u200dസ് ലൈസന്\\u200dസില്\\u200d പ്രസിദ്ധീകരിച്ചിരിക്കുന്നു.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nവിക്കിപീഡിയപോലെ, നിങ്ങള്\\u200dക്കിതു് സ്വതന്ത്രമായി പകര്\\u200dത്താം, കലര്\\u200dത്താം, പങ്കുവെയ്ക്കാം.',\n", + " 'bytes': 15356,\n", + " 'sha1': 'ju6hhnlkggz4jqnqe80gwu52vseakl5',\n", + " 'parent_id': 83911939,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 181468670,\n", + " 'timestamp': '2015-12-09T20:44:47Z',\n", + " 'user': {'id': 2374816, 'text': 'Esetok'},\n", + " 'page': {'id': 22884829,\n", + " 'title': 'The Impact Of Wikipedia.webm.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"\\n1\\n00:00:00,000 --> 00:00:05,000\\nВикипедия\\xa0— некоммерческий проект, но она\\xa0— пятый по популярности веб-ресурс в мире. Все статьи Википедии созданы волонтёрами.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nМы хотим представить вам некоторых из них…\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nЯ из Непала\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nЯ из Ирака\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nЯ прибыла из Индии\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nЯ из Байрама, Нью-Джерси\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nЯ живу в Бирмингеме, Англия\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nЧикаго, Иллинойс — Ла-Пас, Боливия — Найроби, Кения\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nКуала Лумпур, Малайзия — Милан, Италия — Южная Африка\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nПольша — Япония — Армения\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nБразилия — Россия — Ботсвана\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nИзраиль — Узбекистан — Гонконг\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nСтамбул (Турция) -- Мексика\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nЧаттануга, штат Теннесси\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nВ начале моего участия в Википедии, в 2008 году, я создала много новых статей.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nОдна из них, помнится, была о леди по имени Марьям Нур. \\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nУ нас не было статьи о ней, и это была первая статья, которую я написала.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nПотом я забыла о ней! Может быть два или три года спустя \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nЯ вновь нашла её. Я была в шоке. \\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nЭту статью прочитали более ста тысяч человек. \\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nОни использовали её, получали информацию из этой статьи. Они читали её, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nтак что у тебя появляется чувство, что ты помогла и повлияла более, чем на сто тысяч людей.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nМне было очень страшно, когда я нажала кнопку 'Править' в первый раз. \\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nЯ думала, «Боже мой, Я же всё сломаю!\\nЭто не будет работать! Я не смогу сделать это!»\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nВикипедия — проект с открытым кодом — где каждый может предложить свою идею \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nи тогда кто-то ещё придёт и отполирует эту идею до совершенства.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nТысячи людей работают каждый день, каждый час, каждую минуту над улучшением Википедии.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nПодавляющее большинство из них - добровольцы. Это уникальный способ волонтёрства.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nОн собирает вместе и профессионалов, и любителей, увлечённых конкретной темой.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nЛюди, поначалу имеющие различные мнения, начинают сотрудничать в своей работе.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nБольшинство из того, что, как можно предположить, управляется большой Интернет-корпорацией,\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nуправляется волонтёрами, такими как я.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nТы не можешь просто сказать: «Окей, я\\xa0— прав, а ты\\xa0— нет, и вот моя версия этой статьи».\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nЕсли возникает подозрение в предвзятости, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nто кто-нибудь ставит пометку об этом, а если нет — то я сам могу её поставить.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nЭту пометку увидят сотни и тысячи людей \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nи исправят проблему.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nИ тогда я жму на кнопку\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nБум! — Путешествие началось, и это было здорово.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nСперва я начала с «Вероятности».\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nПервой статьёй, которую я создала, была «Вероятность».\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nОдна из главных для меня статей, написанных мной в Википедии\\n\\n42\\n00:02:26,001 --> 00:02:27,400\\n— статья о ножевых ранениях.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nЯ пишу о ловле рыбы на муху, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nИстория Монтаны, история Национального Парка, Йеллоустон.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nНедоиспользуемые культуры. Шахматисты. Биоразнообразие. \\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nТемы по военной истории. История Армении. История Рима.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nСудьи. Коммуникация. Биографии. Футбол.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nИрландия. Пенсильвания. В основном — о фотографии.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Выпечка, потому, что я люблю готовить.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nЯдерное оружие и радиация, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nи каякинг в горных реках.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nВся эта информация где-то есть, но она разбросана по кусочкам\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nи мы собираем её всю в одном месте.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nМы предлагаем свободное знание каждому, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nна родном языке, чтобы его можно было использовать.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nКаждый получает от этого выгоду, будь он беден или богат.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nУ коммерческих компаний есть разные мотивации и разные требования. \\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nЯ не получаю зарплаты от Фонда Викимедиа, но я также не несу расходов.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nЯ думаю, что это очень важно, что я могу с чистой совестью сказать: \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\n«Послушайте, когда я обращаюсь к вам за деньгами, я не прошу у вас денег для себя --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nЯ прошу у вас деньги для Фонда, команды, которая поддерживает это потрясающее сообщество, частью которого я являюсь.»\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nЯ думаю, что Википедия дала мне шанс реально здорово изменить мир.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nЭто как инвестиция в твоё будущее, в будущее твоих детей.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nСпасибо ВАМ\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nСодержимое этого видео доступно под лицензией Creative Commons Attribution-ShareAlike v3.0 (http://creativecommons.org/licenses/by-sa/3.0), если не сказано иного. Аттрибуция этой работы: Виктор Григас, Фонд Викимедиа.\\nВзгляды и мнения, высказанные в этом видео, являются исключительно мнениями лиц, показанных в этом видео, и не обязательно отражают политику и позицию любой компании, организации или другой структуры, членом которой является та или иная показанная персона.\\nТорговые марки и логотипы Фонда Викимедиа и любых других организаций не подпадают под условия этой лицензии Creative Commons. Торговые марки и логотипы Wikimedia, включая «Wikipedia» и логотип с глобусом-паззлом, являются зарегистрированными торговыми марками Фонда Викимедиа. Для получения дополнительной информации, пожалуйста, посетите нашу страницу Trademark Policy,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy или свяжитесь с нами по адресу trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nЭто видео опубликовано под лицензией Creative Commons.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nКак и Википедию, его можно копировать, перерабатывать и распространять.\",\n", + " 'bytes': 10393,\n", + " 'sha1': '9fha3uq2xpsbflhwf0hvjt03zg6au1m',\n", + " 'parent_id': 83794846,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83833651,\n", + " 'timestamp': '2012-11-28T13:28:41Z',\n", + " 'user': {'id': 1895191, 'text': 'Ezalvarenga'},\n", + " 'page': {'id': 22889124,\n", + " 'title': 'The Impact Of Wikipedia.webm.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nA Wikipédia é sem fins lucrativos, mas é o website número 5 no mundo. Todos artigos da Wikipédia são escritos por voluntários.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nE nós gostaríamos de apresentar para vocês alguns deles...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nEu sou do Nepal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nEu sou do Iraque\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nEu venho da Índia\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nEu sou de Byram, New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nEu moro em Birmingham, Inglaterra\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La Paz, Bolívia -- Nairóbi, Quênia\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malásia -- Milão na Itália -- África do Sul\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolônia -- Japão -- Armênia\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrasil -- Rússia -- Botsuana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael -- Usbequistão -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstambul -- México\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nQuando comecei a editar a Wikipédia em 2008, iniciei vários artigos.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nUm deles, acho que era sobre uma senhora chamada Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nNão tínhamos um artigo sobre ela, e foi o meu primeiro artigo.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nEntão eu esqueci dele! Uns dois ou três anos depois, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nEu passei pelo artigo. Fiquei chocada. \\xa0\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMais de 100.000 pessoas haviam lido o artigo. \\xa0\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nUsaram ele, pegaram informações desse artigo. Eles passaram por esse artigo, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nentão você se sente tendo influenciado mais de 100.000 pessoas.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nEu estava com muito medo quando apertei em \\'editar\\' pela primeira vez.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nPensei, \"Ah meu deus, vou arruinar tudo!\\nIsso não pode funcionar! Eu não consigo!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nA Wikipédia é aberta -- todo mundo pode dar a sua ideia\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\ne outra pessoa vem e melhora aquela ideia para torná-la fantástica.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nHá milhares de pessoas trabalhando todo dia, toda hora, todos os minutos na Wikipédia para melhorá-la.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nMuito disso é voluntariado. Essa é uma maneira única de voluntariar.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nReúne profissionais e amadores que tem afinco por um determinado assunto.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nPessoas que tinham opiniões diferentes no começo passam a colaborar.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nMuito do que se imagina que uma grande corporação da Internet faria\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\né feito por voluntários como eu.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nVocê não pode dizer, \"Ok, eu estou certo, você errado, essa é a minha versão do artigo!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nSe há um problema de parcialidade,\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nentão alguém provavelmente já marcou e senão, agora eu também posso marcar.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nHá centenas e milhares de pessoas vendo isso\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\ne corrigindo.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nE aí eu aperto o botão e\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\npronto! - A jornada começou e foi ótima.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nPrimeiro comecei com \\'Probabilidade\\'.\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nO primeiro artigo que eu comecei foi \\'Probabilidade\\'.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nUm dos principais artigos que eu escrevi na Wikipédia foi\\n\\n42\\n00:02:26,001 --> 00:02:27,400\\no artigo sobre facadas.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nEu escrevo sobre \\'pesca com mosca\\',\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nsobre a história de Montada, a história de parques nacionais, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nCulturas subutilizadas. Jogadores de xadrez. Biodiversidade.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nTópicos de história militar. História armênia. História romana.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nJuízes. Comunicação. Biografias. Futebol.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrlanda. Pensilvaniana. Principalmente fotografia.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Culinária, porque amo cozinhar.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nArmas nucleares e radioatividade, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\ne caiaque de corredeiras.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nHá toda essa informação lá fora que está difusa\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\ne estamos colocando ela em um lugar só.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nEstamos oferecendo conhecimento de graça para todos,\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nem sua própria língua para que possam usar.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nTodos são beneficiados por isso, quer sejam ricos ou pobres.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nEmpresas que visam lucro possuem motivações diferentes e diferentes requisitos.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nA Wikimedia Foundation não me paga um salário, nem diárias.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nPenso que é muito importante que eu posso dizer claramente, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nquando estou lhe pedindo dinheiro, não estou pedindo dinheiro para mim --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nEstou pedindo dinheiro para a Wikimedia Fundation que é a equipe que apoia essa incrível comunidade da qual eu faço parte.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nEu acho que a Wikipédia me deu essa chance de realmente fazer uma grande diferença no mundo.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nÉ como um investimento no seu futuro, no futuro de seus filhos.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nObrigado\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nO conteúdo desse vídeo está disponível sob a licença Atribuição-Compartilhamento pela mesma Licença 3.0 Unported (CC-BY-SA) salve se apontado de outra forma. Esse trabalho é atribuível a: Victor Grigas, Wikimedia Foundation.\\nAs visões e opiniões expressas nesse vídeo são somente dos indivíduos aparecendo no vídeo e não necessariamente refletem as políticas ou posições de qualquer companhia, organização ou instituição que o indivíduo possa pertencer.\\nAs marcas e logotipos da Wikimedia Foundation e de qualquer outra organização não estão inclusas nos termos dessa licença Creativa Commons. Marcas e logotipos da Wikimedia, incluindo \"Wikipedia\" e o logotipo de globo em quebra-cabeça, são marcas registradas da Wikimedia Foundation. Para mais informações por favor veja a nossa política de uso de marcas, http://www.wikimediafoundation.org/wiki/Trademark_Policy ou contate trademarks@wikimedia.org\\n\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nEste vídeo está publicado sob uma licença Creative Commons.\\n\\n67\\n00:04:05,001 --> 00:04:09,000\\nComo a Wikipédia, ele é livre para copiar, remixar e compartilhar.',\n", + " 'bytes': 6945,\n", + " 'sha1': 'eiv1yxparjmzjyh60x2iw28gjmujleh',\n", + " 'parent_id': 83793059,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83824455,\n", + " 'timestamp': '2012-11-28T10:29:25Z',\n", + " 'user': {'text': '193.196.166.161'},\n", + " 'page': {'id': 22895299,\n", + " 'title': 'The Impact Of Wikipedia.webm.he.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nויקיפדיה הוא אתר ללא רווח, אולם הוא האתר המדורג במקום החמישי בעולם. כל הערכים בו נכתבים על ידי מתנדבים.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nאנו רוצים להציג בפניך כמה מהם...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nאני מנפאל\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nאני מעיראק\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nאני מביראם, ניו ג\\'רזי\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nאני גר בברימינגטון, אנגליה\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nאני מתגורר בבירנגהאם, אנגליה\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nשיקגו, אילינו -- לה פאז, בוליביה -- ניירובי, קניה\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nקואלה לאמפור, מלזיה -- מילאן, איטליה, -- דרום אפריקה\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nפולין -- יפן -- אמריקה\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nברזיל -- רוסיה -- בוסטואנה\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nישראל - אוזבקיסטן -- הונג קונג\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nאיסטנבול -- מקסיקו\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nטנסי\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nעם הצטרפותי לויקיפדיה ב-2008, התחלתי עם המון ערכים.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nאחד מהם, אם אינני טועה, היה על אישה בשם מרים נור.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nלא היה לנו ערך עליה, אז -- היא הפכה להיות הערך הראשון שלי.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nושכחתי מזה! שנתיים או שלושה לאחר מכן, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nנכנסתי לערך הזה במקרה. הייתי בשוק.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nיותר מ-100,000 אנשים קראו את הערך!\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nהם קראו אותו, והם קיבלו את האינפורמציה שהם היו זקוקים לה מהערך. הם קראו את הערך הזה, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nהתחושה היא שהשפעתי במידה מסויימת על למעלה מ-100,000 אנשים.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nכשלחצתי על כפתור \"עריכה\" בפעם הראשונה, חששתי נורא.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nחשבתי, \"אלוהים ישמור, אני הולך להרוס הכל! זה לא יעבוד! אני לא יכול לעשות את זה!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nויקיפדיה היא מה שנקרא, \"מקור פתוח\" -- מקום שבו כל אחד יכול לזרוק כל רעיון שיש לו או לה \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nלאחר מכן יבוא אדם אחר וילטש את הרעיון המקורי מתוך מטרה לשפר אותו ולהפוך אותו לטוב יותר.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nאלפי אנשים עובדים בויקיפדיה כל יום, כל שעה, כל דקה, כדי לשפר אותה ולייעל אותה.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nרבים מהם הם מתנדבים. זוהי דרך ייחודית להתנדב.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nויקיפדיה מאחדת הן אנשי מקצוע והן חובבנים התורמים לה בתחומי העניין השונים שלהם.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nאותם אנשים שהיו להם דעות שונות בתחילה, מתחילים לשתף פעולה.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nהרבה ממה שהיית משער שתאגיד אינטרנטי יכול לטפל בו \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nמטופל על ידי מתנדבים, כמוני.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nאתה יכול לומר, \"אוקיי, אני צודק, אתה טועה, זוהי גירסת הערך שלי!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nאם ישנו נושא שיש בו הטיה \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nייתכן שייכנס לעובי הקורה עורך כלשהו. אם לא, אני יכול לעשות זאת.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nישנם מאות ואלפי אנשים שרואים זאת \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nויכולים לתקן במקרה ונפלה טעות.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nואז אני לוחץ על הכפתור\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nובום - המסע מתחיל, והוא היה נפלא.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nבתחילה התחלתי עם \"הסתברות\". \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nהערך הראשון שהתחלתי איתו היה \"הסתברות\".\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nאחד הערכים הראשונה שכתבתי בויקיפדיה היה \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nערך על פצעי דקירה.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nכתבתי על דיג זבובים, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nהיסטוריית מונטנה, היסטוריית הפארק הלאומי, ילוסטון.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nגידולים לא מנוצלים. שחקני שחמט. מגוון ביולוגי.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nנושאים בהיסטוריה צבאית. היסטוריה של אמריקה. היסטוריה של רומא.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nשופטים. תקשורת. ביוגרפיות. כדורגל.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nאירלנד. פנסילבניה. בעיקר צילום.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nפינק פלויד. אפייה, כי אני אוהב לאפות.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nנשק גרעיני ורדיואקטיביות, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nורפטינג.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nהמידע הזה קיים, אבל הוא מפוזר\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nואנו שמים את הכל במקום אחד.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nאנחנו מציעים ידע בחינם עבור כל מי שרוצה, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nבכל שפה\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nכל אחד יכול להשתמש במידע זה, בין אם הוא עני ובין אם הוא עשיר.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nחברות הפועלות למען רווחים הן בעלות אינטרסים כאלה או אחרים.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nאיני לוקח מקרן ויקימדיה משכורת ואפילו לא הוצאות.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nאני חושב שזה חשוב מאד שאני יכול לומר זאת בבהירות, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nראה, כשאני מבקש כסף, איני מבקש כסף עבור עצמי --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nאני מבקש ממך כסף עבור הקרן אשר תומכת בקהילה המדהימה שאני חלק ממנה.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nאני חושב שויקיפדיה נתנה לי את ההזדמנות לעשות שינוי משמעותי בעולם.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nזה כמו השקעה בעתיד שלך, בעתיד של ילדיך.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nתודה רבה\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nThe content contained in this video is available under the Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) unless otherwise stated. This work is attributable to: Victor Grigas, Wikimedia Foundation.\\nThe views and opinions expressed in this video are solely those of the individuals appearing in the video and do not necessarily reflect the policies or positions of any company, organization, or institution the individual may be a member of.\\nThe trademarks and logos of the Wikimedia Foundation and any other organization are not included under the terms of this Creative Commons license. Wikimedia trademarks and logos, including \"Wikipedia\" and the puzzle globe logo, are registered trademarks of the Wikimedia Foundation. For more information, please see our Trademark Policy page,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nThis video is published under a Creative Commons license.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nכמו ויקיפדיה, סרטון זה מופץ בחינם, ואתם יכולים להעתיק, לשנות ולחלוק עם אחרים.',\n", + " 'bytes': 8348,\n", + " 'sha1': 'jv92zutstbqq68eaghnko89rniop5op',\n", + " 'parent_id': 83824356,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 526048563,\n", + " 'timestamp': '2021-01-15T14:45:03Z',\n", + " 'user': {'id': 235077, 'text': '春卷柯南'},\n", + " 'page': {'id': 22899880,\n", + " 'title': 'The Impact Of Wikipedia.webm.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'A very obvious error, see Chinese Wikipedia article on that city',\n", + " 'text': '1 \\n00:00:00,000 --> 00:00:05,000 \\n维基百科是非营利的网站,但它是世界第五大网站,维基百科的所有词条皆源自于志愿者的贡献\\n\\n2 \\n00:00:06,000 --> 00:00:11,500 \\n我们很希望把他们其中几位介绍给你\\n\\n3 \\n00:00:12,000 --> 00:00:13,000 \\n我来自尼泊尔\\n\\n4 \\n00:00:13,100 --> 00:00:14,000 \\n我来自伊拉克\\n\\n5 \\n00:00:14,100 --> 00:00:16,000 我从印度来\\n\\n6 \\n00:00:16,001 --> 00:00:17,000 \\n我来自新泽西州的拜拉姆\\n\\n7 \\n00:00:17,100 --> 00:00:18,000 \\n我住在英格兰的伯明翰\\n\\n8 \\n00:00:18,100 --> 00:00:22,050 \\n伊利诺伊州 芝加哥--玻利维亚 拉巴斯--肯尼亚 内罗毕\\n\\n9 \\n00:00:22,051 --> 00:00:24,000 \\n马来西亚 吉隆坡--意大利米兰--南非\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\n波兰--日本--亚美尼亚\\n\\n11\\n00:00:26,200 --> 00:00:28,000 \\n巴西--俄罗斯--博茨瓦纳\\n\\n12 \\n00:00:28,001 --> 00:00:30,500 \\n以色列--乌兹别克斯坦--香港\\n\\n13 \\n00:00:30,501 --> 00:00:31,000 \\n伊斯坦布尔--墨西哥\\n\\n14 \\n00:00:31,001 --> 00:00:32,000 \\n田纳西州查特怒加市\\n\\n15 \\n00:00:33,000 --> 00:00:38,000 \\n二零零八年当我刚加入维基百科时,我撰写了很多条目\\n\\n16 \\n00:00:38,100 --> 00:00:44,000 \\n我想它们其中之一是有关一位女士,名字似乎是玛丽亚姆 • 努尔\\n\\n17 \\n00:00:44,100 --> 00:00:48,000 \\n我们尚没有关于这个的条目,所以这便成了我的第一篇贡献\\n\\n18 \\n00:00:48,100 --> 00:00:52,500 \\n所以我把它给忘了!或许在两三年之后吧\\n\\n19 \\n00:00:52,600 --> 00:00:57,000 \\n我再经过我所撰写条目,我被的它浏览量震惊了\\n\\n20 \\n00:00:57,100 --> 00:01:02,000 \\n超过十万人阅览了这篇文章。\\n\\n21 \\n00:01:02,100 --> 00:01:08,000 \\n他们参考了条目,然后从词条中得到了他们所需的信息,他们曾阅览过这词条\\n\\n22 \\n00:01:08,100 --> 00:01:15,000 \\n所以你感觉你影响了成千上万的人\\n\\n23 \\n00:01:15,500 --> 00:01:19,000 \\n在我第一次按下“编辑”按钮的时候,我感到非常害怕。\\n\\n24 \\n00:01:19,100 --> 00:01:24,000 \\n我想:上帝啊,我会把一切都搞砸的,那样是行不通的,我不能这么做\\n\\n25\\n00:01:24,100 --> 00:01:29,000 \\n维基百科是“开源”的——每个人都可以抛出自己的想法\\n\\n26 \\n00:01:29,100 --> 00:01:34,000 \\n之后会别的人进来充实这个想法,使它变得更加完美。\\n\\n27 \\n00:01:34,100 --> 00:01:40,500 \\n这里有成千上万的人每天、每小时、每分钟在维基百科上工作,使它得到完善。\\n\\n28 \\n00:01:40,501 --> 00:01:44,000 \\n很大程度上这是志愿者精神,这是一个很特别的志愿方法\\n\\n29 \\n00:01:44,100 --> 00:01:49,000 \\n它将对于一个特定话题有兴趣的专业人士及业余人士凝聚到一起\\n\\n30 \\n00:01:49,100 --> 00:01:54,000 \\n在最初有不同意见的人们开始合作了起来\\n\\n31 \\n00:01:54,001 --> 00:01:58,500 \\n想象中这是一个庞大的网络公司才能做到的事情\\n\\n32 \\n00:01:58,501 --> 00:02:01,000\\n但事实上是一个个像我一样的志愿者实现了它\\n\\n33 \\n00:02:01,100 --> 00:02:05,000 \\n你只是不能说,“好吧,我是对的,你是错的,这是阐述我观点的文章!”\\n\\n34 \\n00:02:05,100 --> 00:02:07,000 \\n有些包含偏见的文字\\n\\n35 \\n00:02:07,100 --> 00:02:11,000 \\n有些人可能早把它标记起来,如果没有,那我就可以去标记它\\n\\n36 \\n00:02:11,000 --> 00:02:13,000 \\n有成千上万的人注视着它\\n\\n37 \\n00:02:13,001 --> 00:02:15,000 \\n并改正它\\n\\n38 \\n00:02:15,001 --> 00:02:16,400 然后,我按下了按钮,并且\\n\\n39 \\n00:02:16,401 --> 00:02:19,600 \\n嘭!旅程开始了,感觉太棒了\\n\\n51 \\n00:02:19,601 --> 00:02:21,000 \\n首先,我从编辑“概率”这个词条开始\\n\\n40 \\n00:02:21,001 --> 00:02:24,000 \\n我最先编辑的词条是“概率”\\n\\n41 \\n00:02:24,001 --> 00:02:26,000 \\n“刀伤”是我在维基上\\n\\n42 \\n00:02:26,001 --> 00:02:27,400 \\n写的主要条目之一\\n\\n43 \\n00:02:27,401 --> 00:02:29,000 \\n我撰写了些关于飞蝇钓法的文章\\n\\n44 \\n00:02:29,001 --> 00:02:32,000 \\n以及蒙大拿历史,国家公园历史,黄石公园\\n\\n45 \\n00:02:32,001 --> 00:02:36,100 \\n未充分利用的作物,棋手,生物多样性\\n\\n46 \\n00:02:36,101 --> 00:02:39,100 \\n军事历史主题,亚美尼亚历史,罗马历史\\n\\n47 \\n00:02:39,101 --> 00:02:42,100\\n法官,交流,传记,足球\\n\\n48 \\n00:02:42,101 --> 00:02:45,901 \\n爱尔兰,宾西法尼亚州,大部分是有关摄影的条目\\n\\n49 \\n00:02:45,901 --> 00:02:47,600 \\n平克·弗洛伊德。还有烘焙,因为我爱烘焙\\n\\n50 \\n00:02:47,601 --> 00:02:50,200 \\n核武器及放射性\\n\\n51 \\n00:02:50,201 --> 00:02:52,000 \\n还有激流皮划艇。\\n\\n52 \\n00:02:52,201 --> 00:02:56,000 \\n世界上到处散落着这些信息\\n\\n53 \\n00:02:56,001 --> 00:02:59,000 \\n而我们把他们汇聚到同一个空间里来\\n\\n54 \\n00:02:59,100 --> 00:03:03,000 \\n我们以每个人的母语提供自由免费的知识\\n\\n55 \\n00:03:03,101 --> 00:03:07,000 \\n这样他们就可以应用这些知识\\n\\n56 \\n00:03:07,501 --> 00:03:11,000 \\n无论贫穷与富裕,每个人都从中获益\\n\\n57 \\n00:03:11,001 --> 00:03:16,000 \\n营利性公司具有与我们截然不同的动机和需求\\n\\n58 \\n00:03:16,500 --> 00:03:22,000 \\n维基百科创办人:我既不从维基基金会获得收入,也不用为其支出\\n\\n59 \\n00:03:22,001 --> 00:03:25,500 \\n我认为我把话说得十分清楚是非常重要的\\n\\n60 \\n00:03:25,501 --> 00:03:30,500 \\n请注意,当我向你寻求资助时,不是我在为我自己要钱\\n\\n61 \\n00:03:30,501 --> 00:03:36,000 \\n我是作为这个社群的一分子,为支撑起这个伟大社群的基金会寻求资金帮助\\n\\n62 \\n00:03:36,501 --> 00:03:41,400 \\n我想,维基百科给予了我一个真正的、大大改变世界的机会。\\n\\n63 \\n00:03:41,401 --> 00:03:48,000 \\n而这就如同一笔为了你未来的投资,一笔为了你子孙未来的投资\\n\\n64 \\n00:03:51,000 --> 00:03:52,999 \\n维基百科\\n\\n65 \\n00:03:53,401 --> 00:03:57,000 \\n由衷地感谢以上的受访者\\n\\n66 \\n00:04:00,000 --> 00:04:03,000 \\n此影片内容除特别注明外,均以知识共享 CC-BY-SA 3.0协议发表,详情请参考:http://creativecommons.org/licenses/by-sa/3.0 。影片由Victor Grigas为维基媒体基金会制作。影片中人士的言论仅代表其个人观点,并不构成以各种身份代表任何机构所发表的任何观点。请注意,任何Wikipedia®和有关维基百科的标识均为维基媒体基金会的注册商标;維基™是维基媒体基金会的商标。有关以上商标的更多资讯,请电邮至或参考:http://www.wikimediafoundation.org/wiki/Trademark_Policy\\n\\n67 \\n00:04:03,000 --> 00:04:05,000 \\n这段视频遵循\"Creative Commons license\" 知识共享协议发布\\n\\n79 \\n00:04:05,001 --> 00:04:09,000 \\n就像维基百科一样,这是可以自由拷贝,修改,分享的。',\n", + " 'bytes': 6801,\n", + " 'sha1': 'cixcslqvzlmdrt79rnrl4pm5g93dplh',\n", + " 'parent_id': 84911818,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 230540243,\n", + " 'timestamp': '2017-01-22T03:03:49Z',\n", + " 'user': {'id': 20645, 'text': 'The RedBurn'},\n", + " 'page': {'id': 22903721,\n", + " 'title': 'The Impact Of Wikipedia.webm.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'typo',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia est à but non-lucratif, mais c\\'est le 5e site web au monde. Tous les articles de Wikipédia sont écrits par des bénévoles.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nNous aimerions vous en présenter quelques-uns\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nJe viens du Népal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nJe viens d\\'Irak\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nJe viens de l\\'Inde\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nJe suis de Byram, dans le New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nJe vis à Birmingham, en Angleterre\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La Paz, Bolivie -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malaisie -- Milan en Italie -- Afrique du Sud\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPologne -- Japon -- Arménie\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrésil -- Russie -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsraël -- Ouzbékistan -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul -- Mexique\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nLorsque j\\'ai commencé Wikipédia, en 2008, j\\'ai créé plusieurs articles.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nUn d\\'entre eux, je crois, était au sujet d\\'une femme appelée Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nIl n\\'y avait pas d\\'article sur le sujet, -- donc ce fut mon premier article\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nPuis je l\\'ai oublié ! Deux ou trois ans plus tard,\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nje suis revenue sur cet article. J\\'ai été impressionnée.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nPlus de 100 000 personnes avaient lu cet article.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nIls l\\'ont utilisé, donc ils ont obtenu des informations à partir de cet article. Ils sont passés sur cet article,\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\ndonc vous savez que vous avez touché et influencé plus de 100 000 personnes.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nJ\\'étais terrifiée quand j\\'ai appuyé sur le bouton \"modifier\" pour la première fois\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nJe me suis dit « Oh mon dieu, je vais tout casser !\\nÇa ne peut pas marcher ! Je ne peux pas le faire ! »\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipédia est \"open source\" -- chacun peut y mettre son idée\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\npuis quelqu\\'un d\\'autre vient et affine cette idée pour la polir.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nIl y a des milliers de gens qui travaillent chaque jour, chaque heure, chaque minute sur Wikipédia pour l\\'améliorer.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nUne grande partie est bénévole. C\\'est une façon unique d\\'être bénévole.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nCela rapproche les professionnels des amateurs qui aiment un sujet particulier.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nLes personnes qui ont des opinions différentes au départ commencent à collaborer.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nUne grand part de ce qu\\'on pourrait croire géré par une multinationale du web\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nest géré par des volontaires comme moi.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nVous ne pouvez pas dire, \"D\\'accord, j\\'ai raison, tu as tort, c\\'est ma version de l\\'article !\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nS\\'il y a un problème de biais,\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nalors quelqu\\'un l\\'a probablement indiqué et sinon, je peux le faire aussi maintenant.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nVous avez des centaines et des milliers de gens qui voient ça\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\net qui le corrigent.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nEt alors j\\'appuie sur le bouton et\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoum - l\\'aventure a commencé, et c\\'était super.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nJ\\'ai d\\'abord commencé avec \"Probabilité\".\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nL\\'article que j\\'ai créé était \"Probabilité\".\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nL\\'un des principaux articles que j\\'ai écrit sur Wikipédia était\\n\\n42\\n00:02:26,001 --> 00:02:27,400\\ncelui sur les blessures par armes blanches.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nJ\\'écris sur la pêche à la mouche,\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nL\\'histoire du Montana, l\\'histoire des parcs nationaux, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nLes cultures sous-exploitées. Les joueurs d\\'échec. La biodiversité.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nL\\'histoire militaire. De l\\'histoire arménienne. L\\'histoire romaine.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nLes juges. La communication. Les biographies. Le football.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nL\\'Irlande. La Pennsylvanie. Surtout des photographies.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nLes Pink Floyd. La cuisine, parce que j\\'adore cuisiner.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nLes armes nucléaires et la radioactivité,\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\net le kayak d\\'eau douce.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nIl y a toute cette information disponible ici et là, éparpillée\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\net nous la rassemblons en un seul endroit.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nNous offrons la connaissance libre à tous,\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\ndans leur propre langue, pour qu\\'ils puissent l\\'utiliser.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nTout le monde en bénéficie, riches et pauvres.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nLes compagnies à but lucratif ont des motivations et des exigences différentes.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nDe la Fondation Wikimédia, je ne reçois pas de salaire ni même de frais de mission.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nJe pense que c\\'est très important de pouvoir dire très clairement,\\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nÉcoutez, quand je vous demande de l\\'argent, je ne le fais pas pour moi-même\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nJe vous demande de l\\'argent pour cette Fondation qui est l\\'équipe soutenant cette communauté extraordinaire dont je fais partie.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nJe pense que Wikipédia m\\'a donné cette chance de vraiment faire une grande différence dans le monde.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nC\\'est un investissement pour votre avenir, pour l\\'avenir de vos enfants.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nMerci\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nThe content contained in this video is available under the Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) unless otherwise stated. This work is attributable to: Victor Grigas, Wikimedia Foundation.\\nThe views and opinions expressed in this video are solely those of the individuals appearing in the video and do not necessarily reflect the policies or positions of any company, organization, or institution the individual may be a member of.\\nThe trademarks and logos of the Wikimedia Foundation and any other organization are not included under the terms of this Creative Commons license. Wikimedia trademarks and logos, including \"Wikipedia\" and the puzzle globe logo, are registered trademarks of the Wikimedia Foundation. For more information, please see our Trademark Policy page,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nCette vidéo est publiée sous une licence Creative Commons.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nComme pour Wikipédia, vous êtes libres de la copier, de la remixer et de la partager.',\n", + " 'bytes': 7314,\n", + " 'sha1': '0rvyb6us9f9c3nlc0fkqy60e6mk2mda',\n", + " 'parent_id': 111578869,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83849518,\n", + " 'timestamp': '2012-11-28T17:56:48Z',\n", + " 'user': {'id': 305204, 'text': 'Seddon'},\n", + " 'page': {'id': 22907704,\n", + " 'title': 'The Impact Of Wikipedia.webm.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 Wikipedia is een website zonder winstoogmerk en het is op 4 na meest geraadpleegde website. Alle artikelen op Wikipedia worden g...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia is een website zonder winstoogmerk en het is op 4 na meest geraadpleegde website. Alle artikelen op Wikipedia worden geschreven door vrijwilligers.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nWij willen u graag laten kennismaken met een paar van hen...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nIk kom uit Nepal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nIk kom uit Irak\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nIk kom uit India\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nIk ben van Byram, New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nIk woon in Birmingham, Engeland\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La Paz, Bolivia -- Nairobi, Kenia\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Maleisië -- Milaan in Italië -- Zuid-Afrika\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolen -- Japan -- Armenië\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrazilië -- Rusland -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsraël -- Oezbekistan -- Hongkong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanboel -- Mexico\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nIn mijn begintijd op Wikipedia in 2008 startte ik vele artikelen.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nEen daarvan was denk ik over een vrouw genaamd Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nWe hadden er nog geen artikel over, aldus -- en dit was mijn eerste artikel.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nToen vergat ik het! Misschien twee of drie jaar later, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nkwam ik het artikel weer tegen. Ik was geschokt.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMeer dan 100.000 mensen lazen dit artikel.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nZe gebruikten het, dus ze kregen hun informatie van dit artikel. Ze slaagden dankzij dit artikel. \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nzo heb je het gevoel alsof je meer dan 100.000 mensen hebt geraakt en beïnvloed.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nIk was gewoon zo bang toen ik voor de eerste keer de \\'bewerk\\'-knop aanklikte.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nIk dacht: \"Oh mijn god, ik ga de boel verpesten!\\nDat kan niet werken! Ik kan het niet!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia is een \\'open source\\' - waar iedereen zijn of haar idee in kan gooien \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nen dan komt er iemand anders en polijst op dat idee om het prachtig te maken.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nEr zijn duizenden mensen iedere dag, ieder uur, iedere minuut op Wikipedia aan het werk om het te verbeteren.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nHet meeste ervan is vrijwilligerswerk. Dit is een unieke manier om vrijwillig bij te dragen.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nHet brengt zowel professionals als amateurs samen die een liefde hebben voor een bepaald onderwerp.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nDe mensen die aanvankelijk andere meningen hadden beginnen samen te werken.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nVeel van wat je zou verwachten dat een grote internetbedrijf zou doen \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nwordt gedaan door vrijwilligers zoals ik.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nJe kunt niet zeggen, “oké, ik heb gelijk, jij hebt geen gelijk, dit is mijn versie van het artikel!”\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nAls er een probleem is van partijdigheid, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\ndan is er waarschijnlijk iemand die het al gemarkeerd heeft en indien dat niet het geval is, kan ik dat zelf ook.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nEr zijn honderden, duizenden mensen die dat zien \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nen het corrigeren.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nEn toen klikte ik de knop aan en\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom - De reis begon en het was geweldig.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nEerst begon ik met \\'Waarschijnlijkheid\\'. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nhet eerste artikel dat ik startte is \\'Waarschijnlijkheid\\'.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nEen van mijn belangrijkste artikelen die ik op Wikipedia schreef was \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nhet artikel over steekwonden.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nIk schrijf over vliegvissen, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nde geschiedenis van Montana, geschiedenis van nationale parken, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nWeinig gebruikte gewassen. Schakers, Biodiversiteit.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nMilitaire geschiedenis. Armeense geschiedenis, Romeinse geschiedenis.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nRechters. Communicatie. Biografieën, Voetbal.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIerland. Pennsylvania. Voornamelijk fotografie.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Bakken, omdat ik van bakken hou.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nKernwapens en radioactiviteit, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nen wildwatervaren.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nEr is al deze informatie die daarbuiten verspreid is\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nen wij voegen het samen op één plek.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nWe bieden vrije kennis voor iedereen, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nin hun eigen taal zodat ze het kunnen gebruiken.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nIedereen heeft er voordeel van of iemand nu rijk is of arm.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nOp winst gerichte bedrijven hebben andere motivaties en andere vereisten.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nVan de Wikimedia Foundation ontvang ik geen salaris en ik ontvang ook geen vergoedingen.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nIk denk dat het erg belangrijk is dat ik erg duidelijk kan zeggen, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nKijk, wanneer ik jou om geld vraag, vraag ik je geen geld voor mezelf --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nik vraag je geld voor de Foundation, die als team deze verbazingwekkende gemeenschap waar ik deel van uitmaak ondersteunt.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nIk denk dat Wikipedia me de kans gaf om daadwerkelijk een groot verschil te maken in de wereld.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nHet is net als met een investering voor jou toekomst, voor de toekomst van je kinderen.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nDank je\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nDe inhoud van deze video is beschikbaar onder de Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) tenzij anders aangegeven. Dit werk is toe te schrijven aan: Victor Grigas, Wikimedia Foundation.\\nDe opvattingen en meningen die in deze video zijn geuit zijn uitsluitend van de personen in de video en komen niet noodzakelijk overeen met het beleid of de standpunten van een onderneming, organisatie of instelling waarvan het individu lid van kan zijn.\\nDe handelsmerken en logo\\'s van de Wikimedia Foundation en andere organisaties vallen niet onder de voorwaarden van deze Creative Commons-licentie. De handelsmerken en logo\\'s van Wikimedia, met inbegrip van \"Wikipedia\" en het puzzelwereldbol-logo zijn geregistreerde handelsmerken van de Wikimedia Foundation. Voor meer informatie, zie onze pagina over het handelsmerkenbeleid \\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy of neem contact op via trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nDe video is gepubliceerd onder een Creative Commons-licentie.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nNet als Wikipedia, is deze vrij te kopiëren, aan te passen & te delen.',\n", + " 'bytes': 7243,\n", + " 'sha1': '8i1whft5driy45nikvhl02od5mq66n9',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 298344873,\n", + " 'timestamp': '2018-04-24T13:34:09Z',\n", + " 'user': {'id': 4510405, 'text': 'Samiclaus'},\n", + " 'page': {'id': 22907715,\n", + " 'title': 'The Impact Of Wikipedia.webm.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'typos',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia ist gemeinnützig, aber sie ist die Nr. 5 Internetseite in der Welt. Alle Artikel in der Wikipedia wurden von Freiwilligen geschrieben.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nWir wollen dir einige von Ihnen vorstellen...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nIch komme aus Nepal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nIch komme aus dem Irak\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nIch komme aus Indien\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nIch komm aus Byram in New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nIch lebe in Birmingham, England\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La Paz, Bolivien -- Nairobi, Kenia\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malaysia -- Mailand in Italien -- Südafrika\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolen -- Japan -- Armenien\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrasilien -- Russland -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael -- Uzbekistan -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul -- Mexico\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nZu Beginn, als ich 2008 der Wikipedia beigetreten bin, habe ich viele Artikel angefangen.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nEiner von ihnen war glaube ich über eine Dame Namens Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nWir hatten darüber noch keinen Artikel, also -- das war mein erster Artikel.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nIch hatte ihn schon vergessen! Vielleicht zwei oder drei Jahre später, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nStolperte ich über den Artikel. Ich war geschockt.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMehr als 100.000 Leute haben diesen Artikel gelesen.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nSie haben ihn verwendet, Information aus dem Artikel bezogen. Sie erreichten diesen Artikel, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nalso hat man das Gefühl, daß man 100.000 Leute beeinflusst hat.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nIch war so ängstlich, als ich zum ersten Mal den \"Bearbeiten\" Link verwendet habe.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nIch dachte: \"Oh mein Gott, ich werde alles ruinieren! Das kann nicht funktionieren! Ich kann das nicht tun!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia ist wortwörtlich eine \"offene Quelle\" -- Hier kann jeder seine oder ihre Idee einbringen \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nund dann kommt jemand anderer, verfolgt die Idee weiter und macht sie damit großartig.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nTausende Menschen arbeiten jeden Tag, jede Stunde, jede Minute an Wikipedia um es zu verbessern.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nDer Großteil davon ist ehrenamtlich. Es ist eine einzigartige Art ehrenamtlich tätig zu sein.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nEs bringt Profis und Amateure zusammen, die ein gemeinsames Interesse an einem bestimmten Thema haben.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nMenschen mit unterschiedlichen Meinungen beginnen zusammenzuarbeiten.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nViele Tätigkeiten von denen man annehmen würde, daß sie von einem großen Internet-Konzern durchgeführt werden \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nwerden in Wirklichkeit durch Freiwillige wie mich erledigt.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nMan kann nicht einfach sagen \"Ok, ich habe recht und du hast unrecht. Das ist meine Version des Artikels!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nWenn es ein Problem mit Voreingenommenheit gibt, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nwird jemand ihn entsprechend markieren und wenn nicht, dann ich kann auch ich diese Markierung setzen.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nDas wird von Hunderten und Tausenden von Menschen gesehen \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nund korrigiert.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nUnd dann habe ich den Knopft gedrückt und\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom - Die Reise hatte begonnen und sie war großartig.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nIch habe mit \"Wahrscheinlichkeit\" begonnen. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nDer erste Artikel den ich schrieb war \"Wahrscheinlichkeit\".\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nEiner meiner Hauptartikel, die ich auf Wikipedia verfasst habe war \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nder Artikel über Stichwunden.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nIch schreibe über Fliegenfischen, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontana\\'s Geschichte, die Geschichte von Nationalparks und Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nUngenutzte Anbaupflanzen, Schachspieler und Artenvielfalt.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nHeeresgeschichtliche Themen, Armenische Geschichte und Römische Geschichte.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nRichter, Kommunikation, Biographien und American Football.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrland, Pennsylvania und zumeist Photographie.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd und Backen, denn ich liebe es zu backen.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nNuklearwaffen und Radioaktivität, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nund Wildwasser-Kajakfahren.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nAll diese Informationen gibt es da draußen, aber sie sind weit verstreut\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nund wir fügen sie an einem Ort zusammen.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nWir bieten freies Wissen für jeden, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nin deren eigenen Sprache so daß sie sie verwenden können.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nJeder profitiert davon, ob sie reich sind oder arm.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nProfitorientierte Unternehmen haben andere Motivationen und andere Voraussetzungen.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nIch bekomme von der Wikimedia Foundation kein Gehalt und auch keine Spesen.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nIch denke es ist sehr wichtig, daß ich Folgendes klar sage: \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nWenn ich dich um Geld bitte, tue ich das nicht für mich selbst --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nIch bitte dich um Geld für die Foundation, also das Team das diese tolle Gemeinschaft trägt, deren Teil ich bin.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nIch denke Wikipedia hat mir die Chance gegeben einen wirklich bedeutenden Beitrag in der Welt zu leisten.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nEs ist eine Art Investition in deine Zukunft, in die Zukunft deiner Kinder.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nDankeschön\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nDer Inhalt dieses Videos ist unter der Lizenz Creative Commons Attribution-ShareAlike v3.0 verfügbar (http://creativecommons.org/licenses/by-sa/3.0) sofern nicht explizit etwas anderes angeführt ist. Es ist Victor Grigas von der Wikimedia Foundation zuzurechnen.\\nAlle in diesem Video genannten Ansichten oder Meinungen sind ausschließlich die der im Video gezeigten Personen und geben nicht notwendigerweise die Ansichten eines Unternehmens oder einer Institution wieder, der die Person angehören könnte.\\nDie Marke und die Logos der Wikimedia Foundation und jeder anderen Organisation fallen nicht unter die Bedingungen der Creative Commons Lizenz. Die Marken von Wikimedia und ihre Logos, insbesondere \"Wikipedia\" und das Logo mit dem Puzzle-Globus, sind registrierte Marken der Wikimedia Foundation. Für mehr Details, lesen sie bitte unsere Trademark Policy Seite http://www.wikimediafoundation.org/wiki/Trademark_Policy oder kontaktieren Sie trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nDieses Video wurde unter einer Creative Commons Lizenz veröffentlicht.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nSo wie Wikipedia können Sie es frei kopieren, schneiden und weiterleiten.',\n", + " 'bytes': 7463,\n", + " 'sha1': '0fyu4xd4ri2gaa0m6vg6u4p4904rs9a',\n", + " 'parent_id': 83852507,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83849588,\n", + " 'timestamp': '2012-11-28T17:58:13Z',\n", + " 'user': {'id': 305204, 'text': 'Seddon'},\n", + " 'page': {'id': 22907723,\n", + " 'title': 'The Impact Of Wikipedia.webm.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 Wikipedia drivs ideellt, men det är den femte största webbplatsen i världen. Alla artiklar på Wikipedia har skrivits av friv...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia drivs ideellt, men det är den femte största webbplatsen i världen. Alla artiklar på Wikipedia har skrivits av frivilliga volontärer.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nVi skulle vilja presentera några av dem för dig...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nJag kommer från Nepal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nJag kommer från Irak\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nJag kommer från Indien\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nJag kommer från Byram i New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nJag kommer från Birmingham i England\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago i Illinois -- La Paz i Bolivia -- Nairobi i Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur i Malaysia -- Milano i Italien -- Sydafrika\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolen -- Japan -- Armenien\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrasilien -- Ryssland -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael -- Uzbekistan -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul -- Mexiko\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga i Tennessee i USA\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nI början när jag gick med i Wikipedia, 2008, påbörjade jag många nya artiklar.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nEn av dem var om en dam som jag tror hette Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nVi hade ingen artikel om det, så -- och det var min första artikel.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nSedan glömde jag bort den. Två eller tre år senare, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nsåg jag artikeln igen. Jag blev chockad!\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMer än 100 000 personer hade läst artikeln.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nDe använde den, så de fick sin information från den artikeln. De såg artikeln, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nså man känner att man påverkat och influerat över 100 000 människor.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nJag var skräckslagen när jag klickade på \\'Redigera\\'-knappen för första gången.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nJag tänkte \"Herregud, jag kommer att förstöra allt!\\nDet kan inte funka! Jag klarar inte av det!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia är \\'open source\\' -- där alla kan kasta in sina ideer \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\noch någon annan kan komma in och polera den iden så att den blir perfekt.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nTusentals människor jobbar varje dag, varje timme, varje minut på att förbättra Wikipedia.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nMycket av det är frivilligarbete. Detta är ett unikt sätt att jobba volontärt.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nDet för samman både professionella och amatörer som har förkärlek för ett visst ämne.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nPersoner som inledningsvis har olika åsikter börjar samarbeta.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nMycket av det som man kan anta hanteras av ett stort internetföretag \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nhanteras av volontärer som jag.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nDu kan inte säga \"Okej, jag har rätt, du har fel, det här är min version av arikeln!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nOm det föreligger partiskhet \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nhar någon förmodligen markerat artikeln, och om det inte skett kan jag också markera den.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nHundratals och tusentals människor ser det \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\noch fixar det.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nOch sen klickar jag på knappen och\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nPang - resan startade och det var fantastiskt.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nJag började med \\'Sannolikhet\\'. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nDen första artikeln jag påbörjade är \\'Sannolikhet\\'.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nEn av huvudartiklarna jag skrev på Wikipedia var \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nartikeln om sticksår.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nJag skriver om flugfiske, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontanas historia, nationalparkers historia samt Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nUnderutnyttjade grödor. Schackspelare. Biodiversitet.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nMilitärhistoriska ämnen. Armeniens och Roms historia.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nDomare. Kommunikation. Biografier. Fotboll.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrland. Pennsylvania. Mest fotografi.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Bakning, för jag älskar att baka.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nKärnvapen och radioaktivitet, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\noch forspaddling.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nAll den här informationen finns där ute, utspridd,\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\noch vi samlar ihop den på ett ställe.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nVi erbjuder fri kunskap för alla, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\ni deras eget språk så de kan använda det.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nAlla gagnas av detta, oavsett om de är rika eller fattiga.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nVinstdrivande företag har andra motiveringar och krav.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nFrån Wikimediastiftelsen får jag ingen lön, inte ens för att täcka utgifter.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nJag tror det är mycket viktigt att jag tydligt kan säga, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nSe här, när jag ber dig om pengar är det inte för mig själv --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nJag ber dig om pengar för stiftelsen, som är den grupp som stöder den här fantastiska gemenskapen som jag är delaktig i.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nJag tror Wikipedia gav mig en chans att verkligen göra en stor skillnad i världen.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nDet är som en investering i din framtid, i dina barns framtid.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nTack\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nInnehållet i den här videon finns tillgänglig under Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) om inte annat anges. Detta arbete ska tillskrivas Victor Grigas, Wikimediastiftelsen.\\nÅsikter och synpunkter i denna video ägs uteslutande av individerna som syns i videon och speglar inte nödvändigtvis riktlinjer och åsikter från något företag, organisation eller institution som individen är medlem av.\\nVarumärken och logotyper av Wikimediastiftelsen och andra organisationer täcks ej av Creative Commons-licensen. Wikimedias varumärken, logotyper, inklusive \"Wikipedia\" och pusselgloben, är av Wikimediastiftelsen registrerade varumärken. För mer information, se sidan om Trademark Policy, http://www.wikimediafoundation.org/wiki/Trademark_Policy, eller kontakta trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nDen här videon publiceras under en Creative Commons-licens.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nLiksom Wikipedia är det fritt fram att kopiera, mixa om och sprida den.',\n", + " 'bytes': 6860,\n", + " 'sha1': 'fixils3yw4yld31ao9vt9g309w6xvv2',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83849610,\n", + " 'timestamp': '2012-11-28T17:58:34Z',\n", + " 'user': {'id': 305204, 'text': 'Seddon'},\n", + " 'page': {'id': 22907728,\n", + " 'title': 'The Impact Of Wikipedia.webm.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 A Wikipédia não tem fins lucrativos, mas é o 5º sítio da Internet mais visitado no mundo. Todos os artigos da Wikipédia s...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nA Wikipédia não tem fins lucrativos, mas é o 5º sítio da Internet mais visitado no mundo. Todos os artigos da Wikipédia são escritos por voluntários.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nGostaríamos de vos apresentar alguns deles...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nEu sou do Nepal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nEu sou do Iraque\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nEu venho da Índia\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nSou de Byram, Nova Jérsia\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nEu vivo em Birmingham, Inglaterra\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois - La Paz, Bolívia - Nairóbi, Quénia\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malásia - Milão em Itália - África do Sul\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolónia - Japão - Arménia\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrasil - Rússia - Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael - Usbequistão - Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstambul - México\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nQuando me iniciei na Wikipédia em 2008, criei muitos artigos.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nUm deles, penso que era sobre uma senhora chamada Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nNão tínhamos nenhum artigo sobre ela, então... este foi o meu primeiro artigo.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nEsqueci-me dele! Talvez dois ou três anos mais tarde, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nAo passar por este artigo fiquei surpreendido.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMais de 100 000 pessoas leram este artigo.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nUsaram-no, obtiveram a informação que queriam, passaram por ele. \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nacabamos por sentir que tocámos e influenciámos mais de 100 000 pessoas.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nFiquei tão apavorado quando carreguei no botão \\'editar\\' pela primeira vez.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nPensei, “Oh meu Deus, vou estragar isto tudo!\\nNão vai funcionar! Não consigo fazer isto!”\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nA Wikipédia é \\'open source\\', é de código livre - onde qualquer um pode contribuir com as suas ideias. \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nmais tarde vem outra pessoa e aperfeiçoa essa ideia para algo sensacional.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nExistem milhares de pessoas a aperfeiçoar a Wikipédia todos os dias, a todas as horas e a cada minuto.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nTudo isto é voluntarismo. É uma forma única de ser voluntário.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nJunta profissionais e amadores que adoram um determinado tópico.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nPessoas que inicialmente têm opiniões diferentes começam a colaborar.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nPoderia até assumir que muito disto só seria possível se fosse feito por uma grande empresa da Internet \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nmas é feito por voluntários como eu.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nNão pode apenas dizer, \"bom, eu estou certo, tu estás errado, esta é a minha versão do artigo!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nSe existe um problema de parcialidade, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nentão alguém já o deve ter assinalado e, se ninguém o fez, eu posso fazê-lo agora.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nE existem centenas e milhares de pessoas que vêm \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\ne que corrigem estes casos.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nE é então que carrego no botão e\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBum! A viagem começou e foi fantástica.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nPrimeiro comecei com \\'Probabilidade\\'. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nO primeiro artigo que iniciei foi \"Probabilidade\".\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nUm dos artigos mais importantes que escrevi na Wikipédia foi \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nsobre feridas provocadas por armas brancas.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nEu escrevo sobre pesca à mosca, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nhistória do Montana, história do Parque Nacional de Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nCulturas subutilizadas. Jogadores de xadrez. Biodiversidade.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nHistória militar. História da Arménia. História Romana.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nJuízes. Comunicação. Biografias. Futebol.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrlanda. Pensilvânia. Fotografia, principalmente.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Cozinhados, porque adoro cozinhar.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nArmas nucleares e radioatividade, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\ne canoagem em rápidos.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nExiste uma quantidade imensa de informação dispersa por aí\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\ne nós estamos a reuni-la num único local.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nNós oferecemos conhecimento grátis a todas as pessoas, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nna língua delas, para que possam utilizá-lo.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nSão todos beneficiados quer sejam ricos ou pobres.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nEmpresas que procuram lucro têm motivações diferentes e requisitos diferentes.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nEu não recebo salário da Fundação Wikimedia e nem me pagam as despesas.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nPenso que é muito importante que possa dizer claramente que, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nquando peço a sua contribuição, não estou a pedir dinheiro para mim próprio -\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nEstou a pedir-lhe dinheiro para a Fundação que é a equipa que apoia esta comunidade fantástica da qual eu faço parte.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nPenso que a Wikipédia me deu esta oportunidade de realmente fazer uma grande diferença no mundo.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nÉ como um investimento para o futuro, para o futuro dos seus filhos.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nObrigado!\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nO conteúdo deste vídeo está disponível dentro dos termos da licença \"Creative Commons Attribution-ShareAlike License v3.0\" (http://creativecommons.org/licenses/by-sa/3.0), a menos que seja indicado o contrário. Esta obra é a atribuída a: Victor Grigas, Fundação Wikimedia.\\nOs pontos de vista e opiniões expressas neste vídeo são da exclusiva responsabilidade dos indivíduos que aparecem no vídeo e não representam necessariamente as políticas e posições de qualquer empresa, organização ou instituição que o indivíduo possa fazer parte.\\nAs marcas registadas e os logótipos da Fundação Wikimedia ou de qualquer outra organização não estão incluídas no termos desta licença Creative Commons. As marcas registadas e logótipos, incluindo \"Wikipedia\" e o logótipo do globo puzzle, são marcas registadas da Fundação Wikimedia. Para mais informações, por favor consulte a nossa página Trademark Policy, http://www.wikimediafoundation.org/wiki/Trademark_Policy, ou concte-nos para trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nEste vídeo é publicado sob a licença Creative Commons.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nComo a Wikipédia, é livre de copiar, alterar e partilhar.',\n", + " 'bytes': 7213,\n", + " 'sha1': '7tcvwtst3ieajnlhytf1fd7brzcs7q4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83855421,\n", + " 'timestamp': '2012-11-28T19:57:51Z',\n", + " 'user': {'id': 1183371, 'text': 'Sage Ross (WMF)'},\n", + " 'page': {'id': 22909061,\n", + " 'title': 'Editing basics - Sandboxes.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'subtitles',\n", + " 'text': '1\\n00:00:00,369 --> 00:00:03,325\\nThis is a walkthrough of how to start\\n\\n2\\n00:00:03,325 --> 00:00:06,200\\nediting in a sandbox on Wikipedia.\\n\\n3\\n00:00:06,200 --> 00:00:07,408\\nYou can use a sandbox\\n\\n4\\n00:00:07,408 --> 00:00:09,866\\nto experiment with wiki syntax,\\n\\n5\\n00:00:09,866 --> 00:00:11,325\\nmake practice edits,\\n\\n6\\n00:00:11,325 --> 00:00:13,450\\ntake notes and collect material,\\n\\n7\\n00:00:13,450 --> 00:00:17,075\\nor draft an article that can later be moved into Wikipedia.\\n\\n8\\n00:00:17,075 --> 00:00:19,075\\nTo make a user sandbox,\\n\\n9\\n00:00:19,075 --> 00:00:22,158\\nFirst you need to log in to your user account.\\n\\n10\\n00:00:22,158 --> 00:00:23,408\\nOnce you\\'ve logged in,\\n\\n11\\n00:00:23,408 --> 00:00:26,200\\nclick on \"Sandbox\" in the personal tools links\\n\\n12\\n00:00:26,200 --> 00:00:28,241\\nat the top of the page.\\n\\n13\\n00:00:28,241 --> 00:00:31,200\\nThis will bring you to your default sandbox page,\\n\\n14\\n00:00:31,200 --> 00:00:34,200\\nwhich is a subpage of your user page.\\n\\n15\\n00:00:34,200 --> 00:00:35,325\\nIn the edit window,\\n\\n16\\n00:00:35,325 --> 00:00:37,991\\nyou can begin composing your sandbox page.\\n\\n17\\n00:00:37,991 --> 00:00:39,408\\nIt will come preloaded\\n\\n18\\n00:00:39,408 --> 00:00:42,366\\nwith a bit of wikicode for a sandbox template,\\n\\n19\\n00:00:42,366 --> 00:00:44,533\\nwhich you can leave there or delete.\\n\\n20\\n00:00:44,533 --> 00:00:45,408\\nOnce you\\'ve written\\n\\n21\\n00:00:45,408 --> 00:00:47,075\\na little bit of your sandbox article,\\n\\n22\\n00:00:47,075 --> 00:00:48,741\\nyou can press the show preview button\\n\\n23\\n00:00:48,741 --> 00:00:49,991\\nbeneath the edit window\\n\\n24\\n00:00:49,991 --> 00:00:52,200\\nto see what the page will look like.\\n\\n25\\n00:00:52,200 --> 00:00:53,991\\nThen, enter an edit summary\\n\\n26\\n00:00:53,991 --> 00:00:55,575\\nin the field beneath the edit window\\n\\n27\\n00:00:55,575 --> 00:00:56,950\\nto describe what you\\'ve done,\\n\\n28\\n00:00:56,950 --> 00:00:59,282\\nand press Save page.\\n\\n29\\n00:00:59,282 --> 00:01:01,700\\nYou\\'ve started your sandbox article!\\n\\n30\\n00:01:01,700 --> 00:01:04,783\\nYou can always press edit to make more changes.\\n\\n31\\n00:01:04,783 --> 00:01:06,866\\nAnd if you leave the sandbox template there,\\n\\n32\\n00:01:06,866 --> 00:01:09,241\\nit has some useful tutorial links\\n\\n33\\n00:01:09,241 --> 00:01:11,116\\nas well as a link for requesting\\n\\n34\\n00:01:11,116 --> 00:01:12,908\\na review of your sandbox draft\\n\\n35\\n00:01:12,908 --> 00:01:15,991\\nfor inclusion as a new Wikipedia article.\\n\\n36\\n00:01:15,991 --> 99:59:59,000\\nHappy editing!\\n\\n37\\n99:59:59,000 --> 99:59:59,000',\n", + " 'bytes': 2469,\n", + " 'sha1': 'l32f71n2tzt9hzeconw5e0fjdv50iu2',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83973776,\n", + " 'timestamp': '2012-11-30T16:14:08Z',\n", + " 'user': {'id': 1183371, 'text': 'Sage Ross (WMF)'},\n", + " 'page': {'id': 22909977,\n", + " 'title': 'Editing basics - Sandboxes.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'update subtitles',\n", + " 'text': '1\\n00:00:00,906 --> 00:00:02,783\\nThis is a walkthrough of how to start\\n\\n2\\n00:00:02,783 --> 00:00:06,325\\nediting in a sandbox on Wikipedia.\\n\\n3\\n00:00:06,325 --> 00:00:07,617\\nYou can use a sandbox\\n\\n4\\n00:00:07,617 --> 00:00:09,825\\nto experiment with wiki syntax,\\n\\n5\\n00:00:09,825 --> 00:00:11,492\\nmake practice edits,\\n\\n6\\n00:00:11,492 --> 00:00:13,575\\ntake notes and collect material,\\n\\n7\\n00:00:13,575 --> 00:00:17,242\\nor draft an article that can later be moved into Wikipedia.\\n\\n8\\n00:00:17,242 --> 00:00:19,199\\nTo make a user sandbox,\\n\\n9\\n00:00:19,199 --> 00:00:22,157\\nFirst you need to log in to your user account.\\n\\n10\\n00:00:22,157 --> 00:00:23,533\\nOnce you\\'ve logged in,\\n\\n11\\n00:00:23,533 --> 00:00:26,573\\nclick on \"Sandbox\" in the personal tools links\\n\\n12\\n00:00:26,573 --> 00:00:28,283\\nat the top of the page.\\n\\n13\\n00:00:28,283 --> 00:00:30,992\\nThis will bring you to your default sandbox page,\\n\\n14\\n00:00:30,992 --> 00:00:33,950\\nwhich is a subpage of your user page.\\n\\n15\\n00:00:33,950 --> 00:00:35,117\\nIn the edit window,\\n\\n16\\n00:00:35,117 --> 00:00:38,200\\nyou can begin composing your sandbox page.\\n\\n17\\n00:00:38,200 --> 00:00:39,450\\nIt will come preloaded\\n\\n18\\n00:00:39,450 --> 00:00:42,908\\nwith a bit of wikicode for a sandbox template.\\n\\n19\\n00:00:42,908 --> 00:00:44,033\\nOnce you\\'ve written\\n\\n20\\n00:00:44,033 --> 00:00:45,492\\na little bit of your sandbox article,\\n\\n21\\n00:00:45,492 --> 00:00:47,117\\nyou can press the show preview button\\n\\n22\\n00:00:47,117 --> 00:00:48,450\\nbeneath the edit window\\n\\n23\\n00:00:48,450 --> 00:00:50,617\\nto see what the page will look like.\\n\\n24\\n00:00:50,617 --> 00:00:52,241\\nThen, enter an edit summary\\n\\n25\\n00:00:52,241 --> 00:00:53,825\\nin the field beneath the edit window\\n\\n26\\n00:00:53,825 --> 00:00:55,533\\nto describe what you\\'ve done,\\n\\n27\\n00:00:55,533 --> 00:00:57,700\\nand press Save page.\\n\\n28\\n00:00:57,700 --> 00:01:00,116\\nYou\\'ve started your sandbox article!\\n\\n29\\n00:01:00,116 --> 00:01:03,116\\nYou can always press edit to make more changes.\\n\\n30\\n00:01:03,116 --> 00:01:05,408\\nAnd if you leave the sandbox template there,\\n\\n31\\n00:01:05,408 --> 00:01:07,741\\nit has some useful tutorial links\\n\\n32\\n00:01:07,741 --> 00:01:09,200\\nas well as a link for requesting\\n\\n33\\n00:01:09,200 --> 00:01:11,366\\na review of your sandbox draft\\n\\n34\\n00:01:11,366 --> 00:01:14,366\\nfor inclusion as a new Wikipedia article.\\n\\n35\\n00:01:14,366 --> 99:59:59,000\\nHappy editing!\\n\\n36\\n99:59:59,000 --> 99:59:59,000',\n", + " 'bytes': 2398,\n", + " 'sha1': '803enzskq7i0nutvvcg36jgt8qeuafz',\n", + " 'parent_id': 83859612,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83860293,\n", + " 'timestamp': '2012-11-28T21:47:06Z',\n", + " 'user': {'id': 79110, 'text': 'Haqmar'},\n", + " 'page': {'id': 22909985,\n", + " 'title': 'Anthem of Bashkortostan.ogg.ba.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:09,000\\nБашҡортостан, һин һөйөклө ғәзиз ер,\\n\\n2\\n00:00:09,001 --> 00:00:15,000\\nХалҡыбыҙҙың изге Ватаны\\n\\n3\\n00:00:15,001 --> 00:00:20,000\\nСал Уралдан ҡалҡа бар тарафҡа\\n\\n4\\n00:00:20,001 --> 00:00:28,000\\nТыуған илдең тыныс ал таңы.\\n\\n5\\n00:00:28,001 --> 00:00:33,000\\nДан һиңә, Башҡортостан!\\n\\n6\\n00:00:33,001 --> 00:00:40,000\\nИлен һөйгән азат халҡыңа дан!\\n\\n7\\n00:00:40,001 --> 00:00:46,000\\nРәсәй менән бөйөк берҙәмлектә\\n\\n8\\n00:00:46,001 --> 00:00:53,000\\nСәскә ат, Башҡортостан!\\n\\n9\\n00:00:53,001 --> 00:01:00,000\\nБашҡортостан, һин хөрмәтле данлы ил,\\n\\n10\\n00:01:00,001 --> 00:01:06,000\\nЕңеү яулап алға бараһың.\\n\\n11\\n00:01:06,001 --> 00:01:13,000\\nКиләсәккә яҡты нур-моң сәсә\\n\\n12\\n00:01:13,001 --> 00:01:19,000\\nҺинең ғорур рухлы байрағың.\\n\\n13\\n00:01:19,001 --> 00:01:25,000\\nДан һиңә, Башҡортостан!\\n\\n14\\n00:01:25,001 --> 00:01:32,000\\nИлен һөйгән азат халҡыңа дан!\\n\\n15\\n00:01:32,001 --> 00:01:38,000\\nРәсәй менән бөйөк берҙәмлектә\\n\\n16\\n00:01:38,001 --> 00:01:45,000\\nСәскә ат, Башҡортостан!\\n\\n17\\n00:01:45,001 --> 00:01:52,000\\nРеспубликам, йондоҙ булып балҡы һин,\\n\\n18\\n00:01:52,001 --> 00:01:58,000\\nКүкрәп йәшә, гүзәл илебеҙ.\\n\\n19\\n00:01:58,001 --> 00:02:05,000\\nТыуған ерҙә һүнмәҫ усағыбыҙ,\\n\\n20\\n00:02:05,001 --> 00:02:12,000\\nТуған телдә тынмаҫ йырыбыҙ.\\n\\n21\\n00:02:12,001 --> 00:02:18,000\\nДан һиңә, Башҡортостан!\\n\\n22\\n00:02:18,001 --> 00:02:25,000\\nИлен һөйгән азат халҡыңа дан!\\n\\n23\\n00:02:25,001 --> 00:02:31,000\\nРәсәй менән бөйөк берҙәмлектә\\n\\n24\\n00:02:31,001 --> 00:02:41,000\\nСәскә ат, Башҡортостан\\n\\n25\\n00:02:41,001 --> 00:02:43,000\\n(by Haqmar)',\n", + " 'bytes': 2086,\n", + " 'sha1': '97c0eavjzft0fhrno0mbsyvlrp92d5d',\n", + " 'parent_id': 83860239,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83890120,\n", + " 'timestamp': '2012-11-29T10:18:36Z',\n", + " 'user': {'id': 849743, 'text': 'Vladimir Penov'},\n", + " 'page': {'id': 22915379,\n", + " 'title': 'The Impact Of Wikipedia.webm.bg.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 Уикипедия е организация с идеална цел и въпреки това е петият най-посе...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nУикипедия е организация с идеална цел и въпреки това е петият най-посещаван уебсайт в света. Всички статии в Уикипедия са написани от доброволци.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nНека ви представим някои от тях...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nАз съм от Непал.\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nАз съм от Ирак.\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nАз съм от Индия.\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nАз съм от Байръм, Ню Джърси.\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nЖивея в Бирмингам, Англия.\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nЧикаго, Илинойс - Ла Пас, Боливия - Найроби, Кения\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nКуала Лумпур, Малайзия - Милано, Италия - Южна Африка\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nПолша - Япония - Армения\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nБразилия - Русия - Ботсвана\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nИзраел - Узбекистан - Хонконг\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nИстанбул - Мексико\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nЧатануга, Тенеси\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nКогато се включих в Уикипедия през 2008 г., започнах много статии.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nЕдна от тях беше за жена на име Мариам Нур.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nТогава нямаше статия за нея и така тя стана първата ми статия.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nНаписах я и я забравих. Няколко години по-късно \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nпопаднах отново на статията. Бях шокирана.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nНад 100 хиляди души я бяха чели.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nЧели са я и са позвали информацията в нея. Натъкнали са се на нея. \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nУсещаш, че си повлиял на повече от 100 хиляди души.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nПървият път, когато натиснах бутона за редактиране, бях направо ужасена.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nПомислих си „Боже, ще оплескам всичко! Няма да стане! Няма да се справя!“\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nУикипедия е с отворен код, т.е. всеки може да напише идеите си, \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nа после някой друг да надгради и да ги разшири и подобри.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nВсеки ден, всеки час, всяка минута, хиляди хора пишат в Уикипедия и я обогатяват и допълват.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nВсичко се прави на доброволни начала. Уикипедия е уникален доброволчески проект.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nТя събира професионалисти и аматьори, които споделят любовта си към дадена тема.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nХора, които в началото са на различни мнения, започват да си сътрудничат.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nМного от нещата, с които се занимават големите интернет компании, \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nсе правят от доброволци като мен.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nНе може просто да кажеш „Аз съм прав, ти грешиш, така че моята редакция остава.“\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nАко има съмнения за обективността на написаното, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nнякой вече сигурно ги е отбелязал, а сега и аз мога да го направя.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nИма стотици, дори хиляди души, които го виждат \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nи го поправят.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nИ тогава натискам бутона и ...\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nбум! - пътешествието започна и беше страхотно.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nПървата ми статия беше за вероятността. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nПърват ми започната статия се казва „Вероятност“.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nЕдна от основните ми статии в Уикипедия \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nбеше за прободни рани.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nПиша за риболов, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nистория на Монтана, история на Националния парк Йелоустоун.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nНепълноценно използвани земеделски култури. Шахматисти. Биоразнообразие.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nВоенна история. История на Армения. История на римляните.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nСъдии. Комуникация. Биографии. Футбол.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nИрландия. Пенсилвания. Предимно за фотография.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nПинк Флойд. Печене, защото обичам да готвя.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nЯдрени оръжия и радиоктивност. \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nКаяк в бързи води.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nИма много информация, която е разхвърляна тук и там.\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nНие я събираме на едно място.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nПредлагаме безплатно знание за всеки \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nна родния му език, за да може да го ползва.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nВсеки има полза, независимо дали е богат или не.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nТърговските фирми имат различни цели и изисквания.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nФондация Уикимедия не ми плаща заплата, нито ми въстановява разходи.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nВажно е да се заяви съвсем ясно, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nче парите, които искаме, не отиват в моя джоб.\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nПарите отиват във Фондацията и са за всички, които поддържат тази невероятна общност.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nУикипедия ми даде шанса да направя нещо добро за света.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nТова е инвестиция в бъдещето, в бъдещето на децата ни.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nБлагодарим Ви!\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nСъдържанието на този клип е достъпно по условията на Криейтив Комънс Признание - Споделяне на споделеното, версия 3.0 (http://creativecommons.org/licenses/by-sa/3.0), освен ако не е упоменато друго. Автор: Виктор Григас, Фондация Уикимедия.\\nМненията на участниците в клипа са лични и може да не отговарят на политиката и становищата на компаниите, организациите и институциите, в които членуват.\\nТърговските марки и знаци на Фондация Уикимедия и на всички други организации не са включени в условията на договора на Криейтив Комънс. Търговските марки и знаци на Уикимедия, включително Уикипедия и логото с глобуса пъзел са регистрирани на името на Фондация Уикимедия. Да повече информация, вижте http://www.wikimediafoundation.org/wiki/Trademark_Policy или ни пишете на trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nТози клип е публикуван под лиценза на Криейтив Комънс.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nСъщо като Уикипедия, той може свободно да се копира, миксира и споделя.',\n", + " 'bytes': 9488,\n", + " 'sha1': 'ifjjddayqhgc4yuzwynapgt3nsoaisy',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83965032,\n", + " 'timestamp': '2012-11-30T13:08:48Z',\n", + " 'user': {'id': 843477, 'text': 'Ezhuttukari'},\n", + " 'page': {'id': 22916043,\n", + " 'title': 'ML HELP HowToSearch HQ.ogv.ml.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,400\\nഒരു ലേഖനം തിരയുന്നതെങ്ങനെ ?\\n\\n2\\n00:00:04,561 --> 00:00:09,390\\nപ്രധാന താളിൽ നിന്നോ മറ്റേതു താളിൽ നിന്നോ ഒരു ലേഖനം തിരയാൻ സാധിക്കുന്നു.\\n\\n3\\n00:00:09,759 --> 00:00:13,551\\nതാങ്കൾ ആന എന്ന താളാണ് തിരയാനുദ്ദേശിക്കുന്നത് എന്നിരിക്കട്ടെ.\\n\\n4\\n00:00:14,013 --> 00:00:21,167\\nതാങ്കൾക്ക് ഇംഗ്ലീഷിലോ മലയാളത്തിലോ തിരയാനാകും. എന്നിരുന്നാലും മലയാളത്തിൽ തിരയുന്നതാവും അഭികാമ്യം.\\n\\n5\\n00:00:21,167 --> 00:00:27,167\\nവലതുവശത്ത് മുകളിലായി കാണുന്ന (തിരയുക) എന്ന തിരയൽപെട്ടിയിൽ ആന എന്നെഴിതിച്ചേർക്കുക.\\n\\n6\\n00:00:27,167 --> 00:00:32,067\\nപക്ഷെ മലയാളത്തിലെഴുതുവാനുള്ള ഉപകരണം സ്വതേ ക്രമീകരിച്ചിട്ടുണ്ടാവില്ല.\\n\\n7\\n00:00:32,067 --> 00:00:39,367\\nഅതിനായി ഏറ്റവും മുകളിലായുള്ള എഴുത്തുപകരണം എന്ന കണ്ണിയിൽ അമർത്തി സജീവമാക്കുക എന്നത് (ശരിയിട്ട്) സജീവമാക്കുക.\\n\\n8\\n00:00:39,367 --> 00:00:47,700\\nഇത് എളുപ്പത്തിൽ ചെയ്യുവാനായി കീബോർഡിലെ കണ്ട്രോൾ കീയും M എന്ന കീയും ഒന്നിച്ചമർത്തിയാലും മതിയാകും.\\n\\n9\\n00:00:47,700 --> 00:00:53,600\\nഎഴുത്തുപകരണം പ്രവർത്തനക്ഷമമായി എന്നുള്ളതിനു സൂചകമായി ചുമന്ന ഗുണനചിഹ്നം മാറുകയും ചെയ്യും.\\n\\n10\\n00:00:53,600 --> 00:01:00,567\\nഎഴുതുന്നതിനനുസരിച്ച് താഴേക്ക് വരുന്ന ഐച്ഛികങ്ങൾ തിരഞ്ഞെടുക്കുകയോ, മുഴുവനായി എഴുതി തിരച്ചിൽ ചിഹനത്തിൽ അമർത്തുകയോ ആവാം.\\n\\n11\\n00:01:00,567 --> 00:01:02,733\\nതിരയുന്ന താൾ ഉണ്ടെങ്കിൽ അതിലേക്ക് പോകും\\n\\n12\\n00:01:02,733 --> 00:01:13,167\\nതിരച്ചിൽ വാക്ക് ഉൾപ്പെടുന്ന എല്ലാ ലേഖനങ്ങളും കാണുവാനായി ഐച്ഛിക പട്ടികയിലെ ഏറ്റവും താഴെയായുള്ള (ഉൾപ്പെടുന്നവ..) എന്നത് തിരഞ്ഞെടുക്കുക.\\n\\n13\\n00:01:13,167 --> 00:01:16,900\\nആന ഉൾപ്പെടുന്നവ എല്ലാ താളുകളും കാണപ്പെടും.\\n\\n14\\n00:01:16,900 --> 00:01:19,900\\nഇങ്ങനെ നിങ്ങൾക്ക് വിക്കിപീഡിയയിൽ ഏതു ലേഖനവും തിരയാം.',\n", + " 'bytes': 3468,\n", + " 'sha1': 'dp7bfp79jyhik5mx6zmei9b53beuaqz',\n", + " 'parent_id': 83893741,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85233400,\n", + " 'timestamp': '2012-12-18T01:56:43Z',\n", + " 'user': {'text': '216.38.130.162'},\n", + " 'page': {'id': 22920045,\n", + " 'title': 'The Impact Of Wikipedia.webm.ay.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'fix typo',\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nWikipiryaxa janiw qullqichasiñatakikiti, ukjamipansa llika(internet) taypinxa 5ir wali uñt\\'atawa. Taqpach uka qillqatanakaxa jan payllawinakampkam qillqatkamakiwa. \\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nAka waruqawtuqiw mä qawqhan uñt\\'awayapxañäni...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nNepal Jach\\'a Suyu Markankiritwa\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nIraq Marka Suyutarakitwa\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nIndia markankirirakitwa\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nByram, New Jersey markatarakitwa\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nBirmingham markanrak qamastta, England\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- Ch\\'uqiyapu, Wuliwya -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malaysia -- Milan- Italy -- South Africa tuqinkapxiritwa\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPoland -- Japan -- Armenia-nkiritwa\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrazil -- Russia -- Botswana-nkiritwa\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael -- Uzbekistan -- Hong Kong-tuqita\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul -- Mexico-tuqinkiritwa\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nKhaya 2008 maranwa Wikipiryamp chikañchasiniwayta, uka maratpachxa walja qillqatanakrakwa qillqaniwayta.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nMayririxa, amuyatatxa Miriam Nour uka mamatxamakinawa. \\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nJupatxa janiw mä qillqatas utjkanati, uknirinaw nayrir nayrir qillqatajaxa.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nUkjam qillqasinxa, mä pä marachi kimsa marachi ukjaw armt\\'asxatäta! \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nukjatwa pachpa qillqat mayamp uñxatt\\'askayäta. Wali muspatarakiw jikxatasiwayta. \\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nukañkamaxa 100,000 jila jaqinakaw uka qillqatajx uñxatxapxatayna. \\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nWaljanipuniw uñxatapxatayna, taqinis uka yatiyawx waraqawayapxarakitaynawa. \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nUkjamipansti, janipuniw ak\\'chs amuyaskayatti,100,000 jila jaqiruw qillqatajax yanapt\\'awayatayna.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nKunawsatixa, \"trukaña\" uk limintawaytxa, nayraqatpachxa walpun axsarayäta. \\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nAmuyujansti sakiyatwa,“ Ampi!, may q\\'al tukthapxasti! may jan sum lurkasti! janxamakiw lurkiristi!\" Sasina. \\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipiryaxa \\'taqininkiwa\\' -- taqinipunirakiw amuyupx qillqt\\'awayarakispa, \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nukjamipansti yaqha jilas kullakas uñxatt\\'asinx juk\\'amp aski amuyunakampix yapt\\'awayakirakispawa .\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nwaranqh waranqh jaqinakaw sapurunjama, sapa pachanjama, sapa k\\'atanjama Wikipiryar aski qillqataniñapatak qillqasipki.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nWaljan jila kullakanakarakiw jan payllawimpi irnaqasipki. Akjamatwa inaki yanapt\\'asiwix ch\\'amañchata.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nYatiqanaka ukjamarak yatxatatanakaw aka taypinx chikañchasisipki.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nYaqhipanakax qalltanxa, yanapt\\'asiñx axsarapxanawa.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nAka amtawisti wali jach\\'a amtapuniwa aka llika(internet)taypinxa \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nakjam jach\\'a amtawisti nayxama yanapt\\'asirinakamp jach\\'añchatatawa.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nJaniw Wikipirya taypinxa, jiskasmati, “Ukjamaxa, qillqataxapuniw chiqaxa, jumanx janiw askikiti, akax nän qillqawijawa!” sasinxa.\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nMaynitixa jan wali amuyunikchixa, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nyaqha jila kullakaw ukx chimpt\\'asispa, janitix chimpt\\'atakaspaxa, jumapachpaw chimpt\\'asma.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nUkjamatwa waranqh waranqh jaqinakaw uka qilqatanaka aruskiwapinakxa uñjasipki, \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nukjamaraki askichasipki.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nUkjamipanwa, qillqañax qallantata\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nukatsti - qillqantawayatawa.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nNayraqatpachxa \\'chiqat janich chiqa\\' ukjam amuyumpiw qallantawayta. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\n\\'chiqat janich chiqa\\' uka amuyumpiw qallantawayta.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nNayrir wikipiryan qillqataxasti \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\njaqin usuchjatanak tuqitänawa.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nChallwa katuñ tuqit qillqtxa, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontana sarnaqawinakxata, National Park-tuqita, Yellowstone-tuqita.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nYapuchañanaktuqita. Ajitris anatañtuqita. jakañanaktuqita. \\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nPallapallanaktuqita. Armenia markxata. Romanunakxata.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nTaripirinaktuqita. Yatiyäwinaktuqita. Jakawinakxata. T\\'ixit anatañtuqita.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrlanta markxata. Pensylwania markxata. Jamuqanakxata.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd tamachaw tuqita. Phayañtuqita, natakix askipuniw phayañaxa.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nBomba Nucleartuqita ukjamrak radioactividattuqita, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nUmapatxan jalnakañ tuqita.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nTäqi kunayman yatiyäwinakapuniw taqituqin llika taypinx ch\\'iqintata\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nUkjamatwa mawjitarkam apthapita.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nUkjamarusa, taqiniruw uka qillqäwinakax inak puriski, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nukjamaraki, kawknir arunakantix parlasipki uka arunakapana.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nQamiripasa pisinkiripasa, taqinipuniw aka qillqatanakx uñjapxaspa.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nMaysatsti qullqichasiri mayacht\\'awinakat sipanxa wali mayjawa. \\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nAka Wikimedia Fundación-tuqitxa, janiw mä juk\\'a payllawis katuqatakiti.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\n Ukjamarusa wali askiwa qhana parlasiñasaxa, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nSum amuyañ sipanxa, kunawsatix qullqi aytatakixa, janiw uka qullqix nayatakikiti--\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nUka qullqixa Wikipirya amtäw juk\\'amp sartayañatakiwa, juk\\'amp ch\\'amañchañatakiwa.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nAka Wikipiryaxa mä punks uraqpachar jist\\'arawaykitaspana, ukjamawa. \\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nUkjamaraki, Wikipiryax qhipurutakiwa, wawanakasan wawanakapatakiwa.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nPay suma!!\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nTaqi kunatix aka waruqanx utjkixa, Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) ukarjam waruqt\\'atawa. Ukjamaraki kuna jan walt\\'awis utjaspxa, tata: Victor Grigas, Wikimedia Foundation amparapamkiwa.\\nTäqi aka waruqan arst\\'irinakaxa, janiw kawknir tamanakana, mayacht\\'awinakan amuyuparxamakisa. \\nKawknir Wikimedian yänakapatï aka waruqanakan uñstkixa janiw Creative Commons license ukarjamakiti. Juk\\'amp yatiñtix munstaxa, uñxatt\\'amaya http://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nMayampisa, aka jamuqasti Creative Commons license ukarjamawa.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nKunjamatix Wikipedian amuyapakixa, ch\\'iqintayaskakima.',\n", + " 'bytes': 7083,\n", + " 'sha1': '0floijpsnqwi00utojf8xuu81khd434',\n", + " 'parent_id': 85232789,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83915725,\n", + " 'timestamp': '2012-11-29T19:21:52Z',\n", + " 'user': {'id': 305204, 'text': 'Seddon'},\n", + " 'page': {'id': 22921099,\n", + " 'title': 'The Impact Of Wikipedia.webm.ar.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 ويكيبيديا لا تهدف للربح، لكنها خامس أشهر موقع في العالم. جميع مقالات و...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nويكيبيديا لا تهدف للربح، لكنها خامس أشهر موقع في العالم. جميع مقالات ويكيبيديا يكتبها متطوعون.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nيسعدنا أن نعرفك على بعضهم...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nأنا من نيبال\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nأنا من العراق\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nجئت من الهند\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nأنا من بيرام في ولاية نيوجيرسي\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nأنا من برمينغهام في إنجلترا\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nشيكاغو، ألينوي -- لاباز، بوليفي -- نيروبي، كينيا\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nكوالالمبور، مالزيا -- ميلانو في إيطاليا -- جنوب أفريقيا\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nبولندا -- اليابان -- أرمينيا\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nالبرازيل -- روسيا -- بوتسوانا\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nإسرائيل -- أوزباكستان -- هونغ كونغ\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nإسطنبول -- المسكيك\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nتشاتانوجا، تينيسي\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nفي بداية انضمامي لويكيبيديا في 2008 أنشأت مقالات كثيرة.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nأعتقد أن إحداها كانت عن سيدة اسمها مريم نور.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nلم يكن لدينا مقالة عنها، وتلك كانت أولى مقالاتي.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nنسيت الموضوع! وبعد سنتين أو ثلاثة، \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nمررت بالمقالة. وصُدمت.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nأكثر من 100،000 شخص قرؤوا تلك المقالة.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nاستخدموها، وبالتالي حصّلوا معلوماتهم من تلك المقالة. مرّوا بالمقالة، \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nفأحسست أني أثرت في حياة أكثر من 100،000 شخص.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nكنت خائفة جدا عندما ضغطت زر \"عدل\" أول مرة.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nكنت أقول لنفسي: \"يا إلهي، سوف أدمر كل شيء!\\nلا يمكن أن أنجح! لا يمكن أن أقوم بذلك!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nويكيبيديا \"مفتوحة المصدر\" -- يمكن للجميع أن يطرحوا أفكارهم \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nوسيأتي شخص آخر يحسنها لتغدو أفضل.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nيوجد آلاف الأشخاص الذين يسعون كل يوم وكل ساعة وكل دقيقة لتحسين ويكيبيديا.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nجزء أساسي من القضية التطوع. هذه وسيلة فريدة للتطوع.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nيجتمع هنا المحترفون والهواة الذين يعشقون موضوعا ما.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nالذين يحملون آراء مختلفة في بداية المطاف، يتعاونون.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nقد تظن أن ما يجري يتم بإدارة شركة إنترنت ضخمة \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nلكن يديره متطوعون مثلي.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nلا يمكن أن تقول: \"حسنا، أنا محق وأنت المخطئ، هذه مقالتي!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nإذا وجد تحيّز \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nفعلى الأغلب سيشير إلى ذلك شخص ما، إذا لم يقم أحد بذلك أقوم به أنا.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nمئات وآلاف الناس يشاهدون المقالات \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nويصححونها.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nثم نقرت الزر و..\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\n-فجأة-- بدأت الرحلة، وكانت رائعة.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nأول ما بدأت به كان \"الاحتمالات\". \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nأول مقالة كتبتها كانت \"الاحتمالات\".\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nإحدى أهم المقالات التي كتبتها في ويكيبيديا كانت \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nمقالة جروح الطعن.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nكتبت عن الصيد بالحشرات، \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nوعن تاريخ مونتانا، عن تاريخ المنتزه الوطني، وعن متنزه يلوستون الوطني\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nالمحاصيل غير المستغلة. لاعبي الشطرنج. التنوع الحيوي.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nتاريخ الحروب. التاريخ الأرميني. التاريخ الروماني.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nالقضاء. الاتصالات. سير الأعلام. كرة القدم.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nآيرلندا. بنسيلفانيا. التصوير غالبا.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nبِنك فلويد. الشوي، لأني أحب الشوي.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nالأسلحة النووية والنشاط الإشعاعي، \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nوالتجديف.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nالمعلومات موجودة لكنها مبعثرة\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nنحاول أن نجمعها في مكان واحد.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nنتيح معرفة حرة مجانية للجميع، \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nبلغتهم الأم ليتمكنوا من الاستفادة منها.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nالجميع يستفيد سواءً كانوا أغنياء أم فقراء.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nللشركات الربحية دوافعها ومتطلباتها.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nلا أتلقى من مؤسسة ويكيميديا مرتبا، بل لا تدفع المؤسسة تكاليفي.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nأعتقد أن من الضروري جدا أن أتمكن من أن أقول وبوضح: \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nعندما أطلب منك مالا فأنا لا أطلبه لنفسي --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nبل أطلبه للمؤسسة التي تمثل الفريق الذي يدعم هذا المجتمع المذهل الذي أنا جزء منه.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nأعتقد أن ويكيبيديا مكنتني من إحداث تغيير كبير في العالم.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nالأمر بمثابة استثمار في مستقبلك، ومستقبل أطفالك.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nشكرا.\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nمحتوى هذا الفيديو مرخص برخصة المشاع الإبداعي: النسبة-الترخيص بالمثل 3.0 (http://creativecommons.org/licenses/by-sa/3.0) مالم يرد خلاف ذلك. هذا العمل يُنسب لفكتور فريغاس من مؤسسة ويكيميديا.\\nالآراء المطروحة في هذا الفيديو تعبر فقط عن آراء الأفراد الذين ظهروا فيه ولا تعبر بالضرورة عن سياسات أو آراء أي شركة أو منظمة أو مؤسسة قد ينتمي لها الفرد.\\nThe trademarks and logos of the Wikimedia Foundation and any other organization are not included under the terms of this Creative Commons license. Wikimedia trademarks and logos, including \"Wikipedia\" and the puzzle globe logo, are registered trademarks of the Wikimedia Foundation. For more information, please see our Trademark Policy page,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nهذا الفيديو منشور برخصة مشاع إبداعي.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nمثل ويكيبيديا، يحق لك أن تنسخه وتعدله وتشاركه.',\n", + " 'bytes': 8162,\n", + " 'sha1': 'rq04veki08g3i8dvwymas1ughuafkow',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83915803,\n", + " 'timestamp': '2012-11-29T19:23:11Z',\n", + " 'user': {'id': 305204, 'text': 'Seddon'},\n", + " 'page': {'id': 22921122,\n", + " 'title': 'The Impact Of Wikipedia.webm.da.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 Wikipedia tjener ikke penge, men det er verdens 5. mest besøgte netsted. Alle artikler i Wikipedia er skrevet af frivillige. 2...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia tjener ikke penge, men det er verdens 5. mest besøgte netsted. Alle artikler i Wikipedia er skrevet af frivillige.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nVi vil gerne præsentere nogle af dem for dig...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nJeg er fra Nepal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nJeg kommer fra Indien\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nJeg er fra Byram, New Jersey\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nJeg kommer fra Byram, New jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nJeg bor i Birmingham, England\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La paz, Bolivia -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malaysia -- Milano i Italien -- Sydafrika\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolen -- Japan -- Armenien\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrasilien -- Rusland -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael -- Uzbekistan -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul -- Mexico\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nStraks efter, at jeg var begyndt hos Wikipedia i 2008, begyndte jeg på mange artikler.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nÉn af dem var vistnok om en dame, der hed Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nVi havde ikke nogen artikel om hende, så -- og det blev min første artikel.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nDerefter glemete jeg alt om den! Måske to eller tre år senere \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nkom jeg forbi samme artikel. Jeg blev chokeret.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nFlere end 100.000 mennesker havde læst artiklen.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nDe brugte den, dvs. de fik deres oplysninger fra samme artikel. De kiggede på den artikel, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nså man føler, at man ligesom rørte og påvirkede flere end 100.000 mennesker.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nJeg var bare så skrækslagen, da jeg trykkede på \\'redigér\\'-knappen for første gang.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nJeg tænkte: \"Åh du godeste, jeg er ved at ødelægge det hele!\\nDet duer ikke! Jeg kan ikke gøre det!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia er såkaldt \\'Open Source\\' -- hvor enhver kan lægge sin idé \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nog så kommer der en anden til og finpudser den idé, så den bliver perfekt.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nDer er tusinder af mennesker, der arbejder hver dag, hver time, hvert minut på at forbedre Wikipedia.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nEn stor del af det drejer sig om at være frivillig. Det her er en enestående måde at udføre frivilligt arbejde.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nDet fører de professionelt uddannede og de amatører sammen, som interesserer sig for et bestemt emne.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nDe, som havde forskellige holdninger i begyndelsen, begynder at samarbejde.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nEn betydelig del af det, man ville forvente et stort internetfirma skulle klare, \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nbliver ordnet af frivillige som mig.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nMan kan ikke bare sige: \"OK, jeg har ret, og du tager fejl, det her er min version af artiklen!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nHvis der opstår et problem med forudindtagethed, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nså har nogen sikkert markeret det, og hvis det ikke er sket, så kan jeg også lave markeringen.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nMan har hundreder og tusinder af mennesker, der ser det \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nog retter det.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nOg så trykker jeg på knappen, og\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBum - Rejsen begyndte og det var herligt.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nJeg begyndte med \\'Sandsynlighed\\'. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nDen første artikel, jeg tog hul på, var \\'Sandsynlighed\\'.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nÉn af de større artikler, jeg skrev på Wikipedia, var \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nartiklen om \\'Stiksår\\'.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nJeg skriver om fluefiskeri, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontanas historie, Nationalparkhistorie, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nUnderudnyttede afgrøder. Skakspillere. Biodiversitet.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nEmner fra militærhistorien. Armensk historie. Romersk historie.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nDommere. Kommunikation. Biografier. Fodbold.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrland. Pennsylvania. Mest om fotografering.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Bagning, for jeg elsker at bage.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nKernevåben og radioaktivitet, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nog kajakroning i bjergfloder.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nDer er alle de oplysninger, der ligger derude og er ret spredte\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nog vi er i gang med at samle dem på ét sted.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nVi tilbyder gratis viden til enhver, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\npå deres eget sprog, så de kan bruge den.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nAlle har gavn af dette, hvad enten de er rige eller fattige.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nSelskaber, der søger fortjeneste, har andre motiver og andre krav.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nJeg modtager ikke nogen løn fra Wikimediafonden, og jeg får end ikke mine udgifter dækket.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nJeg mener, at det er meget vigtigt, at jeg kan sige helt klart: \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nHør her, når jeg beder om penge, så beder jeg ikke om penge til mig selv --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nJeg beder om penge til fonden, som er det hold, der understøtter dette forbløffende fællesskab, som jeg er en del af.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nJeg mener, at Wikipedia gav mig denne mulighed for at gøre en stor forskel i verden.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nDet er som en investering i min fremtid, mine børns fremtid.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nTak.\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nIndholdet i denne video kan bruges under licensen Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0), med mindre andet er angivet. Arbejdet skyldes: Victor Grigas, Wikimediafonden.\\nDe synspunkter og holdninger, der fremsættes i denne video, tilhører udelukkende de enkeltpersoner, der ses på videoen, og de gengiver ikke nødvendigvis politikker eller stillingtagen hos noget selskab, organisation eller institution, som vedkommende måtte være en del af.\\nWikimediafondens og enhver anden organisations varemærker og logo\\'er er ikke omfattet af vlkårene af den nævnte Creative Commons licens. Wikimedias varemærker og logo\\'er, herunder \"Wikipedia\" og puslespilglobus-logoet, er Wikimediafondens indregistrerede varemærker. Hvis der er behov for yderligere information, så se venligst vores varemærkeside: http://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nDenne video udgives under en Creative Commons licens.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nLigesom Wikipedia er det gratis at kopiere, redigere og videregive den.',\n", + " 'bytes': 7165,\n", + " 'sha1': '4uzalqvlsvd9vbk2xs2358heldtpkbj',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83915867,\n", + " 'timestamp': '2012-11-29T19:24:50Z',\n", + " 'user': {'id': 305204, 'text': 'Seddon'},\n", + " 'page': {'id': 22921136,\n", + " 'title': 'The Impact Of Wikipedia.webm.gl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 A Wikipedia é unha organización sen fins lucrativos, pero é a quinta páxina web máis visitada do mundo. Todos os artigos da...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nA Wikipedia é unha organización sen fins lucrativos, pero é a quinta páxina web máis visitada do mundo. Todos os artigos da Wikipedia están escritos por voluntarios.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nQueremos presentarche algunhas desas persoas...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nSon do Nepal.\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nSon de Iraq.\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nEu veño da India.\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nSon de Byram, Nova Jersey.\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nVivo en Birmingham, Inglaterra.\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois. La Paz, Bolivia. Nairobi, Quenia.\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malaisia. Milán en Italia. Sudáfrica.\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolonia. Xapón. Armenia.\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrasil. Rusia. Botsuana.\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael. Usbequistán. Hong Kong.\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstambul. México.\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee.\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nAo primeiro, cando comecei na Wikipedia en 2008, creei moitos artigos.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nCoido que un deles era sobre unha muller chamada Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nNon había ningún artigo sobre ela, así que... ese foi o meu primeiro artigo.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nLogo esquecín o artigo! E dous ou tres anos despois \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\natopei o artigo. Quedei pampa.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMáis de 100.000 persoas leran o artigo.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nUtilizárono para obter información del. Dalgún xeito chegaron ao artigo \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\ne ti sentes que influíches en máis de 100.000 persoas.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nEstaba atemorizada a primeira vez que premín no botón \"Editar\".\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nPensei: \"Meu Deus, vouno estragar todo!\\nNon pode funcionar! Non o podo facer!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nA Wikipedia é un proxecto de código aberto no que cadaquén pode achegar a súa idea \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\npara que logo outra persoa veña e perfeccione esa idea para facela extraordinaria.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nHai milleiros de persoas traballando cada día, cada hora, cada minuto na Wikipedia para mellorala.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nUn factor moi importante é o voluntariado. Esta é unha forma única de ser voluntario.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nConsegue reunir tanto a profesionais coma a afeccionados que comparten unha paixón por un tema en particular.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nXente que tiña opinións diferentes ao principio comeza a colaborar.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nMoito do que poderías supor que unha enorme corporación da internet é capaz de facer \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nestá xestionado por voluntarios coma min.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nNon podes dicir: \"De acordo, eu teño razón, ti estás equivocado, esta é a miña versión do artigo!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nSe hai algún problema de subxectividade, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nentón posiblemente alguén xa marcou o artigo; se non é así, eu podo sinalar o problema.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nTes centos e milleiros de persoas vendo \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\ne corrixindo todo.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nEntón premín no botón e...\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBum! A viaxe comezou e foi fantástica.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nPrimeiro empecei con \"Probabilidade\". \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nO primeiro artigo que comecei foi \"Probabilidade\".\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nUn dos artigos máis importantes que escribín na Wikipedia foi \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\no artigo sobre as feridas por arma branca.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nEscribo sobre a pesca con mosca, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\na historia de Montana, a historia dos parques nacionais, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nColleitas infrautilizadas. Xogadores de xadrez. Biodiversidade.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nHistoria militar. Historia de Armenia. Historia de Roma.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nXuíces. Comunicación. Biografías. Fútbol.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrlanda. Pensilvania. Fotografía, principalmente.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Repostaría, porque me gusta enfornar.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nArmas nucleares e radioactividade \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\ne kaiak en augas bravas.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nExiste unha enorme cantidade de información espallada por aí\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\ne nós estamos reuníndoa toda nun único lugar.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nEstamos ofrecendo coñecemento libre a todas as persoas \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nna súa lingua, para que poidan utilizalo.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nToda a xente sae beneficiada con isto, sexa rica ou pobre.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nAs compañías comerciais teñen motivacións e necesidades diferentes.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nNon recibo ningún salario da Fundación Wikimedia. Tampouco pagan os meus gastos.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nCoido que é moi importante poder dicir claramente: \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\n\"Oe, cando pido os teus cartos, non pido o diñeiro para min...,\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\n...senón que pido os cartos para a Fundación, que é o equipo que apoia esta incrible comunidade da que formo parte\".\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nCreo que a Wikipedia me deu esta oportunidade para marcar a diferenza no mundo.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nÉ coma un investimento para o teu futuro, para o futuro dos teus fillos.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nGrazas\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nO contido deste vídeo está dispoñible baixo a licenza Creative Commons recoñecemento compartir igual v3.0 (http://creativecommons.org/licenses/by-sa/3.0/deed.gl), a menos que se indique o contrario. Esta obra pode atribuírse a: Victor Grigas, Fundación Wikimedia.\\nOs puntos de vista e as opinións expresadas no vídeo pertencen unicamente ás persoas que aparecen nel e non reflicten necesariamente as políticas ou posicións de ningunha compañía, organización ou institución da que a persoa poida ser membro.\\nAs marcas comerciais e os logotipos da Fundación Wikimedia e calquera outra organización non están incluídos baixo os termos desta licenza Creative Commons. As marcas e logotipos da Wikimedia, incluíndo \"Wikipedia\" e o logotipo do quebracabezas en forma de globo son marcas rexistradas da Fundación Wikimedia. Para obter máis información, consulta a nosa política de marcas ou ponte en contacto con nós no enderezo trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nEste vídeo está publicado baixo unha licenza Creative Commons.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nComo a Wikipedia, pode copialo, modificalo e compartilo libremente.',\n", + " 'bytes': 7083,\n", + " 'sha1': 'o1ap1htvkwld3czw1z1hneybexhuvdj',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83915918,\n", + " 'timestamp': '2012-11-29T19:25:07Z',\n", + " 'user': {'id': 305204, 'text': 'Seddon'},\n", + " 'page': {'id': 22921144,\n", + " 'title': 'The Impact Of Wikipedia.webm.id.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 Wikipedia bersifat nirlaba, namun menempati urutan website ke-5 di dunia. Semua artikel di Wikipedia ditulis oleh sukarelawan. ...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia bersifat nirlaba, namun menempati urutan website ke-5 di dunia. Semua artikel di Wikipedia ditulis oleh sukarelawan.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nKami akan mengenalkan beberapa dari mereka kepada anda...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nSaya dari Nepal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nSaya dari Irak\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nSaya berasal dari India\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nSaya dari Byram, New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nSaya tinggal di Birmingham, Inggris\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La Paz, Bolivia -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malaysia -- Milan di Italia -- Afrika Selatan\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolandia -- Jepang -- Armenia\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrazil -- Rusia -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael -- Uzbekistan -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul -- Meksiko\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nAwal saya bergabung di Wikipedia pada 2008, saya memulai banyak artikel.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nSalah satunya, saya menulis tentang seorang wanita bernama Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nKita tidak memiliki artikel tentang dia, jadi -- dan ini adalah artikel pertama saya.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nSetelah itu saya lupa artikel tersebut! Sekitar dua atau tiga tahun kemudian, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nSaya tidak segaja mengunjungi artikel ini. Saya terkejut.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nLebih dari 100.000 orang membaca artikel ini.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nMereka menggunakannya, lalu mereka mendapat informasi dari artikel ini. Mereka mengunjungi artikel ini, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nrasanya seperti anda memberi dampak dan mempengaruhi lebih dari 100.000 orang.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nSaya benar-benar merasa takut ketika saya menekan tombol \\'edit\\' untuk pertama kalinya.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nSaya berpikir, \"Ya Tuhan, Saya akan mengacaukan segalanya!\\nItu tidak akan berhasil! Saya tidak bisa melakukannya!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia bersifat \\'open source\\' -- siapapun dapat menyumbangkan idenya. \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nkemudian orang lain datang dan memoles ide itu untuk menjadikannya lebih sempura.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nAda ribuan orang bekerja setiap hari, setiap jam, setiap menit di Wikipedia untuk menyempurnakannya.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nKebanyakan berdasarkan kesukarelaan. Ini adalah cara unik untuk menjadi sukarelawan.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nIni membawa para profesional dan amatir yang memiliki kecintaan pada topik tertentu.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nOrang-orang yang memiliki opini berbeda diawal mulai berkolaborasi.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nBanyak dari anda akan mengira sebuah perusahaan Internet akan menanganinya \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nyang sebenarnya ditangani oleh sukarelawan seperti saya.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nAnda tidak bisa hanya berkata, \"Oke, saya benar, anda salah, ini adalah artikel versi saya!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nJika ada isu memihak, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nmaka seseorang mungkin sudah menandainya dan jika tidak, saya dapat menandainya juga.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nAnda mendapat ratusan dan ribuan orang melihat itu \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\ndan mengkoreksinya.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nKemudian saya menekan tombol dan\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom - perjalanan dimulai dan ini sangat hebat.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nPertama saya memulai dengan \\'Probability\\' \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nArtikel pertama saya adalah \\'Probability\\'.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nSalah satu dari artikel utama yang saya tulis di Wikipedia adalah \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nartikel tentang luka tusuk.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nSaya menulis tentang memancing, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nSejarah Montana, sejarah Taman Nasional, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nTanaman yang kurang dibudidayakan. Pemain catur. Biodiversitas.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nTopik sejarah militer. Sejarah Armenia. Sejarah Romawi.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nHakim-hakim. Komunikasi. Biografi. Sepakbola.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrlandia. Pennsylvania. Umumnya fotografi.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Membuat roti, karena saya senang membuat roti.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nSenjata nuklir dan radioaktivitas, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\ndan mendayung kayak di jeram-jeram.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nSemua informasi ini tersedia tetapi nampaknya tercerai berai\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\ndan kami menempatkannya menjadi di satu tempat.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nKami menawarkan pengetahuan gratis untuk semua orang, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\ndalam bahasa mereka sendiri agar mereka dapat memakainya.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nIni menguntungkan semua orang, baik yang kaya atau yang miskin.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nPerusahaan yang berorientasi pada laba memiliki motivasi dan kebutuhan berbeda.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nDari Yayasan Wikimedia, saya tidak menerima gaji dan saya juga tidak mengeluarkan biaya.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nSaya pikir sangatlah penting bahwa saya dapat mengatakannya dengan cukup jelas, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nLihat! Jika saya meminta uang kepada anda, saya tidak meminta uang untuk diri saya sendiri --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nSaya meminta uang dari Anda untuk Yayasan yang merupakan tim pendukung komunitas hebat ini dimana saya menjadi bagiannya.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nSaya pikir Wikipedia memberi saya kesempatan ini untuk benar-benar membuat perubahan besar di dunia.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nSeperti suatu investasi untuk masa depan Anda, masa depan anak cucu Anda.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nTerima kasih\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nIsi video ini tersedia di bawah Lisensi Creative Commons Attribution-ShareAlike v3.0 (http://creativecommons.org/licenses/by-sa/3.0) kecuali disebutkan lain. Karya ini diatribusikan kepada: Victor Grigas, Yayasan Wikimedia.\\nPandangan dan opini yang dinyatakan dalam video ini semata-mata berasal dari individu yang muncul dalam video dan belum tentu merefleksikan kebijakan atau posisi dari perusahaan, organisasi, atau institusi manapun di mana individu tersebut merupakan anggota.\\nMerek dagang dan logo Yayasan Wikimedia dan organisasi lainnya tidak dimasukkan berdasarkan syarat lisensi Creative Commons ini. Merek dagang dan logo Wikimedia, termasuk \"Wikipedia\" dan logo \"dunia tekateki\", adalah merek dagang terdaftar milik Yayasan Wikimedia. Untuk informasi lebih lanjut, silakan lihat halaman Kebijakan Merek Dagang, http://www.wikimediafoundation.org/wiki/Trademark_Policy atau dengan menghubungi trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nVideo ini dipublikasikan di bawah lisensi Creative Commons.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nSeperti Wikipedia, video ini bebas untuk dikopi, diubah dan dibagikan.',\n", + " 'bytes': 7254,\n", + " 'sha1': 'psoe8hx672l8u5yh8348yfw4ydgb0ym',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 620805795,\n", + " 'timestamp': '2022-01-11T06:18:56Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 22924515,\n", + " 'title': 'British Grenadiers.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Undo revision 620795503 by [[Special:Contributions/122.2.108.17|122.2.108.17]] ([[User talk:122.2.108.17|talk]])',\n", + " 'text': \"1\\n00:00:23,779 --> 00:00:29,865\\nSome talk of Alexander,\\nand some of Hercules\\n\\n2\\n00:00:29,957 --> 00:00:35,962\\nOf Hector and Lysander,\\nand such great names as these.\\n\\n3\\n00:00:36,000 --> 00:00:41,803\\nBut of all the world's great heroes,\\nthere's none that can compare.\\n\\n4\\n00:00:41,826 --> 00:00:47,752\\nWith a tow, row, row, row, row, row,\\nto the British Grenadiers.\\n\\n5\\n00:00:47,787 --> 00:00:53,936\\nWhene'er we are commanded\\nto storm the palisades,\\n\\n6\\n00:00:54,000 --> 00:00:59,852\\nOur leaders march with fusees,\\nand we with hand grenades.\\n\\n7\\n00:00:59,910 --> 00:01:05,931\\nWe throw them from the glacis,\\nabout the enemies' ears.\\n\\n8\\n00:01:06,000 --> 00:01:11,867\\nWith a tow, row, row, row, row, row,\\nto the British Grenadiers.\\n\\n9\\n00:01:11,940 --> 00:01:17,764\\nThen let us fill a bumper,\\nand drink the health of those\\n\\n10\\n00:01:17,813 --> 00:01:23,761\\nWho carry caps and pouches,\\nand wear the loupèd clothes.\\n\\n11\\n00:01:23,794 --> 00:01:29,759\\nMay they and their commanders\\nlive happy all their years.\\n\\n12\\n00:01:29,793 --> 00:01:36,293\\nWith a tow, row, row, row, row, row,\\nto the British Grenadiers.\",\n", + " 'bytes': 1094,\n", + " 'sha1': 'sdf0vr9k5j6a9nfr77g4c62vc3lvai2',\n", + " 'parent_id': 620795503,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83969120,\n", + " 'timestamp': '2012-11-30T14:46:30Z',\n", + " 'user': {'id': 1476220, 'text': 'Psubhashish'},\n", + " 'page': {'id': 22930443,\n", + " 'title': 'The Impact Of Wikipedia.webm.or.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"ongoing editing, please don't edit for now\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nଉଇକିପିଡ଼ିଆ ଏକ ଅଣଲାଭକାରୀ ସଙ୍ଗଠନ, ତ\\u200cଥାପି ଏହା ବିଶ୍ୱର ୫ମ ଜଣାଶୁଣା ୱେବସାଇଟ । ଏଥିରେ ଥିବା ସମସ୍ତ ପ୍ରସଙ୍ଗ ଲୋକେ ମାଗଣାରେ ଓ ସ୍ୱେଚ୍ଛାରେ ଲେଖିଥାନ୍ତି ।\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nଆମେ ସେମାନଙ୍କ ଭିତରୁ କେତେଜଣଙ୍କୁ ଆପଣଙ୍କ ଷ ପରିଚିତ କରାଇବୁ..\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nମୋ ଘର ନେପାଳ\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nମୋ ଘର ଇରାକ\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nମୁଁ ଭାରତରୁ ଆସିଛି\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nମୁଁ ବାଇରାମ, ନିଉ ଜର୍ସିରୁ ଆସିଛି\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nମୁଁ ଇଂଲଣ୍ଡର ବର୍ମିଙ୍ଗ\\u200cହାମରେ ରହେ\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nଇଲିନୋଇ, ଚିକାଗୋ -- ଲା ପାଜ, ବଲିଭିଅ -- ନାଇରୋବି, କେନିଆ\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nକୁଆଲାଲାମ\\u200cପୁର, ମାଳ\\u200cୟ -- ଇଟାଲିର ମିଲାନ -- ଦକ୍ଷିଣ ଆଫ୍ରିକା\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nପୋଲାଣ୍ଡ -- ଜାପାନ -- ଆର୍ମେନିଆ\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nବ୍ରାଜିଲ -- ରୁଷିଆ -- ବୋଟସ୍ୱାନା\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nଇସ୍ରାଏଲ -- ଉଜବେକିସ୍ଥାନ -- ହ\\u200cଙ୍ଗ କଙ୍ଗ\\n\\n\\n00:00:30,501 --> 00:00:31,000\\nଇସ୍ତାନ\\u200cବୁଲ -- ମେକ୍ସିକୋ\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nଚାତାନୁଗା, ଟେନାସି\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\n୨୦୦୮ରେ ପ୍ରଥମେ ଉଇକିପିଡ଼ିଆରେ ଲେଖିବା ଆରମ୍ଭ କଲାବେଳେ ମୁଁ ଅନେକ ପ୍ରସଙ୍ଗ ଲେଖିବା ଆରମ୍ଭ କରିଥିଲି ।\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nତା ଭିତରୁ ଗୋଟେ ବୋଧେ ମାରିଅମ ନୁର ନାମକ ଜଣେ ମହିଳାଙ୍କ ବାବଦରେ\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nWe didn’t have an article about it, so -- and this was my first article.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nSo I forget about it! \\xa0Maybe two or three years later, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nI passed by this article. \\xa0I was shocked. \\xa0\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMore than 100,000 people read this article. \\xa0\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nThey used it, so they got their information from this article. \\xa0They passed by this article, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nso you feel like you affected and influenced more than 100,000 people.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nI was just so terrified when I pushed the \\'edit\\' button for the first time. \\xa0\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nI thought, “Oh my god, I’m going to ruin everything!\\nThat can’t work! \\xa0I can’t do it!”\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia is an \\'open source\\' -- where everyone can throw in his or her idea \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nand then somebody else comes in and polishes on that idea to make it superb.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nThere are thousands of people working every day, every hour, every minute on Wikipedia to improve it.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nA lot of it is the volunteerism. \\xa0This is a unique way to volunteer.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nIt brings together both professionals and amateurs who have a love for a particular topic.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nThe people who had different opinions in the beginning start to collaborate.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nA lot of what you would assume a large Internet corporation would handle \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nis handled by volunteers like me.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nYou just can’t say, “Okay, I’m right, you’re wrong, this is my version of the article!”\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nIf there’s an issue of bias, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nthen somebody has probably flagged it and if not, now I can flag it too.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nYou’ve got hundreds and thousands of people seeing that \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nand correcting it.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nAnd then I push the button and\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom - The journey started and it was great.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nFirst I started with \\'Probability\\'. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nThe first article I started is \\'Probability\\'.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nOne of my main articles I wrote on Wikipedia was \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nthe article on stab wounds.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nI write about fly fishing, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontana history, National Park history, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nUnderutilized crops. Chess players. Biodiversity.\\xa0\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nMilitary history topics. Armenian history. Roman history.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nJudges. Communication. Biographies. Football.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIreland. Pennsylvania. Mostly photography.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Baking, because I love to bake.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nNuclear weapons and radioactivity, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nand whitewater kayaking.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nThere’s all this information that’s out there that’s kind of scattered\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nand we’re putting it together in one place.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nWe are offering free knowledge for everyone, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nin their own language so they can use it.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nEveryone is benefited by this whether they are rich or poor.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nFor-profit companies have different motivations and different requirements. \\xa0\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nFrom the Wikimedia Foundation, I don’t take a salary and I also don’t even take expenses.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\n\\xa0I think it’s very important that I’m able to say quite clearly, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nLook, when I’m asking you for money, I’m not asking you for money for myself --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nI’m asking you for money for the Foundation which is the team who supports this amazing community that I’m a part of.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nI think Wikipedia gave me this chance to really make a huge difference in the world.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nIt’s like an investment for your future, for your children’s future.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nThank You\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nThe content contained in this video is available under the Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) unless otherwise stated. This work is attributable to: Victor Grigas, Wikimedia Foundation.\\nThe views and opinions expressed in this video are solely those of the individuals appearing in the video and do not necessarily reflect the policies or positions of any company, organization, or institution the individual may be a member of.\\nThe trademarks and logos of the Wikimedia Foundation and any other organization are not included under the terms of this Creative Commons license. Wikimedia trademarks and logos, including \"Wikipedia\" and the puzzle globe logo, are registered trademarks of the Wikimedia Foundation. For more information, please see our Trademark Policy page,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nThis video is published under a Creative Commons license.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nLike Wikipedia, it is free to copy, remix & share.',\n", + " 'bytes': 8055,\n", + " 'sha1': '8l2x3j9uwdw8u2gz98nj2fwzbkomn8h',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83983137,\n", + " 'timestamp': '2012-11-30T19:08:47Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 22933682,\n", + " 'title': 'The Impact Of Wikipedia.webm.kk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 Уикипедия - бұл коммерциялық емес жоба, соған қарамастан ол - әлемдегі ...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nУикипедия - бұл коммерциялық емес жоба, соған қарамастан ол - әлемдегі ең танымал 5-ші сайт. Уикипедиядағы барлық мақалалар ерікті адамдармен жазылады\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nБіз сіздерді солардың ішінен кейбірімен таныстырғымыз келеді...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nМен Непалданмын\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nМен Ирактанмын\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nМен Үндістаннан келдім\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nМен Нью-Джерсидегі Байрамнанмын\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nМен Бирмингемде тұрам, Англия\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nЧикаго, Иллинойс — Ла-Пас, Боливия — Найроби, Кения\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nКуала Лумпур, Малайзия — Милан, Италия — Оңтүстік Африка\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nПольша — Жапония — Армения\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nБразилия — Ресей — Ботсвана\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nИзраиль — Өзбекстан — Гонконг\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nСтамбұл (Түркия) — Мексика\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nЧаттануга, Теннесси штаты\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nУикипедияға 2008 жылы алғаш қосылған кезімде, мен көптеген мақала бастадым.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nСолардың бірі, қателеспесем, Мәриям Нуар есімді ханым туралы болатын.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nБізде бұл кісі туралы мақала болмаған еді және бұл менің алғашқы мақалам болды.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nАртынан мен ол жөнінде ұмытып кеттім! Екі әлде үш жылдан соң ба, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nмен бұл мақаланы қайтадан кездестірдім. Сол кезде мен қатты таң қалдым.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nБұл мақаланы жүз мыңнан астам адам оқыған.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nОлар мақаланы қолданған, одан өздеріне қажет ақпарат алған. Олар мұны оқыған, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nмұны көргеннен кейін сен өзіңді жүз мыңнан астам адамға көмегің тиіп, оларға әсер еткеніңдей сезесің.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nЕң бірінші рет \"өңдеу\" батырмасын басқанымда қатты қорықтым.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\n\"Құдайым-ау, мен бәрін бүлдірем ғой! Бұл іске аспайды! Мен бұлай жасай алмаймын!\"-деп ойладым.\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nУикипедия - ашық жоба, мұнда әркім өз идеясын ұсына алады \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nжәне артынан басқа біреу бұл идеяны іліп әкетіп, кемеліне жеткізіп, әрлеп береді.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nМыңдаған адамдар күн сайын, сағат сайын, әрбір минут сайын Уикипедияны жақсарту үшін тер төгуде.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nСолардың басым көпшілігі - ерікті адамдар. Бұл волонтерлықтықтың бірегей әдісі.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nОл белгілі бір бір тақырыпқа құмарлығы бар әуесқойлардың да, кәсіпқойлардың да басын біріктіреді.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nБастапқыда өзгеше пікірде болған адамдар кейін қол ұшын бере бастайды.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nСіз ірі интернет-корпорациямен басқарылып отыр-ау деп пайымдайтын нәрсенің көбін \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nмына мен сияқты ерікті жандар орындауда.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nСіз жай ғана \"Жарайды, менікі - дұрыс, сіздердікі - бұрыс. Мінекей, мына мақалаға арналған менің нұсқам!\"- деп айта алмайсыз.\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nЕгер қандай да бір ағаттықта күмән бар болса, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nәлдекім бұл жөнінде белгі қоюы мүмкін. Ал егер қоймаса, онда өзім де қоя аламын.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nЖүздеген және мыңдаған адамдар бұл белгіні көреді \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nжәне олқылықты түзейді.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nСол кезде мен батырманы басамын да\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nБум - Саяхат басталып кетті және бұл керемет болды.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nМен алдымен \"Ықтималдықтан\" бастадым. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nМенің алғаш бастаған мақалам \"Ықтималдық\" болатын.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nМенің Уикипедияда жазған мен үшін маңызды мақалаларымның бірі - \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nпышақпен зақымдалған дене жарақаттары туралы еді\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nМен шыбын-шіркей арқылы балық аулау, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nМонтананың тарихы, Ұлттық Парктің тарихы, Йеллоустоун туралы мақалалар жазамын.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nҚолданылмайтын дақылдар. Шахматшылар. Биологиялық әралуандылық.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nӘскери тарих бойынша тақырыптар. Армения тарихы. Рим тарихы.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nСудьялар. Коммуникация. Өмірбаяндар. Футбол.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nИрландия. Пенсильвания. Көбінесе фотосуреттер жөнінде.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Ұннан жасалған тағамдар пісіру, себебі мен пісіргенді ұнатамын.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nЯдролық қару және радиоактивтілік, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nтау суларында каякпен жүзу.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nОсыншама ақпараттың барлығы әйтеуір бір жерде бар, бірақ бөлік-бөлік болып шашырап жатыр.\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nАл біз мұның бәрін бір жерге жинаймыз.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nБіз әрбір адамға еркін әрі шексіз білімді \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nолардың өздерінің ана тілдерінде ұсынамыз. Олар оны сол тілде қолдана алады.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nМейлі бай болсын, мейлі кедей болсын - әрқайсысы бұдан пайда табады.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nКоммерциялық компаниялардың өздерінің түрткі боларлық мақсаттары мен әртүрлі талаптары болады.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nМен Уикимедия қорынан ешқандай да жалақы алмаймын. Сондай-ақ мен ешқандай да шығынға кенеліп жатқаным жоқ.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nМен шын жүректен мына нәрсені айта алам (және бұл өте маңызды деп ойлаймын): \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\n\"Тыңдаңыз, мен сізден ақша сұраған кезде, мен ақшаны өзіме сұрамаймын -\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nМен ақшаны өзім соның мүшесі болып табылатын осындай керемет қоғамдастыққа демеу беретін Уикимедия Қоры үшін сұраймын.\"\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nУикипедия маған бұл әлемде үлкен өзгерістер жасауға мүмкіндік берді деп ойлаймын.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nБұл сізге және сіздің бала-шағаңызға арналған инвестиция секілді.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nРахмет СІЗГЕ!\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nВидеоның ішіндегісі Creative Commons Attribution-ShareAlike (http://creativecommons.org/licenses/by-sa/3.0) лицензиясы аясында қолжетімді (егер басқаша айтылмаған болса). Осы жұмыстың аттрибуциясы: Виктор Григас және Уикимедия Қоры.\\nБұл видеода айтылған көзқарастар мен пікірлер осы видеода көрсетілген тұлғалардың өз сөздері болып табылады және осындағы қайсыбір тұлға мүшесі болып табылатын қандай да бір компанияның, ұйымның немесе басқа да құрылымның саясаты мен позициясын қамтып көрсетуі шарт емес.\\nУикимедия Қоры және басқа да ұйымның сауда белгілері мен логотиптері Creative Commons лицензиясының аясына кірмейді. Wikimedia сауда белгілері мен логотиптері (\"Wikipedia\" және пазлды глобусты қосқанда) Уикимедия Қорының тіркелген сауда белгілері болып табылады. Көбірек мағлұмат үшін біздің Trademark Policy торабын http://www.wikimediafoundation.org/wiki/Trademark_Policy көріңіз немесе trademarks@wikimedia.org мекенжайына хабарласыңыз.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nБұл видео Creative Commons лицензиясы аясында жарияланды.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nУикипедия секілді мұны да қалағаныңызша көшіріп, өңдеп, тарата беруіңізге болады.',\n", + " 'bytes': 11374,\n", + " 'sha1': '3rhbvn5hzljwfrigicdq10f3lj2my1w',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 247602800,\n", + " 'timestamp': '2017-06-13T03:40:09Z',\n", + " 'user': {'id': 3520006, 'text': 'Bjankuloski06'},\n", + " 'page': {'id': 22933690,\n", + " 'title': 'The Impact Of Wikipedia.webm.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nВикипедија е непрофитна, но сепак е петта стрнаица на интернет по посетеност. Сите статии се напишани од доброволци.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nБи сакале да ве запознаеме со некои од нив...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nЈас сум од Непал\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nЈас сум од Ирак\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nЈас сум од Индија\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nЈас сум од Бирам, Њу Џерси\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nЖивеам во Бирмингем, Англија\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nЧикаго, Илиноис -- Ла Паз, Боливија -- Најроби, Кенија\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nКуала Лумпур, Малезија -- Милано во Италија -- Јужна Африка\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nПолска -- Јапонија -- Ерменија\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nБразил -- Русија -- Боцвана\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nИзраел -- Узбекистан -- Хонгконг\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nИнстанбул -- Мексико\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nЧатануга, Тенеси\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nНа почетокот, кога се зачленив на Википедија во 2008 г., почнав многу статии.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nЕдна од нив беше за жена по име Маријам Нур.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nДотогаш немавме страница за неа -- така ја започнав мојата прва статија.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nИ ја заборавив! По три-четири години \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nНаидов на статијата. Се запрепастив.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nЈа прочитале преку 100.000 луѓе. \\xa0\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nЈа користеле, добивале информации од неа. Ја читале, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nпа затоа добиваш впечаток дека имаш извршено влијание врз преку 100.000 луѓе.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nДоживеав уплав кога за прв пат стиснав на копчето „уреди“. \\xa0\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nСи реков, „Боже, па јас сè ќе расипам!\\nНе може вака, не можам!“\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nВикипедија има „отворен код“ -- каде секој може да нафрли свои идеи \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nа потоа доаѓа некој трет и ја усовршува идејата, доведувајќи ја до извонредност.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nНа Википедија работат илјадници луѓе работат секој ден, секој час, секоја минута -- со желба да ја подобрат.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nНајвеќето од тоа е доброволно. Посебен начин да дадете нешто од себе.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nГи зближува стручните и нестручните што имаат интерес во некоја дема.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nОние што на почетокот имале различни мислења почнуваат да соработуваат.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nМногу нешта што би ги работело една голема интернет-корпорација \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nтука ги прават доброволци како мене.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nНе можете туку-така да речете „Е па, јас сум во право, а ти си во грешка. Ова е мојата верзија на статијата!“\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nАко постои проблем со пристрасност, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nнекој веројатно ја означил статијата како таква -- ако не, тогаш јас ќе ја означам.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nСтотици илјадници луѓе ќе го видат тоа \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nи неисправностите ќе се поправат.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nИ тогаш стиснав на копчето и\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nБум - Патешествието започна и беше феноменално.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nПрво почнав со „Веројатност“. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nПрвата статија што ја почнав е „Веројатност“.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nМеѓу поважните статии што ги напишав на Википедија е \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nстатијата за убодни рани.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nПишувам за мушичарење, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nИсторија на Монтана, Историја на националните паркови, Јелоустоун.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nЗапоставени земјоделски култури. Шахисти. Биоразновидност.\\xa0\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nТеми од воената историја. Историја на Ерменија. Историја на Рим.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nСудии. Комуникации. Биографии. Фудбал.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nИрска. Пенсилванија. Претежно фотографија.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nПинк Флојд. Пекарство, бидејќи многу сакам да правам печива.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nАтомско оружје и радиоактивност, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nи кајакарство на брзи води.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nСите тие информации постојат некаде, но расфрлани се на парчиња,\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nа пак ние ги собираме и ги ставаме на едно место.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nНудиме бесплатни знаења за сите, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nна нивниот мајчин јазик, за да можат да ги користат.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nСекој има полза од ова, било да се богати или сиромашни.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nФирмите што работат за профит имаат поинакви цели и други потреби.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nОд Фондацијата Викимедија не добивам плата, дури ни надоместок за трошоци.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nСметам дека е многу важно што можам да се изјаснам, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nКога замолувам за паричен придонес, не барам за себе --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nЗамолувам да одвоите по нешто за Фондацијата -- екипата што ја поддржува оаа чудесна заедница во која членувам.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nМислам дека Википедија ми даде шанса да имам големо влијание во светот.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nКако своевидно вложување во иднината -- и вашата и онаа на вашите деца.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nВи благодарам\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nСодржината на снимкава се нуди под лиценцата Криејтив комонс Наведи извор-Сподели под исти услови 3.0 (http://creativecommons.org/licenses/by-sa/3.0/deed.mk) освен ако не е посочено поинаку. Припишувајте го на: Виктор Григас, Фондација Викимедија.\\nМислењата и гледиштата изразени на снимкава исклучиво им припаѓаат на поединците што ги искажуваат, и не мора да значи дека ги одразува ставовите на било која фирма, организација или установа во која членува поединецот.\\nЗаштитените знаци и логоата на Фондацијата Викимедија и секоја друга организација не подлежат на условите на лиценцата на Криејтив комонс. Заштитените знаци и логоата, вклучувајќи го „Wikipedia“ и логото со топчеста сложувалка, се правно заштитени знаци на Фондацијата Викимедија. Повеќе информации можете да најдете на нашата страница\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy или обратете се на trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nСнимкава е издадена под лиценца на Криејтив комонс.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nКако и самата Википедија, снимкава слободно може да се умножува, преработува и споделува.',\n", + " 'bytes': 10181,\n", + " 'sha1': 'cx8eciku4bv5q6l44dba5wqw3dd665o',\n", + " 'parent_id': 83983179,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83983269,\n", + " 'timestamp': '2012-11-30T19:11:39Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 22933701,\n", + " 'title': 'The Impact Of Wikipedia.webm.pa.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 ਵਿਕੀਪੀਡੀਆ ਗੈਰ-ਨਫ਼ਾ ਵੈੱਬਸਾਈਟ ਹੈ ਪਰ ਦੁਨੀਆਂ ਵਿੱਚ ੫ਵ...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nਵਿਕੀਪੀਡੀਆ ਗੈਰ-ਨਫ਼ਾ ਵੈੱਬਸਾਈਟ ਹੈ ਪਰ ਦੁਨੀਆਂ ਵਿੱਚ ੫ਵੇਂ ਨੰਬਰ \\'ਤੇ ਹੈ। ਵਿਕੀਪੀਡੀਆ ਵਿੱਚ ਸਾਰੇ ਲੇਖ ਸਵੈਸੇਵਕਾਂ ਦੁਆਰਾ ਲਿਖੇ ਜਾਂਦੇ ਹਨ।\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nਅਸੀਂ ਇਨ੍ਹਾਂ ਵਿੱਚੋਂ ਕੁਝ ਦੀ ਜਾਣ-ਪਛਾਣ ਤੁਹਾਡੇ ਨਾਲ ਕਰਾਉਣਾ ਚਾਹੁੰਦੇ ਹਾਂ...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nਮੈਂ ਨੇਪਾਲ ਤੋਂ ਹਾਂ\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nਮੈਂ ਇਰਾਕ ਤੋਂ ਹਾਂ\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nਮੈਂ ਭਾਰਤ ਤੋਂ ਆ ਰਿਹਾ ਹਾਂ\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nਮੈਂ ਬਾਇਰੈਮ, ਨਿਊ ਜਰਸੀ ਤੋਂ ਹਾਂ\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nਮੈਂ ਬਰਮਿੰਘਮ, ਇੰਗਲੈਂਡ ਵਿੱਚ ਰਹਿੰਦਾ ਹਾਂ\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nਸ਼ਿਕਾਗੋ, ਇਲੀਨਾਏ -- ਲਾ ਪਾਸ, ਬੋਲੀਵੀਆ -- ਨੈਰੋਬੀ, ਕੀਨੀਆ\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nਕੁਆਲਾ ਲੁੰਪੁਰ, ਮਲੇਸ਼ੀਆ -- ਇਟਲੀ ਵਿੱਚ ਮਿਲਾਨ -- ਦੱਖਣੀ ਅਫ਼ਰੀਕਾ\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nਪੋਲੈਂਡ -- ਜਪਾਨ -- ਅਰਮੀਨੀਆ\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nਬ੍ਰਾਜ਼ੀਲ -- ਰੂਸ -- ਬਾਤਸਵਾਨਾ\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nਇਜ਼ਰਾਈਲ -- ਉਜ਼ਬੇਕਿਸਤਾਨ -- ਹਾਂਗਕਾਂਗ\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nਇਸਤਾਂਬੁਲ -- ਮੈਕਸੀਕੋ\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nਚਾਟਾਨੂਗਾ, ਟੇਨੈਸੀ\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\n੨੦੦੮ ਵਿੱਚ ਵਿਕੀਪੀਡੀਆ ਦੇ ਮੈਂਬਰ ਬਣਨ ਦੇ ਅਰੰਭ ਵਿੱਚ ਮੈਂ ਬਹੁਤ ਸਾਰੇ ਲੇਖ ਲਿਖਣੇ ਸ਼ੁਰੂ ਕੀਤੇ।\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nਉਹਨਾਂ ਵਿੱਚੋਂ ਇੱਕ, ਮੈਨੂੰ ਲੱਗਦਾ ਹੈ, ਮਰੀਅਮ ਨੂਰ ਨਾਂ ਦੀ ਔਰਤ ਬਾਰੇ ਸੀ।\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nਉਸ ਬਾਰੇ ਸਾਡੇ ਕੋਲ ਕੋਈ ਲੇਖ ਨਹੀਂ ਸੀ, ਇਸ ਕਰਕੇ -- ਅਤੇ ਇਹ ਮੇਰਾ ਪਹਿਲਾ ਲੇਖ ਸੀ।\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nਫੇਰ ਮੈਂ ਇਸ ਬਾਰੇ ਭੁੱਲ ਗਿਆ! ਸ਼ਾਇਦ ਦੋ ਜਾਂ ਤਿੰਨ ਸਾਲਾਂ ਮਗਰੋਂ, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nਮੈਂ ਇਸ ਲੇਖ ਉੱਤੇ ਗਿਆ। ਮੈਂ ਦੰਗ ਰਹਿ ਗਿਆ।\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\n੧੦੦,੦੦੦ ਤੋਂ ਵੱਧ ਲੋਕਾਂ ਨੇ ਇਹ ਲੇਖ ਪੜ੍ਹਿਆ ਸੀ।\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nਉਹਨਾਂ ਨੇ ਇਸਨੂੰ ਵਰਤਿਆ, ਸੋ ਉਹਨਾਂ ਨੇ ਇਸ ਲੇਖ ਤੋਂ ਜਾਣਕਾਰੀ ਪ੍ਰਾਪਤ ਕੀਤੀ। ਉਹ ਇਸ ਲੇਖ ਉੱਤੇ ਆਏ, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nਸੋ ਤੁਹਾਨੂੰ ਲੱਗਦਾ ਹੈ ਕਿ ਤੁਸੀਂ ੧੦੦,੦੦੦ ਤੋਂ ਵੱਧ ਲੋਕਾਂ ਨੂੰ ਪੋਹਿਆ ਹੈ ਅਤੇ ਉਹਨਾਂ ਉੱਤੇ ਪ੍ਰਭਾਵ ਪਾਇਆ ਹੈ।\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nਮੈਨੂੰ ਬਹੁਤ ਡਰ ਲੱਗ ਰਿਹਾ ਸੀ ਜਦੋਂ ਮੈਂ ਪਹਿਲੀ ਵਾਰ \\'ਸੋਧ\\' ਬਟਨ ਦੱਬਿਆ।\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nਮੈਂ ਸੋਚਿਆ, \"ਹਾਏ ਰੱਬਾ! ਮੈਂ ਸਭ ਕੁਝ ਉਜਾੜ ਦਿਆਂਗਾ!\\nਇਹ ਨਹੀਂ ਕੰਮ ਕਰ ਸਕਦਾ! ਮੈਂ ਇਹ ਨਹੀਂ ਕਰ ਸਕਦਾ!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nਵਿਕੀਪੀਡੀਆ ਇੱਕ \\'ਜ਼ਾਹਰ-ਸਰੋਤ\\' ਹੈ - ਜਿੱਥੇ ਹਰ ਕੋਈ ਆਪਣੇ ਵਿਚਾਰ ਦੇ ਸਕਦਾ ਹੈ \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nਅਤੇ ਫੇਰ ਕੋਈ ਹੋਰ ਆਉਂਦਾ ਹੈ ਅਤੇ ਉਸ ਵਿਚਾਰ ਨੂੰ ਸ਼ਾਨਦਾਰ ਬਨਾਉਣ ਲਈ ਹੋਰ ਲਿਸ਼ਕਾਉਂਦਾ ਹੈ।\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nਵਿਕੀਪੀਡੀਆ ਨੂੰ ਸੁਧਾਰਣ ਲਈ ਹਰ ਰੋਜ਼, ਹਰ ਘੰਟੇ, ਹਰ ਮਿੰਟ ਹਜ਼ਾਰਾਂ ਲੋਕ ਕੰਮ ਕਰ ਰਹੇ ਹੁੰਦੇ ਹਨ।\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nਇਸਦਾ ਬਹੁਤਾ ਹਿੱਸਾ ਸਵੈਸੇਵਾ ਹੈ। ਇਹ ਸਵੈਸੇਵਾ ਕਰਨ ਦਾ ਇੱਕ ਅਨੋਖਾ ਤਰੀਕਾ ਹੈ।\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nਇਹ ਪੇਸ਼ਾਵਰ ਅਤੇ ਗ਼ੈਰਪੇਸ਼ਾਵਰ ਦੋਹਾਂ ਧਿਰਿਆਂ ਦੇ ਲੋਕਾਂ ਨੂੰ, ਜਿਹਨਾਂ ਦੀ ਕਿਸੇ ਖ਼ਾਸ ਵਿਸ਼ੇ ਵਿੱਚ ਦਿਲਚਸਪੀ ਹੁੰਦੀ ਹੈ, ਨੂੰ ਇੱਕੋ ਥਾਂ \\'ਤੇ ਲੈ ਕੇ ਆਉਂਦਾ ਹੈ।\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nਉਹ ਲੋਕ, ਜਿਹਨਾਂ ਦੇ ਅਰੰਭ ਵਿੱਚ ਨਿਖੜਵੇਂ ਵਿਚਾਰ ਸਨ, ਨੇ ਮਿਲਵਰਤ ਕੇ ਕੰਮ ਕਰਨਾ ਸ਼ੁਰੂ ਕਰ ਦਿੱਤਾ।\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nਇਹਦੇ ਵਿੱਚੋਂ ਬਹੁਤਾ ਕੁਝ, ਜੋ ਤੁਸੀਂ ਸੋਚਦੇ ਹੋ ਕਿ ਕੋਈ ਇੰਟਰਨੈੱਟ ਕੰਪਨੀ ਸੰਭਾਲ ਰਹੀ ਹੈ, \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nਮੇਰੇ ਵਰਗੇ ਸਵੈਸੇਵਕਾਂ ਦੁਆਰਾ ਸੰਭਾਲਿਆ ਜਾਂਦਾ ਹੈ।\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nਤੁਸੀਂ ਇਹ ਬਿਲਕੁਲ ਨਹੀਂ ਕਹਿ ਸਕਦੇ, \"ਮੈਂ ਠੀਕ ਹਾਂ, ਤੁਸੀਂ ਗਲਤ ਹੋ, ਇਹ ਇਸ ਲੇਖ ਦਾ ਮੇਰਾ ਤਰਜਮਾ ਹੈ!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nਜੇਕਰ ਪੱਖ-ਪਾਤ ਦਾ ਕੋਈ ਮੁੱਦਾ ਹੁੰਦਾ ਹੈ \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nਤਾਂ ਕੋਈ ਇਸ ਵੱਲ ਇਸ਼ਾਰਾ ਕਰ ਚੁੱਕਾ ਹੁੰਦਾ ਹੈ ਅਤੇ ਜੇਕਰ ਨਹੀਂ ਤਾਂ ਹੁਣ ਮੈਂ ਵੀ ਇਸ ਵੱਲ ਉਂਗਲ ਉਠਾ ਸਕਦਾ ਹਾਂ।\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nਤੁਹਾਡੇ ਕੋਲ ਹਜ਼ਾਰਾਂ ਅਤੇ ਲੱਖਾਂ ਲੋਕ ਹੁੰਦੇ ਹਨ ਜੋ ਇਹ ਵੇਖਦੇ ਹਨ \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nਅਤੇ ਇਸਨੂੰ ਸਹੀ ਕਰਦੇ ਹਨ।\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nਅਤੇ ਫੇਰ ਮੈਂ ਬਟਨ ਦਬਾਉਂਦਾ ਹਾਂ ਅਤੇ\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nਠਾਹ - ਸਫ਼ਰ ਸ਼ੁਰੂ ਹੋਇਆ ਅਤੇ ਇਹ ਬਹੁਤ ਵਧੀਆ ਸੀ।\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nਸਭ ਤੋਂ ਪਹਿਲਾਂ ਮੈਂ \\'ਹੋਣਯੋਗਤਾ\\' ਨਾਲ ਸ਼ੁਰੂ ਕੀਤੀ। \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nਮੈਂ ਸਭ ਤੋਂ ਪਹਿਲਾ ਲੇਖ \"ਹੋਣਯੋਗਤਾ\" \\'ਤੇ ਲਿਖਿਆ।\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nਮੇਰੇ ਦੁਆਰਾ ਵਿਕੀਪੀਡੀਆ ਉੱਤੇ ਲਿਖੇ ਗਏ ਮੁੱਖ ਲੇਖਾਂ ਵਿੱਚੋਂ ਇੱਕ ਸੀ \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nਛੁਰਾ ਚਾਕੂ ਦੇ ਜ਼ਖ਼ਮਾਂ ਉੱਤੇ ਲੇਖ।\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nਮੈਂ ਮੱਖੀ ਦੇ ਨਾਲ ਮੱਛੀ ਫੜਨ ਬਾਰੇ ਲਿਖਦਾ ਹਾਂ। \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nਮੋਂਟਾਨਾ ਇਤਿਹਾਸ, ਰਾਸ਼ਟਰੀ ਪਾਰਕ ਇਤਿਹਾਸ, ਯੈਲੋਸਟੋਨ।\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nਘੱਟ ਉਪਯੋਗ ਕੀਤੀਆਂ ਜਾਂਦੀਆਂ ਫ਼ਸਲਾਂ। ਸ਼ਤਰੰਜ ਖਿਲਾੜੀ। ਜੀਵ-ਵਿਭਿੰਨਤਾ।\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nਫ਼ੌਜੀ ਇਤਿਹਾਸ ਦੇ ਮਜ਼ਮੂਨ। ਅਰਮੀਨੀਆਈ ਇਤਿਹਾਸ। ਰੋਮਨ ਇਤਿਹਾਸ।\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nਜੱਜ। ਸੰਚਾਰ। ਜੀਵਨੀਆਂ। ਫੁਟਬਾਲ।\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nਆਇਰਲੈਂਡ। ਪੈੱਨਸਿਲਵਾਨੀਆ। ਆਮ ਤੌਰ \\'ਤੇ ਫ਼ੋਟੋਗ੍ਰਾਫ਼ੀ।\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nਪਿੰਕ ਫ਼ਲਾਇਡ। ਨਾਨਬਾਈ ਕਿਉਂਕਿ ਮੈਨੂੰ ਨਾਨਬਾਈ ਕਰਨਾ ਪਸੰਦ ਹੈ।\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nਪ੍ਰਮਾਣੂ ਹਥਿਆਰ ਅਤੇ ਰੇਡੀਓ-ਸੰਵੇਦਨਸ਼ੀਲਤਾ, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nਅਤੇ ਚਿੱਟ-ਪਾਣੀ ਕਯਾਕੀ।\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nਬਾਹਰੀ ਦੁਨੀਆਂ ਵਿੱਚ ਬਹੁਤ ਸਾਰੀ ਜਾਣਕਾਰੀ ਹੈ ਜੋ ਖਿੰਡੀ ਹੋਈ ਹੁੰਦੀ ਹੈ\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nਅਤੇ ਅਸੀਂ ਇਸਨੂੰ ਇੱਕ ਥਾਂ \\'ਤੇ ਇਕੱਠਾ ਕਰ ਰਹੇ ਹਾਂ।\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nਅਸੀਂ ਸਭ ਲਈ ਮੁਫ਼ਤ ਗਿਆਨ ਪੇਸ਼ ਕਰ ਰਹੇ ਹਾਂ, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nਉਹਨਾਂ ਦੀ ਆਪਣੀ ਭਾਸ਼ਾ ਵਿੱਚ ਤਾਂ ਜੋ ਉਹ ਉਸਨੂੰ ਵਰਤ ਸਕਣ।\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nਸਭ ਨੂੰ ਲਾਭ ਪਹੁੰਚਦਾ ਹੈ ਭਾਵੇਂ ਉਹ ਅਮੀਰ ਹੋਵੇ ਜਾਂ ਗਰੀਬ।\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nਨਫ਼ਾਖ਼ੋਰ ਕੰਪਨੀਆਂ ਦੀਆਂ ਵੱਖਰੀਆਂ ਪ੍ਰੇਰਨਾਵਾਂ ਅਤੇ ਵੱਖਰੀਆਂ ਲੋੜਾਂ ਹੁੰਦੀਆਂ ਹਨ।\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nਵਿਕੀਮੀਡੀਆ ਸੰਸਥਾ ਤੋਂ ਮੈਂ ਕੋਈ ਤਨਖ਼ਾਹ ਨਹੀਂ ਲੈਂਦਾ ਅਤੇ ਨਾ ਹੀ ਕੋਈ ਖ਼ਰਚਾ ਲੈਂਦਾ ਹਾਂ।\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nਮੈਨੂੰ ਲੱਗਦਾ ਹੈ ਕਿ ਇਹ ਬਹੁਤ ਜ਼ਰੂਰੀ ਹੈ ਕਿ ਮੈਂ ਚੰਗੀ ਤਰ੍ਹਾਂ ਕਹਿ ਸਕਾਂ, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nਧਿਆਨ ਰੱਖੋ ਕਿ ਜਦੋਂ ਮੈਂ ਤੁਹਾਡੇ ਤੋਂ ਪੈਸੇ ਮੰਗਦਾ ਹਾਂ ਤਾਂ ਮੈਂ ਇਹ ਆਪਣੇ ਲਈ ਨਹੀਂ ਮੰਗਦਾ --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nਮੈਂ ਸੰਸਥਾ ਲਈ ਪੈਸੇ ਮੰਗ ਰਿਹਾ ਹਾਂ ਜੋ ਉਹ ਟੋਲੀ ਹੈ ਜੋ ਇਸ ਵਿਸਮੈਕਾਰ ਭਾਈਚਾਰੇ ਦਾ ਪ੍ਰਬੰਧ ਕਰਦੀ ਹੈ ਜਿਸਦਾ ਮੈਂ ਹਿੱਸਾ ਹਾਂ।\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nਮੈਂ ਸਮਝਦਾ ਹਾਂ ਕਿ ਵਿਕੀਪੀਡੀਆ ਨੇ ਮੈਨੂੰ ਇਸ ਦੁਨੀਆਂ ਵਿੱਚ ਅਸਲ ਵਿੱਚ ਇੱਕ ਭਾਰੀ ਫ਼ਰਕ ਲਿਆਉਣ ਦਾ ਮੌਕਾ ਦਿੱਤਾ ਹੈ।\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nਇਹ ਤੁਹਾਡੇ ਅਤੇ ਤੁਹਾਡੇ ਬੱਚਿਆਂ ਦੇ ਭਵਿੱਖ ਵਾਸਤੇ ਨਿਵੇਸ਼ ਦੇ ਵਾਂਗ ਹੈ।\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nਧੰਨਵਾਦ\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nਇਸ ਵੀਡਿਓ ਵਿਚਲੀ ਵਿਸ਼ਾ-ਵਸਤੂ, ਜਦ ਤੱਕ ਵੱਖਰੇ ਤੌਰ \\'ਤੇ ਨਾ ਦੱਸਿਆ ਹੋਵੇ, Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) ਹੇਠ ਉਪਲਬਧ ਹੈ। ਇਸ ਕੰਮ ਦਾ ਸਿਹਰਾ ਜਾਂਦਾ ਹੈ: ਵਿਕਟਰ ਗ੍ਰਿਗਾਸ, ਵਿਕੀਮੀਡੀਆ ਸੰਸਥਾ।\\nਇਸ ਵੀਡੀਓ ਵਿੱਚ ਪੇਸ਼ ਕੀਤੇ ਗਏ ਖ਼ਿਆਲ ਅਤੇ ਮੱਤਾਂ ਕੇਵਲ ਅਤੇ ਕੇਵਲ ਵਿਖਾਈ ਦੇਣ ਵਾਲੇ ਵਿਅਕਤੀਆਂ ਦੇ ਹਨ ਅਤੇ ਇਹ ਲਾਜ਼ਮੀ ਤੌਰ \\'ਤੇ ਕਿਸੇ ਕੰਪਨੀ, ਸੰਸਥਾ ਜਾਂ ਸਥਾਪਨਾ, ਜਿਸ ਦਾ ਉਹ ਵਿਅਕਤੀ ਮੈਂਬਰ ਹੋ ਸਕਦਾ ਹੈ, ਦੀਆਂ ਨੀਤੀਆਂ ਜਾਂ ਵਿਚਾਰਾਂ ਨੂੰ ਨਹੀਂ ਦਰਸਾਉਂਦੇ।\\nਵਿਕੀਮੀਡੀਆ ਸੰਸਥਾ ਜਾਂ ਹੋਰ ਕਿਸੇ ਸੰਸਥਾ ਦੇ ਮਾਰਕੇ ਅਤੇ ਲੋਗੋ ਇਸ ਕ੍ਰਿਏਟਿਵ ਕਾਮਨਜ਼ ਲਸੰਸ ਦੀਆਂ ਸ਼ਰਤਾਂ ਹੇਠ ਨਹੀਂ ਆਉਂਦੇ। ਵਿਕੀਮੀਡੀਆ ਮਾਰਕਾ ਅਤੇ ਲੋਗੋ, ਸਮੇਤ \"ਵਿਕੀਪੀਡੀਆ\" ਅਤੇ ਬੁਝਾਰਤੀ ਧਰਤ-ਗੋਲਾ ਲੋਗੋ, ਵਿਕੀਮੀਡੀਆ ਸੰਸਥਾ ਦੇ ਇੰਦਰਾਜੀ ਮਾਰਕੇ ਹਨ। ਹੋਰ ਜਾਣਕਾਰੀ ਲਈ ਕਿਰਪਾ ਕਰਕੇ ਸਾਡਾ ਮਾਰਕਾ ਨੀਤੀ ਪੰਨਾ ਵੇਖੋ, http://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org।\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nਇਹ ਵੀਡੀਓ ਇੱਕ ਕ੍ਰਿਏਟਿਵ ਕਾਮਨਜ਼ ਲਸੰਸ ਹੇਠ ਪ੍ਰਕਾਸ਼ਤ ਕੀਤੀ ਗਈ ਹੈ।\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nਵਿਕੀਪੀਡੀਆ ਵਾਂਗ ਇਸਨੂੰ ਵੀ ਨਕਲ ਕਰਨ, ਮੁੜ-ਤਰਤੀਬੀ ਕਰਨ ਅਤੇ ਸਾਂਝਾ ਕਰਨ ਦੀ ਖੁੱਲ੍ਹ ਹੈ।',\n", + " 'bytes': 13749,\n", + " 'sha1': 'p38ros8jl0hx5igv5oaywfw0wazdhza',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 333774551,\n", + " 'timestamp': '2019-01-06T20:49:06Z',\n", + " 'user': {'id': 3011449, 'text': 'Piramidion'},\n", + " 'page': {'id': 22933737,\n", + " 'title': 'The Impact Of Wikipedia.webm.uk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:05,000\\nВікіпедія — сайт неприбутковий, але тримає п'яту позицію за популярністю у світі.<br />Всі статті Вікіпедії написані волонтерами\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nМи хочемо вам представити декого з них\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nЯ з Непалу\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nЯ з Іраку\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nА я з Індії\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nЯ з Байрама, Нью-Джерсі\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nЯ живу в Бірмінгемі, Англія\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nЧикаго, Іллінойс — Ла Пас, Болівія — Найробі, Кенія\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nКуала-Лумпур, Малайзія — Мілан в Італії — Південна Африка\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nПольща — Японія — Вірменія\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nБразилія — Росія — Ботсвана\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nІзраїль — Узбекистан — Гонконг\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nСтамбул -- Мехіко\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nЧаттануга, штат Теннессі\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nНа початку, коли я долучилася до Вкіпедії у 2008 році, я започаткувала багато статей.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nОдна з них була, здається, про жінку на ім'я Маріам Нур\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nУ нас не було статті про неї, тож — і це була моя перша стаття\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nТож я й забула про неї! Може через два чи три роки\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nЯ натрапила на цю статтю. Я була шокована.\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nБільш як 100 000 осіб прочитало цю статтю.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nВони використовували її, а значить, отримували інформацію з цієї статті. Вони натрапляли на неї,\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nтак що ти відчуваєш, що маєш вплив на більш як 100 000 осіб.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nЯ була така нажахана, коли натиснула кнопку «редагувати» вперше!\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nДумалося: «Боже! Зараз я все зруйную! Все буде не так! Я не зможу цього зробити!»\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nВікіпедія — ресурс із «відкритим кодом», де кожен може поділитися своїми ідеями \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nа потім хтось іще прийде, щоби відшліфувати їх і зробити просто незрівнянними.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nТисячі людей працюють щодня, щогодини, щохвилини, щоби покращити Вікіпедію\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nБільшість усього цього робиться на засадах волонтерства.<br />Це — унікальний спосіб стати волонтером.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nЦе об'єднує професіоналів та аматорів, захоплених однаковими темами.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nЛюди, що спершу мали різні погляди, починають співпрацювати.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nБагато з того, що Ви могли б лише припустити, велика інтернет-спільнота може втілити,\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nі втілює з допомогою таких волонтерів, як я\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nВи просто не можете сказати «Добре, я — правий, ти — ні, і ось моя версія статті!»\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nЯкщо є проблема упередженості, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nхтось, ймовірно, вже виставив відповідне застереження, якщо ж ні — я теж можу його виставити.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nЦе бачать сотні й тисячі людей \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nі виправляють.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nПотім я натискаю кнопку і\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nБум! — подорож почалась, і це було прекрасно.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nУ мене все почалося з «Імовірності». \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nПерша написана мною стаття називалась «Імовірність»\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nОднією з основних статей, написаних мною у Вікіпедії, \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nбула стаття про колото-різані рани.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nЯ пишу про риболовлю на приманки, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nісторію Монтани, історію національних парків, Йеллоустоун.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nНедовикористані культури. Шахісти. Біорізноманіття.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nТеми воєнної історії. Вірменська історія. Історія давнього Риму.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nСудді. Зв'язок. Біографії. Футбол.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nІрландія. Пенсильванія. Переважно фотографія.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Випічка, бо я люблю пекти.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nЯдерна зброя й радіоактивність,\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nа також сплави на байдарках.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nВся ота інформація, що є повсюдно, вона наче безладно розкидана,\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nа ми збираємо її докупи в одному місці.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nМи пропонуємо вільні знання для кожного, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nїхніми власними мовами, щоб вони могли ці знання використовувати.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nКожен може отримати з цього користь, незалежно, багата ця людина чи бідна.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nКомерційні компанії мають іншу мотивацію й інші вимоги.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nВід Фонду Вікімедіа я не отримую жодної платні, і навіть витрати вона мені не відшкодовує\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nЯ думаю, що дуже важливо те, що я можу сказати цілком чітко,\\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nдивіться, коли я прошу Вас про гроші, я не прошу про гроші для себе.\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nЯ прошу Вас про гроші для Фонду, який є тією командою, яка підтримує\\nцю прекрасну спільноту, частиною якої я є.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nЯ думаю, що Вікіпедія дала мені шанс дуже, по-справжньому змінити світ.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nЦе наче інвестиція у ваше майбутнє, в майбутнє ваших дітей.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nДякую Вам\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nЗміст цього відео доступний на умовах ліцензії Creative Commons Attribution-ShareAlike v3.0 (http://creativecommons.org/licenses/by-sa/3.0), якщо не вказано інше. Автори цієї роботи: Віктор Грігас (Victor Grigas), Wikimedia Foundation.<br />Погляди і думки, висловлені в цьому відео, є виключно думками осіб, що з'являються на відео і не обов'язково віддзеркалюють політику чи позиції будь-якої компанії, організації або установи, членом якої може бути ця особа.<br />Товарні знаки та логотипи Фонду Вікімедіа та будь-якої іншої організації не підпадають під умови цієї ліцензії Creative Commons. Торгові знаки й логотипи Вікімедіа, в тому числі «Вікіпедія» та логотип «глобуса-пазла», є зареєстрованими торговими знаками Фонду Вікімедіа. Для отримання додаткової інформації, будь ласка, ознайомтеся з нашою сторінкою політики щодо товарних знаків http://www.wikimediafoundation.org/wiki/Trademark_Policy або контактуйте з trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nЦе відео опубліковано на умовах ліцензії Creative Commons\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nЯк і Вікіпедію, його можна вільно копіювати, змінювати й поширювати.\",\n", + " 'bytes': 10267,\n", + " 'sha1': 'athcl338ayccceqpv9i3wkraobgbpwh',\n", + " 'parent_id': 333774423,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 83993016,\n", + " 'timestamp': '2012-11-30T21:52:06Z',\n", + " 'user': {'id': 1183371, 'text': 'Sage Ross (WMF)'},\n", + " 'page': {'id': 22935956,\n", + " 'title': 'Editing basics - Talk pages.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'subtitles',\n", + " 'text': '1\\n00:00:01,658 --> 00:00:04,117\\nThis screencast is about communicating with\\n\\n2\\n00:00:04,117 --> 00:00:07,700\\nother Wikipedia editors using talk pages.\\n\\n3\\n00:00:07,700 --> 00:00:10,242\\nIt covers what talk pages are for,\\n\\n4\\n00:00:10,242 --> 00:00:12,158\\nhow to use them effectively,\\n\\n5\\n00:00:12,158 --> 00:00:13,533\\nand some of the conventions\\n\\n6\\n00:00:13,533 --> 00:00:16,242\\nand etiquette to follow when using them.\\n\\n7\\n00:00:16,242 --> 00:00:17,658\\nTalk pages are the main way\\n\\n8\\n00:00:17,658 --> 00:00:21,240\\neditors communicate with each other on Wikipedia.\\n\\n9\\n00:00:21,240 --> 00:00:22,700\\nEvery page on Wikipedia,\\n\\n10\\n00:00:22,700 --> 00:00:23,950\\nwhether an article\\n\\n11\\n00:00:23,950 --> 00:00:25,617\\nor a WikiProject\\n\\n12\\n00:00:25,617 --> 00:00:26,950\\nor a userpage or something else,\\n\\n13\\n00:00:26,950 --> 00:00:30,200\\nhas a corresponding talk page,\\n\\n14\\n00:00:30,200 --> 00:00:34,200\\nwhich you can get to by clicking the Talk tab.\\n\\n15\\n00:00:34,200 --> 00:00:37,075\\nThe talk page for an article\\n\\n16\\n00:00:37,075 --> 00:00:39,950\\nis where editors discuss proposed changes,\\n\\n17\\n00:00:39,950 --> 00:00:42,241\\nediting disagreements, and other topics\\n\\n18\\n00:00:42,241 --> 00:00:45,200\\nrelated to improving the article.\\n\\n19\\n00:00:45,200 --> 00:00:47,117\\nOther kinds of talk pages are for\\n\\n20\\n00:00:47,117 --> 00:00:51,492\\ndiscussing Wikipedia\\'s policies and processes and the like.\\n\\n21\\n00:00:51,492 --> 00:00:53,700\\nUser talk pages are for\\n\\n22\\n00:00:53,700 --> 00:00:56,989\\ncommunicating with individual editors.\\n\\n23\\n00:00:56,989 --> 00:00:59,742\\nWhen you leave a message on someone\\'s user talk page,\\n\\n24\\n00:00:59,742 --> 00:01:02,242\\nthey will get a notification about the message\\n\\n25\\n00:01:02,242 --> 00:01:05,200\\nthe next time they are on Wikipedia.\\n\\n26\\n00:01:05,200 --> 00:01:07,283\\nTo post a new message on a talk page,\\n\\n27\\n00:01:07,283 --> 00:01:09,700\\nyou can click the \"New section\" tab,\\n\\n28\\n00:01:09,700 --> 00:01:13,658\\nand then add your message and a headline for the new section.\\n\\n29\\n00:01:13,658 --> 00:01:16,283\\nAt the end of your message, you should sign it.\\n\\n30\\n00:01:16,283 --> 00:01:19,408\\nAdding four tildes in the edit window\\n\\n31\\n00:01:19,408 --> 00:01:21,158\\nwill add a signature when you save it,\\n\\n32\\n00:01:21,158 --> 00:01:23,367\\nwith your username and a timestamp\\n\\n33\\n00:01:23,367 --> 00:01:26,075\\nshowing when you left the message.\\n\\n34\\n00:01:26,075 --> 00:01:28,408\\nYou can respond to someone else\\'s comments\\n\\n35\\n00:01:28,408 --> 00:01:32,242\\nby posting beneath them within the same section.\\n\\n36\\n00:01:32,242 --> 00:01:34,783\\nWikipedia discussions use indentation\\n\\n37\\n00:01:34,783 --> 00:01:37,323\\nto created threaded discussions:\\n\\n38\\n00:01:37,323 --> 00:01:41,492\\neach subsequent reply has a different level of indentation.\\n\\n39\\n00:01:41,492 --> 00:01:44,283\\nThe wiki markup for indentation is to\\n\\n40\\n00:01:44,283 --> 00:01:47,408\\nstart a line with one or more colons.\\n\\n41\\n00:01:47,408 --> 00:01:51,367\\nEach colon creates another level of indentation,\\n\\n42\\n00:01:51,367 --> 00:01:55,783\\nso replies should begin with\\n\\n43\\n00:01:55,783 --> 00:01:57,367\\none more colon than the previous comment.\\n\\n44\\n00:01:57,367 --> 00:02:00,367\\nThe keys to effective talk page discussions on Wikipedia\\n\\n45\\n00:02:00,367 --> 00:02:03,617\\nare to be civil and address the article or topic at hand\\n\\n46\\n00:02:03,617 --> 00:02:05,617\\nrather than making it personal,\\n\\n47\\n00:02:05,617 --> 00:02:09,700\\nand to assume good faith on the part of other editors.\\n\\n48\\n00:02:09,700 --> 00:02:12,950\\nEven if you think someone is doing something wrong or silly,\\n\\n49\\n00:02:12,950 --> 00:02:15,658\\nthey almost always have the same goal you do:\\n\\n50\\n00:02:15,658 --> 00:02:17,783\\nto make Wikipedia better.\\n\\n51\\n00:02:17,783 --> 00:02:19,783\\nAnd don\\'t forget to sign your posts\\n\\n52\\n00:02:19,783 --> 00:02:23,200\\nand leave an edit summary each time you add to a discussion.\\n\\n53\\n00:02:23,200 --> 00:02:25,283\\nThe easiest way to keep up\\n\\n54\\n00:02:25,283 --> 00:02:27,033\\nwith discussion you want to watch\\n\\n55\\n00:02:27,033 --> 00:02:30,700\\nis to put the page on your watchlist.\\n\\n56\\n00:02:30,700 --> 00:02:31,908\\nThere are several other ways\\n\\n57\\n00:02:31,908 --> 00:02:33,617\\nof following talk page activity;\\n\\n58\\n00:02:33,617 --> 00:02:37,531\\ncheck out \"Wikipedia:Syndication\" for details.\\n\\n59\\n00:02:37,531 --> 99:59:59,000\\nHappy editing!\\n\\n60\\n99:59:59,000 --> 99:59:59,000',\n", + " 'bytes': 4344,\n", + " 'sha1': 'oq64ww1tcqh8yf432a09q67hv9wba50',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 116672338,\n", + " 'timestamp': '2014-02-17T19:31:36Z',\n", + " 'user': {'id': 18685, 'text': 'Moretti'},\n", + " 'page': {'id': 22938432,\n", + " 'title': 'The Impact of Wikipedia Poongothai Balasubramanian.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'caste --> cost',\n", + " 'text': \"1\\n00:00:01,105 --> 00:00:02,016\\nI love my students.\\n\\n2\\n00:00:03,874 --> 00:00:08,270\\nWhen I worked, more than subjects I loved my students.\\n\\n3\\n00:00:09,288 --> 00:00:11,538\\nMy name is Balasubramanian Poongothai.\\n\\n4\\n00:00:11,56 --> 00:00:13,181\\nI'm coming from India.\\n\\n5\\n00:00:13,721 --> 00:00:20,791\\nI'm a Math teacher for 33 years and I retired from my career,\\n\\n6\\n00:00:22,23 --> 00:00:27,095\\nand after that, I started editing in Wikipedia. \\n\\n7\\n00:00:28,5 --> 00:00:30,641\\nSee, I had gone through a retirement from my career,\\n\\n8\\n00:00:31,135 --> 00:00:33,954\\nso all the 24-hours is for me now. \\n\\n9\\n00:00:34,4 --> 00:00:39,394\\nMy sons are grown up, and they are looking after their life. \\n\\n10\\n00:00:39,841 --> 00:00:47,791\\nI am freed from all the responsibility and the remaining years are completely for me,\\n\\n11\\n00:00:47,841 --> 00:00:49,341\\nand I am enjoying this. \\n\\n12\\n00:00:49,45 --> 00:00:59,78\\nWhen I participate in this Wikipedia, what I feel is I'm engaged, as well as... we leave something for our future generation.\\n\\n13\\n00:01:00,15 --> 00:01:07,679\\nAlgebra, Analytical Geometry, Geometry are the topics which I am comfortable with.\\n\\n14\\n00:01:08,8 --> 00:01:10,788\\nFirst, I started with Probability. \\n\\n15\\n00:01:11,45 --> 00:01:14,169\\nThe first article I started was Probability. \\n\\n16\\n00:01:15,064 --> 00:01:18,998\\nEvery day I am on Wikipedia, I'm simply at home, \\n\\n17\\n00:01:19,445 --> 00:01:27,217\\nso I will do all my personal works, and then I will sit with my netbook and I will edit, \\n\\n18\\n00:01:28,45 --> 00:01:33,769\\nand I will create articles, and I will create articles on Mathematics, \\n\\n19\\n00:01:34,5 --> 00:01:40,31\\nand then Tamil being my mother tongue, and my favorite language, \\n\\n20\\n00:01:41,0 --> 00:01:47,94\\nI edit the articles created by the others for spelling mistakes and grammar. \\n\\n21\\n00:01:48,8 --> 00:01:52,06\\nEveryone is benefited by this whether they are rich or poor. \\n\\n22\\n00:01:52,548 --> 00:01:58,10\\nHere, by a mere click, the whole world is in front of us.\\n\\n23\\n00:01:59,13 --> 00:02:04,34\\nThis is giving the complete information through Internet. \\n\\n24\\n00:02:05,298 --> 00:02:10,71\\nWithout any cost. It is really a great thing.\",\n", + " 'bytes': 2161,\n", + " 'sha1': 'h0cv3uk0egxjr2n8d6zrsufwhtiqz6y',\n", + " 'parent_id': 84003665,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 306023213,\n", + " 'timestamp': '2018-06-12T13:51:29Z',\n", + " 'user': {'id': 4022258, 'text': 'Adam Harangozó'},\n", + " 'page': {'id': 22951378,\n", + " 'title': 'The Impact Of Wikipedia.webm.hu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'missing enter',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nA Wikipédia egy non-profit szervezet, mégis a világ 5. legkeresettebb weboldala. Minden cikkét önkéntes szerkesztők írják.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nSzeretnénk bemutatni néhányat közülük...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nNepáli vagyok\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nIraki vagyok\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nÉn Indiából jöttem\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nÉn Byramban élek, New Jerseyben\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nAngliában élek, Birminghamben.\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La Paz, Bolívia -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malajzia -- Milánó, Olaszország -- Dél-Afrika\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nLengyelország -- Japán -- Örményország\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrazília -- Oroszország -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIzrael -- Üzbegisztán -- Hongkong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIsztambul -- Mexikó\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nAmikor 2008-ban csatlakoztam a Wikipédiához, számos cikket kezdtem írni.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nAz egyikük, ha jól emlékszem, egy Mariam Nour nevű hölgyről szólt.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nNem volt cikkünk róla, így ez lett az első szócikkem.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nAztán el is feledkeztem róla! Talán két vagy három évvel később \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nismét a szemem elé került a cikk. Megdöbbentem! \\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nTöbb mint 100 000 ember olvasta el ezt a cikket. \\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nHasználták, információkhoz jutottak ebből a cikkből. Rábukkantak a cikkre, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nettől úgy érzed, megérintettél, hatással voltál több mint 100 000 emberre.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nOlyan rémült voltam, amikor először nyomtam meg a \"szerkesztés\" gombot. \\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nAzt gondoltam, \"Ó, istenem, elrontok mindent! Nem fog menni! Nem tudom megcsinálni!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nA Wikipédia egy \"nyílt forrás\", melybe bárki bedobhatja a saját ötletét \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nAzután jön valaki más és csiszol rajta egy kicsit, hogy jobb legyen.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nMinden nap, minden órában, minden percben több ezer ember dolgozik a Wikipédia bővítésén.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nLegtöbbjük önként teszi ezt. Ez az önkéntességnek egy egészen egyedi formája.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nÖsszehozza a szakértőket és az amatőröket, akik ugyanazok témákat kedvelik.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nAzok pedig, akiknek kezdetben eltér a véleményük, elkezdenek együttműködni.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nMindazt, amiről azt gondolnád, hogy egy óriási internetes szervezet működteti, \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nugyanolyan önkéntesek végzik, mint én.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nNem mondhatod egyszerűen azt, hogy \"Oké, nekem van igazam, nem neked, ez a cikk az én változatomban jó!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nHa egy szócikk nem kiegyensúlyozott,\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nakkor azt már valaki biztos jelezte, vagy ha nem, akkor én is jelezhetem.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nEmberek százai, ezrei látják\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nés javítják.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nAztán megnyomtam a gombot és\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nbummm - az út megkezdődött, és nagyszerű volt.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nA valószínűségszámítással kezdtem.\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nAz első szócikkem a „valószínűség” volt.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nAz egyik nagyobb cikk, amit megírtam a Wikipédián, \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\na szúrt sebekről szólt.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nA műlegyezésről írok.\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontana történelméről, a yellowstone-i Nemzeti Parkról.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nKihasználatlan növényfajokról. Sakkozókról. Biodiverzitásról. \\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nKatonai történelmi témákról. Örmény történelemről. Római történelemről.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nBírókról. Kommunikációról. Életrajzokról. Fociról.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nÍrországról. Pennsylvaniáról. Leginkább a fotózásról.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nA Pink Floydról. A sütésről, mert szeretek sütni.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nAz atomfegyverekről és radioaktivitásról, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nés a vadvízi evezésről.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nRengeteg információ van a világban szétszóródva\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nés mi összegyűjtjük őket egy helyre.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nSzabad tudást kínálunk mindenkinek, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\na saját nyelvükön, hogy használni is tudják.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nEz mindenki számára hasznos, akár szegény, akár gazdag.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nA nyereség-orientált cégeknek mások a motivációik és mások a követelményeik. \\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nÉn nem kapok fizetést a Wikimédia Alapítványtól, még a költségeimet sem téríti meg.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nAzt hiszem, nagyon fontosnak tartom, hogy őszintén tudom mondani:\\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nNézd, amikor én pénzt kérek, nem magamnak kérem --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nAz Alapítványnak kérem, amelynek a csapata támogatja ezt a csodálatos közösséget, amelynek én is része vagyok.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nAzt hiszem, a Wikipédia lehetőséget adott rá, hogy tényleg tehessek valamit a világért.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nOlyan ez, mint egy befektetés a jövőbe, a gyermeked jövőjébe.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nKöszönjük.\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nA videó tartalma, ahol nincs másképp feltüntetve, a Creative Commons Nevezd meg! – Így add tovább! 3.0 licenc (http://creativecommons.org/licenses/by-sa/3.0) alatt érhető el. A szerzőt így kell feltüntetni: Victor Grigas, Wikimédia Alapítvány.\\nA videóban elhangzó vélemények és nézőpontok a videón megjelenő személyek sajátjai, és nem feltétlenül tükrözik semmilyen cég, szervezet vagy intézmény álláspontját, melynek az a személy a tagja.\\nA Wikimédia Alapítvány és más szervezetek filmen megjelenő védjegyei és logói nem állnak a Creative Commons licenc hatálya alatt. A Wikimédia védjegyek és logók, köztük a „Wikipédia” név és a puzzle-földgömb logó is a Wikimédia Alapítvány bejegyzett védjegyei. További információkért olvasd el az alapítvány védjegyszabályzatát (http://www.wikimediafoundation.org/wiki/Trademark_Policy) vagy írj a trademarks@wikimedia.org e-mail címre.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nEz a videó Creative Commons licenc alatt van.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nAhogyan a Wikipédia maga, ez is szabadon másolható, átalakítható és megosztható.',\n", + " 'bytes': 7214,\n", + " 'sha1': '1pqi5geu3kc37zz7tp1fhmphhiuowmv',\n", + " 'parent_id': 86848608,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84199123,\n", + " 'timestamp': '2012-12-03T21:02:17Z',\n", + " 'user': {'id': 1798617, 'text': 'Chicocvenancio'},\n", + " 'page': {'id': 22984720,\n", + " 'title': 'The Impact of Wikipedia Poongothai Balasubramanian.webm.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,105 --> 00:00:02,016\\nEu amo meus alunos.\\n\\n2\\n00:00:03,874 --> 00:00:08,270\\nQuando trabalhava, mais que as matérias, eu amava os meus alunos.\\n\\n\\n3\\n00:00:09,288 --> 00:00:11,538\\nMeu nome é Balasubramanian Poongothai.\\n\\n4\\n00:00:11,56 --> 00:00:13,181\\nEu venho da Índia.\\n\\n5\\n00:00:13,721 --> 00:00:20,791\\nFui professora de matemática por 33 anos e estou aposentada,\\n\\n6\\n00:00:22,23 --> 00:00:27,095\\ne depois disso, comecei a editar na Wikipédia.\\n\\n7\\n00:00:28,5 --> 00:00:30,641\\nVeja, eu me aposentei.\\n\\n8\\n00:00:31,135 --> 00:00:33,954\\nEntão todas as 24 horas são para mim agora.\\n\\n9\\n00:00:34,4 --> 00:00:39,394\\nMeus filhos cresceram e estão cuidando de suas vidas.\\n\\n10\\n00:00:39,841 --> 00:00:47,791\\nEstou livre de todas responsabilidade e os anos que restam são completamente para mim.\\n\\n11\\n00:00:47,841 --> 00:00:49,341\\nE eu estou gostando disso.\\n\\n12\\n00:00:49,45 --> 00:00:59,78\\nQuando eu participo nessa Wikipédia, o que eu sinto é que estou engajada, e também... nós deixamos algo para a futura geração.\\n\\n13\\n00:01:00,15 --> 00:01:07,679\\nÁlgebra, Geometria Analítica e Geometria são os tópicos que eu me sinto confortável.\\n\\n14\\n00:01:08,8 --> 00:01:10,788\\nPrimeiro, eu comecei com Probabilidade.\\n\\n15\\n00:01:11,45 --> 00:01:14,169\\nO primeiro artigo que eu comecei foi Probabilidade.\\n\\n16\\n00:01:15,064 --> 00:01:18,998\\nTodo dia que eu entro na Wikipédia, eu estou em casa,\\n\\n17\\n00:01:19,445 --> 00:01:27,217\\nentão eu faço todo o meu trabalho pessoal, e depois eu sento com o meu netbook e edito,\\n\\n18\\n00:01:28,45 --> 00:01:33,769\\ne crio artigos, e crio artigos sobre Matemática,\\n\\n19\\n00:01:34,5 --> 00:01:40,31\\ne depois sobre tâmil, minha língua materna e minha linguagem favorita.\\n\\n20\\n00:01:41,0 --> 00:01:47,94\\nEdito artigos criados por outros para corrigir erros de gramática e ortografia.\\n\\n21\\n00:01:48,8 --> 00:01:52,06\\nTodo mundo é beneficiado por isso, quer seja rico ou pobre.\\n\\n22\\n00:01:52,548 --> 00:01:58,10\\nAqui, por um mero clique, o mundo inteiro está na nossa frente.\\n\\n23\\n00:01:59,13 --> 00:02:04,34\\nIsso está dando informações completas pela internet.\\n\\n24\\n00:02:05,298 --> 00:02:10,71\\nSem nenhuma casta. É realmente uma coisa incrível.',\n", + " 'bytes': 2175,\n", + " 'sha1': 'iqqtaaugnilpnc5xzonfsskyzue7cwc',\n", + " 'parent_id': 84198953,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84362318,\n", + " 'timestamp': '2012-12-05T22:10:44Z',\n", + " 'user': {'id': 1701223, 'text': 'VGrigas (WMF)'},\n", + " 'page': {'id': 22989730,\n", + " 'title': 'Oarabile Mudongo V1.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,797 --> 00:00:05,985\\nMy parents got nothing much to share with us, or to provide to us.\\n\\n2\\n00:00:07,25 --> 00:00:12,018\\nShe could not, they could not afford to buy me those fancy gadgets, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nbecause they're expensive in our country. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nMy name is is Oarabile Mudongo. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nI come from Botswana.\\n\\n6\\n00:00:20,4 --> 00:00:22,068\\nWe don't have a computer in our house. \\n\\n7\\n00:00:22,48 --> 00:00:26,076\\nNone of us ever owned a computer. \\n\\n8\\n00:00:27,1 --> 00:00:34,146\\nA mining company in the township - they donated computers to our school.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nIt was then that I started developing that interest of using the computer.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nI was scared to touch this, you know, because I had thought\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nSo, I've touched this, what if I mess it up?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nWhat if I destroy it, and I want to repay and my parents don't have money to repay this?\\n\\n13\\n00:00:53,2 --> 00:00:55,943\\nFrom my background, I had this in my mind\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nI saw myself being successful in life. \\n\\n15\\n00:01:01,87 --> 00:01:04,95\\nWe had this other club at school in high school. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nThey wanted us to be involved in more research, making a deep research, \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nso that I took an advantage of it to use the Internet as my source,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\nto get more information, and most of the information that I got when I was in that group - \\n\\n19\\n00:01:27,05 --> 00:01:28,661\\nthe Math and Science Fair group - \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\nI relied much on Wikipedia, and to share with you, \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nthe information that I got, our project did well at the regional level. \\n\\n22\\n00:01:38,82 --> 00:01:40,39\\nWe proceeded to the national level. \\n\\n23\\n00:01:40,805 --> 00:01:45,92\\nI heard rumors actually in school that well, you shouldn't trust Wikipedia, \\n\\n24\\n00:01:46,331 --> 00:01:51,18\\nbecause Wikipedia - it's not a trusted source to get information for your research,\\n\\n25\\n00:01:51,626 --> 00:01:54,93\\nand I was very surprised. \\n\\n26\\n00:01:54,929 --> 00:02:01,40\\nWikipedia is an open source where everyone can input, or throw in his or her idea \\n\\n27\\n00:02:01,4 --> 00:02:07,09\\nand then somebody else comes in and polishes on that idea to make it superb.\\n\\n28\\n00:02:07,7 --> 00:02:10,23\\nI had passed, so I had to progress to tertiary. \\n\\n29\\n00:02:10,66 --> 00:02:13,36\\nMost of my friends didn't make it to tertiary\\n\\n30\\n00:02:13,375 --> 00:02:18,58\\nand looking at the family background, I had to say no no no.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nI need to achieve more so that I can bring something home, help my parent.\\n\\n32\\n00:02:23,612 --> 00:02:30,35\\nThe information that I've grasped from Wikipedia really made me to move forward.\\n\\n33\\n00:02:31,37 --> 00:02:34,91\\nI managed to pass, because most of the materials that I read, \\n\\n34\\n00:02:35,32 --> 00:02:37,15\\nthe research that I've made at school,\\n\\n35\\n00:02:37,711 --> 00:02:39,96\\n I got them right there from Wikipedia.\",\n", + " 'bytes': 3161,\n", + " 'sha1': 'h6mwooib2s5cetrsrtmcyeq5ji8ufh8',\n", + " 'parent_id': 84219617,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 116271905,\n", + " 'timestamp': '2014-02-12T23:34:21Z',\n", + " 'user': {'id': 154385, 'text': 'Victorgrigas'},\n", + " 'page': {'id': 22989745,\n", + " 'title': 'The Impact of Wikipedia Dumisani Ndubane.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,0 --> 00:00:08,34\\nI started looking for online means of getting myself educated in electrical engineering,\\n\\n2\\n00:00:08,945 --> 00:00:10,591\\nand I found Wikiversity.\\n\\n3\\n00:00:11,485 --> 00:00:15,439\\nAnd I thought, Hmm? A free university is quite an interesting concept.\\n\\n4\\n00:00:17,0 --> 00:00:24,377\\nBut, to my disappointment when I got into the school of electrical engineering pages, there was not much in there to talk about.\\n\\n5\\n00:00:25,282 --> 00:00:27,282\\nMy name is Dumisani Ndubane.\\n\\n6\\n00:00:27,512 --> 00:00:28,783\\nI'm from South Africa. \\n\\n7\\n00:00:30,249 --> 00:00:37,361\\nI always had this nagging thing in my mind. You didn't find anything but they did say it's a free-to-edit university.\\n\\n8\\n00:00:37,849 --> 00:00:40,944\\nSo, why don't you put something there?\\n\\n9\\n00:00:41,542 --> 00:00:45,512\\nEven if it's one course, someone might get interested in that.\\n\\n10\\n00:00:45,988 --> 00:00:51,596\\nSo, in my second year with UNISA I was doing circuit analysis, and I thought, \\n\\n11\\n00:00:51,774 --> 00:00:57,946\\nWhy not put this stuff online that I'm learning, and see who else is doing the same thing?\\n\\n12\\n00:00:58,659 --> 00:01:03,299\\nI started transcribing my notes that I was taking for my studies.\\n\\n13\\n00:01:03,965 --> 00:01:11,115\\nand putting those online to create a Circuit Analysis page at Wikiversity,\\n\\n14\\n00:01:11,115 --> 00:01:16,214\\nand that started with a few edits which were wrong, \\n\\n15\\n00:01:16,214 --> 00:01:19,642\\nwhich did not look OK to me.\\n\\n16\\n00:01:20,441 --> 00:01:23,264\\nBut when I came back the edits were fixed.\\n\\n17\\n00:01:24,259 --> 00:01:27,676\\nMy first reaction was - did I do something wrong?\\n\\n18\\n00:01:29,104 --> 00:01:29,574\\n[laughs]\\n\\n19\\n00:01:30,806 --> 00:01:33,354\\nDid I mess up? Did I do something wrong, you know?\\n\\n20\\n00:01:34,347 --> 00:01:35,647\\nAnd then I thought about it, and I thought, \\n\\n21\\n00:01:35,732 --> 00:01:39,118\\nwait a minute! There's a word for it; it's called collaboration.\\n\\n22\\n00:01:40,172 --> 00:01:43,97\\nAnd I thought, he actually did not delete what I did. \\n\\n23\\n00:01:44,481 --> 00:01:47,22\\nHe edited it, and he made it better.\\n\\n24\\n00:01:48,403 --> 00:01:53,00\\nIt started growing. We have about eight lessons in a space of six months,\\n\\n25\\n00:01:55,501 --> 00:01:58,06\\nfully developed, with questions, corrected, and so on.\\n\\n26\\n00:01:58,904 --> 00:02:08,22\\nI've had at least 80 to 90 unique users who have Emailed me, and asked me questions about the articles that were written.\\n\\n27\\n00:02:08,841 --> 00:02:12,12\\nSome of them have asked me to work on new articles, or newer courses, \\n\\n28\\n00:02:12,124 --> 00:02:17,98\\nand that has been quite motivating, to understand and notice that \\n\\n29\\n00:02:17,977 --> 00:02:21,22\\nthese are not people from my country.\\n\\n30\\n00:02:21,224 --> 00:02:24,03\\nThese are people from all over the world.\\n\\n31\\n00:02:24,031 --> 00:02:30,96\\nI've had Australians, Germans, Pakistanis. and so on, going through the course.\\n\\n32\\n00:02:30,955 --> 00:02:41,28\\nAnd being asked to do something like that for a separate course only says that I've done something right. \\n\\n33\\n00:02:41,881 --> 00:02:45,38\\nSo, the fact that information is free meant that everybody could use.\\n\\n34\\n00:02:45,747 --> 00:02:52,00\\nSomeone who comes from a poor background, like I did, can get that information, access to that information.\\n\\n35\\n00:02:52,086 --> 00:02:57,84\\nI graduated with UNISA two months ago, finally,\\n\\n36\\n00:02:58,626 --> 00:03:03,01\\nafter spending at least five years working on my career.\\n\\n37\\n00:03:03,008 --> 00:03:11,15\\nMost of the work I did on that I've put online with Wikiversity \\n\\n38\\n00:03:11,148 --> 00:03:16,51\\nwhich was my study companion for the five years I spent there.\\n\\n39\\n00:03:17,051 --> 00:03:19,42\\nSo, yes, I am professional now,\\n\\n40\\n00:03:20,034 --> 00:03:24,93\\nand Wikiversity had a lot to do with that.\",\n", + " 'bytes': 3802,\n", + " 'sha1': 'fho7gnd98je9wsoayx82tazjlauo2dn',\n", + " 'parent_id': 84219916,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84221542,\n", + " 'timestamp': '2012-12-04T03:07:35Z',\n", + " 'user': {'id': 1798617, 'text': 'Chicocvenancio'},\n", + " 'page': {'id': 22990152,\n", + " 'title': 'Oarabile Mudongo V1.webm.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 Meus pais não tinham muito para compartilhar com a gente, para nos prover. 2 00:00:07,25 --> 00:00:12,018 Ela não tinha... El...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nMeus pais não tinham muito para compartilhar com a gente, para nos prover.\\n\\n2\\n00:00:07,25 --> 00:00:12,018\\nEla não tinha... Eles não tinham dinheiro para me comprar essas bugigangas chiques,\\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nporque eles são caros em nosso país.\\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nMeu nome é Orabile Mudongo.\\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nEu venho da Botsuana.\\n\\n6\\n00:00:20,4 --> 00:00:22,068\\nNós não temos um computador em nossa casa.\\n\\n7\\n00:00:22,48 --> 00:00:26,076\\nNenhum de nós jamais teve um computador.\\n\\n8\\n00:00:27,1 --> 00:00:34,146\\nUma empresa de mineração em nossa cidade - eles doaram computadores para a nossa escola.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nFoi então que eu comecei a desenvolver esse interesse de usar o computador.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nEu tinha medo de tocá-lo, você sabe, porque eu pensava:\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nEntão, se eu mexer, e se eu quebrar tudo?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nSe eu destruir o computador, e fosse pagá-lo e meus pais não tem dinheiro para pagar?\\n\\n13\\n00:00:53,2 --> 00:00:55,943\\nDe onde eu vim, eu tinha isso em mente:\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\neu me via tendo sucesso na vida. \\n\\n15\\n00:01:01,87 --> 00:01:04,95\\nTínhamos esse outro clube na escola, no ensino médio.\\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nQueriam que nós nos envolvêssemos com pesquisa, fazendo pesquisas profundas,\\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nentão eu tirei vantagem disso para usar a internet como minha fonte,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\npara pegar mais informações. E a maioria das informações que eu peguei quando estava nesse grupo -\\n\\n19\\n00:01:27,05 --> 00:01:28,661\\no grupo da Feira de Matemática e Ciências - \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\neu me baseei muito na Wikipédia, e também para compartilhar com vocês,\\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nas informações que eu pegava. Nosso projeto foi bem no nível regional. \\n\\n22\\n00:01:38,82 --> 00:01:40,39\\nNós fomos para o nível nacional.\\n\\n23\\n00:01:40,805 --> 00:01:45,92\\nEu escutei rumores na escola que, bem, você não deveria confiar na Wikipédia,\\n\\n24\\n00:01:46,331 --> 00:01:51,18\\nporque a Wikipédia não é uma fonte confiável para pegar informações para a sua pesquisa,\\n\\n25\\n00:01:51,626 --> 00:01:54,93\\ne eu fiquei muito surpreso.\\n\\n26\\n00:01:54,929 --> 00:02:01,40\\nA Wikipédia é uma fonte aberta, aonde todo mundo pode colocar ou jogar a sua ideia\\n\\n27\\n00:02:01,4 --> 00:02:07,09\\ne outra pessoa vem e melhora aquela ideia para torná-la fantástica.\\n\\n28\\n00:02:07,7 --> 00:02:10,23\\nEu passei na escola, então eu tinha que ir para a universidade.\\n\\n29\\n00:02:10,66 --> 00:02:13,36\\nA maioria dos meus amigos não chegou até a universidade\\n\\n30\\n00:02:13,375 --> 00:02:18,58\\ne olhando o passado da minha família, eu tinha que dizer, não não não.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nEu preciso alcançar mais para que eu possa trazer algo para casa, ajudar meus pais.\\n\\n32\\n00:02:23,612 --> 00:02:30,35\\nA informação que eu peguei na Wikipédia realmente me fez ir para frente.\\n\\n33\\n00:02:31,37 --> 00:02:34,91\\nEu consegui passar, porque a maior parte dos materiais que li,\\n\\n34\\n00:02:35,32 --> 00:02:37,15\\na pesquisa que eu fiz na escola,\\n\\n35\\n00:02:37,711 --> 00:02:39,96\\neu as peguei ali da Wikipédia.',\n", + " 'bytes': 3301,\n", + " 'sha1': 'n4281n8nz8gxrf34ekvcq1sai38fjnb',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 211079461,\n", + " 'timestamp': '2016-10-28T00:37:53Z',\n", + " 'user': {'id': 123, 'text': 'Brion VIBBER'},\n", + " 'page': {'id': 22992547,\n", + " 'title': '1TR110-1 Kap8.3 Freiton1.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'syntax fix',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nBEEP\\n\\n2\\n00:00:05,000 --> 00:00:06,000\\nBEEP\\n\\n3\\n00:00:10,000 --> 00:00:11,000\\nBEEP\\n\\n4\\n00:00:15,000 --> 00:00:16,000\\nBEEP\\n\\n5\\n00:00:20,000 --> 00:00:21,000\\nBEEP\\n\\n6\\n00:00:25,000 --> 00:00:26,000\\nBEEP\\n\\n7\\n00:00:30,000 --> 00:00:31,000\\nBEEP\\n\\n8\\n00:00:35,000 --> 00:00:36,000\\nBEEP\\n\\n9\\n00:00:40,000 --> 00:00:41,000\\nBEEP\\n\\n10\\n00:00:45,000 --> 00:00:46,000\\nBEEP\\n\\n11\\n00:00:50,000 --> 00:00:51,000\\nBEEP\\n\\n12\\n00:00:55,000 --> 00:00:56,000\\nBEEP',\n", + " 'bytes': 457,\n", + " 'sha1': '8pm5igxkuxz2i8pqvsem0vb0fo3571n',\n", + " 'parent_id': 84231220,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84314881,\n", + " 'timestamp': '2012-12-05T09:56:10Z',\n", + " 'user': {'id': 411849, 'text': 'Sezgin İbiş'},\n", + " 'page': {'id': 22994109,\n", + " 'title': 'The Impact Of Wikipedia.webm.tr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'düzenleme',\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nVikipedi, kâr amaçlı olmamasına rağmen dünya çapında en çok ziyaret edilen 5. web sitesi. Vikipedi\\'deki tüm maddeler, gönüllüler tarafından yazılmaktadır.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nBu kullanıcılardan birkaçını size tanıtmak istiyoruz...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nBen Nepal\\'de yaşıyorum.\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nBen Irak\\'tanım.\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nBen Hindistan\\'dan geliyorum\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nBen Byram, New Jersey\\'denim.\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nBen Birmingham, İngiltere\\'de yaşıyorum\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nŞikago, Illinois -- La Paz, Bolivya -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malezya -- Milano, İtalya -- Güney Afrika\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolonya -- Japonya -- Ermenistan\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrezilya -- Rusya -- Botsvana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nİsrail -- Özbekistan -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nİstanbulluyum -- Meksika\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nVikipedi\\'ye kayıt olduğum 2008 yılından beri birçok yeni madde oluşturdum.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nBunlardan biri, yanlış hatırlamıyorsam Mariam Nour adında bir bayanı konu alıyordu.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nBu konu hakkında maddemiz olmadığından, ilk maddemi bu şekilde açmak istedim.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nAncak bir süre sonra bu maddeyi açtığımı unuttum! İki-üç yıl kadar sonra,\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nbu maddeden edindiğim bilgiler sayesinde sınavımı geçtim. Karşılaştığım şey beni şaşkınlığa uğrattı.\\xa0\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\n100.000\\'in üstünde kişi, bu maddeyi okumuştu.\\xa0\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nBu maddeyi kullanmış, ondan bilgi almış ve bu madde sayesinde derslerinde başarı sağlamışlardı. \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nBu da bende, 100.000\\'den fazla kişiyi etkilediğim hissi uyandırdı.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\n\"Değiştir\" butonuna ilk kez bastığımda oldukça tedirgin olmuştum.\\xa0\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\n\"Ya yapamazsam? Ya her şeyi mahvedersem? Sanırım bunu yapamayacağım!\" diye düşünmüştüm.\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\n\"Herkese açık bir kaynak\" olan Vikipedi\\'de herkes ortaya bir fikir atabilir\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nve sonrasında başkaları gelerek bu fikri daha da ileriye götürür. Böylece mükemmeliyete ulaşılmaya çalışılır.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nHer gün, her saat, her an Vikipedi\\'nin gelişimi için çalışan binlerce insan var.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nTüm bu çalışmaların temelini gönüllülük oluşturuyor. Bu, gönüllü olmanın eşsiz bir yolu.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nBu sayede, belli bir konuyla ilgili olan profesyonel ve amatörler bir araya gelmiş oluyor.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nBaşlangıçta farklı düşünce yapılarına sahip bireyler, burası sayesinde ortaklaşa hareket etmeye başlıyorlar.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nBüyük bir İnternet kurumunun yaptığı düşünülen işler\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nbenim gibi gönüllüler tarafından gerçekleştiriliyor.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nBuraya gelip de \"Ben haklıyım, sen ise haksızsın. Maddenin benim sürümü daha düzgün.\" diyemiyorsunuz.\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nEğer bir madde taraflı bir içeriğe sahipse,\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nbaşka bir kullanıcı tarafından o madde, taraflı olduğu gerekçesiyle işaretleniyor, yahut kendiniz de işaretleyebiliyorsunuz.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nBunu gören yüzlerce, hatta binlerce kişi ise\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nbu tip sorunları düzeltebiliyor.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nSonrasında ise butona bastım ve\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nişte, bu mükemmel yolculuk başladı.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nİlk olarak \"olasılık\" ile başladım.\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nBaşlattığım ilk madde \"olasılık\" idi.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nVikipedi\\'de yazdığım ana maddelerin bir tanesi\\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nbıçaklama yaraları üzerineydi.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nBurada bulunduğum süre içerisinde uçurtma balıkçılığı,\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontana tarihi, Ulusal Park tarihi, Yellowstone hakkında yazılar yazdım.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nAz kullanılmış hasatlar. Satranç oyuncuları. Biyoçeşitlilik.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nAskerî tarih konuları. Ermeni tarihi. Roma tarihi.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nHâkimler. İletişim. Bİyografiler. Futbol.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nİrlanda. Pensilvanya. Genellikle fotoğrafçılık.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Fırınlama, çünkü pişirmeyi severim.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nNükleer silahlar ve radyoaktivite\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nve kayak sporu.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nTüm bu konular hakkındaki bilgiler dağılmış bir vaziyette\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nve biz, bu bilgileri tek bir yerde topluyoruz.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nHerkese, kendi ana dilinde bilgi sunuyoruz ki\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\ninsanlar bu bilgilere kolayca ulaşabilsin.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nZengin ya da fakir farketmez, yaptıklarımız herkese fayda sağlıyor.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nKâr amaçlı şirketler, farklı motivasyon ve ihtiyaçlara sahipler.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nWikimedia Vakfı çalışanı olarak ben maaş almıyorum, hatta masraflarımı kendim karşılıyorum.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nBunu rahatlıkla söyleyebilirim ki \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nsizden, kendim için para istemiyorum.\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nSizden, benim de bir üyesi olduğum muhteşem bir topluluk tarafından oluşturulan bu vakıf için para istiyorum.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nSanıyorum ki Vikipedi bana, dünyada bir şeyleri gerçek anlamda değiştirebilme şansını verdi.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nBurası bizim geleceğimize, çocuklarımızın geleceğine bir yatırım gibi.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nTeşekkürler.\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nBu videonun içeriği \\'\\'Creative Commons Attribution-ShareAlike License v3.0\\'\\' (aksi belirtilmediği sürece) lisansına tabiidir (http://creativecommons.org/licenses/by-sa/3.0). Bu çalışma Wikimedia Vakıf\\'ından Victor Grigas\\'a atıf edilebilir.\\nBu videoda ifade bulan görüşler ve fikirler tümüyle katılımcı bireylerin kişisel görüşleridir, bu kişilerin üyesi olduğu kurumların, firmaların veya enstitülerin politikalarını yansıtmak zorunda değildir.\\nMarkalar ve Wikimedia Vakfı ile diğer organizasyon logoları Creative Commons lisansı şartları altına dahil değildir. Wikimedia markaları ve \"Vikipedi\" bulmaca dünya logosu dahil tüm logolar, Wikimedia Vakfı\\'nın tescilli markalarıdır. Daha fazla bilgi için, Marka Politikası sayfasımıza bakın http://www.wikimediafoundation.org/wiki/Trademark_Policy veya trademarks@wikimedia.org adresiyle iletişim kurun.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nBu video bir Creative Commons lisansı altında yayınlanmaktadır.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nVikipedi\\'de olduğu gibi klibin kopyalanması ve paylaşılması ücretsizdir.',\n", + " 'bytes': 7516,\n", + " 'sha1': '9fpejg3jxvmnh017ck9rg072poj6lvf',\n", + " 'parent_id': 84241785,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84270597,\n", + " 'timestamp': '2012-12-04T19:12:11Z',\n", + " 'user': {'id': 373856, 'text': 'Jagwar'},\n", + " 'page': {'id': 23002662,\n", + " 'title': 'The Impact Of Wikipedia.webm.mg.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00.000 --> 00:00:05.200\\nWikipedia dia tsy manangona tombony, fa anefa tranonkala fahadimy eto amin\\'izao tontolo izao izy io. Olona mitolo-tena daholo no nanoratra ny lahatsoratra eo amin\\'i Wikipedia\\n\\n2\\n00:00:06.200 --> 00:00:11.500\\nTianay atolotra anao ny sasany amin-jareo...\\n\\n3\\n00:00:12.000 --> 00:00:13.000\\nAvy any Nepala aho\\n\\n4\\n00:00:13.100 --> 00:00:14.000\\nAvy any Iràka aho\\n\\n5\\n00:00:14.100 --> 00:00:16.000\\nAvy any India aho\\n\\n6\\n00:00:16.001 --> 00:00:17.000\\nIzaho dia avy any Byram, New Jersey\\n\\n7\\n00:00:17.100 --> 00:00:18.000\\nIzaho dia monina any Birmingham, Englanda\\n\\n8\\n00:00:18.100 --> 00:00:22.050\\nChicago, Illinois -- La Paz, Bolivia -- Nairobi, Kenia\\n\\n9\\n00:00:22.051 --> 00:00:24.000\\nKuala Lumpur, Malaizia -- Milan any Italia -- Afrika Atsimo\\n\\n10\\n00:00:24.100 --> 00:00:26.100\\nPolonia -- Japana -- Armenia\\n\\n11\\n00:00:26.200 --> 00:00:28.000\\nBrazila -- Rosia -- Botsoana\\n\\n12\\n00:00:28.001 --> 00:00:30.500\\nIsraely -- Ozbekistana -- Hong Kong\\n\\n\\n13\\n00:00:30.501 --> 00:00:31.000\\nIstanbul -- Mexico\\n\\n14\\n00:00:31.001 --> 00:00:32.000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33.000 --> 00:00:38.000\\nTamin\\'izaho nanomboka nanoratra teo amin\\'i Wikipedia tamin\\'ny 2008, betsaka ny lahatsoratra nosoratako.\\n\\n16\\n00:00:38.100 --> 00:00:44.000\\nNy iray tamin\\'ireo dia lahatsoratra momba ny vehivavy izay manana anarana Mariam Nour\\n\\n17\\n00:00:44.100 --> 00:00:48.000\\nTsy nanana lahatsoratra momba azy isahay, ka -- iny no lahatsoratro voalohany.\\n\\n18\\n00:00:48.100 --> 00:00:52.500\\nAdinoko izy aveo ! Angamba roa na telo taona tat? aoriana, \\n\\n19\\n00:00:52.600 --> 00:00:57.000\\nTonga teo amin\\'ilay lahatsoatra aho. Tena gaga aho.\\n\\n20\\n00:00:57.100 --> 00:01:02.000\\nOlona mahery ny iray hetsy no efa namaky ilay lahatsoratra.\\n\\n21\\n00:01:02.100 --> 00:01:08.000\\nNampiasa azy zareo, izany hoe nahazo fampahalalana avy amin\\'io lahatsoratra io. Nandalo tamin\\'ilay lahatsoratra izany zareo. \\n\\n22\\n00:01:08.100 --> 00:01:15.000\\ntsapako arak\\'izany fa nanana fianjadiana amin\\'ny olona mahery ny iray hetsy aho.\\n\\n23\\n00:01:15.500 --> 00:01:19.000\\nTena natahotra be aho tamin\\'izaho nanindray ilay \\'hanova\\' voalohany indrindra.\\n\\n24\\n00:01:19.100 --> 00:01:24.000\\nHoy aho tao an\\'eritreritra : \"Andriamanitra ô, ho simbako daholo ity ! Tsy vitako ny manao izany !\"\\n\\n25\\n00:01:24.100 --> 00:01:29.000\\nWikipedia dia \\'open source\\' -- izay hahafahan\\'ny rehetra manampy ny heviny \\n\\n26\\n00:01:29.100 --> 00:01:34.000\\nary aveo, misy olon-kafa tonga ary manatsara izay hevitra izay.\\n\\n27\\n00:01:34.100 --> 00:01:40.500\\nIsaina amin\\'ny arivo ireo olona miasa isan\\'andro, isak\\'ora, isa-minitra eo amin\\'i Wikipedia mba hanatsara azy.\\n\\n28\\n00:01:40.501 --> 00:01:44.000\\nBetsaka ny mitolo-tena. Fomba fitoloran-tena iray io.\\n\\n29\\n00:01:44.100 --> 00:01:49.000\\nIzy io dia mampihaona ny mpanao arak\\'asa ary ny mpanao ara-pitia eo amin\\'ny lohahevitra iray\\n\\n30\\n00:01:49.100 --> 00:01:54.000\\nManomboka miara-miasa ireo olona izay nanana hevitra samihafa tamin\\'ny voalohany.\\n\\n31\\n00:01:54.001 --> 00:01:58.500\\nTazonin\\'ny mpitolo-tena ohatra ahy \\n\\n32\\n00:01:58.501 --> 00:02:01.000\\nizay mety heverinao fa tantanan\\'ny orinasa Aterineto lehibe.\\n\\n33\\n00:02:01.100 --> 00:02:05.000\\nTsy afaka miteny ianao hoe \"Marina aho, diso anao, io ny fijeriko momban\\'ilay lahatsoratra!\"\\n\\n34\\n00:02:05.100 --> 00:02:07.000\\nRaha misy fijery mitongilana, \\n\\n35\\n00:02:07.100 --> 00:02:11.000\\ndia mety efa misy olona nilaza ; raha tsy izany dia izaho no milaza.\\n\\n36\\n00:02:11.000 --> 00:02:13.000\\nOlona aman-ketsiny no mahita izany \\n\\n37\\n00:02:13.001 --> 00:02:15.000\\nary mitsara azy\\n\\n38\\n00:02:15.001 --> 00:02:16.400\\nDia nopotsiriko ilay bokotra dia\\n\\n39\\n00:02:16.401 --> 00:02:19.600\\nBoom - Nanomboka ilay dia, ary nahafinaritra.\\n\\n40\\n00:02:19.601 --> 00:02:21.000\\n\\'Vina\\' no lahatsoratra natomboko voalohany \\n\\n41\\n00:02:21.001 --> 00:02:24.000\\n\\'Vinavina\\' no lahatsoratra natomboko voalohany.\\n\\n42\\n00:02:24.001 --> 00:02:26.000\\nNy lahatsoratra tena nosoratako teo amin\\'i Wikipedia dia \\n\\n43\\n00:02:26.001 --> 00:02:27.400\\nlahatsoratra momban\\'ny ratra vokatry ny antsy.\\n\\n44\\n00:02:27.401 --> 00:02:29.000\\nIzaho dia manoratra momban\\'ny fanjonoana amin\\'ny lalitra, \\n\\n45\\n00:02:29.001 --> 00:02:32.000\\nTantaran\\'i Montana, Tantaran\\'ny valam-pirenena, Yellowstone.\\n\\n46\\n00:02:32.001 --> 00:02:36.100\\n\"Underutilized crops\". Mpilalao eseky. Fahasamihafana ara-java-boahary\\n\\n47\\n00:02:36.101 --> 00:02:39.100\\nTantara ara-tafika. Tantara armenianina. Tantara Romana.\\n\\n48\\n00:02:39.101 --> 00:02:42.100\\nMpitsara. Fifandraisana. Biografia. Baolina kitra.\\n\\n49\\n00:02:42.101 --> 00:02:45.901\\nIrlandy. Pennsylvania. Sary indrindra indrindra.\\n\\n50\\n00:02:45.901 --> 00:02:47.600\\nPink Floyd. Patiseria, satria dia manao mofomamy aho.\\n\\n51\\n00:02:47.601 --> 00:02:50.200\\nFitaovam-piadiana niokleary ary radioaktivity, \\n\\n52\\n00:02:50.201 --> 00:02:52.000\\nary kayak eny amin\\'ny rano fotsy.\\n\\n53\\n00:02:52 --> 201 --> 00:02:56.000\\nHita daholo ny fampahalalana fa saingy izy miparitaka fotsiny\\n\\n54\\n00:02:56.001 --> 00:02:59.000\\nary izahay dia mametraka azy eo amina toerana iray.\\n\\n55\\n00:02:59.100 --> 00:03:03.000\\nManome fahalalana ho an\\'ny rehetra izahay, \\n\\n56\\n00:03:03.101 --> 00:03:07.000\\namin\\'ny fiteniny mba hahafahany mampiasa azy.\\n\\n57\\n00:03:07.501 --> 00:03:11.000\\nafaka manan-tombontsoa avy aminy ny tsirairay, na manan-karena izy na mahantra.\\n\\n58\\n00:03:11.001 --> 00:03:16.000\\nSamihafa ny tanjona ary ny ilan\\'ny orinasa manangom-bola.\\n\\n59\\n00:03:16.500 --> 00:03:22.000\\nTsy mangataka karama na inona na inona avy amin\\'ny Wikimedia Foundation aho, ary tsy misy ampandoaviko akory ny sarako.\\n\\n60\\n00:03:22.001 --> 00:03:25.500\\nHeveriko fa zava-dehibe ny fahafahako milaza azy mazava tsara, \\n\\n61\\n00:03:25.501 --> 00:03:30.500\\nJereo tsara fa rehefa mangataka vola aminao aho, tsy mangataka vola ho an\\'ny tenako --\\n\\n62\\n00:03:30.501 --> 00:03:36.000\\nmangataka vola aminao aho ho an\\'ilay fikambanana (Foundation), izay ekipa manohana ity fikambanana lehibe ity izay ikambanako.\\n\\n63\\n00:03:36.501 --> 00:03:41.400\\nHeveriko fa nanome ahy ny vintana hanova izao tontolo izao i Wikipedia.\\n\\n64\\n00:03:41.401 --> 00:03:48.000\\nIzy io dia ohatry ny famatsiana ho an\\'ny hoavinao, ho an\\'ny hoavin\\'ny zanakao.\\n\\n65\\n00:03:53.401 --> 00:03:57.000\\nMisaotra indrindra\\n\\n66\\n00:04:00.000 --> 00:04:03.000\\nNy votoatin\\'ity horonantsary ity dia manana ny lisansa Creative Commons Attriution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) raha tsy misy zavatra hafa voalaza. I Victor Grigas, avy amin\\'ny Wikimedia Foundation, no tompon\\'ity horonantsary ity.\\nNy hevitra voalaza ato amin\\'ity horonantsary ity dia ny hevitr\\'ireo olona izay miseho, ary tsy mitaratra ny fijerin\\'ny fikambanana na ny orinasa izay ikambanan\\'ilay olona.\\nNy birendy ary ny logon\\'ny Wikimedia Foundation ary ny fikambanana hafa dia tsy mitondra ny loisansa Creative Commons. Ny birendy ary ny logon\\'i Wikimedia, izay ahitana an\\'i \"Wikipedia\" ary ny logo glaoby piozila, dia birendy napetrak ny Wikimedia Foundation. Ho an\\'ny fampahalalana fanampin, vangio ny pejy mikasika ny politikan\\'ny birendy : http://www.wikimediafoundation.org/wiki/Trademark_Policy, na mifandray amin\\'ny alalan\\'ny adiresy trademarks@wikimedia.org.\\n\\n67\\n00:04:03.000 --> 00:04:05.000\\nIty horonantsary ity dia navoaka araka ny voalazan\\'ny lisansa Createve Commons.\\n\\n68\\n00:04:05.001 --> 00:04:09.000\\nOhatran\\'i Wikipedia, azo atao ny mandika, manova ary mizara azy ampahafahana.',\n", + " 'bytes': 7301,\n", + " 'sha1': '28i0pvlcxzn65g9hg2led7uk0t2bzlb',\n", + " 'parent_id': 84269602,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84285403,\n", + " 'timestamp': '2012-12-04T23:28:36Z',\n", + " 'user': {'id': 22641, 'text': 'Theredmonkey'},\n", + " 'page': {'id': 23006951,\n", + " 'title': 'Article-Feedback-Video-Tour-07-08.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,500 --> 00:00:02,800\\nWillkommen zu \"Artikel-Feedback\" in Wikipedia\\n\\n2\\n00:00:03,200 --> 00:00:04,800\\nDieses Video wird Dir einen kurzen Überblick über\\n\\n3\\n00:00:05,000 --> 00:00:05,800\\ndas neue Feature der Wikimedia Foundation geben',\n", + " 'bytes': 243,\n", + " 'sha1': '38c7yljy0rkq0y5fz5nq40ew1r83p2s',\n", + " 'parent_id': 84285347,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84360901,\n", + " 'timestamp': '2012-12-05T21:48:35Z',\n", + " 'user': {'id': 2464973, 'text': 'Brian3535'},\n", + " 'page': {'id': 23027547,\n", + " 'title': 'Roosevelt Infamy.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,000\\nYesterday, \\n\\n2\\n00:00:02,000 --> 00:00:08,000\\nDecember 7, 1941 \\n\\n3\\n00:00:08,000 --> 00:00:014,000\\n— a date which will live in infamy — \\n\\n4\\n00:00:14,000 --> 00:00:20,000\\nthe United States of America was suddenly and deliberately attacked\\n\\n5\\n00:00:20,000 --> 00:00:25,000\\nby naval and air forces of the Empire of Japan.',\n", + " 'bytes': 352,\n", + " 'sha1': 'nibggfr08r5wsv6l2crphk7suazcjap',\n", + " 'parent_id': 84357957,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85324309,\n", + " 'timestamp': '2012-12-19T22:03:04Z',\n", + " 'user': {'id': 133575, 'text': 'Ziko'},\n", + " 'page': {'id': 23031801,\n", + " 'title': 'The Impact of Wikipedia Peter Coti.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'diabetes mellitus is one condition, not two :-)',\n", + " 'text': '1\\n00:00:00,5 --> 00:00:04,508\\nWhen I first started, one of my main articles I wrote on Wikipedia was the article on stab wounds.\\n\\n2\\n00:00:04,79 --> 00:00:09,952\\nBasically, it\\'s when an object deeper than it is wide, enters the body \\n\\n3\\n00:00:09,952 --> 00:00:14,265\\nand causes some form of penetrating trauma, and well --\\n\\n4\\n00:00:14,265 --> 00:00:19,833\\nit can infect many organ systems, hurt you physiologically, \\n\\n5\\n00:00:20,206 --> 00:00:22,406\\nbut most of the time you really don\\'t die from the stab wound, itself. \\n\\n6\\n00:00:22,473 --> 00:00:28,340\\nYou die from the organ failure that you get after all the blood was gone and well -- you just got stabbed. \\n\\n7\\n00:00:28,729 --> 00:00:31,529\\nMy name is Peter Coti. I am an E.M.T. \\'\\'(Emergency Medical Technician)\\'\\' \\n\\n8\\n00:00:31,579 --> 00:00:36,004\\nThe way I look at it is I don\\'t want people to get hurt, but I want to be there when they do. \\n\\n9\\n00:00:36,42 --> 00:00:40,45\\nWell, one day I was in Newark helping out at a hospital. We had this woman come in. \\n\\n10\\n00:00:40,455 --> 00:00:41,940\\nShe just all of a sudden started \"barfing\" up blood. \\n\\n11\\n00:00:41,94 --> 00:00:46,541\\nIt was kind of, like, this woman is barfing blood. How do I fix that? What do I give? \\n\\n12\\n00:00:46,541 --> 00:00:50,618\\nUsing Wikipedia I\\'ve been desensitized and now I can look at things in a more clinical way \\n\\n13\\n00:00:50,618 --> 00:00:56,726\\nand not let emotions overcome me in serious, real life, life or death situations. \\n\\n14\\n00:00:57,0 --> 00:01:03,535\\nWhen I edit at Wikipedia, I need to make things that are exact and precise, because I don\\'t want to give false information to other people. \\n\\n15\\n00:01:03,969 --> 00:01:08,274\\nAnd I\\'ve put a lot of research and a lot of thought into it before I actually put it into my article.\\n\\n16\\n00:01:09,111 --> 00:01:14,684\\nThis process of editing Wikipedia is a great study technique in a way,\\n\\n17\\n00:01:15,13 --> 00:01:19,087\\nbecause I really need to know what I\\'m talking about to show it to users. \\n\\n18\\n00:01:20,0 --> 00:01:22,409\\nTo get through E.M.T. class, I edited Wikipedia all the time. \\n\\n19\\n00:01:23,757 --> 00:01:30,132\\nI wrote articles and acronyms and such, and if you\\'re able to write an article in Wikipedia \\n\\n20\\n00:01:30,151 --> 00:01:33,272\\nand explain it to another person, you can pass the test with an A+. \\n\\n21\\n00:01:33,9 --> 00:01:34,532\\nI\\'m telling you.\\n\\n22\\n00:01:34,532 --> 00:01:40,38\\nI helped a medical collaboration in Wikipedia where editors from a medical background would just come together \\n\\n23\\n00:01:40,795 --> 00:01:49,08\\nand help improve a certain article every month, be it placebo, diabetes mellitus -- scabies.\\n\\n24\\n00:01:50,25 --> 00:01:51,67\\nYou should care about Wikipedia because \\n\\n25\\n00:01:51,666 --> 00:01:59,02\\nIt\\'s a tool where you can learn and teach others for the price of nothing. It\\'s beautiful.',\n", + " 'bytes': 2827,\n", + " 'sha1': 'pp3ghz3pq0tbtm8zdfpknbdjoqfyjc6',\n", + " 'parent_id': 84425401,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84392375,\n", + " 'timestamp': '2012-12-06T07:53:33Z',\n", + " 'user': {'id': 849743, 'text': 'Vladimir Penov'},\n", + " 'page': {'id': 23037505,\n", + " 'title': 'The Impact of Wikipedia Poongothai Balasubramanian.webm.bg.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,105 --> 00:00:02,016 Обичах учениците си. 2 00:00:03,874 --> 00:00:08,270 Докато работех, за мен не бяха в...'\",\n", + " 'text': '1 00:00:01,105 --> 00:00:02,016 Обичах учениците си.\\n\\n2 00:00:03,874 --> 00:00:08,270 Докато работех, за мен не бяха важни само учебните предмети. Аз обичах учениците си.\\n\\n3 00:00:09,288 --> 00:00:11,538 Казвам се Баласубраманиан Пунгтоай.\\n\\n4 00:00:11,560 --> 00:00:13,181 Родена съм в Индия.\\n\\n5 00:00:13,721 --> 00:00:20,791 Бях учителка по математика цели 33 години. Сега съм пенсионерка.\\n\\n6 00:00:22,230 --> 00:00:27,095 И започнах да редактирам в Уикипедия.\\n\\n7 00:00:28,500 --> 00:00:30,641 Вече бях приключила с преподаването\\n\\n8 00:00:31,135 --> 00:00:33,954 и всичките 24 часа са само за мен.\\n\\n9 00:00:34,400 --> 00:00:39,394 Синовете ми са големи и сами се грижат за себе си.\\n\\n10 00:00:39,841 --> 00:00:47,791 Нямам никакви отговорности вече и оставащите ми години са само за мен,\\n\\n11 00:00:47,841 --> 00:00:49,341 и се наслаждавам на това.\\n\\n12 00:00:49,450 --> 00:00:59,780 Когато участвам в Уикипедия, се чувствам ангажирана, а също и... оставям нещо за следващите поколения.\\n\\n13 00:01:00,150 --> 00:01:07,679 Алгебра и аналитична геометрия са предметите, които познавам добре.\\n\\n14 00:01:08,800 --> 00:01:10,788 Първо започнах с Вероятност.\\n\\n15 00:01:11,450 --> 00:01:14,169 Първата ми статия беше за вероятностите.\\n\\n16 00:01:15,064 --> 00:01:18,998 Онзи ден влязох в Уикипедия, бях си вкъщи,\\n\\n17 00:01:19,445 --> 00:01:27,217 мога да свърша всичката къщна работа и после сядам на лаптопа и започвам да редактирам.\\n\\n18 00:01:28,450 --> 00:01:33,769 И създавам статии - статии, свързани с математиката,\\n\\n19 00:01:34,500 --> 00:01:40,310 както и за тамилски, който е родния ми език, моят любим език.\\n\\n20 00:01:41,000 --> 00:01:47,940 Редактирам статии, създадени от други, за правописни грешки и граматика.\\n\\n21 00:01:48,800 --> 00:01:52,060 Всеки има полза, независимо дали е богат или не.\\n\\n22 00:01:52,548 --> 00:01:58,100 Тук само с едно щракване целият свят е пред нас.\\n\\n23 00:01:59,130 --> 00:02:04,340 Така получаваме цялата информация от Интернет.\\n\\n24 00:02:05,298 --> 00:02:10,710 Няма привилегировано общество. Това е наистина чудесно.',\n", + " 'bytes': 3049,\n", + " 'sha1': 'fbzqi1uf9u8tvaoxltk7e02zbg9k5o4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 373970327,\n", + " 'timestamp': '2019-11-07T18:18:44Z',\n", + " 'user': {'id': 1547075, 'text': 'Illegitimate Barrister'},\n", + " 'page': {'id': 23084902,\n", + " 'title': 'United States Navy Band - Amhrán na bhFiann.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\nSoldiers are we,\\n\\n2\\n00:00:04,000 --> 00:00:10,000\\nwhose lives are pledged to Ireland.\\n\\n3\\n00:00:10,000 --> 00:00:13,900\\nSome have come,\\n\\n4\\n00:00:13,900 --> 00:00:17,000\\nfrom a land beyond the wave.\\n\\n5\\n00:00:19,000 --> 00:00:23,500\\nSworn to be free,\\n\\n6\\n00:00:23,500 --> 00:00:28,500\\nno more our ancient sireland,\\n\\n7\\n00:00:28,500 --> 00:00:35,500\\nshall shelter the despot or the slave.\\n\\n8\\n00:00:35,500 --> 00:00:40,000\\nTonight we man the <i>\"bearna baoil\"</i>,\\n\\n9\\n00:00:40,000 --> 00:00:44,000\\nin Erin\\'s cause, come woe or weal.\\n\\n10\\n00:00:45,000 --> 00:00:51,200\\n\\'Mid cannon\\'s roar and rifles\\' peal:\\n\\n11\\n00:00:51,200 --> 00:00:56,000\\n<b><i>We\\'ll chant a soldier\\'s song!</i></b>',\n", + " 'bytes': 706,\n", + " 'sha1': 'pn9aokbtuxek5ffqcltgr67wmegst66',\n", + " 'parent_id': 355439718,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84585485,\n", + " 'timestamp': '2012-12-08T19:39:05Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 23085177,\n", + " 'title': 'Firefogg screencast.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,000 --> 00:00:07,000 Select your input file 2 00:00:07,000 --> 00:00:14,000 Choose '6 Mbit' for high quality results 3 00:00:14,000 --> 00:00:16,00...'\",\n", + " 'text': \"1\\n00:00:01,000 --> 00:00:07,000\\nSelect your input file\\n\\n2\\n00:00:07,000 --> 00:00:14,000\\nChoose '6 Mbit' for high quality results\\n\\n3\\n00:00:14,000 --> 00:00:16,000\\nClick 'encode'\\n\\n4\\n00:00:16,000 --> 00:00:20,000\\nChoose the save location\\n\\n5\\n00:00:28,000 --> 00:00:39,000\\nYou can find your encoded video in the target folder\",\n", + " 'bytes': 320,\n", + " 'sha1': 'ntp2rsbcf83eudnt0d4bd2i1rs7x9h6',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 129767360,\n", + " 'timestamp': '2014-07-24T16:19:54Z',\n", + " 'user': {'id': 3506772, 'text': 'Umweltretter'},\n", + " 'page': {'id': 23088349,\n", + " 'title': 'Land der Berge Land am Strome instrumental.ogg.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Text seit 2012 geändert',\n", + " 'text': '1\\n00:00:04,500 --> 00:00:15,000\\nLand der Berge, Land am Strome\\n\\n2\\n00:00:16,500 --> 00:00:26,000\\nLand der Äcker, Land der Dome\\n\\n3\\n00:00:27,500 --> 00:00:37,000\\nLand der Hämmer, zukunftsreich\\n\\n4\\n00:00:39,500 --> 00:00:49,000\\nHeimat großer Töchter und Söhne\\n\\n5\\n00:00:51,500 --> 00:01:02,000\\nVolk, begnadet für das Schöne\\n\\n6\\n00:01:03,500 --> 00:01:13,000\\nVielgerühmtes Österreich\\n\\n7\\n00:01:15,500 --> 00:01:26,000\\nVielgerühmtes Österreich',\n", + " 'bytes': 444,\n", + " 'sha1': 'dkrqdnyptx6nperi8k0d3avnovhi0cn',\n", + " 'parent_id': 128635968,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 268064787,\n", + " 'timestamp': '2017-11-18T18:59:50Z',\n", + " 'user': {'text': '135.23.202.24'},\n", + " 'page': {'id': 23088547,\n", + " 'title': 'Land der Berge Land am Strome instrumental.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'removed random unrelated russian text',\n", + " 'text': '1\\n00:00:04,500 --> 00:00:15,000\\nLand of mountains, land by the stream\\n\\n2\\n00:00:16,500 --> 00:00:26,000\\nLand of fields, land of cathedrals\\n\\n3\\n00:00:27,500 --> 00:00:37,000\\nLand of hammers, with a promising future\\n\\n4\\n00:00:39,500 --> 00:00:49,000\\nHome to great daughters and sons\\n\\n5\\n00:00:51,500 --> 00:01:01,200\\nA nation highly blessed with beauty\\n\\n6\\n00:01:03,500 --> 00:01:13,000\\nMuch-praised Austria\\n\\n7\\n00:01:15,500 --> 00:01:26,000\\nMuch-praised Austria',\n", + " 'bytes': 454,\n", + " 'sha1': 'b287r7gj9wv2h7k8cpugpq2b2t10wuq',\n", + " 'parent_id': 268064601,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 356090117,\n", + " 'timestamp': '2019-06-26T06:20:28Z',\n", + " 'user': {'id': 2073340, 'text': 'Jdx'},\n", + " 'page': {'id': 23107798,\n", + " 'title': 'United States Navy Band - Himno Nacional Argentino.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/201.212.208.80|201.212.208.80]] ([[User talk:201.212.208.80|talk]]) to last revision by 181.192.73.176',\n", + " 'text': '\\n1\\n00:01:04,000 --> 00:01:11,000\\n¡Oíd, mortales!, el grito sagrado:\\n\\n2\\n00:01:12,000 --> 00:01:17,000\\n¡libertad!, ¡libertad!, ¡libertad!\\n \\n3\\n00:01:18,000 --> 00:01:24,000\\nOíd el ruido de rotas cadenas;\\n\\n4\\n00:01:25,000 --> 00:01:28,000\\nved en trono a la noble igualdad.\\n\\n5\\n00:01:30,000 --> 00:01:37,000\\n¡Ya su trono dignísimo abrieron\\n\\n6\\n00:01:37,000 --> 00:01:42,000\\nlas Provincias Unidas del Sur!\\n\\n7\\n00:01:44,500 --> 00:01:49,000\\nY los libres del mundo responden:\\n\\n8\\n00:01:50,000 --> 00:01:54,500\\n¡al gran pueblo argentino, salud!\\n\\n9\\n00:01:55,000 --> 00:02:00,000\\n¡al gran pueblo argentino, salud! \\n\\n10\\n00:02:01,000 --> 00:02:07,000\\nY los libres del mundo responden:\\n\\n11\\n00:02:08,000 --> 00:02:13,000\\n¡al gran pueblo argentino, salud!\\n\\n12\\n00:02:13,000 --> 00:02:20,000\\nY los libres del mundo responden:\\n\\n13\\n00:02:21,000 --> 00:02:27,000\\n¡al gran pueblo argentino, salud!\\n\\n14\\n00:02:50,500 --> 00:02:54,500\\nSean eternos los laureles...\\n\\n15\\n00:02:55,500 --> 00:02:58,500\\n...que supimos conseguir!\\n\\n16 \\n00:02:59,000 --> 00:03:05,000\\n...que supimos conseguir!\\n\\n17\\n00:03:06,000 --> 00:03:15,000\\nCoronados de gloria vivamos,\\n\\n18 \\n00:03:16,000 --> 00:03:19,000\\n¡O juremos con gloria morir!\\n\\n19\\n00:03:20,000 --> 00:03:23,000\\n¡O juremos con gloria morir!\\n\\n20\\n00:03:24,000 --> 00:03:27,500\\n¡O juremos con gloria morir!',\n", + " 'bytes': 1322,\n", + " 'sha1': 'toasw28smon83ico1xs7rv91gcwb4cv',\n", + " 'parent_id': 351971516,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 220155483,\n", + " 'timestamp': '2016-11-26T09:19:38Z',\n", + " 'user': {'id': 2672346, 'text': 'Svensson1'},\n", + " 'page': {'id': 23113494,\n", + " 'title': 'The Impact Of Wikipedia.webm.ro.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia este o organizatie non-profit dar si al cincelea site din lume. Toate articolele de be site-ul Wikipedia sunt scrise de voluntari.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nDorim sa va prezentam cativa dintre ei...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nSunt din Nepal\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nSunt din Irak\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nSunt din India\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nSunt din Byram, New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nSunt din Birmingham, Anglia\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois--La Paz, Bolivia -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malaesia -- Milan in Italia -- Africa de Sud\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolonia--Japonia--Armenia\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrazilia -- Rusia -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsrael--Uzbekistan--Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul, Mexic\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nAm inceput multe articole dupa ce m-am oferit ca voluntar cu Wikipedia in 2008.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nUnul dintre articole era despre o doamna pe care o cheama Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nNu era nici un articol despre ea, asa ca…asta a fost primul meu articol.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nDar am uitat de el! Doi sau trei ani mai tarziu,\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nVad articolul. Am fost socata.\\xa0\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nPeste o suta de mii de persone au citit articolul.\\xa0\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nL-au folosit, au obtinut informatii din articol. Au dat peste articolul asta\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nAsa ca simiti ca ai reusti sa afectezi si sa influentezi mai mult de o suta de mii de persoane.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nAm fost atat de speriat cand am apasat “edit” pentru prima oara.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nM-am gandit, “O Doamne, o sa distrug totul! Nu o sa mearga! Nu pot s-o fac!\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia este “sursa deschisa”—deci fiecare dintre noi poate sa isi prezinte ideea.\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nSi apoi vine altcineva care sa slefuiasca ideea, sa o faca superba.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nMii de persoane lucreaza in fiecare zi, in fiecare ora si fiecare minut sa imbunatateasca Wikipedia.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nMajoritatea muncii este munca voluntara. Este un mod unic de a face munca voluntara.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nReuneste atat profesionisti cat si amatori care impartasesc o dragoste pentru un anumit subiect.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nPersoane care au avut pareri diferite la inceput, colaboreaza.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nMulta din munca presupusa intr-o corporatie de Internet asa mare\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nEste realizata de persoane voluntare ca si mine.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nNu poti sa spui, “Eu am dreptate, tu esti gresit, asta este versiunea mea a articolului!”\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nDaca este o problema de bias,\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nAtunci probabil cineva a marcat-o déjà, si daca nu, acum pot si eu sa o semnalez.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nSute de mii de persoane vad problema\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nSi o corecteaza.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nApas butonul si\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom! Incepe calatoria si este grozav. .\\n\\n40\\n00:02:19,601 --> 00:02:21,000\\nPrimul articol pe care l-am inceput a fost “Probabilitatea”\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nUnul dintre articolele principale pe care le-am scris pe Wikipedia a fost\\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nArticolul despre rani de injughiere.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nScriu despre stilul de pescuit la musca\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nIstoria Montanei, Istoria Parcurilor Nationale, Yellowstone\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nSemanaturi subutilizate. Jucatori de sah. Diversitatea biologica.\\xa0\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nSubiecte de istorie militara. Istoria Armeniei. Istorie Romana.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nJudecatori. Comunicatie. Biografii. Fotbal.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrlanda. Pennsylvania. In cea mai mare parte despre fotografie.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Copt pentru ca imi place sa coc.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nArme nucleare si radioactivitate. \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nSi despre caiac.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nMult din informatia disponibila este imprastiata\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nSi noi o punem intr-un singur loc.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nOferim informatie gratuita tuturor\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nIn limba propie ca sa o poata folosi\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nToata lumea beneficiaza, nu conteaza daca sunt bogati sau saraci.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nCompaniile de profit au alte motivatii si cerinte diferite.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nDe la Fundatia Wikimedia nu primesc salariu si nu imi sunt rambursate cheltuielile.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nCred ca este foarte important ca pot spune clar\\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nCand iti cer ajutor financiar, nu iti cer pentru mine\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nIti cer ajutor financiar pentru o Fundatie care suporta o comunitate expcelenta din care fac si eu parte.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nCred ca Wikimedia mi-a dar sansa asta sa fac o mare diferenta in lume.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nEste ca o investitie in viitorul tau, in viitorul copiilor tai.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nMultumesc\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nContinutul acestui video este disponibil sub licenta Creative Commons Attribution-ShareAlike License\\nv3.0 (http://creativecommons.org/licenses/by-sa/3.0) cu exceptia cazurilor in care se prevede altfel.\\nProiectul acesta este atribuit lui Victor Grigas, Fundatia Wikimedia.\\n\\nPunctele de vedere și opiniile exprimate în acest film sunt numai cele ale persoanelor care apar\\nîn video și nu reflectă în mod necesar politicile sau pozitia nici unei companii,organizatii, sau\\ninstitutii ai carei persona este membra.\\n\\nMărcile comerciale și logo-urile Fundației Wikimedia, precum și ale oricarei alte\\norganizatii nu sunt incluse în termenii licentei Creative Commons. Mărci comerciale și\\nlogo-urile Wikimedia, inclusiv \"Wikipedia\" și logo-ul glob sunt inregistrate sub licenta\\nFundatiei Wikimedia. Pentru mai multe informatii, vizitati pagina noastra despre marci\\ncomerciale\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nAcest videoclip este publicat sub o licenta Creative Commons.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\n“Like” Wikipedia, este liber de a copia, remix si partaja.',\n", + " 'bytes': 6743,\n", + " 'sha1': 'iqk523l9gvvvhutnmur2xbsn6x23z71',\n", + " 'parent_id': 86442484,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94794974,\n", + " 'timestamp': '2013-04-19T18:02:05Z',\n", + " 'user': {'text': '216.38.130.167'},\n", + " 'page': {'id': 23125607,\n", + " 'title': 'The Impact of Wikipedia Howard Morland.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,7 --> 00:00:08,154\\nSo, I was on assignment for the \"Progressive\" magazine, and \\nI discovered what is known as the \"H-bomb secret.\"\\n\\n2\\n00:00:08,154 --> 00:00:10,825\\nSo that was one of the articles I wrote. \\n\\n3\\n00:00:10,825 --> 00:00:18,994\\nThe government got ahold of it, and took us \\nto court, censored the article, stopped the publication,\\n\\n4\\n00:00:18,994 --> 00:00:22,093\\nand we were in court for about six months \\n\\n5\\n00:00:22,653 --> 00:00:26,869\\nOver the course of six months we \"won over\" \\nthe press and the arms control people\\n\\n6\\n00:00:26,869 --> 00:00:34,069\\nand we convinced the government that the information I was \\nwriting about was in the public domain anyway,\\n\\n7\\n00:00:34,114 --> 00:00:35,296\\nso they dropped the case and we won.\\n\\n8\\n00:00:35,296 --> 00:00:36,959\\nMy name is Howard Morland.\\n\\n9\\n00:00:36,959 --> 00:00:43,273\\nI\\'ve been called a \"whistle blower,\" but I was \\nactually just a journalist covering a story.\\n\\n10\\n00:00:45,524 --> 00:00:49,024\\nI came in contact with this guy named \\nJohn Coster-Mullen, who was a truck driver.\\n\\n11\\n00:00:49,0 --> 00:00:54,0\\nwho had written a self-published book on the Hiroshima and Nagasaki bombs.\\n\\n12\\n00:00:54,929 --> 00:00:59,608\\nand he had no expertise in science at all, \\n\\n13\\n00:00:59,608 --> 00:01:08,329\\nbut he had this weird idea that he would start going \\nto reunions of the people who dropped the bomb.\\n\\n14\\n00:01:08,5 --> 00:01:12,876\\neven though he wasn\\'t even their generation.\\n\\n15\\n00:01:13,336 --> 00:01:17,674\\nBut he went there, he started making friends \\nwith these people, talking to them.\\n\\n16\\n00:01:17,674 --> 00:01:22,889\\nThey started telling him what they knew about \\nthe Hiroshima bomb and the Nagasaki bomb.\\n\\n17\\n00:01:23,348 --> 00:01:29,198\\nAnd when I looked at his evidence, I was convinced, and I asked \\nhim - I said the Wikipedia article has got it wrong. \\n\\n18\\n00:01:29,21 --> 00:01:29,965\\nDo you want to fix that?\\n\\n19\\n00:01:29,965 --> 00:01:31,673\\nAnd he said, \"I already tried.\"\\n\\n20\\n00:01:31,673 --> 00:01:39,788\\nI submitted a correction to the Wikipedia article, and this guy \\nnamed Fastfission, who - we don\\'t know who he is.\\n\\n21\\n00:01:39,788 --> 00:01:41,75\\nHe has always remained anonymous. \\n\\n22\\n00:01:41,746 --> 00:01:50,89\\nhe said that this is not credible information because you don\\'t \\nhave anything you can cite except your own self-published book,\\n\\n23\\n00:01:50,887 --> 00:01:54,03\\nand every other book in the world says you\\'re wrong.\\n\\n24\\n00:01:54,486 --> 00:02:01,81\\nSo I said, well, I think we can fix that, even though \\nI knew nothing about it. This was my introduction to Wikipedia.\\n\\n25\\n00:02:01,81 --> 00:02:04,41\\nI said, I think we can fix that.\\n\\n26\\n00:02:04,407 --> 00:02:06,75\\nAnd I got Richard Rhodes, who wrote a Pulitzer Prize \\nwinning book, The Making of the Atomic Bomb,\\n\\n27\\n00:02:10,851 --> 00:02:20,70\\nStan Norris, who had written the biography of Leslie \\nGroves, the General who ran the [Manhattan] Project.\\n\\n28\\n00:02:21,156 --> 00:02:29,26\\nand a couple of other people, and we all wrote \\ninto the Talk Page and told Fastfission, \\n\\n29\\n00:02:29,265 --> 00:02:35,49\\nwe\\'ve all got published books. We haven\\'t said anything about this topic, \\nbut we read this guy\\'s book, and we think he\\'s right,\\n\\n30\\n00:02:35,494 --> 00:02:37,12\\nand everybody else is wrong.\\n\\n31\\n00:02:37,116 --> 00:02:41,96\\nAnd so Fastfission then yielded, and I wrote the correction.\\n\\n32\\n00:02:42,394 --> 00:02:47,41\\nWikipedia is one of the most amazing institutions I\\'ve ever encountered.\\n\\n33\\n00:02:47,477 --> 00:02:49,61\\nI don\\'t know anything like it.\\n\\n34\\n00:02:50,059 --> 00:02:58,98\\nIt is a testament to the desire of people \\nto know things and to share information.\\n\\n35\\n00:03:00,096 --> 00:03:03,37\\nDespite the fact that from the beginning of time, \\n\\n36\\n00:03:03,371 --> 00:03:07,67\\nwhen people started learning how to do stuff, I\\'m \\nsure they tried to keep it secret.\\n\\n37\\n00:03:07,67 --> 00:03:11,32\\nI know that people who write books, especially in the nuclear weapons field, \\n\\n38\\n00:03:11,325 --> 00:03:16,87\\nlargely they are professors, or people working at think tanks; they have a salary.\\n\\n39\\n00:03:16,871 --> 00:03:20,12\\nThey write these books. The books don\\'t make any money.\\n\\n40\\n00:03:20,125 --> 00:03:23,12\\nThey are read by very few people.\\n\\n41\\n00:03:23,5 --> 00:03:29,65\\nBut they write the book, they give a seminar, but the \\nWikipedia article that I wrote on nuclear weapons design\\n\\n42\\n00:03:32,812 --> 00:03:36,39\\ngets, I think, the last time I looked, it \\nhad something like 400 hits a day.\\n\\n43\\n00:03:36,39 --> 00:03:39,86\\nNobody\\'s book gets that much publicity.\\n\\n44\\n00:03:39,858 --> 00:03:46,97\\nAnd I don\\'t get any money for it, \\nbut I produce this information, and \\n\\n45\\n00:03:46,968 --> 00:03:49,24\\nsomehow it\\'s getting out there, and people are looking at it.\\n\\n46\\n00:03:49,235 --> 00:03:55,60\\nSo, that\\'s the satisfaction of being a writer whose work is read.\\n\\n47\\n00:03:56,178 --> 00:03:57,10\\nDirector: Victor Grigas\\n\\n48\\n00:03:57,105 --> 00:03:57,66\\nCodirector: David Grossman \\n\\n49\\n00:03:57,659 --> 00:03:58,31\\nProducer: Zack Exley\\n\\n50\\n00:03:58,308 --> 00:03:58,82\\nDirector of Photography: Pruitt Y. Allen \\n\\n51\\n00:03:58,82 --> 00:03:59,50\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck \\n\\n52\\n00:03:59,505 --> 00:04:00,03\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n53\\n00:04:00,028 --> 00:04:00,49\\nMakeup: Melissa Klein\\n\\n54\\n00:04:00,492 --> 00:04:01,88\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\n McSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson \\n\\n55\\n00:04:01,882 --> 00:04:03,13\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n56\\n00:04:03,129 --> 00:04:03,95\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n57\\n00:04:03,953 --> 00:04:04,65\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n58\\n00:04:04,651 --> 00:04:05,18\\nWriter: Desirina Boskovich\\n\\n59\\n00:04:05,177 --> 00:04:06,24\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n60\\n00:04:06,245 --> 00:04:06,82\\nEnglish Closed-Captioning: AlanKelly VerbatimIT',\n", + " 'bytes': 6106,\n", + " 'sha1': '9siy3hyej2twhih2at9bf6ymwfl414v',\n", + " 'parent_id': 84732373,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84912590,\n", + " 'timestamp': '2012-12-13T10:21:10Z',\n", + " 'user': {'id': 1985636, 'text': 'Assanges'},\n", + " 'page': {'id': 23174657,\n", + " 'title': 'The Impact Of Wikipedia.webm.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Bug fix',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\n維基百科是非營利的網站,但它是世界第五大網站,維基百科的所有詞條皆源自於志願者的貢獻\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\n我們很希望把他們其中幾位介紹給你\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\n我來自尼泊爾\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\n我來自伊拉克\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\n我從印度來\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\n我來自新澤西州的拜拉姆\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\n我住在英格蘭的伯明翰\\n\\n8\\n00:00:18,100 --> 00:00:22,040\\n伊利諾伊州芝加哥--玻利維亞拉巴斯--肯尼亞內羅畢\\n\\n9\\n00:00:22,040 --> 00:00:24,000\\n馬來西亞吉隆坡--意大利米蘭--南非\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\n波蘭--日本--亞美尼亞\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\n巴西--俄羅斯--博茨瓦納\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\n以色列--烏茲別克斯坦--香港\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\n伊斯坦布爾--墨西哥\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\n田納西州查特怒加市\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\n二零零八年當我剛加入維基百科時,我撰寫了很多條目\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\n我想它們其中之一是有關一位女士,名字似乎是瑪麗亞姆• 努爾\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\n我們尚沒有關於這個的條目,所以這便成了我的第一篇貢獻\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\n所以我把它給忘了!或許在兩三年之後吧\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\n我再經過我所撰寫條目,我被的它瀏覽量震驚了\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\n超過十萬人閱覽了這篇文章。\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\n他們參考了條目,然後從詞條中得到了他們所需的信息,他們曾閱覽過這詞條\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\n所以你感覺你影響了成千上萬的人\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\n在我第一次按下“編輯”按鈕的時候,我感到非常害怕。\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\n我想:上帝啊,我會把一切都搞砸的,那樣是行不通的,我不能這麼做\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\n維基百科是“開源”的——每個人都可以拋出自己的想法\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\n之後會別的人進來充實這個想法,使它變得更加完美。\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\n這裡有成千上萬的人每天、每小時、每分鐘在維基百科上工作,使它得到完善。\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\n很大程度上這是志願者精神,這是一個很特別的志願方法\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\n它將對於一個特定話題有興趣的專業人士及業餘人士凝聚到一起\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\n在最初有不同意見的人們開始合作了起來\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\n想像中這是一個龐大的網絡公司才能做到的事情\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\n但事實上是一個個像我一樣的志願者實現了它\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\n你只是不能說,“好吧,我是對的,你是錯的,這是闡述我觀點的文章!”\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\n有些包含偏見的文字\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\n有些人可能早把它標記起來,如果沒有,那我就可以去標記它\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\n有成千上萬的人注視著它\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\n並改正它\\n\\n38\\n00:02:15,001 --> 00:02:16,400 然後,我按下了按鈕,並且\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\n嘭!旅程開始了,感覺太棒了\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\n首先,我從編輯“概率”這個詞條開始\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\n我最先編輯的詞條是“概率”\\n\\n41\\n00:02:24,001 --> 00:02:26,\\u200b\\u200b000\\n “刀傷”是我在維基上\\n\\n42\\n00:02:26,\\u200b\\u200b001 --> 00:02:27,400\\n寫的主要條目之一\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\n我撰寫了些關於飛蠅釣法的文章\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\n以及蒙大拿歷史,國家公園歷史,黃石公園\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\n未充分利用的作物,棋手,生物多樣性\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\n軍事歷史主題,亞美尼亞歷史,羅馬歷史\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\n法官,交流,傳記,足球\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\n愛爾蘭,賓西法尼亞州,大部分是有關攝影的條目\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\n平克·弗洛伊德。還有烘焙,因為我愛烘焙\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\n核武器及放射性\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\n還有激流皮划艇。\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\n世界上到處散落著這些信息\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\n而我們把他們匯聚到同一個空間裡來\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\n我們以每個人的母語提供自由免費的知識\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\n這樣他們就可以應用這些知識\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\n無論貧窮與富裕,每個人都從中獲益\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\n營利性公司具有與我們截然不同的動機和需求\\n\\n58\\n00:03:16,400 --> 00:03:22,500\\n維基百科創辦人 ── 吉米.威爾斯\\n\\n59\\n00:03:16,550 --> 00:03:22,000\\n我既不從維基基金會獲得收入,也不用為其支出\\n\\n60\\n00:03:22,001 --> 00:03:25,500\\n我認為我把話說得十分清楚是非常重要的\\n\\n61\\n00:03:25,501 --> 00:03:30,500\\n請注意,當我向你尋求資助時,不是我在為我自己要錢\\n\\n62\\n00:03:30,501 --> 00:03:36,000\\n我是作為這個社群的一分子,為支撐起這個偉大社群的基金會尋求資金幫助\\n\\n63\\n00:03:36,501 --> 00:03:41,400\\n我想,維基百科給予了我一個真正的、大大改變世界的機會。\\n\\n64\\n00:03:41,401 --> 00:03:48,000\\n而這就如同一筆為了你未來的投資,一筆為了你子孫未來的投資\\n\\n65\\n00:03:50,899 --> 00:03:52,999\\n維基百科\\n\\n67\\n00:03:53,401 --> 00:03:57,000\\n由衷地感謝以上的受訪者\\n\\n67\\n00:04:00,000 --> 00:04:03,000\\n此影片內容除特別註明外,均以共享創意/創建CC CC-BY-SA 3.0協議發表,詳情請參考:http://creativecommons.org/licenses/by-sa/3.0 。影片由Victor Grigas為維基媒體基金會製作。影片中人士的言論僅代表其個人觀點,並不構成以各種身份代表任何機構所發表的任何觀點。請注意,任何Wikipedia®和有關維基百科的標識均為維基媒體基金會的註冊商標;維基™是維基媒體基金會的商標。有關以上商標的更多資訊,請電郵至或參考:http://www.wikimediafoundation.org/wiki/Trademark_Policy\\n\\n68\\n00:04:03,000 --> 00:04:05,000\\n這段視頻遵循\"Creative Commons license\" 共享創意/創建CC協議發佈\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\n就像維基百科一樣,這是可以自由拷貝,修改,分享的。',\n", + " 'bytes': 6755,\n", + " 'sha1': '32d71dzojl8g0za001p11q7zb2099ca',\n", + " 'parent_id': 84912501,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84912601,\n", + " 'timestamp': '2012-12-13T10:21:30Z',\n", + " 'user': {'id': 1985636, 'text': 'Assanges'},\n", + " 'page': {'id': 23174713,\n", + " 'title': 'The Impact Of Wikipedia.webm.zh-hk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 維基百科是非營利的網站,但它是世界第五大網站,維基百科的所有詞條皆源自於志願者的貢獻 ...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\n維基百科是非營利的網站,但它是世界第五大網站,維基百科的所有詞條皆源自於志願者的貢獻\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\n我們很希望把他們其中幾位介紹給你\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\n我來自尼泊爾\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\n我來自伊拉克\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\n我從印度來\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\n我來自新澤西州的拜拉姆\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\n我住在英格蘭的伯明翰\\n\\n8\\n00:00:18,100 --> 00:00:22,040\\n伊利諾伊州芝加哥--玻利維亞拉巴斯--肯尼亞內羅畢\\n\\n9\\n00:00:22,040 --> 00:00:24,000\\n馬來西亞吉隆坡--意大利米蘭--南非\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\n波蘭--日本--亞美尼亞\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\n巴西--俄羅斯--博茨瓦納\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\n以色列--烏茲別克斯坦--香港\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\n伊斯坦布爾--墨西哥\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\n田納西州查特怒加市\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\n二零零八年當我剛加入維基百科時,我撰寫了很多條目\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\n我想它們其中之一是有關一位女士,名字似乎是瑪麗亞姆• 努爾\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\n我們尚沒有關於這個的條目,所以這便成了我的第一篇貢獻\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\n所以我把它給忘了!或許在兩三年之後吧\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\n我再經過我所撰寫條目,我被的它瀏覽量震驚了\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\n超過十萬人閱覽了這篇文章。\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\n他們參考了條目,然後從詞條中得到了他們所需的信息,他們曾閱覽過這詞條\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\n所以你感覺你影響了成千上萬的人\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\n在我第一次按下“編輯”按鈕的時候,我感到非常害怕。\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\n我想:上帝啊,我會把一切都搞砸的,那樣是行不通的,我不能這麼做\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\n維基百科是“開源”的——每個人都可以拋出自己的想法\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\n之後會別的人進來充實這個想法,使它變得更加完美。\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\n這裡有成千上萬的人每天、每小時、每分鐘在維基百科上工作,使它得到完善。\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\n很大程度上這是志願者精神,這是一個很特別的志願方法\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\n它將對於一個特定話題有興趣的專業人士及業餘人士凝聚到一起\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\n在最初有不同意見的人們開始合作了起來\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\n想像中這是一個龐大的網絡公司才能做到的事情\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\n但事實上是一個個像我一樣的志願者實現了它\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\n你只是不能說,“好吧,我是對的,你是錯的,這是闡述我觀點的文章!”\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\n有些包含偏見的文字\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\n有些人可能早把它標記起來,如果沒有,那我就可以去標記它\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\n有成千上萬的人注視著它\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\n並改正它\\n\\n38\\n00:02:15,001 --> 00:02:16,400 然後,我按下了按鈕,並且\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\n嘭!旅程開始了,感覺太棒了\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\n首先,我從編輯“概率”這個詞條開始\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\n我最先編輯的詞條是“概率”\\n\\n41\\n00:02:24,001 --> 00:02:26,\\u200b\\u200b000\\n “刀傷”是我在維基上\\n\\n42\\n00:02:26,\\u200b\\u200b001 --> 00:02:27,400\\n寫的主要條目之一\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\n我撰寫了些關於飛蠅釣法的文章\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\n以及蒙大拿歷史,國家公園歷史,黃石公園\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\n未充分利用的作物,棋手,生物多樣性\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\n軍事歷史主題,亞美尼亞歷史,羅馬歷史\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\n法官,交流,傳記,足球\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\n愛爾蘭,賓西法尼亞州,大部分是有關攝影的條目\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\n平克·弗洛伊德。還有烘焙,因為我愛烘焙\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\n核武器及放射性\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\n還有激流皮划艇。\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\n世界上到處散落著這些信息\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\n而我們把他們匯聚到同一個空間裡來\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\n我們以每個人的母語提供自由免費的知識\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\n這樣他們就可以應用這些知識\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\n無論貧窮與富裕,每個人都從中獲益\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\n營利性公司具有與我們截然不同的動機和需求\\n\\n58\\n00:03:16,400 --> 00:03:22,500\\n維基百科創辦人 ── 吉米.威爾斯\\n\\n59\\n00:03:16,550 --> 00:03:22,000\\n我既不從維基基金會獲得收入,也不用為其支出\\n\\n60\\n00:03:22,001 --> 00:03:25,500\\n我認為我把話說得十分清楚是非常重要的\\n\\n61\\n00:03:25,501 --> 00:03:30,500\\n請注意,當我向你尋求資助時,不是我在為我自己要錢\\n\\n62\\n00:03:30,501 --> 00:03:36,000\\n我是作為這個社群的一分子,為支撐起這個偉大社群的基金會尋求資金幫助\\n\\n63\\n00:03:36,501 --> 00:03:41,400\\n我想,維基百科給予了我一個真正的、大大改變世界的機會。\\n\\n64\\n00:03:41,401 --> 00:03:48,000\\n而這就如同一筆為了你未來的投資,一筆為了你子孫未來的投資\\n\\n65\\n00:03:50,899 --> 00:03:52,999\\n維基百科\\n\\n67\\n00:03:53,401 --> 00:03:57,000\\n由衷地感謝以上的受訪者\\n\\n67\\n00:04:00,000 --> 00:04:03,000\\n此影片內容除特別註明外,均以共享創意 CC-BY-SA 3.0協議發表,詳情請參考:http://creativecommons.org/licenses/by-sa/3.0 。影片由Victor Grigas為維基媒體基金會製作。影片中人士的言論僅代表其個人觀點,並不構成以各種身份代表任何機構所發表的任何觀點。請注意,任何Wikipedia®和有關維基百科的標識均為維基媒體基金會的註冊商標;維基™是維基媒體基金會的商標。有關以上商標的更多資訊,請電郵至或參考:http://www.wikimediafoundation.org/wiki/Trademark_Policy\\n\\n68\\n00:04:03,000 --> 00:04:05,000\\n這段視頻遵循\"Creative Commons license\" 共享創意協議發佈\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\n就像維基百科一樣,這是可以自由拷貝,修改,分享的。',\n", + " 'bytes': 6737,\n", + " 'sha1': 'hdfe9cm9ctpulxzb5qclfp9pj5rhjvw',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 84912619,\n", + " 'timestamp': '2012-12-13T10:21:53Z',\n", + " 'user': {'id': 1985636, 'text': 'Assanges'},\n", + " 'page': {'id': 23174719,\n", + " 'title': 'The Impact Of Wikipedia.webm.zh-tw.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 維基百科是非營利的網站,但它是世界第五大網站,維基百科的所有詞條皆源自於志願者的貢獻 ...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\n維基百科是非營利的網站,但它是世界第五大網站,維基百科的所有詞條皆源自於志願者的貢獻\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\n我們很希望把他們其中幾位介紹給你\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\n我來自尼泊爾\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\n我來自伊拉克\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\n我從印度來\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\n我來自新澤西州的拜拉姆\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\n我住在英格蘭的伯明翰\\n\\n8\\n00:00:18,100 --> 00:00:22,040\\n伊利諾伊州芝加哥--玻利維亞拉巴斯--肯尼亞內羅畢\\n\\n9\\n00:00:22,040 --> 00:00:24,000\\n馬來西亞吉隆坡--意大利米蘭--南非\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\n波蘭--日本--亞美尼亞\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\n巴西--俄羅斯--博茨瓦納\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\n以色列--烏茲別克斯坦--香港\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\n伊斯坦布爾--墨西哥\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\n田納西州查特怒加市\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\n二零零八年當我剛加入維基百科時,我撰寫了很多條目\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\n我想它們其中之一是有關一位女士,名字似乎是瑪麗亞姆• 努爾\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\n我們尚沒有關於這個的條目,所以這便成了我的第一篇貢獻\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\n所以我把它給忘了!或許在兩三年之後吧\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\n我再經過我所撰寫條目,我被的它瀏覽量震驚了\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\n超過十萬人閱覽了這篇文章。\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\n他們參考了條目,然後從詞條中得到了他們所需的信息,他們曾閱覽過這詞條\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\n所以你感覺你影響了成千上萬的人\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\n在我第一次按下“編輯”按鈕的時候,我感到非常害怕。\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\n我想:上帝啊,我會把一切都搞砸的,那樣是行不通的,我不能這麼做\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\n維基百科是“開源”的——每個人都可以拋出自己的想法\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\n之後會別的人進來充實這個想法,使它變得更加完美。\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\n這裡有成千上萬的人每天、每小時、每分鐘在維基百科上工作,使它得到完善。\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\n很大程度上這是志願者精神,這是一個很特別的志願方法\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\n它將對於一個特定話題有興趣的專業人士及業餘人士凝聚到一起\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\n在最初有不同意見的人們開始合作了起來\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\n想像中這是一個龐大的網絡公司才能做到的事情\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\n但事實上是一個個像我一樣的志願者實現了它\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\n你只是不能說,“好吧,我是對的,你是錯的,這是闡述我觀點的文章!”\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\n有些包含偏見的文字\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\n有些人可能早把它標記起來,如果沒有,那我就可以去標記它\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\n有成千上萬的人注視著它\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\n並改正它\\n\\n38\\n00:02:15,001 --> 00:02:16,400 然後,我按下了按鈕,並且\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\n嘭!旅程開始了,感覺太棒了\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\n首先,我從編輯“概率”這個詞條開始\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\n我最先編輯的詞條是“概率”\\n\\n41\\n00:02:24,001 --> 00:02:26,\\u200b\\u200b000\\n “刀傷”是我在維基上\\n\\n42\\n00:02:26,\\u200b\\u200b001 --> 00:02:27,400\\n寫的主要條目之一\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\n我撰寫了些關於飛蠅釣法的文章\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\n以及蒙大拿歷史,國家公園歷史,黃石公園\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\n未充分利用的作物,棋手,生物多樣性\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\n軍事歷史主題,亞美尼亞歷史,羅馬歷史\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\n法官,交流,傳記,足球\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\n愛爾蘭,賓西法尼亞州,大部分是有關攝影的條目\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\n平克·弗洛伊德。還有烘焙,因為我愛烘焙\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\n核武器及放射性\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\n還有激流皮划艇。\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\n世界上到處散落著這些信息\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\n而我們把他們匯聚到同一個空間裡來\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\n我們以每個人的母語提供自由免費的知識\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\n這樣他們就可以應用這些知識\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\n無論貧窮與富裕,每個人都從中獲益\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\n營利性公司具有與我們截然不同的動機和需求\\n\\n58\\n00:03:16,400 --> 00:03:22,500\\n維基百科創辦人 ── 吉米.威爾斯\\n\\n59\\n00:03:16,550 --> 00:03:22,000\\n我既不從維基基金會獲得收入,也不用為其支出\\n\\n60\\n00:03:22,001 --> 00:03:25,500\\n我認為我把話說得十分清楚是非常重要的\\n\\n61\\n00:03:25,501 --> 00:03:30,500\\n請注意,當我向你尋求資助時,不是我在為我自己要錢\\n\\n62\\n00:03:30,501 --> 00:03:36,000\\n我是作為這個社群的一分子,為支撐起這個偉大社群的基金會尋求資金幫助\\n\\n63\\n00:03:36,501 --> 00:03:41,400\\n我想,維基百科給予了我一個真正的、大大改變世界的機會。\\n\\n64\\n00:03:41,401 --> 00:03:48,000\\n而這就如同一筆為了你未來的投資,一筆為了你子孫未來的投資\\n\\n65\\n00:03:50,899 --> 00:03:52,999\\n維基百科\\n\\n67\\n00:03:53,401 --> 00:03:57,000\\n由衷地感謝以上的受訪者\\n\\n67\\n00:04:00,000 --> 00:04:03,000\\n此影片內容除特別註明外,均以創建CC CC-BY-SA 3.0協議發表,詳情請參考:http://creativecommons.org/licenses/by-sa/3.0 。影片由Victor Grigas為維基媒體基金會製作。影片中人士的言論僅代表其個人觀點,並不構成以各種身份代表任何機構所發表的任何觀點。請注意,任何Wikipedia®和有關維基百科的標識均為維基媒體基金會的註冊商標;維基™是維基媒體基金會的商標。有關以上商標的更多資訊,請電郵至或參考:http://www.wikimediafoundation.org/wiki/Trademark_Policy\\n\\n68\\n00:04:03,000 --> 00:04:05,000\\n這段視頻遵循\"Creative Commons license\" 創建CC協議發佈\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\n就像維基百科一樣,這是可以自由拷貝,修改,分享的。',\n", + " 'bytes': 6729,\n", + " 'sha1': 'kri88slyalwwdoxntpmlm1n4vtr33gc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85022725,\n", + " 'timestamp': '2012-12-14T21:35:10Z',\n", + " 'user': {'text': '216.38.130.162'},\n", + " 'page': {'id': 23185692,\n", + " 'title': 'The Impact of Wikipedia Gideon Digby.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,695 --> 00:00:02,411\\nSometimes I think I\\'m a bit crazy to\\n\\n2\\n00:00:02,411 --> 00:00:06,707\\ngo out in the rain, or climb a fence or cross a swollen creek, or\\n\\n3\\n00:00:06,707 --> 00:00:11,105\\ngo for a drive for what worked out to be almost a thousand miles,\\n\\n4\\n00:00:11,105 --> 00:00:13,150\\nto take a photograph of one sign.\\n\\n5\\n00:00:14,447 --> 00:00:16,888\\nMy name is Gideon, and my username is Gnangarra\\n\\n6\\n00:00:16,888 --> 00:00:20,662\\nIn Australia, there\\'s that old fable about the outback.\\n\\n7\\n00:00:21,379 --> 00:00:23,879\\nand there was a sign for one of the shires I knew I had seen it before.\\n\\n8\\n00:00:24,231 --> 00:00:26,191\\nAnd all it says is \"Outback starts here.\"\\n\\n9\\n00:00:26,941 --> 00:00:30,509\\nSo, I drove from Perth up to the sign, took a photo, and drove back home again.\\n\\n10\\n00:00:30,952 --> 00:00:33,835\\nIt all began with the Kangaroo Paw I clicked on the Wikipedia article.\\n\\n11\\n00:00:35,0 --> 00:00:36,43\\nAnd it said, this is the floral emblem of Western Australia, or something - and that\\'s it!\\n\\n12\\n00:00:39,0 --> 00:00:41,1\\nI knew more about the flower than what was there, \\n\\n13\\n00:00:41,155 --> 00:00:45,155\\nand I saw the l little button at the top that said edit this page, so I started editing.\\n\\n14\\n00:00:45,218 --> 00:00:50,792\\nA Wikipedia Photographer is a fantastic world, because you can pick and choose what you realize --\\n\\n15\\n00:00:50,792 --> 00:00:55,465\\nyou can change subjects, so you can go read an article about something, \\n\\n16\\n00:00:55,465 --> 00:00:58,831\\nyou can go, oh! I know what that is. You only need to go down the road, I\\'ll take a drive.\\n\\n17\\n00:00:58,831 --> 00:01:05,657\\nAnd take some photos, and it challenges you to change your styles. When you\\'re looking at architecture, to plants, \\n\\n18\\n00:01:06,451 --> 00:01:08,917\\nto full-on scenery. \\n\\n19\\n00:01:09,278 --> 00:01:13,673\\nI like shooting the flowers in Western Australia, because there\\'s just so many of them.\\n\\n20\\n00:01:14,224 --> 00:01:19,433\\nThe variety is just going to take you years to shoot every one.\\n\\n21\\n00:01:20,005 --> 00:01:23,686\\nThat\\'s part of the challenge - getting in, and finding some of these flowers when they\\'re in season.\\n\\n22\\n00:01:23,686 --> 00:01:28,412\\nA lot of them are endangered. A lot of them are in restricted areas where you aren\\'t supposed to go.\\n\\n23\\n00:01:29,04 --> 00:01:35,604\\nA lot of them -- you know a general location, but you don\\'t know a physical location, \\n\\n24\\n00:01:36,07 --> 00:01:37,305\\nso you\\'ve got to work that out yourself.\\n\\n25\\n00:01:38,02 --> 00:01:40,46\\nOne plant, it\\'s a banksia -- \\n\\n26\\n00:01:40,46 --> 00:01:43,70\\nand to get photos of that, it\\'s in a very small area, \\n\\n27\\n00:01:43,696 --> 00:01:46,94\\nit\\'s more or less a swampy ground type thing.\\n\\n28\\n00:01:46,937 --> 00:01:50,95\\nIn the Botanical Gardens, where I originally took a couple of photos of the flower\\n\\n29\\n00:01:50,951 --> 00:01:53,42\\nthey\\'ve got one specimen growing there. \\n\\n30\\n00:01:53,417 --> 00:01:56,92\\nSo, I got some of those, and then as the article was going to featured, \\n\\n31\\n00:01:56,981 --> 00:02:00,64\\nI went to actually photograph the species in its location.\\n\\n32\\n00:02:00,639 --> 00:02:03,89\\nwhich is the best way to present it anyway.\\n\\n33\\n00:02:03,892 --> 00:02:11,82\\nSo, I went to this place, and it\\'s circled by a 6-foot high cyclone fence with three strands of barbed wire across the top.\\n\\n34\\n00:02:11,816 --> 00:02:16,36\\nSo, up and over I go, and I took my photos -- no problem at all -- \\n\\n35\\n00:02:16,359 --> 00:02:22,76\\nand about six months later, a fire goes through the area and absolutely destroys everything - flattens it.\\n\\n36\\n00:02:22,761 --> 00:02:28,56\\nbut that\\'s good for the plant, because the Banksia release their seeds after a fire has gone through.\\n\\n37\\n00:02:29,454 --> 00:02:32,73\\nAnd then the seeds germinate in the ash, and grow up from there.\\n\\n38\\n00:02:32,726 --> 00:02:35,70\\nSo, here\\'s this article we\\'re going through, and it\\'s like, OK! \\n\\n39\\n00:02:35,695 --> 00:02:41,50\\nI\\'m going to go back and get some seedling photos in the same area.\\n\\n40\\n00:02:41,56 --> 00:02:42,91\\nI had to go back over the fence again.\\n\\n41\\n00:02:42,911 --> 00:02:47,94\\nThe ground was a lot wet and soggy, and that makes it interesting to start with.\\n\\n42\\n00:02:47,939 --> 00:02:53,48\\nI took a photo of the plant and get some leaf photos, show some nice images of the seedlings climbing back over the fence,\\n\\n43\\n00:02:53,48 --> 00:02:57,47\\nand I get across the drain, and of course, I was protecting my camera, \\n\\n44\\n00:02:57,474 --> 00:02:59,06\\nit doesn\\'t matter about anything else.\\n\\n45\\n00:02:59,055 --> 00:03:00,58\\nI stepped up onto the side - my foot slides. \\n\\n46\\n00:03:00,581 --> 00:03:07,65\\nSo I got back down into the swamp, into the drain, and climb back out -- boot missing.\\n\\n47\\n00:03:07,647 --> 00:03:08,65\\nOh well!\\n\\n48\\n00:03:08,647 --> 00:03:11,15\\nSo yeah, a pair of boots.\\n\\n49\\n00:03:11,064 --> 00:03:12,95\\nDirector: Victor Grigas\\n\\n50\\n00:03:14,59 --> 00:03:15,53\\nCodirector: David Grossman\\n\\n51\\n00:03:15,532 --> 00:03:16,53\\nProducer: Zack Exley\\n\\n52\\n00:03:16,879 --> 00:03:17,78\\nDirector of Photography: Pruitt Y. Allen\\n\\n53\\n00:03:17,701 --> 00:03:19,10\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck\\n\\n54\\n00:03:19,098 --> 00:03:20,15\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n55\\n00:03:20,147 --> 00:03:21,40\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n56\\n00:03:21,585 --> 00:03:23,13\\nInterviewers: Alma Shapa, Jonathan Curiel, Stephen Geer, Corey \\n O\\'Brien, Frank O\\'Brien, Jacob Wilson, Dan McSwain\\n\\n57\\n00:03:23,129 --> 00:03:23,93\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n58\\n00:03:23,93 --> 00:03:24,43\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n59\\n00:03:24,43 --> 00:03:25,43\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\n Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n60\\n00:03:25,435 --> 00:03:25,68\\nMakeup: Melissa Klein \\n\\n61\\n00:03:26,092 --> 00:03:26,34\\nTitles: Vibha Bamba, Trevor Parscal\\n\\n62\\n00:03:26,686 --> 00:03:26,94\\nWriter: Desirina Boskovich \\n\\n63\\n00:03:26,702 --> 00:03:26,92\\nEnglish Closed Captions: AlanKelly VerbatimIT\\n\\n64\\n00:03:26,921 --> 00:03:27,00\\n.',\n", + " 'bytes': 6163,\n", + " 'sha1': 'gxd3xnmrvxu8vos6zomhfm43nj720to',\n", + " 'parent_id': 84957511,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85105680,\n", + " 'timestamp': '2012-12-16T04:00:18Z',\n", + " 'user': {'id': 2492316, 'text': 'Mrsocial99mfine'},\n", + " 'page': {'id': 23213599,\n", + " 'title': 'Macarthurjustfadeaway.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,940\\nThe world has turned over many times\\n\\n2\\n00:00:05,940 --> 00:00:11,140\\nSince I took the oath on the plain at West Point\\n\\n3\\n00:00:11,140 --> 00:00:17,660\\nAnd the hopes and dreams have long since vanished\\n\\n4\\n00:00:17,660 --> 00:00:21,220\\nBut I still remember the refrain\\n\\n5\\n00:00:21,220 --> 00:00:28,340\\nOf one of the most popular barrack ballads of that day\\n\\n6\\n00:00:28,340 --> 00:00:34,140\\nWhich proclaimed most proudly\\n\\n7\\n00:00:34,140 --> 00:00:45,900\\nThat \"old soldiers never die; they just fade away.\"',\n", + " 'bytes': 535,\n", + " 'sha1': 'o7sifc1rn7ggxfab7tqprrf4lzeux55',\n", + " 'parent_id': 85105316,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 659557145,\n", + " 'timestamp': '2022-05-28T15:33:09Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 23216090,\n", + " 'title': 'President Obama Makes a Statement on the Shooting in Newtown.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Overall subtitles update: reading speed, adjustments for layout on mobile devices, adjustments in sync etc.',\n", + " 'text': \"1\\n00:00:00,526 --> 00:00:03,466\\nThe President: This afternoon,\\nI spoke with Governor Malloy\\n\\n2\\n00:00:03,478 --> 00:00:05,927\\nand FBI Director Mueller.\\n\\n3\\n00:00:06,867 --> 00:00:09,779\\nI offered Governor Malloy my condolences\\n\\n4\\n00:00:09,801 --> 00:00:11,681\\non behalf of the nation,\\n\\n5\\n00:00:11,713 --> 00:00:14,737\\nand made it clear\\nhe will have every single resource\\n\\n6\\n00:00:14,770 --> 00:00:17,788\\nthat he needs to investigate\\nthis heinous crime,\\n\\n7\\n00:00:18,809 --> 00:00:20,766\\ncare for the victims,\\n\\n8\\n00:00:20,786 --> 00:00:23,119\\ncounsel their families.\\n\\n9\\n00:00:24,273 --> 00:00:27,796\\nWe've endured too many of\\nthese tragedies in the past few years.\\n\\n10\\n00:00:28,473 --> 00:00:31,493\\nAnd each time I learn the news\\n\\n11\\n00:00:31,526 --> 00:00:34,462\\nI react not as a President,\\n\\n12\\n00:00:34,484 --> 00:00:38,302\\nbut as anybody else would -- as a parent.\\n\\n13\\n00:00:39,484 --> 00:00:41,753\\nAnd that was especially true today.\\n\\n14\\n00:00:43,285 --> 00:00:46,252\\nI know there's not a parent in America\\n\\n15\\n00:00:46,287 --> 00:00:50,280\\nwho doesn't feel the same\\noverwhelming grief that I do.\\n\\n16\\n00:00:51,543 --> 00:00:54,726\\nThe majority of those\\nwho died today were children --\\n\\n17\\n00:00:56,783 --> 00:01:00,284\\nbeautiful little kids \\nbetween the ages of 5 and 10 years old.\\n\\n18\\n00:01:12,266 --> 00:01:14,312\\nThey had their entire lives\\nahead of them --\\n\\n19\\n00:01:15,187 --> 00:01:20,490\\nbirthdays, graduations, weddings,\\n\\n20\\n00:01:20,509 --> 00:01:22,243\\nkids of their own.\\n\\n21\\n00:01:27,524 --> 00:01:30,222\\nAmong the fallen were also teachers --\\n\\n22\\n00:01:30,243 --> 00:01:33,234\\nmen and women who devoted\\ntheir lives to helping our children\\n\\n23\\n00:01:33,256 --> 00:01:34,754\\nfulfill their dreams.\\n\\n24\\n00:01:35,316 --> 00:01:38,673\\nSo our hearts are broken today --\\n\\n25\\n00:01:38,707 --> 00:01:41,997\\nfor the parents and grandparents,\\n\\n26\\n00:01:42,033 --> 00:01:44,938\\nsisters and brothers of \\nthese little children,\\n\\n27\\n00:01:45,497 --> 00:01:47,818\\nand for the families of\\nthe adults who were lost.\\n\\n28\\n00:01:50,252 --> 00:01:53,459\\nOur hearts are broken\\nfor the parents of the survivors as well,\\n\\n29\\n00:01:54,292 --> 00:01:57,493\\nfor as blessed as they are\\nto have their children home tonight,\\n\\n30\\n00:01:57,502 --> 00:02:02,841\\nthey know that their children's innocence\\nhas been torn away from them too early,\\n\\n31\\n00:02:02,870 --> 00:02:05,208\\nand there are no words\\nthat will ease their pain.\\n\\n32\\n00:02:07,716 --> 00:02:11,203\\nAs a country, we have been \\nthrough this too many times.\\n\\n33\\n00:02:11,753 --> 00:02:15,446\\nWhether it's an elementary\\nschool in Newtown,\\n\\n34\\n00:02:15,479 --> 00:02:17,888\\nor a shopping mall in Oregon,\\n\\n35\\n00:02:17,921 --> 00:02:20,241\\nor a temple in Wisconsin,\\n\\n36\\n00:02:20,275 --> 00:02:21,955\\nor a movie theater in Aurora,\\n\\n37\\n00:02:21,992 --> 00:02:23,978\\nor a street corner in Chicago --\\n\\n38\\n00:02:24,028 --> 00:02:26,778\\nthese neighborhoods are our neighborhoods,\\n\\n39\\n00:02:26,802 --> 00:02:29,030\\nand these children are our children.\\n\\n40\\n00:02:31,540 --> 00:02:34,716\\nAnd we're going to have to come together\\nand take meaningful action\\n\\n41\\n00:02:34,747 --> 00:02:38,795\\nto prevent more tragedies like this,\\nregardless of the politics.\\n\\n42\\n00:02:40,933 --> 00:02:44,784\\nThis evening, Michelle and I will do\\nwhat I know every parent in America\\n\\n43\\n00:02:44,816 --> 00:02:48,224\\nwill do, which is hug\\nour children a little tighter\\n\\n44\\n00:02:48,245 --> 00:02:51,264\\nand we'll tell them that we love them,\\n\\n45\\n00:02:51,281 --> 00:02:54,547\\nand we'll remind each other\\nhow deeply we love one another.\\n\\n46\\n00:02:54,939 --> 00:02:58,132\\nBut there are families in Connecticut\\nwho cannot do that tonight.\\n\\n47\\n00:02:59,018 --> 00:03:01,221\\nAnd they need all of us right now.\\n\\n48\\n00:03:02,265 --> 00:03:04,768\\nIn the hard days to come,\\nthat community needs us\\n\\n49\\n00:03:04,787 --> 00:03:07,477\\nto be at our best as Americans.\\n\\n50\\n00:03:07,497 --> 00:03:10,523\\nAnd I will do everything\\nin my power as President to help.\\n\\n51\\n00:03:11,524 --> 00:03:16,547\\nBecause while nothing can fill\\nthe space of a lost child or loved one,\\n\\n52\\n00:03:17,309 --> 00:03:21,482\\nall of us can extend a hand\\nto those in need --\\n\\n53\\n00:03:21,493 --> 00:03:25,265\\nto remind them that we are there for them,\\n\\n54\\n00:03:25,298 --> 00:03:28,246\\nthat we are praying for them,\\n\\n55\\n00:03:28,264 --> 00:03:31,218\\nthat the love they felt\\nfor those they lost\\n\\n56\\n00:03:31,248 --> 00:03:33,196\\nendures not just in their memories\\n\\n57\\n00:03:33,226 --> 00:03:35,533\\nbut also in ours.\\n\\n58\\n00:03:37,848 --> 00:03:40,222\\nMay God bless the memory of the victims\\n\\n59\\n00:03:40,769 --> 00:03:42,553\\nand, in the words of Scripture,\\n\\n60\\n00:03:44,512 --> 00:03:46,769\\nheal the brokenhearted\\n\\n61\\n00:03:46,802 --> 00:03:48,539\\nand bind up their wounds.\",\n", + " 'bytes': 4735,\n", + " 'sha1': 'jeafjjnuqrek1nfrlf5dxvqwflz9h6n',\n", + " 'parent_id': 85117696,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 186381194,\n", + " 'timestamp': '2016-02-03T02:49:59Z',\n", + " 'user': {'text': '2601:901:4400:F39E:499F:240C:7978:CC04'},\n", + " 'page': {'id': 23231699,\n", + " 'title': 'Kimigayo vocal 1930.ogg.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'translating from Japanese to Polish',\n", + " 'text': '1\\n00:00:7,600 --> 00:00:15,500\\nRządy cesarza\\n\\n2\\n00:00:15,700 --> 00:00:24,200\\nniech trwają lat tysiące,\\n\\n4\\n00:00:24,400 --> 00:00:32,500\\naż ten żwir drobny mocą wieków\\n\\n5\\n00:00:32,700 --> 00:00:41,000\\nw skałę się przemieni\\n\\n6\\n00:00:41,200 --> 00:00:55,200\\ni mchem porośnie gęstym.',\n", + " 'bytes': 292,\n", + " 'sha1': '5rtomwrbrfxxk3kkgtst4o9gs5pugzi',\n", + " 'parent_id': 85186596,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 122620556,\n", + " 'timestamp': '2014-04-29T17:31:45Z',\n", + " 'user': {'id': 268131, 'text': 'Cirt'},\n", + " 'page': {'id': 23232653,\n", + " 'title': 'The Impact of Wikipedia Adrianne Wadewitz.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'minor fix.',\n", + " 'text': '1\\n00:00:00,65 --> 00:00:05,577\\nSo one semester, I had a student who was writing a report on the novel \\'\\'Frankenstein\\'\\', \\n\\n2\\n00:00:05,9 --> 00:00:10,478\\nand I have contributed to the article on [https://en.wikipedia.org/wiki/Mary_Shelley Mary Shelley], and to the article on \\'\\'Frankenstein\\'\\'.\\n\\n3\\n00:00:10,986 --> 00:00:16,398\\nAnd whole swaths of the paper were plagiarized from the article I wrote on Mary Shelley.\\n\\n4\\n00:00:17,3 --> 00:00:22,792\\nSo, I got to write in the margin, I know this is plagiarized from Wikipedia, [whispers] because I [https://en.wikipedia.org/w/index.php?title=Mary_Shelley&dir=prev&offset=20080316005635&limit=500&action=history wrote it on Wikipedia]. \\n\\n5\\n00:00:23,2 --> 00:00:25,0\\nMy name is Adrianne Wadewitz.\\n\\n6\\n00:00:25,5 --> 00:00:28,721\\nWhen I was a little kid, like seven or eight years old, \\n\\n7\\n00:00:28,721 --> 00:00:32,75\\nI started reading big, long nineteenth-century novels, and I fell in love with them.\\n\\n8\\n00:00:32,759 --> 00:00:36,062\\nI wrote my dissertation on eighteenth-century British children\\'s literature \\n\\n9\\n00:00:36,062 --> 00:00:41,416\\nand I wanted to share what I had the opportunity to learn about with the world.\\n\\n10\\n00:00:41,75 --> 00:00:46,83\\nWhen someone goes to see a film like \\'\\'Becoming Jane\\'\\', which is a film about Jane Austen,\\n\\n11\\n00:00:46,831 --> 00:00:48,59\\nyou know – \"I want to know more about Jane Austen,\" \\n\\n12\\n00:00:48,596 --> 00:00:51,096\\nand then they type it in to Google, and they get the Wikipedia article, \\n\\n13\\n00:00:51,232 --> 00:00:54,47\\nthat they actually know what really happened to Jane Austen\\'s life versus \\n\\n14\\n00:00:54,473 --> 00:00:58,926\\nthis fictionalization that happened in the film, because that film was a total fiction.\\n\\n15\\n00:00:58,93 --> 00:01:01,900\\nOne reason that I try to recruit professors \\n\\n16\\n00:01:01,91 --> 00:01:07,62\\nto have them have students write actual articles in the classroom is \\n\\n17\\n00:01:07,626 --> 00:01:11,148\\nwe want to show students how to use Wikipedia productively, \\n\\n18\\n00:01:11,542 --> 00:01:15,042\\nso one of the things I did was develop a Wikipedia writing assignment, \\n\\n19\\n00:01:15,653 --> 00:01:22,253\\nso that you weren\\'t writing your essays for me, the professor, and I was the only person who was going to see them.\\n\\n20\\n00:01:22,312 --> 00:01:27,105\\nThe world was going to see what you wrote and it mattered what you wrote and how you wrote it, \\n\\n21\\n00:01:27,8 --> 00:01:30,368\\nbecause millions of people were going to see what you wrote. \\n\\n22\\n00:01:30,777 --> 00:01:35,977\\nSo, whenever I have students put together an article or add material to an article, \\n\\n23\\n00:01:35,981 --> 00:01:41,50\\nI have them think about what does it mean to construct an article out of a variety of sources, \\n\\n24\\n00:01:41,51 --> 00:01:46,55\\nand what kinds of sources are being used, and what does that mean for our understanding of that topic?\\n\\n25\\n00:01:46,558 --> 00:01:50,14\\nHow is knowledge being constructed in this particular area?\\n\\n26\\n00:01:50,55 --> 00:01:55,00\\nI\\'ve come across very informed amateurs on Wikipedia – that is what is so great,\\n\\n27\\n00:01:55,01 --> 00:02:00,82\\nthat people who are hobbyists who love a particular topic, and then they start adding information,\\n\\n28\\n00:02:01,342 --> 00:02:03,93\\nand that is what makes Wikipedia so great: \\n\\n29\\n00:02:03,943 --> 00:02:09,56\\nit brings together both professionals and amateurs who have a love for a particular topic.\\n\\n31\\n00:02:11,532 --> 00:02:12,34\\nDirector: Victor Grigas \\nCodirector: David Grossman \\n\\n\\n32\\n00:02:12,343 --> 00:02:12,84\\nProducer: Zack Exley\\nDirector of Photography: Pruitt Y. Allen \\n\\n\\n33\\n00:02:12,847 --> 00:02:13,44\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck\\n\\n34\\n00:02:13,443 --> 00:02:13,94\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n35\\n00:02:13,946 --> 00:02:14,47\\nMakeup: Melissa Klein\\n\\n36\\n00:02:14,473 --> 00:02:15,55\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\n McSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson \\n\\n\\n37\\n00:02:15,56 --> 00:02:16,22\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n\\n38\\n00:02:16,23 --> 00:02:16,70\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n39\\n00:02:16,704 --> 00:02:17,35\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n40\\n00:02:17,353 --> 00:02:17,77\\nWriter: Desirina Boskovich\\n\\n41\\n00:02:17,773 --> 00:02:18,50\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\n Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling \\n\\n42\\n00:02:18,519 --> 00:02:19,00\\nEnglish Closed-Captioning: AlanKelly VerbatimIT',\n", + " 'bytes': 4576,\n", + " 'sha1': '4k1hhivf53k5kge16e1idtnpvgeycpj',\n", + " 'parent_id': 122607145,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85190757,\n", + " 'timestamp': '2012-12-17T14:30:05Z',\n", + " 'user': {'text': '82.28.223.192'},\n", + " 'page': {'id': 23232705,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,5 --> 00:00:04,497 I'm an English teacher. I'm married. I have a daughter. 2 00:00:05,2 --> 00:00:13,587 And I pretty much work like everybody else....'\",\n", + " 'text': \"1\\n00:00:00,5 --> 00:00:04,497\\nI'm an English teacher. I'm married. I have a daughter.\\n\\n2\\n00:00:05,2 --> 00:00:13,587\\nAnd I pretty much work like everybody else. I have \\n a schedule. I go to work. I go back.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nAnd I have needs like everybody else, and I also \\n want to spend my free time on Wikipedia.\\n\\n4\\n00:00:20,5 --> 00:00:23,943\\nI am Erlan Vega. I'm from La Paz, Bolivia.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nI write about different things, mostly safe things: butterflies, insects, animals.\\n\\n6\\n00:00:33,0 --> 00:00:39,13\\nIn my education system, people don't usually write. They don't write. They don't create.\\n\\n7\\n00:00:39,75 --> 00:00:45,936\\nThey just receive information, and they are supposed to \\n memorize it and then they have the test.\\n\\n8\\n00:00:46,85 --> 00:00:50,04\\nAnd they ask you about it, yet it's not a good thing. \\n\\n9\\n00:00:50,04 --> 00:00:53,48\\nIt's like when at the end of the course, \\n\\n10\\n00:00:53,48 --> 00:01:00,876\\nthey ask you to write something, an article, a paper, or something \\n and you're really in trouble because you have never done it.\\n\\n11\\n00:01:01,31 --> 00:01:08,501\\nAnd giving a person the opportunity to be creative and to \\n be recognized for something they write is really -- \\n\\n12\\n00:01:11,21 --> 00:01:13,855\\nit has been really a turning point in my life.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nEverything started when I went to Wiktionary, the dictionary of Wikipedia one day, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\nand I met this girl, Dabawdygirl //. We were \\n fighting a vandal by that time. \\n\\n15\\n00:01:26,2 --> 00:01:34,57\\nAnd she said -- she tried to reply in Spanish, and I \\n know her Spanish was a bit shaky at that time, \\n\\n16\\n00:01:35,022 --> 00:01:41,25\\nso we made sort of an unwritten deal: I \\n teach you Spanish, and you teach me English.\\n\\n17\\n00:01:41,246 --> 00:01:48,13\\nAnd we corrected each other, and we learned the language \\n by editing on Wiktionary in English, and in Spanish.\\n\\n18\\n00:01:48,583 --> 00:01:53,51\\nAnd in the end my English got so better, because I practiced every day.\\n\\n19\\n00:01:54,765 --> 00:01:56,95\\nThen, by the time I finished my studies in English \\n\\n20\\n00:01:56,946 --> 00:02:09,18\\nI passed the ECP admission test which is a requirement for teachers just as \\n I finished my studies, and then they hired me right there, \\n\\n21\\n00:02:09,18 --> 00:02:13,48\\nbecause my scores, I guess, were high enough to teach.\\n\\n22\\n00:02:14,01 --> 00:02:19,57\\nAnd they started some training, and I have \\n been working there for five years now.\\n\\n23\\n00:02:21,79 --> 00:02:29,09\\nIt's amazing because of that I have the stability, I got married. \\n I have a daughter, so Wikipedia has changed my life.\\n\\n24\\n00:02:29,273 --> 00:02:29,42\\nDirector: Victor Grigas \\nCodirector: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,57\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,66\\nProducer: Zack Exley\\nDirector of Photography: Pruitt Y. Allen \\n\\n\\n27\\n00:02:29,659 --> 00:02:29,91\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,77\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,19\\nMakeup: Melissa Klein\\n\\n30\\n00:02:31,19 --> 00:02:31,98\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\n McSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,65\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,09\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,51\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,88\\nWriter: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,49\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\n Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,99\\nEnglish Closed-Captioning: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,42\\n[...]\",\n", + " 'bytes': 3948,\n", + " 'sha1': 'ksknrmt2gd2e2sgvj3nt7bsor6j1ilm',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85190797,\n", + " 'timestamp': '2012-12-17T14:30:58Z',\n", + " 'user': {'text': '82.28.223.192'},\n", + " 'page': {'id': 23232717,\n", + " 'title': 'The Impact of Wikipedia Gereon Kalkuhl.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,585 --> 00:00:06,891 I was always writing my whole life; always writing fiction. I was writing just for myself. 2 00:00:07,515 --> 00:00:09,472 An...'\",\n", + " 'text': \"1\\n00:00:00,585 --> 00:00:06,891\\nI was always writing my whole life; always writing \\n fiction. I was writing just for myself.\\n\\n2\\n00:00:07,515 --> 00:00:09,472\\nAnd then I found Wikipedia. \\n\\n3\\n00:00:09,95 --> 00:00:13,127\\nMy name is Gereon Kalkuhl. I'm from Germany.\\n\\n4\\n00:00:13,127 --> 00:00:13,327\\nI mainly write for the German Wikipedia.\\n\\n5\\n00:00:17,0 --> 00:00:23,568\\nIt was a page about part of the city where my grandmother was born.\\n\\n6\\n00:00:24,0 --> 00:00:27,57\\nAnd it's a small part of the city which doesn't exist any more.\\n\\n7\\n00:00:28,561 --> 00:00:32,658\\nbecause they flattened it - I don't know, 80 or 60 years ago.\\n\\n8\\n00:00:32,658 --> 00:00:35,140\\nIt does not exist anymore, so one should read about it,\\n\\n9\\n00:00:35,14 --> 00:00:41,295\\nand the only place where I found information about \\n this in a form that I could understand,\\n\\n10\\n00:00:41,295 --> 00:00:46,882\\nwhere all information about this was collected together in one article was Wikipedia.\\n\\n11\\n00:00:46,882 --> 00:00:49,863\\nAnd one day I found out you can edit this.\\n\\n12\\n00:00:49,863 --> 00:00:52,618\\nYou can change this information - anybody can.\\n\\n13\\n00:00:52,618 --> 00:00:54,052\\nIt's a certain power that you have. \\n\\n14\\n00:00:54,052 --> 00:00:59,836\\nFor instance, if you read your daily newspaper, and you see \\n some things that you think might not be correct, \\n\\n15\\n00:00:59,836 --> 00:01:05,651\\nor that you don't like, and so the choice that \\n you have is writing a Letter to the Editor;\\n\\n16\\n00:01:05,651 --> 00:01:10,465\\nsome people do that, most people don't, they just complain at home.\\n\\n17\\n00:01:10,83 --> 00:01:17,316\\nIn Wikipedia you have the opportunity to correct mistakes straight away.\\n\\n18\\n00:01:16,959 --> 00:01:25,291\\nLike, in a normal encyclopaedia, you've got very good people \\n writing the articles, the entries for a lexicon, \\n\\n19\\n00:01:25,291 --> 00:01:29,274\\nbut you only have two editors who look over it.\\n\\n20\\n00:01:29,274 --> 00:01:38,169\\nAnd in Wikipedia, you've got so many people with knowledge about the \\n subjects that read it, look over it, and then correct it.\\n\\n21\\n00:01:39,163 --> 00:01:45,40\\nSo anything that's wrong in Wikipedia doesn't stay there for \\n long, mostly, and that I find very fascinating. \\n\\n22\\n00:01:46,312 --> 00:01:50,89\\nAnybody can write any nonsense into Wikipedia, \\n\\n23\\n00:01:50,886 --> 00:01:55,87\\nbut if you write nonsense, if something is wrong, you've got \\n hundreds and thousands of people seeing that, and correcting it.\\n\\n24\\n00:01:56,474 --> 00:02:09,41\\nMainly I write about chess players. I write about airports as well. For \\n example, birds, insects, mayors - whatever is interesting at the moment.\\n\\n25\\n00:02:10,108 --> 00:02:15,30\\nIf you engage yourself into a certain topic, other people will contact you.\\n\\n26\\n00:02:15,297 --> 00:02:19,87\\nIf you just see the nicknames on the internet, you don't have \\n faces to it, you don't have names to it, \\n\\n27\\n00:02:19,871 --> 00:02:28,45\\nand then you see the people and they're so diverse; some are 80 years \\n old, some are 60 years old, some are 40 year old business men.\\n\\n28\\n00:02:28,447 --> 00:02:35,63\\nOr 30 year old artists, 15 year-old students from school.\\n\\n29\\n00:02:35,63 --> 00:02:41,41\\nAnd they are so different, but what they have all \\n in common is they are curious people. \\n\\n30\\n00:02:41,413 --> 00:02:44,00\\nThey want to know things, and they want to share this knowledge.\\n\\n31\\n00:02:45,252 --> 00:02:45,76\\nDirector: Victor Grigas\\n\\n32\\n00:02:45,761 --> 00:02:46,40\\nCodirector: David Grossman \\n\\n33\\n00:02:46,403 --> 00:02:47,09\\nProducer: Zack Exley\\n\\n34\\n00:02:47,087 --> 00:02:47,64\\nDirector of Photography: Pruitt Y. Allen \\n\\n35\\n00:02:47,64 --> 00:02:48,30\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck \\n\\n36\\n00:02:48,295 --> 00:02:49,05\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n37\\n00:02:49,046 --> 00:02:49,67\\nMakeup: Melissa Klein\\n\\n38\\n00:02:49,666 --> 00:02:50,56\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\n McSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n39\\n00:02:50,563 --> 00:02:51,40\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n40\\n00:02:51,405 --> 00:02:51,94\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n41\\n00:02:51,405 --> 00:02:52,09\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n42\\n00:02:51,939 --> 00:02:52,71\\nWriter: Desirina Boskovich\\n\\n43\\n00:02:52,709 --> 00:02:54,01\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\n Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n44\\n00:02:54,006 --> 00:02:54,30\\nEnglish Closed-Captioning: AlanKelly VerbatimIT\",\n", + " 'bytes': 4602,\n", + " 'sha1': 'k1zbcfipc1wvrzrj964lsoi75rt5s26',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 116271880,\n", + " 'timestamp': '2014-02-12T23:33:50Z',\n", + " 'user': {'id': 154385, 'text': 'Victorgrigas'},\n", + " 'page': {'id': 23233174,\n", + " 'title': 'The Impact of Wikipedia Ravan Jaafar Altaie.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:02,65 --> 00:00:05,65\\nMy name is Ravan Jaafar Altaie.\\n\\n2\\n00:00:05,662 --> 00:00:06,912\\nI am from Iraq.\\n\\n3\\n00:00:06,902 --> 00:00:12,563\\nAt the beginning of my joining to Wikipedia in 2008 I started many articles.\\n\\n4\\n00:00:12,6 --> 00:00:19,337\\nOne of them, I think it was about a lady called Miriam Noor\\n\\n5\\n00:00:19,337 --> 00:00:21,726\\nAnd we didn't have an article about it, so \\n\\n6\\n00:00:21,726 --> 00:00:23,385\\nthis was my first article. \\n\\n7\\n00:00:23,851 --> 00:00:28,019\\nI forgot about it. Maybe 2 or 3 years later, \\n\\n8\\n00:00:28,493 --> 00:00:32,834\\nI passed by this article. I was shocked!\\n\\n9\\n00:00:32,834 --> 00:00:38,555\\nPeople there are writing and writing, so I feel it's \\n one of the amazing things in Wikipedia --\\n\\n10\\n00:00:39,05 --> 00:00:43,764\\nto find out something you started -- it's like a child, you know?\\n\\n11\\n00:00:44,218 --> 00:00:48,754\\nMore than 100,000 people read this article. \\n\\n12\\n00:00:49,245 --> 00:00:54,886\\nThey used it, so they got the information from \\n this article. They passed by this article. \\n\\n13\\n00:00:55,361 --> 00:01:03,661\\nSo you feel like you affected and influenced more than 100,000 \\n people. I think this is a very amazing thing.\\n\\n14\\n00:01:03,708 --> 00:01:09,007\\nFor me, if I want to know some information about \\n some subject I do not know anything about it,\\n\\n15\\n00:01:09,007 --> 00:01:14,560\\nI start an article. By the end of the \\n article, when the article is ready \\n\\n16\\n00:01:14,995 --> 00:01:17,576\\nI know everything about this subject. \\n\\n17\\n00:01:17,576 --> 00:01:24,380\\nI'm telling my female girlfriends, even if you have any information, and\\n\\n18\\n00:01:24,38 --> 00:01:26,969\\nyou like dresses? You like fashion?\\n\\n19\\n00:01:26,969 --> 00:01:31,788\\nYou like make-up? You like whatever that girls are liking, write about it!\\n\\n20\\n00:01:31,788 --> 00:01:36,491\\nWhat we did in the Revolution is because we \\n were following up day by day and\\n\\n21\\n00:01:36,491 --> 00:01:42,42\\ninternational friends, they were asking us about the truth,\\n\\n22\\n00:01:42,418 --> 00:01:47,30\\nbecause, you know, media cannot be specific in different countries,\\n\\n23\\n00:01:47,777 --> 00:01:54,53\\nso they were asking us, through Wikipedia, about what really happened in the revolutions.\\n\\n24\\n00:01:54,964 --> 00:01:57,83\\nwhen it started in Tunisia, then after that in Egypt, \\n\\n25\\n00:01:58,271 --> 00:02:06,97\\nso we were providing this information with, of course, reliable sources in Wikipedia.\\n\\n26\\n00:02:07,478 --> 00:02:17,73\\nFor me, I was Googling from the most trust-able \\n places to get the information, which --\\n\\n27\\n00:02:18,674 --> 00:02:22,57\\nI feel like it's Al-Jazeera and CNN and BBC,\\n\\n28\\n00:02:22,646 --> 00:02:27,53\\nthese three, they are offering information at least from reporters.\\n\\n29\\n00:02:27,984 --> 00:02:33,58\\nI think this is my wish, and one of my dreams --\\n\\n30\\n00:02:33,971 --> 00:02:39,02\\nand many peoples' dreams -- to make a real change in \\n the world, to make a difference in the world.\\n\\n31\\n00:02:39,021 --> 00:02:44,53\\nI think Wikipedia gave me this chance to really \\n make a huge difference in the world, \\n\\n32\\n00:02:44,906 --> 00:02:49,54\\nbecause you are effecting yourself, your children, the coming generation, \\n\\n33\\n00:02:50,043 --> 00:02:55,96\\nto have a free source, a free knowledge, an amazing encyclopaedia, \\n\\n34\\n00:02:56,401 --> 00:02:59,19\\naffecting all the fields of their life, \\n\\n35\\n00:02:59,683 --> 00:03:04,38\\nit's like an investment for your future, for your children's future.\\n\\n36\\n00:03:07,068 --> 00:03:08,03\\nDirector: Victor Grigas\\n\\n37\\n00:03:08,03 --> 00:03:08,85\\nCodirector: David Grossman\\n\\n38\\n00:03:08,854 --> 00:03:09,65\\nProducer: Zack Exley\\n\\n39\\n00:03:09,654 --> 00:03:09,90\\nDirector of Photography: Pruitt Y. Allen\\n\\n40\\n00:03:09,899 --> 00:03:10,60\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck\\n\\n41\\n00:03:10,598 --> 00:03:11,13\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n42\\n00:03:11,127 --> 00:03:11,65\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n43\\n00:03:11,65 --> 00:03:12,40\\nInterviewers: Alma Shapa, Jonathan Curiel, Stephen Geer, Corey \\n O'Brien, Frank O'Brien, Jacob Wilson, Dan McSwain\\n\\n44\\n00:03:12,4 --> 00:03:13,37\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n45\\n00:03:13,371 --> 00:03:13,94\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n46\\n00:03:13,944 --> 00:03:14,80\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\n Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n47\\n00:03:14,796 --> 00:03:15,40\\nMakeup: Melissa Klein \\n\\n48\\n00:03:15,402 --> 00:03:15,88\\nTitles: Vibha Bamba, Trevor Parscal\\n\\n49\\n00:03:15,876 --> 00:03:16,15\\nWriter: Desirina Boskovich\\n\\n50\\n00:03:16,153 --> 00:03:16,24\\nEnglish Closed Captions: AlanKelly VerbatimIT\",\n", + " 'bytes': 4746,\n", + " 'sha1': 'rx66uaeb1e0y2pelf9cs06zyu2isk91',\n", + " 'parent_id': 85192882,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 595470719,\n", + " 'timestamp': '2021-10-03T21:17:37Z',\n", + " 'user': {'id': 7585850, 'text': 'Bridget'},\n", + " 'page': {'id': 23233180,\n", + " 'title': 'The Impact of Wikipedia - Andrea Zanni.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'copyedit',\n", + " 'text': '1\\n00:00:00,9 --> 00:00:04,686\\nWikipedia took serendipity to another whole level.\\n\\n2\\n00:00:05,262 --> 00:00:11,442\\nYou just go, and you always go in the \"N\", reading about the history of black metal in Sweden.\\n\\n3\\n00:00:12,861 --> 00:00:18,422\\nI\\'m Andrea Zanni and I work as a volunteer in the Italian Wikisource.\\n\\n4\\n00:00:19,281 --> 00:00:27,627\\nWikisource is a digital library. It owns and hosts \\nancient books, like old books, public domain ones.\\n\\n5\\n00:00:28,065 --> 00:00:39,131\\nand we put books up for people to read. We digitize some of \\nthem. We put them on Wikisource, and then we transcribe them.\\n\\n6\\n00:00:39,131 --> 00:00:45,922\\nWe also try to link the books between each other, because \\nthere is the possibility to link one to another.\\n\\n7\\n00:00:46,426 --> 00:00:56,740\\nto link a text to another, and try to follow \\nquotes and create a sort of hyper-textual digital library.\\n\\n8\\n00:00:56,74 --> 00:01:02,463\\nI really love that about Wikisource - the \\npossibility to create a connected, integrated library\\n\\n9\\n00:01:02,463 --> 00:01:05,749\\nSerendipity is one of the best things in life, \\n\\n10\\n00:01:05,749 --> 00:01:13,749\\nand it\\'s just -- serendipity is when you find \\nsomething interesting, but you\\'re looking for something else.\\n\\n11\\n00:01:13,75 --> 00:01:17,777\\nIt always happens when you go in a bookstore.\\n\\n12\\n00:01:18,239 --> 00:01:22,944\\nIt always happens when you go in a library with open shelves.\\n\\n13\\n00:01:22,944 --> 00:01:29,741\\nAs everyone does, I was searching a word in \\nGoogle. I came out on Wikipedia, \\n\\n14\\n00:01:29,741 --> 00:01:34,172\\nand then I started. I thought, OK, this is not possible, \\n\\n15\\n00:01:34,172 --> 00:01:39,779\\nlike, it can\\'t be open to anyone. It can\\'t \\nbe like this, like editable for anyone, \\n\\n16\\n00:01:39,779 --> 00:01:41,21\\nand it was \\n\\n17\\n00:01:41,214 --> 00:01:47,39\\nand then I discovered Wikiquotes; that was a \\nproject I really enjoyed the first times.\\n\\n18\\n00:01:47,386 --> 00:01:51,24\\nSo I started working there, and then I discovered Wikisource, \\nand I said, OK, this is my place\\n\\n19\\n00:01:51,72 --> 00:01:59,58\\nAnd you know, there were the books, and there was the \\nnerdy part with computers, software stuff that was together.\\n\\n20\\n00:01:59,576 --> 00:02:01,64\\nand OK, I belong here.\\n\\n21\\n00:02:01,641 --> 00:02:06,64\\nWikipedia, yes, it\\'s probably the best serendipitous thing ever, right now.\\n\\n22\\n00:02:10,11 --> 00:02:10,55\\nDirector: Victor Grigas\\n\\n23\\n00:02:10,546 --> 00:02:11,19\\nCodirector: David Grossman\\n\\n24\\n00:02:11,189 --> 00:02:11,98\\nProducer: Zack Exley\\n\\n25\\n00:02:11,977 --> 00:02:12,48\\nDirector of Photography: Pruitt Y. Allen\\n\\n26\\n00:02:12,478 --> 00:02:12,97\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck \\n\\n27\\n00:02:12,969 --> 00:02:13,44\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n28\\n00:02:13,44 --> 00:02:13,88\\nMakeup: Melissa Klein\\n\\n29\\n00:02:13,882 --> 00:02:14,66\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson\\n\\n30\\n00:02:14,662 --> 00:02:15,30\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n31\\n00:02:15,305 --> 00:02:15,74\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n32\\n00:02:15,74 --> 00:02:16,08\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n33\\n00:02:16,082 --> 00:02:16,33\\nWriter: Desirina Boskovich\\n\\n34\\n00:02:16,326 --> 00:02:16,53\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n35\\n00:02:16,528 --> 00:02:16,73\\nEnglish Closed-Captioning: AlanKelly VerbatimIT',\n", + " 'bytes': 3579,\n", + " 'sha1': '8pmkq2i9dw9y1ia1e2pcouri1st7qrc',\n", + " 'parent_id': 85325796,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85564829,\n", + " 'timestamp': '2012-12-24T00:04:17Z',\n", + " 'user': {'text': '38.121.228.2'},\n", + " 'page': {'id': 23233218,\n", + " 'title': 'The Impact of Wikipedia - Mei Jiun Kwek.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,155 --> 00:00:02,240\\nI like the feeling of when I'm staying in the forest.\\n\\n2\\n00:00:02,79 --> 00:00:09,385\\nIt's quiet. You can listen to the birds, to the trees. \\n\\n3\\n00:00:10,11 --> 00:00:12,332\\nI got my degree in Botany.\\n\\n4\\n00:00:12,4 --> 00:00:16,284\\nIf I had not taken Botany, I might have thought \\n\\n5\\n00:00:16,757 --> 00:00:21,249\\nthat these trees are all the same: they are green, they are trees, they don't have names, \\n\\n6\\n00:00:22,1 --> 00:00:24,015\\nbut actually they do.\\n\\n7\\n00:00:24,515 --> 00:00:26,472\\nI find it's great working in the forest. \\n\\n8\\n00:00:26,89 --> 00:00:30,434\\nMy name is Kwek Mei Jiun. I'm from Kuala Lumpur, Malaysia.\\n\\n9\\n00:00:30,9 --> 00:00:33,127\\nI'm working in an agriculture institution. \\n\\n10\\n00:00:33,712 --> 00:00:40,605\\nI contribute images to Wikimedia Commons, and I contribute images on crop species,\\n\\n11\\n00:00:41,442 --> 00:00:44,853\\nand mainly on neglected and underutilized crops.\\n\\n12\\n00:00:45,2 --> 00:00:52,608\\nWe want to engage our partners, researchers and scientists to contribute to Wikipedia.\\n\\n13\\n00:00:53,0 --> 00:01:01,269\\nMost of the time, there are good pictures, captured by researchers, by scientists on crop species, \\n\\n14\\n00:01:01,754 --> 00:01:07,158\\nbut they put them in their institutional repositories, \\n\\n15\\n00:01:08,32 --> 00:01:15,81\\nand that we found it is better for us to put them in public repositories where everyone can see, everyone can use. \\n\\n16\\n00:01:16,56 --> 00:01:22,206\\nWe do not want the publications to be sitting on a shelf, \\n\\n17\\n00:01:23,49 --> 00:01:30,001\\nor only disseminate a few physical copies to our partners only.\\n\\n18\\n00:01:30,39 --> 00:01:33,743\\nWe want readers to access images. \\n\\n19\\n00:01:34,5 --> 00:01:41,13\\nI believe in the agriculture community, or in the researcher community \\n\\n20\\n00:01:41,133 --> 00:01:45,79\\nthey are not aware of the potential with working in Wikipedia. \\n\\n21\\n00:01:46,253 --> 00:01:49,77\\nWe want to make it the ultimate database of crops.\\n\\n22\\n00:01:53,379 --> 00:01:53,85\\nDirector: Victor Grigas \\n\\n23\\n00:01:54,314 --> 00:01:54,72\\nCodirector: David Grossman\\n\\n24\\n00:01:55,212 --> 00:01:55,66\\nProducer: Zack Exley\\n\\n25\\n00:01:56,175 --> 00:01:56,54\\nDirector of Photography: Pruitt Y. Allen\\n\\n26\\n00:01:57,006 --> 00:01:57,78\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck\\n\\n27\\n00:01:57,784 --> 00:01:58,10\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n\\n28\\n00:01:58,1 --> 00:01:58,58\\nMakeup: Melissa Klein\\n\\n29\\n00:01:58,585 --> 00:01:59,69\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n30\\n00:01:59,687 --> 00:02:00,03\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n31\\n00:02:00,032 --> 00:02:00,68\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n32\\n00:02:00,682 --> 00:02:01,16\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n33\\n00:02:01,155 --> 00:02:01,72\\nWriter: Desirina Boskovich\\n\\n34\\n00:02:01,723 --> 00:02:03,87\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n35\\n00:02:03,866 --> 00:02:04,67\\nEnglish Closed-Captioning: AlanKelly VerbatimIT\\n\\n36\\n00:02:05,145 --> 00:02:12,31\\n[on screen rolling credits for images and sound]\",\n", + " 'bytes': 3280,\n", + " 'sha1': 'g17c8h0ib3huknad78wvipz5zd8jh8z',\n", + " 'parent_id': 85193059,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 195944146,\n", + " 'timestamp': '2016-05-10T23:18:41Z',\n", + " 'user': {'id': 4507621, 'text': 'ASherman (WMF)'},\n", + " 'page': {'id': 23233235,\n", + " 'title': 'The Impact of Wikipedia - Jimmy Wales.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'broke up large captions into smaller individual captions. added a couple of words (nothing major)',\n", + " 'text': \"1\\n00:00:00,050 --> 00:00:03,590\\nI did not clearly have in mind it should be a charity,\\n\\n2\\n00:00:03,590 --> 00:00:06,890\\nit should be a for-profit; that was really secondary.\\n\\n3\\n00:00:07,800 --> 00:00:10,700\\nIt should be whatever it needed to be in order to be successful,\\n\\n4\\n00:00:10,806 --> 00:00:12,642\\nin order to be what I wanted it to be,\\n\\n5\\n00:00:12,642 --> 00:00:15,732\\nand at the time I didn't know, really.\\n\\n6\\n00:00:15,732 --> 00:00:17,277\\nWhat does that mean? How are we going to get there?\\n\\n7\\n00:00:17,500 --> 00:00:18,572\\nMy name is Jimmy Wales.\\n\\n8\\n00:00:18,572 --> 00:00:20,900\\nWe had a very strong vision of\\n\\n9\\n00:00:20,900 --> 00:00:23,900\\na good high quality encyclopedia,\\n\\n10\\n00:00:23,900 --> 00:00:25,400\\nthinking about well how do we sustain this?\\n\\n11\\n00:00:25,414 --> 00:00:27,047\\nHow do we make this work?\\n\\n12\\n00:00:28,309 --> 00:00:29,786\\nPutting it into a non-profit and asking for\\n\\n13\\n00:00:29,786 --> 00:00:32,496\\ndonations seemed like the reasonable way to go.\\n\\n14\\n00:00:32,496 --> 00:00:33,170\\nWhen people asked\\n\\n15\\n00:00:33,170 --> 00:00:36,940\\nwhy don't we have advertising in Wikipedia,\\n\\n16\\n00:00:36,940 --> 00:00:39,833\\nthere's a lot of very practical reasons,\\n\\n17\\n00:00:39,833 --> 00:00:44,413\\nbut one of the reasons is when you're at Wikipedia,\\n\\n18\\n00:00:44,413 --> 00:00:50,720\\nI want your experience to be it's a place\\nof quiet reflection, of learning, of thinking.\\n\\n19\\n00:00:51,100 --> 00:00:54,700\\nFrom the Wikimedia Foundation I don't take a salary,\\n\\n20\\n00:00:54,700 --> 00:00:57,550\\nand I also don't even take expenses.\\n\\n21\\n00:00:57,550 --> 00:00:58,690\\nI think it's very important that\\n\\n22\\n00:00:58,690 --> 00:01:00,808\\nI am able to say, quite clearly,\\n\\n23\\n00:01:00,808 --> 00:01:02,687\\nlook when I'm asking you for money,\\n\\n24\\n00:01:02,687 --> 00:01:05,687\\nI'm not asking you for money for myself.\\n\\n25\\n00:01:05,687 --> 00:01:08,581\\nI'm asking you for money for the Foundation,\\n\\n26\\n00:01:08,581 --> 00:01:09,681\\nwhich is the team who supports this\\n\\n27\\n00:01:09,681 --> 00:01:11,681\\namazing community that I'm a part of.\\n\\n28\\n00:01:11,681 --> 00:01:12,324\\nDirector: Victor Grigas\\n\\n29\\n00:01:12,324 --> 00:01:12,812\\nCodirector: David Grossman\\n\\n30\\n00:01:12,812 --> 00:01:13,195\\nProducer: Zack Exley\\n\\n31\\n00:01:13,195 --> 00:01:13,593\\nDirector of Photography: Pruitt Y. Allen\\n\\n32\\n00:01:13,593 --> 00:01:14,318\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck\\n\\n33\\n00:01:14,318 --> 00:01:14,848\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n34\\n00:01:14,848 --> 00:01:15,258\\nMakeup: Melissa Klein\\n\\n35\\n00:01:15,258 --> 00:01:16,286\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain,\\nCorey O'Brien, Frank O'Brien, Jacob Wilson\\n\\n36\\n00:01:16,286 --> 00:01:16,926\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n37\\n00:01:16,926 --> 00:01:17,661\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n38\\n00:01:17,661 --> 00:01:18,245\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n39\\n00:01:18,245 --> 00:01:18,912\\nWriter: Desirina Boskovich\\n\\n40\\n00:01:18,912 --> 00:01:20,056\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi\\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n41\\n00:01:20,056 --> 00:01:20,456\\nEnglish Closed-Captioning: AlanKelly VerbatimIT\",\n", + " 'bytes': 3308,\n", + " 'sha1': 'qmviqxopasff1m82rjive3hns91kcnw',\n", + " 'parent_id': 85193160,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85193247,\n", + " 'timestamp': '2012-12-17T15:21:06Z',\n", + " 'user': {'text': '82.28.223.192'},\n", + " 'page': {'id': 23233253,\n", + " 'title': 'The Impact of Wikipedia - Ganesh Paudel.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,639 --> 00:00:09,929\\nGetting knowledge, transferring knowledge to the new generation, to the people who don\\'t have it is an honor, so I love it. \\n\\n2\\n00:00:10,388 --> 00:00:13,417\\nI am Ganesh Paudel, I\\'m from Nepal. \\n\\n3\\n00:00:13,939 --> 00:00:23,288\\nThe most beautiful thing about Wikipedia is it is OpenSource and anybody can use and re-use the content and add-ons. \\n\\n4\\n00:00:23,467 --> 00:00:27,795\\nEverybody can develop the content in their own language, \\n\\n5\\n00:00:29,26 --> 00:00:35,179\\nso until now, Wikipedia is available in 285 languages of the world, \\n\\n6\\n00:00:35,655 --> 00:00:41,228\\nso it is the best way to give content in local languages. \\n\\n7\\n00:00:42,83 --> 00:00:46,175\\nMost people learn many things, culture, ethics,\\n\\n8\\n00:00:46,175 --> 00:00:48,607\\nfrom the family and from their ancestors, too, \\n\\n9\\n00:00:49,08 --> 00:00:54,729\\nand in school also, but the basic thing is the responsibility towards the society \\n\\n10\\n00:00:54,729 --> 00:00:59,061\\nso every people is responsible for their society. \\n\\n11\\n00:00:59,334 --> 00:01:08,997\\nFor small languages like mine, Wikipedia has become a boon to develop digital content in local languages, \\n\\n12\\n00:01:09,422 --> 00:01:13,522\\nSo there are many languages in my small country. \\n\\n13\\n00:01:13,603 --> 00:01:18,452\\nThere are more than 120 living languages, \\n\\n14\\n00:01:18,452 --> 00:01:22,130\\nso Wikipedia has become a good tool. \\n\\n15\\n00:01:22,13 --> 00:01:27,319\\nNow, we have only three languages in Wikipedia of our country, \\n\\n16\\n00:01:27,904 --> 00:01:32,076\\nbut there are nearly eight languages \"in the pipeline\". \\n\\n17\\n00:01:32,537 --> 00:01:39,652\\nThey are in incubation, and the community are interested to bring out those languages from the incubation, so -\\n\\n18\\n00:01:40,155 --> 00:01:42,70\\nLong live Wikipedia!\\n\\n19\\n00:01:42,698 --> 00:01:43,72\\nDirector: Victor Grigas\\n\\n20\\n00:01:43,716 --> 00:01:44,50\\nCodirector: David Grossman\\n\\n21\\n00:01:44,5 --> 00:01:45,21\\nProducer: Zack Exley\\n\\n22\\n00:01:45,211 --> 00:01:46,04\\nDirector of Photography: Pruitt Y. Allen\\n\\n23\\n00:01:46,039 --> 00:01:46,96\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck\\n\\n24\\n00:01:46,963 --> 00:01:47,93\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n25\\n00:01:47,926 --> 00:01:48,60\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n26\\n00:01:48,597 --> 00:01:49,95\\nInterviewers: Alma Shapa, Jonathan Curiel, Stephen Geer, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson, Dan McSwain\\n\\n27\\n00:01:49,95 --> 00:01:50,65\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n28\\n00:01:50,654 --> 00:01:51,61\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n29\\n00:01:51,607 --> 00:01:51,77\\nMakeup: Melissa Klein\\n\\n30\\n00:01:51,774 --> 00:01:52,14\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n31\\n00:01:52,049 --> 00:01:52,40\\nTitles: Vibha Bamba, Trevor Parscal\\n\\n32\\n00:01:52,095 --> 00:01:52,59\\nWriter: Desirina Boskovich\\n\\n33\\n00:01:52,591 --> 00:01:52,98\\nEnglish Closed Captions: AlanKelly VerbatimIT',\n", + " 'bytes': 3084,\n", + " 'sha1': 'j9p50cbq3urzqq1ze2vi91f0pakn0in',\n", + " 'parent_id': 85193217,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85201201,\n", + " 'timestamp': '2012-12-17T17:59:53Z',\n", + " 'user': {'id': 457, 'text': 'Bjarki S'},\n", + " 'page': {'id': 23235200,\n", + " 'title': 'Wikipedia video tutorial-2-Reliability-en.ogv.is.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,439 --> 00:00:03,759\\nHalló, ég er Tereza.\\n\\n2\\n00:00:03,759 --> 00:00:07,999\\nTakk fyrir að horfa á myndbandið okkar sem útskýrir hvernig hver sem er getur bætt við Wikipediu,\\n\\n3\\n00:00:07,999 --> 00:00:11,839\\nstærsta og besta frjálsa alfræðirit í heimi.\\n\\n4\\n00:00:11,839 --> 00:00:13,919\\nEin og þú veist kannski nú þegar,\\n\\n5\\n00:00:13,919 --> 00:00:16,599\\nþá getur hver sem er breytt hvaða grein sem er á Wikipediu.\\n\\n6\\n00:00:16,599 --> 00:00:18,639\\nÞað eina sem þú þarft að gera er að smella á „Breyta“,\\n\\n7\\n00:00:18,639 --> 00:00:20,599\\nbreyta textanum og smella á „Vista“.\\n\\n8\\n00:00:20,599 --> 00:00:23,359\\nEn þetta veitir þó engum tækifæri til þess að endurskrifa söguna.\\n\\n9\\n00:00:23,359 --> 00:00:27,919\\nÞvert á móti, ég vil fá að útskýra fyrir þér hvernig Wikipedia varðveitir áreiðanleika sinn\\n\\n10\\n00:00:27,919 --> 00:00:30,959\\nþrátt fyrir að hver sem er geti auðveldlega breytt henni.\\n\\n11\\n00:00:30,959 --> 00:00:34,519\\nEins og flest tölvuforrit, þá hefur hugbúnaðirnn að baki Wikipediu\\n\\n12\\n00:00:34,519 --> 00:00:37,079\\nýmis verkfæri sem fæstir lesendur vita af.\\n\\n13\\n00:00:37,079 --> 00:00:43,021\\nÉg ætla að segja ykkur frá tveimur þessara verkfæra sem eru sérstaklega hugsuð til þess að auka áreiðanleika Wikipediu,\\n\\n14\\n00:00:43,082 --> 00:00:45,828\\nÞað fyrra köllum við „nýlegar breytingar“.\\n\\n15\\n00:00:47,059 --> 00:00:52,901\\nÞú finnur hlekk í nýlegar breytingar í hliðarstikunni vinstra megin.\\n\\n16\\n00:00:52,901 --> 00:00:56,217\\nÞetta gefur þér lista yfir allar nýjustu breytingar \\n\\n17\\n00:00:56,217 --> 00:00:57,999\\nsem gerðar hafa verið á Wikipediu á þínu tungumáli.\\n\\n18\\n00:00:57,999 --> 00:01:00,639\\nLítum á efstu greinina á listanum.\\n\\n19\\n00:01:00,639 --> 00:01:04,799\\nEf ég smelli aftir á „nýlegar breytingar“, bara örfáum sekúndum síðar,\\n\\n20\\n00:01:04,799 --> 00:01:08,279\\nþá sjáum við að sama grein er komin hingað niður\\n\\n21\\n00:01:08,279 --> 00:01:14,07\\nog greinarnar fyrir ofan hana á listanum hafa annað hvort verið stofnaðar eða þeim breytt á síðustu 4 sekúndum.\\n\\n22\\n00:01:14,839 --> 00:01:20,168\\nÞetta er það sem ég kalla „púls Wikipediu“. Býsna magnað eða hvað?\\n\\n23\\n00:01:20,168 --> 00:01:22,839\\nFörum aftur í greinina.\\n\\n24\\n00:01:22,839 --> 00:01:28,399\\nÞegar þú smellir á breyting, þá sérðu hvaða breytingar hafa verið gerðar.\\n\\n25\\n00:01:28,399 --> 00:01:33,276\\nÞetta er samanburður á fyrri og seinni útgáfu greinarinnar hlið við hlið.\\n\\n26\\n00:01:33,999 --> 00:01:37,479\\nMeð þessum hætti verða allar breytingar augljóasar.\\n\\n27\\n00:01:37,479 --> 00:01:44,319\\nSamfélag notendanna vakir yfir þessum breytingum og leiðréttir þær vitleysur sem settar eru inn.\\n\\n28\\n00:01:44,319 --> 00:01:49,522\\nÞetta er ein af leiðunum sem við höfum til þess að vernda efni Wikipediu.\\n\\n29\\n00:01:49,522 --> 00:01:51,879\\nHitt verkfærið sem ég vildi segja ykkur frá\\n\\n30\\n00:01:51,879 --> 00:01:57,359\\ner listi yfir nýlegar breytingar sem er sniðinn að þér og við köllum „vaktlista“.\\n\\n31\\n00:01:57,359 --> 00:02:00,984\\nTil þess að geta notað vaktlistann verður þú að vera skráður notandi.\\n\\n32\\n00:02:00,984 --> 00:02:06,193\\nEngar áhyggjur! Það er fljótgert, einfalt og ókeypis!\\n\\n33\\n00:02:07,931 --> 00:02:12,279\\nÞú smellir bara á þennan hlekk og fylgir leiðbeiningunum.\\n\\n34\\n00:02:14,033 --> 00:02:16,639\\nEn hvernig bý ég til minn eiginn vaktlista?\\n\\n35\\n00:02:16,639 --> 00:02:21,519\\nÞað er best að búa til vaktlista sem snýra að þínum eigin áhugamálum.\\n\\n36\\n00:02:21,519 --> 00:02:25,559\\nTökum mig sem dæmi...\\n\\n37\\n00:02:25,744 --> 00:02:33,113\\nÉg er alltaf á varðbergi gagnvart nýjum síðum um hunda.\\n\\n38\\n00:02:33,113 --> 00:02:38,919\\nLabrador! Sjáið þetta andlit! Unaðslegt!\\n\\n39\\n00:02:38,919 --> 00:02:41,559\\nSmellum á þessa grein.\\n\\n40\\n00:02:41,559 --> 00:02:46,279\\nJá! Ég vil tvímælalaust fylgjast með því hvernig þessi grein þróast.\\n\\n41\\n00:02:46,279 --> 00:02:49,719\\nÞannig að ég smelli á „vakta“ (stjarnan í nýrri útgáfu vefsins)\\n\\n42\\n00:02:49,719 --> 00:02:59,239\\nog nú hefur þessari grein verið bætt á vaktlistann minn sem ég get skoðað hvenær sem ég vil með því að smella á „vaktlisti“.\\n\\n43\\n00:02:59,239 --> 00:03:02,999\\nNú munt þú alltaf sjá það þegar einhver breytir grein sem er á vaktlistanum þínum\\n\\n44\\n00:03:02,999 --> 00:03:07,199\\nog getur séð með einum smelli hver gerði breytinguna\\n\\n45\\n00:03:07,199 --> 00:03:12,239\\nog hverju var breytt.\\n\\n46\\n00:03:12,239 --> 00:03:16,279\\nOg vel að merkja, það er ekki bara ég sem er með þennan Labrador á vaktlistanum.\\n\\n47\\n00:03:16,279 --> 00:03:24,759\\nÉg er handviss um að þúsindir hundavina eru með sömu síðu á sínum vaktlistum.\\n\\n48\\n00:03:24,759 --> 00:03:31,079\\nÞetta eru aðeins tvö af fjölmörgum verkfærum sem notuð eru til þess að varðveita áreiðanleika Wikipediu.\\n\\n49\\n00:03:31,079 --> 00:03:35,359\\nEn besta leiðin til þess að tryggja gæði Wikipediu til frambúðar\\n\\n50\\n00:03:35,359 --> 00:03:40,639\\ner að fjölga notendum sem geta lagt fram sérfræðikunnáttu sína.\\n\\n51\\n00:03:40,639 --> 00:03:43,719\\nÞví fleiri notendur, þeim mun meiri gæði á efninu.\\n\\n52\\n00:03:43,719 --> 00:03:47,639\\nEndilega legðu þitt af mörkunum til þess að stækka þennan sameiginlega brunn mannlegrar þekkingar\\n\\n53\\n00:03:47,639 --> 00:03:51,079\\nog hjálpaðu okkar að stækka meira en nokkur hélt að væri hægt.\\n\\n54\\n00:03:51,079 --> 00:03:52,559\\nTakk fyrir að horfa.\\n\\n55\\n00:03:52,559 --> 0-1:0-1:0-1\\nBless og gangi þér vel!',\n", + " 'bytes': 5605,\n", + " 'sha1': '9yb18w8orlun26telftzhwqc4mnr6m5',\n", + " 'parent_id': 85201118,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85869030,\n", + " 'timestamp': '2012-12-28T11:00:10Z',\n", + " 'user': {'id': 22648, 'text': 'Koavf'},\n", + " 'page': {'id': 23236374,\n", + " 'title': 'The Impact of Wikipedia - Q Miceli.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'sp',\n", + " 'text': \"1\\n00:00:00,7 --> 00:00:03,955\\nIf everyone in the world could edit the Encyclopaedia Britannica,\\n\\n2\\n00:00:04,138 --> 00:00:05,338\\nthat would be Wikipedia.\\n\\n3\\n00:00:05,632 --> 00:00:07,093\\nIf you don't know what encyclopedia is, \\n\\n4\\n00:00:07,55 --> 00:00:12,019\\nit's a large collection of knowledge about pretty much anything.\\n\\n5\\n00:00:13,0 --> 00:00:16,173\\nMy name is Q Miceli. I write about baking.\\n\\n6\\n00:00:16,7 --> 00:00:19,2\\nSince I became vegan and gluten intolerant, \\n\\n7\\n00:00:19,219 --> 00:00:24,519\\nI've enjoyed taking normal traditional recipes with wheat and dairy and eggs \\n\\n8\\n00:00:24,642 --> 00:00:29,642\\nand turning them into vegan and gluten-free products of a similar nature because \\n\\n9\\n00:00:29,643 --> 00:00:33,193\\nI think that food really can connect people and open people up to \\n\\n10\\n00:00:33,219 --> 00:00:34,672\\nwhole new worlds of experience\\n\\n11\\n00:00:36,003 --> 00:00:39,279\\nbeing able to converse with my classmates from different countries about what they eat, \\n\\n12\\n00:00:39,711 --> 00:00:42,311\\nor to ask them about it and to find out if \\n\\n13\\n00:00:42,444 --> 00:00:46,585\\nthere are religious or ethical traditions informing their food choices; \\n\\n14\\n00:00:47,039 --> 00:00:49,626\\nthat's been really wonderful to learn. \\n\\n15\\n00:00:50,071 --> 00:00:52,746\\nRecently I wrote an article about Tahinopita, \\n\\n16\\n00:00:53,228 --> 00:00:58,074\\nwhich is a Greek Orthodox bread made during Lent,\\n\\n17\\n00:00:59,0 --> 00:01:03,645\\nbecause it's considered fasting since it has no animal products and no oil, \\n\\n18\\n00:01:04,623 --> 00:01:09,423\\nso I noticed that there were blogs in other web sites on the Internet\\n\\n19\\n00:01:09,621 --> 00:01:10,707\\nthat spoke about this bread, \\n\\n20\\n00:01:10,707 --> 00:01:12,899\\nbut there was no Wikipedia article about it, \\n\\n21\\n00:01:12,899 --> 00:01:16,153\\nand I thought since it was related not only to the Greek Orthodox Church \\n\\n22\\n00:01:16,153 --> 00:01:20,370\\nand the concept of fasting, and vegan cuisine, and dessert, \\n\\n23\\n00:01:20,797 --> 00:01:24,574\\nthat it should have a little Wikipedia article, so I started a Stub. \\n\\n24\\n00:01:25,0 --> 00:01:28,6\\nUsing Wikipedia has often helped me figure out the source of a new food.\\n\\n25\\n00:01:28,659 --> 00:01:31,138\\nI learned about Quinoa on Wikipedia, because --\\n\\n26\\n00:01:31,138 --> 00:01:35,081\\n since I'm gluten intolerant, and Quinoa is a gluten-free grain, or \\n\\n27\\n00:01:35,081 --> 00:01:39,102\\n-- it's actually from the Goosefoot plant, so it's a grass \\n\\n28\\n00:01:39,494 --> 00:01:40,66\\n-- I learned that on Wikipedia, \\n\\n29\\n00:01:40,664 --> 00:01:43,41\\njust sources to find scientific knowledge about what I'm eating, \\n\\n30\\n00:01:44,1 --> 00:01:46,27\\nand cultural knowledge about what I'm eating, \\n\\n31\\n00:01:46,75 --> 00:01:50,89\\nI used Wikipedia to learn that because not every cook book is going to be a science book as well.\\n\\n32\\n00:01:51,65 --> 00:01:56,33\\nI prefer the Wikipedia style of knowledge, unfiltered \\n\\n33\\n00:01:57,287 --> 00:02:00,60\\n- of being able to sort through, \\n\\n34\\n00:02:01,05 --> 00:02:04,00\\nof being able to look at an encyclopedia article to see\\n\\n35\\n00:02:04,017 --> 00:02:07,35\\nif there's an issue of bias, that somebody has probably flagged it,\\n\\n36\\n00:02:07,782 --> 00:02:10,25\\nand if not, now I can flag it, too, and say hey!\\n\\n37\\n00:02:10,246 --> 00:02:11,68\\nI think this is biased information \\n\\n38\\n00:02:12,123 --> 00:02:16,06\\nto have the discussion be in the open, on an article's Talk page, \\n\\n39\\n00:02:16,985 --> 00:02:18,58\\nto see the edits that are being made. \\n\\n40\\n00:02:18,778 --> 00:02:20,78\\nThat's really important to be able to see \\n\\n41\\n00:02:20,784 --> 00:02:24,59\\nhow knowledge is presented and the process behind it and \\n\\n42\\n00:02:24,586 --> 00:02:28,74\\nso if Wikipedia were a for-profit organization and \\n\\n43\\n00:02:28,745 --> 00:02:31,25\\nthere were larger interests controlling it, \\n\\n44\\n00:02:31,253 --> 00:02:34,27\\nand advertising on the sidebars, to me, \\n\\n45\\n00:02:34,269 --> 00:02:37,77\\nthat would take away some of the neutrality and I think \\n\\n46\\n00:02:37,956 --> 00:02:40,60\\nit would be harder to believe and uphold \\n\\n47\\n00:02:41,037 --> 00:02:44,68\\nthe neutrality standard in Wikipedia that way.\\n\\n48\\n00:02:44,869 --> 00:02:48,91\\nThe thing that has surprised me the most about my involvement with Wikipedia has been\\n\\n49\\n00:02:49,3 --> 00:02:53,32\\nthe sense of community and the fact that if one person wants to start something, \\n\\n50\\n00:02:53,778 --> 00:02:57,77\\nother people will jump on to it and say I can help you with this, \\n\\n51\\n00:02:58,256 --> 00:03:00,04\\nnot necessarily to prove something, \\n\\n52\\n00:03:00,035 --> 00:03:05,05\\nbut to selflessly improve something;\\n\\n53\\n00:03:06,057 --> 00:03:11,57\\nthat's been wonderful to find that spirit among the Wikipedia community.\",\n", + " 'bytes': 4723,\n", + " 'sha1': 'f5gmsp5b8konuigdzyaubmgghb5rw77',\n", + " 'parent_id': 85206633,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85210260,\n", + " 'timestamp': '2012-12-17T20:30:51Z',\n", + " 'user': {'id': 3717, 'text': 'VIGNERON'},\n", + " 'page': {'id': 23237037,\n", + " 'title': 'The Impact of Wikipedia - Andrea Zanni.webm.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'first try',\n", + " 'text': \"1\\n00:00:00,9 --> 00:00:04,686\\nWikipédia porte la sérendipité à un tout autre niveau.\\n\\n2\\n00:00:05,262 --> 00:00:11,442\\nVous allez simplement, vous allez au « N », et vous lisez l’histoire du black metal en Suède.\\n\\n3\\n00:00:12,861 --> 00:00:18,422\\nJe suis Andrea Zanni et je suis un bénévole de la Wikisource en italien.\\n\\n4\\n00:00:19,281 --> 00:00:27,627\\nWikisource est une bibliothèque numérique. Elle contient\\ndes livres anciens, des vieux livres, ceux dans le domaine public.\\n\\n5\\n00:00:28,065 --> 00:00:39,131\\net nous présentons ces livres pour qu'ils soient lus. Nous les numérisons.\\nNous les mettons sur Wikisource, puis nous les transcrivons.\\n\\n6\\n00:00:39,131 --> 00:00:45,922\\nNous essayons aussi de lier les livres entre eux, parce que\\nil y a la possibilité de relier les uns aux autres,\\n\\n7\\n00:00:46,426 --> 00:00:56,740\\nde lier un texte à un autre, et essayer de suivre\\nles citations et créer une sorte de bibliothèque numérique hyper-textuelle.\\n\\n8\\n00:00:56,74 --> 00:01:02,463\\nC’est que j’aime vraiment sur Wikisource : \\nla possibilité de créer une bibliothèque connectée intégrée\\n\\n9\\n00:01:02,463 --> 00:01:05,749\\nLa sérendipité est l’une des meilleures choses de la vie,\\n\\n10\\n00:01:05,749 --> 00:01:13,749\\net c’est juste… la sérendipité, c'est quand vous tomber\\nsur quelque chose d’intéressant, alors que vous cherchez quelque chose d’autre.\\n\\n11\\n00:01:13,75 --> 00:01:17,777\\nCela arrive tout le temps quand vous allez dans une librairie.\\n\\n12\\n00:01:18,239 --> 00:01:22,944\\nCela arrive tout le temps quand vous allez dans une librairie avec des étagères libres.\\n\\n13\\n00:01:22,944 --> 00:01:29,741\\nComme tout le monde, je cherchais un mot sur\\nGoogle. Je suis tombé sur Wikipédia,\\n\\n14\\n00:01:29,741 --> 00:01:34,172\\net puis j’ai commencé. Je me suis dit OK, ce n’est pas possible,\\n\\n15\\n00:01:34,172 --> 00:01:39,779\\ncomme, cela ne peut pas être ouvert à tous.\\nCela ne peut être ainsi, éditable par tous,\\n\\n16\\n00:01:39,779 --> 00:01:41,21\\net pourtant c’était comme ça\\n\\n17\\n00:01:41,214 --> 00:01:47,39\\net puis j'ai découvert Wikiquotes, c’était un\\nprojet que j’ai vraiment apprécié les premières fois.\\n\\n18\\n00:01:47,386 --> 00:01:51,24\\nAlors j’ai commencé à travailler là-bas, et puis j’ai découvert Wikisource,\\net je me suis dit : OK, c’est ma place\\n\\n19\\n00:01:51,72 --> 00:01:59,58\\nEt vous savez, il y avait les livres, et en même temps il y avait\\nune partie geek avec des ordinateurs et l’informatique.\\n\\n20\\n00:01:59,576 --> 00:02:01,64\\net OK, je suis chez moi.\\n\\n21\\n00:02:01,641 --> 00:02:06,64\\nWikipédia, oui, c’est probablement la meilleure chose sérendipitienne, actuellement.\\n\\n22\\n00:02:10,11 --> 00:02:10,55\\nRéalisateur : Victor Grigas\\n\\n23\\n00:02:10,546 --> 00:02:11,19\\nCodirecteur : David Grossman\\n\\n24\\n00:02:11,189 --> 00:02:11,98\\nProducteur : Zack Exley\\n\\n25\\n00:02:11,977 --> 00:02:12,48\\nDirecteur de la photographie : Pruitt Y. Allen\\n\\n26\\n00:02:12,478 --> 00:02:12,97\\nPhotographes Vidéo : Jack Harris, Adam Parr, Matthew Storck \\n\\n27\\n00:02:12,969 --> 00:02:13,44\\nPhotographes Portrait : Adam Novak, Karen Sayre\\n\\n28\\n00:02:13,44 --> 00:02:13,88\\nMaquillage : Melissa Klein\\n\\n29\\n00:02:13,882 --> 00:02:14,66\\nIntervieweurs : Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson\\n\\n30\\n00:02:14,662 --> 00:02:15,30\\nCoordonnateurs de production : Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n31\\n00:02:15,305 --> 00:02:15,74\\nAssistants de production : Toby Hessenauer, Kristin Rigsby\\n\\n32\\n00:02:15,74 --> 00:02:16,08\\nÉditeurs video : Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n33\\n00:02:16,082 --> 00:02:16,33\\nScénariste : Desirina Boskovich\\n\\n34\\n00:02:16,326 --> 00:02:16,53\\nServices de transcription : Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n35\\n00:02:16,528 --> 00:02:16,73\\nSous-titrage anglais : AlanKelly VerbatimIT\",\n", + " 'bytes': 3940,\n", + " 'sha1': 'f6xu9vgsma4wpenxqwld9odrlbylkdb',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85225745,\n", + " 'timestamp': '2012-12-17T23:22:34Z',\n", + " 'user': {'text': '76.127.16.19'},\n", + " 'page': {'id': 23239929,\n", + " 'title': 'Proteus 3D model.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:1,000 --> 00:00:5,400\\nThis video shows the rotation of the oddly-shaped Proteus, the second largest Neptunian moon, and the largest ''comfirmed'' irregularly shaped object in the solar system.\\n2\\n00:00:6,600 --> 00:00:10,800\\nNote the highly cratered surface, and irregular shape.\",\n", + " 'bytes': 286,\n", + " 'sha1': 'sp50pd5rmudb1puq0zko8nmur50n5qz',\n", + " 'parent_id': 85225585,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85259429,\n", + " 'timestamp': '2012-12-18T15:56:19Z',\n", + " 'user': {'id': 2450901, 'text': 'AlanKellyVerbatimIT'},\n", + " 'page': {'id': 23246504,\n", + " 'title': 'The Impact of Wikipedia - Mike Cline.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,3 --> 00:00:04,653 It really gets you out into nature, when you're wading through a river, 2 00:00:05,037 --> 00:00:07,291 and you're knee-deep in ...'\",\n", + " 'text': \"1\\n00:00:00,3 --> 00:00:04,653\\nIt really gets you out into nature, when you're wading through a river, \\n\\n2\\n00:00:05,037 --> 00:00:07,291\\nand you're knee-deep in the water, and you're catching fish, \\n\\n3\\n00:00:08,3 --> 00:00:11,536\\nyou're close, and it just becomes - it's an escape,\\n\\n4\\n00:00:12,25 --> 00:00:17,55\\nbut it's a lot of fun, it's great exercise, and combine that with Wikipedia, \\n\\n5\\n00:00:17,579 --> 00:00:20,890\\nI like to write about the history on Wikipedia. \\n\\n\\n6\\n00:00:21,561 --> 00:00:22,600\\nMy name is Mike Cline. \\n\\n7\\n00:00:22,9 --> 00:00:27,614\\nWhen I first started Wikipedia, I started editing on some articles related to \\n\\n8\\n00:00:27,614 --> 00:00:30,593\\nthe business side, which is strategic planning, and consulting, \\n\\n9\\n00:00:31,633 --> 00:00:36,512\\nand quickly learned the conflict of interest rules and other things, \\n\\n10\\n00:00:36,512 --> 00:00:38,886\\nand ran afoul of some of the community norms. \\n\\n11\\n00:00:39,558 --> 00:00:43,758\\nOnce I got over that hump of just -- OK, I understand, \\n\\n12\\n00:00:43,798 --> 00:00:48,288\\nI'm part of the community now, then it became very easy to go into those areas, \\n\\n13\\n00:00:48,767 --> 00:00:52,284\\nlike fly fishing and Montana history and Yellowstone, and things like that, \\n\\n14\\n00:00:52,724 --> 00:00:54,703\\nthat I was very familiar with, knew a lot about,\\n\\n15\\n00:00:55,2 --> 00:01:00,6\\nand starting when I was a kid, I started buying books about fly-fishing and fly fishermen, \\n\\n16\\n00:01:00,603 --> 00:01:05,253\\nand I have a library of about 600 books of fly fishing literature. \\n\\n17\\n00:01:05,65 --> 00:01:08,544\\nI spend 25 to 30 days a year in Yellowstone and it's just -\\n\\n18\\n00:01:09,337 --> 00:01:12,328\\nwhen you write about it, you're really writing about \\n\\n19\\n00:01:12,983 --> 00:01:17,502\\npersonal experiences in places that you know intimately. \\n\\n20\\n00:01:17,9 --> 00:01:24,2\\nI take the same path that the Blandford Peterson Expedition took across \\n\\n21\\n00:01:24,26 --> 00:01:28,732\\nthe Gardner River and into Yellowstone for the first time in 1870 and \\n\\n22\\n00:01:28,915 --> 00:01:32,865\\neven today you can stand there and look one way to the North, \\n\\n23\\n00:01:33,297 --> 00:01:37,025\\nand you see Gardener and Electric Mountain, which wasn't named in 1870 \\n\\n24\\n00:01:37,445 --> 00:01:39,945\\nand you stand and look South to Rescue Creek and it looks \\n\\n25\\n00:01:40,044 --> 00:01:42,43\\nexactly the same as it did in 1870, \\n\\n26\\n00:01:43,0 --> 00:01:46,22\\nand you've read about that, you've read about those guys walking through there.\\n\\n27\\n00:01:45,96 --> 00:01:47,27\\nI was a little off-track but \\n\\n28\\n00:01:47,64 --> 00:01:50,55\\nif you look at the economics of Wikipedia \\n\\n29\\n00:01:51,5 --> 00:01:54,28\\nand you look at the balance sheet and the income statement standpoint,\\n\\n30\\n00:01:54,67 --> 00:01:56,40\\nthe income is the volunteer time. \\n\\n31\\n00:01:57,5 --> 00:02:01,07\\nFor every hour in, there's an hour spent, so there's no profit in Wikipedia.\\n\\n32\\n00:02:01,725 --> 00:02:05,00\\nThe equity, if you look at a balance sheet, it's the content.\\n\\n33\\n00:02:05,479 --> 00:02:08,92\\nIt's that nearly four million articles right now. \\n\\n34\\n00:02:09,9 --> 00:02:14,18\\nSo, any waste of income, waste of volunteer time - right,\\n\\n35\\n00:02:14,954 --> 00:02:18,62\\nin building the equity, those are the things we need to improve on,\\n\\n36\\n00:02:18,626 --> 00:02:21,67\\nto use that volunteer time wisely, \\n\\n37\\n00:02:21,668 --> 00:02:26,07\\nto build that equity line on the balance sheet which is the content. \\n\\n38\\n00:02:26,544 --> 00:02:30,39\\nThis is a unique way to volunteer 24-7, so that's just on its own. \\n\\n39\\n00:02:31,143 --> 00:02:34,38\\nIt's a unique way to volunteer, but it's also \\n\\n40\\n00:02:34,38 --> 00:02:39,91\\na great way to learn how to read, write and solve problems -- collaborate.\\n\\n41\\n00:02:40,411 --> 00:02:41,28\\nDirector: Victor Grigas \\n\\n42\\n00:02:41,282 --> 00:02:41,87\\nCodirector: David Grossman \\n\\n43\\n00:02:41,871 --> 00:02:42,37\\nProducer: Zack Exley\\n\\n44\\n00:02:42,375 --> 00:02:43,00\\nDirector of Photography: Pruitt Y. Allen \\n\\n45\\n00:02:43,002 --> 00:02:43,63\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck\\n\\n46\\n00:02:43,633 --> 00:02:44,36\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n47\\n00:02:44,358 --> 00:02:45,18\\nMakeup: Melissa Klein\\n\\n48\\n00:02:45,185 --> 00:02:46,35\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n49\\n00:02:46,347 --> 00:02:47,33\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n50\\n00:02:47,332 --> 00:02:47,94\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n51\\n00:02:47,936 --> 00:02:48,52\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n52\\n00:02:48,516 --> 00:02:48,99\\nWriter: Desirina Boskovich\\n\\n53\\n00:02:48,99 --> 00:02:50,67\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n54\\n00:02:50,67 --> 00:02:51,24\\nEnglish Closed-Captioning: AlanKelly VerbatimIT\\n\\n55\\n00:02:51,239 --> 00:02:53,57\\n[images - rolling on screen credits]\",\n", + " 'bytes': 5054,\n", + " 'sha1': 'm1xaio07fh3tke7gfgqfg0armty01ky',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85264872,\n", + " 'timestamp': '2012-12-18T17:32:00Z',\n", + " 'user': {'id': 2450901, 'text': 'AlanKellyVerbatimIT'},\n", + " 'page': {'id': 23247579,\n", + " 'title': 'The Impact of Wikipedia - David Shankbone.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,2 --> 00:00:03,2 It sort of is how I approached photography in the beginning 2 00:00:03,251 --> 00:00:05,194 which was as a Wikipedia Editor. 3 0...'\",\n", + " 'text': '1\\n00:00:00,2 --> 00:00:03,2\\nIt sort of is how I approached photography in the beginning \\n\\n2\\n00:00:03,251 --> 00:00:05,194\\nwhich was as a Wikipedia Editor. \\n\\n3\\n00:00:05,547 --> 00:00:10,647\\nAnd we needed photographs and it didn\\'t necessarily matter to me\\n\\n4\\n00:00:10,674 --> 00:00:13,359\\nthe quality, because I wasn\\'t approaching it as a photographer. \\n\\n5\\n00:00:13,943 --> 00:00:17,087\\nI was approaching it as someone who needed media on the articles. \\n\\n6\\n00:00:17,588 --> 00:00:19,984\\nMy name is David Shankbone.\\n\\n7\\n00:00:19,984 --> 00:00:25,484\\nI was incredibly broke from law school, I mean, I was months behind on my rent -- all this stuff, \\n\\n8\\n00:00:25,566 --> 00:00:30,237\\nand I was just laying around my apartment, \"like a bored house cat.\"\\n\\n9\\n00:00:30,89 --> 00:00:34,906\\nIn 2006, there were virtually no photographs on Wikipedia articles. \\n\\n10\\n00:00:35,325 --> 00:00:40,914\\nYou\\'ll be hard-pressed to find an upload date that pre-dates 2006.\\n\\n11\\n00:00:41,753 --> 00:00:48,019\\nMy sister had purchased a camera for my birthday in 2006, \\n\\n12\\n00:00:48,52 --> 00:00:53,14\\nand I decided to do something with this camera, \\n\\n13\\n00:00:53,505 --> 00:00:57,409\\nso I started showing up at these events that I had access to that didn\\'t cost me money.. \\n\\n14\\n00:00:58,1 --> 00:01:01,6\\nThe very first time I bought a DSLR was the morning of\\n\\n15\\n00:01:01,676 --> 00:01:04,514\\nthe very first day of the 2007 Tribeca Film Festival, \\n\\n16\\n00:01:05,286 --> 00:01:09,658\\nand I had no idea how to use it, so it was \"baptism by fire,\" \\n\\n17\\n00:01:10,312 --> 00:01:13,712\\nand the photographs were terrible. They are absolutely terrible.\\n\\n18\\n00:01:13,741 --> 00:01:16,041\\nOver the years, I started learning things. \\n\\n19\\n00:01:16,068 --> 00:01:17,498\\nI started talking to the professionals. \\n\\n20\\n00:01:17,935 --> 00:01:21,576\\nI started looking at their work - the people that I was next to,\\n\\n21\\n00:01:22,328 --> 00:01:27,266\\nphotographing with them. I would look at what they produced versus what I produced.\\n\\n22\\n00:01:27,828 --> 00:01:30,710\\nI\\'ve always owned equipment that professional photographers \\n\\n23\\n00:01:31,2 --> 00:01:34,548\\nthat I\\'m shooting next to - they don\\'t take me seriously, \\n\\n24\\n00:01:35,071 --> 00:01:37,294\\nbut I feel like over the years I really improved, \\n\\n25\\n00:01:37,716 --> 00:01:40,13\\nthat I started getting really good access. \\n\\n26\\n00:01:40,598 --> 00:01:42,47\\nI\\'m proud of the work that I put out now. \\n\\n27\\n00:01:43,5 --> 00:01:47,78\\nNobody who is going to pay in the first place is going to pay for my work. \\n\\n28\\n00:01:48,2 --> 00:01:51,12\\nIt\\'s red carpet stuff. It\\'s not art photography.\\n\\n29\\n00:01:51,738 --> 00:01:52,80\\nIt wasn\\'t meant to be. \\n\\n30\\n00:01:52,804 --> 00:01:55,81\\nIt was always meant to be candid, because it was realistic.\\n\\n31\\n00:01:55,813 --> 00:01:59,51\\nI wanted them exactly how they look, you know, people are interesting.\\n\\n32\\n00:01:59,513 --> 00:02:02,60\\nPeople come from so many different backgrounds and \\n\\n33\\n00:02:02,602 --> 00:02:07,74\\ncapturing them in a moment is something that really fascinates me.\\n\\n34\\n00:02:08,355 --> 00:02:09,43\\nDirector: Victor Grigas \\n\\n35\\n00:02:09,428 --> 00:02:10,45\\nCodirector: David Grossman\\n\\n36\\n00:02:10,449 --> 00:02:11,47\\nProducer: Zack Exley\\n\\n37\\n00:02:11,467 --> 00:02:12,65\\nDirector of Photography: Pruitt Y. Allen\\n\\n38\\n00:02:12,652 --> 00:02:13,72\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck\\n\\n39\\n00:02:13,716 --> 00:02:14,89\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n40\\n00:02:14,888 --> 00:02:16,06\\nMakeup: Melissa Klein\\n\\n41\\n00:02:16,06 --> 00:02:17,68\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson \\n\\n42\\n00:02:17,682 --> 00:02:18,83\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n43\\n00:02:18,826 --> 00:02:20,12\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n44\\n00:02:20,119 --> 00:02:21,34\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n45\\n00:02:21,34 --> 00:02:22,62\\nWriter: Desirina Boskovich\\n\\n46\\n00:02:22,621 --> 00:02:24,50\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n47\\n00:02:24,503 --> 00:02:26,02\\nEnglish Closed-Captioning: AlanKelly VerbatimIT\\n\\n48\\n00:02:26,978 --> 00:02:28,19\\n[images credits rolling on screen]\\n\\n49\\n00:02:29,218 --> 00:02:31,61\\n[Creative Commons credits - rolling on screen]',\n", + " 'bytes': 4421,\n", + " 'sha1': 'hg3k6lym9w6pc0c215ot5jgomyp7zrm',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85307407,\n", + " 'timestamp': '2012-12-19T15:37:51Z',\n", + " 'user': {'text': '184.160.180.169'},\n", + " 'page': {'id': 23257194,\n", + " 'title': 'WEB Clip.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:02,2 --> 00:00:05,95 Almost everyone comes to the conclusion that whatever their time is, 2 00:00:05,966 --> 00:00:07,666 is a critical time in human ...'\",\n", + " 'text': \"1\\n00:00:02,2 --> 00:00:05,95\\nAlmost everyone comes to the conclusion that whatever their time is, \\n\\n2\\n00:00:05,966 --> 00:00:07,666\\nis a critical time in human history, \\n\\n3\\n00:00:07,708 --> 00:00:10,206\\nso I'm not sure that I would buy an absolute argument, \\n\\n4\\n00:00:11,245 --> 00:00:15,132\\nbut I think it's fair to say that we're at a tipping point in terms of \\n\\n5\\n00:00:15,132 --> 00:00:18,590\\npeople's access to computer based information. \\n\\n6\\n00:00:18,9 --> 00:00:22,6\\nFor the first time, people are going to be coming together \\n\\n7\\n00:00:22,651 --> 00:00:24,675\\nfrom every corner of the world, and be able \\n\\n8\\n00:00:24,675 --> 00:00:26,675\\nto engage in direct conversation with each other.\\n\\n9\\n00:00:28,903 --> 00:00:31,174\\n[birds chirping] ♫\\n\\n10\\n00:00:34,576 --> 00:00:43,225\\n[Lidia] [sings]\\n\\n11\\n00:00:43,225 --> 00:00:45,148\\nHere, life is beautiful.\\n\\n12\\n00:00:45,979 --> 00:00:49,049\\nIt's beautiful because there are trees…\\n\\n13\\n00:00:49,049 --> 00:00:52,675\\nand the trees protect you from the sun.\\n\\n14\\n00:00:53,338 --> 00:00:54,751\\nThere's also a lot of bugs.\\n\\n15\\n00:00:54,751 --> 00:00:57,551\\nMore than the bugs, I get bored.\\n\\n16\\n00:00:58,193 --> 00:01:02,476\\nI want to learn more about the things that I don't know.\\n\\n17\\n00:01:16,461 --> 00:01:21,954\\nWhen we first used the laptops, we didn't know what they were.\\n\\n18\\n00:01:21,954 --> 00:01:24,387\\nAnd the way we learned was…\\n\\n19\\n00:01:24,387 --> 00:01:26,887\\nwhen one classmate learned how to do something… \\n\\n20\\n00:01:26,887 --> 00:01:29,726\\nthey would teach another classmate.\\n\\n21\\n00:01:29,962 --> 00:01:33,136\\nAnd that classmate would teach another classmate…\\n\\n22\\n00:01:33,136 --> 00:01:34,877\\nand like that we all learned.\\n\\n23\\n00:01:38,6 --> 00:01:41,48\\nWhat interests me most are legends…\\n\\n24\\n00:01:42,348 --> 00:01:44,37\\nalso the land.\\n\\n25\\n00:01:45,098 --> 00:01:49,69\\nAlso on the computers you can go on Wikipedia and search.\\n\\n26\\n00:01:49,693 --> 00:01:53,41\\nWikipedia is where there is all of the information.\\n\\n27\\n00:01:53,412 --> 00:01:56,79\\nWhatever you want to know about, you can look for.\\n\\n28\\n00:01:58,276 --> 00:02:03,38\\nAnd you can find things that you never…\\n\\n29\\n00:02:03,388 --> 00:02:06,61\\nthings you never knew, you can find on Wikipedia.\\n\\n30\\n00:02:08,536 --> 00:02:10,26\\n[Victor, Lidia's father]\\n\\n31\\n00:02:10,257 --> 00:02:12,68\\nI was born in Ayacucho.\\n\\n32\\n00:02:12,684 --> 00:02:16,68\\nI didn'the study because of my parents, they didn't support me.\\n\\n33\\n00:02:16,727 --> 00:02:20,31\\nThe laptops – my daughter, pretty much already knows how to use it.\\n\\n34\\n00:02:20,781 --> 00:02:24,04\\nShe teaches me the histories of different countries…\\n\\n35\\n00:02:24,496 --> 00:02:29,49\\nthe United States, Brazil, China.\\n\\n36\\n00:02:30,146 --> 00:02:33,76\\nI want her to have a profession…\\n\\n37\\n00:02:34,561 --> 00:02:37,93\\nto have a better education than me.\\n\\n38\\n00:02:37,931 --> 00:02:43,56\\n♫\\n\\n39\\n00:02:48,474 --> 00:02:50,21\\n[Michael]\\n\\n40\\n00:02:50,21 --> 00:02:53,32\\nI am from New York City.\\n\\n41\\n00:02:54,186 --> 00:02:56,70\\nThis is a city that's very far from here.\\n\\n42\\n00:02:57,381 --> 00:02:59,87\\nI want to introduce all of you to my city.\\n\\n43\\n00:03:03,21 --> 00:03:07,75\\nNow, I want to know more information about your village…\\n\\n44\\n00:03:07,753 --> 00:03:09,38\\nPalestina, Peru.\\n\\n45\\n00:03:09,8 --> 00:03:10,95\\nMichael, there isn't anything.\\n\\n46\\n00:03:11,127 --> 00:03:12,50\\nThere isn't anything?\\n\\n47\\n00:03:12,498 --> 00:03:16,20\\nIn that case, what we need to do today…\\n\\n48\\n00:03:17,092 --> 00:03:20,82\\nis we need to write a page for Palestina, Peru. \\n\\n49\\n00:03:20,824 --> 00:03:22,47\\nWhen did we arrive here?\\n\\n50\\n00:03:22,47 --> 00:03:26,23\\nIn 1989.\\n\\n51\\n00:03:27,101 --> 00:03:31,60\\nI think it's really exciting to think about having amazing new cultural influences on ideas,\\n\\n52\\n00:03:31,685 --> 00:03:34,12\\nflowing all around the world from different cultures.\\n\\n53\\n00:03:34,923 --> 00:03:37,72\\nSo I think we've really barely scratched the surface of\\n\\n54\\n00:03:37,705 --> 00:03:40,30\\nwhat is possible through collaboration.\\n\\n55\\n00:03:40,325 --> 00:03:44,14\\nIf you think about it, doing an encyclopedia is one of the easiest things.\\n\\n56\\n00:03:44,876 --> 00:03:47,10\\nThis part here is what I did.\\n\\n57\\n00:03:48,018 --> 00:03:49,64\\nAhh, the pictures we took!\\n\\n58\\n00:03:50,713 --> 00:03:54,64\\nPalestina, Peru is a village located in the region of Purus…\\n\\n59\\n00:03:54,642 --> 00:03:57,10\\nin the department of Ucayali…\\n\\n60\\n00:03:57,105 --> 00:03:58,46\\nin Peru.\\n\\n61\\n00:03:59,412 --> 00:04:03,31\\nI see collaboration, especially computer mediated collaboration,\\n\\n62\\n00:04:03,408 --> 00:04:08,35\\nas an extremely enabling tool for the population of the world,\\n\\n63\\n00:04:08,35 --> 00:04:14,12\\nand I hope what it will do is uncover voices and ideas that might be invisible otherwise.\\n\\n64\\n00:04:14,566 --> 00:04:19,95\\nThe interesting thing is that as we get more and more of the population up on the Internet,\\n\\n65\\n00:04:20,908 --> 00:04:23,78\\nthe avenues for interaction will become much richer, \\n\\n66\\n00:04:24,758 --> 00:04:30,25\\nand here, I am not capable of predicting what the outcome will be \\n\\n67\\n00:04:30,256 --> 00:04:35,36\\nwhen six billion people are online sharing their knowledge with each other.\\n\\n68\\n00:04:35,362 --> 00:04:47,39\\n♫\\n\\n69\\n00:05:13,0 --> 00:05:13,44\\n[English closed-captions by AlanKelly VerbatimIT]\",\n", + " 'bytes': 5301,\n", + " 'sha1': 'k4ienhtucyi640db6s686y0ukyrbxso',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314261,\n", + " 'timestamp': '2012-12-19T18:19:07Z',\n", + " 'user': {'text': '82.28.223.192'},\n", + " 'page': {'id': 23259140,\n", + " 'title': 'The Impact of Wikipedia Adrianne Wadewitz.webm.da.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,650 --> 00:00:05,577 Et semester havde jeg en studerende, som skrev en rapport om bogen Frankenstein, 2 00:00:05,900 --> 00:00:10,478 og jeg bidrog...'\",\n", + " 'text': '1\\n00:00:00,650 --> 00:00:05,577\\nEt semester havde jeg en studerende,\\nsom skrev en rapport om bogen Frankenstein, \\n\\n2\\n00:00:05,900 --> 00:00:10,478\\nog jeg bidrog til artiklen om Mary\\nShelley og artiklen om Frankenstein.\\n\\n3\\n00:00:10,986 --> 00:00:16,398\\nOg store dele af rapporten blev afskrevet fra\\nartiklen, jeg skrev om Mary Shelley.\\n\\n4\\n00:00:17,300 --> 00:00:22,792\\nSå jeg skrev i marginen: \"Jeg ved, at dette er \\nafskrevet fra Wikipedia, (hvisker) fordi jeg skrev det på Wikipedia.\" \\n\\n5\\n00:00:23,200 --> 00:00:25,000\\nMit navn er Adrianne Wadewitz.\\n\\n6\\n00:00:25,500 --> 00:00:28,721\\nDa jeg var et lille barn, omkring syv eller otte år, \\n\\n7\\n00:00:28,721 --> 00:00:32,759\\nbegyndte jeg at læse store, lange bøger fra det nittende århundrede,\\nog jeg blev forgabt i dem.\\n\\n8\\n00:00:32,759 --> 00:00:36,062\\nJeg skrev min afhandling om britisk børnelitteratur fra det attende århundrede \\n\\n9\\n00:00:36,062 --> 00:00:41,416\\nog jeg ville dele det, som jeg havde\\nmuligheden for at lære om, med verden.\\n\\n10\\n00:00:41,750 --> 00:00:46,830\\nNår nogen tager ind for at se en film som\\nBecoming Jane, som er en film om Jane Austen,\\n\\n11\\n00:00:46,831 --> 00:00:48,596\\ndu ved -- jeg ville lære mere om Jane Austen, \\n\\n12\\n00:00:48,596 --> 00:00:51,096\\nog så skrev de det ind i Google,\\nog de fik Wikipedia-artiklen, \\n\\n13\\n00:00:51,232 --> 00:00:54,473\\nat de faktisk allerede ved, hvad der faktisk skete med Jane Austens liv, modsat \\n\\n14\\n00:00:54,473 --> 00:00:58,926\\ndenne historiedannelse, som er med i filmen, fordi filmen selv var fuldstændigt opdigtet\\n\\n15\\n00:00:58,926 --> 00:01:01,900\\nEn grund til, at jeg forsøger at rekruttere professorer \\n\\n16\\n00:01:01,900 --> 00:01:07,626\\nat få dem til at sætte de studerende i gang med at skrive virkelige artikler i klasseværelset, er \\n\\n17\\n00:01:07,626 --> 00:01:11,148\\nat vi vil vise de studerende, hvordan man kan bruge wikipedia produktivt, \\n\\n18\\n00:01:11,542 --> 00:01:15,042\\nså én af de ting, jeg gjorde, var at udvikle en redigeringsopgave til wikipedia, \\n\\n19\\n00:01:15,653 --> 00:01:22,253\\nsådan at man ikke skriver essays til mig, læreren, og jeg var den eneste person, der kom til at se dem,\\n\\n20\\n00:01:22,312 --> 00:01:27,105\\n[men] hele verden ville komme til at se, hvad man skrev, og det havde en betydning, hvad man skrev, og hvordan man skrev det, \\n\\n21\\n00:01:27,800 --> 00:01:30,368\\nfor millioner af mennesker ville komme til at se, hvad man skrev. \\n\\n22\\n00:01:30,777 --> 00:01:35,977\\nSå når jeg sætter studerende til at forfatte en artikel eller at føje materiale til en artikel, \\n\\n23\\n00:01:35,981 --> 00:01:41,500\\ntvinger jeg dem til at tænke over, hvad det betyder at sammensætte en artikel ud fra en blanding af kilder \\n\\n24\\n00:01:41,500 --> 00:01:46,560\\nog hvilken type kilder, der bliver brugt, samt hvad det medfører for vores forståelse af det emne?\\n\\n25\\n00:01:46,558 --> 00:01:50,140\\nHvordan viden bliver skabt på netop dette område?\\n\\n26\\n00:01:50,550 --> 00:01:55,000\\nJeg har mødt nogle meget vidende amatører på wikipedia; det er [netop], hvad der er det fine:\\n\\n27\\n00:01:55,000 --> 00:02:00,820\\nat folk, som dyrker en hobby, som holder af et bestemt emne, at de så begynder at tilføje viden,\\n\\n28\\n00:02:01,342 --> 00:02:03,930\\nog det er det, som gør wikipedia så stort; \\n\\n29\\n00:02:03,943 --> 00:02:09,560\\ndet samler både professionelle og amatører, som holder af et bestemt emne.\\n\\n30\\n00:02:10,443 --> 00:02:12,440\\n[code:] <ccsla slug>\\n\\n31\\n00:02:11,532 --> 00:02:12,340\\nInstruktør: Zack Exley\\nFotografisk instruktør: Pruitt Y. Allen \\n\\n32\\n00:02:12,343 --> 00:02:12,850\\nProducer: Zack Exley\\nDirector of Photography: Pruitt Y. Allen \\n\\n33\\n00:02:12,847 --> 00:02:13,440\\nVideofotografer: Jack Harris, Adam Parr, Matthew Storck\\n\\n34\\n00:02:13,443 --> 00:02:13,950\\nPortrætfotografer: Adam Novak, Karen Sayre\\n\\n35\\n00:02:13,946 --> 00:02:14,470\\nMakeup: Melissa Klein\\n\\n36\\n00:02:14,473 --> 00:02:15,550\\nInterviewere: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson \\n\\n37\\n00:02:15,550 --> 00:02:16,220\\nProduktionskoordinatorer: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n38\\n00:02:16,220 --> 00:02:16,700\\nProduktionsassistenter: Toby Hessenauer, Kristin Rigsby\\n\\n39\\n00:02:16,704 --> 00:02:17,350\\nVideoredaktører: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n40\\n00:02:17,353 --> 00:02:17,770\\nScript: Desirina Boskovich\\n\\n41\\n00:02:17,773 --> 00:02:18,520\\nTransskriptionstjenester: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling \\n\\n42\\n00:02:18,519 --> 00:02:19,000\\nEngelske, faste overskrifter: AlanKelly VerbatimIT',\n", + " 'bytes': 4619,\n", + " 'sha1': 'kgp3ruagsdvnjo48kgj3vfk8979ufhp',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314325,\n", + " 'timestamp': '2012-12-19T18:20:35Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259158,\n", + " 'title': 'The Impact of Wikipedia Adrianne Wadewitz.webm.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:00,650 --> 00:00:05,577 In einem Semester hatte ich einen Studenten, der eine Arbeit über das Buch \"Frankenstein\" schrieb 2 00:00:05,900 --> 00:00:10...\\'',\n", + " 'text': '1\\n00:00:00,650 --> 00:00:05,577\\nIn einem Semester hatte ich einen Studenten, der eine Arbeit über das Buch \"Frankenstein\" schrieb \\n\\n2\\n00:00:05,900 --> 00:00:10,478\\nund ich hatte zu den Artikeln über Mary Shelley und Frankenstein beigetragen.\\n\\n3\\n00:00:10,986 --> 00:00:16,398\\nGanze Abschnitte dieser Arbeit wurden aus dem Artikel über Mary Shelley abgeschrieben, zu dem ich beigetragen habe.\\n\\n4\\n00:00:17,300 --> 00:00:22,792\\nAlso musste ich ihm an den Rand schreiben, dass der Text von Wikipedia kopiert ist, [flüstert] weil ich ihn dort verfasst habe. \\n\\n5\\n00:00:23,200 --> 00:00:25,000\\nIch heiße Adrianne Wadewitz.\\n\\n6\\n00:00:25,500 --> 00:00:28,721\\nAls ich ein kleines Kind war, so in etwa sieben oder acht Jahre alt, \\n\\n7\\n00:00:28,721 --> 00:00:32,759\\nhabe ich angefangen große, lange Romane aus dem neunzehnten Jahrhundert zu lesen und habe mich in sie verliebt.\\n\\n8\\n00:00:32,759 --> 00:00:36,062\\nIch schrieb meine Doktorarbeit über die britische Kinder-Literatur aus dem achtzehnten Jahrhundert \\n\\n9\\n00:00:36,062 --> 00:00:41,416\\nund ich wollte das, was ich dabei lernen konnte, mit der Welt teilen.\\n\\n10\\n00:00:41,750 --> 00:00:46,830\\nWhen jemand den Film \"Geliebte Jane\" über Jane Austen sieht\\n\\n11\\n00:00:46,831 --> 00:00:48,596\\nund sagt, \\'Ich möchte mehr über Jane Austen erfahren\\', \\n\\n12\\n00:00:48,596 --> 00:00:51,096\\ngooglet er den Begriff und kommt auf den Wikipediaartikel. \\n\\n13\\n00:00:51,232 --> 00:00:54,473\\nDann erfährt er die Unterschiede zwischen Jane Austens Leben und \\n\\n14\\n00:00:54,473 --> 00:00:58,926\\nder Fiktionalisierung im Film, da dieser Film frei erfunden ist.\\n\\n15\\n00:00:58,926 --> 00:01:01,900\\nEin Grund dafür, dass ich versuche Professoren dafür zu gewinnen, \\n\\n16\\n00:01:01,900 --> 00:01:07,626\\nihre Stutenten dazu zu bringen, eigene Artikel im Hörsaal zu schreiben, ist \\n\\n17\\n00:01:07,626 --> 00:01:11,148\\ndass wir den Studenten zeigen wollen, wie man Wikipedia effektiv nutzt. \\n\\n18\\n00:01:11,542 --> 00:01:15,042\\nAlso entwickelte ich eine Aufgabe zum Schreiben von Wikipedia-Artikeln, \\n\\n19\\n00:01:15,653 --> 00:01:22,253\\nso dass sie nicht nur ich, der Professor, die einzige Person ist, die den Artikel liest.\\n\\n20\\n00:01:22,312 --> 00:01:27,105\\nThe Welt kann sehen was sie schreiben und es kommt darauf an was man schreibt und wie man es tut, \\n\\n21\\n00:01:27,800 --> 00:01:30,368\\nda Millionen Menschen sehen können, was du geschrieben hast. \\n\\n22\\n00:01:30,777 --> 00:01:35,977\\nImmer wenn meine Studenten einen Artikel erstellen oder ihn ausbauen, \\n\\n23\\n00:01:35,981 --> 00:01:41,500\\nlasse ich sie darüber nachdenken, wie sie ihn aus einer Vielzahl an Quellen aufbauen sollen \\n\\n24\\n00:01:41,500 --> 00:01:46,560\\nund welche Quellen verwendet werden und wie dies zur Verständlichkeit beiträgt.\\n\\n25\\n00:01:46,558 --> 00:01:50,140\\nWie ist das Wissen in diesem bestimmten Bereich aufgebaut?\\n\\n26\\n00:01:50,550 --> 00:01:55,000\\nIch habe in der Wikipedia einige sehr gut informierte Laien getroffen und das macht es so toll,\\n\\n27\\n00:01:55,000 --> 00:02:00,820\\nda diese Leute mit einem bestimmten Fachgebiet als Hobby Informationen beisteuern.\\n\\n28\\n00:02:01,342 --> 00:02:03,930\\nDas ist das Tolle an der Wikipedia. \\n\\n29\\n00:02:03,943 --> 00:02:09,560\\nEs bringt sowohl Profis als auch Laien mit einem bestimmten Interesse zusammen.\\n\\n30\\n00:02:10,443 --> 00:02:12,440\\n<ccsla slug>\\n\\n31\\n00:02:11,532 --> 00:02:12,340\\nRegie: Victor Grigas\\n\\nRegieassistenz: David Grossman \\n\\n32\\n00:02:12,343 --> 00:02:12,850\\nProduzent: Zack Exley\\n\\nBildgestaltender Kameramann: Pruitt Y. Allen \\n\\n33\\n00:02:12,847 --> 00:02:13,440\\nKamera: Jack Harris, Adam Parr, Matthew Storck\\n\\n34\\n00:02:13,443 --> 00:02:13,950\\nFotografen: Adam Novak, Karen Sayre\\n\\n35\\n00:02:13,946 --> 00:02:14,470\\nMake-up: Melissa Klein\\n\\n36\\n00:02:14,473 --> 00:02:15,550\\nInterviewer: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson \\n\\n37\\n00:02:15,550 --> 00:02:16,220\\nProduktionskoordinatoren: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n38\\n00:02:16,220 --> 00:02:16,700\\nProduktionsassistenten: Toby Hessenauer, Kristin Rigsby\\n\\n39\\n00:02:16,704 --> 00:02:17,350\\nSchnitt: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n40\\n00:02:17,353 --> 00:02:17,770\\nAutor: Desirina Boskovich\\n\\n41\\n00:02:17,773 --> 00:02:18,520\\nAbschrift: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling \\n\\n42\\n00:02:18,519 --> 00:02:19,000\\nEnglische Untertitel: AlanKelly VerbatimIT',\n", + " 'bytes': 4443,\n", + " 'sha1': 'd17yvz3ex5zw7r728jfd0q76nj01fnl',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314339,\n", + " 'timestamp': '2012-12-19T18:21:15Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259160,\n", + " 'title': 'The Impact of Wikipedia Adrianne Wadewitz.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,650 --> 00:00:05,577 Así es que un semestre, tuve un estudiante que estaba escribiendo un reporte sobre la novela Frankenstein, 2 00:00:05,900 -->...'\",\n", + " 'text': '1\\n00:00:00,650 --> 00:00:05,577\\nAsí es que un semestre, tuve un estudiante que estaba escribiendo\\nun reporte sobre la novela Frankenstein, \\n\\n2\\n00:00:05,900 --> 00:00:10,478\\ny yo había contribuído al artículo sobre Mary\\nShelley, y al artículo de Frankenstein.\\n\\n3\\n00:00:10,986 --> 00:00:16,398\\nI párrafos enteros del reporte habían sido plagiados del\\nartículo que escribí sobre Mary Shelley.\\n\\n4\\n00:00:17,300 --> 00:00:22,792\\nAsí es que escribí en la orilla, yo se que esto fue\\nplagiado de Wikipedia, [susurros] porque escribo en Wikipedia. \\n\\n5\\n00:00:23,200 --> 00:00:25,000\\nMi nombre es Adrianne Wadewitz.\\n\\n6\\n00:00:25,500 --> 00:00:28,721\\nCuando era un niño pequeño, como de siete u ocho años, \\n\\n7\\n00:00:28,721 --> 00:00:32,759\\ncomencé a leer grandes y extensas novelas del Siglo XIX,\\ny me enamoré de ellas.\\n\\n8\\n00:00:32,759 --> 00:00:36,062\\nEscribí mi disertación sobre literatura infantil británica del Siglo XVII \\n\\n9\\n00:00:36,062 --> 00:00:41,416\\ny quise compartir, lo que había\\ntenido la oportuniadd de aprender, con el mundo.\\n\\n10\\n00:00:41,750 --> 00:00:46,830\\nCuando alguien va a ver una película como \"Becoming\\nJane\", que es una película sobre Jane Austen,\\n\\n11\\n00:00:46,831 --> 00:00:48,596\\ntu sabes -- Quiero saber más sobre Jane Austen, \\n\\n12\\n00:00:48,596 --> 00:00:51,096\\ny luego lo escriben en Google,\\ny luego obtienen el artículo de Wikipedia, \\n\\n13\\n00:00:51,232 --> 00:00:54,473\\ny así es como saben lo que realmente ocurrió con la vida de Jane Austen, versus \\n\\n14\\n00:00:54,473 --> 00:00:58,926\\nla dramatización de lo que ocurre en la película, porque esa película fue pura ficción.\\n\\n15\\n00:00:58,926 --> 00:01:01,900\\nUna razón de porqué trato de reclutar profesores \\n\\n16\\n00:01:01,900 --> 00:01:07,626\\npara que hagan que sus estudiantes escriban artículos en la sala de clases es \\n\\n17\\n00:01:07,626 --> 00:01:11,148\\nque queremos mostrarle a los estudiantes como usar Wikipedia de forma productiva, \\n\\n18\\n00:01:11,542 --> 00:01:15,042\\nasí es que una de las cosas que hice fue desarrollar una tarea para escribir en Wikipedia, \\n\\n19\\n00:01:15,653 --> 00:01:22,253\\nde forma que no ibas a estar escribiendo ensayos para mí, el profesor, y\\nque yo no sería la única persona que iba a leerlos.\\n\\n20\\n00:01:22,312 --> 00:01:27,105\\nEl mundo iba a ver lo que escribiste e\\nimportaba lo que escribieras y como lo escribieras, \\n\\n21\\n00:01:27,800 --> 00:01:30,368\\nporque millones de personas iban a ver lo que habías escrito. \\n\\n22\\n00:01:30,777 --> 00:01:35,977\\nAsí es que, cada vez que tengo estudios que arman un artículo\\no agregar material a un artículo, \\n\\n23\\n00:01:35,981 --> 00:01:41,500\\nLos hago pensar sobre qué significa construir\\nun artículo desde una variedad de fuentes \\n\\n24\\n00:01:41,500 --> 00:01:46,560\\ny qué tipo de fuentes están siendo usadas, y qué\\nsignifica aquello para nuestra comprensión de ese tema.\\n\\n25\\n00:01:46,558 --> 00:01:50,140\\nCómo se construyó el conocimiento en esa área en particular.\\n\\n26\\n00:01:50,550 --> 00:01:55,000\\nMe he encontrado con aficionados muy informados en Wikipedia; Por esso que es tan bueno,\\n\\n27\\n00:01:55,000 --> 00:02:00,820\\nque personas que son aficionadas que aman un tema en particular, y entonces empiezan a añadir información\\n\\n28\\n00:02:01,342 --> 00:02:03,930\\ny eso es lo que hace a Wikipedia tan grande \\n\\n29\\n00:02:03,943 --> 00:02:09,560\\ncongrega tanto a profesionales como aficionados que\\ntienen cariño por un tema en particular.\\n\\n30\\n00:02:10,443 --> 00:02:12,440\\n<ccsla slug>\\n\\n31\\n00:02:11,532 --> 00:02:12,340\\nDirector: Victor Grigas \\nCodirector: David Grossman \\n\\n32\\n00:02:12,343 --> 00:02:12,850\\nProductor: Zack Exley\\nDirector de Fotografía: Pruitt Y. Allen \\n\\n33\\n00:02:12,847 --> 00:02:13,440\\nFotógrafos de Vídeo: Jack Harris, Adam Parr, Matthew Storck\\n\\n34\\n00:02:13,443 --> 00:02:13,950\\nFotógrafos de Retrato: Adam Novak, Karen Sayre\\n\\n35\\n00:02:13,946 --> 00:02:14,470\\nMaquillaje: Melissa Klein\\n\\n36\\n00:02:14,473 --> 00:02:15,550\\nEntrevistadores: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson \\n\\n37\\n00:02:15,550 --> 00:02:16,220\\nCoordinadores de Producción: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n38\\n00:02:16,220 --> 00:02:16,700\\nAsistentes de Producción: Toby Hessenauer, Kristin Rigsby\\n\\n39\\n00:02:16,704 --> 00:02:17,350\\nEditores de Vídeo: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n40\\n00:02:17,353 --> 00:02:17,770\\nEscritor: Desirina Boskovich\\n\\n41\\n00:02:17,773 --> 00:02:18,520\\nServicios de transcripción: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling \\n\\n42\\n00:02:18,519 --> 00:02:19,000\\nSubtítulos en inglés: AlanKelly VerbatimIT',\n", + " 'bytes': 4692,\n", + " 'sha1': '6j02yktey424gfaqks394nedyxjszln',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314369,\n", + " 'timestamp': '2012-12-19T18:21:57Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259177,\n", + " 'title': 'The Impact of Wikipedia Adrianne Wadewitz.webm.id.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,650 --> 00:00:05,577 Pada satu semester, ada mahasiswa yang menulis rangkuman tentang novel Frankenstein, 2 00:00:05,900 --> 00:00:10,478 dan saya ...'\",\n", + " 'text': \"1\\n00:00:00,650 --> 00:00:05,577\\nPada satu semester, ada mahasiswa yang menulis\\nrangkuman tentang novel Frankenstein, \\n\\n2\\n00:00:05,900 --> 00:00:10,478\\ndan saya telah berkontribusi ke artikel Mary Shelley,\\nserta artikel Frankenstein.\\n\\n3\\n00:00:10,986 --> 00:00:16,398\\nDan seluruh karya tulisnya disalin dari\\nartikel yang saya tulis tentang Mary Shelley.\\n\\n4\\n00:00:17,300 --> 00:00:22,792\\nJadi saya harus menulis di samping, saya tahu tulisan ini\\ndisalin dari Wikipedia, karena saya pula yang menulisnya. \\n\\n5\\n00:00:23,200 --> 00:00:25,000\\nNama saya Adrianne Wadewitz.\\n\\n6\\n00:00:25,500 --> 00:00:28,721\\nSaat saya masih kecil, tujuh atau delapan tahun, \\n\\n7\\n00:00:28,721 --> 00:00:32,759\\nSaya mulai membaca novel-novel abad ke-19 yang panjang,\\ndan mulai jatuh cinta.\\n\\n8\\n00:00:32,759 --> 00:00:36,062\\nSaya menulis disertasi tentang literatur anak Britania abad ke-18 \\n\\n9\\n00:00:36,062 --> 00:00:41,416\\ndan saya ingin berbagi apa yang sudah\\nsaya pelajari dengan dunia.\\n\\n10\\n00:00:41,750 --> 00:00:46,830\\nKetika seseorang menonton film semisal Becoming\\nJane, yang bercerita tentang Jane Austen,\\n\\n11\\n00:00:46,831 --> 00:00:48,596\\nsaya ingin tahu lebih jauh tentang Jane Austen, \\n\\n12\\n00:00:48,596 --> 00:00:51,096\\nmereka mencarinya di Google,\\ndan mereka menemukan artikelnya di Wikipedia, \\n\\n13\\n00:00:51,232 --> 00:00:54,473\\nkemudian mereka tahu apa yang terjadi pada\\nkehidupan Jane Austen dibandingkan \\n\\n14\\n00:00:54,473 --> 00:00:58,926\\nfiksionalisasi yang ada di film, karena film itu memang karya fiksi.\\n\\n15\\n00:00:58,926 --> 00:01:01,900\\nSatu alasan mengapa saya mencoba merekrut profesor \\n\\n16\\n00:01:01,900 --> 00:01:07,626\\nagar mahasiswanya menulis artikel di dalam kelas adalah \\n\\n17\\n00:01:07,626 --> 00:01:11,148\\nkami ingin menunjukkan kepada mahasiswa cara\\nmemakai Wikipedia secara produktif, \\n\\n18\\n00:01:11,542 --> 00:01:15,042\\njadi satu hal yang saya lakukan adalah mengembangkan\\ntugas menulis di Wikipedia, \\n\\n19\\n00:01:15,653 --> 00:01:22,253\\njadi Anda tidak menulis esai untuk saya, profesor dan\\nsaya adalah satu-satunya orang yang akan menilainya.\\n\\n20\\n00:01:22,312 --> 00:01:27,105\\nDunia akan melihat apa yang Anda tulis dan\\npenting sekali mengetahui apa dan cara Anda menulisnya, \\n\\n21\\n00:01:27,800 --> 00:01:30,368\\nkarena jutaan orang akan melihat apa yang Anda tulis. \\n\\n22\\n00:01:30,777 --> 00:01:35,977\\nJadi, setiap kali mahasiswa saya menggabungkan sebuah\\nartikel atau menambahkan bahan ke sebuah artikel, \\n\\n23\\n00:01:35,981 --> 00:01:41,500\\nsaya meminta mereka berpikir apa artinya membuat\\nartikel dari berbagai macam sumber \\n\\n24\\n00:01:41,500 --> 00:01:46,560\\ndan sumber-sumber macam apa yang digunakan, dan apa\\nartinya bagi pemahaman kita terhadap topik tersebut.\\n\\n25\\n00:01:46,558 --> 00:01:50,140\\nBagaimana pengetahuan dibuat dalam satu bidang tertentu?\\n\\n26\\n00:01:50,550 --> 00:01:55,000\\nSaya telah bertemu banyak amatiran pintar di Wikipedia;\\nsungguh hebat sekali\\n\\n27\\n00:01:55,000 --> 00:02:00,820\\nbahwa para penghobi yang mencintai satu topik tertentu mulai menambahkan informasi,\\n\\n28\\n00:02:01,342 --> 00:02:03,930\\ndan itulah yang menjadikan Wikipedia besar; \\n\\n29\\n00:02:03,943 --> 00:02:09,560\\nWikipedia mempertemukan profesional dan amatiran yang\\nmemiliki kecintaan pada topik tertentu.\\n\\n30\\n00:02:10,443 --> 00:02:12,440\\n<ccsla slug>\\n\\n31\\n00:02:11,532 --> 00:02:12,340\\nSutradara: Victor Grigas \\nKo-sutradara: David Grossman \\n\\n32\\n00:02:12,343 --> 00:02:12,850\\nProduser: Zack Exley\\nPengarah Fotografi: Pruitt Y. Allen \\n\\n33\\n00:02:12,847 --> 00:02:13,440\\nFotografer Video: Jack Harris, Adam Parr, Matthew Storck\\n\\n34\\n00:02:13,443 --> 00:02:13,950\\nFotografer Potret: Adam Novak, Karen Sayre\\n\\n35\\n00:02:13,946 --> 00:02:14,470\\nTata Rias: Melissa Klein\\n\\n36\\n00:02:14,473 --> 00:02:15,550\\nPewawancara: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n37\\n00:02:15,550 --> 00:02:16,220\\nKoordinator Produksi: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n38\\n00:02:16,220 --> 00:02:16,700\\nAsisten Produksi: Toby Hessenauer, Kristin Rigsby\\n\\n39\\n00:02:16,704 --> 00:02:17,350\\nPenyunting Viddeo: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n40\\n00:02:17,353 --> 00:02:17,770\\nPenulis: Desirina Boskovich\\n\\n41\\n00:02:17,773 --> 00:02:18,520\\nTranskripsi: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling \\n\\n42\\n00:02:18,519 --> 00:02:19,000\\nSubtitel Inggris: AlanKelly VerbatimIT\",\n", + " 'bytes': 4400,\n", + " 'sha1': 'mpgjzp6swrq1usua79l9zqcic5akmbg',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314419,\n", + " 'timestamp': '2012-12-19T18:22:54Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259201,\n", + " 'title': 'The Impact of Wikipedia Adrianne Wadewitz.webm.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,650 --> 00:00:05,577 Так, в одном семестре у меня был студент, который писал доклад по роман...'\",\n", + " 'text': '1\\n00:00:00,650 --> 00:00:05,577\\nТак, в одном семестре у меня был студент, который писал доклад по роману \"Франкенштейн\", \\n\\n2\\n00:00:05,900 --> 00:00:10,478\\nа я внесла вклад в статью по Мэри Шелли и в статью по \"Франкенштейну\".\\n\\n3\\n00:00:10,986 --> 00:00:16,398\\nИ всё пространство его работы было плагиатом из той статьи, которую я написала по Мэри Шелли.\\n\\n4\\n00:00:17,300 --> 00:00:22,792\\nПоэтому, я написала на полях его работы, что знаю, что его работа - это плагиат из Википедии, что (по слухам) я написала её в Википедии. \\n\\n5\\n00:00:23,200 --> 00:00:25,000\\nМеня зовут Адрианна Уэйдвиц (Adrianne Wadewitz).\\n\\n6\\n00:00:25,500 --> 00:00:28,721\\nЕщё будучи маленьким ребёнком, в возрасте семи или восьми лет, \\n\\n7\\n00:00:28,721 --> 00:00:32,759\\nя начала чтение больших и длинных романов девятнадцатого столетия и полюбила их.\\n\\n8\\n00:00:32,759 --> 00:00:36,062\\nЯ написала свою диссертацию по детской британской литературе восемнадцатого века \\n\\n9\\n00:00:36,062 --> 00:00:41,416\\nи захотела поделиться с миром тем, возможность изучения чего я получила.\\n\\n10\\n00:00:41,750 --> 00:00:46,830\\nКогда кто-то идёт посмотреть фильм \"Джейн Остин\" (фильм) (Becoming \\nJane), посвящённый Джейн Остин,\\n\\n11\\n00:00:46,831 --> 00:00:48,596\\nвы знаете -- я хочу знать больше о Джейн Остин, \\n\\n12\\n00:00:48,596 --> 00:00:51,096\\nи затем он впечатывает это в Гугл, и получает статью в Википедии, \\n\\n13\\n00:00:51,232 --> 00:00:54,473\\nо том, что они действительно знают, что же на самом деле случилось в жизни Джейн Остин в отличии от \\n\\n14\\n00:00:54,473 --> 00:00:58,926\\nтого вымысла, который совершили в этом фильме, потому что тот фильм был полным вымыслом.\\n\\n15\\n00:00:58,926 --> 00:01:01,900\\nОдна из причин, почему я пытаюсь привлечь профессоров \\n\\n16\\n00:01:01,900 --> 00:01:07,626\\nсостоит в том, чтобы они вовлекли студентов в написание настоящих статей в классе, \\n\\n17\\n00:01:07,626 --> 00:01:11,148\\nмы хотим показать студентам, как продуктивно пользоваться Википедией, \\n\\n18\\n00:01:11,542 --> 00:01:15,042\\nтак что одна из вещей, которые я сделала, это развивать письменные задания в Википедии, \\n\\n19\\n00:01:15,653 --> 00:01:22,253\\nс тем, чтобы вы писали эссе не для меня, профессора, и чтобы я была бы не единственным человеком, который собирался увидеть это эссе.\\n\\n20\\n00:01:22,312 --> 00:01:27,105\\nВесь мир собирался увидеть то, что вы написали, приобретало значение то, что вы написали и как вы это сделали, \\n\\n21\\n00:01:27,800 --> 00:01:30,368\\nпотому что миллионы людей собирались увидеть ваше письменное произведение. \\n\\n22\\n00:01:30,777 --> 00:01:35,977\\nПоэтому каждый раз, когда я собираю студентов для статьи или дополнения статьи, \\n\\n23\\n00:01:35,981 --> 00:01:41,500\\nя побуждаю их подумать о значении того, как создать статью из разнообразия источников \\n\\n24\\n00:01:41,500 --> 00:01:46,560\\nи какого рода источники использованы и что это значит для нашего понимания того предмета?\\n\\n25\\n00:01:46,558 --> 00:01:50,140\\nКак создаётся знание в этой особенной области?\\n\\n26\\n00:01:50,550 --> 00:01:55,000\\nЯ встретила очень информированных любителей в Википедии; вот почему это замечательно,\\n\\n27\\n00:01:55,000 --> 00:02:00,820\\nчто люди, которые имеют хобби, которые обожают особенный предмет, а затем они начинают добавлять информацию,\\n\\n28\\n00:02:01,342 --> 00:02:03,930\\nвот это и делает Википедию такой замечательной; \\n\\n29\\n00:02:03,943 --> 00:02:09,560\\nэто сближает как профессионалов, так и любителей, которые обожают один определённый предмет.\\n\\n30\\n00:02:10,443 --> 00:02:12,440\\nфреймворк символ (<ccsla slug>)\\n\\n31\\n00:02:11,532 --> 00:02:12,340\\nДиректор: Victor Grigas \\nДополнительный директор: David Grossman \\n\\n32\\n00:02:12,343 --> 00:02:12,850\\nПродюсер: Zack Exley\\nДиректор видеозаписи: Pruitt Y. Allen \\n\\n33\\n00:02:12,847 --> 00:02:13,440\\nВидеооператоры: Jack Harris, Adam Parr, Matthew Storck\\n\\n34\\n00:02:13,443 --> 00:02:13,950\\nФотографы: Adam Novak, Karen Sayre\\n\\n35\\n00:02:13,946 --> 00:02:14,470\\nГрим: Melissa Klein\\n\\n36\\n00:02:14,473 --> 00:02:15,550\\nБрали интервью: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson \\n\\n37\\n00:02:15,550 --> 00:02:16,220\\nКоординаторы производства: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n38\\n00:02:16,220 --> 00:02:16,700\\nАссистенты производства: Toby Hessenauer, Kristin Rigsby\\n\\n39\\n00:02:16,704 --> 00:02:17,350\\nВидеоредакторы: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n40\\n00:02:17,353 --> 00:02:17,770\\nПисательница: Desirina Boskovich\\n\\n41\\n00:02:17,773 --> 00:02:18,520\\nУслуги транскрипции: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling \\n\\n42\\n00:02:18,519 --> 00:02:19,000\\nСубтитры к английскому языку: AlanKelly VerbatimIT',\n", + " 'bytes': 6796,\n", + " 'sha1': 'cczzmnd53vtmrn1zasb59wt6uvgdprj',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314447,\n", + " 'timestamp': '2012-12-19T18:23:51Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259208,\n", + " 'title': 'The Impact of Wikipedia Adrianne Wadewitz.webm.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,650 --> 00:00:05,577 Så en termin hade jag en elev som skrev en rapport om boken Frankenstein, 2 00:00:05,900 --> 00:00:10,478 och jag har skrivi...'\",\n", + " 'text': '1\\n00:00:00,650 --> 00:00:05,577\\nSå en termin hade jag en elev som skrev \\nen rapport om boken Frankenstein, \\n\\n2\\n00:00:05,900 --> 00:00:10,478\\noch jag har skrivit på artikeln om Mary\\nShelley, och på artikeln om Frankenstein.\\n\\n3\\n00:00:10,986 --> 00:00:16,398\\nStora mängder av rapporten var kopierade från\\nartikeln jag skrev om Mary Shelley.\\n\\n4\\n00:00:17,300 --> 00:00:22,792\\nSå jag skrev, i marginalen, att jag vet att det här är\\nkopierat från Wikipedia, [viskar] för jag skrev det på Wikipedia. \\n\\n5\\n00:00:23,200 --> 00:00:25,000\\nJag heter Adrianne Wadewitz.\\n\\n6\\n00:00:25,500 --> 00:00:28,721\\nNär jag var ett barn, typ sju eller åtta år gammal, \\n\\n7\\n00:00:28,721 --> 00:00:32,759\\nbörjade jag läsa stora, långa artonhundratalsromander,\\noch jag blev förälskad i dem.\\n\\n8\\n00:00:32,759 --> 00:00:36,062\\nJag skrev min avhandling om brittisk barnlitteratur från 1700-talet \\n\\n9\\n00:00:36,062 --> 00:00:41,416\\noch jag ville dela med mig var jag hade\\nkunnat lära mig, med hela världen.\\n\\n10\\n00:00:41,750 --> 00:00:46,830\\nNär någon ser en film såsom En ung Jane Austen (eng. Becoming Jane),\\nsom är en film om Jane Austen,\\n\\n11\\n00:00:46,831 --> 00:00:48,596\\ntyp -- \"jag vill veta mer om Jane Austen\", \\n\\n12\\n00:00:48,596 --> 00:00:51,096\\noch när de söker på det på Google,\\noch när de ser Wikipediaartikeln, \\n\\n13\\n00:00:51,232 --> 00:00:54,473\\nfår de faktiskt veta vad som verkligen hände i Jane Austens liv, gentemot \\n\\n14\\n00:00:54,473 --> 00:00:58,926\\ndenna fiktionaliserade version av händelserna i filmen, för filmen var helt påhittad.\\n\\n15\\n00:00:58,926 --> 00:01:01,900\\nEn av anledningarna till att jag försöker förmå professorer \\n\\n16\\n00:01:01,900 --> 00:01:07,626\\natt få elever att skriva verkliga artiklar i klassrummet är att \\n\\n17\\n00:01:07,626 --> 00:01:11,148\\nvi vill visa eleverna hur man använder Wikipedia produktivt, \\n\\n18\\n00:01:11,542 --> 00:01:15,042\\nså en av sakerna jag gjorde var att utveckla en uppgift att skriva på Wikipedia, \\n\\n19\\n00:01:15,653 --> 00:01:22,253\\nså att du inte bara skriver uppsatser för mig, läraren, och\\njag var en enda personen som skulle se dem.\\n\\n20\\n00:01:22,312 --> 00:01:27,105\\nHela världen kan se vad du skriver och\\nvad du skrev och hur du skrev det var var betydelsefullt, \\n\\n21\\n00:01:27,800 --> 00:01:30,368\\nför miljontals människor kommer att se vad du skrev. \\n\\n22\\n00:01:30,777 --> 00:01:35,977\\nSå, varje gång mina elever sätter ihop en artikel\\neller lägger till material till en artikel, \\n\\n23\\n00:01:35,981 --> 00:01:41,500\\nsäger jag åt dem att tänka på vad det betyder att bygga\\nen artikel från en mängd olika källor \\n\\n24\\n00:01:41,500 --> 00:01:46,560\\noch vilka sorters källor som används, och vad\\ndet betyder för vår förståelse av det ämnet?\\n\\n25\\n00:01:46,558 --> 00:01:50,140\\nHur byggs kunskapen upp i det här specifika ämnet?\\n\\n26\\n00:01:50,550 --> 00:01:55,000\\nJag har sett mycket välinformerade amatörer på Wikipedia; det är det som är så fantastiskt,\\n\\n27\\n00:01:55,000 --> 00:02:00,820\\natt människor som har specifika hobbyintressen,\\nbörjar lägga till information,\\n\\n28\\n00:02:01,342 --> 00:02:03,930\\noch det är det som gör Wikipedia så bra; \\n\\n29\\n00:02:03,943 --> 00:02:09,560\\nDet för samman både professionella och amatörer som har förkärlek för ett visst ämne.\\n\\n30\\n00:02:10,443 --> 00:02:12,440\\n<ccsla slug>\\n\\n31\\n00:02:11,532 --> 00:02:12,340\\nRegissör: Victor Grigas\\nMedregissör: David Grossman \\n\\n32\\n00:02:12,343 --> 00:02:12,850\\nProducent: Zack Exley\\nFilmfotograf: Pruitt Y. Allen \\n\\n33\\n00:02:12,847 --> 00:02:13,440\\nVideofotografer: Jack Harris, Adam Parr, Matthew Storck\\n\\n34\\n00:02:13,443 --> 00:02:13,950\\nStillbildsfotografer: Adam Novak, Karen Sayre\\n\\n35\\n00:02:13,946 --> 00:02:14,470\\nSmink: Melissa Klein\\n\\n36\\n00:02:14,473 --> 00:02:15,550\\nIntervjuare: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson \\n\\n37\\n00:02:15,550 --> 00:02:16,220\\nProduktionskoordination: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n38\\n00:02:16,220 --> 00:02:16,700\\nProduktionsassistenter: Toby Hessenauer, Kristin Rigsby\\n\\n39\\n00:02:16,704 --> 00:02:17,350\\nRedigering: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n40\\n00:02:17,353 --> 00:02:17,770\\nManusförfattare: Desirina Boskovich\\n\\n41\\n00:02:17,773 --> 00:02:18,520\\nTransktription: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling \\n\\n42\\n00:02:18,519 --> 00:02:19,000\\nEngelsk textning: AlanKelly VerbatimIT',\n", + " 'bytes': 4489,\n", + " 'sha1': 'n6pm0zvpplhffhbdr3y0ogspgeecftb',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314491,\n", + " 'timestamp': '2012-12-19T18:24:50Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259220,\n", + " 'title': 'The Impact of Wikipedia Adrianne Wadewitz.webm.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,650 --> 00:00:05,577 在某个学期,我有一个学生写了一篇小说《科学怪人》的报告。 2 00:00:05,900 --> 00:00:10,478 由于我...'\",\n", + " 'text': '1\\n00:00:00,650 --> 00:00:05,577\\n在某个学期,我有一个学生写了一篇小说《科学怪人》的报告。 \\n\\n2\\n00:00:05,900 --> 00:00:10,478\\n由于我曾编写过维基百科上的玛丽·雪莱和《科学怪人》的条目,\\n\\n3\\n00:00:10,986 --> 00:00:16,398\\n所以我发现这篇报告大幅抄袭了我所编写的玛丽·雪莱的内容。\\n\\n4\\n00:00:17,300 --> 00:00:22,792\\n因此我在页边上批注:我知道这篇文章是剽窃维基百科的,[悄声说]因为这条目是我写的。 \\n\\n5\\n00:00:23,200 --> 00:00:25,000\\n我是阿德里安娜·韦德维茨。\\n\\n6\\n00:00:25,500 --> 00:00:28,721\\n当我还是个七八岁的孩子的时候, \\n\\n7\\n00:00:28,721 --> 00:00:32,759\\n就开始阅读大部头的十九世纪小说,并且爱上了它们。\\n\\n8\\n00:00:32,759 --> 00:00:36,062\\n我的论文是关于十八世纪英国儿童文学的, \\n\\n9\\n00:00:36,062 --> 00:00:41,416\\n我也想同全世界分享我有幸了解的知识\\n\\n10\\n00:00:41,750 --> 00:00:46,830\\n当人们去看关于简·奥斯汀的电影《成为简·奥斯汀》时,\\n\\n11\\n00:00:46,831 --> 00:00:48,596\\n你懂得——他们可能想要了解更多简·奥斯汀的知识, \\n\\n12\\n00:00:48,596 --> 00:00:51,096\\n那么他们就可以在谷歌中搜索,并找到维基百科上的条目 \\n\\n13\\n00:00:51,232 --> 00:00:54,473\\n然后他们会发现简·奥斯汀的真实人生经历 \\n\\n14\\n00:00:54,473 --> 00:00:58,926\\n与这部电影中的虚构情节不同,因为电影是完全的艺术创作\\n\\n15\\n00:00:58,926 --> 00:01:01,900\\n我想聘用更多的教授 \\n\\n16\\n00:01:01,900 --> 00:01:07,626\\n并让他们帮助学生在课堂上写出真实文章的原因之一 \\n\\n17\\n00:01:07,626 --> 00:01:11,148\\n是我们想向学生展示如何高效地使用维基百科 \\n\\n18\\n00:01:11,542 --> 00:01:15,042\\n为此我所进行的尝试之一就是布置一次维基百科写作作业, \\n\\n19\\n00:01:15,653 --> 00:01:22,253\\n那么学生们就不只是为了我和教授们写作文,而我只会是他们文章的读者之一\\n\\n20\\n00:01:22,312 --> 00:01:27,105\\n全世界的都能看到你的作品,你写了什么和怎么写的将会变得重要, \\n\\n21\\n00:01:27,800 --> 00:01:30,368\\n因为数以百万的人们将会看到你的文字, \\n\\n22\\n00:01:30,777 --> 00:01:35,977\\n所以每当我的学生写下新条目或在条目内增加内容时, \\n\\n23\\n00:01:35,981 --> 00:01:41,500\\n我会让他们思考利用各种资源创建新条目意味着什么, \\n\\n24\\n00:01:41,500 --> 00:01:46,560\\n哪一类资源得到了利用,以及这些资源对我们理解这个主题有何意义?\\n\\n25\\n00:01:46,558 --> 00:01:50,140\\n关于这个领域的知识是如何积累起来的?\\n\\n26\\n00:01:50,550 --> 00:01:55,000\\n我曾经遇到过一些博学的维基百科爱好者,而这正是维基的伟大之处,\\n\\n27\\n00:01:55,000 --> 00:02:00,820\\n那些对特定主题有爱好的人可以丰富条目内容,\\n\\n28\\n00:02:01,342 --> 00:02:03,930\\n这就是让维基百科变得伟大的原因: \\n\\n29\\n00:02:03,943 --> 00:02:09,560\\n它让了解某个主题的专业人士和业余爱好者们聚集在一起贡献知识。\\n\\n30\\n00:02:10,443 --> 00:02:12,440\\n<ccsla slug>\\n\\n31\\n00:02:11,532 --> 00:02:12,340\\n导演:维克多·格利戛斯\\n合作导演:大卫·格罗斯曼 \\n\\n32\\n00:02:12,343 --> 00:02:12,850\\n制片人:扎克·埃克斯利\\n摄影指导:普鲁特·Y·艾伦 \\n\\n33\\n00:02:12,847 --> 00:02:13,440\\n视频摄影:杰克·哈里斯,亚当·帕尔,马修·斯托克\\n\\n34\\n00:02:13,443 --> 00:02:13,950\\n人像摄影:亚当·诺瓦克,卡伦·塞尔\\n\\n35\\n00:02:13,946 --> 00:02:14,470\\n化妆:梅利莎·克莱因\\n\\n36\\n00:02:14,473 --> 00:02:15,550\\n采访者:阿尔玛·沙帕,乔纳森·库列尔,斯蒂芬·海尔,丹·马克斯韦恩\\n科里·奥布莱恩,弗兰克·奥布莱恩,雅各布·威尔逊 \\n\\n37\\n00:02:15,550 --> 00:02:16,220\\n制作协调:梅根·埃尔南德斯,布里奥妮·琼斯,贝亚特里切·斯普林伯恩 \\n\\n38\\n00:02:16,220 --> 00:02:16,700\\n制作助理:托比·赫森纳尔,克里斯汀·里格斯比\\n\\n39\\n00:02:16,704 --> 00:02:17,350\\n视频编辑:贾斯汀·金德伦,维克多·格利戛斯,贾瓦德·卡迪尔\\n\\n40\\n00:02:17,353 --> 00:02:17,770\\n脚本:德西尔里纳·博斯科维奇\\n\\n41\\n00:02:17,773 --> 00:02:18,520\\n转录服务:凯特·阿莱奥,迈克尔·比蒂,卡伦·卡列尔,彼得罗·利,米米·李杰奎·帕斯特,克里斯蒂·罗宾逊,布列塔尼·特纳,苏珊·沃林 \\n\\n42\\n00:02:18,519 --> 00:02:19,000\\n英语闭合字幕:AlanKelly VerbatimIT',\n", + " 'bytes': 4514,\n", + " 'sha1': 'ms490jjjm0wz6u1x1n6i4627auc7ymf',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314727,\n", + " 'timestamp': '2012-12-19T18:29:43Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259282,\n", + " 'title': 'Oarabile Mudongo V1.webm.ar.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 ليس لدي والدي الكثير لمشاركته معنا، أو لتقديمه لنا. 2 00:00:07,250 --> 00:00:12,018 ...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nليس لدي والدي الكثير لمشاركته معنا، أو لتقديمه لنا.\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nلم يكن بمقدورها، أو لم يكن بمقدورهم أن يشتروا لي تلك الأدوات الغالية الثمن، \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nلأنها غالية في بلدنا. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nاسمي هو أورابيله مودونغو. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nأنا من بوتسوانا.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nليس لدينا حاسوب في بيتنا. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nلم يكن لأي منا حاسوب. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nقامت شركة التنجيم المحلية بالتبرع بأجهزة حاسوب لمدرستنا.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nكان ذلك هو الوقت الذي بدأت معه بتطوير الاهتمام بالحواسيب.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nلقد كنت خائفا من لمس هذا، كما تعلم، فقد كان لدي معتقدات\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nقد أخطئ في عمل شيء ما، ما الذي سيحصل حينها؟\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nماذا إن خربتها، وكان يتوجب علي الدفع \\nووالدي ليس لديهم النقود للدفع لهذا؟\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nلقد كنت أفكر بهذا في رأسي.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nكما ترى، فقد رأيت نفسي ناجحا في الحياة. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nلقد كان لدينا نادي في المدرسة الثانوية. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nلقد أرادوا لنا أن ننخرط في الأبحاث، في الأبحاث المتعمقة. \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nولهذا فقد قمت بالاستفادة من الإنترنت كمصدر لي،\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\nللحصول على المزيد من المعلومات، ومعظم المعلومات التي حصلت عليها عندما كنت في تلك المجموعة - \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\nمجموعة معرض الرياضيات والعلوم - \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\nاعتمدت بشكل كبير على ويكيبيديا، وللمشاركة معكم، \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nالمعلومات التي حصلت عليها، أدت إلى أن مشروعنا كان بمستوى جيد على المستوى المبدئي. \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\n<span class=\"mw-translate-fuzzy\">\\nوقمنا بالتقديم على المستوى الوطني.\\n</span> \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\n<span class=\"mw-translate-fuzzy\">\\nكان هناك البعض في المدرسة ممن كان يقول، يجب أن لا تثق بويكيبيديا،\\n</span> \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nلأن ويكيبيديا لا تعتبر مصدرا موثوقا للحصول على المعلومات من أجل أبحاثك،\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\nوكنت شديد المفاجأة. \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nويكيبيديا هي مصدر مفتوح يستطيع كل شخص المشاركة أو إضافة أفكاره أو أفكارها \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\nثم يأتي شخص آخر ويشذب تلك الأفكار ليحسنها.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nنجحت في المدرسة، وتقدمت إلى المدرسة العليا. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nإلا أن معظم أصدقائي لم يتمكنوا من الالتحاق بالمدرسة العليا. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\nوبالنظر إلى ذلك من الخلف، كان علي أن أقول لا لا لا.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nيجب أن أصل إلى مستوى أعلى لكي أحضر شيئا للمنزل، لمساعدة والدي.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nلقد كانت المعلومات التي حصلت عليها من ويكيبيديا ساعدتني على التقدم للأمام.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nلقد نجحت، بسبب المقالات التي قرأتها، \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\nوالأبحاث التي أجريتها في المدرسة،\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\nلقد حصلت عليها من ويكيبيديا.',\n", + " 'bytes': 4353,\n", + " 'sha1': 'qtcrdjnuuku4t4lmu0zeh341m0psbav',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314746,\n", + " 'timestamp': '2012-12-19T18:30:12Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259284,\n", + " 'title': 'Oarabile Mudongo V1.webm.da.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 Mine forældre havde ikke meget at dele med os eller at forsyne os med. 2 00:00:07,250 --> 00:00:12,018 Hun kunne ikke, de kunn...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nMine forældre havde ikke meget at dele med os eller at forsyne os med.\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nHun kunne ikke, de kunne ikke få råd til at købe mig disse smarte dimser, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nfor de er dyre i mit land. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nMit navn er Oarabile Mudongo. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nJeg kommer fra Botswana.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nVi har ikke nogen computer i huset. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nIngen af os har nogensinde ejet en computer. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nEt mineselskab i nabolaget - de forærede computere til vores skole.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nDet var dengang, jeg begyndte at udvikle interessen for at bruge computere.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nJeg var bange for at røre dem, ser I, for jeg havde tænkt\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nNu rørte jeg den. Hvad nu hvis jeg ødelægger det?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nHvad nu hvis jeg ødelægger den, og jeg gerne vil erstatte \\nog mine forældre ikke har penge til at erstatte den?\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nMed min baggrund havde jeg dette i baghovedet.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nJeg så mig som succesrig i livet. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nVi havde den her anden klub i skolen i gymnasiet. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nDe ville have os til at engagere os i mere forskning ved at lave dyb forskning, \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nså jeg greb fordelen ved det:\\nat bruge internettet som min kilde,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\ntil at få mere viden, og det meste af den viden, jeg \\nfik, da jeg var i den gruppe - \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\nmatematik- og naturvidenskabsgruppen - \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\njeg stolede meget på Wikipedia, og jeg kan oplyse jer om, \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nat [med] den viden, jeg fik, gik vores projekt godt på regionalt plan. \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\nVi tog det videre til nationalt plan. \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nJeg hørte faktisk rygter i skoletiden, der [sagde], altså, at du ikke burde stole på Wikipedia, \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nfor Wikipedia - det er ikke en pålidelig kilde til at finde oplysninger til din forskning,\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\nog jeg blev meget overrasket. \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nWikipedia er en åben kilde, hvor enhver kan bidrage eller fremsætte sin idé \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\nog så kommer der en anden ind og afpudser den idé for at gøre den virkeligt god.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nJeg havde bestået, så jeg måtte videre til øverste trin. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nDe fleste af mine venner klarede ikke at nå til øverste trin. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\nog når jeg ser på det fra min baggrund, måtte jeg sige nej, nej, nej.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nJeg har brug for at opnå noget mere, så jeg \\nkan sende noget hjem, hjælpe mine forældre.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nDen viden, jeg har fået fat i fra Wikipedia, gav mig virkelig et skub fremad.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nJeg formåede at bestå, fordi de meste af det materiale, som jeg læste, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\nden forskning, jeg lavede i skolen,\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\ndet fik jeg nemlig lige fra Wikipedia.',\n", + " 'bytes': 3358,\n", + " 'sha1': '4errewqz51ld44i30j7i16x357sogs1',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314764,\n", + " 'timestamp': '2012-12-19T18:30:38Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259287,\n", + " 'title': 'Oarabile Mudongo V1.webm.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 Meine Eltern hatten nicht viel, was sie mit uns teilen oder uns zur Verfügung stellen konnten. 2 00:00:07,250 --> 00:00:12,018...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nMeine Eltern hatten nicht viel, was sie mit uns teilen oder uns zur Verfügung stellen konnten.\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nSie konnten es sich nicht leisten mir diese schicken Geräte zu kaufen, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\ndenn sie sind in unserem Land teuer. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nIch heiße Oarabile Mudongo. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nIch komme aus Botswana.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nWir haben keinen Computer in unserem Haus. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nNiemand von uns hat je einen Computer besessen. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nEine Bergbau-Firma in unserer Gemeinde - sie spendete unserer Schule PCs.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nDadurch begann ich mein Interesse für die Benutzung von Computern zu entwickeln.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nI hatte Angst ihn zu berühren, da ich dachte,\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\ndass ich ihn kaputt machen könnte, wenn ich ihn anfasse.\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nWas wäre, wenn ich ihn zerstören würde und ihn bezahlen müsste, \\nund meine Eltern das Geld dafür nicht haben?\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nDurch meinen Hintergrund hatte ich diesen Gedanken immer in meinem Kopf.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nIch sah mich selber als erfolgreich in meinem Leben. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nWir hatten eine AG an der Mittelstufe. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nSie wollten, dass wir eine genaue Untersuchung anstellen um uns in die Forschung zu involvieren, \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nalso nutzte ich die Gelegenheit, um das Internet als Quelle zu nutzen,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\num mehr Informationen zu bekommen. Die meisten Informationen für meine Gruppe, \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\nder Mathematik- und Wissenschaftsaustellungsgruppe, \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\nbekam ich von Wikipedia. \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nUnser Projekt kam auf der regionalen Ebene gut an, \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\nso dass wir es mit unserem Projekt bis zur Bundesebene schafften. \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nIch hörte Gerüchte in der Schule, dass man Wikipedia nicht trauen darf, \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nda Wikipedia keine vertrauenswürdige Quelle sei, die man fürs Recherchieren verwenden könne.\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\nIch war sehr überrascht. \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nWikipedia ist eine offene Quelle, wo jeder seine oder ihre eigenen Ideen einbringen kann \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\nund dann kommt eine andere Person, die diesen Gedanken auszuarbeitet und perfektioniert.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nIch hatte die Mittelstufe bestanden, so dass ich auf die Oberstufe gehen konnte. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nDoch die meisten meiner Freunde hatten es nicht auf die Oberstufe geschafft. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\nVon meiner Hintergrundgeschichte aus, hätte ich \"nein\" sagen müssen.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nIch musste mehr erreichen so dass ich etwas nach Hause bringen konnte um meine Eltern zu unterstützen.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nDie Informationen, die ich mir aus der Wikipedia holte, halfen mir wirklich beim Weiterentwickeln.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nIch schaffte es die Oberstufe zu bestehen, weil die meisten Texte, die ich las, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\ndie meisten Nachforschungen, die ich für die Schule betrieb,\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\ngenau hier von Wikipedia stammen.',\n", + " 'bytes': 3511,\n", + " 'sha1': '62gosr9oq5aaplel4hsix1xm5gw4658',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314795,\n", + " 'timestamp': '2012-12-19T18:31:14Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259291,\n", + " 'title': 'Oarabile Mudongo V1.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 Mis padres no tenían mucho para compartir con nosotros o para proporcionarnos. 2 00:00:07,250 --> 00:00:12,018 Ella no podía ...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nMis padres no tenían mucho para compartir con nosotros o para proporcionarnos.\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nElla no podía y ellos no podían comprarme esos aparatos de moda, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nporque son muy caros en nuestro país. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nMi nombre es Oarabile Mudongo. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nYo vengo de Botswana.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nNosotros no tenemos un computador en nuestra casa. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nNinguno de nosotros tuvo alguna vez un computador. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nUna compañía minera en el municipio - ellos donaron computadores a la escuela.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nFue cuando comencé a desarrollar ese interés por usar el computador.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nEstaba asustado de tocar eso, sabes, porque pensé\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nsi toco esto, ¿Qué pasa si lo echo a perder?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\n¿Qué pasa si lo destruyo y lo tengo que pagar... \\ny mis padres no tienen el dinero para repararlo?\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nDebido a mi educación, tenía esto en mi mente.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nMira, yo me veía a mi mismo siendo exitoso en la vida. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nNosotros teníamos este otro club en la escuela secundaria. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nEllos querían que nos involucráramos en más investigación, haciendo un estudio profundo, \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nasí es que me aproveché de ello\\npara usar Internet como una fuente,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\npara obtener más información, y la mayor parte de la información\\nque obtuve estando en ese grupo - \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\nel grupo de Matemáticas y de la Feria de Ciencias - \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\nme apoyé mucho en Wikipedia, y para compartir contigo, \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nla información que obtuve, a nuestro proyecto le fue bien a nivel del colegio. \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\n<span class=\"mw-translate-fuzzy\">\\nNos presentamos al nivel nacional.\\n</span> \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nEn realidad había oido rumores en la escuela que [decían], bueno... no deberías confiar en Wikipedia, \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nporque Wikipedia - no es una fuente confiable para obtener información para tu investigación,\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\ny me sorprendí mucho. \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nWikipedia es una fuente libre donde cualquiera puede incorporar,\\no expresar su idea. \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\ny luego alguien más viene, y pule\\nesa idea para volverla extraordinaria.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nAprobé, así es que tuve que pasar a terciario. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nLa mayoría de mis amigos no pasaron a terciario. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\ny viéndolo desde mi historia personal, debiese decir no no no.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nYo necesito lograr más, para\\npoder ayudar en mi hogar y a mis padres.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nLa información que tomé de Wikipedia realmente me ayudó a avanzar.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nLogré aprobar, porque la mayoría del material que leí, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\ny la investigación que hice en la escuela,\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\nla obtuve directamente de Wikipedia.',\n", + " 'bytes': 3411,\n", + " 'sha1': 'llltlff30vr4s1i01cgvueqyl3eg68x',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314816,\n", + " 'timestamp': '2012-12-19T18:31:46Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259296,\n", + " 'title': 'Oarabile Mudongo V1.webm.id.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 Orang tua saya tidak memiliki banyak untuk dibagikan kepada kami, atau untuk mencukupi kami. 2 00:00:07,250 --> 00:00:12,018 Be...'\",\n", + " 'text': \"1\\n00:00:00,797 --> 00:00:05,985\\nOrang tua saya tidak memiliki banyak untuk dibagikan kepada kami,\\natau untuk mencukupi kami.\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nBeliau tidak dapat, mereka tidak mampu membelikan saya gawai yang indah, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nkarena gawai mahal di negara kami. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nNama saya Oarabile Mudongo. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nSaya dari Botswana.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nKami tidak punya komputer di rumah. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nTidak satupun dari kami pernah memiliki komputer. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nSebuah perusahaan tambang di kota kami menyumbangkan komputer untuk sekolah kami.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nSejak saat itulah saya mulai tertarik menggunakan komputer.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nSaya takut untuk menyentuhnya, seperti anda ketahui, karena saya pikir\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nJadi, Saya telah menyentuhnya, bagaimana jika saya merusaknya?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nBagaimana jika saya menghancukannya, dan saya harus menggantinya \\ndan orang tua saya tidak punya uang untuk menggantinya?\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nDari latar belakang saya, saya berpikir seperti ini.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nLihatlah, Saya melihat diri saya sendiri sukses. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nKami memiliki klub lain di sekolah pada SMA. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nMereka menginginkan kami terlibat dalam lebih banyak penelitian,\\nmembuat penelitian yang mendalam, \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\njadi saya mengambil keuntungan darinya\\nuntuk menggunakan Internet sebagai sumber saya,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\nuntuk memperoleh lebih banyak informasi, dan sebagian besar informasi\\nyang saya peroleh saat saya berada dalam kelompok itu - \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\nkelompok Matematika dan Sains - \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\nsaya banyak mengandalkan Wikipedia, dan untuk berbagi kepada Anda, \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\ndengan informasi yang saya dapat,\\nproyek kami berjalan dengan baik pada tingkat regional. \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\nKami berlanjut ke tingkat nasional. \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nSaya mendengar kabar baru dari sekolah yang [mengatakan],\\nAnda sebaiknya jangan memercayai Wikipedia, \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nkarena Wikipedia - ini bukan sumber terpercaya\\nuntuk mendapat informasi bagi penelitianmu,\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\ndan saya sangat terkejut. \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nWikipedia adalah sumber terbuka tempat semua orang dapat memasukkan,\\natau memberikan idenya \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\ndan kemudian orang lain datang dan mengkilapkan\\nide itu untuk menjadikannya luar biasa.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nI had passed, so I had to progress to tertiary. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nMost of my friends didn't make it to tertiary. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\ndan melihatnya dari latar belakang, saya harus mengatakan tidak tidak tidak.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nSaya ingin mencapai lebih agar saya dapat\\nmembawa sesuatu ke rumah, membantu orang tua saya.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nInformasi yang telah saya peroleh dari Wikipedia benar-benar membuat saya maju.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nSaya berencana melewatinya, karena semua materi yang telah saya baca, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\npenelitian yang saya buat di sekolah,\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\nsaya telah mendapatkannya di sana dari Wikipedia.\",\n", + " 'bytes': 3516,\n", + " 'sha1': 'f7z9vbb782bzxh87nmn8lw5ll5pkqrt',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314839,\n", + " 'timestamp': '2012-12-19T18:32:22Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259302,\n", + " 'title': 'Oarabile Mudongo V1.webm.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 I miei genitori non avevano molto da condividere con noi o da fornirci. 2 00:00:07,250 --> 00:00:12,018 Non potevano permetters...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nI miei genitori non avevano molto da condividere con noi o da fornirci.\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nNon potevano permettersi di comprarmi quegli aggeggi stravaganti, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nperché costano molto nel nostro Paese. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nMi chiamo Oarabile Mudongo. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nVengo dal Botswana.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nNon abbiamo un computer in casa nostra. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nNessuno di noi ha mai posseduto un computer. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nUna società mineraria del Comune donò dei computer alla nostra scuola.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nFu allora che iniziai a sviluppare interesse nell\\'uso del computer.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nAvevo paura nel toccarlo, sapete, perché avevo pensato:\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\n\"L\\'ho toccato, cosa succede se rovino tutto?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nCosa succede se lo distruggo e devo risarcire \\ne i miei genitori non hanno soldi per risarcire?\".\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nPer via della mia storia personale, pensavo questo.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nVidi la mia vita coronata da successo. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nAl liceo avemmo un altro club scolastico. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nCi vollero coinvolgere in una ricerca approfondita, \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\ncosì ne approfittai per usare Internet come fonte\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\nper ottenere più informazioni, e per la maggior parte delle informazioni che ottenni quando ero nel gruppo \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\n— il gruppo della fiera di matematica e scienze — \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\nmi basai molto su Wikipedia.<!--I don\\'t know how to translate the second part--> \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\n<!--I don\\'t know how to translate the first part-->Il nostro progetto andò bene a livello regionale. \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\nAndammo al livello nazionale. \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nUdii delle dicerie a scuola che dicevano: \"Non dovresti fidarti di Wikipedia, \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nperché Wikipedia non è una fonte attendibile per ottenere informazioni per la tua ricerca\"\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\ne fui molto sorpreso. \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nWikipedia è una fonte aperta dove tutti possono lanciare la loro idea \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\ne poi qualcun altro viene e la affina per renderla perfetta.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nEro passato, quindi dovevo andare all\\'università. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nLa maggior parte dei miei amici non arrivarono all\\'università. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\nPer via della mia storia personale, dovetti dire di no.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nDevo raggiungere di più per portare qualcosa a casa e aiutare i miei genitori.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nLe informazioni che ho appreso da Wikipedia mi hanno davvero fatto avanzare.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nRiuscii a passare, perché la maggior parte dei materiali che lessi, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\nla ricerca che ho fatto a scuola,\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\nli ottenni da Wikipedia.',\n", + " 'bytes': 3241,\n", + " 'sha1': 'mz5unixzecmiv94300io358sjen1kyf',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314898,\n", + " 'timestamp': '2012-12-19T18:33:09Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259327,\n", + " 'title': 'Oarabile Mudongo V1.webm.ml.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 എന്റെ അച്ഛനമ്മമാർക്ക് ഞങ്ങളുമായി പങ്കുവയ്ക്ക...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nഎന്റെ അച്ഛനമ്മമാർക്ക് ഞങ്ങളുമായി പങ്കുവയ്ക്കാനോ, ഞങ്ങൾക്ക് തരാനോ ഒന്നുമുണ്ടായിരുന്നില്ല.\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nഞങ്ങൾക്ക് ആഡംബര ഉപകരണങ്ങൾ വാങ്ങിത്തരാനുള്ള കെൽപ്പ് അവർക്കുണ്ടായിരുന്നില്ല, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nകാരണം ഞങ്ങളുടെ രാജ്യത്ത് അവയ്ക്ക് ഭീമമായ വിലയായിരുന്നു. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nഎന്റെ പേര് ഒറാബിൽ മുഡൊങ്കോ എന്നാണ്. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nഞാൻ ബോത്സ്വാനയിൽ നിന്നും വരുന്നു.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nഞങ്ങളുടെ വീട്ടിൽ കമ്പ്യൂട്ടറില്ല. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nനാട്ടുകാരാരും ഇതുവരെയും കമ്പ്യൂട്ടർ വാങ്ങിച്ചിട്ടുമില്ല. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nപട്ടണത്തിലെ ഒരു ഖനന കമ്പനി ഞങ്ങളുടെ സ്കൂളിലേക്ക് കമ്പ്യൂട്ടർ സംഭാവന ചെയ്തു.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nഅങ്ങനെയാണ് എനിക്ക് കമ്പ്യൂട്ടർ ഉപയോഗിക്കുന്നതിൽ ആസക്തി ഉണ്ടായത്.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nഅത് തൊട്ടുനോക്കാൻ എനിക്ക് പേടിയായിരുന്നു, കാരണം എന്റെ ആശങ്ക,\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nഞാൻ തൊട്ടാൽ അതു കേടുവന്നാലോ എന്നതായിരുന്നു.\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nഅതു കേടുവരുത്തിയാൽ അതിനുള്ള പണം ഞാൻ തിരിച്ചടയ്ക്കേണ്ടി വരും, \\nഎന്നാൽ അത്രയും പണം എന്റെ മാതാപിതാക്കൾക്ക് ഇല്ലായിരുന്നല്ലോ?\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nഎന്റെ സാമൂഹികസ്ഥിതി വച്ചു നോക്കുമ്പോൾ, ഈ ചിന്തയാണ് എന്റെ മനസിലേക്ക് ആദ്യം വന്നത്.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nഞാൻ സ്വന്തം വിജയം സങ്കൽപ്പിച്ചു. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nഹൈസ്കൂളിൽ ഞങ്ങൾക്കൊരു ക്ലബ്ബുണ്ടായിരുന്നു. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nക്ലബ്ബ് അംഗങ്ങൾ വളരെ ആഴത്തിലുള്ള ഗവേഷണങ്ങൾ നടത്തണമായിരുന്നു. \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nഞാൻ ഈ അവസരം പ്രയോജനപ്പെടുത്തി, ഇന്റർനെറ്റിനെ എന്റെ വിജ്ഞാനസ്രോതസ്സായി ഉപയോഗിച്ച്,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\nഅധികവിവരങ്ങൾ ലഭിക്കാനായി, ഇന്ന ഗ്രൂപ്പിൽ ചേർന്നപ്പോഴാണ് എനിക്ക് കൂടുതൽ വിവരങ്ങളും ലഭിച്ചിരുന്നത് - \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\nഗണിത, ശാസ്ത്ര ഗ്രൂപ്പ് - \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\nഞാൻ വിക്കിപീഡിയയെ വളരെയധികം ആശ്രയിച്ചു, നിങ്ങളോട് ഇതും പറയട്ടെ, \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nകിട്ടിയ വിവരങ്ങൾ വച്ച് ചെയ്ത ഞങ്ങളുടെ പ്രൊജക്റ്റ് പ്രാദേശിക മത്സരത്തിൽ നല്ല പ്രകടനം കാഴ്ചവച്ചു. \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\nഅങ്ങനെ ഞങ്ങൾക്ക് ദേശീയ മത്സരത്തിൽ പങ്കെടുക്കാനായി. \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nവിക്കിപീഡിയയെ പൂർണ്ണമായും വിശ്വസിക്കാൻ പാടില്ല എന്ന ഊഹാപോഹം ഞങ്ങളുടെ വിദ്യാലയത്തിൽ ഉണ്ടായിരുന്നു. \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nകാരണം വിക്കിപീഡിയ ഗവേഷണങ്ങൾക്കു വേണ്ട വിവരങ്ങൾ ലഭിക്കാനുള്ള ഒരു ആധികാരികമായ വിജ്ഞാന സ്രോതസ്സല്ലത്രെ.\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\nഎനിക്ക് വളരെയധികം അദ്ഭുതം തോന്നി. \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nഎല്ലാവർക്കും തങ്ങളുടെ ആശയങ്ങൾ ചേർക്കാൻ കഴിയുന്ന സ്വതന്ത്ര വിജ്ഞാനകോശമാണ് വിക്കിപീഡിയ. \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\nപിന്നീട് മറ്റൊരാൾ വന്ന് അത് മിനുക്കി ഗുണമേന്മ കൂടിയതാക്കുന്നു.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nഞാൻ പരീക്ഷയിൽ വിജയിച്ചു, ഉപരിപഠനത്തിനു ചേരുകയും ചെയ്തു. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nഎന്റെ ഭൂരിഭാഗം സുഹൃത്തുക്കൾക്കും ഉപരിപഠനത്തിനു ചേരാനായില്ല. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\nഎന്റെ സാമൂഹിക സ്ഥിതി വെച്ചു നോക്കുമ്പോൾ എനിക്കിത് വിശ്വസിക്കാനേ പറ്റുന്നില്ല.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nഎന്റെ മാതാപിതാക്കളെ സഹായിക്കാനും, വീട്ടിലേക്ക് സാധനങ്ങൾ വാങ്ങിക്കാനും എനിക്ക് ഇനിയും കൂടുതൽ കാര്യങ്ങൾ നേടേണ്ടതുണ്ട്.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nവിക്കിപീഡിയയിൽ നിന്ന് ഞാൻ അർജ്ജിച്ച വിജ്ഞാനം എന്നെ മുന്നോട്ടുള്ള യാത്രയിൽ ഒരുപാട് സഹായിച്ചിട്ടുണ്ട്.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nഎനിക്ക് പരീക്ഷയിൽ വിജയിക്കാൻ പറ്റിയെങ്കിൽ, അത് എന്റെ വായനാശീലം കൊണ്ടാണ്, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\nഞാൻ സ്കൂളിൽ നടത്തിയ ഗവേഷണങ്ങൾക്കു വേണ്ടി\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\nഞാൻ വായിച്ചത് വിക്കിപീഡിയയാണ്.',\n", + " 'bytes': 7603,\n", + " 'sha1': '1y6zz65q96365rsofmrjfd24vij85gd',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 219460683,\n", + " 'timestamp': '2016-11-25T18:19:14Z',\n", + " 'user': {'id': 2672346, 'text': 'Svensson1'},\n", + " 'page': {'id': 23259333,\n", + " 'title': 'Oarabile Mudongo V1.webm.pms.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1\\n00:00:00,797 --> 00:00:05,985\\nIj mè a l'avìo pa tant da condivide con noiàutr, o da dene.\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nChila a podìa pa, lor a podìo pa përmëttse ëd cateme coj dròlo oget, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\npërchè a costavo tant an nòst paìs. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nIm ciamo Oarabile Mudongo. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nI veno dal Botswana.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nI l'oma pa un calcolador a nòsta ca. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nGnun ëd noiàutr a l'ha mai avù un calcolador. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nNa società mineraria ant la sità - lor a l'han donà dij calcolador a nòsta scòla.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nA l'é stàit antlora che i l'heu ancaminà a dësvilupé l'anteresse a dovré ël calcolador.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nI l'avìa por ëd tochelo, it sas, përché i l'avìa pensà\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nParèj, i l'heu tocalo, còs se i lo ancasin-o?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nCòs se i lo rumpo, e i deuv paghelo \\ne i mè a l'han pa ëd sòld për paghelo?\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nDa mia part, i l'avìa sòn an mia ment.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nI penso d'avèj sucess ant la vita. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nNòi i l'oma sto àutr club a scòla ant le scòle superior. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nLor a vorìo che noi i fusso coinvòlt an pi arserche, an fasend arserche profonde, \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nparej i l'heu pijà un vantagi ëd lòn për dovré la Ragnà com mia sorziss,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\nper pijé pi anformassion, e la pi part dl'anformassion che i l'heu pijà quand i j'era an cola echip, \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\nl'echip Fera dla Mateca e dla Siensa \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\ni l'heu fàit afidament motobin dzor Wikipedia, e për condivide con voi, \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nl'anformassion ch'i l'heu pijà, nòst proget a l'ha andàit bin a livel regional. \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\nI l'oma avansà a livel nassional. \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nI l'heu sentì dle vos ultimament ant la scòla ch'a [diso] bin, it dovrìe pa fé afidament dzor Wikipedia, \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\npërché Wikipedia - a l'é pa na sorziss afidabla për pijé anformassion për toa arserca,\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\ne i son stàit motobin sorprèis, \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nWikipedia a l'é na sorziss duverta anté mincadun a peul anserì o buté soa ideja, \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\na peui cheidun àutr a riva e a travaja dzora a cola ideja për fela superba.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nI l'heu passà, parèj e deuv andé al tërsiari. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nVàire dij mè amis a faran pa ël tërsiari, \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\ne vardand a lòn da mia part, i deuvo dì nò nò nò.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nI veui fé ëd pi an manera da podèj porté quaicòs a ca, giuté ij mè.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nL'anformassion che i l'heu pijà da Wikipedia a l'ha pròpi fame andé anans.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nI l'heu travajà për passé, përchè la pi part dël material ch'i l'heu lesù, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\nl'arserca ch'i l'heu fàit a scòla,\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\ni l'heu pijalo mach sì da Wikipedia.\",\n", + " 'bytes': 3376,\n", + " 'sha1': 'mj4d4qy4de5tmlqw9c9im17sdbmpnak',\n", + " 'parent_id': 85314941,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314962,\n", + " 'timestamp': '2012-12-19T18:34:40Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259341,\n", + " 'title': 'Oarabile Mudongo V1.webm.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 Os meus pais não tinham muito para partilhar connosco, ou para nos dar... 2 00:00:07,250 --> 00:00:12,018 Ela não podia, eles...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nOs meus pais não tinham muito para partilhar connosco, ou para nos dar...\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nEla não podia, eles não podiam comprar-me todos aqueles brinquedos, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nporque são muito caros no nosso país. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nO meu nome é Oarabile Mudongo. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nVenho do Botswana.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nNós não tínhamos um computador em casa. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nNunca tivemos um computador nosso. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nUma empresa mineira da nossa zona - doaram computadores à nossa escola.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nFoi nessa altura que eu comecei a desenvolver o bichinho dos computadores.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nEu tinha medo de lhe tocar, porque passava pela minha cabeça...\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nBem, mexi-lhe, e se eu o estrago?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nE se eu o destruo, e tenho que o pagar \\ne os meus pais não têm dinheiro para o fazer?\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nNo fundo, era isto que me passava pela cabeça.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nVia-me a ser bem sucedido na vida. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nTínhamos outro clube na nossa escola. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nEles queriam que nos envolvêssemos mais na pesquisa, que fizessemos uma pesquisa mais profunda, \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\npara que aproveitássemos a vantagem de usar a Internet como fonte,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\npara obter mais informação, e muita da informação que eu tive quando eu estive nesses grupo - \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\n- o grupo da Feira da Matemática e Ciências - \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\neu apoiei-me muito na Wikipedia, e para vos ser sincero, \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\ncom essa informação, chegamos com o projecto ao nível regional. \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\nProgredimos para o nível nacional. \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nEu ouvi rumores na escola que diziam, não devíamos confiar na Wikipedia, \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nporque não era uma fonte segura para obter informação para as nossas pesquisas,\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\ne fiquei muito surpreendido. \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nWikipedia é uma fonte publica onde todos podemos opinar, ou incluir as nossas ideias \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\ne vem alguém que pega nela e a faz progredir até ficar soberba.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nEu progredi, e passei para o terciário. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nA maior parte dos meus amigos não chegaram ao terciário. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\nE fazendo uma retrospectiva, eu tenho que dizer não não não.\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nEu tenho que alcançar mais para que possa levar mais para casa, ajudar os meus pais.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nA informação que colhi da Wikipedia fizeram-me evoluir.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nEu consegui progredir, acima de tudo porque a maioria dos materiais que eu leio, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\nas pesqusas que fiz na escola,\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\neu consegui-as aqui, na Wikipedia.',\n", + " 'bytes': 3233,\n", + " 'sha1': 'glfzruvtncd6zl9abfv0a0au81015v4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85314992,\n", + " 'timestamp': '2012-12-19T18:35:07Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259347,\n", + " 'title': 'Oarabile Mudongo V1.webm.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 Мои родители немногим могли поделиться с нами или обеспечить нас. 2 00:0...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nМои родители немногим могли поделиться с нами или обеспечить нас.\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nОни были не в состоянии, им была недоступна покупка для меня этих привлекательных приспособлений, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nпотому что они дорогие в нашей стране. \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nМеня зовут Оарабил Мудонго. \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nЯ родом из Ботсваны.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nУ нас нет компьютера в доме. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nНикто из нас никогда не владел компьютером. \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nМинералодобывающая компания в нашем городке - она подарила компьютеры в нашу школу.\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nЭто тогда у меня начал развиваться интерес к пользованию компьютером.\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nМне страшно было прикоснуться к нему, потому что думалось\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nВот, я прикоснусь к нему, а что, если я его поврежу?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nА что, если я разрушу его и мне будет предстоять возмещать его стоимость \\nа у моих родителей нет денег выплатить за это?\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nИсходя из моего кругозора, это было в моей голове.\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nВы видите, я представлял, что добьюсь успеха в жизни. \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nУ нас в средней школе был этот дополнительный школьный клуб. \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nОни хотели, чтобы мы больше оказались вовлечены в исследование, проводя углублённое исследование, \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nпоэтому я воспользовался тем преимуществом, чтобы воспользоваться интернетом как моим источником,\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\nчтобы добыть больше информации, и большую часть информации я получил, когда был в той группе - \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\nгруппе математики и справедливой науки - \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\nЯ сильно полагался на Википедию, на то, чтобы поделиться с вами \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nтой информацией, которую добыл, наш проект был успешным на местном уровне. \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\nМы подвинулись до национального уровня. \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nУже в школе меня достигали слухи, которые гласили, что, мол, не следует доверять Википедии, \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nпотому, что Википедия, мол, - ненадёжный источник для того, чтобы получать информацию для вашего исследования,\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\nи я был очень удивлён. \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nВикипедия - это открытый источник, в который все могут внести вклад или подбросить его/её идею \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\nа позже кто-то ещё придёт и отполирует эту идею, сделав её великолепной.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nЯ прошёл, и потому должен был продвигаться до высшего образования. \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nБольшинству моих друзей высшее образование осталось недоступным. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\nи исходя из своего жизненного опыта, я должен сказать \"нет, нет, нет\".\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nМне нужно достичь больше, чтобы я смог что-нибудь принести домой, помочь моим родителям.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nТа информация, которую я почерпнул из Википедии, действительно продвинула меня вперёд.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nЯ умудрился выдержать испытания, потому что большинство материалов, которые я прочёл, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\nто исследование, которое я выполнил в школе,\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\nя получил прямо здесь, из Википедии.',\n", + " 'bytes': 5421,\n", + " 'sha1': 'ttggawi3zwojahy5mdw6wzp768lpttk',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315010,\n", + " 'timestamp': '2012-12-19T18:35:40Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259352,\n", + " 'title': 'Oarabile Mudongo V1.webm.uk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 Мої батьки не мали чим з нами поділитися й що нам дати 2 00:00:07,250 --> 00:00:12,0...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\nМої батьки не мали чим з нами поділитися й що нам дати\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\nВона не могла, вони не в змозі були купити мені ці модні пристрої, ці гаджети, \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\nбо вони в нашій країні досить дорогі \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\nМене звати Оарабіл Мудонго \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\nЯ з Ботсвани.\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\nУ нас вдома нема комп\\'ютера. \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\nНіхто з нас комп\\'ютера не має \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\nМісцева гірнича компанія подарувала комп\\'ютери в нашу школу\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\nІ тому я почав розвивати інтерес до використання комп\\'ютера\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\nСтрашно було торкатися до цього, знаєте, бо думалося\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\nщо як я торкнуся й зіпсую все?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\nщо як усе зруйную й потім доведеться вішкодовувати? \\nі мої батьки не матимуть грошей відшкодувати за це?\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\nтак думалося зогляду на мій життєвий досвід\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\nЯсказав(сказала) собі, що буду успішним (усішною) в житті \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\nУ нас був шкільний клуб у старшій школі \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\nВони хотіли аби ми більше були залучені до досліджень, роблячи більш глибокі дослідження \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\nто я використав (ла) перевагу використання інтернету як джерела\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\nщоби мати більше інформації, і більшість інформації була одержана протягом перебування в тій групі \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\nв групі з математики і правдивої науки \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\nя покладався на Вікіпедію й щоби поділитися з вами \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\nінформацією, яку одержав, наш проект це зробив добре на місцевому рівні \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\nМи досягли національного рівня \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\nВ школі кажуть, що ви не повинні довіряти Вікіпедії, \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\nбо Вікіпедія - ненадійне джерело інформації для вашого дослідження\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\nі це мене дуже здивувало \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\nВікіпедія - це відкрите джерело, де кожен може війти, або закинути свої ідеї \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\nі хтось іще прийде відполірувати цю ідею й зробити її довершеною.\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\nЯ це пройшов (пройшла) бо мушу прогресувати до вищої освіти \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\nБільшість моїх друзів не змогли досягти вищої освіти. \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\nі дивлячись на це, виходячи зі свого досвіду, мушу сказати \"ні, ні й ще раз ні\".\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\nЯ мушу досягти більшого, щоби змогти більше принести додому й допомогти своїм батькам.\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\nІнформація, яку вдалося вхопити в Вікіпедії реально просунула мене вперед.\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\nЯ переміг (перемогла), бо більшість матеріалів, мою прочитаних \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\nдосліджень, зроблених у школі\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\nмною було взято звідси, з Вікіпедії',\n", + " 'bytes': 4714,\n", + " 'sha1': '9nol6vbnkye5s92y2k5om12q65rw817',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315042,\n", + " 'timestamp': '2012-12-19T18:36:13Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259363,\n", + " 'title': 'Oarabile Mudongo V1.webm.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,797 --> 00:00:05,985 我父母没有什么太多的东西能分享或提供给我。 2 00:00:07,250 --> 00:00:12,018 她无力,他们无力给我...'\",\n", + " 'text': '1\\n00:00:00,797 --> 00:00:05,985\\n我父母没有什么太多的东西能分享或提供给我。\\n\\n2\\n00:00:07,250 --> 00:00:12,018\\n她无力,他们无力给我买那些花哨的小工具。 \\n\\n3\\n00:00:12,522 --> 00:00:15,045\\n因为在我们的国家这些东西价格高昂。 \\n\\n4\\n00:00:15,524 --> 00:00:18,149\\n我的名字叫,叫奥拉比莱·穆东戈。 \\n\\n5\\n00:00:18,154 --> 00:00:19,861\\n我来自博茨瓦纳。\\n\\n6\\n00:00:20,400 --> 00:00:22,068\\n我们家里没有计算机。 \\n\\n7\\n00:00:22,480 --> 00:00:26,076\\n我们从来没有人拥有过电脑 \\n\\n8\\n00:00:27,100 --> 00:00:34,146\\n我们镇上的一家矿业公司像我们的学校捐了一些电脑\\n\\n9\\n00:00:34,618 --> 00:00:39,873\\n然后我开始发展自己使用电脑的兴趣\\n\\n10\\n00:00:39,914 --> 00:00:43,588\\n我开始触碰电脑时很害怕,你知道\\n\\n11\\n00:00:44,849 --> 00:00:47,246\\n如果我把电脑弄坏了怎么办?\\n\\n12\\n00:00:47,923 --> 00:00:52,782\\n如果我把它弄坏了,我就得赔钱 \\n我父母可没有钱来赔电脑\\n\\n13\\n00:00:53,200 --> 00:00:55,943\\n从我的背景来看,我脑海里有这样的想法。\\n\\n14\\n00:00:57,947 --> 00:01:01,294\\n看,我看见自己人生成功。 \\n\\n15\\n00:01:01,870 --> 00:01:04,950\\n我们学校,高中有这个俱乐部。 \\n\\n16\\n00:01:04,953 --> 00:01:10,736\\n他们希望我们能够参与更多的研究,作深入的研究。 \\n\\n17\\n00:01:11,156 --> 00:01:17,513\\n所以,我利用了优势,用互联网作为我的来源。\\n\\n18\\n00:01:18,075 --> 00:01:26,917\\n获得更多的信息,大多数我得到的信息是我在那个小组的时候—— \\n\\n19\\n00:01:27,050 --> 00:01:28,661\\n数学和科学公平小组—— \\n\\n20\\n00:01:29,137 --> 00:01:33,604\\n我非常依赖维基百科,并与大家分享, \\n\\n21\\n00:01:33,604 --> 00:01:38,804\\n我得到的信息,我们的项目在地区级别很成功。 \\n\\n22\\n00:01:38,820 --> 00:01:40,390\\n我们一直进行到国家级别。 \\n\\n23\\n00:01:40,805 --> 00:01:45,920\\n我在学校听到谣言[说],嗯,你不应该信任维基百科。 \\n\\n24\\n00:01:46,331 --> 00:01:51,180\\n因为维基百科——它不是你做研究可信赖的信息来源。\\n\\n25\\n00:01:51,626 --> 00:01:54,930\\n我感到非常惊讶。 \\n\\n26\\n00:01:54,929 --> 00:02:01,400\\n维基百科是开源的,每个人都可以输入,或者扔进他或她的想法 \\n\\n27\\n00:02:01,400 --> 00:02:07,090\\n接着其他人会跟着完善这个想法,以至精湛。\\n\\n28\\n00:02:07,700 --> 00:02:10,230\\n我通过了,所以我得进展到高等教育。 \\n\\n29\\n00:02:10,660 --> 00:02:13,360\\n我的许多朋友都没能接受高等教育。 \\n\\n30\\n00:02:13,375 --> 00:02:18,580\\n从背景来看这个现象,我不得不说不不不。\\n\\n31\\n00:02:18,585 --> 00:02:23,16\\n我需要做的更多,以致我可以给家里带来点什么,帮助我的父母。\\n\\n32\\n00:02:23,612 --> 00:02:30,350\\n我从维基百科所了解到的信息真的让我向前迈进。\\n\\n33\\n00:02:31,370 --> 00:02:34,910\\n由于大多数我读过的资料,我成功的通过了, \\n\\n34\\n00:02:35,320 --> 00:02:37,150\\n我在学校完成的研究,\\n\\n35\\n00:02:37,711 --> 00:02:39,960\\n维基百科让我完成了这些。',\n", + " 'bytes': 3104,\n", + " 'sha1': '3d4hy79174m1tkdsew6tc2py4wt8cle',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315140,\n", + " 'timestamp': '2012-12-19T18:38:32Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259383,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.ar.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 أنا مدرس للغة الإنكليزية. أنا متزوج ولدي ابنة. 2 00:00:05,200 --> 00:00:13,587 أنا أع...'\",\n", + " 'text': '1\\n00:00:00,500 --> 00:00:04,497\\nأنا مدرس للغة الإنكليزية. أنا متزوج ولدي ابنة.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nأنا أعمل مثل أي شخص آخر. لدي جدول عمل. أذهب للعمل وأعود إلى البيت.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nكما أنه لدي احتياجات مثل أي شخص آخر، كما أريد أيضا أن أمضي وقت فراغي على ويكيبيديا.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nاسمي إرلان فيغا، وأنا من لا بيز، بوليفيا.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nأكتب حول أشياء متنوعة، معظمها أشياء آمنة مثل : الفراشات، الحشرات، والحيوانات.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nفي نظامي التعليمي، فإن الأشخاص عادة لا يكتبون. هم لا يكتبون، ولا ينشؤون.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nإنهم يتلقون المعلومات فقط، ويفترض عليهم أن يحفظوا تلك المعلومات ويمتحنون بها.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nويقومون بسؤالك عنها، وذلك ليس بالشيء الجيد. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nذلك يحصل في نهاية الفصل الدراسي، \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nيطلبون منك أن تكتب شيئا، مقالة، ورقة بحث، أو شيء ما، وتكون أنت في ورطة لأنها ستكون المرة الأولى الذي تقوم بذلك.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nإن منح شخص ما فرصة أن يكون مبدعا وأن يعترف بإنجازه لشيء ما هو شيء عظيم حقا. \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\nلقد كانت نقطة انعطاف في حياتي.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nبدأ كل شيء مع لحظة ذهابي إلى ويكاموس، قاموس ويكيبيديا، وذلك في أحد الأيام، \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\nوقابلت تلك الفتاة، Dabawdygirl. لقد كنا نصون الموقع من التخريب في ذلك الوقت. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nوقالت لي بأنها كانت تحاول الرد باللغة الإسبانية، وكانت لغتها الإسبانية ليست جيدة كثيرا في ذلك الوقت. \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nلذلك كان بيننا نوع من الاتفاق غير المكتوب : بان أعلمها أنا الإسبانية، وأن تعلمني هي اللغة الإنكليزية.\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nوقمنا بتصحيح الواحد للآخر، وتعلمنا اللغة عن طريق تحرير ويكاموس باللغتين الإنكليزية والإسبانية.\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nمن ناحيتي فإن لغتي الإنكليزية أصبحت جيدة جدا لأني قمت بالتدريب كل يوم.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nومع ذلك الوقت انتهيت في دراستي للغة الإنكليزية \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\nواجتزت امتحان ECP للقبول والذي كان من المتطلبات للمدرسين. وبمجرد أن أنهيت دراستي قاموا بتعييني فورا، \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nلأن علاماتي، على ما اظن، كان عالية وملائمة للتدريس.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nوبدؤوا ببعض التدريب، وأنا أعمل هناك منذ خمس سنوات الآن.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nوهذا شيء رائع، لأنه بسبب ذلك فأنا في وضع مستقر الأن، كما وأني تزوجت أيضا. لدي ابنة، ولذلك فإن ويكيبيديا هي حياتي.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nالمخرج : فيكتور غريغاس \\nمخرج مساعد : ديفيد غروسمان \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nالمنتج : زاك إكسيلي\\nمدير التصوير : بروت واي. ألين \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nتصوير فيديو : جاك هاريس، آدام بار، ماثيو ستورك \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nتصوير ثابت : أدم نوفاك، كارين ساير\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nمكياج : ميليسا كلاين\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nالمقابلات : ألما تشابا، جوناثان كوريل، ستيفين غير، دان ماك-سوين، كوري أوبرين، فرانك أوبرين، جاكوب ويلسون \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nمساعدو الإخراج : ميغان هيرنانديز، بريوني جونز، بياتريس سبرينغبورن \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nمساعدو الإخراج : توبي هيسناوير، كريستين ريغسبي\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nمساعدو الإخراج : توبي هيسناوير، كريستين ريغسبي\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nالكاتب : ديسيرينا بوكوفيتش\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nخدمات النصوص : كاتي أليو، ميشيل بياتيه، كارين كالير، بيترو ليغ، ميمي لي، جاك باستور، كريستي روبينسون، بريتاني تورنير، سوسان والينغ\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nالنص باللغة الإنكليزية : آلان كيلي فيرباتيم\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]',\n", + " 'bytes': 5488,\n", + " 'sha1': 'd3kmauoqir3zfl0rl5s50d6q4dqydxq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315171,\n", + " 'timestamp': '2012-12-19T18:39:07Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259386,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.da.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 Jeg er engelsklærer. Jeg er gift. Jeg har en datter. 2 00:00:05,200 --> 00:00:13,587 Og jeg arbejder ret meget som andre gør....'\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:04,497\\nJeg er engelsklærer. Jeg er gift. Jeg har en datter.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nOg jeg arbejder ret meget som andre gør. Jeg har et skema. Jeg tager på arbejde. Jeg tager hjem.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nOg jeg har behov som alle andre, og jeg ønsker også at bruge min frie tid på wikipedia.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nJeg er Erlan Vega. Jeg er fra La Paz, Bolivia.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nJeg skriver om forskellige ting, for det meste sikre ting: sommerfugle, insekter, dyr.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nI mit uddannelsessystem skriver folk almindeligvis ikke. De skriver ikke. De skaber ikke.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nDe modtager bare information, og de forventes at huske det, og så skal de til eksamen.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nOg de spørger én om det, men det er ikke godt. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nDet er sådan, når de beder dig ved afslutningen af et forløb \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nom at skrive noget, en artikel, en afhandling eller lignende, så er man virkelig i vanskeligheder, for man har aldrig gjort det [før].\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nOg når man giver en person mulighed for at være kreativ og at få anerkendelse for noget, som de skriver, er det virkelig -- \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\ndet har været et vendepunkt i mit liv.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nAlting begyndte, da jeg en dag gik til wiktionary, wikipedias ordbog, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\nog jeg mødte den her pige, Dabawdygirl //. Vi bekæmpede en vandal på det tidspunkt. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nOg hun sagde -- hun prøvede at svare på spansk, og jeg ved at hendes spansk var noget usikkert på det tidspunkt, \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nså vi lavede en slags uskreven aftale: Jeg lærer dig spansk, og du lærer mig engelsk.\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nOg vi rettede hinanden, og vi lærte sproget ved at redigere på engelsk og på spansk wiktionary\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nOg til slut blev mit engelsk så meget bedre, fordi jeg øvede mig hver dag.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nSå da jeg afsluttede mine engelskstudier \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\nbestod jeg ECP adgangsprøven, som er et krav til lærere, netop som jeg sluttede mine studier, og de ansatte mig lige på stedet, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nfordi mine resultater var gode nok til at undervise, vil jeg tro.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nOg så indledte de noget træning, og jeg har arbejdet der i fem år nu.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nDet er forbavsende, at på grund af det har jeg fået ro til at blive gift. Jeg har en datter, så wikipedia har ændret mit liv.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nInstruktør: Victor Grigas \\nMedinstruktør: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nProducent: Zack Exley\\nFotografisk leder: Pruitt Y. Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nVideo fotografer: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nPortrætfotografer: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nMakeup: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nInterviewere: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nProduktionskoordinatorer: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nProduktionsassistenter: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nProduktionsassistenter: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nSkribent: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nTranskriptionstjenester: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nEngelske faste overskrifter: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 4027,\n", + " 'sha1': 'nc8w5cwz1xv21ttx60a4bhun3cl8oqh',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315193,\n", + " 'timestamp': '2012-12-19T18:39:30Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259397,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 Ich bin Englischlehrer. Ich bin verheiratet. Ich habe eine Tochter. 2 00:00:05,200 --> 00:00:13,587 Und ich arbeite in etwa wie...'\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:04,497\\nIch bin Englischlehrer. Ich bin verheiratet. Ich habe eine Tochter.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nUnd ich arbeite in etwa wie jeder andere. Ich habe einen Zeitplan. Ich gehe zur Arbeit und ich gehe zurück.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nUnd ich habe Bedürfnisse wie jeder andere und ich möchte auch meine Freizeit auf Wikipedia verbringen.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nIch bin Erlan Vega. Ich komme aus La Paz in Bolivien.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nIch schreibe über verschiedene Dinge, zumeist ungefährliche Sachen: Schmetterlinge, Insekten, Tiere.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nIn meinem Bildungswesen schreiben die Leute normalerweise nicht. Sie schreiben nicht. Sie erstellen nicht.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nSie erhalten nur Informationen und sollen diese dann speichern, danach werden sie abgefragt.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nUnd dann fragen sie einen darüber und das ist so nicht in Ordnung. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nEs ist, als wenn Du am Ende eines Kurses \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\ngebeten wirst, etwas zu schreiben, einen Artikel, eine Abhandlung oder etwas ähnliches und man sich dann in einer komischen Situation befindet, weil man es bisher noch nie gemacht hat.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nEiner Person die Möglichkeit zu geben kreativ zu sein und bemerkt zu werden durch etwas das sie Verfassen ist wirklich -- \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\ndas war ein echter Wendepunkt in meinem Leben.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nAlles begann als ich eines Tages Wiktionary besuchte, das Wörterbuch der Wikipedia, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\nund ich dort dieses Mädchen traf, Dabawdygirl //. Wir führten zu dieser Zeit einen Vandalismus. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nUnd sie sagte -- sie versuchte auf Spanisch zu antworten und ich weiß dass ihr Spanisch zu dieser Zeit etwas unsicher war, \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\ndaher schlossen wir etwas wie einen ungeschriebenen Vertrag: Ich lehre dir Spanisch und die lehrst mich Englisch.\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nUnd wir korrigierten einander und wir lernten die Sprache durch die Mitarbeit in Wiktionary in Englisch und Spanisch.\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nUnd schlussendlich wurde mein Englisch besser, weil ich es jeden Tag übte.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nDann schloss ich meine Englischstudien ab. \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\nIch legte den ECP Eingangstest ab, der eine Voraussetzung für Lehrer ist, gerade als ich meine Studien beendete, und man stellte mich umgehend ein, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nweil meine Punktzahlen hoch genug waren, denke ich, um zu unterrichten.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nDann begannen sie mit einigen Übungen und ich arbeite dort seit mittlerweile fünf Jahren.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nDas ist toll, da ich dadurch standfest geworden bin, ich heiratete. Ich habe eine Tochter, Wikipedia hat also mein Leben verändert.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nRegisseur: Victor Grigas \\nRegisseurassistent: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nProduzent: Zack Exley\\nAufnahmeleiter: Pruitt Y. Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nKameramänner: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nPortraitfotografen: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nMakeup: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nInterviewer: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nProduktionskoordinatoren: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nProduktionsassistenten: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nProduktionsassistenten: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nVerfasser: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nTranskription-Service: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nEnglische Untertitel: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 4270,\n", + " 'sha1': 'k51nyd66c090z0m5p1p0e0ya9ggslji',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315227,\n", + " 'timestamp': '2012-12-19T18:40:23Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259406,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '<languages/> 1 00:00:00,500 --> 00:00:04,497 Yo soy un profesor de inglés. Estoy casado. Y tengo una hija. 2 00:00:05,200 --> 00:00:13,587 Lo cierto es que tr...'\",\n", + " 'text': \"<languages/>\\n1\\n00:00:00,500 --> 00:00:04,497\\nYo soy un profesor de inglés. Estoy casado. Y tengo una hija.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nLo cierto es que trabajo como los demás. Tengo\\nun horario. Voy al trabajo. Y regreso.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nTengo necesidades como los demás, y también\\nquiero usar mi tiempo libre en Wikipedia.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nMi nombre es Erlan Vega. Soy de La Paz, Bolivia.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nEscribo sobre cosas diferentes, la mayoría de las veces sobre cosas seguras: mariposas, insectos, animales.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nEn mi sistema educacional, la gente comunemente no escribe. Ellos no escriben. Ellos no crean.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nEllos solo reciben información, que supuestamente deben\\nmemorizar y luego tienen una prueba.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nLuego te preguntan sobre ello, pero no es una cosa buena. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nEs como cuando al final de un curso, \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nte piden que escribas algo, un artículo, un ensayo, o algo,\\ny estás realmente en problemas porque nunca lo has hecho antes.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nY darle la oportunidad a una persona de ser creativa y de\\nser reconocido por algo que escriben es realmente -- \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\nrealmente ha sido un vuelco en mi vida.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nTodo comenzó cuando un día entré al Wikcionario, el diccionario de Wikipedia, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\ny encontré a esta niña, Dabawdygirl //. Estábamos\\npeleando contra un vándalo esa vez. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nY me dijo -- ella trató de contestarme en español, y yo\\nme pude dar cuenta de que su español era un poco débil en ese entonces, \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nasí es que hicimos una suerte de acuerdo tácito: Yo\\nte enseño español, y tu me enseñas inglés.\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nY nos corregimos mutuamente, y aprendimos el idioma\\neditanto en el Wikcionario en inglés, y en español.\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nY al final mi inglés se volvió mucho mejor, porque practicaba todos los días.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nEntonces, para cuando finalicé mis estudios de inglés. \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\nYo pasé la prueba de admisión ECP, la cual es un requerimiento para profesores\\nque han finalizado sus estudios, y me contrataron inmediatamente, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nporque mi puntaje, creo, era lo suficientemente alto como para enseñar.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nY luego comencé un entrenamiento, y he\\nestado trabajando ahí por cinco años.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nEs sorprendente porque por eso tengo estabilidad, me casé.\\nTengo una hija, así es que Wikipedia ha cambiado mi vida.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nDirector: Victor Grigas \\nAsistente de dirección: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nProductor: Zack Exley\\nDirector de fotografía: Pruitt Y. Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nFotógrafos de Vídeos: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nFotógrafos de Retratos: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nMaquillaje: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nEntrevistadores: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nCoordinadores de Producción: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nAsistentes de Producción: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nAsistente de Producción: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nEscritos: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nServicios de transcripción: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nSubtítulos en inglés: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 4150,\n", + " 'sha1': 'iwizq85o83adx52bobssle1ekwivycc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315259,\n", + " 'timestamp': '2012-12-19T18:41:05Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259416,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.id.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 Saya adalah guru Bahasa Inggris. Saya telah menikah. Saya memiliki seorang anak perempuan. 2 00:00:05,200 --> 00:00:13,587 Dan ...'\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:04,497\\nSaya adalah guru Bahasa Inggris. Saya telah menikah. Saya memiliki seorang anak perempuan.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nDan saya bekerja, sama seperti orang lain. Saya memiliki\\njadwal. Saya pergi bekerja. Saya pulang.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nDan saya memiliki kebutuhan seperti setiap orang lainnya, dan saya\\njuga ingin menghabiskan waktu luang saya di Wikipedia.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nSaya adalah Erlan Vega. Saya berasal dari La Paz, Bolivia.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nSaya menulis tentang hal-hal berbeda, kebanyakan hal-hal yang aman:\\nkupu-kupu, serangga, hewan.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nDalam sistem pendidikan saya, orang tidak biasanya menulis.\\nMereka tidak menulis. Mereka tidak menciptakan.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nMereka baru menerima informasi, dan mereka harus\\nmengingatnya, lalu mereka menjalani ujian.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nMereka bertanya kepadamu tentang hal itu meski tidak baik. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nRasanya seperti ketika di akhir kursus, \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nmereka memintamu menulis sesuatu, sebuah artikel, karya, atau sesuatu\\ndan kamu benar-benar bermasalah karena belum pernah melakukannya.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nMemberikan seseorang kesempatan menjadi kreatif dan\\ndiakui atas sesuatu yang mereka tulis itu rasanya -- \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\nbenar-benar menjadi titik balik kehidupan saya.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nSemua berawal ketika saya membuka Wiktionary, kamusnya Wikipedia, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\ndan saya bertemu gadis ini, Dabawdygirl //. Kami\\nsaat itu sedang bertengkar dengan seorang vandal \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nDan dia berkata -- dia mencoba membalas dalam bahasa Spanyol,\\ndan saya tahu bahasa Spanyolnya masih kurang lancar, \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\njadi kami membuat persetujuan: Aku ajari\\nkamu bahasa Spanyol, dan kamu ajari aku bahasa Inggris\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nKami saling memperbaiki, dan kami belajar bahasa dengan\\nmenyunting di Wiktionary dalam bahasa Inggris dan Spanyol.\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nAkhirnya bahasa Inggris saya semakin baik, karena saya mempraktikannya setiap hari.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nKemudian, setelah saya menyelesaikan studi bahasa Inggris \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\nsaya lulus ujian masuk ECP yang menjadi persyaratan guru setelah\\nmenyelesaikan studi, dan mereka langsung mempekerjakan saya, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nkarena skor saya tampaknya cukup tinggi agar bisa mengajar.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nMereka memulai sejenis pelatihan, dan saya sudah\\nbekerja di sana selama lima tahun.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nAjaib sekali karena satu hal saya punya kemampuan. Saya sudah menikah dan\\ndikaruniai seorang putri. Wikipedia telah mengubah hidup saya.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nSutradara: Victor Grigas \\nKo-sutradara: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nProduser: Zack Exley\\nPengarah Fotografi: Pruitt Y. Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nFotografer Video: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nFotografer Potret: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nTata Rias: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nPewawancara: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nKoordinator Produksi: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nAsisten Produksi: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nAsisten Produksi: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nPenulis: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nTranskripsi: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nSubtitel Inggris: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 4125,\n", + " 'sha1': '1vvz9hj5yibr1j37ogut0ju7hungjdk',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315299,\n", + " 'timestamp': '2012-12-19T18:42:06Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259422,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.nb.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 Jeg er en engelsklærer. Jeg er gift. Jeg har en datter. 2 00:00:05,200 --> 00:00:13,587 Og, stort sett jobber jeg som alle and...'\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:04,497\\nJeg er en engelsklærer. Jeg er gift. Jeg har en datter.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nOg, stort sett jobber jeg som alle andre. Jeg har en timeplan. Jeg drar på jobb. Jeg drar hjem igjen.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nOg jeg har behov som alle andre, og jeg ønsker også å bruke min fritid på Wikipedia.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nJeg er Erlan Vega. Jeg er fra La Paz i Bolivia.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nJeg skriver om ulike ting. For det meste trygge ting: sommerfugler, insekter, dyr.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nFolk i mitt utdanningssystem skriver stort sett ikke. De skriver ikke. De skaper ikke.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nDe mottar bare informasjon, og det kreves at de husker det for så å ta en test.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nOg så spør de deg om det, ja, det er ingen god ting. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nNår de kommer til slutten av kurset \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nspør de deg om å skrive noe, en artikkel, en oppgave eller noe annet og da er du virkelig i trøbbel fordi du har aldri gjort det før.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nOg det å gi en person muligheten til å være kreativ, og gi dem muligheten til å bli lagt merke til for noe de skriver er virkelig... \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\ndet har vært et vendepunkt i mitt liv.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nAlt begynte da jeg gikk inn på Wiktionary en dag, en ordbok for Wikipedia, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\nog der møtte jeg denne jenta, Dabawdygirl //. Vi jobbet mot en vandal på det tidspunktet. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nOg hun sa... hun forsøkte på spansk, og jeg visste at hennes spansk var litt begrenset på det tidspunktet \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nså vi satte opp en uskreven avtale: Jeg lærer henne spansk, og hun lærer meg engelsk.\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nOg vi rettet på hverandre, og vi lærte språket ved å redigere på Wiktionary på engelsk og på spansk.\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nTil slutt var min engelsk blitt mye bedre, fordi jeg øvde hver eneste dag.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nSå, innen jeg hadde fullført mine studier på engelsk \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\nbestod jeg en test som er påkrevet for lærere idet jeg fullførte studiene, og så ansatte de meg direkte \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nfordi min score, tydeligvis var god nok til å være lærer.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nDe begynte noe opplæring, og jeg har nå jobbet der i fem år.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nDet er utrolig fordi, grunnet dette har stabilitet. Jeg giftet meg. Jeg har en datter, så ja, Wikipedia har endret mitt liv.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nRegissør: Victor Grigas \\nMedregissør: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nProdusent: Zack Exley\\nLeder for filmfotografi: Pruitt Y. Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nFilmfotografer: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nBildefotografer: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nSminke: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nIntervjuere: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nProduksjonskoordinator: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nProduksjonsassistenter: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nProduksjonsassistenter: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nForfatter: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nOversettelse: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nEngelsk undertekst: Alan Kelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 3969,\n", + " 'sha1': '8mgo349rfhcvcir7nrqbnpvajakzqmd',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315332,\n", + " 'timestamp': '2012-12-19T18:42:40Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259429,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.pms.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 I son un magister anglèis. I son marià. I l'heu na fija. 2 00:00:05,200 --> 00:00:13,587 E pi o men i travajo com tùit j'aut...'\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:04,497\\nI son un magister anglèis. I son marià. I l'heu na fija.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nE pi o men i travajo com tùit j'autr. I l'heu dij temp. I von al travaj. I torno.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nE i l'heu djë bzògn con tùit j'autr, e i veuj ëdcò passé mè temp lìber dzora Wikipedia.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nI son Erlan Vega. I son ëd La Paz, Bolivia.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nI scrivo a propòdit ëd ròbe diferente, ròbe dzortut sigure: parpajon, inset, animaj.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nAn mè sistem d'educassion, la gent a scriv pa ëd sòlit. A scrivo pa. A creo pa.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nLor a arseivo mach d'anformassion, as pensa che lor a la memoriso e peui a l'han la preuva.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nE lor at ciamo a propòsit ëd lòn, ëdcò s'a l'é pa na ròba bon-a. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nA l'é com quand a la fin dël cors, \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nat ciamo dë scrive quaicòs, n'artìcol, na pagina, o quaicòs e ti i t ses ant ij pastiss përché it l'hai mai falo.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nE dé a na përson-a l'oportunità d'esse creativ e d'esse arconossù për quaicòs ch'a l'ha scrivù a l'é pròpi -- \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\na l'é stàit pròpi un moment ëd cambi an mia vita.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nTut a l'é ancaminà quand un di i son vnù an sël Wiktionay, ël dissionari ëd Wikipedia, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\ne i l'heu aconossù sta fija, Dabawdygirl //. I stasìo combatend un vàndal col moment. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nE chila a l'ha dit -- chila a l'ha provà a arsponde an Spagneul, e mi i seu che sò Spagneul a l'era un pòch tërmolant antlora, \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nparej i l'oma fàit na specie d'acòrdi pa scrivù: mi i t mosto Spagneul, e ti it im moste Anglèis.\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nE i l'oma coregiù tut d'autr, e i l'oma amparà la lenga an modificand dzora Wiktionary an Anglèis, e an Spagneul.\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nE a la fin mè Anglèis a l'heu vnù motobin mej, përché i l'heu praticalo mincadì.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nPeui, quand i l'heu finì ij mè studi an Anglèis, \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\ni l'heu passà la preuva d'amission ECP che a l'é un requisì për magìster mach quand i l'heu finì mè studi, e parej a l'han pijame pròpi sì, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\npërchè mè vot, i chërdo, a l'ero bastansa àut për mosté.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nE a l'han ancaminà d'adestrament, e i l'heu travajà lì për sinch agn adess.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nI son content përchè con lòn i l'heu na stabilità, i son mariame.\\nI l'heu na fija, parej Wikipedia a l'ha cangià mia vita.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nDiretor: Victor Grigas \\nCondiretor: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nProdutor: Zack Exley\\nDiretor ëd la Fotograpìa: Pruitt Y. Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nVideo Fotografìa: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nRitrat Fotografìa: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nTrucatris: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nAntervistador: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nCoordinator ëd Produssion: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nAssistent ëd Produssion: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nAssistent ëd Produssion: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nScritor: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nSërvissi ëd Trascrission: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nAnglèis S-ciass-Sot-tìtoj: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 4129,\n", + " 'sha1': 'gxc3pods6no1eixe56sxxgz2facjgo3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315359,\n", + " 'timestamp': '2012-12-19T18:43:09Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259433,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 Sou um professor de Inglês. Sou casado. Tenho uma filha. 2 00:00:05,200 --> 00:00:13,587 E como muitos outros trabalho. Tenho ...'\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:04,497\\nSou um professor de Inglês. Sou casado. Tenho uma filha.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nE como muitos outros trabalho. Tenho um horário.\\nVou trabalhar. Volto para casa.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nE tenho necessidades como todos os outros, e eu\\ntambém quero passar o meu tempo livre na Wikipedia\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nChamo-me Erlan Vega. Sou de La Paz, Bolívia.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nEu escrevo sobre diferentes coisas, nomeadamente assuntos seguros: borboletas, insectos, animais.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nNo meu sistema educativo, as pessoas normalmente não escrevem. Elas não escrevem. Elas não criam.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nElas simplesmente recebem informação, e é suposto que a\\nmemorizem, e é então que têm o teste.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nE perguntam sobre o teste, mas no entanto não é bom. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nÉ como quando estamos no final do curso, \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\npedem-nos para escrever algo, um artigo, um papel, ou algo assim\\ne é complicado, porque nunca o fizemos.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nE dar a uma pessoa a oportunidade de ser criativa e ser \\nreconhecida por algo que ela escreve é mesmo -- \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\nfoi realmente um ponto de mudança da minha vida.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nTudo começou quando fui um dia ao Wikitionary, o dicionário da Wikipedia, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\ne encontrei esta rapariga, Dabawdygirl //. Nós combatíamos um vândalo nessa altura. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nE ela disse -- ela tentou responder em Espanhol, e eu sabia que\\nEspanhol dela era um bocado tremido nessa altura, \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nentão fizemos uma espécie de acordo verbal: Eu\\nensino-te Espanhol, e tu ensinas-me Inglês.\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nE corrigiamo-nos um ao outro, e aprendemos a linguagem \\nao editar no Wiktionary em Inglês, e em Espanhol\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nE no final o meu Inglês melhorou bastante, porque eu \\npraticava todos os dias.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nEntão, quando eu acabei os meus estudo em Inglês \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\npassei no meu teste de admissão que é um requisito para professores quando\\nterminei os meus estudos, e fui imediatamente contratado, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\ndevido às minhas pontuações, suponho, que eram altas o suficiente para ensinar.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nE deram-me alguma formação, e tenho\\ntrabalhado lá já há cinco anos.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nÉ incrível porque por causa disso eu tenho estabilidade, casei-me.\\nTenho uma filha, por isso a Wikipedia mudou a minha vida.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nRealizador: Victor Grigas \\nCorealizador: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nProdutor: Zack Exley\\nDirector de Fotografia: Pruitt Y. Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nVideo Fotógrafos: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nFotógrafos: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nMaquilhagem: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nEntrevistadores: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nCoordenadores de Produção: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nAssistentes de Produção: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nAssistentes de Produção: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nArgumento: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nServiços de Transcrição: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nLegendas em Inglês: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 4053,\n", + " 'sha1': 'ff1gmk78mhhgrpzdit05u8hxytmuvma',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315396,\n", + " 'timestamp': '2012-12-19T18:43:48Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259441,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 Я преподаю английский язык. Женат. У меня есть дочь. 2 00:00:05,200 --> 00:00:13,587 ...'\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:04,497\\nЯ преподаю английский язык. Женат. У меня есть дочь.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nВ значительной степени я работаю как каждый из нас. У меня есть распорядок дня. Я хожу на работу. Я возвращаюсь.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nУ меня есть нужды, как у каждого другого. Я также хочу тратить своё свободное время на Википедию.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nЯ Эрлан Вега (Erlan Vega). Я из города Ла Паз, что в Боливии.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nЯ пишу о разных предметах, в основном о безопасных вещах: бабочках, насекомых и животных.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nВ моей системе обучения люди обычно не пишут. Они не пишут. Они не творят.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nОни только получают информацию, предполагается, что они её запоминают, а затем у них контрольная проверка.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nИ они спрашивают меня об этом, хотя это непохвальная вещь. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nЭто выглядит как, когда в конце курса обучения, \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nони просят вас что-нибудь написать, статью, работу или что-то подобное и вы попадаете в затруднение, потому что вы никогда не делали этого.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nПредоставление человеку возможности быть креативным, признаваемым за что-то, что они пишут, - действительно -- \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\nэто стало поворотным моментом в моей жизни.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nВсё началось, когда в один день я обратился в Викисловарю, словарю в Википедии, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\nи встретил эту девушку, Dabawdygirl //. В то время мы боролись с одним вандалом. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nИ она сказала -- она пыталась ответить на испанском, и я знал, что в то время её испаниский был немного небезупречным, \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nпоэтому мы вроде как заключили неписанное соглашение: я учу её испанскому, а она учит меня английскому.\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nМы исправляли друг друга и учили язык путём редактирования на английском и испанском.\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nВ итоге мой английский стал настолько хорошим, потому что я упражнялся ежедневно.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nНаконец, к тому времени, когда я закончил моё обучение английскому \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\nя выдержал тест приёма на работу ECP, который требуется для учителей, сразу после окончания обучения, и в итоге они приняли меня на работу прямо там, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nпотому что мои баллы, я полагаю, были достаточно высокими для преподавания.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nИ они начали небольшую подготовку, на сегодня я здесь работаю уже пять лет.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nЭто удивительно, потому что я получил стабильность, я женился. У меня дочь, так что Википедия изменила мне жизнь.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nДиректор: Victor Grigas \\nСовместный директор: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nПродюсер: Zack Exley\\nДиректор съёмок: Pruitt Y. Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nВидеооператоры: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nФотографы портретов: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nГрим: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nБрали интервью: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nКоординаторы производства: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nПомощники производства: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nПомощники производства: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nАвтор текста: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nУслуги транскрипции: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nСубтитры на английском: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 5920,\n", + " 'sha1': 'mp28not55r4xea43aep4tsoxppcpnej',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315431,\n", + " 'timestamp': '2012-12-19T18:44:37Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259449,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 Jag är en engelsklärare. Jag är gift. Jag har en dotter. 2 00:00:05,200 --> 00:00:13,587 Jag jbobar ungefär på samma sätt...'\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:04,497\\nJag är en engelsklärare. Jag är gift. Jag har en dotter.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nJag jbobar ungefär på samma sätt som alla andra. Jag har\\nett schema. Jag åker på jobbet. Jag åker hem igen.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nOch jag har behov som alla andra, och jag vill också\\nspendera fritid på Wikipedia.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nJag heter Erlan Vega. Jag bor i La Paz, Bolivia.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nJag skriver om olika saker, mestadels ofarliga saker: fjärilar, insekter, djur.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nI vårt skolsystem är det ovanligt att folk skriver. De skriver inte. De skapar inte.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nDe mottar bara information, och de måste \\nkunna det utantill och sedan har de ett prov.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nOch de frågar dig om det, men det är inte bra. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nDet är som om i slutet på klassen, \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nber de dig skriva något, en artikel, en uppsats eller något\\noch du ligger riktigt illa till för du har aldrig gjort det förut.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nOch att ge en människa möjligheten att vara kreativ och att\\nerkännas för något de skriver är verkligen -- \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\ndet har varit en vändpunkt i mitt liv.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nAlltihop började när jag besökte Wiktionary, Wikipedias ordbok en dag, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\noch jag träffade den här flickan, Dbawdygirl //. Vi\\nslogs mot en vandal då. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nOch hon sade -- hon försökte svara på spanska, och\\njag vet att henne spanska var darrig då, \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nså vi gjorde en kontraktslös deal: jag\\nlär dig spanska och du lär mig engelska.\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nVi rättade varandra, och vi lärde oss språket\\ngenom att redigera Wiktionary på engelska, och på spanska.\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nOch mot slutet blev min engelska så mycket bättre, för jag övade varje dag.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nSedan, när jag avslutat mina studier i engelska \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\nklarade jag ECP testet som är ett krav för lärare precis när jag\\navslutade min studier, och de anställde mig på stället, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nför att mina poäng var höga nog att arbeta som lärare.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nOch de började en utbildning, och jag har\\njobbat där i fem år nu.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nDet är fantastiskt för tack vare det har jag stabilitet, och jag gifte mig.\\nJag har en dotter, så Wikipedia förändrade mitt liv.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nRegi: Victor Grigas \\noch David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nProducent: Zack Exley\\nFilmfotograf: Pruitt Y. Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nVideografi: Jack Harris, Adam Parr, Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nPorträttfotografi: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nSmink: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nIntervjuare: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan \\nMcSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nProduktionskoordination: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nProduktionsassistenter: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nProduktionsassistenter: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nManusförfattare: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nTransktription: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nEngelsk textning: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 3926,\n", + " 'sha1': '8tydzhn26w1s4y8hro8355eklj1p7rn',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315473,\n", + " 'timestamp': '2012-12-19T18:45:26Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259460,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.vi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 Tôi là một giáo viên Anh văn. Tôi đã kết hôn và có một người con gái 2 00:00:05,200 --> 00:00:13,587 Tôi ...'\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:04,497\\nTôi là một giáo viên Anh văn. Tôi đã kết hôn và có một người con gái\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nTôi cũng đi làm như tất cả mọi người. Tôi có lịch trình, tôi đi làm, tôi về nhà.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nTôi cũng có nhu cầu như mọi người khác, và tôi cũng muốn dành một chút thời gian của mình vào Wikipedia\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nTôi tên Erlan Vega và tôi đến từ La Paz, Bolivia\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nTôi viết về những thứ khác nhau, hầu hết là về các loài bướm, côn trùng, động vật.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nTrong hệ thống giáo dục của tôi, mọi người thường không viết. Họ không viết, và họ cũng không tạo một thứ gì cả.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nMọi người chỉ tiếp nhận thông tin, và họ phải ghi nhớ nó và họ làm kiểm tra.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nRồi họ hỏi bạn về điều đó, nhưng đó cũng không phải là một điều tốt lành. \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nCho đến gần hết khóa học, \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nhọ yêu cầu bạn phải viết về một điều gì đó, một bài viết, một bài báo, hay một thứ gì đó và bạn thực sự gặp rắc rối vì bạn chưa bao giờ làm điều này\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nCho một người cơ hội để có thể sáng tạo và được công nhận vì những gì họ viết là một điều -- \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\nvà nó đã là một bước ngoặt trong cuộc đời tôi\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nCâu chuyện bắt đầu khi một ngày nọ, tôi vào Wikitionary, từ điển Wikipedia, \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\nrồi tôi gặp một cô gái, Dabawdygirl //. Lúc đó, chúng tôi đã có một cuộc tranh luận. \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nVà cô ấy nói -- cô ấy cố gắng để trả lời bằng tiếng Tây Ban Nha, và tôi biết rằng tiếng Tây Ban Nha của cô ấy hơi lỏng lẻo \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nvà vì vậy nên chúng tôi làm một thỏa thuận không lời: Tôi giúp cô ấy tiếng Tây Ban Nha, và cô ấy giúp tôi tiếng Anh\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nRồi chúng tôi chỉnh sửa cho nhau, và chúng tôi học các ngôn ngữ ấy bằng cách sửa ở Wikitionary bằng tiếng Anh và tiếng Tây Ban Nha\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nVà kết cuộc tôi đã tốt hơn về tiếng Anh, vì tôi luôn rèn luyện mỗi ngày\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nCùng lúc đó, tôi chấm dứt việc học tập tiếng Anh \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\nTôi đạt kì kiểm tra ECP, vốn là một yêu cầu cho giáo viên ngay khi tôi vừa kết thúc việc học, sau đó họ cho tôi vào làm, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nvì số điểm của tôi, theo tôi nghĩ, vừa đủ để có thể đi dạy\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nRồi họ bắt đầu một số cuộc tập huấn, và từ đó đến nay tôi đã làm việc được năm năm.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nĐiều ấy thật tuyệt vời vì nhờ vào đó, tôi đã có sự ổn định, và bây giờ tôi đã kết hôn và có một người con gái, vậy nên Wikipedia đã thay đổi cuộc đời tôi.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nĐạo diễn: Victor Grigas \\nĐạo diễn: David Grossman \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nNhà sản xụất: Zack Exley\\nĐạo diễn hình ảnh: Pruitt Y.Allen \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nNhiếp ảnh gia về hình ảnh: Jack Harris, Adam Parr và Matthew Storck \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nNhiếp ảnh gia về chân dung: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nTrang điểm: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nNgười phỏng vấn: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nĐiều phối viên về sản xuất: Megan Hernadez, Bryony Jones, Beatrice Springborn \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nTrợ lý sản xuất: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nTrợ lý sản xuất: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nNgười viết: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nDịch vụ chuyển dịch: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\nLi, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nPhụ đề tiếng Anh: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]\",\n", + " 'bytes': 4889,\n", + " 'sha1': 'c4g98ptdbo9uxf0kxaeqg0jnbieb678',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85315531,\n", + " 'timestamp': '2012-12-19T18:46:18Z',\n", + " 'user': {'id': 1957487, 'text': 'Seddon (WMF)'},\n", + " 'page': {'id': 23259480,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 我是一名英文教师。我结婚了,并有一个女儿。 2 00:00:05,200 --> 00:00:13,587 我也和其他人一样忙于...'\",\n", + " 'text': '1\\n00:00:00,500 --> 00:00:04,497\\n我是一名英文教师。我结婚了,并有一个女儿。\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\n我也和其他人一样忙于工作,有一个日程表,上班,下班回来。\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\n我也有像其他人一样的需求,想在维基百科上度过我的自由时光。\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\n我叫叶尔兰·维加,来自玻利维亚的拉巴斯。\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\n我的文章有关许多不同的东西,但大部分都是安全的东西:蝴蝶、昆虫、动物。\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\n在我的教育系统中,人们通常不写东西。他们不写,也不创造。\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\n他们只是接受信息,并记住它们,然后拿去考试。\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\n他们常会问你有关考试的东西,但这并不是个好的现象。 \\n\\n9\\n00:00:50,040 --> 00:00:53,480\\n这就像在课程结束时, \\n\\n10\\n00:00:53,480 --> 00:01:00,876\\n要求你写些东西,比如一篇文章或其他东西,但你真的有麻烦了,因为你从来没写过。\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\n给人发挥创造力的机会,并让所写的东西被认可是真的—— \\n\\n12\\n00:01:11,210 --> 00:01:13,855\\n这真的成为了我人生中的转折点。\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\n一切开始于当我去维基词典——维基百科的词典——的那一天。 \\n\\n14\\n00:01:19,892 --> 00:01:25,360\\n我碰到了这个名为Dabawdygirl的女孩。当时我们正在与破坏者作斗争。 \\n\\n15\\n00:01:26,200 --> 00:01:34,570\\n她说她正试图用西班牙语回答,但我知道她的西班牙语在当时并不好。 \\n\\n16\\n00:01:35,022 --> 00:01:41,250\\n所以我们达成了一个不成文的协定:我教你西班牙语,而你教我英语。\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\n我们互相纠正,并在英文和西班牙文维基词典上通过编辑学习语言。\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\n最后我的英语水平有了很大的提高,因为我每天都在练习。\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\n然后,当我完成英语学业时候 \\n\\n20\\n00:01:56,946 --> 00:02:09,180\\n我通过了ECP录用考试,这个考试对像我这样刚结束学业的老师是必须的;然后,他们正好就聘请了我, \\n\\n21\\n00:02:09,180 --> 00:02:13,480\\n我猜是因为我的分数足够高去教书。\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\n他们开始做一些培训;我现在已经在那工作五年了。\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\n因为这个原因,我稳定下来,结了婚并有个女儿,这真是太惊奇了,维基百科改变了我的生活。\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\n导演:维克多·格利戛斯 \\n协同导演:大卫·格罗斯曼 \\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\n制片人:扎克·埃克斯利\\n摄影指导:普鲁特·Y·艾伦 \\n\\n27\\n00:02:29,659 --> 00:02:29,910\\n视频摄影:杰克·哈里斯,亚当·帕尔,马修·斯托克 \\n\\n28\\n00:02:30,173 --> 00:02:30,770\\n人像摄影:亚当·诺瓦克,卡伦·塞尔\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\n化妆:梅利莎·克莱因\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\n采访者:阿尔玛·沙帕,乔纳森·库列尔,斯蒂芬·海尔,丹·马克斯韦恩\\n科里·奥布莱恩,弗兰克·奥布莱恩,雅各布·威尔逊 \\n\\n31\\n00:02:31,979 --> 00:02:32,650\\n制作协调:梅根·埃尔南德斯,布里奥妮·琼斯,贝亚特里切·斯普林伯恩 \\n\\n32\\n00:02:32,648 --> 00:02:33,090\\n制作助理:托比·赫森纳尔,克里斯汀·里格斯比\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\n制作助理:托比·赫森纳尔,克里斯汀·里格斯比\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\n脚本:德西尔里纳·博斯科维奇\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\n转录服务:凯特·阿莱奥,迈克尔·比蒂,卡伦·卡列尔,彼得罗·利,米米·李杰奎·帕斯特,克里斯蒂·罗宾逊,布列塔尼·特纳,苏珊·沃林\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\n英语闭合字幕:AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]',\n", + " 'bytes': 4106,\n", + " 'sha1': 'ravhktk51b7ckhrvru6wrpaqe8gv2k3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85327074,\n", + " 'timestamp': '2012-12-19T23:06:13Z',\n", + " 'user': {'id': 133575, 'text': 'Ziko'},\n", + " 'page': {'id': 23261698,\n", + " 'title': 'The Impact of Wikipedia Peter Coti.webm.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,5 --> 00:00:04,508\\nEiner meiner Wikipedia-Artikel ist der über Stichwunden.\\n\\n2\\n00:00:04,79 --> 00:00:09,952\\nDabei tritt ein Objekt in den Körper ein, das tiefer ist als es weit ist,\\n\\n3\\n00:00:09,952 --> 00:00:14,265\\nund es verursacht ein Trauma des Eindringens.\\n\\n4\\n00:00:14,265 --> 00:00:18,833\\nEs kann viele Organe infizieren, jemanden verletzen.\\n\\n5\\n00:00:19,206 --> 00:00:23,406\\nMeist stirbt man nicht durch die Stichwunde.\\n\\n6\\n00:00:23,473 --> 00:00:28,340\\nMan stirbt durch das Organversagen, und dann ist man eben erstochen.\\n\\n7\\n00:00:28,729 --> 00:00:33,529\\nMein Name ist Peter Coti, Rettungssanitäter.\\n\\n8\\n00:00:33,579 --> 00:00:36,004\\nIch will nicht, dass Menschen verletzt werden,\\naber ich will da sein, wenn es passiert.\\n\\n9\\n00:00:36,42 --> 00:00:40,45\\nIch habe mal in Newark im Krankenhaus ausgeholfen. Da kam diese Frau rein.\\n\\n10\\n00:00:40,455 --> 00:00:43,940\\nSie hat plötzlich Blut \"gekotzt\".\\n\\n11\\n00:00:43,94 --> 00:00:45,541\\nWas mache ich da?\\n\\n12\\n00:00:45,541 --> 00:00:51,618\\nDie Wikipedia hat mich entsensibilisiert, ich sehe Dinge jetzt klinischer\\n\\n13\\n00:00:51,618 --> 00:00:56,726\\nund lasse meine Gefühle mich nicht überwältigen, wenn es ernst wird.\\n\\n14\\n00:00:57,0 --> 00:01:01,535\\nBeim Bearbeiten der Wikipedia will ich genau sein, weil ich nichts Falsches weitergeben will.\\n\\n15\\n00:01:01,969 --> 00:01:08,274\\nUnd ich lese viel und denke nach, bevor ich etwas tatsächlich in meinen Artikel setze.\\n\\n16\\n00:01:09,111 --> 00:01:14,684\\nDas Bearbeiten der Wikipedia ist eine großartige Lernmethode,\\n\\n17\\n00:01:15,13 --> 00:01:19,087\\ndenn ich muss wirklich wissen, wovon ich rede.\\n\\n18\\n00:01:20,0 --> 00:01:23,409\\nFür den Sanitäter-Kurs habe ich ständig die Wikipedia bearbeitet.\\n\\n19\\n00:01:23,757 --> 00:01:28,132\\nIch habe Artikel und so geschrieben, und wenn man das kann,\\n\\n20\\n00:01:28,151 --> 00:01:33,272\\nund es anderen Menschen erklären kann, dann kann man den Kurs mit \"Sehr gut\" bestehen.\\n\\n21\\n00:01:33,9 --> 00:01:35,532\\nDas kann ich versichern.\\n\\n22\\n00:01:35,532 --> 00:01:40,38\\nIch habe über Themen mitgearbeitet, bei der Bearbeiter mit medischem Hintergrund\\n\\n23\\n00:01:40,795 --> 00:01:49,08\\ndabei helfen, einen bestimmten Artikel im Monat zu verbessern, über \"Placebo\", \"Diabetes\", \"Krätze\".\\n\\n24\\n00:01:50,25 --> 00:01:53,77\\nKümmern Sie sich um die Wikipedia, denn\\n\\n25\\n00:01:53,88 --> 00:01:57,02\\nsie ist ein Instrument, mit dem man lernt und anderen etwas kostenlos beibringt. Das ist schön.\\n\\n26 \\n00:01:60,88 --> 00:01:67,02\\nHinweis: Die Wikipedia ist kein Ersatz für ärztlichen Rat.',\n", + " 'bytes': 2525,\n", + " 'sha1': 'q36irjnkvp0kzaeap5nukntzdu8chmg',\n", + " 'parent_id': 85327043,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85327652,\n", + " 'timestamp': '2012-12-19T23:23:28Z',\n", + " 'user': {'id': 133575, 'text': 'Ziko'},\n", + " 'page': {'id': 23262345,\n", + " 'title': 'The Impact of Wikipedia Peter Coti.webm.eo.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,5 --> 00:00:04,508\\nUnu el miaj vikipediaj artikoloj estas tiu pri pik-vundoj.\\n\\n2\\n00:00:04,79 --> 00:00:09,952\\nJen objekto eniras la korpon kiu estas pli profunda ol largxa\\n\\n3\\n00:00:09,952 --> 00:00:14,265\\nkaj gxi kauxzas trauxmon de enpenetro.\\n\\n4\\n00:00:14,265 --> 00:00:18,833\\nTio povas infekcii multajn organojn, vundi iun.\\n\\n5\\n00:00:19,206 --> 00:00:23,406\\nKutime oni ne mortas pro la pik-vundo.\\n\\n6\\n00:00:23,473 --> 00:00:28,340\\nOni mortas pro la halto de organa funkcio, kaj jen oni estas do pikmortigita.\\n\\n7\\n00:00:28,729 --> 00:00:33,529\\nMi nomigxas Peter Coti, sanitaristo.\\n\\n8\\n00:00:33,579 --> 00:00:36,004\\nMi ne volas ke homoj vundigxas, sed mi volas cxeesti kiam okazas.\\n\\n9\\n00:00:36,42 --> 00:00:40,45\\nMi iam helpis en la hospitalo de Newark. Envenis tiu virino.\\n\\n10\\n00:00:40,455 --> 00:00:43,940\\nSxi subite \"vomis\" sangon.\\n\\n11\\n00:00:43,94 --> 00:00:45,541\\nKion mi faru?\\n\\n12\\n00:00:45,541 --> 00:00:51,618\\nVikipedio min sen-sensibiligis, mi vidas aferojn nun pli klinike\\n\\n13\\n00:00:51,618 --> 00:00:56,726\\nkaj ne subigxas de miaj emocioj, kiam farigxas serioza.\\n\\n14\\n00:00:57,0 --> 00:01:01,535\\nPrilaborante Vikipedion mi volas esti preciza, por ne transdoni ion malgxustan.\\n\\n15\\n00:01:01,969 --> 00:01:08,274\\nKaj mi legas multe kaj pripensas, antaux ol mi ion vere enmetas en miajn artikolon.\\n\\n16\\n00:01:09,111 --> 00:01:14,684\\nPrilabori Vikipedion estas grandioza metodo por lerni,\\n\\n17\\n00:01:15,13 --> 00:01:19,087\\ncxar mi devas vere scii pri kio mi parolas.\\n\\n18\\n00:01:20,0 --> 00:01:23,409\\nPor farigxi sanitaristo, mi dauxre prilaboris Vikipedion.\\n\\n19\\n00:01:23,757 --> 00:01:28,132\\nMi verkis artikolojn kaj tiel plu, kaj kiam oni kapaplas tion,\\n\\n20\\n00:01:28,151 --> 00:01:33,272\\nkaj povas klarigi al aliaj homoj, tiam eblas sukcesi la kurson per \"tre bona\".\\n\\n21\\n00:01:33,9 --> 00:01:35,532\\nMi povas certigi tion.\\n\\n22\\n00:01:35,532 --> 00:01:40,38\\nMi kunlaboris pri temoj kie prilaborantoj kun medicinista fono\\n\\n23\\n00:01:40,795 --> 00:01:49,08\\nhelpis plibonigi certan artikolon dum monato, pri \"Placebo\", \"diabeto\", \"skabio\".\\n\\n24\\n00:01:50,25 --> 00:01:53,77\\nOkupigxu pri Vikipedio, cxar\\n\\n25\\n00:01:53,88 --> 00:01:57,02\\ngxi estas instrumento per kiu oni lernas kaj senpage ion instruas. Tio belas.\\n\\n26 \\n00:01:61,88 --> 00:01:69,02\\nAtentigo: Vikipedio ne estas anstatauxajxo por kuracista konsilo.',\n", + " 'bytes': 2308,\n", + " 'sha1': 'sfedkrxlozglpnngcszfcbwmjpe0mwp',\n", + " 'parent_id': 85327497,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 184457334,\n", + " 'timestamp': '2016-01-12T00:05:38Z',\n", + " 'user': {'text': '162.206.8.217'},\n", + " 'page': {'id': 23263075,\n", + " 'title': 'U.S. Army Band - Good King Wenceslaus.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nGood King Wenceslaus looked out, on the Feast of Stephen.\\n\\n2\\n00:00:05,200 --> 00:00:10,000\\nWhen the snow lay round about, deep and crisp and even.\\n\\n3\\n00:00:10,200 --> 00:00:15,000\\nBrightly shone the moon that night, tho\\' the frost was cruel,\\n\\n4\\n00:00:15,200 --> 00:00:21,000\\nWhen a poor man came in sight, gath\\'ring winter fuel.\\n\\n5\\n00:00:22,000 --> 00:00:27,000\\n\"Bring me flesh, and bring me wine, bring me pine logs hither:\\n\\n6\\n00:00:27,200 --> 00:00:32,000\\nThou and I shall see him dine, when we bear them thither. \"\\n\\n7\\n00:00:32,200 --> 00:00:37,000\\nPage and monarch, forth they went, forth they went together;\\n\\n8\\n00:00:37,200 --> 00:00:43,000\\nThrough the rude wind\\'s wild lament and the bitter weather.\\n\\n9\\n00:00:44,200 --> 00:00:50,000\\nIn his master\\'s steps he trod, where the snow lay dinted;\\n\\n10\\n00:00:50,200 --> 00:00:54,000\\nHeat was in the very sod which the saint had printed.\\n\\n11\\n00:00:54,200 --> 00:00:59,000\\nTherefore, Christian men, be sure, wealth or rank possessing,\\n\\n12\\n00:00:59,200 --> 00:01:05,000\\nYe who now will bless the poor, shall yourselves find blessing.',\n", + " 'bytes': 1109,\n", + " 'sha1': 'ns0kj43qi579cda59cjf066qiyvmtof',\n", + " 'parent_id': 85331793,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85397376,\n", + " 'timestamp': '2012-12-21T01:35:01Z',\n", + " 'user': {'id': 2450901, 'text': 'AlanKellyVerbatimIT'},\n", + " 'page': {'id': 23273776,\n", + " 'title': 'The Impact of Wikipedia - Srikeit Tadepalli and Noopur Raval.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,21 --> 00:00:03,828\\nSachin Tendulkar is one of the greatest cricketers of all time,\\n\\n2\\n00:00:04,326 --> 00:00:08,376\\nand when I saw his article, it did not have a pronunciation for his name, \\n\\n3\\n00:00:08,882 --> 00:00:13,064\\nand what I did was I recorded the pronunciation in my voice \\n\\n4\\n00:00:13,064 --> 00:00:14,507\\nand uploaded it to Wikipedia.\\n\\n5\\n00:00:15,118 --> 00:00:20,174\\nAnd now, anytime anyone around the world has to listen to how his name is pronounced,\\n\\n6\\n00:00:20,6 --> 00:00:22,235\\nthey will go to the Wikipedia article and listen to it \\n\\n7\\n00:00:22,235 --> 00:00:23,671\\nand it would be my voice,\\n\\n8\\n00:00:23,671 --> 00:00:27,371\\nand over a billion people in the world will probably do that, \\n\\n9\\n00:00:27,476 --> 00:00:32,516\\nand that is an achievement which I probably think is something that I treasure a lot.\\n\\n10\\n00:00:33,298 --> 00:00:35,898\\nMy name is Srikeit [SHREE-KIT]. I live and work in Mumbai.\\n\\n11\\n00:00:36,047 --> 00:00:38,016\\nMy full name is Noopur Raval.\\n\\n12\\n00:00:38,412 --> 00:00:41,364\\nI'm a result of one of his outreach programs, \\n\\n13\\n00:00:41,364 --> 00:00:43,599\\nlike we used to be friends and everything, but\\n\\n14\\n00:00:43,599 --> 00:00:47,458\\nthis one day, we were in Bangalore, and he said \\n\\n15\\n00:00:47,838 --> 00:00:50,848\\nthere's a Wiki Meetup. So, I said what is a Wiki Meetup? \\n\\n16\\n00:00:50,848 --> 00:00:52,994\\nLike, he kept talking about Wikipedia and everything, \\n\\n17\\n00:00:52,994 --> 00:00:55,720\\nso what is it, so he said, come along, let's just see what it is about.\\n\\n18\\n00:00:56,1 --> 00:00:59,824\\nThen I started editing a lot as well, and I realized that \\n\\n19\\n00:00:59,824 --> 00:01:03,402\\nthere isn't much content about Indian cuisine and culture,\\n\\n20\\n00:01:03,848 --> 00:01:07,048\\nand you know, like, really famous things like a sari.\\n\\n21\\n00:01:07,108 --> 00:01:11,408\\nA sari is the cloth that you wrap, women wear it very commonly in India, \\n\\n22\\n00:01:11,488 --> 00:01:15,683\\nand there's simply not an article on the world's most famous sari style,\\n\\n23\\n00:01:16,188 --> 00:01:18,846\\nso I was quite appalled you know, I really wanted to contribute,\\n\\n24\\n00:01:19,4 --> 00:01:23,5\\nand it's a personal journey, so I started discovering which villages make it.\\n\\n25\\n00:01:23,57 --> 00:01:27,216\\nHow do they make it? From which I jumped to the problems that \\n\\n26\\n00:01:27,216 --> 00:01:29,482\\nthe kanchipurim sari industry is facing.\\n\\n27\\n00:01:29,935 --> 00:01:32,467\\nbecause these were weavers who were making it manually, \\n\\n28\\n00:01:33,0 --> 00:01:36,766\\nand now because they have industrial people coming in and making it in machines, \\n\\n29\\n00:01:37,588 --> 00:01:39,499\\nso many people have lost employment, \\n\\n30\\n00:01:40,154 --> 00:01:42,69\\nso that kind of intricate fine work is not being done, \\n\\n31\\n00:01:43,504 --> 00:01:45,40\\nso yeh, it was not just writing an article, \\n\\n32\\n00:01:45,492 --> 00:01:48,15\\nbut also learning a lot about the kanchipurim sari.\\n\\n33\\n00:01:48,5 --> 00:01:49,86\\nEven though there's a neutral point of view, \\n\\n34\\n00:01:50,2 --> 00:01:51,58\\nthis is a kind of point of view right? \\n\\n35\\n00:01:52,0 --> 00:01:55,83\\nIf you're not representing something, or writing about something on the encyclopedia,\\n\\n36\\n00:01:56,198 --> 00:01:59,22\\nit probably means that it's not noteworthy enough, which is not true.\\n\\n37\\n00:01:59,218 --> 00:01:59,64\\n[Srikeit] \\n\\n38\\n00:01:59,644 --> 00:02:00,81\\nEspecially when it comes to India,\\n\\n39\\n00:02:00,813 --> 00:02:04,09\\nthere are tomes of things that are not written about.\\n\\n40\\n00:02:04,087 --> 00:02:08,03\\nWhile the Indian community is fairly well represented in the Wikipedia community,\\n\\n41\\n00:02:08,483 --> 00:02:11,87\\nbut the Indian populace is not, so what needs to be done is \\n\\n42\\n00:02:12,338 --> 00:02:14,44\\nmore of these people need to start coming on Wikipedia, \\n\\n43\\n00:02:14,465 --> 00:02:17,44\\nwriting about it, because there is an audience to read about it.\\n\\n44\\n00:02:17,95 --> 00:02:21,18\\nThey just don't know that it's not there, or they don't know that \\n\\n45\\n00:02:21,616 --> 00:02:24,16\\ninformation can be accessed or there is something to be read about. \\n\\n46\\n00:02:25,04 --> 00:02:26,00\\nDirector: Victor Grigas \\n\\n47\\n00:02:26,003 --> 00:02:26,75\\nCodirector: David Grossman\\n\\n48\\n00:02:27,253 --> 00:02:27,84\\nProducer: Zack Exley\\n\\n49\\n00:02:27,84 --> 00:02:28,83\\nDirector of Photography: Pruitt Y. Allen \\n\\n50\\n00:02:28,826 --> 00:02:30,07\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck \\n\\n51\\n00:02:30,07 --> 00:02:31,54\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n52\\n00:02:31,537 --> 00:02:32,74\\n[Images - credits rolling on screen]\\n\\n53\\n00:02:32,739 --> 00:02:33,83\\nMakeup: Melissa Klein\\n\\n54\\n00:02:33,829 --> 00:02:35,39\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson \\n\\n55\\n00:02:35,394 --> 00:02:36,79\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n56\\n00:02:36,787 --> 00:02:37,46\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n57\\n00:02:37,462 --> 00:02:37,90\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n58\\n00:02:37,902 --> 00:02:38,27\\nWriter: Desirina Boskovich\\n\\n59\\n00:02:37,902 --> 00:02:38,40\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n60\\n00:02:38,402 --> 00:02:38,80\\nEnglish Closed-Captioning: AlanKelly VerbatimIT\",\n", + " 'bytes': 5395,\n", + " 'sha1': '73r5gupjal33737p8oo81zfzhfx9edb',\n", + " 'parent_id': 85397205,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92291328,\n", + " 'timestamp': '2013-03-09T18:06:39Z',\n", + " 'user': {'id': 421596, 'text': 'Vivaelcelta'},\n", + " 'page': {'id': 23284235,\n", + " 'title': 'Editing basics - Uploading and adding images.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Correct mistake desciption > description',\n", + " 'text': '1\\n00:00:01,000 --> 00:00:06,500\\nThis screencast walks through the basics of uploading images to Wikimedia Commons \\n\\n2\\n00:00:06,700 --> 00:00:09,200\\nand adding them to Wikipedia articles.\\n\\n3\\n00:00:09,400 --> 00:00:13,500\\nTake this article for example: secondary lens.\\n\\n4\\n00:00:13,700 --> 00:00:18,500\\nIt\\'s a photography topic that doesn\\'t have any photos. Let\\'s fix that!\\n\\n5\\n00:00:18,700 --> 00:00:21,500\\nWe\\'ll use an original image I made.\\n\\n6\\n00:00:21,700 --> 00:00:24,000\\nTo add it to the article, we\\'ll need to upload it\\n\\n7\\n00:00:24,100 --> 00:00:26,200\\nto Wikimedia Commons.\\n\\n8\\n00:00:26,500 --> 00:00:27,200\\nFirst things first.\\n\\n9\\n00:00:27,400 --> 00:00:31,000\\nWikimedia Commons is only for original works you made yourself,\\n\\n10\\n00:00:31,300 --> 00:00:36,000\\nworks by others that were explicitly released under a Wikipedia-compatible license,\\n\\n11\\n00:00:36,300 --> 00:00:40,500\\nor works in the public domain that aren\\'t covered by anyone\\'s copyright.\\n\\n12\\n00:00:40,800 --> 00:00:42,000\\nTo upload a file,\\n\\n11\\n00:00:42,300 --> 00:00:45,000\\ngo to commons.wikimedia.org.\\n\\n12\\n00:00:45,300 --> 00:00:48,000\\nBe sure to log in if you aren\\'t already logged in.\\n\\n13\\n00:00:48,300 --> 00:00:50,300\\nYou\\'ll use the same account you have on Wikipedia.\\n\\n14\\n00:00:51,000 --> 00:00:53,600\\nTo get started, go to the Upload Wizard\\n\\n15\\n00:00:53,800 --> 00:00:56,800\\nby clicking the \"Upload file\" link on the left.\\n\\n16\\n00:00:57,000 --> 00:01:00,000\\nThe first page of the wizard is a comic, featuring Puzzly!,\\n\\n17\\n00:01:00,300 --> 00:01:04,000\\nwhich goes over what is allowed on Commons and what isn\\'t.\\n\\n18\\n00:01:04,300 --> 00:01:08,000\\nAt the bottom of the comic, click next to get to the upload page.\\n\\n19\\n00:01:08,300 --> 00:01:14,000\\nClicking \"Select a media file to donate\" will let you find a file on your computer to upload.\\n\\n20\\n00:01:14,300 --> 00:01:18,000\\nOnce it uploads, you\\'re ready to continue on to the license release.\\n\\n21\\n00:01:18,300 --> 00:01:22,000\\nIf it\\'s your own work, just put in your name or username\\n\\n22\\n00:01:22,300 --> 00:01:25,600\\n--however you want to be credited when people use the image--\\n\\n23\\n00:01:25,800 --> 00:01:27,000\\nand press Next.\\n\\n24\\n00:01:27,300 --> 00:01:30,500\\nNow it\\'s time for the title of the image and the description.\\n\\n25\\n00:01:30,700 --> 00:01:31,500\\nFor the title\\n\\n26\\n00:01:31,700 --> 00:01:34,500\\nput something concise, descriptive\\n\\n27\\n00:01:34,700 --> 00:01:37,700\\n and specific enough to differentiate it from similar images.\\n\\n28\\n00:01:37,900 --> 00:01:39,500\\nFor the description,\\n\\n29\\n00:01:39,700 --> 00:01:42,000\\nadd as much detail as you can:\\n\\n30\\n00:01:42,200 --> 00:01:44,500\\nwhere and how was the image made;\\n\\n31\\n00:01:44,700 --> 00:01:46,500\\nwhat the subject is;\\n\\n32\\n00:01:46,700 --> 00:01:49,000\\nand anything else a viewer might want to know about it.\\n\\n33\\n00:01:49,300 --> 00:01:53,000\\nYou can also add the image to one or more Wikimedia Commons categories\\n\\n33\\n00:01:53,300 --> 00:01:58,000\\n-- try browsing similar images to find out what categories are appropriate.\\n\\n34\\n00:01:58,300 --> 00:02:00,500\\nAt this point, pressing Next will complete the upload,\\n\\n35\\n00:02:00,700 --> 00:02:05,000\\nand the work should be available for use on Wikipedia.\\n\\n36\\n00:02:05,300 --> 00:02:07,000\\nOn the last page of the wizard, you\\'ll find\\n\\n37\\n00:02:07,300 --> 00:02:10,000\\ncode for adding the work to a Wikipedia article,\\n\\n38\\n00:02:10,300 --> 00:02:13,000\\nand a URL for getting to the file page,\\n\\n39\\n00:02:13,300 --> 00:02:17,000\\nwhere you can edit the description or upload newer versions of the file.\\n\\n40\\n00:02:17,300 --> 00:02:19,500\\nYou can copy the wikicode\\n\\n41\\n00:02:19,700 --> 00:02:21,000\\nand paste it into the article,\\n\\n42\\n00:02:21,300 --> 00:02:23,500\\nand then add a caption.\\n\\n43\\n00:02:23,700 --> 00:02:27,000\\nThe basic format for putting an image into an article is like this:\\n\\n44\\n00:02:27,300 --> 00:02:29,200\\nopening square brackets, then\\n\\n45\\n00:02:29,400 --> 00:02:31,200\\nthe name of the image file, then\\n\\n46\\n00:02:31,400 --> 00:02:36,200\\na pipe and the word thumb -- which puts it into the standard thumbnail format --\\n\\n47\\n00:02:36,500 --> 00:02:37,500\\nthen another pipe,\\n\\n48\\n00:02:37,700 --> 00:02:39,000\\nand then the caption,\\n\\n47\\n00:02:39,200 --> 00:02:43,000\\nwhich should make clear the connection with the accompanying article text,\\n\\n47\\n00:02:43,200 --> 00:02:46,000\\nand then two closing squre brackets.\\n\\n48\\n00:02:46,200 --> 00:02:48,000\\nOnce you\\'ve added the image,\\n\\n49\\n00:02:48,200 --> 00:02:50,000\\nput in an edit summary and save the page,\\n\\n50\\n00:02:50,200 --> 00:02:51,500\\nand that\\'s it!\\n\\n51\\n00:02:51,700 --> 00:02:54,000\\nWe\\'ve added a new image to Wikipedia.\\n\\n52\\n00:02:54,500 --> 00:02:57,000\\nThanks! Bye!',\n", + " 'bytes': 4652,\n", + " 'sha1': 'ljp0pot3txt6rsgjbuykbute4777s5f',\n", + " 'parent_id': 85468887,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 128876081,\n", + " 'timestamp': '2014-07-13T10:34:55Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 23286677,\n", + " 'title': 'Friedrich Wilhelm Nietzsche - Hoch tut euch auf.oga.ger.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'McZusatz moved page [[TimedText:Hoch tut euch auf.ogg.ger.srt]] to [[TimedText:Friedrich Wilhelm Nietzsche - Hoch tut euch auf.oga.ger.srt]] without leaving a redirect',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:08,380\\nHoch tut euch auf, ihr Tore der Welt\\n\\n2\\n00:00:08,380 --> 00:00:16,840\\ndass der König der Ehren einziehe. \\n\\n3\\n00:00:16,930 --> 00:00:25,800\\nHoch tut euch auf, ihr Tore der Welt\\n\\n4\\n00:00:25,800 --> 00:00:33,140\\nHoch tut euch auf, ihr Tore (ihr Tore) der Welt\\n\\n5\\n00:00:33,140 --> 00:00:44,490\\ndass der König der Ehren (der Ehren) einziehe.\\n\\n6\\n00:00:45,930 --> 00:00:58,550\\nHoch tut euch auf (Hoch tut euch auf), ihr Tore der Welt\\n\\n7\\n00:00:59,800 --> 00:01:17,440\\nHoch tut euch auf (Hoch tut euch auf), dass der König der Ehren einziehe.\\n\\n8\\n00:01:17,600 --> 00:01:26,550\\nHoch tut euch auf, ihr Tore der Welt\\n\\n9\\n00:01:26,550 --> 00:01:42,555\\nHoch tut euch auf, ihr Tore der Welt (der Welt, der Welt)\\n\\n10\\n00:01:44,610 --> 00:01:51,540\\nHoch tut euch auf, ihr Tore der Welt\\n\\n11\\n00:01:51,540 --> 00:02:12,777\\ndass der König der Ehren (der König der Ehren, der König der Ehren) einziehe.',\n", + " 'bytes': 916,\n", + " 'sha1': '3nfm7nieaju0ure2wbac4rnoazap413',\n", + " 'parent_id': 85460347,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 128876023,\n", + " 'timestamp': '2014-07-13T10:33:55Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 23286690,\n", + " 'title': 'Friedrich Wilhelm Nietzsche - Hoch tut euch auf.oga.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'McZusatz moved page [[TimedText:Hoch tut euch auf.ogg.de.srt]] to [[TimedText:Friedrich Wilhelm Nietzsche - Hoch tut euch auf.oga.de.srt]] without leaving a redirect',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:08,380\\nHoch tut euch auf, ihr Tore der Welt\\n\\n2\\n00:00:08,380 --> 00:00:16,840\\ndass der König der Ehren einziehe. \\n\\n3\\n00:00:16,930 --> 00:00:25,800\\nHoch tut euch auf, ihr Tore der Welt\\n\\n4\\n00:00:25,800 --> 00:00:33,140\\nHoch tut euch auf, ihr Tore (ihr Tore) der Welt\\n\\n5\\n00:00:33,140 --> 00:00:44,490\\ndass der König der Ehren (der Ehren) einziehe.\\n\\n6\\n00:00:45,930 --> 00:00:58,550\\nHoch tut euch auf (Hoch tut euch auf), ihr Tore der Welt\\n\\n7\\n00:00:59,800 --> 00:01:17,440\\nHoch tut euch auf (Hoch tut euch auf), dass der König der Ehren einziehe.\\n\\n8\\n00:01:17,600 --> 00:01:26,550\\nHoch tut euch auf, ihr Tore der Welt\\n\\n9\\n00:01:26,550 --> 00:01:42,555\\nHoch tut euch auf, ihr Tore der Welt (der Welt, der Welt)\\n\\n10\\n00:01:44,610 --> 00:01:51,540\\nHoch tut euch auf, ihr Tore der Welt\\n\\n11\\n00:01:51,540 --> 00:02:12,777\\ndass der König der Ehren (der König der Ehren, der König der Ehren) einziehe.',\n", + " 'bytes': 916,\n", + " 'sha1': '3nfm7nieaju0ure2wbac4rnoazap413',\n", + " 'parent_id': 85460378,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 128876045,\n", + " 'timestamp': '2014-07-13T10:34:09Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 23286704,\n", + " 'title': 'Friedrich Wilhelm Nietzsche - Hoch tut euch auf.oga.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'McZusatz moved page [[TimedText:Hoch tut euch auf.ogg.en.srt]] to [[TimedText:Friedrich Wilhelm Nietzsche - Hoch tut euch auf.oga.en.srt]]',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:08,380\\nLift up your heads, ye doors of the world,\\n\\n2\\n00:00:08,380 --> 00:00:16,840\\nthat the King of glory shall come in.\\n\\n3\\n00:00:16,930 --> 00:00:25,800\\nLift up your heads, ye doors of the world,\\n\\n4\\n00:00:25,800 --> 00:00:33,140\\nLift up your heads, ye doors (ye doors) of the world,\\n\\n5\\n00:00:33,140 --> 00:00:44,490\\nthat the King of glory (of glory) shall come in.\\n\\n6\\n00:00:45,930 --> 00:00:58,550\\nLift up your heads (Lift up your heads), ye doors of the world,\\n\\n7\\n00:00:59,800 --> 00:01:17,440\\nLift up your heads (Lift up your heads), that the King of glory (of glory) shall come in.\\n\\n8\\n00:01:17,600 --> 00:01:26,550\\nLift up your heads, ye doors of the world,\\n\\n9\\n00:01:26,550 --> 00:01:42,555\\nLift up your heads, ye doors of the world (of the world, of the world),\\n\\n10\\n00:01:44,610 --> 00:01:51,540\\nLift up your heads, ye doors of the world,\\n\\n11\\n00:01:51,540 --> 00:02:12,777\\nthat the King of glory (the King of glory, the King of glory) shall come in.',\n", + " 'bytes': 979,\n", + " 'sha1': '2f75sujaxj28onna34r7p6zn075xrbn',\n", + " 'parent_id': 85460479,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 149028351,\n", + " 'timestamp': '2015-02-05T10:40:11Z',\n", + " 'user': {'id': 725208, 'text': 'Gustavolaime'},\n", + " 'page': {'id': 23286717,\n", + " 'title': 'Friedrich Wilhelm Nietzsche - Hoch tut euch auf.oga.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:08,380\\nElévense, puertas del mundo\\n\\n2\\n00:00:08,380 --> 00:00:16,840\\npara que el Rey de la gloria pase.\\n\\n3\\n00:00:16,930 --> 00:00:25,800\\nElévense, puertas del mundo\\n\\n4\\n00:00:25,800 --> 00:00:33,140\\nElévense, puertas (puertas) del mundo\\n\\n5\\n00:00:33,140 --> 00:00:44,490\\npara que el Rey de la gloria (de la gloria) pase.\\n\\n6\\n00:00:45,930 --> 00:00:58,550\\nElévense (Elévense), puertas del mundo\\n\\n7\\n00:00:59,800 --> 00:01:17,440\\nElévense (Elévense), para que el Rey de la gloria pase.\\n\\n8\\n00:01:17,600 --> 00:01:26,550\\nElévense, puertas del mundo\\n\\n9\\n00:01:26,550 --> 00:01:42,555\\nElévense, puertas del mundo (del mundo, del mundo)\\n\\n10\\n00:01:44,610 --> 00:01:51,540\\nElévense, puertas del mundo\\n\\n11\\n00:01:51,540 --> 00:02:12,777\\npara que el Rey de la gloria (el Rey de la gloria, el Rey de la gloria) pase.',\n", + " 'bytes': 832,\n", + " 'sha1': 'fv4jut6858la0y1k8j8beh6ap7fq5rs',\n", + " 'parent_id': 128876077,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85509278,\n", + " 'timestamp': '2012-12-23T04:14:08Z',\n", + " 'user': {'id': 1221995, 'text': 'House'},\n", + " 'page': {'id': 23298626,\n", + " 'title': 'The Impact of Wikipedia - Alejandro Linares García.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,500 The photos that I upload are those which really have something to say. 2 00:00:05,500 --> 00:00:05,666 3 00:00:05,666 -...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,500\\nThe photos that I upload are those \\nwhich really have something to say.\\n\\n2\\n00:00:05,500 --> 00:00:05,666\\n \\n\\n3\\n00:00:05,666 --> 00:00:07,666\\nAs I said,\\n\\n4\\n00:00:07,666 --> 00:00:08,066\\n \\n\\n5\\n00:00:08,066 --> 00:00:12,232\\nthey talk about a holiday, a habit, a tradition.\\n\\n6\\n00:00:12,233 --> 00:00:13,599\\n \\n\\n7\\n00:00:13,600 --> 00:00:17,400\\nI think that those photographs are going \\nto help understanding them.\\n\\n8\\n00:00:17,400 --> 00:00:17,600\\n \\n\\n9\\n00:00:17,600 --> 00:00:19,600\\nMy name is Alejandro Linares García\\n\\n10\\n00:00:19,600 --> 00:00:20,166\\n \\n\\n11\\n00:00:20,166 --> 00:00:22,099\\nI live in Mexico City.\\n\\n12\\n00:00:22,100 --> 00:00:22,600\\n \\n\\n13\\n00:00:22,600 --> 00:00:27,500\\nI like photography, along with my wife\\n\\n14\\n00:00:27,500 --> 00:00:28,833\\n \\n\\n15\\n00:00:28,833 --> 00:00:33,499\\nshe writes articles\\n\\n16\\n00:00:33,500 --> 00:00:33,600\\n \\n\\n17\\n00:00:33,600 --> 00:00:37,466\\nand I give her photos for the articles.\\n\\n18\\n00:00:37,466 --> 00:00:38,799\\n \\n\\n19\\n00:00:38,800 --> 00:00:41,333\\nThat\\'s my vision as an artist.\\n\\n20\\n00:00:41,333 --> 00:00:41,599\\n \\n\\n21\\n00:00:41,600 --> 00:00:46,433\\nSeeing the image as a frame,\\n\\n22\\n00:00:46,433 --> 00:00:46,666\\n \\n\\n23\\n00:00:46,666 --> 00:00:50,032\\nas something artistic.\\n\\n24\\n00:00:50,033 --> 00:00:50,333\\n \\n\\n25\\n00:00:50,333 --> 00:00:52,999\\nBut also as something people can learn from it,\\n\\n26\\n00:00:53,000 --> 00:00:53,266\\n \\n\\n27\\n00:00:53,266 --> 00:00:55,966\\nas those photos are seen by a lot of people\\n\\n28\\n00:00:55,966 --> 00:00:55,999\\n \\n\\n29\\n00:00:56,000 --> 00:00:57,400\\naround the world,\\n\\n30\\n00:00:57,400 --> 00:01:01,066\\nand thereby rediscover the image they had\\n\\n31\\n00:01:01,066 --> 00:01:02,332\\ninitially\\n\\n32\\n00:01:02,333 --> 00:01:04,533\\nabout México. \\n\\n33\\n00:01:04,533 --> 00:01:07,699\\nMaybe with these photographs\\n\\n34\\n00:01:07,700 --> 00:01:11,466\\nthey could see another approach to this subject.\\n\\n35\\n00:01:11,466 --> 00:01:16,799\\nand say: \"Wow, México it\\'s something more \\nthan chili and tortillas, isn\\'t it?\".\\n\\n36\\n00:01:16,800 --> 00:01:17,200\\n \\n\\n37\\n00:01:17,200 --> 00:01:20,966\\nTo recognize the great variety, \\nand to change their mindset,\\n\\n38\\n00:01:20,966 --> 00:01:21,199\\n \\n\\n39\\n00:01:21,200 --> 00:01:23,700\\nand know about México a bit more.\\n\\n40\\n00:01:23,700 --> 00:01:24,533\\n \\n\\n41\\n00:01:24,533 --> 00:01:26,766\\nThrough their traditions,\\ntheir culture, and their holidays.\\n\\n42\\n00:01:26,766 --> 00:01:27,032\\n \\n\\n43\\n00:01:27,033 --> 00:01:29,199\\nThrough their holidays \\n\\n44\\n00:01:29,200 --> 00:01:29,533\\n \\n\\n45\\n00:01:29,533 --> 00:01:31,133\\nmost of all,\\n\\n46\\n00:01:31,133 --> 00:01:31,166\\n \\n\\n47\\n00:01:31,166 --> 00:01:32,999\\nas they make known a lot of things.\\n\\n48\\n00:01:33,000 --> 00:01:33,300\\n \\n\\n49\\n00:01:33,300 --> 00:01:35,800\\nI think that there\\'s a big community right now\\n\\n50\\n00:01:35,800 --> 00:01:35,866\\n \\n\\n51\\n00:01:35,866 --> 00:01:39,132\\nas I saw on Wikimania\\n\\n52\\n00:01:39,133 --> 00:01:39,299\\n \\n\\n53\\n00:01:39,300 --> 00:01:41,333\\nThey all got their own images,\\n\\n54\\n00:01:41,333 --> 00:01:41,533\\n \\n\\n55\\n00:01:41,533 --> 00:01:43,099\\nthey all got their own culture,\\n\\n56\\n00:01:43,100 --> 00:01:43,133\\n \\n\\n57\\n00:01:43,133 --> 00:01:44,799\\nand their favorite things.\\n\\n58\\n00:01:44,800 --> 00:01:45,033\\n \\n\\n59\\n00:01:45,033 --> 00:01:46,833\\nAnd if we share all of this\\n\\n60\\n00:01:46,833 --> 00:01:47,399\\n \\n\\n61\\n00:01:47,400 --> 00:01:48,633\\nit gets bigger and bigger.\\n\\n62\\n00:01:48,633 --> 00:01:49,366\\n \\n\\n63\\n00:01:49,366 --> 00:01:50,966\\nSo, I think that the knowledge\\n\\n64\\n00:01:50,966 --> 00:01:51,266\\n \\n\\n65\\n00:01:51,266 --> 00:01:52,699\\nit\\'s the Wikimedia main pillar.\\n\\n66\\n00:01:52,700 --> 00:01:53,033\\n \\n\\n67\\n00:01:53,033 --> 00:01:56,533\\nTo make known all the things \\nwhich exist around the world.\\n\\n68\\n00:01:56,533 --> 00:01:59,699\\nMake known...\\n\\n69\\n00:01:59,700 --> 00:02:02,866\\nwhat the humanity has, on the world.\\n\\n70\\n00:02:02,866 --> 00:02:03,132\\n \\n\\n71\\n00:02:03,133 --> 00:02:10,633\\nTheir traditions, their cultures,\\ntheir gastronomy, their cities.\\n\\n72\\n00:02:10,633 --> 00:02:11,533\\n \\n\\n73\\n00:02:11,533 --> 00:02:15,099\\nHow is the place where they live,\\n\\n74\\n00:02:15,100 --> 00:02:15,133\\n \\n\\n75\\n00:02:15,133 --> 00:02:16,733\\nhow do they live.\\n\\n76\\n00:02:16,733 --> 00:02:16,766\\n \\n\\n77\\n00:02:16,766 --> 00:02:18,732\\nThat\\'s very interesting for all the people.\\n\\n78\\n00:02:18,733 --> 00:02:18,933\\n \\n\\n79\\n00:02:18,933 --> 00:02:21,933\\nIf we share that, we\\'ll get \\nto know the world better.\\n\\n80\\n00:02:21,933 --> 00:02:22,366\\n \\n\\n81\\n00:02:22,366 --> 00:02:25,866\\nAnd that way, maybe, we could \\ntake care of the world better.',\n", + " 'bytes': 4641,\n", + " 'sha1': 'rasv3s2wwpo714e5xb2v9exdi1ud58r',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85509297,\n", + " 'timestamp': '2012-12-23T04:14:51Z',\n", + " 'user': {'id': 1221995, 'text': 'House'},\n", + " 'page': {'id': 23298631,\n", + " 'title': 'The Impact of Wikipedia - Alejandro Linares García.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,500 Y las (fotos) que si subo son las que realmente dicen algo 2 00:00:05,500 --> 00:00:05,666 3 00:00:05,666 --> 00:00:07,6...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,500\\nY las (fotos) que si subo son las que realmente dicen algo\\n\\n2\\n00:00:05,500 --> 00:00:05,666\\n \\n\\n3\\n00:00:05,666 --> 00:00:07,666\\nComo te dije,\\n\\n4\\n00:00:07,666 --> 00:00:08,066\\n \\n\\n5\\n00:00:08,066 --> 00:00:12,232\\nDicen una fiesta, una costumbre, una tradición\\n\\n6\\n00:00:12,233 --> 00:00:13,599\\n \\n\\n7\\n00:00:13,600 --> 00:00:17,400\\nYo pienso que esas fotografías van a ayudar a conocer\\n\\n8\\n00:00:17,400 --> 00:00:17,600\\n \\n\\n9\\n00:00:17,600 --> 00:00:19,600\\nMi nombre es Alejandro Linares García\\n\\n10\\n00:00:19,600 --> 00:00:20,166\\n \\n\\n11\\n00:00:20,166 --> 00:00:22,099\\nVivo en la ciudad de México\\n\\n12\\n00:00:22,100 --> 00:00:22,600\\n \\n\\n13\\n00:00:22,600 --> 00:00:27,500\\nMe gusta la fotografía, junto con mi esposa\\n\\n14\\n00:00:27,500 --> 00:00:28,833\\n \\n\\n15\\n00:00:28,833 --> 00:00:33,499\\nella escribe los artículos\\n\\n16\\n00:00:33,500 --> 00:00:33,600\\n \\n\\n17\\n00:00:33,600 --> 00:00:37,466\\nyo la apoyo en las imágenes de diseñador grafico\\n\\n18\\n00:00:37,466 --> 00:00:38,799\\n \\n\\n19\\n00:00:38,800 --> 00:00:41,333\\nY esa es mi visión como artista\\n\\n20\\n00:00:41,333 --> 00:00:41,599\\n \\n\\n21\\n00:00:41,600 --> 00:00:46,433\\nde poder ver la imagen como si fuera un cuadro\\n\\n22\\n00:00:46,433 --> 00:00:46,666\\n \\n\\n23\\n00:00:46,666 --> 00:00:50,032\\ncomo si fuera algo artístico\\n\\n24\\n00:00:50,033 --> 00:00:50,333\\n \\n\\n25\\n00:00:50,333 --> 00:00:52,999\\npero además algo que la gente pudiera conocer\\n\\n26\\n00:00:53,000 --> 00:00:53,266\\n \\n\\n27\\n00:00:53,266 --> 00:00:55,966\\nya que estas fotos las ven mucha gente\\n\\n28\\n00:00:55,966 --> 00:00:55,999\\n \\n\\n29\\n00:00:56,000 --> 00:00:57,400\\ny las ven en todo el mundo\\n\\n30\\n00:00:57,400 --> 00:01:01,066\\nRedescubran que a lo que a lo mejor tenían \\n\\n31\\n00:01:01,066 --> 00:01:02,332\\nen un principio\\n\\n32\\n00:01:02,333 --> 00:01:04,533\\nla imagen de México\\n \\n\\n33\\n00:01:04,533 --> 00:01:07,699\\nquizás con estas fotos \\n\\n34\\n00:01:07,700 --> 00:01:11,466\\npuedan ver otra forma de imagen\\n\\n35\\n00:01:11,466 --> 00:01:16,799\\nDice \"Wow, México es algo más que chile y tortillas, ¿no?\"\\n\\n36\\n00:01:16,800 --> 00:01:17,200\\n \\n\\n37\\n00:01:17,200 --> 00:01:20,966\\nSino que hay una gran variedad y que cambie su manera de pensar\\n\\n38\\n00:01:20,966 --> 00:01:21,199\\n \\n\\n39\\n00:01:21,200 --> 00:01:23,700\\nConozcan más lo que es México\\n\\n40\\n00:01:23,700 --> 00:01:24,533\\n \\n\\n41\\n00:01:24,533 --> 00:01:26,766\\nPor medio de la tradición, de la cultura\\n\\n42\\n00:01:26,766 --> 00:01:27,032\\n \\n\\n43\\n00:01:27,033 --> 00:01:29,199\\nPor medio de sus fiestas \\n\\n44\\n00:01:29,200 --> 00:01:29,533\\n \\n\\n45\\n00:01:29,533 --> 00:01:31,133\\nSobre todo sus fiestas \\n\\n46\\n00:01:31,133 --> 00:01:31,166\\n \\n\\n47\\n00:01:31,166 --> 00:01:32,999\\nQue dan a conocer muchas cosas\\n\\n48\\n00:01:33,000 --> 00:01:33,300\\n \\n\\n49\\n00:01:33,300 --> 00:01:35,800\\nPienso que hay una gran comunidad ahorita \\n\\n50\\n00:01:35,800 --> 00:01:35,866\\n \\n\\n51\\n00:01:35,866 --> 00:01:39,132\\nsobre todo lo que vi en Wikimania\\n\\n52\\n00:01:39,133 --> 00:01:39,299\\n \\n\\n53\\n00:01:39,300 --> 00:01:41,333\\nTodos tienen sus imágenes\\n\\n54\\n00:01:41,333 --> 00:01:41,533\\n \\n\\n55\\n00:01:41,533 --> 00:01:43,099\\nTodos tienen su cultura\\n\\n56\\n00:01:43,100 --> 00:01:43,133\\n \\n\\n57\\n00:01:43,133 --> 00:01:44,799\\nY sus cosas favoritas\\n\\n58\\n00:01:44,800 --> 00:01:45,033\\n \\n\\n59\\n00:01:45,033 --> 00:01:46,833\\nY si compartimos todo esto\\n\\n60\\n00:01:46,833 --> 00:01:47,399\\n \\n\\n61\\n00:01:47,400 --> 00:01:48,633\\nSe hace más grande\\n\\n62\\n00:01:48,633 --> 00:01:49,366\\n \\n\\n63\\n00:01:49,366 --> 00:01:50,966\\nEntonces, creo que el conocimiento\\n\\n64\\n00:01:50,966 --> 00:01:51,266\\n \\n\\n65\\n00:01:51,266 --> 00:01:52,699\\nes la base de Wikimedia\\n\\n66\\n00:01:52,700 --> 00:01:53,033\\n \\n\\n67\\n00:01:53,033 --> 00:01:56,533\\nDe dar a conocer las cosas que existen en todo el mundo.\\n\\n68\\n00:01:56,533 --> 00:01:59,699\\nDar a conocer...\\n\\n69\\n00:01:59,700 --> 00:02:02,866\\nEso que la humanidad tiene, en todo el mundo\\n\\n70\\n00:02:02,866 --> 00:02:03,132\\n \\n\\n71\\n00:02:03,133 --> 00:02:10,633\\nLo que es sus tradiciones, sus culturas, su comida, sus poblaciones\\n\\n72\\n00:02:10,633 --> 00:02:11,533\\n \\n\\n73\\n00:02:11,533 --> 00:02:15,099\\nDecir cómo es su zona donde ellos viven\\n\\n74\\n00:02:15,100 --> 00:02:15,133\\n \\n\\n75\\n00:02:15,133 --> 00:02:16,733\\nCómo viven\\n\\n76\\n00:02:16,733 --> 00:02:16,766\\n \\n\\n77\\n00:02:16,766 --> 00:02:18,732\\nY eso es muy interesante para todo el mundo\\n\\n78\\n00:02:18,733 --> 00:02:18,933\\n \\n\\n79\\n00:02:18,933 --> 00:02:21,933\\nSi nos compartimos todo eso conoceremos mejor el mundo\\n\\n80\\n00:02:21,933 --> 00:02:22,366\\n \\n\\n81\\n00:02:22,366 --> 00:02:25,866\\nY a lo mejor podremos cuidar mejor el mundo',\n", + " 'bytes': 4615,\n", + " 'sha1': 'c4uji8a873dac4pm3on7v04q9um1qdj',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85526313,\n", + " 'timestamp': '2012-12-23T12:48:37Z',\n", + " 'user': {'id': 7000, 'text': 'Seb35'},\n", + " 'page': {'id': 23302616,\n", + " 'title': 'The Impact of Wikipedia Poongothai Balasubramanian.webm.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'translation from [[meta:Fundraising 2012/Translation/Poongothai video (captions)/fr]] (translators: [[meta:User:Morhelluin]], [[meta:User:Fanoudu62219]], [[meta:User:Seb35]])',\n", + " 'text': '1\\n00:00:01,105 --> 00:00:02,016\\nJ’adore mes étudiants.\\n\\n2\\n00:00:03,874 --> 00:00:08,270\\nQuand je travaillais alors dans mes disciplines, j’adorais mes étudiants.\\n\\n3\\n00:00:09,288 --> 00:00:11,538\\nJe m’appelle Balasubramanian Poongothai.\\n\\n4\\n00:00:11,56 --> 00:00:13,181\\nJe vis en Inde.\\n\\n5\\n00:00:13,721 --> 00:00:20,791\\nJ’ai été professeur de mathématiques pendant 33\\xa0ans et je suis partie à la retraite,\\n\\n6\\n00:00:22,23 --> 00:00:27,095\\npuis j’ai commencé à éditer Wikipédia. \\n\\n7\\n00:00:28,5 --> 00:00:30,641\\nVous voyez, j’étais partie à la retraite,\\n\\n8\\n00:00:31,135 --> 00:00:33,954\\ndonc j’avais mes journées entières pour moi. \\n\\n9\\n00:00:34,4 --> 00:00:39,394\\nMes fils sont grands, et ils vivent leurs vies. \\n\\n10\\n00:00:39,841 --> 00:00:47,791\\nJe suis libérée de toutes ces responsabilités, et les années qui viennent sont entièrement pour moi,\\n\\n11\\n00:00:47,841 --> 00:00:49,341\\net j’en profite. \\n\\n12\\n00:00:49,45 --> 00:00:59,78\\nQuand je participe à Wikipédia, je me sens engagée, et... Nous laissons quelque chose pour les générations futures.\\n\\n13\\n00:01:00,15 --> 00:01:07,679\\nL’algèbre, la géométrie analytique, la géométrie sont les sujets avec lesquels je suis à l’aise.\\n\\n14\\n00:01:08,8 --> 00:01:10,788\\nAu début, j’ai commencé avec «\\xa0Probabilité\\xa0». \\n\\n15\\n00:01:11,45 --> 00:01:14,169\\nLe premier article que j’ai commencé était «\\xa0Probabilité\\xa0». \\n\\n16\\n00:01:15,064 --> 00:01:18,998\\nJe suis tous les jours sur Wikipedia, je suis simplement à la maison, \\n\\n17\\n00:01:19,445 --> 00:01:27,217\\nje m’occupe donc de mes affaires personnelles, et ensuite je m’assoie à mon ordinateur et édite, \\n\\n18\\n00:01:28,45 --> 00:01:33,769\\net je crée des articles, et je crée des articles sur les Mathématiques, \\n\\n19\\n00:01:34,5 --> 00:01:40,31\\net puis le tamoul étant ma langue maternelle, et ma langue favorite, \\n\\n20\\n00:01:41,0 --> 00:01:47,94\\nj’édite les articles créés par d’autres pour corriger les erreurs et la grammaire. \\n\\n21\\n00:01:48,8 --> 00:01:52,06\\nTout le monde peut en profiter, qu’on soit riche ou pauvre. \\n\\n22\\n00:01:52,548 --> 00:01:58,10\\nIci, en un simple clic, le monde entier est à notre portée.\\n\\n23\\n00:01:59,13 --> 00:02:04,34\\nNous donnons l’information complète à travers Internet. \\n\\n24\\n00:02:05,298 --> 00:02:10,71\\nSans aucune caste. C’est vraiment une chose géniale.',\n", + " 'bytes': 2360,\n", + " 'sha1': 'evm70rxwp4zevm7ba3aq0ce9batq4l3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96560853,\n", + " 'timestamp': '2013-05-20T00:39:07Z',\n", + " 'user': {'text': '180.191.31.177'},\n", + " 'page': {'id': 23304855,\n", + " 'title': 'En-uk-hippopotomonstrosesquipedaliophobia.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,000\\nHippopotomonstrosesquipedaliophobia',\n", + " 'bytes': 67,\n", + " 'sha1': 'axomgisvtlo5v6wi9j6aokpwj8ctszb',\n", + " 'parent_id': 85540034,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85572196,\n", + " 'timestamp': '2012-12-24T04:05:36Z',\n", + " 'user': {'text': '97.101.160.254'},\n", + " 'page': {'id': 23311494,\n", + " 'title': \"Candidate's song take 2.ogg.en.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:15,000 --> 00:00:35,000\\n I am the very model of a modern Wikipedian:\\n I\\'ve knowledge of Greek drama, both comedic and tragedian;\\n I know historic battlefields from Ancient Rome to World War Two,\\n And neutral is the mode in which I always keep my point of view!\\n \\n I\\'m very well acquainted, too, with Polynese ethnology.\\n I understand Samoan lore and Mā-ori mythology.\\n From mountain peaks of Suriname to passes of the Great Divide,\\n I see to it that everything is quite correctly wikified!\\n 2\\n 00:00:35,000 --> 00:00:45,000\\n He sees to it that everything is quite correctly wikified!\\n He sees to it that everything is quite correctly wikified!\\n He sees to it that everything is quite correctly wiki- wikified!\\n 3\\n 00:00:45,000 --> 00:01:00,000\\n Some people think my entries are little more than trivia —\\n That episode of \"Barney\" or some woodwind of Bolivia —\\n And yet, in matters great and small, the high and low and median,\\n I am the very model of a modern Wikipedian\\n\\n In short, in matters great and small, the high and low and median,\\n He is the very model of a modern Wikipedian!\\n 4\\n 00:01:00,000 --> 00:01:30,000\\n I SIGN all of my comments; and I summarize my each edit;\\n I never BITE; I never POINT; I follow wiki etiquette;\\n I assume good faith when wiki-flamed, and wear a thickened wiki-skin.\\n For I\\'m the very model of a proper wiki-citizen:\\n\\n I\\'m often found at village pumps discussing rules and policy,\\n And judging notability while over at the AfD,\\n In matters wiki-sophic, I\\'m no exopede inclusionist,\\n But an incremento-eventuo-darwikian-delusionist!\\n\\n An incremento-eventuo-darwikian-delusionist!\\n An incremento-eventuo-darwikian-delusionist!\\n An incremento-eventuo-darwikian-delusion-usionist!\\n\\n\\n 5\\n 00:01:30,000 --> 00:1:50,000\\n I am the very model of a modern Wikipedian.\\n I wrote this wiki-parody to ease some wiki-tedium.\\n When dealing with my colleagues, I\\'m a friendly wiki-editor,\\n But when provoked I can become a vandal-stalking predator;\\n\\n When dealing with his colleagues he\\'s a friendly wiki-editor,\\n But when provoked he can become a vandal-stalking predator!\\n\\n 6\\n 00:01:50,000 --> 00:02:10,000\\n Reverts and warnings I have made while on the recent change patrol,\\n I play some cat-and-mouse with them, but now I want to block \\'em all,\\n And so at last I must become a wiki admin-candidate:\\n And since I am my only fan, I\\'ve no choice but to self-nominate.\\n\\n As prep for this, I\\'ve studied up on bans and blocks and redirects,\\n And I can tell you all about both SEMIs and full page protects,\\n And when you hear all that I know of wikipede sysop-ery,\\n You’ll say no better candidate has ever sought the mop-pery\\n\\n 7\\n 00:02:10,000 --> 00:02:35,000\\n You’ll say no better candidate has ever sought the moppery.\\n You’ll say no better candidate has ever sought the moppery.\\n You’ll say no better candidate has ever sought the moppa-moppery.\\n\\n Now adminship, as our Jimbo says, is really no big deal at all:\\n So many fail, and so might I (my role in portal talk\\'s been small)\\n But still, in matters great and small, the high and low and median,\\n I am the very model of a modern \\'\\'\\'Wikipedian\\'\\'\\'\\n\\n In short, in matters great and small, the high and low and median,\\n He is the very model of a modern \\'\\'\\'Wikipedian\\'\\'\\'!',\n", + " 'bytes': 3504,\n", + " 'sha1': 'o81dthp867gv84eygodr2ni1zz3nqpu',\n", + " 'parent_id': 85572174,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 130504424,\n", + " 'timestamp': '2014-08-02T07:28:24Z',\n", + " 'user': {'id': 1785334, 'text': 'Zhantongz'},\n", + " 'page': {'id': 23323093,\n", + " 'title': 'President Obama Makes a Statement on the Shooting in Newtown.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,199 --> 00:00:04,000\\n美国总统:今天下午,我与马洛伊(康涅狄格州州长)\\n\\n2\\n00:00:04,000 --> 00:00:06,867\\n和联邦调查局局长穆勒进行了交谈。\\n\\n3\\n00:00:06,867 --> 00:00:11,033\\n我代表国家向马罗伊州长致以慰问,\\n\\n4\\n00:00:11,032 --> 00:00:18,899\\n并且明确他可以利用所有资源去侦察这令人发指的罪行、\\n\\n5\\n00:00:18,899 --> 00:00:23,099\\n照料受害者并安抚他们的家人。\\n\\n6\\n00:00:24,632 --> 00:00:28,666\\n在过去几年,我们经历了太多这样的不幸。\\n\\n7\\n00:00:28,667 --> 00:00:34,700\\n当我每次得知这样的消息,我的反应并不像一个总统,\\n\\n8\\n00:00:34,700 --> 00:00:39,800\\n而像其他所有人一样——如同一个家长。\\n\\n9\\n00:00:39,799 --> 00:00:41,799\\n今日,我更是深感如此。\\n\\n10\\n00:00:43,399 --> 00:00:51,833\\n我明白,在美国没有一个父母不像我这样悲痛。\\n\\n11\\n00:00:51,834 --> 00:01:00,200\\n死者大多是儿童——5到10岁间的美丽小孩。\\n\\n12\\n00:01:12,400 --> 00:01:16,467\\n他们本有着更长更远的生活——过生日、\\n\\n13\\n00:01:16,466 --> 00:01:22,466\\n毕业、结婚、生子。\\n\\n14\\n00:01:27,733 --> 00:01:30,866\\n牺牲的还有教师——无论性别,\\n\\n15\\n00:01:30,867 --> 00:01:35,533\\n他们为帮助孩子实现梦想而付出了生命。\\n\\n16\\n00:01:35,533 --> 00:01:47,633\\n惨案令人心碎——为那些逝去孩子的父母、爷爷奶奶、兄弟姐妹,为那些逝去成年人的家人。\\n\\n17\\n00:01:50,332 --> 00:01:54,599\\n我们的心同样为幸存孩子的父母而碎,\\n\\n18\\n00:01:54,599 --> 00:01:57,632\\n他们能够看到自己的孩子今晚回家是幸福的,\\n\\n19\\n00:01:57,632 --> 00:02:06,332\\n他们也知道孩子们的纯真太早被撕裂了,没有东西能够缓解父母的痛苦。\\n\\n20\\n00:02:08,233 --> 00:02:12,066\\n作为一个国家,我们已经历太多这样的事情。\\n\\n21\\n00:02:12,066 --> 00:02:16,332\\n在纽敦镇的小学,\\n\\n22\\n00:02:16,332 --> 00:02:22,500\\n在俄勒冈的购物中心,抑或在威斯康星州的锡克教神庙,或是丹佛奥罗拉的影院,\\n\\n23\\n00:02:22,500 --> 00:02:28,900\\n还有芝加哥的街头——这些社区是我们的社区,这些孩子是我们的孩子。\\n\\n24\\n00:02:28,900 --> 00:02:39,000\\n不管有什么样的政治分歧,我们将不得不团结在一起采取有意义的行动避免同样的悲剧再次发生。\\n\\n25\\n00:02:41,165 --> 00:02:45,900\\n今晚,米歇尔和我将做每个美国父母都会去做的事情,\\n\\n26\\n00:02:45,900 --> 00:02:48,667\\n给我们的孩子一个更贴心的拥抱,\\n\\n27\\n00:02:48,667 --> 00:02:55,265\\n并且向他们表达出我们的爱,我们要让彼此知道,我们多么爱对方。\\n\\n28\\n00:02:55,265 --> 00:02:59,165\\n然而,康涅狄格州的许多家庭今晚却无法做到这些。\\n\\n29\\n00:02:59,165 --> 00:03:02,432\\n他们需要我们所有人,就是现在。\\n\\n30\\n00:03:02,432 --> 00:03:07,766\\n在艰难的日子到来时,社会需要我们美国人积极应对。\\n\\n31\\n00:03:07,766 --> 00:03:11,766\\n我作为总统将竭尽全力提供帮助。\\n\\n32\\n00:03:11,766 --> 00:03:16,834\\n没有什么东西能够填补人们失去孩子或心爱着的人之后的空白,\\n\\n33\\n00:03:16,834 --> 00:03:22,000\\n我们所有人可以向需要的人伸出援手\\n\\n34\\n00:03:22,000 --> 00:03:27,366\\n——提醒他们,我们就在身边,为他们祈福,\\n\\n35\\n00:03:27,366 --> 00:03:35,366\\n他们对逝者的爱不仅在他们的记忆中,也停留在我们的心房。\\n\\n36\\n00:03:38,165 --> 00:03:48,933\\n愿上帝保佑受难者的记忆,正如圣经所说,抚慰心碎者,助他们疗伤。',\n", + " 'bytes': 3598,\n", + " 'sha1': '9comddkepumi9s17tkccviky4igcga9',\n", + " 'parent_id': 85640664,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85653786,\n", + " 'timestamp': '2012-12-25T11:51:40Z',\n", + " 'user': {'id': 1482985, 'text': 'Abián'},\n", + " 'page': {'id': 23326029,\n", + " 'title': 'Wiki Loves Monuments 2012 Spain.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Delaying a bit',\n", + " 'text': '1\\n00:00:01,200 --> 00:00:04,100\\nAlbarracín, Teruel\\n\\n2\\n00:00:04,100 --> 00:00:07,600\\nSevilla\\n\\n3\\n00:00:07,600 --> 00:00:11,900\\nTalavera de la Reina, Toledo\\n\\n4\\n00:00:11,900 --> 00:00:41,900\\nToledo\\n\\n5\\n00:00:41,900 --> 00:00:51,100\\nÁvila\\n\\n6\\n00:00:51,100 --> 00:00:54,200\\nReal Sitio de San Ildefonso, Segovia\\n\\n7\\n00:00:54,200 --> 00:01:00,100\\nSegovia\\n\\n8\\n00:01:00,100 --> 00:01:03,400\\nSantiago de Compostela\\n\\n9\\n00:01:03,400 --> 00:01:07,100\\nJaca, Huesca\\n\\n10\\n00:01:07,100 --> 00:01:14,400\\nZaragoza\\n\\n11\\n00:01:14,400 --> 00:01:18,850\\nBadalona, Barcelona\\n\\n12\\n00:01:18,850 --> 00:01:22,750\\nEl Escorial, Madrid\\n\\n13\\n00:01:22,750 --> 00:01:29,270\\nMadrid\\n\\n14\\n00:01:29,270 --> 00:01:33,300\\nBoadilla del Camino, Palencia\\n\\n15\\n00:01:33,300 --> 00:01:35,900\\nBesalú, Gerona\\n\\n16\\n00:01:35,900 --> 00:01:38,320\\nPuerto de la Selva, Gerona\\n\\n17\\n00:01:38,320 --> 00:01:42,100\\nFigueras, Gerona\\n\\n18\\n00:01:42,100 --> 00:01:45,350\\nLa Junquera, Gerona\\n\\n19\\n00:01:45,350 --> 00:01:49,540\\nCiurana, Tarragona\\n\\n20\\n00:01:49,540 --> 00:01:55,000\\nAtienza, Guadalajara',\n", + " 'bytes': 1027,\n", + " 'sha1': 'diyjq33nd01agojxc8n826f77vuz5o5',\n", + " 'parent_id': 85653607,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85657869,\n", + " 'timestamp': '2012-12-25T13:21:49Z',\n", + " 'user': {'id': 2509224, 'text': 'Skribblez1'},\n", + " 'page': {'id': 23327131,\n", + " 'title': 'Christmas enlightments rue de la Mésange 2.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:20,000 --> 00:00:24,400 Whistling and walking sounds 2 00:00:24,600 --> 00:00:27,800 More whistling and walking sounds.'\",\n", + " 'text': '1\\n00:00:20,000 --> 00:00:24,400\\nWhistling and walking sounds\\n\\n2\\n00:00:24,600 --> 00:00:27,800\\nMore whistling and walking sounds.',\n", + " 'bytes': 128,\n", + " 'sha1': 'tvjxd1z8nkipsm8v8whn8ankyzsasi9',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 85730490,\n", + " 'timestamp': '2012-12-26T15:01:18Z',\n", + " 'user': {'id': 1587862, 'text': 'Erasmo Barresi'},\n", + " 'page': {'id': 23341284,\n", + " 'title': 'The Impact of Wikipedia Erlan Vega.webm.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,500 --> 00:00:04,497 Sono un insegnante di inglese. Sono sposato e ho una figlia. 2 00:00:05,200 --> 00:00:13,587 Lavoro più o meno come chiunque a...'\",\n", + " 'text': '1\\n00:00:00,500 --> 00:00:04,497\\nSono un insegnante di inglese. Sono sposato e ho una figlia.\\n\\n2\\n00:00:05,200 --> 00:00:13,587\\nLavoro più o meno come chiunque altro. Ho un orario. Vado al lavoro e torno.\\n\\n3\\n00:00:14,192 --> 00:00:20,443\\nHo gli stessi bisogni di tutti gli altri, e voglio anche impiegare il mio tempo libero su Wikipedia.\\n\\n4\\n00:00:20,500 --> 00:00:23,943\\nMi chiamo Erlan Vega. Vengo da La Paz, in Bolivia.\\n\\n5\\n00:00:23,943 --> 00:00:32,610\\nScrivo voci su diversi argomenti, per la maggior parte cose non pericolose: farfalle, insetti, animali.\\n\\n6\\n00:00:33,000 --> 00:00:39,130\\nNel mio sistema scolastico, le persone solitamente non scrivono e non creano.\\n\\n7\\n00:00:39,750 --> 00:00:45,936\\nRicevono semplicemente le informazioni, supponendo che le memorizzino, e poi hanno la verifica.\\n\\n8\\n00:00:46,850 --> 00:00:50,040\\nE, nonostante facciano domande, non è una buona cosa.\\n\\n9\\n00:00:50,040 --> 00:00:53,480\\nÈ come quando, alla fine del corso,\\n\\n10\\n00:00:53,480 --> 00:01:00,876\\nti chiedono di scrivere qualcosa, come un articolo o un saggio, e sei davvero nei guai perché non l\\'hai mai fatto.\\n\\n11\\n00:01:01,310 --> 00:01:08,501\\nDare a qualcuno l\\'opportunità di essere creativo e di essere riconosciuto per qualcosa che ha scritto\\n\\n12\\n00:01:11,210 --> 00:01:13,855\\nè stato davvero un punto di svolta nella mia vita.\\n\\n13\\n00:01:14,458 --> 00:01:19,892\\nTutto iniziò quando un giorno andai in Wikizionario, il dizionario di Wikipedia,\\n\\n14\\n00:01:19,892 --> 00:01:25,360\\ne incontrai questa ragazza, Dabawdygirl //. In quel momento stavamo combattendo un vandalo.\\n\\n15\\n00:01:26,200 --> 00:01:34,570\\nLei provò a rispondere in spagnolo. Il suo spagnolo era un po\\' traballante.\\n\\n16\\n00:01:35,022 --> 00:01:41,250\\nCosì facemmo una sorta di accordo non scritto: \"Io ti insegno lo spagnolo e tu mi insegni l\\'inglese\".\\n\\n17\\n00:01:41,246 --> 00:01:48,130\\nCi correggemmo a vicenda e imparammo la lingua contribuendo a Wikizionario in inglese e in spagnolo.\\n\\n18\\n00:01:48,583 --> 00:01:53,510\\nAlla fine il mio inglese migliorò molto, perché feci pratica ogni giorno.\\n\\n19\\n00:01:54,765 --> 00:01:56,950\\nQuando finii i miei studi in inglese,\\n\\n20\\n00:01:56,946 --> 00:02:09,180\\npassai il test d\\'ammissione ECP, che è un requisito per gli insegnanti, e mi assunsero,\\n\\n21\\n00:02:09,180 --> 00:02:13,480\\nperché i miei punteggi, suppongo, erano abbastanza alti per insegnare.\\n\\n22\\n00:02:14,010 --> 00:02:19,570\\nCominciarono qualche allenamento e ormai lavoro lì da cinque anni.\\n\\n23\\n00:02:21,790 --> 00:02:29,090\\nÈ sorprendente perché oggi sono un lavoratore stabile, sono sposato, ho una figlia: Wikipedia ha cambiato la mia vita.\\n\\n24\\n00:02:29,273 --> 00:02:29,420\\nRegista: Victor Grigas Co-regista: David Grossman\\n\\n25\\n00:02:29,273 --> 00:02:32,570\\n(cc-by-sa 3.0 tag needed here)\\n\\n26\\n00:02:29,422 --> 00:02:29,660\\nProduttore: Zack Exley Direttore della fotografia: Pruitt Y. Allen\\n\\n27\\n00:02:29,659 --> 00:02:29,910\\nFotografi del video: Jack Harris, Adam Parr, Matthew Storck\\n\\n28\\n00:02:30,173 --> 00:02:30,770\\nRitrattisti: Adam Novak, Karen Sayre\\n\\n29\\n00:02:30,767 --> 00:02:31,190\\nTrucco: Melissa Klein\\n\\n30\\n00:02:31,190 --> 00:02:31,980\\nIntervistatori: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson\\n\\n31\\n00:02:31,979 --> 00:02:32,650\\nCoordinatori di produzione: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n32\\n00:02:32,648 --> 00:02:33,090\\nAssistenti alla produzione: Toby Hessenauer, Kristin Rigsby\\n\\n33\\n00:02:33,091 --> 00:02:33,510\\nAssistenti alla produzione: Toby Hessenauer, Kristin Rigsby\\n\\n34\\n00:02:33,509 --> 00:02:33,880\\nAutore: Desirina Boskovich\\n\\n35\\n00:02:33,883 --> 00:02:34,490\\nServizi di trascrizione: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n36\\n00:02:34,487 --> 00:02:34,990\\nSottotitoli in inglese: AlanKelly VerbatimIT\\n\\n37\\n00:02:34,992 --> 00:02:35,420\\n[...]',\n", + " 'bytes': 3911,\n", + " 'sha1': '2hpg6xtbx6cgpqre0bgibh8whsnw6rz',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 87806198,\n", + " 'timestamp': '2013-01-16T15:55:14Z',\n", + " 'user': {'id': 1375542, 'text': 'Philippe.petrinko'},\n", + " 'page': {'id': 23368529,\n", + " 'title': 'The Impact of Wikipedia - Benoit Rochon.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Typos, accents, and french translation',\n", + " 'text': \"1\\n00:00:00,1 --> 00:00:03,309\\nHurricane Irene - I will remember that name all my life.\\n\\n2\\n00:00:03,641 --> 00:00:04,776 [laughs]\\n\\n3\\n00:00:05,274 --> 00:00:06,634\\nMy name is Benoit Rochon\\n\\n4\\n00:00:06,2 --> 00:00:09,129\\nI am from Montreal, Quebec, Canada\\n\\n5\\n00:00:09,759 --> 00:00:15,121\\nJ'écris principalement des biographies des artistes, des politiciens, parce que je veux faire rayonner le Québec.\\n\\n6\\n00:00:16,105 --> 00:00:19,477\\nJe veux faire rayonner les francophones du Canada.\\n\\n7\\n00:00:20,322 --> 00:00:28,816\\nOn est peu representés sur Wikipedia en français, et ça serait vraiment génial si on avait plus des contributeurs.\\n\\n8\\n00:00:29,849 --> 00:00:38,560\\nEvery time I write Wikipedia, I always think about people who are poorer than me.\\n\\n9\\n00:00:39,157 --> 00:00:43,567\\nSo, I feel like I'm doing something great on Wikipedia.\\n\\n10\\n00:00:44,062 --> 00:00:49,570\\nEvery time I edit Wikipedia, I put knowledge somewhere else in my own language.\\n\\n11\\n00:00:51,018 --> 00:00:57,318\\nSo, yes, I'm middle-class, but class doesn't mean anything on Wikipedia.\\n\\n12\\n00:00:57,342 --> 00:01:02,629\\nI was looking for an event to organize for Wikipedia. Wikimedia Canada was brand new, \\n\\n13\\n00:01:02,629 --> 00:01:04,842\\nand we wanted to have a first event. \\n\\n14\\n00:01:04,842 --> 00:01:11,502\\nI heard about Wikipedia Takes Your City, which was done in Manhattan [New York City], Boston, \\n\\n15\\n00:01:11,502 --> 00:01:13,257\\nmany countries all around the world, \\n\\n16\\n00:01:13,18 --> 00:01:16,559\\nand I wanted this event to be in Montreal.\\n\\n17\\n00:01:16,559 --> 00:01:21,225\\nWell, two days before the event - the hurricane was in New York City - \\n\\n18\\n00:01:23,538 --> 00:01:24,635\\nand we knew it was coming up the East Coast.\\n\\n19\\n00:01:24,635 --> 00:01:27,430\\nI never saw a hurricane in Montreal in my whole life.\\n\\n20\\n00:01:27,43 --> 00:01:29,856\\nI don't remember seeing something like this.\\n\\n21\\n00:01:30,368 --> 00:01:34,368\\nAnd it wasn't possible. I don't know why it hit our event.\\n\\n22\\n00:01:34,368 --> 00:01:42,74\\nI started the event at 11 o'clock, and at 11:45 trees were bended and the rain was horizontal.\\n\\n23\\n00:01:44,0 --> 00:01:50,44\\nIt was just crazy. I was watching through the window. People were running all over the city.\\n\\n24\\n00:01:50,443 --> 00:01:55,90\\nWe put targets, like, for instance, the Olympic Stadium, we have tons of pictures of this, \\n\\n25\\n00:01:56,34 --> 00:01:58,88\\nso I put 1 point for that, but I put 100 points for something \\n\\n26\\n00:01:58,875 --> 00:02:03,47\\nwhich is not illustrated on Wikipedia and we have the article, \\n\\n27\\n00:02:04,75 --> 00:02:08,93\\nso people were running in the rain, in the hurricane, by car, some by foot,\\n\\n28\\n00:02:09,561 --> 00:02:16,89\\nand just to take pictures, which were 100 points, and - \\n\\n29\\n00:02:16,894 --> 00:02:19,54\\nI don't know how they managed that.\\n\\n30\\n00:02:19,539 --> 00:02:24,75\\nPeople are courageous. Honestly, they were crazy! [laughs]\\n\\n31\\n00:02:24,75 --> 00:02:26,15\\nDirector: Victor Grigas\\n\\n32\\n00:02:26,154 --> 00:02:27,25\\nCodirector: David Grossman \\n\\n33\\n00:02:27,254 --> 00:02:28,61\\nProducer: Zack Exley\\n\\n34\\n00:02:28,613 --> 00:02:29,80\\nDirector of Photography: Pruitt Y. Allen \\n\\n35\\n00:02:29,798 --> 00:02:31,08\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck\\n\\n36\\n00:02:31,078 --> 00:02:32,60\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n37\\n00:02:32,596 --> 00:02:34,05\\nMakeup: Melissa Klein\\n\\n38\\n00:02:34,054 --> 00:02:36,43\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, Corey O'Brien, Frank O'Brien, Jacob Wilson\\n\\n39\\n00:02:36,431 --> 00:02:38,12\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn \\n\\n40\\n00:02:38,12 --> 00:02:39,34\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n41\\n00:02:39,339 --> 00:02:40,95\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n42\\n00:02:40,952 --> 00:02:42,14\\nWriter: Desirina Boskovich\\n\\n43\\n00:02:42,136 --> 00:02:44,07\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n44\\n00:02:44,071 --> 00:02:44,52\\nEnglish Closed-Captioning: AlanKelly VerbatimIT\\n\\n45\\n00:02:44,52 --> 00:02:44,90\\n:)\",\n", + " 'bytes': 4177,\n", + " 'sha1': 'giusgfzquag1f32o7n73evnshdxo0ki',\n", + " 'parent_id': 85835787,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 219444978,\n", + " 'timestamp': '2016-11-25T17:45:13Z',\n", + " 'user': {'id': 2672346, 'text': 'Svensson1'},\n", + " 'page': {'id': 23382485,\n", + " 'title': 'The Impact Of Wikipedia.webm.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia jest przedsięwzięciem „non-profit”, lecz jest też piątą co do częstości odwiedzin stroną w Internecie. Wszystkie jej artykuły piszą ochotnicy.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nChcielibyśmy Wam przedstawić ich drobną część...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nJestem z Nepalu.\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nJestem z Iraku.\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nPochodzę z Indii.\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nJestem z Byram, w stanie New Jersey.\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nMieszkam w Birmingham w Anglii.\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois... La Paz, Boliwia... Nairobi, Kenia...\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malezja... Włoski Mediolan... RPA...\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolska... Japonia... Armenia...\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrazylia... Rosja... Botswana...\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIzrael... Uzbekistan... Hong Kong...\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstambuł... Meksyk...\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee.\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nPo dołaczeniu do grupy edytorów Wikipedii w roku 2008 zapoczątkowałam wiele artykułów.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nJeden z nich, jak sądzę, był o kobiecie nazwiskiem Mariam Nour. \\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nNie mieliśmy jeszcze o niej hasła, więc... to był mój pierwszy artykuł.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nZupełnie o nim zapomniałam! Może dwa albo trzy lata później\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nnatknęłam się na to hasło. Byłam zszokowana!\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMoje hasło przeczytało ponad sto tysięcy ludzi.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nSkorzystali z tego hasła, wzięli z niego jakieś informacje. Dotknęli go.\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nW tym momencie czujesz, że wpłynęłaś na sto tysięcy ludzi.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nByłam przerażona, gdy po raz pierwszy wcisnęłam przycisk „Edytuj”.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nPomyślałam: „O mój Boże, zaraz wszystko schrzanię! Nie zadziała! Nie potrafię!”\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia jest projektem o „otwartym kodzie”, do którego każdy może dorzucić swój pomysł,\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\npo czym przychodzi ktoś inny i wygładza ten pomysł, by stał się idealny.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nKażdego dnia, każdej godziny, kazdej minuty – nad poprawianiem Wikipedii pracują tysiące ludzi.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nWiele leży w idei wolontariatu. Wikipedia jest unikatowym pomysłem na wolontariat.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nSkupia w jednym miejscu profesjonalistów i amatorów, którzy razem miłują jakieś zagadnienie.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nLudzie którzy na początku mają rozbieżne opinie zaczynają współpracować.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nWiele pracy, do której raczej pasuje kontekst wielkiej korporacji internetowej,\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\ndokonywanej jest przez wolontariuszy, takich, jak ja.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nNie można powiedzieć: „Dobra, ja mam rację, ty bredzisz, to jest moja wersja hasła!”\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nJeśli zauważymy subiektywizm w haśle,\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nto najprawdopodobniej ktoś zdążył już go oznaczyć, a jeśli nie – to ja mogę to zrobić.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nSetki, tysiące ludzi widzą błędy\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\ni je poprawiają.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nWcisnęłam ten przycisk i\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\n„Boom!” – zaczęła się podróż. Wspaniała podróż.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nRozpoczęłam od hasła „Prawdopodobieństwo”.\\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nPierwszy artykuł, który stworzyłam, to „Prawdopodobieństwo”.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nJedno z najważniejszych haseł które napisałem dla Wikipedii\\n\\n42\\n00:02:26,001 --> 00:02:27,400\\ndotyczyło ran kłutych.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nPiszę o wędkarstwie muchowym,\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nhistorii Montany, historii parków narodowych, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nNiedostatecznie wykorzystywanych uprawach. Szachistach. Bioróznorodności.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nHistorii wojskowości. Historii Armenii. Historii Rzymu.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nSędziach. Komunikacji. Biografiach. Piłce nożnej.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrlandii. Pensylwanii. Głównie o fotografii.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Pieczeniu, gdyż uwielbiam piec.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nBroni jądrowej i radioaktywności\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\noraz kajakarstwie górskim.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nW świecie jest dużo porozrzucanej informacji,\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nktórą my zbieramy w jednym miejscu.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nDajemy darmową wiedzę – wszystkim,\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nw ich własnym języku, by mogli z niej korzystać.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nKażdy z tej wiedzy korzysta, obojetnie, czy jest bogaty, czy biedny.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nOrganizacje zarobkowe mają różną motywację działania i wymogi.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nOd Wikimedia Foundation nie pobieram wynagrodzenia, nie wypłaca mi też ona diet.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nSądzę, że to ważne, że jestem w stanie jasno powiedzieć:\\n\\n60\\n00:03:25,501 --> 00:03:30,500\\n„Gdy proszę was o pieniadze, to nie chcę tych pieniedzy dla siebie.\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nProszę o środki na działanie fundacji, gdzie pracuje grupa ludzi wspierająca tę cudowną społeczność, której jestem członkiem.”\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nSądzę, że Wikipedia dała mi szansę dokonania w świecie znacznych zmian.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nTo swego rodzaju inwestycja w twoją własną przyszłość. I w przyszłość twoich dzieci.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nDziękujemy.\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nNiniejszy film udostępniony jest na licencji Creative Commons-Uznanie autorstwa-Na tych samych warunkach v3.0 (http://creativecommons.org/licenses/by-sa/3.0) o ile nie zaznaczono inaczej. Autorem filmu jest Victor Grigas, Wikimedia Foundation.\\nOpinie wyrażone w niniejszym nagraniu są poglądami osób występujących w filmie i niekoniecznie odzwierciedlają punkt widzenia i zasady jakiejkolwiek firmy, organizacji, czy instytucji, której członkiem jest sfilmowana osoba.\\nZnaki towarowe i logotypy Wikimedia Foundation i innych organziacji nie są zamieszczone na mocy licencji Creative Commons. Znaki i logotypy Wikimedia Foundation, w tym „Wikipedia” oraz „kulka z puzzli” są zarejestrowanymi znakami Wikimedia Foundation. Więcej informacji na temat znaków WMF znajduje się na stronie\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nTen klip wideo jest dostępny na licencji Creative Commons.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nPodobnie, jak Wikipedię, można go dowolnie kopiować, remiksować i udostępniać.',\n", + " 'bytes': 7323,\n", + " 'sha1': 'qe37xh4wzo3lur3u1p1239t0oqlcwii',\n", + " 'parent_id': 85999534,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 246542409,\n", + " 'timestamp': '2017-06-04T06:19:38Z',\n", + " 'user': {'id': 2523479, 'text': 'JackCaptions'},\n", + " 'page': {'id': 23496064,\n", + " 'title': 'GWBush Oval Office Address 20010911-1-.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Removed credit',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,040\\nGood evening.\\n\\n2\\n00:00:01,900 --> 00:00:12,540\\nToday, our fellow citizens, our way of life, our very freedom came under attack in a series of deliberate and deadly terrorist acts.\\n\\n3\\n00:00:13,630 --> 00:00:18,020\\nThe victims were in airplanes or in their offices.\\n\\n4\\n00:00:18,020 --> 00:00:23,160\\nSecretaries, Business Men and Women, Military and Federal Workers.\\n\\n5\\n00:00:23,160 --> 00:00:27,300\\nMoms and dads, friends and neighbors.\\n\\n6\\n00:00:27,300 --> 00:00:30,900\\nThousands of lives were suddenly ended by evil.\\n\\n7\\n00:00:30,900 --> 00:00:32,900\\nDespicable acts of terror.\\n\\n8\\n00:00:34,060 --> 00:00:41,400\\nThe pictures of airplanes flying in the buildings, fires burning, huge structures collapsing,\\n\\n9\\n00:00:41,400 --> 00:00:49,060\\nhave filled us with disbelief, terrible sadness and a quiet unyielding anger.\\n\\n10\\n00:00:50,540 --> 00:00:56,270\\nThese acts of mass murder were intended to frighten our nation into chaos and retreat.\\n\\n11\\n00:00:56,270 --> 00:00:58,180\\nBut they have failed.\\n\\n12\\n00:00:58,180 --> 00:01:00,560\\nOur country is strong.\\n\\n13\\n00:01:00,560 --> 00:01:05,130\\nA great people has been moved to defend a great nation.\\n\\n14\\n00:01:05,130 --> 00:01:08,920\\nTerrorist attacks can shake the foundations of our biggest buildings.\\n\\n15\\n00:01:09,750 --> 00:01:12,240\\nBut they cannot touch the foundation of America.\\n\\n16\\n00:01:13,230 --> 00:01:18,890\\nThese acts shatter steel, but they cannot dent the steel of American resolve.\\n\\n17\\n00:01:19,930 --> 00:01:25,730\\nAmerica was targeted for attack because we\\'re the brightest beacon for freedom and opportunity in the world.\\n\\n18\\n00:01:26,600 --> 00:01:30,000\\nAnd no one will keep that light from shining.\\n\\n19\\n00:01:31,010 --> 00:01:33,480\\nToday, our nation saw evil.\\n\\n20\\n00:01:33,480 --> 00:01:35,420\\nThe very worst of human nature.\\n\\n21\\n00:01:36,140 --> 00:01:38,470\\nAnd we responded with the best of America.\\n\\n22\\n00:01:39,320 --> 00:01:41,930\\nWith the daring of our rescue workers.\\n\\n23\\n00:01:41,930 --> 00:01:47,800\\nWith the caring for strangers and neighbors who came to give blood, and help in any way they could.\\n\\n24\\n00:01:48,840 --> 00:01:54,680\\nImmediately following the first attack, I implemented our Government\\'s emergency response plans.\\n\\n25\\n00:01:55,530 --> 00:01:58,440\\nOur military is powerful, and is prepared.\\n\\n26\\n00:01:59,160 --> 00:02:05,040\\nOur emergency teams are working in New York City and Washington D.C. to help with local rescue efforts.\\n\\n27\\n00:02:05,820 --> 00:02:08,960\\nOur first priority is to get help to those who have been injured,\\n\\n28\\n00:02:09,590 --> 00:02:16,240\\nand to take every precaution to protect our citizens at home and around the world from further attacks.\\n\\n29\\n00:02:17,440 --> 00:02:20,260\\nThe functions of our government continue without interruption.\\n\\n30\\n00:02:21,270 --> 00:02:25,200\\nFederal agencies in Washington which had to be evacuated today,\\n\\n31\\n00:02:25,200 --> 00:02:30,040\\nare reopening for essential personnel tonight and will be open for business tomorrow.\\n\\n32\\n00:02:31,180 --> 00:02:37,060\\nOur financial institutions remain strong, and the American economy will be open for business as well.\\n\\n33\\n00:02:38,540 --> 00:02:41,820\\nThe search is underway for those who were behind these evil acts.\\n\\n34\\n00:02:42,900 --> 00:02:47,150\\nI have directed the full resources of our intelligence and law enforcement communities\\n\\n35\\n00:02:47,150 --> 00:02:50,980\\nto find those responsible and to bring them to justice.\\n\\n36\\n00:02:52,230 --> 00:02:58,810\\nWe will make no distinction between the terrorists who committed these acts and those who harbor them.\\n\\n37\\n00:03:00,350 --> 00:03:05,140\\nI appreciate so very much the members of Congress who have joined me in strongly condemning these attacks.\\n\\n38\\n00:03:05,970 --> 00:03:13,100\\nAnd on behalf of the American people, I thank the many world leaders who have called to offer their condolences and assistance.\\n\\n39\\n00:03:14,340 --> 00:03:21,290\\nAmerica and our friends and allies join with all those who want peace and security in the world,\\n\\n40\\n00:03:21,290 --> 00:03:24,670\\nand we stand together to win the war against terrorism.\\n\\n41\\n00:03:26,190 --> 00:03:29,740\\nTonight, I ask for your prayers for all those who grieve.\\n\\n42\\n00:03:31,170 --> 00:03:37,500\\nFor the children whose worlds have been shattered, for all whose sense of safety and security has been threatened.\\n\\n43\\n00:03:38,820 --> 00:03:45,420\\nAnd I pray they will be comforted by a Power greater than any of us, spoken through the ages in Psalm 23:\\n\\n44\\n00:03:46,390 --> 00:03:52,880\\n\"Even though I walk through the valley of the shadow of death, I fear no evil for you are with me.\"\\n\\n45\\n00:03:54,400 --> 00:03:59,760\\nThis is a day when all Americans from every walk of life unite in our resolve for justice and peace.\\n\\n46\\n00:04:00,890 --> 00:04:05,920\\nAmerica has stood down enemies before, and we will do so this time.\\n\\n47\\n00:04:07,470 --> 00:04:17,030\\nNone of us will ever forget this day, yet we go forward to defend freedom and all that is good and just in our world.\\n\\n48\\n00:04:17,950 --> 00:04:19,170\\nThank you.\\n\\n49\\n00:04:19,170 --> 00:04:20,580\\nGood night.\\n\\n50\\n00:04:20,580 --> 00:04:22,580\\nAnd God bless America.',\n", + " 'bytes': 5162,\n", + " 'sha1': 'nok4t8r59w7gaoiq9k8o1m8dmdkgf57',\n", + " 'parent_id': 226504939,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 86350474,\n", + " 'timestamp': '2013-01-02T04:38:34Z',\n", + " 'user': {'text': '68.37.121.146'},\n", + " 'page': {'id': 23523557,\n", + " 'title': 'En-us-hey.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:02,000 hey'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,000\\nhey',\n", + " 'bytes': 35,\n", + " 'sha1': '5y8uy0glk32pvahf62yo8jknkef8rua',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 541573540,\n", + " 'timestamp': '2021-03-12T03:30:38Z',\n", + " 'user': {'id': 2073340, 'text': 'Jdx'},\n", + " 'page': {'id': 23537891,\n", + " 'title': 'Tyrrell-Cosworth 002 (1971).ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/174.26.110.218|174.26.110.218]] ([[User talk:174.26.110.218|talk]]) to last revision by McZusatz',\n", + " 'text': '1\\n00:00:01,000 --> 00:00:08\\n(engine sound)',\n", + " 'bytes': 42,\n", + " 'sha1': '9esok9wh3gb92cjznig41ylcnf9pqal',\n", + " 'parent_id': 531660192,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 86418098,\n", + " 'timestamp': '2013-01-02T17:30:18Z',\n", + " 'user': {'id': 2450901, 'text': 'AlanKellyVerbatimIT'},\n", + " 'page': {'id': 23538337,\n", + " 'title': 'The Impact of Wikipedia - Sami Al-Mubarak and Mina Nagy Takla.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,26 --> 00:00:04,26 Whenever you type an Arabic word, you really can't find a credible article in Arabic language, 2 00:00:04,837 --> 00:00:10,087 an...'\",\n", + " 'text': '1\\n00:00:00,26 --> 00:00:04,26\\nWhenever you type an Arabic word, you really can\\'t find a credible article in Arabic language,\\n\\n2\\n00:00:04,837 --> 00:00:10,087\\nand you mostly will find forum articles, and these are just personal opinions; they are not credible content, \\n\\n3\\n00:00:10,461 --> 00:00:17,461\\nso we realized that we can not ignore or stay away from the fact that Wikipedia is the major chunk of Arabic content online, \\n\\n4\\n00:00:17,762 --> 00:00:23,239\\nand if we want to grow online content in Arabic, then we have to \"tackle\" Wikipedia,\\n\\n5\\n00:00:23,239 --> 00:00:27,258\\nso that\\'s why we realized that Wikipedia is a very important stakeholder to our initiative.\\n\\n6\\n00:00:27,689 --> 00:00:28,604\\nMy name is Mina Takla. \\n\\n7\\n00:00:29,094 --> 00:00:30,291\\nMy name is Sami Mubarak.\\n\\n8\\n00:00:30,291 --> 00:00:36,278\\nAnd we started Taghreedat an Arabic digital content initiative to increase the quality and quantity of Arabic content on the web.\\n\\n9\\n00:00:36,714 --> 00:00:41,202\\nEarlier this year we contacted the Wikimedia Foundation because we wanted to form a partnership with them.\\n\\n10\\n00:00:41,202 --> 00:00:44,736\\nWe wanted to increase the number of Arabic Wikipedia editors.\\n\\n11\\n00:00:45,142 --> 00:00:50,574\\nNow, Wikimedia Foundation has a very important Arabic language initiative of increasing the number of Arabic articles on Wikipedia\\n\\n12\\n00:00:50,574 --> 00:00:58,124\\nand continuing to be an increasing active editors who contribute substantially to increase the Arabic content on Wikipedia,\\n\\n13\\n00:00:58,124 --> 00:01:03,022\\nso we chose to work with the Foundation on increasing the number of editors, so we don\\'t have to build the community.\\n\\n14\\n00:01:03,458 --> 00:01:08,137\\nWe have a lot of experience with Wikimedia, especially our Twitter account which is our main communication channel.\\n\\n15\\n00:01:08,137 --> 00:01:16,028\\nWe have over 85,000 followers at this point, and we\\'ve been ranked third most influential non-personal Twitter account.\\n\\n16\\n00:01:16,028 --> 00:01:24,857\\nThe great thing about the community that we\\'re working with is they are all doing this without any money rewards, or without anything in return. \\n\\n17\\n00:01:24,857 --> 00:01:30,673\\nThe great thing about collaboration is that people are passionate about something, and they go the extra mile to achieve it.\\n\\n18\\n00:01:31,1 --> 00:01:34,818\\nCommunity is the sustainability of our initiative and of Wikipedia as well.\\n\\n19\\n00:01:34,818 --> 00:01:40,00\\nCommunity energizes us. They demand from us, and they tell us what to do, and they guide us on what to do.\\n\\n20\\n00:01:40,0 --> 00:01:45,43\\nThey inspire the change, and they tell you we want to work on this, and we can work on this, and we can deliver.\\n\\n21\\n00:01:45,427 --> 00:01:52,23\\nThey set the benchmark for themselves, and they do it, they compete on it, they collaborate for it, so it really inspires you.\\n\\n22\\n00:01:52,278 --> 00:01:55,78\\nThe crowd decides the cause, not the cause that inspires the crowd.\\n\\n23\\n00:01:56,018 --> 00:02:00,53\\nWhen we started speaking about Wikipedia, we thought it was going to be another - you know - \\n\\n24\\n00:02:00,526 --> 00:02:03,03\\nhere\\'s another Wikipedia program - come and join and everyone will be happy, \\n\\n25\\n00:02:03,208 --> 00:02:08,55\\nbut there was a missing element that we discovered that a lot of people didn\\'t know what is Wikipedia. \\n\\n26\\n00:02:08,547 --> 00:02:12,12\\nWhen we started speaking to them, we were speaking a different language and we realized that \\n\\n27\\n00:02:12,119 --> 00:02:17,47\\nwe have to come down to what the people want and listen to them, listen to their questions, and then answer that, \\n\\n28\\n00:02:17,466 --> 00:02:22,50\\nso we did tailor our messaging and our communication with everyone to - here\\'s the basics: \\n\\n29\\n00:02:22,5 --> 00:02:27,30\\nWikipedia is an open encyclopedia. Wikipedia doesn\\'t have hired editors that are doing all the work.\\n\\n30\\n00:02:27,297 --> 00:02:30,69\\nYou can be an editor. We are all editors. It\\'s my responsibility and yours, \\n\\n31\\n00:02:30,692 --> 00:02:33,83\\nThese messages were enough to spark the community.\\n\\n32\\n00:02:34,299 --> 00:02:38,40\\nWe ended up doing the first Arabic Wikipedia guide and people published over 70 pages \\n\\n33\\n00:02:38,399 --> 00:02:44,85\\nWe did the first workshop in the United Arab Emirates, which was highly attended; over 85 people came for the workshop.\\n\\n34\\n00:02:44,852 --> 00:02:50,04\\nThere\\'s a big need. There\\'s a big interest in it, and people really want to, but just don\\'t know how to, \\n\\n35\\n00:02:50,036 --> 00:02:57,04\\nso this is what keeps us going now, and we have a lot of plans to expand our project in different countries.\\n\\n36\\n00:02:57,11 --> 00:03:02,73\\nU.A.E. was the first platform, or the first launching pad for us, but we\\'re going to try this in different forms, different shapes,\\n\\n37\\n00:03:02,733 --> 00:03:04,12\\nand different countries now.\\n\\n38\\n00:03:04,115 --> 00:03:07,62\\nThis is what we do after 3 p.m. This is what we do after we finish work.\\n\\n39\\n00:03:07,62 --> 00:03:11,10\\nWe do this in the cafeteria. We do this in the basement. We do this in the car. \\n\\n40\\n00:03:11,103 --> 00:03:15,30\\nwherever we can, as long as there\\'s a connection, we sit down and do this, and when you see the results, \\n\\n41\\n00:03:15,298 --> 00:03:18,30\\nthis is what gets to you; that gets you hooked. \\n\\n42\\n00:03:18,418 --> 00:03:23,06\\nYou keep doing that day by day, and day by day, and you don\\'t feel how far you have established, or \\n\\n43\\n00:03:23,055 --> 00:03:26,53\\nhow far you went since the day you started, and until you meet someone, and they say, hey!\\n\\n44\\n00:03:26,533 --> 00:03:29,50\\nYou\\'re doing something inspirational, you\\'re doing something amazing, so \\n\\n45\\n00:03:31,663 --> 00:03:34,91\\nall of this is what the people don\\'t see. There\\'s a culture behind it.\\n\\n46\\n00:03:34,901 --> 00:03:35,89\\nThere\\'s a pulsing community behind the Wikipedia page that you see.\\n\\n47\\n00:03:35,907 --> 00:03:37,51\\nDirector: Victor Grigas \\n\\n48\\n00:03:37,506 --> 00:03:38,49\\nCodirector: David Grossman\\n\\n49\\n00:03:38,487 --> 00:03:39,35\\nProducer: Zack Exley\\n\\n50\\n00:03:39,349 --> 00:03:40,44\\nDirector of Photography: Pruitt Y. Allen\\n\\n51\\n00:03:40,438 --> 00:03:41,74\\nVideo Photographers: Jack Harris, Adam Parr, Matthew Storck \\n\\n52\\n00:03:41,737 --> 00:03:43,56\\nPortrait Photographers: Adam Novak, Karen Sayre\\n\\n53\\n00:03:43,555 --> 00:03:44,76\\nMakeup: Melissa Klein\\n\\n54\\n00:03:44,759 --> 00:03:46,58\\nInterviewers: Alma Chapa, Jonathan Curiel, Stephen Geer, Dan McSwain, \\n Corey O\\'Brien, Frank O\\'Brien, Jacob Wilson \\n\\n55\\n00:03:46,576 --> 00:03:48,02\\nProduction Coordinators: Megan Hernandez, Bryony Jones, Beatrice Springborn\\n\\n56\\n00:03:48,017 --> 00:03:48,61\\nProduction Assistants: Toby Hessenauer, Kristin Rigsby\\n\\n57\\n00:03:48,609 --> 00:03:49,23\\nVideo Editors: Justine Gendron, Victor Grigas, Jawad Qadir\\n\\n58\\n00:03:49,226 --> 00:03:49,69\\nWriter: Desirina Boskovich\\n\\n59\\n00:03:49,694 --> 00:03:50,12\\nTranscription Services: Kate Aleo, Michael Beattie, Karen Callier, Petro Leigh, Mimi \\n Li, Jacqui Pastor, Kristie Robinson, Brittany Turner, Susan Walling\\n\\n60\\n00:03:50,115 --> 00:03:50,40\\nEnglish Closed-Captioning: AlanKelly VerbatimIT\\n\\n61\\n00:03:50,403 --> 00:03:50,41\\n:)',\n", + " 'bytes': 7127,\n", + " 'sha1': 'j2svaqjelvo3ov0ha7acyi6xces092p',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 156983548,\n", + " 'timestamp': '2015-04-13T13:43:03Z',\n", + " 'user': {'text': '118.211.119.109'},\n", + " 'page': {'id': 23577473,\n", + " 'title': \"Six o' clock closing ABC.ogv.en.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:03,036 --> 00:00:08,908\\n<font color=\"#ffffff\">At last, 6 o\\'clock closing has been\\npushed into obscurity in Australia.</font>\\n\\n2\\n00:00:08,908 --> 00:00:14,768\\n<font color=\"#ffffff\">Tonight, South Australia joins all other\\nstates in abandoning the 6 o\\'clock swill.</font>\\n\\n3\\n00:00:14,768 --> 00:00:18,788\\n<font color=\"#ffffff\">Tonight, the bar doors are open.\\nTonight, Adelaide loses its</font>\\n\\n4\\n00:00:18,814 --> 00:00:22,833\\n<font color=\"#ffffff\">perhaps unfortunate reputation\\ninter-state as a \\'wowser city\\'.</font>\\n\\n5\\n00:00:22,858 --> 00:00:27,075\\n<font color=\"#ffffff\">Tonight the bars are crowded, but\\nthere was some doubt until just a</font>\\n\\n6\\n00:00:27,101 --> 00:00:31,255\\n<font color=\"#ffffff\">few days ago that the new licensing\\nlaws would come in on schedule.</font>\\n\\n7\\n00:00:31,280 --> 00:00:35,111\\n<font color=\"#ffffff\">The Liquor Licensing Bill was\\nonly passed by Parliament</font>\\n\\n8\\n00:00:35,137 --> 00:00:39,104\\n<font color=\"#ffffff\">last Tuesday, some 6 months\\nafter it was first introduced,</font>\\n\\n9\\n00:00:39,129 --> 00:00:44,163\\n<font color=\"#ffffff\">and it wasn\\'t until earlier today that\\nthe legislation itself was proclaimed.</font>\\n\\n10\\n00:00:44,188 --> 00:00:47,719\\n<font color=\"#ffffff\">But the new era in South\\nAustralian drinking has</font>\\n\\n11\\n00:00:47,745 --> 00:00:51,177\\n<font color=\"#ffffff\">begun, and both public,\\nand publican, are happy.</font>\\n\\n12\\n00:00:51,202 --> 00:00:54,162\\n<font color=\"#ff8080\">—Yeah, it\\'s very good I think.</font>\\n\\n13\\n00:00:56,706 --> 00:01:05,132\\n<font color=\"#ff8080\">I think the first couple of weeks it\\'ll be\\na novelty, but I think it\\'ll work itself out.</font>\\n\\n14\\n00:01:05,138 --> 00:01:07,138\\n<font color=\"#ff8080\">I think it\\'s quite a good thing.</font>\\n\\n15\\n00:01:08,426 --> 00:01:10,607\\n<font color=\"#ffff80\">—I think it\\'s a beautiful\\nthing, sir.</font>\\n\\n16\\n00:01:11,740 --> 00:01:14,020\\n<font color=\"#ffffff\">—Do you think you\\'ll be spending\\nmore time in hotels?</font>\\n\\n17\\n00:01:14,026 --> 00:01:19,531\\n<font color=\"#ffff80\">—Not really, but at least you\\ngot it, when you want it.</font>\\n\\n18\\n00:01:20,502 --> 00:01:24,312\\n<font color=\"#80ff80\">—It\\'s alright for some people,\\nI suppose, but I really</font>\\n\\n19\\n00:01:24,338 --> 00:01:28,014\\n<font color=\"#80ff80\">think if I\\'d gone to the vote, I\\nwouldn\\'t have voted for it.</font>\\n\\n20\\n00:01:28,039 --> 00:01:31,880\\n<font color=\"#ffffff\">—Why?</font>\\n<font color=\"#80ff80\">—I think a lot of homes will suffer.</font>\\n\\n21\\n00:01:31,905 --> 00:01:33,593\\n<font color=\"#ffffff\">—In what way?</font>\\n\\n22\\n00:01:33,619 --> 00:01:38,736\\n<font color=\"#80ff80\">—Little kiddies are left, and men\\nlike getting whassname—it\\'ll break</font>\\n\\n23\\n00:01:38,736 --> 00:01:43,949\\n<font color=\"#80ff80\">up a lot of homes. If I\\'d been to the\\nvote, I wouldn\\'t have voted for it.</font>\\n\\n24\\n00:01:43,974 --> 00:01:47,100\\n<font color=\"#ffffff\">—As a publican, are you\\nhappy with the new hours?</font>\\n\\n25\\n00:01:47,125 --> 00:01:50,438\\n<font color=\"#80ffff\">—When you\\'re in the trade\\nyou\\'ve gotta give it a go</font>\\n\\n26\\n00:01:50,464 --> 00:01:53,638\\n<font color=\"#80ffff\">haven\\'t you? How it\\'s\\ngonna go, I dunno.</font>\\n\\n27\\n00:01:53,663 --> 00:01:57,954\\n<font color=\"#ffffff\">—Do you think you\\'ll do more business?</font>\\n<font color=\"#80ffff\">—I think it would increase a bit, yes.</font>\\n\\n28\\n00:01:57,979 --> 00:02:04,310\\n<font color=\"#ffffff\">—Has it gone tonight as you\\'ve expected it?</font>\\n<font color=\"#80ffff\">—Yes, I think it\\'s been alright.</font>\\n\\n29\\n00:02:04,335 --> 00:02:08,536\\n<font color=\"#ffffff\">—Do you think it\\'ll maintain this?</font>\\n<font color=\"#80ffff\">—Well, I\\'m hoping so...</font>\\n\\n30\\n00:02:08,561 --> 00:02:14,762\\n<font color=\"#80ffff\">The usual 5 till 6 rush\\nwasn\\'t there tonight, but it</font>\\n\\n31\\n00:02:14,762 --> 00:02:21,195\\n<font color=\"#80ffff\">picked up about 7:30. It\\'s\\nbeen fairly good since then.</font>',\n", + " 'bytes': 3883,\n", + " 'sha1': 'mbramrgck584h9sugojr5jf3qs5i6iw',\n", + " 'parent_id': 156983438,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 207642204,\n", + " 'timestamp': '2016-09-24T15:00:49Z',\n", + " 'user': {'id': 238971, 'text': 'Papuass'},\n", + " 'page': {'id': 23584594,\n", + " 'title': '1937-05-10 Special Release - Zeppelin Explodes Scores Dead.ogv.lv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\ufeff1\\n00:00:07,000 --> 00:00:11,000\\nŠeit redzams Vācijas dirižablis \"Hindenburgs\", debesu karaliene,\\n\\n2\\n00:00:11,000 --> 00:00:15,151\\nfilmēts no \"Universal\" kinohronikas lidmašīnas, kā tas pārlido Ņujorku\\n\\n3\\n00:00:15,151 --> 00:00:18,123\\nsavā ceļā uz traģiskajām beigām Leikhērstā, Ņudžersijā.\\n\\n4\\n00:00:18,123 --> 00:00:20,678\\nTagad tas guļ Jūras spēku gaisa stacijā kā savērpusies metāla masa.\\n\\n5\\n00:00:20,678 --> 00:00:24,927\\nĪsi pēc tam, kad tika uzņemti šie kadri, kuri attēloja debesu kuģi\\n\\n6\\n00:00:24,927 --> 00:00:27,899\\nsalutējot miljoniem, kuri to vēroja no zemes savā pirmajā sezonas\\n\\n7\\n00:00:27,899 --> 00:00:32,032\\nceļojumā, lielais kuģis eksplodēja pietauvošanās brīdī un\\n\\n8\\n00:00:32,032 --> 00:00:35,538\\nmomentā uzliesmoja, paņemot sev gandrīz pusi no savu \\n\\n9\\n00:00:35,538 --> 00:00:40,531\\n99 pasažieru un apkalpes dzīvībām. Pretvēja dēļ kavējoties vairākas\\n\\n10\\n00:00:40,531 --> 00:00:44,292\\nstundas ceļā no Hamburgas, dirižablim bija jāizbēg no pērkona negaisa\\n\\n11\\n00:00:44,292 --> 00:00:47,938\\npie Džersijas krasta, pirms tas devās uz gaisa staciju un\\n\\n12\\n00:00:47,938 --> 00:00:51,444\\nsadūrās ar pietauvošanās mastu. Vējš ir nelabvēlīgs un pietauvošanās\\n\\n13\\n00:00:51,444 --> 00:00:54,765\\nir sarežģīta, bet tas viss ir mazsvarīgs laimīgo pasažieru pūlim,\\n\\n14\\n00:00:54,765 --> 00:00:58,735\\nkuri vēlas piezemēties pēc sava transatlantiskā ceļojuma.\\n\\n15\\n00:00:58,735 --> 00:01:04,378\\nLielais kuģis lēnām izgrozās un zemes apkalpe steidzas pie tauvām.\\n\\n16\\n00:01:04,378 --> 00:01:08,279\\nVēl pēc kādām desmit minūtēm lielais gaisa kuģis būtu kārtīgi pietauvots.\\n\\n17\\n00:01:08,279 --> 00:01:12,203\\nBet tiklīdz pasažieri sadrūzmējās pie logiem, lai novērotu pietauvošanos,\\n\\n18\\n00:01:12,203 --> 00:01:15,872\\nrēciens un pēkšņa uzliesmošana pie astes stabilizatora pārvērta kuģi\\n\\n19\\n00:01:15,872 --> 00:01:17,311\\nliesmojošā nezvērā.\\n\\n20\\n00:01:39,500 --> 00:01:43,643\\npasažieri un apkalpe vienmērīgā skaitā krita vai izleca\\n\\n21\\n00:01:43,643 --> 00:01:47,195\\nun tika aizvilkti drošībā pirms liesmojošā krāsns paņēma to dzīvības.\\n\\n22\\n00:01:47,195 --> 00:01:51,514\\nJūras spēku un armijas vīru varonīgs darbs, riskējot ar dzīvībām pie\\n\\n23\\n00:01:51,514 --> 00:01:56,251\\nlīdz baltkvēlei uzkarsušā skeleta, izglāba ne vienu vien apdullušu un\\n\\n24\\n00:01:56,251 --> 00:02:00,431\\npusapdegušu pasažieri no liesmojošā vraka. Bet vairumam no tiem, kuri bija iesprostoti\\n\\n25\\n00:02:00,431 --> 00:02:03,008\\nkvēlojošajā mudžeklī, nebija cerību!\\n\\n26\\n00:02:03,008 --> 00:02:08,070\\nLielākais brīnums ir tas, ka kāds šajā nelaimē spēja izdzīvot.\\n\\n27\\n00:02:13,666 --> 00:02:17,799\\n200 000 kubikmetru viegli uzliesmojošā ūdeņraža sadega\\n\\n28\\n00:02:17,799 --> 00:02:22,536\\nmazāk kā minūtes laikā. Simtiem tonnu degvielas deg\\n\\n29\\n00:02:22,536 --> 00:02:26,437\\nstundu vai ilgāk, ar saviem biezajiem, melnajiem dūmiem aizsedzot\\n\\n30\\n00:02:26,437 --> 00:02:27,598\\ntraģisko notikuma vietu.\\n\\n31\\n00:02:32,000 --> 00:02:37,025\\nVisā gaisa negadījumu vēsturē šis ir pats lielākais, pats briesmīgākais.\\n\\n32\\n00:02:37,025 --> 00:02:41,553\\nSlavēts kā luksusa gaisa laineris, Hindenburga briesmīgās beigas ir\\n\\n33\\n00:02:41,553 --> 00:02:46,453\\nšokējušas visu pasauli. Debesu lepnums sasniedz sava ceļojuma beigas.\\n\\n34\\n00:03:01,559 --> 00:03:05,034\\nSavīta, sapinusies masa no apdegušām sijām un \\n\\n35\\n00:03:05,034 --> 00:03:07,836\\ngabali no nomelnējuša audekla ir viss, kas palicis no lepnā\\n\\n36\\n00:03:07,836 --> 00:03:10,578\\nluksusa gaisa lainera Hindenburga, kas guļ\\n\\n37\\n00:03:10,578 --> 00:03:14,174\\nLekhērstas flotes bāzē. Mirušo sarakstā ir 35, bet\\n\\n38\\n00:03:14,174 --> 00:03:18,092\\nvēl desmit, ieskaitot kapteini Prasu, joprojām ir kritiskā stāvoklī.\\n\\n39\\n00:03:24,086 --> 00:03:26,710\\nAr nākamā rīta pirmo gaismu flotes inspekcija\\n\\n40\\n00:03:26,710 --> 00:03:29,130\\nkapteiņa Heinsa vadībā apskata vraku,\\n\\n41\\n00:03:29,130 --> 00:03:32,802\\nkamēr citi vēl kūpošajos gruvešos meklē iespējamu norādi tam,\\n\\n42\\n00:03:32,802 --> 00:03:36,041\\nkas izskaidrotu noslēpumaino katastrofu.\\n\\n43\\n00:03:36,041 --> 00:03:39,066\\nHindenburga paliekas netiks pārvietotas līdz\\n\\n44\\n00:03:39,066 --> 00:03:42,617\\nieradīsies Vācijas eksperts doktors Hugo Ekners, kurš vada\\n\\n45\\n00:03:42,617 --> 00:03:45,296\\nkomisiju, kas veiks izmeklēšanu vienlaicīgi ar\\n\\n46\\n00:03:45,296 --> 00:03:47,160\\nTirdzniecības departamentu.\\n\\n47\\n00:03:52,854 --> 00:03:56,096\\nVācijas vēstnieks Hanss Luters bija pirmais Reiha novērotājs,\\n\\n48\\n00:03:56,096 --> 00:03:59,742\\nkurš ieradās. Apmeklējot ievainotos tuvējās Leikvudas slimnīcā,\\n\\n49\\n00:03:59,742 --> 00:04:03,647\\nbet atsakoties komentēt jebko par katastrofu.\\n\\n50\\n00:04:03,647 --> 00:04:07,216\\nCik ātri iespējams, ievainotie, kurus var pārvietot, tiek nesti\\n\\n51\\n00:04:07,216 --> 00:04:10,544\\nuz ātrās palīdzības auto un pārvietoti uz Ņujorku, 60 jūdžu attālumā,\\n\\n52\\n00:04:10,544 --> 00:04:14,409\\nlai saņemtu visu, ko var piedāvāt medicīnas zinātne.\\n\\n53\\n00:04:14,409 --> 00:04:19,241\\nIetīti apsējos, tie var būt vairāk kā pateicīgi par savu brīnumaino \\n\\n54\\n00:04:19,241 --> 00:04:21,792\\nizglābšanos no liesmojošā nezvēra Hindenburga.\\n\\n55\\n00:04:26,646 --> 00:04:29,294\\nApkalpes locekļi, kas nebija nopietni cietuši, tika izmitināti\\n\\n56\\n00:04:29,294 --> 00:04:32,837\\nvirsnieku telpās flotes stacijā. Trīspadsmitgadīgais Verners Francs,\\n\\n57\\n00:04:32,837 --> 00:04:35,885\\nsalona zēns, ir jaunākais izdzīvojušais, liecinās\\n\\n58\\n00:04:35,885 --> 00:04:38,837\\nTirdzniecības departamenta komisijai, ko vada\\n\\n59\\n00:04:38,837 --> 00:04:42,267\\nkomandieris Rozendāls, flotes stacijas vadītājs, kā pirmais liecinieks.\\n\\n60\\n00:04:42,267 --> 00:04:46,156\\nBet eksperti uzskata, ka precīzs cēlonis lielākajai gaisa katastrofai\\n\\n61\\n00:04:46,156 --> 00:04:49,822\\nnetiks noskaidrots. Pār Hindenburgu karāsies jautājuma zīme\\n\\n62\\n00:04:49,822 --> 00:04:51,876\\nko nekad nevarēs aizmirst!',\n", + " 'bytes': 6032,\n", + " 'sha1': 'pp9d5imai4fuczggbncw8fugf0urdyh',\n", + " 'parent_id': 149994791,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 86586167,\n", + " 'timestamp': '2013-01-04T16:48:57Z',\n", + " 'user': {'id': 1183371, 'text': 'Sage Ross (WMF)'},\n", + " 'page': {'id': 23585014,\n", + " 'title': 'Editing basics - watchlists.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'captions',\n", + " 'text': '1\\n00:00:00,533 --> 00:00:02,867\\nThis screencast is about using watchlists\\n\\n2\\n00:00:02,867 --> 00:00:05,700\\nto keep up with discussions\\n\\n3\\n00:00:05,700 --> 00:00:09,033\\nand new edits to articles on Wikipedia.\\n\\n4\\n00:00:09,033 --> 00:00:11,033\\nEvery account has a watchlist,\\n\\n5\\n00:00:11,033 --> 00:00:13,783\\nwhich is a tool for keeping track of recent changes\\n\\n6\\n00:00:13,783 --> 00:00:16,491\\non Wikipedia pages you care about.\\n\\n7\\n00:00:16,491 --> 00:00:18,908\\nWikipedians typically check their watchlists\\n\\n8\\n00:00:18,908 --> 00:00:21,783\\non a daily basis, or even more frequently\\n\\n9\\n00:00:21,783 --> 00:00:24,408\\nwhen rapid discussions are going on.\\n\\n10\\n00:00:24,408 --> 00:00:26,616\\nThe watchlist shows which pages\\n\\n11\\n00:00:26,616 --> 00:00:28,700\\nand discussion have been active,\\n\\n12\\n00:00:28,700 --> 00:00:31,866\\nand lists the edit summaries other editors left--\\n\\n13\\n00:00:31,866 --> 00:00:35,200\\n--providing a quick overview of what\\'s going on.\\n\\n14\\n00:00:35,200 --> 00:00:36,408\\nFor many editors,\\n\\n15\\n00:00:36,408 --> 00:00:39,783\\nthe watchlist is like the beating heart of Wikipedia.\\n\\n16\\n00:00:39,783 --> 00:00:41,783\\nOn my watchlist, you can see that\\n\\n17\\n00:00:41,783 --> 00:00:44,700\\nsomeone has been editing one of the articles I watch,\\n\\n18\\n00:00:44,700 --> 00:00:46,575\\nand someone has added to a discussion\\n\\n19\\n00:00:46,575 --> 00:00:48,950\\non the article talk page as well.\\n\\n20\\n00:00:48,950 --> 00:00:51,158\\nTo add an article to your watchlist,\\n\\n21\\n00:00:51,158 --> 00:00:54,450\\nclick the star tab next to the search box.\\n\\n22\\n00:00:54,450 --> 00:00:58,241\\n(You can remove an article from your watchlist by clicking it again.)\\n\\n23\\n00:00:58,241 --> 00:00:59,991\\nAdding an article to your watchlist\\n\\n24\\n00:00:59,991 --> 00:01:04,741\\nautomatically adds the corresponding talk page, and vice versa.\\n\\n25\\n00:01:04,741 --> 00:01:08,366\\nBy default, only the most recent change to an article\\n\\n26\\n00:01:08,366 --> 00:01:10,158\\nshows up in the watchlist,\\n\\n27\\n00:01:10,158 --> 00:01:13,575\\nand it only tracks changes over the last three days.\\n\\n28\\n00:01:13,575 --> 00:01:15,783\\nYou can adjust your watchlist settings by\\n\\n29\\n00:01:15,783 --> 00:01:20,158\\ngoing to \"Preferences\" and then the \"watchlist\" tab.\\n\\n30\\n00:01:20,158 --> 00:01:21,658\\nFor newcomers, it may be useful to\\n\\n31\\n00:01:21,658 --> 00:01:24,156\\nincrease the number of days displayed,\\n\\n32\\n00:01:24,156 --> 00:01:27,033\\nand to enable several advanced options:\\n\\n33\\n00:01:27,033 --> 00:01:31,283\\n\"Expand watchlist to show all changes, not just the most recent\",\\n\\n34\\n00:01:31,283 --> 00:01:35,033\\nand \"Add pages I edit to my watchlist\".\\n\\n35\\n00:01:35,033 --> 00:01:39,075\\nClick \"save\" to turn on the new options.\\n\\n36\\n00:01:39,075 --> 00:01:40,325\\nThis will make it easier to keep track\\n\\n37\\n00:01:40,325 --> 00:01:43,116\\nof the pages you\\'re working on.\\n\\n38\\n00:01:43,116 --> 00:01:46,075\\nAs you edit more pages and your watchlist grows,\\n\\n39\\n00:01:46,075 --> 00:01:49,991\\nit may make sense to revisit some of those settings.\\n\\n40\\n00:01:49,991 --> 00:01:53,658\\nSome key kinds of pages you may want to add to your watchlist include:\\n\\n41\\n00:01:53,658 --> 00:01:56,073\\narticles you\\'ve contributed to;\\n\\n42\\n00:01:56,073 --> 00:01:58,616\\nthe talk pages of people you\\'ve contacted--\\n\\n43\\n00:01:58,616 --> 00:02:02,283\\n--in case they respond on their own talk page rather than yours--\\n\\n44\\n00:02:02,283 --> 00:02:07,408\\n--and any project pages you\\'re connected to, like WikiProjects.\\n\\n45\\n00:02:07,408 --> 00:02:09,739\\nTo learn more about watchlists,\\n\\n46\\n00:02:09,739 --> 00:02:13,700\\ngo the page \"Help:Watching pages\".\\n\\n47\\n00:02:13,700 --> 99:59:59,000\\nHappy editing!',\n", + " 'bytes': 3607,\n", + " 'sha1': 'ici61n4jbtl78dz43lpfqdp78wg5s5u',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 86903824,\n", + " 'timestamp': '2013-01-07T14:13:02Z',\n", + " 'user': {'id': 1339061, 'text': 'Curious 1987'},\n", + " 'page': {'id': 23666627,\n", + " 'title': 'Sv-alphabet.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:01,460 Aa 2 00:00:1,760 --> 00:00:03,010 Bb'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,460\\nAa\\n\\n2\\n00:00:1,760 --> 00:00:03,010\\nBb',\n", + " 'bytes': 69,\n", + " 'sha1': 'kqh0lmmuo674ys9fazdhhdqcug1jdq5',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 86913112,\n", + " 'timestamp': '2013-01-07T16:16:06Z',\n", + " 'user': {'id': 1339061, 'text': 'Curious 1987'},\n", + " 'page': {'id': 23666667,\n", + " 'title': 'Sv-alphabet.ogg.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,560\\nAa\\n\\n2\\n00:00:01,760 --> 00:00:03,010\\nBb\\n\\n3\\n00:00:03,130 --> 00:00:04,740\\nCc\\n\\n4\\n00:00:04,860 --> 00:00:06,020\\nDd\\n\\n5\\n00:00:06,300 --> 00:00:07,640\\nEe\\n\\n6\\n00:00:07,870 --> 00:00:09,100\\nFf\\n\\n7\\n00:00:09,270 --> 00:00:10,270\\nGg\\n\\n8\\n00:00:10,630 --> 00:00:12,000\\nHh\\n\\n9\\n00:00:12,100 --> 00:00:13,320\\nIi\\n\\n10\\n00:00:13,440 --> 00:00:14,830\\nJj\\n\\n11\\n00:00:14,93 --> 00:00:16,31\\nKk\\n\\n12\\n00:00:16,36 --> 00:00:17,67\\nLl\\n\\n13\\n00:00:17,78 --> 00:00:19,01\\nMm\\n\\n14\\n00:00:19,10 --> 00:00:20,04\\nNn\\n\\n15\\n00:00:20,47 --> 00:00:21,68\\nOo\\n\\n16\\n00:00:21,78 --> 00:00:23,24\\nPp\\n\\n17\\n00:00:23,30 --> 00:00:24,63\\nQq\\n\\n18\\n00:00:24,69 --> 00:00:25,97\\nRr\\n\\n19\\n00:00:26,05 --> 00:00:27,16\\nSs\\n\\n20\\n00:00:27,25 --> 00:00:28,51\\nTt\\n\\n21\\n00:00:28,60 --> 00:00:29,77\\nUu\\n\\n22\\n00:00:29,83 --> 00:00:31,01\\nVv',\n", + " 'bytes': 781,\n", + " 'sha1': '3m4fhejgpuiadim9l2n39fqjf6uu32b',\n", + " 'parent_id': 86912867,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 86950189,\n", + " 'timestamp': '2013-01-08T00:05:04Z',\n", + " 'user': {'id': 1188086, 'text': 'Comrade Graham'},\n", + " 'page': {'id': 23678008,\n", + " 'title': 'Mike Tulley Interview - October 6 2010.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Imported captions from YouTube source.',\n", + " 'text': '\\ufeff1\\n00:00:00,959 --> 00:00:03,432\\n>> INTERVIEWER:\\nOkay, this is Mike Tulley.\\n\\n2\\n00:00:04,000 --> 00:00:07,113\\n>> MIKE:\\nHi, hi I\\'m Mike Tulley.\\n\\n3\\n00:00:12,049 --> 00:00:16,259\\n>> INTERVIEWER:\\nBriefly describe your family background,\\neducation, upbringing, et cetera.\\n\\n4\\n00:00:16,259 --> 00:00:17,680\\n>> MIKE:\\nI was born\\n\\n5\\n00:00:17,680 --> 00:00:24,269\\nin the U.S. military hospital, in\\nthe U.S. canal zone in Ancón\\n\\n6\\n00:00:24,269 --> 00:00:25,529\\nwhich was, uh,\\n\\n7\\n00:00:25,529 --> 00:00:29,749\\nmostly a military and, and,\\nU.S. worker barracks town\\n\\n8\\n00:00:29,749 --> 00:00:32,249\\nnear Balboa, Panama.\\n\\n9\\n00:00:32,249 --> 00:00:34,620\\nUh... That was in 1948.\\n\\n10\\n00:00:34,620 --> 00:00:37,819\\nUh... We left there when I\\nwas only a few months old.\\n\\n11\\n00:00:37,819 --> 00:00:40,080\\nMoved up to,\\n\\n12\\n00:00:40,080 --> 00:00:44,180\\nuh, Washington state, eastern Washington\\nstate, where my father worked\\n\\n13\\n00:00:44,180 --> 00:00:46,430\\non a dam construction project.\\n\\n14\\n00:00:46,430 --> 00:00:52,270\\nAnd, my mother was raising me, some\\nsheep, and some chickens on a little farm.\\n\\n15\\n00:00:52,270 --> 00:00:54,260\\nShe received a telegram...\\n\\n16\\n00:00:54,260 --> 00:00:56,460\\nBack then you received those on paper.\\n\\n17\\n00:00:56,460 --> 00:01:01,000\\nAnd uh... uh, asking if\\nmy father Patrick\\n\\n18\\n00:01:01,000 --> 00:01:02,650\\nwanted a job\\n\\n19\\n00:01:02,650 --> 00:01:07,010\\non some U.S. foreign aid Marshal Plan\\n\\n20\\n00:01:07,010 --> 00:01:10,140\\nconstruction project in Germany.\\n\\n21\\n00:01:10,140 --> 00:01:14,950\\nUh... So my mother immediately answered\\nyes to the telegram, sent back a message\\n\\n22\\n00:01:14,950 --> 00:01:17,050\\nthat same night...\\n\\n23\\n00:01:17,050 --> 00:01:21,010\\nsigning my father\\'s name to it,\\naccepting the job on his behalf\\n\\n24\\n00:01:21,010 --> 00:01:23,290\\nUh... Sold the farm\\n\\n25\\n00:01:23,290 --> 00:01:27,270\\nsold the sheep, sold the chickens, and by\\nthe time my father got home from his\\n\\n26\\n00:01:27,270 --> 00:01:29,080\\nshift a few hours later\\n\\n27\\n00:01:29,080 --> 00:01:30,870\\nuh... she was packing.\\n\\n28\\n00:01:30,870 --> 00:01:32,549\\n[Laughs aloud]\\n\\n29\\n00:01:32,549 --> 00:01:33,689\\nUh... She wasn\\'t\\n\\n30\\n00:01:33,689 --> 00:01:36,770\\ngoing to stay in another\\nlittle prairie town that really\\nwasn\\'t much different\\n\\n31\\n00:01:36,770 --> 00:01:39,230\\nfrom the one she\\'d grown up in.\\n\\n32\\n00:01:39,230 --> 00:01:42,390\\nThey both love telling that story.\\n\\n33\\n00:01:42,390 --> 00:01:45,350\\nWe all would have headed\\noff to Germany at that point,\\nexcept there\\n\\n34\\n00:01:45,350 --> 00:01:45,979\\nwasn\\'t\\n\\n35\\n00:01:45,979 --> 00:01:48,570\\nreally any housing for\\n\\n36\\n00:01:48,570 --> 00:01:49,300\\nAmerican\\n\\n37\\n00:01:49,300 --> 00:01:51,439\\nfamilies in Germany.\\n\\n38\\n00:01:51,439 --> 00:01:56,480\\nSo, my father headed off to Germany to\\nstart the job and my mother and I...\\n\\n39\\n00:01:56,480 --> 00:01:58,299\\nI would have been about...\\n\\n40\\n00:01:58,299 --> 00:02:00,430\\ntwo years old by this time.\\n\\n41\\n00:02:00,430 --> 00:02:03,350\\nWent off to Italy, uh, too\\n\\n42\\n00:02:03,350 --> 00:02:06,370\\nLivorno or Leghorn as the\\nEnglish call it,\\n\\n43\\n00:02:06,370 --> 00:02:08,240\\nuh, where there was\\n\\n44\\n00:02:08,240 --> 00:02:13,279\\nI guess a U.S. Navy base and my\\nuncle who was in the Navy\\n\\n45\\n00:02:13,279 --> 00:02:15,299\\nwas serving at that time.\\n\\n46\\n00:02:15,299 --> 00:02:18,639\\nAnd we lived with them for a few months\\nuntil we could rejoin my father\\n\\n47\\n00:02:18,639 --> 00:02:19,859\\nin Germany.\\n\\n48\\n00:02:19,859 --> 00:02:22,840\\nUh... We lived in Germany for well...\\n\\n49\\n00:02:22,840 --> 00:02:27,269\\nI went to kindergarten there,\\nin a German kindergarten, learned\\na little bit of German\\n\\n50\\n00:02:27,269 --> 00:02:29,419\\nand then I went to\\n\\n51\\n00:02:29,419 --> 00:02:31,510\\nfirst and second grade\\n\\n52\\n00:02:31,510 --> 00:02:35,489\\nin a French school for...\\n\\n53\\n00:02:35,489 --> 00:02:39,980\\nI guess we were in the French occupied\\nzone of Germany, as it was known then.\\n\\n54\\n00:02:39,980 --> 00:02:42,519\\nSo, I went to a school for\\n\\n55\\n00:02:42,519 --> 00:02:48,579\\nFrench dependent children and\\nlearned French in a hurry as almost\\nno one there spoke English.\\n\\n56\\n00:02:48,579 --> 00:02:53,539\\nThat would\\'ve been 1956, we\\nmoved to Casablanca Morocco\\n\\n57\\n00:02:53,539 --> 00:02:58,709\\nwhich was a beautiful city\\nand another U.S. foreign aid\\nconstruction project my\\n\\n58\\n00:02:58,709 --> 00:03:00,279\\nfather was working on.\\n\\n59\\n00:03:00,279 --> 00:03:04,589\\nWe were only there for about six months\\nbefore of there was some dispute over\\n\\n60\\n00:03:04,589 --> 00:03:08,189\\nthe succession to the\\nthrone and uh...\\n\\n61\\n00:03:08,189 --> 00:03:12,739\\nthe crown prince and, uh, his uncle\\nor something got into a bit of a\\n\\n62\\n00:03:12,739 --> 00:03:16,439\\ndispute and the Americans were\\nadvised to get out in a hurry...\\n\\n63\\n00:03:16,439 --> 00:03:19,869\\nUh, we left rather quickly\\nI remember uh...\\n\\n64\\n00:03:19,869 --> 00:03:25,499\\nuh... armed men with rifles and burnooses\\nby the side of the road uh...\\n\\n65\\n00:03:25,499 --> 00:03:30,409\\nIt was very picturesque,\\nbut apparently dangerous and\\nuh... we got out of there\\n\\n66\\n00:03:30,409 --> 00:03:33,129\\nand uh... my father took another job\\n\\n67\\n00:03:33,129 --> 00:03:37,309\\nin Pakistan in Karachi, which\\nwas then the capital\\n\\n68\\n00:03:37,309 --> 00:03:38,499\\nA...\\n\\n69\\n00:03:38,499 --> 00:03:40,419\\nA seaport town,\\n\\n70\\n00:03:40,419 --> 00:03:45,859\\nuh, still swollen with refugees from\\nthe partition of India and Pakistan.\\n\\n71\\n00:03:45,859 --> 00:03:47,449\\nAnd we lived there\\n\\n72\\n00:03:47,449 --> 00:03:51,349\\nfor a bit over four\\nyears, I went to\\n\\n73\\n00:03:51,349 --> 00:03:53,409\\na school there that was uh...\\n\\n74\\n00:03:53,409 --> 00:03:54,620\\nrun for\\n\\n75\\n00:03:54,620 --> 00:03:59,629\\ndependence of American employees. It\\nwas not a particularly good school but\\n\\n76\\n00:03:59,629 --> 00:04:03,079\\nit was supposedly part of the\\nAmerican school system\\n\\n77\\n00:04:03,079 --> 00:04:04,129\\nand I\\n\\n78\\n00:04:04,129 --> 00:04:06,329\\nkind of survived the experience.\\n\\n79\\n00:04:06,329 --> 00:04:07,269\\nUh...\\n\\n80\\n00:04:07,269 --> 00:04:09,049\\nAfter a few years there\\n\\n81\\n00:04:09,049 --> 00:04:11,520\\nwe moved on to\\n\\n82\\n00:04:11,520 --> 00:04:13,979\\nTehran Iran.\\n\\n83\\n00:04:13,979 --> 00:04:15,459\\nUh...\\n\\n84\\n00:04:15,459 --> 00:04:19,810\\nAnother, uh, another U.S. foreign\\naid construction project.\\n\\n85\\n00:04:19,810 --> 00:04:22,310\\nAnd then I, uh...\\n\\n86\\n00:04:22,310 --> 00:04:25,340\\nIt was time for me to go\\nto high school and uh...\\n\\n87\\n00:04:25,340 --> 00:04:29,310\\nI came back to the United States\\nand went to a boarding school in\\nPennsylvania.\\n\\n88\\n00:04:29,310 --> 00:04:35,009\\nThis was an American prep school,\\nkind of modelled after the English\\npublic schools\\n\\n89\\n00:04:35,009 --> 00:04:37,959\\nin that it was intended to be\\n\\n90\\n00:04:37,959 --> 00:04:39,290\\na school for the...\\n\\n91\\n00:04:39,290 --> 00:04:41,229\\nthe sons of the elite.\\n\\n92\\n00:04:41,229 --> 00:04:44,050\\nAnd, uh, it carried with it uh...\\n\\n93\\n00:04:44,050 --> 00:04:44,800\\nA lot of\\n\\n94\\n00:04:44,800 --> 00:04:46,379\\nclass attitude\\n\\n95\\n00:04:46,379 --> 00:04:47,479\\nbaggage\\n\\n96\\n00:04:47,479 --> 00:04:48,449\\nwhich I\\n\\n97\\n00:04:48,449 --> 00:04:50,349\\ntried to buy into\\n\\n98\\n00:04:50,349 --> 00:04:51,159\\nand\\n\\n99\\n00:04:51,159 --> 00:04:53,280\\nfailed. [Laughs]\\n\\n100\\n00:04:53,280 --> 00:04:55,840\\nUh... I suppose it had been my\\n\\n101\\n00:04:55,840 --> 00:04:58,659\\nparents intention\\n\\n102\\n00:04:58,659 --> 00:05:01,629\\nto make me upwardly class mobile.\\n\\n103\\n00:05:01,629 --> 00:05:03,050\\nUh, it...\\n\\n104\\n00:05:03,050 --> 00:05:07,210\\nIt was a good intention, I suppose on\\ntheir part, but it didn\\'t really work out.\\n\\n105\\n00:05:07,210 --> 00:05:11,840\\nHowever, I went there for four years and,\\nuh, did okay academically\\n\\n106\\n00:05:11,840 --> 00:05:15,490\\nand graduated in 1966.\\n\\n107\\n00:05:15,490 --> 00:05:16,160\\nGoing...\\n\\n108\\n00:05:16,160 --> 00:05:20,690\\nThen getting into Stanford\\nuniversity intending to do a\\ndegree in electrical\\n\\n109\\n00:05:20,690 --> 00:05:22,599\\nengineering.\\n\\n110\\n00:05:22,599 --> 00:05:25,739\\nI choose Stanford because they had\\n\\n111\\n00:05:25,739 --> 00:05:30,259\\nsomething called the\\n\\'freshman seminar programs\\' in\\nwhich their most illustrious\\n\\n112\\n00:05:30,259 --> 00:05:32,310\\nsenior professors\\n\\n113\\n00:05:32,310 --> 00:05:33,290\\nactually\\n\\n114\\n00:05:33,290 --> 00:05:36,389\\nhad small group seminars with\\n\\n115\\n00:05:36,389 --> 00:05:38,689\\nfirst-year university students.\\n\\n116\\n00:05:38,689 --> 00:05:43,779\\nI got to be in a small\\ngroup seminar with, uh, professor\\nWilliam Shockley;\\n\\n117\\n00:05:43,779 --> 00:05:47,439\\nNobel Prize for the invention\\nof the transistor.\\n\\n118\\n00:05:47,439 --> 00:05:51,159\\nI was excited about this.\\nUh, I was going to get in on\\nthe ground floor of,\\n\\n119\\n00:05:51,159 --> 00:05:54,350\\nuh, electrical engineering\\nin the new field of\\n\\n120\\n00:05:54,350 --> 00:05:57,629\\nsemiconductor engineering and physics.\\n\\n121\\n00:05:57,629 --> 00:05:59,659\\nUh...\\n\\n122\\n00:05:59,659 --> 00:06:02,669\\nI did have kind of a good\\ntime Stanford, uh, but\\n\\n123\\n00:06:02,669 --> 00:06:06,129\\nunfortunately the freshman\\nseminar didn\\'t work out very\\nwell because it\\n\\n124\\n00:06:06,129 --> 00:06:10,150\\nturned out that, uh, Professor Shockley\\ndidn\\'t actually want to teach us\\n\\n125\\n00:06:10,150 --> 00:06:13,360\\nanything about solid-state physics\\n\\n126\\n00:06:13,360 --> 00:06:14,029\\nI\\'ve\\n\\n127\\n00:06:14,029 --> 00:06:14,850\\nsince seen...\\n\\n128\\n00:06:14,850 --> 00:06:18,090\\nRead writers who questioned whether he\\neven knew anything about solid-state\\n\\n129\\n00:06:18,090 --> 00:06:22,840\\nphysics. Uh, particularly\\nsome of his graduate students who,\\nuh, apparently\\n\\n130\\n00:06:22,840 --> 00:06:26,319\\ndid most of the work on the\\ninvention of the transistor\\n\\n131\\n00:06:26,319 --> 00:06:30,579\\nBut uh, Shockley was really\\nmuch more interested in teaching\\nus his theories\\n\\n132\\n00:06:30,579 --> 00:06:33,279\\nof education and racial intelligence.\\n\\n133\\n00:06:33,279 --> 00:06:37,029\\nUh, he was particularly\\nfond of the theory that white\\npeople were smarter\\n\\n134\\n00:06:37,029 --> 00:06:41,089\\nthan black people and you could prove it\\nusing U.S. Army intelligence...\\n\\n135\\n00:06:41,089 --> 00:06:42,460\\nintelligence tests\\n\\n136\\n00:06:42,460 --> 00:06:45,610\\nand Stanford--Binet IQ tests\\n\\n137\\n00:06:45,610 --> 00:06:48,409\\nUh, I was uh...\\n\\n138\\n00:06:48,409 --> 00:06:50,550\\nBrash, self-righteous,\\n\\n139\\n00:06:50,550 --> 00:06:53,450\\nand determined to tell him,\\n\\n140\\n00:06:53,450 --> 00:06:55,599\\nquite loudly, that he was wrong.\\n\\n141\\n00:06:55,599 --> 00:06:56,380\\nUh...\\n\\n142\\n00:06:56,380 --> 00:07:00,009\\nThis didn\\'t work out very well,\\nand I think I may have been the\\nonly freshman at\\n\\n143\\n00:07:00,009 --> 00:07:04,590\\nStanford ever to fail\\na freshman seminar.\\n[Laughs]\\n\\n144\\n00:07:04,590 --> 00:07:09,240\\nThis discouraged me a bit\\nfrom electrical engineering\\num...\\n\\n145\\n00:07:09,240 --> 00:07:14,619\\nand I also noticed that all\\nthe graduate students in electrical\\nengineering were...\\n\\n146\\n00:07:14,619 --> 00:07:18,059\\nTall, thin, pasty faced\\n\\n147\\n00:07:18,059 --> 00:07:22,809\\npimply young men with their collars\\nbuttoned up too tight and large\\n\\n148\\n00:07:22,809 --> 00:07:24,620\\nslide rules hanging on their belts\\n\\n149\\n00:07:24,620 --> 00:07:26,319\\nand a look of, of,\\n\\n150\\n00:07:26,319 --> 00:07:27,199\\nconstant\\n\\n151\\n00:07:27,199 --> 00:07:29,469\\nkind of pallid constipation.\\n\\n152\\n00:07:29,469 --> 00:07:32,779\\nIt really didn\\'t look\\nlike they were having any fun\\nat all. So, I got involved\\n\\n153\\n00:07:32,779 --> 00:07:36,300\\nin things like campus radio\\n\\n154\\n00:07:36,300 --> 00:07:41,879\\nand the anti-draft movement the\\nantiwar movement, uh,\\n\\n155\\n00:07:41,879 --> 00:07:48,509\\nmusic uh... Uh, some experimentation\\nwith drugs, uh, and, uh, discovered\\n\\n156\\n00:07:48,509 --> 00:07:51,229\\nhaving a social life was\\na whole lot of fun.\\n\\n157\\n00:07:51,229 --> 00:07:53,109\\nOkay, next question.\\n\\n158\\n00:07:53,109 --> 00:07:57,129\\n>> INTERVIEWER:\\nThe military was pretty important\\nin your family then?\\n\\n159\\n00:07:57,129 --> 00:07:59,460\\n>> MIKE:\\nYes um... My father had\\n\\n160\\n00:07:59,460 --> 00:08:04,849\\nserved in the U.S. army\\nduring the Second World War\\nas a uh... I think he\\'d\\n\\n161\\n00:08:04,849 --> 00:08:07,130\\nmade it to the rank of captain\\n\\n162\\n00:08:07,130 --> 00:08:09,110\\nbecause he\\'d been a\\ncivil engineer he\\'d\\n\\n163\\n00:08:09,110 --> 00:08:12,689\\ngotten a commission, gone in\\nas a second lieutenant\\n\\n164\\n00:08:12,689 --> 00:08:15,309\\nbeen promoted to captain\\nby the end of the war.\\n\\n165\\n00:08:15,309 --> 00:08:22,309\\nMy uncle Howard was the\\nnavy man who made it to the\\nrank of commander,\\n\\n166\\n00:08:22,489 --> 00:08:24,859\\nI think. My uncle Dave,\\n\\n167\\n00:08:24,859 --> 00:08:26,979\\nwho was my father\\'s oldest brother\\n\\n168\\n00:08:26,979 --> 00:08:29,580\\nwas a career Army man\\n\\n169\\n00:08:29,580 --> 00:08:31,039\\nand uh...\\n\\n170\\n00:08:31,039 --> 00:08:34,820\\nagain in the U.S. Army Corps of\\nEngineers and...\\n\\n171\\n00:08:34,820 --> 00:08:38,080\\nrose to the rank of major general.\\n\\n172\\n00:08:38,080 --> 00:08:39,490\\nand I have a\\n\\n173\\n00:08:39,490 --> 00:08:41,439\\ngreat-grandfather\\n\\n174\\n00:08:41,439 --> 00:08:43,580\\nDay\\n\\n175\\n00:08:43,580 --> 00:08:44,780\\nWho was...\\n\\n176\\n00:08:44,780 --> 00:08:47,200\\nI think a one of the youngest\\n\\n177\\n00:08:47,200 --> 00:08:48,960\\npeople to serve\\n\\n178\\n00:08:48,960 --> 00:08:52,910\\nin the union army in the\\nU.S. Civil War.\\n\\n179\\n00:08:52,910 --> 00:08:55,300\\nSo, the, the family has a long, uh,\\n\\n180\\n00:08:55,300 --> 00:08:57,660\\na long military history.\\n\\n181\\n00:08:57,660 --> 00:09:00,899\\n>> INTERVIEWER:\\nAs you mentioned you were\\ninvolved in antiwar movements\\n\\n182\\n00:09:00,899 --> 00:09:05,720\\nwhat attitudes did you\\nand your family members and friends\\nhold towards the Vietnam War?\\n\\n183\\n00:09:06,720 --> 00:09:12,730\\n>> MIKE:\\nWell, my family mostly held the attitude that\\nyou did what the government told you to do\\n\\n184\\n00:09:12,730 --> 00:09:19,240\\nUh... And they may have had\\ntheir own opinions on whether\\nit was a very, uh,\\n\\n185\\n00:09:19,240 --> 00:09:23,510\\nwhether it was a wise idea for the U.S.\\nto get involved in that war or not.\\n\\n186\\n00:09:23,510 --> 00:09:26,610\\nBut they mostly took the\\nmilitary attitude that you\\ndid what you were\\n\\n187\\n00:09:26,610 --> 00:09:28,140\\nordered to do.\\n\\n188\\n00:09:28,140 --> 00:09:32,320\\nUh... Some of them I suppose might have\\nbeen enthusiastic supporters of it and\\n\\n189\\n00:09:32,320 --> 00:09:34,390\\nothers might have thought it was a\\n\\n190\\n00:09:34,390 --> 00:09:36,890\\nstupid war to get involved in but\\n\\n191\\n00:09:36,890 --> 00:09:37,890\\nthey weren\\'t...\\n\\n192\\n00:09:37,890 --> 00:09:42,290\\nactively in opposition to it, and so far\\nas I knew I was the only member of my\\n\\n193\\n00:09:42,290 --> 00:09:43,500\\nfamily\\n\\n194\\n00:09:43,500 --> 00:09:47,400\\nwho was. Although, many of them questioned\\nthe draft particularly. And there was a\\n\\n195\\n00:09:47,400 --> 00:09:51,440\\ndifference between being opposed to the\\ndraft and being opposed to the war back then.\\n\\n196\\n00:09:51,440 --> 00:09:53,380\\nBut I was...\\n\\n197\\n00:09:53,380 --> 00:09:57,080\\nEventually, after thinking\\nit through some found that I was\\nopposed both, quite strongly.\\n\\n198\\n00:09:57,080 --> 00:09:59,390\\n>> INTERVIEWER:\\nSo where you drafted?\\n\\n199\\n00:09:59,390 --> 00:10:02,760\\n>> MIKE:\\nI was eventually drafted yes uh...\\n\\n200\\n00:10:02,760 --> 00:10:04,440\\nMy uh...\\n\\n201\\n00:10:04,440 --> 00:10:08,140\\nMy adventures in university only\\nlasted for about a year,\\n\\n202\\n00:10:08,140 --> 00:10:09,930\\nbefore I realized that I\\n\\n203\\n00:10:09,930 --> 00:10:13,899\\nwasn\\'t quite sure of why\\nI was going to university. I\\nwas no longer interested in\\n\\n204\\n00:10:13,899 --> 00:10:16,870\\ngetting a degree in\\nelectrical engineering,\\nI was\\n\\n205\\n00:10:16,870 --> 00:10:21,260\\nvery involved in the\\nanti-draft movement, one of\\nmy heroes was the uh...\\n\\n206\\n00:10:21,260 --> 00:10:25,640\\nthen president of the\\nStanford university student\\ncouncil David Harris\\n\\n207\\n00:10:25,640 --> 00:10:29,250\\nand, uh, he had gotten himself uh...\\n\\n208\\n00:10:29,250 --> 00:10:34,450\\narrested for refusing to be drafted\\nand, uh, gone off to prison.\\n\\n209\\n00:10:34,450 --> 00:10:36,880\\nAnd, I planed to do the same thing.\\n\\n210\\n00:10:36,880 --> 00:10:40,520\\nSo I took a leave of absence\\nfrom the university,\\n\\n211\\n00:10:40,520 --> 00:10:43,660\\nto figure out when I was\\ndoing with my life.\\n\\n212\\n00:10:43,660 --> 00:10:46,340\\nAnd, uh, immediately...\\n\\n213\\n00:10:46,340 --> 00:10:49,810\\nGot drafted since I no longer\\nhad my student deferment.\\n\\n214\\n00:10:49,810 --> 00:10:50,869\\nUm...\\n\\n215\\n00:10:50,869 --> 00:10:55,449\\nI had originally planned refuse\\nto be drafted, but unfortunately\\nat that time\\n\\n216\\n00:10:55,449 --> 00:10:58,460\\nmy father had been working\\n\\n217\\n00:10:58,460 --> 00:11:02,980\\non a dam building project in\\nOroville California and my parents\\nhad settled\\n\\n218\\n00:11:02,980 --> 00:11:05,150\\ndown there, finally in the United States.\\n\\n219\\n00:11:05,150 --> 00:11:06,770\\nBought a house.\\n\\n220\\n00:11:06,770 --> 00:11:08,819\\nAnd then the\\n\\n221\\n00:11:08,819 --> 00:11:11,639\\ndam building project had ended,\\n\\n222\\n00:11:11,639 --> 00:11:14,810\\nand he had been laid off, and\\nthey were having a hard time\\n\\n223\\n00:11:14,810 --> 00:11:16,170\\npaying for the house.\\n\\n224\\n00:11:16,170 --> 00:11:17,930\\nSo he took a job\\n\\n225\\n00:11:17,930 --> 00:11:21,340\\nagain as a civil engineer working\\nfor the U.S. Air Force\\n\\n226\\n00:11:21,340 --> 00:11:22,960\\nin Đà Nẵng Vietnam;\\n\\n227\\n00:11:22,960 --> 00:11:27,260\\nbuilding airports for the\\nAmerican airplanes again.\\n\\n228\\n00:11:27,260 --> 00:11:32,390\\nAnd I... When I announced my intention to\\nrefuse the draft and if necessary go to\\n\\n229\\n00:11:32,390 --> 00:11:34,900\\nprison, uh, I got a\\n\\n230\\n00:11:34,900 --> 00:11:37,620\\nvisit from my mother who informed me\\n\\n231\\n00:11:37,620 --> 00:11:42,160\\nthat if I did that, then my\\nfather would lose his security\\nclearance and\\n\\n232\\n00:11:42,160 --> 00:11:43,810\\ntherefore his job\\n\\n233\\n00:11:43,810 --> 00:11:47,399\\nthey would lose the house and my younger\\nbrother Brian wouldn\\'t get to go to\\n\\n234\\n00:11:47,399 --> 00:11:49,110\\nuniversity. It would just\\n\\n235\\n00:11:49,110 --> 00:11:51,830\\nbring disaster on the whole family.\\n\\n236\\n00:11:51,830 --> 00:11:57,980\\nThis put me, put me, in kind of a quandary.\\nUm... So I decided then that I would\\n\\n237\\n00:11:57,980 --> 00:12:02,190\\nallow myself to be drafted\\nbut I would look for a non-combatant\\nrole because I\\n\\n238\\n00:12:02,190 --> 00:12:04,450\\nreally wasn\\'t interested in\\n\\n239\\n00:12:04,450 --> 00:12:06,660\\nkilling Vietnamese for Uncle Sam.\\n\\n240\\n00:12:06,660 --> 00:12:08,430\\nSo I, uh...\\n\\n241\\n00:12:08,430 --> 00:12:09,620\\nWent ahead,\\n\\n242\\n00:12:09,620 --> 00:12:10,600\\nwith some\\n\\n243\\n00:12:10,600 --> 00:12:14,160\\ntrepidation, and really no\\nidea of what I was doing.\\n\\n244\\n00:12:14,160 --> 00:12:15,480\\nGot drafted,\\n\\n245\\n00:12:15,480 --> 00:12:21,420\\nAnd, uh, applied\\nfor non-combatant\\nmedic status.\\n\\n246\\n00:12:21,420 --> 00:12:22,949\\nWent through...\\n\\n247\\n00:12:22,949 --> 00:12:25,070\\nbasic training.\\n\\n248\\n00:12:25,070 --> 00:12:28,520\\nUh, waited for some time\\n\\n249\\n00:12:28,520 --> 00:12:31,690\\nwhile my request got processed\\n\\n250\\n00:12:31,690 --> 00:12:35,810\\nall the way up to the Pentagon, and\\ncame back down again: refused.\\n\\n251\\n00:12:35,810 --> 00:12:37,010\\nThe U.S. Army felt\\n\\n252\\n00:12:37,010 --> 00:12:42,290\\nthat I would make a better combat\\ninfantryman than medic.\\n\\n253\\n00:12:42,290 --> 00:12:43,210\\nUm...\\n\\n254\\n00:12:43,210 --> 00:12:45,860\\nI then, wasn\\'t quite sure what to do.\\n\\n255\\n00:12:45,860 --> 00:12:51,350\\nSo, I went ahead with advanced, went on\\ninto the advanced infantry training.\\n\\n256\\n00:12:51,350 --> 00:12:54,100\\nUh, this was all at Fort\\nLewis Washington.\\n\\n257\\n00:12:54,100 --> 00:12:57,540\\nUh, but while I was\\nin advanced infantry\\ntraining my father\\n\\n258\\n00:12:57,540 --> 00:13:01,640\\nfinished up the contract in,\\nuh, Vietnam and came back to\\nthe United States\\n\\n259\\n00:13:01,640 --> 00:13:04,200\\nand his job was no longer\\n\\n260\\n00:13:04,200 --> 00:13:05,769\\nconditional on having\\n\\n261\\n00:13:05,769 --> 00:13:08,240\\na security clearance from\\nthe U.S. government.\\n\\n262\\n00:13:08,240 --> 00:13:12,360\\nSo, when my advanced infantry training\\nwas finished and I got my orders to go\\n\\n263\\n00:13:12,360 --> 00:13:13,650\\nto Vietnam,\\n\\n264\\n00:13:13,650 --> 00:13:15,560\\nI simply packed up,\\n\\n265\\n00:13:15,560 --> 00:13:16,800\\ntook my\\n\\n266\\n00:13:16,800 --> 00:13:20,530\\nfew days leave that we were given, uh,\\n\\n267\\n00:13:20,530 --> 00:13:24,690\\nin those days before being sent\\noff to the jungles of Vietnam\\n\\n268\\n00:13:24,690 --> 00:13:26,510\\nand went back to Stanford.\\n\\n269\\n00:13:26,510 --> 00:13:30,740\\nDecided to see how much I could get\\naway with before they arrested me.\\n\\n270\\n00:13:30,740 --> 00:13:32,040\\nUh, there were a lot of\\n\\n271\\n00:13:32,040 --> 00:13:33,530\\nyoung men\\n\\n272\\n00:13:33,530 --> 00:13:37,480\\nleaving the U.S. army in\\nthose days, um...\\n\\n273\\n00:13:37,480 --> 00:13:41,910\\nand they were not really\\nputting a lot of effort into\\nrounding us up. So I went\\n\\n274\\n00:13:41,910 --> 00:13:43,760\\nback to Stanford\\n\\n275\\n00:13:43,760 --> 00:13:45,390\\nUh... re-enrolled\\n\\n276\\n00:13:45,390 --> 00:13:47,830\\nUh, continued to but, uh,\\n\\n277\\n00:13:47,830 --> 00:13:51,340\\nmy major seemed to be changing, at that\\npoint, from electrical engineering to\\n\\n278\\n00:13:51,340 --> 00:13:56,470\\nphilosophy. I was taking courses in\\npsychology, comparative religion,\\n\\n279\\n00:13:56,470 --> 00:14:00,750\\njust about anything. I think\\nI still did take\\n\\n280\\n00:14:00,750 --> 00:14:04,910\\nsome courses that were part\\nofthe electrical engineering\\ncurriculum, but I was\\n\\n281\\n00:14:04,910 --> 00:14:06,730\\nlooking for a new path.\\n\\n282\\n00:14:06,730 --> 00:14:10,500\\nBut I was still involved\\nin, uh, student radio\\n\\n283\\n00:14:10,500 --> 00:14:14,000\\nthe antiwar movement, and\\nthe anti-draft movement.\\n\\n284\\n00:14:14,000 --> 00:14:17,640\\nThis continued, uh, for\\nsome time until,\\n\\n285\\n00:14:17,640 --> 00:14:21,620\\nuh, one of my friends got arrested\\nat an antiwar demonstration\\n\\n286\\n00:14:21,620 --> 00:14:26,549\\nand he was being interviewed by an\\nFBI agent who was in charge of,\\n\\n287\\n00:14:26,549 --> 00:14:28,680\\nkeeping track of us, I guess.\\n\\n288\\n00:14:28,680 --> 00:14:32,550\\nMy friend was in the agent\\'s\\noffice and the agent got a phone\\ncall, and he didn\\'t\\n\\n289\\n00:14:32,550 --> 00:14:33,850\\ncare to\\n\\n290\\n00:14:33,850 --> 00:14:37,830\\ntalk on the phone in front of my friend.\\nSo, he told my friend quite sternly to\\n\\n291\\n00:14:37,830 --> 00:14:41,200\\nstay where he was, and stepped out of\\nthe office to take the phone call.\\n\\n292\\n00:14:41,200 --> 00:14:44,140\\nMy friend took the opportunity to look\\nthrough all the papers on the FBI\\n\\n293\\n00:14:44,140 --> 00:14:48,950\\nagent\\'s desk, and found a list of the\\npeople this particular agent was\\n\\n294\\n00:14:48,950 --> 00:14:51,250\\nsupposed to be keeping track of.\\n\\n295\\n00:14:51,250 --> 00:14:56,050\\nMost of the names were familiar\\nto him, it included me and all of\\nour mutual friends.\\n\\n296\\n00:14:56,050 --> 00:14:59,779\\nThey knew where we all lived, what\\nwe did, who we hung out with...\\n\\n297\\n00:14:59,779 --> 00:15:02,620\\nJust about everything about\\nus they needed to know.\\n\\n298\\n00:15:02,620 --> 00:15:03,610\\nUm...\\n\\n299\\n00:15:03,610 --> 00:15:04,710\\nWhen\\n\\n300\\n00:15:04,710 --> 00:15:09,730\\nhe was then released by the FBI agent\\nand, uh, came back and told me about\\n\\n301\\n00:15:09,730 --> 00:15:10,710\\nthis,\\n\\n302\\n00:15:10,710 --> 00:15:15,550\\nI realized that if I were actually as\\neffective an antiwar and anti-draft\\n\\n303\\n00:15:15,550 --> 00:15:17,020\\norganizer as I\\n\\n304\\n00:15:17,020 --> 00:15:18,800\\nfancied myself to be,\\n\\n305\\n00:15:18,800 --> 00:15:20,450\\nthey would have just pulled me in,\\n\\n306\\n00:15:20,450 --> 00:15:23,320\\nif I was really doing any\\ngood for the cause.\\n\\n307\\n00:15:23,320 --> 00:15:26,180\\nThey would have handed\\nme back to the Army who\\nwould\\'ve uh...\\n\\n308\\n00:15:26,180 --> 00:15:30,550\\neither sent me off to\\nVietnam or thrown me in, uh,\\na military prison for\\n\\n309\\n00:15:30,550 --> 00:15:31,940\\nUh...\\n\\n310\\n00:15:31,940 --> 00:15:33,420\\nfor being AWOL or\\n\\n311\\n00:15:33,420 --> 00:15:36,300\\none after the other.\\n\\n312\\n00:15:36,300 --> 00:15:39,910\\nSo, I came to the conclusion that I wasn\\'t\\nreally doing much good by staying in\\n\\n313\\n00:15:39,910 --> 00:15:44,320\\nCalifornia, and if I started to do\\nany good they\\'d simply pick me up.\\n\\n314\\n00:15:44,320 --> 00:15:48,950\\nSo uh, my friends got\\ntogether and bought me a\\nplane ticket to Canada.\\n\\n315\\n00:15:48,950 --> 00:15:53,770\\nUh, at that time my only contact\\nin Canada was uh...\\n\\n316\\n00:15:53,770 --> 00:15:57,180\\nUh, a good friend couple of years\\nolder who\\'d, uh, graduated from\\n\\n317\\n00:15:57,180 --> 00:16:01,220\\nStanford and was now up teaching\\nat the University of Alberta,\\n\\n318\\n00:16:01,220 --> 00:16:04,840\\nand who had let me know that\\nif I ever needed to come up to\\nCanada, I would be\\n\\n319\\n00:16:04,840 --> 00:16:06,690\\nwelcome to stay at his place.\\n\\n320\\n00:16:06,690 --> 00:16:08,200\\nSo I uh...\\n\\n321\\n00:16:08,200 --> 00:16:14,190\\nEntered Canada, uh, as\\na tourist and went to visit\\nmy friend Bill in Edmonton.\\n\\n322\\n00:16:14,190 --> 00:16:18,169\\n>> INTERVIEWER:\\nAside from the fact that\\nyou knew that they could get\\nyou at any-time they wanted,\\n\\n323\\n00:16:18,169 --> 00:16:21,270\\nwas anything else that made\\nyou want to desert?\\n\\n324\\n00:16:21,270 --> 00:16:24,270\\n>> MIKE:\\nWell, that was what made\\nme decide to leave\\n\\n325\\n00:16:24,270 --> 00:16:26,159\\nthe U.S. and come to Canada.\\n\\n326\\n00:16:26,159 --> 00:16:28,230\\nMy desertion was\\n\\n327\\n00:16:28,230 --> 00:16:29,470\\nUm...\\n\\n328\\n00:16:29,470 --> 00:16:31,870\\nPartly on...\\n\\n329\\n00:16:31,870 --> 00:16:35,230\\nMostly on moral grounds, that\\n\\n330\\n00:16:35,230 --> 00:16:38,390\\nI didn\\'t want to go killing people\\n\\n331\\n00:16:38,390 --> 00:16:43,270\\nfor the political purposes\\nof the U.S. government. I didn\\'t\\nthink it was a war\\n\\n332\\n00:16:43,270 --> 00:16:45,950\\nthe United States should\\nhave been involved in.\\n\\n333\\n00:16:45,950 --> 00:16:47,680\\nIt had to do with\\n\\n334\\n00:16:47,680 --> 00:16:49,639\\nwho was going to govern\\n\\n335\\n00:16:49,639 --> 00:16:51,280\\nSouth Vietnam.\\n\\n336\\n00:16:51,280 --> 00:16:54,480\\nThe uh... Whether the people were to be\\nallowed to have an election or their\\n\\n337\\n00:16:54,480 --> 00:16:58,160\\ngovernment was going to be\\nforced on them by the U.S.\\n\\n338\\n00:16:58,160 --> 00:17:00,560\\nAnd I certainly didn\\'t think it\\n\\n339\\n00:17:00,560 --> 00:17:03,880\\nwould be right for me to go\\nkill people to enforce the U.S.\\ngovernment\\'s foreign\\n\\n340\\n00:17:03,880 --> 00:17:06,660\\npolicy there.\\n\\n341\\n00:17:06,660 --> 00:17:09,930\\nThe war itself seemed futile,\\n\\n342\\n00:17:09,930 --> 00:17:13,700\\nsince I thought that sooner or later\\nthe Vietnamese would probably\\n\\n343\\n00:17:13,700 --> 00:17:15,790\\nget to decide their own fate.\\n\\n344\\n00:17:15,790 --> 00:17:20,920\\nUh... it was certainly killing a lot of\\nVietnamese and a lot of Americans.\\n\\n345\\n00:17:20,920 --> 00:17:24,860\\nI wasn\\'t sure I particularly supported\\n\\n346\\n00:17:24,860 --> 00:17:30,320\\nthe, the, Viet Cong or the\\nNorth Vietnamese, or any other\\nfaction there.\\n\\n347\\n00:17:30,320 --> 00:17:32,600\\nBut I just didn\\'t think it was\\n\\n348\\n00:17:32,600 --> 00:17:36,770\\nthe business of the United States, or me\\npersonally, to go try to tell them what\\n\\n349\\n00:17:36,770 --> 00:17:39,770\\nkind of government they should have.\\n\\n350\\n00:17:39,770 --> 00:17:40,920\\nUh, that was...\\n\\n351\\n00:17:40,920 --> 00:17:44,470\\nThat was my main opposition to the war,\\nthat and just a general opposition to\\n\\n352\\n00:17:44,470 --> 00:17:45,390\\nwars,\\n\\n353\\n00:17:45,390 --> 00:17:49,260\\nas not the right solution\\nto any problem.\\n\\n354\\n00:17:49,260 --> 00:17:52,000\\n>> INTERVIEWER:\\nWhat was it like living as\\na deserter in Canada?\\n\\n355\\n00:17:52,000 --> 00:17:54,150\\nWas it what you expected?\\n\\n356\\n00:17:54,150 --> 00:17:58,400\\n>> MIKE:\\nUh, living as a deserter\\nin Canada was...\\n\\n357\\n00:17:58,400 --> 00:18:01,679\\nMuch better than living as a\\ndeserter in the United States,\\nand it\\n\\n358\\n00:18:01,679 --> 00:18:04,620\\ndidn\\'t take me long to figure that out.\\n\\n359\\n00:18:04,620 --> 00:18:08,570\\nI can remember, I had been in\\nEdmonton for a few weeks...\\n\\n360\\n00:18:08,570 --> 00:18:13,410\\nI arrived here on April 1st, 1970.\\n\\n361\\n00:18:13,410 --> 00:18:16,530\\nUh, I came up on the train\\nfrom Calgary. I had\\n\\n362\\n00:18:16,530 --> 00:18:21,480\\nflown to Vancouver and then\\ntaken the train from Vancouver\\nto Calgary and then\\n\\n363\\n00:18:21,480 --> 00:18:23,460\\nfrom Calgary to Edmonton.\\n\\n364\\n00:18:23,460 --> 00:18:25,250\\nAnd uh...\\n\\n365\\n00:18:25,250 --> 00:18:26,300\\nUm...\\n\\n366\\n00:18:26,300 --> 00:18:28,920\\nWas relaxing at a..\\n\\n367\\n00:18:28,920 --> 00:18:31,860\\nAt the house so some new\\nfriend\\'s one evening,\\n\\n368\\n00:18:31,860 --> 00:18:34,190\\nand suddenly realised\\n\\n369\\n00:18:34,190 --> 00:18:35,770\\nthat I could simply\\n\\n370\\n00:18:35,770 --> 00:18:37,909\\ngo out for a walk\\n\\n371\\n00:18:37,909 --> 00:18:39,620\\nand\\n\\n372\\n00:18:39,620 --> 00:18:43,120\\nthere was, there was, no risk\\nattached to going for a walk\\n\\n373\\n00:18:43,120 --> 00:18:44,540\\nin the neighborhood\\n\\n374\\n00:18:44,540 --> 00:18:46,120\\nat ten o\\'clock at night.\\n\\n375\\n00:18:46,120 --> 00:18:48,460\\nThe police would not harass me.\\n\\n376\\n00:18:48,460 --> 00:18:53,640\\nUh, there was not\\nthe polarization, the\\nconflict,\\n\\n377\\n00:18:53,640 --> 00:18:55,679\\nthe racial conflict,\\n\\n378\\n00:18:55,679 --> 00:19:00,350\\nuh, the political polarization.\\n\\n379\\n00:19:00,350 --> 00:19:01,150\\nOr the...\\n\\n380\\n00:19:01,150 --> 00:19:05,100\\nThe police harassment I would have\\nexperienced in the United States.\\n\\n381\\n00:19:05,100 --> 00:19:07,039\\nUh, nobody...\\n\\n382\\n00:19:07,039 --> 00:19:10,710\\nIf anyone cared at all that\\nI was a deserter, they\\n\\n383\\n00:19:10,710 --> 00:19:12,279\\nthought that was good.\\n\\n384\\n00:19:12,279 --> 00:19:14,799\\nBut mostly they didn\\'t care.\\n\\n385\\n00:19:14,799 --> 00:19:18,020\\nAnd that was fine with me.\\n\\n386\\n00:19:18,020 --> 00:19:21,679\\n>> INTERVIEWER:\\nWhat was the hardest part of\\nhaving to come to Canada?\\n\\n387\\n00:19:21,679 --> 00:19:24,900\\n>> MIKE:\\nThe hardest part of coming to Canada?\\n\\n388\\n00:19:24,900 --> 00:19:30,600\\nUh... Being separated from\\nmy family. I would have liked\\nto have visited more often,\\n\\n389\\n00:19:30,600 --> 00:19:33,210\\nbut I wasn\\'t sure about\\n\\n390\\n00:19:33,210 --> 00:19:37,450\\ngetting across the border. So, I\\ndidn\\'t cross that U.S. border\\n\\n391\\n00:19:37,450 --> 00:19:40,410\\nfor many years until I had\\n\\n392\\n00:19:40,410 --> 00:19:45,230\\nmy Canadian citizenship and at a time\\nwhen the U.S. wasn\\'t particularly\\n\\n393\\n00:19:45,230 --> 00:19:47,770\\ninvolved in any wars...\\n\\n394\\n00:19:47,770 --> 00:19:50,330\\nfor which they were drafting young men,\\n\\n395\\n00:19:50,330 --> 00:19:51,630\\nand uh...\\n\\n396\\n00:19:51,630 --> 00:19:55,010\\nuh, it seemed a relatively\\nsafe time to do it. And even\\nthen I was nervous\\n\\n397\\n00:19:55,010 --> 00:19:58,350\\nabout going into\\nthe United States\\nto visit family.\\n\\n398\\n00:19:58,350 --> 00:20:00,420\\nUh, finally I did,\\n\\n399\\n00:20:00,420 --> 00:20:01,830\\nseveral times,\\n\\n400\\n00:20:01,830 --> 00:20:04,950\\nall before the uh... the disasters of\\n\\n401\\n00:20:04,950 --> 00:20:08,890\\nSeptember 11th, 2001.\\n\\n402\\n00:20:08,890 --> 00:20:10,409\\n>> INTERVIEWER:\\nKnowing what you know now,\\n\\n403\\n00:20:10,409 --> 00:20:12,899\\nwould you have done it again?\\n\\n404\\n00:20:12,899 --> 00:20:17,950\\n>> MIKE:\\nKnowing what I know now,\\nuh, rather than deserting\\nI would have, uh,\\n\\n405\\n00:20:17,950 --> 00:20:20,510\\nrefused to draft in the first place.\\n\\n406\\n00:20:20,510 --> 00:20:23,490\\nUh, never have allowed\\nmyself to be drafted\\n\\n407\\n00:20:23,490 --> 00:20:25,670\\nUh, I certainly...\\n\\n408\\n00:20:25,670 --> 00:20:30,330\\nI think I was quite\\nright in choosing not\\nto go to Vietnam\\n\\n409\\n00:20:30,330 --> 00:20:32,509\\nUh, I think I\\n\\n410\\n00:20:32,509 --> 00:20:33,390\\nwas\\n\\n411\\n00:20:33,390 --> 00:20:36,120\\nnaive about the way the world worked\\n\\n412\\n00:20:36,120 --> 00:20:42,190\\nin that I thought I could go to Vietnam\\nby my choice as a non-combatant and try\\n\\n413\\n00:20:42,190 --> 00:20:43,370\\nto\\n\\n414\\n00:20:43,370 --> 00:20:46,190\\nsave at least American lives.\\n\\n415\\n00:20:46,190 --> 00:20:47,010\\nUm...\\n\\n416\\n00:20:47,010 --> 00:20:50,370\\nThe odds are I wouldn\\'t have done\\nvery well in that role. Most\\n\\n417\\n00:20:50,370 --> 00:20:53,750\\nuh, military medics in Vietnam...\\n\\n418\\n00:20:53,750 --> 00:20:57,730\\nUh... Well they themselves\\nsuffered a high casualty rate.\\nThey were generally\\n\\n419\\n00:20:57,730 --> 00:21:01,430\\nexpected to carry fire arms\\nto defend themselves.\\n\\n420\\n00:21:01,430 --> 00:21:02,639\\nUh, I would have been\\n\\n421\\n00:21:02,639 --> 00:21:06,800\\na bit of an odd duck in any case.\\n\\n422\\n00:21:06,800 --> 00:21:13,340\\n>> INTERVIEWER:\\nWould you advise people in a\\nsimilar position as yourself,\\nto do is you have done?\\n\\n423\\n00:21:13,340 --> 00:21:15,039\\n>> MIKE:\\nI would advise any\\n\\n424\\n00:21:15,039 --> 00:21:18,329\\nyoung men drafted to go\\nfight in foreign wars,\\n\\n425\\n00:21:18,329 --> 00:21:23,159\\nnot to do so. I would really\\nadvise any young\\n\\n426\\n00:21:23,159 --> 00:21:25,090\\nAmericans,\\n\\n427\\n00:21:25,090 --> 00:21:30,530\\nnot to go fight in Iraq, Afghanistan, or\\nany other foreign wars the U.S. should\\n\\n428\\n00:21:30,530 --> 00:21:31,890\\nengage in.\\n\\n429\\n00:21:31,890 --> 00:21:33,590\\nI don\\'t think those wars\\n\\n430\\n00:21:33,590 --> 00:21:38,300\\nsettle any problems. I don\\'t think those\\nwars do any good for the United States.\\n\\n431\\n00:21:38,300 --> 00:21:43,030\\nCertainly the Vietnam War\\ndid no good for the United States.\\nIt had... The Iraq war\\n\\n432\\n00:21:43,030 --> 00:21:44,420\\nhas\\n\\n433\\n00:21:44,420 --> 00:21:49,770\\ndone no good for the United States, and\\nthe Afghanistan war is proving to be\\n\\n434\\n00:21:49,770 --> 00:21:54,580\\nan even worse disaster and has already\\ngone on longer than the Vietnam War.\\n\\n435\\n00:21:54,580 --> 00:21:55,909\\nIt is\\n\\n436\\n00:21:55,909 --> 00:21:59,919\\nchewing up the lives of\\nthe people in those countries\\nand building an immense\\n\\n437\\n00:21:59,919 --> 00:22:02,030\\nhatred against the United States.\\n\\n438\\n00:22:02,030 --> 00:22:06,330\\nIt\\'s killing young Americans\\nwho go over there.\\n\\n439\\n00:22:06,330 --> 00:22:08,970\\nUh, I see...\\n\\n440\\n00:22:08,970 --> 00:22:13,200\\nI see no benefit from any of those\\nwars and wouldn\\'t want anyone\\n\\n441\\n00:22:13,200 --> 00:22:15,720\\nto... to go fight in them.\\n\\n442\\n00:22:15,720 --> 00:22:18,799\\n>> INTERVIEWER:\\nAs you thoroughly talked about\\nthe United States involvement;\\n\\n443\\n00:22:18,799 --> 00:22:23,160\\nwhat is your opinion in Canada\\'s\\ninvolvement in the modern wars?\\n\\n444\\n00:22:23,160 --> 00:22:25,080\\n>> MIKE:\\nCanada\\'s involvement?\\n\\n445\\n00:22:25,080 --> 00:22:27,970\\nAs, uh, as an affiliate of\\n\\n446\\n00:22:27,970 --> 00:22:30,790\\nthe United States, supposedly\\n\\n447\\n00:22:30,790 --> 00:22:33,520\\nthrough... Well I\\'m thinking\\nof Afghanistan now\\n\\n448\\n00:22:33,520 --> 00:22:37,330\\nfortunately we weren\\'t stupid enough to\\nget involved in the Iraqi war. At least\\n\\n449\\n00:22:37,330 --> 00:22:39,110\\nnot by sending soldiers.\\n\\n450\\n00:22:39,110 --> 00:22:43,070\\nBut we\\'re in up to our\\nnecks in Afghanistan\\n\\n451\\n00:22:43,070 --> 00:22:45,830\\nand uh...\\n\\n452\\n00:22:45,830 --> 00:22:48,150\\nUh, I think it is\\n\\n453\\n00:22:48,150 --> 00:22:49,760\\nwrong to be there.\\n\\n454\\n00:22:49,760 --> 00:22:53,030\\nUh, we should not be assisting\\n\\n455\\n00:22:53,030 --> 00:22:56,550\\nthe U.S. in their adventure\\nin Afghanistan and it\\'s going\\nto be a\\n\\n456\\n00:22:56,550 --> 00:23:00,490\\ndisastrous adventure in Afghanistan.\\n\\n457\\n00:23:00,490 --> 00:23:01,600\\nUm, someone\\n\\n458\\n00:23:01,600 --> 00:23:06,900\\nfamous, whose name I\\'ve forgotten,\\nonce said \\'those who do not know\\ntheir history are\\n\\n459\\n00:23:06,900 --> 00:23:08,720\\ncondemned to repeat it\\'.\\n\\n460\\n00:23:08,720 --> 00:23:10,130\\nThe British\\n\\n461\\n00:23:10,130 --> 00:23:14,890\\nhave invaded Afghanistan four times,\\nif you come this time as\\n\\n462\\n00:23:14,890 --> 00:23:17,830\\na British invasion, because they\\'re\\npart of the NATO faces\\n\\n463\\n00:23:17,830 --> 00:23:19,090\\nforces also.\\n\\n464\\n00:23:19,090 --> 00:23:22,710\\nThe British have gotten their\\nasses kicked in Afghanistan\\n\\n465\\n00:23:22,710 --> 00:23:27,299\\nfour times. One time when they invaded\\nAfghanistan they went in with an army\\n\\n466\\n00:23:27,299 --> 00:23:28,700\\nthat probably had\\n\\n467\\n00:23:28,700 --> 00:23:33,150\\nincluding camp followers, and, and\\nmercenaries a quarter of a million\\n\\n468\\n00:23:33,150 --> 00:23:36,020\\npeople, and they sent back one\\n\\n469\\n00:23:36,020 --> 00:23:40,300\\nmedical officer, came riding back\\nout of Afghanistan to the\\n\\n470\\n00:23:40,300 --> 00:23:42,080\\nRed Fort at Lahore, to say\\n\\n471\\n00:23:42,080 --> 00:23:45,220\\n\\'I am all that is left of\\nthe Army of the Indus\\'.\\n\\n472\\n00:23:45,220 --> 00:23:49,360\\nNo one has succeeded in\\ninvading Afghanistan. The\\nRussians got their butts\\n\\n473\\n00:23:49,360 --> 00:23:50,940\\nkicked in Afghanistan.\\n\\n474\\n00:23:50,940 --> 00:23:57,110\\nAlexander the Great only managed\\nto get through there by marrying\\ninto the, the...\\n\\n475\\n00:23:57,110 --> 00:23:58,419\\ntribal\\n\\n476\\n00:23:58,419 --> 00:24:00,630\\nuh... structure.\\n\\n477\\n00:24:00,630 --> 00:24:04,590\\nThe Afghans simply do not like foreigners\\nmarching through their land\\n\\n478\\n00:24:04,590 --> 00:24:07,320\\nand particularly do not like\\nforeigners telling them\\n\\n479\\n00:24:07,320 --> 00:24:09,080\\nwhat to do.\\n\\n480\\n00:24:09,080 --> 00:24:11,029\\nIt\\'s not going to succeed.\\n\\n481\\n00:24:11,029 --> 00:24:14,340\\nUh, it\\'s an unjust war um...\\n\\n482\\n00:24:14,340 --> 00:24:18,779\\nand it\\'s going to be a very unsuccessful\\nwar. But it\\'s still killing Afghans,\\n\\n483\\n00:24:18,779 --> 00:24:24,159\\nand Canadians, and Americans,\\nand British, and Pakistanis,\\n\\n484\\n00:24:24,159 --> 00:24:26,980\\nand doing what wars do;\\nkill people.\\n\\n485\\n00:24:26,980 --> 00:24:31,190\\n>> INTERVIEWER:\\nWhat were the long-term decisions\\nof deserting to Canada?\\n\\n486\\n00:24:31,190 --> 00:24:35,990\\n>> MIKE:\\nLong-term decisions were uh...\\nIt probably kept me from getting\\na university\\n\\n487\\n00:24:35,990 --> 00:24:40,990\\ndegree, which I kind of regret.\\nUh, in hindsight I probably would\\nhave had\\n\\n488\\n00:24:40,990 --> 00:24:45,159\\nsome more interesting career choices\\nIf I had a university degree\\n\\n489\\n00:24:45,159 --> 00:24:46,340\\nUm...\\n\\n490\\n00:24:46,340 --> 00:24:47,310\\nIt\\'s...\\n\\n491\\n00:24:47,310 --> 00:24:48,840\\nBut uh,\\n\\n492\\n00:24:48,840 --> 00:24:54,430\\none of the long-term, uh,\\nchoices has been that I am\\nalive, happy, and healthy\\n\\n493\\n00:24:54,430 --> 00:24:58,659\\nand in Canada. So I can\\'t\\nregret it too much.\\n\\n494\\n00:24:58,659 --> 00:25:03,669\\n>> INTERVIEWER:\\nThe Canadian government now\\nretunely returns deserters to\\nthe U.S. to face trial.\\n\\n495\\n00:25:03,669 --> 00:25:05,150\\nWhat do you think of that?\\n\\n496\\n00:25:05,150 --> 00:25:11,360\\n>> MIKE:\\nWrong! That\\'s wrong. Uh...\\nThe Canadian government when\\nI came to Canada felt\\n\\n497\\n00:25:11,360 --> 00:25:13,130\\nthat it really wasn\\'t...\\n\\n498\\n00:25:13,130 --> 00:25:16,440\\nthat my past history was no business of\\ntheirs, as long that I hadn\\'t committed\\n\\n499\\n00:25:16,440 --> 00:25:17,990\\nany crimes,\\n\\n500\\n00:25:17,990 --> 00:25:18,929\\nand uh...\\n\\n501\\n00:25:18,929 --> 00:25:22,250\\ndeserting from the U.S. Army was\\nnot on their list of crimes.\\n\\n502\\n00:25:22,250 --> 00:25:23,629\\nSo um...\\n\\n503\\n00:25:23,629 --> 00:25:25,520\\nThey didn\\'t ask back then.\\n\\n504\\n00:25:25,520 --> 00:25:28,049\\nIn fact, they were fairly\\ncareful not ask.\\n\\n505\\n00:25:28,049 --> 00:25:30,080\\nUh, I don\\'t think\\n\\n506\\n00:25:30,080 --> 00:25:32,440\\nthat Canada should be\\n\\n507\\n00:25:32,440 --> 00:25:34,320\\nenforcing any kind of\\n\\n508\\n00:25:34,320 --> 00:25:36,289\\nU.S. laws about desertion.\\n\\n509\\n00:25:36,289 --> 00:25:37,970\\nAnd the few\\n\\n510\\n00:25:37,970 --> 00:25:39,290\\nU.S. Army deserters\\n\\n511\\n00:25:39,290 --> 00:25:41,820\\nthat I\\'ve talked to... the two\\n\\n512\\n00:25:41,820 --> 00:25:44,750\\nwho both had experience in Iraq,\\n\\n513\\n00:25:44,750 --> 00:25:48,260\\nhad extremely good reasons for\\nleaving the United States.\\n\\n514\\n00:25:48,260 --> 00:25:52,090\\nBoth of them had served\\ntours of duty in Iraq.\\n\\n515\\n00:25:52,090 --> 00:25:53,620\\nThey had experienced\\n\\n516\\n00:25:53,620 --> 00:25:54,590\\nthat war\\n\\n517\\n00:25:54,590 --> 00:25:59,159\\nand they had no intention of\\nexperiencing any more of it,\\n\\n518\\n00:25:59,159 --> 00:26:00,720\\nfor very good causes.\\n\\n519\\n00:26:00,720 --> 00:26:03,900\\n>> INTERVIEWER:\\nThe idea for this interview\\ncame from reading a short story\\nabout a person who\\n\\n520\\n00:26:03,900 --> 00:26:07,690\\ndecided to go to Canada, but changed\\nhis mind at the last minute.\\n\\n521\\n00:26:07,690 --> 00:26:09,820\\nThe last lines in this story are:\\n\\n522\\n00:26:09,820 --> 00:26:15,170\\n\"I survived, but it\\'s not a happy ending.\\nI was a coward, I went to [...] war.\"\\n\\n523\\n00:26:15,170 --> 00:26:17,380\\nWould you agree with this person?\\n\\n524\\n00:26:17,380 --> 00:26:23,730\\n>> MIKE:\\nI would, and I feel pretty much the same\\nway about it and, uh, I would...\\n\\n525\\n00:26:23,730 --> 00:26:27,430\\nhope that if this story was\\npatterned on a real person\\n\\n526\\n00:26:27,430 --> 00:26:32,600\\nuh... he would think again about it and\\nbefore serving another tour of duty on\\n\\n527\\n00:26:32,600 --> 00:26:35,549\\nsome U.S. war\\n\\n528\\n00:26:35,549 --> 00:26:38,010\\nsomewhere on the other side of the world\\n\\n529\\n00:26:38,010 --> 00:26:41,990\\nwould consider coming to Canada\\nor almost any other\\n\\n530\\n00:26:41,990 --> 00:26:47,980\\ncountry rather than continuing\\nin the U.S. military.\\n\\n531\\n00:26:47,980 --> 00:26:53,230\\n>> INTERVIEWER:\\nWhat are your feelings towards people\\nwho didn\\'t decide to leave?\\n\\n532\\n00:26:53,230 --> 00:26:54,399\\n>> MIKE:\\nUm...\\n\\n533\\n00:26:54,399 --> 00:26:56,059\\nI uh...\\n\\n534\\n00:26:56,059 --> 00:27:00,350\\nI have to say first that I am not angry\\nat them, any more than I am angry for\\n\\n535\\n00:27:00,350 --> 00:27:01,820\\ninstance at\\n\\n536\\n00:27:01,820 --> 00:27:06,630\\nCanadians who chose to serve in the\\nCanadian forces in Afghanistan\\n\\n537\\n00:27:06,630 --> 00:27:07,490\\nUm...\\n\\n538\\n00:27:07,490 --> 00:27:11,990\\n[Music starts]\\nI think they have been misled.\\n\\n539\\n00:27:11,990 --> 00:27:12,770\\nUh...\\n\\n540\\n00:27:12,770 --> 00:27:13,700\\nTo lead them into...\\n\\n541\\n00:27:13,700 --> 00:27:18,370\\nTo lead men into war,\\nto lead people into war\\nis to mislead them,\\n\\n542\\n00:27:18,370 --> 00:27:23,510\\nin any case. But I think they\\'ve been\\nmisled about the reasons the war\\n\\n543\\n00:27:23,510 --> 00:27:28,520\\nand, uh, the reasons for\\ntheir going over there.\\n\\n544\\n00:27:28,520 --> 00:27:30,669\\nI\\'m sure they go over there\\n\\n545\\n00:27:30,669 --> 00:27:34,100\\nbelieving that they\\'re doing something\\ngood for their country.\\n\\n546\\n00:27:34,100 --> 00:27:37,980\\nI hope so anyway, or maybe they go over\\nthere because they simply have very\\n\\n547\\n00:27:37,980 --> 00:27:40,260\\nfew choices in their life.\\n\\n548\\n00:27:40,260 --> 00:27:45,900\\nBut in any case, I really don\\'t\\nhold them responsible for that.\\nI hold, uh, the uh...\\n\\n549\\n00:27:45,900 --> 00:27:49,330\\nThe governments who are sending them\\nover there responsible for that.\\n\\n550\\n00:27:49,330 --> 00:27:50,610\\nUh...\\n\\n551\\n00:27:50,610 --> 00:27:52,720\\nI hope that they wont be damaged,\\n\\n552\\n00:27:52,720 --> 00:27:54,730\\nbut I do think that war\\n\\n553\\n00:27:54,730 --> 00:27:59,130\\ndamages people. I don\\'t think you can\\ngo through the experience of war\\n\\n554\\n00:27:59,130 --> 00:28:03,700\\nuh... and come out of it\\nscot-free without any scars.\\n\\n555\\n00:28:03,700 --> 00:28:09,370\\nuh, and I uh... I would hope they come out\\nof it with as few scars as possible.\\n\\n556\\n00:28:09,370 --> 00:28:12,240\\n>> INTERVIEWER:\\nIs there anything else you would like to say?\\n\\n557\\n00:28:12,240 --> 00:28:20,420\\n>> MIKE:\\nUm... If I had to sum up, uh,\\nI think uh, that I made the right\\nchoices I\\'m happy to be\\n\\n558\\n00:28:20,420 --> 00:28:22,049\\nwhere I am now\\n\\n559\\n00:28:22,049 --> 00:28:23,970\\nand I hope\\n\\n560\\n00:28:23,970 --> 00:28:25,230\\nany other\\n\\n561\\n00:28:25,230 --> 00:28:30,360\\nCanadians or Americans who are offered\\na choice of going off to war\\n\\n562\\n00:28:30,360 --> 00:28:31,930\\nsomewhere...\\n\\n563\\n00:28:31,930 --> 00:28:35,019\\nlike Afghanistan or Iraq, uh,\\n\\n564\\n00:28:35,019 --> 00:28:40,960\\nturn down that\\nchoice and stay here\\nand find a life...\\n\\n565\\n00:28:40,960 --> 00:28:43,580\\nuh, find a more peaceful path.\\n\\n566\\n00:28:43,580 --> 00:28:46,970\\n>> INTERVIEWER:\\nWell, thank you and hopefully people\\nwill learn from your experiences.',\n", + " 'bytes': 43620,\n", + " 'sha1': '9m39kgxdomtvdl0ds2x20275w2e8p0u',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 87011964,\n", + " 'timestamp': '2013-01-08T17:43:53Z',\n", + " 'user': {'id': 81755, 'text': 'Borys Kozielski'},\n", + " 'page': {'id': 23696057,\n", + " 'title': 'Nowiny 1 tygodnia 2013 roku.oga.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:05:20,000\\nZapowiedź, informacje o zmianach i nowym miejscu nadawania.\\n2\\n00:05:20,000 --> 00:19:00,000\\nKamil Śliwowski mówi o miejscu, z którego nadajemy http://www.panstwomiasto.pl i jego inicjatywie http://otwartezasoby.pl/\\n\\n3\\n00:19:00,000 --> 00:26:53,000\\nNagroda Stowarzyszenia Wikimedia Polska\\n\\n4\\n00:26:53,000 --> 00:28:00,000\\nZasoby audio w publicznej domenie\\n\\n5\\n00:28:00,000 --> 00:30:11,000\\nCHARLIE AND HIS ORCHESTRA\\n\\n6\\n00:30:11,000 --> 00:34:08,000\\nKossak, Styka i Panorama Racławicka\\n\\n7\\n00:34:08,000 --> 00:37:30,000\\nRaport o dzieciach w internecie\\n\\n8\\n00:37:30,000 --> 00:42:45,000\\nOpen Access – wkład Polskiej Akademii Nauk w rozwój idei otwartego dostępu do treści naukowych\\n\\n9\\n00:42:45,000 --> 00:45:12,000\\nWystawa prac z konkursu Wiki Lubi Zabytki\\n\\n10\\n00:45:12,000 --> 00:51:44,000\\nJak szeroki dostęp do pracy opłaconej z podatków. Informacja Izby Wydawców Prasy\\n\\n11\\n00:51:44,000 --> 00:58:11,000\\nUnia popiera wolne podręczniki',\n", + " 'bytes': 978,\n", + " 'sha1': '2oyxblbh8a2g70aw8rkx71039ex6nj5',\n", + " 'parent_id': 87009864,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91976925,\n", + " 'timestamp': '2013-03-05T06:50:18Z',\n", + " 'user': {'id': 425125, 'text': 'Solstag'},\n", + " 'page': {'id': 23714816,\n", + " 'title': 'Assembleia inaugural da Associação Pietro Roveri.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Solstag moved page [[TimedText:Assembleia01.ogv.en.srt]] to [[TimedText:Assembleia inaugural da Associação Pietro Roveri.ogv.en.srt]]: file moved, move along!',\n", + " 'text': '1\\n00:00:00,451 --> 00:00:02,504\\nHmmm...\\n\\n2\\n00:00:02,504 --> 00:00:08,505\\nHere we are, making the second and last call to start the operations,\\n\\n3\\n00:00:08,505 --> 00:00:13,330\\nthe formalities of constituting the Pietro Roveri Association for Free Collaboration and Knowledge.\\n\\n4\\n00:00:14,590 --> 00:00:15,849\\nLuca: Hey stop there, start over.\\n\\n5\\n00:00:15,849 --> 00:00:21,238\\nWe\\'re already filming this, relax, there\\'s no need.\\n\\n6\\n00:00:21,238 --> 00:00:23,941\\nCastelo: Alexandre, give us the date and time.\\n\\n7\\n00:00:23,941 --> 00:00:33,467\\nIt is now... 16 hours and 30 minutes of the 12th of October of 2012...\\n\\n8\\n00:00:33,467 --> 00:00:37,941\\nof our lord jesus christ and all that \"porra\".\\n\\n9\\n00:00:37,941 --> 00:00:53,863\\nMmm... we have to follow some formalities here, and along those formalities we\\'ll also follow some informalities that I hope will be welcome.\\n\\n10\\n00:00:58,294 --> 00:01:02,493\\nI touch to repel, I slap to indicate, I touch to bring.\\n\\n11\\n00:01:02,493 --> 00:01:06,770\\nI scream to run, I moan to bring, I draw to repeat.\\n\\n12\\n00:01:06,770 --> 00:01:12,039\\nI speak to persuade, I write to exhaust and I historicize to make firm.\\n\\n13\\n00:01:12,039 --> 00:01:18,512\\nThey say I did not historicize, write that I exhausted, say I persuaded.\\n\\n14\\n00:01:18,512 --> 00:01:22,663\\nThey draw to change, they moan to sublimate, they scream to live.\\n\\n15\\n00:01:22,663 --> 00:01:30,780\\nThey touch what I did, slap to show, punch to liberate. And if liberated, I do it again.\\n\\n16\\n00:01:31,325 --> 00:01:39,995\\nThat was a poem that is in the \"Sexta Poética\", its autorship is Pietro\\'s.\\n\\n17\\n00:01:41,241 --> 00:01:47,638\\nIt\\'s a way to hommage.\\n\\n18\\n00:01:47,638 --> 00:01:55,849\\nGood thing I brought water.\\n\\n19\\n00:01:55,849 --> 00:02:07,032\\nI think not everyone here got to meet Pietro. Mmm... but now you got to know him a little bit.\\n\\n20\\n00:02:07,401 --> 00:02:19,563\\nA bit that he left behind to our community, by way of Nevio and the \"Sexta Poética\", and through his own will to let others see him through his poetry and feelings.\\n\\n21\\n00:02:19,701 --> 00:02:27,355\\nBeyond all his thinking that now belongs to history. Mmm. And is making it.\\n\\n22\\n00:02:30,032 --> 00:02:37,447\\nI unfortunately got here late and could not participate during the morning. I missed a few people here whom I do not know who they are.\\n\\n23\\n00:02:38,075 --> 00:02:42,436\\nI\\'d like at least to have your names, so this doesn\\'t become something too abstract.\\n\\n24\\n00:02:42,806 --> 00:02:43,752\\nYou are...?\\n\\n25\\n00:02:43,983 --> 00:02:48,086\\n[People identify themselves]\\n\\n26\\n00:02:57,194 --> 00:03:02,757\\nOh, you are the one who\\'ll be staying at my place? Pleased to meet you!\\n\\n27\\n00:03:02,757 --> 00:03:14,745\\nAnd.. is anybody else hiding back there?\\n\\n28\\n00:03:14,745 --> 00:03:18,749\\nI\\'d like to say a few things to those who did not follow this story from the beginning\\n\\n29\\n00:03:18,749 --> 00:03:22,019\\nand I\\'ll start with something foolish which is in the name of the association.\\n\\n30\\n00:03:22,019 --> 00:03:33,464\\nNot the part that I already referenced, but the fact that it is called Pietro Roveri Association for <i>Free Collaboration and Knowledge<i>.</i></i>\\n\\n31\\n00:03:33,464 --> 00:03:41,039\\nThere was even a nonsensical discussion about knowledge or knowledges, so that it clearly meant free knowledge and <i>free</i> collaboration. [A discussion which only makes sense for Portuguese]\\n\\n32\\n00:03:41,039 --> 00:03:47,211\\nIt\\'s an important thought because it\\'s something we used to discuss a lot with him.\\n\\n33\\n00:03:47,211 --> 00:03:59,374\\nMe, Tom, well Pietro discussed these kind of things, and this one is something we discussed a lot, which is about the way we work and the way we collaborate.\\n\\n34\\n00:03:59,374 --> 00:04:06,615\\nThat not only knowledge should be free, but that the purpose of free knowledge is to allow human beings to be free.\\n\\n35\\n00:04:06,615 --> 00:04:14,238\\nAnd for that it is not enough that knowledge be free, even if we abolish copyright law or some other foolishness.\\n\\n36\\n00:04:14,238 --> 00:04:18,610\\nWe must also learn to collaborate as well, to work together in a free way.\\n\\n37\\n00:04:18,610 --> 00:04:28,485\\nAnd I think that was the agenda and the development of this whole process, that today arrives here with us constituting the association.\\n\\n38\\n00:04:28,485 --> 00:04:33,891\\nI think you chose the worse possible person to do this!\\n\\n39\\n00:04:33,891 --> 00:04:37,495\\nEveryone: maybe you should drink from the other bottle!\\n\\n40\\n00:04:37,495 --> 00:04:44,819\\nOh that\\'s true, is there any law against constituting an association while drunk?!\\n\\n41\\n00:04:44,819 --> 00:04:50,821\\nOh, well, I guess we\\'ll save it for later.\\n\\n42\\n00:04:50,821 --> 00:04:57,381\\nSo, going back, that was the thought I wanted to share, I hope it made sense to you.\\n\\n43\\n00:04:57,381 --> 00:05:14,750\\nSo the next step of our legal procedure is to delibarate about the constitution of the association.\\n\\n44\\n00:05:14,750 --> 00:05:25,375\\nAll in favor of constituting the Pietro Roveri Association for Free Collaboration and Knowledge, please raise your hand!\\n\\n45\\n00:05:25,375 --> 00:05:28,161\\nThere seems to be some bureaucracy regarding the show of hands.\\n\\n46\\n00:05:28,161 --> 00:05:32,849\\nRaise both for more intensity!\\n\\n47\\n00:05:32,849 --> 00:05:44,200\\nVery well then, we are constituted.\\n\\n48\\n00:05:44,200 --> 00:05:45,869\\nLet\\'s go...\\n\\n49\\n00:05:45,869 --> 00:05:52,986\\nSo I don\\'t become pathetic again, as my intention was to read one of Pietro\\'s poems between each step of this...\\n\\n50\\n00:05:52,986 --> 00:06:00,962\\nI\\'m still going to do that, but to calm myself now, I\\'m going to read something else first.\\n\\n51\\n00:06:00,962 --> 00:06:04,845\\nLet me see if I can find it...',\n", + " 'bytes': 5659,\n", + " 'sha1': 's7os1oj9tqoj509walqi0dblfue7gd6',\n", + " 'parent_id': 87227069,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 87558242,\n", + " 'timestamp': '2013-01-14T02:46:57Z',\n", + " 'user': {'text': '98.185.158.221'},\n", + " 'page': {'id': 23836784,\n", + " 'title': 'General quarters.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Captioning general quarters clip',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\n(Alarm sound)\\n\\n2\\n00:00:04,000 --> 00:00:07,000\\nThis is not a drill. This is not a drill.\\n\\n3\\n00:00:07,000 --> 00:00:09,000\\nGeneral quarters, general quarters.\\n\\n4\\n00:00:09,000 --> 00:00:11,000\\nAll hands man your battlestations.\\n\\n5\\n00:00:11,000 --> 00:00:14,000\\n(Alarm sound)',\n", + " 'bytes': 304,\n", + " 'sha1': 'g88jc9oyewu16gsup0tt86x1qajlrsw',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606351292,\n", + " 'timestamp': '2021-11-09T09:25:53Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 23859219,\n", + " 'title': 'Yeager supersonic flight 1947.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Yeager supersonic flight 1947.ogg.it.srt]] to [[TimedText:Yeager supersonic flight 1947.ogv.it.srt]]: rename of the original file',\n", + " 'text': \"0 \\n00:00:00,000 --> 00:00:05,500\\nNell'ottobre 1947, presso il centro sperimentale di Muroc, nel deserto californiano \\n\\n1\\n00:00:06,000 --> 00:00:09,500 \\nun pezzo di storia venne scritto da questo aereo, l'XS-1 \\n\\n2 \\n00:00:10,000 --> 00:00:13,500 \\ne dal suo pilota, il capitano Charles E. Yeager. \\n\\n3 \\n00:00:14,000 --> 00:00:18,500 \\nQuesto aereo e il suo pilota stanno per diventare i primi a volare \\n\\n4 \\n00:00:19,000 --> 00:00:22,000 \\na una velocità superiore a quella del suono in volo orizzontale. \\n\\n5 \\n00:00:25,000 --> 00:00:26,900 \\nUn B-29 porterà in quota l'XS-1 \\n\\n6 \\n00:00:27,000 --> 00:00:32,000 \\ne lo sgancerà a una quota di circa 10.500 m. \\n\\n7 \\n00:00:33,000 --> 00:00:34,500 \\nL'XS-1 non è un aereo militare \\n\\n8 \\n00:00:35,000 --> 00:00:37,500 \\nbensì un laboratorio di ricerca volante, \\n\\n9 \\n00:00:38,000 --> 00:00:40,500 \\nprogettato per testare gli effetti del volo supersonico sui velivoli. \\n\\n10 \\n00:00:42,000 --> 00:00:44,500 \\nÈ propulso da quattro motori a razzo \\n\\n11 \\n00:00:45,000 --> 00:00:48,500 \\npesa meno di 2.270 kg \\n\\n12 \\n00:00:49,000 --> 00:00:53,000 \\nma trasporta 3.600 kg di carburante. \\n\\n13 \\n00:00:54,000 --> 00:00:56,500 \\nI B-29 hanno fatto molte cose memorabili \\n\\n14 \\n00:00:57,000 --> 00:01:01,500 \\nMa nessuno di essi aveva mai condotto una missione come questa \\n\\n15 \\n00:01:02,000 --> 00:01:06,000 \\ne nessun aereo aveva mai fatto quello che l'XS-1 sta per fare. \\n\\n16 \\n00:01:16,000 --> 00:01:17,500 \\nInfrangere la barriera del suono in volo orizzontale \\n\\n17 \\n00:01:18,000 --> 00:01:20,500 \\nsarà più che un'impresa spettacolare: \\n\\n18 \\n00:01:21,000 --> 00:01:27,000 \\ndarà anche all'aeronautica militare importanti informazioni\\nsulle potenzialità del nuovo sistema propulsivo. \\n\\n19 \\n00:01:28,000 --> 00:01:29,500 \\nIl capitano Yeager sale a bordo dell'XS-1. \\n\\n20 \\n00:01:30,000 --> 00:01:33,000 \\nNon sarà un lungo volo quello che compirà nel piccolo velivolo: \\n\\n21 \\n00:01:34,000 --> 00:01:37,500 \\na piena potenza il volo non può durare più di due minuti e mezzo \\n\\n22 \\n00:01:38,000 --> 00:01:41,000 \\nma sarà un volo molto veloce. \\n\\n23 \\n00:01:59,000 --> 00:02:01,000 \\nPronti! \\n\\n24 \\n00:02:01,000 --> 00:02:02,500 \\nAnche gli equipaggi dei radar sono pronti \\n\\n25 \\n00:02:03,000 --> 00:02:05,500 \\na cronometrare a distanza, con l'unico mezzo possibile \\n\\n26 \\n00:02:06,000 --> 00:02:09,000 \\nper misurare la velocità di un aereo ad altissima quota. \\n\\n27 \\n00:02:13,500 --> 00:02:14,500 \\nEcco che va! \\n\\n28 \\n00:02:15,000 --> 00:02:19,000 \\nUn grande momento di un volo storico. \\n\\n29 \\n00:02:24,000 --> 00:02:25,500 \\nSi sta avvicinando alla barriera. \\n\\n30 \\n00:02:26,000 --> 00:02:32,000 \\nLa velocità del suono a 10.500 m è di 1.062 km/h. \\n\\n31 \\n00:02:33,000 --> 00:02:36,500 \\nIl momento veramente grande. Oltre la barriera del suono. \\n\\n32 \\n00:02:37,000 --> 00:02:39,500 \\nPer la prima volta, in volo orizzontale. \\n\\n33 \\n00:02:40,000 --> 00:02:48,500 \\nPer la prima volta un uomo ha pilotato un aereo che volava a una velocità superiore a quella del suono. \\n\\n34 \\n00:02:49,000 --> 00:02:53,500 \\nQuesto è valso al capitano Yeager molti onori, e allo storico aereo, l'XS-1 \\n\\n35 \\n00:02:54,000 --> 00:02:59,000 \\nè valso un posto nella Smithsonian Institution.\",\n", + " 'bytes': 3168,\n", + " 'sha1': 'rqqzukt3pjdjqf8lf3i76g6aicnv3by',\n", + " 'parent_id': 87642102,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 87835652,\n", + " 'timestamp': '2013-01-16T20:57:56Z',\n", + " 'user': {'text': '187.15.95.10'},\n", + " 'page': {'id': 23911782,\n", + " 'title': 'Italian anthem.ogg.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:20,000 --> 00:00:33,400 Irmãos da Itália, a Itália ressurgiu 2 00:00:34,600 --> 00:00:38,800 Com o elmo de cipião cobriu a cabeça 3 00:00:40,000 ...'\",\n", + " 'text': '1\\n00:00:20,000 --> 00:00:33,400\\nIrmãos da Itália, a Itália ressurgiu\\n\\n2\\n00:00:34,600 --> 00:00:38,800\\nCom o elmo de cipião cobriu a cabeça\\n\\n3\\n00:00:40,000 --> 00:00:49,400\\nOnde está a Vitória? que lhe sustém a cabeleira\\n\\n4\\n00:00:50,000 --> 00:00:59,400\\nPois, foi como escrava de Roma que Deus a criou.\\n\\n5\\n00:01:02,000 --> 00:01:11,400\\nIrmãos da Itália, a Itália ressurgiu.\\n\\n6\\n00:01:12,000 --> 00:01:16,400\\nCerremos fileiras, estejamos prontos para morrer!\\n\\n7\\n00:01:17,000 --> 00:01:21,400\\nEstejamos prontos para morrer pois a Itália chamou.\\n\\n8\\n00:01:22,000 --> 00:01:28,400\\nCerremos fileiras, estejamos prontos para morrer!\\n\\n9\\n00:01:29,000 --> 00:01:33,400\\nEstamos prontos para a morte pois a Itália nos chamou\\n\\n10\\n00:01:34,000 --> 00:01:36,400\\nSIM!',\n", + " 'bytes': 762,\n", + " 'sha1': 'lrfcbu6a4220nqthc4r9gtwu516z82a',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 671019609,\n", + " 'timestamp': '2022-07-03T18:12:20Z',\n", + " 'user': {'text': '46.196.99.36'},\n", + " 'page': {'id': 23990135,\n", + " 'title': 'Istiklâl Marsi instrumetal.ogg.tr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:5,000 --> 00:00:10,000\\nKorkma! Sönmez bu şafak\\n\\n2\\n00:00:10,000 --> 00:00:16,000\\n-larda yüzen al sancak.\\n\\n3\\n00:00:16,000 --> 00:00:23,000\\nSönmeden yurdumun üstünde tüten en son ocak\\n\\n4\\n00:00:23,000 --> 00:00:28,000\\nO benim milletimin\\n\\n5\\n00:00:28,000 --> 00:00:33,000\\nyıldızıdır, parlayacak\\n\\n6\\n00:00:33,000 --> 00:00:40,000\\no benimdir o benim milletimdir ancak\\n\\n7\\n00:00:40,000 --> 00:00:45,000\\nçatma, kurban olayım,\\n\\n8\\n00:00:45,000 --> 00:00:51,000\\nçehreni ey nazlı hilal!\\n\\n9\\n00:00:51,000 --> 00:00:58,000\\nKahraman ırkıma bir gül! ne bu şiddet, bu celâl! Sana \\n\\n10\\n00:00:58,000 --> 00:01:03,000\\nolmaz dökülen\\n\\n11\\n00:01:03,000 --> 00:01:07,000\\nkanlarımız sonra helal. Hakkıdır, \\n\\n12\\n00:01:07,000 --> 00:01:15,000,\\n Hakk'a tapan milletimin istiklâl.\",\n", + " 'bytes': 781,\n", + " 'sha1': 'dojwsvgdtfd869ub0feptmtcgwoj3nr',\n", + " 'parent_id': 561037883,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 674058250,\n", + " 'timestamp': '2022-07-13T13:42:50Z',\n", + " 'user': {'id': 1636, 'text': 'Kaihsu'},\n", + " 'page': {'id': 24019615,\n", + " 'title': 'Pekka Haavisto on nuclear power.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,000\\n... Finland.\\n\\n2\\n00:00:03,000 --> 00:00:09,000\\nI am actually in this German council which is following the Energiewende in Germany.\\n\\n3\\n00:00:09,000 --> 00:00:15,000\\nThe Germans will stop the use of nuclear power in 2022.\\n\\n4\\n00:00:15,000 --> 00:00:18,000\\nOf course, it was triggered by Hukusima.\\n\\n5\\n00:00:18,000 --> 00:00:22,000\\nI can see how serious Hukusima triggered the energy policies.\\n\\n6\\n00:00:22,000 --> 00:00:25,000\\nParticularly in Germany but also in other countries.\\n\\n7\\n00:00:25,000 --> 00:00:27,000\\nThis is also going on in Sweden. \\n\\n8\\n00:00:27,000 --> 00:00:30,000\\nI am always surprised that this is not touching Finland at all.\\n\\n9\\n00:00:30,000 --> 00:00:34,000\\nIt looks like we are on a totally different planet.\\n\\n10\\n00:00:34,000 --> 00:00:36,000\\nWe always think we are the best in running the nuclear power plants.\\n\\n11\\n00:00:36,000 --> 00:00:39,000\\nThe poor Japanese, they could’t run their own.\\n\\n12\\n00:00:39,000 --> 00:00:42,000\\nThe poor Russians, they could’t run their Chernobyl.\\n\\n13\\n00:00:42,000 --> 00:00:47,000\\nBut the nuclear power in Finland ... everything is so excellent.\\n\\n14\\n00:00:47,000 --> 00:00:49,000\\nI think there will be a turn also in Finland.\\n\\n15\\n00:00:49,000 --> 00:00:51,000\\nBut we are very slow in that turn.\\n\\n16\\n00:00:51,000 --> 00:00:55,000\\nI am a little bit sad that my country is lagging behind in this trend.\\n\\n17\\n00:00:55,000 --> 00:01:00,000\\nGermany is now investing totally in the new type of energy production ...\\n\\n18\\n00:01:00,000 --> 00:01:05,000\\n... and want to be the first in green energy and green economics in Europe.\\n\\n19\\n00:01:05,000 --> 00:01:08,000\\nAfterwards I am sure we will follow.',\n", + " 'bytes': 1672,\n", + " 'sha1': 'sb8tl28lqhsulma6770u6mbh9cek1h6',\n", + " 'parent_id': 233187037,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97615026,\n", + " 'timestamp': '2013-06-05T08:35:01Z',\n", + " 'user': {'text': '158.227.67.19'},\n", + " 'page': {'id': 24061041,\n", + " 'title': '¿Qué es Wikipedia?.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Undo revision 97598234 by [[Special:Contributions/81.184.240.57|81.184.240.57]] ([[User talk:81.184.240.57|talk]])',\n", + " 'text': '\\ufeff1\\n00:00:04,250 --> 00:00:05,500\\n¡Hola!\\n\\n2\\n00:00:05,650 --> 00:00:07,500\\nMi nombre es Mariana y quiero hablarte de Wikipedia.\\n\\n3\\n00:00:07,840 --> 00:00:09,500\\nSeguro que la conoces y la usas,\\n\\n4\\n00:00:09,750 --> 00:00:12,000\\npero, ¿sabes de qué se trata realmente\\n\\n5\\n00:00:12,000 --> 00:00:13,000\\ny cómo se hace?\\n\\n6\\n00:00:13,360 --> 00:00:16,050\\nAunque parezca una enciclopedia algo peculiar,\\n\\n7\\n00:00:16,300 --> 00:00:18,500\\npersigue lo mismo que las enciclopedias tradicionales:\\n\\n8\\n00:00:18,750 --> 00:00:22,250\\n\"Reunir de una manera ordenada todo el conocimiento generado por la humanidad\".\\n\\n9\\n00:00:22,500 --> 00:00:25,800\\nPero Wikipedia tiene también algunas diferencias significativas\\n\\n10\\n00:00:25,700 --> 00:00:27,750\\ncon las enciclopedias tradicionales.\\n\\n11\\n00:00:27,610 --> 00:00:28,400\\nEntre otras,\\n\\n12\\n00:00:28,400 --> 00:00:31,250\\nse trata de una enciclopedia desarrollada por miles de voluntarios\\n\\n13\\n00:00:31,500 --> 00:00:35,500\\ncon el objetivo de acercar el conocimiento a cada persona del planeta\\n\\n14\\n00:00:35,500 --> 00:00:36,600\\nen su propio idioma\\n\\n15\\n00:00:36,650 --> 00:00:37,840\\n¿Cómo se logra?\\n\\n16\\n00:00:37,850 --> 00:00:41,500\\n¿Cuáles son las reglas que organizan y guían a los wikipedistas?\\n\\n17\\n00:00:41,750 --> 00:00:43,800\\nDe esto se trata este vídeo.\\n\\n18\\n00:00:49,000 --> 00:00:52,800\\nCualquier persona puede incorporar o corregir información en Wikipedia\\n\\n19\\n00:00:52,900 --> 00:00:55,800\\npero debe recordar que se trata de una enciclopedia.\\n\\n20\\n00:00:55,800 --> 00:00:58,700\\nEsto significa que no se aceptan investigaciones originales\\n\\n21\\n00:00:58,700 --> 00:00:59,455\\nni ensayos.\\n\\n22\\n00:00:59,455 --> 00:01:02,000\\nQue los artículos deben ser de interés universal,\\n\\n23\\n00:01:02,000 --> 00:01:05,200\\ny que debe evitarse información de carácter efímero.\\n\\n24\\n00:01:05,200 --> 00:01:06,950\\nEsta es la primera regla,\\n\\n25\\n00:01:06,950 --> 00:01:08,500\\no como dicen los wikipedistas:\\n\\n26\\n00:01:08,500 --> 00:01:09,400\\n\"El primer pilar\"\\n\\n27\\n00:01:09,400 --> 00:01:10,450\\nde esta enciclopedia.\\n\\n28\\n00:01:13,100 --> 00:01:15,600\\nMiles de voluntarios escriben la enciclopedia.\\n\\n29\\n00:01:15,600 --> 00:01:18,200\\nSe trata de personas con diferentes orígenes,\\n\\n30\\n00:01:18,200 --> 00:01:19,100\\ndiferentes creencias,\\n\\n31\\n00:01:19,100 --> 00:01:20,450\\ndiferentes ideas.\\n\\n32\\n00:01:20,900 --> 00:01:24,900\\nWikipedia no asumirá como propio ningún punto de vista particular.\\n\\n33\\n00:01:25,150 --> 00:01:28,650\\nSino que intentará ofrecer la información desde todos los ángulos posibles.\\n\\n34\\n00:01:28,900 --> 00:01:31,250\\nPor eso, el segundo pilar de Wikipedia\\n\\n35\\n00:01:31,250 --> 00:01:33,250\\nse llama: Punto de vista neutral.\\n\\n36\\n00:01:35,000 --> 00:01:38,000\\nEl tercer pilar indica que Wikipedia es de contenido libre.\\n\\n37\\n00:01:38,400 --> 00:01:41,100\\nTodos los textos están disponibles con cualquier fin,\\n\\n38\\n00:01:41,350 --> 00:01:43,400\\nsiempre que al reutilizarlos se acrediten su origen\\n\\n39\\n00:01:43,400 --> 00:01:46,100\\ny se utilice la misma licencia \"Creative Commons\".\\n\\n40\\n00:01:46,350 --> 00:01:48,100\\nEn el caso de las imágenes\\n\\n41\\n00:01:48,100 --> 00:01:49,600\\nlas licencias pueden variar,\\n\\n42\\n00:01:49,850 --> 00:01:52,600\\npero siempre la copia y la reutilización están permitidas.\\n\\n43\\n00:01:53,300 --> 00:01:56,300\\nEn estos casos hay que leer la licencia en particular\\n\\n44\\n00:01:56,300 --> 00:01:58,500\\npara saber que restricciones se aplican.\\n\\n45\\n00:02:01,500 --> 00:02:04,300\\nTanta gente interactuando aveces genera discusiones.\\n\\n46\\n00:02:04,550 --> 00:02:08,650\\nPor eso el cuarto pilar indica que los usuarios deben respetarse mutuamente\\n\\n47\\n00:02:08,650 --> 00:02:10,200\\ny presumir buena fe.\\n\\n48\\n00:02:10,200 --> 00:02:13,900\\nLa tolerancia y cordialidad son fundamentales para el proyecto.\\n\\n49\\n00:02:16,800 --> 00:02:19,500\\nWikipedia no tiene normas firmes.\\n\\n50\\n00:02:19,750 --> 00:02:21,250\\nAunque parezca curioso,\\n\\n51\\n00:02:20,800 --> 00:02:23,300\\neste es el quinto pilar de esta enciclopedia.\\n\\n52\\n00:02:23,320 --> 00:02:27,000\\nPara colaborar, solo es imprescindible guiarse por el sentido común\\n\\n53\\n00:02:27,000 --> 00:02:30,200\\ny respetar a los wikipedistas que nos acompañan en nuestra aventura.\\n\\n54\\n00:02:30,450 --> 00:02:32,500\\nTodas las personas pueden aportar algo.\\n\\n55\\n00:02:32,750 --> 00:02:34,750\\nHay quienes desarrollan artículos complejos\\n\\n56\\n00:02:34,750 --> 00:02:37,300\\ny quienes corrigen pequeñas faltas de ortografía.\\n\\n57\\n00:02:37,300 --> 00:02:40,000\\nVos también puedes ayudar creando, editando y corrigiendo artículos\\n\\n58\\n00:02:41,000 --> 00:02:42,000\\nToda edición es reversible.\\n\\n59\\n00:02:42,000 --> 00:02:46,250\\nSi te equivocas, siempre se puede recuperar la versión anterior.\\n\\n60\\n00:02:46,300 --> 00:02:48,500\\n¡Sé valiente! ¡Sé wikipedista!',\n", + " 'bytes': 4736,\n", + " 'sha1': '203ql9tqciq4v5odvp65n385eqfsu84',\n", + " 'parent_id': 97598234,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 88724860,\n", + " 'timestamp': '2013-01-24T22:32:57Z',\n", + " 'user': {'text': '193.49.123.21'},\n", + " 'page': {'id': 24159461,\n", + " 'title': 'Fr-wagon.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nUn wagon',\n", + " 'bytes': 40,\n", + " 'sha1': 'lv64fb2uxdnx5x2o0equy3gttgq4t8x',\n", + " 'parent_id': 88724814,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 88813305,\n", + " 'timestamp': '2013-01-25T18:39:43Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 24186957,\n", + " 'title': '2012-06 Dessau Hauptbahnhof←Tempelhofer Straße.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:46,160 Hauptbahnhof 2 00:01:05,319 --> 00:01:26,520 Theater 3 00:02:23,040 --> 00:02:59,880 Hauptpost 4 00:03:46,360 --> 00:04:54,88...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:46,160\\nHauptbahnhof\\n\\n2\\n00:01:05,319 --> 00:01:26,520\\nTheater\\n\\n3\\n00:02:23,040 --> 00:02:59,880\\nHauptpost\\n\\n4\\n00:03:46,360 --> 00:04:54,880\\nMuseum Nord\\n\\n5\\n00:05:08,400 --> 00:05:26,520\\nDessau Center\\n\\n6\\n00:05:59,800 --> 00:06:28,200\\nFriedhofstraße\\n\\n7\\n00:06:55,000 --> 00:07:27,640\\nAm Alten Wasserturm\\n\\n8\\n00:08:05,840 --> 00:08:35,039\\nWasserwerkstraße\\n\\n9\\n00:09:02,600 --> 00:09:21,000\\nKlughardtstraße\\n\\n10\\n00:10:05,760 --> 00:10:28,080\\nFriedhof Ⅲ\\n\\n11\\n00:10:54,440 --> 00:11:40,120\\nDessauer Verkehrsgesellschaft\\n\\n12\\n00:12:08,680 --> 00:12:33,160\\nDamaschkestraße\\n\\n13\\n00:13:03,800 --> 00:13:28,600\\nPeterholzstraße\\n\\n14\\n00:14:05,680 --> 00:14:22,320\\nTempelhofer Straße',\n", + " 'bytes': 690,\n", + " 'sha1': '0g4i6f9c84ncpk8dmij7nou7f6013sc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 88970370,\n", + " 'timestamp': '2013-01-27T05:16:23Z',\n", + " 'user': {'text': '190.194.117.207'},\n", + " 'page': {'id': 24246923,\n", + " 'title': 'Marcha de San Lorenzo.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Official lyrics from http://en.wikipedia.org/wiki/San_Lorenzo_march#Lyrics',\n", + " 'text': '1\\n00:00:06,000 --> 00:00:11,000\\nFebo asoma, ya sus rayos...\\n\\n2\\n00:00:11,000 --> 00:00:16,000\\n...iluminan el histórico convento.\\n\\n3\\n00:00:16,000 --> 00:00:21,000\\nTras los muros, sordos ruidos...\\n\\n4\\n00:00:21,000 --> 00:00:26,000\\n...oír se dejan de corceles y de acero.\\n\\n5\\n00:00:26,000 --> 00:00:31,000\\nSon las huestes que prepara...\\n\\n6\\n00:00:31,000 --> 00:00:36,000\\n...San Martín para luchar en San Lorenzo.\\n\\n7\\n00:00:36,000 --> 00:00:40,000\\nY el clarín estridente sonó.\\n\\n8\\n00:00:40,000 --> 00:00:45,000\\nY la voz del gran jefe a la carga ordenó.\\n\\n9\\n00:00:55,000 --> 00:01:05,000\\nAvanza el enemigo, a paso redoblado...\\n\\n10\\n00:01:05,000 --> 00:01:23,000\\nY al viento desplegado, su rojo pabellón.\\n\\n11\\n00:01:24,000 --> 00:01:34,000\\nY nuestros granaderos, aliados de la Gloria...\\n\\n12\\n00:01:34,000 --> 00:01:51,000\\n...inscriben en la Historia su página mejor.\\n\\n13\\n00:02:07,000 --> 00:02:12,000\\nCabral, soldado heroico...\\n\\n14\\n00:02:12,000 --> 00:02:17,000\\n...cubriéndose de Gloria...\\n\\n15\\n00:02:17,000 --> 00:02:21,000\\n...cual precio a la victoria...\\n\\n16\\n00:02:21,000 --> 00:02:26,000\\n...su vida rinde haciéndose inmortal.\\n\\n17\\n00:02:26,000 --> 00:02:36,000\\nY allí salvó su arrojo, la libertad naciente...\\n\\n18\\n00:02:36,000 --> 00:02:40,000\\n...de nuestro continente.\\n\\n19\\n00:02:40,000 --> 00:02:46,000\\n¡Honor, honor al gran Cabral!\\n\\n20\\n00:03:04,000 --> 00:03:14,000\\nY allí salvó su arrojo, la libertad naciente...\\n\\n21\\n00:03:14,000 --> 00:03:18,000\\n...de nuestro continente.\\n\\n22\\n00:03:18,000 --> 00:03:22,000\\n¡Honor, honor al gran Cabral!',\n", + " 'bytes': 1539,\n", + " 'sha1': 's50tjv72r8ey7pacnxdfsyy1rrok8ak',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 88989711,\n", + " 'timestamp': '2013-01-27T10:06:15Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 24255586,\n", + " 'title': '2012-06 Dessau Junkerspark←Hauptbahnhof.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:41,720 Junkerspark 2 00:00:58,960 --> 00:01:48,040 Köthener Straße 3 00:02:45,000 --> 00:03:09,920 Zoberberg-Mitte 4 00:04:02,160 ...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:41,720\\nJunkerspark\\n\\n2\\n00:00:58,960 --> 00:01:48,040\\nKöthener Straße\\n\\n3\\n00:02:45,000 --> 00:03:09,920\\nZoberberg-Mitte\\n\\n4\\n00:04:02,160 --> 00:04:53,640\\nStädtisches Klinikum\\n\\n5\\n00:05:37,320 --> 00:05:53,760\\nMedizinisches Versorgungszentrum\\n\\n6\\n00:06:26,560 --> 00:07:08,520\\nLindenstraße\\n\\n7\\n00:07:59,520 --> 00:08:54,640\\nKleine Schaftrift\\n\\n8\\n00:09:24,560 --> 00:09:42,400\\nBerufsschulzentrum Sporthalle\\n\\n9\\n00:10:11,040 --> 00:11:40,840\\nBerufsschulzentrum Haupteingang\\n\\n10\\n00:12:03,280 --> 00:12:25,800\\nRobert-Bosch-Straße\\n\\n11\\n00:12:56,160 --> 00:13:27,600\\nRodebillestraße\\n\\n12\\n00:14:33,920 --> 00:15:01,880\\nAmalienstraße\\n\\n13\\n00:15:33,280 --> 00:15:55,400\\nAugust-Bebel-Platz\\n\\n14\\n00:16:06,680 --> 00:16:13,800\\n◄Museum West►\\n\\n15\\n00:16:27,720 --> 00:17:07,040\\nMuseum Nord\\n\\n16\\n00:18:21,600 --> 00:18:45,360\\nHauptpost\\n\\n17\\n00:19:43,720 --> 00:20:05,080\\nTheater\\n\\n18\\n00:20:25,000 --> 00:21:07,920\\nHauptbahnhof',\n", + " 'bytes': 929,\n", + " 'sha1': 'gc9du4rgazc1j0q2gvm0kwum8ir3b3d',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 88997782,\n", + " 'timestamp': '2013-01-27T12:06:17Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 24258583,\n", + " 'title': '2012-06 Dessau Tempelhofer Straße←Sportplatz Kreuzberge←Hauptbahnhof.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:23,760 Tempelhofer Straße 2 00:01:05,120 --> 00:01:29,880 Peterholzstraße 3 00:02:03,480 --> 00:02:29,360 Damaschkestraße 4 00:03...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:23,760\\nTempelhofer Straße\\n\\n2\\n00:01:05,120 --> 00:01:29,880\\nPeterholzstraße\\n\\n3\\n00:02:03,480 --> 00:02:29,360\\nDamaschkestraße\\n\\n4\\n00:03:04,000 --> 00:03:50,000\\nDessauer Verkehrsgesellschaft\\n\\n5\\n00:04:34,680 --> 00:05:04,760\\nFriedhof Ⅲ\\n\\n6\\n00:05:54,360 --> 00:06:13,560\\nAugustenstraße\\n\\n7\\n00:07:00,280 --> 00:07:36,840\\nKaufhalle am Kreuzberg\\n\\n8\\n00:08:26,000 --> 00:08:51,360\\nSportplatz Kreuzbergstraße\\n\\n9\\n00:09:02,360 --> 00:09:35,520\\nKaufhalle am Kreuzberg\\n\\n10\\n00:10:18,960 --> 00:10:39,560\\nAugustenstraße\\n\\n11\\n00:11:33,480 --> 00:11:50,400\\nKlughardtstraße\\n\\n12\\n00:12:26,440 --> 00:12:52,160\\nWasserwerkstraße\\n\\n13\\n00:13:29,720 --> 00:13:46,320\\nAm Alten Wasserturm\\n\\n14\\n00:14:15,160 --> 00:14:45,000\\nFriedhofstraße\\n\\n15\\n00:15:19,920 --> 00:15:40,240\\nDessau Center\\n\\n16\\n00:15:53,040 --> 00:16:19,600\\nMuseum Nord\\n\\n17\\n00:17:50,960 --> 00:18:16,960\\nHauptpost\\n\\n18\\n00:19:23,240 --> 00:19:41,000\\nTheater\\n\\n19\\n00:20:02,160 --> 00:20:41,640\\nHauptbahnhof',\n", + " 'bytes': 966,\n", + " 'sha1': '8l96rj5bkewrqrfzw0euhhflios78la',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 89013160,\n", + " 'timestamp': '2013-01-27T15:14:34Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 24264079,\n", + " 'title': '2012-06 Dessau Hbf→Wörlitz.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:02:08,840 Dessau Hbf 2 00:05:00,720 --> 00:05:40,320 Anschluss Fahrzeugtechnik 3 00:09:40,640 --> 00:10:05,120 Dessau-Waldersee 4 00:16...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:02:08,840\\nDessau Hbf\\n\\n2\\n00:05:00,720 --> 00:05:40,320\\nAnschluss Fahrzeugtechnik\\n\\n3\\n00:09:40,640 --> 00:10:05,120\\nDessau-Waldersee\\n\\n4\\n00:16:47,919 --> 00:17:27,040\\nDessau Adria\\n\\n5\\n00:19:28,640 --> 00:19:41,040\\nKapen Biosphärenreservat\\n\\n6\\n00:23:51,360 --> 00:28:07,720\\nOranienbaum (Anh)\\n\\n7\\n00:35:58,200 --> 00:36:41,520\\nWörlitz',\n", + " 'bytes': 349,\n", + " 'sha1': 'rro1w37xq8agafaj44bogiers0hmfpf',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 89037119,\n", + " 'timestamp': '2013-01-27T19:03:13Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 24273589,\n", + " 'title': '2012-06 Wörlitz→Dessau Hbf.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:01:45,640 Wörlitz 2 00:09:06,120 --> 00:13:38,280 Oranienbaum (Anh) 3 00:17:46,080 --> 00:18:44,160 Kapen Biosphärenreservat 4 00:20:...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:01:45,640\\nWörlitz\\n\\n2\\n00:09:06,120 --> 00:13:38,280\\nOranienbaum (Anh)\\n\\n3\\n00:17:46,080 --> 00:18:44,160\\nKapen Biosphärenreservat\\n\\n4\\n00:20:36,280 --> 00:21:21,840\\nDessau Adria\\n\\n5\\n00:27:40,160 --> 00:28:48,560\\nDessau-Waldersee\\n\\n6\\n00:32:34,880 --> 00:33:24,200\\nAnschluss Fahrzeugtechnik\\n\\n7\\n00:36:04,800 --> 00:37:31,240\\nDessau Hbf',\n", + " 'bytes': 349,\n", + " 'sha1': '1tapyrm4d6o2jqdxukroaennwi1eflu',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 112529340,\n", + " 'timestamp': '2013-12-25T08:05:42Z',\n", + " 'user': {'id': 365698, 'text': 'Whym'},\n", + " 'page': {'id': 24276078,\n", + " 'title': 'The Impact Of Wikipedia.webm.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'fix',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nウィキペディアは非営利でありながら\\u3000世界第5位のウェブサイトです\\nウィキペディアのすべての記事はボランティアによって執筆されています\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nそのボランティアを何人かご紹介します...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\n僕はネパール出身です\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nイラクです\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nインドです\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nニュージャージー州バイラムです\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nイギリスのバーミンガムに住んでいます\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nイリノイ州シカゴ -- ボリビア、ラパス -- ケニア、ナイロビ\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nマレーシア、クアラルンプール -- イタリア、ミラノ -- 南アフリカ\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nポーランド -- 日本 -- アルメニア\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nブラジル -- ロシア -- ボツワナ\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nイスラエル -- ウズベキスタン -- 香港\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nイスタンブール -- メキシコ\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nテネシー州チャタヌーガ\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\n2008年にウィキペディアに参加したばかりの頃\\n多くの記事を書き始めました\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nそのうちの1はマリアム・ノアという女性についてだったと思います\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nその女性についての記事はありませんでした\\nですから、これが私の最初の記事になったのです\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nそれからすっかり忘れてたの!\\n2年か3年経ってから\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nこの記事を見つけてびっくりしました\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\n10万人以上の人がこの記事を読んでくれたの\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nそれだけの人がこの記事を使い\\u3000この記事から情報を得たの\\nこの記事を見つけてくれたのよ\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nだからこの10万人以上の人に\\n影響を与えたって感じられるの\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nはじめて[編集]ボタンを押す時は\\nとっても怖かったわ\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\n「どうしよう。何もかもめちゃくちゃにしてしまう!\\nうまくは行かないわ!できない!」\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nウィキペディアは「オープンソース」だよね -- つまり誰もが自分のアイディアを掲載できる場所 \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nそこに別の人が登場して\\u3000そのアイディアを磨きあげ\\n優れたものにしてくれるんだ\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\n毎日\\u3000毎時\\u3000毎分\\u3000何千人もの人が関わって\\nウィキペディアをさらに向上させています\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nその多くがボランティアによって成り立っているんだ\\nとてもユニークなボランティア作業だよね\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\n好きな話題がある人達が\\nプロもアマチュアも関係なく1つにまとまるの\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\n最初は意見が違っても\\nじきに協力しあうようになるの\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nインターネットの大企業がやっていると思うような作業を\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\n僕のようなボランティアが取り組んでいるんだ\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\n「だから私が正しくて\\u3000あなたが間違っているのよ\\nこれは私の記事よ」とは言えないの\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\n偏見という問題があれば\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\n誰かがそれを警告しているはず\\nそうでなかったら\\u3000自分ができるのよ\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nとても多くの人が記事を読み\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\n訂正してくれます\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nそれでボタンを押したら\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nジャ~ン\\u3000旅の始まりよ\\u3000とっても良い気分だったわ\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\n「確率」について書き始めました \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\n最初に書いた記事は「確率」についてでした\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nウィキペディアのために執筆した主な記事の1つは \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\n刺し傷についてだったんだ\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\n僕が書いたのは\\u3000フライフィッシング\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nモンタナの歴史\\u3000国立公園の歴史\\u3000イエローストーン\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\n活用されていない穀物\\u3000チェスプレーヤー\\u3000生物多様性\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\n軍隊の歴史\\u3000アルメニアの歴史\\u3000ローマの歴史\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\n裁判官\\u3000コミュニケーション\\u3000人物紹介\\u3000サッカー\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nアイルランド\\u3000ペンシルベニア\\u3000主に写真\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nピンクフロイド\\u3000パンとお菓子を焼くこと\\u3000だって大好きだから\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\n核兵器と放射能\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\n急流でのカヤック\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\n世間にはあらゆる情報があるけれど\\nあちこちに散らばっているため\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nそれを1か所にまとめているんです\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nすべての人達に無料で知識を提供しているの \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nその知識を活用してもらうために\\nそれぞれの言語で\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nお金持ちであろうとなかろうと\\n誰もがこのサイトで助けられます\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\n営利目的の企業だったら動機も違うし\\n求められることも違います\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nウィキメディア財団から給料をもらっていません\\n経費さえも払い戻しを受けていません\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nはっきりと言えることが大切だと思うのですが\\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nいいですか\\u3000私が寄付を募っていても\\n自分のためのお金じゃないんです\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\n財団のための寄付をお願いしているんです\\n自分が所属するすばらしいコミュニティをサポートするためです\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nウィキペディアは世界に大きな違いを\\nもたらすチャンスを自分に与えてくれたの\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nあなたの未来\\u3000子供の未来への\\n投資のようなものね\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nありがとうございました\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nこの映像に含まれる内容は、別途記載がない限り、クリエイティブコモンズのAttribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0)に基づいて提供されています。この作業はウィキメディア財団のビクター・グリガスに帰属します。\\nこの映像で表現された見解と意見は、映像中の個人のものであって、必ずしも個人が所属する企業、組織、または機関のポリシーまたは位置付けを示すものではありません。\\nウィキメディア財団およびその他の組織の商標とロゴは、クリエイティブコモンズのライセンス条件の下では含まれていません。ウィキメディアの商標とロゴ、「ウィキペディア」、およびパズル状の地球儀のロゴは、ウィキメディア財団の登録商標です。詳細は、当財団のポリシーページ(http://www.wikimediafoundation.org/wiki/Trademark_Policy)をご覧いただくか、trademarks@wikimedia.orgまでご連絡ください。\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nこの映像はクリエイティブコモンズライセンスに基づいて発行されています。\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nウィキペディア同様、自由にコピー、リミックス、共有できます。',\n", + " 'bytes': 8357,\n", + " 'sha1': '3av3m3icrpfwjka8ppfpsry9kujmgee',\n", + " 'parent_id': 89596489,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 339055675,\n", + " 'timestamp': '2019-02-14T20:35:11Z',\n", + " 'user': {'id': 316682, 'text': 'Rzuwig'},\n", + " 'page': {'id': 24285361,\n", + " 'title': '¿Qué es Wikipedia?.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '\\ufeff1\\n00:00:04,250 --> 00:00:05,500\\nHello!\\n\\n2\\n00:00:05,650 --> 00:00:07,500\\nMy name is Mariana and I want to tell you about Wikipedia.\\n\\n3\\n00:00:07,840 --> 00:00:09,500\\nI bet you know and use it,\\n\\n4\\n00:00:09,750 --> 00:00:12,000\\nbut, do you really know what it is all about?...\\n\\n5\\n00:00:12,000 --> 00:00:13,000\\nAnd how it\\'s made?\\n\\n6\\n00:00:13,360 --> 00:00:16,050\\nAlthough it looks like a quirky encyclopedia\\n\\n7\\n00:00:16,300 --> 00:00:18,500\\nit pursues the same goal as traditional encyclopedias:\\n\\n8\\n00:00:18,750 --> 00:00:22,250\\n\"Bringing all the human knowledge together in a systematic way\".\\n\\n9\\n00:00:22,500 --> 00:00:25,800\\nHowever, Wikipedia has some other meaningful differences\\n\\n10\\n00:00:25,700 --> 00:00:27,750\\nto traditional encyclopedias.\\n\\n11\\n00:00:27,610 --> 00:00:28,400\\nFor instance,\\n\\n12\\n00:00:28,400 --> 00:00:31,250\\nit is developed by thousands of volunteers\\n\\n13\\n00:00:31,500 --> 00:00:35,500\\naimed at bringing knowledge to every single person in the planet,\\n\\n14\\n00:00:35,500 --> 00:00:36,600\\nin their own language.\\n\\n15\\n00:00:36,650 --> 00:00:37,840\\nHow is that achieved?\\n\\n16\\n00:00:37,850 --> 00:00:41,500\\nWhich are the rules that organise and guide \\'\\'wikipedians\\'\\'?\\n\\n17\\n00:00:41,750 --> 00:00:43,800\\nThat\\'s the subject of this video.\\n\\n18\\n00:00:49,000 --> 00:00:52,800\\nAnyone can add or correct Wikipedia content\\n\\n19\\n00:00:52,900 --> 00:00:55,800\\nbut one must acknowledge it\\'s still an encyclopedia.\\n\\n20\\n00:00:55,800 --> 00:00:59,455\\nSo neither original research nor essays are accepted here.\\n\\n21\\n00:00:59,455 --> 00:01:02,000\\nArticles must convey universal interest,\\n\\n22\\n00:01:02,000 --> 00:01:05,200\\nand ephemeral information should be avoided.\\n\\n23\\n00:01:05,200 --> 00:01:06,950\\nThat is the very first rule,\\n\\n24\\n00:01:06,950 --> 00:01:08,500\\nor just as \\'\\'wikipedians\\'\\' call it:\\n\\n25\\n00:01:08,500 --> 00:01:09,400\\nThe First Pillar\\n\\n26\\n00:01:09,400 --> 00:01:10,450\\nby which this encyclopedia works.\\n\\n27\\n00:01:13,100 --> 00:01:15,600\\nA number of volunteers write this encyclopedia.\\n\\n28\\n00:01:15,600 --> 00:01:18,200\\nPeople with distinct backgrounds,\\n\\n29\\n00:01:18,200 --> 00:01:19,100\\nvaried beliefs,\\n\\n30\\n00:01:19,100 --> 00:01:20,450\\ndifferent ideas.\\n\\n31\\n00:01:20,900 --> 00:01:24,900\\nWikipedia shall not assume as its own any particular point of view;\\n\\n32\\n00:01:25,150 --> 00:01:28,650\\nbut will try to cover information from all of the possible perspectives.\\n\\n33\\n00:01:28,900 --> 00:01:31,250\\nThat\\'s why the second pillar\\n\\n34\\n00:01:31,250 --> 00:01:33,250\\nis called: Neutral Point of View.\\n\\n35\\n00:01:35,000 --> 00:01:38,000\\nThe third pillar indicates that Wikipedia is free content.\\n\\n36\\n00:01:38,400 --> 00:01:41,100\\nTexts are available to be used, modified and distributed for any purpose,\\n\\n37\\n00:01:41,350 --> 00:01:43,400\\nas long as their source is properly attributed\\n\\n38\\n00:01:43,400 --> 00:01:46,100\\nand the same \"Creative Commons\" copyright license is kept.\\n\\n39\\n00:01:46,350 --> 00:01:49,600\\nLicensing may vary for images\\n\\n40\\n00:01:49,850 --> 00:01:52,600\\nbut copying and reuse is always allowed.\\n\\n41\\n00:01:53,300 --> 00:01:56,300\\nFor those cases, each particular license must be read\\n\\n42\\n00:01:56,300 --> 00:01:58,500\\nin order to understand relevant freedoms and duties.\\n\\n43\\n00:02:01,500 --> 00:02:04,300\\nSo much people interacting may create disputes.\\n\\n44\\n00:02:04,550 --> 00:02:08,650\\nHence the fourth pillar states that users should be respectful with each other,\\n\\n45\\n00:02:08,650 --> 00:02:10,200\\nand assume good faith.\\n\\n46\\n00:02:10,200 --> 00:02:13,900\\nTolerance and politeness are fundamental for the project.\\n\\n47\\n00:02:16,800 --> 00:02:19,500\\nWikipedia has no firm rules.\\n\\n48\\n00:02:19,750 --> 00:02:21,250\\nIt may seem odd,\\n\\n49\\n00:02:20,800 --> 00:02:23,300\\nbut this actually is the fifth pillar of this encyclopedia.\\n\\n50\\n00:02:23,320 --> 00:02:27,000\\nFor you to participate, only common sense is required\\n\\n51\\n00:02:27,000 --> 00:02:30,200\\nand respect to other wikipedians aboard this adventure.\\n\\n52\\n00:02:30,450 --> 00:02:32,500\\nAnyone can contribute something.\\n\\n53\\n00:02:32,750 --> 00:02:34,750\\nSome people develop entire complex articles\\n\\n54\\n00:02:34,750 --> 00:02:37,300\\nwhile some others fix tiny spelling mistakes.\\n\\n55\\n00:02:37,300 --> 00:02:40,000\\nYou can also help by creating, editing and correcting articles.\\n\\n56\\n00:02:41,000 --> 00:02:42,000\\nEditions are reversible,\\n\\n57\\n00:02:42,000 --> 00:02:46,250\\nso if you get something wrong it is always possible to go back to a prior version.\\n\\n58\\n00:02:46,300 --> 00:02:48,500\\nBe brave! Be a wikipedian!',\n", + " 'bytes': 4481,\n", + " 'sha1': 'av93l14al3vkp2kj0ck8u1xj3fg0mg4',\n", + " 'parent_id': 185685439,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 89167447,\n", + " 'timestamp': '2013-01-29T05:03:36Z',\n", + " 'user': {'id': 1296194, 'text': 'RayneVanDunem'},\n", + " 'page': {'id': 24306657,\n", + " 'title': 'Obama2009HRCSpeechPart1.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,767 --> 00:00:09,567 The President: To Joe Solmonese, who's doing an outstanding job on behalf of HRC. 1 00:00:09,567 --> 00:00:12,333 (applau...'\",\n", + " 'text': \"0\\n00:00:00,767 --> 00:00:09,567\\nThe President:\\nTo Joe Solmonese, who's doing\\nan outstanding job on behalf of HRC.\\n\\n1\\n00:00:09,567 --> 00:00:12,333\\n(applause)\\n\\n2\\n00:00:12,333 --> 00:00:14,600\\nTo my great friend and\\nsupporter, Terry Bean,\\n\\n3\\n00:00:14,600 --> 00:00:16,133\\nco-founder of HRC.\\n\\n4\\n00:00:16,133 --> 00:00:21,867\\n(applause)\\n\\n5\\n00:00:21,867 --> 00:00:23,700\\nRepresentative Patrick Kennedy.\\n\\n6\\n00:00:23,700 --> 00:00:27,333\\n(applause)\\n\\n7\\n00:00:27,333 --> 00:00:29,934\\nDavid Huebner, the\\nAmbassador-designee to New\\n\\n8\\n00:00:29,934 --> 00:00:31,433\\nZealand and Samoa.\\n\\n9\\n00:00:31,433 --> 00:00:35,133\\n(applause)\\n\\n10\\n00:00:35,133 --> 00:00:38,700\\nJohn Berry, our Director of\\nOPM, who's doing a great job.\\n\\n11\\n00:00:38,700 --> 00:00:42,467\\n(applause)\\n\\n12\\n00:00:42,467 --> 00:00:47,400\\nNancy Sutley, Chairman of\\nCouncil on Environmental Quality.\\n\\n13\\n00:00:47,400 --> 00:00:49,533\\n(applause)\\n\\n14\\n00:00:49,533 --> 00:00:52,700\\nFred Hochberg, Chairman\\nof Export-Import Bank.\\n\\n15\\n00:00:52,700 --> 00:00:54,033\\n(applause)\\n\\n16\\n00:00:54,033 --> 00:00:59,200\\nAnd my dear friend, Tipper\\nGore, who's in the house.\\n\\n17\\n00:00:59,200 --> 00:01:05,567\\n(applause)\\n\\n18\\n00:01:05,567 --> 00:01:09,767\\nThank you so much, all of you.\\n\\n19\\n00:01:09,767 --> 00:01:14,667\\nIt is a privilege to be here\\ntonight to open for Lady GaGa.\\n\\n20\\n00:01:14,667 --> 00:01:38,100\\n(applause, laughter,\\nand cheering)\\n\\n21\\n00:01:38,100 --> 00:01:39,900\\nI've made it.\\n\\n22\\n00:01:39,900 --> 00:01:48,033\\n(laughter)\\n\\n23\\n00:01:48,033 --> 00:01:52,867\\nI want to thank the Human Rights\\nCampaign for inviting me to\\n\\n24\\n00:01:52,867 --> 00:01:57,867\\nspeak and for the work you do\\nevery day in pursuit of equality\\n\\n25\\n00:01:57,867 --> 00:02:00,767\\non behalf of the millions of\\npeople in this country who work\\n\\n26\\n00:02:00,767 --> 00:02:04,400\\nhard in their jobs and care\\ndeeply about their families --\\n\\n27\\n00:02:04,400 --> 00:02:07,633\\nand who are gay, lesbian,\\nbisexual, or transgender.\\n\\n28\\n00:02:07,633 --> 00:02:16,667\\n(applause)\\n\\n29\\n00:02:16,667 --> 00:02:20,166\\nFor nearly 30 years, you've\\nadvocated on behalf of those\\n\\n30\\n00:02:20,166 --> 00:02:22,133\\nwithout a voice.\\n\\n31\\n00:02:22,133 --> 00:02:23,967\\nThat's not easy.\\n\\n32\\n00:02:23,967 --> 00:02:27,400\\nFor despite the real\\ngains that we've made,\\n\\n33\\n00:02:27,400 --> 00:02:31,934\\nthere's still laws to change and\\nthere's still hearts to open.\\n\\n34\\n00:02:31,934 --> 00:02:35,533\\nThere are still fellow\\ncitizens, perhaps neighbors,\\n\\n35\\n00:02:35,533 --> 00:02:39,734\\neven loved ones -- good\\nand decent people --\\n\\n36\\n00:02:39,734 --> 00:02:44,333\\nwho hold fast to outworn\\narguments and old attitudes;\\n\\n37\\n00:02:44,333 --> 00:02:48,700\\nwho fail to see your\\nfamilies like their families;\\n\\n38\\n00:02:48,700 --> 00:02:52,800\\nwho would deny you the rights\\nmost Americans take for granted.\\n\\n39\\n00:02:52,800 --> 00:02:55,166\\nAnd that's painful and\\nit's heartbreaking.\\n\\n40\\n00:02:55,166 --> 00:02:59,100\\n(applause)\\n\\n41\\n00:02:59,100 --> 00:03:02,967\\nAnd yet you continue, leading by\\nthe force of the arguments you\\n\\n42\\n00:03:02,967 --> 00:03:06,300\\nmake, and by the power of the\\nexample that you set in your own\\n\\n43\\n00:03:06,300 --> 00:03:09,667\\nlives -- as parents and friends, as PTA members and church\\n\\n44\\n00:03:09,667 --> 00:03:13,633\\nmembers, as advocates and leaders in your communities.\\n\\n45\\n00:03:13,633 --> 00:03:15,800\\nAnd you're making a difference.\\n\\n46\\n00:03:15,800 --> 00:03:20,500\\nThat's the story of the movement\\nfor fairness and equality,\\n\\n47\\n00:03:20,500 --> 00:03:22,200\\nand not just for\\nthose who are gay,\\n\\n48\\n00:03:22,200 --> 00:03:25,633\\nbut for all those in our history\\nwho've been denied the rights\\n\\n49\\n00:03:25,633 --> 00:03:27,600\\nand responsibilities\\nof citizenship --\\n\\n50\\n00:03:27,600 --> 00:03:37,266\\n(applause)\\n\\n51\\n00:03:37,266 --> 00:03:39,367\\n-- for all who've been told\\nthat the full blessings and\\n\\n52\\n00:03:39,367 --> 00:03:43,934\\nopportunities of this\\ncountry were closed to them.\\n\\n53\\n00:03:43,934 --> 00:03:46,734\\nIt's the story of progress\\nsought by those with little\\n\\n54\\n00:03:46,734 --> 00:03:51,266\\ninfluence or power; by men and\\nwomen who brought about change\\n\\n55\\n00:03:51,266 --> 00:03:54,333\\nthrough quiet, personal\\nacts of compassion --\\n\\n56\\n00:03:54,333 --> 00:03:58,800\\nand defiance -- wherever\\nand whenever they could.\\n\\n57\\n00:03:58,800 --> 00:04:01,000\\nIt's the story of the\\nStonewall protests,\\n\\n58\\n00:04:01,000 --> 00:04:02,266\\nwhen a group of citizens --\\n\\n59\\n00:04:02,266 --> 00:04:06,200\\n(applause)\\n\\n60\\n00:04:06,200 --> 00:04:07,867\\n-- when a group of\\ncitizens with few options,\\n\\n61\\n00:04:07,867 --> 00:04:10,467\\nand fewer supporters stood\\nup against discrimination and\\n\\n62\\n00:04:10,467 --> 00:04:13,166\\nhelped to inspire a movement.\\n\\n63\\n00:04:13,166 --> 00:04:16,633\\nIt's the story of an epidemic\\nthat decimated a community --\\n\\n64\\n00:04:16,633 --> 00:04:19,166\\nand the gay men and women who\\ncame to support one another and\\n\\n65\\n00:04:19,166 --> 00:04:23,333\\nsave one another; who continue\\nto fight this scourge;\\n\\n66\\n00:04:23,333 --> 00:04:26,333\\nand who have demonstrated before\\nthe world that different kinds\\n\\n67\\n00:04:26,333 --> 00:04:29,934\\nof families can show the same\\ncompassion in a time of need.\\n\\n68\\n00:04:29,934 --> 00:04:33,900\\n(applause)\\n\\n69\\n00:04:33,900 --> 00:04:36,133\\nAnd it's the story of the Human\\nRights Campaign and the fights\\n\\n70\\n00:04:36,133 --> 00:04:39,533\\nyou've fought for nearly\\n30 years: helping to elect\\n\\n71\\n00:04:39,533 --> 00:04:41,700\\ncandidates who\\nshare your values;\\n\\n72\\n00:04:41,700 --> 00:04:44,266\\nstanding against those who would\\nenshrine discrimination into our\\n\\n73\\n00:04:44,266 --> 00:04:47,734\\nConstitution; advocating on\\nbehalf of those living with\\n\\n74\\n00:04:47,734 --> 00:04:52,000\\nHIV/AIDS; and fighting for\\nprogress in our capital and\\n\\n75\\n00:04:52,000 --> 00:04:53,500\\nacross America.\\n\\n76\\n00:04:53,500 --> 00:04:57,500\\n(applause)\\n\\n77\\n00:04:57,500 --> 00:05:01,333\\nThis story, this\\nfight continue now.\\n\\n78\\n00:05:01,333 --> 00:05:06,200\\nAnd I'm here with a simple\\nmessage: I'm here with you in that fight.\\n\\n79\\n00:05:06,200 --> 00:05:42,166\\n(cheering and applause)\\n\\n80\\n00:05:42,166 --> 00:05:44,266\\nFor even as we face\\nextraordinary challenges as a\\n\\n81\\n00:05:44,266 --> 00:05:47,800\\nnation, we cannot --\\nand we will not --\\n\\n82\\n00:05:47,800 --> 00:05:50,934\\nput aside issues\\nof basic equality.\\n\\n83\\n00:05:50,934 --> 00:05:55,367\\nI greatly appreciate the support\\nI've received from many in this room.\\n\\n84\\n00:05:55,367 --> 00:06:00,934\\nI also appreciate that many of\\nyou don't believe progress has\\n\\n85\\n00:06:00,934 --> 00:06:02,700\\ncome fast enough.\\n\\n86\\n00:06:02,700 --> 00:06:08,767\\nI want to be honest about that,\\nbecause it's important to be\\n\\n87\\n00:06:08,767 --> 00:06:11,567\\nhonest among friends.\\n\\n88\\n00:06:11,567 --> 00:06:15,800\\nNow, I've said this before,\\nI'll repeat it again --\\n\\n89\\n00:06:15,800 --> 00:06:18,734\\nit's not for me to\\ntell you to be patient,\\n\\n90\\n00:06:18,734 --> 00:06:22,100\\nany more than it was for others\\nto counsel patience to African\\n\\n91\\n00:06:22,100 --> 00:06:25,367\\nAmericans petitioning for equal\\nrights half a century ago.\\n\\n92\\n00:06:25,367 --> 00:06:31,333\\n(applause)\\n\\n93\\n00:06:31,333 --> 00:06:36,433\\nBut I will say this: We have\\nmade progress and we will make more.\\n\\n94\\n00:06:36,433 --> 00:06:38,633\\nAnd I think it's important to\\nremember that there is not a\\n\\n95\\n00:06:38,633 --> 00:06:41,934\\nsingle issue that my\\nadministration deals with on a\\n\\n96\\n00:06:41,934 --> 00:06:47,834\\ndaily basis that does not\\ntouch on the lives of the LGBT community.\\n\\n97\\n00:06:47,834 --> 00:06:50,333\\n(applause)\\n\\n98\\n00:06:50,333 --> 00:06:53,400\\nWe all have a stake in\\nreviving this economy.\\n\\n99\\n00:06:53,400 --> 00:06:56,333\\nWe all have a stake in\\nputting people back to work.\\n\\n100\\n00:06:56,333 --> 00:06:58,500\\nWe all have a stake in improving\\nour schools and achieving\\n\\n101\\n00:06:58,500 --> 00:07:01,000\\nquality, affordable health care.\\n\\n102\\n00:07:01,000 --> 00:07:03,834\\nWe all have a stake in meeting\\nthe difficult challenges we face\\n\\n103\\n00:07:03,834 --> 00:07:05,934\\nin Iraq and Afghanistan.\\n\\n104\\n00:07:05,934 --> 00:07:08,967\\n(applause)\\n\\n105\\n00:07:08,967 --> 00:07:12,100\\nFor while some may wish to\\ndefine you solely by your sexual\\n\\n106\\n00:07:12,100 --> 00:07:14,800\\norientation or gender\\nidentity alone, you know --\\n\\n107\\n00:07:14,800 --> 00:07:18,467\\nand I know -- that none of us wants to be defined by just one\\n\\n108\\n00:07:18,467 --> 00:07:20,500\\npart of what makes us whole.\\n\\n109\\n00:07:20,500 --> 00:07:27,734\\n(applause)\\n\\n110\\n00:07:27,734 --> 00:07:31,333\\nYou're also parents worried\\nabout your children's futures.\\n\\n111\\n00:07:31,333 --> 00:07:35,934\\nYou're spouses who fear that you\\nor the person you love will lose a job.\\n\\n112\\n00:07:35,934 --> 00:07:39,633\\nYou're workers worried about the\\nrising cost of health insurance.\\n\\n113\\n00:07:39,633 --> 00:07:40,734\\nYou're soldiers.\\n\\n114\\n00:07:40,734 --> 00:07:41,900\\nYou are neighbors.\\n\\n115\\n00:07:41,900 --> 00:07:42,967\\nYou are friends.\\n\\n116\\n00:07:42,967 --> 00:07:45,433\\nAnd, most importantly, you are\\nAmericans who care deeply about\\n\\n117\\n00:07:45,433 --> 00:07:46,800\\nthis country and its future.\\n\\n118\\n00:07:46,800 --> 00:08:03,500\\n(cheering and applause)\\n\\n119\\n00:08:03,500 --> 00:08:07,400\\nSo I know you want me working on\\njobs and the economy and all the\\n\\n120\\n00:08:07,400 --> 00:08:09,367\\nother issues that\\nwe're dealing with.\\n\\n121\\n00:08:09,367 --> 00:08:12,633\\nBut my commitment to you is\\nunwavering even as we wrestle\\n\\n122\\n00:08:12,633 --> 00:08:14,667\\nwith these enormous problems.\\n\\n123\\n00:08:14,667 --> 00:08:18,166\\nAnd while progress may be taking\\nlonger than you'd like as a\\n\\n124\\n00:08:18,166 --> 00:08:22,133\\nresult of all that we face\\n-- and that's the truth --\\n\\n125\\n00:08:22,133 --> 00:08:25,633\\ndo not doubt the direction we\\nare heading and the destination\\n\\n126\\n00:08:25,633 --> 00:08:26,834\\nwe will reach.\\n\\n127\\n00:08:26,834 --> 00:08:35,500\\n(applause)\\n\\n128\\n00:08:35,500 --> 00:08:38,567\\nMy expectation is that when\\nyou look back on these years,\\n\\n129\\n00:08:38,567 --> 00:08:42,133\\nyou will see a time in which\\nwe put a stop to discrimination\\n\\n130\\n00:08:42,133 --> 00:08:45,600\\nagainst gays and lesbians -- whether in the office or on the battlefield.\\n\\n131\\n00:08:45,600 --> 00:08:52,000\\n(applause)\\n\\n132\\n00:08:52,000 --> 00:08:55,000\\nYou will see a time in which we\\nas a nation finally recognize\\n\\n133\\n00:08:55,000 --> 00:09:00,066\\nrelationships between two men\\nor two women as just as real and\\n\\n134\\n00:09:00,066 --> 00:09:02,600\\nadmirable as relationships\\nbetween a man and a woman.\\n\\n135\\n00:09:02,600 --> 00:09:30,433\\n(cheering and applause)\\n\\n136\\n00:09:30,433 --> 00:09:35,500\\nYou will see a nation that's\\nvaluing and cherishing these\\n\\n137\\n00:09:35,500 --> 00:09:39,734\\nfamilies as we build a\\nmore perfect union --\\n\\n138\\n00:09:39,734 --> 00:09:44,300\\na union in which gay Americans\\nare an important part.\\n\\n139\\n00:09:44,300 --> 00:09:46,333\\nI am committed to these goals.\\n\\n140\\n00:09:46,333 --> 00:09:49,934\\nAnd my administration will\\ncontinue fighting to achieve them.\\n\\n141\\n00:09:49,934 --> 00:09:52,700\\nAnd there's no more poignant\\nor painful reminder of how\\n\\n142\\n00:09:52,700 --> 00:09:58,467\\nimportant it is that we do so\\nthan the loss experienced by\\n\\n143\\n00:09:58,467 --> 00:10:02,400\\nDennis and Judy Shepard, whose\\nson Matthew was stolen in a\\n\\n144\\n00:10:02,400 --> 00:10:06,367\\nterrible act of\\nviolence 11 years ago.\\n\\n145\\n00:10:06,367 --> 00:10:09,867\\nIn May, I met with Judy -- who's here tonight with her husband --\\n\\n146\\n00:10:09,867 --> 00:10:13,567\\nI met her in the Oval Office,\\nand I promised her that we were\\n\\n147\\n00:10:13,567 --> 00:10:16,633\\ngoing to pass an inclusive\\nhate crimes bill --\\n\\n148\\n00:10:16,633 --> 00:10:18,166\\na bill named for her son.\\n\\n149\\n00:10:18,166 --> 00:10:19,033\\n(applause)\\n\\n150\\n00:10:19,033 --> 00:10:20,934\\nThis struggle has been long.\\n\\n151\\n00:10:20,934 --> 00:10:23,266\\nTime and again we\\nfaced opposition.\\n\\n152\\n00:10:23,266 --> 00:10:26,467\\nTime and again, the measure\\nwas defeated or delayed.\\n\\n153\\n00:10:26,467 --> 00:10:28,333\\nBut the Shepards never gave up.\\n\\n154\\n00:10:28,333 --> 00:10:29,700\\n(applause)\\n\\n155\\n00:10:29,700 --> 00:10:32,633\\nThey turned tragedy into\\nan unshakeable commitment.\\n\\n156\\n00:10:32,633 --> 00:10:33,800\\n(applause)\\n\\n157\\n00:10:33,800 --> 00:10:36,533\\nCountless activists and\\norganizers never gave up.\\n\\n158\\n00:10:36,533 --> 00:10:40,133\\nYou held vigils, you spoke\\nout, year after year,\\n\\n159\\n00:10:40,133 --> 00:10:42,000\\nCongress after Congress.\\n\\n160\\n00:10:42,000 --> 00:10:44,300\\nThe House passed the\\nbill again this week.\\n\\n161\\n00:10:44,300 --> 00:10:45,467\\n(applause)\\n\\n162\\n00:10:45,467 --> 00:10:48,100\\nAnd I can announce that\\nafter more than a decade,\\n\\n163\\n00:10:48,100 --> 00:10:51,066\\nthis bill is set to pass\\nand I will sign it into law.\\n\\n164\\n00:10:51,066 --> 00:11:23,967\\n(cheering and applause)\\n\\n165\\n00:11:23,967 --> 00:11:29,367\\nIt's a testament to the\\ndecade-long struggle of Judy and\\n\\n166\\n00:11:29,367 --> 00:11:35,233\\nDennis, who tonight will receive\\na tribute named for somebody who\\n\\n167\\n00:11:35,233 --> 00:11:40,367\\ninspired so many of us --\\nnamed for Senator Ted Kennedy,\\n\\n168\\n00:11:40,367 --> 00:11:42,934\\nwho fought tirelessly\\nfor this legislation.\\n\\n169\\n00:11:42,934 --> 00:11:45,533\\n(applause)\\n\\n170\\n00:11:45,533 --> 00:11:47,934\\nAnd it's a testament to the\\nHuman Rights Campaign and those\\n\\n171\\n00:11:47,934 --> 00:11:50,500\\nwho organized and advocated.\\n\\n172\\n00:11:50,500 --> 00:11:52,834\\nAnd it's a testament to Matthew\\nand to others who've been the\\n\\n173\\n00:11:52,834 --> 00:11:56,667\\nvictims of attacks not\\njust meant to break bones,\\n\\n174\\n00:11:56,667 --> 00:11:59,767\\nbut to break spirits -- not meant just to inflict harm,\\n\\n175\\n00:11:59,767 --> 00:12:02,066\\nbut to instill fear.\\n\\n176\\n00:12:02,066 --> 00:12:04,734\\nTogether, we will have moved\\ncloser to that day when no one\\n\\n177\\n00:12:04,734 --> 00:12:07,300\\nhas to be afraid to\\nbe gay in America.\\n\\n178\\n00:12:07,300 --> 00:12:15,367\\n(applause)\\n\\n179\\n00:12:15,367 --> 00:12:18,133\\nWhen no one has to fear walking\\ndown the street holding the hand\\n\\n180\\n00:12:18,133 --> 00:12:20,066\\nof the person they love.\\n\\n181\\n00:12:20,066 --> 00:12:23,367\\n(applause)\\n\\n182\\n00:12:23,367 --> 00:12:26,467\\nBut we know there's\\nfar more work to do.\\n\\n183\\n00:12:26,467 --> 00:12:29,066\\nWe're pushing hard to\\npass an inclusive employee\\n\\n184\\n00:12:29,066 --> 00:12:30,667\\nnon-discrimination bill.\\n\\n185\\n00:12:30,667 --> 00:12:36,900\\n(applause)\\n\\n186\\n00:12:36,900 --> 00:12:39,333\\nFor the first time ever,\\nan administration official\\n\\n187\\n00:12:39,333 --> 00:12:42,266\\ntestified in Congress\\nin favor of this law.\\n\\n188\\n00:12:42,266 --> 00:12:44,834\\nNobody in America should be\\nfired because they're gay,\\n\\n189\\n00:12:44,834 --> 00:12:48,467\\ndespite doing a great job and\\nmeeting their responsibilities.\\n\\n190\\n00:12:48,467 --> 00:12:49,567\\nIt's not fair.\\n\\n191\\n00:12:49,567 --> 00:12:50,734\\nIt's not right.\\n\\n192\\n00:12:50,734 --> 00:12:52,033\\nWe're going to put a stop to it.\\n\\n193\\n00:12:52,033 --> 00:13:00,900\\n(applause)\\n\\n194\\n00:13:00,900 --> 00:13:03,633\\nAnd it's for this reason that if\\nany of my nominees are attacked\\n\\n195\\n00:13:03,633 --> 00:13:05,834\\nnot for what they believe\\nbut for who they are,\\n\\n196\\n00:13:05,834 --> 00:13:08,667\\nI will not waver in my support,\\nbecause I will not waver in my\\n\\n197\\n00:13:08,667 --> 00:13:11,633\\ncommitment to ending\\ndiscrimination in all its forms.\\n\\n198\\n00:13:11,633 --> 00:13:21,300\\n(applause)\",\n", + " 'bytes': 15884,\n", + " 'sha1': 'mcm9a94qnj2p2j1j1x0q1exfxfmcnxz',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 142192424,\n", + " 'timestamp': '2014-12-11T00:04:51Z',\n", + " 'user': {'id': 1297740, 'text': 'Snævar'},\n", + " 'page': {'id': 24363179,\n", + " 'title': 'Wikimedia Italia - WikiGuida 3 - Wikisource.ogv.is.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:08,860 --> 00:00:11,674\\nWikiheimild er stafrænt bókasafn á netinu\\n\\n2\\n00:00:11,698 --> 00:00:14,610\\nsem safnar saman textum á hvaða tungumáli sem er\\n\\n3\\n00:00:14,631 --> 00:00:18,947\\nsvo framalega sem þau eru fallin úr höfundarétti eða eru undir frjálsu leyfi.\\n\\n4\\n00:00:19,057 --> 00:00:21,556\\nEins og öll verkefni Wikimedia stofnunarinnar,\\n\\n5\\n00:00:21,607 --> 00:00:24,997\\ner Wikiheimild verkefni þar sem hverjir sem er geta unnið saman,\\n\\n6\\n00:00:25,039 --> 00:00:27,126\\nmeira að segja nafnlaust.\\n\\n7\\n00:00:27,918 --> 00:00:31,750\\nÁ Wikiheimild eru textar eftirritaðir frá útgefinni heimild\\n\\n8\\n00:00:31,764 --> 00:00:34,695\\nog sniðnir til að auðvelda lestur.\\n\\n9\\n00:00:34,815 --> 00:00:38,255\\nSkáldsögur og smásögur, ritgerðir og handbækur,\\n\\n10\\n00:00:38,299 --> 00:00:43,289\\nsálmabækur og stjórnmálaleg veggspjöld, þjóðlög og ljóð,\\n\\n11\\n00:00:43,336 --> 00:00:47,899\\nævintýri og barnagælur, lögfræðileg skjöl og vísindaleg verk\\n\\n12\\n00:00:47,959 --> 00:00:50,565\\nritgerðir og fræðigreinar svo framalega að þau voru þegar varin\\n\\n13\\n00:00:50,596 --> 00:00:53,132\\nhjá menntastofnun.\\n\\n14\\n00:00:53,286 --> 00:00:57,167\\nEins og Wikipedia, er verkefninu skipt niður í mismunandi tungumál:\\n\\n15\\n00:00:57,252 --> 00:01:00,502\\nÁ ensku útgáfu Wikiheimildar þarft þú að skrifa texta á ensku, \\n\\n16\\n00:01:00,563 --> 00:01:04,436\\ná frönsku útgáfunni þarft þú að skrifa texta á frönsku og svo framvegis...\\n\\n17\\n00:01:04,564 --> 00:01:06,930\\nTextum er safnað saman á öllum tungumálum\\n\\n18\\n00:01:06,995 --> 00:01:09,373\\nmeiraðsegja þem sem hafa fáa málhafa og á mállýskum,\\n\\n19\\n00:01:09,425 --> 00:01:12,455\\nef þeir hafa verið útgefnir og eftirritaðir frjálst.\\n\\n20\\n00:01:12,546 --> 00:01:15,058\\nÞessi skilyrði eiga við þýðingar,\\n\\n21\\n00:01:15,094 --> 00:01:18,599\\nsem eru afleidd verk. Þessvegna má ekki innifela\\n\\n22\\n00:01:18,649 --> 00:01:22,314\\nþýdda texta sem ekki er búið að gefa út. Bæði textinn og þýðingin\\n\\n23\\n00:01:22,340 --> 00:01:26,855\\nverður að vera í almenningi eða útgefin undir frjálsu leyfi.\\n\\n24\\n00:01:27,653 --> 00:01:30,714\\nHvern texta þarf að afrita til Wikiheimildar\\n\\n25\\n00:01:30,792 --> 00:01:33,903\\nog nota hann sem grunn að afleiddum verkum,\\n\\n26\\n00:01:33,947 --> 00:01:35,947\\nlíka í hagnaðarskyni.\\n\\n27\\n00:01:36,049 --> 00:01:38,521\\nÞað þarf því að hafa verið dreift með leyfi\\n\\n28\\n00:01:38,571 --> 00:01:41,952\\nsem sviptir\\n\\n29\\n00:01:42,020 --> 00:01:45,091\\nhöfundarétti verksins, bæði í Bandaríkjunum,\\n\\n30\\n00:01:45,121 --> 00:01:47,295\\nþar sem Wikisource vefþjónninn er,\\n\\n31\\n00:01:47,344 --> 00:01:50,206\\nog í landinu þar sem textinn var útgefinn.\\n\\n32\\n00:01:51,271 --> 00:01:54,115\\nEins og er, samkvæmt Bandarískum lögum,\\n\\n33\\n00:01:54,196 --> 00:01:56,372\\neru verk sannarlega í almenningi\\n\\n34\\n00:01:56,443 --> 00:01:59,539\\nef þau voru útgefin fyrir 1923.\\n\\n35\\n00:01:59,745 --> 00:02:03,243\\nÁ Ítalíu er verkið höfundaréttarvarið\\n\\n36\\n00:02:03,271 --> 00:02:06,128\\nþangað til 70 ár hafa liðið frá andláti höfundar.\\n\\n37\\n00:02:06,221 --> 00:02:09,314 Texti getur því verið í almenningi á Ítalíu\\n\\n38\\n00:02:09,348 --> 00:02:12,666\\nen ekki í Bandaríkjunum og öfugt.\\n\\n39\\n00:02:12,772 --> 00:02:16,358\\nTexta samtímans má eingöngu bæta við á Wikiheimild\\n\\n40\\n00:02:16,424 --> 00:02:19,124\\nef höfundurinn hefur sérstaklega leyft\\n\\n41\\n00:02:19,166 --> 00:02:22,406\\nalla notkun á verkinu, þar á meðal notkun í hagnaðarskyni.\\n\\n42\\n00:02:22,576 --> 00:02:25,000\\nHöfundurinn má krefja\\n\\n43\\n00:02:25,048 --> 00:02:27,961\\naðra um leyfi til eftirgerðar.\\n\\n44\\n00:02:28,023 --> 00:02:31,482\\nÁ wikiheimild, ætti hver sem er að geta endurskoðað textann\\n\\n45\\n00:02:31,549 --> 00:02:33,549\\nog þessvegna er notuð\\n\\n46\\n00:02:33,622 --> 00:02:36,425\\nskönnun af allri bókinni.\\n\\n47\\n00:02:36,496 --> 00:02:40,065\\nÞegar textar eru eftirritaðir annarstaðar er nauðsynlegt að treysta\\n\\n48\\n00:02:40,148 --> 00:02:44,873\\naðeins áreiðanlegum heimildum og innifela nákvæmar tilvísanir.\\n\\n49\\n00:02:45,478 --> 00:02:48,645\\nNotendur wikiheimildar eru skrifarar stafrænnu aldarinnar\\n\\n50\\n00:02:48,662 --> 00:02:50,839\\nsem útfrá áhuga eða umhyggju\\n\\n51\\n00:02:50,856 --> 00:02:53,207\\nskrifa texta sem eru frjálsir og aðgengilegir.\\n\\n52\\n00:02:53,272 --> 00:02:55,910\\nHvern og einn texta þarf að skrá nákvæmlega,\\n\\n53\\n00:02:55,942 --> 00:02:58,574\\nhalda ritvenjum þess tíma\\n\\n54\\n00:02:58,630 --> 00:03:02,413\\nog venjum samfélagsins.\\n\\n55\\n00:03:03,187 --> 00:03:05,604\\nFerlið í kringum skrifun hefst\\n\\n56\\n00:03:05,622 --> 00:03:07,622\\nmeð stofnun \"frumrits\" síðu,\\n\\n57\\n00:03:07,669 --> 00:03:09,900\\nsem sækir skönnuðu bókina frá Commons, \\n\\n58\\n00:03:09,969 --> 00:03:14,026\\nsysturverkefni Wikiheimildar sem safnar frjálsum margmiðlunarskrám.\\n\\n59\\n00:03:14,311 --> 00:03:17,069\\nTenglarnir á hverja einustu síðu\\n\\n60\\n00:03:17,138 --> 00:03:19,234\\nbókarinnar eru búnir til sjálfvirkt.\\n\\n61\\n00:03:19,339 --> 00:03:22,100\\nMeð því að smella á tengil er hægt að sjá\\n\\n62\\n00:03:22,163 --> 00:03:24,260\\nskönnuðu síðuna og hinum megin\\n\\n63\\n00:03:24,305 --> 00:03:27,124\\nbox þar sem eftirritið er skrifað.\\n\\n64\\n00:03:27,235 --> 00:03:30,104\\nOft er ekki nauðsynlegt að eftirrita textann frá grunni, \\n\\n65\\n00:03:30,147 --> 00:03:33,186\\nþví skannaða síðan er þegar unninn af hugbúnaði\\n\\n66\\n00:03:33,217 --> 00:03:35,725\\nsem greinir sjálfkrafa bókstafi.\\n\\n67\\n00:03:35,850 --> 00:03:38,507\\nGrafísk uppsetning síðnana er samræmd\\n\\n68\\n00:03:38,570 --> 00:03:41,442\\nmeð sniðum sem raða sjálfkrafa\\n\\n69\\n00:03:41,483 --> 00:03:45,252\\nformum eða endurteknum hlutum síðnanna eða textanna.\\n\\n70\\n00:03:45,514 --> 00:03:48,625\\nÞegar eftirritun allra blaðsíðanna er lokið,\\n\\n71\\n00:03:48,654 --> 00:03:51,859\\ner textinn settur saman eftir skiptingu hans\\n\\n72\\n00:03:51,934 --> 00:03:54,145\\n(til dæmis eftir köflum).\\n\\n73\\n00:03:54,252 --> 00:03:57,051\\nStílsniðni textinn er því samræmdur\\n\\n74\\n00:03:57,082 --> 00:03:59,340\\nmeð þeirri uppbyggingu sem höfundurinn vill, \\n\\n75\\n00:03:59,378 --> 00:04:02,782\\nen einnig aðlagaður að sjálestri og prentun.\\n\\n76\\n00:04:03,619 --> 00:04:06,646\\nEins og Wikipedia er Wikiheimild byggð á hugbúnaði\\n\\n77\\n00:04:06,707 --> 00:04:09,448\\nsem leyfir að búa til tengla, \\n\\n78\\n00:04:09,479 --> 00:04:12,829\\nsem tengja bækur og höfunda bókasafnsins saman.\\n\\n79\\n00:04:12,882 --> 00:04:15,725\\nTil dæmis, getur tilvitnun (eða útdráttur úr ritgerð) \\n\\n80\\n00:04:15,759 --> 00:04:18,712\\ntengt í höfundinn eða tilvísaða textans.\\n\\n81\\n00:04:19,493 --> 00:04:22,952\\nFyrir neðan hvern texta eru tenglar á flokka\\n\\n82\\n00:04:23,000 --> 00:04:25,461\\nsem hjálpa að raða bækum og höfundum\\n\\n83\\n00:04:25,475 --> 00:04:27,951\\neftir gerð, uppruna og svo framvegis.\\n\\n84\\n00:04:28,056 --> 00:04:30,511\\nÞar að auki, getur hver texti tengst\\n\\n85\\n00:04:30,549 --> 00:04:32,742\\nþýðingum síðum á öðrum wikiheimildum, \\n\\n86\\n00:04:32,798 --> 00:04:34,798\\ngrein hennar á Wikipedia\\n\\n87\\n00:04:34,819 --> 00:04:37,186\\neða hvaða Wikimedia verkefni sem er.\\n\\n88\\n00:04:37,469 --> 00:04:40,687\\nHver höfundur sem hefur útgefin verk á Wikiheimild\\n\\n89\\n00:04:40,749 --> 00:04:44,586\\nhefur sérstaka síðu, sem inniheldur grunnupplýsingar\\n\\n90\\n00:04:44,640 --> 00:04:47,616\\nlista yfir texta sem til eru\\n\\n91\\n00:04:47,640 --> 00:04:49,640\\nog aðrar upplýsingar sem skipta máli, \\n\\n92\\n00:04:49,696 --> 00:04:53,502\\neins og verk þar sem er tilvitnun í höfundinn.\\n\\n93\\n00:04:53,780 --> 00:04:57,355\\nHérna eru einnig tenglar á síður um höfundinn\\n\\n94\\n00:04:57,410 --> 00:05:02,153\\ná öðrum Wikimedia verkefnum og öðrum tungumálum.\\n\\n95\\n00:05:02,333 --> 00:05:06,430\\nAð lokum minnumst við á gáttirnar sem hjálpa notendum\\n\\n96\\n00:05:06,470 --> 00:05:09,616\\ní gegnum útgefna texta um ákveðið efni.\\n\\n97\\n00:05:11,060 --> 00:05:14,525\\nÁ wikiheimild, eins og á Wikipedia, höfum við möppudýr, \\n\\n98\\n00:05:14,602 --> 00:05:17,541\\nsérfræðinga sem treyst er af samfélaginu\\n\\n99\\n00:05:17,567 --> 00:05:19,567\\nog hafa aðgang að \\n\\n100\\n00:05:19,622 --> 00:05:22,126\\nnokkrum möguleikum hugbúnaðarins.\\n\\n101\\n00:05:22,168 --> 00:05:25,461\\nMeð reynslu sinni, eru þeir eins og bókasafnsverðir\\n\\n102\\n00:05:25,500 --> 00:05:27,799\\nsem leiðbeina öðrum notendum.\\n\\n103\\n00:05:28,693 --> 00:05:31,682\\nUmræðuvettvangur Wikiheimildar er Potturinn, \\n\\n104\\n00:05:31,693 --> 00:05:34,385\\nþar sem við getum spurt spurninga til reyndari notenda\\n\\n105\\n00:05:34,413 --> 00:05:36,694\\nog byrjað nýjar umræður.\\n\\n106\\n00:05:36,784 --> 00:05:39,678\\nTil að fara best með ákveðin efni\\n\\n107\\n00:05:39,748 --> 00:05:42,992\\neru sérstakar síður: þema síður.\\n\\n108\\n00:05:43,046 --> 00:05:45,046\\nÁ ítölsku útgáfu wikisource \\n\\n109\\n00:05:45,119 --> 00:05:47,784\\neru þau hjartað í virkni verkefnisins og samkomustaður\\n\\n110\\n00:05:47,822 --> 00:05:51,135\\nfyrir þá notendur sem eru áhugasamir um ákveðið efni.\\n\\n111\\n00:05:51,434 --> 00:05:54,070\\nTil að sýna framför í yfirferð\\n\\n112\\n00:05:54,102 --> 00:05:56,402\\nákveðins texta eða hluta hans\\n\\n113\\n00:05:56,437 --> 00:05:59,859\\ner 5 þrepa kerfi notað.\\n\\n114\\n00:06:00,137 --> 00:06:02,347\\nÞegar textinn er tilbúinn í hverju þrepi, \\n\\n115\\n00:06:02,385 --> 00:06:05,805\\nmeð réttan stíl og yfirfrarinn af tveimur eða fleiri notendum\\n\\n116\\n00:06:05,874 --> 00:06:08,890\\nsem bera hana saman við upprunalegu útgáfuna á prenti, þá fær hann stjörnu,\\n\\n117\\n00:06:08,944 --> 00:06:12,526\\nsem gerir hann að \"Wikisource útgáfu\" texta.\\n\\n118\\n00:06:12,731 --> 00:06:15,311\\nTill að beina orku margra notenda, \\n\\n119\\n00:06:15,346 --> 00:06:17,850\\neinn eða fleiri textar eru valdir í hverjum mánuði \\n\\n120\\n00:06:17,892 --> 00:06:20,521\\ntil að vera yfirfarnir og endurskoðaðir saman. \\n\\n121\\n00:06:21,242 --> 00:06:23,416\\nMeð Wikisource getur þú sýnt \\n\\n122\\n00:06:23,455 --> 00:06:25,843\\nást þína fyrir bókunum, bjargað þeim frá glötun \\n\\n123\\n00:06:25,861 --> 00:06:28,776\\nog gert þær aðgengilegar fyrir alla á netinu. \\n\\n124\\n00:06:29,140 --> 00:06:31,140\\nTaktu þátt í wikisource \\n\\n125\\n00:06:31,161 --> 00:06:34,216\\nog byggðu frjálst bókasafn.',\n", + " 'bytes': 10138,\n", + " 'sha1': 'ihshi9g14gddyw7crzgrxpie7gpvln3',\n", + " 'parent_id': 89415426,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90100531,\n", + " 'timestamp': '2013-02-08T07:50:30Z',\n", + " 'user': {'id': 418651, 'text': '84user'},\n", + " 'page': {'id': 24382555,\n", + " 'title': 'Mud and Sand-silent 0to508.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'fix?',\n", + " 'text': \"1\\n00:00:01,000 --> 00:00:18,000\\n[title cards]\\n\\n2\\n00:07:38,000 --> 00:07:43,000\\nMama dear - poor Sap got his today!\\n\\n3\\n00:07:44,000 --> 00:07:51,000\\nHe's lucky! When do I get mine?\\n\\n4\\n00:07:57,000 --> 00:08:02,000\\nI won it at the bullfight - and you shall have half!\\n\\n5\\n00:08:21,000 --> 00:08:24,000\\nThat will keep you in tomatoes and garlic - for two years!\\n\\n6\\n00:08:31,000 --> 00:08:37,000\\nVaseline's little victory wins him an offer to fight the bulls of Madrid - and that night --\",\n", + " 'bytes': 483,\n", + " 'sha1': '6rc5slja2cb0qp8xgpxffig4bgkpqod',\n", + " 'parent_id': 89510076,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 114530861,\n", + " 'timestamp': '2014-01-23T09:45:35Z',\n", + " 'user': {'id': 2708182, 'text': 'Zhuyifei1999'},\n", + " 'page': {'id': 24382608,\n", + " 'title': 'Mud and Sand-508toendnok.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'rm cat',\n", + " 'text': \"1\\n09:47,000 --> 09:52,000\\nRhubarb - they tell me in Madrid they ''drink'' a great deal - will ''you drink'' anything?\\n\\n2\\n09:55,000 --> 09:57,000\\nAnything!!!\\n\\n3\\n10:28,000 --> 10:34,000\\nCaramel be readt at snrise! We will be married - and leave on the 5:15 -\\n\\n4\\n10:40,000 --> 10:46,000\\nDarling, I am going away to Madrid - but nothing shall ever part us - \\n\\n5\\n11:00,000 --> 11:03,000\\nend of scene with Caramel and Sapo\\n\\n6\\n11:05,000 --> 11:13,000\\nAfter throwing the bull for two years - Valesine becomes the idol of Spain --\\n\\n7\\n11:48,000 --> 11:54,000\\nThe Caf⃩䔀猀瀀愀\\uf100ola - a famous rendezvous for picadors, toreadors, matadors, Floradors, Commodores and - cuspidors.\\n\\n8\\n11:56,000 --> 11:59,000\\nFilet de Sola - who could put her fins around any poor fish in Spain -\",\n", + " 'bytes': 779,\n", + " 'sha1': 'g67s5uby6t9dbi539rwbds5dkoay8h0',\n", + " 'parent_id': 114530815,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 256678129,\n", + " 'timestamp': '2017-08-29T01:56:01Z',\n", + " 'user': {'id': 1041915, 'text': 'Pmj'},\n", + " 'page': {'id': 24400846,\n", + " 'title': 'Hubble Goes to the eXtreme to Assemble Farthest Ever View of the Universe.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'minor fixes',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:04,800\\nLooking deep into the universe is like taking a trip down memory lane:\\n\\n2\\n00:00:04,900 --> 00:00:08,100\\nthe farther from Earth we look, the farther back in time we see.\\n\\n3\\n00:00:08,200 --> 00:00:13,100\\nStarlight from the remote past is just arriving at Earth now.\\n\\n4\\n00:00:13,200 --> 00:00:18,100\\nTelescopes are time machines for exploring what happened billions of years ago.\\n\\n5\\n00:00:18,200 --> 00:00:22,900\\nBut before the Hubble Space Telescope we could only see so far.\\n\\n6\\n00:00:23,000 --> 00:00:32,000\\nWe had a view of that galaxies where out there a few billions years back, but we didn't know if they went all the way back to the very earliest epochs in the universe.\\n\\n7\\n00:00:32,100 --> 00:00:35,900\\nThat all changed when Hubble got on the job.\\n\\n8\\n00:00:36,00 --> 00:00:43,100\\nIn 2003 astronomers used Hubble to look back in time to within a billion years after the Big Bang.\\n\\n9\\n00:00:43,500 --> 00:00:50,500\\nThis was ''the'' first time we were able to explore an age of the universe we could only dream of before.\\n\\n10\\n00:00:51,000 --> 00:00:55,400\\nThe image was called the Ultra Deep Field, and ''that'' changed everything.\\n\\n11\\n00:00:55,500 --> 00:01:02,700\\nWe saw things that were much farther away than any previous observations had show us\\n\\n12\\n00:01:02,750 --> 00:01:11,200\\nand also we were looking back when the universe was less than a billion years old, and being able to find objects that existed at that time.\\n\\n13\\n00:01:14,700 --> 00:01:22,300\\nBut when the Hubble was serviced for the last time in 2009, scientists saw a way to expand our vision of the universe even further,\\n\\n14\\n00:01:22,400 --> 00:01:25,700\\nby using the new infra red camera.\\n\\n15\\n00:01:26,000 --> 00:01:32,900\\nWe could push out to earlier times, we could find even more distant objects than we'd ever been able to do before.\\n\\n16\\n00:01:33,000 --> 00:01:36,200\\nThat new research...\\n\\n17\\n00:01:37,200 --> 00:01:40,800\\n...combined with the Ultra Deep Field's use of visible light...\\n\\n18\\n00:01:42,800 --> 00:01:45,800\\n... is now called the Extreme Deep Field.\\n\\n19\\n00:01:45,900 --> 00:01:50,700\\nWe can't see the first galaxies, but this has put us on the fringes of that time\\n\\n20\\n00:01:50,800 --> 00:01:57,800\\nand so we've been focusing in now, on when the first galaxies formed.\\n\\n21\\n00:01:57,900 --> 00:02:06,400\\nAs revealing as the Extreme Deep Field is, it's only a preview of what lies ahead.\\n\\n22\\n00:02:06,500 --> 00:02:13,800\\nWe need to take a giant leap forward, and that's what James Webb Space Telescope will do. It's a hundred times what Hubble can do\\n\\n23\\n00:02:13,900 --> 00:02:22,500\\nso when that flies, in minutes or hours it can do what we've done on Hubble that would have taken weeks, months... It's incredible.\\n\\n24\\n00:02:22,700 --> 00:02:30,500\\nWhat's also incredible is the realization that this small slice of the universe is just that: a slice.\\n\\n25\\n00:02:31,000 --> 00:02:36,500\\nMultiply this by 30 million, and you get an idea of just how many galaxies are out there.\\n\\n26\\n00:02:37,000 --> 00:02:42,000\\nFrom the Space Telescope Science Institute in Baltimore, Maryland, I'm Mary Estacion.\",\n", + " 'bytes': 3118,\n", + " 'sha1': 'ln3yaucpyd6lip996u6vc4zuewf6eee',\n", + " 'parent_id': 93418532,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 89704322,\n", + " 'timestamp': '2013-02-03T14:09:20Z',\n", + " 'user': {'text': '90.18.176.195'},\n", + " 'page': {'id': 24425077,\n", + " 'title': 'Synapsis.theora.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,029 --> 00:00:07,031 Au départ le message nerveux arrive jusque l'extrémité du neurone où se situent les vésicules. 2 00:00:013,033 --> 00:00:2...'\",\n", + " 'text': \"1\\n00:00:03,029 --> 00:00:07,031\\nAu départ le message nerveux arrive jusque l'extrémité du neurone où se situent les vésicules.\\n\\n2\\n00:00:013,033 --> 00:00:20,586\\nCelles-ci libèrent des neuro-transmetteurs (acétylcholine dans ce cas): le message electrique est converti en message chimique\\n\\n3\\n00:00:24,005 --> 00:00:28,375\\nL'acétylcholine vient se fixer sur les récepteurs post-synaptiques\\n\\n4\\n00:00:33,377 --> 00:00:39,593\\nCe qui ouvre des canaux où s'engouffrent les ions Calcium\\n\\n\\n5\\n00:00:40,298 --> 00:00:43,933\\nLe message nerveux est passé.\\n\\n6\\n00:00:45,895 --> 00:00:54,978\\nLes neuro-transmetteurs se détachent des recepteurs et reviennent dans leur vésicule.\\n\\n7\\n00:00:55,298 --> 00:00:59,933\\nSous-titre par Gauthier D.\",\n", + " 'bytes': 734,\n", + " 'sha1': 'efxgoa7s5u7uvpl03em9tc77584yoz7',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 89716326,\n", + " 'timestamp': '2013-02-03T16:34:43Z',\n", + " 'user': {'id': 1709634, 'text': 'VikipediBilgini'},\n", + " 'page': {'id': 24427397,\n", + " 'title': 'WEB Clip.webm.tr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with ' 1 00:00:02,2 --> 00:00:05,95 Zamanları ne olursa olsun, insanlık tarihi için kritik bir zaman 2 00:00:05,966 --> 00:00:07,666 olduğu sonucuna hemen hemen...'\",\n", + " 'text': \"\\n1\\n00:00:02,2 --> 00:00:05,95\\nZamanları ne olursa olsun, insanlık tarihi için kritik bir zaman \\n\\n2\\n00:00:05,966 --> 00:00:07,666\\nolduğu sonucuna hemen hemen herkes varır, \\n\\n3\\n00:00:07,708 --> 00:00:10,206\\nbundan dolayı mutlak bir argüman satın alır mıydım emin değilim, \\n\\n4\\n00:00:11,245 --> 00:00:15,132\\nfakat insanların bilgisayar merkezli bilgiye erişim \\n\\n5\\n00:00:15,132 --> 00:00:18,590\\nşartları için bir dönüm noktasında olduğumuzu söylemek makuldür diye düşünüyorum. \\n\\n6\\n00:00:18,9 --> 00:00:22,6\\nİlkinde, dünyanın her köşesinden insanlar \\n\\n7\\n00:00:22,651 --> 00:00:24,675\\nbirbirleri ile direkt konuşabilmek \\n\\n8\\n00:00:24,675 --> 00:00:26,675\\niçin bir araya geldiler.\\n\\n9\\n00:00:28,903 --> 00:00:31,174\\n[kuş cıvıltıları] ♫\\n\\n10\\n00:00:34,576 --> 00:00:43,225\\n[Lidia] [şarkı söylüyor]\\n\\n11\\n00:00:43,225 --> 00:00:45,148\\nİşte, hayat güzel.\\n\\n12\\n00:00:45,979 --> 00:00:49,049\\nGüzel; çünkü ağaçlar var...\\n\\n13\\n00:00:49,049 --> 00:00:52,675\\nve ağaçlar sizi Güneş'ten korur.\\n\\n14\\n00:00:53,338 --> 00:00:54,751\\nAyrıca bir sürü böcek var.\\n\\n15\\n00:00:54,751 --> 00:00:57,551\\nBöceklerden daha çok, sıkılıyorum.\\n\\n16\\n00:00:58,193 --> 00:01:02,476\\nBilmediğim şeyler hakkında daha çok şey öğrenmek istiyorum.\\n\\n17\\n00:01:16,461 --> 00:01:21,954\\nDizüstü bilgisayarları ilk kullandığımızda, onların ne olduklarını bilmiyorduk.\\n\\n18\\n00:01:21,954 --> 00:01:24,387\\nVe öğrenme yöntemimiz şöyleydi...\\n\\n19\\n00:01:24,387 --> 00:01:26,887\\nbir sınıf arkadaşımız bir şeyin nasıl yapıldığını öğrendiğindiğinde... \\n\\n20\\n00:01:26,887 --> 00:01:29,726\\nbaşka bir sınıf arkadaşına öğretiyordu.\\n\\n21\\n00:01:29,962 --> 00:01:33,136\\nVe o sınıf arkadaşı da başka bir sınıf arkadaşına...\\n\\n22\\n00:01:33,136 --> 00:01:34,877\\nböylece hepimiz öğrendik.\\n\\n23\\n00:01:38,6 --> 00:01:41,48\\nEn çok efsanelere ilgi duyarım...\\n\\n24\\n00:01:42,348 --> 00:01:44,37\\nayrıca toprağa da.\\n\\n25\\n00:01:45,098 --> 00:01:49,69\\nÜstelik bilgisayarlarda, Vikipedi'ye gidebilirsiniz ve araştırabilirsiniz.\\n\\n26\\n00:01:49,693 --> 00:01:53,41\\nVikipedi tüm bilgilerin bulunduğu yerdir.\\n\\n27\\n00:01:53,412 --> 00:01:56,79\\nHer ne hakkında bir şey bilmek istiyorsanız, onu arayabilirsiniz.\\n\\n28\\n00:01:58,276 --> 00:02:03,38\\nVe bulabilirsiniz, daha önce...\\n\\n29\\n00:02:03,388 --> 00:02:06,61\\nhiç bilmediğiniz şeyleri, Vikipedi'de bulabilirsiniz.\\n\\n30\\n00:02:08,536 --> 00:02:10,26\\n[Victor, Lidia'nın babası]\\n\\n31\\n00:02:10,257 --> 00:02:12,68\\nAyacucho'da doğdum.\\n\\n32\\n00:02:12,684 --> 00:02:16,68\\nEbeveynlerim yüzünden okuyamadım, bana destek olmadılar.\\n\\n33\\n00:02:16,727 --> 00:02:20,31\\nDizüstü bilgisayarlar - kızım, onu nasıl kullanacağını zaten hemen hemen biliyor.\\n\\n34\\n00:02:20,781 --> 00:02:24,04\\nBana farklı ülkelerin tarihlerini öğretiyor.\\n\\n35\\n00:02:24,496 --> 00:02:29,49\\nBirleşik Devletler, Brezilya, Çin.\\n\\n36\\n00:02:30,146 --> 00:02:33,76\\nBenden daha iyi bir eğitim alsın diye...\\n\\n37\\n00:02:34,561 --> 00:02:37,93\\nbir mesleği olsun istiyorum.\\n\\n38\\n00:02:37,931 --> 00:02:43,56\\n♫\\n\\n39\\n00:02:48,474 --> 00:02:50,21\\n[Michael]\\n\\n40\\n00:02:50,21 --> 00:02:53,32\\nBen New York'luyum.\\n\\n41\\n00:02:54,186 --> 00:02:56,70\\nBuralardan çok uzak bir şehir.\\n\\n42\\n00:02:57,381 --> 00:02:59,87\\nHepinizi şehrime tanıtmak istiyorum.\\n\\n43\\n00:03:03,21 --> 00:03:07,75\\nŞimdi, köyünüz hakkında daha fazla bilgi sahibi olmak istiyorum.\\n\\n44\\n00:03:07,753 --> 00:03:09,38\\nPalestina, Peru.\\n\\n45\\n00:03:09,8 --> 00:03:10,95\\nHiçbir şey yok, Michael.\\n\\n46\\n00:03:11,127 --> 00:03:12,50\\nHiçbir şey yok?\\n\\n47\\n00:03:12,498 --> 00:03:16,20\\nO halde; bugün yapmamız gereken şey...\\n\\n48\\n00:03:17,092 --> 00:03:20,82\\nPalestina, Peru için bir sayfa yazmak. \\n\\n49\\n00:03:20,824 --> 00:03:22,47\\nBuraya ne zaman geldik?\\n\\n50\\n00:03:22,47 --> 00:03:26,23\\n1989'da.\",\n", + " 'bytes': 3791,\n", + " 'sha1': '80femf64kouuhc4ffnc8lybyje3q69t',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 674058225,\n", + " 'timestamp': '2022-07-13T13:42:41Z',\n", + " 'user': {'id': 1636, 'text': 'Kaihsu'},\n", + " 'page': {'id': 24427963,\n", + " 'title': 'Pekka Haavisto on nuclear power.ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,000\\n... Suomi.\\n\\n2\\n00:00:03,000 --> 00:00:09,000\\nOlen saksalaisessa neuvostossa, joka seuraa ns. ”Energiewende” (energiakäännettä) Saksassa.\\n\\n3\\n00:00:09,000 --> 00:00:15,000\\nSaksalaiset lopettavat ydinvoiman käytön vuonna 2022.\\n\\n4\\n00:00:15,000 --> 00:00:18,000\\nTietenkin syy on Hukušima.\\n\\n5\\n00:00:18,000 --> 00:00:22,000\\nNäen kuinka vakavasti Hukušima vaikuttaa energiapolitiikkaan.\\n\\n6\\n00:00:22,000 --> 00:00:25,000\\nErityisesti Saksassa, mutta myös muissa maissa.\\n\\n7\\n00:00:25,000 --> 00:00:27,000\\nJopa Ruotsissakin.\\n\\n8\\n00:00:27,000 --> 00:00:30,000\\nOlen aina yllättynyt siitä, ettei tämä kosketa Suomea lainkaan.\\n\\n9\\n00:00:30,000 --> 00:00:34,000\\nSe näyttää siltä, että me ollaan täysin eri planeetalta.\\n\\n10\\n00:00:34,000 --> 00:00:36,000\\nMe aina ajatellaan, että me ollaan parhaita käynnissä ydinvoimalaitoksissa.\\n\\n11\\n00:00:36,000 --> 00:00:39,000\\nVoi japanilaiset, eiväthän he osaa hyvin!\\n\\n12\\n00:00:39,000 --> 00:00:42,000\\nVoi venäläiset! Eivät hekään osaa hoittaa Tšernobylia.\\n\\n13\\n00:00:42,000 --> 00:00:47,000\\nMutta ydinvoima Suomessa ... kaikki on niin erinomainen.\\n\\n14\\n00:00:47,000 --> 00:00:49,000\\nMielestäni käänne on tuleva \\u200b\\u200bmyös Suomessakin.\\n\\n15\\n00:00:49,000 --> 00:00:51,000\\nMutta me ollaan hyvin hitaita, että vuorollaan.\\n\\n16\\n00:00:51,000 --> 00:00:55,000\\nOlen vähän surullinen siitä, että kotimaani on jäljessä tämän suuntauksen.\\n\\n17\\n00:00:55,000 --> 00:01:00,000\\nSaksa sijoittaa nyt täysin uudenlaiseen energian tuotantoon ...\\n\\n18\\n00:01:00,000 --> 00:01:05,000\\n... ja he haluavat olla ensimmäinen vihreässä energiatuotannossa ja vihreässä taloudessa Euroopassa.\\n\\n19\\n00:01:05,000 --> 00:01:08,000\\nJälkeenpäin olen varma, että me seurataan.',\n", + " 'bytes': 1738,\n", + " 'sha1': 'mwg4x2ug859i9ypzf10n4b21za0yzyf',\n", + " 'parent_id': 674057787,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 233187112,\n", + " 'timestamp': '2017-02-11T14:10:36Z',\n", + " 'user': {'id': 1636, 'text': 'Kaihsu'},\n", + " 'page': {'id': 24428011,\n", + " 'title': 'Pekka Haavisto on nuclear power.ogv.zh-tw.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,000\\n...芬蘭。\\n\\n2\\n00:00:03,000 --> 00:00:09,000\\n我參與德國Energiewende(能源改革)的委員會。\\n\\n3\\n00:00:09,000 --> 00:00:15,000\\n德國將在2022年停止使用核電。\\n\\n4\\n00:00:15,000 --> 00:00:18,000\\n福島事件當然是觸發的原因。\\n\\n5\\n00:00:18,000 --> 00:00:22,000\\n我可以看到福島事件多麼嚴重地改變了能源政策。\\n\\n6\\n00:00:22,000 --> 00:00:25,000\\n特別是在德國有影響,但在其他國家也有影響。\\n\\n7\\n00:00:25,000 --> 00:00:27,000\\n瑞典也受了影響。\\n\\n8\\n00:00:27,000 --> 00:00:30,000\\n我總是奇怪為什麼芬蘭卻不受影響。\\n\\n9\\n00:00:30,000 --> 00:00:34,000\\n看起來我們芬蘭是在完全不同的星球上。\\n\\n10\\n00:00:34,000 --> 00:00:36,000\\n我們一直認為我們是最好的運行核電廠。\\n\\n11\\n00:00:36,000 --> 00:00:39,000\\n可憐的日本人,他們不會運行自己的核電廠。\\n\\n12\\n00:00:39,000 --> 00:00:42,000\\n可憐的俄羅斯人,他們不會運行車諾堡。\\n\\n13\\n00:00:42,000 --> 00:00:47,000\\n但核電在芬蘭...一切都是那麼的優秀。\\n\\n14\\n00:00:47,000 --> 00:00:49,000\\n我認為芬蘭最後也會改變的。\\n\\n15\\n00:00:49,000 --> 00:00:51,000\\n但是,我們改變的速度很慢。\\n\\n16\\n00:00:51,000 --> 00:00:55,000\\n我有點傷感,我國落後於這一趨勢。\\n\\n17\\n00:00:55,000 --> 00:01:00,000\\n目前,德國想投資完全可再生能源...\\n\\n18\\n00:01:00,000 --> 00:01:05,000\\n...並希望成為綠色能源和綠色經濟的歐洲第一強國。\\n\\n19\\n00:01:05,000 --> 00:01:08,000\\n我肯定將來我們芬蘭也會走這條路的。',\n", + " 'bytes': 1573,\n", + " 'sha1': 'mzqysq71rshw0o02kfl831lq97xjixi',\n", + " 'parent_id': 90148134,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93179227,\n", + " 'timestamp': '2013-03-24T06:00:14Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 24497150,\n", + " 'title': 'Sextortionagent interview.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"reword so it doesn't take up as much\",\n", + " 'text': '<!--This uses the official transcript of \"[http://www.fbi.gov/news/stories/2012/february/sextortion_021012/special-agent_021012 Special Agent Nickolas Savage Discusses ‘Sextortion’].\" ([http://www.webcitation.org/6Ea7keg5V Archive]) which has removed the [[:en:filler (linguistics)|filler]] and grammatical errors-->\\n\\n1\\n00:00:00,000 --> 00:00:04,400\\nSextortion is what is commonly referred to \\n\\n2\\n00:00:04,600 --> 00:00:07,400\\nas individuals who are being victimized\\n\\n3\\n00:00:07,600 --> 00:00:09,400\\nthey’re being extorted;\\n\\n4\\n00:00:09,600 --> 00:00:12,400\\nit’s what we commonly refer to as extortion, only\\n\\n5\\n00:00:012,600 --> 00:00:18,400\\nthe end-gain for the individuals who are doing the extortion is \\n\\n6\\n00:00:18,600 --> 00:00:23,400\\nsomething that’s related to some sexual activity. Whether it be\\n\\n7\\n00:00:023,600 --> 00:00:26,400\\npictures or videos or, \\n\\n8\\n00:00:26,600 --> 00:00:29,400\\nbut it is generally something that is associated with sex.\\n\\n9\\n00:00:29,600 --> 00:00:33,400\\nSo I’m blackmailing you for something sexual in nature.\\n\\n10\\n00:00:33,600 --> 00:00:37,400\\nKids tend to be less cautious\\n\\n11\\n00:00:37,600 --> 00:00:40,400\\nand more trusting of individuals online.\\n\\n12\\n00:00:40,600 --> 00:00:44,400\\nThey associate many people online as people much like themselves, \\n\\n13\\n00:00:044,600 --> 00:00:47,400\\nof around the same age. So\\n\\n14\\n00:00:47,600 --> 00:00:49,900\\nthey\\'re not very fearful of potential dangers.\\n\\n15\\n00:00:50,100 --> 00:00:53,400\\nA lot of times you have individuals who will befriend children.\\n\\n16\\n00:00:53,600 --> 00:00:56,400\\nThey think they are chatting with other children.\\n\\n17\\n00:00:56,600 --> 00:01:01,400\\nAnd oftentimes children are tricked into sending pictures of themselves \\n\\n18\\n00:01:01,600 --> 00:01:05,400\\nto somebody else that they believe are maybe similar in age.\\n\\n19\\n00:01:05,600 --> 00:01:09,400\\nAnd once these individuals have these pictures, well they want more pictures. \\n\\n20\\n00:01:09,600 --> 00:01:14,400\\nThat is what they’re using in furtherance of their criminal activity.\\n\\n21\\n00:01:14,600 --> 00:01:17,400\\nOnce they have these pictures, they are then able to say to\\n\\n22\\n00:01:17,600 --> 00:01:20,400\\nthe victim or to the child,\\n\\n23\\n00:01:20,600 --> 00:01:24,400\\n“I want more,” or, “I want you to do x, y, and z.\\n\\n24\\n00:01:24,600 --> 00:01:28,400\\nAnd if you don’t I’m going to take these photographs and I’m going to\\n\\n25\\n00:01:28,600 --> 00:01:32,400\\nsend them to other people in the school. I’ll send them to your family.”\\n\\n26\\n00:01:32,600 --> 00:01:36,400\\nAnd oftentimes, the children are embarrassed,\\n\\n27\\n00:01:36,600 --> 00:01:42,400\\nespecially thinking as though they have somehow contributed to their victimization.\\n\\n28\\n00:01:42,600 --> 00:01:46,400\\nSo fearing that they will get in trouble if they report it,\\n\\n29\\n00:01:46,600 --> 00:01:51,400\\nthey will continue with the victimization and send the individuals what they’re requesting.\\n\\n30\\n00:01:51,600 --> 00:01:55,400\\nWhat often happens is, the victimization never stops.\\n\\n31\\n00:01:55,600 --> 00:02:01,400\\nWe saw situations where the individuals responsible for this criminal activity\\n\\n32\\n00:02:01,600 --> 00:02:07,400\\nactually created websites and actually sent hyperlinks to friends\\n\\n33\\n00:02:07,600 --> 00:02:11,400\\nand to family members, again showing a certain level of\\n\\n34\\n00:02:11,600 --> 00:02:14,400\\na sense of dominance over the victim to say,\\n\\n35\\n00:02:14,600 --> 00:02:19,400\\n“This is what I have over you, and if you don’t continue to do what I say, \\n\\n36\\n00:02:19,600 --> 00:02:22,400\\nthese are the things that I can do.”\\n\\n37\\n00:02:22,600 --> 00:02:27,400\\nThey are masters at exploiting the vulnerable.\\n\\n38\\n00:02:27,600 --> 00:02:30,400\\nThey would trick people into opening an attachment.\\n\\n39\\n00:02:30,600 --> 00:02:34,400\\nOne of the ways they would often do it was they would send a picture of a girl.\\n\\n40\\n00:02:34,600 --> 00:02:37,400\\nAnd she was wearing a bra and panties. And\\n\\n41\\n00:02:37,600 --> 00:02:40,400\\nshe had her hair over her face and you couldn’t see what she looked like.\\n\\n42\\n00:02:40,600 --> 00:02:43,400\\nAnd they would say something along the lines of,\\n\\n43\\n00:02:43,600 --> 00:02:47,400\\n“I saw this picture of you on a website. If it’s not you, just disregard.” \\n\\n44\\n00:02:47,600 --> 00:02:51,400\\nWell, what a lot of these victims didn’t realize was there was a \\n\\n45\\n00:02:51,600 --> 00:02:55,400\\nTrojan program embedded within the picture. \\n\\n46\\n00:02:55,600 --> 00:02:58,400\\nAll kids looked at the picture. Kids are just curious by nature.\\n\\n47\\n00:02:58,600 --> 00:03:03,400\\nAnd not even realizing that something could be embedded in that picture they looked at it.\\n\\n48\\n00:03:03,600 --> 00:03:07,400\\nOnce Connolly [a sextortist] and Dickerson [another sextortionist] had access to their computer,\\n\\n49\\n00:03:07,600 --> 00:03:09,400\\nwhat they would do is a couple things.\\n\\n50\\n00:03:09,600 --> 00:03:12,400\\nA lot of times they would just sit back and watch.\\n\\n51\\n00:03:12,600 --> 00:03:15,400\\nAnd they had the ability to turn on your webcam.\\n\\n52\\n00:03:15,600 --> 00:03:19,400\\nSo they would see these victims dressing and undressing and\\n\\n53\\n00:03:19,600 --> 00:03:22,400\\njust doing various things. And they would tape that.\\n\\n54\\n00:03:22,600 --> 00:03:26,400\\nAnd sometimes they would catch kids doing things or catch kids changing [clothes].\\n\\n55\\n00:03:26,600 --> 00:03:31,400\\nSometimes they would show these videos or pictures in furtherance of the exploitation.\\n\\n56\\n00:03:31,600 --> 00:03:36,400\\nAlso, once they had this they had access to buddy lists, so they were able to say,\\n\\n57\\n00:03:36,600 --> 00:03:41,400\\n“If you don’t take pictures of yourself, or you don’t take these movies of yourself, \\n\\n58\\n00:03:41,600 --> 00:03:45,400\\nI see you have an e-mail address for your grandmother.\\n\\n59\\n00:03:45,600 --> 00:03:48,400\\nWell, I’ll put this little show together for your grandmother, and \\n\\n60\\n00:03:48,600 --> 00:03:51,400\\nI’m sure she wouldn’t, you know, be very proud of the way you act.”\\n\\n61\\n00:03:51,600 --> 00:03:54,400\\nAnd a lot of these kids would do this.\\n\\n62\\n00:03:54,600 --> 00:03:58,400\\nToday you have so many more malware\\n\\n63\\n00:03:58,600 --> 00:04:02,400\\nthere’s so much more malware out there, and so many more\\n\\n64\\n00:04:02,600 --> 00:04:05,400\\nprograms that allow people access to your computer,\\n\\n65\\n00:04:05,600 --> 00:04:10,400\\nyou can’t be too cautious any more. One of the things that,\\n\\n66\\n00:04:10,600 --> 00:04:13,400\\nespecially when talking to parents, is\\n\\n66\\n00:04:13,600 --> 00:04:16,400\\nyou need to have this open dialogue with your children.\\n\\n67\\n00:04:16,600 --> 00:04:20,400\\nYou have to talk to your kids about these things.\\n\\n68\\n00:04:20,600 --> 00:04:23,400\\nYou can’t be too careful. You really can’t trust…\\n\\n69\\n00:04:23,600 --> 00:04:25,400\\nyou’ve got to be careful with whom you’re communicating.\\n\\n70\\n00:04:25,600 --> 00:04:29,400\\nAlways be cautious: number-one.\\n\\n71\\n00:04:29,600 --> 00:04:32,400\\nNumber-two is: kids need to be able to talk to parents\\n\\n72\\n00:04:32,600 --> 00:04:35,400\\nand parents need to be able to talk to kids.\\n\\n73\\n00:04:35,600 --> 00:04:38,400\\nIf you don’t know who something is from, don’t open it.\\n\\n74\\n00:04:38,600 --> 00:04:43,400\\nBe cautious of certain attachments.\\n\\n75\\n00:04:43,600 --> 00:04:47,400\\nAnd, in the end,\\n\\n76\\n00:04:47,600 --> 00:04:50,400\\nif something were to happen, if you were victimized,\\n\\n77\\n00:04:50,600 --> 00:04:55,400\\ntell somebody, tell your parents. Tell an adult. Tell a teacher.\\n\\n78\\n00:04:55,600 --> 00:05:00,400\\nEven if you’re an adult and you’re victimized, don’t be afraid to call law enforcement.\\n\\n79\\n00:05:00,600 --> 00:05:06,400\\nDickerson had—he had like 230 gigabytes worth of material.\\n\\n80\\n00:05:06,600 --> 00:05:09,400\\nAnd at the time that was huge.\\n\\n81\\n00:05:09,600 --> 00:05:15,400\\nConnolly had close to a terabyte worth of material.\\n\\n82\\n00:05:15,600 --> 00:05:21,400\\nAnd the thing was a lot of these kids are just some folder somewhere.\\n\\n83\\n00:05:21,600 --> 00:05:24,400\\nIt was a folder on a computer.\\n\\n84\\n00:05:24,600 --> 00:05:30,400\\nNo name. No screen name. Just pictures and videos in a folder. \\n\\n85\\n00:05:30,600 --> 00:05:34,400\\nAnd part of what I feel my responsibility is is\\n\\n86\\n00:05:34,600 --> 00:05:37,400\\nto talk to anybody who’s willing to listen\\n\\n87\\n00:05:37,600 --> 00:05:41,400\\nbecause I know where’s so many more victims out here that are wondering, \\n\\n88\\n00:05:41,600 --> 00:05:44,400\\n“I wonder what ever happened to those guys?” or, “Do I still need to be afraid?”\\n\\n89\\n00:05:44,600 --> 00:05:47,400\\nIf you know somebody or are in a similar situation,\\n\\n90\\n00:05:47,600 --> 00:05:51,400\\nor if you’re a parent, talk to your children about this.',\n", + " 'bytes': 8689,\n", + " 'sha1': '1zliwb9t7ce6u7l78zjwk4ptj3ddyk7',\n", + " 'parent_id': 92370759,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90161513,\n", + " 'timestamp': '2013-02-08T23:03:31Z',\n", + " 'user': {'id': 2629548, 'text': 'David Nunes Pereira'},\n", + " 'page': {'id': 24542225,\n", + " 'title': 'Chinese-Nanjing.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,040 --> 00:00:24,400\\n南京\\tNán jīng',\n", + " 'bytes': 49,\n", + " 'sha1': 'ij2qovwzb08bu3h5gl55cjbsjwmmged',\n", + " 'parent_id': 90161345,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90163042,\n", + " 'timestamp': '2013-02-08T23:46:33Z',\n", + " 'user': {'id': 1639029, 'text': 'Khan27'},\n", + " 'page': {'id': 24542579,\n", + " 'title': 'The Impact Of Wikipedia.webm.az.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with ' 1 00:00:00,000 --> 00:00:05,000 Vikipediya qeyri-kommersiya məqsədlidir, lakin dünyanın 5-ci böyük veb-saytıdır. Vikipediya-dakı bütün məqalələr ...'\",\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nVikipediya qeyri-kommersiya məqsədlidir, lakin dünyanın 5-ci böyük veb-saytıdır. Vikipediya-dakı bütün məqalələr könüllülər tərəfindən yazılır.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nBiz onlardan bir neçəsini sizə təqdim etmək istəyirik...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nMən Nepallıyam\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nMən İraqlıyam\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nMən Hindistandan gəlirəm\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nMən Biramdanam, Nyu Cersi\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nMən Birminqemdə yaşayıram, İngiltərə\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nÇikaqo, Illinois -- La Paz, Boliviya -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malayziyaa -- Milan, İtaliya -- Cənubi Afrika\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolşa -- Yaponiya -- Lazımsız\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBraziliya -- Rusiya -- Botsvana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nİsrail -- Özbəkistan -- Honq Konk\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nİstanbul -- Meksika\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nÇattanuqa, Tennesi\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nMən Vikipediyaya 2008-ci ildə qoşuldum, bir çox yeni məqalə yaratmışam.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nOnlardan biri, mənə elə gəlir ki, Məryəm Nur adlı xanım haqqında idi. \\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nBizdə onun haqda məqalə yox idi -- və bu mənim yaratdığım ilk məqalə oldu.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nBu məqaləni yaratdığımı tamam unutmuşdum! Təxminən iki-üç il sonra,\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nbu məqalə ilə yenidən rastlaşdım və çaşqınlığa düşdüm. \\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nBu məqaləni 100 mindən artıq insan oxumuşdu. \\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nOnlar bu məqalədən istifadə etmiş, ondan məlumat əldə etmişdilər. Onlar bu məqalə sayəsində dərslərində uğur əldə etmişdilər, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nBu da məndə 100 mindən artıq insana təsir etdiyim, onlara fayda verdyim hissini oyatdı.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\n\"Redaktə\" düyməsini ilk dəfə basdığım vaxt çox qorxmuşdum. \\n\\n24\\n00:01:19,100 --> 00:01:24,000\\n”Düşünürdüm ki, “aman Allahım, mən hər şeyi dağıdacağam! Bu düz işləməyəcək! Mən bunu edə bilməyəcəm!”\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nVikipedia bir \\'açıq mənbə\\'dir - hər kəs öz fikrini bildirə bilər\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nvə sonralar başqası gələrək bu fikri daha da irəliyə ötürür və beləliklə mükəmməl bir hala gəlir.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nHər gün, hər saat, hər dəqiqə Vikipediyanın inkişafı üçün çalışan minlərcə insan var.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nBunların təməlində könüllülük dayanır. Bu könüllü olmağın unikal yoludur.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nBunun sayəsində mövud bir məqalə ilə bağlı professionallar və həvəskarlar bir araya gəlir.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nƏvvəllər müxtəlif fikirlərə sahib olan insanlar əməkdaşlığa başlayır.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nBöyük bir İnternet korporasiyasının yaratdığı işlər \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nmənim kimi könüllülər tərəfindən həyata keçirilir.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nBura gəlib, “Mən haqlıyam, sən isə haqsızsan, bu məqalədə mənim yazdığım versiyadı!” deyə bilmirik.\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nƏgər qərəzli bir məsələ varsa, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nbu məqaləyə kimsə işarə qoyur, həmçinin bunu sizdə edə bilərsiniz.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nBunu görən yüzlərcə hətda minlərcə insan \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nbu səhvləri düzəltə bilər.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nSonralar da butona basdım və\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom - Böyük bir səyahətə başladım.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nİlk məqaləm \\'Ehtimal\\' oldu. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nBaşladığım ilk məqalə \\'Ehtimal\\' idi.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nVikipediyada yazdığım əsas məqalərdən biri \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nbıçaq yarası ilə bağlı məqalə idi.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nMən burada uçurtma balıqçılığı, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontana tarixi, Milli Park tarixi, Yelloustoun haqqında yazılar yazdım.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nTələbat olmayan bitkilər. Şahmat oyunçuları. Biomüxtəliflik. \\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nHərbi tarix mövzular. Lazımsız. Roma tarixi.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nHakimlər. Rabitə. Bioqrafiyalar. Futbol.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nİrlandiya. Pensilvaniya. Əsasən fotoqrafçılıq.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Bişirmək, çünki bişirməyi sevirəm.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nNüvə silahlar və radioaktivlik, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nvə kayak idmanı.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nBu məlumatların hamısı haradasa var, amma onlar dağınıq haldadır\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nvə biz onları bir yerə toplayırıq.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nBiz hər kəsə öz dilində sərbəst məlumat təqdim edirik ki, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nonlar rahatlıqla bundan yararlana bilirsin.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nKasıb və ya varlı olmasından asılı olmayaraq, hər kəs bundan fayda əldə edir.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nKommersiya şirkətlərinin fərqli motivasiyaları və fərqli tələbləri var.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nMən Vikimedia Fondundan əmək haqqı almıram, amma mənim heç xərcim də çıxmır.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nOna görə də, bu çox əhəmiyyətlidir, mən rahat şəkildə deyə bilərəm: \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nBaxın, mən sizdən ianə verməyinizi xahiş edərkən, bu pulu özüm üçün istəmirəm --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nMən sizdən ianə verməyinizi xahiş edərkən, bu pulu Fond üçün, tərkib hissəsi olduğum bu möhtəşəm cəmiyyəti dəstəkləyən komanda üçün istəyirəm.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nDüşünürəm ki, Vikipediya mənə bu dünyada böyük bir iş görə bilmək imkanı verib.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nBu sizin öz gələcəyinizə, uşaqlarınızın gələcəyinə qoyulmuş investisiya kimidir.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nTəşəkkür edirik!\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nBu videonun tərkibi Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) (əksi nəzərdə tutulmamışdırsa) lisenziyası altında mümkündür. Bu işə aid olan: Viktor Qriqas, Vikimedia Fondu.\\nBu videoda qeyd olunan görüşlər və fikirlər tamamilə iştirakçı şəxslərin şəxsi fikirləridir, onlar üzvü olduqları istənilən şirkətin, təşkilatın və ya başqa strukturun mövqeyini əks etdirmirlər.\\nThe trademarks and logos of the Wikimedia Foundation and any other organization are not included under the terms of this Creative Commons license. Wikimedia trademarks and logos, including \"Wikipedia\" and the puzzle globe logo, are registered trademarks of the Wikimedia Foundation. For more information, please see our Trademark Policy page,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nBu video Creative Commons lisenziyası altında yayımlanır.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nVikipediya\\'da olduğu kimi, onu pulsuz olaraq köçürmək, yenidən emal etmək və yaymaq olar.',\n", + " 'bytes': 7633,\n", + " 'sha1': 'b7535ffkxoo4u27au2vhm49cp675xck',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90191059,\n", + " 'timestamp': '2013-02-09T10:13:26Z',\n", + " 'user': {'id': 1636375, 'text': 'Mathysjorritsma'},\n", + " 'page': {'id': 24553938,\n", + " 'title': 'United States Navy Band - Het Wilhelmus.ogg.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,020\\nWilhelmus van Nassouwe\\n\\n2\\n00:00:05,020 --> 00:00:10,270\\nben ik, van Duitsen bloed,\\n\\n3\\n00:00:10,270 --> 00:00:15,300\\nden Vaderland getrouwe\\n\\n4\\n00:00:15,300 --> 00:00:20,730\\nblijf ik tot in den dood.\\n\\n5\\n00:00:20,730 --> 00:00:27,830\\nEen prinse van Oranje\\n\\n6\\n00:00:27,830 --> 00:00:32,670\\nben ik, vrij onverveerd,\\n\\n7\\n00:00:32,670 --> 00:00:39,900\\nden Koning van Hispanje\\n\\n8\\n00:00:39,900 --> 00:00:47,300\\nheb ik altijd geëerd.',\n", + " 'bytes': 455,\n", + " 'sha1': 'eqzwv31qa36r1dqyxju59b6o500q8yu',\n", + " 'parent_id': 90191007,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 107499678,\n", + " 'timestamp': '2013-10-20T09:54:37Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 24583852,\n", + " 'title': 'GraziaDeledda.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/118.68.206.2|118.68.206.2]] ([[User talk:118.68.206.2|talk]]) to last revision by SanGavinoEN',\n", + " 'text': \"1\\n00:00:00,100 --> 00:00:02,000\\nI was born in Sardinia.\\n\\n2\\n00:00:02,100 --> 00:00:05,100\\nMy family contained wise people,\\n\\n3\\n00:00:05,200 --> 00:00:07,000\\nbut also violent ones\\n\\n4\\n00:00:07,100 --> 00:00:09,000\\nand productive artists;\\n\\n5\\n00:00:09,100 --> 00:00:10,600\\nIt had authority,\\n\\n6\\n00:00:10,700 --> 00:00:12,600\\nIt even had a library.\\n\\n7\\n00:00:12,700 --> 00:00:15,900\\nBut when I started to write at the age of 12 \\n\\n8\\n00:00:16,000 --> 00:00:18,100\\nmy folk were against it.\\n\\n9\\n00:00:18,200 --> 00:00:20,500\\nThe Philosopher warns:\\n\\n10\\n00:00:20,600 --> 00:00:23,000\\nIf your son writes verses chastise him\\n\\n11\\n00:00:23,100 --> 00:00:25,500\\nand send him off to a mountain track.\\n\\n12\\n00:00:25,600 --> 00:00:28,300\\nIf you find him in poetry for a second time\\n\\n13\\n00:00:28,400 --> 00:00:29,600\\npunish him again.\\n\\n14\\n00:00:29,700 --> 00:00:31,400\\nIf he does it for a third time\\n\\n15\\n00:00:31,500 --> 00:00:32,400\\nleave him in peace\\n\\n16\\n00:00:32,500 --> 00:00:34,000\\nbecause he is a poet.\\n\\n17\\n00:00:34,100 --> 00:00:35,300\\nWithout being vain, for me too\\n\\n18\\n00:00:35,400 --> 00:00:36,900\\nthat's how it happened.\\n\\n19\\n00:00:37,000 --> 00:00:39,500\\nI had the irresistible mirage of the world.\\n\\n20\\n00:00:39,600 --> 00:00:44,000\\nI've had all of the things that a woman may ask of her destiny,\\n\\n21\\n00:00:44,100 --> 00:00:49,200\\nbut, greater than any fortune, I've held faith in life and in God.\",\n", + " 'bytes': 1382,\n", + " 'sha1': 'ddf4j1847zcxz743dke61lzgxmrcaqg',\n", + " 'parent_id': 107496880,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90339497,\n", + " 'timestamp': '2013-02-10T21:25:40Z',\n", + " 'user': {'id': 240842, 'text': 'Jean-Frédéric'},\n", + " 'page': {'id': 24584395,\n", + " 'title': 'Eric Walter - voix.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Break',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nBonjour, je m’appelle Éric Walter, je suis né à Paris,\\n\\n2\\n00:00:05,200 --> 00:00:11,000\\net je suis secrétaire général de l’Hadopi depuis le 1er mars 2010.',\n", + " 'bytes': 196,\n", + " 'sha1': '9mqtdkdds328vtc90bh2n22i5315g3p',\n", + " 'parent_id': 90339019,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90340302,\n", + " 'timestamp': '2013-02-10T21:32:21Z',\n", + " 'user': {'id': 240842, 'text': 'Jean-Frédéric'},\n", + " 'page': {'id': 24584733,\n", + " 'title': 'Glyn Moody voice.oga.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Adjust timing',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,800\\nMy name is Glyn Moody, I was born in London,\\n\\n2\\n00:00:04,000 --> 00:00:10,000\\nAnd I’ve been a freelance writer and journalist since 1991.',\n", + " 'bytes': 171,\n", + " 'sha1': 'hfszfa5pbzodgoy6yzxe02fgtcpqkar',\n", + " 'parent_id': 90340239,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 666261730,\n", + " 'timestamp': '2022-06-18T22:06:22Z',\n", + " 'user': {'id': 35176, 'text': 'Toobaz'},\n", + " 'page': {'id': 24599187,\n", + " 'title': 'GraziaDeledda.ogg.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Fix/correzione: \"primitivi\" vs. \"produttivi\"',\n", + " 'text': '1\\n00:00:00,100 --> 00:00:02,000\\nSono nata in Sardegna.\\n\\n2\\n00:00:02,100 --> 00:00:05,100\\nLa mia famiglia è composta di gente savia\\n\\n3\\n00:00:05,200 --> 00:00:07,000\\nma anche di violenti\\n\\n4\\n00:00:07,100 --> 00:00:09,000\\ne di artisti primitivi;\\n\\n5\\n00:00:09,100 --> 00:00:10,600\\naveva autorità\\n\\n6\\n00:00:10,700 --> 00:00:12,600\\ne aveva anche biblioteca,\\n\\n7\\n00:00:12,700 --> 00:00:15,900\\nma quando cominciai a scrivere a tredici anni, \\n\\n8\\n00:00:16,000 --> 00:00:18,100\\nfui contrariata dai miei.\\n\\n9\\n00:00:18,200 --> 00:00:20,500\\nIl filosofo ammonisce:\\n\\n10\\n00:00:20,600 --> 00:00:23,000\\nse tuo figlio scrive versi, correggilo \\n\\n11\\n00:00:23,100 --> 00:00:25,500\\ne mandalo per la strada dei monti;\\n\\n12\\n00:00:25,600 --> 00:00:28,300\\nSe lo trovi nella poesia la seconda volta,\\n\\n13\\n00:00:28,400 --> 00:00:29,600\\npuniscilo ancora;\\n\\n14\\n00:00:29,700 --> 00:00:31,400\\nse fa per la terza volta,\\n\\n15\\n00:00:31,500 --> 00:00:32,400\\nlascialo in pace\\n\\n16\\n00:00:32,500 --> 00:00:34,000\\nperché è un poeta.\\n\\n17\\n00:00:34,100 --> 00:00:35,300\\nSenza vanità anche a me\\n\\n18\\n00:00:35,400 --> 00:00:36,900\\nè capitato così.\\n\\n19\\n00:00:37,000 --> 00:00:39,500\\nAvevo un irresistibile miraggio del mondo.\\n\\n20\\n00:00:39,600 --> 00:00:44,000\\nHo avuto tutte le cose che una donna può chiedere al suo destino.\\n\\n21\\n00:00:44,100 --> 00:00:49,200\\nMa grande sopra ogni fortuna la fede nella vita e in Dio.',\n", + " 'bytes': 1365,\n", + " 'sha1': 'kbzd8c182jbw4e6s028vwhd55vw7otn',\n", + " 'parent_id': 391584541,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 215297117,\n", + " 'timestamp': '2016-11-18T09:49:32Z',\n", + " 'user': {'id': 35226, 'text': 'DarkPhoenix'},\n", + " 'page': {'id': 24625978,\n", + " 'title': 'Around the Corner (1937) 24fps selection.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Corrected \"sever\" to \"center\"',\n", + " 'text': \"1\\n00:00:01,267 --> 00:00:02,807\\nFormations, like these,\\n\\n2\\n00:00:03,224 --> 00:00:06,599\\nrequire long hours of intensive drilling\\nand careful judgment.\\n\\n3\\n00:00:07,314 --> 00:00:09,095\\nWhen the troop goes around the corner,\\n\\n4\\n00:00:09,367 --> 00:00:12,743\\nthe riders on the outside of the turn\\nhave to adjust their speed\\n\\n5\\n00:00:12,744 --> 00:00:15,061\\nto keep even with the riders on the inside.\\n\\n6\\n00:00:16,637 --> 00:00:20,139\\nThe man on the outside\\nhas to ride a lot further and a lot faster\\n\\n7\\n00:00:20,140 --> 00:00:22,085\\nin order to keep up with the parade.\\n\\n8\\n00:00:24,052 --> 00:00:28,196\\nThe outside wheels must spin faster\\nthan the wheels on the inside\\n\\n9\\n00:00:28,758 --> 00:00:32,666\\nbecause they have a greater distance to travel\\nin the same length of time.\\n\\n10\\n00:00:33,511 --> 00:00:38,052\\nWhen a wagon turns a corner,\\nthe wheels can travel at different speeds\\n\\n11\\n00:00:38,053 --> 00:00:41,808\\nbecause each one can turn freely on the axles.\\n\\n12\\n00:00:41,859 --> 00:00:45,821\\nAnd in the early automobiles,\\nthe rear wheels turned separately\\n\\n13\\n00:00:45,822 --> 00:00:48,820\\nand only one wheel\\nwas connected to the engine.\\n\\n14\\n00:00:49,459 --> 00:00:52,631\\nBut when only one wheel\\nwas driven by the engine,\\n\\n15\\n00:00:52,631 --> 00:00:54,662\\nit had to do all the work,\\n\\n16\\n00:00:54,703 --> 00:00:59,206\\nand it couldn't get a good enough grip\\non the road to do its job properly.\\n\\n17\\n00:00:59,845 --> 00:01:02,308\\nSo the one-wheel drive\\nwas soon out of date.\\n\\n18\\n00:01:03,151 --> 00:01:09,101\\nBut if two wheels are locked on an axle,\\nso that they are not free to turn separately,\\n\\n19\\n00:01:09,298 --> 00:01:11,869\\none or the other has to slide.\\n\\n20\\n00:01:12,491 --> 00:01:15,851\\nSo engineers had to find a way\\nto connect both rear wheels\\n\\n21\\n00:01:15,852 --> 00:01:19,580\\nto the engine,\\nwithout sliding and slipping on turns.\\n\\n22\\n00:01:20,870 --> 00:01:25,113\\nThe device which makes this possible\\nis a part of the rear axle.\\n\\n23\\n00:01:25,585 --> 00:01:27,892\\nIt is called the differential,\\n\\n24\\n00:01:27,893 --> 00:01:32,209\\nbecause it can drive the rear wheels\\nat different speeds.\\n\\n25\\n00:01:32,822 --> 00:01:34,804\\nThe differential looks complicated.\\n\\n26\\n00:01:35,140 --> 00:01:39,215\\nBut once we understand its principle,\\nit is amazingly simple.\\n\\n27\\n00:01:39,855 --> 00:01:42,763\\nThese two wheels are mounted\\non separate axles\\n\\n28\\n00:01:42,764 --> 00:01:44,593\\nand supported by a frame,\\n\\n29\\n00:01:45,391 --> 00:01:49,798\\nso that they can revolve freely\\nat different speeds.\\n\\n30\\n00:01:50,350 --> 00:01:55,415\\nLet's fasten a spoke\\non the inner end of each axle.\\n\\n31\\n00:01:56,754 --> 00:02:02,461\\nSo that by turning the spokes,\\nwe can turn each wheel separately.\\n\\n32\\n00:02:06,923 --> 00:02:11,614\\nWith a bar or cross piece,\\nwe can turn both wheels\\n\\n33\\n00:02:11,614 --> 00:02:15,973\\nin the same direction\\nat the same rate of speed.\\n\\n34\\n00:02:16,869 --> 00:02:19,418\\nLet's get something\\nto hold this bar in place,\\n\\n35\\n00:02:19,419 --> 00:02:22,509\\nso that it will press against the spokes.\\n\\n36\\n00:02:23,313 --> 00:02:26,468\\nNotice that this support\\nis not locked to the axle,\\n\\n37\\n00:02:26,469 --> 00:02:27,842\\nit turns freely.\\n\\n38\\n00:02:29,145 --> 00:02:33,129\\nNow, we can spin the wheels\\nby rotating the support.\\n\\n39\\n00:02:34,066 --> 00:02:39,111\\nThis is fine, as long as both wheels\\nare able to turn at the same speed.\\n\\n40\\n00:02:39,587 --> 00:02:43,264\\nBut let's see what happens\\nwhen we go around the corner.\\n\\n41\\n00:02:44,090 --> 00:02:48,927\\nWith this arrangement, we cannot drive\\none wheel faster than the other.\\n\\n42\\n00:02:53,620 --> 00:02:58,802\\nAnd if we stop one wheel,\\nthe other wheel won't budge.\\n\\n43\\n00:03:01,590 --> 00:03:07,533\\nLet put this bar on a pivot,\\nso that it can swing in either direction.\\n\\n44\\n00:03:13,458 --> 00:03:18,996\\nNow, the bar can still turn both wheels\\nat the same speed.\\n\\n45\\n00:03:19,583 --> 00:03:24,697\\nAnd, because it pivots,\\nit lets one wheel turn\\n\\n46\\n00:03:24,698 --> 00:03:27,523\\neven when the other is stopped.\\n\\n47\\n00:03:28,619 --> 00:03:33,075\\nBut, if turned too far,\\nthe bar will swing around\\n\\n48\\n00:03:33,076 --> 00:03:37,004\\nuntil it won't drive the spokes\\nthat turn either wheel.\\n\\n49\\n00:03:37,601 --> 00:03:42,766\\nWe need another crossbar\\nand more spokes to carry on the job.\\n\\n50\\n00:03:43,708 --> 00:03:45,434\\nWhen we stop one wheel,\\n\\n51\\n00:03:46,239 --> 00:03:51,121\\nthe crossbars will continue to push\\nthe spokes of the free wheel around.\\n\\n52\\n00:03:52,683 --> 00:03:55,245\\nAs long as both wheels\\nare free to turn,\\n\\n53\\n00:03:56,621 --> 00:04:02,744\\nthe bars do not swing on their pivots\\nand the wheels move at the same speed.\\n\\n54\\n00:04:04,500 --> 00:04:08,034\\nNow we have the working principles\\nof a differential.\\n\\n55\\n00:04:08,767 --> 00:04:14,012\\nTo adapt the model for use in an automobile,\\nwe will have to make a few changes.\\n\\n56\\n00:04:14,944 --> 00:04:20,981\\nIn order to reduce the jerky action,\\ncaused by wide spaces between the spokes,\\n\\n57\\n00:04:21,626 --> 00:04:24,276\\nwe will put in more spokes.\\n\\n58\\n00:04:28,022 --> 00:04:33,844\\nFurther filling in the spaces between the spokes\\ngives steadier, more continuous action.\\n\\n59\\n00:04:34,225 --> 00:04:39,002\\nAnd changing the shape\\ngives firm, constant contact.\\n\\n60\\n00:04:40,109 --> 00:04:43,012\\nNow we can make the gears\\nthicker and stronger,\\n\\n61\\n00:04:43,144 --> 00:04:46,348\\nand we have differential gears.\\n\\n62\\n00:04:46,923 --> 00:04:51,881\\nThe edges are cut so that they will fit together\\nmore smoothly and silently.\\n\\n63\\n00:04:52,261 --> 00:04:56,659\\nAnd another gear is added\\nto share the work of driving the axles.\\n\\n64\\n00:04:56,695 --> 00:04:58,234\\nThe principle is the same.\\n\\n65\\n00:04:59,466 --> 00:05:02,949\\nIn order to turn the support\\nand drive the wheels,\\n\\n66\\n00:05:03,172 --> 00:05:09,229\\nwe can fasten a large gear here,\\nconnected by a smaller gear\\n\\n67\\n00:05:10,195 --> 00:05:11,663\\nto a source of power.\\n\\n68\\n00:05:18,760 --> 00:05:21,565\\nNotice that the power \\nis connected to the differential\\n\\n69\\n00:05:21,566 --> 00:05:23,263\\nat the center line.\\n\\n70\\n00:05:25,519 --> 00:05:30,535\\nWe can make our model more compact\\nby moving the gears closer together.\\n\\n71\\n00:05:31,868 --> 00:05:34,316\\nWhen we put our differential\\nin an automobile,\\n\\n72\\n00:05:34,317 --> 00:05:36,899\\nwe have to leave room\\nfor the drive shaft,\\n\\n73\\n00:05:36,900 --> 00:05:38,978\\nwhich carries the power from the engine.\\n\\n74\\n00:05:40,502 --> 00:05:43,875\\nWe may build the floor of the car\\nabove the drive shaft.\\n\\n75\\n00:05:45,035 --> 00:05:49,151\\nBut, if we do,\\nwe won't have much room inside,\\n\\n76\\n00:05:49,152 --> 00:05:51,839\\nunless we make the top of the car high too.\\n\\n77\\n00:05:52,920 --> 00:05:55,105\\nOf course,\\n we could lower the floor and ceiling,\\n\\n78\\n00:05:55,106 --> 00:05:58,129\\nbut the drive shaft\\nwould be higher than the floor.\\n\\n79\\n00:05:58,703 --> 00:06:00,440\\nThis would have disadvantages.\\n\\n80\\n00:06:01,536 --> 00:06:04,315\\nA shaft in the middle of the floor\\nof an automobile\\n\\n81\\n00:06:04,316 --> 00:06:09,535\\nwould be inconvenient for passengers,\\nand would be awkward for carrying luggage.\\n\\n82\\n00:06:10,028 --> 00:06:15,118\\nToday, engineers have found a way\\nto make the car roomier and closer to the road\\n\\n83\\n00:06:15,706 --> 00:06:18,396\\nwithout a clumsy shaft above the floor.\\n\\n84\\n00:06:18,885 --> 00:06:24,542\\nThe drive shaft from the engine to the differential\\nis lowered out of the way.\\n\\n85\\n00:06:25,226 --> 00:06:29,386\\nAnd the drive shaft is connected\\nto the rear axle at the bottom.\\n\\n86\\n00:06:29,830 --> 00:06:36,199\\nThe new low center drive makes the rear axle\\nquieter, stronger, and more durable\\n\\n87\\n00:06:36,501 --> 00:06:41,334\\nbecause it gives better, smoother contact\\nbetween the gears.\\n\\n88\\n00:06:42,343 --> 00:06:45,789\\nThe automobile of today\\nwith the low center drive\\n\\n89\\n00:06:45,790 --> 00:06:48,989\\nis stronger and more rugged.\\n\\n90\\n00:06:49,592 --> 00:06:54,356\\nEvery part of the rear axle\\nhas been build to withstand strains,\\n\\n91\\n00:06:54,357 --> 00:06:57,591\\nfar greater than it will ever meet\\non the straight way\\n\\n92\\n00:06:57,592 --> 00:06:59,455\\nor around the corner.\\n\\n93\\n00:07:16,509 --> 00:07:18,578\\nInside Wheel\\n\\n94\\n00:07:19,077 --> 00:07:20,579\\nOutside Wheel\\n\\n95\\n00:07:21,128 --> 00:07:23,408\\nInside Wheel\\n\\n96\\n00:07:24,267 --> 00:07:25,969\\nOutside Wheel\\n\\n97\\n00:07:26,504 --> 00:07:28,572\\nInside Wheel \\n\\n98\\n00:07:28,967 --> 00:07:30,365\\nOutside Wheel\",\n", + " 'bytes': 8285,\n", + " 'sha1': '8ljuzmha7phnya8a5wobswt9c82uf9b',\n", + " 'parent_id': 157731477,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 158449717,\n", + " 'timestamp': '2015-04-23T01:40:40Z',\n", + " 'user': {'id': 4737263, 'text': 'Ralexmegu'},\n", + " 'page': {'id': 24636769,\n", + " 'title': \"What's a Love Dart?.webm.en.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:06,335 --> 00:00:08,003\\nMy name is Susan Hewitt and\\n\\n2\\n00:00:08,003 --> 00:00:12,017\\nI'm one of the three people who started the 'Love Dart' article.\\n\\n3\\n00:00:12,017 --> 00:00:16,373\\nWhat's a Love Dart? -- a Love Dart... -- Love Dark?\\n\\n4\\n00:00:16,373 --> 00:00:17,471\\nA Love Dart?\\n\\n5\\n00:00:17,471 --> 00:00:20,932\\nThe dart that Cupid shoots a person with?\\n\\n6\\n00:00:20,932 --> 00:00:23,019\\nWhen we started 'Love Dart',\\n\\n7\\n00:00:23,019 --> 00:00:26,981\\nthere were three of us that created the first draft of it.\\n\\n8\\n00:00:26,981 --> 00:00:32,736\\nNever before, really in the history of humanity, so many people come together \\n\\n9\\n00:00:32,736 --> 00:00:36,373\\non a volunteer basis to build an extraordinary \\n\\n10\\n00:00:36,373 --> 00:00:39,451\\nresource like this that everybody can use!\\n\\n11\\n00:00:39,451 --> 00:00:44,372\\nSo, you just write freely, and then your work is edited\\n\\n12\\n00:00:44,372 --> 00:00:47,377\\nand improved by the other people who are working on it.\\n\\n13\\n00:00:47,377 --> 00:00:52,171\\nA love dart it is actually a dart like a little arrow\\n\\n14\\n00:00:52,171 --> 00:00:55,707\\nThat some land snails and slugs\\n\\n15\\n00:00:55,707 --> 00:01:00,639\\nmake inside their body, and they use it before mating.\\n\\n16\\n00:01:00,639 --> 00:01:05,685\\nEach snail or slug tries to stab the other one with a love dart. \\n\\n17\\n00:01:05,685 --> 00:01:08,896\\nOh my god! So that's how it happens! (laughs)\\n\\n18\\n00:01:08,896 --> 00:01:11,650\\nBecause Cupid is a story from ancient Greece, \\n\\n19\\n00:01:11,650 --> 00:01:14,988\\nthere might be a real parallel between\\n\\n20\\n00:01:14,988 --> 00:01:18,866\\nCupid and his love darts, and the snails and their love darts.\\n\\n21\\n00:01:18,866 --> 00:01:22,122\\nI like Wikipedia a lot, I'm a big fan -- I love Wikipedia.\\n\\n22\\n00:01:22,122 --> 00:01:26,623\\nWhen I meet other Wikipedians, inside them there's this light that comes from\\n\\n23\\n00:01:26,623 --> 00:01:30,127\\nbuilding this extraordinary structure of knowledge.\\n\\n24\\n00:01:30,127 --> 00:01:33,706\\nI'm not a believer in 'ignorance is bliss', I think the other way around 'knowledge is power'\\n\\n25\\n00:01:33,706 --> 00:01:37,802\\nso I think Wikipedia is a very powerful asset for the world.\\n\\n26\\n00:01:37,802 --> 00:01:41,764\\nIt doesn't matter what your area of specialized knowledge\\n\\n27\\n00:01:41,764 --> 00:01:45,000\\nthere's a use for it on Wikipedia.\",\n", + " 'bytes': 2317,\n", + " 'sha1': 'd2orqiq59efcd999ef85g4q8u3yznct',\n", + " 'parent_id': 158449631,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90882795,\n", + " 'timestamp': '2013-02-17T17:54:51Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 24719830,\n", + " 'title': '2012-06 Dessau Hauptbahnhof←Junkerspark.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:39,760 Hauptbahnhof 2 00:00:56,760 --> 00:01:23,480 Theater 3 00:02:17,760 --> 00:03:06,280 Hauptpost 4 00:03:50,320 --> 00:05:22,20...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:39,760\\nHauptbahnhof\\n\\n2\\n00:00:56,760 --> 00:01:23,480\\nTheater\\n\\n3\\n00:02:17,760 --> 00:03:06,280\\nHauptpost\\n\\n4\\n00:03:50,320 --> 00:05:22,200\\nMuseum\\xa0Nord\\n\\n5\\n00:05:35,280 --> 00:05:39,840\\n◄Museum West►\\n\\n6\\n00:05:53,200 --> 00:05:59,440\\n◄August-Bebel-Platz►\\n\\n7\\n00:06:25,520 --> 00:06:57,000\\nAmalienstraße\\n\\n8\\n00:07:52,080 --> 00:08:23,959\\nRodebillestraße\\n\\n9\\n00:08:56,040 --> 00:10:32,720\\nRobert-Bosch-Straße\\n\\n10\\n00:11:11,080 --> 00:11:28,080\\nBerufsschulzentrum Haupteingang\\n\\n11\\n00:12:01,880 --> 00:12:22,800\\nBerufsschulzentrum Sporthalle\\n\\n12\\n00:13:44,760 --> 00:14:43,680\\nKleine Schaftrift\\n\\n13\\n00:15:26,520 --> 00:16:11,800\\nLindenstraße\\n\\n14\\n00:16:43,720 --> 00:17:07,280\\nMedizinisches Versorgungszentrum\\n\\n15\\n00:17:59,400 --> 00:18:26,560\\nStädtisches Klinikum\\n\\n16\\n00:19:19,840 --> 00:19:42,040\\nZoberberg-Mitte\\n\\n17\\n00:20:15,200 --> 00:20:36,640\\nSchule Zoberberg\\n\\n18\\n00:21:06,720 --> 00:21:26,360\\nEllerbreite\\n\\n19\\n00:21:44,280 --> 00:22:03,000\\nJunkerspark',\n", + " 'bytes': 981,\n", + " 'sha1': 'brj3rwv1ss6rdsj6bpvuorml8ia9ros',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90884443,\n", + " 'timestamp': '2013-02-17T18:23:11Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 24720282,\n", + " 'title': '2012-06 Dessau Tempelhofer Straße←Am Alten Wasserturm.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:18,320 Tempelhofer Straße 2 00:00:56,680 --> 00:01:27,400 Peterholzstraße 3 00:01:56,440 --> 00:02:32,960 Damaschkestraße 4 00:03...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:18,320\\nTempelhofer Straße\\n\\n2\\n00:00:56,680 --> 00:01:27,400\\nPeterholzstraße\\n\\n3\\n00:01:56,440 --> 00:02:32,960\\nDamaschkestraße\\n\\n4\\n00:03:00,920 --> 00:03:49,240\\nDessauer Verkehrsgesellschaft\\n\\n5\\n00:04:15,240 --> 00:04:43,480\\nFriedhof Ⅲ\\n\\n6\\n00:05:25,440 --> 00:05:51,520\\nKlughardtstraße\\n\\n7\\n00:06:20,520 --> 00:06:51,360\\nWasserwerkstraße\\n\\n8\\n00:07:26,520 --> 00:07:33,840\\nAm Alten Wasserturm',\n", + " 'bytes': 414,\n", + " 'sha1': '5yaheyz3dunm5i0qhry66k0lamhamj1',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 250641584,\n", + " 'timestamp': '2017-07-08T08:40:56Z',\n", + " 'user': {'id': 4174647, 'text': '若耶有汜'},\n", + " 'page': {'id': 24720562,\n", + " 'title': 'A las barricadas.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,600 --> 00:00:06,800\\nBlack storms shake the air\\n\\n2\\n00:00:06,800 --> 00:00:11,800\\nDark clouds blind us\\n\\n3\\n00:00:11,800 --> 00:00:15,800\\nAlthough pain and death [may] await us\\n\\n4\\n00:00:15,800 --> 00:00:19,800\\nDuty calls us against the enemy\\n\\n5\\n00:00:19,800 --> 00:00:22,800\\nThe most precious good\\n\\n6\\n00:00:22,800 --> 00:00:24,800\\nis freedom\\n\\n7\\n00:00:24,800 --> 00:00:26,800\\nIt must be defended \\n\\n8\\n00:00:26,800 --> 00:00:28,800\\nwith faith and courage\\n\\n9\\n00:00:28,800 --> 00:00:33,800\\nRaise the revolutionary flag\\n\\n10\\n00:00:33,800 --> 00:00:37,800\\nWhich carries us ceaselessly towards triumph\\n\\n11\\n00:00:37,800 --> 00:00:41,800\\nRaise the revolutionary flag\\n\\n12\\n00:00:41,800 --> 00:00:45,800\\nWhich carries us ceaselessly towards triumph\\n\\n13\\n00:00:45,800 --> 00:00:50,800\\nGet up, working people, to the battle\\n\\n14\\n00:00:50,800 --> 00:00:54,800\\n[We] have to topple the reaction\\n\\n15\\n00:00:54,800 --> 00:00:59,800\\nTo the Barricades! To the Barricades!\\n\\n16\\n00:00:59,800 --> 00:01:03,800\\nFor the triumph of the Confederation\\n\\n17\\n00:01:03,800 --> 00:01:08,800\\nTo the Barricades! To the Barricades!\\n\\n18\\n00:01:08,800 --> 00:01:12,800\\nFor the triumph of the Confederation',\n", + " 'bytes': 1167,\n", + " 'sha1': 'ld2bip6f0y35d6ik2iy5zfet99vi16d',\n", + " 'parent_id': 90891352,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 90888963,\n", + " 'timestamp': '2013-02-17T19:44:25Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 24721306,\n", + " 'title': '2012-06 Dessau Hauptbahnhof←Sportplatz Kreuzberge←Peterholzstraße.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:53,960 Hauptbahnhof 2 00:01:15,280 --> 00:01:27,000 Theater 3 00:02:18,600 --> 00:02:59,440 Hauptpost 4 00:04:07,000 --> 00:04:31,20...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:53,960\\nHauptbahnhof\\n\\n2\\n00:01:15,280 --> 00:01:27,000\\nTheater\\n\\n3\\n00:02:18,600 --> 00:02:59,440\\nHauptpost\\n\\n4\\n00:04:07,000 --> 00:04:31,200\\nMuseum Nord\\n\\n5\\n00:04:44,760 --> 00:04:59,720\\nDessau Center\\n\\n6\\n00:05:34,400 --> 00:06:06,880\\nFriedhofstraße\\n\\n7\\n00:06:39,360 --> 00:07:00,840\\nAm Alten Wasserturm\\n\\n8\\n00:08:04,240 --> 00:08:24,280\\nWasserwerkstraße\\n\\n9\\n00:08:54,320 --> 00:09:19,200\\nKlughardtstraße\\n\\n10\\n00:10:17,080 --> 00:10:38,240\\nAugustenstraße\\n\\n11\\n00:11:26,600 --> 00:12:02,960\\nKaufhalle am Kreuzberg\\n\\n12\\n00:12:50,880 --> 00:13:05,960\\nSportplatz Kreuzbergstraße\\n\\n13\\n00:13:17,640 --> 00:13:50,280\\nKaufhalle am Kreuzberg\\n\\n14\\n00:14:38,120 --> 00:14:49,840\\nAugustenstraße\\n\\n15\\n00:15:49,920 --> 00:16:07,320\\nFriedhof Ⅲ\\n\\n16\\n00:17:14,120 --> 00:17:59,800\\nDessauer Verkehrsgesellschaft\\n\\n17\\n00:18:35,840 --> 00:19:02,800\\nDamaschkestraße\\n\\n18\\n00:19:38,480 --> 00:19:41,480\\nPeterholzstraße',\n", + " 'bytes': 912,\n", + " 'sha1': 'kyr3h9q4w8kqxvbswzz3bl4uaup6kn1',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91014178,\n", + " 'timestamp': '2013-02-19T18:59:06Z',\n", + " 'user': {'id': 12488, 'text': 'Barcex'},\n", + " 'page': {'id': 24750378,\n", + " 'title': 'Madrid - Manifestación antidesahucios - No son suicidios - 130216.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:7,000 No son suicidios, son asesinatos'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:7,000\\nNo son suicidios, son asesinatos',\n", + " 'bytes': 63,\n", + " 'sha1': 'jcxcnlh5rt1uxw9k86gwvmb2wj2j9iq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91014261,\n", + " 'timestamp': '2013-02-19T19:00:52Z',\n", + " 'user': {'id': 12488, 'text': 'Barcex'},\n", + " 'page': {'id': 24750404,\n", + " 'title': 'Madrid - Manifestación antidesahucios - No son suicidios - 130216.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:7,000 It is not suicide, it is murder'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:7,000\\nIt is not suicide, it is murder',\n", + " 'bytes': 62,\n", + " 'sha1': 'a40kf0y9y3luac78vie6dfg9kf1f5l6',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91026332,\n", + " 'timestamp': '2013-02-19T22:46:43Z',\n", + " 'user': {'id': 1598622, 'text': 'Floatjon'},\n", + " 'page': {'id': 24752785,\n", + " 'title': 'Auld Lang Syne.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Initial captions',\n", + " 'text': \"1\\n00:00:13,000 --> 00:00:20,000\\nShould auld acquaintance be forgot,\\n\\n2\\n00:00:20,100 --> 00:00:24,400\\nand never brought to mind?\\n\\n3\\n00:00:24,600 --> 00:00:32,000\\nShould auld acquaintance be forgot\\n\\n4\\n00:00:32,100 --> 00:00:38,000\\nand days of auld lang syne.\\n\\n5\\n00:00:38,100 --> 00:00:45,000\\nFor auld lang syne, my dear,\\n\\n6\\n00:00:45,100 --> 00:00:51,000\\nfor auld lang syne,\\n\\n7\\n00:00:51,100 --> 00:00:57,000\\nwe'll take a cup of kindness yet,\\n\\n8\\n00:00:57,100 --> 00:01:04,000\\nfor auld lang syne.\\n\\n9\\n00:01:16,100 --> 00:01:23,000\\nAnd there’s a hand, my trusty friend!\\n\\n10\\n00:01:23,100 --> 00:01:29,000\\nand gie's a hand o’ thine !\\n\\n11\\n00:01:29,100 --> 00:01:35,000\\nWe’ll take a right gude-willy waught,\\n\\n12\\n00:01:35,100 --> 00:01:41,000\\nfor auld lang syne.\\n\\n13\\n00:01:41,100 --> 00:01:48,000\\nFor auld lang syne, my dear,\\n\\n14\\n00:01:48,100 --> 00:01:55,000\\nfor auld lang syne,\\n\\n15\\n00:01:55,100 --> 00:02:01,000\\nWe’ll take a right gude-willy waught,\\n\\n16\\n00:02:01,100 --> 00:02:08,000\\nfor auld lang syne.\",\n", + " 'bytes': 1001,\n", + " 'sha1': 'c8hhs7iupw12sbynmj31leyjgah3rpe',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 236171631,\n", + " 'timestamp': '2017-03-06T13:16:48Z',\n", + " 'user': {'id': 987147, 'text': 'Bdijkstra'},\n", + " 'page': {'id': 24787583,\n", + " 'title': 'Boys beware.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'correction',\n", + " 'text': '1\\n00:00:01,000 --> 00:00:06,400\\nSid Davis Productions Presents\\n\\n2\\n00:00:06,600 --> 00:00:13,400\\n<i>Boys Beware</i>\\n\\n3\\n00:00:13,600 --> 00:00:17,400\\nProduced with the cooperation of the Inglewood Police Department\\n\\n4\\n00:00:17,600 --> 00:00:21,400\\nand the Inglewood Unified School District.\\n\\n5\\n00:00:30,000 --> 00:00:34,400\\n\"Police station\" [Building] \"Police zone\" [Street sign]\\n\\n6\\n00:00:40,000 --> 00:00:44,400\\n\"Police\" [Sign] \"Shelter →\" [Sign]\\n\\n7\\n00:00:57,000 --> 00:00:59,400\\nI\\'m Lieutenant Williams,\\n\\n8\\n00:00:59,600 --> 00:01:02,400\\na police officer attached to the Juvenile Division. \\n\\n9\\n00:01:02,600 --> 00:01:04,600\\nI’m on my way to Monroe Junior High School \\n\\n10\\n00:01:04,800 --> 00:01:07,400\\nto talk to a group of young people.\\n\\n11\\n00:01:08,000 --> 00:01:10,400\\nThat looks innocent enough, doesn\\'t it? \\n\\n12\\n00:01:10,000 --> 00:01:11,400\\nLots of young people hitchhike.\\n\\n13\\n00:01:11,600 --> 00:01:14,400\\nSeems like a good way to get from one place to another.\\n\\n14\\n00:01:14,600 --> 00:01:18,400\\nBut sometimes, there are dangers involved that never meet the eye.\\n\\n15\\n00:01:20,000 --> 00:01:23,400\\nLet\\'s take the case of Jimmy Barnes.\\n\\n16\\n00:01:23,600 --> 00:01:26,400\\nJimmy played baseball all afternoon, and he didn\\'t feel like \\n\\n17\\n00:01:26,600 --> 00:01:29,400\\nwalking home, so he decided to thumb a ride.\\n\\n18\\n00:01:39,000 --> 00:01:41,400\\nHe’d done it a hundred times before,\\n\\n19\\n00:01:41,000 --> 00:01:43,400\\nAnd he didn\\'t think anything was unusual\\n\\n20\\n00:01:43,000 --> 00:01:46,400\\nwhen the driver struck up a friendly conversation.\\n\\n21\\n00:01:46,600 --> 00:01:48,400\\nIn fact, he seemed like a real nice guy.\\n\\n22\\n00:01:48,600 --> 00:01:51,400\\nHe asked Jimmy if he played baseball in the park often. \\n\\n22\\n00:01:51,600 --> 00:01:54,100\\nJimmy told him they practiced three times a week\\n\\n23\\n00:01:54,300 --> 00:01:56,400\\nand played a rival group on Friday afternoon.\\n\\n24\\n00:01:56,600 --> 00:01:58,400\\nThe stranger was a good listener, too.\\n\\n25\\n00:01:58,600 --> 00:02:00,400\\nand it only seemed minutes before\\n\\n26\\n00:02:00,600 --> 00:02:02,400\\nthey pulled up in front of Jimmy\\'s house.\\n\\n27\\n00:02:07,000 --> 00:02:09,100\\nWhen Jimmy got out,\\n\\n28\\n00:02:09,300 --> 00:02:11,400\\nthe stranger gave him a friendly pat.\\n\\n29\\n00:02:14,600 --> 00:02:16,400\\nThen he told him he\\'d see him again,\\n\\n30\\n00:02:16,600 --> 00:02:19,400\\nas he always drove by the park on his way home.\\n\\n31\\n00:02:34,600 --> 00:02:36,400\\nSure enough, \\n\\n32\\n00:02:36,600 --> 00:02:38,400\\nthe following day, when Jimmy finished playing ball, \\n\\n33\\n00:02:38,600 --> 00:02:41,400\\nwell, the man was there waiting.\\n\\n34\\n00:02:54,000 --> 00:02:55,400\\nThey stopped at a drive-in,\\n\\n35\\n00:02:55,600 --> 00:02:57,400\\nand the stranger treated him to a Coke.\\n\\n36\\n00:02:57,800 --> 00:02:59,400\\nDuring their conversation,\\n\\n37\\n00:02:59,600 --> 00:03:01,400\\nhe told several off-color jokes.\\n\\n38\\n00:03:01,600 --> 00:03:03,400\\nBut Jimmy had heard others before;\\n\\n39\\n00:03:03,600 --> 00:03:06,400\\nand, well, it made him feel big to so easily\\n\\n40\\n00:03:06,600 --> 00:03:08,400\\nwin the confidence of an older person.\\n\\n41\\n00:03:21,600 --> 00:03:24,400\\nThe following Saturday, they went fishing together.\\n\\n42\\n00:03:24,600 --> 00:03:27,400\\nBy now, they were using first names.\\n\\n43\\n00:03:27,600 --> 00:03:29,400\\nRalph said it was more friendly.\\n\\n44\\n00:03:37,000 --> 00:03:40,400\\nJimmy hadn\\'t enjoyed himself so much in a long time.\\n\\n45\\n00:03:45,000 --> 00:03:46,400\\nThen, during lunch,\\n\\n46\\n00:03:46,600 --> 00:03:48,400\\nRalph showed him some pornographic pictures.\\n\\n47\\n00:03:48,600 --> 00:03:51,400\\nJimmy knew he shouldn\\'t be interested,\\n\\n48\\n00:03:51,600 --> 00:03:52,400\\nbut, well, he was curious.\\n\\n49\\n00:03:52,600 --> 00:03:54,400\\nWhat Jimmy didn\\'t know was that Ralph was sick.\\n\\n50\\n00:03:54,600 --> 00:03:57,400\\nA sickness that was not visible like smallpox\\n\\n51\\n00:03:57,600 --> 00:04:00,400\\nbut no less dangerous and contagious:\\n\\n52\\n00:04:00,600 --> 00:04:02,400\\na sickness of the mind.\\n\\n53\\n00:04:03,000 --> 00:04:05,400\\nYou see, Ralph was a homosexual...\\n\\n54\\n00:04:05,600 --> 00:04:08,400\\na person who demands an intimate relationship\\n\\n55\\n00:04:08,600 --> 00:04:10,400\\nwith members of their own sex.\\n\\n56\\n00:04:13,000 --> 00:04:15,400\\nBut by now, Jimmy felt a fondness for Ralph;\\n\\n56\\n00:04:15,600 --> 00:04:17,400\\nand they continued to go places together.\\n\\n57\\n00:04:17,600 --> 00:04:21,400\\nRalph was generous and took Jimmy many interesting places \\n\\n58\\n00:04:21,000 --> 00:04:23,400\\nand did many nice things for him.\\n\\n59\\n00:04:27,000 --> 00:04:30,400\\nHe bought presents and even gave him money,\\n\\n60\\n00:04:30,600 --> 00:04:33,400\\nbut payments were expected in return.\\n\\n61\\n00:04:33,600 --> 00:04:37,400\\nYou see, Jimmy hadn\\'t recognized Ralph’s approach soon enough.\\n\\n62\\n00:04:37,600 --> 00:04:40,400\\nWhen Ralph first asked Jimmy to go fishing alone, \\n\\n63\\n00:04:40,600 --> 00:04:43,400\\nhe should have discussed it with his parents or teacher.\\n\\n64\\n00:04:45,000 --> 00:04:46,800\\n\"Police station\" [Sign]\\n\\n65\\n00:04:47,600 --> 00:04:49,200\\nFinally, Jimmy told his parents;\\n\\n66\\n00:04:49,400 --> 00:04:52,400\\nand they reported it to the Juvenile authorities.\\n\\n65\\n00:04:52,600 --> 00:04:54,400\\nRalph was arrested,\\n\\n67\\n00:04:54,600 --> 00:04:56,400\\nand Jimmy was released on probation\\n\\n68\\n00:04:56,600 --> 00:04:59,400\\nin the custody of his parents.\\n\\n69\\n00:05:00,600 --> 00:05:03,400\\nBut all homosexuals are not passive.\\n\\n70\\n00:05:03,600 --> 00:05:06,400\\nSome resort to violence, as in the case of Mike Merritt.\\n\\n71\\n00:05:13,000 --> 00:05:15,400\\nIn the heat of competition,\\n\\n72\\n00:05:15,600 --> 00:05:18,400\\nno one noticed the man who sat and watched.\\n\\n73\\n00:05:18,600 --> 00:05:21,400\\nAnd when the game broke up and the others left,\\n\\n74\\n00:05:21,600 --> 00:05:24,400\\nMike decided to stay and practice a little longer.\\n\\n75\\n00:05:33,000 --> 00:05:35,400\\nThe stranger joined him. He was friendly;\\n\\n76\\n00:05:35,600 --> 00:05:38,400\\nand, well, it was better than playing alone.\\n\\n77\\n00:05:42,000 --> 00:05:45,400\\nThen after a few shots, Mike realized he had already\\n\\n78\\n00:05:45,600 --> 00:05:48,400\\noverstayed his time, and suggested he had better leave.\\n\\n79\\n00:05:48,600 --> 00:05:50,400\\nThe stranger told him if he’d like to stay longer,\\n\\n80\\n00:05:50,600 --> 00:05:53,400\\nhe\\'d be glad to drive him home when they finished.\\n\\n81\\n00:05:53,600 --> 00:05:55,400\\nSounded great to Mike!\\n\\n82\\n00:05:55,600 --> 00:05:57,400\\nA chance to play longer and get a ride home, too!\\n\\n83\\n00:06:15,000 --> 00:06:17,400\\nWhen they finished, the stranger told him he\\'d make\\n\\n84\\n00:06:17,600 --> 00:06:20,400\\na fine player someday if he got lots of practice.\\n\\n85\\n00:06:20,600 --> 00:06:25,400\\nThe companionship, the praise, the friendly attitude dispelled\\n\\n86\\n00:06:25,600 --> 00:06:29,400\\nany misgivings Mike might have had about going with a stranger.\\n\\n87\\n00:06:29,600 --> 00:06:31,400\\nHe probably never realized until too late\\n\\n88\\n00:06:31,600 --> 00:06:33,400\\nthat he was riding in the shadow of death.\\n\\n89\\n00:06:33,600 --> 00:06:35,400\\nBut sometime that evening,\\n\\n90\\n00:06:35,600 --> 00:06:38,400\\nMike Merritt traded his life for a newspaper headline.\\n\\n91\\n00:06:46,000 --> 00:06:48,400\\nAs Denny and Jerry got the papers ready \\n\\n92\\n00:06:48,600 --> 00:06:50,400\\nfor Jerry’s afternoon delivery, \\n\\n93\\n00:06:50,600 --> 00:06:52,400\\nthey only casually noticed the two boys that \\n\\n94\\n00:06:52,600 --> 00:06:54,400\\nraced by in the afternoon traffic.\\n\\n95\\n00:06:55,600 --> 00:06:56,400\\nAnd they didn\\'t pay much attention to the car \\n\\n96\\n00:06:56,600 --> 00:06:59,200\\nthat drew up shortly afterwards,\\n\\n97\\n00:06:59,400 --> 00:07:01,400\\nuntil the man called them over.\\n\\n98\\n00:07:05,600 --> 00:07:07,400\\nHad two boys been by on bicycles?\\n\\n99\\n00:07:07,600 --> 00:07:08,700\\nThe boys nodded they had.\\n\\n100\\n00:07:08,900 --> 00:07:10,400\\nCould they recognize them if they saw them again?\\n\\n101\\n00:07:10,600 --> 00:07:12,400\\nWell, Denny guessed he could.\\n\\n102\\n00:07:12,600 --> 00:07:15,400\\n\"Then, hop in!\" the man said. \"Those are stolen bikes!\"\\n\\n103\\n00:07:15,600 --> 00:07:17,400\\nWithout giving it another thought, Denny got in; and the car sped away.\\n\\n104\\n00:07:17,600 --> 00:07:21,400\\nJerry watched. He’d been told many times \\n\\n105\\n00:07:21,000 --> 00:07:25,400\\nif a friend got in a car with a stranger to write down the license number.\\n\\n106\\n00:07:25,000 --> 00:07:27,800\\nIt didn\\'t seem to apply, but...\\n\\n107\\n00:07:28,000 --> 00:07:30,400\\nwell, fortunately, he marked it down.\\n\\n108\\n00:07:39,000 --> 00:07:41,400\\nWhen he delivered a paper to Denny\\'s house,\\n\\n109\\n00:07:41,600 --> 00:07:43,400\\nhe asked his mother if they caught the boys\\n\\n110\\n00:07:43,600 --> 00:07:46,400\\nthat had stolen the bicycles.\\n\\n111\\n00:07:46,600 --> 00:07:48,400\\nDenny hadn\\'t returned, so he told her the story.\\n\\n112\\n00:07:48,600 --> 00:07:51,400\\nand gave her the paper with the license number\\n\\n113\\n00:07:58,00 --> 00:08:00,400\\nBeing a careful parent, she decided to call the police.\\n\\n114\\n00:08:00,600 --> 00:08:03,400\\nJerry supplied the necessary information\\n\\n115\\n00:08:03,600 --> 00:08:06,400\\nand the stranger\\'s car was quickly spotted. \\n\\n116\\n00:08:06,600 --> 00:08:09,400\\nIt was a good example of how important it is to always\\n\\n117\\n00:08:09,600 --> 00:08:12,400\\nget the license number and description of any stranger \\n\\n118\\n00:08:12,600 --> 00:08:16,400\\nwho takes a young person off alone, no matter what they tell you.\\n\\n119\\n00:08:27,000 --> 00:08:31,400\\nPublic restrooms can often be a hangout for the homosexual.\\n\\n120\\n00:08:31,600 --> 00:08:34,400\\nBobby and his friends hadn\\'t noticed the man \\n\\n121\\n00:08:34,600 --> 00:08:36,400\\nwho had been in the restroom when they changed.\\n\\n122\\n00:08:36,600 --> 00:08:39,600\\nAnd as it was late, he suggested they take the shortcut under the pier.\\n\\n123\\n00:08:39,800 --> 00:08:43,400\\nBut the others preferred to take the more traveled way home.\\n\\n124\\n00:09:01,000 --> 00:09:04,400\\nWhen Bobby recognized the stranger as the man in the restroom, \\n\\n125\\n00:09:04,600 --> 00:09:08,400\\nthe shortcut under the pier didn\\'t seem like a good idea at all.\\n\\n126\\n00:09:16,000 --> 00:09:20,400\\nAfter all, it’s more fun to stay with your friends anyway.\\n\\n127\\n00:09:20,600 --> 00:09:24,400\\nBobby had made a wise decision. It may have saved his life.\\n\\n128\\n00:09:27,000 --> 00:09:29,400\\nThe decision is always yours...\\n\\n129\\n00:09:29,600 --> 00:09:32,400\\n...and your whole future may depend on making the right one.\\n\\n130\\n00:09:33,600 --> 00:09:35,400\\nSo, no matter where you meet a stranger,\\n\\n131\\n00:09:35,600 --> 00:09:38,400\\nbe careful if they are too friendly \\n\\n132\\n00:09:38,600 --> 00:09:40,400\\nif try to win your confidence too quickly \\n\\n133\\n00:09:40,600 --> 00:09:42,400\\nand if they become overly personal.\\n\\n134\\n00:09:42,600 --> 00:09:45,400\\nOne never knows when the homosexual is about.\\n\\n135\\n00:09:45,600 --> 00:09:48,400\\nHe may appear normal, and it may be too late \\n\\n136\\n00:09:48,600 --> 00:09:51,400\\nwhen you discover he is mentally ill.\\n\\n137\\n00:09:51,600 --> 00:09:54,400\\nSo keep with your group, and don\\'t go off alone with strangers\\n\\n138\\n00:09:54,600 --> 00:09:58,400\\nunless you have the permission of your parent or teacher.\\n\\n139\\n00:10:05,000 --> 00:10:09,400\\nThe End A Sid Davis Production',\n", + " 'bytes': 11104,\n", + " 'sha1': '3myp120yyyejlrpmyoskez0nvt10k3a',\n", + " 'parent_id': 189745054,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91237785,\n", + " 'timestamp': '2013-02-22T16:37:32Z',\n", + " 'user': {'id': 472568, 'text': 'Wizardist'},\n", + " 'page': {'id': 24805311,\n", + " 'title': \"Artist's impression of the evolution of a hot high-mass binary star.ogv.be-tarask.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'test, will be finished soon',\n", + " 'text': '1\\n00:00:03,000 --> 00:00:16,000\\nБальшыня вельмі гарачых і яскравых зорак знаходзяцца ў блізкіх парах.\\n\\n2\\n00:00:18,000 --> 00:00:24,000\\nГэтыя масіўныя зоркі маюць кароткае жыцьцё і эвалюцыянуюць хутка.\\n\\n3\\n00:00:26,000 --> 00:00:30,400\\nГэтае мастацкае ўвасабленьне адлюстроўвае тыповае жыцьцё такіх яскравых пар.\\n\\n4\\n00:00:33,000 --> 00:00:38,000\\nПершая зорка пачынае «высмоктваць» рэчыва з другой.',\n", + " 'bytes': 621,\n", + " 'sha1': 'gdlmvrilab583fe6z2bx2fw6wqd14bs',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91272401,\n", + " 'timestamp': '2013-02-22T23:28:49Z',\n", + " 'user': {'id': 12488, 'text': 'Barcex'},\n", + " 'page': {'id': 24818303,\n", + " 'title': 'Madrid - Manifestación antidesahucios - Botella al contenedor - 130216.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,000 --> 00:00:08,000 La Botella, al contenedor'\",\n", + " 'text': '1\\n00:00:01,000 --> 00:00:08,000\\nLa Botella, al contenedor',\n", + " 'bytes': 57,\n", + " 'sha1': '8ifuou5vmsl7rsa5x8301t401rgl12s',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91272661,\n", + " 'timestamp': '2013-02-22T23:37:16Z',\n", + " 'user': {'id': 12488, 'text': 'Barcex'},\n", + " 'page': {'id': 24818315,\n", + " 'title': 'Madrid - Manifestación antidesahucios - Botella al contenedor - 130216.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:08,000\\nThe <i>Botella</i> goes to the waste container\\n<i>(Botella: Spanish for bottle)</i>',\n", + " 'bytes': 115,\n", + " 'sha1': '6i976y13huj2t2fkg23uujheha5r21v',\n", + " 'parent_id': 91272612,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 189745059,\n", + " 'timestamp': '2016-03-08T03:14:56Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 24833865,\n", + " 'title': 'BoysBewarecolorizedVersion.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:03,400\\n<i>Boys Beware</i>\\n\\n2\\n00:00:5,000 --> 00:00:7,400\\n\"Police station\" [Building] \"Police zone\" [Street sign]\\n\\n3\\n00:00:10,000 --> 00:00:13,400\\n\"Police\" [Sign] \"Shelter →\" [Sign]\\n\\n4\\n00:00:29,000 --> 00:00:31,400\\nI\\'m Lieutenant Williams,\\n\\n5\\n00:00:31,600 --> 00:00:34,400\\na police officer attached to the Juvenile Division. \\n\\n6\\n00:00:34,600 --> 00:00:36,600\\nI\\'m on my way to Monroe Junior High School \\n\\n7\\n00:00:36,800 --> 00:00:38,800\\nto talk to a group of young people.\\n\\n8\\n00:00:39,000 --> 00:00:41,400\\nThat looks innocent enough, doesn\\'t it? \\n\\n9\\n00:00:41,000 --> 00:00:43,400\\nLots of young people hitchhike.\\n\\n10\\n00:00:43,600 --> 00:00:46,400\\nSeems like a good way to get from one place to another.\\n\\n11\\n00:00:46,600 --> 00:00:49,400\\nBut sometimes, there are dangers involved that never meet the eye.\\n\\n12\\n00:00:52,000 --> 00:00:55,400\\nLet\\'s take the case of Jimmy Barnes.\\n\\n13\\n00:00:55,600 --> 00:00:59,400\\nJimmy played baseball all afternoon, and he didn\\'t feel like \\n\\n14\\n00:00:59,600 --> 00:01:02,400\\nwalking home, so he decided to thumb a ride.\\n\\n15\\n00:01:10,000 --> 00:01:13,400\\nHe\\'d done it a hundred times before,\\n\\n16\\n00:01:13,000 --> 00:01:15,400\\nAnd he didn\\'t think anything was unusual\\n\\n17\\n00:01:15,000 --> 00:01:18,400\\nwhen the driver struck up a friendly conversation.\\n\\n18\\n00:01:18,600 --> 00:01:20,400\\nIn fact, he seemed like a real nice guy.\\n\\n19\\n00:01:20,600 --> 00:01:23,400\\nHe asked Jimmy if he played baseball in the park often. \\n\\n20\\n00:01:23,600 --> 00:01:25,100\\nJimmy told him they practiced three times a week\\n\\n21\\n00:01:25,300 --> 00:01:28,400\\nand played a rival group on Friday afternoon.\\n\\n22\\n00:01:28,600 --> 00:01:30,400\\nThe stranger was a good listener, too.\\n\\n23\\n00:01:30,600 --> 00:01:32,400\\nand it only seemed minutes before\\n\\n24\\n00:01:32,600 --> 00:01:35,400\\nthey pulled up in front of Jimmy\\'s house.\\n\\n25\\n00:01:39,000 --> 00:01:40,100\\nWhen Jimmy got out,\\n\\n26\\n00:01:40,300 --> 00:01:43,400\\nthe stranger gave him a friendly pat.\\n\\n27\\n00:01:45,600 --> 00:01:47,400\\nThen he told him he\\'d see him again,\\n\\n28\\n00:01:47,600 --> 00:01:50,400\\nas he always drove by the park on his way home.\\n\\n29\\n00:02:06,000 --> 00:02:07,400\\nSure enough, \\n\\n30\\n00:02:07,600 --> 00:02:09,400\\nthe following day, when [Jimmy] finished playing ball, \\n\\n31\\n00:02:09,600 --> 00:02:12,400\\nwell, the man was there waiting.\\n\\n32\\n00:02:24,000 --> 00:02:25,400\\nThey stopped at a drive-in,\\n\\n33\\n00:02:25,600 --> 00:02:28,400\\nand the stranger treated him to a Coke.\\n\\n34\\n00:02:28,800 --> 00:02:29,400\\nDuring their conversation,\\n\\n35\\n00:02:29,600 --> 00:02:31,400\\nhe told several off-color jokes.\\n\\n36\\n00:02:31,600 --> 00:02:33,400\\nBut Jimmy had heard others before;\\n\\n37\\n00:02:33,600 --> 00:02:35,400\\nand, well, it made him feel big to so easily\\n\\n38\\n00:02:35,600 --> 00:02:38,400\\nwin the confidence of an older person.\\n\\n39\\n00:02:51,600 --> 00:02:54,400\\nThe following Saturday, they went fishing together.\\n\\n40\\n00:02:54,600 --> 00:02:56,400\\nBy now, they were using first names.\\n\\n41\\n00:02:56,600 --> 00:02:59,400\\nRalph said it was more friendly.\\n\\n42\\n00:03:07,000 --> 00:03:10,400\\nJimmy hadn\\'t enjoyed himself so much in a long time.\\n\\n43\\n00:03:14,000 --> 00:03:16,400\\nThen, during lunch,\\n\\n44\\n00:03:16,600 --> 00:03:18,400\\nRalph showed him some pornographic pictures.\\n\\n45\\n00:03:18,600 --> 00:03:20,400\\nJimmy knew he shouldn\\'t be interested,\\n\\n46\\n00:03:20,600 --> 00:03:22,400\\nbut, well, he was curious.\\n\\n47\\n00:03:22,600 --> 00:03:25,400\\nWhat Jimmy didn\\'t know was that Ralph was sick.\\n\\n48\\n00:03:25,600 --> 00:03:28,400\\nA sickness that was not visible like smallpox\\n\\n49\\n00:03:28,600 --> 00:03:31,400\\nbut no less dangerous and contagious:\\n\\n50\\n00:03:31,600 --> 00:03:33,400\\na sickness of the mind.\\n\\n51\\n00:03:33,000 --> 00:03:35,400\\nYou see, Ralph was a homosexual...\\n\\n52\\n00:03:35,600 --> 00:03:38,400\\na person who demands an intimate relationship\\n\\n53\\n00:03:38,600 --> 00:03:41,400\\nwith members of their own sex.\\n\\n54\\n00:03:42,000 --> 00:03:45,400\\nBut by now, Jimmy felt a fondness for Ralph;\\n\\n55\\n00:03:45,600 --> 00:03:48,400\\nand they continued to go places together.\\n\\n56\\n00:03:48,600 --> 00:03:51,400\\nRalph was generous and took Jimmy many interesting places \\n\\n57\\n00:03:51,000 --> 00:03:54,400\\nand did many nice things for him.\\n\\n58\\n00:03:57,000 --> 00:04:00,400\\nHe bought presents and even gave him money,\\n\\n59\\n00:04:00,600 --> 00:04:03,400\\nbut payments were expected in return.\\n\\n60\\n00:04:03,600 --> 00:04:07,400\\nYou see, Jimmy hadn\\'t recognized Ralph\\'s approach soon enough.\\n\\n61\\n00:04:07,600 --> 00:04:10,400\\nWhen Ralph first asked Jimmy to go fishing alone, \\n\\n62\\n00:04:10,600 --> 00:04:13,400\\nhe should have discussed it with his parents or teacher.\\n\\n63\\n00:04:15,000 --> 00:04:16,800\\n\"Police station\" [Sign]\\n\\n64\\n00:04:17,600 --> 00:04:19,200\\nFinally, Jimmy told his parents;\\n\\n65\\n00:04:19,400 --> 00:04:22,400\\nand they reported it to the Juvenile authorities.\\n\\n66\\n00:04:22,600 --> 00:04:24,400\\nRalph was arrested,\\n\\n67\\n00:04:24,600 --> 00:04:26,400\\nand Jimmy was released on probation\\n\\n68\\n00:04:26,600 --> 00:04:29,400\\nin the custody of his parents.\\n\\n69\\n00:04:30,600 --> 00:04:33,400\\nBut all homosexuals are not passive.\\n\\n70\\n00:04:33,600 --> 00:4:36,400\\nSome resort to violence, as in the case of Mike Merritt.\\n\\n71\\n00:04:43,000 --> 00:04:45,400\\nIn the heat of competition,\\n\\n72\\n00:04:45,600 --> 00:04:48,400\\nno one noticed the man who sat and watched.\\n\\n73\\n00:04:48,600 --> 00:04:51,400\\nAnd when the game broke up and the others left,\\n\\n74\\n00:04:51,600 --> 00:04:54,400\\nMike decided to stay and practice a little longer.\\n\\n75\\n00:05:03,000 --> 00:05:05,400\\nThe stranger joined him. He was friendly;\\n\\n76\\n00:05:05,600 --> 00:05:08,400\\nand, well, it was better than playing alone.\\n\\n77\\n00:05:12,000 --> 00:05:15,400\\nThen after a few shots, Mike realized he had already\\n\\n78\\n00:05:15,000 --> 00:05:18,400\\noverstayed his time, and suggested he had better leave.\\n\\n79\\n00:05:18,600 --> 00:05:21,400\\nThe stranger told him if he’d like to stay longer,\\n\\n80\\n00:05:21,600 --> 00:05:23,400\\nhe\\'d be glad to drive him home when they finished.\\n\\n81\\n00:05:23,600 --> 00:05:25,400\\nSounded great to Mike!\\n\\n82\\n00:05:25,600 --> 00:05:27,400\\nA chance to play longer and get a ride home, too!\\n\\n83\\n00:05:45,000 --> 00:05:47,400\\nWhen they finished, the stranger told him he\\'d make\\n\\n84\\n00:05:47,600 --> 00:05:50,400\\na fine player someday if he got lots of practice.\\n\\n85\\n00:05:50,600 --> 00:05:55,400\\nThe companionship, the praise, the friendly attitude dispelled\\n\\n86\\n00:05:55,600 --> 00:05:59,400\\nany misgivings Mike might have had about going with a stranger.\\n\\n87\\n00:05:59,600 --> 00:06:01,400\\nHe probably never realized until too late\\n\\n88\\n00:06:01,600 --> 00:06:03,400\\nthat he was riding in the shadow of death.\\n\\n89\\n00:06:03,600 --> 00:06:05,400\\nBut sometime that evening,\\n\\n90\\n00:06:05,600 --> 00:06:08,400\\nMike Merritt traded his life for a newspaper headline.\\n\\n91\\n00:06:16,000 --> 00:06:18,400\\nAs Denny and Jerry got the papers ready \\n\\n92\\n00:06:18,600 --> 00:06:20,400\\nfor Jerry\\'s afternoon delivery, \\n\\n93\\n00:06:20,600 --> 00:06:22,400\\nthey only casually noticed the two boys that \\n\\n94\\n00:06:22,600 --> 00:06:24,400\\nraced by in the afternoon traffic.\\n\\n95\\n00:06:25,600 --> 00:06:26,400\\nAnd they didn\\'t pay much attention to the car \\n\\n96\\n00:06:26,600 --> 00:06:29,200\\nthat drew up shortly afterwards,\\n\\n97\\n00:06:29,400 --> 00:06:31,400\\nuntil the man called them over.\\n\\n98\\n00:06:35,600 --> 00:06:37,400\\nHad two boys been by on bicycles?\\n\\n99\\n00:06:37,600 --> 00:06:38,700\\nThe boys nodded they had.\\n\\n100\\n00:06:38,900 --> 00:06:40,400\\nCould they recognize them if they saw them again?\\n\\n101\\n00:06:40,600 --> 00:06:42,400\\nWell, Denny guessed he could.\\n\\n102\\n00:06:42,600 --> 00:06:45,400\\n\"Then, hop in!\" the man said. \"Those are stolen bikes!\"\\n\\n103\\n00:06:45,600 --> 00:06:47,400\\nWithout giving it another thought, Denny got in; and the car sped away.\\n\\n104\\n00:06:47,600 --> 00:06:51,400\\nJerry watched. He\\'d been told many times \\n\\n105\\n00:06:51,000 --> 00:06:55,400\\nif a friend got in a car with a stranger to write down the license number.\\n\\n106\\n00:06:55,000 --> 00:06:57,800\\nIt didn\\'t seem to apply, but...\\n\\n107\\n00:06:58,000 --> 00:07:00,400\\nwell, fortunately, he marked it down.\\n\\n108\\n00:07:09,000 --> 00:07:11,400\\nWhen we delivered a paper to Denny\\'s house,\\n\\n109\\n00:07:11,600 --> 00:07:13,400\\nhe asked his mother if they caught the boys\\n\\n110\\n00:07:13,600 --> 00:07:16,400\\nthat had stolen the bicycles.\\n\\n111\\n00:07:16,600 --> 00:07:18,400\\nDenny hadn\\'t returned, so he told her the story.\\n\\n112\\n00:07:18,600 --> 00:07:21,400\\nand gave her the paper with the license number\\n\\n113\\n00:07:28,00 --> 00:07:30,400\\nBeing a careful parent, she decided to call the police.\\n\\n114\\n00:07:30,600 --> 00:07:33,400\\nJerry supplied the necessary information\\n\\n115\\n00:07:33,600 --> 00:07:36,400\\nand the stranger\\'s car was quickly spotted. \\n\\n116\\n00:07:36,600 --> 00:07:39,400\\nIt was a good example of how important it is to always\\n\\n117\\n00:07:39,600 --> 00:07:42,400\\nget the license number and description of any stranger \\n\\n118\\n00:07:42,600 --> 00:07:46,400\\nwho takes a young person off alone, no matter what they tell you.\\n\\n119\\n00:07:57,000 --> 00:08:01,400\\nPublic restrooms can often be a hangout for the homosexual.\\n\\n120\\n00:08:01,600 --> 00:08:04,400\\nBobby and his friends hadn\\'t noticed the man \\n\\n121\\n00:08:04,600 --> 00:08:06,400\\nwho had been in the restroom when they changed.\\n\\n122\\n00:08:06,600 --> 00:08:09,600\\nAnd as it was late, he suggested they take the shortcut under the pier.\\n\\n123\\n00:08:09,800 --> 00:08:13,400\\nBut the others preferred to take the more traveled way home.\\n\\n124\\n00:08:31,000 --> 00:08:34,400\\nWhen Bobby recognized the stranger as the man in the restroom, \\n\\n125\\n00:08:34,600 --> 00:08:38,400\\nthe shortcut under the pier didn\\'t seem like a good idea at all.\\n\\n126\\n00:08:46,000 --> 00:08:50,400\\nAfter all, it’s more fun to stay with your friends anyway.\\n\\n127\\n00:08:50,600 --> 00:08:54,400\\nBobby had made a wise decision. It may have saved his life.\\n\\n128\\n00:08:57,000 --> 00:08:59,400\\nThe decision is always yours...\\n\\n129\\n00:08:59,600 --> 00:09:02,400\\n...and your whole future may depend on making the right one.\\n\\n130\\n00:09:03,600 --> 00:09:05,400\\nSo, no matter where you meet a stranger,\\n\\n131\\n00:09:05,600 --> 00:09:08,400\\nbe careful if they are too friendly \\n\\n132\\n00:09:08,600 --> 00:09:10,400\\nif try to win your confidence too quickly \\n\\n133\\n00:09:10,600 --> 00:09:12,400\\nand if they become overly personal.\\n\\n134\\n00:09:12,600 --> 00:09:15,400\\nOne never knows when the homosexual is about.\\n\\n135\\n00:09:15,600 --> 00:09:18,400\\nHe may appear normal, and it may be too late \\n\\n136\\n00:09:18,600 --> 00:09:21,400\\nwhen you discover he is mentally ill.\\n\\n137\\n00:09:21,600 --> 00:09:24,400\\nSo keep with your group, and don\\'t go off alone with strangers\\n\\n138\\n00:09:24,600 --> 00:09:28,400\\nunless you have the permission of your parent or teacher.\\n\\n139\\n00:9:35,000 --> 00:9:39,400\\nThe End A Sid Davis Production',\n", + " 'bytes': 10848,\n", + " 'sha1': 'l2yowxwnwselw8jju67qhb5x9kffx2x',\n", + " 'parent_id': 189744605,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 189745090,\n", + " 'timestamp': '2016-03-08T03:15:14Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 24835123,\n", + " 'title': 'BoysAware1973.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:05,400\\nSid Davis Productions Presents\\n\\n2\\n00:00:05,600 --> 00:00:12,400\\n<i>Boys Aware</i>\\n\\n3\\n00:00:12,600 --> 00:00:16,400\\nProduced with the co-operation of the Inglewood Unified School District\\n\\n4\\n00:00:16,600 --> 00:00:20,400\\nand the Inglewood Police Department.\\n\\n5\\n00:00:32,000 --> 00:00:35,400\\n\"Police\" [Marker on car]\\n\\n7\\n00:00:56,000 --> 00:00:58,400\\nI\\'m Lieutenant Williams,\\n\\n8\\n00:00:58,600 --> 00:01:01,400\\na police officer attached to the Juvenile Division. \\n\\n9\\n00:01:01,600 --> 00:01:03,600\\nI\\'m on my way to Monroe Junior High School \\n\\n10\\n00:01:03,800 --> 00:01:06,400\\nto talk to a group of young people.\\n\\n11\\n00:01:06,500 --> 00:01:08,400\\nThat looks innocent enough, doesn\\'t it? \\n\\n12\\n00:01:08,600 --> 00:01:10,400\\nLots of young people hitchhike.\\n\\n13\\n00:01:10,600 --> 00:01:13,400\\nSeems like a good way to get from one place to another.\\n\\n14\\n00:01:13,600 --> 00:01:17,400\\nBut sometimes, there are dangers involved that never meet the eye.\\n\\n15\\n00:01:19,000 --> 00:01:22,400\\nLet\\'s take the case of Jimmy Barnes.\\n\\n16\\n00:01:22,600 --> 00:01:25,400\\nJimmy played baseball all afternoon, and he didn\\'t feel like \\n\\n17\\n00:01:25,600 --> 00:01:28,400\\nwalking home, so he decided to thumb a ride.\\n\\n18\\n00:01:37,600 --> 00:01:39,800\\nHe\\'d done it a hundred times before,\\n\\n19\\n00:01:40,000 --> 00:01:41,600\\nAnd he didn\\'t think anything was unusual\\n\\n20\\n00:01:41,800 --> 00:01:44,800\\nwhen the driver struck up a friendly conversation.\\n\\n21\\n00:01:45,000 --> 00:01:47,400\\nIn fact, he seemed like a real nice guy.\\n\\n22\\n00:01:47,600 --> 00:01:50,400\\nHe asked Jimmy if he played baseball in the park often. \\n\\n22\\n00:01:50,600 --> 00:01:53,100\\nJimmy told him they practiced three times a week\\n\\n23\\n00:01:53,300 --> 00:01:55,400\\nand played a rival group on Friday afternoon.\\n\\n24\\n00:01:55,600 --> 00:01:57,400\\nThe stranger was a good listener, too.\\n\\n25\\n00:01:57,600 --> 00:01:59,400\\nand it only seemed minutes before\\n\\n26\\n00:01:59,600 --> 00:02:01,400\\nthey pulled up in front of Jimmy\\'s house.\\n\\n27\\n00:02:06,600 --> 00:02:08,400\\nWhen Jimmy got out,\\n\\n28\\n00:02:08,600 --> 00:02:11,400\\nthe stranger gave him a friendly pat.\\n\\n29\\n00:02:13,600 --> 00:02:15,400\\nThen he told him he\\'d see him again,\\n\\n30\\n00:02:15,600 --> 00:02:18,400\\nas he always drove by the park on his way home.\\n\\n31\\n00:02:33,600 --> 00:02:35,400\\nSure enough, \\n\\n32\\n00:02:35,600 --> 00:02:37,400\\nthe following day, when Jimmy finished playing ball, \\n\\n33\\n00:02:37,600 --> 00:02:40,400\\nwell, the man was there waiting.\\n\\n34\\n00:02:53,000 --> 00:02:54,400\\nThey stopped at a drive-in,\\n\\n35\\n00:02:54,600 --> 00:02:56,400\\nand the stranger treated him to a Coke.\\n\\n36\\n00:02:56,800 --> 00:02:58,400\\nDuring their conversation,\\n\\n37\\n00:02:58,600 --> 00:03:00,400\\nhe told several off-color jokes.\\n\\n38\\n00:03:00,600 --> 00:03:02,400\\nBut Jimmy had heard others before;\\n\\n39\\n00:03:02,600 --> 00:03:05,400\\nand, well, it made him feel big to so easily\\n\\n40\\n00:03:05,600 --> 00:03:07,400\\nwin the confidence of an older person.\\n\\n41\\n00:03:20,600 --> 00:03:23,400\\nThe following Saturday, they went fishing together.\\n\\n42\\n00:03:23,600 --> 00:03:26,400\\nBy now, they were using first names.\\n\\n43\\n00:03:26,600 --> 00:03:28,400\\nRalph said it was more friendly.\\n\\n44\\n00:03:36,000 --> 00:03:39,400\\nJimmy hadn\\'t enjoyed himself so much in a long time.\\n\\n45\\n00:03:44,000 --> 00:03:45,400\\nThen, during lunch,\\n\\n46\\n00:03:45,600 --> 00:03:47,400\\nRalph showed him some pornographic pictures.\\n\\n47\\n00:03:47,600 --> 00:03:50,400\\nJimmy knew he shouldn\\'t be interested,\\n\\n48\\n00:03:50,600 --> 00:03:51,400\\nbut, well, he was curious.\\n\\n49\\n00:03:51,600 --> 00:03:53,400\\nWhat Jimmy didn\\'t know was that Ralph was sick.\\n\\n50\\n00:03:53,600 --> 00:03:56,400\\nA sickness that was not visible like smallpox\\n\\n51\\n00:03:56,600 --> 00:03:59,400\\nbut no less dangerous and contagious:\\n\\n52\\n00:03:59,600 --> 00:04:01,400\\na sickness of the mind.\\n\\n53\\n00:04:02,000 --> 00:04:04,400\\nYou see, Ralph was a homosexual...\\n\\n54\\n00:04:04,600 --> 00:04:07,400\\na person who demands an intimate relationship\\n\\n55\\n00:04:07,600 --> 00:04:09,400\\nwith members of their own sex.\\n\\n56\\n00:04:12,000 --> 00:04:14,400\\nBut by now, Jimmy felt a fondness for Ralph;\\n\\n56\\n00:04:14,600 --> 00:04:16,400\\nand they continued to go places together.\\n\\n57\\n00:04:16,600 --> 00:04:20,400\\nRalph was generous and took Jimmy many interesting places \\n\\n58\\n00:04:20,000 --> 00:04:22,400\\nand did many nice things for him.\\n\\n59\\n00:04:26,000 --> 00:04:29,400\\nHe bought presents and even gave him money,\\n\\n60\\n00:04:29,600 --> 00:04:32,400\\nbut payments were expected in return.\\n\\n61\\n00:04:32,600 --> 00:04:36,400\\nYou see, Jimmy hadn\\'t recognized Ralph’s approach soon enough.\\n\\n62\\n00:04:36,600 --> 00:04:39,400\\nWhen Ralph first asked Jimmy to go fishing alone, \\n\\n63\\n00:04:39,600 --> 00:04:42,400\\nhe should have discussed it with his parents or teacher.\\n\\n64\\n00:04:44,000 --> 00:04:45,800\\n\"Police\" [Sign]\\n\\n65\\n00:04:46,600 --> 00:04:48,200\\nFinally, Jimmy told his parents;\\n\\n66\\n00:04:48,400 --> 00:04:51,400\\nand they reported it to the Juvenile authorities.\\n\\n65\\n00:04:51,600 --> 00:04:53,400\\nRalph was arrested,\\n\\n67\\n00:04:53,600 --> 00:04:55,400\\nand Jimmy was released on probation\\n\\n68\\n00:04:55,600 --> 00:04:58,400\\nin the custody of his parents.\\n\\n69\\n00:05:00,600 --> 00:05:02,400\\nBut all homosexuals are not passive.\\n\\n70\\n00:05:02,600 --> 00:05:05,400\\nSome resort to violence, as in the case of Mike Merritt.\\n\\n71\\n00:05:12,000 --> 00:05:14,400\\nIn the heat of competition,\\n\\n72\\n00:05:14,600 --> 00:05:17,400\\nno one noticed the man who sat and watched.\\n\\n73\\n00:05:17,600 --> 00:05:20,400\\nAnd when the game broke up and the others left,\\n\\n74\\n00:05:20,600 --> 00:05:23,400\\nMike decided to stay and practice a little longer.\\n\\n75\\n00:05:32,000 --> 00:05:34,400\\nThe stranger joined him. He was friendly;\\n\\n76\\n00:05:34,600 --> 00:05:37,400\\nand, well, it was better than playing alone.\\n\\n77\\n00:05:41,000 --> 00:05:44,400\\nThen after a few shots, Mike realized he had already\\n\\n78\\n00:05:44,600 --> 00:05:47,400\\noverstayed his time, and suggested he had better leave.\\n\\n79\\n00:05:47,600 --> 00:05:49,400\\nThe stranger told him if he’d like to stay longer,\\n\\n80\\n00:05:49,600 --> 00:05:52,400\\nhe\\'d be glad to drive him home when they finished.\\n\\n81\\n00:05:52,600 --> 00:05:54,400\\nSounded great to Mike!\\n\\n82\\n00:05:54,600 --> 00:05:56,400\\nA chance to play longer and get a ride home, too!\\n\\n83\\n00:06:14,000 --> 00:06:16,400\\nWhen they finished, the stranger told him he\\'d make\\n\\n84\\n00:06:16,600 --> 00:06:19,400\\na fine player someday if he got lots of practice.\\n\\n85\\n00:06:19,600 --> 00:06:24,400\\nThe companionship, the praise, the friendly attitude dispelled\\n\\n86\\n00:06:24,600 --> 00:06:28,400\\nany misgivings Mike might have had about going with a stranger.\\n\\n87\\n00:06:28,600 --> 00:06:30,400\\nHe probably never realized until too late\\n\\n88\\n00:06:30,600 --> 00:06:32,400\\nthat he was riding in the shadow of death.\\n\\n89\\n00:06:32,600 --> 00:06:34,400\\nBut sometime that evening,\\n\\n90\\n00:06:34,600 --> 00:06:37,400\\nMike Merritt traded his life for a newspaper headline.\\n\\n91\\n00:06:45,000 --> 00:06:47,400\\nAs Denny and Jerry got the papers ready \\n\\n92\\n00:06:47,600 --> 00:06:49,400\\nfor Jerry\\'s afternoon delivery, \\n\\n93\\n00:06:49,600 --> 00:06:51,400\\nthey only casually noticed the two boys that \\n\\n94\\n00:06:51,600 --> 00:06:53,400\\nraced by in the afternoon traffic.\\n\\n95\\n00:06:54,600 --> 00:06:55,400\\nAnd they didn\\'t pay much attention to the car \\n\\n96\\n00:06:55,600 --> 00:06:58,200\\nthat drew up shortly afterwards,\\n\\n97\\n00:06:58,400 --> 00:07:00,400\\nuntil the man called them over.\\n\\n98\\n00:07:04,600 --> 00:07:06,400\\nHad two boys been by on bicycles?\\n\\n99\\n00:07:06,600 --> 00:07:07,700\\nThe boys nodded they had.\\n\\n100\\n00:07:07,900 --> 00:07:09,400\\nCould they recognize them if they saw them again?\\n\\n101\\n00:07:09,600 --> 00:07:11,400\\nWell, Denny guessed he could.\\n\\n102\\n00:07:11,600 --> 00:07:14,400\\n\"Then, hop in!\" the man said. \"Those are stolen bikes!\"\\n\\n103\\n00:07:14,600 --> 00:07:16,400\\nWithout giving it another thought, Denny got in; and the car sped away.\\n\\n104\\n00:07:16,600 --> 00:07:20,400\\nJerry watched. He’d been told many times \\n\\n105\\n00:07:20,000 --> 00:07:23,800\\nif a friend got in a car with a stranger to write down the license number.\\n\\n106\\n00:07:24,000 --> 00:07:26,800\\nIt didn\\'t seem to apply, but...\\n\\n107\\n00:07:27,000 --> 00:07:29,400\\nwell, fortunately, he marked it down.\\n\\n108\\n00:07:38,000 --> 00:07:40,400\\nWhen we delivered a paper to Denny\\'s house,\\n\\n109\\n00:07:40,600 --> 00:07:42,400\\nhe asked his mother if they caught the boys\\n\\n110\\n00:07:42,600 --> 00:07:45,400\\nthat had stolen the bicycles.\\n\\n111\\n00:07:45,600 --> 00:07:47,400\\nDenny hadn\\'t returned, so he told her the story.\\n\\n112\\n00:07:47,600 --> 00:07:50,400\\nand gave her the paper with the license number\\n\\n113\\n00:07:57,00 --> 00:07:59,400\\nBeing a careful parent, she decided to call the police.\\n\\n114\\n00:07:59,600 --> 00:08:02,400\\nJerry supplied the necessary information\\n\\n115\\n00:08:02,600 --> 00:08:05,400\\nand the stranger\\'s car was quickly spotted. \\n\\n116\\n00:08:05,600 --> 00:08:08,400\\nIt was a good example of how important it is to always\\n\\n117\\n00:08:08,600 --> 00:08:11,400\\nget the license number and description of any stranger \\n\\n118\\n00:08:11,600 --> 00:08:15,400\\nwho takes a young person off alone, no matter what they tell you.\\n\\n119\\n00:08:26,000 --> 00:08:30,400\\nPublic restrooms can often be a hangout for the homosexual.\\n\\n120\\n00:08:30,600 --> 00:08:33,400\\nBobby and his friends hadn\\'t noticed the man \\n\\n121\\n00:08:33,600 --> 00:08:35,400\\nwho had been in the restroom when they changed.\\n\\n122\\n00:08:35,600 --> 00:08:38,600\\nAnd as it was late, he suggested they take the shortcut under the pier.\\n\\n123\\n00:08:38,800 --> 00:08:42,400\\nBut the others preferred to take the more traveled way home.\\n\\n124\\n00:09:00,000 --> 00:09:03,400\\nWhen Bobby recognized the stranger as the man in the restroom, \\n\\n125\\n00:09:03,600 --> 00:09:07,400\\nthe shortcut under the pier didn\\'t seem like a good idea at all.\\n\\n126\\n00:09:15,000 --> 00:09:19,400\\nAfter all, it’s more fun to stay with your friends anyway.\\n\\n127\\n00:09:19,600 --> 00:09:23,400\\nBobby had made a wise decision. It may have saved his life.\\n\\n128\\n00:09:26,000 --> 00:09:28,400\\nThe decision is always yours...\\n\\n129\\n00:09:28,600 --> 00:09:31,400\\n...and your whole future may depend on making the right one.\\n\\n130\\n00:09:32,600 --> 00:09:34,400\\nSo, no matter where you meet a stranger,\\n\\n131\\n00:09:34,600 --> 00:09:37,400\\nbe careful if they are too friendly \\n\\n132\\n00:09:37,600 --> 00:09:39,400\\nif try to win your confidence too quickly \\n\\n133\\n00:09:39,600 --> 00:09:41,400\\nand if they become overly personal.\\n\\n134\\n00:09:41,600 --> 00:09:44,400\\nOne never knows when the homosexual is about.\\n\\n135\\n00:09:44,600 --> 00:09:47,400\\nHe may appear normal, and it may be too late \\n\\n136\\n00:09:47,600 --> 00:09:50,400\\nwhen you discover he is mentally ill.\\n\\n137\\n00:09:50,600 --> 00:09:53,400\\nSo keep with your group, and don\\'t go off alone with strangers\\n\\n138\\n00:09:53,600 --> 00:09:57,400\\nunless you have the permission of your parent or teacher.\\n\\n139\\n00:10:06,000 --> 00:10:09,400\\nThe End A Sid Davis Production',\n", + " 'bytes': 10989,\n", + " 'sha1': 'r441mbaktibbyy4s724ywzp3y6g2lgl',\n", + " 'parent_id': 189744613,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93179225,\n", + " 'timestamp': '2013-03-24T06:00:01Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 24837606,\n", + " 'title': 'Sextortionagent interview.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"Reword so it doesn't take up as much of the screen\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,400\\nSextorsión es lo que se conoce comúnmente como\\n\\n2\\n00:00:04,600 --> 00:00:07,400\\nindividuos que son victimizados\\n\\n3\\n00:00:07,600 --> 00:00:09,400\\nestán siendo extorsionados;\\n\\n4\\n00:00:09,600 --> 00:00:12,400\\nes lo que comúnmente se refiere como extorsión, pero\\n\\n5\\n00:00:012,600 --> 00:00:18,400 \\nla ganancia final para los extorsionadores es\\n\\n6\\n00:00:18,600 --> 00:00:23,400\\nalgo que está relacionado con alguna actividad sexual, se trate de\\n\\n7\\n00:00:023,600 --> 00:00:26,400\\nimágenes o vídeos, \\n\\n8\\n00:00:26,600 --> 00:00:29,400\\npero es generalmente algo que está asociado con el sexo.\\n\\n9\\n00:00:29,600 --> 00:00:33,400\\nEs decir, te estoy extorsionando por algo de carácter sexual.\\n\\n10\\n00:00:33,600 --> 00:00:37,400\\nLos niños tienden a ser menos cautelosos\\n\\n11\\n00:00:37,600 --> 00:00:40,400\\ny más confiados de las personas en internet.\\n\\n12\\n00:00:40,600 --> 00:00:44,400\\nAsocian a las personas en internet con otras personas muy similares a ellos,\\n\\n13\\n00:00:044,600 --> 00:00:47,400\\nde alrededor de la misma edad. Por lo tanto,\\n\\n14\\n00:00:47,600 --> 00:00:49,900\\nno son muy temerosos de peligros potenciales.\\n\\n15\\n00:00:50,100 --> 00:00:53,400\\nHay personas que entablan amistad con un niño.\\n\\n16\\n00:00:53,600 --> 00:00:56,400\\nCreen que están chateando con otros niños.\\n\\n17\\n00:00:56,600 --> 00:01:01,400\\nY a menudo, los niños son engañados para que envien imágenes de si mismos \\n\\n18\\n00:01:01,600 --> 00:01:05,400\\na otra persona que creen que tiene una edad similar.\\n\\n19\\n00:01:05,600 --> 00:01:09,400\\nY una vez que estos individuos tienen estas imágenes, pues, quieren más fotos. \\n\\n20\\n00:01:09,600 --> 00:01:14,400\\nLas usan en cumplimiento de sus actividades criminales.\\n\\n21\\n00:01:14,600 --> 00:01:17,400\\nUna vez que tienen estas imágenes, son capaces de decirle\\n\\n22\\n00:01:17,600 --> 00:01:20,400\\na la víctima o al niño,\\n\\n23\\n00:01:20,600 --> 00:01:24,400\\n“Quiero más,” o, “Quiero que hagan x, y, y z.\\n\\n24\\n00:01:24,600 --> 00:01:28,400\\ny si no haces lo que te piden te dicen que van a compartir las fotografías\\n\\n25\\n00:01:28,600 --> 00:01:32,400\\ncon tus compañeros de clase o con los miembros de tu familia.\"\\n\\n26\\n00:01:32,600 --> 00:01:36,400\\nY a menudo, los niños se avergüenzan,\\n\\n27\\n00:01:36,600 --> 00:01:42,400\\nespecialmente creyendo que contribuyeron de alguna manera a su victimización.\\n\\n28\\n00:01:42,600 --> 00:01:46,400\\nPor temor a meterse en problemas si reportan el delito,\\n\\n29\\n00:01:46,600 --> 00:01:51,400\\nlos jóvenes continúan enviando lo que los criminales solicitan.\\n\\n30\\n00:01:51,600 --> 00:01:55,400\\nLo que suele ocurrir es que la victimización nunca termina.\\n\\n31\\n00:01:55,600 --> 00:02:01,400\\nNos encontramos con situaciones donde los individuos responsables de esta actividad delictiva\\n\\n32\\n00:02:01,600 --> 00:02:07,400\\ncrean sitios web y envian hiperenlaces a sus amigos\\n\\n33\\n00:02:07,600 --> 00:02:11,400\\ny a miembros de sus familias, de nuevo mostrando un cierto nivel o\\n\\n34\\n00:02:11,600 --> 00:02:14,400\\nsentido de dominio sobre la víctima diciendo,\\n\\n35\\n00:02:14,600 --> 00:02:19,400\\n“Esto es lo que tengo sobre ti, y si no sigues haciendo lo que digo \\n\\n36\\n00:02:19,600 --> 00:02:22,400\\nestas son las cosas que puedo hacer.”\\n\\n37\\n00:02:22,600 --> 00:02:27,400\\nSon maestros en la explotación de los vulnerables.\\n\\n38\\n00:02:27,600 --> 00:02:30,400\\nEngañan a las personas para que abran un archivo adjunto.\\n\\n39\\n00:02:30,600 --> 00:02:34,400\\nUna de las formas que suelen utilizar es enviar una foto de una niña.\\n\\n40\\n00:02:34,600 --> 00:02:37,400\\nY ella llevaba sujetador y bragas. Y\\n\\n41\\n00:02:37,600 --> 00:02:40,400\\ntiene el pelo sobre la cara y no se puede ver como luce.\\n\\n42\\n00:02:40,600 --> 00:02:43,400\\nY dirán algo a lo largo de las líneas,\\n\\n43\\n00:02:43,600 --> 00:02:47,400\\n“Vi esta foto tuya en un sitio web. Si no eres tú, simplemente haz caso omiso.” \\n\\n44\\n00:02:47,600 --> 00:02:51,400\\nPero muchas de estas víctimas no se dan cuenta de que hay\\n\\n45\\n00:02:51,600 --> 00:02:55,400\\nun programa troyano incrustado dentro de la imagen. \\n\\n46\\n00:02:55,600 --> 00:02:58,400\\nTodos los niños mirarán la fotografía. Los niños son curiosos por naturaleza.\\n\\n47\\n00:02:58,600 --> 00:03:03,400\\nY ni siquiera se dan cuenta de que algo puede estar embebido en esa foto que miró.\\n\\n48\\n00:03:03,600 --> 00:03:07,400\\nCuando Connolly [un sextorsionador] y Dickerson [un otro sextorsionador] tenían acceso a su ordenador,\\n\\n49\\n00:03:07,600 --> 00:03:09,400\\nhacían un par de cosas.\\n\\n50\\n00:03:09,600 --> 00:03:12,400\\nUna gran cantidad de veces simplemente se sentaban y miraban.\\n\\n51\\n00:03:12,600 --> 00:03:15,400\\nY tenían la capacidad de activar la cámara web.\\n\\n52\\n00:03:15,600 --> 00:03:19,400\\nAsí que irían a ver a estas víctimas vestirse y desvestirse y\\n\\n53\\n00:03:19,600 --> 00:03:22,400\\nhacer distintas cosas. Y lo filmarían.\\n\\n54\\n00:03:22,600 --> 00:03:26,400\\nY a veces tomarían niños haciendo cosas o cambiándose de ropa.\\n\\n55\\n00:03:26,600 --> 00:03:31,400\\nA veces mostrarían estos videos o imágenes en cumplimiento de la explotación.\\n\\n56\\n00:03:31,600 --> 00:03:36,400\\nAdemás, una vez que los tenían, tenían acceso a listas de amigos, por lo que eran capaces de decir:\\n\\n57\\n00:03:36,600 --> 00:03:41,400\\n“Si no te tomas fotografías, o no te filmas, \\n\\n58\\n00:03:41,600 --> 00:03:45,400\\nveo que tienes una dirección de correo electrónico de tu abuela.\\n\\n59\\n00:03:45,600 --> 00:03:48,400\\nPues, voy a poner este pequeño show para tu abuela, y\\n\\n60\\n00:03:48,600 --> 00:03:51,400\\nestoy seguro de que, ya sabes, no estará muy orgullosa de tu forma de actuar.”\\n\\n61\\n00:03:51,600 --> 00:03:54,400\\nY muchos de estos chicos harían esto.\\n\\n62\\n00:03:54,600 --> 00:03:58,400\\nHoy en día hay tanto más malware\\n\\n63\\n00:03:58,600 --> 00:04:02,400\\nhay tanto más malware por ahí, y muchos más\\n\\n64\\n00:04:02,600 --> 00:04:05,400\\nprogramas que permiten a las personas acceder a su ordenador\\n\\n65\\n00:04:05,600 --> 00:04:10,400\\nque no se puede ser demasiado cauteloso nunca más. Una de las cosas [deben decirse] que,\\n\\n66\\n00:04:10,600 --> 00:04:13,400\\nsobre todo cuando se habla a los padres, es\\n\\n66\\n00:04:13,600 --> 00:04:16,400\\nque deben hablar con sus hijos.\\n\\n67\\n00:04:16,600 --> 00:04:20,400\\nDebe hablar con sus hijos acerca de estas cosas.\\n\\n68\\n00:04:20,600 --> 00:04:23,400\\nNo se puede ser demasiado cuidadoso. Realmente no se puede confiar…\\n\\n69\\n00:04:23,600 --> 00:04:25,400\\nDebe tener cuidado de con quién se están comunicando.\\n\\n70\\n00:04:25,600 --> 00:04:29,400\\nSiempre tener cuidado: número uno.\\n\\n71\\n00:04:29,600 --> 00:04:32,400\\nNúmero dos: los niños tienen que ser capaces de hablar con sus padres\\n\\n72\\n00:04:32,600 --> 00:04:35,400\\ny los padres tienen que ser capaces de hablar con sus niños.\\n\\n73\\n00:04:35,600 --> 00:04:38,400\\nSi no sabes de quien es, no lo abras.\\n\\n74\\n00:04:38,600 --> 00:04:43,400\\nTen cuidado con ciertos archivos adjuntos.\\n\\n75\\n00:04:43,600 --> 00:04:47,400\\nY, al final,\\n\\n76\\n00:04:47,600 --> 00:04:50,400\\nsi algo llegara a suceder, si fueras victimizado,\\n\\n77\\n00:04:50,600 --> 00:04:55,400\\ndile a alguien, díselo a tus padres. Dile a un adulto. Dile a un maestro.\\n\\n78\\n00:04:55,600 --> 00:05:00,400\\nIncluso si eres un adulto y has sido víctima, no temas llamar a la policía.\\n\\n79\\n00:05:00,600 --> 00:05:06,400\\nDickerson tenía—tenía aproximadamente 230 gigabytes de material.\\n\\n80\\n00:05:06,600 --> 00:05:09,400\\nEn ese momento era una cantidad enorme.\\n\\n81\\n00:05:09,600 --> 00:05:15,400\\nConnolly tenía casi un terabyte de material.\\n\\n82\\n00:05:15,600 --> 00:05:21,400\\nY la cosa es que muchos de esos niños estaban justo en alguna carpeta en alguna parte.\\n\\n83\\n00:05:21,600 --> 00:05:24,400\\nFue una carpeta en un computadora.\\n\\n84\\n00:05:24,600 --> 00:05:30,400\\nNingún nombre. Ningún nombre de usuario. Solo imágenes y vídeos en un carpeta. \\n\\n85\\n00:05:30,600 --> 00:05:34,400\\nY parte de lo que siento que es mi responsabilidad es\\n\\n86\\n00:05:34,600 --> 00:05:37,400\\nhablar con cualquiera que esté dispuesto a escuchar\\n\\n87\\n00:05:37,600 --> 00:05:41,400\\nporque sé que hay muchas más víctimas que se preguntan, \\n\\n88\\n00:05:41,600 --> 00:05:44,400\\n“Me pregunto qué pasó con aquellos tipos” o, “¿Tengo que tener miedo?”\\n\\n89\\n00:05:44,600 --> 00:05:47,400\\nSi conoces a alguien o si se encuentran en una situación similar,\\n\\n90\\n00:05:47,600 --> 00:05:51,400\\no si eres padre, habla con tus hijos acerca de esto.',\n", + " 'bytes': 8329,\n", + " 'sha1': '3b5j362vttwe8ar5zmkd4jk47cn6xvv',\n", + " 'parent_id': 92381224,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91373835,\n", + " 'timestamp': '2013-02-24T09:17:38Z',\n", + " 'user': {'id': 25480, 'text': 'Ainali'},\n", + " 'page': {'id': 24839386,\n", + " 'title': 'Editing basics - Uploading and adding images.webm.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,000 --> 00:00:06,500 Denna film går igenom grunderna för att ladda upp bilder til Wikimedia Commons 2 00:00:06,700 --> 00:00:09,200 och lägga ti...'\",\n", + " 'text': '1\\n00:00:01,000 --> 00:00:06,500\\nDenna film går igenom grunderna för att ladda upp bilder til Wikimedia Commons \\n\\n2\\n00:00:06,700 --> 00:00:09,200\\noch lägga till dem till Wikipedia-artiklar.\\n\\n3\\n00:00:09,400 --> 00:00:13,500\\nTa den här artikeln som exempel: secondary lens.\\n\\n4\\n00:00:13,700 --> 00:00:18,500\\nDet handlar om fotografi men har inga foton. Det ska vi fixa!\\n\\n5\\n00:00:18,700 --> 00:00:21,500\\nVi använder en bild som jag har skapat.\\n\\n6\\n00:00:21,700 --> 00:00:24,000\\nFör att lägga till den i artikeln behöver vi ladda upp den\\n\\n7\\n00:00:24,100 --> 00:00:26,200\\ntill Wikimedia Commons.\\n\\n8\\n00:00:26,500 --> 00:00:27,200\\nTiall att börja med:\\n\\n9\\n00:00:27,400 --> 00:00:31,000\\nWikimedia Commons är till för bilder som du har skapat själv,\\n\\n10\\n00:00:31,300 --> 00:00:36,000\\nsom har skapats av andra och uttryckligen har släptts under en Wikipedia-kompatibel licens,\\n\\n11\\n00:00:36,300 --> 00:00:40,500\\neller bilder i den kulturella allmänningen som inte någon har upphovsrätt till.\\n\\n12\\n00:00:40,800 --> 00:00:42,000\\nFör att ladda upp en fil\\n\\n11\\n00:00:42,300 --> 00:00:45,000\\ngå till commons.wikimedia.org.\\n\\n12\\n00:00:45,300 --> 00:00:48,000\\nSe till att logga in om du inte redan har gjort det.\\n\\n13\\n00:00:48,300 --> 00:00:50,300\\nDu använder samma konto som på Wikipedia.\\n\\n14\\n00:00:51,000 --> 00:00:53,600\\nFör att starta, gå till uppladdningsguiden\\n\\n15\\n00:00:53,800 --> 00:00:56,800\\ngenom att klicka på länken \"Ladda upp fil\" till vänster.\\n\\n16\\n00:00:57,000 --> 00:01:00,000\\nDen första sidan av guiden är en illustration med Puzzly!,\\n\\n17\\n00:01:00,300 --> 00:01:04,000\\nsom går igenom vilka bilder som är tillåtna på Commons och vilka som inte är det.\\n\\n18\\n00:01:04,300 --> 00:01:08,000\\nUnder illustrationen, klicka Nästa för att gå till uppladdningssidan.\\n\\n19\\n00:01:08,300 --> 00:01:14,000\\nKlicka på \"Välj mediafil att donera\" för att hitta en fil på din dator att ladda upp.\\n\\n20\\n00:01:14,300 --> 00:01:18,000\\nEfter att den har laddats upp är du redo att gå till licensväljaren.\\n\\n21\\n00:01:18,300 --> 00:01:22,000\\nOm det är ditt eget verk skriv in ditt namn eller användarnamn\\n\\n22\\n00:01:22,300 --> 00:01:25,600\\n--på det sätt som du vill bli omnämnd när folk använder bilden--\\n\\n23\\n00:01:25,800 --> 00:01:27,000\\noch tryck Nästa.\\n\\n24\\n00:01:27,300 --> 00:01:30,500\\nNu är det dags för titeln på bilden och en beskrivning.\\n\\n25\\n00:01:30,700 --> 00:01:31,500\\nFör titeln\\n\\n26\\n00:01:31,700 --> 00:01:34,500\\nvälj något konsict, beskrivande\\n\\n27\\n00:01:34,700 --> 00:01:37,700\\noch specifikt nog för att särskilja den från liknande bilder.\\n\\n28\\n00:01:37,900 --> 00:01:39,500\\nTill beskrivningen\\n\\n29\\n00:01:39,700 --> 00:01:42,000\\nlägg till så mycket detaljer du kan,\\n\\n30\\n00:01:42,200 --> 00:01:44,500\\nvar och hur bilden gjordes,\\n\\n31\\n00:01:44,700 --> 00:01:46,500\\nvilket ämne det berör,\\n\\n32\\n00:01:46,700 --> 00:01:49,000\\noch allt annat som en läsare kan tänkas vilja veta.\\n\\n33\\n00:01:49,300 --> 00:01:53,000\\nDu kan också lägga till bilden till en eller flera kategorier på Commons\\n\\n33\\n00:01:53,300 --> 00:01:58,000\\n-- testa genom att kika på liknande bilder för att se vilka kategorier som kan vara lämpliga.\\n\\n34\\n00:01:58,300 --> 00:02:00,500\\nOm du trycker nästa nu kommer uppladdningen att slutföras,\\n\\n35\\n00:02:00,700 --> 00:02:05,000\\noch verket blir tillgängligt för att använda på Wikipedia.\\n\\n36\\n00:02:05,300 --> 00:02:07,000\\nPå den sista sidan i guiden ser du \\n\\n37\\n00:02:07,300 --> 00:02:10,000\\nkoden för att lägga till verket i en Wikipedia-artikel,\\n\\n38\\n00:02:10,300 --> 00:02:13,000\\noch en URL för att komma till filsidan,\\n\\n39\\n00:02:13,300 --> 00:02:17,000\\ndär du kan redigera beskrivningen och ladda upp nyare versioner av filen.\\n\\n40\\n00:02:17,300 --> 00:02:19,500\\nDu kan kopiera wikikoden\\n\\n41\\n00:02:19,700 --> 00:02:21,000\\noch klistra in den i artikeln\\n\\n42\\n00:02:21,300 --> 00:02:23,500\\noch lägga till en bildtext.\\n\\n43\\n00:02:23,700 --> 00:02:27,000\\nDet grundläggande formatet för att lägga till en bild i en artikel är denna:\\n\\n44\\n00:02:27,300 --> 00:02:29,200\\nstarta med hakparenteser, sedan\\n\\n45\\n00:02:29,400 --> 00:02:31,200\\nnamnet på filen, sedan\\n\\n46\\n00:02:31,400 --> 00:02:36,200\\nett rakt streck och ordet thumb -- vilket ger den standardiserade miniatyrformatet --\\n\\n47\\n00:02:36,500 --> 00:02:37,500\\nsedan ett rakt streck till,\\n\\n48\\n00:02:37,700 --> 00:02:39,000\\noch sedan bildtexten\\n\\n47\\n00:02:39,200 --> 00:02:43,000\\nsom ska förklara kopplingen till artikeltexten,\\n\\n47\\n00:02:43,200 --> 00:02:46,000\\noch avsluta med två hakparenterser.\\n\\n48\\n00:02:46,200 --> 00:02:48,000\\nNär du har lagt till bilden,\\n\\n49\\n00:02:48,200 --> 00:02:50,000\\nskrive en redigeringsbeskrivning och spara sidan,\\n\\n50\\n00:02:50,200 --> 00:02:51,500\\noch det var allt!\\n\\n51\\n00:02:51,700 --> 00:02:54,000\\nVi har lagt till en ny bild på Wikipedia.\\n\\n52\\n00:02:54,500 --> 00:02:57,000\\nTack! Hejdå!',\n", + " 'bytes': 4827,\n", + " 'sha1': 'b877g0vt9100u6g7me5rzuo92p0qv7s',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91378203,\n", + " 'timestamp': '2013-02-24T10:33:44Z',\n", + " 'user': {'text': '142.136.146.226'},\n", + " 'page': {'id': 24840287,\n", + " 'title': 'Goodbye, Glaciers.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:04,000\\nThere are roughly 200,000 glaciers worldwide,\\n\\n2\\n00:00:04,200 --> 00:00:08,000\\neach represented by a small yellow dot on this globe.\\n\\n3\\n00:00:08,800 --> 00:00:11,999\\nHere, we take a closer look at glaciers in North and South America,\\n\\n4\\n00:00:12,000 --> 00:00:15,000\\nwhere scientists found roughly 25% of the world's melting\\n\\n5\\n00:00:16,000 --> 00:00:19,500\\ntook place between 2003, and 2010.\\n\\n6\\n00:00:22,000 --> 00:00:24,000\\nWe begin in South America,\\n\\n7\\n00:00:24,200 --> 00:00:29,000\\nwhere glaciers in Patagonia lost 23 billion tonnes of ice each year.\\n\\n8\\n00:00:32,400 --> 00:00:34,600\\nIn the northern hemisphere,\\n\\n9\\n00:00:34,800 --> 00:00:40,000\\nglaciers in southern Alaska showed annual losses that totalled 46 billion tonnes.\\n\\n10\\n00:00:43,800 --> 00:00:46,000\\nAnd over in the Canadian Arctic,\\n\\n11\\n00:00:46,200 --> 00:00:50,000\\n67 billion tonnes of ice melted each year.\",\n", + " 'bytes': 906,\n", + " 'sha1': 'slq5uchozbdz93xiqe2cnzwa1hrx5lt',\n", + " 'parent_id': 91378175,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 320274703,\n", + " 'timestamp': '2018-09-15T13:17:27Z',\n", + " 'user': {'text': '2001:DA8:201D:1101:59E4:55B5:38B9:AE16'},\n", + " 'page': {'id': 24854146,\n", + " 'title': 'Girls beware.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Slight edit to fix overlapping text between lines 21 and 22',\n", + " 'text': '1\\n00:00:02,000 --> 00:00:06,400\\nSid Davis Productions Presents\\n\\n2\\n00:00:06,600 --> 00:00:13,400\\n<i>Girls Beware</i>\\n\\n3\\n00:00:13,600 --> 00:00:17,400\\nProduced with the cooperation of the Inglewood Police Department\\n\\n4\\n00:00:17,600 --> 00:00:21,400\\nand the Inglewood Unified School District.\\n\\n5\\n00:00:28,000 --> 00:00:31,400\\n\"Norma Neufner Policewoman\" [Nametag]\\n\\n6\\n00:00:36,000 --> 00:00:37,800\\nI\\'m Norma Neufner, policewoman, \\n\\n7\\n00:00:37,800 --> 00:00:40,400\\nattached to the Juvenile Division.\\n\\n8\\n00:00:40,600 --> 00:00:42,400\\nI\\'m on a call from a very worried mother\\n\\n9\\n00:00:42,600 --> 00:00:44,400\\nwhose daughter is missing.\\n\\n10\\n00:00:44,600 --> 00:00:47,400\\nHer daughter\\'s name is Judy Miller.\\n\\n11\\n00:00:55,600 --> 00:00:57,400\\nJudy enjoys babysitting but there weren\\'t\\n\\n12\\n00:00:57,600 --> 00:00:59,400\\nenough jobs among the people she knew, so\\n\\n13\\n00:00:59,600 --> 00:01:02,400\\nshe decided to advertise at the supermarket for extra work.\\n\\n14\\n00:01:11,600 --> 00:01:13,400\\nLate the following afternoon the phone rang\\n\\n15\\n00:01:13,600 --> 00:01:15,400\\nand Judy was offered a job for that evening\\n\\n16\\n00:01:15,600 --> 00:01:17,400\\nThe man told her he and his wife were going out to dinner\\n\\n17\\n00:01:17,600 --> 00:01:20,400\\nand their regular sitter couldn\\'t pick her up in 15 minutes.\\n\\n18\\n00:01:32,600 --> 00:01:34,400\\nJudy\\'s mother hadn\\'t returned when it was time to go,\\n\\n19\\n00:01:34,600 --> 00:01:37,400\\nso she left a message by the telephone.\\n\\n20\\n00:01:50,600 --> 00:01:52,400\\nWhen her mother came home, she found Judy\\'s note\\n\\n21\\n00:01:52,600 --> 00:01:54,400\\nand called the number to let Judy know\\n\\n22\\n00:01:54,600 --> 00:01:57,400\\nthat she was home in case she wanted anything.\\n\\n23\\n00:02:06,600 --> 00:02:08,400\\nA woman answered but she didn\\'t know anything about Judy\\n\\n24\\n00:02:08,600 --> 00:02:11,400\\nand told Mrs. Miller that she must have the wrong number.\\n\\n25\\n00:02:29,600 --> 00:02:31,400\\nBy midnight Mrs. Miller was really worried.\\n\\n26\\n00:02:31,600 --> 00:02:34,400\\nShe phoned the police and was transferred to Juvenile.\\n\\n27\\n00:02:35,600 --> 00:02:37,400\\nI took the necessary information and assured her\\n\\n28\\n00:02:37,600 --> 00:02:39,400\\nwe\\'d do everything we could.\\n\\n29\\n00:02:39,600 --> 00:02:41,400\\nShe\\'d have to try to be patient and wait.\\n\\n30\\n00:02:41,600 --> 00:02:43,400\\nThe waiting list was almost a week.\\n\\n31\\n00:02:45,600 --> 00:02:47,400\\nThen the report came in.\\n\\n32\\n00:02:47,600 --> 00:02:49,400\\nJudy\\'s [dead] body had been found on a lonely desert road.\\n\\n33\\n00:02:53,600 --> 00:02:55,400\\nThe most difficult part of my job is\\n\\n34\\n00:02:55,600 --> 00:02:58,400\\nbringing bad news to parents.\\n\\n35\\n00:03:01,600 --> 00:03:03,400\\nYou can never find the right words to tell\\n\\n36\\n00:03:03,600 --> 00:03:05,400\\na mother [that] her daughter has been murdered.\\n\\n37\\n00:03:05,600 --> 00:03:07,400\\nJudy hadn\\'t done anything wrong.\\n\\n38\\n00:03:07,600 --> 00:03:09,400\\nShe\\'d only been careless...\\n\\n39\\n00:03:09,600 --> 00:03:11,400\\nCareless about whom she trusted.\\n\\n40\\n00:03:11,600 --> 00:03:13,400\\nIn itself there had been nothing wrong about\\n\\n41\\n00:03:13,600 --> 00:03:15,400\\navdertising for a job, but it lead her\\n\\n42\\n00:03:15,600 --> 00:03:17,400\\nto trusting a person she knew nothing about.\\n\\n43\\n00:03:17,600 --> 00:03:19,400\\nA mentally sick person who used her innocent ad[vertisement]\\n\\n44\\n00:03:19,600 --> 00:03:21,400\\nas an introduction to his act of violence.\\n\\n45\\n00:03:27,600 --> 00:03:29,400\\nBeing safe is often no more than \\n\\n46\\n00:03:29,600 --> 00:03:31,400\\napplying good judgment in everyday life.\\n\\n47\\n00:03:32,000 --> 00:03:34,400\\nOne night while Barbara was babysitting the doorbell rang\\n\\n48\\n00:03:35,600 --> 00:03:38,400\\nShe didn\\'t open the door but called and asked who it was\\n\\n49\\n00:03:39,600 --> 00:03:41,400\\nA stranger said his car had broken down\\n\\n50\\n00:03:41,600 --> 00:03:43,400\\nand could\\'a(?) use the phone\\n\\n51\\n00:03:43,600 --> 00:03:45,400\\nBarbara was very polite but she told him she was babysitting\\n\\n52\\n00:03:45,600 --> 00:03:47,400\\nand was expecting a call from her parents.\\n\\n53\\n00:03:47,600 --> 00:03:50,400\\nHowever she was sure the next door neighbors were home\\n\\n54\\n00:03:50,600 --> 00:03:52,400\\nand perhaps he could use their phone.\\n\\n55\\n00:03:52,600 --> 00:03:54,400\\nThe stranger thanked her and left.\\n\\n56\\n00:03:55,600 --> 00:03:57,400\\nNow Barbara had been polite and helpful \\n\\n57\\n00:03:57,600 --> 00:03:59,400\\nbut she hadn\\'t taken any chances.\\n\\n58\\n00:03:59,600 --> 00:04:01,400\\nAnd when her father called, she was safe.\\n\\n59\\n00:04:19,600 --> 00:04:22,400\\nFriday night was movie time for Sally and Elizabeth.\\n\\n60\\n00:04:22,600 --> 00:04:25,400\\nTheir parents alternated weeks taking them and picking them up.\\n\\n61\\n00:04:27,600 --> 00:04:29,400\\nFriendships are easily made in a crowded theater\\n\\n62\\n00:04:29,600 --> 00:04:31,400\\nand when two older boys struck up a conversation\\n\\n63\\n00:04:31,600 --> 00:04:34,400\\nand moved next to them, they were secretly pleased.\\n\\n64\\n00:04:45,600 --> 00:04:47,400\\nAt intermission Sally found it flattering to have her friend\\n\\n65\\n00:04:47,600 --> 00:04:49,400\\nsee her in the company of older boys.\\n\\n66\\n00:04:49,600 --> 00:04:51,400\\nAnd when they asked if they could take the girls home\\n\\n67\\n00:04:51,600 --> 00:04:53,400\\nShe was all for it.\\n\\n66\\n00:04:53,600 --> 00:04:55,400\\nShe asked Elizabeth to call her folks and tell them\\n\\n68\\n00:04:55,600 --> 00:04:57,400\\nthat they could ride with their friends\\' parents.\\n\\n69\\n00:04:57,600 --> 00:05:00,400\\nElizabeth was tempted but decided it wouldn\\'t be right.\\n\\n70\\n00:05:01,600 --> 00:05:03,400\\nSally was disappointed.\\n\\n71\\n00:05:15,600 --> 00:05:17,400\\nWhen the show was over and they were leaving,\\n\\n72\\n00:05:17,600 --> 00:05:19,400\\nthe boys suggested that if Elizabeth couldn\\'t go with them,\\n\\n73\\n00:05:19,600 --> 00:05:21,400\\nwhy didn\\'t Sally come?\\n\\n74\\n00:05:21,600 --> 00:05:23,400\\nSally thought it was a great idea\\n\\n75\\n00:05:23,600 --> 00:05:25,400\\nand asked Elizabeth to tell her folks that\\n\\n76\\n00:05:25,600 --> 00:05:27,400\\nher parents had picked her up.\\n\\n77\\n00:05:27,600 --> 00:05:30,400\\nElizabeth didn\\'t like the idea but Sally insisted.\\n\\n80\\n00:05:33,600 --> 00:05:36,400\\nSo, Elizabeth left alone. \\n\\n81\\n00:05:40,600 --> 00:05:42,400\\nNot any of the boys she went with had a car,\\n\\n82\\n00:05:42,600 --> 00:05:45,400\\nso it was fun riding with the older fellows.\\n\\n83\\n00:05:48,600 --> 00:05:50,400\\nBut when they drove right past her house \\n\\n84\\n00:05:50,600 --> 00:05:53,400\\nshe became concerned.\\n\\n83\\n00:05:58,600 --> 00:06:01,400\\nWhen they arrived at Lookout Peak she was frightened.\\n\\n84\\n00:06:01,600 --> 00:06:03,400\\nShe tried to convince herself that there was nothing to worry about,\\n\\n85\\n00:06:03,600 --> 00:06:05,400\\nbut when they parked off the road she knew\\n\\n86\\n00:06:05,600 --> 00:06:08,400\\nshe had gotten herself into something she couldn\\'t handle.\\n\\n87\\n00:06:11,600 --> 00:06:14,400\\nAt midnight her parents became alarmed and called the Nelsons.\\n\\n88\\n00:06:14,600 --> 00:06:17,400\\nYes, Elizabeth was home. Hadn\\'t they picked up Sally?\\n\\n89\\n00:06:17,600 --> 00:06:19,400\\nNo. Over an hour ago?\\n\\n90\\n00:06:19,600 --> 00:06:21,400\\nOf course she can talk to Elizabeth.\\n\\n91\\n00:06:21,600 --> 00:06:24,400\\nBetween guilty tears Elizabeth told what had happened.\\n\\n92\\n00:06:27,600 --> 00:06:31,400\\nSally had been found dazedly walking down the road from Lookout Peak.\\n\\n93\\n00:06:31,600 --> 00:06:34,400\\nIt was a night they\\'ll long remember.\\n\\n94\\n00:06:34,600 --> 00:06:37,400\\nIn fact, Sally may never be able to forget it. [She had been raped]\\n\\n95\\n00:06:38,600 --> 00:06:40,400\\nOften seemingly innocent places can turn out to be \\n\\n96\\n00:06:40,600 --> 00:06:43,400\\njust where wrong associations are made.\\n\\n97\\n00:06:43,600 --> 00:06:46,400\\nMary met Robert at just such a place.\\n\\n98\\n00:06:46,600 --> 00:06:48,400\\nRobert frequented the malt shop in his spare time\\n\\n99\\n00:06:48,600 --> 00:06:51,400\\nwhich was considerable as he finished high school and didn\\'t work.\\n\\n100\\n00:06:52,600 --> 00:06:54,400\\nHere he sought out the company of younger teenagers\\n\\n101\\n00:06:54,600 --> 00:06:57,400\\nbecause he wasn\\'t accepted by those of his own age group.\\n\\n102\\n00:06:58,600 --> 00:07:00,400\\nMary and her girlfriend could always be found\\n\\n103\\n00:07:00,600 --> 00:07:03,400\\nat the malt shop after school.\\n\\n104\\n00:07:08,600 --> 00:07:10,400\\nMary had seen Robert before\\n\\n105\\n00:07:10,600 --> 00:07:12,400\\nand thought he was very good-looking.\\n\\n106\\n00:07:12,600 --> 00:07:14,400\\nSo she was naturally flattered when he\\n\\n107\\n00:07:14,600 --> 00:07:17,400\\nsingled her out and struck up a friendly conversation.\\n\\n108\\n00:07:17,600 --> 00:07:19,400\\nHe was fun to talk to and they discussed\\n\\n109\\n00:07:19,600 --> 00:07:21,400\\neverything from cars to movie stars.\\n\\n110\\n00:07:21,600 --> 00:07:23,400\\nWhen he offered her a ride home\\n\\n111\\n00:07:23,600 --> 00:07:25,400\\nshe was only too happy to accept.\\n\\n112\\n00:07:54,600 --> 00:07:56,400\\nThey drove around for awhile and talked.\\n\\n113\\n00:07:56,600 --> 00:07:58,400\\nMary was a good listener and Bob [nickname of Robert] enjoyed \\n\\n114\\n00:07:58,600 --> 00:08:00,400\\nnothing more than talking about himself.\\n\\n115\\n00:08:04,600 --> 00:08:06,400\\nMary knew her mother would be upset if she \\n\\n116\\n00:08:06,600 --> 00:08:08,400\\ncame home with an older boy, so Bob\\n\\n117\\n00:08:08,600 --> 00:08:10,400\\ndropped her at the corner.\\n\\n118\\n00:08:20,600 --> 00:08:23,400\\nAfter that they saw a good deal of each other.\\n\\n119\\n00:08:23,600 --> 00:08:25,400\\nAt first Bob was willing to see her at the malt shop.\\n\\n120\\n00:08:25,600 --> 00:08:28,400\\nBut as time went on he became jealous of her friends.\\n\\n121\\n00:08:28,600 --> 00:08:31,400\\nand insisted on their spending more time alone.\\n\\n122\\n00:08:52,600 --> 00:08:54,400\\nThey began to go to secluded places\\n\\n123\\n00:08:54,600 --> 00:08:56,400\\nand their relationship became more intimate.\\n\\n124\\n00:08:56,600 --> 00:08:58,400\\nMary knew things were getting out of hand \\n\\n125\\n00:08:58,600 --> 00:09:00,400\\nbecause Bob became more and more demanding.\\n\\n126\\n00:09:00,600 --> 00:09:02,400\\nBut not wishing to lose his friendship\\n\\n127\\n00:09:02,600 --> 00:09:04,400\\nor the prestige she enjoyed from her friends\\n\\n128\\n00:09:04,600 --> 00:09:06,400\\nfor having an older boyfriend,\\n\\n129\\n00:09:06,600 --> 00:09:08,400\\nshe complied with his desire.\\n\\n130\\n00:09:14,600 --> 00:09:17,400\\nThen Mary found she was in trouble [euphemism for pregnant used at the time] and had to tell her parents.\\n\\n131\\n00:09:17,600 --> 00:09:19,400\\nBut now it was too late for advice and\\n\\n132\\n00:09:19,600 --> 00:09:21,400\\nMary had to be taken out of school and\\n\\n133\\n00:09:21,600 --> 00:09:24,400\\nplaced in the guidance of juvenile authorities.\\n\\n134\\n00:09:24,600 --> 00:09:27,400\\nUnfortunately, Mary\\'s story is not an unusual one.\\n\\n135\\n00:09:27,600 --> 00:09:30,400\\nToo many young girls are flattered by the attention of older boys\\n\\n136\\n00:09:30,600 --> 00:09:33,400\\nand don\\'t realize until too late that these boys\\n\\n137\\n00:09:33,600 --> 00:09:36,400\\nwho cannot compete in their own age group,\\n\\n138\\n00:09:36,600 --> 00:09:38,400\\nare often not well-adjusted and demand too much\\n\\n139\\n00:09:38,600 --> 00:09:41,400\\nin a relationship with a younger girl.\\n\\n140\\n00:09:41,600 --> 00:09:43,400\\nYou see, it\\'s often the things that are done without\\n\\n141\\n00:09:43,600 --> 00:09:46,400\\nthinking that get young people into trouble.\\n\\n142\\n00:09:46,600 --> 00:09:48,400\\nTrying to move too quickly into a world of grownups\\n\\n143\\n00:09:48,600 --> 00:09:50,400\\nwith a young person\\'s fate often causes heartache\\n\\n144\\n00:09:50,600 --> 00:09:53,400\\nand disaster.\\n\\n145\\n00:09:56,600 --> 00:10:00,400\\nThe End A Sid Davis Production',\n", + " 'bytes': 11501,\n", + " 'sha1': 'b9m9oqzt904e19tc273cf89cv7pz5ls',\n", + " 'parent_id': 127462411,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 588225390,\n", + " 'timestamp': '2021-09-02T23:28:10Z',\n", + " 'user': {'id': 7458080, 'text': 'SilSinn9821'},\n", + " 'page': {'id': 24856066,\n", + " 'title': 'StrangeOnesFullRez.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'adding words that were missed by the original ear transcriber',\n", + " 'text': '1\\n00:00:01,000 --> 00:00:04,400\\nSid Davis Productions Presents\\n\\n2\\n00:00:04,600 --> 00:00:6,400\\n<i>The Strange Ones</i>\\n\\n3\\n00:00:8,600 --> 00:00:10,400\\nThis film was produced with the cooperation \\n\\n4\\n00:00:10,600 --> 00:00:13,400\\nof the Culver City Police Department.\\n\\n5\\n00:00:29,600 --> 00:00:32,400\\nThis is Karen. She is eight years old\\n\\n6\\n00:00:32,600 --> 00:00:34,400\\nand she is on her way home from school\\n\\n7\\n00:00:36,600 --> 00:00:38,400\\nEvery day she passes this store \\n\\n8\\n00:00:38,600 --> 00:00:40,400\\nwith a wonderful candy counter\\n\\n9\\n00:00:40,600 --> 00:00:42,400\\nand every once in a while her mother\\n\\n10\\n00:00:42,600 --> 00:00:44,400\\ngives her a dime [$0.10] for a treat. \\n\\n11\\n00:00:46,600 --> 00:00:48,400\\nAnd Karen always stops at the store even\\n\\n12\\n00:00:48,600 --> 00:00:50,400\\nif it\\'s only to window shop.\\n\\n13\\n00:00:52,600 --> 00:00:54,400\\nOf course Karen\\'s parents have told her\\n\\n14\\n00:00:54,600 --> 00:00:57,400\\nnever to take money or candy from a stranger\\n\\n15\\n00:00:57,600 --> 00:00:59,400\\nor let him touch her.\\n\\n16\\n00:00:59,600 --> 00:01:01,400\\nBut right now it looks as though she\\n\\n17\\n00:01:01,600 --> 00:01:04,400\\nhas forgotten these basic rules.\\n\\n18\\n00:01:04,600 --> 00:01:07,400\\nBut Karen\\'s friend the salesgirl hasn\\'t forgotten, \\n\\n19\\n00:01:07,600 --> 00:01:09,400\\nand wonders who the stranger is \\n\\n20\\n00:01:09,600 --> 00:01:11,400\\nthat is buying candy for her,\\n\\n21\\n00:01:11,600 --> 00:01:14,400\\nand why.\\n\\n22\\n00:01:14,600 --> 00:01:16,400\\nKaren, having already forgotten\\n\\n23\\n00:01:16,600 --> 00:01:18,400\\none of her parent\\'s warnings\\n\\n24\\n00:01:18,600 --> 00:01:21,400\\nfinds it easy to forget another:\\n\\n25\\n00:01:21,600 --> 00:01:23,400\\nNever to go anywhere with a stranger,\\n\\n26\\n00:01:23,600 --> 00:01:25,400\\nor accept rides with people you\\n\\n27\\n00:01:25,600 --> 00:01:27,400\\ndon\\'t know, no matter\\n\\n28\\n00:01:27,600 --> 00:01:29,400\\nwhat they tell you.\\n\\n29\\n00:01:31,600 --> 00:01:34,400\\nThis time, Karen is lucky.\\n\\n30\\n00:01:33,600 --> 00:01:35,400\\nHer friend does what you should do\\n\\n31\\n00:01:35,600 --> 00:01:37,400\\nin a situation like this.\\n\\n32\\n00:01:37,600 --> 00:01:39,400\\nShe takes down the license number\\n\\n33\\n00:01:39,600 --> 00:01:41,400\\nof the car and the description of\\n\\n34\\n00:01:41,600 --> 00:01:44,400\\nthe stranger, and calls the police.\\n\\n35\\n00:01:52,600 --> 00:01:55,400\\nHer information is sent out by police radio...\\n\\n36\\n00:02:02,600 --> 00:02:05,400\\n...to officers all over town....\\n\\n37\\n00:02:11,600 --> 00:02:13,400\\n...so that they can be on the lookout\\n\\n38\\n00:02:13,600 --> 00:02:16,400\\nfor the car with Karen and the stranger.\\n\\n39\\n00:02:34,600 --> 00:02:37,400\\nAt home, Karen\\'s mother is beginning to get worried. \\n\\n40\\n00:02:37,600 --> 00:02:39,400\\nShe is waiting and waiting,\\n\\n41\\n00:02:41,600 --> 00:02:43,400\\nbut no Karen.\\n\\n44\\n00:02:44,600 --> 00:02:46,400\\nShe knows just how long it takes Karen\\n\\n45\\n00:02:46,600 --> 00:02:48,400\\nto get home from school,\\n\\n46\\n00:02:48,600 --> 00:02:51,400\\nbut she is already half an hour late.\\n\\n47\\n00:02:56,600 --> 00:02:59,400\\n[Culver City Police]\\n\\n48\\n00:03:48,600 --> 00:03:50,400\\nSo because Karen\\'s friend remembered\\n\\n49\\n00:03:50,600 --> 00:03:53,400\\nto take down the car\\'s license number,\\n\\n40\\n00:03:53,600 --> 00:03:56,400\\neverything turned out alright.\\n\\n41\\n00:03:56,600 --> 00:03:58,400\\nAnd Karen, of course, knew\\n\\n42\\n00:03:58,600 --> 00:04:00,400\\nher telephone number, so that\\n\\n43\\n00:04:00,600 --> 00:04:02,400\\nthe policeman could call her mother right away\\n\\n44\\n00:04:02,600 --> 00:04:04,400\\nto come and get her.\\n\\n45\\n00:04:06,600 --> 00:04:08,400\\nMy name is Mrs. Perkins, \\n\\n46\\n00:04:08,600 --> 00:04:11,400\\nand I am a policewoman.\\n\\n47\\n00:04:11,600 --> 00:04:13,400\\nWe had a while to wait\\n\\n48\\n00:04:13,600 --> 00:04:15,400\\nfor Karen\\'s mother to come and get her,\\n\\n49\\n00:04:15,600 --> 00:04:17,400\\nso this was a good chance for me to\\n\\n50\\n00:04:17,600 --> 00:04:19,400\\ntell Karen of some of the dangers\\n\\n51\\n00:04:19,600 --> 00:04:21,400\\nchildren her age must\\n\\n52\\n00:04:21,600 --> 00:04:23,400\\nbe on the lookout for.\\n\\n53\\n00:04:25,600 --> 00:04:27,400\\nMost people in the world are good and \\n\\n54\\n00:04:27,600 --> 00:04:29,400\\nnice, but unfortunately\\n\\n55\\n00:04:29,600 --> 00:04:32,400\\nthere are some strange ones,\\n\\n56\\n00:04:32,600 --> 00:04:35,400\\nand these strange ones are sick.\\n\\n57\\n00:04:35,600 --> 00:04:37,400\\nNot sick with a cold or measles\\n\\n58\\n00:04:37,600 --> 00:04:39,400\\nor anything like that,\\n\\n59\\n00:04:39,600 --> 00:04:41,400\\nbut sick in the mind.\\n\\n60\\n00:04:41,600 --> 00:04:44,400\\nWe call them \"mentally ill.\"\\n\\n61\\n00:04:48,600 --> 00:04:50,400\\nNow many boys and girls enjoy playing\\n\\n62\\n00:04:51,600 --> 00:04:52,400\\nin areas like this.\\n\\n63\\n00:04:52,600 --> 00:04:54,400\\nThey explore interesting places \\n\\n63\\n00:04:54,600 --> 00:04:56,400\\nand make up games to play by themselves.\\n\\n64\\n00:05:02,600 --> 00:05:05,400\\nBut you never know when there might be a strange one around.\\n\\n65\\n00:05:12,600 --> 00:05:14,400\\nSometimes we become so involved\\n\\n66\\n00:05:14,600 --> 00:05:16,400\\nin what we are doing that we can\\'t\\n\\n67\\n00:05:16,600 --> 00:05:18,400\\nsee the danger.\\n\\n68\\n00:05:20,600 --> 00:05:22,400\\nAnd even if this little boy had\\n\\n69\\n00:05:22,600 --> 00:05:24,400\\nseen the man, how could he know\\n\\n70\\n00:05:24,600 --> 00:05:26,400\\nthat he was a strange one?\\n\\n71\\n00:05:26,600 --> 00:05:28,400\\nThere\\'s no way to tell. The strange ones \\n\\n72\\n00:05:28,600 --> 00:05:31,400\\nlook just like everyone else.\\n\\n73\\n00:05:37,600 --> 00:05:39,400\\nIt is wise to avoid playing in deserted\\n\\n74\\n00:05:39,600 --> 00:05:41,400\\nareas like this, especially\\n\\n75\\n00:05:41,600 --> 00:05:44,400\\nwhen you are alone.\\n\\n76\\n00:05:46,600 --> 00:05:48,400\\nI explained to Karen that you should\\n\\n77\\n00:05:48,600 --> 00:05:50,400\\nnot play in any area where there are no other\\n\\n78\\n00:05:50,600 --> 00:05:52,400\\npeople around, and you must also\\n\\n79\\n00:05:52,600 --> 00:05:55,400\\nbe on your guard even when you are in Downtown,\\n\\n80\\n00:05:55,600 --> 00:05:57,400\\nlike this little girl.\\n\\n81\\n00:05:57,600 --> 00:05:59,400\\nShe\\'s running an errand for her mother.\\n\\n82\\n00:06:02,600 --> 00:06:04,400\\nWhen a stranger stops her and asks directions\\n\\n83\\n00:06:04,600 --> 00:06:06,400\\nshe politely and courteously\\n\\n84\\n00:06:06,600 --> 00:06:08,400\\ngives him the information.\\n\\n85\\n00:06:14,600 --> 00:06:16,400\\nBut when he asks her to go with him,\\n\\n86\\n00:06:16,600 --> 00:06:18,400\\nof course she says no, politely\\n\\n87\\n00:06:18,600 --> 00:06:21,400\\nexcuses herself, and goes on her way.\\n\\n88\\n00:06:23,600 --> 00:06:25,400\\nNever go with strangers when they\\n\\n89\\n00:06:25,600 --> 00:06:27,400\\nask for directions, and if there\\n\\n90\\n00:06:27,600 --> 00:06:30,400\\nis any trouble, just call out for help.\\n\\n91\\n00:06:31,600 --> 00:06:33,400\\nAnd if you see any of your friends about\\n\\n92\\n00:06:33,600 --> 00:06:36,400\\nto make a mistake, you can help.\\n\\n93\\n00:06:44,600 --> 00:06:46,400\\nIt\\'s always a good idea when you go\\n\\n94\\n00:06:46,600 --> 00:06:48,400\\nto the park, or the movies,\\n\\n95\\n00:06:48,600 --> 00:06:50,400\\nor even to the store, to take\\n\\n96\\n00:06:50,600 --> 00:06:53,400\\nalong a friend.\\n\\n97\\n00:06:53,600 --> 00:06:55,400\\nAnd when you are at the park, play in\\n\\n98\\n00:06:55,600 --> 00:06:58,400\\nthe areas that are set aside as playgrounds.\\n\\n99\\n00:07:00,600 --> 00:07:02,400\\nDo not hang around the restrooms.\\n\\n100\\n00:07:02,600 --> 00:07:04,400\\nAnd if you see any of your playmates\\n\\n101\\n00:07:04,600 --> 00:07:06,400\\nabout to get into trouble,\\n\\n102\\n00:07:06,600 --> 00:07:08,400\\nget help from a police officer\\n\\n103\\n00:07:08,600 --> 00:07:10,400\\nor someone you know.\\n\\n104\\n00:07:24,600 --> 00:07:26,400\\nJust as these children did.\\n\\n105\\n00:07:26,600 --> 00:07:29,400\\nThey ran and found the little girl\\'s mother\\n\\n106\\n00:07:40,600 --> 00:07:43,400\\nNot only [do you] have to look out for yourself\\n\\n107\\n00:07:43,600 --> 00:07:45,400\\nbut for the little children who don\\'t know any better,\\n\\n108\\n00:07:45,600 --> 00:07:47,400\\nwho can\\'t understand that \\n\\n109\\n00:07:47,600 --> 00:07:50,400\\nsome people are sick in the mind.\\n\\n110\\n00:07:50,600 --> 00:07:52,400\\nThere are so many ways you can get into\\n\\n111\\n00:07:52,600 --> 00:07:54,400\\ntrouble with the strange ones,\\n\\n112\\n00:07:54,600 --> 00:07:57,400\\nand one of the quickest is by hitchhiking.\\n\\n113\\n00:07:59,600 --> 00:08:01,400\\nIt is a wise young man who\\n\\n114\\n00:08:01,600 --> 00:08:04,400\\nknows not to hitch rides with strangers.\\n\\n115\\n00:08:04,600 --> 00:08:06,400\\nThere are so many things that can happen, other\\n\\n116\\n00:08:06,600 --> 00:08:09,400\\nthan your getting a quick ride home.\\n\\n117\\n00:08:09,600 --> 00:08:12,400\\nThe man may be drunk and get into an accident,\\n\\n118\\n00:08:12,600 --> 00:08:16,400\\nor he may be just a bad driver,\\n\\n119\\n00:08:16,600 --> 00:08:18,400\\nor, a strange one with no intention\\n\\n120\\n00:08:18,600 --> 00:08:20,400\\nof taking you home.\\n\\n121\\n00:08:20,600 --> 00:08:22,400\\nIf you ever see any of your friends\\n\\n122\\n00:08:22,600 --> 00:08:24,400\\nhitchhiking, and cannot stop them,\\n\\n123\\n00:08:24,600 --> 00:08:27,400\\nget the license number of the car.\\n\\n124\\n00:08:27,600 --> 00:08:30,400\\nAnd remember not to take shortcuts,\\n\\n125\\n00:08:30,600 --> 00:08:34,400\\nespecially through alleys or empty side streets.\\n\\n126\\n00:08:52,600 --> 00:08:54,400\\nYou never know when a strange one might\\n\\n127\\n00:08:54,600 --> 00:08:56,400\\napproach you, and it may never happen,\\n\\n128\\n00:08:52,600 --> 00:08:59,400\\nbut it is far better to be on the safe side.\\n\\n129\\n00:08:59,600 --> 00:09:02,400\\nBe on your guard, and know what to look out for,\\n\\n130\\n00:09:09,600 --> 00:09:12,400\\nlike this little girl in the movie theater.\\n\\n131\\n00:09:20,600 --> 00:09:23,400\\nShe remembers what her parents told her:\\n\\n132\\n00:09:24,600 --> 00:09:27,400\\nNever let a stranger touch you or put his hands on you.\\n\\n133\\n00:09:34,600 --> 00:09:36,400\\nShe told the usher in the theater,\\n\\n134\\n00:09:36,600 --> 00:09:39,400\\nand this man won\\'t bother anyone again.\\n\\n135\\n00:09:39,600 --> 00:09:41,400\\nI think Karen can see now\\n\\n136\\n00:09:41,600 --> 00:09:43,400\\nhow foolish she was, and if it\\n\\n137\\n00:09:43,600 --> 00:09:45,400\\nhadn\\'t been for her friend\\n\\n138\\n00:09:45,600 --> 00:09:47,400\\nremembering the right thing to do, how\\n\\n139\\n00:09:47,600 --> 00:09:50,400\\nmuch trouble she might have been in.\\n\\n141\\n00:09:52,600 --> 00:09:54,400\\nKaren will remember never to\\n\\n142\\n00:09:54,600 --> 00:09:56,400\\naccept gifts or rides from strangers,\\n\\n143\\n00:09:56,600 --> 00:09:58,400\\nand now she knows to stay clear of\\n\\n144\\n00:09:58,600 --> 00:10:00,400\\ndeserted places.\\n\\n145\\n00:10:00,600 --> 00:10:02,400\\nWell, Karen\\'s adventure has made her\\n\\n146\\n00:10:02,600 --> 00:10:04,400\\na wiser little girl, \\n\\n147\\n00:10:04,600 --> 00:10:07,400\\nand I hope you have become wiser too.\\n\\n148\\n00:10:10,600 --> 00:10:13,400\\nThe End A Sid Davis Production',\n", + " 'bytes': 10646,\n", + " 'sha1': 'ij5c1l4el3j7b1a7pta14x82rtis30p',\n", + " 'parent_id': 189753114,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 189655535,\n", + " 'timestamp': '2016-03-07T07:01:22Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 24864946,\n", + " 'title': 'Dangerousstranger.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'How on earth did I transcribe it like this?',\n", + " 'text': '1\\n00:00:00,400 --> 00:00:02,400\\n\\'\\'The Dangerous Stranger\\'\\'\\n\\n2\\n00:00:02,600 --> 00:00:4,400\\nWritten and photographed by Orville H. Hampton \\n\\n3\\n00:00:4,600 --> 00:00:6,400\\nAssociate Producer Cinesound Recording\\n\\n4\\n00:00:6,600 --> 00:00:8,400\\nProduced and Directed by Sid Davis\\n\\n5\\n00:00:8,600 --> 00:00:10,400\\nThis picture was produced with the counsel and assistance\\n\\n6\\n00:00:10,600 --> 00:00:12,400\\nof the Police Department, City of Los Angeles.\\n\\n7\\n00:00:12,600 --> 00:00:14,400\\nActors appear as a public service; we acknowledge \\n\\n8\\n00:00:14,600 --> 00:00:16,400\\nthe cooperation of the Ben Bard Drama Studio, Hollywood.\\n\\n9\\n00:00:20,600 --> 00:00:22,400\\nKids,\\n\\n10\\n00:00:22,600 --> 00:00:24,400\\nI\\'ve got a couple of pretty important things I\\'m gonna tell you.\\n\\n11\\n00:00:24,600 --> 00:00:26,400\\nI want you to love them.\\n\\n12\\n00:00:26,600 --> 00:00:28,400\\nAnd I sure wouldn\\'t want them to get into any trouble.\\n\\n13\\n00:00:28,600 --> 00:00:31,400\\n[...]more than your parents would want anything to happen[...]\\n\\n14\\n00:00:31,600 --> 00:00:33,400\\nWhat I\\'d like to talk about\\n\\n14\\n00:00:33,600 --> 00:00:35,400\\nGetting into trouble\\n\\n15\\n00:00:37,600 --> 00:00:39,400\\nYou\\'ve heard your mothers and fathers talking or\\n\\n16\\n00:00:39,600 --> 00:00:42,400\\nseeing the newspapers about things that happen\\n\\n17\\n00:00:42,600 --> 00:00:45,400\\nto other little boys and girls, haven\\'t you?\\n\\n18\\n00:00:46,600 --> 00:00:49,400\\nTheir mothers and fathers never saw them again\\n\\n19\\n00:00:49,600 --> 00:00:52,400\\nI know you wouldn\\'t wanna do that to your folks.\\n\\n20\\n00:00:52,600 --> 00:00:55,400\\nBut sometimes boys and girls forget what\\n\\n21\\n00:00:55,600 --> 00:00:57,400\\ntheir parents and teachers tell them\\n\\n22\\n00:00:57,600 --> 00:00:59,400\\nabout strangers.\\n\\n23\\n00:00:59,600 --> 00:01:02,400\\nAnd there\\'s always the wise guy\\n\\n24\\n00:01:02,600 --> 00:01:05,400\\nwho thinks he knows it all.\\n\\n25\\n00:01:11,600 --> 00:01:13,400\\nRemember the kids who get in trouble with strangers\\n\\n26\\n00:01:13,600 --> 00:01:15,400\\nare those who forget what they\\'ve been told,\\n\\n27\\n00:01:15,600 --> 00:01:17,400\\nand the ones who think they know more than\\n\\n28\\n00:01:17,600 --> 00:01:19,400\\ntheir parents and teachers.\\n\\n29\\n00:01:19,600 --> 00:01:21,400\\nI heard about the same things.\\n\\n30\\n00:01:21,600 --> 00:01:23,400\\nWhy don\\'t we all just\\n\\n31\\n00:01:23,600 --> 00:01:25,400\\nsee how some of the other boys and girls\\n\\n32\\n00:01:25,600 --> 00:01:27,400\\ngot mixed up with strangers.\\n\\n33\\n00:01:27,600 --> 00:01:30,400\\nso we can make sure it doesn\\'t happen to [us/you?]\\n\\n34\\n00:01:32,600 --> 00:01:34,400\\nRemember the story about the little girl in the paper?\\n\\n35\\n00:01:36,600 --> 00:01:38,400\\nHello, little lady!\\n\\n36\\n00:01:38,600 --> 00:01:40,400\\nAll alone, aren\\'t ya[you]?\\n\\n37\\n00:01:40,600 --> 00:01:42,400\\nWant\\'cha[Want a] ride?\\n\\n38\\n00:01:42,600 --> 00:01:45,400\\nI\\'ll buy you some ice cream.\\n\\n39\\n00:01:50,600 --> 00:01:52,400\\n\"Fear Cal.[California] Girl, Victim of Kidnap\" [Newspaper headline]\\n\\n40\\n00:01:52,600 --> 00:01:54,400\\nWell, nobody ever saw her again.\\n\\n41\\n00:01:54,600 --> 00:01:57,400\\nIt was in the headlines and on the radio.\\n\\n42\\n00:01:57,600 --> 00:01:59,400\\nYou probably heard it.\\n\\n43\\n00:01:59,600 --> 00:02:01,400\\n\"The police believe she was kidnapped.\\n\\n44\\n00:02:01,600 --> 00:02:03,400\\nThey have no clues to the identity of the stranger in the shabby car. \\n\\n45\\n00:02:03,600 --> 00:02:06,400\\nNobody has thought to take the license number of the car,\\n\\n46\\n00:02:06,600 --> 00:02:08,400\\nand if you see any little girl...\"\\n\\n47\\n00:02:08,600 --> 00:02:10,400\\nThat\\'s the way it happened,\\n\\n48\\n00:02:10,600 --> 00:02:13,400\\nAnd just look at how sad it made her mother and father.\\n\\n49\\n00:02:13,600 --> 00:02:15,400\\nI had to tell them about it.\\n\\n50\\n00:02:15,600 --> 00:02:17,400\\nAll because she forgot \\n\\n51\\n00:02:17,600 --> 00:02:20,400\\nwhat they had told her about strangers.\\n\\n52\\n00:02:25,600 --> 00:02:27,400\\nNow let\\'s look at some of the places\\n\\n53\\n00:02:27,600 --> 00:02:30,400\\nand some of the ways you might run into trouble.\\n\\n54\\n00:02:30,600 --> 00:02:32,400\\nLet\\'s see what we should do\\n\\n55\\n00:02:32,600 --> 00:02:34,400\\nif anything happens.\\n\\n50\\n00:02:34,600 --> 00:02:37,400\\nHere\\'s one: a lonely alley\\n\\n51\\n00:02:37,600 --> 00:02:39,400\\nAnybody [wouldn\\'t] try to arm you with\\n\\n52\\n00:02:39,600 --> 00:02:41,400\\na lot of other kids around, wouldn\\'t it?\\n\\n53\\n00:02:41,600 --> 00:02:43,400\\nWhat kind of a kid would a\\n\\n54\\n00:02:43,600 --> 00:02:46,400\\nman like that look for?\\n\\n55\\n00:02:51,600 --> 00:02:54,400\\nThat\\'s right. A wise guy,\\n\\n56\\n00:02:54,600 --> 00:02:56,400\\nlike Jimmy here,\\n\\n57\\n00:02:56,600 --> 00:02:58,400\\nwho thinks he knows everything.\\n\\n58\\n00:02:58,600 --> 00:03:00,400\\nMaybe he won\\'t get into any trouble.\\n\\n59\\n00:03:00,600 --> 00:03:03,400\\nBut he sure[is] takin\\' a chance.\\n\\n60\\n00:03:06,600 --> 00:03:09,400\\nI don\\'t think it\\'s worth it. Do you?\\n\\n61\\n00:03:11,600 --> 00:03:13,400\\nNow here\\'s a place you always meet\\n\\n62\\n00:03:13,600 --> 00:03:15,400\\na lot of friends, like the cowboy\\n\\n63\\n00:03:15,600 --> 00:03:17,400\\nup on the screen,\\n\\n64\\n00:03:17,600 --> 00:03:20,400\\nand the manager.\\n\\n65\\n00:03:20,600 --> 00:03:22,400\\nWhat if somebody says hello to you or\\n\\n66\\n00:03:22,600 --> 00:03:24,400\\nsmiles, well that\\'s alright.\\n\\n67\\n00:03:24,600 --> 00:03:25,400\\nMost everybody likes kids. \\n\\n68\\n00:03:25,600 --> 00:03:28,400\\nWhether they are strangers or whether they know you.\\n\\n69\\n00:03:28,600 --> 00:03:30,400\\nBut watch this man!\\n\\n70\\n00:03:32,600 --> 00:03:34,400\\nHe followed the little girl into the theater.\\n\\n71\\n00:03:34,600 --> 00:03:36,400\\nHe isn\\'t just an ordinary stranger \\n\\n72\\n00:03:36,600 --> 00:03:38,400\\nwho likes kids.\\n\\n73\\n00:03:38,600 --> 00:03:41,400\\nHe might make trouble.\\n\\n74\\n00:03:52,600 --> 00:03:55,400\\nWatch...\\n\\n75\\n00:03:56,600 --> 00:03:59,400\\n...how he put his arm around her.\\n\\n76\\n00:03:59,600 --> 00:04:01,400\\nNever let anybody do that except\\n\\n77\\n00:04:01,600 --> 00:04:04,400\\nyour own family. No stranger!\\n\\n78\\n00:04:04,600 --> 00:04:06,400\\nThank goodness this little girl is smart.\\n\\n79\\n00:04:06,600 --> 00:04:08,400\\nShe changed her seat.\\n\\n80\\n00:04:08,600 --> 00:04:10,400\\nJust what her parents [told her] to do.\\n\\n81\\n00:04:10,600 --> 00:04:12,400\\nThat\\'s exactly what you should do.\\n\\n82\\n00:04:12,600 --> 00:04:15,400\\n[another]? What\\'ll she do now?\\n\\n83\\n00:04:15,600 --> 00:04:18,400\\nThat\\'s right! Get the usher.\\n\\n84\\n00:04:18,600 --> 00:04:20,400\\nIf this should ever happen to you,\\n\\n85\\n00:04:20,600 --> 00:04:22,400\\ndo the same thing.\\n\\n86\\n00:04:22,600 --> 00:04:24,400\\nThe usher will make sure\\n\\n87\\n00:04:24,600 --> 00:04:26,400\\nnone of the kids is ever bothered\\n\\n88\\n00:04:26,600 --> 00:04:29,400\\nby that man again.\\n\\n89\\n00:04:31,600 --> 00:04:33,400\\nYou see how it works?\\n\\n90\\n00:04:33,600 --> 00:04:35,400\\nIf you just remember what you\\'ve been told\\n\\n91\\n00:04:35,600 --> 00:04:37,400\\nand don\\'t be a wise guy,\\n\\n92\\n00:04:37,600 --> 00:04:39,400\\nit\\'s easy to stay out of trouble.\\n\\n93\\n00:04:39,600 --> 00:04:41,400\\nFor instance, in a place like this park.\\n\\n93\\n00:04:43,600 --> 00:04:45,400\\nThis little girl\\'s mother told her never\\n\\n94\\n00:04:45,600 --> 00:04:47,400\\nto take candy from strangers.\\n\\n95\\n00:04:47,600 --> 00:04:49,400\\nWell... she forgot.\\n\\n96\\n00:04:50,600 --> 00:04:52,400\\nBut her brother didn\\'t.\\n\\n97\\n00:04:52,600 --> 00:04:55,400\\nHe started to yell and the man ran away.\\n\\n99\\n00:04:55,600 --> 00:04:57,400\\nHe was afraid of a policeman.\\n\\n100\\n00:04:57,600 --> 00:05:00,400\\nRemember that kid that saw good tricks.\\n\\n101\\n00:05:03,600 --> 00:05:06,400\\nHello, Sally! I\\'m a friend of your mother.\\n\\n102\\n00:05:06,600 --> 00:05:08,400\\nShe sent me to bring you home.\\n\\n103\\n00:05:08,600 --> 00:05:11,400\\nCome on!\\n\\n104\\n00:05:16,600 --> 00:05:18,400\\nNow Sally\\'s mother told her\\n\\n105\\n00:05:18,600 --> 00:05:20,400\\nnever to ride home with a stranger.\\n\\n106\\n00:05:20,600 --> 00:05:22,400\\nBut Sally forgot too!\\n\\n107\\n00:05:27,600 --> 00:05:29,400\\nIt was only because her b[rother] was smart and took \\n\\n108\\n00:05:29,600 --> 00:05:31,400\\nthe l[icense] number that Sally ever got home.\\n\\n109\\n00:05:31,600 --> 00:05:33,400\\nNow we\\'ve seen some dumb bunnies so far, haven\\'t we?\\n\\n110\\n00:05:33,600 --> 00:05:35,400\\nBut these are the dumbest of all:\\n\\n111\\n00:05:35,600 --> 00:05:37,400\\nThe hitchhikers.\\n\\n112\\n00:05:37,600 --> 00:05:39,400\\nWhy? Well even if\\n\\n113\\n00:05:39,600 --> 00:05:41,400\\nthe driver doesn\\'t mean any harm,\\n\\n114\\n00:05:41,600 --> 00:05:44,400\\nand you\\'re just plain lucky if he doesn\\'t,\\n\\n115\\n00:05:44,600 --> 00:05:46,400\\nHe may be a reckless driver\\n\\n116\\n00:05:46,600 --> 00:05:48,400\\nor a speeder.\\n\\n117\\n00:05:50,600 --> 00:05:52,400\\nThis car might have bad brakes.\\n\\n118\\n00:05:52,600 --> 00:05:54,400\\nThe hitchhiker doesn\\'t know.\\n\\n119\\n00:05:54,600 --> 00:05:57,400\\nHe just goes right along anyway.\\n\\n120\\n00:05:59,600 --> 00:06:01,400\\nWell, these kids aren\\'t gonna\\n\\n121\\n00:06:01,600 --> 00:06:03,400\\nbe so lucky. Too bad.\\n\\n122\\n00:06:03,600 --> 00:06:06,400\\nThey asked for trouble and they\\'re getting it.\\n\\n123\\n00:06:08,600 --> 00:06:10,400\\nThank goodness one of the boys\\n\\n124\\n00:06:10,600 --> 00:06:12,400\\nkept his head.\\n\\n125\\n00:06:12,600 --> 00:06:15,400\\nHe took the license number of the car,\\n\\n126\\n00:06:15,600 --> 00:06:18,400\\nand another boy saw a squad car coming down the next street.\\n\\n127\\n00:06:27,600 --> 00:06:29,400\\nMaybe the little girl can still be rescued.\\n\\n128\\n00:06:29,600 --> 00:06:31,400\\n\"Police\" [On automobile]\\n\\n129\\n00:06:33,600 --> 00:06:35,400\\nIf they can get the radio alarm\\n\\n130\\n00:06:35,600 --> 00:06:37,400\\nout quick enough.\\n\\n131\\n00:06:39,600 --> 00:06:41,400\\nJust think, if they hadn\\'t been hitching rides\\n\\n132\\n00:06:41,600 --> 00:06:43,400\\nthis needn\\'t have happened at all.\\n\\n133\\n00:06:43,600 --> 00:06:46,400\\nBut that doesn\\'t help much now, does it?\\n\\n134\\n00:06:53,600 --> 00:06:55,400\\nThat\\'s lucky! Two motorcycle policemen\\n\\n135\\n00:06:55,600 --> 00:06:58,400\\ngot the alarm.\\n\\n136\\n00:06:58,600 --> 00:07:01,400\\nAnd there they go after him!\\n\\n137\\n00:07:10,600 --> 00:07:13,400\\nJust remember, whether you\\'re a boy or a girl,\\n\\n138\\n00:07:16,600 --> 00:07:18,400\\nThat might be you in that car\\n\\n139\\n00:07:18,600 --> 00:07:20,400\\nif you hitch rides.\\n\\n140\\n00:07:36,600 --> 00:07:38,400\\nLook at that! They got him!\\n\\n141\\n00:07:38,600 --> 00:07:40,400\\nThis little girl is very, very lucky!\\n\\n142\\n00:07:40,600 --> 00:07:42,400\\nWho knows what might have happened if\\n\\n143\\n00:07:42,600 --> 00:07:44,400\\none boy hadn\\'t been smart enough\\n\\n144\\n00:07:44,600 --> 00:07:46,400\\nto take the license number. \\n\\n145\\n00:07:46,600 --> 00:07:48,400\\nIsn\\'t it silly to worry your parents\\n\\n146\\n00:07:48,600 --> 00:07:50,400\\nand take chances like that?\\n\\n147\\n00:07:50,600 --> 00:07:53,400\\nWell, gang, what did we learn from all this?\\n\\n148\\n00:07:53,600 --> 00:07:55,400\\nMaybe Dodo here can show us!\\n\\n149\\n00:07:55,600 --> 00:07:58,400\\nHe does everything wrong.\\n\\n150\\n00:08:00,600 --> 00:08:03,400\\nIf Dodo meets a stranger in a lonely alley,\\n\\n151\\n00:08:03,600 --> 00:08:05,400\\nhe just goes right along with him.\\n\\n152\\n00:08:09,600 --> 00:08:11,400\\nOr at the movies,\\n\\n153\\n00:08:11,600 --> 00:08:13,400\\nDodo\\'s[Dodo is] friends with anybody,\\n\\n154\\n00:08:13,600 --> 00:08:15,400\\nstranger or not. Isn\\'t that dumb?\\n\\n155\\n00:08:17,600 --> 00:08:19,400\\nSure, her parents tell her not to,\\n\\n156\\n00:08:19,600 --> 00:08:22,400\\nbut Miss Dodo thinks she\\'s smart.\\n\\n157\\n00:08:25,600 --> 00:08:27,400\\nShe thinks they don\\'t know what they\\'re talking about.\\n\\n158\\n00:08:27,600 --> 00:08:30,400\\nYou know what a Dodo is?\\n\\n159\\n00:08:30,600 --> 00:08:33,400\\nA Dodo is an extinct bird.\\n\\n160\\n00:08:33,600 --> 00:08:35,400\\nThat means it isn\\'t alive anymore.\\n\\n161\\n00:08:35,600 --> 00:08:37,400\\nThat\\'s the way this Dodo\\'s going to be:\\n\\n162\\n00:08:37,600 --> 00:08:39,400\\nExtinct.\\n\\n163\\n00:08:39,600 --> 00:08:41,400\\nTaking all those chances.\\n\\n164\\n00:08:41,600 --> 00:08:43,400\\n\"Dunce\" [on hat] \"I take chances\" and \"I use my head\" [Signs]\\n\\n165\\n00:08:43,600 --> 00:08:45,400\\nWell, who do you want to be like, kids?\\n\\n166\\n00:08:45,600 --> 00:08:47,400\\nA dumb dodo or a really smart kid?\\n\\n167\\n00:08:49,600 --> 00:08:51,400\\nWell, that\\'s about what I had to tell you.\\n\\n168\\n00:08:51,600 --> 00:08:53,400\\nJust remember those two things\\n\\n169\\n00:08:53,600 --> 00:08:55,400\\nto do what your teachers and parents tell you\\n\\n170\\n00:08:55,600 --> 00:08:57,400\\nand to be a really smart kid,\\n\\n171\\n00:08:57,600 --> 00:09:00,400\\nnot a dumb dodo.\\n\\n172\\n00:09:00,600 --> 00:09:02,400\\nIf you do, it\\'ll be pretty hard\\n\\n173\\n00:09:02,600 --> 00:09:04,400\\nto get into trouble.\\n\\n174\\n00:09:04,600 --> 00:09:06,400\\nWell, kids, I\\'ll be seein\\' ya[seeing you].\\n\\n175\\n00:09:14,600 --> 00:09:17,400\\nThe End A Sid Davis Production',\n", + " 'bytes': 12493,\n", + " 'sha1': '6rc23pt1gxj8w2p9jujj5bz064iwgdo',\n", + " 'parent_id': 189654863,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 193389175,\n", + " 'timestamp': '2016-04-15T19:38:57Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 24867527,\n", + " 'title': 'GangBoy.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:04,400\\nSid Davis Productions Presents\\n\\n2\\n00:00:14,000 --> 00:00:18,400\\n\\'\\'Gang Boy\\'\\'\\n\\n3\\n00:00:19,000 --> 00:00:23,400\\nFeaturing Curly Riviera as Danny\\n\\n4\\n00:00:26,600 --> 00:00:28,400\\nAcknowledgement\\n\\n5\\n00:00:28,600 --> 00:00:30,400\\nWe gratefully acknowledge the valuable contributions\\n\\n6\\n00:00:30,400 --> 00:00:32,400\\nmade to this film by the following clubs;\\n\\n7\\n00:00:32,600 --> 00:00:34,400\\nRed Hearts, Red Dragons, Sharkies, Vikings, Lancers;\\n\\n8\\n00:00:34,600 --> 00:00:36,400\\nby Karl Holton, Probation Officer, Judge William B. McKesson,\\n\\n9\\n00:00:36,600 --> 00:00:38,400\\nby the Pomona Board of Education and\\n\\n10\\n00:00:38,600 --> 00:00:40,400\\nthe Pomona Police Department.\\n\\n11\\n00:00:50,000 --> 00:00:54,400\\nProduced and Photographed by Sid Davis\\n\\n12\\n00:00:56,600 --> 00:01:00,400\\nWritten and Directed by Arthur Swerdloff\\n\\n13\\n00:01:03,600 --> 00:01:06,400\\nThe \"gang boy\" is a phenomenon of youth.\\n\\n14\\n00:01:07,600 --> 00:01:09,400\\nLet\\'s get outta [out of] here!\\n\\n13\\n00:01:09,600 --> 00:01:12,400\\nHe belongs to every race, every creed\\n\\n14\\n00:01:12,600 --> 00:01:14,400\\nand every color. He is the symptom of\\n\\n15\\n00:01:14,600 --> 00:01:16,400\\na sickness in society.\\n\\n16\\n00:01:16,600 --> 00:01:18,400\\nWe\\'ll get \\'em tonight!\\n\\n17\\n00:01:21,600 --> 00:01:23,400\\nThis Peppertree Gang\\n\\n18\\n00:01:23,600 --> 00:01:25,400\\nnow has fifteen shotguns,\\n\\n19\\n00:01:25,600 --> 00:01:27,400\\nthree hand grenades,\\n\\n20\\n00:01:27,600 --> 00:01:29,400\\na keg of black powder,\\n\\n21\\n00:01:29,600 --> 00:01:32,400\\nand sixty sticks of dynamite.\\n\\n22\\n00:01:32,600 --> 00:01:34,400\\nThis morning they blew the top off \\n\\n23\\n00:01:34,600 --> 00:01:36,400\\na palm tree on Palomino Road.\\n\\n24\\n00:01:36,600 --> 00:01:38,400\\nThat\\'s the picture.\\n\\n25\\n00:01:38,600 --> 00:01:40,400\\nAnd it\\'s not pretty.\\n\\n26\\n00:01:40,600 --> 00:01:42,400\\nThese kids are about to get \\n\\n25\\n00:01:42,600 --> 00:01:44,400\\ninto a gang war that will \\n\\n25\\n00:01:44,600 --> 00:01:46,400\\nruin every one of their lives. \\n\\n26\\n00:01:46,600 --> 00:01:48,400\\nAnd we\\'re going to do everything\\n\\n27\\n00:01:48,600 --> 00:01:50,400\\nin our power to prevent it.\\n\\n28\\n00:01:50,600 --> 00:01:53,400\\nPlace all extra patrols that we have on duty, Captain.\\n\\n29\\n00:01:53,600 --> 00:01:55,400\\nKeep these groups from gathering\\n\\n30\\n00:01:55,600 --> 00:01:57,400\\nat any location in the city.\\n\\n31\\n00:01:59,600 --> 00:02:01,400\\nAnd Kerson, see if you can\\n\\n32\\n00:02:01,600 --> 00:02:04,400\\nget the leaders together here at the station.\\n\\n33\\n00:02:04,600 --> 00:02:07,400\\nMaybe we can talk this thing out.\\n\\n34\\n00:02:09,600 --> 00:02:11,400\\nThey\\'re coming tonight, Danny.\\n\\n35\\n00:02:14,600 --> 00:02:16,400\\nThey\\'re gonna break up the dance.\\n\\n36\\n00:02:17,600 --> 00:02:20,400\\nHey, Danny. Can I have a word with ya?\\n\\n37\\n00:02:21,600 --> 00:02:23,400\\nDon\\'t listen to them, Danny!\\n\\n38\\n00:02:23,600 --> 00:02:25,400\\nToo late now!\\n\\n39\\n00:02:25,600 --> 00:02:27,400\\nComin\\' to see the Pepper Tree.\\n\\n40\\n00:02:27,600 --> 00:02:29,400\\nShut up!\\n\\n41\\n00:02:29,600 --> 00:02:32,400\\nOkay, Lieutenant. I\\'ll listen.\\n\\n42\\n00:02:32,600 --> 00:02:34,400\\nIt won\\'t do no good.\\n\\n43\\n00:02:35,600 --> 00:02:37,400\\nI know a truce won\\'t solve the problem.\\n\\n44\\n00:02:37,600 --> 00:02:39,400\\nBut it will delay the fighting.\\n\\n45\\n00:02:39,600 --> 00:02:41,400\\nWhat do you say?\\n\\n46\\n00:02:41,600 --> 00:02:43,400\\nI\\'ll think it over.\\n\\n47\\n00:02:44,600 --> 00:02:46,400\\nI walked around for hours.\\n\\n48\\n00:02:46,600 --> 00:02:50,400\\nAnd then some inner force drove me up here to the dam.\\n\\n49\\n00:02:50,600 --> 00:02:53,400\\nIn a small, dark corner\\n\\n50\\n00:02:53,600 --> 00:02:56,400\\nmy mind had remembered something.\\n\\n51\\n00:02:56,600 --> 00:02:59,400\\nSomething that would help me to decide.\\n\\n52\\n00:03:00,600 --> 00:03:02,400\\nBut I couldn\\'t get at it.\\n\\n53\\n00:03:02,600 --> 00:03:04,400\\nI tried to think back.\\n\\n54\\n00:03:05,600 --> 00:03:06,400\\nTo figure...\\n\\n55\\n00:03:06,600 --> 00:03:09,400\\nHow and why I became a gang boy.\\n\\n56\\n00:03:10,600 --> 00:03:13,400\\nBut all I could think of was that...\\n\\n57\\n00:03:13,600 --> 00:03:16,400\\nMy gang began with poor but healthy kids.\\n\\n58\\n00:03:16,600 --> 00:03:18,400\\nAnd that we seemed to come together\\n\\n59\\n00:03:18,600 --> 00:03:21,400\\nbecause of a battle that each of us\\n\\n60\\n00:03:21,600 --> 00:03:24,400\\nwas fighting within himself...\\n\\n61\\n00:03:24,600 --> 00:03:27,400\\nand with the angry world around him.\\n\\n62\\n00:03:28,600 --> 00:03:30,40\\nGet him, Danny.\\n\\n63\\n00:03:30,600 --> 00:03:33,40\\nGet him and shoot him. Get him!\\n\\n64\\n00:03:34,600 --> 00:03:35,40\\nGet him, Danny.\\n\\n65\\n00:03:39,600 --> 00:03:42,40\\nIt was a battle I could feel myself losing.\\n\\n66\\n00:03:42,600 --> 00:03:44,40\\nEven when I was winning a fight.\\n\\n67\\n00:03:44,600 --> 00:03:46,40\\nCome on! Knock this off.\\n\\n68\\n00:03:46,600 --> 00:03:48,40\\nLeave me alone!\\n\\n68\\n00:03:48,600 --> 00:03:50,40\\nNow, wait a minute.\\n\\n69\\n00:03:50,600 --> 00:03:52,40\\nI only want to help you.\\n\\n70\\n00:03:52,600 --> 00:03:54,40\\nI don\\'t need no help.\\n\\n71\\n00:03:54,600 --> 00:03:56,40\\nLeave me alone.\\n\\n72\\n00:03:56,600 --> 00:03:58,40\\nBut how could I accept help from him?\\n\\n72\\n00:03:58,600 --> 00:04:00,40\\nWhen all that I time I thought he too was\\n\\n73\\n00:04:00,600 --> 00:04:03,40\\npart of the angry world I was fighting?\\n\\n76\\n00:04:06,600 --> 00:04:07,40\\nYou!\\n\\n78\\n00:04:07,600 --> 00:04:08,40\\nNo!\\n\\n79\\n00:04:09,600 --> 00:04:11,40\\nAt this age you couldn\\'t call us a gang.\\n\\n80\\n00:04:11,600 --> 00:04:13,40\\nWe were just a bunch of kids playing together.\\n\\n81\\n00:04:13,600 --> 00:04:15,40\\nReady or not, here I come!\\n\\n82\\n00:04:15,600 --> 00:04:17,40\\nWhenever a kid\\'s real world is a wreckyard...\\n\\n83\\n00:04:17,600 --> 00:04:19,40\\nWhen it brings him unhappiness...\\n\\n84\\n00:04:19,600 --> 00:04:23,40\\nHe has a wonderful escape hatch.\\n\\n85\\n00:04:23,600 --> 00:04:25,40\\nHis imagination.\\n\\n86\\n00:04:25,600 --> 00:04:28,40\\nAnd if you step into his world with his mind,\\n\\n87\\n00:04:28,600 --> 00:04:31,40\\nYou will see it quickly change into \\n\\n88\\n00:04:31,600 --> 00:04:34,40\\na beautiful, exciting world of fantasy.\\n\\n89\\n00:04:36,600 --> 00:04:39,40\\nAll at once the wreckyard is an African jungle,\\n\\n90\\n00:04:39,600 --> 00:04:41,40\\ncrawling with big game.\\n\\n91\\n00:04:41,600 --> 00:04:43,40\\nAnd every kid becomes his own favorite animal.\\n\\n92\\n00:04:45,600 --> 00:04:47,40\\nIn that disguise he can as he wishes...\\n\\n93\\n00:04:47,600 --> 00:04:49,40\\nGrowl back at the world.\\n\\n94\\n00:04:50,600 --> 00:04:52,40\\nOr hide from it.\\n\\n95\\n00:04:53,600 --> 00:04:56,40\\nPlaying in places like this got us into trouble.\\n\\n96\\n00:04:58,600 --> 00:05:01,40\\nAnd this conflict made us pals in a never-ending\\n\\n97\\n00:05:01,600 --> 00:05:04,40\\nbattle with the big, powerful adult authority.\\n\\n98\\n00:05:04,600 --> 00:05:06,40\\nIn such a state of mind,\\n\\n99\\n00:05:06,600 --> 00:05:08,40\\nwe got many false ideas about the world from\\n\\n100\\n00:05:08,600 --> 00:05:11,40\\nthings we saw in some movies and comic books.\\n\\n101\\n00:05:14,600 --> 00:05:16,40\\n(laugh)\\n\\n102\\n00:05:16,600 --> 00:05:18,40\\nYou\\'ve got any money?\\n\\n103\\n00:05:18,600 --> 00:05:21,40\\nBut nobody can afford to buy no toys.\\n\\n104\\n00:05:21,600 --> 00:05:23,40\\nWhat can a kid do?\\n\\n105\\n00:05:23,600 --> 00:05:25,40\\nPlenty.\\n\\n106\\n00:05:31,600 --> 00:05:34,40\\nWe explored the large world around us.\\n\\n107\\n00:05:34,600 --> 00:05:36,40\\nAnd we found a million noisy,\\n\\n108\\n00:05:36,600 --> 00:05:38,40\\nmoving, colorful objects.\\n\\n109\\n00:05:38,600 --> 00:05:40,40\\nHey, look here!\\n\\n110\\n00:05:40,600 --> 00:05:42,40\\nSparkling and flashing,\\n\\n111\\n00:05:43,600 --> 00:05:45,40\\nto fascinate our searching eyes,\\n\\n112\\n00:05:45,600 --> 00:05:47,40\\nand to entice our nimble fingers.\\n\\n113\\n00:05:49,600 --> 00:05:52,40\\nBut to us then, stealing was not a crime.\\n\\n114\\n00:05:53,600 --> 00:05:55,40\\nIt was both a game...\\n\\n115\\n00:05:55,600 --> 00:05:57,40\\nThat one there.\\n\\n116\\n00:05:57,600 --> 00:05:59,40\\nThis one?\\n\\n117\\n00:05:59,600 --> 00:06:01,40\\nLet\\'s go!\\n\\n118\\n00:06:01,600 --> 00:06:03,40\\nC\\'mon!',\n", + " 'bytes': 7815,\n", + " 'sha1': 'qmxody4kwwy1egszwe8qd14uunn5s7g',\n", + " 'parent_id': 193388561,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91513537,\n", + " 'timestamp': '2013-02-26T10:45:36Z',\n", + " 'user': {'id': 2666121, 'text': 'NVZ2013'},\n", + " 'page': {'id': 24871548,\n", + " 'title': 'La Despedida.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:58,000 --> 00:01:03,400\\nOye alma la tristeza\\n\\n2\\n00:01:03,500 --> 00:01:08,400\\nY la amarga despedida\\n\\n3\\n00:01:08,600 --> 00:01:13,600\\nQue en la Madre de pureza\\n\\n4\\n00:01:13,800 --> 00:01:18,500\\nHizo de Jesús la vida\\n\\n5\\n00:01:18,501 --> 00:01:26,350\\nPostrar ante su grandeza\\n\\n6\\n00:01:26,500 --> 00:01:31,440\\nContempla cual dolorida\\n\\n7\\n00:01:31,620 --> 00:01:36,640\\nNuestra Madre soberana\\n\\n8\\n00:01:36,710 --> 00:01:41,360\\nLlorando se despedía\\n\\n9\\n00:01:41,550 --> 00:01:46,340\\nDel Hijo de sus entrañas\\n\\n10\\n00:01:46,510 --> 00:01:51,100\\nY esta suerte decía\\n\\n11\\n00:01:54,600 --> 00:01:59,420\\nAdios, Jesús amoroso\\n\\n12\\n00:01:59,530 --> 00:02:04,420\\nAdios, claro sol del alba\\n\\n13\\n00:02:04,590 --> 00:02:09,730\\nAdios, celestial esposo\\n\\n14\\n00:02:09,770 --> 00:02:14,370\\nDe tu Divina Palma\\n\\n15\\n00:02:14,470 --> 00:02:19,110\\nDe mi vientre fruto hermoso\\n\\n16\\n00:03:08,500 --> 00:03:13,420\\nAdios, lucero inmortal\\n\\n17\\n00:03:13,660 --> 00:03:18,550\\nAdios, lumbre de mis ojos\\n\\n18\\n00:03:18,830 --> 00:03:23,670\\nNo me dejes cual rosal\\n\\n19\\n00:03:23,780 --> 00:03:27,580\\nEntre espina y entre abrojos\\n\\n20\\n00:03:28,630 --> 00:03:33,400\\nEn una pena mortal\\n\\n21\\n00:03:36,770 --> 00:03:41,340\\nHijo que a morir te vas\\n\\n22\\n00:03:41,730 --> 00:03:46,500\\nAdios fin de mis suspiros\\n\\n23\\n00:03:46,770 --> 00:03:51,440\\nYa no te vere jamás\\n\\n24\\n00:03:51,870 --> 00:03:56,400\\nPues naci para serviros\\n\\n25\\n00:03:56,630 --> 00:04:01,400\\nY para penar na más.',\n", + " 'bytes': 1428,\n", + " 'sha1': '680qv2aqs563y0yupiaco63emejj2gk',\n", + " 'parent_id': 91512765,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91533929,\n", + " 'timestamp': '2013-02-26T17:32:10Z',\n", + " 'user': {'id': 2655056, 'text': 'Ruby12345678'},\n", + " 'page': {'id': 24880557,\n", + " 'title': 'Ru-Lenin.ogg.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:02,400 Vladimir Ilich Ulianov 2 00:00:02,500 --> 00:00:04,000 Lenin'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,400\\nVladimir Ilich Ulianov \\n2 \\n00:00:02,500 --> 00:00:04,000\\nLenin',\n", + " 'bytes': 96,\n", + " 'sha1': 'bko1bcu6zolg1tz25dnmldh8obn5d3b',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 612671224,\n", + " 'timestamp': '2021-12-08T21:21:35Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 24926676,\n", + " 'title': 'La Donna E Mobile Rigoletto.ogg.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'added more timings for better readabilitiy when the file embedded in articles',\n", + " 'text': \"1\\n00:00:11,303 --> 00:00:13,535\\nLa donna è mobile\\n\\n2\\n00:00:13,584 --> 00:00:15,917\\nQual piuma al vento\\n\\n3\\n00:00:15,951 --> 00:00:19,066\\nMuta d'accento\\n\\n4\\n00:00:19,116 --> 00:00:21,898\\nE di pensiero\\n\\n5\\n00:00:21,949 --> 00:00:24,181\\nSempre un amabile\\n\\n6\\n00:00:24,215 --> 00:00:26,431\\nLeggiadro viso\\n\\n7\\n00:00:26,480 --> 00:00:29,462\\nIn pianto o in riso\\n\\n8\\n00:00:29,496 --> 00:00:32,296\\nÈ menzognero\\n\\n9\\n00:00:32,345 --> 00:00:34,744\\nLa donna è mobil\\n\\n10\\n00:00:34,796 --> 00:00:36,915\\nQual piuma al vento\\n\\n11\\n00:00:36,949 --> 00:00:43,205\\nMuta d'accento\\n\\n12\\n00:00:43,238 --> 00:00:45,837\\nE di pensier\\n\\n13\\n00:00:48,667 --> 00:00:50,989\\nE di pensier\\n\\n14\\n00:00:52,259 --> 00:00:59,923\\nE di pensier\\n\\n15\\n00:01:10,199 --> 00:01:12,547\\nÈ sempre misero\\n\\n16\\n00:01:12,570 --> 00:01:15,131\\nChi a lei s'affida\\n\\n17\\n00:01:15,198 --> 00:01:18,063\\nChi le confida\\n\\n18\\n00:01:18,112 --> 00:01:21,062\\nMal cauto il cuore\\n\\n19\\n00:01:21,128 --> 00:01:23,427\\nPur mai non sentesi\\n\\n20\\n00:01:23,478 --> 00:01:25,827\\nFelice appieno\\n\\n21\\n00:01:25,860 --> 00:01:29,279\\nChi su quel seno\\n\\n22\\n00:01:29,308 --> 00:01:32,828\\nNon liba amore\\n\\n23\\n00:01:32,878 --> 00:01:35,044\\nLa donna è mobil\\n\\n24\\n00:01:35,094 --> 00:01:37,393\\nQual piuma al vento\\n\\n25\\n00:01:37,443 --> 00:01:44,457\\nMuta d'accento\\n\\n26\\n00:01:44,507 --> 00:01:47,449\\nE di pensier\\n\\n27\\n00:01:50,131 --> 00:01:52,130\\nE di pensier\\n\\n28\\n00:01:54,846 --> 00:02:02,812\\nE di\\n\\n29\\n00:02:03,451 --> 00:02:07,788\\npensier\",\n", + " 'bytes': 1431,\n", + " 'sha1': 'ha8a6ff1x1d5k2lcwv5b3gubmj1mpca',\n", + " 'parent_id': 308008466,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92277042,\n", + " 'timestamp': '2013-03-09T12:55:49Z',\n", + " 'user': {'id': 421596, 'text': 'Vivaelcelta'},\n", + " 'page': {'id': 24958128,\n", + " 'title': 'Editing basics - Uploading and adding images.webm.gl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:06,500\\nEsta presentación ensina os pasos básicos para subir imaxes na Wikimedia Commons \\n\\n2\\n00:00:06,700 --> 00:00:09,200\\ne engadilas ós artigos da Wikipedia.\\n\\n3\\n00:00:09,400 --> 00:00:13,500\\nColle este artigo, por exemplo: \"Lente secundaria\".\\n\\n4\\n00:00:13,700 --> 00:00:18,500\\nÉ un tema sobre fotografía que non ten ningunha foto. Vamos amañar isto!\\n\\n5\\n00:00:18,700 --> 00:00:21,500\\nImos usar unha imaxe orixinal que fixen eu.\\n\\n6\\n00:00:21,700 --> 00:00:24,000\\nPara engadila ó artigo temos que cargala\\n\\n7\\n00:00:24,100 --> 00:00:26,200\\nna Wikimedia Commons.\\n\\n8\\n00:00:26,500 --> 00:00:27,200\\nComecemos polo principio.\\n\\n9\\n00:00:27,400 --> 00:00:31,000\\nA Wikimedia Commons é só para obras orixinais feitas por ti,\\n\\n10\\n00:00:31,300 --> 00:00:36,000\\nobras doutras persoas que foron liberadas explicitamente baixo unha licenza compatible coa Wikipedia\\n\\n11\\n00:00:36,300 --> 00:00:40,500\\nou obras que están no dominio público e que non están cubertas por ningún dereito de autoría.\\n\\n12\\n00:00:40,800 --> 00:00:42,000\\nPara subir un ficheiro,\\n\\n11\\n00:00:42,300 --> 00:00:45,000\\nvai a commons.wikimedia.org.\\n\\n12\\n00:00:45,300 --> 00:00:48,000\\nAsegúrate de entrar co teu usuario e contrasinal se aínda non o fixeches.\\n\\n13\\n00:00:48,300 --> 00:00:50,300\\nUsarás a mesma conta que tes na Wikipedia.\\n\\n14\\n00:00:51,000 --> 00:00:53,600\\nPara comezar, vai ó Asistente de cargas\\n\\n15\\n00:00:53,800 --> 00:00:56,800\\npremendo na ligazón \"Cargar o ficheiro\" na esquerda.\\n\\n16\\n00:00:57,000 --> 00:01:00,000\\nA primeira páxina do asistente é un cómic, presentando a Puzzly!,\\n\\n17\\n00:01:00,300 --> 00:01:04,000\\nque ensina o que está permitido en Commons e o que non.\\n\\n18\\n00:01:04,300 --> 00:01:08,000\\nDebaixo do cómic, preme no botón \"Seguinte\" para pasar á páxina de carga.\\n\\n19\\n00:01:08,300 --> 00:01:14,000\\nPremendo en \"Seleccione o ficheiro multimedia que queira compartir\" poderás seleccionar no teu ordenador o ficheiro que queres subir.\\n\\n20\\n00:01:14,300 --> 00:01:18,000\\nUnha vez cargado, podes seleccionar a licenza coa que queres compartir o ficheiro.\\n\\n21\\n00:01:18,300 --> 00:01:22,000\\nSe é unha obra túa, simplemente pon o teu nome ou o teu nome de usuario,\\n\\n22\\n00:01:22,300 --> 00:01:25,600\\nsempre que queiras que se mostre o teu nome cando alguén use a túa imaxe,\\n\\n23\\n00:01:25,800 --> 00:01:27,000\\ne preme en \"Seguinte\".\\n\\n24\\n00:01:27,300 --> 00:01:30,500\\nAgora é o momento de escribir o título e a descrición da imaxe.\\n\\n25\\n00:01:30,700 --> 00:01:31,500\\nPara o título\\n\\n26\\n00:01:31,700 --> 00:01:34,500\\nusa algo conciso, descritivo\\n\\n27\\n00:01:34,700 --> 00:01:37,700\\ne que sexa específico abondo para diferencialo de imaxes similares.\\n\\n28\\n00:01:37,900 --> 00:01:39,500\\nPara a descrición\\n\\n29\\n00:01:39,700 --> 00:01:42,000\\nengade tódolos detalles que poidas:\\n\\n30\\n00:01:42,200 --> 00:01:44,500\\nonde e como se fixo a imaxe;\\n\\n31\\n00:01:44,700 --> 00:01:46,500\\ncal é o tema da imaxe;\\n\\n32\\n00:01:46,700 --> 00:01:49,000\\ne tódolos detalles que poidan querer saber as persoas que vexan esa imaxe.\\n\\n33\\n00:01:49,300 --> 00:01:53,000\\nTamén podes engadir a imaxe a unha ou máis categorías da Wikimedia Commons.\\n\\n33\\n00:01:53,300 --> 00:01:58,000\\nIntenta buscar imaxes similares para atopar as categorías apropiadas.\\n\\n34\\n00:01:58,300 --> 00:02:00,500\\nNeste punto, ao premer en \"Seguinte\" completarás a carga\\n\\n35\\n00:02:00,700 --> 00:02:05,000\\ne a imaxe estará dispoñible para usala na Wikipedia.\\n\\n36\\n00:02:05,300 --> 00:02:07,000\\nNa última páxina do asistente atoparás\\n\\n37\\n00:02:07,300 --> 00:02:10,000\\no código para engadir a imaxe a un artigo da Wikipedia\\n\\n38\\n00:02:10,300 --> 00:02:13,000\\ne un enderezo URL para acceder á páxina do ficheiro,\\n\\n39\\n00:02:13,300 --> 00:02:17,000\\nonde podes editar a descrición ou cargar novas versións do ficheiro.\\n\\n40\\n00:02:17,300 --> 00:02:19,500\\nPodes copiar o código wiki \\n\\n41\\n00:02:19,700 --> 00:02:21,000\\ne pegalo no artigo,\\n\\n42\\n00:02:21,300 --> 00:02:23,500\\ne logo engadir un pé de foto.\\n\\n43\\n00:02:23,700 --> 00:02:27,000\\nO formato básico para poñer unha imaxe nun artigo é este:\\n\\n44\\n00:02:27,300 --> 00:02:29,200\\ndous corchetes de apertura, logo \\n\\n45\\n00:02:29,400 --> 00:02:31,200\\no nome do ficheiro, despois \\n\\n46\\n00:02:31,400 --> 00:02:36,200\\nunha barra vertical e a palabra \"miniatura\" ou \"thumb\" (que fai que a imaxe se mostre no formato estándar)\\n\\n47\\n00:02:36,500 --> 00:02:37,500\\nlogo outra barra vertical,\\n\\n48\\n00:02:37,700 --> 00:02:39,000\\ne logo o pé de foto,\\n\\n47\\n00:02:39,200 --> 00:02:43,000\\nque debe ter unha conexión clara co texto do artigo,\\n\\n47\\n00:02:43,200 --> 00:02:46,000\\ne logo dous corchetes de peche.\\n\\n48\\n00:02:46,200 --> 00:02:48,000\\nUnha vez engadida a imaxe,\\n\\n49\\n00:02:48,200 --> 00:02:50,000\\npon un resumo de edición e garda a páxina.\\n\\n50\\n00:02:50,200 --> 00:02:51,500\\nE xa está!\\n\\n51\\n00:02:51,700 --> 00:02:54,000\\nXa engadimos unha nova imaxe á Wikipedia.\\n\\n52\\n00:02:54,500 --> 00:02:57,000\\nGrazas! Adeus!',\n", + " 'bytes': 4913,\n", + " 'sha1': '81aj5dwy768nh3d59faqlyjvto90vhu',\n", + " 'parent_id': 91853167,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 122460706,\n", + " 'timestamp': '2014-04-28T00:20:54Z',\n", + " 'user': {'text': '147.133.204.133'},\n", + " 'page': {'id': 24961712,\n", + " 'title': 'Fermi Observations of Dwarf Galaxies Provide New Insights on Dark Matter.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"Okay, now we're good. FERMI -> Fermi this time. Still same comma and subtitle timing issues as before.\",\n", + " 'text': \"1\\n00:00:10,000 --> 00:00:17,000\\nFor the past 40 years, astronomers have known that something about the cosmos doesn't add up.\\n\\n2\\n00:00:17,000 --> 00:00:21,000\\nFirst in galaxy clusters and then within individual galaxies.\\n\\n3\\n00:00:21,000 --> 00:00:28,000\\nThey found that visible matter - stars, gas, and dust - cannot account for the motions they observe.\\n\\n4\\n00:00:28,000 --> 00:00:34,000\\nNo one knows what this missing mass, now called dark matter, actually is.\\n\\n5\\n00:00:34,000 --> 00:00:41,000\\nBut studies by NASA's WMAP spacecraft of the cosmic microwave background, the oldest light in the Universe, show how much is out there.\\n\\n6\\n00:00:41,000 --> 00:00:46,000\\nDark matter outnumbers ordinary matter by four to one.\\n\\n7\\n00:00:46,000 --> 00:00:55,000\\nThe WMAP results also hint that dark matter likely takes the form of an as yet undiscovered subatomic particle.\\n\\n8\\n00:00:55,000 --> 00:01:05,000\\nWIMPs represent one hypothesized class of these particles. They neither absorb nor emit light, and don't interact strongly with other particles.\\n\\n9\\n00:01:05,000 --> 00:01:09,000\\nBut when they encounter each other, they annihilate and make gamma rays.\\n\\n10\\n00:01:09,000 --> 00:01:14,000\\nThat's where NASA's Fermi Gamma Ray Telescope comes in. \\n\\n11\\n00:01:14,000 --> 00:01:21,000\\nTwo years of scanning the sky with Fermi's Large Area Telescope have set the strongest limits yet for WIMP dark matter.\\n\\n12\\n00:01:21,000 --> 00:01:29,000\\nThe best place to look for gamma ray dark matter annihilation? The most boring galaxies around, called dwarf spheroidals.\\n\\n13\\n00:01:29,000 --> 00:01:38,000\\nThese faint, tiny galaxies contain impressive amounts of dark matter. But they contain no gamma ray emitting objects, and little gas or star formation.\\n\\n14\\n00:01:38,000 --> 00:01:46,000\\nIn the currently accepted cosmology the first structures formed as the gravitation of dark matter corraled normal matter.\\n\\n15\\n00:01:46,000 --> 00:01:53,000\\nSimulations show that the largest structures formed in this way were comparable to the dwarf spheroidal galaxies we see today.\\n\\n16\\n00:01:53,000 --> 00:01:59,000\\nIt's thought that the large galaxies, like our own, were built of from collisions among these dwarfs.\\n\\n17\\n00:02:00,000 --> 00:02:08,000\\nUsing two years of data Fermi scientists explored ten dwarf galaxies for any sign of gamma rays from WIMP annihilation.\\n\\n18\\n00:02:08,000 --> 00:02:16,000\\nIn this graph the dashed line marks the sweet spot where conventional expectations for WIMP dark matter align with what we know about our universe.\\n\\n19\\n00:02:16,000 --> 00:02:24,000\\nEven when scientists combine all of the Fermi data from all ten of the dwarfs they see no sign of gamma rays.\\n\\n20\\n00:02:24,000 --> 00:02:34,000\\nThis limit shrinks the box where WIMP-based dark matter may be found, and for the first time shows that the cosmology we know essentially eliminates some WIMP types.\\n\\n21\\n00:02:35,000 --> 00:02:47,000\\nThe longer Fermi operates, the better its ability to either box in the nature of dark matter or to find actual evidence of what it is. And the discovery of more dwarf galaxies will make this search even more sensitive.\\n\\n22\\n00:02:48,000 --> 00:02:55,000\\nAlthough nondescript, dwarf spheroidal galaxies may have been the first large structures to form in the Universe.\\n\\n23\\n00:02:55,000 --> 00:03:02,000\\nNow they've taken center-stage in the drama to solve one of astronomy's greatest mysteries.\",\n", + " 'bytes': 3394,\n", + " 'sha1': '7sbx1n5n1lt2xpgm3m3vm91envm9bvs',\n", + " 'parent_id': 122460593,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 91970486,\n", + " 'timestamp': '2013-03-05T02:18:30Z',\n", + " 'user': {'id': 568922, 'text': 'Raylton P. Sousa'},\n", + " 'page': {'id': 24987286,\n", + " 'title': 'The State of Wikipedia by JESS3.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1 00:00:01,114 --> 00:00:05,414 (O estado da Wikipédia)\\n\\n<!--1.1 00:00:05,414 --*> 00:00:06,414 (Narrador: Jimmy Wales, fundador da Wikipedia) --> \\n\\n2 00:00:06,414 --> 00:00:08,000 (Wikipedia, a enciclopédia livre)\\n\\n3 00:00:08,000 --> 00:00:11,100 A Wikipédia é um dos sites mais importantes na Internet nos dias atuais\\n\\n4 00:00:11,100 --> 00:00:16,000 mas você pode se surpreender ao saber que começou como um projeto secundário de outra enciclopédia online.\\n\\n5 00:00:16,000 --> 00:00:22,300 Era chamada de Nupedia, pretendia ser uma enciclopédia tradicional escrita por especialistas\\n\\n6 00:00:22,300 --> 00:00:27,500 gratuito e online - mas apenas uma pessoa tinha autoridade sobre a publicação final e nunca decolou completamente.\\n\\n7 00:00:30,000 --> 00:00:36,300 Como o fundador da Nupedia, eu liderei uma equipe para estabalecer um time de exploração de tipos de artigos potenciais para Nupedia.\\n\\n8 00:00:36,300 --> 00:00:42,500 Nós usamos uma nova plataforma de software para tornar a colaboração mais fácil - a wiki - Wikipedia.\\n\\n9 00:00:45,000 --> 00:00:48,500 Ela se tornou a maneira perfeita de escrever muitas páginas, muito rapidamente.\\n\\n10 00:00:48,500 --> 00:00:52,900 Muito em breve, Nupedia não poderia mais manter-se e a Wikipedia tomaria o centro do palco.\\n\\n11 00:00:53,100 --> 00:00:58,700 Estávamos criando não apenas uma enciclopédia de conteúdo livre, mas uma \"enciclopédia livre que todos podem editar\".\\n\\n12 00:00:58,800 --> 00:01:04,500 Versões em outros idiomas apareceram rapidamente - mais de 270 na última contagem\\n\\n13 00:01,04,600 --> 00:01:08,900 E logo em seguida projetos irmãos como Wikisource, Wikinotícias e Wikcionário.\\n\\n14 00:01:08,900 --> 00:01:15,200 Em 2003, eu criei a Fundação Wikimedia para garantir que a Wikipedia poderia manter o seu próprio crescimento.\\n15 00:01:15,200 --> 00:01:18,800 Wikipedia recebe quase 400 milhões de visitantes a cada mês\\n\\n16 00:01:18,900 --> 00:01:22,200 e a lista de sites visitados com mais frequência é muito curta e muito famosa.\\n\\n17 00:01:22,300 --> 00:01:27,950 A Wikipedia comemora seu décimo aniversário em janeiro de 2011\\n\\n18 00:01:28,000 --> 00:01:31,500 e nestes 10 anos tornou-se um dos sites mais populares do mundo.\\n\\n19 00:01:31,500 --> 00:01:37,400 Eu ainda conduzo a comunidade e a Fundação Wikimedia a nos ajudar a fazer Wikipedia que ela é hoje.\\n\\n20 00:01:37,500 --> 00:01:39,300 Quem edita a Wikipedia?\\n\\n21 00:01:39,350 --> 00:01:44,000 Ao longo do tempo, aproximadamente 1,2 milhões de pessoas editaram a Wikipedia.\\n\\n22 00:01:44,000 --> 00:01:49,990 Até 2010, existiam mais de 11 milhões de edições mensais em todas Wikipédias em todos os idiomas.\\n\\n23 00:01:50,000 --> 00:01:55,200 De acordo com uma pesquisa, temos cerca de duas vezes mais doutores em comparação ao público em geral.\\n\\n24 00:01:55,300 --> 00:02:03,200 Na Wikipédia em Inglês quase 50% não têm religião e 14,6% dos editores franceses afirmam crer em Pastafarianismo.\\n\\n25 00:02:03,300 --> 00:02:06,100 Seria justo dizer que a maioria dos wikipedistas não editam habitualmente.\\n\\n26 00:02:06,200 --> 00:02:11,300 Um dos motivos, talvez, é que a editar uma única página é fácil, mas ficar muito envolvido é mais difícil.\\n\\n27 00:02:11,400 --> 00:02:16,400 A comunidade é definida por mais de 200 políticas, recomendações e ensaios combinados.\\n\\n28 00:02:16,400 --> 00:02:20,100 para não falar das discussões e comentários, comitês e avisos,\\n\\n29 00:02:20,100 --> 00:02:21,400 WikiProjetos e muito mais.\\n\\n30 00:02:21,500 --> 00:02:25,350 Todo conteúdo publicado no site é decidido por colaboradores voluntários da Wikipedia.\\n\\n31 00:02:25,350 --> 00:02:28,900 A Fundação Wikimedia não tem nenhum papel editorial.\\n\\n32 00:02:29,800 --> 00:02:33,400 O trabalho da Fundação é manter os servidores funcionando e as luzes acesas, mas há mais do que isso.\\n\\n33 00:02:33,400 --> 00:02:36,300 A Fundação também está crescendo presença da Wikipedia no mundo\\n\\n34 00:02:36,400 --> 00:02:43,200 mais centros de armazenamento de dados para acelerar a Wikipedia no mundo todo e até mesmo trazendo seu primeiro escritório fora dos Estados Unidos, para a Índia.\\n\\n35 00:02:43,300 --> 00:02:46,800 Wikipedia já é muito popular no Ocidente e no Norte.\\n\\n36 00:02:46,800 --> 00:02:50,700 Um novo desafio vai ser fazer Wikipedia disponível para o mundo em desenvolvimento também.\\n\\n37 00:02:50,750 --> 00:02:54,500 A Fundação é uma organização não governamental e funciona inteiramente com doações.\\n\\n38 00:02:54,600 --> 00:03:00,200 algumas vem de empresas e corporações, mas a grande maioria de seus milhões de editores e leitores.\\n\\n39 00:03:00,200 --> 00:03:05,300 O que já foi realizado é increditável, mas a Wikipedia está longe de estar completa.\\n\\n40 00:03:05,300 --> 00:03:09,500 Como qualquer leitor sabe, alguns artigos são muito bons, mas alguns não são.\\n\\n41 00:03:09,600 --> 00:03:11,200 Wikipedia ainda precisa de muito trabalho.\\n\\n42 00:03:11,300 --> 00:03:13,500 Contudo, este é um novo desafio.\\n\\n43 00:03:13,500 --> 00:03:17,400 Não apenas construir uma enciclopédia do zero, mas torná-la melhor\\n\\n44 00:03:17,400 --> 00:03:22,500 mais precisa, mais confiável. Não apenas ampla, mas profunda.\\n\\n45 00:03:22,650 --> 00:03:27,000 Nunca houve nada parecido com a Wikipedia antes, e seu horizonte futuro é muito, muito distante.\\n\\n46 00:03:27,100 --> 00:03:31,300 Como a Wikipedia entra em sua segunda década, cabe a todos nós, ter certeza que ficará ainda melhor.\\n\\n47 00:03:27,300 --> 00:03:35,000 (Wikipedia, a enciclopédia livre)\\n\\n<!-- 47.1 00:03:36,200 --*> 00:03:37,200 (Narrado por Jimmy Wales, fundador da Wikipedia.) -->\\n\\n<!-- 47.2 00:03:37,200 --*> 00:03:38,200 (Dirigido por Jesse Thomas.) -->\\n\\n48 00:03:39,000 --> 00:03:41,500 (A JESS3 Production)',\n", + " 'bytes': 5815,\n", + " 'sha1': '8qxc1quzwo53viyaol9m477o2emtcei',\n", + " 'parent_id': 91969571,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92023370,\n", + " 'timestamp': '2013-03-05T22:57:23Z',\n", + " 'user': {'text': '216.38.130.163'},\n", + " 'page': {'id': 24999298,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'start page',\n", + " 'text': \"\\n1\\n00:00:00,800 --> 00:00:03,500\\nHi! I'm Trevor, and I'm helping to build a VisualEditor for Wikipedia.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nAnyone can edit Wikipedia, but most who try are easily confused\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\nbecause Wikipedia's old code is pretty hard to understand.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nIt was awesome when we created it twelve years ago,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nbut if we're going to get the sum of all human knowledge to everyone,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\nwe've got to make it easier to share.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nVisualEditor is the biggest change to Wikipedia we've ever made.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nIt makes writing on Wikipedia like writing a paper for class or sending an email.\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nIt's still a little buggy,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nbut if you want a sneak peek at how Wikipedia is going to work in the near future,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\nCreate an account on English Wikipedia.\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nGo to your preferences, and turn on the Alpha Version of the VisualEditor.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nYou can even help us by using it, and then sending us feedback.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nSo please, join us in making the sum of all human knowledge easier to share.\",\n", + " 'bytes': 1333,\n", + " 'sha1': '309b1r0twqixuglfv7epohmq6jq0lqk',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 431883556,\n", + " 'timestamp': '2020-07-08T19:42:27Z',\n", + " 'user': {'id': 2073340, 'text': 'Jdx'},\n", + " 'page': {'id': 25013925,\n", + " 'title': 'TSA- How It Works.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/177.249.194.106|177.249.194.106]] ([[User talk:177.249.194.106|talk]]) to last revision by 81.36.189.211',\n", + " 'text': '1\\n00:00:00 --> 00:00:04,12\\n\\n\\nAdvanced imaging technology enhances security by detecting both metallic and non-metallic threat items concealed under layers of clothing. With advanced imaging technology like this one TSA is able to proactively stay ahead of evolving threats to ensure your safety.\\n. \\nTSA currently uses two types of imaging technology. One type – millimeter wave – uses electromagnetic waves to generate a black and white image similar to a fuzzy image negative. The other type – backscatter – uses, low level X-ray to create an image that resembles a chalk etching. Both technologies produce an image in seconds.\\n\\nImaging Technology also reduces the need for additional screening while protecting your privacy.\\n\\nImaging Technology looks for any items metallic and non-metallic that may be anywhere on the body. Before going through this technology, we strongly recommend removing ALL items from your pockets and certain accessories that you might be wearing, including your wallet, belt, bulky jewelry, money, keys, and cell phone. Removing all of these items will reduce your chances of needing additional screening after you exit the machine. \\n\\nThe officer who looks at your images cannot see you. So any irregularity that appears on the screen will require inspection to determine what it is. To avoid the chance of leaving any of your personal items behind, we recommend that you place them in your carry-on bag prior to entering the checkpoint.\\n\\nThis technology is optional for all passengers. If a passenger prefers, they can opt for alternative screening. At airports, TSA posts multiple signs informing passengers about how the technology works. \\n\\nAgain, this technology is optional, but many passengers prefer to pass through it, versus receiving alternative screening. In fact, in TSA pilots, over 98 percent of passengers who are presented the option prefer it over other types of screening.\\n\\nThe officer who assists the passenger at the machine never sees the images the technology produces. The image is evaluated for security by a second officer who is remotely located in a secure resolution room and would never see the passenger.\\n\\nA privacy filter is applied to blur all images to protect the passenger identity. This technology cannot store, print, transmit or save images. In fact all machines are delivered to the airport with this functions disabled.\\n\\nMillimeter wave units emit thousands of times less energy than a regular cell phone. \\n\\nThe radiation received from screening with the current TSA backscatter technology is less than the radiation received from two minutes of flight in an airplane. \\n\\nThe dose limits are set to protect all members of the public, which include individuals who may be more susceptible to radiation-induced health effects, such as pregnant women, children, and persons receiving radiation treatment for medical conditions.\\n\\nYour Safety is Our Priority\\nAdvanced imaging technology is just one of TSA’s many layers of security – all of them working to protect our nation’s transportation system and keep you secure while you fly. Your safety is our priority.',\n", + " 'bytes': 3147,\n", + " 'sha1': '1554yfivezbin1bdrx2ouqf1sbicja8',\n", + " 'parent_id': 424761110,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92224145,\n", + " 'timestamp': '2013-03-08T14:47:40Z',\n", + " 'user': {'text': '88.236.75.53'},\n", + " 'page': {'id': 25035837,\n", + " 'title': 'En-us-could.ogg.tr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01\\nOlabilir.',\n", + " 'bytes': 37,\n", + " 'sha1': '3o7fq4f56lgbvk65a6u6hbw2osw89bm',\n", + " 'parent_id': 92224118,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94142094,\n", + " 'timestamp': '2013-04-07T17:49:43Z',\n", + " 'user': {'id': 74418, 'text': 'KRLS'},\n", + " 'page': {'id': 25051594,\n", + " 'title': 'Editing basics - Uploading and adding images.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'tipo',\n", + " 'text': '1\\n00:00:01,000 --> 00:00:06,500\\nEsta presentación enseña los pasos básicos para subir imágenes en Wikimedia Commons \\n\\n2\\n00:00:06,700 --> 00:00:09,200\\ny añadirlas en los artículos de Wikipedia.\\n\\n3\\n00:00:09,400 --> 00:00:13,500\\nCoge este artículo, por ejemplo: \"Lente secundaria\".\\n\\n4\\n00:00:13,700 --> 00:00:18,500\\nEs un tema sobre la fotografía que no tiene ninguna foto. ¡Vamos a arreglar esto!\\n\\n5\\n00:00:18,700 --> 00:00:21,500\\nVamos a usar una imagen original que hice yo.\\n\\n6\\n00:00:21,700 --> 00:00:24,000\\nPara añadirla al artículo tenemos que subirla\\n\\n7\\n00:00:24,100 --> 00:00:26,200\\nen Wikimedia Commons.\\n\\n8\\n00:00:26,500 --> 00:00:27,200\\nEmpecemos por el principio.\\n\\n9\\n00:00:27,400 --> 00:00:31,000\\nWikimedia Commons es solo para obras originales hechas por ti,\\n\\n10\\n00:00:31,300 --> 00:00:36,000\\nobras de otras personas que fueron liberadas explícitamente bajo una licencia compatible con Wikipedia\\n\\n11\\n00:00:36,300 --> 00:00:40,500\\nu obras que están en el dominio público y que no están cubiertas por ningún derecho de autor.\\n\\n12\\n00:00:40,800 --> 00:00:42,000\\nPara subir un archivo,\\n\\n11\\n00:00:42,300 --> 00:00:45,000\\nve a commons.wikimedia.org.\\n\\n12\\n00:00:45,300 --> 00:00:48,000\\nAsegúrate de iniciar sesión si aún no lo hiciste.\\n\\n13\\n00:00:48,300 --> 00:00:50,300\\nUsarás la misma cuenta que tienes en Wikipedia.\\n\\n14\\n00:00:51,000 --> 00:00:53,600\\nPara empezar, ve al Asistente de subidas\\n\\n15\\n00:00:53,800 --> 00:00:56,800\\nhaciendo clic en el enlace \"Subir un archivo\" en la izquierda.\\n\\n16\\n00:00:57,000 --> 00:01:00,000\\nLa primera página del asistente es un cómico, ¡presentando a Puzzly!,\\n\\n17\\n00:01:00,300 --> 00:01:04,000\\nque enseña lo que está permitido en Commons y lo que no.\\n\\n18\\n00:01:04,300 --> 00:01:08,000\\nDebajo del cómic, haz clic en el botón \"Siguiente\" para pasar a la siguiente página de carga.\\n\\n19\\n00:01:08,300 --> 00:01:14,000\\nHaciendo clic en \"Selecciona un archivo multimedia para compartilo\" podrás seleccionar en tu ordenador el archivo que quieras subir.\\n\\n20\\n00:01:14,300 --> 00:01:18,000\\nUna vez subido, podrás seleccionar la licencia con la que quieres compartir el archivo.\\n\\n21\\n00:01:18,300 --> 00:01:22,000\\nSi la obra es tuya, solo tienes que poner tu nombre o nombre de usuario,\\n\\n22\\n00:01:22,300 --> 00:01:25,600\\nsiempre que quieras que se muestre tu nombre de usuario cuando alguien use tu imagen,\\n\\n23\\n00:01:25,800 --> 00:01:27,000\\ny haz clic en \"Siguiente\".\\n\\n24\\n00:01:27,300 --> 00:01:30,500\\nAhora es el momento de escribir el título y la descripción de la imagen.\\n\\n25\\n00:01:30,700 --> 00:01:31,500\\nPara el título\\n\\n26\\n00:01:31,700 --> 00:01:34,500\\nusa algo conciso, descriptivo\\n\\n27\\n00:01:34,700 --> 00:01:37,700\\ny que sea lo suficientemente específico para diferenciarlo de imágenes similares.\\n\\n28\\n00:01:37,900 --> 00:01:39,500\\nPara la descripción\\n\\n29\\n00:01:39,700 --> 00:01:42,000\\nañade todos los detalles que puedas:\\n\\n30\\n00:01:42,200 --> 00:01:44,500\\ndónde y cómo se hizo la imagen;\\n\\n31\\n00:01:44,700 --> 00:01:46,500\\ncual es el tema de la imagen;\\n\\n32\\n00:01:46,700 --> 00:01:49,000\\ny todos los detalles que puedan querer saber las personas que ven esa imagen.\\n\\n33\\n00:01:49,300 --> 00:01:53,000\\nTambién puedes añadir la imagen a una o más categorías de Wikimedia Commons.\\n\\n33\\n00:01:53,300 --> 00:01:58,000\\nIntenta buscar imágenes similares para encontrar las categorías apropiadas.\\n\\n34\\n00:01:58,300 --> 00:02:00,500\\nEn este punto, al hacer clic en \"Siguiente\" completarás la subida\\n\\n35\\n00:02:00,700 --> 00:02:05,000\\ny la imagen estará disponible para usarla en Wikipedia.\\n\\n36\\n00:02:05,300 --> 00:02:07,000\\nEn la última página del asistente encontrarás\\n\\n37\\n00:02:07,300 --> 00:02:10,000\\nel código para añadir la imagen a un artículo de Wikipedia\\n\\n38\\n00:02:10,300 --> 00:02:13,000\\ny una dirección URL para acceder a la página de archivo,\\n\\n39\\n00:02:13,300 --> 00:02:17,000\\ndonde puedes editar la descripción o subir nuevas versiones del archivo.\\n\\n40\\n00:02:17,300 --> 00:02:19,500\\nPodes copiar el código wiki \\n\\n41\\n00:02:19,700 --> 00:02:21,000\\ny pegarlo en el artículo,\\n\\n42\\n00:02:21,300 --> 00:02:23,500\\ny después añadir un pie de foto.\\n\\n43\\n00:02:23,700 --> 00:02:27,000\\nEl formato básico para poner una imagen en un artículo es este:\\n\\n44\\n00:02:27,300 --> 00:02:29,200\\ndos corchetes de apertura, luego \\n\\n45\\n00:02:29,400 --> 00:02:31,200\\nel nombre del archivo, después\\n\\n46\\n00:02:31,400 --> 00:02:36,200\\nuna barra vertical y la palabra \"miniatura\" o \"thumb\" (que hace que la imagen se muestre en el formato estándar)\\n\\n47\\n00:02:36,500 --> 00:02:37,500\\nluego otra barra vertical,\\n\\n48\\n00:02:37,700 --> 00:02:39,000\\ny después el pie de foto,\\n\\n47\\n00:02:39,200 --> 00:02:43,000\\nque debe tener una conexión clara con el texto del artículo,\\n\\n47\\n00:02:43,200 --> 00:02:46,000\\ny después dos corchetes de cierre.\\n\\n48\\n00:02:46,200 --> 00:02:48,000\\nUna vez añadida la imagen,\\n\\n49\\n00:02:48,200 --> 00:02:50,000\\npon un resumen de edición y guarda la página,\\n\\n50\\n00:02:50,200 --> 00:02:51,500\\n¡y ya está!\\n\\n51\\n00:02:51,700 --> 00:02:54,000\\nYa hemos añadido una nueva imagen a Wikipedia.\\n\\n52\\n00:02:54,500 --> 00:02:57,000\\n¡Gracias! ¡Adiós!',\n", + " 'bytes': 5120,\n", + " 'sha1': 'hx5x8cy04b4zwqc1x185hlp58qt1qg7',\n", + " 'parent_id': 92292377,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 627923763,\n", + " 'timestamp': '2022-02-05T15:39:31Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25057551,\n", + " 'title': 'Mohamed Atta to ATC-2.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments, new text division for better readability',\n", + " 'text': \"1\\n00:00:00,050 --> 00:00:02,236\\nMohamed Atta: Nobody move, please.\\n\\n2\\n00:00:02,269 --> 00:00:04,473\\nWe are going back to the airport.\\n\\n3\\n00:00:05,011 --> 00:00:07,537\\nDon't try to make any stupid moves.\",\n", + " 'bytes': 202,\n", + " 'sha1': 'nzm9j2ydp8btol7gxhmcy1z1l82yhw4',\n", + " 'parent_id': 622111064,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 589350407,\n", + " 'timestamp': '2021-09-07T02:27:54Z',\n", + " 'user': {'text': '122.150.93.142'},\n", + " 'page': {'id': 25071706,\n", + " 'title': 'Neil Armstrong, small step for man (reversed).ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00 --> 00:00:02\\nSmall step for man\\n\\n2\\n00:00:02 --> 00:00:04\\nMan will spacewalk',\n", + " 'bytes': 86,\n", + " 'sha1': 'en3iqizgzpz5llx6hj71pldhtt1klme',\n", + " 'parent_id': 362656346,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92400993,\n", + " 'timestamp': '2013-03-11T14:50:02Z',\n", + " 'user': {'id': 1547075, 'text': 'Illegitimate Barrister'},\n", + " 'page': {'id': 25076725,\n", + " 'title': 'Pronunciation of \"Gaithersburg\" (city in Maryland).ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:00,850\\nGaithersburg',\n", + " 'bytes': 44,\n", + " 'sha1': '5mogalklqfxnghgtaw2z0xa575y8lfa',\n", + " 'parent_id': 92400588,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 378696111,\n", + " 'timestamp': '2019-12-01T21:32:22Z',\n", + " 'user': {'id': 1547075, 'text': 'Illegitimate Barrister'},\n", + " 'page': {'id': 25090730,\n", + " 'title': 'Star Spangled Banner instrumental.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:03,500\\nO say, can you see\\n\\n2\\n00:00:03,555 --> 00:00:07,700\\nby the dawn's early light\\n\\n3\\n00:00:07,900 --> 00:00:12,000\\nWhat so proudly we hailed\\n\\n4\\n00:00:12,500 --> 00:00:16,100\\nat the twilight's last gleaming?\\n\\n5\\n00:00:16,600 --> 00:00:20,400\\nWhose broad stripes and bright stars\\n\\n6\\n00:00:20,900 --> 00:00:24,600\\nthrough the perilous fight,\\n\\n7\\n00:00:25,100 --> 00:00:28,900\\nO'er the ramparts we watched,\\n\\n8\\n00:00:29,400 --> 00:00:33,200\\nwere so gallantly streaming?\\n\\n9\\n00:00:33,700 --> 00:00:37,500\\nAnd the rockets' red glare,\\n\\n10\\n00:00:37,500 --> 00:00:40,000\\nthe bombs bursting in air,\\n\\n11\\n00:00:40,000 --> 00:00:45,000\\nGave proof through the night\\n\\n12\\n00:00:45,000 --> 00:00:49,000\\nthat our flag was still there;\\n\\n13\\n00:00:49,000 --> 00:00:55,700\\nO say does that star-spangled\\n\\n14\\n00:00:56,200 --> 00:01:00,000\\nbanner yet wave,\\n\\n15\\n00:01:00,000 --> 00:01:06,000\\nO'er the land of the free\\n\\n16\\n00:01:06,000 --> 00:01:16,500\\nand the home of the brave?\",\n", + " 'bytes': 976,\n", + " 'sha1': '4vhktmxqkzj8o85tqj00yoxgeqszv3z',\n", + " 'parent_id': 378696051,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 418844272,\n", + " 'timestamp': '2020-05-12T21:47:36Z',\n", + " 'user': {'id': 9105228, 'text': 'EnjoyYourLifeYouLive'},\n", + " 'page': {'id': 25097641,\n", + " 'title': 'Himno Nacional Mexicano instrumental.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Deleted tripe apostrophes, same place as previous edit',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,400\\nMexicanos, al grito de guerra\\n\\n2\\n00:00:04,600 --> 00:00:08,800\\nel acero aprestad y el bridón,\\n\\n3\\n00:00:09,000 --> 00:00:13,200\\ny retiemble en sus centros la tierra\\n\\n4\\n00:00:13,400 --> 00:00:17,800\\nal sonoro rugir del cañón.\\n\\n5\\n00:00:19,000 --> 00:00:22,800\\nY retiemble en sus centros la tierra\\n\\n6\\n00:00:23,000 --> 00:00:27,200\\nal sonoro rugir del cañón.\\n\\n7\\n00:00:27,400 --> 00:00:31,000\\nCiña ¡Oh, Patria! tus sienes de oliva\\n\\n8\\n00:00:31,800 --> 00:00:37,000\\nde la paz el arcángel divino,\\n\\n9\\n00:00:37,200 --> 00:00:41,800\\nque en el cielo tu eterno destino\\n\\n10\\n00:00:42,000 --> 00:00:46,800\\npor el dedo de Dios se escribió:\\n\\n11\\n00:00:47,000 --> 00:00:51,200\\nMás si osare un extraño enemigo\\n\\n12\\n00:00:51,600 --> 00:00:56,400\\nprofanar con su planta tu suelo,\\n\\n13\\n00:00:56,800 --> 00:01:01,600\\npiensa ¡Oh Patria querida! que el cielo\\n\\n14\\n00:01:01,800 --> 00:01:03,400\\nun soldado en cada hijo te dió.\\n\\n15\\n00:01:04,000 --> 00:01:09,800\\n<b>¡Un soldado en cada hijo te dió!</b>\\n\\n16\\n00:01:11,200 --> 00:01:15,800\\nMexicanos, al grito de guerra\\n\\n17\\n00:01:16,000 --> 00:01:20,000\\nel acero aprestad y el bridón,\\n\\n18\\n00:01:20,200 --> 00:01:24,800\\ny retiemble en sus centros la tierra\\n\\n19\\n00:01:25,000 --> 00:01:28,200\\nal sonoro rugir del cañón.\\n\\n20\\n00:01:29,800 --> 00:01:34,400\\nY retiemble en sus centros la tierra\\n\\n21\\n00:01:34,800 --> 00:01:40,000\\nal sonoro rugir del cañón.',\n", + " 'bytes': 1413,\n", + " 'sha1': 'tpkbez2isbzcpw1hrcomts1gmyl050s',\n", + " 'parent_id': 418843346,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92534818,\n", + " 'timestamp': '2013-03-13T23:50:55Z',\n", + " 'user': {'id': 2291919, 'text': 'Cherus'},\n", + " 'page': {'id': 25110091,\n", + " 'title': 'Ru-30-буква-Ь.ogg.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with 'мягкий знак'\",\n", + " 'text': 'мягкий знак',\n", + " 'bytes': 21,\n", + " 'sha1': 'nmglxwu6brc9mu3uulht2pbljl9f7vo',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92534849,\n", + " 'timestamp': '2013-03-13T23:52:25Z',\n", + " 'user': {'id': 2291919, 'text': 'Cherus'},\n", + " 'page': {'id': 25110097,\n", + " 'title': 'Ru-28-буква-Ъ.ogg.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with 'твёрдый знак'\",\n", + " 'text': 'твёрдый знак',\n", + " 'bytes': 23,\n", + " 'sha1': '58tvayaxjaqo71qzfnwvsrt5nox6ke4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92543182,\n", + " 'timestamp': '2013-03-14T01:58:33Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25111079,\n", + " 'title': 'Eric Walter - voix.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 Hello, my name is Éric Walter, I was born in Paris, 2 00:00:05,200 --> 00:00:11,000 and I am the secretary general of Hadopi s...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nHello, my name is Éric Walter, I was born in Paris,\\n\\n2\\n00:00:05,200 --> 00:00:11,000\\nand I am the secretary general of Hadopi since 1 March 2010.',\n", + " 'bytes': 178,\n", + " 'sha1': '2na6cbz500k422ttze6dd0naq274a6p',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92553027,\n", + " 'timestamp': '2013-03-14T09:04:18Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25113596,\n", + " 'title': 'The movie ALMA — In Search of our Cosmic Origins.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'ENG SUB',\n", + " 'text': '1\\n00:00:05,000 --> 00:00:14,000\\nALMA\\n\\n2\\n00:00:15,000 --> 00:00:26,000\\nIn Search of Our Cosmic Origins\\n\\n3\\n00:00:36,500 --> 00:00:42,000\\nHigh on the desolate Chajnantor Plateau in the Chilean Andes.\\n\\n4\\n00:00:43,000 --> 00:00:45,000\\nOne of the harshest environments on Earth.\\n\\n5\\n00:00:45,500 --> 00:00:47,040\\nAmid volcanoes ...\\n\\n6\\n00:00:47,459 --> 00:00:49,000\\nDesert plains ...\\n\\n7\\n00:00:49,200 --> 00:00:50,690\\nAnd bitter winds ...\\n\\n8\\n00:00:51,000 --> 00:00:57,300\\nALMA — the Atacama Large Millimeter/sub-millimeter Array — is ready.\\n\\n9\\n00:01:07,000 --> 00:01:10,500\\nAstronomers and scientists all over the globe \\n\\n10\\n00:01:10,500 --> 00:01:15,000\\nhave been eagerly anticipating this moment for decades.\\n\\n11\\n00:01:15,190 --> 00:01:19,430\\nALMA is the world’s largest astronomical project. \\n\\n12\\n00:01:19,430 --> 00:01:22,620\\nBut it is not a conventional telescope. \\n\\n13\\n00:01:22,620 --> 00:01:26,640\\nInstead of collecting and analysing visible light \\n\\n14\\n00:01:26,640 --> 00:01:31,400\\nit looks in a different and largely unmapped part of the spectrum.\\n\\n15\\n00:01:40,240 --> 00:01:43,100\\nBy opening a new window on the cosmos,\\n\\n16\\n00:01:43,500 --> 00:01:50,760\\nALMA explores one of the last frontiers of astronomy — the cold and distant Universe.\\n\\n17\\n00:01:53,000 --> 00:01:58,950\\nAll in search of answers to some of the deepest questions about our cosmic origins.\\n\\n18\\n00:01:58,950 --> 00:02:01,600\\nHow do stars and planets form?\\n\\n19\\n00:02:01,600 --> 00:02:04,490\\nHow did the first galaxies form?\\n\\n20\\n00:02:07,000 --> 00:02:10,979\\nThe Chajnantor Plateau in North Chile. \\n\\n21\\n00:02:12,000 --> 00:02:17,640\\nDespite the — literally! — breath-taking altitude of 5000 metres above sea level,\\n\\n22\\n00:02:17,640 --> 00:02:20,220\\nALMA has flourished.\\n\\n23\\n00:02:20,220 --> 00:02:23,000\\nOver the last few years, \\n\\n24\\n00:02:23,000 --> 00:02:27,740\\nmore than 50 antennas have been installed across the high desert plain.\\n\\n25\\n00:02:29,060 --> 00:02:34,230\\nALMA is a unique, giant telescope built in a partnership\\n\\n26\\n00:02:34,230 --> 00:02:39,800\\nbetween Europe, North America and East Asia, in cooperation with Chile.\\n\\n27\\n00:02:41,320 --> 00:02:46,000\\nSixty-six state-of-the-art antennas will observe the Universe \\n\\n28\\n00:02:46,000 --> 00:02:49,160\\nat millimetre and submillimetre wavelengths \\n\\n29\\n00:02:50,500 --> 00:02:54,380\\n— one thousand times longer than visible wavelengths.\\n\\n30\\n00:02:55,920 --> 00:02:59,220\\nThis light reaches us from some of the coldest \\n\\n31\\n00:02:59,220 --> 00:03:02,780\\nand most distant objects in the Universe.\\n\\n32\\n00:03:04,160 --> 00:03:06,970\\nWater vapour in the atmosphere blocks \\n\\n33\\n00:03:06,970 --> 00:03:09,480\\nthese faint whispers from the hidden Universe,\\n\\n34\\n00:03:09,480 --> 00:03:15,500\\nso to collect them we have to go to to an extremely high and dry site \\n\\n35\\n00:03:15,500 --> 00:03:18,680\\n— like Chajnantor.\\n\\n36\\n00:03:24,610 --> 00:03:26,270\\nThe Birth of ALMA\\n\\n37\\n00:03:26,720 --> 00:03:30,550\\nThe origin of the ALMA project dates back decades.\\n\\n38\\n00:03:31,000 --> 00:03:35,090\\nScientists from Europe, North America and East Asia \\n\\n39\\n00:03:35,090 --> 00:03:39,490\\ndeveloped three individual concepts for new, large telescopes\\n\\n40\\n00:03:39,490 --> 00:03:42,920\\nfor millimetre and submillimetre observations. \\n\\n41\\n00:03:43,670 --> 00:03:47,680\\nEventually these concepts were merged into one.\\n\\n42\\n00:03:48,760 --> 00:03:53,080\\nBig science takes big global collaborations. \\n\\n43\\n00:03:53,080 --> 00:03:57,920\\nTogether countries can achieve what they cannot do alone.\\n\\n44\\n00:03:59,360 --> 00:04:03,960\\nThe whole is greater than the sum of its parts.\\n\\n45\\n00:04:04,290 --> 00:04:08,110\\nThe ALMA project was born!\\n\\n46\\n00:04:11,000 --> 00:04:14,760\\nFinding the Right Site\\n\\n47\\n00:04:20,279 --> 00:04:22,940\\nThis new telescope needed a home, \\n\\n48\\n00:04:22,940 --> 00:04:26,520\\nand eyes turned to Chajnantor.\\n\\n49\\n00:04:26,870 --> 00:04:31,600\\nEvery aspect of the site, from the astronomical to the meteorological, \\n\\n50\\n00:04:31,600 --> 00:04:35,720\\nwas thoroughly tested and the atmosphere monitored daily.\\n\\n51\\n00:04:35,840 --> 00:04:42,440\\nThe conclusion: Chajnantor was the perfect place for ALMA. \\n\\n52\\n00:04:46,640 --> 00:04:50,300\\nBreaking Ground\\n\\n53\\n00:04:51,500 --> 00:04:55,910\\nConstruction began in 2003 with the groundbreaking \\n\\n54\\n00:04:55,910 --> 00:04:58,770\\nfor ALMA’s Array Operations Site. \\n\\n55\\n00:05:06,920 --> 00:05:11,670\\nConditions here at an altitude of 5000 metres above sea level\\n\\n56\\n00:05:11,670 --> 00:05:14,620\\nare harsh and very challenging.\\n\\n57\\n00:05:16,860 --> 00:05:19,400\\nStrong winds.\\n\\n58\\n00:05:20,420 --> 00:05:22,880\\nLow temperatures.\\n\\n59\\n00:05:23,680 --> 00:05:26,540\\nIntense ultraviolet radiation.\\n\\n60\\n00:05:27,040 --> 00:05:30,080\\nAnd a desperately thin atmosphere.\\n\\n61\\n00:05:30,680 --> 00:05:35,290\\nSo thin that to work here people need supplementary oxygen\\n\\n62\\n00:05:35,290 --> 00:05:38,760\\nand have to undergo rigorous health checks.\\n\\n63\\n00:05:41,880 --> 00:05:46,460\\nForging the tools\\n\\n64\\n00:05:48,360 --> 00:05:51,440\\nThe production of ALMA’s antennas has been shared \\n\\n65\\n00:05:51,440 --> 00:05:53,680\\nbetween the three ALMA partners.\\n\\n66\\n00:05:55,140 --> 00:05:59,540\\nThree prototypes were put through their paces at the ALMA Test Facility, \\n\\n67\\n00:05:59,540 --> 00:06:03,440\\non the Very Large Array site, in the USA.\\n\\n68\\n00:06:05,030 --> 00:06:10,900\\nThe 66 antennas on the high plateau are a critical part of ALMA. \\n\\n69\\n00:06:12,240 --> 00:06:17,410\\nTheir big dishes collect the faint millimetre waves from space.\\n\\n70\\n00:06:17,480 --> 00:06:21,070\\nThese antennas are truly the state-of-the-art.\\n\\n71\\n00:06:22,740 --> 00:06:28,400\\nTheir surfaces are accurate to much less than the thickness of a sheet of paper.\\n\\n72\\n00:06:30,170 --> 00:06:37,360\\nThey can move precisely enough to pick out a golf ball at a distance of 15 kilometres.\\n\\n73\\n00:06:39,760 --> 00:06:45,320\\nAnd they must survive, exposed to the elements, on Chajnantor!\\n\\n74\\n00:06:58,470 --> 00:07:03,700\\nTwenty-five antennas have been provided by the European Southern Observatory,\\n\\n75\\n00:07:04,150 --> 00:07:08,220\\n25 by the US National Radio Astronomy Observatory, \\n\\n76\\n00:07:08,220 --> 00:07:13,800\\nand 16 by the National Astronomical Observatory of Japan.\\n\\n77\\n00:07:20,520 --> 00:07:22,620\\nIn a truly global endeavour, \\n\\n78\\n00:07:22,620 --> 00:07:27,700\\nthe antenna components were constructed in several locations around the world,\\n\\n79\\n00:07:27,700 --> 00:07:30,700\\nsent to Chile to be assembled \\n\\n80\\n00:07:44,360 --> 00:07:47,780\\nand then tested at the Operations Support Facility, \\n\\n81\\n00:07:47,780 --> 00:07:51,600\\nin readiness for their first time observing the sky.\\n\\n82\\n00:07:55,790 --> 00:07:58,420\\nLinking the First Antennas\\n\\n83\\n00:07:59,950 --> 00:08:04,930\\nThe first ALMA antenna was accepted and shortly thereafter \\n\\n84\\n00:08:04,930 --> 00:08:08,750\\ntwo antennas were successfully linked together. \\n\\n85\\n00:08:12,120 --> 00:08:16,410\\nDetectors in each antenna register the finest nuances \\n\\n86\\n00:08:16,410 --> 00:08:19,710\\nof the faint signals collected by the dishes.\\n\\n87\\n00:08:21,600 --> 00:08:25,040\\nThese detectors are the most sensitive of their kind\\n\\n88\\n00:08:25,040 --> 00:08:27,520\\nand are cooled using helium gas\\n\\n89\\n00:08:27,520 --> 00:08:31,280\\nto just four degrees above absolute zero.\\n\\n90\\n00:08:34,890 --> 00:08:37,100\\nReaching New Heights\\n\\n91\\n00:08:41,470 --> 00:08:44,750\\nThe first completed antenna makes its way \\n\\n92\\n00:08:44,750 --> 00:08:46,840\\nup to the Array Operations Site.\\n\\n93\\n00:08:48,160 --> 00:08:52,500\\nTwo custom-built transporter vehicles — Otto and Lore —\\n\\n94\\n00:08:52,500 --> 00:08:55,740\\nmove the 100-tonne antennas around.\\n\\n95\\n00:08:56,440 --> 00:08:59,580\\nOtto carefully climbs the winding road, \\n\\n96\\n00:08:59,580 --> 00:09:02,210\\ncarrying the high-tech antenna up\\n\\n97\\n00:09:02,210 --> 00:09:05,000\\nto its final home on the high plateau. \\n\\n98\\n00:09:06,260 --> 00:09:10,400\\nThis first antenna was soon joined by many more.\\n\\n99\\n00:09:14,220 --> 00:09:16,340\\nBeating Expectations\\n\\n100\\n00:09:18,240 --> 00:09:21,550\\nThe first observations using two, and then three\\n\\n101\\n00:09:21,550 --> 00:09:23,900\\nantennas in unison were made.\\n\\n102\\n00:09:24,950 --> 00:09:27,480\\nKey tests for the ALMA array.\\n\\n103\\n00:09:28,580 --> 00:09:31,400\\nAnd all passed with flying colours!\\n\\n104\\n00:09:35,230 --> 00:09:38,030\\nMillimetre and submillimetre wavelengths \\n\\n105\\n00:09:38,030 --> 00:09:41,750\\ngive astronomers a unique window on the Universe.\\n\\n106\\n00:09:42,540 --> 00:09:45,780\\nBut to see them with the sharpness astronomers need, \\n\\n107\\n00:09:45,780 --> 00:09:48,890\\na single-dish telescope would have to be \\n\\n108\\n00:09:48,890 --> 00:09:52,890\\nkilometres across (and impossible to build)!\\n\\n109\\n00:09:53,200 --> 00:09:57,250\\nInstead, ALMA uses 66 separate antennas\\n\\n110\\n00:09:57,250 --> 00:09:59,720\\nwhich can be spread out over the plain \\n\\n111\\n00:09:59,720 --> 00:10:03,700\\nwith separations of up to 16 kilometres.\\n\\n112\\n00:10:04,520 --> 00:10:08,210\\nThe antennas are linked and their signals combined. \\n\\n113\\n00:10:08,510 --> 00:10:13,960\\nThe result: one giant telescope as wide as the whole array, \\n\\n114\\n00:10:13,960 --> 00:10:19,500\\nobserving with unprecedented sensitivity and resolution.\\n\\n115\\n00:10:24,200 --> 00:10:27,080\\nMaking sense of these intertwined signals \\n\\n116\\n00:10:27,080 --> 00:10:31,440\\ntakes the highest-altitude supercomputer in the world.\\n\\n117\\n00:10:32,180 --> 00:10:35,040\\nWith 134 million processors, \\n\\n118\\n00:10:35,040 --> 00:10:39,400\\nperforming 17 quadrillion operations per second \\n\\n119\\n00:10:39,400 --> 00:10:42,860\\n— as many as the fastest supercomputer in the world —\\n\\n120\\n00:10:42,920 --> 00:10:45,840\\nthe ALMA correlator, on Chajnantor, \\n\\n121\\n00:10:45,840 --> 00:10:50,150\\ncombines and compares the signals from every antenna.\\n\\n122\\n00:10:56,430 --> 00:11:00,110\\nAs more and more antennas arrive at Chajnantor, \\n\\n123\\n00:11:00,110 --> 00:11:05,270\\nthe Operations Support Facility, the control centre of the observatory,\\n\\n124\\n00:11:05,270 --> 00:11:11,840\\ntakes shape at the slightly more hospitable altitude of 2900 metres.\\n\\n125\\n00:11:13,000 --> 00:11:15,960\\nThe site is busy around the clock.\\n\\n126\\n00:11:15,960 --> 00:11:18,260\\nOperating the telescope.\\n\\n127\\n00:11:18,260 --> 00:11:22,430\\nTesting and maintaining antennas and other equipment.\\n\\n128\\n00:11:23,590 --> 00:11:25,880\\nAnd home for the ALMA staff\\n\\n129\\n00:11:25,880 --> 00:11:29,550\\nduring their day- and night-shifts at the observatory.\\n\\n130\\n00:11:39,230 --> 00:11:41,670\\nSantiago Central Offices\\n\\n131\\n00:11:44,040 --> 00:11:46,840\\nIn the capital of the host nation, Chile,\\n\\n132\\n00:11:46,840 --> 00:11:50,760\\nthe ALMA Santiago Central Offices were built. \\n\\n133\\n00:11:53,470 --> 00:11:57,200\\nHere the technical, scientific and administrative staff \\n\\n134\\n00:11:57,200 --> 00:12:00,450\\nof the Joint ALMA Office is working.\\n\\n135\\n00:12:09,670 --> 00:12:11,560\\nProving Excellence\\n\\n136\\n00:12:14,320 --> 00:12:17,280\\nEven before the construction stage was complete,\\n\\n137\\n00:12:17,280 --> 00:12:20,630\\nthe first scientific observations began \\n\\n138\\n00:12:20,630 --> 00:12:23,120\\nwith a partial array of antennas.\\n\\n139\\n00:12:24,480 --> 00:12:27,400\\nALMA had opened its eyes! \\n\\n140\\n00:12:33,430 --> 00:12:36,220\\nThousands of scientists from around the world\\n\\n141\\n00:12:36,220 --> 00:12:41,200\\ncompeted to be among the lucky few to use the facilities first.\\n\\n142\\n00:12:43,560 --> 00:12:46,230\\nEven with just 16 antennas\\n\\n143\\n00:12:46,230 --> 00:12:51,000\\nALMA was already the most powerful telescope of its kind.\\n\\n144\\n00:12:57,610 --> 00:13:02,240\\nThe first scientific observations fulfilled everyone’s hopes.\\n\\n145\\n00:13:06,120 --> 00:13:08,020\\nThe Antennae Galaxies, \\n\\n146\\n00:13:08,020 --> 00:13:12,550\\na pair of colliding galaxies with dramatically distorted shapes.\\n\\n147\\n00:13:13,640 --> 00:13:17,070\\nVisible light can show us the stars in the galaxies,\\n\\n148\\n00:13:17,070 --> 00:13:21,600\\nbut ALMA reveals the clouds of cold, dense gas\\n\\n149\\n00:13:21,600 --> 00:13:24,660\\nfrom which new stars are born.\\n\\n150\\n00:13:30,320 --> 00:13:35,430\\nThe heart of the distinctive galaxy Centaurus A. \\n\\n151\\n00:13:35,430 --> 00:13:41,040\\nALMA peers through the opaque dust lanes that obscure its centre.\\n\\n152\\n00:13:45,960 --> 00:13:50,460\\nA view of the nearby star Fomalhaut provides clues \\n\\n153\\n00:13:50,460 --> 00:13:53,880\\nas to how planetary systems form and evolve.\\n\\n154\\n00:13:57,400 --> 00:14:01,610\\nCosmic dust grains found around a brown dwarf \\n\\n155\\n00:14:01,610 --> 00:14:03,450\\nsuggest that rocky planets \\n\\n156\\n00:14:03,450 --> 00:14:07,220\\nmight even be more common in our Universe than we thought.\\n\\n157\\n00:14:11,180 --> 00:14:14,320\\nSugar molecules, spotted around a young, \\n\\n158\\n00:14:14,320 --> 00:14:16,790\\nSun-like star for the first time: \\n\\n159\\n00:14:16,790 --> 00:14:20,720\\nthe building blocks of life in the right place, at the right time, \\n\\n160\\n00:14:20,720 --> 00:14:24,800\\nto be part of new planets forming around the star.\\n\\n161\\n00:14:29,330 --> 00:14:35,780\\nAn unexpected spiral structure in the material around the old star R Sculptoris \\n\\n162\\n00:14:35,780 --> 00:14:39,480\\nrevealed the secrets of this dying star.\\n\\n163\\n00:14:44,740 --> 00:14:46,950\\nVast streams of gas \\n\\n164\\n00:14:46,950 --> 00:14:48,480\\nflowing across a gap \\n\\n165\\n00:14:48,480 --> 00:14:52,140\\nin the disc of material around a young star.\\n\\n166\\n00:14:52,140 --> 00:14:55,200\\nA key stage in the birth of giant planets, \\n\\n167\\n00:14:55,200 --> 00:14:58,120\\nobserved for the first time.\\n\\n168\\n00:14:58,120 --> 00:15:02,800\\nAnd all this before the array was fully complete!\\n\\n169\\n00:15:05,240 --> 00:15:07,520\\nTowards New Horizons\\n\\n170\\n00:15:10,270 --> 00:15:13,830\\nALMA’s inauguration celebrates its coming of age. \\n\\n171\\n00:15:13,830 --> 00:15:16,340\\nThe journey has been a long one. \\n\\n172\\n00:15:16,340 --> 00:15:18,670\\nALMA has grown from an idea,\\n\\n173\\n00:15:18,670 --> 00:15:20,520\\nto a construction project, \\n\\n174\\n00:15:20,520 --> 00:15:22,960\\nto a fully operational observatory,\\n\\n175\\n00:15:22,960 --> 00:15:27,600\\nand to a truly global scientific partnership.\\n\\n176\\n00:15:36,750 --> 00:15:40,730\\nIn the serene and lonely beauty of the Chilean Atacama desert, \\n\\n177\\n00:15:40,730 --> 00:15:43,220\\nALMA is ready for the future. \\n\\n178\\n00:15:43,830 --> 00:15:46,440\\nBy using this marvellous telescope,\\n\\n179\\n00:15:46,440 --> 00:15:49,440\\nthe world’s astronomers will peer deep\\n\\n180\\n00:15:49,440 --> 00:15:52,600\\ninto the hidden secrets of the cosmos.\\n\\n181\\n00:15:53,040 --> 00:15:58,160\\nIn search of our own cosmic origins!\\n\\n182\\n00:16:03,680 --> 00:16:09,720\\nALMA\\n\\n183\\n00:16:18,240 --> 00:16:22,840\\nTo all those whose curiosity drives them to ask the biggest questions\\n\\n184\\n00:16:23,480 --> 00:16:28,930\\nTranscription by ESO; translation by —',\n", + " 'bytes': 14669,\n", + " 'sha1': 'so41ph4o9810n4bd3lsiaow5xmhowo6',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92553107,\n", + " 'timestamp': '2013-03-14T09:06:31Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25113635,\n", + " 'title': 'The movie ALMA — In Search of our Cosmic Origins.ogv.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'cs sub',\n", + " 'text': '1\\n00:00:05,000 --> 00:00:14,000\\nALMA\\n\\n2\\n00:00:15,000 --> 00:00:26,000\\nPátrání po našich kosmických kořenech\\n\\n3\\n00:00:36,500 --> 00:00:42,000\\nNa pusté náhorní plošině Chajnantor v chilských Andách\\n\\n4\\n00:00:43,000 --> 00:00:45,000\\nV jednou z nejdrsnějších míst na Zemi.\\n\\n5\\n00:00:45,500 --> 00:00:47,040\\nObklopena vulkány ...\\n\\n6\\n00:00:47,459 --> 00:00:49,000\\npouští ...\\n\\n7\\n00:00:49,200 --> 00:00:50,690\\nvystavena ostrým větrům ...\\n\\n8\\n00:00:51,000 --> 00:00:57,300\\nje připravena ALMA – Atacama Large Millimeter/sub-millimeter Array.\\n\\n9\\n00:01:07,000 --> 00:01:10,500\\nAstronomové a vědci z celé zeměkoule\\n\\n10\\n00:01:10,500 --> 00:01:15,000\\nnetrpělivě čekali na tento okamžik celá desetiletí.\\n\\n11\\n00:01:15,190 --> 00:01:19,430\\nALMA je největší astronomický projekt světa.\\n\\n12\\n00:01:19,430 --> 00:01:22,620\\nNení to však klasický dalekohled.\\n\\n13\\n00:01:22,620 --> 00:01:26,640\\nNamísto soustřeďování a analýzy viditelného světla\\n\\n14\\n00:01:26,640 --> 00:01:31,400\\nsleduje jiné, dosud většinou nezmapované části spektra.\\n\\n15\\n00:01:40,240 --> 00:01:43,100\\nDíky otevření nového okna do vesmíru\\n\\n16\\n00:01:43,500 --> 00:01:50,760\\nmůže ALMA zkoumat jedno z posledních neznámých astronomických území – chladný a vzdálený vesmír,\\n\\n17\\n00:01:53,000 --> 00:01:58,950\\naby hledala odpovědi na základní otázky týkající se našich kosmických kořenů.\\n\\n18\\n00:01:58,950 --> 00:02:01,600\\nJak vznikají hvězdy a planety?\\n\\n19\\n00:02:01,600 --> 00:02:04,490\\nJak se vytvořily první galaxie?\\n\\n20\\n00:02:07,000 --> 00:02:10,979\\nNáhorní plošina Chajnantor na severu Chile.\\n\\n21\\n00:02:12,000 --> 00:02:17,640\\nNavzdory výšce 5000 metrů nad mořem, která - doslova! - bere dech,\\n\\n22\\n00:02:17,640 --> 00:02:20,220\\nALMA úspěšně vyrostla.\\n\\n23\\n00:02:20,220 --> 00:02:23,000\\nBěhem posledních několika let\\n\\n24\\n00:02:23,000 --> 00:02:27,740\\nbylo na pouštní planinu instalováno více než 50 antén.\\n\\n25\\n00:02:29,060 --> 00:02:34,230\\nALMA je jedinečný obří teleskop vybudovaný v partnerství\\n\\n26\\n00:02:34,230 --> 00:02:39,800\\nmezi Evropu, severní Amerikou a východní Asií a ve spolupráci s Chile.\\n\\n27\\n00:02:41,320 --> 00:02:46,000\\nSoustava 66 nejmodernějších antén bude pozorovat vesmír\\n\\n28\\n00:02:46,000 --> 00:02:49,160\\nv milimetrových a submilimetrových vlnových délkách\\n\\n29\\n00:02:50,500 --> 00:02:54,380\\n- tisíckrát delších než má viditelné světlo.\\n\\n30\\n00:02:55,920 --> 00:02:59,220\\nToto záření k nám vysílají jedny z nejchladnějších\\n\\n31\\n00:02:59,220 --> 00:03:02,780\\na nejvzdálenějších objektů ve vesmíru.\\n\\n32\\n00:03:04,160 --> 00:03:06,970\\nVodní pára v atmosféře tento\\n\\n33\\n00:03:06,970 --> 00:03:09,480\\nslabý šum neviditelného vesmíru nepropouští.\\n\\n34\\n00:03:09,480 --> 00:03:15,500\\nChceme-li jej přijímat, musíme najít nějaké extrémně vysoko položené a suché místo\\n\\n35\\n00:03:15,500 --> 00:03:18,680\\n– jako je Chajnantor.\\n\\n36\\n00:03:24,610 --> 00:03:26,270\\nZrození projektu ALMA\\n\\n37\\n00:03:26,720 --> 00:03:30,550\\nPočátky projektu ALMA se datují do doby před desítkami let.\\n\\n38\\n00:03:31,000 --> 00:03:35,090\\nVědci z Evropy, severní Ameriky a východní Asie\\n\\n39\\n00:03:35,090 --> 00:03:39,490\\nvytvořili tři nezávislé koncepce nových velkých teleskopů\\n\\n40\\n00:03:39,490 --> 00:03:42,920\\npro pozorování v milimetrovém a submilimetrovém oboru.\\n\\n41\\n00:03:43,670 --> 00:03:47,680\\nNakonec byly tyto koncepce sloučeny dohromady.\\n\\n42\\n00:03:48,760 --> 00:03:53,080\\nVelká věda vyžaduje velkou globální spolupráci.\\n\\n43\\n00:03:53,080 --> 00:03:57,920\\nSpolečně mohou jednotlivé země dosáhnout toho, co by samy nedokázaly.\\n\\n44\\n00:03:59,360 --> 00:04:03,960\\nCelek je větší než součet jeho částí.\\n\\n45\\n00:04:04,290 --> 00:04:08,110\\nZrodil se projekt ALMA!\\n\\n46\\n00:04:11,000 --> 00:04:14,760\\nHledání správného místa\\n\\n47\\n00:04:20,279 --> 00:04:22,940\\nNový teleskop potřeboval svůj domov\\n\\n48\\n00:04:22,940 --> 00:04:26,520\\na oči všech se obrátily na Chajnantor.\\n\\n49\\n00:04:26,870 --> 00:04:31,600\\nVšechny aspekty stanoviště, od astronomických po meteorologické,\\n\\n50\\n00:04:31,600 --> 00:04:35,720\\nbyly důkladně testovány, atmosféra byla monitorována denně.\\n\\n51\\n00:04:35,840 --> 00:04:42,440\\nZávěr: Chajnantor je pro observatoř ALMA ideální místo.\\n\\n52\\n00:04:46,640 --> 00:04:50,300\\nZákladní kámen\\n\\n53\\n00:04:51,500 --> 00:04:55,910\\nStavba začala v roce 2003 položením základního kamene\\n\\n54\\n00:04:55,910 --> 00:04:58,770\\nna tzv. Operačním stanovišti ALMA.\\n\\n55\\n00:05:06,920 --> 00:05:11,670\\nPodmínky jsou tady ve výšce 5000 metrů nad mořem\\n\\n56\\n00:05:11,670 --> 00:05:14,620\\ndrsné a hodně náročné.\\n\\n57\\n00:05:16,860 --> 00:05:19,400\\nOstré větry.\\n\\n58\\n00:05:20,420 --> 00:05:22,880\\nNízké teploty.\\n\\n59\\n00:05:23,680 --> 00:05:26,540\\nIntenzivní UV záření.\\n\\n60\\n00:05:27,040 --> 00:05:30,080\\nA nesmírně řídký vzduch.\\n\\n61\\n00:05:30,680 --> 00:05:35,290\\nTak řídký, že lidé potřebují podpůrný kyslík\\n\\n62\\n00:05:35,290 --> 00:05:38,760\\na musí podstupovat přísné zdravotní testy.\\n\\n63\\n00:05:41,880 --> 00:05:46,460\\nKonstrukce strojů\\n\\n64\\n00:05:48,360 --> 00:05:51,440\\nNa výrobě antén se podílí\\n\\n65\\n00:05:51,440 --> 00:05:53,680\\ntři partneři projektu ALMA.\\n\\n66\\n00:05:55,140 --> 00:05:59,540\\nTři prototypy byly vyzkoušeny na testovacím pracovišti\\n\\n67\\n00:05:59,540 --> 00:06:03,440\\nna observatoři VLA v USA.\\n\\n68\\n00:06:05,030 --> 00:06:10,900\\n66 antén na náhorní plošině představuje klíčovou část projektu ALMA.\\n\\n69\\n00:06:12,240 --> 00:06:17,410\\nJejich velké paraboly zachycují slabé milimetrové vlny přicházející z kosmu.\\n\\n70\\n00:06:17,480 --> 00:06:21,070\\nAntény představují skutečnou současnou špičku.\\n\\n71\\n00:06:22,740 --> 00:06:28,400\\nNerovnosti na jejich přesném povrchu jsou mnohem menší než tloušťka listu papíru.\\n\\n72\\n00:06:30,170 --> 00:06:37,360\\nJejich pohyb je tak přesný, že zaměří golfový míček na vzdálenost 15 km.\\n\\n73\\n00:06:39,760 --> 00:06:45,320\\nA musí snést podmínky, jimž je vystavuje Chajnantor!\\n\\n74\\n00:06:58,470 --> 00:07:03,700\\nEvropská jižní observatoř dodala 25 antén,\\n\\n75\\n00:07:04,150 --> 00:07:08,220\\ndalších 25 dodala americká Národní radioastronomická observatoř\\n\\n76\\n00:07:08,220 --> 00:07:13,800\\na 16 Japonská národní astronomická observatoř.\\n\\n77\\n00:07:20,520 --> 00:07:22,620\\nJe to skutečně globální úsilí,\\n\\n78\\n00:07:22,620 --> 00:07:27,700\\nčásti antén byly vyráběny v rozličných částech světa,\\n\\n79\\n00:07:27,700 --> 00:07:30,700\\ndopraveny ke kompletaci v Chile\\n\\n80\\n00:07:44,360 --> 00:07:47,780\\na poté testovány ve Středisku operační podpory\\n\\n81\\n00:07:47,780 --> 00:07:51,600\\naby byly připraveny na první pozorování oblohy.\\n\\n82\\n00:07:55,790 --> 00:07:58,420\\nPrvní spojení\\n\\n83\\n00:07:59,950 --> 00:08:04,930\\nKrátce po otestování a přijetí první antény ALMA\\n\\n84\\n00:08:04,930 --> 00:08:08,750\\nbyly mezi sebou propojeny dvě antény.\\n\\n85\\n00:08:12,120 --> 00:08:16,410\\nDetektory každé z antén zaznamenávají nejjemnější nuance\\n\\n86\\n00:08:16,410 --> 00:08:19,710\\nve slabém signálu zachyceném parabolami.\\n\\n87\\n00:08:21,600 --> 00:08:25,040\\nJde o nejcitlivější detektory tohoto druhu.\\n\\n88\\n00:08:25,040 --> 00:08:27,520\\nJsou chlazeny héliem na teplotu\\n\\n89\\n00:08:27,520 --> 00:08:31,280\\npouhých 4 stupňů nad absolutní nulou.\\n\\n90\\n00:08:34,890 --> 00:08:37,100\\nDobytí nových výšek\\n\\n91\\n00:08:41,470 --> 00:08:44,750\\nPrvní zkompletovaná anténa právě stoupá\\n\\n92\\n00:08:44,750 --> 00:08:46,840\\nna Operační stanoviště ALMA.\\n\\n93\\n00:08:48,160 --> 00:08:52,500\\nDva speciálně zkonstruované transportéry - Otto a Lore -\\n\\n94\\n00:08:52,500 --> 00:08:55,740\\nstěhují stotunové antény tam a zpět.\\n\\n95\\n00:08:56,440 --> 00:08:59,580\\nOtto opatrně stoupá serpentinami silnice\\n\\n96\\n00:08:59,580 --> 00:09:02,210\\na dopravuje hi-tech anténu\\n\\n97\\n00:09:02,210 --> 00:09:05,000\\ndo jejího nového domova na náhorní plošině,\\n\\n98\\n00:09:06,260 --> 00:09:10,400\\nPrvní anténu brzy následovaly další.\\n\\n99\\n00:09:14,220 --> 00:09:16,340\\nPřekonaná očekávání\\n\\n100\\n00:09:18,240 --> 00:09:21,550\\nPrvní pozorování s využitím dvou a poté tří\\n\\n101\\n00:09:21,550 --> 00:09:23,900\\nantén společně\\n\\n102\\n00:09:24,950 --> 00:09:27,480\\npředstavovala pro soustavu ALMA klíčový test.\\n\\n103\\n00:09:28,580 --> 00:09:31,400\\nA všechny prošly bez ztráty kytičky!\\n\\n104\\n00:09:35,230 --> 00:09:38,030\\nMilimetrové a submilimetrové vlny\\n\\n105\\n00:09:38,030 --> 00:09:41,750\\nposkytují astronomům jedinečné okno do vesmíru.\\n\\n106\\n00:09:42,540 --> 00:09:45,780\\nAle zobrazit je s ostrostí, jakou astronomové potřebují,\\n\\n107\\n00:09:45,780 --> 00:09:48,890\\nby vyžadovalo parabolickou anténu o průměru\\n\\n108\\n00:09:48,890 --> 00:09:52,890\\nněkolika kilometrů. A takovou nelze postavit!\\n\\n109\\n00:09:53,200 --> 00:09:57,250\\nALMA namísto toho využívá 66 antén,\\n\\n110\\n00:09:57,250 --> 00:09:59,720\\njež mohou být rozmístěny na náhorní plošině\\n\\n111\\n00:09:59,720 --> 00:10:03,700\\nve vzájemných vzdálenostech až 16 kilometrů.\\n\\n112\\n00:10:04,520 --> 00:10:08,210\\nAntény jsou propojeny a jejich signál se skládá dohromady.\\n\\n113\\n00:10:08,510 --> 00:10:13,960\\nVýsledek: obří dalekohled velký jako celá soustava,\\n\\n114\\n00:10:13,960 --> 00:10:19,500\\ns nevídanou citlivostí a rozlišovací schopností.\\n\\n115\\n00:10:24,200 --> 00:10:27,080\\nTyto vzájemně propojené signály činí srozumitelnými\\n\\n116\\n00:10:27,080 --> 00:10:31,440\\nnejvýše položený superpočítač na světě.\\n\\n117\\n00:10:32,180 --> 00:10:35,040\\nMá 134 miliónů procesorů\\n\\n118\\n00:10:35,040 --> 00:10:39,400\\na pracuje rychlostí 17 biliard operací za sekundu\\n\\n119\\n00:10:39,400 --> 00:10:42,860\\n- srovnatelnou s nejrychlejšími superpočítači světa.\\n\\n120\\n00:10:42,920 --> 00:10:45,840\\nTento tzv. ALMA korelátor na Chajnantoru\\n\\n121\\n00:10:45,840 --> 00:10:50,150\\nkombinuje a porovnává signály od každé z antén.\\n\\n122\\n00:10:56,430 --> 00:11:00,110\\nSpolu s anténami přibývajícími na plošině Chajnantor\\n\\n123\\n00:11:00,110 --> 00:11:05,270\\nrostlo také Středisko operační podpory, řídící centrum observatoře,\\n\\n124\\n00:11:05,270 --> 00:11:11,840\\nkteré se nachází v poněkud snesitelnější nadmořské výšce 2900 m.\\n\\n125\\n00:11:13,000 --> 00:11:15,960\\nTady je rušno 24 hodin denně.\\n\\n126\\n00:11:15,960 --> 00:11:18,260\\nŘídí se odsud práce teleskopu,\\n\\n127\\n00:11:18,260 --> 00:11:22,430\\ntestují a opravují se tady antény a další zařízení\\n\\n128\\n00:11:23,590 --> 00:11:25,880\\nJe tu také domov pro personál observatoře, jenž se střídá\\n\\n129\\n00:11:25,880 --> 00:11:29,550\\nběhem denních a nočních směn na observatoři.\\n\\n130\\n00:11:39,230 --> 00:11:41,670\\nCentrum v Santiagu\\n\\n131\\n00:11:44,040 --> 00:11:46,840\\nV hlavním městě hostitelské země Chile\\n\\n132\\n00:11:46,840 --> 00:11:50,760\\nbylo zřízeno Centrum projektu ALMA.\\n\\n133\\n00:11:53,470 --> 00:11:57,200\\nPracují zde technici, vědci a administrativní\\n\\n134\\n00:11:57,200 --> 00:12:00,450\\npersonál observatoře ALMA.\\n\\n135\\n00:12:09,670 --> 00:12:11,560\\nOsvědčení kvality\\n\\n136\\n00:12:14,320 --> 00:12:17,280\\nJeště před dokončením stavby\\n\\n137\\n00:12:17,280 --> 00:12:20,630\\nzačala první vědecká pozorování\\n\\n138\\n00:12:20,630 --> 00:12:23,120\\npomocí části antén soustavy.\\n\\n139\\n00:12:24,480 --> 00:12:27,400\\nALMA otevřela oči!\\n\\n140\\n00:12:33,430 --> 00:12:36,220\\nTisíce vědců z celého světa\\n\\n141\\n00:12:36,220 --> 00:12:41,200\\nse snažily být mezi hrstkou prvních šťastlivců pracující na observatoři.\\n\\n142\\n00:12:43,560 --> 00:12:46,230\\nUž s pouhými 16 anténami\\n\\n143\\n00:12:46,230 --> 00:12:51,000\\nbyla ALMA nejvýkonnějším teleskopem tohoto druhu.\\n\\n144\\n00:12:57,610 --> 00:13:02,240\\nPrvní vědecká pozorování dokonale splnila všechna očekávání.\\n\\n145\\n00:13:06,120 --> 00:13:08,020\\nGalaxie Tykadla,\\n\\n146\\n00:13:08,020 --> 00:13:12,550\\ndvojice kolidujících galaxií podivuhodně deformovaných tvarů.\\n\\n147\\n00:13:13,640 --> 00:13:17,070\\nViditelné světlo nám v galaxiích ukáže hvězdy,\\n\\n148\\n00:13:17,070 --> 00:13:21,600\\nale ALMA odhalí oblaka chladného hustého plynu\\n\\n149\\n00:13:21,600 --> 00:13:24,660\\nz nějž se rodí nové hvězdy.\\n\\n150\\n00:13:30,320 --> 00:13:35,430\\nJádro pozoruhodné galaxie Centaurus A.\\n\\n151\\n00:13:35,430 --> 00:13:41,040\\nALMA proniká skrz neprůhledné prachové pásy, jež zakrývají její centrum.\\n\\n152\\n00:13:45,960 --> 00:13:50,460\\nPohled na blízkou hvězdu Fomalhaut pomáhá napovědět\\n\\n153\\n00:13:50,460 --> 00:13:53,880\\njak se rodí a vyvíjejí planetární soustavy. \\n\\n154\\n00:13:57,400 --> 00:14:01,610\\nZrnka prachu objevená v okolí hnědého trpaslíka\\n\\n155\\n00:14:01,610 --> 00:14:03,450\\nnaznačují, že kamenné planety\\n\\n156\\n00:14:03,450 --> 00:14:07,220\\nby mohly být ve vesmíru četnější než jsme se domnívali.\\n\\n157\\n00:14:11,180 --> 00:14:14,320\\nMolekuly cukrů poprvé zaznamenané v okolí\\n\\n158\\n00:14:14,320 --> 00:14:16,790\\nmladé hvězdy podobné Slunci:\\n\\n159\\n00:14:16,790 --> 00:14:20,720\\nstavební kameny života na správném místě ve správný čas,\\n\\n160\\n00:14:20,720 --> 00:14:24,800\\naby se mohly stát součástí nových planet.\\n\\n161\\n00:14:29,330 --> 00:14:35,780\\nPřekvapivý spirální útvar v látce obklopující starou hvězdu R Sculptoris\\n\\n162\\n00:14:35,780 --> 00:14:39,480\\npoodhalil tajemství umírající hvězdy.\\n\\n163\\n00:14:44,740 --> 00:14:46,950\\nŠiroké proudy plynu\\n\\n164\\n00:14:46,950 --> 00:14:48,480\\ntáhnoucí se přes dutinu\\n\\n165\\n00:14:48,480 --> 00:14:52,140\\nv disku obklopujícím mladou hvězdu.\\n\\n166\\n00:14:52,140 --> 00:14:55,200\\nDůležité stadium zrodu obřích planet\\n\\n167\\n00:14:55,200 --> 00:14:58,120\\npozorované vůbec poprvé.\\n\\n168\\n00:14:58,120 --> 00:15:02,800\\nA to všechno ještě před plným dokončením soustavy!\\n\\n169\\n00:15:05,240 --> 00:15:07,520\\nVstříc novým obzorům\\n\\n170\\n00:15:10,270 --> 00:15:13,830\\nInaugurace observatoře ALMA je oslavou dosažení dospělosti.\\n\\n171\\n00:15:13,830 --> 00:15:16,340\\nCesta byla dlouhá.\\n\\n172\\n00:15:16,340 --> 00:15:18,670\\nALMA vyrostla z myšlenky\\n\\n173\\n00:15:18,670 --> 00:15:20,520\\npřes konstrukční projekt\\n\\n174\\n00:15:20,520 --> 00:15:22,960\\nk plně funkční observatoři\\n\\n175\\n00:15:22,960 --> 00:15:27,600\\na k opravdu globálnímu vědeckému partnerství.\\n\\n176\\n00:15:36,750 --> 00:15:40,730\\nV tiché a liduprázdné kráse chilské poušti Atacama\\n\\n177\\n00:15:40,730 --> 00:15:43,220\\nje ALMA připravena k budoucím výzvám.\\n\\n178\\n00:15:43,830 --> 00:15:46,440\\nDíky tomuto podivuhodnému přístroji budou moci\\n\\n179\\n00:15:46,440 --> 00:15:49,440\\nastronomové z celého světa odhalovat\\n\\n180\\n00:15:49,440 --> 00:15:52,600\\nhluboce ukrytá tajemství kosmu.\\n\\n181\\n00:15:53,040 --> 00:15:58,160\\nPátrání po našich kosmických kořenech!\\n\\n182\\n00:16:03,680 --> 00:16:09,720\\nALMA\\n\\n183\\n00:16:18,240 --> 00:16:22,840\\nVšem, jež zvídavost nutí klást ty největší otázky\\n\\n184\\n00:16:23,480 --> 00:16:28,930\\nText titulků ESO; překlad Jan Veselý - Hvězdárna a planetárium v Hradci Králové',\n", + " 'bytes': 14986,\n", + " 'sha1': 't7dpc57i108ug7u0ptpen7h8roev22v',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92553150,\n", + " 'timestamp': '2013-03-14T09:08:56Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25113647,\n", + " 'title': 'The movie ALMA — In Search of our Cosmic Origins.ogv.is.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'is sub',\n", + " 'text': '1\\n00:00:05,000 --> 00:00:14,000\\nALMA\\n\\n2\\n00:00:15,000 --> 00:00:26,000\\nÍ leit að uppruna okkar í alheiminum\\n\\n3\\n00:00:36,500 --> 00:00:42,000\\nHátt á hinni afskekktu Chajnantor hásléttu í Andesfjöllum Chile.\\n\\n4\\n00:00:43,000 --> 00:00:45,000\\nEinu harðneskjulegasta umhverfi á Jörðinni.\\n\\n5\\n00:00:45,500 --> 00:00:47,040\\nInnan um eldfjöll ...\\n\\n6\\n00:00:47,459 --> 00:00:49,000\\neyðimerkursléttur ...\\n\\n7\\n00:00:49,200 --> 00:00:50,690\\nog napra vinda ...\\n\\n8\\n00:00:51,000 --> 00:00:57,300\\ner ALMA — Atacama Large Millimeter/submillimeter Array — tilbúin.\\n\\n9\\n00:01:07,000 --> 00:01:10,500\\nStjörnufræðingar og vísindamenn frá öllum heimshornum\\n\\n10\\n00:01:10,500 --> 00:01:15,000\\nhafa beðið í ofvæni eftir þessari stund í áratugi.\\n\\n11\\n00:01:15,190 --> 00:01:19,430\\nALMA er stærsta stjarnvísindaverkefni heims.\\n\\n12\\n00:01:19,430 --> 00:01:22,620\\nEn þetta er enginn venjulegur sjónauki.\\n\\n13\\n00:01:22,620 --> 00:01:26,640\\nÍ stað þess að safna og greina sýnilegt ljós\\n\\n14\\n00:01:26,640 --> 00:01:31,400\\nskoðar hann gerólíkt og svo til ókannað svið rafsegulrófsins.\\n\\n15\\n00:01:40,240 --> 00:01:43,100\\nMeð því að opna nýjan glugga út í alheiminn,\\n\\n16\\n00:01:43,500 --> 00:01:50,760\\nkannar ALMA eitt af síðustu ókönnuðu sviðum stjörnufræðinnar — hinn kalda og fjarlæga alheim.\\n\\n17\\n00:01:53,000 --> 00:01:58,950\\nAllt í leit að svörum við sumum af okkar dýpstu spurningum um uppruna okkar í alheiminum.\\n\\n18\\n00:01:58,950 --> 00:02:01,600\\nHvernig verða stjörnur og reikistjörnur til?\\n\\n19\\n00:02:01,600 --> 00:02:04,490\\nHvernig mynduðust fyrstu vetrarbrautirnar?\\n\\n20\\n00:02:07,000 --> 00:02:10,979\\nChajnantor hásléttan í norðurhluta Chile.\\n\\n21\\n00:02:12,000 --> 00:02:17,640\\nÞrátt fyrir að vera í 5.000 metra hæð yfir sjávarmáli\\n\\n22\\n00:02:17,640 --> 00:02:20,220\\nhefur ALMA blómstrað.\\n\\n23\\n00:02:20,220 --> 00:02:23,000\\nUndanfarin ár\\n\\n24\\n00:02:23,000 --> 00:02:27,740\\nhefur meira en 50 loftnetum við komið fyrir á þessa hálægu eyðimerkursléttu.\\n\\n25\\n00:02:29,060 --> 00:02:34,230\\nALMA er einstakur risasjónauki, smíðaður í samstarfi\\n\\n26\\n00:02:34,230 --> 00:02:39,800\\nEvrópu, Norður Ameríku og austur Asíu í samvinnu við Chile.\\n\\n27\\n00:02:41,320 --> 00:02:46,000\\nSextíu og sex hágæða loftnet munu kanna alheiminn\\n\\n28\\n00:02:46,000 --> 00:02:49,160\\ná millímetra og hálfsmillímetra bylgjulengdum\\n\\n29\\n00:02:50,500 --> 00:02:54,380\\n— þúsund sinnum lengri bylgjulengdir en augað nemur.\\n\\n30\\n00:02:55,920 --> 00:02:59,220\\nÞetta ljós berst okkur frá sumum af köldustu\\n\\n31\\n00:02:59,220 --> 00:03:02,780\\nog fjarlægustu fyrirbærum alheims.\\n\\n32\\n00:03:04,160 --> 00:03:06,970\\nVatnsgufa í lofthjúpi Jarðar gleypir\\n\\n33\\n00:03:06,970 --> 00:03:09,480\\nþetta daufa hvískur utan úr hinum dulda alheimi,\\n\\n34\\n00:03:09,480 --> 00:03:15,500\\nsvo til að safna því verðum við að fara á mjög háan og þurran stað\\n\\n35\\n00:03:15,500 --> 00:03:18,680\\n— eins og Chajnantor.\\n\\n36\\n00:03:24,610 --> 00:03:26,270\\nALMA verður til\\n\\n37\\n00:03:26,720 --> 00:03:30,550\\nUppruna ALMA verkefnisins má rekja áratugi aftur í tímann.\\n\\n38\\n00:03:31,000 --> 00:03:35,090\\nVísindamenn frá Evrópu, Norður Ameríku og austur Asíu\\n\\n39\\n00:03:35,090 --> 00:03:39,490\\nþróuðu þrjár mismunandi hugmyndir um nýja, stóra sjónauka\\n\\n40\\n00:03:39,490 --> 00:03:42,920\\nfyrir millímetra- og hálfsmillímetra mælingar.\\n\\n41\\n00:03:43,670 --> 00:03:47,680\\nAð lokum urðu þessar hugmyndir að einni.\\n\\n42\\n00:03:48,760 --> 00:03:53,080\\nStór vísindaverkefni krefjast hnattræns samstarfs.\\n\\n43\\n00:03:53,080 --> 00:03:57,920\\nSaman geta þjóðirnar afrekað það sem þær gætu ekki einar.\\n\\n44\\n00:03:59,360 --> 00:04:03,960\\nHeildin er betri en summa hlutanna.\\n\\n45\\n00:04:04,290 --> 00:04:08,110\\nALMA verkefnið varð til!\\n\\n46\\n00:04:11,000 --> 00:04:14,760\\nAð finna réttan stað\\n\\n47\\n00:04:20,279 --> 00:04:22,940\\nFinna þurfti heimili fyrir þennan nýja sjónauka\\n\\n48\\n00:04:22,940 --> 00:04:26,520\\nog augu manna beindust að Chajnantor.\\n\\n49\\n00:04:26,870 --> 00:04:31,600\\nAllir þættir staðarins, allt frá stjarnfræðilegum til veðurfræðilegra,\\n\\n50\\n00:04:31,600 --> 00:04:35,720\\nvoru kannaðir ítarlega og daglegar mælingar á lofthjúpnum gerðar.\\n\\n51\\n00:04:35,840 --> 00:04:42,440\\nNiðurstaðan: Chajnantor var fullkominn staður fyrir ALMA.\\n\\n52\\n00:04:46,640 --> 00:04:50,300\\nBrautin rudd\\n\\n53\\n00:04:51,500 --> 00:04:55,910\\nSmíði hófst árið 2003 þegar brautin var rudd\\n\\n54\\n00:04:55,910 --> 00:04:58,770\\nað starfsstöð ALMA.\\n\\n55\\n00:05:06,920 --> 00:05:11,670\\nHér í 5.000 metra hæð yfir sjávarmáli eru aðstæður\\n\\n56\\n00:05:11,670 --> 00:05:14,620\\nharðneskjulegar og mjög krefjandi.\\n\\n57\\n00:05:16,860 --> 00:05:19,400\\nSterkir vindar.\\n\\n58\\n00:05:20,420 --> 00:05:22,880\\nLágur lofthiti.\\n\\n59\\n00:05:23,680 --> 00:05:26,540\\nMikil útfjólublá geislun.\\n\\n60\\n00:05:27,040 --> 00:05:30,080\\nOg loftið örþunnt.\\n\\n61\\n00:05:30,680 --> 00:05:35,290\\nSvo þunnt að starfsfólkið hér þurfti aukasúrefni\\n\\n62\\n00:05:35,290 --> 00:05:38,760\\nog ganga í gegnum strangar læknisskoðanir.\\n\\n63\\n00:05:41,880 --> 00:05:46,460\\nTækin smíðuð\\n\\n64\\n00:05:48,360 --> 00:05:51,440\\nFramleiðslu á loftnetum ALMA var deilt\\n\\n65\\n00:05:51,440 --> 00:05:53,680\\ná milli hinna þriggja aðstandenda ALMA.\\n\\n66\\n00:05:55,140 --> 00:05:59,540\\nÞrjár frumgerðir voru prófaðar á prófunarstað ALMA\\n\\n67\\n00:05:59,540 --> 00:06:03,440\\nhjá Very Large Array í Bandaríkjunum.\\n\\n68\\n00:06:05,030 --> 00:06:10,900\\nLoftnetin 66 á hásléttunni eru ómissandi hlutar af ALMA.\\n\\n69\\n00:06:12,240 --> 00:06:17,410\\nLoftnetin safna daufu millímetra geisluninni utan úr geimnum.\\n\\n70\\n00:06:17,480 --> 00:06:21,070\\nÞetta eru fyrsta flokks loftnet.\\n\\n71\\n00:06:22,740 --> 00:06:28,400\\nÓjöfnur á yfirborðum þeirra eru minni en sem nemur þykkt pappírsarkar.\\n\\n72\\n00:06:30,170 --> 00:06:37,360\\nÞau er hægt að hreyfa nógu nákvæmlega til að nema golfkúlu í 15 kílómetra fjarlægð.\\n\\n73\\n00:06:39,760 --> 00:06:45,320\\nOg þau þurfa að standast náttúruöflin á Chajnantor!\\n\\n74\\n00:06:58,470 --> 00:07:03,700\\nStjörnustöð Evrópulanda á suðurhveli lagði til tuttugu og fimm loftnet\\n\\n75\\n00:07:04,150 --> 00:07:08,220\\nNational Radio Astronomy Observatory í Bandaríkjunum önnur 25\\n\\n76\\n00:07:08,220 --> 00:07:13,800\\nog 16 komu frá National Astronomical Observatory of Japan.\\n\\n77\\n00:07:20,520 --> 00:07:22,620\\nViðleitnin var sannarlega hnattræn\\n\\n78\\n00:07:22,620 --> 00:07:27,700\\nþví mismunandi hlutar loftnetanna voru smíðaðir á nokkrum stöðum í heiminum,\\n\\n79\\n00:07:27,700 --> 00:07:30,700\\nsend til Chile til samsetningar\\n\\n80\\n00:07:44,360 --> 00:07:47,780\\nog síðan prófuð í þjónustumiðstöðinni\\n\\n81\\n00:07:47,780 --> 00:07:51,600\\nþar sem þau voru búin undir fyrstu mælingar á himinhvolfinu.\\n\\n82\\n00:07:55,790 --> 00:07:58,420\\nFyrstu loftnetin tengd saman\\n\\n83\\n00:07:59,950 --> 00:08:04,930\\nFyrsta loftnet ALMA var samþykkt og skömmu síðar\\n\\n84\\n00:08:04,930 --> 00:08:08,750\\ntókst að tengja tvö loftnet saman.\\n\\n85\\n00:08:12,120 --> 00:08:16,410\\nNemar í hverju loftneti skrásetja fínustu blæbrigði\\n\\n86\\n00:08:16,410 --> 00:08:19,710\\ndaufu merkjanna sem loftnetin safna.\\n\\n87\\n00:08:21,600 --> 00:08:25,040\\nNemarnir eru þeir næmustu sinnar tegundar\\n\\n88\\n00:08:25,040 --> 00:08:27,520\\nog eru kældir með helíumgasi\\n\\n89\\n00:08:27,520 --> 00:08:31,280\\nniður í aðeins fjórar gráður yfir alkul.\\n\\n90\\n00:08:34,890 --> 00:08:37,100\\nNýjum hæðum náð\\n\\n91\\n00:08:41,470 --> 00:08:44,750\\nFyrstu tilbúnu loftnetin eru á leið\\n\\n92\\n00:08:44,750 --> 00:08:46,840\\nupp í stjórnstöð raðarinnar.\\n\\n93\\n00:08:48,160 --> 00:08:52,500\\nTveir sérsmíðaðir flutningabílar — Otto og Lore —\\n\\n94\\n00:08:52,500 --> 00:08:55,740\\nflytja 100 tonna loftnetin til og frá.\\n\\n95\\n00:08:56,440 --> 00:08:59,580\\nOtto ekur varfærnislega upp hlykkjóttan veginn\\n\\n96\\n00:08:59,580 --> 00:09:02,210\\nog flytur hátækniloftnetið upp\\n\\n97\\n00:09:02,210 --> 00:09:05,000\\ná hásléttuna.\\n\\n98\\n00:09:06,260 --> 00:09:10,400\\nÍ kjölfar þessa fyrsta loftnetsins komu fljótlega mörg önnur.\\n\\n99\\n00:09:14,220 --> 00:09:16,340\\nAð standast væntingar\\n\\n100\\n00:09:18,240 --> 00:09:21,550\\nFyrstu athuganirnar með tveimur og síðan þremur\\n\\n101\\n00:09:21,550 --> 00:09:23,900\\nloftnetum í einu voru gerðar.\\n\\n102\\n00:09:24,950 --> 00:09:27,480\\nÞetta var lykilpróf fyrir ALMA röðina.\\n\\n103\\n00:09:28,580 --> 00:09:31,400\\nOg öll stóðust það með glæsibrag!\\n\\n104\\n00:09:35,230 --> 00:09:38,030\\nMillímetra og hálfsmillímetra bylgjulengdir\\n\\n105\\n00:09:38,030 --> 00:09:41,750\\ngefa stjörnufræðingum einstaka sýn á alheiminn.\\n\\n106\\n00:09:42,540 --> 00:09:45,780\\nEn til að fá þá skerpu sem stjörnufræðingar krefjast,\\n\\n107\\n00:09:45,780 --> 00:09:48,890\\nþyrfti stakur sjónauki að vera\\n\\n108\\n00:09:48,890 --> 00:09:52,890\\nnokkrir kílómetrar í þvermál og ógjörlegt að smíða!\\n\\n109\\n00:09:53,200 --> 00:09:57,250\\nÞess í stað notar ALMA 66 aðskilin loftnet\\n\\n110\\n00:09:57,250 --> 00:09:59,720\\nsem hægt er að dreifa yfir sléttuna\\n\\n111\\n00:09:59,720 --> 00:10:03,700\\nmeð allt að 16 kílómetra hámarksbili.\\n\\n112\\n00:10:04,520 --> 00:10:08,210\\nLoftnetin eru tengd saman og merkin sem þau nema sameinuð.\\n\\n113\\n00:10:08,510 --> 00:10:13,960\\nAfraksturinn er einn risasjónauki, jafnstór röðinni allri,\\n\\n114\\n00:10:13,960 --> 00:10:19,500\\nmeð meiri næmni og upplausn en áður hefur þekkst.\\n\\n115\\n00:10:24,200 --> 00:10:27,080\\nAð skilja þessi samtvinnuðu merki\\n\\n116\\n00:10:27,080 --> 00:10:31,440\\nkrefst hjálpar hálægustu ofurtölvu heims.\\n\\n117\\n00:10:32,180 --> 00:10:35,040\\nMeð 134 milljónir örgjörva\\n\\n118\\n00:10:35,040 --> 00:10:39,400\\nsem gera 17 billjarða útreikninga á sekúndu\\n\\n119\\n00:10:39,400 --> 00:10:42,860\\n— jafn marga og öflugasta ofurtölva í heiminum —\\n\\n120\\n00:10:42,920 --> 00:10:45,840\\nsameinar ALMA ofurtölvan á Chajnantor\\n\\n121\\n00:10:45,840 --> 00:10:50,150\\nog ber saman merkin frá öllum loftnetunum.\\n\\n122\\n00:10:56,430 --> 00:11:00,110\\nÞegar sífellt fleiri loftnet bætast við á Chajnantor,\\n\\n123\\n00:11:00,110 --> 00:11:05,270\\ntekur þjónustumiðstöðin, stjórnstöð stjörnustöðvarinnar,\\n\\n124\\n00:11:05,270 --> 00:11:11,840\\ná sig mynd í aðeins þægilegri hæð eða 2.900 metra yfir sjávarmáli.\\n\\n125\\n00:11:13,000 --> 00:11:15,960\\nStaðurinn er iðandi af fólki allan sólarhringinn\\n\\n126\\n00:11:15,960 --> 00:11:18,260\\nsem stjórnar sjónaukanum,\\n\\n127\\n00:11:18,260 --> 00:11:22,430\\nsér um prófanir og viðhald á loftnetum og öðrum búnaði.\\n\\n128\\n00:11:23,590 --> 00:11:25,880\\nOg er híbýli starfsfólks ALMA\\n\\n129\\n00:11:25,880 --> 00:11:29,550\\ná dag- og næturvöktum í stjörnustöðinni.\\n\\n130\\n00:11:39,230 --> 00:11:41,670\\nSkrifstofurnar í Santiago\\n\\n131\\n00:11:44,040 --> 00:11:46,840\\nÍ Santiago, höfuðborg gestaþjóðarinnar Chile\\n\\n132\\n00:11:46,840 --> 00:11:50,760\\nvoru byggðar aðalskrifstofur ALMA.\\n\\n133\\n00:11:53,470 --> 00:11:57,200\\nHér starfa tæknimenn, vísindamenn og stjórnendur\\n\\n134\\n00:11:57,200 --> 00:12:00,450\\nsameiginlegrar skrifstofu ALMA.\\n\\n135\\n00:12:09,670 --> 00:12:11,560\\nSýnt fram á yfirburði\\n\\n136\\n00:12:14,320 --> 00:12:17,280\\nÁður en smíði sjónaukans lauk\\n\\n137\\n00:12:17,280 --> 00:12:20,630\\nhófust fyrstu mælingar\\n\\n138\\n00:12:20,630 --> 00:12:23,120\\nmeð hluta loftnetanna.\\n\\n139\\n00:12:24,480 --> 00:12:27,400\\nALMA hafði opnað augun!\\n\\n140\\n00:12:33,430 --> 00:12:36,220\\nMörg þúsund vísindamenn, hvaðanæva að úr heiminum,\\n\\n141\\n00:12:36,220 --> 00:12:41,200\\nkepptust um að vera á meðal fárra útvalinna sem fengju að nota sjónaukann fyrst.\\n\\n142\\n00:12:43,560 --> 00:12:46,230\\nÞótt loftnetin væru að 16 talsins\\n\\n143\\n00:12:46,230 --> 00:12:51,000\\nvar ALMA þegar orðinn öflugasti sjónauki sinnar tegundar.\\n\\n144\\n00:12:57,610 --> 00:13:02,240\\nFyrstu mælingar uppfylltu vonir og væntingar allra.\\n\\n145\\n00:13:06,120 --> 00:13:08,020\\nLoftnetsvetrarbrautirnar,\\n\\n146\\n00:13:08,020 --> 00:13:12,550\\ntvær mjög bjagaðar vetrarbrautir að rekast saman.\\n\\n147\\n00:13:13,640 --> 00:13:17,070\\nÍ sýnilegu ljósi sjáum við stjörnurnar í vetrarbrautunum\\n\\n148\\n00:13:17,070 --> 00:13:21,600\\nen ALMA sýnir köldu, þéttu gasskýin\\n\\n149\\n00:13:21,600 --> 00:13:24,660\\nsem nýjar stjörnur myndast úr.\\n\\n150\\n00:13:30,320 --> 00:13:35,430\\nHjarta vetrarbrautarinnar Centaurus A.\\n\\n151\\n00:13:35,430 --> 00:13:41,040\\nALMA skyggnist í gegnum ógegnsæjar rykslæður sem hylja miðjuna.\\n\\n152\\n00:13:45,960 --> 00:13:50,460\\nMynd af nálægri stjörnu, Fomalhaut, veitir vísbendingar\\n\\n153\\n00:13:50,460 --> 00:13:53,880\\num myndun og þróun sólkerfa.\\n\\n154\\n00:13:57,400 --> 00:14:01,610\\nGeimryk sem fannst umhverfis brúnan dverg\\n\\n155\\n00:14:01,610 --> 00:14:03,450\\nbendir til þess að bergreikistjörnur\\n\\n156\\n00:14:03,450 --> 00:14:07,220\\ngætu jafnvel verið mun algengari í alheiminum en við töldum.\\n\\n157\\n00:14:11,180 --> 00:14:14,320\\nSykursameindir fundust í kringum unga\\n\\n158\\n00:14:14,320 --> 00:14:16,790\\nstjörnu á borð við sólina í fyrsta sinn:\\n\\n159\\n00:14:16,790 --> 00:14:20,720\\nByggingareiningar lífs á réttum stað, á réttum tíma\\n\\n160\\n00:14:20,720 --> 00:14:24,800\\ntil að vera hlutar af nýjum reikistjörnum í mótun umhverfis stjörnuna.\\n\\n161\\n00:14:29,330 --> 00:14:35,780\\nÓvænt þyrilbygging í efninu í kringum öldnu stjörnuna R Sculptoris\\n\\n162\\n00:14:35,780 --> 00:14:39,480\\nopinberar leyndardóma deyjandi stjörnu.\\n\\n163\\n00:14:44,740 --> 00:14:46,950\\nMiklir straumar úr gasi\\n\\n164\\n00:14:46,950 --> 00:14:48,480\\nflæða yfir geil\\n\\n165\\n00:14:48,480 --> 00:14:52,140\\ní efnisskífunni í kringum unga stjörnu.\\n\\n166\\n00:14:52,140 --> 00:14:55,200\\nLykilstig í myndun risareikistjarna\\n\\n167\\n00:14:55,200 --> 00:14:58,120\\nséð í fyrsta sinn.\\n\\n168\\n00:14:58,120 --> 00:15:02,800\\nOg allt þetta áður en röðin var fullkláruð!\\n\\n169\\n00:15:05,240 --> 00:15:07,520\\nÍ átt að nýjum sjóndeildarhring\\n\\n170\\n00:15:10,270 --> 00:15:13,830\\nVígsla ALMA markar tilkomu sjónaukans.\\n\\n171\\n00:15:13,830 --> 00:15:16,340\\nFerðin hefur verið löng.\\n\\n172\\n00:15:16,340 --> 00:15:18,670\\nALMA hefur vaxið úr hugmynd\\n\\n173\\n00:15:18,670 --> 00:15:20,520\\ní verkefni í smíðum\\n\\n174\\n00:15:20,520 --> 00:15:22,960\\nyfir í fullstarfhæfa stjörnustöð\\n\\n175\\n00:15:22,960 --> 00:15:27,600\\nog sannarlega í hnattrænt vísindasamstarf.\\n\\n176\\n00:15:36,750 --> 00:15:40,730\\nÍ kyrrlátri en afskekktri fegurð Atacamaeyðimerkurinnar í Chile\\n\\n177\\n00:15:40,730 --> 00:15:43,220\\ner ALMA tiilbúin fyrir framtíðina.\\n\\n178\\n00:15:43,830 --> 00:15:46,440\\nMeð þessum stórkostlega sjónauka\\n\\n179\\n00:15:46,440 --> 00:15:49,440\\nmunu stjörnufræðingar um allan heim skyggnast dýpra\\n\\n180\\n00:15:49,440 --> 00:15:52,600\\ninn í falda leyndardóma alheimsins.\\n\\n181\\n00:15:53,040 --> 00:15:58,160\\nÍ leit að uppruna okkar í alheiminum!\\n\\n182\\n00:16:03,680 --> 00:16:09,720\\nALMA\\n\\n183\\n00:16:18,240 --> 00:16:22,840\\nTil allra þeirra sem drifnir eru áfram af forvitninni til að spyrja stærstu spurninganna.\\n\\n184\\n00:16:23,480 --> 00:16:28,930\\nHandrit: ESO; þýðing: Sævar Helgi Bragason',\n", + " 'bytes': 14949,\n", + " 'sha1': 'feb5lw6ekcshvo7pas0zwbgrl24xw0f',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92553168,\n", + " 'timestamp': '2013-03-14T09:09:56Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25113649,\n", + " 'title': 'The movie ALMA — In Search of our Cosmic Origins.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:05,000 --> 00:00:14,000 ALMA 2 00:00:15,000 --> 00:00:26,000 En Busca de Nuestros Orígenes Cósmicos 3 00:00:36,500 --> 00:00:42,000 En lo alto del i...'\",\n", + " 'text': '1\\n00:00:05,000 --> 00:00:14,000\\nALMA\\n\\n2\\n00:00:15,000 --> 00:00:26,000\\nEn Busca de Nuestros Orígenes Cósmicos\\n\\n3\\n00:00:36,500 --> 00:00:42,000\\nEn lo alto del inhóspito Llano de Chajnantor en los Andes chilenos.\\n\\n4\\n00:00:43,000 --> 00:00:45,000\\nUno de los ambientes más hostiles en la Tierra.\\n\\n5\\n00:00:45,500 --> 00:00:47,040\\nEn medio de volcanes...\\n\\n6\\n00:00:47,459 --> 00:00:49,000\\nValles desiertos...\\n\\n7\\n00:00:49,200 --> 00:00:50,690\\nFuertes vientos...\\n\\n8\\n00:00:51,000 --> 00:00:57,300\\nALMA — el Atacama Large Millimeter/sub-millimeter Array — está listo.\\n\\n9\\n00:01:07,000 --> 00:01:10,500\\nAstrónomos y científicos de todo el mundo\\n\\n10\\n00:01:10,500 --> 00:01:15,000\\nhan estado esperando con impaciencia este momento durante décadas.\\n\\n11\\n00:01:15,190 --> 00:01:19,430\\nALMA es el proyecto astronómico más grande del mundo.\\n\\n12\\n00:01:19,430 --> 00:01:22,620\\nPero no es un telescopio convencional.\\n\\n13\\n00:01:22,620 --> 00:01:26,640\\nEn lugar de captar y analizar luz visible\\n\\n14\\n00:01:26,640 --> 00:01:31,400\\nobserva una parte del espectro diferente y mayormente inexplorada.\\n\\n15\\n00:01:40,240 --> 00:01:43,100\\nAl abrir una nueva ventana en el cosmos,\\n\\n16\\n00:01:43,500 --> 00:01:50,760\\nALMA explora una de las últimas fronteras de la astronomía — el Universo frío y lejano.\\n\\n17\\n00:01:53,000 --> 00:01:58,950\\nTodo en busca de respuestas a algunas de las preguntas más profundas sobre nuestros orígenes cósmicos.\\n\\n18\\n00:01:58,950 --> 00:02:01,600\\n¿Cómo se forman las estrellas y planetas?\\n\\n19\\n00:02:01,600 --> 00:02:04,490\\n¿Cómo se formaron las primeras galaxias?\\n\\n20\\n00:02:07,000 --> 00:02:10,979\\nEl Llano de Chajnantor en el norte de Chile.\\n\\n21\\n00:02:12,000 --> 00:02:17,640\\nA pesar de su altitud de 5.000 metros sobre el nivel de mar que — ¡literalmente! — deja sin aliento,\\n\\n22\\n00:02:17,640 --> 00:02:20,220\\nALMA ha florecido.\\n\\n23\\n00:02:20,220 --> 00:02:23,000\\nDurante los últimos años,\\n\\n24\\n00:02:23,000 --> 00:02:27,740\\nmás de 50 antenas han sido instaladas a lo largo del alto y desierto valle.\\n\\n25\\n00:02:29,060 --> 00:02:34,230\\nALMA es un telescopio gigante único construido en una asociación\\n\\n26\\n00:02:34,230 --> 00:02:39,800\\nentre Europa, Norteamérica y Asia del Este, en cooperación con Chile.\\n\\n27\\n00:02:41,320 --> 00:02:46,000\\nSesenta y seis antenas de última generación observarán el Universo\\n\\n28\\n00:02:46,000 --> 00:02:49,160\\nen longitudes de onda milimétricas y submilimétricas\\n\\n29\\n00:02:50,500 --> 00:02:54,380\\n— mil veces más largas que las longitudes de onda visibles.\\n\\n30\\n00:02:55,920 --> 00:02:59,220\\nEsta luz nos alcanza desde algunos de los objetos\\n\\n31\\n00:02:59,220 --> 00:03:02,780\\nmás fríos y lejanos del Universo.\\n\\n32\\n00:03:04,160 --> 00:03:06,970\\nEl vapor de agua en la atmósfera bloquea\\n\\n33\\n00:03:06,970 --> 00:03:09,480\\nestos débiles susurros del Universo oculto,\\n\\n34\\n00:03:09,480 --> 00:03:15,500\\nasí que para captarlos hay que ir a un sitio extremadamente alto y seco\\n\\n35\\n00:03:15,500 --> 00:03:18,680\\n— como Chajnantor.\\n\\n36\\n00:03:24,610 --> 00:03:26,270\\nEl Nacimiento de ALMA\\n\\n37\\n00:03:26,720 --> 00:03:30,550\\nEl origen del proyecto ALMA se remonta a décadas.\\n\\n38\\n00:03:31,000 --> 00:03:35,090\\nCientíficos de Europa, Norteamérica y Asia del Este\\n\\n39\\n00:03:35,090 --> 00:03:39,490\\ndesarrollaron tres conceptos individuales para grandes y nuevos telescopios\\n\\n40\\n00:03:39,490 --> 00:03:42,920\\npara observaciones milimétricas y submilimétricas.\\n\\n41\\n00:03:43,670 --> 00:03:47,680\\nFinalmente, estos conceptos se unieron en uno.\\n\\n42\\n00:03:48,760 --> 00:03:53,080\\nLa gran ciencia necesita colaboraciones internacionales.\\n\\n43\\n00:03:53,080 --> 00:03:57,920\\nEn conjunto los países pueden lograr lo que no pueden hacer solos.\\n\\n44\\n00:03:59,360 --> 00:04:03,960\\nEl todo es más que la suma de sus partes.\\n\\n45\\n00:04:04,290 --> 00:04:08,110\\n¡El proyecto ALMA nació!\\n\\n46\\n00:04:11,000 --> 00:04:14,760\\nBuscando el Sitio Adecuado\\n\\n47\\n00:04:20,279 --> 00:04:22,940\\nEste nuevo telescopio necesitaba un hogar,\\n\\n48\\n00:04:22,940 --> 00:04:26,520\\ny los ojos se volvieron a Chajnantor.\\n\\n49\\n00:04:26,870 --> 00:04:31,600\\nCada aspecto del sitio, desde los astronómicos a los meteorológicos,\\n\\n50\\n00:04:31,600 --> 00:04:35,720\\nfueron probados completamente y la atmósfera monitoreada diariamente.\\n\\n51\\n00:04:35,840 --> 00:04:42,440\\nLa conclusión: Chajnantor era el lugar perfecto para ALMA.\\n\\n52\\n00:04:46,640 --> 00:04:50,300\\nAbriendo camino\\n\\n53\\n00:04:51,500 --> 00:04:55,910\\nLa construcción comenzó en 2003 con la colocación de la primera piedra\\n\\n54\\n00:04:55,910 --> 00:04:58,770\\ndel Sitio de Operaciones del Conjunto de ALMA.\\n\\n55\\n00:05:06,920 --> 00:05:11,670\\nLas condiciones aquí, a una altitud de 5.000 metros sobre el nivel del mar,\\n\\n56\\n00:05:11,670 --> 00:05:14,620\\nson duras y muy exigentes.\\n\\n57\\n00:05:16,860 --> 00:05:19,400\\nFuertes vientos.\\n\\n58\\n00:05:20,420 --> 00:05:22,880\\nBajas temperaturas.\\n\\n59\\n00:05:23,680 --> 00:05:26,540\\nRadiación ultravioleta extrema.\\n\\n60\\n00:05:27,040 --> 00:05:30,080\\nY una atmósfera terriblemente escasa.\\n\\n61\\n00:05:30,680 --> 00:05:35,290\\nTan escasa que para trabajar aquí la gente necesita oxígeno suplementario\\n\\n62\\n00:05:35,290 --> 00:05:38,760\\ny tiene que someterse a rigurosos controles de salud.\\n\\n63\\n00:05:41,880 --> 00:05:46,460\\nForjando las herramientas\\n\\n64\\n00:05:48,360 --> 00:05:51,440\\nLa producción de las antenas de ALMA se ha compartido\\n\\n65\\n00:05:51,440 --> 00:05:53,680\\nentre los tres socios de ALMA.\\n\\n66\\n00:05:55,140 --> 00:05:59,540\\nLos tres prototipos fueron puestos a prueba en el Sitio de Pruebas de ALMA,\\n\\n67\\n00:05:59,540 --> 00:06:03,440\\nen el Very Large Array, en Estados Unidos.\\n\\n68\\n00:06:05,030 --> 00:06:10,900\\nLas 66 antenas en el altiplano son una parte crítica de ALMA.\\n\\n69\\n00:06:12,240 --> 00:06:17,410\\nSus grandes discos captan las débiles ondas milimétricas provenientes del espacio.\\n\\n70\\n00:06:17,480 --> 00:06:21,070\\nEstas antenas son de última generación.\\n\\n71\\n00:06:22,740 --> 00:06:28,400\\nSus superficies tienen una precisión superior a la el grosor de una hoja de papel.\\n\\n72\\n00:06:30,170 --> 00:06:37,360\\nSe pueden mover con la precisión suficiente para distinguir una pelota de golf a una distancia de 15 kilómetros.\\n\\n73\\n00:06:39,760 --> 00:06:45,320\\n¡Y tienen que sobrevivir a la intemperie en Chajnantor!\\n\\n74\\n00:06:58,470 --> 00:07:03,700\\nVeinticinco antenas han sido proporcionadas por el Observatorio Europeo Austral,\\n\\n75\\n00:07:04,150 --> 00:07:08,220\\n25 por el National Radio Astronomy Observatory de Estados Unidos,\\n\\n76\\n00:07:08,220 --> 00:07:13,800\\ny 16 por el National Astronomical Observatory de Japón.\\n\\n77\\n00:07:20,520 --> 00:07:22,620\\nEn un esfuerzo verdaderamente mundial,\\n\\n78\\n00:07:22,620 --> 00:07:27,700\\nlos componentes de las antenas fueron construidos en varios lugares alrededor del mundo,\\n\\n79\\n00:07:27,700 --> 00:07:30,700\\nenviados a Chile para ser ensamblados\\n\\n80\\n00:07:44,360 --> 00:07:47,780\\ny luego probados en el Centro de Operaciones,\\n\\n81\\n00:07:47,780 --> 00:07:51,600\\nen preparación para su primera observación del cielo.\\n\\n82\\n00:07:55,790 --> 00:07:58,420\\nConectando las Primeras Antenas\\n\\n83\\n00:07:59,950 --> 00:08:04,930\\nLa primera antena de ALMA fue aceptada y poco después\\n\\n84\\n00:08:04,930 --> 00:08:08,750\\ndos antenas fueron conectadas exitosamente.\\n\\n85\\n00:08:12,120 --> 00:08:16,410\\nLos detectores de cada antena registran los matices más finos\\n\\n86\\n00:08:16,410 --> 00:08:19,710\\nde las débiles señales captadas por los platos.\\n\\n87\\n00:08:21,600 --> 00:08:25,040\\nEstos detectores son los más sensibles de su tipo\\n\\n88\\n00:08:25,040 --> 00:08:27,520\\ny son enfriados usando helio gaseoso\\n\\n89\\n00:08:27,520 --> 00:08:31,280\\na unos cuatro grados sobre el cero absoluto.\\n\\n90\\n00:08:34,890 --> 00:08:37,100\\nAlcanzando Nuevas Alturas\\n\\n91\\n00:08:41,470 --> 00:08:44,750\\nLa primera entena completada recorrió su camino\\n\\n92\\n00:08:44,750 --> 00:08:46,840\\nhasta el Sitio de Operaciones del Conjunto.\\n\\n93\\n00:08:48,160 --> 00:08:52,500\\nLos dos transportadores hechos a medida — Otto y Lore —\\n\\n94\\n00:08:52,500 --> 00:08:55,740\\ntrasladan las antenas de 100 toneladas.\\n\\n95\\n00:08:56,440 --> 00:08:59,580\\nOtto asciende cuidadosamente el sinuoso camino,\\n\\n96\\n00:08:59,580 --> 00:09:02,210\\nllevando la antena de alta tecnología\\n\\n97\\n00:09:02,210 --> 00:09:05,000\\nhasta su hogar en el altiplano.\\n\\n98\\n00:09:06,260 --> 00:09:10,400\\nEsta primera antena pronto se unió a muchas más.\\n\\n99\\n00:09:14,220 --> 00:09:16,340\\nSuperando las Expectativas\\n\\n100\\n00:09:18,240 --> 00:09:21,550\\nSe realizaron las primeras observaciones usando dos,\\n\\n101\\n00:09:21,550 --> 00:09:23,900\\ny luego tres antenas al unísono.\\n\\n102\\n00:09:24,950 --> 00:09:27,480\\nPruebas clave para el conjunto ALMA.\\n\\n103\\n00:09:28,580 --> 00:09:31,400\\n¡Y todas superadas exitosamente!\\n\\n104\\n00:09:35,230 --> 00:09:38,030\\nLas longitudes de onda milimétricas y submilimétricas\\n\\n105\\n00:09:38,030 --> 00:09:41,750\\ndan a los astrónomos una ventana única hacia el Universo.\\n\\n106\\n00:09:42,540 --> 00:09:45,780\\nPero para ver con la nitidez que los astrónomos necesitan,\\n\\n107\\n00:09:45,780 --> 00:09:48,890\\n¡Un telecopio de un disco único debería tener\\n\\n108\\n00:09:48,890 --> 00:09:52,890\\nkilómetros de diámetro (imposible de construir)!\\n\\n109\\n00:09:53,200 --> 00:09:57,250\\nEn su lugar, ALMA usa 66 antenas separadas\\n\\n110\\n00:09:57,250 --> 00:09:59,720\\nque pueden extenderse sobre el valle\\n\\n111\\n00:09:59,720 --> 00:10:03,700\\ncon separaciones de hasta 16 kilómetros.\\n\\n112\\n00:10:04,520 --> 00:10:08,210\\nLas antenas son conectadas y sus señales combinadas.\\n\\n113\\n00:10:08,510 --> 00:10:13,960\\nEl resultado: un telescopio gigante tan ancho como el conjunto completo,\\n\\n114\\n00:10:13,960 --> 00:10:19,500\\nobservando con una sensibilidad y resolución sin precedentes.\\n\\n115\\n00:10:24,200 --> 00:10:27,080\\nDar sentido a estas señales entrelazadas\\n\\n116\\n00:10:27,080 --> 00:10:31,440\\nnecesita el supercomputador de mayor altitud en el mundo.\\n\\n117\\n00:10:32,180 --> 00:10:35,040\\nCon 134 millones de procesadores,\\n\\n118\\n00:10:35,040 --> 00:10:39,400\\nrealizando 17 mil billones de operaciones por segundo\\n\\n119\\n00:10:39,400 --> 00:10:42,860\\n— tantas como el supercomputador más rápido del mundo —\\n\\n120\\n00:10:42,920 --> 00:10:45,840\\nel correlacionador de ALMA, en Chajnantor,\\n\\n121\\n00:10:45,840 --> 00:10:50,150\\ncombina y compara las señales de cada antena.\\n\\n122\\n00:10:56,430 --> 00:11:00,110\\nA medida que más y más antenas llegan a Chajnantor,\\n\\n123\\n00:11:00,110 --> 00:11:05,270\\nel Centro de Operaciones, el centro de control del observatorio,\\n\\n124\\n00:11:05,270 --> 00:11:11,840\\ntoma forma a la altitud un poco más acogedora de 2.900 metros.\\n\\n125\\n00:11:13,000 --> 00:11:15,960\\nEl sitio está repleto las 24 horas del día.\\n\\n126\\n00:11:15,960 --> 00:11:18,260\\nOperando el telescopio.\\n\\n127\\n00:11:18,260 --> 00:11:22,430\\nProbando y dando mantenimiento a las antenas y otros equipos.\\n\\n128\\n00:11:23,590 --> 00:11:25,880\\nY es el hogar del personal de ALMA\\n\\n129\\n00:11:25,880 --> 00:11:29,550\\ndurante sus turnos de día y noche en el observatorio.\\n\\n130\\n00:11:39,230 --> 00:11:41,670\\nOficinas Centrales en Santiago\\n\\n131\\n00:11:44,040 --> 00:11:46,840\\nEn la capital del país anfitrión, Chile,\\n\\n132\\n00:11:46,840 --> 00:11:50,760\\nfueron construidas las Oficinas Centrales de ALMA en Santiago.\\n\\n133\\n00:11:53,470 --> 00:11:57,200\\nAquí, el personal técnico, científico y administrativo\\n\\n134\\n00:11:57,200 --> 00:12:00,450\\nde la Oficina Conjunta ALMA está trabajando.\\n\\n135\\n00:12:09,670 --> 00:12:11,560\\nDemostrando Excelencia\\n\\n136\\n00:12:14,320 --> 00:12:17,280\\nIncluso antes que la etapa de construcción fuese completada,\\n\\n137\\n00:12:17,280 --> 00:12:20,630\\ncomenzaron las primeras observaciones científicas\\n\\n138\\n00:12:20,630 --> 00:12:23,120\\ncon un conjunto parcial de antenas.\\n\\n139\\n00:12:24,480 --> 00:12:27,400\\n¡ALMA había abierto sus ojos!\\n\\n140\\n00:12:33,430 --> 00:12:36,220\\nMiles de científicos de todo el mundo\\n\\n141\\n00:12:36,220 --> 00:12:41,200\\ncompitieron para estar entre los pocos afortunados para usar por primera vez las instalaciones.\\n\\n142\\n00:12:43,560 --> 00:12:46,230\\nIncluso con solo 16 antenas\\n\\n143\\n00:12:46,230 --> 00:12:51,000\\nALMA ya era el telescopio más poderoso de su clase.\\n\\n144\\n00:12:57,610 --> 00:13:02,240\\nLas primeras observaciones científicas cumplieron las expectativas de todos.\\n\\n145\\n00:13:06,120 --> 00:13:08,020\\nLas Galaxias de las Antenas,\\n\\n146\\n00:13:08,020 --> 00:13:12,550\\nun par de galaxias en colisión con formas dramáticamente distorsionadas.\\n\\n147\\n00:13:13,640 --> 00:13:17,070\\nLa luz visible puede mostrarnos las estrellas en las galaxias,\\n\\n148\\n00:13:17,070 --> 00:13:21,600\\npero ALMA revela las nubes de gas frío y denso\\n\\n149\\n00:13:21,600 --> 00:13:24,660\\na partir del que nacen nuevas estrellas.\\n\\n150\\n00:13:30,320 --> 00:13:35,430\\nEl corazón del la inconfundible galaxia Centaurus A.\\n\\n151\\n00:13:35,430 --> 00:13:41,040\\nALMA ve a través de las opacas líneas de polvo que ocultan su centro.\\n\\n152\\n00:13:45,960 --> 00:13:50,460\\nUna visión de la cercana estrella Fomalhaut proporciona pistas\\n\\n153\\n00:13:50,460 --> 00:13:53,880\\nde cómo se forman y evolucionan los sistemas planetarios.\\n\\n154\\n00:13:57,400 --> 00:14:01,610\\nLos granos de polvo cósmico encontrados alrededor de una enana marrón\\n\\n155\\n00:14:01,610 --> 00:14:03,450\\nsugieren que los planetas rocosos\\n\\n156\\n00:14:03,450 --> 00:14:07,220\\npueden ser más comunes en nuestro Universo de lo que pensábamos.\\n\\n157\\n00:14:11,180 --> 00:14:14,320\\nLas moléculas de azúcar, detectadas alrededor de una estrella joven\\n\\n158\\n00:14:14,320 --> 00:14:16,790\\nsimilar al Sol por primera vez:\\n\\n159\\n00:14:16,790 --> 00:14:20,720\\nlos bloques fundamentales de la vida en el lugar adecuado, en el momento adecuado,\\n\\n160\\n00:14:20,720 --> 00:14:24,800\\npara ser parte de los nuevos planetas que se forman alrededor de la estrella.\\n\\n161\\n00:14:29,330 --> 00:14:35,780\\nUna estructura espiral inesperada en el material alrededor de la vieja estrella R Sculptoris\\n\\n162\\n00:14:35,780 --> 00:14:39,480\\nrevelaron los secretos de esta estrella moribunda.\\n\\n163\\n00:14:44,740 --> 00:14:46,950\\nEnormes chorros de gas\\n\\n164\\n00:14:46,950 --> 00:14:48,480\\nfluyendo a través de un espacio\\n\\n165\\n00:14:48,480 --> 00:14:52,140\\nen el disco de material alrededor de una estrella joven.\\n\\n166\\n00:14:52,140 --> 00:14:55,200\\nUna etapa clave en el nacimiento de los planetas gigantes,\\n\\n167\\n00:14:55,200 --> 00:14:58,120\\nobservada por primera vez.\\n\\n168\\n00:14:58,120 --> 00:15:02,800\\n¡Y todo esto antes que el conjunto estuviese completamente terminado!\\n\\n169\\n00:15:05,240 --> 00:15:07,520\\nHacia Nuevos Horizontes\\n\\n170\\n00:15:10,270 --> 00:15:13,830\\nLa inauguración de ALMA celebra su madurez.\\n\\n171\\n00:15:13,830 --> 00:15:16,340\\nEl viaje ha sido largo.\\n\\n172\\n00:15:16,340 --> 00:15:18,670\\nALMA ha crecido desde una idea,\\n\\n173\\n00:15:18,670 --> 00:15:20,520\\na un proyecto en construcción,\\n\\n174\\n00:15:20,520 --> 00:15:22,960\\na un observatorio completamente operativo,\\n\\n175\\n00:15:22,960 --> 00:15:27,600\\ny a una colaboración científica verdaderamente mundial.\\n\\n176\\n00:15:36,750 --> 00:15:40,730\\nEn la serena y solitaria belleza del desierto chileno de Atacama,\\n\\n177\\n00:15:40,730 --> 00:15:43,220\\nALMA está listo para el futuro.\\n\\n178\\n00:15:43,830 --> 00:15:46,440\\nUsando este maravilloso telescopio,\\n\\n179\\n00:15:46,440 --> 00:15:49,440\\nlos astrónomos del mundo profundizarán\\n\\n180\\n00:15:49,440 --> 00:15:52,600\\nen los secretos ocultos del cosmos.\\n\\n181\\n00:15:53,040 --> 00:15:58,160\\n¡En busca de nuestros orígenes cósmicos!\\n\\n182\\n00:16:03,680 --> 00:16:09,720\\nALMA\\n\\n183\\n00:16:18,240 --> 00:16:22,840\\nA todos aquellos cuya curiosidad los lleva a hacer las preguntas más grandes\\n\\n184\\n00:16:23,480 --> 00:16:28,930\\nTranscripción por ESO; traducción por Felipe Campos.',\n", + " 'bytes': 15611,\n", + " 'sha1': '8w4ycapribbozis3cf6we7b7pqz2gbi',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92553197,\n", + " 'timestamp': '2013-03-14T09:11:23Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25113656,\n", + " 'title': 'The movie ALMA — In Search of our Cosmic Origins.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:05,000 --> 00:00:14,000 ALMA 2 00:00:15,000 --> 00:00:26,000 Em Busca das Nossas Origens Cósmicas 3 00:00:36,500 --> 00:00:42,000 No alto do desolado...'\",\n", + " 'text': '1\\n00:00:05,000 --> 00:00:14,000\\nALMA\\n\\n2\\n00:00:15,000 --> 00:00:26,000\\nEm Busca das Nossas Origens Cósmicas\\n\\n3\\n00:00:36,500 --> 00:00:42,000\\nNo alto do desolado Planalto de Chajnantor nos Andes chilenos.\\n\\n4\\n00:00:43,000 --> 00:00:45,000\\nUm dos mais hostis ambientes na Terra.\\n\\n5\\n00:00:45,500 --> 00:00:47,040\\nPor entre vulcões ...\\n\\n6\\n00:00:47,459 --> 00:00:49,000\\nPlanícies desertas ...\\n\\n7\\n00:00:49,200 --> 00:00:50,690\\nE ventos agrestes ...\\n\\n8\\n00:00:51,000 --> 00:00:57,300\\nALMA — o Atacama Large Milimeter/sub-milimeter Array — está pronto.\\n\\n9\\n00:01:07,000 --> 00:01:10,500\\nAstrónomos e cientistas por todo o globo\\n\\n10\\n00:01:10,500 --> 00:01:15,000\\nansiavam por este momento há décadas.\\n\\n11\\n00:01:15,190 --> 00:01:19,430\\nALMA é o maior projeto astronómico do mundo.\\n\\n12\\n00:01:19,430 --> 00:01:22,620\\nMas não se trata de um telescópio convencional.\\n\\n13\\n00:01:22,620 --> 00:01:26,640\\nEm vez de recolher e analisar a luz visível\\n\\n14\\n00:01:26,640 --> 00:01:31,400\\nolha para uma outra parte do espectro largamente inexplorada.\\n\\n15\\n00:01:40,240 --> 00:01:43,100\\nAo abrir uma nova janela para o cosmos,\\n\\n16\\n00:01:43,500 --> 00:01:50,760\\no ALMA explora uma das últimas fronteiras da astronomia — o Universo frio e distante.\\n\\n17\\n00:01:53,000 --> 00:01:58,950\\nTudo em busca de respostas para algumas das mais profundas questões sobre as nossas origens cósmicas.\\n\\n18\\n00:01:58,950 --> 00:02:01,600\\nComo se formam as estrelas e os planetas?\\n\\n19\\n00:02:01,600 --> 00:02:04,490\\nComo se formaram as primeiras galáxias?\\n\\n20\\n00:02:07,000 --> 00:02:10,979\\nO Planalto de Chajnantor no norte do Chile.\\n\\n21\\n00:02:12,000 --> 00:02:17,640\\nApesar da altitude de — literalmente! — cortar a respiração a 5000 metros acima do nível do mar\\n\\n22\\n00:02:17,640 --> 00:02:20,220\\no ALMA floresceu.\\n\\n23\\n00:02:20,220 --> 00:02:23,000\\nAo longo dos últimos anos,\\n\\n24\\n00:02:23,000 --> 00:02:27,740\\nmais de 50 antenas foram instaladas ao longo do planalto deserto.\\n\\n25\\n00:02:29,060 --> 00:02:34,230\\nALMA é um telescópio gigante e único, construído numa parceria\\n\\n26\\n00:02:34,230 --> 00:02:39,800\\nentre a Europa, a América do Norte e o Leste Asiático, em cooperação com o Chile.\\n\\n27\\n00:02:41,320 --> 00:02:46,000\\nSessenta e seis antenas com tecnologia de ponta irão observar o Universo\\n\\n28\\n00:02:46,000 --> 00:02:49,160\\nem comprimentos de onda milimétricos e submilimétricos\\n\\n29\\n00:02:50,500 --> 00:02:54,380\\n— mil vezes mais longos do que comprimentos de onda visíveis.\\n\\n30\\n00:02:55,920 --> 00:02:59,220\\nEsta luz chega até nós desde alguns dos mais frios\\n\\n31\\n00:02:59,220 --> 00:03:02,780\\ne distantes objetos no Universo.\\n\\n32\\n00:03:04,160 --> 00:03:06,970\\nO vapor de água na atmosfera bloqueia\\n\\n33\\n00:03:06,970 --> 00:03:09,480\\nestes leves sussurros do Universo oculto,\\n\\n34\\n00:03:09,480 --> 00:03:15,500\\nportanto para captá-los temos que ir para um local extremamente elevado e seco\\n\\n35\\n00:03:15,500 --> 00:03:18,680\\n— como Chajnantor.\\n\\n36\\n00:03:24,610 --> 00:03:26,270\\nO Nascimento do ALMA\\n\\n37\\n00:03:26,720 --> 00:03:30,550\\nA origem do projecto ALMA data de há décadas atrás.\\n\\n38\\n00:03:31,000 --> 00:03:35,090\\nCientistas da Europa, América do Norte e Leste Asiático\\n\\n39\\n00:03:35,090 --> 00:03:39,490\\ndesenvolveram três conceitos individuais para novos, grandes telescópios\\n\\n40\\n00:03:39,490 --> 00:03:42,920\\npara observações em milímetro e submilímetro.\\n\\n41\\n00:03:43,670 --> 00:03:47,680\\nEventualmente estes conceitos fundiram-se num só.\\n\\n42\\n00:03:48,760 --> 00:03:53,080\\nCiência em grande requer grandes colaborações globais.\\n\\n43\\n00:03:53,080 --> 00:03:57,920\\nJuntos, os países conseguem alcançar o que não conseguem fazer sozinhos.\\n\\n44\\n00:03:59,360 --> 00:04:03,960\\nO todo é maior que a soma das partes.\\n\\n45\\n00:04:04,290 --> 00:04:08,110\\nO projecto ALMA nasceu!\\n\\n46\\n00:04:11,000 --> 00:04:14,760\\nEncontrando o Sítio Certo\\n\\n47\\n00:04:20,279 --> 00:04:22,940\\nEste novo telescópio precisava de um lar,\\n\\n48\\n00:04:22,940 --> 00:04:26,520\\ne os olhares viraram-se para Chajnantor.\\n\\n49\\n00:04:26,870 --> 00:04:31,600\\nCada um dos aspetos do local, desde astronómicos a meteorológicos,\\n\\n50\\n00:04:31,600 --> 00:04:35,720\\nfoi intensivamente testado e a atmosfera foi monitorizada diariamente\\n\\n51\\n00:04:35,840 --> 00:04:42,440\\nA conclusão: Chajnantor era o lugar perfeito para o ALMA.\\n\\n52\\n00:04:46,640 --> 00:04:50,300\\nAbrindo Caminho\\n\\n53\\n00:04:51,500 --> 00:04:55,910\\nA construção começou em 2003 com a colocação da primeira pedra\\n\\n54\\n00:04:55,910 --> 00:04:58,770\\npara o centro de operações do ALMA.\\n\\n55\\n00:05:06,920 --> 00:05:11,670\\nAqui, a uma altura de 5000 metros acima do nível do mar, as condições\\n\\n56\\n00:05:11,670 --> 00:05:14,620\\nsão duras e extremamente desafiantes.\\n\\n57\\n00:05:16,860 --> 00:05:19,400\\nVentos fortes.\\n\\n58\\n00:05:20,420 --> 00:05:22,880\\nBaixas temperaturas.\\n\\n59\\n00:05:23,680 --> 00:05:26,540\\nIntensa radiação ultravioleta.\\n\\n60\\n00:05:27,040 --> 00:05:30,080\\nE uma atmosfera desesperadamente fina.\\n\\n61\\n00:05:30,680 --> 00:05:35,290\\nTão fina que, para trabalhar aqui, as pessoas precisam de oxigénio suplementar\\n\\n62\\n00:05:35,290 --> 00:05:38,760\\ne têm que se submeter a rigorosos testes de saúde.\\n\\n63\\n00:05:41,880 --> 00:05:46,460\\nForjando as Ferramentas\\n\\n64\\n00:05:48,360 --> 00:05:51,440\\nA produção das antenas do ALMA foi partilhada\\n\\n65\\n00:05:51,440 --> 00:05:53,680\\nentre os três parceiros.\\n\\n66\\n00:05:55,140 --> 00:05:59,540\\nTrês protótipos foram postos em marcha nas instalações de testes do ALMA,\\n\\n67\\n00:05:59,540 --> 00:06:03,440\\nno Very Large Array, nos EUA.\\n\\n68\\n00:06:05,030 --> 00:06:10,900\\nAs 66 antenas no elevado planalto constituem uma parte crítica do ALMA.\\n\\n69\\n00:06:12,240 --> 00:06:17,410\\nOs seus grandes discos recolhem as ténues ondas milimétricas do espaço.\\n\\n70\\n00:06:17,480 --> 00:06:21,070\\nEstas antenas são verdadeiramente o estado-da-arte.\\n\\n71\\n00:06:22,740 --> 00:06:28,400\\nAs suas superfícies têm uma precisão ao nível da espessura de uma folha de papel.\\n\\n72\\n00:06:30,170 --> 00:06:37,360\\nElas conseguem mover-se com exatidão suficiente para apanhar uma bola de golfe a uma distância de 15 quilómetros.\\n\\n73\\n00:06:39,760 --> 00:06:45,320\\nE têm de sobreviver, expostas aos elementos, em Chajnantor!\\n\\n74\\n00:06:58,470 --> 00:07:03,700\\nVinte e cinco antenas foram fornecidas pelo Observatório Europeu do Sul,\\n\\n75\\n00:07:04,150 --> 00:07:08,220\\n25 pelo Observatório Nacional de Rádio Astronomia dos Estados Unidos,\\n\\n76\\n00:07:08,220 --> 00:07:13,800\\ne 16 pelo Observatório Astronómico do Japão.\\n\\n77\\n00:07:20,520 --> 00:07:22,620\\nNuma saga verdadeiramente global,\\n\\n78\\n00:07:22,620 --> 00:07:27,700\\nos componentes de cada antena foram construídos em diversas localizações à volta do mundo,\\n\\n79\\n00:07:27,700 --> 00:07:30,700\\nenviadas para o Chile para serem montadas\\n\\n80\\n00:07:44,360 --> 00:07:47,780\\ne depois testadas no complexo de apoio às operações.\\n\\n81\\n00:07:47,780 --> 00:07:51,600\\na postos para a sua primeira observação do céu.\\n\\n82\\n00:07:55,790 --> 00:07:58,420\\nLigando as Primeiras Antenas\\n\\n83\\n00:07:59,950 --> 00:08:04,930\\nA primeira antena do ALMA foi aceite e pouco depois\\n\\n84\\n00:08:04,930 --> 00:08:08,750\\nduas antenas foram ligadas em conjunto com sucesso.\\n\\n85\\n00:08:12,120 --> 00:08:16,410\\nDetetores em cada antena registaram as finas nuances\\n\\n86\\n00:08:16,410 --> 00:08:19,710\\ndos ténues sinais captados pelos discos.\\n\\n87\\n00:08:21,600 --> 00:08:25,040\\nEstes detetores são os mais sensíveis da sua espécie\\n\\n88\\n00:08:25,040 --> 00:08:27,520\\ne são arrefecidos usando gás hélio\\n\\n89\\n00:08:27,520 --> 00:08:31,280\\na apenas quatro graus acima do zero absoluto.\\n\\n90\\n00:08:34,890 --> 00:08:37,100\\nAlcançando Novas Alturas\\n\\n91\\n00:08:41,470 --> 00:08:44,750\\nA primeira antena a ser concluída percorre o seu caminho\\n\\n92\\n00:08:44,750 --> 00:08:46,840\\naté ao centro de operações.\\n\\n93\\n00:08:48,160 --> 00:08:52,500\\nDois veículos de construção personalizada — Otto e Lore —\\n\\n94\\n00:08:52,500 --> 00:08:55,740\\ndeslocam as antenas de 100 toneladas.\\n\\n95\\n00:08:56,440 --> 00:08:59,580\\nO Otto sobe cuidadosamente a estrada sinuosa,\\n\\n96\\n00:08:59,580 --> 00:09:02,210\\ncarregando a antena de alta tecnologia\\n\\n97\\n00:09:02,210 --> 00:09:05,000\\naté à sua casa final no planalto.\\n\\n98\\n00:09:06,260 --> 00:09:10,400\\nA primeira antena foi em breve acompanhada por muitas mais.\\n\\n99\\n00:09:14,220 --> 00:09:16,340\\nUltrapassando Expetativas\\n\\n100\\n00:09:18,240 --> 00:09:21,550\\nAs primeiras observações utilizando duas, e depois três\\n\\n101\\n00:09:21,550 --> 00:09:23,900\\nantenas em uníssono foram realizadas.\\n\\n102\\n00:09:24,950 --> 00:09:27,480\\nTestes importantes para o complexo ALMA.\\n\\n103\\n00:09:28,580 --> 00:09:31,400\\nE todos passaram com distinção!\\n\\n104\\n00:09:35,230 --> 00:09:38,030\\nOs comprimentos de onda milimétricos e submilimétricos\\n\\n105\\n00:09:38,030 --> 00:09:41,750\\nproporcionam aos astrónomos uma janela única no Universo.\\n\\n106\\n00:09:42,540 --> 00:09:45,780\\nMas para os vermos com a nitidez de que os astrónomos precisam,\\n\\n107\\n00:09:45,780 --> 00:09:48,890\\num telescópio de um único disco teria que ter\\n\\n108\\n00:09:48,890 --> 00:09:52,890\\nquilómetros de diâmetro (e ser impossível de construir)!\\n\\n109\\n00:09:53,200 --> 00:09:57,250\\nEm vez disso, o ALMA usa 66 antenas individuais\\n\\n110\\n00:09:57,250 --> 00:09:59,720\\nque podem ser espalhadas por toda a planície\\n\\n111\\n00:09:59,720 --> 00:10:03,700\\ncom uma separação de até 16 quilómetros.\\n\\n112\\n00:10:04,520 --> 00:10:08,210\\nAs antenas são ligadas e os seus sinais combinados.\\n\\n113\\n00:10:08,510 --> 00:10:13,960\\nO resultado: um telescópio gigante tão amplo quanto todo o conjunto,\\n\\n114\\n00:10:13,960 --> 00:10:19,500\\nobservando com sensibilidade e resolução sem precedentes.\\n\\n115\\n00:10:24,200 --> 00:10:27,080\\nFazer sentido destes sinais entrelaçados\\n\\n116\\n00:10:27,080 --> 00:10:31,440\\nrequer o supercomputador a maior altitude no mundo.\\n\\n117\\n00:10:32,180 --> 00:10:35,040\\nCom 134 milhões de processadores,\\n\\n118\\n00:10:35,040 --> 00:10:39,400\\nrealizando 17 mil biliões de operações por segundo\\n\\n119\\n00:10:39,400 --> 00:10:42,860\\n— tantas como o supercomputador mais rápido do mundo —\\n\\n120\\n00:10:42,920 --> 00:10:45,840\\no correlacionador do ALMA, em Chajnantor,\\n\\n121\\n00:10:45,840 --> 00:10:50,150\\ncombina e compara os sinais de cada uma das antenas.\\n\\n122\\n00:10:56,430 --> 00:11:00,110\\nConforme mais e mais antenas chegam a Chajnantor,\\n\\n123\\n00:11:00,110 --> 00:11:05,270\\nas instalações de apoio às operações, o centro de controlo do observatório,\\n\\n124\\n00:11:05,270 --> 00:11:11,840\\nvão ganhando forma na ligeiramente mais acolhedora altitude de 2900 metros.\\n\\n125\\n00:11:13,000 --> 00:11:15,960\\nO local é movimentado a toda a hora.\\n\\n126\\n00:11:15,960 --> 00:11:18,260\\nOperar o Telescópio.\\n\\n127\\n00:11:18,260 --> 00:11:22,430\\nTestar e manter as antenas e restante equipamento.\\n\\n128\\n00:11:23,590 --> 00:11:25,880\\nE acolher o pessoal do ALMA\\n\\n129\\n00:11:25,880 --> 00:11:29,550\\ndurante os seus turnos diários e noturnos no observatório.\\n\\n130\\n00:11:39,230 --> 00:11:41,670\\nEscritórios Centrais de Santiago\\n\\n131\\n00:11:44,040 --> 00:11:46,840\\nNa capital da nação anfitriã, o Chile,\\n\\n132\\n00:11:46,840 --> 00:11:50,760\\nforam construídos os escritórios centrais do ALMA de Santiago.\\n\\n133\\n00:11:53,470 --> 00:11:57,200\\nAqui trabalham o pessoal técnico, científico e administrativo\\n\\n134\\n00:11:57,200 --> 00:12:00,450\\ndos escritórios conjuntos do ALMA.\\n\\n135\\n00:12:09,670 --> 00:12:11,560\\nComprovando Excelência\\n\\n136\\n00:12:14,320 --> 00:12:17,280\\nMesmo antes da fase de construção estar completa,\\n\\n137\\n00:12:17,280 --> 00:12:20,630\\ntiveram início as primeiras observações científicas\\n\\n138\\n00:12:20,630 --> 00:12:23,120\\ncom uma parte das antenas.\\n\\n139\\n00:12:24,480 --> 00:12:27,400\\nO ALMA abriu os seus olhos!\\n\\n140\\n00:12:33,430 --> 00:12:36,220\\nMilhares de cientistas de todo o mundo\\n\\n141\\n00:12:36,220 --> 00:12:41,200\\ncompetiram para serem dos primeiros felizardos a utilizar o complexo.\\n\\n142\\n00:12:43,560 --> 00:12:46,230\\nMesmo com 16 antenas apenas\\n\\n143\\n00:12:46,230 --> 00:12:51,000\\no ALMA era já o mais poderoso telescópio do seu género.\\n\\n144\\n00:12:57,610 --> 00:13:02,240\\nAs primeiras observações científicas satisfizeram as esperanças de todos.\\n\\n145\\n00:13:06,120 --> 00:13:08,020\\nAs Galáxias Antennae,\\n\\n146\\n00:13:08,020 --> 00:13:12,550\\num par de galáxias em colisão com formas dramaticamente distorcidas.\\n\\n147\\n00:13:13,640 --> 00:13:17,070\\nA luz visível pode mostrar-nos a luz das estrelas nas galáxias,\\n\\n148\\n00:13:17,070 --> 00:13:21,600\\nmas o ALMA revela as nuvens de gás denso e frio\\n\\n149\\n00:13:21,600 --> 00:13:24,660\\ndas quais as estrelas nascem.\\n\\n150\\n00:13:30,320 --> 00:13:35,430\\nO coração da distinta galáxia Centaurus A.\\n\\n151\\n00:13:35,430 --> 00:13:41,040\\nO ALMA perscruta através das faixas de pó opacas que obscurecem o seu centro.\\n\\n152\\n00:13:45,960 --> 00:13:50,460\\nUma vista da estrela próxima Fomalhaut fornece pistas\\n\\n153\\n00:13:50,460 --> 00:13:53,880\\nacerca de como os sistemas planetários se formam e evolvem.\\n\\n154\\n00:13:57,400 --> 00:14:01,610\\nGrãos de poeira cósmica encontrados ao redor de uma anã castanha\\n\\n155\\n00:14:01,610 --> 00:14:03,450\\nsugerem que planetas rochosos\\n\\n156\\n00:14:03,450 --> 00:14:07,220\\npodem mesmo ser mais comuns no nosso Universo do que pensávamos.\\n\\n157\\n00:14:11,180 --> 00:14:14,320\\nMoléculas de açúcar, detetadas à volta de uma jovem\\n\\n158\\n00:14:14,320 --> 00:14:16,790\\nestrela como o Sol pela primeira vez:\\n\\n159\\n00:14:16,790 --> 00:14:20,720\\nos blocos de construção da vida no lugar certo, à hora certa,\\n\\n160\\n00:14:20,720 --> 00:14:24,800\\npara tomarem parte na formação de novos planetas em torno da estrela.\\n\\n161\\n00:14:29,330 --> 00:14:35,780\\nUma inesperada estrutura em espiral na matéria ao redor da velha estrela R Sculptoris\\n\\n162\\n00:14:35,780 --> 00:14:39,480\\nrevelou os segredos desta estrela moribunda.\\n\\n163\\n00:14:44,740 --> 00:14:46,950\\nVastos jatos de gás\\n\\n164\\n00:14:46,950 --> 00:14:48,480\\nfluindo através de uma abertura\\n\\n165\\n00:14:48,480 --> 00:14:52,140\\nno disco de matéria à volta de uma estrela jovem.\\n\\n166\\n00:14:52,140 --> 00:14:55,200\\nUma fase chave no nascimento de planetas gigantes,\\n\\n167\\n00:14:55,200 --> 00:14:58,120\\nobservada pela primeira vez.\\n\\n168\\n00:14:58,120 --> 00:15:02,800\\nE tudo isto antes do conjunto estar completo!\\n\\n169\\n00:15:05,240 --> 00:15:07,520\\nEm Direção a Novos Horizontes\\n\\n170\\n00:15:10,270 --> 00:15:13,830\\nA inauguração do ALMA celebra a sua maioridade.\\n\\n171\\n00:15:13,830 --> 00:15:16,340\\nA jornada foi longa.\\n\\n172\\n00:15:16,340 --> 00:15:18,670\\nO ALMA cresceu de uma ideia,\\n\\n173\\n00:15:18,670 --> 00:15:20,520\\na um projeto de construção,\\n\\n174\\n00:15:20,520 --> 00:15:22,960\\na um observatório completamente operacional,\\n\\n175\\n00:15:22,960 --> 00:15:27,600\\ne a uma parceria científica verdadeiramente global.\\n\\n176\\n00:15:36,750 --> 00:15:40,730\\nNa serena e solitária beleza do deserto do Atacama no Chile,\\n\\n177\\n00:15:40,730 --> 00:15:43,220\\no ALMA está pronto para o futuro.\\n\\n178\\n00:15:43,830 --> 00:15:46,440\\nAo utilizar este maravilhoso telescópio,\\n\\n179\\n00:15:46,440 --> 00:15:49,440\\nos astrónomos irão olhar profundamente\\n\\n180\\n00:15:49,440 --> 00:15:52,600\\nnos segredos escondidos do cosmos.\\n\\n181\\n00:15:53,040 --> 00:15:58,160\\nEm busca das nossas próprias origens cósmicas!\\n\\n182\\n00:16:03,680 --> 00:16:09,720\\nALMA\\n\\n183\\n00:16:18,240 --> 00:16:22,840\\nA todos aquelas cuja curiosidade leva a fazer as grandes perguntas\\n\\n184\\n00:16:23,480 --> 00:16:28,930\\nTranscrição por ESO; tradução por Paula Santos',\n", + " 'bytes': 15446,\n", + " 'sha1': 'i7sdskqflpbqlb7ozcwauwjr5ynvf5l',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92553942,\n", + " 'timestamp': '2013-03-14T09:35:01Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25113940,\n", + " 'title': 'ESOcast 51 All Systems Go for Highest Altitude Supercomputer.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,000 --> 00:00:07,000 One of the most powerful supercomputers in the world 2 00:00:07,000 --> 00:00:11,000 has now been fully installed and tested ...'\",\n", + " 'text': '1\\n00:00:03,000 --> 00:00:07,000\\nOne of the most powerful supercomputers in the world\\n\\n2\\n00:00:07,000 --> 00:00:11,000\\nhas now been fully installed and tested \\n\\n3\\n00:00:11,000 --> 00:00:14,000\\nat its remote, high altitude site\\n\\n4\\n00:00:14,000 --> 00:00:16,000\\nin the Andes of northern Chile.\\n\\n5\\n00:00:17,000 --> 00:00:21,000\\nThis marks one of the major remaining milestones\\n\\n6\\n00:00:21,000 --> 00:00:23,000\\ntoward completion of ALMA,\\n\\n7\\n00:00:23,000 --> 00:00:28,000\\nthe Atacama Large Millimeter/submillimeter Array.\\n\\n8\\n00:00:29,000 --> 00:00:32,000\\nThe ALMA correlator turns ALMA\\'s\\n\\n9\\n00:00:32,000 --> 00:00:37,000\\nmany antennas into one giant telescope.\\n\\n10\\n00:00:42,000 --> 00:00:44,000\\nThis is the ESOcast!\\n\\n11\\n00:00:44,000 --> 00:00:48,000\\nCutting-edge science and life behind the scenes\\n\\n12\\n00:00:48,000 --> 00:00:52,000\\nat ESO, the European Southern Observatory.\\n\\n13\\n00:01:01,000 --> 00:01:06,000\\nALMA is the most elaborate ground-based telescope in history\\n\\n14\\n00:01:06,000 --> 00:01:11,000\\nand is composed of an array of 66 dish-shaped antennas.\\n\\n15\\n00:01:12,000 --> 00:01:15,000\\nIts supercomputer, or correlator,\\n\\n16\\n00:01:15,000 --> 00:01:18,000\\nis a component of crucial importance.\\n\\n17\\n00:01:19,000 --> 00:01:22,000\\nFor ALMA to work, the faint celestial signals\\n\\n18\\n00:01:22,000 --> 00:01:26,000\\ncollected by each antenna must be combined \\n\\n19\\n00:01:26,000 --> 00:01:28,000\\nwith those from every other antenna.\\n\\n20\\n00:01:30,000 --> 00:01:34,000\\nThe correlator\\'s processors will continually combine and compare\\n\\n21\\n00:01:34,000 --> 00:01:38,000\\nthe data from up to 64 of the antennas in the ALMA array,\\n\\n22\\n00:01:38,000 --> 00:01:42,000\\nwhich are separated by up to 16 kilometres,\\n\\n23\\n00:01:42,000 --> 00:01:46,000\\nenabling the antennas to work together\\n\\n24\\n00:01:46,000 --> 00:01:49,000\\nas a single, enormous, telescope.\\n\\n25\\n00:01:50,000 --> 00:01:53,000\\nThe ALMA correlator has over\\n\\n26\\n00:01:53,000 --> 00:01:59,000\\n134 million processors, and performs up to an unbelievable \\n\\n27\\n00:01:59,000 --> 00:02:03,000\\n17 quadrillion operations per second.\\n\\n28\\n00:02:03,000 --> 00:02:08,000\\nThat is 17 thousand million million!\\n\\n29\\n00:02:10,000 --> 00:02:14,000\\nThe correlator was built specifically for this task,\\n\\n30\\n00:02:14,000 --> 00:02:18,000\\nbut the number of calculations per second is comparable\\n\\n31\\n00:02:18,000 --> 00:02:21,000\\nto the performance of the fastest general-purpose\\n\\n32\\n00:02:21,000 --> 00:02:24,000\\nsupercomputers in the world.\\n\\n33\\n00:02:25,000 --> 00:02:29,000\\nThis unique processing challenge needed innovative design,\\n\\n34\\n00:02:29,000 --> 00:02:33,000\\nboth for the individual components and for the overall\\n\\n35\\n00:02:33,000 --> 00:02:36,000\\narchitecture of the correlator.\\n\\n36\\n00:02:38,000 --> 00:02:41,000\\nThe initial design of the correlator,\\n\\n37\\n00:02:41,000 --> 00:02:44,000\\nas well as its construction and installation,\\n\\n38\\n00:02:44,000 --> 00:02:48,000\\nwas led by the US National Radio Astronomy Observatory,\\n\\n39\\n00:02:48,000 --> 00:02:52,000\\nthe lead North American partner in ALMA.\\n\\n40\\n00:02:53,000 --> 00:02:57,000\\nThe correlator project was funded by the US National Science Foundation,\\n\\n41\\n00:02:57,000 --> 00:03:01,000\\nwith contributions from ESO.\\n\\n42\\n00:03:01,000 --> 00:03:05,000\\nAs the European partner in ALMA, ESO\\n\\n43\\n00:03:05,000 --> 00:03:08,000\\nalso provided a key part of the correlator:\\n\\n44\\n00:03:08,000 --> 00:03:13,000\\nan entirely new and versatile digital filtering system,\\n\\n45\\n00:03:13,000 --> 00:03:15,000\\nconceived and built in Europe,\\n\\n46\\n00:03:15,000 --> 00:03:20,000\\nwas incorporated into the initial NRAO design.\\n\\n47\\n00:03:22,000 --> 00:03:26,000\\nThe University of Bordeaux designed and built a set\\n\\n48\\n00:03:26,000 --> 00:03:32,000\\nof 550 state-of-the-art digital filter circuit boards for ESO.\\n\\n49\\n00:03:32,000 --> 00:03:36,000\\nWith these filters, the light that ALMA sees\\n\\n50\\n00:03:36,000 --> 00:03:39,000\\ncan be split up into 32 times more wavelength ranges\\n\\n51\\n00:03:39,000 --> 00:03:42,000\\nthan in the initial design,\\n\\n52\\n00:03:42,000 --> 00:03:48,000\\nallowing astronomers to flexibly \"slice and dice\" the spectrum of light.\\n\\n53\\n00:03:50,000 --> 00:03:55,000\\nAs well as enormous technical challenges in building the correlator,\\n\\n54\\n00:03:55,000 --> 00:04:00,000\\nthe extreme location of the system was also a factor.\\n\\n55\\n00:04:01,000 --> 00:04:03,000\\nThe correlator is housed in the ALMA\\n\\n56\\n00:04:03,000 --> 00:04:06,000\\nArray Operations Site Technical Building,\\n\\n57\\n00:04:06,000 --> 00:04:10,000\\nthe highest-altitude high-tech building in the world.\\n\\n58\\n00:04:11,000 --> 00:04:16,000\\nAt 5000 metres altitude, the air is thin, meaning that\\n\\n59\\n00:04:16,000 --> 00:04:21,000\\ntwice the normal airflow is necessary to cool the supercomputer.\\n\\n60\\n00:04:23,000 --> 00:04:28,000\\nThe thin air also makes it impossible to use spinning computer disk drives,\\n\\n61\\n00:04:28,000 --> 00:04:31,000\\nas their read/write heads rely on\\n\\n62\\n00:04:31,000 --> 00:04:36,000\\na cushion of air to stop them crashing into their platters.\\n\\n63\\n00:04:36,000 --> 00:04:40,000\\nFurthermore, the correlator had to be designed to withstand\\n\\n64\\n00:04:40,000 --> 00:04:44,000\\nearthquakes, which are common in this region.\\n\\n65\\n00:04:46,000 --> 00:04:49,000\\nALMA began science observations in 2011\\n\\n66\\n00:04:49,000 --> 00:04:52,000\\nwith a partial array of antennas.\\n\\n67\\n00:04:53,000 --> 00:04:56,000\\nA section of the correlator was already in use\\n\\n68\\n00:04:56,000 --> 00:04:59,000\\nto combine the signals from these antennas,\\n\\n69\\n00:04:59,000 --> 00:05:02,000\\nbut now the full system is complete,\\n\\n70\\n00:05:02,000 --> 00:05:08,000\\nready for ALMA to begin observations with a larger number of antennas.\\n\\n71\\n00:05:12,000 --> 00:05:15,000\\nThe successful installation of the new supercomputer\\n\\n72\\n00:05:15,000 --> 00:05:21,000\\nmarks an important step toward the completion of ALMA in the near future.\\n\\n73\\n00:05:23,000 --> 00:05:27,000\\nBy using the array\\'s unparalleled observational power,\\n\\n74\\n00:05:27,000 --> 00:05:34,000\\nscientists will gain new insights into the hidden wonders of the Universe.\\n\\n75\\n00:05:41,000 --> 00:05:45,000\\nESOcast is produced by ESO, the European Southern Observatory www.eso.org\\n\\n76\\n00:05:45,000 --> 00:05:49,000\\nESO, the European Southern Observatory, is the pre-eminent intergovernmental science and technology organisation in astronomy,\\n\\n77\\n00:05:49,000 --> 00:05:52,000\\ndesigning, constructing and operating the world’s most advanced ground-based telescopes.\\n\\n78\\n00:05:55,000 --> 00:05:59,000\\nTranscription by ESO ; translation by —',\n", + " 'bytes': 6494,\n", + " 'sha1': 'cr073fxsg84odrico5hlj0p4yykd8u1',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92553985,\n", + " 'timestamp': '2013-03-14T09:35:46Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25113965,\n", + " 'title': 'ESOcast 51 All Systems Go for Highest Altitude Supercomputer.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,000 --> 00:00:07,000 Un des plus puissants super-ordinateurs au monde 2 00:00:07,000 --> 00:00:11,000 est maintenant installé et complètement test...'\",\n", + " 'text': '1\\n00:00:03,000 --> 00:00:07,000\\nUn des plus puissants super-ordinateurs au monde\\n\\n2\\n00:00:07,000 --> 00:00:11,000\\nest maintenant installé et complètement testé\\n\\n3\\n00:00:11,000 --> 00:00:14,000\\ndans un endroit isolé à très haute altitude\\n\\n4\\n00:00:14,000 --> 00:00:16,000\\ndans les Andes, au nord du Chili.\\n\\n5\\n00:00:17,000 --> 00:00:21,000\\nCeci constitue une des dernières étapes majeures\\n\\n6\\n00:00:21,000 --> 00:00:23,000\\nde la finalisation de ALMA,\\n\\n7\\n00:00:23,000 --> 00:00:28,000\\nou Atacama Large Millimeter/submillimeter Array.\\n\\n8\\n00:00:29,000 --> 00:00:32,000\\nLe corrélateur de ALMA transforme ses\\n\\n9\\n00:00:32,000 --> 00:00:37,000\\nnombreuses antennes en un télescope géant.\\n\\n10\\n00:00:42,000 --> 00:00:44,000\\nVoici l\\'ESOcast !\\n\\n11\\n00:00:44,000 --> 00:00:48,000\\nLa science et la vie quotidienne à l\\'ESO,\\n\\n12\\n00:00:48,000 --> 00:00:52,000\\nl\\'Observatoire européen austral.\\n\\n13\\n00:01:01,000 --> 00:01:06,000\\nALMA est le télescope terrestre le plus élaboré jamais conçu.\\n\\n14\\n00:01:06,000 --> 00:01:11,000\\nIl est composé d\\'un réseau de 66 antennes circulaires.\\n\\n15\\n00:01:12,000 --> 00:01:15,000\\nSon super-ordinateur, ou corrélateur,\\n\\n16\\n00:01:15,000 --> 00:01:18,000\\nest un composant d\\'une importance capitale.\\n\\n17\\n00:01:19,000 --> 00:01:22,000\\nPour qu\\'ALMA fonctionne, les faibles signaux célestes\\n\\n18\\n00:01:22,000 --> 00:01:26,000\\ncaptés par chaque antenne doivent être combinés\\n\\n19\\n00:01:26,000 --> 00:01:28,000\\navec ceux de toutes les autres antennes.\\n\\n20\\n00:01:30,000 --> 00:01:34,000\\nLes processeurs du corrélateur combinent et comparent en permanence\\n\\n21\\n00:01:34,000 --> 00:01:38,000\\nles données de 64 des antennes du réseau ALMA,\\n\\n22\\n00:01:38,000 --> 00:01:42,000\\nqui peuvent être distantes de 16 kilomètres,\\n\\n23\\n00:01:42,000 --> 00:01:46,000\\npermettant aux antennes de fonctionner ensemble\\n\\n24\\n00:01:46,000 --> 00:01:49,000\\ncomme un seul énorme télescope.\\n\\n25\\n00:01:50,000 --> 00:01:53,000\\nLe corrélateur de ALMA possède plus de\\n\\n26\\n00:01:53,000 --> 00:01:59,000\\n134 millions de processeurs, et exécute jusqu\\'au nombre incroyable\\n\\n27\\n00:01:59,000 --> 00:02:03,000\\nde 17 quadrillions d\\'opérations par seconde.\\n\\n28\\n00:02:03,000 --> 00:02:08,000\\nCela représente 17 mille millions de millions !\\n\\n29\\n00:02:10,000 --> 00:02:14,000\\nLe corrélateur a été construit spécialement pour cette tâche,\\n\\n30\\n00:02:14,000 --> 00:02:18,000\\nmais le nombre de calculs par seconde est comparable\\n\\n31\\n00:02:18,000 --> 00:02:21,000\\nà la performance des plus rapides super-ordinateurs\\n\\n32\\n00:02:21,000 --> 00:02:24,000\\ndu monde.\\n\\n33\\n00:02:25,000 --> 00:02:29,000\\nCe défi informatique unique a nécessité un design innovant,\\n\\n34\\n00:02:29,000 --> 00:02:33,000\\nà la fois pour les composants individuels et pour \\n\\n35\\n00:02:33,000 --> 00:02:36,000\\nl\\'architecture globale du corrélateur.\\n\\n36\\n00:02:38,000 --> 00:02:41,000\\nLa conception initiale du corrélateur,\\n\\n37\\n00:02:41,000 --> 00:02:44,000\\nainsi que sa construction et son installation,\\n\\n38\\n00:02:44,000 --> 00:02:48,000\\nont été menées par le National Radio Astronomy Observatory des États-Unis,\\n\\n39\\n00:02:48,000 --> 00:02:52,000\\nle principal partenaire nord-américain de ALMA.\\n\\n40\\n00:02:53,000 --> 00:02:57,000\\nLe projet a été financé par la National Science Foundation américaine,\\n\\n41\\n00:02:57,000 --> 00:03:01,000\\navec des contributions de l\\'ESO.\\n\\n42\\n00:03:01,000 --> 00:03:05,000\\nEn tant que partenaire européen de ALMA, l\\'ESO\\n\\n43\\n00:03:05,000 --> 00:03:08,000\\na aussi fourni un composant-clé du corrélateur :\\n\\n44\\n00:03:08,000 --> 00:03:13,000\\nun système entièrement nouveau et multi-usages de filtrage digital,\\n\\n45\\n00:03:13,000 --> 00:03:15,000\\nconçu et fabriqué en Europe,\\n\\n46\\n00:03:15,000 --> 00:03:20,000\\na été incorporé au design original du NRAO.\\n\\n47\\n00:03:22,000 --> 00:03:26,000\\nL\\'Université de Bordeaux a conçu et construit un ensemble\\n\\n48\\n00:03:26,000 --> 00:03:32,000\\nde 550 cartes électroniques de filtrage digital dernier cri pour l\\'ESO.\\n\\n49\\n00:03:32,000 --> 00:03:36,000\\nAvec ces filtres, la lumière que voit ALMA\\n\\n50\\n00:03:36,000 --> 00:03:39,000\\npeut être divisée en 32 fois plus de longueurs d\\'onde\\n\\n51\\n00:03:39,000 --> 00:03:42,000\\nque dans le design d\\'origine,\\n\\n52\\n00:03:42,000 --> 00:03:48,000\\npermettant aux astronomes de \"découper\" le spectre de lumière de manière très flexible.\\n\\n53\\n00:03:50,000 --> 00:03:55,000\\nSi la construction du corrélateur présentait d\\'énormes défis techniques,\\n\\n54\\n00:03:55,000 --> 00:04:00,000\\nle lieu extrême de son installation a aussi dû être pris en compte.\\n\\n55\\n00:04:01,000 --> 00:04:03,000\\nLe corrélateur est situé dans le bâtiment technique\\n\\n56\\n00:04:03,000 --> 00:04:06,000\\ndu site opérationnel du réseau de ALMA,\\n\\n57\\n00:04:06,000 --> 00:04:10,000\\nle bâtiment high-tech le plus haut du monde.\\n\\n58\\n00:04:11,000 --> 00:04:16,000\\nÀ 5000 mètres d\\'altitude, l\\'air est raréfié, ce qui signifie\\n\\n59\\n00:04:16,000 --> 00:04:21,000\\nqu\\'il faut faire circuler deux fois plus d\\'air pour refroidir le super-ordinateur.\\n\\n60\\n00:04:23,000 --> 00:04:28,000\\nL\\'air raréfié rend impossible l\\'utilisation de disques durs rotatifs,\\n\\n61\\n00:04:28,000 --> 00:04:31,000\\ncar leurs têtes de lecture/écriture ont besoin\\n\\n62\\n00:04:31,000 --> 00:04:36,000\\nd\\'un coussin d\\'air pour les empêcher de se fracasser contre les plateaux.\\n\\n63\\n00:04:36,000 --> 00:04:40,000\\nDe plus, le corrélateur doit pouvoir résister aux\\n\\n64\\n00:04:40,000 --> 00:04:44,000\\ntremblements de terre, communs dans cette région.\\n\\n65\\n00:04:46,000 --> 00:04:49,000\\nLes observations scientifiques de ALMA ont commencé en 2011\\n\\n66\\n00:04:49,000 --> 00:04:52,000\\navec un réseau partiel d\\'antennes.\\n\\n67\\n00:04:53,000 --> 00:04:56,000\\nUne partie du corrélateur était déjà en fonctionnement\\n\\n68\\n00:04:56,000 --> 00:04:59,000\\npour combiner les signaux de ces antennes,\\n\\n69\\n00:04:59,000 --> 00:05:02,000\\nmais désormais le système complet est prêt,\\n\\n70\\n00:05:02,000 --> 00:05:08,000\\npour que ALMA commence ses observations avec un nombre d\\'antennes plus important.\\n\\n71\\n00:05:12,000 --> 00:05:15,000\\nL\\'installation réussie du nouveau super-ordinateur\\n\\n72\\n00:05:15,000 --> 00:05:21,000\\nmarque une étape importante vers la finalisation de ALMA dans un futur proche.\\n\\n73\\n00:05:23,000 --> 00:05:27,000\\nEn utilisant la puissance d\\'observation inégalée du réseau d\\'antennes, \\n\\n74\\n00:05:27,000 --> 00:05:34,000\\nles scientifiques pourront lever le voile sur les merveilles cachées de l\\'Univers.\\n\\n75\\n00:05:41,000 --> 00:05:45,000\\nL\\'ESOcast est produit par l\\'ESO, l\\'Observatoire européen austral.\\n\\n76\\n00:05:45,000 --> 00:05:49,000\\nL\\'ESO, l\\'Observatoire européen austral, est la principale organisation intergouvernementale scientifique et technologique d\\'astronomie en Europe.\\n\\n77\\n00:05:49,000 --> 00:05:52,000\\nElle conçoit, construit et opère les télescopes terrestres les plus avancés au monde.\\n\\n78\\n00:05:55,000 --> 00:05:59,000\\nTranscription : ESO ; traduction : Stéphane Marteau',\n", + " 'bytes': 6908,\n", + " 'sha1': '26x0dtvhzfu459gig71410car4vqvjj',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92554007,\n", + " 'timestamp': '2013-03-14T09:36:20Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25113976,\n", + " 'title': 'ESOcast 51 All Systems Go for Highest Altitude Supercomputer.ogv.is.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,000 --> 00:00:07,000 Ein öflugasta ofurtölva heims 2 00:00:07,000 --> 00:00:11,000 hefur verið sett upp og prófuð 3 00:00:11,000 --> 00:00:14,...'\",\n", + " 'text': '1\\n00:00:03,000 --> 00:00:07,000\\nEin öflugasta ofurtölva heims\\n\\n2\\n00:00:07,000 --> 00:00:11,000\\nhefur verið sett upp og prófuð\\n\\n3\\n00:00:11,000 --> 00:00:14,000\\ná afskekktum stað, hátt yfir sjávarmáli\\n\\n4\\n00:00:14,000 --> 00:00:16,000\\ní Andesfjöllunum í norðurhluta Chile.\\n\\n5\\n00:00:17,000 --> 00:00:21,000\\nUppsetningin er mikilvægur áfangi í átt til þes\\n\\n6\\n00:00:21,000 --> 00:00:23,000\\nað ljúka smíði ALMA,\\n\\n7\\n00:00:23,000 --> 00:00:28,000\\nAtacama Large Millimeter/submillimeter Array.\\n\\n8\\n00:00:29,000 --> 00:00:32,000\\nALMA ofurtölvan breytir loftnetum\\n\\n9\\n00:00:32,000 --> 00:00:37,000\\nALMA í einn risasjónauka.\\n\\n10\\n00:00:42,000 --> 00:00:44,000\\nÞetta er ESOcast!\\n\\n11\\n00:00:44,000 --> 00:00:48,000\\nVísindi í fremstu röð og lífið á bak við tjöldin\\n\\n12\\n00:00:48,000 --> 00:00:52,000\\nhjá ESO, Stjörnustöð Evrópulanda á suðurhveli.\\n\\n13\\n00:01:01,000 --> 00:01:06,000\\nALMA er ein flóknasta stjörnustöð heims frá upphafi\\n\\n14\\n00:01:06,000 --> 00:01:11,000\\nog samanstendur af röð 66 loftneta.\\n\\n15\\n00:01:12,000 --> 00:01:15,000\\nOfurtölva sjónaukans, eða fylgnisían,\\n\\n16\\n00:01:15,000 --> 00:01:18,000\\ner mjög mikilvægur hluti hans.\\n\\n17\\n00:01:19,000 --> 00:01:22,000\\nTil að ALMA virki, verður að sameina\\n\\n18\\n00:01:22,000 --> 00:01:26,000\\nmerkin sem hvert loftnet nemur utan úr geimnum\\n\\n19\\n00:01:26,000 --> 00:01:28,000\\nvið merki allra hinna loftnetanna.\\n\\n20\\n00:01:30,000 --> 00:01:34,000\\nOfurtölvan sameinar að lokum og ber stöðugt saman\\n\\n21\\n00:01:34,000 --> 00:01:38,000\\ngögn frá allt að 64 af loftnetum ALMA raðarinnar,\\n\\n22\\n00:01:38,000 --> 00:01:42,000\\nsem allt að 16 kílómetra skilja í sundur,\\n\\n23\\n00:01:42,000 --> 00:01:46,000\\nog gerir loftnetunum kleift að vinna saman\\n\\n24\\n00:01:46,000 --> 00:01:49,000\\nsem einn risavaxinn sjónauki.\\n\\n25\\n00:01:50,000 --> 00:01:53,000\\nALMA ofurtölvan hefur meira en\\n\\n26\\n00:01:53,000 --> 00:01:59,000\\n134 milljónir örgjörva og gerir, þótt ótrúlegt megi virðar,\\n\\n27\\n00:01:59,000 --> 00:02:03,000\\n17 billjarða útreikninga á sekúndu.\\n\\n28\\n00:02:03,000 --> 00:02:08,000\\nÞað er 17 þúsund milljón milljón!\\n\\n29\\n00:02:10,000 --> 00:02:14,000\\nTölvan var smíðuð sérstaklega til þessa verks\\n\\n30\\n00:02:14,000 --> 00:02:18,000\\nen fjöldi útreikninga á sekúndu er sambærilegur við\\n\\n31\\n00:02:18,000 --> 00:02:21,000\\ngetu hröðustu almennu\\n\\n32\\n00:02:21,000 --> 00:02:24,000\\nofurtölva í heiminum.\\n\\n33\\n00:02:25,000 --> 00:02:29,000\\nÞessi einstaka reiknigeta krafðist frumlegrar hönnunar,\\n\\n34\\n00:02:29,000 --> 00:02:33,000\\nbæði fyrir staka hluta og heildaruppbyggingu\\n\\n35\\n00:02:33,000 --> 00:02:36,000\\nofurtölvunnar.\\n\\n36\\n00:02:38,000 --> 00:02:41,000\\nUpphafleg hönnun tölvunnar,\\n\\n37\\n00:02:41,000 --> 00:02:44,000\\nsem og smíði hennar og uppsetning,\\n\\n38\\n00:02:44,000 --> 00:02:48,000\\nvar í höndun National Radio Astronomy Observatory í Bandaríkjunum,\\n\\n39\\n00:02:48,000 --> 00:02:52,000\\nnorður-ameríska þátttakandans í ALMA.\\n\\n40\\n00:02:53,000 --> 00:02:57,000\\nNational Science Foundation í Bandaríkjunum fjármagnaði ofurtölvuna\\n\\n41\\n00:02:57,000 --> 00:03:01,000\\nauk þess sem ESO lagði sín lóð á vogarskálarnar.\\n\\n42\\n00:03:01,000 --> 00:03:05,000\\nESO, sem evrópski þátttakandinn í ALMA,\\n\\n43\\n00:03:05,000 --> 00:03:08,000\\nlagði einnig til lykilhluti í tölvuna:\\n\\n44\\n00:03:08,000 --> 00:03:13,000\\nGlænýtt og fjölhæft stafrænt síukerfi,\\n\\n45\\n00:03:13,000 --> 00:03:15,000\\nsem fundið var upp og búið til í Evrópu,\\n\\n46\\n00:03:15,000 --> 00:03:20,000\\nvar sett inn í upphaflegu hönnun NRAO.\\n\\n47\\n00:03:22,000 --> 00:03:26,000\\nBordeauxháskóli hannaði og smíðaði kerfi\\n\\n48\\n00:03:26,000 --> 00:03:32,000\\n550 fyrsta flokks stafrænna rafrásarsía fyrir ESO.\\n\\n49\\n00:03:32,000 --> 00:03:36,000\\nMeð þessum síum er hægt að kljúfa ljósið\\n\\n50\\n00:03:36,000 --> 00:03:39,000\\nsem ALMA sér í 32 sinnum fleiri tíðnisvið\\n\\n51\\n00:03:39,000 --> 00:03:42,000\\nen í upprunalegu hönnuninni,\\n\\n52\\n00:03:42,000 --> 00:03:48,000\\nsem gerir stjörnufræðingum kleift að grannskoða litróf ljóssins.\\n\\n53\\n00:03:50,000 --> 00:03:55,000\\nFyrir utan tæknilegar áskoranir við smíði tölvunnar\\n\\n54\\n00:03:55,000 --> 00:04:00,000\\nvar harðneskjuleg staðsetning kerfisins önnur hindrun.\\n\\n55\\n00:04:01,000 --> 00:04:03,000\\nOfurtölvan er hýst í tæknibyggingu\\n\\n56\\n00:04:03,000 --> 00:04:06,000\\nstjórnstöðvar ALMA,\\n\\n57\\n00:04:06,000 --> 00:04:10,000\\nhálægustu hátæknibyggingu heims.\\n\\n58\\n00:04:11,000 --> 00:04:16,000\\nÍ 5.000 metra hæð er loftið þunnt sem þýðir\\n\\n59\\n00:04:16,000 --> 00:04:21,000\\nað tvöfalt meira loftflæði en venjulega þarf til að kæla ofurtölvuna.\\n\\n60\\n00:04:23,000 --> 00:04:28,000\\nÞunna loftið útilokar líka notkun diskadrifa sem snúast,\\n\\n61\\n00:04:28,000 --> 00:04:31,000\\nþví höfuð skrifarans og lesarans krefst\\n\\n62\\n00:04:31,000 --> 00:04:36,000\\nloftpúða til að koma í veg fyrir að þeir rekist á plöturnar.\\n\\n63\\n00:04:36,000 --> 00:04:40,000\\nÞað sem meira er þarf ofurtölvan að standast jarðskjálfta\\n\\n64\\n00:04:40,000 --> 00:04:44,000\\nsem eru algengir á þessu svæði.\\n\\n65\\n00:04:46,000 --> 00:04:49,000\\nALMA hóf rannsóknir árið 2011\\n\\n66\\n00:04:49,000 --> 00:04:52,000\\nmeð hluta loftnetanna.\\n\\n67\\n00:04:53,000 --> 00:04:56,000\\nHluti ofurtölvunnar var þá þegar í notkun\\n\\n68\\n00:04:56,000 --> 00:04:59,000\\nog sameinaði merkin frá þessum loftnetum\\n\\n69\\n00:04:59,000 --> 00:05:02,000\\nen kerfið er nú tilbúið\\n\\n70\\n00:05:02,000 --> 00:05:08,000\\ntil þess að ALMA hefji rannsóknir með fleiri loftnetum.\\n\\n71\\n00:05:12,000 --> 00:05:15,000\\nVelheppnuð uppsetning nýju ofurtölvunnar\\n\\n72\\n00:05:15,000 --> 00:05:21,000\\ner mikilvægt skref í átt til þess að ljúka smíði ALMA í nátinni framtíð.\\n\\n73\\n00:05:23,000 --> 00:05:27,000\\nMeð óviðjafnanlegri greinigetu raðarinnar\\n\\n74\\n00:05:27,000 --> 00:05:34,000\\nmunu stjörnufræðingar öðlast nýja innsýn í hulin undur alheimsins.\\n\\n75\\n00:05:41,000 --> 00:05:45,000\\nESOcast er framleitt af ESO, Stjörnustöð Evrópulanda á suðurhveli www.eso.org\\n\\n76\\n00:05:45,000 --> 00:05:49,000\\nESO, Stjörnustöð Evrópulanda á suðurhveli, eru fremstu fjölþjóðlegu vísinda- og tæknisamtök í stjörnufræði\\n\\n77\\n00:05:49,000 --> 00:05:52,000\\nsem hannar, smíðar og starfrækir öflugustu stjörnusjónauka heims.\\n\\n78\\n00:05:55,000 --> 00:05:59,000\\nHandrit ESO; þýðing: Sævar Helgi Bragason',\n", + " 'bytes': 6357,\n", + " 'sha1': '4xy9i7qkf1uzx3382zx0ulvf25yhfpp',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92554022,\n", + " 'timestamp': '2013-03-14T09:36:41Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25113986,\n", + " 'title': 'ESOcast 51 All Systems Go for Highest Altitude Supercomputer.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,000 --> 00:00:07,000 Uno dei supercomputer più potenti al mondo 2 00:00:07,000 --> 00:00:11,000 è stato installato e testato 3 00:00:11,000 --> 0...'\",\n", + " 'text': '1\\n00:00:03,000 --> 00:00:07,000\\nUno dei supercomputer più potenti al mondo\\n\\n2\\n00:00:07,000 --> 00:00:11,000\\nè stato installato e testato\\n\\n3\\n00:00:11,000 --> 00:00:14,000\\nsul sito remoto e ad alta quota\\n\\n4\\n00:00:14,000 --> 00:00:16,000\\nsulle Ande del Cile settentrionale.\\n\\n5\\n00:00:17,000 --> 00:00:21,000\\nQuesto segna uno dei grandi traguardi\\n\\n6\\n00:00:21,000 --> 00:00:23,000\\nal completamento dell\\'ALMA,\\n\\n7\\n00:00:23,000 --> 00:00:28,000\\nl\\'Atacama Large Millimeter / submillimeter Array.\\n\\n8\\n00:00:29,000 --> 00:00:32,000\\nIl correlatore di ALMA trasforma\\n\\n9\\n00:00:32,000 --> 00:00:37,000\\nle molte antenne in un unico telescopio gigante.\\n\\n10\\n00:00:42,000 --> 00:00:44,000\\nSiete su ESOcast! \\n\\n11\\n00:00:44,000 --> 00:00:48,000\\nScienza all\\'avanguardia e vita dietro le quinte nell\\'ESO,\\n\\n12\\n00:00:48,000 --> 00:00:52,000\\nl\\'Osservatorio Europeo Australe,\\n\\n13\\n00:01:01,000 --> 00:01:06,000\\nALMA è il telescopio con base a terra più elaborato della storia\\n\\n14\\n00:01:06,000 --> 00:01:11,000\\ned è comporsto da una schiera di 66 antenne\\n\\n15\\n00:01:12,000 --> 00:01:15,000\\nIl supercomputer, o correlatore,\\n\\n16\\n00:01:15,000 --> 00:01:18,000\\nè un componente di fondamentale importanza.\\n\\n17\\n00:01:19,000 --> 00:01:22,000\\nPer permettere il funzionamento dell\\'ALMA, i deboli segnali celesti\\n\\n18\\n00:01:22,000 --> 00:01:26,000\\nraccolti da ciascuna antenna deve essere combinati\\n\\n19\\n00:01:26,000 --> 00:01:28,000\\ncon quelli di ogni altra antenna.\\n\\n20\\n00:01:30,000 --> 00:01:34,000\\nI processori del correlatore combineranno e confronteranno continuamente\\n\\n21\\n00:01:34,000 --> 00:01:38,000\\ni dati di fino a 64 delle antenne della schiera ALMA,\\n\\n22\\n00:01:38,000 --> 00:01:42,000\\nseparate da un massimo di 16 kilometri,\\n\\n23\\n00:01:42,000 --> 00:01:46,000\\nconsentendo alle antenne di lavorare insieme\\n\\n24\\n00:01:46,000 --> 00:01:49,000\\ncome un unico, enorme, telescopio.\\n\\n25\\n00:01:50,000 --> 00:01:53,000\\nIl correlatore di ALMA ha più di\\n\\n26\\n00:01:53,000 --> 00:01:59,000\\n134 milioni di processori, ed esegue fino ad un incredibile numero \\n\\n27\\n00:01:59,000 --> 00:02:03,000\\ndi 17 quadrilioni di operazioni al secondo\\n\\n28\\n00:02:03,000 --> 00:02:08,000\\nQuindi 17 mila milioni di milioni!\\n\\n29\\n00:02:10,000 --> 00:02:14,000\\nIl correlatore è stato costruito appositamente per questo compito,\\n\\n30\\n00:02:14,000 --> 00:02:18,000\\nma il numero di calcoli al secondo è paragonabile\\n\\n31\\n00:02:18,000 --> 00:02:21,000\\nalle performance del più veloce\\n\\n32\\n00:02:21,000 --> 00:02:24,000\\nsupercomputer per impieghi generali del mondo.\\n\\n33\\n00:02:25,000 --> 00:02:29,000\\nQuesta sfida di elaborazione unica necessita un design innovativo,\\n\\n34\\n00:02:29,000 --> 00:02:33,000\\nsia per i singoli componenti che per la complessiva\\n\\n35\\n00:02:33,000 --> 00:02:36,000\\narchitettura del correlatore.\\n\\n36\\n00:02:38,000 --> 00:02:41,000\\nIl progetto iniziale del correlatore,\\n\\n37\\n00:02:41,000 --> 00:02:44,000\\ncosì come la sua costruzione ed installazione,\\n\\n38\\n00:02:44,000 --> 00:02:48,000\\nsono stati condotti dall\\'US National Radio Astronomy Observatory,\\n\\n39\\n00:02:48,000 --> 00:02:52,000\\nIl principale partner Nordamericano al progetto ALMA\\n\\n40\\n00:02:53,000 --> 00:02:57,000\\nIl progetto del correlatore è stato finanziato dalla National Science Foundation,\\n\\n41\\n00:02:57,000 --> 00:03:01,000\\ncon il contributo ESO.\\n\\n42\\n00:03:01,000 --> 00:03:05,000\\nIn qualità di partner europeo al progetto ALMA, l\\'ESO\\n\\n43\\n00:03:05,000 --> 00:03:08,000\\nha anche fornito una parte fondamentale del correlatore:\\n\\n44\\n00:03:08,000 --> 00:03:13,000\\nun sistema di filtraggio digitale versatile e completamente nuovo,\\n\\n45\\n00:03:13,000 --> 00:03:15,000\\nconcepito e costruito in Europa,\\n\\n46\\n00:03:15,000 --> 00:03:20,000\\nè stato incorporato nel progetto iniziale NRAO.\\n\\n47\\n00:03:22,000 --> 00:03:26,000\\nL\\'Università di Bordeaux ha progettato e costruito un set\\n\\n48\\n00:03:26,000 --> 00:03:32,000\\ndi 550 filtri digitali d\\'avanguardia.\\n\\n49\\n00:03:32,000 --> 00:03:36,000\\nCon questi filtri, la luce catturata da ALMA\\n\\n50\\n00:03:36,000 --> 00:03:39,000\\npuò essere suddivisa in 32 lunghezze d\\'onda in più\\n\\n51\\n00:03:39,000 --> 00:03:42,000\\nrispetto al progetto iniziale,\\n\\n52\\n00:03:42,000 --> 00:03:48,000\\npermettendo agli astronomi di \"fare a dadini\" lo spettro della luce.\\n\\n53\\n00:03:50,000 --> 00:03:55,000\\nOltre alle enormi sfide tecniche nella costruzione del correlatore,\\n\\n54\\n00:03:55,000 --> 00:04:00,000\\nla posizione estrema del sistema causava problemi.\\n\\n55\\n00:04:01,000 --> 00:04:03,000\\nIl correlatore è alloggiato \\n\\n56\\n00:04:03,000 --> 00:04:06,000\\nNel sito di costruzione dell\\'ALMA\\n\\n57\\n00:04:06,000 --> 00:04:10,000\\nl\\'edificio high-tech più ad alta quota del mondo.\\n\\n58\\n00:04:11,000 --> 00:04:16,000\\nA 5000 metri di altitudine, l\\'aria è sottile, il che significa che\\n\\n59\\n00:04:16,000 --> 00:04:21,000\\nper raffreddare il supercomputer è necessaria il doppio della corrente d\\'aria\\n\\n60\\n00:04:23,000 --> 00:04:28,000\\nL\\'aria sottile rende anche impossibile l\\'utilizzo di dischi girevoli per i computer\\n\\n61\\n00:04:28,000 --> 00:04:31,000\\ncome la loro lettura e scrittura si basa\\n\\n62\\n00:04:31,000 --> 00:04:36,000\\nsu un cuscinetto d\\'aria per tenerli in posizione.\\n\\n63\\n00:04:36,000 --> 00:04:40,000\\nInoltre, il correlatore doveva essere progettato per resistere\\n\\n64\\n00:04:40,000 --> 00:04:44,000\\nai terremoti, fenomeni comuni in questa regione.\\n\\n65\\n00:04:46,000 --> 00:04:49,000\\nL\\'ALMA ha iniziato a produrre osservazione scientifiche nel 2011\\n\\n66\\n00:04:49,000 --> 00:04:52,000\\ncon una schiera di antenne ancora parziale.\\n\\n67\\n00:04:53,000 --> 00:04:56,000\\nUna sezione del correlatore era già in uso\\n\\n68\\n00:04:56,000 --> 00:04:59,000\\nper combinare i segnali da queste antenne,\\n\\n69\\n00:04:59,000 --> 00:05:02,000\\nma ora l\\'intero sistema è completo,\\n\\n70\\n00:05:02,000 --> 00:05:08,000\\npronto per le osservazione ALMA con un numero maggiore di antenne.\\n\\n71\\n00:05:12,000 --> 00:05:15,000\\nLa corretta installazione del nuovo supercomputer\\n\\n72\\n00:05:15,000 --> 00:05:21,000\\nsegna un passo importante verso il completamento di ALMA in un prossimo futuro.\\n\\n73\\n00:05:23,000 --> 00:05:27,000\\nUsando l\\'impareggiabile potere di osservazione della schiera\\n\\n74\\n00:05:27,000 --> 00:05:34,000\\ngli scienziati aquisiranno nuove conoscenze sulle meraviglie nascoste dell\\'Universo\\n\\n75\\n00:05:41,000 --> 00:05:45,000\\nESOcast è prodotto da ESO, l\\'European Southern Observatory www.eso.org\\n\\n76\\n00:05:45,000 --> 00:05:49,000\\nESO - European Southern Observatory - è la principale organizzazione intergovernativa per la scienza e la tecnologia astronomica\\n\\n77\\n00:05:49,000 --> 00:05:52,000\\ne progetta, costruisce e gestisce gli osservatori astronomici più avanzati del mondo.\\n\\n78\\n00:05:55,000 --> 00:05:59,000\\nTrascrizione da ESO, traduzione di Laura Ghiretti',\n", + " 'bytes': 6661,\n", + " 'sha1': 'oq45qmyti6menfgcp88izrl35w4194w',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92554070,\n", + " 'timestamp': '2013-03-14T09:37:31Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25114017,\n", + " 'title': 'ESOcast 51 All Systems Go for Highest Altitude Supercomputer.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,000 --> 00:00:07,000 Uno de los supercomputadores más poderosos del mundo 2 00:00:07,000 --> 00:00:11,000 ha sido instalado y probado completamente...'\",\n", + " 'text': '1\\n00:00:03,000 --> 00:00:07,000\\nUno de los supercomputadores más poderosos del mundo\\n\\n2\\n00:00:07,000 --> 00:00:11,000\\nha sido instalado y probado completamente\\n\\n3\\n00:00:11,000 --> 00:00:14,000\\nen su remoto sitio de gran altitud\\n\\n4\\n00:00:14,000 --> 00:00:16,000\\nen los Andes del norte de Chile.\\n\\n5\\n00:00:17,000 --> 00:00:21,000\\nEsto marca uno de los importantes hitos restantes\\n\\n6\\n00:00:21,000 --> 00:00:23,000\\nhacia la terminación de ALMA.\\n\\n7\\n00:00:23,000 --> 00:00:28,000\\nel Atacama Large Millimeter/submillimeter Array.\\n\\n8\\n00:00:29,000 --> 00:00:32,000\\nEl correlacionador de ALMA convierte\\n\\n9\\n00:00:32,000 --> 00:00:37,000\\nlas muchas antenas de ALMA en un telescopio gigante.\\n\\n10\\n00:00:42,000 --> 00:00:44,000\\n¡Este es el ESOcast!\\n\\n11\\n00:00:44,000 --> 00:00:48,000\\nCiencia de vanguardia y vida cotidiana\\n\\n12\\n00:00:48,000 --> 00:00:52,000\\nen ESO, el Observatorio Europeo Austral.\\n\\n13\\n00:01:01,000 --> 00:01:06,000\\nALMA es el telescopio basado en tierra más complejo de la historia\\n\\n14\\n00:01:06,000 --> 00:01:11,000\\ny está compuesto de un conjunto de 66 antenas con forma de plato.\\n\\n15\\n00:01:12,000 --> 00:01:15,000\\nSu supercomputador, o correlacionador,\\n\\n16\\n00:01:15,000 --> 00:01:18,000\\nes un componente de crucial importancia.\\n\\n17\\n00:01:19,000 --> 00:01:22,000\\nPara que ALMA funcione, las débiles señales celestes\\n\\n18\\n00:01:22,000 --> 00:01:26,000\\nrecolectadas por cada antena deben ser combinadas\\n\\n19\\n00:01:26,000 --> 00:01:28,000\\ncon las señales de las otras antenas.\\n\\n20\\n00:01:30,000 --> 00:01:34,000\\nLos procesadores del correlacionador combinarán y compararán continuamente\\n\\n21\\n00:01:34,000 --> 00:01:38,000\\nlos datos de hasta 64 de las antenas en el conjunto ALMA,\\n\\n22\\n00:01:38,000 --> 00:01:42,000\\nque están separadas por hasta 16 kilómetros,\\n\\n23\\n00:01:42,000 --> 00:01:46,000\\npermitiendo a las antenas trabajar juntas\\n\\n24\\n00:01:46,000 --> 00:01:49,000\\ncomo un único y enorme telescopio.\\n\\n25\\n00:01:50,000 --> 00:01:53,000\\nEl correlacionador de ALMA tiene más de\\n\\n26\\n00:01:53,000 --> 00:01:59,000\\n134 millones de procesadores, y realiza hasta unos increíbles\\n\\n27\\n00:01:59,000 --> 00:02:03,000\\n17 mil billones de operaciones por segundo.\\n\\n28\\n00:02:03,000 --> 00:02:08,000\\n¡Esto es 17 mil millones de millones!\\n\\n29\\n00:02:10,000 --> 00:02:14,000\\nEl correlacionador fue construido específicamente para esta tarea,\\n\\n30\\n00:02:14,000 --> 00:02:18,000\\npero la cantidad de cálculos por segundo es comparable\\n\\n31\\n00:02:18,000 --> 00:02:21,000\\nal desempeño de los supercomputadores de propósito general\\n\\n32\\n00:02:21,000 --> 00:02:24,000\\nmás rápidos del mundo.\\n\\n33\\n00:02:25,000 --> 00:02:29,000\\nEste desafío único de procesamiento necesitó un diseño innovador,\\n\\n34\\n00:02:29,000 --> 00:02:33,000\\ntanto para los componentes individuales como para la arquitectura\\n\\n35\\n00:02:33,000 --> 00:02:36,000\\ncompleta del correlacionador.\\n\\n36\\n00:02:38,000 --> 00:02:41,000\\nEl diseño inicial del correlacionador,\\n\\n37\\n00:02:41,000 --> 00:02:44,000\\nasí como su construcción e instalación,\\n\\n38\\n00:02:44,000 --> 00:02:48,000\\nfue dirigido por al Observatorio de Radio Astronomía Nacional de Estados Unidos,\\n\\n39\\n00:02:48,000 --> 00:02:52,000\\nel principal socio norteamericano de ALMA.\\n\\n40\\n00:02:53,000 --> 00:02:57,000\\nEl proyecto del correlacionador fue financiado por la Fundación Nacional de Ciencia de Estados Unidos,\\n\\n41\\n00:02:57,000 --> 00:03:01,000\\ncon colaboración de ESO.\\n\\n42\\n00:03:01,000 --> 00:03:05,000\\nComo el socio europeo de ALMA, ESO\\n\\n43\\n00:03:05,000 --> 00:03:08,000\\ntambién proporcionó una pieza clave del correlacionador,\\n\\n44\\n00:03:08,000 --> 00:03:13,000\\nun sistema de filtrado digital completamente nuevo y versátil,\\n\\n45\\n00:03:13,000 --> 00:03:15,000\\nconcebido y construido en Europa,\\n\\n46\\n00:03:15,000 --> 00:03:20,000\\nfue incorporado en el diseño inicial de NRAO.\\n\\n47\\n00:03:22,000 --> 00:03:26,000\\nLa Universidad de Burdeos diseñó y construyó un conjunto\\n\\n48\\n00:03:26,000 --> 00:03:32,000\\nde 550 placas de circuitos de filtros digitales de última generación para ESO.\\n\\n49\\n00:03:32,000 --> 00:03:36,000\\nCon estos filtros, la luz que ALMA ve\\n\\n50\\n00:03:36,000 --> 00:03:39,000\\npuede ser dividida en 32 veces más rangos de longitud de onda\\n\\n51\\n00:03:39,000 --> 00:03:42,000\\nque en el diseño original,\\n\\n52\\n00:03:42,000 --> 00:03:48,000\\npermitiendo a los astrónomos \"dividir\" de manera flexible el espectro de luz.\\n\\n53\\n00:03:50,000 --> 00:03:55,000\\nAdemás de los enormes desafíos técnicos de construir el correlacionador,\\n\\n54\\n00:03:55,000 --> 00:04:00,000\\nla ubicación extrema del sistema también fue un factor.\\n\\n55\\n00:04:01,000 --> 00:04:03,000\\nEl correlacionador se encuentra en\\n\\n56\\n00:04:03,000 --> 00:04:06,000\\nel Edificio Técnico del Sitio de Operaciones del Conjunto,\\n\\n57\\n00:04:06,000 --> 00:04:10,000\\nel edificio de alta tecnología de mayor altitud en el mundo.\\n\\n58\\n00:04:11,000 --> 00:04:16,000\\nA 5.000 metros de altitud, el aire es menos denso, lo que significa que\\n\\n59\\n00:04:16,000 --> 00:04:21,000\\nes necesario el doble del flujo normal de aire para enfriar el supercomputador.\\n\\n60\\n00:04:23,000 --> 00:04:28,000\\nEl aire menos denso también hace imposible usar unidades de disco de rotación,\\n\\n61\\n00:04:28,000 --> 00:04:31,000\\nya que sus cabezas de lectura/escritura descansan en\\n\\n62\\n00:04:31,000 --> 00:04:36,000\\nuna almohadilla de aire para evitar que golpeen sus bandejas.\\n\\n63\\n00:04:36,000 --> 00:04:40,000\\nAdemás, el correlacionador tenía que ser diseñado para resistir\\n\\n64\\n00:04:40,000 --> 00:04:44,000\\nsismos, que son comunes en esta región.\\n\\n65\\n00:04:46,000 --> 00:04:49,000\\nALMA comenzó sus observaciones científicas en 2011\\n\\n66\\n00:04:49,000 --> 00:04:52,000\\ncon un conjunto parcial de antenas.\\n\\n67\\n00:04:53,000 --> 00:04:56,000\\nUna sección del correlacionador ya estaba en uso\\n\\n68\\n00:04:56,000 --> 00:04:59,000\\npara combinar la señales de esas antenas,\\n\\n69\\n00:04:59,000 --> 00:05:02,000\\npero ahora el sistema completo está terminado,\\n\\n70\\n00:05:02,000 --> 00:05:08,000\\nlisto para que ALMA comience las observaciones con una cantidad mayor de antenas.\\n\\n71\\n00:05:12,000 --> 00:05:15,000\\nLa instalación exitosa del nuevo supercomputador\\n\\n72\\n00:05:15,000 --> 00:05:21,000\\nmarca un paso importante hacia la terminación de ALMA en el futuro cercano.\\n\\n73\\n00:05:23,000 --> 00:05:27,000\\nMediante el uso del inigualable poder observacional del conjunto,\\n\\n74\\n00:05:27,000 --> 00:05:34,000\\nlos científicos obtendrán nuevos conocimientos sobre las maravillas ocultas del Universo.\\n\\n75\\n00:05:41,000 --> 00:05:45,000\\nESOcast es producido por ESO, el Observatorio Europeo Austral www.eso.org\\n\\n76\\n00:05:45,000 --> 00:05:49,000\\nESO, el Observatorio Europeo Austral, es la principal organización intergubernamental de ciencia y tecnología en astronomía,\\n\\n77\\n00:05:49,000 --> 00:05:52,000\\nenfocada al diseño, construcción y operación de los telescopios terrestres más avanzados del mundo.\\n\\n78\\n00:05:55,000 --> 00:05:59,000\\nTranscripción por ESO; traducción por Felipe Campos.',\n", + " 'bytes': 6940,\n", + " 'sha1': 'il4wi5z58tw6ldeesfjtaxt740eqjw9',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92554113,\n", + " 'timestamp': '2013-03-14T09:38:02Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25114048,\n", + " 'title': 'ESOcast 51 All Systems Go for Highest Altitude Supercomputer.ogv.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,000 --> 00:00:07,000 Um dos supercomputadores mais poderosos do mundo 2 00:00:07,000 --> 00:00:11,000 está agora completamente instalado e testado ...'\",\n", + " 'text': '1\\n00:00:03,000 --> 00:00:07,000\\nUm dos supercomputadores mais poderosos do mundo\\n\\n2\\n00:00:07,000 --> 00:00:11,000\\nestá agora completamente instalado e testado\\n\\n3\\n00:00:11,000 --> 00:00:14,000\\nem um lugar remoto de grandes altitudes\\n\\n4\\n00:00:14,000 --> 00:00:16,000\\nnos Andes, ao Norte do Chile\\n\\n5\\n00:00:17,000 --> 00:00:21,000\\nIsto sinaliza um dos maiores marcos restantes\\n\\n6\\n00:00:21,000 --> 00:00:23,000\\nem direção à finalização do ALMA,\\n\\n7\\n00:00:23,000 --> 00:00:28,000\\no Atacama Large Millimeter/submillimeter Array. \\n\\n8\\n00:00:29,000 --> 00:00:32,000\\nO CORRELATOR do alma transforma\\n\\n9\\n00:00:32,000 --> 00:00:37,000\\nsuas muitas antenas em um telescópio gigante\\n\\n10\\n00:00:42,000 --> 00:00:44,000\\nEste é o ESOcast!\\n\\n11\\n00:00:44,000 --> 00:00:48,000\\nCiência de ponta e a vida por trás das câmeras\\n\\n12\\n00:00:48,000 --> 00:00:52,000\\nNo ESO, o Observatório Europeu do Sul\\n\\n13\\n00:01:01,000 --> 00:01:06,000\\nO ALMA é o telescópio terrestre mais elaborado da história\\n\\n14\\n00:01:06,000 --> 00:01:11,000\\ne é composto de uma pletora de 66 antenas em forma de prato\\n\\n15\\n00:01:12,000 --> 00:01:15,000\\nSeu supercomputador, ou CORRELATOR,\\n\\n16\\n00:01:15,000 --> 00:01:18,000\\né um componente de extrema importância.\\n\\n17\\n00:01:19,000 --> 00:01:22,000\\nPara o trabalho do ALMA, os mais fracos sinais celestiais\\n\\n18\\n00:01:22,000 --> 00:01:26,000\\ncoletados por cada antena devem ser combinados\\n\\n19\\n00:01:26,000 --> 00:01:28,000\\ncom aqueles de cada uma das outras antenas.\\n\\n20\\n00:01:30,000 --> 00:01:34,000\\nOs processadores do CORRELATOR vão então combinar e comparar continuamente\\n\\n21\\n00:01:34,000 --> 00:01:38,000\\nos dados de até 64 das antenas do ALMA\\n\\n22\\n00:01:38,000 --> 00:01:42,000\\nque estão separadas umas das outras por até 16 quilômetros \\n\\n23\\n00:01:42,000 --> 00:01:46,000\\npossibilitando as antenas trabalhar juntas\\n\\n24\\n00:01:46,000 --> 00:01:49,000\\ncomo um único e enorme telescópio\\n\\n25\\n00:01:50,000 --> 00:01:53,000\\no CORRELATOR do ALMA tem cerca de \\n\\n26\\n00:01:53,000 --> 00:01:59,000\\n134 milhões de processadores, e trabalha até incríveis\\n\\n27\\n00:01:59,000 --> 00:02:03,000\\n17 quadrilhões de operações por segundo. \\n\\n28\\n00:02:03,000 --> 00:02:08,000\\nIsto são 17 mil milhões de milhões!\\n\\n29\\n00:02:10,000 --> 00:02:14,000\\nO CORRELATOR foi construído especificamente para esta tarefa,\\n\\n30\\n00:02:14,000 --> 00:02:18,000\\nmas o número de cálculos por segundo é comparável\\n\\n31\\n00:02:18,000 --> 00:02:21,000\\nà performance dos mais rápidos\\n\\n32\\n00:02:21,000 --> 00:02:24,000\\nsupercomputadores de uso geral do mundo. \\n\\n33\\n00:02:25,000 --> 00:02:29,000\\nEste desafio único de processamento precisou de um projeto inovador,\\n\\n34\\n00:02:29,000 --> 00:02:33,000\\ntanto para os componentes individuais quanto para o conjunto\\n\\n35\\n00:02:33,000 --> 00:02:36,000\\nda arquitetura do CORRELATOR. \\n\\n36\\n00:02:38,000 --> 00:02:41,000\\nTanto o projeto inicial do CORRELATOR,\\n\\n37\\n00:02:41,000 --> 00:02:44,000\\nquanto sua construção e instalação,\\n\\n38\\n00:02:44,000 --> 00:02:48,000\\nforam liderados pelo Observatório Nacional de Radioastronomia Norte-Americano,\\n\\n39\\n00:02:48,000 --> 00:02:52,000\\no maior parceiro norte-americano do ALMA. \\n\\n40\\n00:02:53,000 --> 00:02:57,000\\nO projeto do CORRELATOR foi financiado pela Fundação Nacional de Ciência dos Estados Unidos,\\n\\n41\\n00:02:57,000 --> 00:03:01,000\\ncom contribuições do ESO. \\n\\n42\\n00:03:01,000 --> 00:03:05,000\\nComo o parceiro europeu do ALMA, o ESO\\n\\n43\\n00:03:05,000 --> 00:03:08,000\\ntambém providenciou uma parte crucial do CORRELATOR: \\n\\n44\\n00:03:08,000 --> 00:03:13,000\\num sistema de filtragem digital completamente novo e versátil,\\n\\n45\\n00:03:13,000 --> 00:03:15,000\\nconcebido e construído na Europa,\\n\\n46\\n00:03:15,000 --> 00:03:20,000\\nque foi incorporado ao projeto inicial do Observatório de Radioastronomia americano. \\n\\n47\\n00:03:22,000 --> 00:03:26,000\\nA Universidade de Bordeaux desenhou e construiu um conjunto\\n\\n48\\n00:03:26,000 --> 00:03:32,000\\nde 550 placas de circuito de filtros digitais com tecnologia de ponta para o ESO.\\n\\n49\\n00:03:32,000 --> 00:03:36,000\\nCom estes filtros, a luz que o ALMA vê\\n\\n50\\n00:03:36,000 --> 00:03:39,000\\npode ser dividida em até 32 vezes mais variações de comprimentos de onda\\n\\n51\\n00:03:39,000 --> 00:03:42,000\\ndo que no projeto inicial,\\n\\n52\\n00:03:42,000 --> 00:03:48,000\\npermitindo aos astrônomos mais flexibilidade para \"fatiar e cortar\\' o espectro da luz.\\n\\n53\\n00:03:50,000 --> 00:03:55,000\\nAssim como os enormes desafios técnicos em se construir o CORRELATOR, \\n\\n54\\n00:03:55,000 --> 00:04:00,000\\na localização extrema do sistema também foi um fator. \\n\\n55\\n00:04:01,000 --> 00:04:03,000\\nO CORRELATOR está abrigado \\n\\n56\\n00:04:03,000 --> 00:04:06,000\\nno Prédio de Operações Técnicas do ALMA,\\n\\n57\\n00:04:06,000 --> 00:04:10,000\\no lugar mais alto do mundo a abrigar um prédio de alta tecnologia.\\n\\n58\\n00:04:11,000 --> 00:04:16,000\\nA 5000 metros de altitude, o ar é rarefeito, o que significa que\\n\\n59\\n00:04:16,000 --> 00:04:21,000\\né necessária uma corrente de ar duas vezes mais forte que o normal para desaquecer o supercomputador\\n\\n60\\n00:04:23,000 --> 00:04:28,000\\nO ar fino também torna impossível o uso de drives giratórios de computador,\\n\\n61\\n00:04:28,000 --> 00:04:31,000\\nporque suas cabeças de leitura e escrita dependem de \\n\\n62\\n00:04:31,000 --> 00:04:36,000\\numa camada de ar que impede que se choquem com suas placas. \\n\\n63\\n00:04:36,000 --> 00:04:40,000\\nAlém do mais, o CORRELATOR teve de ser projetado para suportar\\n\\n64\\n00:04:40,000 --> 00:04:44,000\\nterremotos, que são comuns nesta região. \\n\\n65\\n00:04:46,000 --> 00:04:49,000\\nO ALMA começou suas observações científicas em 2011\\n\\n66\\n00:04:49,000 --> 00:04:52,000\\ncom um diâmetro parcial de antenas. \\n\\n67\\n00:04:53,000 --> 00:04:56,000\\nUma seção do CORRELATOR já estava em uso\\n\\n68\\n00:04:56,000 --> 00:04:59,000\\npara combinar os sinais dessas antenas,\\n\\n69\\n00:04:59,000 --> 00:05:02,000\\nmas agora o sistema inteiro está completo,\\n\\n70\\n00:05:02,000 --> 00:05:08,000\\npronto para o ALMA começar suas observações com um maior número de antenas. \\n\\n71\\n00:05:12,000 --> 00:05:15,000\\nA instalação bem-sucedida do novo supercomputador\\n\\n72\\n00:05:15,000 --> 00:05:21,000\\nmarcam um passo importante em direção à finalização do ALMA em um futuro próximo. \\n\\n73\\n00:05:23,000 --> 00:05:27,000\\nAtravés do uso de um poder observacional sem paralelos,\\n\\n74\\n00:05:27,000 --> 00:05:34,000\\ncientistas vão ganhar novas impressões sobre as maravilhas escondidas do Universo. \\n\\n75\\n00:05:41,000 --> 00:05:45,000\\no ESOcast é produzido pelo ESO, o Observatório Europeu do Sul www.eso.org\\n\\n76\\n00:05:45,000 --> 00:05:49,000\\no ESO, o Observatório Europeu do Sul, é uma proeminente organização intergovenamental de ciência e tecnologia em astronomia,\\n\\n77\\n00:05:49,000 --> 00:05:52,000\\nque projeta, constrói e opera os telescópios terrestres mais avançados do mundo.\\n\\n78\\n00:05:55,000 --> 00:05:59,000\\nTranscrição por ESO; tradução de Meghie Rodrigues',\n", + " 'bytes': 6920,\n", + " 'sha1': 'c9cqdblryiz4loesceh2naxwxk0wian',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92554140,\n", + " 'timestamp': '2013-03-14T09:38:45Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25114064,\n", + " 'title': 'ESOcast 51 All Systems Go for Highest Altitude Supercomputer.ogv.tr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,000 --> 00:00:07,000 Dünyanın en güçlü süper bilgisayarlarından bir tanesi 2 00:00:07,000 --> 00:00:11,000 Kuzey Şili'nin Andları'nda, 3 0...'\",\n", + " 'text': \"1\\n00:00:03,000 --> 00:00:07,000\\nDünyanın en güçlü süper bilgisayarlarından bir tanesi\\n\\n2\\n00:00:07,000 --> 00:00:11,000\\nKuzey Şili'nin Andları'nda,\\n\\n3\\n00:00:11,000 --> 00:00:14,000\\nuzak ve yüksek rakımlı tepelerinde, şu anda\\n\\n4\\n00:00:14,000 --> 00:00:16,000\\nkurulmuş ve test edilmiş bir halde bulunmaktadır.\\n\\n5\\n00:00:17,000 --> 00:00:21,000\\nBu, ALMA`nın, Atacama Büyük Milimetre ve Milimetre-altı Dizgesi'nin\\n\\n6\\n00:00:21,000 --> 00:00:23,000\\ntamamlanması yolunda geri kalan\\n\\n7\\n00:00:23,000 --> 00:00:28,000\\nen önemli aşamalardan bir tanesidir.\\n\\n8\\n00:00:29,000 --> 00:00:32,000\\nALMA bağdaştırıcısı, ALMA`nın çok sayıdaki antenlerini\\n\\n9\\n00:00:32,000 --> 00:00:37,000\\ntek bir dev teleskop haline getirir.\\n\\n10\\n00:00:42,000 --> 00:00:44,000\\nBu bir ESOcast yayınıdır!\\n\\n11\\n00:00:44,000 --> 00:00:48,000\\nEn son teknoloji ürünü bilim ve ESO'nun perde arkasındaki hayatı.\\n\\n12\\n00:00:48,000 --> 00:00:52,000\\nAvrupa Güney Gözlemevi.\\n\\n13\\n00:01:01,000 --> 00:01:06,000\\nALMA, tarihteki en donanımlı yer-tabanlı teleskop olup,\\n\\n14\\n00:01:06,000 --> 00:01:11,000\\n66 adet çanak anten dizgesinden oluşmuştur.\\n\\n15\\n00:01:12,000 --> 00:01:15,000\\nSüperbilgisayarı ya da bağdaştırıcısı\\n\\n16\\n00:01:15,000 --> 00:01:18,000\\nhayati öneme sahip bir cihazdır.\\n\\n17\\n00:01:19,000 --> 00:01:22,000\\nALMA'nın çalışması için her bir antenden toplanan\\n\\n18\\n00:01:22,000 --> 00:01:26,000\\nzayıf kozmik sinyaller, diğer her bir antenden gelen\\n\\n19\\n00:01:26,000 --> 00:01:28,000\\nsinyaller ile birleştirilmelidir.\\n\\n20\\n00:01:30,000 --> 00:01:34,000\\nBağdaştırıcının işlemcileri sürekli bir şekilde,\\n\\n21\\n00:01:34,000 --> 00:01:38,000\\nbirbirinden en fazla 16 km. mesafe ile ayrılmıs, ALMA dizgesindeki\\n\\n22\\n00:01:38,000 --> 00:01:42,000\\n64 kadar antenden gelen bilgiyi biraraya getirecek ve karşılaştıracak,\\n\\n23\\n00:01:42,000 --> 00:01:46,000\\nve antenlerin birlikte tek bir büyük teleskop gibi\\n\\n24\\n00:01:46,000 --> 00:01:49,000\\nçalışmalarını sağlayacak.\\n\\n25\\n00:01:50,000 --> 00:01:53,000\\nALMA bağdaştırıcıları,\\n\\n26\\n00:01:53,000 --> 00:01:59,000\\n134 milyon işlemci üzerine kuruludur ve\\n\\n27\\n00:01:59,000 --> 00:02:03,000\\ninanılmaz bir sayı olan 17 katrilyon işlem gerçekleştirir.\\n\\n28\\n00:02:03,000 --> 00:02:08,000\\nBu 17 000 milyon milyon demek!\\n\\n29\\n00:02:10,000 --> 00:02:14,000\\nBağdaştırıcı özel olarak bu görev için tasarlanmıştır,\\n\\n30\\n00:02:14,000 --> 00:02:18,000\\nfakat, saniyedeki hesaplamaların sayısı,\\n\\n31\\n00:02:18,000 --> 00:02:21,000\\ndünyadaki en hızlı genel amaçli süper bilgisayarların\\n\\n32\\n00:02:21,000 --> 00:02:24,000\\nperformanslarıyla başa baş gider.\\n\\n33\\n00:02:25,000 --> 00:02:29,000\\nBu eşsiz işlem zorluğunun hem tek tek bileşenler için\\n\\n34\\n00:02:29,000 --> 00:02:33,000\\nhem de bağdaştırıcının tamamının imarı için\\n\\n35\\n00:02:33,000 --> 00:02:36,000\\nyaratıcı bir dizayna ihtiyacı vardı.\\n\\n36\\n00:02:38,000 --> 00:02:41,000\\nBağdaştırıcının başlangıç dizaynı,\\n\\n37\\n00:02:41,000 --> 00:02:44,000\\nimalatı ve montajı dahil,\\n\\n38\\n00:02:44,000 --> 00:02:48,000\\nALMA`nın önde gelen Kuzey Amerikalı ortaği,\\n\\n39\\n00:02:48,000 --> 00:02:52,000\\nABD Ulusal Radyo Astronomi Gözlemevi tarafından yürütüldü.\\n\\n40\\n00:02:53,000 --> 00:02:57,000\\nBağdaştırıcı projesi mali olarak, ESO`nun da katkıları ile, ABD Ulusal Bilim Kurumu\\n\\n41\\n00:02:57,000 --> 00:03:01,000\\ntarafından desteklendi.\\n\\n42\\n00:03:01,000 --> 00:03:05,000\\nALMA`nın Avrupalı ortağı olarak ESO,\\n\\n43\\n00:03:05,000 --> 00:03:08,000\\naynı zamanda bağdaştırıcının çok önemli bir kısmını sağladı:\\n\\n44\\n00:03:08,000 --> 00:03:13,000\\nAvrupa`da tasarlanıp yapılan, tamamen yeni ve\\n\\n45\\n00:03:13,000 --> 00:03:15,000\\nçok amaçlı bir filtreleme sistemi\\n\\n46\\n00:03:15,000 --> 00:03:20,000\\nbaşlangıçtaki NRAO dizaynına katıldı.\\n\\n47\\n00:03:22,000 --> 00:03:26,000\\nBordeaux Üniversitesi, ESO için, 550 adet\\n\\n48\\n00:03:26,000 --> 00:03:32,000\\ngelişmiş dijital bir filtre devre elemanından oluşan seti tasarlayıp yaptı.\\n\\n49\\n00:03:32,000 --> 00:03:36,000\\nBu filtreler ile, ALMA'nın gördüğü ışık\\n\\n50\\n00:03:36,000 --> 00:03:39,000\\nbaşlangıçtaki dizaydan 32 kat daha fazla ara dalgaboyu\\n\\n51\\n00:03:39,000 --> 00:03:42,000\\nskalasına bölünebilecek.\\n\\n52\\n00:03:42,000 --> 00:03:48,000\\nböylece gökbilimciler, ışığın tayfını rahatça bölüp inceleyebilecek.\\n\\n53\\n00:03:50,000 --> 00:03:55,000\\nBağdaştırıcının yapımında karşılaşılan büyük teknik zorlukların yanısıra,\\n\\n54\\n00:03:55,000 --> 00:04:00,000\\nsistemin kurulduğu olağandışı yerleşke bir diğer unsurdu.\\n\\n55\\n00:04:01,000 --> 00:04:03,000\\nBağdaştırıcı, ALMA Dizge İşlemleri Mevkisi Teknik Binası'na,\\n\\n56\\n00:04:03,000 --> 00:04:06,000\\ndünyadaki en yüksek rakım\\n\\n57\\n00:04:06,000 --> 00:04:10,000\\nileri teknoloji binasına yerleştirildi.\\n\\n58\\n00:04:11,000 --> 00:04:16,000\\n5000 metre yükseklikte, hava incedir, yani\\n\\n59\\n00:04:16,000 --> 00:04:21,000\\nsüper bilgisayari soğutmak için iki kat hava akımı gerekir.\\n\\n60\\n00:04:23,000 --> 00:04:28,000\\nİnce hava, ayrıca, bilgisayar disk sürücülerinin dönmesini imkansız hale getirir.\\n\\n61\\n00:04:28,000 --> 00:04:31,000\\nçünkü oku/yaz başlıkları\\n\\n62\\n00:04:31,000 --> 00:04:36,000\\nplaklarıyla çarpışmayı engellemek için bir hava minderine dayanırlar.\\n\\n63\\n00:04:36,000 --> 00:04:40,000\\nDahası, bağdaştırıcı, bu bölgede sıkça meydana gelen\\n\\n64\\n00:04:40,000 --> 00:04:44,000\\ndepremlere dayanıklı olmak zorundaydı.\\n\\n65\\n00:04:46,000 --> 00:04:49,000\\nALMA, anten dizgelerinin bir kısmıyla bilimsel gözlemlerine\\n\\n66\\n00:04:49,000 --> 00:04:52,000\\n2011 yılında başladı.\\n\\n67\\n00:04:53,000 --> 00:04:56,000\\nbağdaştırıcıların bir bölümü bu antenlerden gelen\\n\\n68\\n00:04:56,000 --> 00:04:59,000\\nsinyalleri birleştirmek için zaten kullanımdaydı.\\n\\n69\\n00:04:59,000 --> 00:05:02,000\\nfakat, sistem herşeyiyle şimdi tamamlandı,\\n\\n70\\n00:05:02,000 --> 00:05:08,000\\nve çok sayıdaki antenleri ile ALMA için gözlemlere başlamaya hazır durumda.\\n\\n71\\n00:05:12,000 --> 00:05:15,000\\nYeni süper bilgisayarların başarılı bir şekilde kurulumu\\n\\n72\\n00:05:15,000 --> 00:05:21,000\\nyakın gelecekte ALMA`nın tamamlanması yönündeki önemli bir adımı işaret eder.\\n\\n73\\n00:05:23,000 --> 00:05:27,000\\nDizgelerin paralel olmayan gözlemsel gücünü kullanarak,\\n\\n74\\n00:05:27,000 --> 00:05:34,000\\nbilim insanları Evrenin gizli harikalarına yeni anlamlar kazandıracaklar.\\n\\n75\\n00:05:41,000 --> 00:05:45,000\\nESOcast ESO, Avrupa Güney Gözlemevi tarafından yayınlanmaktadır.\\n\\n76\\n00:05:45,000 --> 00:05:49,000\\nESO, Avrupa Güney Gözlemevi, astronomi alanındaki seçkin hükümetlerarası bilim ve teknoloji organizasyonu olarak...\\n\\n77\\n00:05:49,000 --> 00:05:52,000\\ndünyanın en gelişmiş yer tabanlı teleskoplarını tasarlayan, inşa eden ve işleten bir kuruluştur.\\n\\n78\\n00:05:55,000 --> 00:05:59,000\\nUyarlama: ESO; Çeviri: Fahri Öztürk (JBCA, Manchester / ESON Türkiye Ekibi)\",\n", + " 'bytes': 6943,\n", + " 'sha1': 'snl4py9qdch2oylm4jar1i21n296puj',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92554240,\n", + " 'timestamp': '2013-03-14T09:40:04Z',\n", + " 'user': {'id': 646074, 'text': '培养皿'},\n", + " 'page': {'id': 25114118,\n", + " 'title': 'The movie ALMA — In Search of our Cosmic Origins.ogv.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:05,000 --> 00:00:14,000 ALMA 2 00:00:15,000 --> 00:00:26,000 Αναζητώντας τις Κοσμικές μας Καταβολές 3 00:00:36,500 -...'\",\n", + " 'text': \"1\\n00:00:05,000 --> 00:00:14,000\\nALMA\\n\\n2\\n00:00:15,000 --> 00:00:26,000\\nΑναζητώντας τις Κοσμικές μας Καταβολές\\n\\n3\\n00:00:36,500 --> 00:00:42,000\\nΨηλά στο απομονωμένο υψίπεδο του Τσαχναντόρ στις Χιλιανές Άνδεις.\\n\\n4\\n00:00:43,000 --> 00:00:45,000\\nΜία από τις πιο αφιλόξενες περιοχές της Γης.\\n\\n5\\n00:00:45,500 --> 00:00:47,040\\nΑνάμεσα σε ηφαίστεια ...\\n\\n6\\n00:00:47,459 --> 00:00:49,000\\nΈρημες εκτάσεις ...\\n\\n7\\n00:00:49,200 --> 00:00:50,690\\nΚαι ψυχρούς ανέμους ...\\n\\n8\\n00:00:51,000 --> 00:00:57,300\\nΤο ALMA - το Μεγάλο Σύμπλεγμα Χιλιοστομετρικής και Υποχιλιοστομετρικής παρατήρησης της Ατακάμα - είναι έτοιμο.\\n\\n9\\n00:01:07,000 --> 00:01:10,500\\nΑστρονόμοι και επιστήμονες απ' όλο το κόσμο\\n\\n10\\n00:01:10,500 --> 00:01:15,000\\nανέμεναν ανυπόμονα αυτή τη στιγμή για δεκαετίες.\\n\\n11\\n00:01:15,190 --> 00:01:19,430\\nΤο ALMA είναι το μεγαλύτερο αστρονομικό παρατηρητήριο στο κόσμο.\\n\\n12\\n00:01:19,430 --> 00:01:22,620\\nΌμως δεν είναι ένα συμβατικό τηλεσκόπιο.\\n\\n13\\n00:01:22,620 --> 00:01:26,640\\nΑντί να συλλέγει και να αναλύει ορατό φως\\n\\n14\\n00:01:26,640 --> 00:01:31,400\\nπαρατηρεί σε ένα διαφορετικό και εν γένει αχαρτογράφητο τμήμα του φάσματος.\\n\\n15\\n00:01:40,240 --> 00:01:43,100\\nΑνοίγοντας ένα νέο παράθυρο στο Σύμπαν,\\n\\n16\\n00:01:43,500 --> 00:01:50,760\\nτο ALMA εξερευνεί ένα από τα τελευταία σύνορα της αστρονομίας - το ψυχρό και μακρινό Σύμπαν.\\n\\n17\\n00:01:53,000 --> 00:01:58,950\\nΑναζητά απαντήσεις σε μερικά από τα δυσκολότερα ερωτήματα για τις κοσμικές μας καταβολές.\\n\\n18\\n00:01:58,950 --> 00:02:01,600\\nΠώς δημιουργούνται τα άστρα και οι πλανήτες;\\n\\n19\\n00:02:01,600 --> 00:02:04,490\\nΠώς σχηματίστηκαν οι πρώτοι γαλαξίες;\\n\\n20\\n00:02:07,000 --> 00:02:10,979\\nΤο Υψίπεδο του Τσαχναντόρ στη Βόρεια Χιλή.\\n\\n21\\n00:02:12,000 --> 00:02:17,640\\nΣτα 5000 μέτρα πάνω από την επιφάνεια της θάλασσας όπου - κυριολεκτικά !!!- σου κόβεται η ανάσα,\\n\\n22\\n00:02:17,640 --> 00:02:20,220\\nτο ALMA ωρίμασε.\\n\\n23\\n00:02:20,220 --> 00:02:23,000\\nΤα τελευταία χρόνια,\\n\\n24\\n00:02:23,000 --> 00:02:27,740\\nπερισσότερες από 50 κεραίες έχουν εγκατασταθεί στο έρημο υψίπεδο.\\n\\n25\\n00:02:29,060 --> 00:02:34,230\\nΤο ALMA είναι ένα μοναδικό, γιγάντιο τηλεσκόπιο, κοινοπραξία\\n\\n26\\n00:02:34,230 --> 00:02:39,800\\nτης Ευρώπης, της Β. Αμερικής και της Αν. Ασίας σε συνεργασία με τη Χιλή.\\n\\n27\\n00:02:41,320 --> 00:02:46,000\\nΕξήντα έξι κεραίες τεχνολογίας αιχμής, θα παρατηρούν το Σύμπαν\\n\\n28\\n00:02:46,000 --> 00:02:49,160\\nσε χιλιοστομετρικά και υποχιλιοστομετρικά μήκη κύματος\\n\\n29\\n00:02:50,500 --> 00:02:54,380\\n- χίλιες φορές μεγαλύτερα από τα ορατά μήκη κύματος.\\n\\n30\\n00:02:55,920 --> 00:02:59,220\\nΤο φως που φτάνει από μερικά από τα ψυχρότερα\\n\\n31\\n00:02:59,220 --> 00:03:02,780\\nκαι πλέον μακρινά αντικείμενα στο Σύμπαν.\\n\\n32\\n00:03:04,160 --> 00:03:06,970\\nΟι ατμοσφαιρικοί υδρατμοί αποκρύπτουν\\n\\n33\\n00:03:06,970 --> 00:03:09,480\\nαυτούς τους ασθενείς ψιθύρους από το κρυφό Σύμπαν,\\n\\n34\\n00:03:09,480 --> 00:03:15,500\\nκαι για να τους συλλέξουμε πρέπει να πάμε σε πολύ ψηλά και ξηρά μέρη\\n\\n35\\n00:03:15,500 --> 00:03:18,680\\n- όπως το Τσαχναντόρ.\\n\\n36\\n00:03:24,610 --> 00:03:26,270\\nΗ Γέννηση του ALMA\\n\\n37\\n00:03:26,720 --> 00:03:30,550\\nΤα σχέδια για το ALMA ξεκίνησαν πριν από δεκαετίες.\\n\\n38\\n00:03:31,000 --> 00:03:35,090\\nΕπιστήμονες από την Ευρώπη, τη Β. Αμερική και την Αν. Ασία\\n\\n39\\n00:03:35,090 --> 00:03:39,490\\nανέπτυξαν τρία διαφορετικά σχέδια για νέα, μεγάλα τηλεσκόπια\\n\\n40\\n00:03:39,490 --> 00:03:42,920\\nγια χιλιοστομετρικές και υποχιλιοστομετρικές παρατηρήσεις.\\n\\n41\\n00:03:43,670 --> 00:03:47,680\\nΤελικά τα τρία σχέδια συνενώθηκαν σε ένα.\\n\\n42\\n00:03:48,760 --> 00:03:53,080\\nΗ Μεγάλη Επιστήμη απαιτεί τη παγκόσμια συνεργασία.\\n\\n43\\n00:03:53,080 --> 00:03:57,920\\nΟι χώρες μπορούν μαζί να πετύχουν ότι δε μπορούν να καταφέρουν μόνες τους.\\n\\n44\\n00:03:59,360 --> 00:04:03,960\\nΤο σύνολο είναι ισχυρότερο από το άθροισμα των μελών του.\\n\\n45\\n00:04:04,290 --> 00:04:08,110\\nΤο σχέδιο ALMA γεννήθηκε!\\n\\n46\\n00:04:11,000 --> 00:04:14,760\\nΒρίσκοντας το Κατάλληλο Τόπο\\n\\n47\\n00:04:20,279 --> 00:04:22,940\\nΤο νέο τηλεσκόπιο χρειαζόταν ένα σπίτι,\\n\\n48\\n00:04:22,940 --> 00:04:26,520\\nκαι το βλέμμα στράφηκε στο Τσαχναντόρ.\\n\\n49\\n00:04:26,870 --> 00:04:31,600\\nΌλες οι αστρονομικές και μετεωρολογικές συνθήκες για αυτό,\\n\\n50\\n00:04:31,600 --> 00:04:35,720\\nδοκιμάστηκαν διεξοδικά και η ατμόσφαιρα μετρούνταν καθημερινά.\\n\\n51\\n00:04:35,840 --> 00:04:42,440\\nΤο συμπέρασμα: το Τσαχναντόρ ήταν τέλειο για το ALMA.\\n\\n52\\n00:04:46,640 --> 00:04:50,300\\nΘεμελίωση\\n\\n53\\n00:04:51,500 --> 00:04:55,910\\nΗ κατασκευή ξεκίνησε το 2003 με τη θεμελίωση\\n\\n54\\n00:04:55,910 --> 00:04:58,770\\nτου Κέντρου Λειτουργίας του Συμπλέγματος ALMA.\\n\\n55\\n00:05:06,920 --> 00:05:11,670\\nΟι συνθήκες εδώ σε υψόμετρο 5000 μέτρων πάνω από τη θάλασσα\\n\\n56\\n00:05:11,670 --> 00:05:14,620\\nείναι δύσκολες και επικίνδυνες.\\n\\n57\\n00:05:16,860 --> 00:05:19,400\\nΙσχυροί άνεμοι.\\n\\n58\\n00:05:20,420 --> 00:05:22,880\\nΧαμηλές θερμοκρασίες.\\n\\n59\\n00:05:23,680 --> 00:05:26,540\\nΈντονη υπεριώδης ακτινοβολία.\\n\\n60\\n00:05:27,040 --> 00:05:30,080\\nΚαι απελπιστικά λεπτή ατμόσφαιρα.\\n\\n61\\n00:05:30,680 --> 00:05:35,290\\nΤόσο λεπτή ώστε οι εργάτες χρειάζονταν συμπληρωματικό οξυγόνο\\n\\n62\\n00:05:35,290 --> 00:05:38,760\\nκαι εξονυχιστική ιατρική παρακολούθηση.\\n\\n63\\n00:05:41,880 --> 00:05:46,460\\nΚατασκευάζοντας τα Eργαλεία\\n\\n64\\n00:05:48,360 --> 00:05:51,440\\nΗ παραγωγή των κεραιών του ALMA κατανεμήθηκε\\n\\n65\\n00:05:51,440 --> 00:05:53,680\\nμεταξύ των τριών εταίρων του ALMA.\\n\\n66\\n00:05:55,140 --> 00:05:59,540\\nΤρία πρωτότυπα πέρασαν ελέγχους στις Εγκαταστάσεις Δοκιμών του ALMA\\n\\n67\\n00:05:59,540 --> 00:06:03,440\\nστο χώρο του Very Large Array, στις ΗΠΑ.\\n\\n68\\n00:06:05,030 --> 00:06:10,900\\nΟι 66 κεραίες στο υψίπεδο αποτελούν ένα κρίσιμο τμήμα του ALMA.\\n\\n69\\n00:06:12,240 --> 00:06:17,410\\nΟι μεγάλοι δίσκοι τους συλλέγουν τα αμυδρά χιλιοστομετρικά κύματα από το διάστημα.\\n\\n70\\n00:06:17,480 --> 00:06:21,070\\nΟι κεραίες αυτές αποτελούν πραγματικά τεχνολογία αιχμής.\\n\\n71\\n00:06:22,740 --> 00:06:28,400\\nΗ ακρίβεια κατασκευής της επιφάνειάς του είναι πολύ μικρότερη από το πάχος ενός φύλλου χαρτιού.\\n\\n72\\n00:06:30,170 --> 00:06:37,360\\nΜπορούν να μετακινούνται με τέτοια ακρίβεια ώστε να βρίσκουν ένα μπαλάκι του γκολφ σε απόσταση 15 χλμ.\\n\\n73\\n00:06:39,760 --> 00:06:45,320\\nΚαι πρέπει να επιβιώσουν, εκτεθειμένες στις καιρικές συνθήκες του Τσαχναντόρ!\\n\\n74\\n00:06:58,470 --> 00:07:03,700\\nΕικοσιπέντε κεραίες έχουν παραδοθεί από το Ευρωπαϊκό Νότιο Παρατηρητήριο,\\n\\n75\\n00:07:04,150 --> 00:07:08,220\\n25 από το Εθνικό Παρατηρητήριο Ραδιοαστρονομίας των ΗΠΑ,\\n\\n76\\n00:07:08,220 --> 00:07:13,800\\nκαι 16 από το Εθνικό Αστεροσκοπείο της Ιαπωνίας.\\n\\n77\\n00:07:20,520 --> 00:07:22,620\\nΣε μία πραγματικά παγκόσμια προσπάθεια,\\n\\n78\\n00:07:22,620 --> 00:07:27,700\\nτα στοιχεία των κεραιών κατασκευάστηκαν σε διάφορες περιοχές του κόσμου,\\n\\n79\\n00:07:27,700 --> 00:07:30,700\\nκαι απεστάλησαν στη Χιλή για συναρμολόγηση\\n\\n80\\n00:07:44,360 --> 00:07:47,780\\nκαι εν συνεχεία δοκιμάστηκαν στις Εγκαταστάσεις Υποστήριξης Λειτουργίας,\\n\\n81\\n00:07:47,780 --> 00:07:51,600\\nπροετοιμάζοντάς τις για την πρώτη ουράνια παρατήρησή τους.\\n\\n82\\n00:07:55,790 --> 00:07:58,420\\nΣυνδέοντας τις Πρώτες Κεραίες\\n\\n83\\n00:07:59,950 --> 00:08:04,930\\nΗ πρώτη κεραία του ALMA εγκαταστάθηκε και σύντομα\\n\\n84\\n00:08:04,930 --> 00:08:08,750\\nδύο κεραίες διασυνδέθηκαν με επιτυχία.\\n\\n85\\n00:08:12,120 --> 00:08:16,410\\nΟι ανιχνευτές κάθε κεραίας κατέγραψαν τις αμυδρές λεπτομέρειες\\n\\n86\\n00:08:16,410 --> 00:08:19,710\\nτων ασθενών σημάτων που συλλέχθηκαν από τους δίσκους.\\n\\n87\\n00:08:21,600 --> 00:08:25,040\\nΑυτοί οι ανιχνευτές είναι οι πιο ευαίσθητοι του είδους τους\\n\\n88\\n00:08:25,040 --> 00:08:27,520\\nκαι ψύχονται με υγρό ήλιο\\n\\n89\\n00:08:27,520 --> 00:08:31,280\\nστους τέσσερις μόλις βαθμούς πάνω από το απόλυτο μηδέν.\\n\\n90\\n00:08:34,890 --> 00:08:37,100\\nΦτάνοντας σε Νέα Ύψη\\n\\n91\\n00:08:41,470 --> 00:08:44,750\\nΗ πρώτη πλήρης κεραία φτάνει στο\\n\\n92\\n00:08:44,750 --> 00:08:46,840\\nχώρο εγκατάστασης του συμπλέγματος.\\n\\n93\\n00:08:48,160 --> 00:08:52,500\\nΔύο ειδικά οχήματα μεταφοράς - τα Όττο και Λόρε -\\n\\n94\\n00:08:52,500 --> 00:08:55,740\\nμετακινούν τις 100 τόνων κεραίες.\\n\\n95\\n00:08:56,440 --> 00:08:59,580\\nΤο Όττο ανεβαίνει προσεκτικά τον ελικοειδή δρόμο,\\n\\n96\\n00:08:59,580 --> 00:09:02,210\\nμεταφέροντας τη προηγμένη κεραία ψηλά\\n\\n97\\n00:09:02,210 --> 00:09:05,000\\nστο τελικό χώρο εγκατάστασής της στο υψίπεδο.\\n\\n98\\n00:09:06,260 --> 00:09:10,400\\nΗ πρώτη κεραία σύντομα συμπληρώθηκε με πολλές ακόμα.\\n\\n99\\n00:09:14,220 --> 00:09:16,340\\nΞεπερνώντας τις Προσδοκίες\\n\\n100\\n00:09:18,240 --> 00:09:21,550\\nΠραγματοποιήθηκαν οι πρώτες παρατηρήσεις χρησιμοποιώντας \\n\\n101\\n00:09:21,550 --> 00:09:23,900\\nσυνδυαστικά δύο και μετά τρεις κεραίες.\\n\\n102\\n00:09:24,950 --> 00:09:27,480\\nΟι κρισιμότερες δοκιμές για το σύμπλεγμα ALMA.\\n\\n103\\n00:09:28,580 --> 00:09:31,400\\nΌλες επιτυχείς και με άριστα αποτελέσματα!\\n\\n104\\n00:09:35,230 --> 00:09:38,030\\nΤα χιλιοστομετρικά και υποχιλιοστομετρικά μήκη κύματος\\n\\n105\\n00:09:38,030 --> 00:09:41,750\\nανοίγουν για τους αστρονόμους ένα μοναδικό παράθυρο στο Σύμπαν.\\n\\n106\\n00:09:42,540 --> 00:09:45,780\\nΑλλά για να παρατηρήσουμε με την ευκρίνεια που χρειάζονται οι αστρονόμοι\\n\\n107\\n00:09:45,780 --> 00:09:48,890\\nένα τηλεσκόπιο ενός δίσκου θα έπρεπε να έχει\\n\\n108\\n00:09:48,890 --> 00:09:52,890\\nδιάμετρο χιλιομέτρων (και θα ήταν αδύνατη η κατασκευή του)!\\n\\n109\\n00:09:53,200 --> 00:09:57,250\\nΑντ' αυτού, το ALMA χρησιμοποιεί 66 ξεχωριστές κεραίες\\n\\n110\\n00:09:57,250 --> 00:09:59,720\\nοι οποίες μπορούν να διασκορπιστούν στο υψίπεδο\\n\\n111\\n00:09:59,720 --> 00:10:03,700\\nσε αποστάσεις μεταξύ τους ως και 16 χιλιόμετρα.\\n\\n112\\n00:10:04,520 --> 00:10:08,210\\nΟι κεραίες συνδέονται και τα σήματά τους συνδυάζονται.\\n\\n113\\n00:10:08,510 --> 00:10:13,960\\nΤο αποτέλεσμα: ένα γιγάντιο τηλεσκόπιο μεγάλο όσο όλο το σύμπλεγμα,\\n\\n114\\n00:10:13,960 --> 00:10:19,500\\nτο οποίο παρατηρεί με ανεπανάληπτη ευαισθησία και ευκρίνεια.\\n\\n115\\n00:10:24,200 --> 00:10:27,080\\nΗ αξιοποίηση όλων αυτών των συνδυασμένων σημάτων\\n\\n116\\n00:10:27,080 --> 00:10:31,440\\nαπαιτεί έναν υπερυπολογιστή στο ψηλότερο σημείο του κόσμου.\\n\\n117\\n00:10:32,180 --> 00:10:35,040\\nΜε 134 εκατομμύρια επεξεργαστές,\\n\\n118\\n00:10:35,040 --> 00:10:39,400\\nνα πραγματοποιούν 17 τετράκις εκατομ. λειτουργίες ανά δευτερόλεπτο\\n\\n119\\n00:10:39,400 --> 00:10:42,860\\n— όσες και ο γρηγορότερος υπερυπολογιστής στο κόσμο —\\n\\n120\\n00:10:42,920 --> 00:10:45,840\\nο συσχετιστής του ALMA, στο Τσαχναντόρ,\\n\\n121\\n00:10:45,840 --> 00:10:50,150\\nσυνδυάζει και συγκρίνει τα σήματα από όλες τις κεραίες.\\n\\n122\\n00:10:56,430 --> 00:11:00,110\\nΚαθώς ολοένα περισσότερες κεραίες φτάνουν στο Τσαχναντόρ,\\n\\n123\\n00:11:00,110 --> 00:11:05,270\\nη Εγκατάσταση Υποστήριξης Λειτουργίας, το κέντρο ελέγχου του παρατηρητηρίου,\\n\\n124\\n00:11:05,270 --> 00:11:11,840\\nαρχίζει να παίρνει σχήμα στο λίγο πιο φιλόξενο υψόμετρο των 2900 μέτρων.\\n\\n125\\n00:11:13,000 --> 00:11:15,960\\nΟι εργασίες συνεχίζονται σε 24ωρη βάση.\\n\\n126\\n00:11:15,960 --> 00:11:18,260\\nΛειτουργία του Τηλεσκοπίου.\\n\\n127\\n00:11:18,260 --> 00:11:22,430\\nΔοκιμές και συντήρηση των κεραιών και του λοιπού εξοπλισμού.\\n\\n128\\n00:11:23,590 --> 00:11:25,880\\nΚαι σπίτι για το προσωπικό του ALMA\\n\\n129\\n00:11:25,880 --> 00:11:29,550\\nγια τη διάρκεια πρωινών και νυχτερινών βαρδιών στο παρατηρητήριο.\\n\\n130\\n00:11:39,230 --> 00:11:41,670\\nΚεντρικά Γραφεία στο Σαντιάγο\\n\\n131\\n00:11:44,040 --> 00:11:46,840\\nΣτη πρωτεύουσα του κράτους που το φιλοξενεί, της Χιλής\\n\\n132\\n00:11:46,840 --> 00:11:50,760\\nκατασκευάστηκαν τα Κεντρικά Γραφεία του ALMA, στο Σαντιάγο.\\n\\n133\\n00:11:53,470 --> 00:11:57,200\\nΕδώ εργάζεται το τεχνικό, επιστημονικό και διοικητικό \\n\\n134\\n00:11:57,200 --> 00:12:00,450\\nπροσωπικό της Κοινοπραξίας του ALMA.\\n\\n135\\n00:12:09,670 --> 00:12:11,560\\nΑποδεικνύοντας την Αριστεία\\n\\n136\\n00:12:14,320 --> 00:12:17,280\\nΑκόμη και πριν την ολοκλήρωση του σταδίου της κατασκευής,\\n\\n137\\n00:12:17,280 --> 00:12:20,630\\nξεκίνησαν οι πρώτες επιστημονικές παρατηρήσεις\\n\\n138\\n00:12:20,630 --> 00:12:23,120\\nμε ένα μικρό σύμπλεγμα κεραιών.\\n\\n139\\n00:12:24,480 --> 00:12:27,400\\nΤο ALMA άνοιξε τα μάτια του!\\n\\n140\\n00:12:33,430 --> 00:12:36,220\\nΧιλιάδες επιστήμονες από όλο το κόσμο\\n\\n141\\n00:12:36,220 --> 00:12:41,200\\nσυναγωνίζονταν για να είναι ανάμεσα στους πρώτους που θα χρησιμοποιούσαν τις εγκαταστάσεις.\\n\\n142\\n00:12:43,560 --> 00:12:46,230\\nΑκόμη και με μόνο 16 κεραίες\\n\\n143\\n00:12:46,230 --> 00:12:51,000\\nτο ALMA ήταν ήδη το ισχυρότερο τηλεσκόπιο του είδους του.\\n\\n144\\n00:12:57,610 --> 00:13:02,240\\nΟι πρώτες επιστημονικές παρατηρήσεις εξεπλήρωσαν τις ελπίδες όλων.\\n\\n145\\n00:13:06,120 --> 00:13:08,020\\nΟι Γαλαξίες Κεραίες,\\n\\n146\\n00:13:08,020 --> 00:13:12,550\\nένα ζεύγος συγκρουόμενων γαλαξιών με δραματικά παραμορφωμένο σχήμα.\\n\\n147\\n00:13:13,640 --> 00:13:17,070\\nΤο ορατό φως εμφανίζει τα άστρα στους γαλαξίες,\\n\\n148\\n00:13:17,070 --> 00:13:21,600\\nόμως το ALMA αποκαλύπτει τα νέφη πυκνού, ψυχρού αερίου\\n\\n149\\n00:13:21,600 --> 00:13:24,660\\nαπό τα οποία γεννιούνται νέα άστρα.\\n\\n150\\n00:13:30,320 --> 00:13:35,430\\nΗ καρδιά του χαρακτηριστικού γαλαξία Κενταύρου Α.\\n\\n151\\n00:13:35,430 --> 00:13:41,040\\nΤο ALMA διαπερνά τις αδιαφανείς λωρίδες σκόνης που κρύβουν το κέντρο του.\\n\\n152\\n00:13:45,960 --> 00:13:50,460\\nΗ εικόνα του κοντινού άστρου Fomalhaut μας δίνει στοιχεία\\n\\n153\\n00:13:50,460 --> 00:13:53,880\\nγια το τρόπο σχηματισμού και εξέλιξης πλανητικών συστημάτων.\\n\\n154\\n00:13:57,400 --> 00:14:01,610\\nΚοσμικοί κόκκοι σκόνης γύρω από ένα καφέ νάνο\\n\\n155\\n00:14:01,610 --> 00:14:03,450\\nυποδηλώνουν ότι οι βραχώδεις πλανήτες\\n\\n156\\n00:14:03,450 --> 00:14:07,220\\nίσως είναι περισσότερο συνηθισμένοι απ' όσο υπολογίζαμε στο Σύμπαν.\\n\\n157\\n00:14:11,180 --> 00:14:14,320\\nΜόρια σακχάρων, εντοπίστηκαν για πρώτη φορά\\n\\n158\\n00:14:14,320 --> 00:14:16,790\\nγύρω από ένα νεαρό άστρο σαν τον Ήλιο μας,\\n\\n159\\n00:14:16,790 --> 00:14:20,720\\nτα δομικά στοιχεία της ζωής στο σωστό σημείο, τη κατάλληλη στιγμή,\\n\\n160\\n00:14:20,720 --> 00:14:24,800\\nώστε να αποτελέσουν μέρος των νέων πλανητών που δημιουργούνται γύρω του.\\n\\n161\\n00:14:29,330 --> 00:14:35,780\\nΜία απρόσμενη σπειροειδής δομή στο υλικό γύρω από το γηραιό άστρο R του Γλύπτη\\n\\n162\\n00:14:35,780 --> 00:14:39,480\\nαποκαλύπτει τα μυστικά ενός ετοιμοθάνατου άστρου.\\n\\n163\\n00:14:44,740 --> 00:14:46,950\\nΕκτεταμένα ρεύματα αερίου\\n\\n164\\n00:14:46,950 --> 00:14:48,480\\nσε ροή γύρω από ένα χάσμα\\n\\n165\\n00:14:48,480 --> 00:14:52,140\\nστο δίσκο ύλης γύρω από ένα νεαρό άστρο.\\n\\n166\\n00:14:52,140 --> 00:14:55,200\\nΈνα κρίσιμο στάδιο στη δημιουργία γιγάντιων πλανητών,\\n\\n167\\n00:14:55,200 --> 00:14:58,120\\nπαρατηρείται για πρώτη φορά.\\n\\n168\\n00:14:58,120 --> 00:15:02,800\\nΚαι όλα αυτά πριν ολοκληρωθεί το σύμπλεγμα!\\n\\n169\\n00:15:05,240 --> 00:15:07,520\\nΑνοίγοντας Νέους Ορίζοντες\\n\\n170\\n00:15:10,270 --> 00:15:13,830\\nΤα εγκαίνια του ALMA σηματοδοτούν την ενηλικίωσή του.\\n\\n171\\n00:15:13,830 --> 00:15:16,340\\nΤο ταξίδι ήταν μεγάλο.\\n\\n172\\n00:15:16,340 --> 00:15:18,670\\nΤο ALMA μεγάλωσε από μία ιδέα,\\n\\n173\\n00:15:18,670 --> 00:15:20,520\\nσε ένα κατασκευαστικό έργο,\\n\\n174\\n00:15:20,520 --> 00:15:22,960\\nσε ένα πλήρως λειτουργικό παρατηρητήριο,\\n\\n175\\n00:15:22,960 --> 00:15:27,600\\nκαι μία πραγματικά παγκόσμια επιστημονική σύμπραξη.\\n\\n176\\n00:15:36,750 --> 00:15:40,730\\nΣτη γαλήνια και μοναχική ομορφιά της Χιλιανής ερήμου Ατακάμα,\\n\\n177\\n00:15:40,730 --> 00:15:43,220\\nτο ALMA είναι έτοιμο για το μέλλον.\\n\\n178\\n00:15:43,830 --> 00:15:46,440\\nΧρησιμοποιώντας αυτό το θαυμάσιο τηλεσκόπιο,\\n\\n179\\n00:15:46,440 --> 00:15:49,440\\nαστρονόμοι απ' όλο το κόσμο θα παρατηρήσουν\\n\\n180\\n00:15:49,440 --> 00:15:52,600\\nσε βάθος τα κρυμμένα μυστικά του Σύμπαντος.\\n\\n181\\n00:15:53,040 --> 00:15:58,160\\nΑναζητώντας τις κοσμικές μας καταβολές!\\n\\n182\\n00:16:03,680 --> 00:16:09,720\\nALMA\\n\\n183\\n00:16:18,240 --> 00:16:22,840\\nΣε όλους αυτούς που η περιέργεια τους, τους κάνει να θέτουν τα μεγαλύτερα ερωτήματα.\\n\\n184\\n00:16:23,480 --> 00:16:28,930\\nΚείμενα: ESO - Μετάφραση: Μανώλης Ζούλιας\",\n", + " 'bytes': 22789,\n", + " 'sha1': '92ltlhx2tpg6xoscyhdxlz2xvpdyxae',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92612237,\n", + " 'timestamp': '2013-03-15T09:23:06Z',\n", + " 'user': {'id': 293, 'text': 'Raymond'},\n", + " 'page': {'id': 25122435,\n", + " 'title': 'Errichtung des Besichtigungsbauwerks.webm.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'fix',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nBau des Besichtigungsbauwerks für das eingestürzte Historische Archiv der Stadt Köln: Pfahlgründung für eine Bohrpfahlwand\\n\\n2\\n00:00:07,000 --> 00:00:17,000\\nEin Drehbohrgerät, Modell Bauer BG 40, gründet einen Bohrpfahl\\n\\n3\\n00:00:40,000 --> 00:00:50,000\\nDer Kastenbohrer wird geleert\\n\\n4\\n00:00:57,000 --> 00:01:10,000\\nPer Kran wird ein neues Bohrrohr herangeführt\\n\\n5\\n00:01:14,000 --> 00:01:37,000\\nDie Transportvorrichtung wird gelöst\\n\\n6\\n00:01:52,000 --> 00:02:35,000\\nDas Drehbohrgerät „greift“ sich das neue Bohrrohr\\n\\n7\\n00:03:00,000 --> 00:03:33,000\\nDas neue Bohrrohr wird auf das vorhandene Bohrrohr aufgesetzt\\n\\n8\\n00:03:35,000 --> 00:03:50,000\\nDie beiden Bohrrohre werden miteinander verschraubt\\n\\n9\\n00:03:52,000 --> 00:04:05,000\\nDie Bohrung wird fortgeführt',\n", + " 'bytes': 802,\n", + " 'sha1': 'j0hmoqgeqxxc84w2rgxu4f7i3eb8ghm',\n", + " 'parent_id': 92612222,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92833541,\n", + " 'timestamp': '2013-03-18T19:58:07Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25177760,\n", + " 'title': 'Wiki feel stupid v2.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:0,600 --> 00:00:2,400 Wikimedia Wikipedia Editing Usability Study 2 00:00:2,600 --> 00:00:4,400 Editing Makes Me Feel Stupid 3 00:00:4,600 --> 00:00:7...'\",\n", + " 'text': \"1\\n00:00:0,600 --> 00:00:2,400\\nWikimedia Wikipedia Editing Usability Study\\n\\n2\\n00:00:2,600 --> 00:00:4,400\\nEditing Makes Me Feel Stupid\\n\\n3\\n00:00:4,600 --> 00:00:7,400\\nSee if we can... oh, OK.\\n\\n4\\n00:00:10,600 --> 00:00:13,400\\nSo, basically, OK, so my first expectation\\n\\n5\\n00:00:13,600 --> 00:00:16,400\\nwas kind of, a little bit more user-friendly,\\n\\n6\\n00:00:16,600 --> 00:00:19,400\\nthis looks like, uh, for example,\\n\\n7\\n00:00:19,600 --> 00:00:22,400\\nI'm not sure what these two are for, and I'm guessing\\n\\n8\\n00:00:22,600 --> 00:00:25,400\\nthat these two might be to make that as a link,\\n\\n9\\n00:00:25,600 --> 00:00:28,400\\nas I see it on several, uh several occasions.\",\n", + " 'bytes': 658,\n", + " 'sha1': 'pvixhvq5g1qkjnh15ocv797d5c24xbf',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 92840543,\n", + " 'timestamp': '2013-03-18T22:28:34Z',\n", + " 'user': {'id': 1701223, 'text': 'VGrigas (WMF)'},\n", + " 'page': {'id': 25179534,\n", + " 'title': 'The Wikipedia Education Program.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,261 --> 00:00:03,292 A lot of students feel that their learning in school is... 2 00:00:05,046 --> 00:00:08,536 kind of useless, because they put al...'\",\n", + " 'text': \"1\\n00:00:00,261 --> 00:00:03,292\\nA lot of students feel that their learning in school is...\\n\\n2\\n00:00:05,046 --> 00:00:08,536\\nkind of useless, because they put all this effort and time into coming up with \\n\\n3\\n00:00:08,536 --> 00:00:12,666\\na great research paper, and they turn it in, and it just ends up in somebody's drawer.\\n\\n4\\n00:00:12,666 --> 00:00:16,461\\nBut with a Wikipedia assignment, they put it onto an article,\\n\\n5\\n00:00:16,461 --> 00:00:20,358\\non Wikipedia and thousands if not tens of thousands of people end up seeing their work\\n\\n6\\n00:00:20,358 --> 00:00:22,924\\nWikipedia is an encyclopedia that anyone can edit.\\n\\n7\\n00:00:22,924 --> 00:00:25,318\\nOn Wikipedia everything is published live,\\n\\n8\\n00:00:26,472 --> 00:00:28,429\\nso as students are working to develop their articles,\\n\\n9\\n00:00:28,429 --> 00:00:32,813\\nThey are getting constant feedback sometimes from the Wikipedia editing community.\\n\\n10\\n00:00:32,813 --> 00:00:36,813\\nOur students are learning how to edit Wikipedia as part of their coursework\\n\\n11\\n00:00:36,813 --> 00:00:40,734\\nand they are assisted by Wikipedia ambassadors who are trained by our program.\\n\\n12\\n00:00:40,734 --> 00:00:46,573\\nMore than 500 classes have participated world-wide so far,\\n\\n13\\n00:00:46,573 --> 00:00:49,619\\nWe are constantly adding new classes.\\n\\n14\\n00:00:49,619 --> 00:00:54,124\\nBack in fall 2010, we had a student who was participating in a course at Georgetown University\\n\\n15\\n00:00:54,124 --> 00:00:58,563\\nwhere he re-wrote the article on the National Democratic Party of Egypt\\n\\n16\\n00:00:58,563 --> 00:01:01,922\\nThis was before the revolution in Egypt\\n\\n17\\n00:01:01,922 --> 00:01:02,812\\nabout two months before it.\\n\\n18\\n00:01:02,812 --> 00:01:08,053\\nWhen the revolution started happening, as the protestors were taking to the streets in Cairo\\n\\n19\\n00:01:08,053 --> 00:01:12,145\\nPeople all around the world turned to Wikipedia to learn about the political party\\n\\n20\\n00:01:12,145 --> 00:01:14,936\\nthat president Mubarak was affiliated with. \\n\\n21\\n00:01:14,936 --> 00:01:18,857\\nAnd what they found there was the article that this student had written.\\n\\n22\\n00:01:18,857 --> 00:01:21,107\\nI did, I wrote the article - the whole thing\\n\\n23\\n00:01:22,107 --> 00:01:25,822\\nand it's something that isn't in a stasis.\\n\\n24\\n00:01:25,822 --> 00:01:27,405\\nI mean it's information that's changing. \\n\\n25\\n00:01:27,405 --> 00:01:33,536\\nI quoted news articles which again are very temporal and related to now\\n\\n26\\n00:01:33,536 --> 00:01:37,583\\nand yeah I will go back in a few months to make sure that\\n\\n27\\n00:01:37,583 --> 00:01:43,922\\nwhen the next president is elected, if it's not what I say in the article\\n\\n28\\n00:01:43,922 --> 00:01:46,479\\nthat I change it to make sure! (laughs)\",\n", + " 'bytes': 2702,\n", + " 'sha1': 'o697r1ddnq12zkuywwum1i8arw72yb4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 530982678,\n", + " 'timestamp': '2021-02-06T20:44:15Z',\n", + " 'user': {'id': 2366229, 'text': 'Achim55'},\n", + " 'page': {'id': 25232095,\n", + " 'title': 'Me at the zoo.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/188.163.81.234|188.163.81.234]] ([[User talk:188.163.81.234|talk]]) to last revision by JudgeDeadd',\n", + " 'text': \"\\ufeff1\\n00:00:01,300 --> 00:00:04,400\\nAll right, so here we are\\nin front of the elephants,\\n\\n2\\n00:00:04,400 --> 00:00:09,166\\nthe cool thing about these guys\\nis that they have really,\\n\\n3\\n00:00:09,166 --> 00:00:12,699\\nreally, really long trunks,\\n\\n4\\n00:00:12,699 --> 00:00:17,000\\nand that's, that's cool.\\n\\n5\\n00:00:17,000 --> 00:00:18,766\\nAnd that's pretty much all there is to say.\",\n", + " 'bytes': 374,\n", + " 'sha1': '7pfn65wnx0arl630hkrkkmrxkgxpt5o',\n", + " 'parent_id': 530698690,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93095789,\n", + " 'timestamp': '2013-03-22T16:38:54Z',\n", + " 'user': {'text': '2.185.56.169'},\n", + " 'page': {'id': 25233268,\n", + " 'title': 'Linus pronounces linux (english).oga.fa.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:05,400\\nسلام من لینوس تورووالدز هستم و لینوکس را اینگونه ('''لینوکس''') تلفظ میکنم\",\n", + " 'bytes': 161,\n", + " 'sha1': 'q9uk6obbzpoaj7s0j65ffkolwjttlbn',\n", + " 'parent_id': 93095718,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 629929095,\n", + " 'timestamp': '2022-02-15T08:16:26Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25233523,\n", + " 'title': 'Mazurek Dabrowskiego.ogg.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,234\\nВвеки Польша не погибнет,\\n\\n2\\n00:00:03,296 --> 00:00:06,000\\nЕсли мы живем!\\n\\n3\\n00:00:06,600 --> 00:00:09,793\\nТo что враги у нас отняли,\\n\\n4\\n00:00:09,843 --> 00:00:12,764\\nСаблями вернём!\\n\\n5\\n00:00:13,242 --> 00:00:16,548\\nМарш, марш Домбровский!\\n\\n6\\n00:00:16,597 --> 00:00:19,500\\nИз Италии в Польшу!\\n\\n7\\n00:00:19,757 --> 00:00:23,243\\nС народом и страною,\\n\\n8\\n00:00:23,263 --> 00:00:26,225\\nЖить одной судьбою!\\n\\n9\\n00:00:26,691 --> 00:00:29,986\\nМарш, марш Домбровский!\\n\\n10\\n00:00:30,037 --> 00:00:33,460\\nИз Италии в Польшу!\\n\\n11\\n00:00:33,503 --> 00:00:36,891\\nС народом и страною,\\n\\n12\\n00:00:36,925 --> 00:00:40,278\\nЖить одной судьбою!',\n", + " 'bytes': 847,\n", + " 'sha1': 'i07dbqml1we5nsbj8dcj5bur2ew6p9q',\n", + " 'parent_id': 629842811,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93122572,\n", + " 'timestamp': '2013-03-23T06:49:09Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 25239526,\n", + " 'title': '2012-04 Halberstadt Friedhof←Hauptbahnhof.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:02:20,400 Friedhof ◄(im Betriebshof)► 2 00:02:20,440 --> 00:02:32,680 Friedhof 3 00:02:54,720 --> 00:03:45,120 Zuckerfabrik 4 00:04...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:02:20,400\\nFriedhof\\n◄(im Betriebshof)►\\n\\n2\\n00:02:20,440 --> 00:02:32,680\\nFriedhof\\n\\n3\\n00:02:54,720 --> 00:03:45,120\\nZuckerfabrik\\n\\n4\\n00:04:36,960 --> 00:04:48,320\\nGröperstraße\\n\\n5\\n00:05:47,520 --> 00:06:00,040\\nHoher Weg\\n\\n6\\n00:06:35,600 --> 00:08:35,520\\nHolzmarkt\\n\\n7\\n00:08:35,560 --> 00:08:50,880\\nHolzmarkt\\n◄(nur Ampelstopp)►\\n\\n8\\n00:08:50,920 --> 00:09:01,000\\nHolzmarkt\\n\\n9\\n00:09:29,760 --> 00:09:46,800\\nFischmarkt\\n\\n10\\n00:10:05,680 --> 00:11:22,120\\nKühlinger Straße\\n\\n11\\n00:11:56,160 --> 00:12:08,720\\nHeinrich-Heine-Platz\\n\\n12\\n00:13:15,680 --> 00:13:47,040\\nRichard-Wagner-Straße\\n\\n13\\n00:14:18,080 --> 00:14:32,520\\nHauptbahnhof',\n", + " 'bytes': 650,\n", + " 'sha1': 'aj8trfehaf6uc6ft37uvqxa5saegrca',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93124597,\n", + " 'timestamp': '2013-03-23T07:51:28Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 25239793,\n", + " 'title': '2012-04 Halberstadt Hauptbahnhof←Sargstedter Weg.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:14,720 Hauptbahnhof 2 00:00:57,600 --> 00:01:20,160 Beckerstraße 3 00:01:48,120 --> 00:02:22,840 Richard-Wagner-Straße 4 00:03:19,...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:14,720\\nHauptbahnhof\\n\\n2\\n00:00:57,600 --> 00:01:20,160\\nBeckerstraße\\n\\n3\\n00:01:48,120 --> 00:02:22,840\\nRichard-Wagner-Straße\\n\\n4\\n00:03:19,680 --> 00:04:27,920\\nHeinrich-Heine-Platz\\n\\n5\\n00:04:27,960 --> 00:04:47,480\\nHeinrich-Heine-Platz\\n◄(nur Ampelstopp)►\\n\\n6\\n00:04:47,520 --> 00:04:52,200\\nHeinrich-Heine-Platz\\n\\n7\\n00:09:34,200 --> 00:09:48,480\\nErich-Weinert-Straße\\n\\n8\\n00:09:48,520 --> 00:10:29,280\\nErich-Weinert-Straße\\n◄(nur Ampelstopp)►\\n\\n9\\n00:10:29,320 --> 00:10:34,400\\nErich-Weinert-Straße\\n\\n10\\n00:11:13,520 --> 00:11:43,000\\nLandratsamt\\n\\n11\\n00:12:11,000 --> 00:12:42,000\\nKlusstraße\\n\\n12\\n00:13:23,720 --> 00:13:52,120\\nHerbingstraße\\n\\n13\\n00:14:27,040 --> 00:14:48,800\\nWesterhäuser Straße\\n\\n14\\n00:15:28,800 --> 00:15:40,280\\nSpiegelstraße\\n\\n15\\n00:17:08,160 --> 00:17:26,040\\nHeinrich-Julius-Straße\\n\\n16\\n00:17:51,280 --> 00:18:16,320\\nHolzmarkt\\n\\n17\\n00:18:16,360 --> 00:18:18,680\\nHolzmarkt\\n◄(nur Ampelstopp)►\\n\\n18\\n00:18:18,760 --> 00:18:22,040\\nHolzmarkt\\n\\n19\\n00:18:48,160 --> 00:19:09,080\\nHoher Weg\\n\\n20\\n00:20:01,920 --> 00:20:27,200\\nJohannesbrunnen\\n\\n21\\n00:20:56,160 --> 00:21:06,840\\nVoigtei\\n\\n22\\n00:21:38,680 --> 00:21:57,800\\nTorteich\\n\\n23\\n00:22:47,440 --> 00:23:02,160\\nSargstedter Weg',\n", + " 'bytes': 1208,\n", + " 'sha1': 'otbfmhrxp6opu44qqs0q8dklfgvaqh4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93126335,\n", + " 'timestamp': '2013-03-23T08:54:23Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 25240074,\n", + " 'title': '2012-04 Halberstadt Sargstedter Weg←Herbingstraße←Hauptbahnhof.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:51,040 Sargstedter Weg 2 00:01:12,960 --> 00:01:51,640 Torteich 3 00:02:28,320 --> 00:02:38,600 Voigtei 4 00:03:06,240 --> 00:03:19,...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:51,040\\nSargstedter Weg\\n\\n2\\n00:01:12,960 --> 00:01:51,640\\nTorteich\\n\\n3\\n00:02:28,320 --> 00:02:38,600\\nVoigtei\\n\\n4\\n00:03:06,240 --> 00:03:19,760\\nJohannesbrunnen\\n\\n5\\n00:04:00,000 --> 00:04:23,520\\nHoher Weg\\n\\n6\\n00:04:50,120 --> 00:05:09,600\\nHolzmarkt\\n\\n7\\n00:05:09,640 --> 00:05:20,560\\nHolzmarkt\\n◄(nur Ampelstopp)►\\n\\n8\\n00:05:20,600 --> 00:05:29,400\\nHolzmarkt\\n\\n9\\n00:05:53,360 --> 00:06:06,680\\nHeinrich-Julius-Straße\\n\\n10\\n00:06:49,440 --> 00:07:00,960\\nSpiegelstraße\\n\\n11\\n00:07:47,480 --> 00:08:08,520\\nWesterhäuser Straße\\n\\n12\\n00:08:50,160 --> 00:10:01,000\\nHerbingstraße\\n\\n13\\n00:10:59,280 --> 00:11:16,400\\nKlusstraße\\n\\n14\\n00:11:47,960 --> 00:12:13,240\\nLandratsamt\\n\\n15\\n00:14:43,640 --> 00:14:56,600\\nErich-Weinert-Straße\\n\\n16\\n00:15:56,640 --> 00:16:07,080\\nHeinrich-Heine-Platz\\n\\n17\\n00:16:44,720 --> 00:17:06,160\\nRichard-Wagner-Straße\\n\\n18\\n00:17:35,840 --> 00:17:48,120\\nHauptbahnhof',\n", + " 'bytes': 892,\n", + " 'sha1': 'rzqk12409gh5ez3ej0cn88olovsn0wz',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93127834,\n", + " 'timestamp': '2013-03-23T09:31:27Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 25240318,\n", + " 'title': '2012-04 Halberstadt Hauptbahnhof←Friedhof.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:11,800 Hauptbahnhof 2 00:00:34,080 --> 00:00:51,480 Beckerstraße 3 00:01:17,720 --> 00:01:43,240 Richard-Wagner-Straße 4 00:02:26,...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:11,800\\nHauptbahnhof\\n\\n2\\n00:00:34,080 --> 00:00:51,480\\nBeckerstraße\\n\\n3\\n00:01:17,720 --> 00:01:43,240\\nRichard-Wagner-Straße\\n\\n4\\n00:02:26,400 --> 00:02:38,520\\nHeinrich-Heine-Platz\\n\\n5\\n00:04:28,480 --> 00:04:43,360\\nKühlinger Straße\\n\\n6\\n00:05:14,920 --> 00:05:28,600\\nFischmarkt\\n\\n7\\n00:06:43,160 --> 00:10:09,120\\nHolzmarkt\\n\\n8\\n00:10:09,160 --> 00:10:14,080\\nHolzmarkt\\n◄(nur Ampelstopp)►\\n\\n9\\n00:10:14,120 --> 00:10:20,400\\nHolzmarkt\\n\\n10\\n00:10:49,200 --> 00:11:14,400\\nHoher Weg\\n\\n11\\n00:11:55,680 --> 00:12:12,760\\nGröperstraße\\n\\n12\\n00:13:07,680 --> 00:13:20,760\\nZuckerfabrik\\n\\n13\\n00:13:43,480 --> 00:13:56,560\\nFriedhof',\n", + " 'bytes': 632,\n", + " 'sha1': 'lopz8xa25oyfr5p38eebvckalhqxohh',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93131569,\n", + " 'timestamp': '2013-03-23T10:48:07Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 25241132,\n", + " 'title': '2012-04 Halberstadt Johannesbrunnen←Klus←Heinrich-Heine-Platz.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:29,280 --> 00:01:01,640 Hoher Weg 2 00:01:42,080 --> 00:02:41,240 Holzmarkt 3 00:02:41,280 --> 00:02:46,720 Holzmarkt ◄(nur Ampelstopp)► 4 00:02:...'\",\n", + " 'text': '1\\n00:00:29,280 --> 00:01:01,640\\nHoher Weg\\n\\n2\\n00:01:42,080 --> 00:02:41,240\\nHolzmarkt\\n\\n3\\n00:02:41,280 --> 00:02:46,720\\nHolzmarkt\\n◄(nur Ampelstopp)►\\n\\n4\\n00:02:46,760 --> 00:02:58,560\\nHolzmarkt\\n\\n5\\n00:03:29,240 --> 00:03:43,560\\nHeinrich-Julius-Straße\\n\\n6\\n00:04:41,760 --> 00:04:54,520\\nSpiegelstraße\\n\\n7\\n00:05:52,800 --> 00:06:06,080\\nWesterhäuser Straße\\n\\n8\\n00:06:54,960 --> 00:11:02,960\\nHerbingstraße\\n\\n9\\n00:11:56,160 --> 00:12:19,680\\nAm Sommerbad\\n\\n10\\n00:13:21,920 --> 00:13:43,840\\nKirschallee\\n\\n11\\n00:14:36,480 --> 00:15:49,080\\nKlus\\n\\n12\\n00:16:44,520 --> 00:16:57,080\\nKirschallee\\n\\n13\\n00:18:12,000 --> 00:18:24,760\\nAm Sommerbad\\n\\n14\\n00:19:03,360 --> 00:19:19,720\\nHerbingstraße\\n\\n15\\n00:20:04,920 --> 00:20:24,000\\nKlusstraße\\n\\n16\\n00:21:04,000 --> 00:21:32,920\\nLandratsamt\\n\\n17\\n00:22:25,320 --> 00:22:47,200\\nErich-Weinert-Straße\\n\\n18\\n00:23:27,360 --> 00:23:29,880\\nHeinrich-Heine-Platz',\n", + " 'bytes': 877,\n", + " 'sha1': '7nfjsb8nwyxtr1kvr90wr9myjcmh4ed',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93134362,\n", + " 'timestamp': '2013-03-23T11:42:42Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 25241574,\n", + " 'title': '2012-04 Halberstadt Landratsamt←Spiegelstraße.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:07,680 Landratsamt 2 00:00:48,960 --> 00:01:15,120 Klusstraße 3 00:02:23,600 --> 00:02:51,200 Herbingstraße 4 00:03:45,120 --> 00:...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:07,680\\nLandratsamt\\n\\n2\\n00:00:48,960 --> 00:01:15,120\\nKlusstraße\\n\\n3\\n00:02:23,600 --> 00:02:51,200\\nHerbingstraße\\n\\n4\\n00:03:45,120 --> 00:04:07,640\\nWesterhäuser Straße',\n", + " 'bytes': 191,\n", + " 'sha1': 'c48zq7o4zlacs6qp4w03y0tmhqjlyy3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93136067,\n", + " 'timestamp': '2013-03-23T12:26:42Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 25242031,\n", + " 'title': '2012-04 Halberstadt Bahnübergang Straßenbahn % Eisenbahn in der Westerhäuser Straße.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:34,480 ←\\xa0Halberstadt Oststraße →\\xa0Halberstadt-Spiegelsberge ↑\\xa0Herbingstraße ↓\\xa0Westerhäuser Straße 2 00:00:34,560 --> 00...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:34,480\\n←\\xa0Halberstadt Oststraße\\n→\\xa0Halberstadt-Spiegelsberge\\n↑\\xa0Herbingstraße\\n↓\\xa0Westerhäuser Straße\\n\\n2\\n00:00:34,560 --> 00:00:59,560\\n↗\\xa0Westerhäuser Straße\\n↘\\xa0Halberstadt Oststraße\\n\\n3\\n00:00:59,640 --> 00:01:21,480\\n↑\\xa0Halberstadt-Spiegelsberge',\n", + " 'bytes': 289,\n", + " 'sha1': 'hcpyfd7xwbp4npkklncwhyhzxwx3e10',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93136115,\n", + " 'timestamp': '2013-03-23T12:28:08Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 25242046,\n", + " 'title': '2012-04 Halberstadt Bahnübergang Straßenbahn % Eisenbahn in der Klusstraße.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:15,160 ↑\\xa0Halberstadt Oststraße 2 00:00:15,240 --> 00:00:59,880 ↗\\xa0Halberstadt Oststraße ↖\\xa0Klusstraße ↘\\xa0Herbingstraße 3...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:15,160\\n↑\\xa0Halberstadt Oststraße\\n\\n2\\n00:00:15,240 --> 00:00:59,880\\n↗\\xa0Halberstadt Oststraße\\n↖\\xa0Klusstraße\\n↘\\xa0Herbingstraße\\n\\n3\\n00:01:03,720 --> 00:01:40,280\\n↑\\xa0Herbingstraße',\n", + " 'bytes': 210,\n", + " 'sha1': 'r7rr1pb9bxcuq8eepstyp0o13xweuha',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94133885,\n", + " 'timestamp': '2013-04-07T15:34:49Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25247532,\n", + " 'title': 'Sextortionagent interview.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'WhisperToMe moved page [[File talk:Sextortionagent interview.ogg/French]] to [[TimedText:Sextortionagent interview.ogg.fr.srt]]',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,400\\nSextorsion est ce qui est communément appelé\\n\\n2\\n00:00:04,600 --> 00:00:07,400\\nune situation où des personnes sont victimes,\\n\\n3\\n00:00:07,600 --> 00:00:09,400\\nils sont victimes d\\'extorsion;\\n\\n4\\n00:00:09,600 --> 00:00:12,400\\nc\\'est ce que nous appelons communément extorsion, mais\\n\\n5\\n00:00:012,600 --> 00:00:18,400\\nle but ultime pour les extorqueurs est\\n\\n6\\n00:00:18,600 --> 00:00:23,400\\nlié à une activité sexuelle. Que ce soit\\n\\n7\\n00:00:023,600 --> 00:00:26,400\\nphotos ou vidéos ou autre, \\n\\n8\\n00:00:26,600 --> 00:00:29,400\\nmais c\\'est généralement quelque chose qui est sexuel.\\n\\n9\\n00:00:29,600 --> 00:00:33,400\\nPar example je vous fais chanter pour quelque chose de nature sexuelle.\\n\\n10\\n00:00:33,600 --> 00:00:37,400\\nLes enfants ont tendance à être moins prudents\\n\\n11\\n00:00:37,600 --> 00:00:40,400\\net plus confiants des personnes sur Internet.\\n\\n12\\n00:00:40,600 --> 00:00:44,400\\nIls assimilent beaucoup d\\'autres gens en ligne comme s\\'ile etaient comme eux-mêmes,\\n\\n13\\n00:00:044,600 --> 00:00:47,400\\nqui auraient environ le même âge. Donc,\\n\\n14\\n00:00:47,600 --> 00:00:49,900\\nils n\\'ont pas peur des dangers potentiels.\\n\\n15\\n00:00:50,100 --> 00:00:53,400\\nSouvent il y a des individus qui créent une amitié avec des enfants.\\n\\n16\\n00:00:53,600 --> 00:00:56,400\\nLes enfants pensent qu\\'ils discutent avec d\\'autres enfants.\\n\\n17\\n00:00:56,600 --> 00:01:01,400\\nEt souvent ces enfants sont persuadés d\\'envoyer des photos d\\'eux-mêmes \\n\\n18\\n00:01:01,600 --> 00:01:05,400\\nà quelqu\\'un d\\'autre qu\\'ils croient être du même âge.\\n\\n19\\n00:01:05,600 --> 00:01:09,400\\nEt une fois que ces personnes ont ces photos, alors, ils veulent d\\'autres photos. \\n\\n20\\n00:01:09,600 --> 00:01:14,400\\nC\\'est ce qu\\'ils utilisent dans la poursuite de leurs activités criminelles.\\n\\n21\\n00:01:14,600 --> 00:01:17,400\\nUne fois qu\\'ils ont ces photos, alors ils sont en mesure de dire\\n\\n22\\n00:01:17,600 --> 00:01:20,400\\nà la victime ou à l\\'enfant,\\n\\n23\\n00:01:20,600 --> 00:01:24,400\\n“Je veux plus,” ou, “Je veux que tu fasses x, y, et z.\\n\\n24\\n00:01:24,600 --> 00:01:28,400\\nEt si tu ne le fais pas je vais prendre ces photos et je vais\\n\\n25\\n00:01:28,600 --> 00:01:32,400\\nles envoyer à tes camarades de classe. Je vais les envoyer à ta famille.”\\n\\n26\\n00:01:32,600 --> 00:01:36,400\\nEt souvent, les enfants sont gênés,\\n\\n27\\n00:01:36,600 --> 00:01:42,400\\nen particulier, ils pensent qu\\'ils ont en quelque sorte contribué à leur victimisation.\\n\\n28\\n00:01:42,600 --> 00:01:46,400\\nDonc, craignant qu\\'ils auront des ennuis s\\'ils le signalent,\\n\\n29\\n00:01:46,600 --> 00:01:51,400\\nils continuent la victimisation et envoyent aux individus ce qu\\'ils demandent.\\n\\n30\\n00:01:51,600 --> 00:01:55,400\\nIl arrive souvent que, la victimisation ne s\\'arrête jamais.\\n\\n31\\n00:01:55,600 --> 00:02:01,400\\nNous avons vu des situations où les criminels\\n\\n32\\n00:02:01,600 --> 00:02:07,400\\ncréent réellement des sites web et envoyent en effet des hyperliens à des amis \\n\\n33\\n00:02:07,600 --> 00:02:11,400\\net à des membres de la familles, demontrant à nouveau un\\n\\n34\\n00:02:11,600 --> 00:02:14,400\\nsentiment de domination certaine sur la victime, pour dire,\\n\\n35\\n00:02:14,600 --> 00:02:19,400\\n“Je te tiens, avec ceci, et si tu ne continues pas à faire ce que je dis, \\n\\n36\\n00:02:19,600 --> 00:02:22,400\\nvoila les choses que je peux faire.”\\n\\n37\\n00:02:22,600 --> 00:02:27,400\\nIls sont passés maîtres dans l\\'exploitation de personnes vulnérables.\\n\\n38\\n00:02:27,600 --> 00:02:30,400\\nIls peuvent convaincre quelqu\\'un d\\'ouvrir une pièce jointe.\\n\\n39\\n00:02:30,600 --> 00:02:34,400\\nUne des méthodes communes était qu\\'ils envoyait une photo d\\'une fille.\\n\\n40\\n00:02:34,600 --> 00:02:37,400\\nEt elle portait un soutien-gorge et culottes. Et\\n\\n41\\n00:02:37,600 --> 00:02:40,400\\nelle avait ses cheveux masquant son visage et on ne pouvait pas voir à quoi elle ressemblait.\\n\\n42\\n00:02:40,600 --> 00:02:43,400\\nEt ils disaient quelque chose comme,\\n\\n43\\n00:02:43,600 --> 00:02:47,400\\n“J\\'ai vu cette photo de toi sur un site web. Si ce n\\'est pas toi, ignore simplement.” \\n\\n44\\n00:02:47,600 --> 00:02:51,400\\nAlors, ce que beaucoup de ces victimes n\\'ont pas compris c\\'est\\n\\n45\\n00:02:51,600 --> 00:02:55,400\\nil y avait un un cheval de Troie intégré dans l\\'image.\\n\\n46\\n00:02:55,600 --> 00:02:58,400\\nTous les enfants ouvraient l\\'image. Les enfants sont curieux par nature.\\n\\n47\\n00:02:58,600 --> 00:03:03,400\\nEt ils ne se rendent pas compte que quelque chose pourrait être intégrée dans cette image qu\\'ils regardent.\\n\\n48\\n00:03:03,600 --> 00:03:07,400\\nUne fois que Connolly [un sextortioniste] et Dickerson [un autre sextortioniste] ont eu accès à leur ordinateur,\\n\\n49\\n00:03:37,600 --> 00:03:09,400\\nils faisaient une ou deux choses.\\n\\n50\\n00:03:09,600 --> 00:03:12,400\\nSouvent tout simplement ils observent.\\n\\n51\\n00:03:12,600 --> 00:03:15,400\\nCar ils ont obtenu la possibilité d\\'activer leur webcam.\\n\\n52\\n00:03:15,600 --> 00:03:19,400\\nAlors ils verraient ces victimes s\\'habiller et se déshabiller\\n\\n53\\n00:03:19,600 --> 00:03:22,400\\net faire d\\'autres choses. Et ils enregistraient ces actes.\\n\\n54\\n00:03:22,600 --> 00:03:26,400\\nEt certaines fois ils auraient des enregistrement d\\'enfants faisant certaines choses our se changeant.\\n\\n55\\n00:03:26,600 --> 00:03:31,400\\nParfois ils montrent ces vidéos ou ces photos dans la poursuite de l\\'exploitation.\\n\\n56\\n00:03:31,600 --> 00:03:36,400\\nAussi, une fois qu\\'ils avaient accès à leurs listes de contacts, ils peuvent dire,\\n\\n57\\n00:03:36,600 --> 00:03:41,400\\n“Si tu ne prends pas de photos de toi-même, ou si tu ne fais pas des films de toi-même, \\n\\n58\\n00:03:41,600 --> 00:03:45,400\\nJ\\'ai vue que tu as une adresse e-mail de ta grand-mère.\\n\\n59\\n00:03:45,600 --> 00:03:48,400\\nEt bien, je vais monter ce petit spectacle pour ta grand-mère, et\\n\\n60\\n00:03:48,600 --> 00:03:51,400\\nje suis persuadé qu\\'elle ne serait pas très fière de la façon dont tu agis, tu sais.”\\n\\n61\\n00:03:51,600 --> 00:03:54,400\\nEt beaucoup de ces enfants le feraient.\\n\\n62\\n00:03:54,600 --> 00:03:58,400\\nAujourd\\'hui, il y a tellement d\\'autres logiciels malveillants\\n\\n63\\n00:03:58,600 --> 00:04:02,400\\nil y a beaucoup d\\'autres logiciels malveillants sur Internet, et \\n\\n64\\n00:04:02,600 --> 00:04:05,400\\ntant d\\'autres programmes qui permettent aux gens d\\'accéder à votre ordinateur,\\n\\n65\\n00:04:05,600 --> 00:04:10,400\\nvous ne pouvez plus être trop prudent. Une des choses,\\n\\n66\\n00:04:10,600 --> 00:04:13,400\\nparticulièrement quand on parle aux parents, est\\n\\n66\\n00:04:13,600 --> 00:04:16,400\\nque vous devez avoir un dialogue ouvert avec vos enfants.\\n\\n67\\n00:04:16,600 --> 00:04:20,400\\nVous devez parler à vos enfants à ce sujet.\\n\\n68\\n00:04:20,600 --> 00:04:23,400\\n\"Tu ne peux pas être trop prudent. Tu ne peux vraiment pas faire confiance…\\n\\n69\\n00:04:23,600 --> 00:04:25,400\\ntu dois être prudent avec qui tu communiques.\\n\\n70\\n00:04:25,600 --> 00:04:29,400\\nSois toujours prudent.\" Premièrement.\\n\\n71\\n00:04:29,600 --> 00:04:32,400\\nDeuxiemement: les enfants ont besoin d\\'être en mesure de parler aux parents\\n\\n72\\n00:04:32,600 --> 00:04:35,400\\net les parents ont besoin d\\'être en mesure de parler aux enfants.\\n\\n73\\n00:04:35,600 --> 00:04:38,400\\n\"Si tu ne sais pas de qui vient quelque chose, ne l\\'ouvres pas.\\n\\n74\\n00:04:38,600 --> 00:04:43,400\\nMéfies-toi des pièces jointes.\"\\n\\n75\\n00:04:43,600 --> 00:04:47,400\\nEt, finalement,\\n\\n76\\n00:04:47,600 --> 00:04:50,400\\n\"Si quelque chose arrive, si tu as été victime,\\n\\n77\\n00:04:50,600 --> 00:04:55,400\\ndis le à quelqu\\'un, dis le à tes parents. Dis le à un adulte. Dis le à un enseignant.\"\\n\\n78\\n00:04:55,600 --> 00:05:00,400\\nMême si vous êtes un adulte et vous êtes victime, n\\'ayez pas peur d\\'appeler la police.\\n\\n79\\n00:05:00,600 --> 00:05:06,400\\nDickerson avait - il avait environ 230 gigaoctets de documents.\\n\\n80\\n00:05:06,600 --> 00:05:09,400\\nEt pour l\\'époque, c\\'était énorme.\\n\\n81\\n00:05:09,600 --> 00:05:15,400\\nConnolly avait près d\\'un téraoctet de documents.\\n\\n82\\n00:05:15,600 --> 00:05:21,400\\nEt le pire c\\'est que, beaucoup de ces enfants sont juste un dossier quelque part.\\n\\n83\\n00:05:21,600 --> 00:05:24,400\\nIls étaient un dossier sur un ordinateur.\\n\\n84\\n00:05:24,600 --> 00:05:30,400\\nSans nom. Sans nom d\\'utilisateur. Seulement des images et vidéos, dans un dossier. \\n\\n85\\n00:05:30,600 --> 00:05:34,400\\nEt une partie de ce que je crois être ma responsabilité, c\\'est\\n\\n86\\n00:05:34,600 --> 00:05:37,400\\nde parler à qui que ce soit qui est prêt à écouter\\n\\n87\\n00:05:37,600 --> 00:05:41,400\\nparce que je sais qu\\'il y a quelque part plus de victimes qui se demandent, \\n\\n88\\n00:05:41,600 --> 00:05:44,400\\n“Je me demande ce qui est arrivé à ces gars-là?” ou, “Dois-je encore avoir peur?”\\n\\n89\\n00:05:44,600 --> 00:05:47,400\\nSi vous connaissez quelqu\\'un qui est, ou vous-même êtes dans une situation similaire,\\n\\n90\\n00:05:47,600 --> 00:05:51,400\\nou si vous êtes un parent, parlez de ce sujet à vos enfants.',\n", + " 'bytes': 8835,\n", + " 'sha1': '6bhg0x3fu96i3l1fyf1mdu113g2cutq',\n", + " 'parent_id': 94123582,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93192155,\n", + " 'timestamp': '2013-03-24T12:41:26Z',\n", + " 'user': {'id': 293, 'text': 'Raymond'},\n", + " 'page': {'id': 25255505,\n", + " 'title': 'Verlegung Stolperstein Historisches Rathaus Köln.WebM.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'en text',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nLaying a \"Stolperstein\" in the pavement in front of the historic town hall of Cologne by Gunter Demnig.',\n", + " 'bytes': 135,\n", + " 'sha1': 'sje7segj1ib975coku76zcts042rj2u',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93236285,\n", + " 'timestamp': '2013-03-25T07:33:38Z',\n", + " 'user': {'id': 2333435, 'text': 'Ace Frahm~commonswiki'},\n", + " 'page': {'id': 25266100,\n", + " 'title': 'Pie In The Sky.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Trying to put every code on one line, to make captions work in IE9 player',\n", + " 'text': \"1 00:00:00,000 --> 00:00:03,000 Long-haired preachers come out every night \\n\\n2 00:00:03,000 --> 00:00:07,000 Try to tell you what's wrong and what's right\\n\\n3 00:00:07,000 --> 00:00:11,000 But when asked how 'bout something to eat \\n\\n4 00:00:11,000 --> 00:00:15,000 They will answer in voices so sweet \\n\\n5 00:00:15,000 --> 00:00:19,000 You will eat, bye and bye\\n\\n6 00:00:19,000 --> 00:00:22,000 In that glorious land above the sky \\n\\n7 00:00:22,000 --> 00:00:26,000 Work and pray, live on hay \\n\\n8 00:00:26,000 --> 00:00:29,000 You'll get pie in the sky when you die \\n\\n9 00:00:29,000 --> 00:00:32,000 And the Starvation Army, they play \\n\\n10 00:00:32,000 --> 00:00:36,000 And they sing and they clap and they pray \\n\\n11 00:00:36,000 --> 00:00:39,000 Till they get all your coin on the drum \\n\\n12 00:00:39,000 --> 00:00:43,000 Then they tell you when you're on the bum \\n\\n13 00:00:43,000 --> 00:00:47,000 You will eat, bye and bye\\n\\n14 00:00:47,000 --> 00:00:50,000 In that glorious land above the sky \\n\\n15 00:00:50,000 --> 00:00:53,000 Work and pray, live on hay \\n\\n16 00:00:53,000 --> 00:00:57,000 You'll get pie in the sky when you die \\n\\n17 00:00:57,000 --> 00:01:00,000 Holy Rollers and Jumpers come out \\n\\n18 00:01:00,000 --> 00:01:04,000 And they holler, they jump and they shout \\n\\n19 00:01:04,000 --> 00:01:07,000 Give your money to Jesus, they say \\n\\n20 00:01:07,000 --> 00:01:11,000 He will cure all diseases today \\n\\n21 00:01:11,000 --> 00:01:15,000 You will eat, bye and bye\\n\\n22 00:01:15,000 --> 00:01:18,000 In that glorious land above the sky \\n\\n23 00:01:18,000 --> 00:01:20,000 Work and pray, live on hay \\n\\n24 00:01:20,000 --> 00:01:24,000 You'll get pie in the sky when you die \\n\\n25 00:01:24,000 --> 00:01:27,000 If you fight hard for children and wife\\n\\n26 00:01:27,000 --> 00:01:30,000 Try to get something good in this life \\n\\n27 00:01:30,000 --> 00:01:34,000 You're a sinner and bad man, they tell \\n\\n28 00:01:34,000 --> 00:01:37,000 When you die you will sure go to hell. \\n\\n29 00:01:37,000 --> 00:01:41,000 You will eat, bye and bye\\n\\n30 00:01:41,000 --> 00:01:44,000 In that glorious land above the sky \\n\\n31 00:01:44,000 --> 00:01:47,000 Work and pray, live on hay \\n\\n32 00:01:47,000 --> 00:01:51,000 You'll get pie in the sky when you die \\n\\n33 00:01:51,000 --> 00:01:54,000 Workingmen of all countries, unite \\n\\n34 00:01:54,000 --> 00:01:57,000 Side by side we for freedom will fight \\n\\n35 00:01:57,000 --> 00:02:00,000 When the world and its wealth we have gained \\n\\n36 00:02:00,000 --> 00:02:04,000 To the grafters we'll sing this refrain \\n\\n37 00:02:04,000 --> 00:02:07,000 You will eat, bye and bye \\n\\n38 00:02:07,000 --> 00:02:10,000 When you've learned how to cook and how to fry \\n\\n39 00:02:10,000 --> 00:02:13,000 Chop some wood, 'twill do you good \\n\\n40 00:02:13,000 --> 00:02:21,000 Then you'll eat in the sweet bye and bye\",\n", + " 'bytes': 2829,\n", + " 'sha1': '8q3rxyfn56gkob74j5tvq7qzlax5zqq',\n", + " 'parent_id': 93235862,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 113643954,\n", + " 'timestamp': '2014-01-11T12:31:48Z',\n", + " 'user': {'text': '60.225.169.74'},\n", + " 'page': {'id': 25285071,\n", + " 'title': 'M h set terminates cityrail.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\n\"Chime\"\\n\\n2\\n00:00:01,000 --> 00:00:03,000\\nThis train terminates here.\\n\\n3\\n00:00:03,000 --> 00:00:07,000\\nCould all passengers please alight from the train.\\n\\n4\\n00:00:07,500 --> 00:00:12,000\\nThis train terminates at CENTRAL.',\n", + " 'bytes': 251,\n", + " 'sha1': 'ra8vjfi4ujaddrm2ox60trnd0tew0x3',\n", + " 'parent_id': 93301801,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 570948708,\n", + " 'timestamp': '2021-06-24T00:15:54Z',\n", + " 'user': {'id': 285765, 'text': 'Michael Bednarek'},\n", + " 'page': {'id': 25295404,\n", + " 'title': 'Hino-Nacional-Brasil-instrumental-mec.ogg.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Revert to revision 373067397 dated 2019-11-03 09:04:58 by Jdx: rvv.',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,500\\nEspera o Brasil que todos cumprais com o vosso dever\\n\\n2\\n00:00:04,000 --> 00:00:07,500\\nEia! Avante, brasileiros! Sempre avante\\n\\n3\\n00:00:08,000 --> 00:00:11,500\\nGravai com buril nos pátrios anais do vosso poder\\n\\n4\\n00:00:12,000 --> 00:00:15,500\\nEia! Avante, brasileiros! Sempre avante\\n\\n5\\n00:00:16,000 --> 00:00:19,000\\nServi o Brasil sem esmorecer, com ânimo audaz\\n\\n5\\n00:00:19,500 --> 00:00:21,400\\nCumpri o dever na guerra e na paz\\n\\n6\\n00:00:21,800 --> 00:00:23,500\\nÀ sombra da lei, à brisa gentil\\n\\n7\\n00:00:24,000 --> 00:00:26,500\\nO lábaro erguei do belo Brasil\\n\\n8\\n00:00:26,800 --> 00:00:29,500\\nEia! sus, oh, sus!\\n\\n9\\n00:00:30,900 --> 00:00:38,800\\nOuviram do Ipiranga as margens plácidas,\\nDe um povo heroico o brado retumbante\\n\\n10\\n00:00:39,100 --> 00:00:47,500\\nE o sol da Liberdade, em raios fúlgidos,\\nBrilhou no céu da Pátria nesse instante.\\n\\n11\\n00:00:47,700 --> 00:00:55,000\\nSe o penhor dessa igualdade,\\nConseguimos conquistar com braço forte,\\n\\n12\\n00:00:55,500 --> 00:01:03,000\\nEm teu seio, ó Liberdade,\\nDesafia o nosso peito a própria morte!\\n\\n13\\n00:01:04,500 --> 00:01:07,000\\nÓ Pátria amada,\\nIdolatrada,\\nSalve! Salve!\\n\\n14\\n00:01:07,500 --> 00:01:15,000\\nBrasil, um sonho intenso, um raio vívido,\\nDe amor e de esperança à terra desce,\\n\\n15\\n00:01:15,500 --> 00:01:24,000\\nSe em teu formoso céu, risonho e límpido,\\nA imagem do Cruzeiro resplandece.\\n\\n16\\n00:01:24,500 --> 00:01:32,000\\nGigante pela própria natureza,\\nÉs belo, és forte, impávido colosso,\\n\\n17\\n00:01:32,500 --> 00:01:36,500\\nE o teu futuro espelha essa grandeza.\\n\\n18\\n00:01:37,000 --> 00:01:39,500\\nTerra adorada\\n\\n19\\n00:01:40,000 --> 00:01:43,500\\nEntre outras mil,\\nÉs tu, Brasil,\\nÓ Pátria amada!\\n\\n20\\n00:01:44,000 --> 00:01:46,000\\nDos filhos deste solo\\nÉs mãe gentil,\\n\\n21\\n00:01:46,800 --> 00:01:48,500\\nPátria amada,\\nBrasil!\\n\\n22\\n00:01:49,500 --> 00:01:57,500\\nDeitado eternamente em berço esplêndido,\\nAo som do mar e à luz do céu profundo,\\n\\n23\\n00:01:57,500 --> 00:02:05,500\\nFulguras, ó Brasil, florão da América,\\nIluminado ao sol do Novo Mundo!\\n\\n24\\n00:02:06,500 --> 00:02:14,500\\nDo que a terra mais garrida,\\nTeus risonhos, lindos campos têm mais flores,\\n\\n25\\n00:02:15,500 --> 00:02:22,500\\nNossos bosques têm mais vida,\\nNossa vida no teu seio mais amores.\\n\\n26\\n00:02:23,500 --> 00:02:27,500\\nÓ Pátria amada,\\nIdolatrada,\\nSalve! Salve!\\n\\n27\\n00:02:28,500 --> 00:02:35,500\\nBrasil, de amor eterno seja símbolo,\\nO lábaro que ostentas estrelado,\\n\\n28\\n00:02:36,500 --> 00:02:43,500\\nE diga o verde-louro dessa flâmula\\n- Paz no futuro e glória no passado.\\n\\n29\\n00:02:44,500 --> 00:02:52,500\\nMas se ergues da justiça a clava forte,\\nVerás que um filho teu não foge à luta,\\n\\n30\\n00:02:53,500 --> 00:02:55,500\\nNem teme, quem te adora, a própria morte.\\n\\n31\\n00:02:56,000 --> 00:02:58,500\\nTerra adorada\\n\\n32\\n00:02:59,000 --> 00:03:01,500\\nEntre outras mil,\\nÉs tu, Brasil,\\nÓ Pátria amada!\\n\\n33\\n00:03:02,000 --> 00:03:04,500\\nDos filhos deste solo,\\nÉs mãe gentil,\\n\\n34\\n00:03:05,000 --> 00:03:07,500\\nPátria amada,\\nBrasil!',\n", + " 'bytes': 3020,\n", + " 'sha1': 'mie8gh5k479ku0pfo43yakb3w7wye08',\n", + " 'parent_id': 570721706,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 126674434,\n", + " 'timestamp': '2014-06-15T08:20:16Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 25295608,\n", + " 'title': 'Hino Nacional Brasileiro Coral BDMG.ogg.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/177.179.214.139|177.179.214.139]] ([[User talk:177.179.214.139|talk]]) to last revision by Duplode',\n", + " 'text': '1\\n00:00:28,600 --> 00:00:35,900\\nOuviram do Ipiranga as margens plácidas,\\nDe um povo heroico o brado retumbante\\n\\n2\\n00:00:37,000 --> 00:00:43,600\\nE o sol da Liberdade, em raios fúlgidos,\\nBrilhou no céu da Pátria nesse instante.\\n\\n3\\n00:00:44,100 --> 00:00:51,600\\nSe o penhor dessa igualdade,\\nConseguimos conquistar com braço forte,\\n\\n4\\n00:00:52,200 --> 00:00:59,700\\nEm teu seio, ó Liberdade,\\nDesafia o nosso peito a própria morte!\\n\\n5\\n00:01:00,000 --> 00:01:04,200\\nÓ Pátria amada,\\nIdolatrada,\\nSalve! Salve!\\n\\n6\\n00:01:04,300 --> 00:01:11,600\\nBrasil, um sonho intenso, um raio vívido,\\nDe amor e de esperança à terra desce,\\n\\n7\\n00:01:12,100 --> 00:01:19,600\\nSe em teu formoso céu, risonho e límpido,\\nA imagem do Cruzeiro resplandece.\\n\\n8\\n00:01:20,400 --> 00:01:28,000\\nGigante pela própria natureza,\\nÉs belo, és forte, impávido colosso,\\n\\n9\\n00:01:28,400 --> 00:01:31,800\\nE o teu futuro espelha essa grandeza.\\n\\n10\\n00:01:32,000 --> 00:01:33,600\\nTerra adorada\\n\\n11\\n00:01:34,100 --> 00:01:37,600\\nEntre outras mil,\\nÉs tu, Brasil,\\nÓ Pátria amada!\\n\\n12\\n00:01:37,900 --> 00:01:40,800\\nDos filhos deste solo\\nÉs mãe gentil,\\n\\n13\\n00:01:41,100 --> 00:01:44,100\\nPátria amada,\\nBrasil!\\n\\n14\\n00:02:13,800 --> 00:02:21,300\\nDeitado eternamente em berço esplêndido,\\nAo som do mar e à luz do céu profundo,\\n\\n15\\n00:02:21,800 --> 00:02:29,400\\nFulguras, ó Brasil, florão da América,\\nIluminado ao sol do Novo Mundo!\\n\\n16\\n00:02:29,700 --> 00:02:37,600\\nDo que a terra mais garrida,\\nTeus risonhos, lindos campos têm mais flores,\\n\\n17\\n00:02:37,900 --> 00:02:45,500\\nNossos bosques têm mais vida,\\nNossa vida no teu seio mais amores.\\n\\n18\\n00:02:45,900 --> 00:02:49,900\\nÓ Pátria amada,\\nIdolatrada,\\nSalve! Salve!\\n\\n19\\n00:02:50,100 --> 00:02:57,500\\nBrasil, de amor eterno seja símbolo,\\nO lábaro que ostentas estrelado,\\n\\n20\\n00:02:58,100 --> 00:03:05,500\\nE diga o verde-louro dessa flâmula\\n- Paz no futuro e glória no passado.\\n\\n21\\n00:03:06,200 --> 00:03:14,000\\nMas se ergues da justiça a clava forte,\\nVerás que um filho teu não foge à luta,\\n\\n22\\n00:03:14,400 --> 00:03:17,900\\nNem teme, quem te adora, a própria morte.\\n\\n23\\n00:03:18,000 --> 00:03:19,800\\nTerra adorada\\n\\n24\\n00:03:20,000 --> 00:03:23,600\\nEntre outras mil,\\nÉs tu, Brasil,\\nÓ Pátria amada!\\n\\n25\\n00:03:23,800 --> 00:03:26,900\\nDos filhos deste solo,\\nÉs mãe gentil,\\n\\n26\\n00:03:27,100 --> 00:03:29,900\\nPátria amada,\\nBrasil!',\n", + " 'bytes': 2365,\n", + " 'sha1': 'gompsqb7d9ni4im67uf1tmwezjrtcgo',\n", + " 'parent_id': 126289400,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93349258,\n", + " 'timestamp': '2013-03-27T08:01:26Z',\n", + " 'user': {'text': '101.98.190.115'},\n", + " 'page': {'id': 25298778,\n", + " 'title': 'Açaí.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:24,400 Açaí.'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:24,400\\nAçaí.',\n", + " 'bytes': 39,\n", + " 'sha1': 'cntdntgoq72afzl0wqt5i53wfau6am6',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 276202139,\n", + " 'timestamp': '2018-01-02T20:35:08Z',\n", + " 'user': {'id': 1438826, 'text': 'Hazhk'},\n", + " 'page': {'id': 25300858,\n", + " 'title': 'God Defend New Zealand instrumental.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"The general practice is to avoid splitting up the text too much. The timings are now a little off, so I've reverted back.\",\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:06,000\\nGod of Nations, at thy feet;\\n\\n2\\n00:00:06,000 --> 00:00:13,000\\nin the bonds of love we meet.\\n\\n3\\n00:00:13,000 --> 00:00:20,000\\nHear our voices, we entreat.\\n\\n4\\n00:00:20,000 --> 00:00:26,000\\nGod defend our free land.\\n\\n5\\n00:00:26,000 --> 00:00:34,000\\nGuard Pacific's triple star,\\n\\n6\\n00:00:34,000 --> 00:00:41,000\\nfrom the shafts of strife and war.\\n\\n7\\n00:00:41,000 --> 00:00:50,000\\nMake her praises heard afar,\\n\\n8\\n00:00:50,000 --> 00:01:00,000\\nGod defend New Zealand!\",\n", + " 'bytes': 493,\n", + " 'sha1': '89dloi9g8ppuj8qni67gjeal42ripk0',\n", + " 'parent_id': 275776663,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93390194,\n", + " 'timestamp': '2013-03-27T16:42:45Z',\n", + " 'user': {'text': '177.192.59.70'},\n", + " 'page': {'id': 25308632,\n", + " 'title': 'Apollo13problem.ogg.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,000 --> 00:00:04,800 Ei, Houston, temos um problema aqui. 2 00:00:05,000 --> 00:00:8,800 Por favor, diga de novo. 3 00:00:09,000 --> 00:00:11,000 H...'\",\n", + " 'text': '1\\n00:00:01,000 --> 00:00:04,800\\nEi, Houston, temos um problema aqui.\\n\\n2\\n00:00:05,000 --> 00:00:8,800\\nPor favor, diga de novo.\\n\\n3\\n00:00:09,000 --> 00:00:11,000\\nHouston, temos um problema.',\n", + " 'bytes': 186,\n", + " 'sha1': 'hzbzkp3cxdzfxud549gifted4jpd1ot',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93454274,\n", + " 'timestamp': '2013-03-28T16:09:08Z',\n", + " 'user': {'text': '81.167.120.183'},\n", + " 'page': {'id': 25327718,\n", + " 'title': 'Pronunciation of the swedish word lagom.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,001 --> 00:00:02,000\\nLagom.\\n\\n2\\n00:00:02,001 --> 00:00:06,000\\nThe temperature is lagom.',\n", + " 'bytes': 97,\n", + " 'sha1': 'il7dx8y7wcm464fswzbmboo8qxtwr1i',\n", + " 'parent_id': 93454190,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93482390,\n", + " 'timestamp': '2013-03-28T21:55:46Z',\n", + " 'user': {'id': 234501, 'text': 'Sporti'},\n", + " 'page': {'id': 25334739,\n", + " 'title': 'Ukaz!.webm.hr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:03,500 --> 00:00:07,700 Molim sve one koji sujeluju u javnom okupljanju ,a nisu prijavljeni 1 00:00:08,200 --> 00:00:12,500 da prestanu narušavati ja...'\",\n", + " 'text': '0\\n00:00:03,500 --> 00:00:07,700\\nMolim sve one koji sujeluju u javnom okupljanju ,a nisu prijavljeni \\n\\n1\\n00:00:08,200 --> 00:00:12,500\\nda prestanu narušavati javni red i mir.\\n\\n2\\n00:00:14,200 --> 00:00:16,000\\nNaređujem vam,\\n\\n3\\n00:00:16,300 --> 00:00:20,500\\nda prestanete narušavati javni red i mir.\\n\\n4\\n00:00:21,000 --> 00:00:24,500\\n(Možemo reći što hoćemo do 10)\\n\\n5\\n00:00:26,000 --> 00:00:27,500\\n(Tko nije registriran?)\\n\\n6\\n00:00:29,800 --> 00:00:32,100\\n(Hoćete koristiti opet suzavce ?)\\n\\n7\\n00:00:34,000 --> 00:00:36,500\\n(napravite to ponovno danas, kao što ste i jučer )\\n\\n8\\n00:00:38,000 --> 00:00:40,000\\n(ne možete biti takvi ignoranti (budale))\\n\\n9\\n00:00:43,400 --> 00:00:48,199\\nNaređujem vam da prestanete narušavati javni red i mir!\\n\\n10\\n00:00:48,500 --> 00:00:53,200\\nAko ne prestanete, morati ćemo poduzeti prisilne drastične mjere.\\n\\n11\\n00:01:06,000 --> 00:01:08,400\\nVi ste na našoj strani!\\n\\n12\\n00:01:15,000 --> 00:01:16,800\\n(Mi smo u miru.)\\n\\n13\\n00:01:21,000 --> 00:01:22,400\\nDosta nam je!\\n\\n14\\n00:01:22,800 --> 00:01:24,000\\nVlade!\\n\\n15\\n00:01:25,500 --> 00:01:27,600\\nPolicajci,vi ste dobri!\\n\\n16\\n00:01:29,200 --> 00:01:31,300\\nDosta nam je naše Vlade!\\n\\n17\\n00:01:33,500 --> 00:01:35,500\\nJa sam isto državni službenik!\\n\\n18\\n00:01:36,200 --> 00:01:37,800\\nDržimo se zajedno!\\n\\n19\\n00:01:38,200 --> 00:01:39,800\\nNemojte se boriti protiv nas!\\n\\n20\\n00:01:41,000 --> 00:01:42,800\\nSjebali su našu zemlju!\\n\\n21\\n00:01:45,000 --> 00:01:50,200\\nNaređujem vam ponovno da prestanete narušavati javni red i mir!\\n\\n22\\n00:01:57,000 --> 00:02:05,200\\nAko ne prestenete narušavati javni red i mir,\\nmorati ćemo poduzeti prisilne drastične mjere�',\n", + " 'bytes': 1640,\n", + " 'sha1': '0rc2g9whyq4d40dzn4gh7rcbzpwlm2i',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93482394,\n", + " 'timestamp': '2013-03-28T21:55:49Z',\n", + " 'user': {'id': 234501, 'text': 'Sporti'},\n", + " 'page': {'id': 25334743,\n", + " 'title': 'Ukaz!.webm.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:03,500 --> 00:00:07,700 Vyzývám všechny účastníky nepovoleného shromáždění, 1 00:00:08,200 --> 00:00:12,500 aby zanechali rušení veřejné...'\",\n", + " 'text': '0\\n00:00:03,500 --> 00:00:07,700\\nVyzývám všechny účastníky nepovoleného shromáždění,\\n\\n1\\n00:00:08,200 --> 00:00:12,500\\naby zanechali rušení veřejného pořádku a klidu.\\n\\n2\\n00:00:14,200 --> 00:00:16,000\\nRozkazuji vám, \\n\\n3\\n00:00:16,300 --> 00:00:20,500\\nabyste přestali s rušením veřejného pořádku a klidu.\\n\\n4\\n00:00:21,000 --> 00:00:24,500\\n(do deseti hodin můžem dávat najevo své mínění!)\\n\\n5\\n00:00:26,000 --> 00:00:27,500\\n(jak není přihlášený?)\\n\\n6\\n00:00:29,800 --> 00:00:32,100\\n(to do nás zas vypustíte slzák?)\\n\\n7\\n00:00:34,000 --> 00:00:36,500\\n(udělejte to ještě dneska..., včera to bylo to samé)\\n\\n8\\n00:00:38,000 --> 00:00:40,000\\n(nemůžete být takoví ignoranti)\\n\\n9\\n00:00:43,400 --> 00:00:48,199\\nRozkazuji vám, abyste přestali s rušením veřejného pořádku a klidu!\\n\\n10\\n00:00:48,500 --> 00:00:53,200\\nV opačném případě budou použity donucovací prostředky!\\n\\n11\\n00:01:06,000 --> 00:01:08,400\\nVšak vy jste též na naší straně!\\n\\n12\\n00:01:15,000 --> 00:01:16,800\\n(klidně stojíme)\\n\\n13\\n00:01:21,000 --> 00:01:22,400\\nMáme vás dost!\\n\\n14\\n00:01:22,800 --> 00:01:24,000\\nVlády!\\n\\n15\\n00:01:25,500 --> 00:01:27,600\\nPolicajti jste v pohodě!\\n\\n16\\n00:01:29,200 --> 00:01:31,300\\nDost vás máme vlády!\\n\\n17\\n00:01:33,500 --> 00:01:35,500\\nJá jsem taky veřejný sektor!\\n\\n18\\n00:01:36,200 --> 00:01:37,800\\nBudem držet s policajtama! \\n\\n19\\n00:01:38,200 --> 00:01:39,800\\nNe bojujte proti nám!\\n\\n20\\n00:01:41,000 --> 00:01:42,800\\nZkurvili nám stát!\\n\\n21\\n00:01:45,000 --> 00:01:50,200\\nZnova rozkazuji, abyste přestali s rušením veřejného pořádku a klidu!\\n\\n22\\n00:01:57,000 --> 00:02:05,200\\nJestliže nepřestanete s rušením veřejného pořádku a klidu, \\nbudou použity donucovací prostředky�',\n", + " 'bytes': 1742,\n", + " 'sha1': 'cmee0b69oe063czwigmbhyz5cf8ma58',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93482396,\n", + " 'timestamp': '2013-03-28T21:55:51Z',\n", + " 'user': {'id': 234501, 'text': 'Sporti'},\n", + " 'page': {'id': 25334744,\n", + " 'title': 'Ukaz!.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:03,500 --> 00:00:07,700 I urge all participants of the public meeting - which is not registered 1 00:00:08,200 --> 00:00:12,500 to stop violating publi...'\",\n", + " 'text': '0\\n00:00:03,500 --> 00:00:07,700\\nI urge all participants of the public meeting - which is not registered\\n\\n1\\n00:00:08,200 --> 00:00:12,500\\nto stop violating public peace and order!\\n\\n2\\n00:00:14,200 --> 00:00:16,000\\nI order you, \\n\\n3\\n00:00:16,300 --> 00:00:20,500\\nto stop violating public peace and order.\\n\\n4\\n00:00:21,000 --> 00:00:24,500\\n(we can express our opinion after 10pm)\\n\\n5\\n00:00:26,000 --> 00:00:27,500\\n(who’s not registered?)\\n\\n6\\n00:00:29,800 --> 00:00:32,100\\n(Will you use tear gas again?)\\n\\n7\\n00:00:34,000 --> 00:00:36,500\\n(do it again today, like you did yesterday)\\n\\n8\\n00:00:38,000 --> 00:00:40,000\\n(you can’t be so ignorant)\\n\\n9\\n00:00:43,400 --> 00:00:48,199\\nI order you to stop violating public peace and order! \\n\\n10\\n00:00:48,500 --> 00:00:53,200\\nIf you don’t stop, coercive measures will be used!\\n\\n11\\n00:01:06,000 --> 00:01:08,400\\nYou are on our side!\\n\\n12\\n00:01:15,000 --> 00:01:16,800\\n(We stand in peace)\\n\\n13\\n00:01:21,000 --> 00:01:22,400\\nWe have enough!\\n\\n14\\n00:01:22,800 --> 00:01:24,000\\nOf government!\\n\\n15\\n00:01:25,500 --> 00:01:27,600\\nCops you are good!\\n\\n16\\n00:01:29,200 --> 00:01:31,300\\nWe have enough of our government!\\n\\n17\\n00:01:33,500 --> 00:01:35,500\\nI am also public serveant!\\n\\n18\\n00:01:36,200 --> 00:01:37,800\\nLet’s stick with the police! \\n\\n19\\n00:01:38,200 --> 00:01:39,800\\nDon’t fight against us!\\n\\n20\\n00:01:41,000 --> 00:01:42,800\\nThey fucked up our country!\\n\\n21\\n00:01:45,000 --> 00:01:50,200\\nI order again to stop violating public peace and order! \\n\\n22\\n00:01:57,000 --> 00:02:05,200\\nIf you don’t stop violating public peace and order, \\ncoercive measures will be used!',\n", + " 'bytes': 1600,\n", + " 'sha1': 'oxkcp28asi7fx6g081zcd25gfoo5cwf',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93482398,\n", + " 'timestamp': '2013-03-28T21:55:53Z',\n", + " 'user': {'id': 234501, 'text': 'Sporti'},\n", + " 'page': {'id': 25334745,\n", + " 'title': 'Ukaz!.webm.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:03,500 --> 00:00:07,700 Καλώ όλους τους συμμετέχοντες της δημόσιας συνάντησης - η οποία δεν έχ...'\",\n", + " 'text': '0\\n00:00:03,500 --> 00:00:07,700\\nΚαλώ όλους τους συμμετέχοντες της δημόσιας συνάντησης - η οποία δεν έχει καταχωρηθεί\\n\\n1\\n00:00:08,200 --> 00:00:12,500\\nνα σταματήσετε να παραβιάζετε την δημόσια ειρήνη και ευταξία!\\n\\n2\\n00:00:14,200 --> 00:00:16,000\\nΣας διατάζω,\\n\\n3\\n00:00:16,300 --> 00:00:20,500\\nνα σταματήσετε να παραβιάζετε την δημόσια ειρήνη και ευταξία\\n\\n4\\n00:00:21,000 --> 00:00:24,500\\n(μπορούμε να εκφράσουμε τη γνώμη μας μετά τις 22:00)\\n\\n5\\n00:00:26,000 --> 00:00:27,500\\n(Ποιος δεν είναι εγγεγραμμένος?)\\n\\n6\\n00:00:29,800 --> 00:00:32,100\\n(Θα κάνετε χρήση δακρυγόνων και πάλι?)\\n\\n7\\n00:00:34,000 --> 00:00:36,500\\n(κάντε το και πάλι σήμερα, όπως κάνατε χθες)\\n\\n8\\n00:00:38,000 --> 00:00:40,000\\n(δεν μπορείτε να είστε τόσο αδαείς)\\n\\n9\\n00:00:43,400 --> 00:00:48,199\\nΣας διατάζω να σταματήσετε να παραβιάζετε την δημόσια ειρήνη και ευταξία!\\n\\n10\\n00:00:48,500 --> 00:00:53,200\\nΑν δεν σταματήσετε, αναγκαστικά μέτρα θα χρησιμοποιηθούν!\\n\\n11\\n00:01:06,000 --> 00:01:08,400\\n(Είστε στο πλευρό μας!)\\n\\n12\\n00:01:15,000 --> 00:01:16,800\\n(Βρισκόμαστε εδώ ειρηνικά)\\n\\n13\\n00:01:21,000 --> 00:01:22,400\\nΑνεχτήκαμε αρκετά!\\n\\n14\\n00:01:22,800 --> 00:01:24,000\\nΑπό την Κυβέρνηση\\n\\n15\\n00:01:25,500 --> 00:01:27,600\\nΜπάτσοι είσαστε καλοί\\n\\n16\\n00:01:29,200 --> 00:01:31,300\\nΑνεχτήκαμε αρκετά από την κυβέρνηση!\\n\\n17\\n00:01:33,500 --> 00:01:35,500\\nείμαι και εγώ δημόσιος υπάλληλος!\\n\\n18\\n00:01:36,200 --> 00:01:37,800\\nΑς κάτσουμε μαζί με την αστυνομία!\\n\\n19\\n00:01:38,200 --> 00:01:39,800\\nΜην πολεμάτε εναντίον μας!\\n\\n20\\n00:01:41,000 --> 00:01:42,800\\nΠηδήξαν την χώρα μας!\\n\\n21\\n00:01:45,000 --> 00:01:50,200\\nΣας διατάζω ξανά να σταματήσετε να παραβιάζετε την δημόσια ειρήνη και ευταξία!\\n\\n22\\n00:01:57,000 --> 00:02:05,200\\nΑν δεν σταματήσετε τις παραβιάσεις της δημόσιας ειρήνης και της τάξης,\\nαναγκαστικά μέτρα θα χρησιμοποιηθούν�',\n", + " 'bytes': 2608,\n", + " 'sha1': '6fhgnqf84mgvikva1ts14cmrsn6h9da',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93482399,\n", + " 'timestamp': '2013-03-28T21:55:55Z',\n", + " 'user': {'id': 234501, 'text': 'Sporti'},\n", + " 'page': {'id': 25334746,\n", + " 'title': 'Ukaz!.webm.iw.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:03,500 --> 00:00:07,700 אני קורא לכל המשתתפים במפגש הציבורי - שאינם רשומים 1 00:00:08,200 --> 00:00:12,500 ל...'\",\n", + " 'text': '0\\n00:00:03,500 --> 00:00:07,700\\nאני קורא לכל המשתתפים במפגש הציבורי - שאינם רשומים\\n\\n1\\n00:00:08,200 --> 00:00:12,500\\nלהפסיק להפר את שלום וסדר ציבורי!\\n\\n2\\n00:00:14,200 --> 00:00:16,000\\nאני מצווה עליך\\n\\n3\\n00:00:16,300 --> 00:00:20,500\\nלהפסיק להפר את שלום וסדר ציבורי.\\n\\n4\\n00:00:21,000 --> 00:00:24,500\\n(אנחנו יכולים להביע את דעתנו לאחר 22:00)\\n\\n5\\n00:00:26,000 --> 00:00:27,500\\n(מי שלא נרשם?)\\n\\n6\\n00:00:29,800 --> 00:00:32,100\\n(האם אתה משתמש בגז מדמיע שוב?)\\n\\n7\\n00:00:34,000 --> 00:00:36,500\\n(תעשה את זה שוב היום, כמו שעשית אתמול)\\n\\n8\\n00:00:38,000 --> 00:00:40,000\\n(אתה לא יכול להיות כל כך בורה)\\n\\n9\\n00:00:43,400 --> 00:00:48,199\\nאני מצווה עליך להפסיק להפר את שלום וסדר ציבורי!\\n\\n10\\n00:00:48,500 --> 00:00:53,200\\nאם לא תפסיק,יהיה שימוש באמצעי כפייה !\\n\\n11\\n00:01:06,000 --> 00:01:08,400\\nאתה נמצא בצד שלנו!\\n\\n12\\n00:01:15,000 --> 00:01:16,800\\n(אנחנו עומדים בשלום)\\n\\n13\\n00:01:21,000 --> 00:01:22,400\\nהספיק לנו!\\n\\n14\\n00:01:22,800 --> 00:01:24,000\\nמהממשלה!\\n\\n15\\n00:01:25,500 --> 00:01:27,600\\nשוטרים אתם טובים!\\n\\n16\\n00:01:29,200 --> 00:01:31,300\\nהספיק לנו מהממשלה שלנו!\\n\\n17\\n00:01:33,500 --> 00:01:35,500\\nגם אני משרת את הציבור!\\n\\n18\\n00:01:36,200 --> 00:01:37,800\\nבואו נצמד להערכות המשטרה!\\n\\n19\\n00:01:38,200 --> 00:01:39,800\\nאל תילחמו נגדנו!\\n\\n20\\n00:01:41,000 --> 00:01:42,800\\nהם דפקו את המדינה שלנו!\\n\\n21\\n00:01:45,000 --> 00:01:50,200\\nאני מזמין שוב להפסיק להפר את שלום וסדר ציבורי!\\n\\n22\\n00:01:57,000 --> 00:02:05,200\\nאם לא תפסיקו להפר את שלום וסדר ציבורי,\\nיהיה שימוש באמצעי כפייה�',\n", + " 'bytes': 1964,\n", + " 'sha1': 's69xadrzlk6iglogfx14slb82h5c4it',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93482401,\n", + " 'timestamp': '2013-03-28T21:55:58Z',\n", + " 'user': {'id': 234501, 'text': 'Sporti'},\n", + " 'page': {'id': 25334748,\n", + " 'title': 'Ukaz!.webm.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:03,500 --> 00:00:07,700 Invito tutti i participanti di questo comizio, chi non sono denunciati, 1 00:00:08,200 --> 00:00:12,500 per fermare trasgredir...'\",\n", + " 'text': \"0\\n00:00:03,500 --> 00:00:07,700\\nInvito tutti i participanti di questo comizio, \\nchi non sono denunciati,\\n\\n1\\n00:00:08,200 --> 00:00:12,500\\nper fermare trasgredire ordine pubblico e pace.\\n\\n2\\n00:00:14,200 --> 00:00:16,000\\nVi ordino\\n0:00:16.300,0:00:20.500\\nper fermare trasgredire ordine pubblico e pace.\\n\\n3\\n00:00:21,000 --> 00:00:24,500\\n(fino a dieci ora possiamo dire il nostro opinione!)\\n\\n4\\n00:00:26,000 --> 00:00:27,500\\n(come non e' denunciato?)\\n\\n5\\n00:00:29,800 --> 00:00:32,100\\n(buttate nuovamente il gas lakrimogeno a noi?)\\n\\n6\\n00:00:34,000 --> 00:00:36,500\\n(fate anche oggiÉ uguale come ieri)\\n\\n7\\n00:00:38,000 --> 00:00:40,000\\n(non potete essere cosi ignoranti)\\n\\n8\\n00:00:43,400 --> 00:00:48,199\\nVi ordino per fermare trasgredire ordine pubblico e pace!\\n\\n9\\n00:00:48,500 --> 00:00:53,200\\nSe no usiamo i mezzi coercitivi!\\n\\n10\\n00:01:06,000 --> 00:01:08,400\\nAnche voi siete a nostra parte!\\n\\n11\\n00:01:15,000 --> 00:01:16,800\\n(tranquillamente siamo in piedi)\\n\\n12\\n00:01:21,000 --> 00:01:22,400\\nSiamo stufi!\\n\\n13\\n00:01:22,800 --> 00:01:24,000\\nGoverno!\\n\\n14\\n00:01:25,500 --> 00:01:27,600\\nPolizziotti siete buoni!\\n\\n15\\n00:01:29,200 --> 00:01:31,300\\nSiamo stufi di governo!\\n\\n16\\n00:01:33,500 --> 00:01:35,500\\nAnch' io sono settore pubblico!\\n\\n17\\n00:01:36,200 --> 00:01:37,800\\nSiamo con polizziotti!\\n\\n18\\n00:01:38,200 --> 00:01:39,800\\nNon lottare contra noi!\\n\\n19\\n00:01:41,000 --> 00:01:42,800\\nAvete scopato il nostro stato!\\n\\n20\\n00:01:45,000 --> 00:01:50,200\\nVi ordino per fermare trasgredire ordine pubblico e pace!\\n\\n21\\n00:01:57,000 --> 00:02:05,200\\nSe non fermate, usiamo i mezzi coercitivi!\",\n", + " 'bytes': 1575,\n", + " 'sha1': 'rjcjhl1um56bnte90xs1sii06dbphxs',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93482404,\n", + " 'timestamp': '2013-03-28T21:56:00Z',\n", + " 'user': {'id': 234501, 'text': 'Sporti'},\n", + " 'page': {'id': 25334750,\n", + " 'title': 'Ukaz!.webm.mk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:03,500 --> 00:00:07,700 Ги повикувам сите учесници на собирот, кој не е пријавен, 1 00:00:08,200 --> 00:0...'\",\n", + " 'text': '0\\n00:00:03,500 --> 00:00:07,700\\nГи повикувам сите учесници на собирот, кој не е пријавен,\\n\\n1\\n00:00:08,200 --> 00:00:12,500\\nда престанат со кршењето на јавниот ред и мир.\\n\\n2\\n00:00:14,200 --> 00:00:16,000\\nВи наредувам,\\n\\n3\\n00:00:16,300 --> 00:00:20,500\\nда престанете со кршењето на јавниот ред и мир.\\n\\n4\\n00:00:21,000 --> 00:00:24,500\\n(до десет часот можеме да го изразуваме своето мислење!)\\n\\n5\\n00:00:26,000 --> 00:00:27,500\\n(како не е пријавен?)\\n\\n6\\n00:00:29,800 --> 00:00:32,100\\n(пак ли ќе фрлате солзавец по нас?)\\n\\n7\\n00:00:34,000 --> 00:00:36,500\\n(ајде и нас денес ..., вчера ионака исто направивте)\\n\\n8\\n00:00:38,000 --> 00:00:40,000\\n(не можете да бидете толку игнорантни)\\n\\n9\\n00:00:43,400 --> 00:00:48,199\\nВи наредувам да престанете со кршење на јавниот ред и мир!\\n\\n10\\n00:00:48,500 --> 00:00:53,200\\nВо спротивно ќе бидат употребени присилни средства!\\n\\n11\\n00:01:06,000 --> 00:01:08,400\\nИ вие сте на наша страна!\\n\\n12\\n00:01:15,000 --> 00:01:16,800\\n(мирно стоиме)\\n\\n13\\n00:01:21,000 --> 00:01:22,400\\nДоста ни е од вас!\\n\\n14\\n00:01:22,800 --> 00:01:24,000\\nВладата!\\n\\n15\\n00:01:25,500 --> 00:01:27,600\\nДобри сте полицајци!\\n\\n16\\n00:01:29,200 --> 00:01:31,300\\nДоста ни е од владата!\\n\\n17\\n00:01:33,500 --> 00:01:35,500\\nИ јас сум јавен сектор!\\n\\n18\\n00:01:36,200 --> 00:01:37,800\\nАјде со полицајците да бидеме!\\n\\n19\\n00:01:38,200 --> 00:01:39,800\\nНе борете се против нас!\\n\\n20\\n00:01:41,000 --> 00:01:42,800\\nНи ја поебаа државата!\\n\\n21\\n00:01:45,000 --> 00:01:50,200\\nПовторно ви наредувам, да престанете со кршење на јавниот ред и мир!\\n\\n22\\n00:01:57,000 --> 00:02:05,200\\nАко не престанете со кршење на јавниот ред и мир, ќе бидат употребени присилни средства�',\n", + " 'bytes': 2300,\n", + " 'sha1': '6dljgasujg6x0xtcwv5cy3aikq7py4h',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93482406,\n", + " 'timestamp': '2013-03-28T21:56:02Z',\n", + " 'user': {'id': 234501, 'text': 'Sporti'},\n", + " 'page': {'id': 25334751,\n", + " 'title': 'Ukaz!.webm.sl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:03,500 --> 00:00:07,700 Pozivam vse udeležence shoda, ki ni prijavljen, 1 00:00:08,200 --> 00:00:12,500 da prenehate s kršitvami javnega reda in miru...'\",\n", + " 'text': '0\\n00:00:03,500 --> 00:00:07,700\\nPozivam vse udeležence shoda, ki ni prijavljen,\\n\\n1\\n00:00:08,200 --> 00:00:12,500\\nda prenehate s kršitvami javnega reda in miru.\\n\\n2\\n00:00:14,200 --> 00:00:16,000\\nUkazujem Vam, \\n\\n3\\n00:00:16,300 --> 00:00:20,500\\nda prenehate s kršitvami javnega reda in miru.\\n\\n4\\n00:00:21,000 --> 00:00:24,500\\n(do desete ure lahko izražamo svoje mnenje!)\\n\\n5\\n00:00:26,000 --> 00:00:27,500\\n(kako ni prijavljen?)\\n\\n6\\n00:00:29,800 --> 00:00:32,100\\n(kaj boste spet solzilec zabrisali v nas?)\\n\\n7\\n00:00:34,000 --> 00:00:36,500\\n(dajte še nas danes …., saj ste včeraj isto)\\n\\n8\\n00:00:38,000 --> 00:00:40,000\\n(ne morte bit tko ignorantski)\\n\\n9\\n00:00:43,400 --> 00:00:48,199\\nUkazujem Vam, da prenehate s kršitvami javnega reda in miru! \\n\\n10\\n00:00:48,500 --> 00:00:53,200\\nV nasprotnem primeru bodo uporabljena prisilna sredstva!\\n\\n11\\n00:01:06,000 --> 00:01:08,400\\nTut vi ste na naši strani!\\n\\n12\\n00:01:15,000 --> 00:01:16,800\\n(mirno stojimo)\\n\\n13\\n00:01:21,000 --> 00:01:22,400\\nDost vas mamo!\\n\\n14\\n00:01:22,800 --> 00:01:24,000\\nVlade!\\n0:01:25.500,0:01:27.600\\nPolicaji dobri ste!\\n\\n15\\n00:01:29,200 --> 00:01:31,300\\nDost vas mamo vlade!\\n\\n16\\n00:01:33,500 --> 00:01:35,500\\nTudi jaz sem javni sektor!\\n\\n17\\n00:01:36,200 --> 00:01:37,800\\nDajmo s policaji držat! \\n\\n18\\n00:01:38,200 --> 00:01:39,800\\nNe se borit proti nam!\\n\\n19\\n00:01:41,000 --> 00:01:42,800\\nZjebal so nam državo!\\n\\n20\\n00:01:45,000 --> 00:01:50,200\\nPonovno ukazujem, da prenehate s kršitvami javnega reda in miru! \\n\\n21\\n00:01:57,000 --> 00:02:05,200\\nV kolikor ne boste prenehali s kršitvami javnega reda in miru, \\nbodo uporabljena prisilna sredstva!�',\n", + " 'bytes': 1608,\n", + " 'sha1': '5i5mfqr1780uzf1xd9xs4oh9tuqcr2y',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 629940141,\n", + " 'timestamp': '2022-02-15T09:35:09Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25340178,\n", + " 'title': 'Mazurek Dabrowskiego.ogg.fa.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,234\\nلهستان هنوز از دست نرفته است\\n\\n2\\n00:00:03,296 --> 00:00:06,000\\nتا زمانی که ما زنده ایم\\n\\n3\\n00:00:06,600 --> 00:00:09,793\\nآنگاه که بیگانه تصرفش کند\\n\\n4\\n00:00:09,843 --> 00:00:12,764\\nما باید با سر شمشیر پس بگیریم\\n\\n5\\n00:00:13,242 --> 00:00:16,548\\nبه پیش، به پیش، دوبرووسکی\\n\\n6\\n00:00:16,597 --> 00:00:19,500\\nاز ایتالیا به لهستان\\n\\n7\\n00:00:19,757 --> 00:00:23,243\\nبگذار اکنون به ملت بپیوندیم\\n\\n8\\n00:00:23,263 --> 00:00:26,225\\nتحت فرمان تو\\n\\n9\\n00:00:26,691 --> 00:00:29,986\\nبه پیش، به پیش، دوبرووسکی\\n\\n10\\n00:00:30,037 --> 00:00:33,460\\nاز ایتالیا به لهستان\\n\\n11\\n00:00:33,503 --> 00:00:36,891\\nبگذار اکنون به ملت بپیوندیم\\n\\n12\\n00:00:36,925 --> 00:00:40,278\\nتحت فرمان تو',\n", + " 'bytes': 909,\n", + " 'sha1': '2iivcvgi55eypzz57j6kh4xs6p414p2',\n", + " 'parent_id': 93504786,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93548786,\n", + " 'timestamp': '2013-03-29T17:07:32Z',\n", + " 'user': {'text': '207.108.208.247'},\n", + " 'page': {'id': 25348161,\n", + " 'title': 'WWII submarine dive klaxon.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:04,000 Awooga. Awooga. Awooga. Awooga.'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\nAwooga. Awooga. Awooga. Awooga.',\n", + " 'bytes': 63,\n", + " 'sha1': 'l4htsx1ysxar4l7ky6ndq49m60ejc71',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93582232,\n", + " 'timestamp': '2013-03-30T07:21:02Z',\n", + " 'user': {'id': 899664, 'text': 'DonRumata'},\n", + " 'page': {'id': 25355978,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'субтитры к [[s:Обращение к польскому народу]]',\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nДорогие друзья. \\nУважаемые граждане Республики Польша.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nЯ и все граждане России\\nпотрясены страшной трагедией —\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nгибелью Президента Республики Польша\\nЛеха Качиньского,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\nего супруги Марии,\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\nвсех польских граждан,\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nнаходившихся на борту самолета\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nпотерпевшего катастрофу.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nВ эти дни мы вместе проводили\\nпоминальные мероприятия в Катыни,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nвместе скорбели по жертвам\\nтоталитарных времен.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nЛех Качиньский летел в Россию,\\nчтобы лично отдать дань памяти\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nпогибшим польским офицерам\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\nи как Президент,\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\nи как гражданин своей страны.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nВсе россияне разделяют с вами\\nскорбь и траур.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nОбещаю, что все обстоятельства\\nэтой трагедии\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nбудут расследованы самым тщательным образом\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nв теснейшем взаимодействии\\nс польской стороной.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nМною даны исчерпывающие указания\\nправоохранительным структурам.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nОт имени российского народа\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nвыражаю самые глубокие,\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\nсамые искренние соболезнования\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nпольскому народу,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nчувства сострадания и поддержки\\nродным и близким погибших.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nВ понедельник 12 апреля в России\\nбудет объявлен национальный траур.',\n", + " 'bytes': 2625,\n", + " 'sha1': 'pr2kmtlkj0w8zrjkxc63k6sh1yreglm',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93583040,\n", + " 'timestamp': '2013-03-30T07:35:48Z',\n", + " 'user': {'id': 899664, 'text': 'DonRumata'},\n", + " 'page': {'id': 25356061,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Dmitry Medvedev addressed the People of Poland',\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDear friends,\\ndear citizens of the Republic of Poland.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nI and all citizens of Russia\\nare shocked by the terrible tragedy\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nthat occurred, the death of the President\\nof the Republic of Poland Lech Kaczynski,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\nhis wife Maria,\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\nand all Polish citizens\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\non board the plane\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nthat crashed near Smolensk.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nThese days we have been holding\\njoint commemorative events at Katyn\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nand together we grieved for the victims\\nof the totalitarian past.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nLech Kaczynski flew to Russia\\nto personally pay tribute\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nto the perished Polish officers\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\nboth as President\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\nand as their fellow citizen.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nAll Russians share your grief and mourning.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nI promise that all the circumstances\\nof this tragedy\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nwill be investigated with utmost care\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nin close collaboration with\\nthe Polish authorities.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nI have given comprehensive orders to \\nthis effect to law enforcement agencies.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nOn behalf of the people of Russia,\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nI want to express my deepest,\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\nmost heartfelt condolences\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nto the people of Poland,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nand my empathy and support \\nto families and friends of the victims.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nMonday April 12, 2010 will be declared \\na national day of mourning in Russia.',\n", + " 'bytes': 1894,\n", + " 'sha1': 'l6kt1m7aj03oba4en2u2zwvaxd2a3y3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93584070,\n", + " 'timestamp': '2013-03-30T08:03:16Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25356253,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash crop.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Duplicate Russian subtitles from non crop version',\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nДорогие друзья. \\nУважаемые граждане Республики Польша.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nЯ и все граждане России\\nпотрясены страшной трагедией —\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nгибелью Президента Республики Польша\\nЛеха Качиньского,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\nего супруги Марии,\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\nвсех польских граждан,\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nнаходившихся на борту самолета\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nпотерпевшего катастрофу.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nВ эти дни мы вместе проводили\\nпоминальные мероприятия в Катыни,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nвместе скорбели по жертвам\\nтоталитарных времен.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nЛех Качиньский летел в Россию,\\nчтобы лично отдать дань памяти\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nпогибшим польским офицерам\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\nи как Президент,\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\nи как гражданин своей страны.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nВсе россияне разделяют с вами\\nскорбь и траур.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nОбещаю, что все обстоятельства\\nэтой трагедии\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nбудут расследованы самым тщательным образом\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nв теснейшем взаимодействии\\nс польской стороной.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nМною даны исчерпывающие указания\\nправоохранительным структурам.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nОт имени российского народа\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nвыражаю самые глубокие,\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\nсамые искренние соболезнования\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nпольскому народу,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nчувства сострадания и поддержки\\nродным и близким погибших.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nВ понедельник 12 апреля в России\\nбудет объявлен национальный траур.',\n", + " 'bytes': 2625,\n", + " 'sha1': 'pr2kmtlkj0w8zrjkxc63k6sh1yreglm',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93584093,\n", + " 'timestamp': '2013-03-30T08:04:04Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25356260,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash crop.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Duplicate from non crop version',\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDear friends,\\ndear citizens of the Republic of Poland.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nI and all citizens of Russia\\nare shocked by the terrible tragedy\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nthat occurred, the death of the President\\nof the Republic of Poland Lech Kaczynski,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\nhis wife Maria,\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\nand all Polish citizens\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\non board the plane\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nthat crashed near Smolensk.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nThese days we have been holding\\njoint commemorative events at Katyn\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nand together we grieved for the victims\\nof the totalitarian past.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nLech Kaczynski flew to Russia\\nto personally pay tribute\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nto the perished Polish officers\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\nboth as President\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\nand as their fellow citizen.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nAll Russians share your grief and mourning.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nI promise that all the circumstances\\nof this tragedy\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nwill be investigated with utmost care\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nin close collaboration with\\nthe Polish authorities.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nI have given comprehensive orders to \\nthis effect to law enforcement agencies.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nOn behalf of the people of Russia,\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nI want to express my deepest,\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\nmost heartfelt condolences\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nto the people of Poland,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nand my empathy and support \\nto families and friends of the victims.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nMonday April 12, 2010 will be declared \\na national day of mourning in Russia.',\n", + " 'bytes': 1894,\n", + " 'sha1': 'l6kt1m7aj03oba4en2u2zwvaxd2a3y3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93584677,\n", + " 'timestamp': '2013-03-30T08:17:09Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25356359,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Use Polish transcript at http://kremlin.ru/transcripts/7423',\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDrodzy przyjaciele.\\nSzanowni obywatele Rzeczypospolitej Polskiej.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nJa i wszyscy obywatele Rosji\\njesteśmy głęboko wstrząśnięci straszną tragedią\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nśmiercią Prezydenta Rzeczypospolitej Polskiej Lecha Kaczyńskiego,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\njego żony Marii\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\ni wszystkich obywateli polskich, \\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nktórzy znajdowali się na \\n\\n7\\n00:00:22,137 --> 00:00:23,677\\npokładzie rozbitego samolotu.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nW ostatnich dniach wspólnie organizowaliśmy uroczystości rocznicowe w Katyniu,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nrazem składaliśmy hołd ofiarom totalitaryzmu.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nKaczyński leciał do Rosji, aby osobiście oddać cześć pamięci\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nzabitych polskich oficerów \\n\\n12\\n00:00:41,004 --> 00:00:42,919\\njako Prezydent,\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\na także jako obywatel swojego kraju.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nWszyscy Rosjanie łączą się z wami w cierpieniu i żałobie.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nObiecuję, że okoliczności tej tragedii \\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nzostaną jak najdokładniej zbadane \\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nw ścisłej współpracy ze stroną polską.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nOrgany ścigania otrzymały ode mnie wyczerpujące instrukcje.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nW imieniu narodu rosyjskiego\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nskładam najgłębsze\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\ni najszczersze wyrazy współczucia\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nnarodowi polskiemu,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nprzekazując także wyrazy solidarności i wsparcia rodzinom i bliskim ofiar.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nW poniedziałek 12 kwietnia w Rosji zostanie ogłoszona żałoba narodowa.',\n", + " 'bytes': 1929,\n", + " 'sha1': 'l7bvsytai0f4edkdi3nus1la5uaue3s',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93584713,\n", + " 'timestamp': '2013-03-30T08:18:01Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25356366,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash crop.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Used Polish transcript',\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDrodzy przyjaciele.\\nSzanowni obywatele Rzeczypospolitej Polskiej.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nJa i wszyscy obywatele Rosji\\njesteśmy głęboko wstrząśnięci straszną tragedią\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nśmiercią Prezydenta Rzeczypospolitej Polskiej Lecha Kaczyńskiego,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\njego żony Marii\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\ni wszystkich obywateli polskich, \\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nktórzy znajdowali się na \\n\\n7\\n00:00:22,137 --> 00:00:23,677\\npokładzie rozbitego samolotu.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nW ostatnich dniach wspólnie organizowaliśmy uroczystości rocznicowe w Katyniu,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nrazem składaliśmy hołd ofiarom totalitaryzmu.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nKaczyński leciał do Rosji, aby osobiście oddać cześć pamięci\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nzabitych polskich oficerów \\n\\n12\\n00:00:41,004 --> 00:00:42,919\\njako Prezydent,\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\na także jako obywatel swojego kraju.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nWszyscy Rosjanie łączą się z wami w cierpieniu i żałobie.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nObiecuję, że okoliczności tej tragedii \\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nzostaną jak najdokładniej zbadane \\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nw ścisłej współpracy ze stroną polską.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nOrgany ścigania otrzymały ode mnie wyczerpujące instrukcje.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nW imieniu narodu rosyjskiego\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nskładam najgłębsze\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\ni najszczersze wyrazy współczucia\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nnarodowi polskiemu,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nprzekazując także wyrazy solidarności i wsparcia rodzinom i bliskim ofiar.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nW poniedziałek 12 kwietnia w Rosji zostanie ogłoszona żałoba narodowa.',\n", + " 'bytes': 1929,\n", + " 'sha1': 'l7bvsytai0f4edkdi3nus1la5uaue3s',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 416998982,\n", + " 'timestamp': '2020-05-04T07:15:38Z',\n", + " 'user': {'id': 2073340, 'text': 'Jdx'},\n", + " 'page': {'id': 25356438,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash (Polish language).ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/80.68.229.77|80.68.229.77]] ([[User talk:80.68.229.77|talk]]) to last revision by WhisperToMe',\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDrodzy przyjaciele.\\nSzanowni obywatele Rzeczypospolitej Polskiej.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nJa i wszyscy obywatele Rosji\\njesteśmy głęboko wstrząśnięci straszną tragedią\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nśmiercią Prezydenta Rzeczypospolitej Polskiej Lecha Kaczyńskiego,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\njego żony Marii\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\ni wszystkich obywateli polskich, \\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nktórzy znajdowali się na \\n\\n7\\n00:00:22,137 --> 00:00:23,677\\npokładzie rozbitego samolotu.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nW ostatnich dniach wspólnie organizowaliśmy uroczystości rocznicowe w Katyniu,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nrazem składaliśmy hołd ofiarom totalitaryzmu.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nKaczyński leciał do Rosji, aby osobiście oddać cześć pamięci\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nzabitych polskich oficerów \\n\\n12\\n00:00:41,004 --> 00:00:42,919\\njako Prezydent,\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\na także jako obywatel swojego kraju.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nWszyscy Rosjanie łączą się z wami w cierpieniu i żałobie.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nObiecuję, że okoliczności tej tragedii \\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nzostaną jak najdokładniej zbadane \\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nw ścisłej współpracy ze stroną polską.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nOrgany ścigania otrzymały ode mnie wyczerpujące instrukcje.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nW imieniu narodu rosyjskiego\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nskładam najgłębsze\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\ni najszczersze wyrazy współczucia\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nnarodowi polskiemu,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nprzekazując także wyrazy solidarności i wsparcia rodzinom i bliskim ofiar.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nW poniedziałek 12 kwietnia w Rosji zostanie ogłoszona żałoba narodowa.',\n", + " 'bytes': 1929,\n", + " 'sha1': 'l7bvsytai0f4edkdi3nus1la5uaue3s',\n", + " 'parent_id': 409138517,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93585150,\n", + " 'timestamp': '2013-03-30T08:29:55Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25356444,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash (Polish language).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,700 --> 00:00:06,160 Dear friends, dear citizens of the Republic of Poland. 2 00:00:06,596 --> 00:00:12,096 I and all citizens of Russia are shocked...'\",\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDear friends,\\ndear citizens of the Republic of Poland.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nI and all citizens of Russia\\nare shocked by the terrible tragedy\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nthat occurred, the death of the President\\nof the Republic of Poland Lech Kaczynski,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\nhis wife Maria,\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\nand all Polish citizens\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\non board the plane\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nthat crashed near Smolensk.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nThese days we have been holding\\njoint commemorative events at Katyn\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nand together we grieved for the victims\\nof the totalitarian past.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nLech Kaczynski flew to Russia\\nto personally pay tribute\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nto the perished Polish officers\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\nboth as President\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\nand as their fellow citizen.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nAll Russians share your grief and mourning.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nI promise that all the circumstances\\nof this tragedy\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nwill be investigated with utmost care\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nin close collaboration with\\nthe Polish authorities.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nI have given comprehensive orders to \\nthis effect to law enforcement agencies.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nOn behalf of the people of Russia,\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nI want to express my deepest,\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\nmost heartfelt condolences\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nto the people of Poland,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nand my empathy and support \\nto families and friends of the victims.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nMonday April 12, 2010 will be declared \\na national day of mourning in Russia.',\n", + " 'bytes': 1894,\n", + " 'sha1': 'l6kt1m7aj03oba4en2u2zwvaxd2a3y3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93585168,\n", + " 'timestamp': '2013-03-30T08:30:19Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25356446,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash (Polish language).ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,700 --> 00:00:06,160 Дорогие друзья. Уважаемые граждане Республики Польша. 2 00:00:06,596 --> 00:00:1...'\",\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nДорогие друзья. \\nУважаемые граждане Республики Польша.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nЯ и все граждане России\\nпотрясены страшной трагедией —\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nгибелью Президента Республики Польша\\nЛеха Качиньского,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\nего супруги Марии,\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\nвсех польских граждан,\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nнаходившихся на борту самолета\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nпотерпевшего катастрофу.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nВ эти дни мы вместе проводили\\nпоминальные мероприятия в Катыни,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nвместе скорбели по жертвам\\nтоталитарных времен.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nЛех Качиньский летел в Россию,\\nчтобы лично отдать дань памяти\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nпогибшим польским офицерам\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\nи как Президент,\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\nи как гражданин своей страны.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nВсе россияне разделяют с вами\\nскорбь и траур.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nОбещаю, что все обстоятельства\\nэтой трагедии\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nбудут расследованы самым тщательным образом\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nв теснейшем взаимодействии\\nс польской стороной.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nМною даны исчерпывающие указания\\nправоохранительным структурам.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nОт имени российского народа\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nвыражаю самые глубокие,\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\nсамые искренние соболезнования\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nпольскому народу,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nчувства сострадания и поддержки\\nродным и близким погибших.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nВ понедельник 12 апреля в России\\nбудет объявлен национальный траур.',\n", + " 'bytes': 2625,\n", + " 'sha1': 'pr2kmtlkj0w8zrjkxc63k6sh1yreglm',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93591078,\n", + " 'timestamp': '2013-03-30T10:20:50Z',\n", + " 'user': {'id': 2765562, 'text': 'Valjean & Javert'},\n", + " 'page': {'id': 25357500,\n", + " 'title': 'En-Hamlet.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:05,400\\nThis file contains the spoken version of a Wikipedia article\\n\\n\\n1\\n00:00:05,500 --> 00:00:09,600\\non Hamlet, recorded by user ''karltalk'' on 26th October 2011.\",\n", + " 'bytes': 189,\n", + " 'sha1': 'nkk010y6dfs6w4m9h413ivy67zybvqk',\n", + " 'parent_id': 93590918,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93607599,\n", + " 'timestamp': '2013-03-30T16:13:33Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25361590,\n", + " 'title': 'MevEnglishscrolltext.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,700 --> 00:00:06,160 Дорогие друзья. Уважаемые граждане Республики Польша. 2 00:00:06,596 --> 00:00:1...'\",\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nДорогие друзья. \\nУважаемые граждане Республики Польша.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nЯ и все граждане России\\nпотрясены страшной трагедией —\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nгибелью Президента Республики Польша\\nЛеха Качиньского,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\nего супруги Марии,\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\nвсех польских граждан,\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nнаходившихся на борту самолета\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nпотерпевшего катастрофу.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nВ эти дни мы вместе проводили\\nпоминальные мероприятия в Катыни,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nвместе скорбели по жертвам\\nтоталитарных времен.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nЛех Качиньский летел в Россию,\\nчтобы лично отдать дань памяти\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nпогибшим польским офицерам\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\nи как Президент,\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\nи как гражданин своей страны.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nВсе россияне разделяют с вами\\nскорбь и траур.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nОбещаю, что все обстоятельства\\nэтой трагедии\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nбудут расследованы самым тщательным образом\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nв теснейшем взаимодействии\\nс польской стороной.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nМною даны исчерпывающие указания\\nправоохранительным структурам.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nОт имени российского народа\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nвыражаю самые глубокие,\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\nсамые искренние соболезнования\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nпольскому народу,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nчувства сострадания и поддержки\\nродным и близким погибших.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nВ понедельник 12 апреля в России\\nбудет объявлен национальный траур.',\n", + " 'bytes': 2625,\n", + " 'sha1': 'pr2kmtlkj0w8zrjkxc63k6sh1yreglm',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93607620,\n", + " 'timestamp': '2013-03-30T16:14:05Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25361603,\n", + " 'title': 'MevEnglishscrolltext.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,700 --> 00:00:06,160 Drodzy przyjaciele. Szanowni obywatele Rzeczypospolitej Polskiej. 2 00:00:06,596 --> 00:00:12,096 Ja i wszyscy obywatele Rosji ...'\",\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDrodzy przyjaciele.\\nSzanowni obywatele Rzeczypospolitej Polskiej.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nJa i wszyscy obywatele Rosji\\njesteśmy głęboko wstrząśnięci straszną tragedią\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nśmiercią Prezydenta Rzeczypospolitej Polskiej Lecha Kaczyńskiego,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\njego żony Marii\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\ni wszystkich obywateli polskich, \\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nktórzy znajdowali się na \\n\\n7\\n00:00:22,137 --> 00:00:23,677\\npokładzie rozbitego samolotu.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nW ostatnich dniach wspólnie organizowaliśmy uroczystości rocznicowe w Katyniu,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nrazem składaliśmy hołd ofiarom totalitaryzmu.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nKaczyński leciał do Rosji, aby osobiście oddać cześć pamięci\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nzabitych polskich oficerów \\n\\n12\\n00:00:41,004 --> 00:00:42,919\\njako Prezydent,\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\na także jako obywatel swojego kraju.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nWszyscy Rosjanie łączą się z wami w cierpieniu i żałobie.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nObiecuję, że okoliczności tej tragedii \\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nzostaną jak najdokładniej zbadane \\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nw ścisłej współpracy ze stroną polską.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nOrgany ścigania otrzymały ode mnie wyczerpujące instrukcje.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nW imieniu narodu rosyjskiego\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nskładam najgłębsze\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\ni najszczersze wyrazy współczucia\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nnarodowi polskiemu,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nprzekazując także wyrazy solidarności i wsparcia rodzinom i bliskim ofiar.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nW poniedziałek 12 kwietnia w Rosji zostanie ogłoszona żałoba narodowa.',\n", + " 'bytes': 1929,\n", + " 'sha1': 'l7bvsytai0f4edkdi3nus1la5uaue3s',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93607640,\n", + " 'timestamp': '2013-03-30T16:14:26Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25361613,\n", + " 'title': 'MevEnglishscrolltext.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,700 --> 00:00:06,160 Dear friends, dear citizens of the Republic of Poland. 2 00:00:06,596 --> 00:00:12,096 I and all citizens of Russia are shocked...'\",\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDear friends,\\ndear citizens of the Republic of Poland.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nI and all citizens of Russia\\nare shocked by the terrible tragedy\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\nthat occurred, the death of the President\\nof the Republic of Poland Lech Kaczynski,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\nhis wife Maria,\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\nand all Polish citizens\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\non board the plane\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nthat crashed near Smolensk.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nThese days we have been holding\\njoint commemorative events at Katyn\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nand together we grieved for the victims\\nof the totalitarian past.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nLech Kaczynski flew to Russia\\nto personally pay tribute\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\nto the perished Polish officers\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\nboth as President\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\nand as their fellow citizen.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nAll Russians share your grief and mourning.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nI promise that all the circumstances\\nof this tragedy\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nwill be investigated with utmost care\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nin close collaboration with\\nthe Polish authorities.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nI have given comprehensive orders to \\nthis effect to law enforcement agencies.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nOn behalf of the people of Russia,\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nI want to express my deepest,\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\nmost heartfelt condolences\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\nto the people of Poland,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\nand my empathy and support \\nto families and friends of the victims.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nMonday April 12, 2010 will be declared \\na national day of mourning in Russia.',\n", + " 'bytes': 1894,\n", + " 'sha1': 'l6kt1m7aj03oba4en2u2zwvaxd2a3y3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601932811,\n", + " 'timestamp': '2021-10-25T07:02:46Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25362688,\n", + " 'title': 'Dmitry Medvedev and Vladimir Putin - 2010 Polish Air Force Tu-154 crash.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'an update of timings and the sentences division with the subtitling standarts',\n", + " 'text': '1\\n00:00:00,583 --> 00:00:05,136\\nД. Медведев: Произошла трагедия, \\nочень серьёзная трагедия:\\n\\n2\\n00:00:05,488 --> 00:00:09,356\\nпогиб Президент Польши, его супруга,\\n\\n3\\n00:00:09,694 --> 00:00:12,223\\nзначительное число польских граждан,\\n\\n4\\n00:00:12,268 --> 00:00:16,256\\nкоторые летели к нам в Смоленскую область.\\n\\n5\\n00:00:17,571 --> 00:00:20,550\\nЯ подписал распоряжение\\nо создании правительственной комиссии,\\n\\n6\\n00:00:20,582 --> 00:00:24,611\\nкоторую возглавит\\nПредседатель Правительства.\\n\\n7\\n00:00:26,002 --> 00:00:30,821\\nКроме того, мною даны поручения\\nправоохранительным органам –\\n\\n8\\n00:00:31,202 --> 00:00:35,889\\nСледственному комитету, Генеральной\\nпрокуратуре, специальным службам –\\n\\n9\\n00:00:35,913 --> 00:00:38,787\\nпровести максимально\\nтщательное расследование\\n\\n10\\n00:00:38,795 --> 00:00:45,385\\nвсех обстоятельств этой трагедии\\nв кооперации с польскими партнёрами,\\n\\n11\\n00:00:45,442 --> 00:00:50,753\\nс тем чтобы вместе и в соответствии\\nс нашим законодательством,\\n\\n12\\n00:00:50,793 --> 00:00:53,289\\nсоответственно\\nс польским законодательством\\n\\n13\\n00:00:53,309 --> 00:00:57,000\\nтщательно расследовать все обстоятельства\\nэтого трагического происшествия.\\n\\n14\\n00:00:58,298 --> 00:01:02,226\\nИ конечно, мы должны\\nсделать всё для того, чтобы\\n\\n15\\n00:01:02,244 --> 00:01:04,964\\nвсе организационно-технические решения,\\n\\n16\\n00:01:04,982 --> 00:01:07,736\\nкоторые сопровождают\\nтакого рода происшествия,\\n\\n17\\n00:01:07,754 --> 00:01:10,740\\nбыли сделаны максимально тщательно,\\n\\n18\\n00:01:10,771 --> 00:01:14,494\\nв плотном контакте\\nс нашими польскими партнёрами.\\n\\n19\\n00:01:14,759 --> 00:01:18,424\\nЯ разговаривал по телефону\\n\\n20\\n00:01:18,455 --> 00:01:23,275\\nи с маршалом сейма Польши,\\n\\n21\\n00:01:23,321 --> 00:01:26,110\\nон сейчас исполняет\\nобязанности Президента,\\n\\n22\\n00:01:26,151 --> 00:01:32,033\\nи с Премьер-министром, с тем чтобы\\nорганизовать все необходимые процедуры.\\n\\n23\\n00:01:32,047 --> 00:01:33,578\\nЯ знаю, Владимир Владимирович,\\n\\n24\\n00:01:33,607 --> 00:01:36,495\\nчто Вы тоже разговаривали\\nс Председателем Правительства.\\n\\n25\\n00:01:36,526 --> 00:01:38,816\\nЧто собираются польские коллеги делать?\\n\\n26\\n00:01:39,809 --> 00:01:42,460\\nВ. Путин: Действительно,\\nэто ужасная трагедия.\\n\\n27\\n00:01:45,240 --> 00:01:49,583\\nЯ разговаривал с Премьер-министром,\\n\\n28\\n00:01:50,807 --> 00:01:52,878\\nвыразил свои соболезнования.\\n\\n29\\n00:01:56,248 --> 00:01:58,244\\nМы с Вами только что говорили,\\n\\n30\\n00:01:58,251 --> 00:02:01,034\\nчто ничего подобного\\nу нас никогда не было.\\n\\n31\\n00:02:06,000 --> 00:02:13,225\\nПремьер Польши выразил пожелание\\nприехать на место трагедии.\\n\\n32\\n00:02:14,643 --> 00:02:20,498\\nЯ поеду, встречу его там,\\nмы вместе побываем на месте катастрофы.\\n\\n33\\n00:02:22,251 --> 00:02:28,220\\nТолько что я подписал распоряжение\\nо составе правительственной комиссии.\\n\\n34\\n00:02:30,841 --> 00:02:34,583\\nКонечно, тела погибших\\nмы будем перевозить в Москву\\n\\n35\\n00:02:36,191 --> 00:02:37,867\\nдля опознания,\\n\\n36\\n00:02:38,890 --> 00:02:42,218\\nи здесь же будет организовано\\nвсё необходимое\\n\\n37\\n00:02:42,265 --> 00:02:47,851\\nдля того, чтобы встретить родственников,\\nтех, кто захочет и сможет приехать,\\n\\n38\\n00:02:49,297 --> 00:02:52,911\\nорганизовать всю другую работу, связанную\\n\\n39\\n00:02:57,228 --> 00:03:00,357\\nс реализацией планов работы этой комиссии.\\n\\n40\\n00:03:01,842 --> 00:03:04,786\\nЯ сегодня уже переговорил с мэром Москвы.\\n\\n41\\n00:03:05,707 --> 00:03:08,342\\nВ Москве будет создан специальный штаб,\\n\\n42\\n00:03:10,715 --> 00:03:15,448\\nинформация о котором будет\\nв средствах массовой информации.\\n\\n43\\n00:03:18,588 --> 00:03:23,822\\nТранспортные службы\\nбудут работать таким образом,\\n\\n44\\n00:03:23,864 --> 00:03:28,416\\nчтобы минимизировать\\n\\n45\\n00:03:28,461 --> 00:03:31,054\\nлюбые издержки, связанные с перемещением.\\n\\n46\\n00:03:32,000 --> 00:03:35,072\\nМинистерство иностранных дел\\nРоссийской Федерации\\n\\n47\\n00:03:35,102 --> 00:03:41,250\\nсделает всё, что от него зависит,\\nдля того чтобы без всяких проволочек,\\n\\n48\\n00:03:41,281 --> 00:03:44,765\\nбез какой бы то ни было волокиты\\nобеспечить визовую поддержку\\n\\n49\\n00:03:44,785 --> 00:03:48,279\\nтем гражданам Польши,\\nкоторые захотят приехать в Россию.\\n\\n50\\n00:03:53,487 --> 00:03:57,161\\nСказать нечего, можно только\\n\\n51\\n00:03:57,206 --> 00:04:00,818\\nпосочувствовать, искренне\\nпосочувствовать семьям погибших.\\n\\n52\\n00:04:00,880 --> 00:04:04,784\\nД. Медведев: Да, это страшная трагедия,\\nдействительно беспрецедентная.\\n\\n53\\n00:04:07,265 --> 00:04:12,739\\nМы договорились, что будем\\nв плотном режиме контактов\\n\\n54\\n00:04:12,808 --> 00:04:16,718\\nи с исполняющим обязанности Президента,\\nи с Премьер-министром,\\n\\n55\\n00:04:16,793 --> 00:04:19,487\\nи со всеми, кто будет принимать участие\\n\\n56\\n00:04:19,559 --> 00:04:21,761\\nи в скорбных процедурах,\\n\\n57\\n00:04:21,807 --> 00:04:25,321\\nи просто помогать\\nродным и близким погибших,\\n\\n58\\n00:04:25,340 --> 00:04:27,760\\nкоторые приедут в Москву на опознание.\\n\\n59\\n00:04:27,805 --> 00:04:29,246\\nПродолжим это делать.\\n\\n60\\n00:04:29,318 --> 00:04:32,165\\nВ. Путин: Дмитрий Анатольевич,\\nна место трагедии\\n\\n61\\n00:04:33,695 --> 00:04:41,251\\nпрямо за несколько минут туда\\n\\n62\\n00:04:41,312 --> 00:04:46,160\\nприбыла наша делегация, которая\\nпо Вашему поручению, встречала во главе\\n\\n63\\n00:04:46,242 --> 00:04:51,347\\nс полномочным представителем Президента\\nРоссийской Федерации Полтавченко.\\n\\n64\\n00:04:52,000 --> 00:04:56,217\\nОни уже были на месте крушения самолёта.\\n\\n65\\n00:04:57,404 --> 00:05:01,154\\nСейчас там находится и Министр\\nпо чрезвычайным ситуациям,\\n\\n66\\n00:05:01,229 --> 00:05:03,286\\nМинистр транспорта,\\n\\n67\\n00:05:03,339 --> 00:05:06,412\\nпредставители Министерства\\nздравоохранения, все службы работают.\\n\\n68\\n00:05:06,484 --> 00:05:10,070\\nД. Медведев: Хорошо. Я с Полтавченко\\nговорил как раз практически с первым,\\n\\n69\\n00:05:10,108 --> 00:05:12,399\\nпотому что он был ещё до спасателей,\\n\\n70\\n00:05:12,435 --> 00:05:16,677\\nв числе тех кто побывал на месте\\nэтой ужасной катастрофы.\\n\\n71\\n00:05:17,000 --> 00:05:18,504\\nБудем работать.',\n", + " 'bytes': 8725,\n", + " 'sha1': 'drfioy4dc9oswww9opnsyal9u8saikx',\n", + " 'parent_id': 93652529,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601932896,\n", + " 'timestamp': '2021-10-25T07:03:06Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25369158,\n", + " 'title': 'Dmitry Medvedev and Vladimir Putin - 2010 Polish Air Force Tu-154 crash.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,583 --> 00:00:05,136\\nPresident Dmitry Medvedev: A tragedy,\\na very serious tragedy has occurred.\\n\\n2\\n00:00:05,488 --> 00:00:09,356\\nThe President of Poland, his wife,\\n\\n3\\n00:00:09,694 --> 00:00:12,223\\nand a considerable number\\nof Polish citizens\\n\\n4\\n00:00:12,268 --> 00:00:16,256\\nwho were flying to Russia,\\nto Smolensk Region, died.\\n\\n5\\n00:00:17,571 --> 00:00:20,550\\nI signed an order establishing\\na government commission\\n\\n6\\n00:00:20,582 --> 00:00:24,611\\nto be headed by the Prime Minister.\\n\\n7\\n00:00:26,002 --> 00:00:30,821\\nI also have instructed\\nthe law enforcement agencies –\\n\\n8\\n00:00:30,847 --> 00:00:33,564\\n[the Prosecutor General’s Office]\\nInvestigative Committee,\\n\\n9\\n00:00:33,564 --> 00:00:36,135\\nthe Prosecutor General’s Office,\\nthe special services –\\n\\n10\\n00:00:36,135 --> 00:00:38,787\\nto conduct the most thorough\\ninvestigation possible\\n\\n11\\n00:00:38,795 --> 00:00:41,670\\ninto all the circumstances of this tragedy\\n\\n12\\n00:00:41,744 --> 00:00:46,720\\nand to do so in cooperation\\nwith their Polish colleagues.\\n\\n13\\n00:00:46,803 --> 00:00:52,790\\nTogether, in accordance\\nwith both Russian and Polish law,\\n\\n14\\n00:00:52,894 --> 00:00:55,394\\nthey will therefore be able\\nto investigate thoroughly\\n\\n15\\n00:00:55,406 --> 00:00:57,546\\nall the circumstances\\nof this tragic incident.\\n\\n16\\n00:00:58,298 --> 00:01:02,226\\nAnd of course, we must do\\neverything to ensure\\n\\n17\\n00:01:02,244 --> 00:01:04,964\\nthat all organizational\\nand technical measures\\n\\n18\\n00:01:04,982 --> 00:01:07,736\\nthat necessarily accompany such incidents\\n\\n19\\n00:01:07,754 --> 00:01:10,740\\nare exhaustive\\n\\n20\\n00:01:10,771 --> 00:01:14,494\\nand taken in close contact\\nwith our Polish partners.\\n\\n21\\n00:01:14,759 --> 00:01:18,424\\nI talked on the phone\\n\\n22\\n00:01:18,455 --> 00:01:23,275\\nwith Marshal of the Polish Sejm\\n[Bronislaw Komorowski],\\n\\n23\\n00:01:23,321 --> 00:01:26,110\\ncurrently acting head of state,\\n\\n24\\n00:01:26,151 --> 00:01:29,092\\nand the Polish\\nPrime Minister [Donald Tusk]\\n\\n25\\n00:01:29,092 --> 00:01:32,033\\nin order to arrange\\nall necessary proceedings.\\n\\n26\\n00:01:32,047 --> 00:01:33,578\\nI know that you\\n\\n27\\n00:01:33,607 --> 00:01:36,495\\nalso spoke with Mr Tusk.\\n\\n28\\n00:01:36,526 --> 00:01:39,490\\nWhat steps are our Polish\\ncolleagues planning to make?\\n\\n29\\n00:01:39,699 --> 00:01:42,802\\nPrime Minister Vladimir Putin:\\nIndeed, this is a terrible tragedy.\\n\\n30\\n00:01:45,240 --> 00:01:49,583\\nI talked to the Prime Minister [of Poland]\\n\\n31\\n00:01:50,807 --> 00:01:52,878\\nand expressed my condolences.\\n\\n32\\n00:01:56,248 --> 00:01:58,244\\nAs we just discussed,\\n\\n33\\n00:01:58,251 --> 00:02:01,034\\nnothing like this [tragedy]\\nhas ever happened before.\\n\\n34\\n00:02:06,000 --> 00:02:13,225\\nThe Prime Minister of Poland expressed\\nhis desire to visit the crash site.\\n\\n35\\n00:02:14,643 --> 00:02:20,498\\nI’ll meet him and together we will\\nvisit the site of the disaster.\\n\\n36\\n00:02:22,251 --> 00:02:23,960\\nI have just signed an order\\n\\n37\\n00:02:23,960 --> 00:02:26,368\\non the composition\\nof the government commission\\n\\n38\\n00:02:26,368 --> 00:02:28,755\\n[to investigate\\nthe circumstances of the crash].\\n\\n39\\n00:02:30,841 --> 00:02:34,583\\nOf course, the bodies\\nwill be brought to Moscow\\n\\n40\\n00:02:36,191 --> 00:02:37,867\\nfor identification\\n\\n41\\n00:02:38,890 --> 00:02:42,218\\nand then we will arrange\\neverything necessary\\n\\n42\\n00:02:42,265 --> 00:02:45,211\\nto meet the relatives [of the victims],\\n\\n43\\n00:02:45,256 --> 00:02:47,912\\nthose who are willing\\nand able to come to Russia.\\n\\n44\\n00:02:49,297 --> 00:02:52,911\\nWe will also organise\\nall other work involved in\\n\\n45\\n00:02:57,228 --> 00:03:00,357\\nimplementing the commission’s action plan.\\n\\n46\\n00:03:01,842 --> 00:03:05,338\\nToday I have already spoken\\nwith the Mayor of Moscow [Yury Luzhkov].\\n\\n47\\n00:03:05,707 --> 00:03:08,342\\nIn Moscow a special headquarters\\nwill be set up,\\n\\n48\\n00:03:10,715 --> 00:03:15,448\\nthe [contact] details of which will be\\ncommunicated to the public via media.\\n\\n49\\n00:03:18,588 --> 00:03:23,822\\nThe carriers will operate so\\n\\n50\\n00:03:23,864 --> 00:03:28,416\\nas to minimize\\n\\n51\\n00:03:28,461 --> 00:03:31,054\\nall travel costs.\\n\\n52\\n00:03:32,000 --> 00:03:35,072\\nThe Ministry of Foreign Affairs\\nof the Russian Federation\\n\\n53\\n00:03:35,102 --> 00:03:41,250\\nwill do its best to ensure\\nthat without delay\\n\\n54\\n00:03:41,281 --> 00:03:44,765\\nor red tape those citizens of Poland\\nwho wish to come to Russia\\n\\n55\\n00:03:44,785 --> 00:03:48,279\\nwill receive the necessary visa support.\\n\\n56\\n00:03:53,487 --> 00:03:57,161\\nThere is nothing to say.\\nOne can only sympathize,\\n\\n57\\n00:03:57,206 --> 00:04:00,818\\ntruly sympathize\\nwith the bereaved families.\\n\\n58\\n00:04:00,880 --> 00:04:03,239\\nDmitry Medvedev: Yes,\\nthis is a horrible tragedy –\\n\\n59\\n00:04:03,283 --> 00:04:04,784\\nan unprecedented one.\\n\\n60\\n00:04:07,265 --> 00:04:12,739\\nWe agreed that we would\\nproceed in a close contact\\n\\n61\\n00:04:12,808 --> 00:04:16,718\\nwith the Acting President of Poland\\nand the Prime Minister,\\n\\n62\\n00:04:16,793 --> 00:04:19,487\\nand with all who participate\\n\\n63\\n00:04:19,559 --> 00:04:21,761\\nin mourning practices,\\n\\n64\\n00:04:21,807 --> 00:04:25,213\\nand simply help the families\\nand friends of the victims\\n\\n65\\n00:04:25,236 --> 00:04:27,760\\nwho travel to Moscow\\nfor the bodies’ identification.\\n\\n66\\n00:04:27,805 --> 00:04:29,246\\nWe will continue to do it.\\n\\n67\\n00:04:29,318 --> 00:04:32,515\\nVladimir Putin: Our delegation\\narrived on the scene of the accident\\n\\n68\\n00:04:33,695 --> 00:04:41,251\\njust a few minutes ago\\n\\n69\\n00:04:41,312 --> 00:04:43,564\\nand, according to your instruction,\\n\\n70\\n00:04:43,587 --> 00:04:46,520\\nfirst met with Presidential\\nPlenipotentiary Envoy\\n\\n71\\n00:04:46,552 --> 00:04:51,347\\n[to the Central Federal District\\nGeorgy] Poltavchenko.\\n\\n72\\n00:04:52,000 --> 00:04:56,217\\nThey went directly to the crash site.\\n\\n73\\n00:04:57,404 --> 00:05:01,224\\nThe Emergencies Minister [Sergei Shoigu],\\nTransport Minister [Igor Levitin]\\n\\n74\\n00:05:01,267 --> 00:05:04,428\\nand representatives of the Healthcare\\nMinistry are all there now:\\n\\n75\\n00:05:04,469 --> 00:05:06,409\\nall ministries and agencies are working.\\n\\n76\\n00:05:06,442 --> 00:05:10,070\\nDmitry Medvedev: Good. Mr Poltavchenko\\nwas actually the first one I spoke to,\\n\\n77\\n00:05:10,108 --> 00:05:12,399\\nbecause he was able to get to the site\\n\\n78\\n00:05:12,435 --> 00:05:16,677\\nof this awful disaster\\nbefore the rescue teams.\\n\\n79\\n00:05:17,000 --> 00:05:18,504\\nWe will keep working.',\n", + " 'bytes': 6323,\n", + " 'sha1': 'tmg6akk0kthmdu28dozadlt3unuuuc0',\n", + " 'parent_id': 93910736,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 670146888,\n", + " 'timestamp': '2022-06-30T21:17:00Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25384685,\n", + " 'title': 'Russian Anthem chorus.ogg.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'мда уж — Undo revision 670076035 by [[Special:Contribs/2A01:CB1D:40B:9800:B46D:E464:51F1:340|2A01:CB1D:40B:9800:B46D:E464:51F1:340]]',\n", + " 'text': '1\\n00:00:03,000 --> 00:00:09,339\\nРоссия — священная наша держава,\\n\\n2\\n00:00:09,500 --> 00:00:15,600\\nРоссия — любимая наша страна.\\n\\n3\\n00:00:15,825 --> 00:00:22,528\\nМогучая воля, великая слава —\\n\\n4\\n00:00:22,594 --> 00:00:29,378\\nТвоё достоянье на все времена!\\n\\n5\\n00:00:29,803 --> 00:00:36,269\\nСлавься, Отечество\\n\\n6\\n00:00:36,536 --> 00:00:42,601\\nнаше свободное,\\n\\n7\\n00:00:42,900 --> 00:00:49,478\\nБратских народов союз вековой,\\n\\n8\\n00:00:49,700 --> 00:00:56,306\\nПредками данная\\n\\n9\\n00:00:56,400 --> 00:01:02,978\\nмудрость народная!\\n\\n10\\n00:01:03,100 --> 00:01:09,370\\nСлавься, страна! Мы гордимся тобой!\\n\\n11\\n00:01:09,700 --> 00:01:16,315\\nОт южных морей до полярного края\\n\\n12\\n00:01:16,400 --> 00:01:22,941\\nРаскинулись наши леса и поля.\\n\\n13\\n00:01:23,043 --> 00:01:29,764\\nОдна ты на свете! Одна ты такая —\\n\\n14\\n00:01:29,900 --> 00:01:36,775\\nХранимая Богом родная земля!\\n\\n15\\n00:01:36,900 --> 00:01:43,550\\nСлавься, Отечество\\n\\n16\\n00:01:43,744 --> 00:01:50,138\\nнаше свободное,\\n\\n17\\n00:01:50,200 --> 00:01:57,018\\nБратских народов союз вековой,\\n\\n18\\n00:01:57,100 --> 00:02:04,000\\nПредками данная\\n\\n19\\n00:02:04,107 --> 00:02:10,569\\nмудрость народная!\\n\\n20\\n00:02:10,900 --> 00:02:17,162\\nСлавься, страна! Мы гордимся тобой!\\n\\n21\\n00:02:17,400 --> 00:02:23,873\\nШирокий простор для мечты и для жизни\\n\\n22\\n00:02:24,000 --> 00:02:30,516\\nГрядущие нам открывают года.\\n\\n23\\n00:02:30,700 --> 00:02:37,443\\nНам силу даёт наша верность Отчизне.\\n\\n24\\n00:02:37,600 --> 00:02:44,537\\nТак было, так есть и так будет всегда!\\n\\n25\\n00:02:44,700 --> 00:02:51,490\\nСлавься, Отечество\\n\\n26\\n00:02:51,637 --> 00:02:57,773\\nнаше свободное,\\n\\n27\\n00:02:58,000 --> 00:03:05,018\\nБратских народов союз вековой,\\n\\n28\\n00:03:05,200 --> 00:03:12,050\\nПредками данная\\n\\n29\\n00:03:12,135 --> 00:03:18,789\\nмудрость народная!\\n\\n30\\n00:03:18,900 --> 00:03:21,816\\nСлавься, страна!\\n\\n31\\n00:03:21,869 --> 00:03:29,613\\nМы гордимся тобой!',\n", + " 'bytes': 2504,\n", + " 'sha1': '61yujhpljv3t0rkehdbrkpkv0157pg2',\n", + " 'parent_id': 670076035,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 354309641,\n", + " 'timestamp': '2019-06-13T05:25:28Z',\n", + " 'user': {'id': 1547075, 'text': 'Illegitimate Barrister'},\n", + " 'page': {'id': 25386380,\n", + " 'title': 'United States Navy Band - La Bayamesa.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:17,000 --> 00:00:21,400\\nHasten to battle, men of Bayamo!\\n\\n2\\n00:00:21,400 --> 00:00:24,600\\nThe motherland looks proudly to you;\\n\\n3\\n00:00:24,600 --> 00:00:30,800\\nDo not fear a glorious death,\\n\\n4\\n00:00:30,800 --> 00:00:33,400\\nBecause to die for the motherland is to live\\n\\n5\\n00:00:33,800 --> 00:00:38,400\\nTo live in chains is to live,\\n\\n6\\n00:00:38,400 --> 00:00:43,900\\nIn dishonor and ignominy,\\n\\n7\\n00:00:43,900 --> 00:00:47,800\\nHear the call of the bugle;\\n\\n8\\n00:00:47,800 --> 00:00:51,500\\nHasten, brave ones, to arms!\\n\\n9\\n00:00:51,700 --> 00:00:56,200\\nTo live in chains is to live\\n\\n10\\n00:00:56,300 --> 00:01:00,000\\nIn dishonor and ignominy,\\n\\n11\\n00:01:00,200 --> 00:01:04,600\\nHear the call of the bugle;\\n\\n12\\n00:01:04,800 --> 00:01:09,500\\nHasten, brave all, to arms!',\n", + " 'bytes': 766,\n", + " 'sha1': 'e8z65c9rk2id9mdc35aiphhb8lt70ph',\n", + " 'parent_id': 354309602,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93745526,\n", + " 'timestamp': '2013-04-01T12:41:34Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 25391662,\n", + " 'title': 'Na vrhu brda, Pelišac.915.ogv.hr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:5,000\\nBarinski vrhovi\\n\\n2\\n00:00:07,000 --> 00:00:13,000\\nruševine kapele\\n\\n3\\n00:00:17,000--> 00:00:22,000\\nPlaninski lanac -pogled na istok\\n\\n4\\n00:00:27,000 --> 00:00:35,000\\nPogled na zapad',\n", + " 'bytes': 210,\n", + " 'sha1': 'bgsm47242b0mfnsmbdpxsicedurnz51',\n", + " 'parent_id': 93744821,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93745750,\n", + " 'timestamp': '2013-04-01T12:45:08Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 25391863,\n", + " 'title': 'Na vrhu brda, Pelišac.915.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:5,000 Barinski summits 2 00:00:07,000 --> 00:00:13,000 ruins of St. Elias chapel at the highest summit of Pelješac 3 00:00:17,000-->...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:5,000\\nBarinski summits\\n\\n2\\n00:00:07,000 --> 00:00:13,000\\nruins of St. Elias chapel at the highest summit of Pelješac\\n\\n3\\n00:00:17,000--> 00:00:22,000\\nMountain range towards east\\n\\n4\\n00:00:27,000 --> 00:00:35,000\\nMountain range towards west',\n", + " 'bytes': 262,\n", + " 'sha1': 'lffwkvwb76cn8y77xxif9c8p2zxy3i7',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93787379,\n", + " 'timestamp': '2013-04-01T21:55:56Z',\n", + " 'user': {'text': '201.74.2.20'},\n", + " 'page': {'id': 25400819,\n", + " 'title': 'Pt-Portugues.ogg.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:20,000 --> 00:00:24,400 Purtugueix 2 00:00:24,600 --> 00:00:27,800 Português'\",\n", + " 'text': '1\\n00:00:20,000 --> 00:00:24,400\\nPurtugueix\\n\\n2\\n00:00:24,600 --> 00:00:27,800\\nPortuguês',\n", + " 'bytes': 86,\n", + " 'sha1': 'rbwxcpdw0wbhbn8fzaqtoqjg3ph8l3b',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 617284829,\n", + " 'timestamp': '2021-12-29T11:37:12Z',\n", + " 'user': {'id': 8768226, 'text': 'Kartonpiyer'},\n", + " 'page': {'id': 25411767,\n", + " 'title': 'Istiklâl Marsi instrumetal.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'The word \"Ancak\" is used to indicate that the star belongs to the nation and only. The closest English alternative to this is \"Solely\". This is also how it\\'s used in other translations.',\n", + " 'text': \"1\\n00:00:5,000 --> 00:00:10,000\\nFear not and be not dismayed,\\n\\n2\\n00:00:10,000 --> 00:00:16,000\\nthis crimson flag will never fade.\\n\\n3\\n00:00:16,000 --> 00:00:23,000\\nIt is the last hearth that is burning for my nation, and we know for sure \\n\\n4\\n00:00:23,000 --> 00:00:28,000\\nthat it will never fail.\\n\\n5\\n00:00:28,000 --> 00:00:33,000\\nIt is my nation's star, shining forever\\n\\n6\\n00:00:33,000 --> 00:00:40,000\\nIt is mine; and solely belongs to my nation.\\n\\n7\\n00:00:40,000 --> 00:00:45,000\\nFrown not, fair crescent, for \\n\\n8\\n00:00:45,000 --> 00:00:51,000\\nI am ready to die for you.\\n\\n9\\n00:00:51,000 --> 00:00:58,000\\nSmile now upon my heroic nation, leave this anger, lest the blood\\n\\n10\\n00:00:58,000 --> 00:01:03,000\\nshed for thee be unblessed.\\n\\n11\\n00:01:03,000 --> 00:01:14,000\\nFreedom is my nation's right, freedom for us who worship God and seek what is right.\",\n", + " 'bytes': 849,\n", + " 'sha1': 'gdc64uj9jvd7j673h1r5btgacelyqda',\n", + " 'parent_id': 163646298,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94271815,\n", + " 'timestamp': '2013-04-09T18:22:30Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25423057,\n", + " 'title': 'Sextortionagent interview.ogg.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '<!--This uses the official transcript of \"[http://www.fbi.gov/news/stories/2012/february/sextortion_021012/special-agent_021012 Special Agent Nickolas Savage Discusses ‘Sextortion’].\" ([http://www.webcitation.org/6Ea7keg5V Archive]) which has removed the [[:en:filler (linguistics)|filler]] and grammatical errors-->\\n\\n1\\n00:00:00,000 --> 00:00:04,400\\n性勒索通常指\\n\\n2\\n00:00:04,600 --> 00:00:07,400\\n个人受到侵害\\n\\n3\\n00:00:07,600 --> 00:00:09,400\\n并被勒索\\n\\n4\\n00:00:09,600 --> 00:00:12,400\\n这就是我们通常说的勒索罪\\n\\n5\\n00:00:012,600 --> 00:00:18,400\\n敲诈者的成果是\\n\\n6\\n00:00:18,600 --> 00:00:23,400\\n与性交相关的东西,无论是\\n\\n7\\n00:00:023,600 --> 00:00:26,400\\n照片或短片或,\\n\\n8\\n00:00:26,600 --> 00:00:29,400\\n通常来说就是与性相关的东西。\\n\\n9\\n00:00:29,600 --> 00:00:33,400\\n就是说我本质上是勒索您的性行为。\\n\\n10\\n00:00:33,600 --> 00:00:37,400\\n孩子们往往是不够谨慎\\n\\n11\\n00:00:37,600 --> 00:00:40,400\\n总信任网上的人\\n\\n12\\n00:00:40,600 --> 00:00:44,400\\n他们总将与自己相似的人关联起来\\n\\n13\\n00:00:044,600 --> 00:00:47,400\\n大约同年纪。 所以\\n\\n14\\n00:00:47,600 --> 00:00:49,900\\n他们对潜在的危险并不是特别小心。\\n\\n15\\n00:00:50,100 --> 00:00:53,400\\n很多时候,你必须自己决定和什么孩子交好朋友。\\n\\n16\\n00:00:53,600 --> 00:00:56,400\\n他们认为与其他孩子聊天。\\n\\n17\\n00:00:56,600 --> 00:01:01,400\\n通常, 儿童被诱骗发送自己的照片\\n\\n18\\n00:01:01,600 --> 00:01:05,400\\n给他们认为年龄可能相似的陌生人。\\n\\n19\\n00:01:05,600 --> 00:01:09,400\\n一旦这些人有了这些照片,他们就想要更多照片。\\n\\n20\\n00:01:09,600 --> 00:01:14,400\\n这就是促使犯罪行动的原因了。\\n\\n21\\n00:01:14,600 --> 00:01:17,400\\n一旦他们有了这些照片, 然后他们可以说\\n\\n22\\n00:01:17,600 --> 00:01:20,400\\n受害者或孩子,\\n\\n23\\n00:01:20,600 --> 00:01:24,400\\n“我要多一点,”或“我要你作x,y和z。\\n\\n24\\n00:01:24,600 --> 00:01:28,400\\n如果你不做, 我就会把这些照片,\\n\\n25\\n00:01:28,600 --> 00:01:32,400\\n我将它们发给你的同学。 我将它们寄到你家里。”\\n\\n26\\n00:01:32,600 --> 00:01:36,400\\n通常情况下,孩子们都会非常尴尬,\\n\\n27\\n00:01:36,600 --> 00:01:42,400\\n这些想法促使了他们被害。\\n\\n28\\n00:01:42,600 --> 00:01:46,400\\n因此,他担心寄出这些东西可能对他造成麻烦,\\n\\n29\\n00:01:46,600 --> 00:01:51,400\\n他们将继续受害并发送照片。\\n\\n30\\n00:01:51,600 --> 00:01:55,400\\n经常发生的是受害永远不会停止。\\n\\n31\\n00:01:55,600 --> 00:02:01,400\\n我们看到的这类情况下,罪犯\\n\\n32\\n00:02:01,600 --> 00:02:07,400\\n建立网站并将网址发给朋友\\n\\n33\\n00:02:07,600 --> 00:02:11,400\\n和家人,\\n\\n34\\n00:02:11,600 --> 00:02:14,400\\n他们再一次表现出优势并对受害者说,\\n\\n35\\n00:02:14,600 --> 00:02:19,400\\n“这是我对你的, 如果你不继续做什么的话, \\n\\n36\\n00:02:19,600 --> 00:02:22,400\\n这些都是你可以做的事情。”\\n\\n37\\n00:02:22,600 --> 00:02:27,400\\n他们是利用弱势群体的人。\\n\\n38\\n00:02:27,600 --> 00:02:30,400\\n他们会诱骗人们打开附件。\\n\\n39\\n00:02:30,600 --> 00:02:34,400\\n常见的方式之一:他们会发送一个女孩的照片。\\n\\n40\\n00:02:34,600 --> 00:02:37,400\\n她穿着胸罩和内裤。\\n\\n41\\n00:02:37,600 --> 00:02:40,400\\n她的头发遮住了她的脸所以你看不到她的外表。\\n\\n42\\n00:02:40,600 --> 00:02:43,400\\n他们会说类似于下面的东西,\\n\\n43\\n00:02:43,600 --> 00:02:47,400\\n“我在网站上看到你的这张照片。 如果这不是你的,你可以忽略该消息。” \\n\\n44\\n00:02:47,600 --> 00:02:51,400\\n那么,这些受害者有很多没有实现\\n\\n45\\n00:02:51,600 --> 00:02:55,400\\n有一个特洛伊木马嵌入的图片。 \\n\\n46\\n00:02:55,600 --> 00:02:58,400\\n孩子们看了照片,他们天生就很好奇。\\n\\n47\\n00:02:58,600 --> 00:03:03,400\\n他们甚至没有意识到有东西可能被嵌入在该照片中,于是点开看。\\n\\n48\\n00:03:03,600 --> 00:03:07,400\\n一旦Connolly[一个性勒索]和Dickerson[另一个性勒索]进入到他们的电脑,\\n\\n49\\n00:03:07,600 --> 00:03:09,400\\n他们会做几件事情。\\n\\n50\\n00:03:09,600 --> 00:03:12,400\\n很多时候,他们只是坐下来,看着。\\n\\n51\\n00:03:12,600 --> 00:03:15,400\\n他们有能力把你的摄像头。\\n\\n52\\n00:03:15,600 --> 00:03:19,400\\n因此,他们将看到这些受害者穿衣和脱衣,\\n\\n53\\n00:03:19,600 --> 00:03:22,400\\n只是做不同的事情。 他们将录影这些事件。\\n\\n54\\n00:03:22,600 --> 00:03:26,400\\n有时他们会赶上孩子们做的事情,或赶上孩子换衣服。\\n\\n55\\n00:03:26,600 --> 00:03:31,400\\n有时他们会显示这些视频或图片在进一步的剥削。\\n\\n56\\n00:03:31,600 --> 00:03:36,400\\n此外,一旦他们有他们访问好友列表,使他们能够说,\\n\\n57\\n00:03:36,600 --> 00:03:41,400\\n“如果你不把自己的照片或如果你不把你不把自己的这些电影,\\n\\n58\\n00:03:41,600 --> 00:03:45,400\\n我注意到你有你的祖母的一个电子邮件地址。\\n\\n59\\n00:03:45,600 --> 00:03:48,400\\n好吧,我会为你奶奶一起把这个小节目,和\\n\\n60\\n00:03:48,600 --> 00:03:51,400\\n我相信她不会,你知道,你的行为方式感到非常自豪。”\\n\\n61\\n00:03:51,600 --> 00:03:54,400\\n许多这些孩子们将做到这一点。\\n\\n62\\n00:03:54,600 --> 00:03:58,400\\n今天有这么多的恶意软件\\n\\n63\\n00:03:58,600 --> 00:04:02,400\\n有这么多的恶意软件在那里, \\n\\n64\\n00:04:02,600 --> 00:04:05,400\\n和那么多的程序允许人们访问您的电脑,\\n\\n65\\n00:04:05,600 --> 00:04:10,400\\n你不能过于谨慎。 其中的事情,\\n\\n66\\n00:04:10,600 --> 00:04:13,400\\n尤其是在对父母喋喋不休之前,\\n\\n66\\n00:04:13,600 --> 00:04:16,400\\n你需要有这个开放的对话与你的孩子。\\n\\n67\\n00:04:16,600 --> 00:04:20,400\\n你需要有你的孩子谈谈这些事情。\\n\\n68\\n00:04:20,600 --> 00:04:23,400\\n你可以小心也不为过. 你真的不能相信…\\n\\n69\\n00:04:23,600 --> 00:04:25,400\\n你要小心你沟通的人。\\n\\n70\\n00:04:25,600 --> 00:04:29,400\\n你需要始终持小心: 这是第一点。\\n\\n71\\n00:04:29,600 --> 00:04:32,400\\n第二点是: 孩子们需要的是能够跟父母谈谈。\\n\\n72\\n00:04:32,600 --> 00:04:35,400\\n父母需要的是能够跟孩子们也谈谈。\\n\\n73\\n00:04:35,600 --> 00:04:38,400\\n如果你不知道一个文件的来源, 不要打开附件。\\n\\n74\\n00:04:38,600 --> 00:04:43,400\\n小心某些附件!\\n\\n75\\n00:04:43,600 --> 00:04:47,400\\n最后一点,\\n\\n76\\n00:04:47,600 --> 00:04:50,400\\n如果事件发生, 如果你是受害者,\\n\\n77\\n00:04:50,600 --> 00:04:55,400\\n告诉别人, 告诉你父母。 告诉大人。 告诉老师。\\n\\n78\\n00:04:55,600 --> 00:05:00,400\\n即使你是成年人和受害人, 不要害怕打电话报警。\\n\\n79\\n00:05:00,600 --> 00:05:06,400\\nDickerson有了—他有了左右230吉字节的资料。\\n\\n80\\n00:05:06,600 --> 00:05:09,400\\n这样的力量是很大的。\\n\\n81\\n00:05:09,600 --> 00:05:15,400\\nConnolly有了几乎1太字节的资料。\\n\\n82\\n00:05:15,600 --> 00:05:21,400\\n对于儿童,通常是一个文件夹的地方。\\n\\n83\\n00:05:21,600 --> 00:05:24,400\\n在电脑目录中。\\n\\n84\\n00:05:24,600 --> 00:05:30,400\\n没有名字。 没有用户名。 它只有照片和短片在一个目录。\\n\\n85\\n00:05:30,600 --> 00:05:34,400\\n我觉得我的一部分的责任是\\n\\n86\\n00:05:34,600 --> 00:05:37,400\\n告诉愿意听的人\\n\\n87\\n00:05:37,600 --> 00:05:41,400\\n因为我知道还有更的受害者想知道, \\n\\n88\\n00:05:41,600 --> 00:05:44,400\\n“我知道发生了什么事那些家伙?”或“我还需要害怕吗?”\\n\\n89\\n00:05:44,600 --> 00:05:47,400\\n如果你知道有人在这种情况或如果你在这种情况\\n\\n90\\n00:05:47,600 --> 00:05:51,400\\n或者如果你是一个父母一方, 你该谈论这你孩子们这个问题。',\n", + " 'bytes': 7753,\n", + " 'sha1': '1sw44os9wpjbzpksz9oe50aqcfnzepp',\n", + " 'parent_id': 93905402,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 608235498,\n", + " 'timestamp': '2021-11-19T08:57:40Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25425867,\n", + " 'title': 'Песня Хорста Весселя.ogg.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'update',\n", + " 'text': \"1\\n00:00:07,000 --> 00:00:14,726\\nDie Fahne hoch!\\nDie Reihen fest geschlossen!\\n\\n2\\n00:00:15,400 --> 00:00:21,609\\nSA marschiert mit ruhig festem Schritt.\\n\\n3\\n00:00:22,363 --> 00:00:30,200\\nKam'raden, die Rotfront\\nund Reaktion erschossen,\\n\\n4\\n00:00:30,720 --> 00:00:36,949\\nMarschier'n im Geist\\nin unser'n Reihen mit.\\n\\n5\\n00:00:37,876 --> 00:00:45,307\\nKam'raden, die Rotfront\\nund Reaktion erschossen,\\n\\n6\\n00:00:46,156 --> 00:00:52,463\\nMarschier'n im Geist\\nin unser'n Reihen mit.\\n\\n7\\n00:00:54,538 --> 00:01:01,819\\nDie Straße frei den braunen Bataillonen!\\n\\n8\\n00:01:02,718 --> 00:01:08,983\\nDie Straße frei dem Sturmabteilungsmann!\\n\\n9\\n00:01:09,759 --> 00:01:17,240\\nEs schau'n aufs Hakenkreuz\\nvoll Hoffnung schon Millionen,\\n\\n10\\n00:01:18,090 --> 00:01:24,519\\nDer Tag der freiheit\\nund für Brot bricht an.\\n\\n11\\n00:01:25,247 --> 00:01:32,828\\nEs schau'n aufs Hakenkreuz\\nvoll Hoffnung schon Millionen,\\n\\n12\\n00:01:33,456 --> 00:01:40,020\\nDer Tag der freiheit\\nund für Brot bricht an.\\n\\n13\\n00:01:42,103 --> 00:01:49,457\\nZum letzen Mal wird Sturmalarm geblasen,\\n\\n14\\n00:01:50,500 --> 00:01:56,612\\nZum Kampfe steh'n wir alle schon bereit.\\n\\n15\\n00:01:57,502 --> 00:02:05,150\\nSchon flattern Hitlerfahnen\\nüber allen Straßen,\\n\\n16\\n00:02:05,869 --> 00:02:12,282\\nDie Knechtschaft dauert\\nnur noch kurze Zeit.\\n\\n17\\n00:02:13,265 --> 00:02:20,814\\nSchon flattern Hitlerfahnen\\nüber allen Straßen,\\n\\n18\\n00:02:21,528 --> 00:02:28,066\\nDie Knechtschaft dauert\\nnur noch kurze Zeit.\\n\\n19\\n00:02:29,982 --> 00:02:37,539\\nDie Fahne hoch!\\nDie Reihen fest geschlossen!\\n\\n20\\n00:02:38,422 --> 00:02:44,783\\nSA marschiert mit ruhig festem Schritt.\\n\\n21\\n00:02:45,517 --> 00:02:52,981\\nKam'raden, die Rotfront\\nund Reaktion erschossen,\\n\\n22\\n00:02:53,909 --> 00:03:00,272\\nMarschier'n im Geist\\nin unser'n Reihen mit.\\n\\n23\\n00:03:01,206 --> 00:03:08,687\\nKam'raden, die Rotfront\\nund Reaktion erschossen,\\n\\n24\\n00:03:09,531 --> 00:03:16,045\\nMarschier'n im Geist\\nin unser'n Reihen mit.\",\n", + " 'bytes': 1911,\n", + " 'sha1': '7ly860ngkklwovx948i5ypcwc7f9pz5',\n", + " 'parent_id': 93883195,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 372088182,\n", + " 'timestamp': '2019-10-27T05:13:14Z',\n", + " 'user': {'id': 8287260, 'text': '芄蘭'},\n", + " 'page': {'id': 25426015,\n", + " 'title': 'National Anthem of the Republic of China.ogg.zh-tw.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:16,000\\n三民主義\\u3000吾黨所宗\\n\\n2\\n00:00:16,500 --> 00:00:32,500\\n以建民國\\u3000以進大同\\n\\n3\\n00:00:32,500 --> 00:00:40,000\\n咨爾多士\\u3000為民前鋒\\n\\n4\\n00:00:40,000 --> 00:00:48,000\\n夙夜匪懈\\u3000主義是從\\n\\n5\\n00:00:48,000 --> 00:01:04,000\\n矢勤矢勇\\u3000必信必忠\\n\\n6\\n00:01:04,000 --> 00:01:23,000\\n一心一德\\u3000貫徹始終',\n", + " 'bytes': 364,\n", + " 'sha1': 'hfkv0uyyoln176iaz83xv0j2u2mjkji',\n", + " 'parent_id': 371960402,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94271828,\n", + " 'timestamp': '2013-04-09T18:22:45Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25431762,\n", + " 'title': 'Sextortionagent interview.ogg.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '<!--This uses the official transcript of \"[http://www.fbi.gov/news/stories/2012/february/sextortion_021012/special-agent_021012 Special Agent Nickolas Savage Discusses ‘Sextortion’].\" ([http://www.webcitation.org/6Ea7keg5V Archive]) which has removed the [[:en:filler (linguistics)|filler]] and grammatical errors-->\\n\\n1\\n00:00:00,000 --> 00:00:04,400\\n性勒索通常指\\n\\n2\\n00:00:04,600 --> 00:00:07,400\\n個人受到侵害\\n\\n3\\n00:00:07,600 --> 00:00:09,400\\n並被勒索\\n\\n4\\n00:00:09,600 --> 00:00:12,400\\n這就是我們通常說的勒索罪\\n\\n5\\n00:00:012,600 --> 00:00:18,400\\n敲詐者的成果是\\n\\n6\\n00:00:18,600 --> 00:00:23,400\\n與性交相關的東西,無論是\\n\\n7\\n00:00:023,600 --> 00:00:26,400\\n照片或短片或,\\n\\n8\\n00:00:26,600 --> 00:00:29,400\\n通常來說就是與性相關的東西。\\n\\n9\\n00:00:29,600 --> 00:00:33,400\\n就是說我本質上是勒索您的性行為。\\n\\n10\\n00:00:33,600 --> 00:00:37,400\\n孩子們往往是不夠謹慎\\n\\n11\\n00:00:37,600 --> 00:00:40,400\\n總信任網上的人\\n\\n12\\n00:00:40,600 --> 00:00:44,400\\n他們總將與自己相似的人關聯起來\\n\\n13\\n00:00:044,600 --> 00:00:47,400\\n大約同年紀。 所以\\n\\n14\\n00:00:47,600 --> 00:00:49,900\\n他們對潛在的危險並不是特別小心。\\n\\n15\\n00:00:50,100 --> 00:00:53,400\\n很多時候,你必須自己決定和什麼孩子交好朋友。\\n\\n16\\n00:00:53,600 --> 00:00:56,400\\n他們認為與其他孩子聊天。\\n\\n17\\n00:00:56,600 --> 00:01:01,400\\n通常, 兒童被誘騙發送自己的照片\\n\\n18\\n00:01:01,600 --> 00:01:05,400\\n給他們認為年齡可能相似的陌生人。\\n\\n19\\n00:01:05,600 --> 00:01:09,400\\n一旦這些人有了這些照片,他們就想要更多照片。\\n\\n20\\n00:01:09,600 --> 00:01:14,400\\n這就是促使犯罪行動的原因了。\\n\\n21\\n00:01:14,600 --> 00:01:17,400\\n一旦他們有了這些照片, 然后他們可以說\\n\\n22\\n00:01:17,600 --> 00:01:20,400\\n受害者或孩子,\\n\\n23\\n00:01:20,600 --> 00:01:24,400\\n“我要多一點,”或“我要你作x,y和z。\\n\\n24\\n00:01:24,600 --> 00:01:28,400\\n如果你不做, 我就會把這些照片,\\n\\n25\\n00:01:28,600 --> 00:01:32,400\\n我將它們發給你的同學。 我將它們寄到你家裡。”\\n\\n26\\n00:01:32,600 --> 00:01:36,400\\n通常情況下,孩子們都會非常尷尬,\\n\\n27\\n00:01:36,600 --> 00:01:42,400\\n這些想法促使了他們被害。\\n\\n28\\n00:01:42,600 --> 00:01:46,400\\n因此,他擔心寄出這些東西可能對他造成麻煩,\\n\\n29\\n00:01:46,600 --> 00:01:51,400\\n他們將繼續受害並發送照片。\\n\\n30\\n00:01:51,600 --> 00:01:55,400\\n經常發生的是受害永遠不會停止。\\n\\n31\\n00:01:55,600 --> 00:02:01,400\\n我們看到的這類情況下,罪犯\\n\\n32\\n00:02:01,600 --> 00:02:07,400\\n建立網站並將網址發給朋友\\n\\n33\\n00:02:07,600 --> 00:02:11,400\\n和家人,\\n\\n34\\n00:02:11,600 --> 00:02:14,400\\n他們再一次表現出優勢並對受害者說,\\n\\n35\\n00:02:14,600 --> 00:02:19,400\\n“這是我對你的, 如果你不繼續做什麼的話, \\n\\n36\\n00:02:19,600 --> 00:02:22,400\\n這些都是你可以做的事情。”\\n\\n37\\n00:02:22,600 --> 00:02:27,400\\n他們是利用弱勢群體的人。\\n\\n38\\n00:02:27,600 --> 00:02:30,400\\n他們會誘騙人們打開附件。\\n\\n39\\n00:02:30,600 --> 00:02:34,400\\n常見的方式之一:他們會發送一個女孩的照片。\\n\\n40\\n00:02:34,600 --> 00:02:37,400\\n她穿著胸罩和內褲。\\n\\n41\\n00:02:37,600 --> 00:02:40,400\\n她的頭發遮住了她的臉所以你看不到她的外表。\\n\\n42\\n00:02:40,600 --> 00:02:43,400\\n他們會說類似於下面的東西,\\n\\n43\\n00:02:43,600 --> 00:02:47,400\\n“我在網站上看到你的這張照片。 如果這不是你的,你可以忽略該消息。” \\n\\n44\\n00:02:47,600 --> 00:02:51,400\\n那麼,這些受害者有很多沒有實現\\n\\n45\\n00:02:51,600 --> 00:02:55,400\\n有一個特洛伊木馬嵌入的圖片。 \\n\\n46\\n00:02:55,600 --> 00:02:58,400\\n孩子們看了照片,他們天生就很好奇。\\n\\n47\\n00:02:58,600 --> 00:03:03,400\\n他們甚至沒有意識到有東西可能被嵌入在該照片中,於是點開看。\\n\\n48\\n00:03:03,600 --> 00:03:07,400\\n一旦Connolly[一個性勒索]和Dickerson[另一個性勒索]進入到他們的電腦,\\n\\n49\\n00:03:07,600 --> 00:03:09,400\\n他們會做幾件事情。\\n\\n50\\n00:03:09,600 --> 00:03:12,400\\n很多時候,他們隻是坐下來,看著。\\n\\n51\\n00:03:12,600 --> 00:03:15,400\\n他們有能力把你的攝像頭。\\n\\n52\\n00:03:15,600 --> 00:03:19,400\\n因此,他們將看到這些受害者穿衣和脫衣,\\n\\n53\\n00:03:19,600 --> 00:03:22,400\\n隻是做不同的事情。 他們將錄影這些事件。\\n\\n54\\n00:03:22,600 --> 00:03:26,400\\n有時他們會趕上孩子們做的事情,或趕上孩子換衣服。\\n\\n55\\n00:03:26,600 --> 00:03:31,400\\n有時他們會顯示這些視頻或圖片在進一步的剝削。\\n\\n56\\n00:03:31,600 --> 00:03:36,400\\n此外,一旦他們有他們訪問好友列表,使他們能夠說,\\n\\n57\\n00:03:36,600 --> 00:03:41,400\\n“如果你不把自己的照片或如果你不把你不把自己的這些電影,\\n\\n58\\n00:03:41,600 --> 00:03:45,400\\n我注意到你有你的祖母的一個電子郵件地址。\\n\\n59\\n00:03:45,600 --> 00:03:48,400\\n好吧,我會為你奶奶一起把這個小節目,和\\n\\n60\\n00:03:48,600 --> 00:03:51,400\\n我相信她不會,你知道,你的行為方式感到非常自豪。”\\n\\n61\\n00:03:51,600 --> 00:03:54,400\\n許多這些孩子們將做到這一點。\\n\\n62\\n00:03:54,600 --> 00:03:58,400\\n今天有這麼多的惡意軟件\\n\\n63\\n00:03:58,600 --> 00:04:02,400\\n有這麼多的惡意軟件在那裡, \\n\\n64\\n00:04:02,600 --> 00:04:05,400\\n和那麼多的程序允許人們訪問您的電腦,\\n\\n65\\n00:04:05,600 --> 00:04:10,400\\n你不能過於謹慎。 其中的事情,\\n\\n66\\n00:04:10,600 --> 00:04:13,400\\n尤其是在對父母喋喋不休之前,\\n\\n66\\n00:04:13,600 --> 00:04:16,400\\n你需要有這個開放的對話與你的孩子。\\n\\n67\\n00:04:16,600 --> 00:04:20,400\\n你需要有你的孩子談談這些事情。\\n\\n68\\n00:04:20,600 --> 00:04:23,400\\n你可以小心也不為過. 你真的不能相信…\\n\\n69\\n00:04:23,600 --> 00:04:25,400\\n你要小心你溝通的人。\\n\\n70\\n00:04:25,600 --> 00:04:29,400\\n你需要始終持小心: 這是第一點。\\n\\n71\\n00:04:29,600 --> 00:04:32,400\\n第二點是: 孩子們需要的是能夠跟父母談談。\\n\\n72\\n00:04:32,600 --> 00:04:35,400\\n父母需要的是能夠跟孩子們也談談。\\n\\n73\\n00:04:35,600 --> 00:04:38,400\\n如果你不知道一個文件的來源, 不要打開附件。\\n\\n74\\n00:04:38,600 --> 00:04:43,400\\n小心某些附件!\\n\\n75\\n00:04:43,600 --> 00:04:47,400\\n最后一點,\\n\\n76\\n00:04:47,600 --> 00:04:50,400\\n如果事件發生, 如果你是受害者,\\n\\n77\\n00:04:50,600 --> 00:04:55,400\\n告訴別人, 告訴你父母。 告訴大人。 告訴老師。\\n\\n78\\n00:04:55,600 --> 00:05:00,400\\n即使你是成年人和受害人, 不要害怕打電話報警。\\n\\n79\\n00:05:00,600 --> 00:05:06,400\\nDickerson有了—他有了左右230吉字節的資料。\\n\\n80\\n00:05:06,600 --> 00:05:09,400\\n這樣的力量是很大的。\\n\\n81\\n00:05:09,600 --> 00:05:15,400\\nConnolly有了幾乎1太字節的資料。\\n\\n82\\n00:05:15,600 --> 00:05:21,400\\n對於兒童,通常是一個文件夾的地方。\\n\\n83\\n00:05:21,600 --> 00:05:24,400\\n在電腦目錄中。\\n\\n84\\n00:05:24,600 --> 00:05:30,400\\n沒有名字。 沒有用戶名。 它隻有照片和短片在一個目錄。\\n\\n85\\n00:05:30,600 --> 00:05:34,400\\n我覺得我的一部分的責任是\\n\\n86\\n00:05:34,600 --> 00:05:37,400\\n告訴願意聽的人\\n\\n87\\n00:05:37,600 --> 00:05:41,400\\n因為我知道還有更的受害者想知道, \\n\\n88\\n00:05:41,600 --> 00:05:44,400\\n“我知道發生了什麼事那些家伙?”或“我還需要害怕嗎?”\\n\\n89\\n00:05:44,600 --> 00:05:47,400\\n如果你知道有人在這種情況或如果你正在遭受這種情況\\n\\n90\\n00:05:47,600 --> 00:05:51,400\\n或者如果你是一個父母一方, 你該談論這你孩子們這個問題。',\n", + " 'bytes': 7762,\n", + " 'sha1': 'jvqu4ppr65c0qih2jw2oq68u9kbboqk',\n", + " 'parent_id': 93949675,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93927178,\n", + " 'timestamp': '2013-04-03T21:19:30Z',\n", + " 'user': {'text': '66.191.10.234'},\n", + " 'page': {'id': 25436430,\n", + " 'title': 'En-us-dies.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:20,000 --> 00:00:24,400 dies 2 00:00:24,600 --> 00:00:27,800 dies'\",\n", + " 'text': '1\\n00:00:20,000 --> 00:00:24,400\\ndies\\n\\n2\\n00:00:24,600 --> 00:00:27,800\\ndies',\n", + " 'bytes': 74,\n", + " 'sha1': '4zmkdxsrsmovwc5u9k6666k0amz1wk1',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93939843,\n", + " 'timestamp': '2013-04-04T03:29:18Z',\n", + " 'user': {'text': '177.177.108.215'},\n", + " 'page': {'id': 25439937,\n", + " 'title': 'AC Cobra (1964).ogg.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:16 VRUM VRUM VRUM VRUUUUUUUUUUUUM VRUM POFF'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:16\\nVRUM VRUM VRUM VRUUUUUUUUUUUUM VRUM POFF',\n", + " 'bytes': 68,\n", + " 'sha1': 'mpby24r8gewvnabupu1anusxu3qvbzd',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93990674,\n", + " 'timestamp': '2013-04-04T23:15:34Z',\n", + " 'user': {'text': '74.88.56.144'},\n", + " 'page': {'id': 25452720,\n", + " 'title': 'En-us-bamboo.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:20,00--> 00:00:24,400 Bamboo 2 00:00:24,600--> 00:00:27,800 Bamboo'\",\n", + " 'text': '1\\n00:00:20,00--> 00:00:24,400\\nBamboo\\n\\n2\\n00:00:24,600--> 00:00:27,800\\nBamboo',\n", + " 'bytes': 75,\n", + " 'sha1': 'dwmx1j3ejit80l4no8frx6015ooys6t',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 93995279,\n", + " 'timestamp': '2013-04-05T02:31:04Z',\n", + " 'user': {'id': 2057325, 'text': 'Tuankiet65'},\n", + " 'page': {'id': 25453719,\n", + " 'title': 'Me at the zoo.webm.vi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:01,300 --> 00:00:04,400 Được rồi, hiện chúng ta đang đứng trước những con voi, 2 00:00:04,400 --> 00:00:09,166 điều thú vị v...'\",\n", + " 'text': '\\ufeff1\\n00:00:01,300 --> 00:00:04,400\\nĐược rồi, hiện chúng ta đang đứng\\ntrước những con voi,\\n\\n2\\n00:00:04,400 --> 00:00:09,166\\nđiều thú vị về những con voi này là chúng có\\n\\n3\\n00:00:09,166 --> 00:00:12,699\\ncái vòi rất dài,\\n\\n4\\n00:00:12,699 --> 00:00:17,000\\nvà điều đó thật thú vị.\\n\\n5\\n00:00:17,000 --> 00:00:18,766\\nVà có lẽ đã hết điều để nói.',\n", + " 'bytes': 399,\n", + " 'sha1': '71ljjhmpjetrrtgl0l4kgbi627nhl6j',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94036392,\n", + " 'timestamp': '2013-04-05T22:10:05Z',\n", + " 'user': {'text': '72.197.181.99'},\n", + " 'page': {'id': 25466164,\n", + " 'title': 'En-us-thus.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:20,000 --> 00:00:24,400 thus 2 00:00:24,600 --> 00:00:27,800 thus'\",\n", + " 'text': '1\\n00:00:20,000 --> 00:00:24,400\\nthus\\n\\n2\\n00:00:24,600 --> 00:00:27,800\\nthus',\n", + " 'bytes': 74,\n", + " 'sha1': 'kjcs1j75mzi2fvigsq3d3vigsznmhqm',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 629515959,\n", + " 'timestamp': '2022-02-13T08:59:43Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25469000,\n", + " 'title': 'Wikipedia video tutorial-2-Reliability-en.ogv.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments, new text division for better readability, also, removed not translated Romanian text.',\n", + " 'text': '1\\n00:00:01,169 --> 00:00:03,461\\nOlá, eu sou Tereza.\\n\\n2\\n00:00:03,503 --> 00:00:05,130\\nObrigado por assistir nosso vídeo,\\n\\n3\\n00:00:05,152 --> 00:00:08,300\\nque explica como qualquer pessoa\\npode contribuir com o Wikipedia,\\n\\n4\\n00:00:08,300 --> 00:00:10,794\\na maior e melhor\\nenciclopédia livre do mundo.\\n\\n5\\n00:00:11,282 --> 00:00:12,487\\nComo você deve saber,\\n\\n6\\n00:00:12,531 --> 00:00:15,515\\né possível a qualquer um editar\\nqualquer artigo no Wikipedia.\\n\\n7\\n00:00:15,550 --> 00:00:17,830\\nTudo que você precisa fazer\\né clicar em \"Editar\",\\n\\n8\\n00:00:17,875 --> 00:00:19,989\\nalterar o texto e clicar em \"Salvar\".\\n\\n9\\n00:00:20,019 --> 00:00:23,506\\nMas isto não fornece dar asta nu\\nvă oferă mijloacele de a rescrie istoria.\\n\\n10\\n00:00:23,516 --> 00:00:27,444\\nPelo contrário eu gostaria de explicar\\ncomo o Wikipedia mantém sua integridade\\n\\n11\\n00:00:27,479 --> 00:00:29,912\\ndeși oricine o poate\\nmodifica atât de ușor.\\n\\n12\\n00:00:30,280 --> 00:00:33,525\\nComo muitos programas de computador,\\no programa por trás do Wikipedia\\n\\n13\\n00:00:33,555 --> 00:00:36,501\\npossui muitas ferramentas\\nque a maioria dos leitores não sabem.\\n\\n14\\n00:00:36,541 --> 00:00:42,237\\nEu irei falar sobre 2 destas ferramentas\\nque foram especificamente construídas.\\n\\n15\\n00:00:42,761 --> 00:00:45,828\\nA primeira ferramenta\\né chamada \"Mudanças recentes\".\\n\\n16\\n00:00:47,228 --> 00:00:51,481\\nNo menu à sua esquerda, você\\nencontrará o link para mudanças recentes.\\n\\n17\\n00:00:52,458 --> 00:00:54,218\\nA seguir não há tradução!\\nO seguinte texto está em romeno :)\\n\\n<!--18-->\\n00:00:54,248 --> 00:00:57,428\\npe Wikipedia în limba dumneavoastră.\\n\\n<!--19-->\\n00:00:57,459 --> 00:01:00,106\\nHaideți să ne uităm\\nla primul articol din listă.\\n\\n20\\n00:01:00,208 --> 00:01:04,241\\nDacă apăsați din nou pe \"Schimbări\\nrecente\", la doar câteva secunde,\\n\\n21\\n00:01:04,259 --> 00:01:06,888\\nveți vedea că articolul respectiv\\na ajuns mai jos\\n\\n22\\n00:01:07,835 --> 00:01:09,805\\nși toate articolele de mai\\n\\n23\\n00:01:09,832 --> 00:01:13,708\\nsus au fost modificate\\nsau create în ultimele 4 secunde.\\n\\n24\\n00:01:14,670 --> 00:01:17,566\\nEste ceea ce eu numesc\\n\"pulsul Wikipediei\".\\n\\n25\\n00:01:17,596 --> 00:01:19,359\\nDestul de impresionant, nu?\\n\\n26\\n00:01:19,677 --> 00:01:21,505\\nHaideți să ne întoarcem la articol.\\n\\n27\\n00:01:22,269 --> 00:01:24,889\\nCând apăsați pe legătura \"diff\",\\n\\n28\\n00:01:24,931 --> 00:01:27,491\\nveți vedea schimbările\\nfăcute asupra articolului.\\n\\n29\\n00:01:27,770 --> 00:01:30,211\\nCe vedeți pe ecran sunt\\nversiunea anterioară\\n\\n30\\n00:01:30,260 --> 00:01:32,846\\nși versiunea modificată\\nuna lângă cealaltă.\\n\\n31\\n00:01:33,534 --> 00:01:36,824\\nÎn acest fel, toate schimbările\\nsunt transparente.\\n\\n32\\n00:01:36,948 --> 00:01:40,555\\nComunitatea de utilizatori va urmări\\ncu atenție toate schimbările\\n\\n33\\n00:01:40,593 --> 00:01:43,305\\nși va corecta informațiile false.\\n\\n34\\n00:01:44,073 --> 00:01:48,740\\nAcesta este una din multele metode\\nde a asigura calitatea Wikipediei.\\n\\n35\\n00:01:48,888 --> 00:01:51,139\\nCealaltă unealtă despre\\ncare vreau să vă vorbesc\\n\\n36\\n00:01:51,166 --> 00:01:56,246\\neste o listă personalizată de schimbări\\nrecente, numită \"Pagini urmărite\".\\n\\n37\\n00:01:56,652 --> 00:01:58,664\\nPentru a obtine o listă\\nde pagini urmărite,\\n\\n38\\n00:01:58,694 --> 00:02:00,668\\nva trebui să aveți un cont de utilizator.\\n\\n39\\n00:02:00,758 --> 00:02:05,244\\nDar nu vă îngrijorați!\\nE rapid, simplu si gratuit!\\n\\n40\\n00:02:07,384 --> 00:02:10,967\\nApăsați pe această legătură\\nși urmăriți instrucțiunile.\\n\\n41\\n00:02:13,684 --> 00:02:16,261\\nDar cum îmi creez\\nlista de pagini urmărite?\\n\\n42\\n00:02:16,291 --> 00:02:18,269\\nPăi, este cel mai bine să creați lista\\n\\n43\\n00:02:18,291 --> 00:02:20,531\\ncu articolele interesante\\npentru dumneavoastră.\\n\\n44\\n00:02:21,101 --> 00:02:23,254\\nEu, de exemplu:\\n\\n45\\n00:02:23,271 --> 00:02:26,534\\nîmi plac câinii!...\\n\\n46\\n00:02:28,304 --> 00:02:31,848\\nCaut permanent articole noi despre câini.\\n\\n47\\n00:02:33,113 --> 00:02:34,767\\nUn Labrador!\\n\\n48\\n00:02:34,777 --> 00:02:37,977\\nPriviți-i fața! Trebuie să vă placă!\\n\\n49\\n00:02:38,420 --> 00:02:40,207\\nHaideți să mergem la acest articol.\\n\\n50\\n00:02:40,772 --> 00:02:45,505\\nDa! Sigur vreau să urmăresc toate\\nschimbările făcute la acest articol.\\n\\n51\\n00:02:45,715 --> 00:02:48,501\\nAșa că apăs pe \"urmărește\"\\n(steluța de lângă căutare)\\n\\n52\\n00:02:49,251 --> 00:02:53,179\\nși acest articol este adăugat\\nîn lista de pagini urmărite\\n\\n53\\n00:02:53,239 --> 00:02:57,589\\npe care o pot vedea apăsând pe...\\n\"Pagini urmărite\".\\n\\n54\\n00:02:58,737 --> 00:03:01,417\\nCând cineva editează\\nun articol din listă,\\n\\n55\\n00:03:01,448 --> 00:03:03,256\\nveti putea vedea acest lucru\\n\\n56\\n00:03:03,298 --> 00:03:04,779\\nși cu un singur clic\\n\\n57\\n00:03:04,808 --> 00:03:06,722\\nputeți vedea cine a făcut schimbările\\n\\n58\\n00:03:07,530 --> 00:03:09,913\\nși ce schimbări au făcut.\\n\\n59\\n00:03:11,860 --> 00:03:16,191\\nApropo, nu doar eu am pagina despre\\nLabrador pe lista de pagini urmărite.\\n\\n60\\n00:03:16,279 --> 00:03:22,887\\nNu, sunt sigur că multe mii de iubitori\\nde câini urmăresc această pagină.\\n\\n61\\n00:03:22,921 --> 00:03:24,297\\nMă refer la câine.\\n\\n62\\n00:03:25,203 --> 00:03:28,222\\nAcestea au fost două din multele unelte\\n\\n63\\n00:03:28,256 --> 00:03:30,706\\nfolosite pentru\\na menține calitatea Wikipediei.\\n\\n64\\n00:03:31,029 --> 00:03:34,697\\nDar cea mai bună metodă pentru a asigura\\nîn continuare calitatea Wikipedie\\n\\n65\\n00:03:34,731 --> 00:03:39,537\\neste să creștem numărul editorilor\\ncare contribuie cu cunoștințele lor.\\n\\n66\\n00:03:40,034 --> 00:03:42,980\\nCu cât mai mulți editori sunt,\\ncu atât mai bună este calitatea.\\n\\n67\\n00:03:42,993 --> 00:03:47,011\\nAșa că vă rugăm să vă alăturați\\nsuperbului grup de cunoștințe omenești\\n\\n68\\n00:03:47,067 --> 00:03:50,355\\nși ajutati-ne să progresăm\\noriunde este posibil.\\n\\n69\\n00:03:50,432 --> 00:03:52,008\\nMulțumim că ne-ați urmărit!\\n\\n70\\n00:03:52,054 --> 00:03:54,027\\nLa revedere și mult noroc!',\n", + " 'bytes': 5936,\n", + " 'sha1': 'svbimm1wc261jrutzef0mv2o0pg68g3',\n", + " 'parent_id': 94047068,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94116961,\n", + " 'timestamp': '2013-04-07T10:25:49Z',\n", + " 'user': {'text': '2.50.27.238'},\n", + " 'page': {'id': 25486645,\n", + " 'title': 'Wien1.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,400 Wien'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,400\\nWien',\n", + " 'bytes': 36,\n", + " 'sha1': '404dag3aankb8g5pj7zgamebgjff8f1',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 620103645,\n", + " 'timestamp': '2022-01-08T08:09:21Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25488533,\n", + " 'title': 'Jana Gana Mana instrumental.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments, new text division for better readability',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:04,398\\nThou art the ruler\\nof the minds of all people,\\n\\n2\\n00:00:04,416 --> 00:00:07,805\\nDispenser of India's destiny.\\n\\n3\\n00:00:08,000 --> 00:00:13,213\\nThy name rouses the hearts\\nof Punjab, Sindh, Gujarat, and Maratha,\\n\\n4\\n00:00:13,246 --> 00:00:17,275\\nOf the Dravida, Utkala and Bengal;\\n\\n5\\n00:00:17,518 --> 00:00:20,092\\nIt echoes in the hills\\nof the Vindhyas and Himalayas,\\n\\n6\\n00:00:20,118 --> 00:00:22,217\\nMingles in the music\\nof the Jamuna and Ganges\\n\\n7\\n00:00:22,241 --> 00:00:26,239\\nAnd is chanted by the waves\\nof the Indian Sea.\\n\\n8\\n00:00:26,663 --> 00:00:31,135\\nThey pray for thy blessings\\nand sing thy praise.\\n\\n9\\n00:00:31,204 --> 00:00:35,556\\nThe saving of all people\\nwaits in thy hand,\\n\\n10\\n00:00:35,597 --> 00:00:40,039\\nThou dispenser of India's destiny.\\n\\n11\\n00:00:40,331 --> 00:00:44,696\\nThou art the ruler\\nof the minds of all people,\\n\\n12\\n00:00:44,763 --> 00:00:48,812\\nDispenser of India's destiny.\\n\\n13\\n00:00:48,900 --> 00:00:56,293\\nVictory, victory, victory to thee.\\n\\n14\\n00:00:56,747 --> 00:01:02,062\\nVictory, victory, victory to thee.\",\n", + " 'bytes': 1066,\n", + " 'sha1': '7fsmye4n7x4qvczohqa9vzdzexh5rxv',\n", + " 'parent_id': 262298647,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 653751305,\n", + " 'timestamp': '2022-05-04T07:14:05Z',\n", + " 'user': {'text': '2409:4040:E9E:556:0:0:7548:2704'},\n", + " 'page': {'id': 25488733,\n", + " 'title': 'Jana Gana Mana instrumental.ogg.hi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Added Latin Translation of Text',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\nजन गण मन अधिनायक जय हे\\nJana Gana Mana Adhinayaka Jaya He\\n\\n2\\n00:00:04,000 --> 00:00:08,000\\nभारत भाग्यविधाता\\nBharat Bhagya Vidhata\\n\\n3\\n00:00:08,000 --> 00:00:13,000\\nपंजाब सिन्धु गुजरात मराठा\\nPunjab, Sindh, Gujarat, Maratha\\n\\n4\\n00:00:13,000 --> 00:00:17,000\\nद्राविड़ उत्कल बंगा\\nDravida Utkala Banga\\n\\n5\\n00:00:17,000 --> 00:00:22,000\\nविन्ध्य हिमाचल यमुना गंगा\\nVindhya Himachal Yamuna Ganga\\n\\n6\\n00:00:22,000 --> 00:00:26,000\\nउच्छल जलधि तरंगा\\nUchhal Jaladhi Tiranga\\n\\n7\\n00:00:26,000 --> 00:00:31,000\\nतव शुभ नामे जागे\\nTava Subha Name Jage\\n\\n8\\n00:00:31,000 --> 00:00:35,000\\nतव शुभ आशीष मागे\\nTava Subha Aashish Mage\\n\\n9\\n00:00:35,000 --> 00:00:40,000\\nगाहे तव जयगाथा\\nGahe Tava Jaya Gatha\\n\\n10\\n00:00:40,000 --> 00:00:45,000\\nजन गण मंगलदायक जय हे\\nJana Gana Mangala Dayaka Jaye He\\n\\n11\\n00:00:45,000 --> 00:00:48,000\\nभारत भाग्यविधाता\\nBharat Bhagya Vidhata\\n\\n12\\n00:00:48,900 --> 00:00:56,000\\nजय हे, जय हे, जय हे\\nJaya He, Jaya He, Jaya He\\n\\n13\\n00:00:56,800 --> 00:01:02,000\\nजय जय जय जय हे!\\nJaya, Jaya, Jaya, Jaya He!',\n", + " 'bytes': 1415,\n", + " 'sha1': 'jj3uy5dmvk18dbr19o459fqi420x2g5',\n", + " 'parent_id': 94125289,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 152427507,\n", + " 'timestamp': '2015-03-08T05:19:22Z',\n", + " 'user': {'text': '179.155.116.155'},\n", + " 'page': {'id': 25491921,\n", + " 'title': 'Deutschlandlied-novocals.ogg.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Fixed a problem were the German subtitles was the Portuguese instead.',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,000\\nEinigkeit und Recht und Freiheit\\n\\n2\\n00:00:06,001 --> 00:00:11,800\\nFür das deutsche Vaterland!\\n\\n3\\n00:00:12,000 --> 00:00:17,000\\nDanach lasst uns alle streben,\\n\\n4\\n00:00:17,001 --> 00:00:22,800\\nBrüderlich mit Herz und Hand!\\n\\n5\\n00:00:23,000 --> 00:00:28,000\\nEinigkeit und Recht und Freiheit\\n\\n6\\n00:00:28,001 --> 00:00:33,800\\nSind des Glückes Unterpfand:\\n\\n7\\n00:00:34,000 --> 00:00:39,000\\nBlüh im Glanze dieses Glückes,\\n\\n8\\n00:00:39,001 --> 00:00:44,500\\nBlühe, deutsches Vaterland!\\n\\n9\\n00:00:44,600 --> 00:00:49,900\\nBlüh im Glanze dieses Glückes,\\n\\n10\\n00:00:50,000 --> 00:00:57,000\\nBlühe, deutsches Vaterland!',\n", + " 'bytes': 640,\n", + " 'sha1': 'bbglxn2nnj2ep5w3eri23o2z0abb43g',\n", + " 'parent_id': 152427370,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94148432,\n", + " 'timestamp': '2013-04-07T19:23:41Z',\n", + " 'user': {'id': 2095803, 'text': 'PaliGol'},\n", + " 'page': {'id': 25493616,\n", + " 'title': 'Editing basics - Uploading and adding images.webm.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:06,500\\nAquesta presentació ens acosta als principis bàsics per carregar imatges a Wikimedia Commons\\n\\n2\\n00:00:06,700 --> 00:00:09,200\\ni afegir-les als articles de la Viquipèdia.\\n\\n3\\n00:00:09,400 --> 00:00:13,500\\nPrenem com a exemple l\\'article \"Lent secundària\".\\n\\n4\\n00:00:13,700 --> 00:00:18,500\\nÉs un tema sobre fotografia que no disposa de cap foto. Solucionem-ho!\\n\\n5\\n00:00:18,700 --> 00:00:21,500\\nUtilitzarem una imatge original que he fet jo.\\n\\n6\\n00:00:21,700 --> 00:00:24,000\\nPer afegir-la a l\\'article, abans l\\'haurem de carregar\\n\\n7\\n00:00:24,100 --> 00:00:26,200\\na Wikimedia Commons.\\n\\n8\\n00:00:26,500 --> 00:00:27,200\\nEl primer és el primer.\\n\\n9\\n00:00:27,400 --> 00:00:31,000\\nWikimedia Commons només alberga obres originals fetes per un mateix,\\n\\n10\\n00:00:31,300 --> 00:00:36,000\\nobres d\\'altres que han estat explícitament alliberades sota una llicència compatible amb la Viquipèdia\\n\\n11\\n00:00:36,300 --> 00:00:40,500\\ni obres de domini públic que no estan protegides per cap dret d\\'autor.\\n\\n12\\n00:00:40,800 --> 00:00:42,000\\nPer carregar un fitxer,\\n\\n11\\n00:00:42,300 --> 00:00:45,000\\nentra a commons.wikimedia.org.\\n\\n12\\n00:00:45,300 --> 00:00:48,000\\nAssegura\\'t d\\'iniciar sessió, si és que encara no ho has fet.\\n\\n13\\n00:00:48,300 --> 00:00:50,300\\nUtilitzaràs el mateix compte que tens a la Viquipèdia.\\n\\n14\\n00:00:51,000 --> 00:00:53,600\\nPer començar, vés a l\\'Auxiliar de càrrega\\n\\n15\\n00:00:53,800 --> 00:00:56,800\\nclicant l\\'enllaç de l\\'esquerra «Carrega un fitxer».\\n\\n16\\n00:00:57,000 --> 00:01:00,000\\nLa primera pàgina de l\\'auxiliar és un còmic, protagonitzat per Puzzly,\\n\\n17\\n00:01:00,300 --> 00:01:04,000\\nque ens ensenya el que està permès a Commons i el que no.\\n\\n18\\n00:01:04,300 --> 00:01:08,000\\nSota el còmic, clica \"Següent\" per anar a la pàgina de càrrega.\\n\\n19\\n00:01:08,300 --> 00:01:14,000\\nEn clicar \"Escolliu un fitxer multimèdia per compartir\" podràs buscar un arxiu del teu ordinador per carregar.\\n\\n20\\n00:01:14,300 --> 00:01:18,000\\nUna vegada carregat, ha arribat l\\'hora de prosseguir amb l\\'alliberament de la llicència.\\n\\n21\\n00:01:18,300 --> 00:01:22,000\\nSi és un treball propi, només has de posar el teu nom o el teu nom d\\'usuari,\\n\\n22\\n00:01:22,300 --> 00:01:25,600\\n(tal i com desitgis ser acreditat quan la gent utilitzi la imatge)\\n23\\n00:01:25,800 --> 00:01:27,000\\ni prem Següent.\\n\\n24\\n00:01:27,300 --> 00:01:30,500\\nAra és l\\'hora d\\'afegir un títol i una descripció pel fitxer.\\n\\n25\\n00:01:30,700 --> 00:01:31,500\\nPer al títol\\n\\n26\\n00:01:31,700 --> 00:01:34,500\\nescull un text concís, descriptiu\\n\\n27\\n00:01:34,700 --> 00:01:37,700\\ni suficientment específic per diferenciar-lo d\\'imatges similars.\\n\\n28\\n00:01:37,900 --> 00:01:39,500\\nPer a la descripció,\\n\\n29\\n00:01:39,700 --> 00:01:42,000\\nafegeix tants detalls com sigui possible:\\n\\n30\\n00:01:42,200 --> 00:01:44,500\\non i com es va fer la imatge;\\n\\n31\\n00:01:44,700 --> 00:01:46,500\\nquin és el tema de la imatge;\\n\\n32\\n00:01:46,700 --> 00:01:49,000\\ni tots els detalls que puguin voler saber les persones que vegin la imatge.\\n\\n33\\n00:01:49,300 --> 00:01:53,000\\nTambé pots afegir la imatge a una o més categories de Wikimedia Commons\\n\\n33\\n00:01:53,300 --> 00:01:58,000\\n-- intenta navegar per imatges semblans per triar la categoria més adequada.\\n\\n34\\n00:01:58,300 --> 00:02:00,500\\nEn aquest punt, prem Següent per acabar la càrrega,\\n\\n35\\n00:02:00,700 --> 00:02:05,000\\nllavors la imatge ja hauria d\\'estar disponible per a usar-la a la Viquipèdia.\\n\\n36\\n00:02:05,300 --> 00:02:07,000\\nA l\\'última pàgina del tutorial, trobaràs\\n\\n37\\n00:02:07,300 --> 00:02:10,000\\ncodi per afegir la imatge a l\\'article de la Viquipèdia,\\n\\n38\\n00:02:10,300 --> 00:02:13,000\\ni la direcció URL per anar a la pàgina del fitxer,\\n\\n39\\n00:02:13,300 --> 00:02:17,000\\non podràs editar la descripció o carregar versions més recents d\\'aquest fitxer.\\n\\n40\\n00:02:17,300 --> 00:02:19,500\\nPots copiar el codi wiki\\n\\n41\\n00:02:19,700 --> 00:02:21,000\\ni enganxar-lo directament a l\\'article,\\n\\n42\\n00:02:21,300 --> 00:02:23,500\\ni llavors afegir una llegenda de la imatge.\\n\\n43\\n00:02:23,700 --> 00:02:27,000\\nLa manera bàsica d\\'afegir una imatge en un article és la següent:\\n\\n44\\n00:02:27,300 --> 00:02:29,200\\nobrir dos parèntesis quadrats, després\\n\\n45\\n00:02:29,400 --> 00:02:31,200\\ninserir el nom del fitxer de la imatge, després\\n\\n46\\n00:02:31,400 --> 00:02:36,200\\nuna barra vertical | i la paraula thumb -- la qual posa la imatge en el format estàndard de miniatura --\\n\\n47\\n00:02:36,500 --> 00:02:37,500\\ndesprés una altra barra vertical |,\\n\\n48\\n00:02:37,700 --> 00:02:39,000\\ni després el text de la imatge,\\n\\n47\\n00:02:39,200 --> 00:02:43,000\\nel qual hauria de ser explícit en relació amb el text de l\\'article que acompanya,\\n\\n47\\n00:02:43,200 --> 00:02:46,000\\ni finalment tancar els dos parèntesis quadrats.\\n\\n48\\n00:02:46,200 --> 00:02:48,000\\nUna vegada afegida la imatge,\\n\\n49\\n00:02:48,200 --> 00:02:50,000\\nposa un resum de la modificació, desa la pàgina\\n\\n50\\n00:02:50,200 --> 00:02:51,500\\ni ja està!\\n\\n51\\n00:02:51,700 --> 00:02:54,000\\nJa hem afegit una nova imatge a la Viquipèdia.\\n\\n52\\n00:02:54,500 --> 00:02:57,000\\nMoltes Gràcies i adéu!',\n", + " 'bytes': 5104,\n", + " 'sha1': 'ei6fomyp6cnetmmags96f1yctyi0lby',\n", + " 'parent_id': 94148166,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 633706696,\n", + " 'timestamp': '2022-02-28T18:08:59Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25514608,\n", + " 'title': 'NorthAmericanBusySignal.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'This is not a place for your opinion on the sound. Please consider to create account in Twitter to share the sound with any your thoughts on that. Thanks! — Undo revision 633700040 by [[Special:Contributions/96.5.120.250|96.5.120.250]] ([[User talk:96.5.120.250|talk]])',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,000\\n[Beep beep beep]',\n", + " 'bytes': 48,\n", + " 'sha1': 'jilrpcmrrccwp22lxtcr0jkrdzus9zn',\n", + " 'parent_id': 633700040,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94251676,\n", + " 'timestamp': '2013-04-09T11:23:47Z',\n", + " 'user': {'text': '62.132.128.114'},\n", + " 'page': {'id': 25522877,\n", + " 'title': 'Pl-stront.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:02,000 stront'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,000\\nstront',\n", + " 'bytes': 38,\n", + " 'sha1': '0earjv0x8axo6md5sosh96ispi0473g',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 335690408,\n", + " 'timestamp': '2019-01-21T07:31:27Z',\n", + " 'user': {'text': '58.222.50.195'},\n", + " 'page': {'id': 25526928,\n", + " 'title': 'Марш энтузиастов.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:09,000 --> 00:00:22,000\\nIn every day work of great building,\\nIn the merry rumble, flames and the peals,\\nHello, you country of heroes,\\nA country of dreamers, a country of thinkers.\\n\\n2\\n00:00:23,000 --> 00:00:35,500\\nAcross the steppe, across the forests,\\nFrom the tropics all the way to the pole,\\nYou spread out, my boundless homeland\\nMy indestructible land of birth.\\n\\n3\\n00:00:36,900 --> 00:01:05,000\\nOn sea or land, we know no obstacles,\\nWe fear not icebergs, not the clouds,\\nThe flame of our hearts, the banner of our country\\nWe will carry across worlds and ages!\\n\\n4\\n00:01:06,500 --> 00:01:18,500\\nIs it for us to stand in place?\\nWe are always right in our darings,\\nOur work is a matter of honor,\\nA matter of valor and a glorious exploit.\\n\\n5\\n00:01:19,000 --> 00:01:32,000\\nWhether you're leaning a work-bench,\\nOr cutting out stone from a wall,\\nA dream of wonderment, still unclear to you,\\nIs calling you ever ahead.\\n\\n6\\n00:01:33,900 --> 00:02:02,000\\nOn sea or land, we know no obstacles,\\nWe fear not icebergs, not the clouds,\\nThe flame of our hearts, the banner of our country\\nWe will carry across worlds and ages!\\n\\n7\\n00:02:03,900 --> 00:02:15,800\\nOur world was created wonderfully.\\nThe work of centuries has been done in years,\\nWe grasp our happiness by rights,\\nWe love with gusto, and sing like children.\\n\\n8\\n00:02:16,000 --> 00:02:29,000\\nAnd our stars of scarlet\\nGlitter, like newer before,\\nAbove all other countries, and the oceans\\nLike a dream that has come true.\\n\\n9\\n00:02:30,000 --> 00:03:00,000\\nOn sea or land, we know no obstacles,\\nWe fear not icebergs, not the clouds,\\nThe flame of our hearts, the banner of our country\\nWe will carry across worlds and ages!\",\n", + " 'bytes': 1670,\n", + " 'sha1': 'shll2a50dwr82visxyj1fylzaiwd8y4',\n", + " 'parent_id': 297398898,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94329094,\n", + " 'timestamp': '2013-04-10T20:46:05Z',\n", + " 'user': {'id': 578190, 'text': 'Palu'},\n", + " 'page': {'id': 25543393,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash (Polish language).ogv.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'new (translate: [[s:cs:Poselství polskému národu]])',\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDrazí přátelé,\\nvážení občané Polské republiky.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nJá i všichni občané Ruska\\njsme otřeseni strašnou tragédií,\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\ntragickou smrtí presidenta\\nPolské republiky Lecha Kaczyńského,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\njeho ženy Marie\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\na všech polských občanů\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nnacházejících se na palubě\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nletadla postiženého katastrofou.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nV těchto dnech jsme společně\\norganizovali smuteční slavnost v Katyni,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nspolečně jsme truchlili pro oběti totalitní éry.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nLech Kaczyński letěl do Ruska,\\naby vzdal osobně hold\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\npolským důstojníkům, kteří tam zahynuli\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\njako president\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\ni jako občan své země.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nVšichni Rusové se s vámi dělí o žal a smutek.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nSlibuji, že všechny okolnosti této tragédie\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nbudou vyšetřeny velmi pečlivě\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nv úzké spolupráci s polskou stranou.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nOsobně jsem zadal podrobné pokyny\\nvyšetřovacím orgánům.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nVe jménu ruského národa\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nvyjadřuji nejhlubší\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\na nejupřímnější soustrast\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\npolskému národu,\\n \\n23\\n00:01:20,197 --> 00:01:24,293\\npocit soucitu a podpory rodinám\\na blízkým obětí.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nV pondělí 12. dubna bude v Rusku\\nvyhlášen národní smutek.',\n", + " 'bytes': 1839,\n", + " 'sha1': 'fvzkuw9ihmdj7nwqiqopwpehzbqyhw0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 659544215,\n", + " 'timestamp': '2022-05-28T14:17:22Z',\n", + " 'user': {'id': 4975233, 'text': 'Mykhal'},\n", + " 'page': {'id': 25543570,\n", + " 'title': 'Dmitry Medvedev - 2010 Polish Air Force Tu-154 crash.ogv.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '−harmful whitespace',\n", + " 'text': '1\\n00:00:01,700 --> 00:00:06,160\\nDrazí přátelé,\\nvážení občané Polské republiky.\\n\\n2\\n00:00:06,596 --> 00:00:12,096\\nJá i všichni občané Ruska\\njsme otřeseni strašnou tragédií,\\n\\n3\\n00:00:12,096 --> 00:00:16,251\\ntragickou smrtí presidenta\\nPolské republiky Lecha Kaczyńského,\\n\\n4\\n00:00:16,251 --> 00:00:18,164\\njeho ženy Marie\\n\\n5\\n00:00:18,164 --> 00:00:19,967\\na všech polských občanů\\n\\n6\\n00:00:19,967 --> 00:00:22,137\\nnacházejících se na palubě\\n\\n7\\n00:00:22,137 --> 00:00:23,677\\nletadla postiženého katastrofou.\\n\\n8\\n00:00:25,505 --> 00:00:29,975\\nV těchto dnech jsme společně\\norganizovali smuteční slavnost v Katyni,\\n\\n9\\n00:00:29,975 --> 00:00:32,814\\nspolečně jsme truchlili pro oběti totalitní éry.\\n\\n10\\n00:00:34,569 --> 00:00:38,251\\nLech Kaczyński letěl do Ruska,\\naby vzdal osobně hold\\n\\n11\\n00:00:38,251 --> 00:00:41,004\\npolským důstojníkům, kteří tam zahynuli\\n\\n12\\n00:00:41,004 --> 00:00:42,919\\njako president\\n\\n13\\n00:00:42,919 --> 00:00:44,808\\ni jako občan své země.\\n\\n14\\n00:00:45,807 --> 00:00:49,784\\nVšichni Rusové se s vámi dělí o žal a smutek.\\n\\n15\\n00:00:51,243 --> 00:00:54,679\\nSlibuji, že všechny okolnosti této tragédie\\n\\n16\\n00:00:54,679 --> 00:00:58,489\\nbudou vyšetřeny velmi pečlivě\\n\\n17\\n00:00:58,489 --> 00:01:02,124\\nv úzké spolupráci s polskou stranou.\\n\\n18\\n00:01:04,132 --> 00:01:07,788\\nOsobně jsem zadal podrobné pokyny\\nvyšetřovacím orgánům.\\n\\n19\\n00:01:10,682 --> 00:01:12,943\\nVe jménu ruského národa\\n\\n20\\n00:01:12,943 --> 00:01:15,658\\nvyjadřuji nejhlubší\\n\\n21\\n00:01:15,658 --> 00:01:18,380\\na nejupřímnější soustrast\\n\\n22\\n00:01:18,380 --> 00:01:20,197\\npolskému národu,\\n\\n23\\n00:01:20,197 --> 00:01:24,293\\npocit soucitu a podpory rodinám\\na blízkým obětí.\\n\\n24\\n00:01:26,428 --> 00:01:32,071\\nV pondělí 12. dubna bude v Rusku\\nvyhlášen národní smutek.',\n", + " 'bytes': 1834,\n", + " 'sha1': 'mhd1dal8teu4qdfvzop49j2j8yd04wb',\n", + " 'parent_id': 94329669,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94409535,\n", + " 'timestamp': '2013-04-12T17:49:34Z',\n", + " 'user': {'text': '216.38.130.161'},\n", + " 'page': {'id': 25564911,\n", + " 'title': 'Unterstützen Sie Wikipedia.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,00\\nMein liebstes Wikipediawort? *Pfff.\\n\\n2\\n00:00:05,001 --> 00:00:09,00\\nESM – Europäischer Stabilitätsmechanismus\\n\\n3\\n00:00:09,001 --> 00:00:11,00\\nKoboldmakis\\n\\n4\\n00:00:11,001 --> 00:00:12,00\\nFukushima\\n\\n5\\n00:00:12,001 --> 00:00:14,00\\nUh! Lichtfeldkamera\\n\\n6\\n00:00:14,001 --> 00:00:16,00\\nPolymerase-Kettenreaktion\\n\\n7\\n00:00:16,001 --> 00:00:18,00\\nFußwurzelarthrose\\n\\n8\\n00:00:18,001 --> 00:00:20,00\\nWusste ich besser Bescheid als mein Hausarzt\\n\\n9\\n00:00:20,001 --> 00:00:24,00\\nDann ist man bei Fiskalpakt, bei Rettungsschirm\\n\\n10\\n00:00:24,001 --> 00:00:26,00\\nund am Ende ist man selber Experte\\n\\n11\\n00:00:26,001 --> 00:00:28,00\\nKaffeklatsch\\n\\n12\\n00:00:28,001 --> 00:00:30,00\\nIndigo-Kinder\\n\\n13\\n00:00:30,001 --> 00:00:31,00\\nAserbaidschan\\n\\n14\\n00:00:31,001 --> 00:00:33,30\\nIst halt so ein kleines *pff Ding\\n\\n15\\n00:00:33,301 --> 00:00:35,00\\nSocial Entrepreneur\\n\\n16\\n00:00:35,001 --> 00:00:38,30\\nMeine Eltern mussten nachschlagen, aber jetzt wissen sie, was ich tue\\n\\n17\\n00:00:38,301 --> 00:00:41,00\\nIch wusste gleich, dass mein Kind etwas Besonderes ist\\n\\n18\\n00:00:41,001 --> 00:00:44,00\\nVor allem hätte die Dimension gar nicht in eine Zeitung gepasst\\n\\n19\\n00:00:44,001 --> 00:00:47,00\\nWenn ich unterwegs bin, was wissen möchte, möchte ich es sofort wissen\\n\\n20\\n00:00:47,001 --> 00:00:51,00\\nBevor ich Fachliteratur kaufe, hol ich mir hier erst mal ein großen Überblick\\n\\n21\\n00:00:51,001 --> 00:00:53,00\\nHat mir beim Studium sehr geholfen\\n\\n22\\n00:00:53,001 --> 00:00:55,00\\nTut mir leid, mir fällt nichts ein.\\n\\n23\\n00:00:55,000 --> 00:00:58,00\\nIch benutze es jeden Tag. Es ist wie Frühstücken und Zähneputzen.\\n\\n24\\n00:00:58,001 --> 00:01:02,00\\nMal ehrlich. Können Sie sich eine Welt ohne Wikipedia vorstellen? \\n\\n25\\n00:01:03,001 --> 00:01:06,00\\nAlso, ich kann das nicht. Wikipedia ist so wichtig für uns alle. \\n\\n26\\n00:01:06,001 --> 00:01:08,00\\nWikipedia hilft uns, wenn wir Informationen brauchen. \\n\\n27\\n00:01:08,001 --> 00:01:12,00\\nHilft uns, wenn wir Wissen suchen. Aber Wikipedia ist nicht selbstverständlich. \\n\\n28\\n00:01:12,001 --> 00:01:17,00\\nWikipedia ist getragen von ehrenamtlichen, aber wir haben Kosten. \\n\\n29\\n00:01:17,001 --> 00:01:22,00\\nFür den Betrieb der Webseite, für die Entwicklung der Software, für Programme, rund um die Förderung Freien Wissens.\\n\\n30\\n00:01:22,001 --> 00:01:29,00\\nEbay nimmt Gebühren. Google und Facebook schalten Werbung. Warum macht das eigentlich Wikipedia nicht?\\n\\n31\\n00:01:29,001 --> 00:01:33,00\\nWir finanzieren uns über Spenden. Leser spenden für Wikipedia. Leser, wie sie. \\n\\n32\\n00:01:33,001 --> 00:01:38,00\\nUnd deswegen bitte ich sie heute, um ihre Spende für Wikipedia. \\n\\n33\\n00:01:38,001 --> 00:01:41,00\\nSorgen sie dafür, dass Wikipedia auch in Zukunft für uns da ist. \\n\\n34\\n00:01:41,001 --> 00:01:43,00\\nSeien sie jetzt für Wikipedia da. \\n\\n35\\n00:01:43,001 --> 00:01:45,00\\nDankeschön.\\n\\n35\\n00:01:45,001 --> 00:01:47,00\\n*Wikipedia soll kostenlos und unabhängig bleiben. Helfen sie mit.',\n", + " 'bytes': 2950,\n", + " 'sha1': 'hs9rfii9nt6wd3u6sj9kd08twg003q9',\n", + " 'parent_id': 94408864,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94475244,\n", + " 'timestamp': '2013-04-13T20:10:36Z',\n", + " 'user': {'id': 2656222, 'text': 'PiusImpavidus'},\n", + " 'page': {'id': 25578387,\n", + " 'title': 'Door toename automatisering in krantenbedrijf verdwijnt het oude zettersvak Weeknummer, 77-14 - Open Beelden - 13160.ogv.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'One word misheard',\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:03,000\\nDe automatisering in de dagbladwereld, waarbij\\n\\n2\\n00:00:03,000 --> 00:00:05,500\\nlood verdrongen wordt door de elektronica, leidt\\n\\n3\\n00:00:05,500 --> 00:00:08,000\\nop dit ogenblik tot ingrijpende veranderingen,\\n\\n4\\n00:00:08,000 --> 00:00:10,500\\nzowel op technisch gebied als voor het grafisch personeel.\\n\\n5\\n00:00:11,000 --> 00:00:14,000\\nHet oude ambacht wordt meer en meer verdrongen door de computer.\\n\\n6\\n00:00:15,000 --> 00:00:17,500\\nNog altijd begint het maken van een krant op de redactie,\\n\\n7\\n00:00:17,500 --> 00:00:20,000\\nwaar de meeste artikelen worden geschreven.\\n\\n8\\n00:00:20,000 --> 00:00:22,500\\nSedert de eeuwwisseling werden de teksten dan gezet\\n\\n9\\n00:00:22,500 --> 00:00:25,000\\nmet behulp van de Linotype zetmachine,\\n\\n10\\n00:00:25,000 --> 00:00:27,500\\nwaarin alle door zetter aangeslagen letters \\n\\n11\\n00:00:27,500 --> 00:00:30,000\\nonmiddelijk in loden regels worden gegoten\\n\\n12\\n00:00:30,000 --> 00:00:32,500\\nvolgens een vernuftig gietprocedé, dat zich\\n\\n13\\n00:00:32,500 --> 00:00:35,000\\nvoor een deel aan de waarneming onttrekt.\\n\\n14\\n00:00:40,500 --> 00:00:44,000\\nDe gegoten regels worden automatisch tot kolommen gevormd.\\n\\n15\\n00:00:46,000 --> 00:00:48,500\\nHoewel ook hier in de loop der tijd een automatisering\\n\\n16\\n00:00:48,500 --> 00:00:51,000\\nkwam met behulp van ponsbanden, moesten bijvoorbeeld\\n\\n17\\n00:00:51,000 --> 00:00:54,500\\nde grote kopletters nog altijd met de hand worden gezet.\\n\\n18\\n00:00:56,500 --> 00:00:59,000\\nDe rangschikking van koppen, artikelen en foto's\\n\\n19\\n00:00:59,000 --> 00:01:01,500\\nin de pagina's gebeurt door de opmakers.\\n\\n20\\n00:01:02,000 --> 00:01:04,500\\nDeze bezitten een grote vaardigheid in het\\n\\n21\\n00:01:04,500 --> 00:01:08,000\\nsnel lezen van teksten die in spiegelschrift en op de kop staan.\\n\\n22\\n00:01:12,000 --> 00:01:14,5000\\nDe correctie van ook maar één verkeerd gezette letter\\n\\n23\\n00:01:14,500 --> 00:01:17,500\\nvraagt de vervanging van minstens een hele regel.\\n\\n24\\n00:01:27,000 --> 00:01:29,500\\nEen in de computer gebrachte tekst kan met een druk\\n\\n25\\n00:01:29,500 --> 00:01:32,000\\nop een knop weer worden opgeroepen en aanvullingen,\\n\\n26\\n00:01:32,000 --> 00:01:34,500\\nopschuivingen of verbeteringen kunnen\\n\\n27\\n00:01:34,500 --> 00:01:37,000\\nmet grote snelheid worden aangebracht.\\n\\n28\\n00:01:43,000 --> 00:01:45,500\\nDe computer bestuurt een fotozetmachine,\\n\\n29\\n00:01:45,500 --> 00:01:48,000\\ndie kolommen en teksten, waaronder ook \\n\\n30\\n00:01:48,000 --> 00:01:50,500\\nde kopregels, met een snelheid van 150 tekens\\n\\n31\\n00:01:50,500 --> 00:01:53,500\\nper seconde op fotografisch papier afdrukt.\\n\\n32\\n00:01:56,000 --> 00:01:58,500\\nDe opmaker heeft alleen nog een mes nodig om de teksten\\n\\n33\\n00:01:58,500 --> 00:02:01,000\\nvan het inmiddels gegomde fotopapier op de gewenste\\n\\n34\\n00:02:01,000 --> 00:02:02,500\\nplaatsen aan te brengen.\\n\\n35\\n00:02:02,500 --> 00:02:05,000\\nUiteraard heeft de invoering van deze nieuwe techniek\\n\\n36\\n00:02:05,000 --> 00:02:07,500\\ngevolgen gehad voor de grafici van de oude school.\\n\\n37\\n00:02:07,500 --> 00:02:10,000\\nVoor sommigen betekende het vervroegde pensionering,\\n\\n38\\n00:02:10,000 --> 00:02:13,000\\nvoor velen omscholing naar een nieuw grafisch beroep.\\n\\n39\\n00:02:15,000 --> 00:02:17,500\\nNadat van elke complete pagina een fotonegatief is gemaakt\\n\\n40\\n00:02:17,500 --> 00:02:20,000\\nwordt dit langs fotografische weg overgebracht\\n\\n41\\n00:02:20,000 --> 00:02:22,500\\nop een laagje vloeibaar kunsthars.\\n\\n42\\n00:02:24,000 --> 00:02:27,000\\nDeze kunststof drukplaat wordt vervolgens gemonteerd op\\n\\n43\\n00:02:27,000 --> 00:02:31,500\\néén van de cilinders van de rotatiepers waarmee de krant gedrukt wordt.\\n\\n44\\n00:02:32,000 --> 00:02:34,500\\nDaar waar dagbladdrukkerijen in een overgangsfase verkeren\\n\\n45\\n00:02:34,500 --> 00:02:37,000\\ntreft men kunststof en loden drukplaten\\n\\n46\\n00:02:37,000 --> 00:02:39,500\\nvaak nog naast elkaar op de cilinders aan.\\n\\n47\\n00:02:39,500 --> 00:02:43,500\\nMaar het lood zal binnen afzienbare tijd overal verdwijnen.\\n\\n48\\n00:02:48,000 --> 00:02:50,500\\nDe fantastische snelheid van 60.000 kranten\\n\\n49\\n00:02:50,500 --> 00:02:53,000\\nper uur, waarmee deze pers een hele oplage in zeer\\n\\n50\\n00:02:53,000 --> 00:02:55,500\\nkorte tijd eruit gooit, accentueert de betekenis\\n\\n51\\n00:02:55,500 --> 00:02:58,500\\ndie de krantenwereld hecht aan snelheid.\\n\\n52\\n00:02:58,500 --> 00:03:01,000\\nDoor de nieuwe elektronische zet- en opmaaktechnieken\\n\\n53\\n00:03:01,000 --> 00:03:03,500\\nzal het laatste nieuws nu nog sneller\\n\\n54\\n00:03:03,500 --> 00:03:06,500\\nbij de lezers kunnen zijn.\",\n", + " 'bytes': 4463,\n", + " 'sha1': 'n53cv1hxaiaaxjygdlv5cbm54ztm9xj',\n", + " 'parent_id': 94471853,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94486283,\n", + " 'timestamp': '2013-04-14T01:00:31Z',\n", + " 'user': {'id': 2656222, 'text': 'PiusImpavidus'},\n", + " 'page': {'id': 25581273,\n", + " 'title': 'Door toename automatisering in krantenbedrijf verdwijnt het oude zettersvak Weeknummer, 77-14 - Open Beelden - 13160.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'correction',\n", + " 'text': '1\\n00:00:00,500 --> 00:00:03,000\\nThe automation in the newspaper world, where\\n\\n2\\n00:00:03,000 --> 00:00:05,500\\nlead is being replaced by electronics, leads\\n\\n3\\n00:00:05,500 --> 00:00:08,000\\nat this moment to far reaching changes, both in\\n\\n4\\n00:00:08,000 --> 00:00:10,500\\ntechnology and for the personnel in the printing business.\\n\\n5\\n00:00:11,000 --> 00:00:14,000\\nThe old handicraft is increasingly being replaced by the computer.\\n\\n6\\n00:00:15,000 --> 00:00:17,500\\nAs before the making of a newspaper begins at the\\n\\n7\\n00:00:17,500 --> 00:00:20,000\\neditorial office, where most of the articles are written.\\n\\n8\\n00:00:20,000 --> 00:00:22,500\\nSince the turn of the century the texts were typeset\\n\\n9\\n00:00:22,500 --> 00:00:25,000\\nwith the use of the Linotype typesetting machine,\\n\\n10\\n00:00:25,000 --> 00:00:27,500\\nin which all letters hit by the typesetter\\n\\n11\\n00:00:27,500 --> 00:00:30,000\\nare immediately cast into lead lines,\\n\\n12\\n00:00:30,000 --> 00:00:32,500\\naccording to an ingeneous casting process,\\n\\n13\\n00:00:32,500 --> 00:00:35,000\\nthat is partially hidden from view.\\n\\n14\\n00:00:40,500 --> 00:00:44,000\\nThe cast lines are automatically assembled to columns.\\n\\n15\\n00:00:46,000 --> 00:00:48,500\\nAlthough even here automation came in the course of time\\n\\n16\\n00:00:48,500 --> 00:00:51,000\\nwith the help of punched ribbons, the large title letters\\n\\n17\\n00:00:51,000 --> 00:00:54,500\\nstill had to be typeset manually.\\n\\n18\\n00:00:56,500 --> 00:00:59,000\\nThe ordering of heads, articles and photographs\\n\\n19\\n00:00:59,000 --> 00:01:01,500\\non the pages is performed by the lay-out men.\\n\\n20\\n00:01:02,000 --> 00:01:04,500\\nThese men possess a great skill in\\n\\n21\\n00:01:04,500 --> 00:01:08,000\\nquickly reading of texts which are mirrored and upside down.\\n\\n22\\n00:01:12,000 --> 00:01:14,5000\\nThe corrections of just one misplaced character\\n\\n23\\n00:01:14,500 --> 00:01:17,500\\nrequires the replacement of at least an entire line.\\n\\n23.5\\n00:01:23,000 --> 00:01:25,000\\nold typesetters profession disappears\\n\\n23.8\\n00:01:25,000 --> 00:01:27,000\\nyour newspaper is being typeset by a computer\\n\\n24\\n00:01:27,000 --> 00:01:29,500\\nA text that has been put into a computer can be\\n\\n25\\n00:01:29,500 --> 00:01:32,000\\nrecalled with a push on a button and additions,\\n\\n26\\n00:01:32,000 --> 00:01:34,500\\nmovements or corrections can be\\n\\n27\\n00:01:34,500 --> 00:01:37,000\\nperformed at hight speed.\\n\\n28\\n00:01:43,000 --> 00:01:45,500\\nThe computer controls a photo typesetting machine,\\n\\n29\\n00:01:45,500 --> 00:01:48,000\\nthat can print columns and texts, including\\n\\n30\\n00:01:48,000 --> 00:01:50,500\\nthe head lines, on photographic paper\\n\\n31\\n00:01:50,500 --> 00:01:53,500\\nat a speed of 150 characters per second.\\n\\n32\\n00:01:56,000 --> 00:01:58,500\\nThe lay-out man only needs a knive to put the texts from the\\n\\n33\\n00:01:58,500 --> 00:02:01,000\\nphotographic paper, that has been covered with a layer of\\n\\n34\\n00:02:01,000 --> 00:02:02,500\\ngum arabic, onto the right spot.\\n\\n35\\n00:02:02,500 --> 00:02:05,000\\nOf course the introduction of this new technique\\n\\n36\\n00:02:05,000 --> 00:02:07,500\\nhas had consequences for the old-school graphical designers.\\n\\n37\\n00:02:07,500 --> 00:02:10,000\\nFor some it meant early retirement, for many\\n\\n38\\n00:02:10,000 --> 00:02:13,000\\nretraining for a new graphical profession.\\n\\n39\\n00:02:15,000 --> 00:02:17,500\\nAfter a negative has been made of every complete page,\\n\\n40\\n00:02:17,500 --> 00:02:20,000\\nthis is transferred photographically onto\\n\\n41\\n00:02:20,000 --> 00:02:22,500\\na layer of liquid synthetic resin.\\n\\n42\\n00:02:24,000 --> 00:02:27,000\\nThis plastic printing sheet is then affixed on one of\\n\\n43\\n00:02:27,000 --> 00:02:31,500\\nthe cilinders of the rolling press used for printing the newspaper.\\n\\n44\\n00:02:32,000 --> 00:02:34,500\\nThere where the newspaper printing shops are in a transition phase\\n\\n45\\n00:02:34,500 --> 00:02:37,000\\none can often still find plastic and lead\\n\\n46\\n00:02:37,000 --> 00:02:39,500\\nprinting sheets next to each other on the cilinders.\\n\\n47\\n00:02:39,500 --> 00:02:43,500\\nBut lead will disappear from everywhere within the foreseeable future.\\n\\n48\\n00:02:48,000 --> 00:02:50,500\\nThe great rate of 60,000 newspapers per hour, at which\\n\\n49\\n00:02:50,500 --> 00:02:53,000\\nthis printing press turns out a complete edition in\\n\\n50\\n00:02:53,000 --> 00:02:55,500\\na very short time, signifies the care for speed\\n\\n51\\n00:02:55,500 --> 00:02:58,500\\nthat the newspaper community has.\\n\\n52\\n00:02:58,500 --> 00:03:01,000\\nDue to the new electronic typesetting and lay-out\\n\\n53\\n00:03:01,000 --> 00:03:03,500\\ntechniques the latest news will now reach\\n\\n54\\n00:03:03,500 --> 00:03:06,500\\nthe reader even faster.',\n", + " 'bytes': 4582,\n", + " 'sha1': 'smh6a7ap0d4toh5ntqui3bhgaetww0z',\n", + " 'parent_id': 94486251,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 668171080,\n", + " 'timestamp': '2022-06-25T00:56:43Z',\n", + " 'user': {'id': 10869468, 'text': '28daniel'},\n", + " 'page': {'id': 25604546,\n", + " 'title': 'HaydnGottErhalteFranzDenKaiserQuartetVersionPianoReduction.ogg.de-at.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,000\\nGott erhalte Franz, den Kaiser,(Jahr 1797 Version)\\nGott erhalte, Gott beschütze! (Jahr 1854 - 1918 Version)\\n\\n2\\n00:00:06,000 --> 00:00:12,000\\nUnsern guten Kaiser Franz!\\nUnsern Kaiser, unser Land!\\n\\n3\\n00:00:12,000 --> 00:00:18,000\\nLange lebe Franz, der Kaiser,\\nMächtig durch des Glaubens Stütze,\\n\\n4\\n00:00:18,000 --> 00:00:24,000\\nIn des Glückes hellstem Glanz!\\nFührt er uns mit weiser Hand!\\n\\n5\\n00:00:24,000 --> 00:00:30,000\\nIhm erblühen Lorbeerreiser\\nLasst uns seiner Väter Krone\\n\\n6\\n00:00:30,000 --> 00:00:36,000\\nWo er geht, zum Ehrenkranz!\\nSchirmen wider jeden Feind!\\n\\n7\\n00:00:36,000 --> 00:00:42,000\\nGott erhalte Franz, den Kaiser,\\nInnig bleibt mit Habsburgs Throne\\n\\n8\\n00:00:42,000 --> 00:00:48,000\\nUnsern guten Kaiser Franz!\\nÖsterreichs Geschick vereint!\\n\\n9\\n00:00:48,000 --> 00:00:54,000\\nGott erhalte Franz, den Kaiser,\\nInnig bleibt mit Habsburgs Throne\\n\\n10\\n00:00:54,000 --> 00:01:00,000\\nUnsern guten Kaiser Franz!\\nÖsterreichs Geschick vereint!',\n", + " 'bytes': 984,\n", + " 'sha1': '7b3ptii8nxkv6xp0ctz1vmvdnpz9ijz',\n", + " 'parent_id': 348748750,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 228871823,\n", + " 'timestamp': '2017-01-06T22:08:12Z',\n", + " 'user': {'id': 2073340, 'text': 'Jdx'},\n", + " 'page': {'id': 25626791,\n", + " 'title': 'Dial up modem noises.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/107.0.85.130|107.0.85.130]] ([[User talk:107.0.85.130|talk]]) to last revision by 212.219.59.228',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,190\\n(No signal)\\n\\n2\\n00:00:01,190 --> 00:00:02,190\\n(US Dial Tone)\\n\\n3\\n00:00:02,190 --> 00:00:04,100\\nDTMF: 1 (570)-234-0003\\n\\n4\\n00:00:26,600 --> 00:00:28,450\\n(No Signal)',\n", + " 'bytes': 192,\n", + " 'sha1': '8hclw8ya6r1s6b1tmenv67xwp4jsbif',\n", + " 'parent_id': 228772970,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 611701447,\n", + " 'timestamp': '2021-12-03T19:31:45Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25632073,\n", + " 'title': 'Pripyat 1986.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall subtitles update',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:01,520\\nAttention!\\n\\n2\\n00:00:01,554 --> 00:00:03,868\\nAttention. Attention!\\n\\n3\\n00:00:03,917 --> 00:00:06,267\\nAttention. Attention!\\n\\n4\\n00:00:09,000 --> 00:00:11,496\\nAttention. Attention!\\n\\n5\\n00:00:12,000 --> 00:00:14,308\\nDear comrades,\\n\\n6\\n00:00:14,794 --> 00:00:18,509\\nthe City Counsel of People's Deputies\\n\\n7\\n00:00:18,542 --> 00:00:22,058\\ninforms that due to an accident\\n\\n8\\n00:00:22,070 --> 00:00:27,197\\nat Chernobyl nuclear power plant\\nin the city of Pripyat\\n\\n9\\n00:00:27,220 --> 00:00:32,779\\nadverse radiation levels have evolved.\\n\\n10\\n00:00:33,506 --> 00:00:37,263\\nParty and Soviet bodies,\\n\\n11\\n00:00:37,300 --> 00:00:42,306\\nmilitary units are taking\\nnecessary measures.\\n\\n12\\n00:00:43,000 --> 00:00:49,142\\nHowever, in order to provide\\ncomplete safety for the people,\\n\\n13\\n00:00:49,175 --> 00:00:52,145\\nespecially for children,\\n\\n14\\n00:00:52,199 --> 00:00:59,446\\nit is necessary to temporarily\\nevacuate city residents\\n\\n15\\n00:00:59,497 --> 00:01:03,298\\nto evacuation points in Kyiv oblast.\\n\\n16\\n00:01:04,000 --> 00:01:07,752\\nIn order to do this,\\nto each apartment house\\n\\n17\\n00:01:07,785 --> 00:01:11,702\\ntoday, April 27,\\n\\n18\\n00:01:11,752 --> 00:01:16,236\\nstarting at 2:00 p.m.\\n\\n19\\n00:01:16,285 --> 00:01:20,226\\nstarting at 2:00 p.m.\\n\\n20\\n00:01:20,280 --> 00:01:22,969\\nbuses will be provided\\n\\n21\\n00:01:23,018 --> 00:01:29,467\\nescorted by Militsiya\\nand members of the city's Ispolkom.\\n\\n22\\n00:01:30,439 --> 00:01:35,252\\nIt is recommended to take with you: IDs,\\n\\n23\\n00:01:35,286 --> 00:01:38,207\\nbasic necessities\\n\\n24\\n00:01:38,243 --> 00:01:42,829\\nand foodstuff for the first time.\\n\\n25\\n00:01:44,000 --> 00:01:48,512\\nHeads of enterprises and public offices\\n\\n26\\n00:01:48,538 --> 00:01:54,093\\nhave designated vital personnel who stay\\n\\n27\\n00:01:54,118 --> 00:01:58,500\\nto ensure the normal\\nfunctioning of the city.\\n\\n28\\n00:01:59,217 --> 00:02:03,132\\nAll apartment houses during the evacuation\\n\\n29\\n00:02:03,165 --> 00:02:06,754\\nwill be guarded by Militsiya.\\n\\n30\\n00:02:07,223 --> 00:02:11,633\\nComrades, while temporarily\\nleaving your houses\\n\\n31\\n00:02:11,667 --> 00:02:14,827\\nplease, do not forget to close windows,\\n\\n32\\n00:02:14,894 --> 00:02:18,458\\nto turn off all electrical\\nand gas appliances,\\n\\n33\\n00:02:18,520 --> 00:02:21,547\\nto close water taps.\\n\\n34\\n00:02:21,848 --> 00:02:24,732\\nPlease remain calm,\\n\\n35\\n00:02:24,765 --> 00:02:31,218\\nbe organized and maintain order\\nwhen executing the temporary evacuation.\",\n", + " 'bytes': 2414,\n", + " 'sha1': 'gpf4x1vblhfvr8f9ji966388o08irzc',\n", + " 'parent_id': 266647051,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95019100,\n", + " 'timestamp': '2013-04-23T16:30:46Z',\n", + " 'user': {'text': '50.89.243.20'},\n", + " 'page': {'id': 25635056,\n", + " 'title': 'President Obama speaks on explosions in Boston (2013-04-15).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Spelling error',\n", + " 'text': \"1\\n00:00:00,595 --> 00:00:02,995\\nGood afternoon, everybody.\\n\\n2\\n00:00:04,205 --> 00:00:07,160\\nEarlier today, I was briefed\\nby my homeland security team\\n\\n3\\n00:00:07,161 --> 00:00:09,163\\non the events in Boston.\\n\\n4\\n00:00:09,163 --> 00:00:13,004\\nWe're continuing to monitor \\nand respond to the situation as it unfolds,\\n\\n5\\n00:00:13,816 --> 00:00:16,836\\nand I've directed the full resources\\nof the federal government\\n\\n6\\n00:00:16,837 --> 00:00:19,338\\nto help state and local authorities \\nprotect our people,\\n\\n7\\n00:00:20,223 --> 00:00:23,218\\nincrease security around \\nthe United States as necessary,\\n\\n8\\n00:00:23,319 --> 00:00:25,347\\nand investigate what happened.\\n\\n9\\n00:00:25,857 --> 00:00:27,946\\nThe American people \\nwill say a prayer for Boston tonight,\\n\\n10\\n00:00:27,946 --> 00:00:31,495\\nand Michelle and I send our\\ndeepest thoughts and prayers\\n\\n11\\n00:00:31,496 --> 00:00:37,048\\nto the families of the victims \\nin the wake of this senseless loss.\\n\\n12\\n00:00:37,048 --> 00:00:39,092\\nWe don't yet have all the answers.\\n\\n13\\n00:00:39,488 --> 00:00:43,455\\nBut we do know that multiple people\\nhave been wounded, some gravely,\\n\\n14\\n00:00:43,456 --> 00:00:45,869\\nin the explosions at the Boston Marathon.\\n\\n15\\n00:00:45,869 --> 00:00:52,099\\nI've spoken to FBI Director Muller, \\nand Secretary of Homeland Security Napolitano,\\n\\n16\\n00:00:52,099 --> 00:00:56,680\\nand they're mobilising the appropriate resources \\nto investigate and to respond.\\n\\n17\\n00:00:56,680 --> 00:01:01,815\\nI've updated leaders of Congress in both parties,\\nand we reaffirmed that, on days like this,\\n\\n18\\n00:01:01,815 --> 00:01:03,595\\nthere are no Republicans or Democrats,\\n\\n19\\n00:01:03,896 --> 00:01:06,678\\nwe are Americans, \\nunited in concern for our fellow citizens.\\n\\n20\\n00:01:07,078 --> 00:01:11,890\\nI've also spoken with Governor Patrick, \\nand Mayor Menino,\\n\\n21\\n00:01:11,890 --> 00:01:15,877\\nand made it clear that they have\\nevery single federal resource necessary\\n\\n22\\n00:01:15,878 --> 00:01:18,553\\nto care for the victims\\nand counsel the families.\\n\\n23\\n00:01:18,553 --> 00:01:23,495\\nAnd above all, I made clear to them\\nthat all Americans stand with the people of Boston.\\n\\n24\\n00:01:23,495 --> 00:01:29,868\\nBoston police, firefighters, and first responders,\\nas well as the National Guard,\\n\\n25\\n00:01:29,868 --> 00:01:33,778\\nresponded heroically, \\nand continue to do so as we speak.\\n\\n26\\n00:01:33,778 --> 00:01:39,162\\nIt's a reminder that so many Americans \\nserve and sacrifice on our behalf every single day\\n\\n27\\n00:01:39,162 --> 00:01:43,632\\nwithout regard to their own safety,\\nin dangerous and difficult circumstances,\\n\\n28\\n00:01:43,632 --> 00:01:50,640\\nand we salute all those who assisted in responding \\nso quickly and professionally to this tragedy.\\n\\n29\\n00:01:50,640 --> 00:01:54,002\\nWe still do not know who did this or why,\\n\\n30\\n00:01:54,002 --> 00:01:58,300\\nand people shouldn't jump to conclusions\\nbefore we have all the facts.\\n\\n31\\n00:01:58,300 --> 00:02:02,405\\nBut, make no mistake -\\nwe will get to the bottom of this.\\n\\n32\\n00:02:02,405 --> 00:02:06,869\\nAnd we will find out who did this,\\nwe'll find out why they did this.\\n\\n33\\n00:02:06,869 --> 00:02:12,420\\nAny responsible individuals,\\nany responsible groups,\\n\\n34\\n00:02:12,420 --> 00:02:15,308\\nwill feel the full weight of justice.\\n\\n35\\n00:02:15,608 --> 00:02:20,147\\nToday is a holiday in Massachusetts.\\nPatriots' Day.\\n\\n36\\n00:02:20,147 --> 00:02:25,585\\nIt's a day that celebrates\\nthe free and fiercely independent spirit\\n\\n37\\n00:02:25,585 --> 00:02:29,856\\nthat this great American city of Boston \\nhas reflected from the earliest days of our nation.\\n\\n38\\n00:02:29,856 --> 00:02:32,855\\nAnd it's a day that draws the world\\nto Boston's streets,\\n\\n39\\n00:02:32,855 --> 00:02:35,599\\nin a spirit of friendly competition.\\n\\n40\\n00:02:35,599 --> 00:02:40,830\\nBoston is a tough and resilient town,\\nso are its people,\\n\\n41\\n00:02:41,030 --> 00:02:44,005\\nI'm supremely confident that\\nBostonians will pull together,\\n\\n42\\n00:02:44,005 --> 00:02:47,296\\ntake care of each other,\\nand move forward as one proud city,\\n\\n43\\n00:02:47,296 --> 00:02:53,097\\nand as they do, the American people will be with them,\\nevery single step of the way.\\n\\n44\\n00:02:53,097 --> 00:02:56,714\\nYou should anticipate that,\\nas we get more information,\\n\\n45\\n00:02:56,714 --> 00:03:00,696\\nour teams will provide you briefings;\\n\\n46\\n00:03:00,696 --> 00:03:04,271\\nwe're still in the investigation stage at this point,\\n\\n47\\n00:03:04,271 --> 00:03:06,356\\nbut I just want to reiterate:\\n\\n48\\n00:03:06,356 --> 00:03:10,542\\nWe will find out who did this, \\nand we will hold them accountable.\\n\\n49\\n00:03:11,586 --> 00:03:13,586\\nThank you very much.\",\n", + " 'bytes': 4581,\n", + " 'sha1': 'f0mzt09lchnpyobx1rvwcazet8pke5h',\n", + " 'parent_id': 94678990,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94683104,\n", + " 'timestamp': '2013-04-17T16:10:51Z',\n", + " 'user': {'text': '212.122.223.68'},\n", + " 'page': {'id': 25636738,\n", + " 'title': 'Deutschlandlied-novocals.ogg.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,400\\nJedność i prawo i wolność\\n\\n2\\n00:00:06,900 --> 00:00:11,700\\nDla niemieckiej ojczyzny,\\n\\n3\\n00:00:11,900 --> 00:00:17,700\\nDo tego wszyscy dążmy\\n\\n4\\n00:00:17,900 --> 00:00:22,700\\nPo bratersku, sercem i czynem.\\n\\n5\\n00:00:22,900 --> 00:00:28,400\\nJedność i prawo i wolność\\n\\n6\\n00:00:28,700 --> 00:00:33,800\\nSą gwarancją szczęścia.\\n\\n7\\n00:00:33,900 --> 00:00:39,500\\nKwitnij w blasku tego szczęścia\\n\\n8\\n00:00:39,700 --> 00:00:44,600\\nKwitnij, niemiecka ojczyzno',\n", + " 'bytes': 493,\n", + " 'sha1': 'd5kizivvj2wpwh1kr87fj4y0rjnnmfb',\n", + " 'parent_id': 94683050,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94755373,\n", + " 'timestamp': '2013-04-19T00:02:26Z',\n", + " 'user': {'text': '81.36.252.169'},\n", + " 'page': {'id': 25659610,\n", + " 'title': 'President Obama on Death of Osama bin Laden.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,704 --> 00:00:02,175\\nBuenas tardes\\n\\n2\\n00:00:02,175 --> 00:00:06,952\\nEsta noche, puedo informar al pueblo estadounidense y al mundo\\n\\n3\\n00:00:06,952 --> 00:00:11,3\\nque los Estados Unidos ha llevado a cabo una operación que mató a Osama bin Laden\\n\\n4\\n00:00:11,3 --> 00:00:13,672\\nEl líder de Al-Qaeda\\n\\n5\\n00:00:13,672 --> 00:00:21,359\\ny el terrorista que fue responsable de la muerte de miles de personas inocentes, mujeres, y niños.\\n\\n6\\n00:00:21,359 --> 00:00:25,204\\nQue fue hace casi 10 años que el brillante día de septiembre se oscureció.\\n\\n7\\n00:00:25,204 --> 00:00:29,216\\npor el peor ataque contra el pueblo estadounidense de nuestra historia.\\n\\n8\\n00:00:29,216 --> 00:00:33,994\\nLas imágenes del 9/11 están grabadas en nuestra memoria nacional.\\n\\n9\\n00:00:33,994 --> 00:00:38,775\\nAviones secuestrados que atraviesan las nubes en el cielo de Septiembre\\n\\n10\\n00:00:38,775 --> 00:00:41,784\\nel colapso de las torres gemelas en el suelo\\n\\n11\\n00:00:41,784 --> 00:00:45,059\\nhumo negro arriba del Pentágono\\n\\n12\\n00:00:45,059 --> 00:00:49,47\\nlos restos del vuelo 93 en Shanksville, Pennsylvania\\n\\n13\\n00:00:49,47 --> 00:00:55,554\\ndonde las acciones heroicas de los ciudadanos guardan aún más angustia y destrucción\\n\\n14\\n00:00:55,554 --> 00:01:00,301\\nSin embargo, sabemos que las peores imágenes son aquellas que eran invisibles al mundo\\n\\n15\\n00:01:00,301 --> 00:01:03,175\\nla silla vacía en la mesa\\n\\n16\\n00:01:03,175 --> 00:01:07,355\\nde los niños que se vieron forzados a crecer sin su madre o su padre\\n\\n17\\n00:01:07,355 --> 00:01:12,534\\npadres que no saben la sensación del abrazo de su hijo\\n\\n18\\n00:01:12,534 --> 00:01:16,279\\ncasi tres mil ciudadanos tomados de nosotros\\n\\n19\\n00:01:16,279 --> 00:01:19,79\\ndejando un enorme agujero en nuestros corazones\\n\\n20\\n00:01:19,79 --> 00:01:22,998\\nEn el 11 de Septiembre de 2001\\n\\n21\\n00:01:22,998 --> 00:01:24,933\\nen nuestro tiempo de aflicción\\n\\n22\\n00:01:24,933 --> 00:01:27,41\\nEl pueblo de Estados Unidos se reunió\\n\\n23\\n00:01:27,41 --> 00:01:29,248\\nOfrecimos a nuestros vecinos una mano\\n\\n24\\n00:01:29,248 --> 00:01:32,255\\ny ofrecimos a los heridos nuestra sangre\\n\\n25\\n00:01:32,255 --> 00:01:35,465\\nReafirmamos nuestros lazos entre sí\\n\\n26\\n00:01:35,465 --> 00:01:39,007\\ny nuestro amor por la comunidad y el país\\n\\n27\\n00:01:39,007 --> 00:01:41,749\\nEse día, sin importar de dónde venimos\\n\\n28\\n00:01:41,749 --> 00:01:43,753\\nlo que a Dios oramos\\n\\n29\\n00:01:43,753 --> 00:01:46,262\\nde qué raza o grupo étnico éramos,\\n\\n30\\n00:01:46,262 --> 00:01:50,741\\nnos unimos como una familia americana\\n\\n31\\n00:01:50,741 --> 00:01:54,752\\nTambién estábamos unidos en nuestra determinación de proteger a nuestra nación\\n\\n32\\n00:01:54,752 --> 00:02:00,332\\ny para llevar a los que cometieron este brutal ataque a la justicia\\n\\n33\\n00:02:00,332 --> 00:02:04,378\\nAprendimos rápidamente que los ataques del 9/11 se llevaron a cabo por Al-Qaeda.\\n\\n34\\n00:02:04,378 --> 00:02:06,984\\nuna organización encabezada por Osama bin Laden\\n\\n35\\n00:02:06,984 --> 00:02:09,826\\nque había declarado abiertamente la guerra a Estados Unidos\\n\\n36\\n00:02:09,826 --> 00:02:14,506\\ny se ha comprometido a matar inocentes en nuestro país y en todo el mundo\\n\\n37\\n00:02:14,506 --> 00:02:17,346\\nY así nos fuimos a la guerra contra Al-Qaeda\\n\\n38\\n00:02:17,346 --> 00:02:22,694\\npara proteger a nuestros ciudadanos, nuestros amigos y nuestros aliados.\\n\\n39\\n00:02:22,694 --> 00:02:27,91\\nEn los últimos diez años, gracias al trabajo incansable y heroico de nuestro ejército\\n\\n40\\n00:02:27,91 --> 00:02:32,856\\ny nuestros profesionales de la lucha contra el terrorismo, hemos dado grandes pasos en ese esfuerzo\\n\\n41\\n00:02:32,856 --> 00:02:37,233\\nhemos alterado los ataques terroristas y fortalecido nuestra defensa de la patria\\n\\n42\\n00:02:37,233 --> 00:02:39,809\\nEn Afganistán, hemos eliminado el gobierno Talibán\\n\\n43\\n00:02:39,809 --> 00:02:43,789\\nque había dado bin Laden y Al-Qaeda refugio seguro y apoyo\\n\\n44\\n00:02:43,789 --> 00:02:46,595\\nY todo el mundo, trabajamos con nuestros amigos y aliados\\n\\n45\\n00:02:46,595 --> 00:02:49,536\\npara capturar o matar a decenas de terroristas de Al-Qaeda\\n\\n46\\n00:02:49,536 --> 00:02:54,315\\nentre ellos varios que fueron parte de la parcela 11/9\\n\\n47\\n00:02:54,315 --> 00:02:57,323\\nSin embargo, Osama bin Laden evitó ser capturado\\n\\n48\\n00:02:57,323 --> 00:03:01,301\\ny escapó a través de la frontera Afgana hacia Pakistán\\n\\n49\\n00:03:01,301 --> 00:03:04,543\\nMientras tanto, Al-Qaeda continuó operando desde esa frontera\\n\\n50\\n00:03:04,543 --> 00:03:09,123\\ny operar a través de sus filiales en todo el mundo\\n\\n51\\n00:03:09,123 --> 00:03:11,496\\ny así poco después de asumir el cargo\\n\\n52\\n00:03:11,496 --> 00:03:15,039\\nDirigí Leon Panetta, el director de la CIA,\\n\\n53\\n00:03:15,039 --> 00:03:20,756\\npara hacer la matanza o captura de Bin Laden la primera prioridad de nuestra guerra contra Al-Qaeda\\n\\n54\\n00:03:20,756 --> 00:03:26,071\\nincluso mientras continuamos nuestros esfuerzos más amplios para desbaratar, desmantelar y derrotar a su red\\n\\n55\\n00:03:26,071 --> 00:03:33,256\\nLuego, en agosto pasado, después de años de arduo trabajo por nuestra comunidad de inteligencia\\n\\n56\\n00:03:33,256 --> 00:03:36,7\\nMe informaron sobre una posible pista a Bin Laden\\n\\n57\\n00:03:36,7 --> 00:03:41,646\\nEstaba lejos de ser cierta, y tomó muchos meses para ejecutar este hilo a tierra\\n\\n58\\n00:03:41,646 --> 00:03:44,055\\nMe reuní varias veces con mi equipo de seguridad nacional\\n\\n59\\n00:03:44,055 --> 00:03:48,231\\ncomo hemos desarrollado más información acerca de la posibilidad de que habíamos ubicado a bin Laden\\n\\n60\\n00:03:48,231 --> 00:03:52,41\\nescondido dentro de un recinto en el interior de Pakistán\\n\\n61\\n00:03:52,41 --> 00:03:58,227\\nY, por último, la semana pasada, decidí que teníamos la suficiente inteligencia para tomar medidas\\n\\n62\\n00:03:58,227 --> 00:04:03,942\\ny autorizó una operación para atrapar a Osama bin Laden y llevarlo ante la justicia\\n\\n63\\n00:04:03,942 --> 00:04:10,124\\nHoy, bajo mi dirección, los Estados Unidos lanzaron una operación dirigida contra ese compuesto\\n\\n64\\n00:04:10,124 --> 00:04:13,268\\nen Abbottabad, Pakistán.\\n\\n65\\n00:04:13,268 --> 00:04:18,783\\nEl pequeño equipo de estadounidenses llevó a cabo la operación con extraordinario coraje y capacidad.\\n\\n66\\n00:04:18,783 --> 00:04:21,323\\nNingún estadounidense resultó perjudicado.\\n\\n67\\n00:04:21,323 --> 00:04:24,799\\nSe encargaron de evitar víctimas civiles\\n\\n68\\n00:04:24,799 --> 00:04:27,573\\nDespués de un tiroteo, mataron a Osama bin Laden\\n\\n69\\n00:04:27,573 --> 00:04:31,283\\ny tomaron custodia de su cuerpo.\\n\\n70\\n00:04:31,283 --> 00:04:36,063\\nDurante más de dos décadas, Bin Laden ha sido el líder y símbolo de Al-Qaeda\\n\\n71\\n00:04:36,063 --> 00:04:41,011\\ny ha continuado los ataques complot contra nuestro país y nuestros amigos y aliados.\\n\\n72\\n00:04:41,011 --> 00:04:44,585\\nLa muerte de Bin Laden marca el logro más significativo hasta la fecha\\n\\n73\\n00:04:44,585 --> 00:04:47,729\\nen el esfuerzo de nuestras naciones para derrotar a Al-Qaeda\\n\\n74\\n00:04:47,729 --> 00:04:50,772\\nSin embargo, su muerte no marca el final de nuestro esfuerzo\\n\\n75\\n00:04:50,772 --> 00:04:54,982\\nNo hay duda de que Al-Qaeda continuará con los ataques en contra de nosotros\\n\\n76\\n00:04:54,982 --> 00:05:00,799\\ndebemos, y lo haremos, permanecer vigilantes en casa y en el extranjero\\n\\n77\\n00:05:00,799 --> 00:05:08,254\\nAl hacerlo, también debemos reafirmar que los Estados Unidos no está y nunca estará en guerra con el Islam.\\n\\n78\\n00:05:08,254 --> 00:05:13,802\\nHe dejado claro, al igual que lo hizo el presidente Bush poco después del 9/11,\\n\\n79\\n00:05:13,802 --> 00:05:18,078\\nque nuestra guerra no es contra el Islam, que Bin Laden no era un líder musulmán\\n\\n80\\n00:05:18,078 --> 00:05:21,022\\nera un asesino en masa de musulmanes.\\n\\n81\\n00:05:21,188 --> 00:05:24,096\\nEn efecto, Al-Qaeda sacrificaron decenas de musulmanes en muchos países\\n\\n82\\n00:05:24,096 --> 00:05:26,169\\nincluyendo la nuestra.\\n\\n83\\n00:05:26,169 --> 00:05:31,441\\nAsí que su desaparición debe ser bienvenida por todos los que creen en la paz y la dignidad humana.\\n\\n84\\n00:05:32,395 --> 00:05:34,706\\nCon los años, he manifestado en repetidas ocasiones\\n\\n85\\n00:05:34,706 --> 00:05:39,654\\nque íbamos a tomar medidas dentro de Pakistán si sabíamos que Bin Laden estaba.\\n\\n86\\n00:05:40,146 --> 00:05:41,925\\nEso es lo que hemos hecho.\\n\\n87\\n00:05:42,079 --> 00:05:47,628\\nPero es importante señalar que nuestra cooperación antiterrorista con Pakistán ayudó a llevarnos a bin Laden\\n\\n88\\n00:05:48,397 --> 00:05:50,789\\ny el compuesto donde se escondía.\\n\\n89\\n00:05:51,004 --> 00:05:54,3\\nDe hecho, Bin Laden había declarado la guerra a Pakistán, así\\n\\n90\\n00:05:54,73 --> 00:05:57,613\\ny ordenó ataques contra el pueblo Paquistaní.\\n\\n91\\n00:05:57,89 --> 00:06:04,658\\nEsta noche, me llamó el presidente Zardari, y mi equipo también ha hablado con sus homólogos paquistaníes.\\n\\n92\\n00:06:05,043 --> 00:06:09,455\\nEstán de acuerdo en que este es un día bueno e histórico para nuestras dos naciones\\n\\n93\\n00:06:09,455 --> 00:06:13,399\\ny en el futuro, es esencial que Pakistán continúe\\n\\n94\\n00:06:13,399 --> 00:06:17,711\\na unirse a nosotros en la lucha contra al-Qaeda y sus afiliados.\\n\\n95\\n00:06:18,48 --> 00:06:21,074\\nEl pueblo estadounidense no eligió esta lucha.\\n\\n96\\n00:06:21,074 --> 00:06:23,208\\nLlegó a nuestras costas.\\n\\n97\\n00:06:23,716 --> 00:06:27,358\\nTodo comenzó con la masacre sin sentido de nuestros ciudadanos.\\n\\n98\\n00:06:27,911 --> 00:06:32,914\\nDespués de casi diez años de servicio, lucha y sacrificio\\n\\n99\\n00:06:33,36 --> 00:06:35,831\\nque conocemos bien los costos de la guerra.\\n\\n100\\n00:06:36,831 --> 00:06:43,95\\nEstos esfuerzos pesan sobre mí cada vez que, como Comandante en Jefe, tiene que firmar una carta a una familia que ha perdido a un ser querido\\n\\n101\\n00:06:43,95 --> 00:06:48,897\\no mirar a los ojos a un miembro del servicio que ha sido herido gravemente.\\n\\n102\\n00:06:48,897 --> 00:06:51,803\\nAsí que los estadounidenses entienden los costos de la guerra.\\n\\n103\\n00:06:52,203 --> 00:06:56,684\\nSin embargo, como país, nunca vamos a tolerar nuestra seguridad está amenazada\\n\\n104\\n00:06:56,684 --> 00:06:59,979\\nni permanecer de brazos cruzados cuando nuestra gente ha sido asesinada.\\n\\n105\\n00:07:00,441 --> 00:07:03,907\\nSeremos implacables en la defensa de nuestros ciudadanos\\n\\n106\\n00:07:03,907 --> 00:07:06,245\\ny nuestros amigos y aliados.\\n\\n107\\n00:07:06,245 --> 00:07:09,352\\nSeremos fieles a los valores que nos hacen ser quienes somos\\n\\n108\\n00:07:09,967 --> 00:07:16,273\\ny en noches como ésta, podemos decir a las familias que han perdido a sus seres queridos con el terrorismo de al-Qaeda:\\n\\n109\\n00:07:16,273 --> 00:07:19,114\\nSe ha hecho justicia.\\n\\n110\\n00:07:20,252 --> 00:07:25,523\\nHoy damos gracias a los innumerables profesionales de inteligencia y lucha contra el terrorismo que han trabajado incansablemente\\n\\n111\\n00:07:25,523 --> 00:07:27,894\\npara lograr este resultado.\\n\\n112\\n00:07:28,063 --> 00:07:32,617\\nEl pueblo estadounidense no ve su trabajo, ni saben sus nombres\\n\\n113\\n00:07:32,986 --> 00:07:39,295\\npero esta noche, sienten la satisfacción de su trabajo y el resultado de su búsqueda de la justicia.\\n\\n114\\n00:07:39,772 --> 00:07:42,952\\nDamos gracias por los hombres que llevaron a cabo esta operación\\n\\n115\\n00:07:42,952 --> 00:07:47,92\\nya que ejemplifican el profesionalismo, el patriotismo y valentía sin igual\\n\\n116\\n00:07:47,92 --> 00:07:50,417\\nde los que sirven a nuestro país.\\n\\n117\\n00:07:50,417 --> 00:07:57,12\\nY son parte de una generación que ha llevado la parte más pesada de la carga desde ese día de septiembre.\\n\\n\\n118\\n00:07:57,12 --> 00:08:01,448\\nPor último, quisiera decir a las familias que perdieron a seres queridos el 11/9\\n\\n119\\n00:08:01,833 --> 00:08:04,416\\nque nunca hemos olvidado su pérdida\\n\\n120\\n00:08:04,723 --> 00:08:08,47\\nni flaqueado en nuestro compromiso para ver que hacemos lo que sea necesario\\n\\n121\\n00:08:08,47 --> 00:08:11,342\\npara prevenir otro ataque a nuestras costas.\\n\\n122\\n00:08:11,727 --> 00:08:17,41\\nY esta noche, vamos a pensar de nuevo a la sensación de unidad que prevaleció en el 9/11.\\n\\n123\\n00:08:17,81 --> 00:08:21,13\\nSé que tiene, a veces, deshilachados.\\n\\n124\\n00:08:21,884 --> 00:08:25,896\\nSin embargo, el logro de hoy es un testimonio de la grandeza de nuestro país\\n\\n125\\n00:08:26,203 --> 00:08:28,932\\ny la determinación del pueblo estadounidense.\\n\\n126\\n00:08:29,916 --> 00:08:33,387\\nLa causa de asegurar nuestro país no está completa, pero\\n\\n127\\n00:08:33,387 --> 00:08:39,049\\nesta noche nos recuerda una vez más que Estados Unidos puede hacer lo que ponemos a nuestra mente.\\n\\n128\\n00:08:39,941 --> 00:08:41,758\\nEsa es la historia de nuestra historia.\\n\\n129\\n00:08:42,512 --> 00:08:45,185\\nYa sea por la búsqueda de la prosperidad para nuestra gente\\n\\n130\\n00:08:45,569 --> 00:08:48,443\\no la lucha por la igualdad de todos los ciudadanos\\n\\n131\\n00:08:49,043 --> 00:08:52,389\\nnuestro compromiso de defender nuestros valores en el extranjero\\n\\n132\\n00:08:52,774 --> 00:08:56,231\\ny nuestros sacrificios para hacer del mundo un lugar más seguro.\\n\\n133\\n00:08:57,492 --> 00:09:01,964\\nRecordemos que podemos hacer estas cosas no sólo por la riqueza o el poder\\n\\n134\\n00:09:02,21 --> 00:09:04,787\\nsino por lo que somos.\\n\\n135\\n00:09:04,987 --> 00:09:06,24\\nUna nación\\n\\n136\\n00:09:06,378 --> 00:09:07,382\\nbajo Dios\\n\\n137\\n00:09:07,782 --> 00:09:08,849\\nindivisible\\n\\n138\\n00:09:09,018 --> 00:09:09,988\\ncon la libertad\\n\\n139\\n00:09:09,988 --> 00:09:11,91\\ny la justicia para todos.\\n\\n140\\n00:09:12,649 --> 00:09:13,945\\nGracias.\\n\\n141\\n00:09:13,945 --> 00:09:15,193\\nQue Dios los bendiga.\\n\\n142\\n00:09:15,193 --> 00:09:17,008\\nY que Dios bendiga a los Estados Unidos de América.',\n", + " 'bytes': 13540,\n", + " 'sha1': '0k4kbrr0gbm5fyxd3ynaatywzyxsnq8',\n", + " 'parent_id': 94754366,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96651582,\n", + " 'timestamp': '2013-05-21T10:29:23Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 25661915,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.hr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nzastava s pogledom na Orebić\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\nplaninski lanac gledan s vrha Pelješca prema istoku\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić sa Vižanice\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić sa sjeverozapada\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nPelješac gledan sa kanala\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\ngolet iznad Orebića\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\ngolet iznad Orebića\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\nKapetani i škoji sa Bile ploce\\n\\n9\\n00:00:36,000 --> 00:00:39,800\\nOskorušno s Vitera\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda s Vitera\\n\\n11\\n00:00:44,000 --> 00:00:47,800\\nKapetani sa zapada\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nVinogradi na jugu\\n\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj sa zapada\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nDonja Nakovana sa Gradine\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nKorcula sa gradine\\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nNa Supinama iznad Mokala\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić sa Mokala\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomje i Pijavicino sa zapada\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nsamostan u Podgorju sa sjeveroistoka\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nsamostan u Podgorju sa sjeverozapada\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić sa Supina\\n\\n22\\n00:01:28,000 --> 00:01:31,800\\nMokalo i Postup sa Supina\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\nKlanac Pratnjice\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić sa sjevera\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić sa sjeverozapada\\n\\n26\\n00:01:44,000 --> 00:01:47,800\\nbrdo Žrnovnica\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić sa sjevera\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nPogled na Orebić izmedu 2 stine\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nVižanica-jugoistocna padina\\n\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\nUvala Divna\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nPelješka Duba gledana s vrha brda\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nBarinski vrhovi i Žrnovska Banja u pozadini\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\npogled s Pelješca na zapad\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nGornja Vrucica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton i solana\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nDonja Vrucica s juga (Mokalo)\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nSamostan u Kuni gledan s juga\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nzapušteni vinogradi gledani s Vlaštice\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina sa zapada\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRuskovici sa sjevera\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nselo Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nselo Lovište\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\npadina Vlaštice\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\nkriž na vrhu Pelješca',\n", + " 'bytes': 2723,\n", + " 'sha1': 'le8t65rl971oaoc7e3x41opjy6qahy7',\n", + " 'parent_id': 94767074,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96651345,\n", + " 'timestamp': '2013-05-21T10:24:15Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 25664720,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\nPanorama photos of Pelješac. Pictures taken in period 2009-2013\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nFlag with a view towards Orebić\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\nmountain range viewed from the top of the peninsula to the east\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić from Vižanica\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić from the northwest\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nPeninsula as viewed from the channel\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\nbarren land above Orebić\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\nbarren land above Orebić\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\n\"Kapetani\" and islands from \"Bila ploča\" (white panel)\\n\\n9\\n00:00:36,000 --> 00:00:39,800\\nOskorušno from Viter\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda from Viter\\n\\n11\\n00:00:44,000 --> 00:00:47,800\\n\"Kapetani\" from the West\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nVineyards on the south\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj from the west\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nLower Nakovana from Gradina\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nKorčula from Gradina\\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nOn Supine above Mokalo\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić from Mokalo\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomje and Pijavičino from the west\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nmonastery in Podgorje from the northeast \\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nmonastery in Podgorje from the northwest \\n\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić from Supine\\n\\n22\\n00:01:28,000 --> 00:01:31,800\\nMokalo and Postup from Supine\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\nridge Pratnjice\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić from the north\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić from the northwest\\n\\n26\\n00:01:44,000 --> 00:01:47,800\\nHill Žrnovnica\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić from the north\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nView of Orebić between 2 rocks\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nVižanica-southeast slopes\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\nbay of Divna\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nPelješka Duba viewed from the summit of Pelješac\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nBarinski peaks and Žrnovska Banja in background\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\nview from the peninsula to the west\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nGornja Vrućica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton and salt works\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nDonja Vrućica from south (Mokalo range)\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nMonastery in Kuna Pelješka viewed from the south\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nneglected vineyards seen from Vlaštica\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina from the west\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRuskovići from the north\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nvillage of Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nvillage of Lovište\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nslopes of Vlaštica\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\ncross on the top of Pelješac',\n", + " 'bytes': 2997,\n", + " 'sha1': '41wwao6d164lhx1ysmay8g4uw507v5n',\n", + " 'parent_id': 96443395,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784377,\n", + " 'timestamp': '2013-04-19T13:26:03Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665915,\n", + " 'title': 'What is Bitcoin?.webm.ar.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,195 --> 00:00:01,250 ما هو البتكوين ؟ 1 00:00:01,488 --> 00:00:04,999 بتكوين هو أول عملة رقمية لامركزية 2 ...'\",\n", + " 'text': '0\\n00:00:00,195 --> 00:00:01,250\\nما هو البتكوين ؟\\n\\n1\\n00:00:01,488 --> 00:00:04,999\\nبتكوين هو أول عملة رقمية لامركزية\\n\\n2\\n00:00:05,039 --> 00:00:06,555\\nالبتكوين هو عملة رقمية\\n\\n3\\n00:00:06,605 --> 00:00:07,656\\nيمكنك إرسالها عبر الإنترنت\\n\\n4\\n00:00:07,969 --> 00:00:09,179\\nمقارنة بالبدائل الأخرى\\n\\n5\\n00:00:09,179 --> 00:00:11,328\\nتتمتع البتكوين بعدد من المزايا\\n\\n6\\n00:00:11,563 --> 00:00:13,998\\nيتم نقل البتكوين بشكل مباشر من شخص إلى آخر\\n\\n7\\n00:00:14,048 --> 00:00:14,648\\nعبر الإنترنت\\n\\n8\\n00:00:14,698 --> 00:00:15,781\\nبدون المرور عبر بنك\\n\\n9\\n00:00:15,831 --> 00:00:16,756\\nأو دار مقاصة\\n\\n10\\n00:00:17,070 --> 00:00:18,632\\nكنتيجة, الرسوم أقل بكثير\\n\\n11\\n00:00:18,682 --> 00:00:20,195\\nيمكن إستخدامها في أي دولة\\n\\n12\\n00:00:20,245 --> 00:00:21,651\\nلا يمكن تجميد حسابك\\n\\n13\\n00:00:21,651 --> 00:00:22,771\\nولا توجد أي شروط للإستخدام\\n\\n14\\n00:00:22,821 --> 00:00:24,023\\nأو حدود إعتباطية على المبالغ المستخدمة\\n\\n15\\n00:00:25,703 --> 00:00:27,651\\nدعونا نلقي نظرة على كيفية العمل\\n\\n16\\n00:00:27,833 --> 00:00:29,921\\nيتم توليد البتكوين في كل أنحاء الإنترنت\\n\\n17\\n00:00:29,972 --> 00:00:33,407\\nبواسطة أي شخص يستخدم برنامج مجانى يسمى\\nب\"مستخرج البتكوين\"\\n\\n18\\n00:00:33,457 --> 00:00:35,279\\nيتطلب إستخراج البتكوين قدر محدد من العمل\\n\\n19\\n00:00:35,279 --> 00:00:36,661\\nللعثور على كل مجموعة من البتكوين\\n\\n20\\n00:00:36,986 --> 00:00:39,279\\nتقوم الشبكة بتحديد قدر العمل المطلوب تلقائياَ\\n\\n21\\n00:00:39,279 --> 00:00:43,194\\nبحيث يتم توليد البتكوين بمعدل محدود وسهل التنبؤ به\\n\\n22\\n00:00:44,084 --> 00:00:46,330\\nيتم تخزين عملات البتكوين الخاصة بك في محفظتك الرقمية\\n\\n23\\n00:00:46,330 --> 00:00:49,055\\nوهو نظام مألوف لمستخدمي الخدمات المصرفية عبر الإنترنت\\n\\n24\\n00:00:49,105 --> 00:00:50,450\\nعندما تقوم بإرسال بتكوين\\n\\n25\\n00:00:50,501 --> 00:00:52,190\\nتتم إضافة توقيع إلكتروني\\n\\n26\\n00:00:52,482 --> 00:00:53,458\\nبعد دقائق\\n\\n27\\n00:00:53,509 --> 00:00:55,688\\nيقوم أحد برامج مستخرج البتكوين بمراجعة المعاملة\\n\\n28\\n00:00:55,696 --> 00:00:58,251\\nويتم تخزينها في الشبكة بدون تسجيل أي بيانات شخصية\\nوبشكل لا يسمح بمسحها\\n\\n29\\n00:00:58,353 --> 00:01:00,702\\nبرنامج البتكوين مفتوح المصدر بالكامل\\n\\n30\\n00:01:00,752 --> 00:01:02,671\\nو يمكن لأي شخص مراجعة المصدر\\n\\n31\\n00:01:02,883 --> 00:01:04,505\\nتأثير البتكوين على المعاملات المالية\\n\\n32\\n00:01:04,504 --> 00:01:06,604\\nيماثل تأثير الإنترنت على النشر\\n\\n33\\n00:01:06,783 --> 00:01:08,898\\nعند توافر سوق عالمية متاحة للجميع\\n\\n34\\n00:01:09,016 --> 00:01:10,836\\nتزدهر الأفكار المتميزة\\n\\n35\\n00:01:11,633 --> 00:01:14,890\\nدعونا ننظر إلى بعض الأمثلة على الإستخدامات الحالية البتكوين\\n\\n36\\n00:01:15,125 --> 00:01:16,847\\nيمكنك شراء ألعاب الفيديو\\n\\n37\\n00:01:16,892 --> 00:01:17,878\\nهدايا\\n\\n38\\n00:01:17,908 --> 00:01:18,612\\nكتب\\n\\n39\\n00:01:18,649 --> 00:01:19,470\\nخوادم\\n\\n40\\n00:01:19,656 --> 00:01:21,462\\nأو حتى جوارب مصنوعة من وبر الألبكة\\n\\n41\\n00:01:21,552 --> 00:01:23,209\\nهناك عدد من أسواق الصرف\\n\\n42\\n00:01:23,209 --> 00:01:24,470\\nيمكنك إستخدامها لتحويل البتكوين الخاص بك\\n\\n43\\n00:01:24,470 --> 00:01:25,073\\nإلى دولار أمريكي\\n\\n44\\n00:01:25,073 --> 00:01:25,503\\nيورو\\n\\n45\\n00:01:25,504 --> 00:01:26,237\\nو عملات أخرى\\n\\n46\\n00:01:26,237 --> 00:01:29,976\\nالبتكوين طريقة ممتازة للشركات الصغيرة و الأعمال الحرة\\nللحصول على عملاء\\n\\n47\\n00:01:30,147 --> 00:01:32,304\\nلا توجد أي تكلفة للبدء بقبول البتكوين\\n\\n48\\n00:01:32,304 --> 00:01:33,768\\nجميع المعاملات نهائية و بلا رسوم\\n\\n49\\n00:01:33,768 --> 00:01:36,383\\nو ستحصل على عملاء أكثر من مستخدمي البتكوين\\n\\n50\\n00:01:37,023 --> 00:01:38,976\\nللحصول على البتكوين الأولى لك, و لمزيد من المعلومات\\n\\n51\\n00:01:38,977 --> 00:01:41,386\\nزر موقع\\nweusecoins.com',\n", + " 'bytes': 4767,\n", + " 'sha1': '9kfu0wscuy9ojo08o28kdb5ufph7928',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784379,\n", + " 'timestamp': '2013-04-19T13:26:05Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665917,\n", + " 'title': 'What is Bitcoin?.webm.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Que es Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin es la primera 2 00:00:02,902 --> 00:00:04,968 moneda digital descentra...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nQue es Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin es la primera\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\nmoneda digital descentralitzada.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nEls bitcoins son monedes digitals\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nque pots enviar\\na través d\\'Internet.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nComparat amb la resta\\nd\\'alternatives,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nBitcoin té nombrosos\\navantatges.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nEls bitcoins son transferits\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\ndirectament de persona\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\na persona\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\na través de la xarxa\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nsense pasar\\nper un banc\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\no un altre intermediari.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nAixó significa que les comissions\\nsón molt més petites,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\npots utilitzar-ho\\na qualsevol país,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nel teu compte no pot\\nser congelat\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\ni no hi han\\nprerequisits\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\no límits arbitraris.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nMirem com funciona!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nEls bitcoins son generats\\na tot Internet\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nper cualsevol\\namb un programa gratuït\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nanomenat \"Bitcoin miner\".\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nCrear bitcoins requereix\\nuna certa quantitat de treball\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nper cada bloc de monedes.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nAquesta quantitat\\ns\\'adjusta automaticament\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\nper la xarxa\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nper tal que els bitcoins\\nsempre siguin creats\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\na un ratio predictible\\ny limitat.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nEls teus bitcoins es guardan\\na la teva cartera digital\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nque et resultarà familiar\\nsi utilitzes banca digital.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nQuan transfereixes bitcoins,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nuna firma electrònica\\nes afegida.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nPasats uns minuts\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nla transacció es\\nverificada per un \"miner\"\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\ni es permanent i\\nanonimament enmagatzemada\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\nper la xarxa.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nEl software de Bitcoin es\\ncompletament obert\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\ni qualsevol pot\\nrevisar el codi.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin està\\ncanviant les finances\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nde la mateixa manera que la web\\nha canviat el periodisme.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nQuan qualsevol\\nte accés\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\nal mercat global,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nfloreixen grans idees.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nMirem\\nalguns exemples\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nde com els bitcoins\\ns\\'estan utilitzan avui en dia:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nPots comprar\\nvideojocs,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\nregals,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nllibres,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nservidors\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\ni mitjons d\\'alpaca.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nExisteixen diverses cases de canvi\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\non pots intercanviar\\nels teus bitcoins\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\nper dòlars,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neuros\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\ni més.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nels bitcoins son\\nuna gran manera\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\nper que petits negocis\\ni autònoms\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\nrebin publicitat.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nNo costa res\\ncomençar a acceptar-los,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nno hi ha càrrecs ni comissions\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\ni rebràs\\nnegoci adicional\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nde la economia Bitcoin.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nPels teus primers bitcoins i\\nmés informació, visita:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4087,\n", + " 'sha1': '2axbwixgo91bm3opl7pn2xu0as243nr',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784381,\n", + " 'timestamp': '2013-04-19T13:26:07Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665918,\n", + " 'title': 'What is Bitcoin?.webm.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Co je Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin je první 2 00:00:02,902 --> 00:00:04,968 decentralizovaná elektronick...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nCo je Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin je první\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\ndecentralizovaná elektronická měna.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcoiny jsou digitální mince\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nkteré můžete posílat\\nskrz Internet.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nVe srovnání s ostatními\\nalternativami,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nmají Bitcoiny\\nněkolik výhod.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoiny lze převádět\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\npřímo od člověka\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\nke člověku\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nskrze Internet\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nbez nutností\\nvyužívat banku\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\nnebo jiného prostředníka.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nTo znamená, že poplatky\\njsou mnohem nižší,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nmůžete jimi platit\\nve všech zemích světa,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nVáš účet nemůže být zmrazen\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\na neexistují žádné omezení\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\nnebo zbytečné limity.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nPojďme se podívat, jak to celé funguje!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nBitcoiny jsou vytvářeny\\nnapříč celým Internetem\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nlidmi, kteří provozují\\nvolně dostupnou aplikaci\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nzvanou Bitcoin miner.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nPro nalezení každé sady mincí\\nvyžaduje těžení\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nurčité množsví práce.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nToto množství je\\nautomaticky upravováno\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\nsamotnou sítí tak,\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\naby byly Bitcoiny\\nvždy vytvářeny\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\nv předem známé\\na omezené míře.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nVaše Bitcoiny jsou uloženy\\nv elektronické peněžence,\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nkterá je velmi podobná\\nběžnému online bankovnictví.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nKdyž převádíte Bitcoiny,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nk příkazu se přidá\\ndigitální podpis.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nPo pár minutách\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nje příkaz zpracován\\nBitcoin minerem\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\na je trvale\\na anonymně uložen\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\ndo sítě.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nZdrojové kódy Bitcoin aplikace\\njsou zcela otevřeny,\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\ntakže aplikaci může\\nkdokoliv zkontrolovat.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin zcela mění\\nsvět financí\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nstejným způsobem, jakým web\\nzměnil způsob komunikace.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nPokud může mít\\nna globální trh\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\npřístup opravdu kdokoliv,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nzačnou vzniknout skvělé nápady.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nPojďme se podívat\\nna pár příkladů,\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\njak jsou již dnes\\nBitcoiny používány:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nMůžete si za ně objednat\\npočítačové hry,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\ndárky,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nknihy,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\npočítače\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\na ponožky z alpaky.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nExistuje několik směnáren\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\nkde můžete vyměnit Bitcoiny\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\nza dolary,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neura\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\na další.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nBitcoiny stojí za pozornost\\n\\n56\\n00:01:27,410 --> 00:01:30,146\\npředevším drobným podnikatelům\\na nezávislým pracovníkům.\\n\\n57\\n00:01:30,388 --> 00:01:32,346\\nZačít přijímat Bitcoiny\\nnestojí vůbec nic,\\n\\n58\\n00:01:32,378 --> 00:01:33,713\\nnejsou zde žádné poplatky\\nnebo smluvní dodatky.\\n\\n59\\n00:01:33,745 --> 00:01:35,419\\nMůžete však získát\\nzcela nové klienty\\n\\n60\\n00:01:35,420 --> 00:01:36,774\\nz rozvíjející se Bitcoin ekonomiky.\\n\\n61\\n00:01:36,985 --> 00:01:39,295\\nPro Vaše první Bitcoiny\\na více informací, navštivte:\\n\\n62\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4259,\n", + " 'sha1': '70twa5euwkc5w10pfaql507wd63hnyd',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784382,\n", + " 'timestamp': '2013-04-19T13:26:08Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665919,\n", + " 'title': 'What is Bitcoin?.webm.da.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Hvad er Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin er den første 2 00:00:02,902 --> 00:00:04,968 decentraliserede digit...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nHvad er Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin er den første\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\ndecentraliserede digitale valuta.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcoins er digitale mønter\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\ndu kan sende\\nover internettet.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nSammenlignet med\\nalternativerne,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nhar Bitcoins en række\\nfordele.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoins overføres\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\ndirekte fra person\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\ntil person\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nvia nettet\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nuden at gå\\ngennem en bank\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\neller et clearingkontor.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nDet betyder, at gebyrerne\\ner meget lavere,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nat du kan bruge dem\\ni alle lande,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\ndin konto kan\\nikke fryses,\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\nog der er ingen krav\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\neller arbitrære grænser.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nLad os se,\\nhvordan det virker!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nBitcoins genereres\\noveralt på internettet\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\naf enhver, der\\nkører et gratis program\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nkaldet en Bitcoin-miner.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nAt minere kræver en\\nbestemt mængde arbejde\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nfor hver blok af mønter.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nDenne mængde\\njusteres automatisk\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\naf netværket,\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nsåledes Bitcoins\\naltid skabes\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\ni et forudsigeligt\\nog begrænset tempo.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nDine Bitcoins opbevares\\ni din digitale pung,\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nsom måske ser bekendt ud,\\nhvis du allerede bruger netbank.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nNår du overfører Bitcoins,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\ntilføjes en\\nelektronisk signatur.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nEfter et par minutter\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nbliver transaktionen\\nbekræftet af en minør\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nog permanent og\\nanonymt gemt\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\ni netværket.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nBitcoin-softwaren er\\nfuldstændig open source,\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\nog enhver kan\\ntjekke koden efter.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin er ved at \\nændre finansverdenen,\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\npå samme måde som internettet \\nændrede udgivelse af eget materiale.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nNår alle\\nhar adgang\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\ntil et globalt marked,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nblomstrer gode idéer.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nLad os se\\nnogle eksempler på,\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nhvordan Bitcoins\\nallerede bruges i dag:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nDu kan købe\\ncomputerspil,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\ngaver,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nbøger,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nservere\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\nog alpaca-sokker.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nDer findes adskillige valutabørser\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\nhvor du kan handle\\ndine Bitcoins\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\nfor dollar,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neuro\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\nmed mere.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nBitcoins er\\nen rigtig god måde\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\nfor små virksomheder\\nog freelancere\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\nat blive bemærket på.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nDet koster ingenting at\\nbegynde at tage imod dem,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nder er ingen tilbageførsler\\neller gebyrer,\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\nog du får\\nflere kunder\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nfra Bitcoin-økonomien.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nFå dine første Bitcoins samt\\nmere information på:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4036,\n", + " 'sha1': 'a3z8tew3u9yqe6vds92an09hyxai92b',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784384,\n", + " 'timestamp': '2013-04-19T13:26:09Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665921,\n", + " 'title': 'What is Bitcoin?.webm.nl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Wat is Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin is de eerste 2 00:00:02,902 --> 00:00:04,968 decentrale, digitale munt...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nWat is Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin is de eerste\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\ndecentrale, digitale munteenheid.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcoins zijn digitale munten\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\ndie je kan versturen\\nvia het Internet.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nVergeleken met andere\\nalternatieven\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nhebben Bitcoins een\\naantal voordelen.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoins worden direct verstuurd,\\n\\n8\\n00:00:12,750 --> 00:00:13,800\\nvan persoon naar persoon,\\n\\n9\\n00:00:13,992 --> 00:00:14,744\\nvia het internet.\\n\\n10\\n00:00:14,759 --> 00:00:15,797\\nZonder tussenkomst van een bank,\\n\\n11\\n00:00:15,798 --> 00:00:16,880\\nof andere centrale instantie.\\n\\n12\\n00:00:17,145 --> 00:00:18,786\\nDe transactiekosten zijn\\nhierdoor erg laag,\\n\\n13\\n00:00:18,831 --> 00:00:20,316\\nje kan ze in elk land gebruiken,\\n\\n14\\n00:00:20,339 --> 00:00:21,706\\nje rekening kan niet geblokkeerd worden,\\n\\n15\\n00:00:21,792 --> 00:00:22,893\\nen er zijn geen voorwaarden,\\n\\n16\\n00:00:22,933 --> 00:00:23,950\\nof limieten.\\n\\n17\\n00:00:25,952 --> 00:00:27,585\\nLaten we eens kijken hoe het werkt!\\n\\n18\\n00:00:27,795 --> 00:00:29,880\\nBitcoins worden gegenereerd op het internet\\n\\n19\\n00:00:29,935 --> 00:00:31,599\\ndoor iedereen die de gratis\\n\\n20\\n00:00:31,650 --> 00:00:33,000\\nBitcoin miner software gebruikt.\\n\\n21\\n00:00:33,445 --> 00:00:35,224\\nMining kost een bepaalde \\nhoeveelheid werk\\n\\n22\\n00:00:35,239 --> 00:00:36,693\\nvoor elke gegenereerde Bitcoin.\\n\\n23\\n00:00:36,968 --> 00:00:38,250\\nDe hoeveelheid gegenereerde \\nBitcoins wordt automatisch\\n\\n24\\n00:00:38,273 --> 00:00:39,750\\ndoor het netwerk aangepast,\\n\\n25\\n00:00:39,773 --> 00:00:41,300\\nzodat er nooit teveel of te weinig\\n\\n26\\n00:00:41,350 --> 00:00:43,310\\nBitcoins worden aangemaakt.\\n\\n27\\n00:00:44,146 --> 00:00:46,370\\nJe Bitcoins worden opgeslagen\\nin je digitale portemonnee,\\n\\n28\\n00:00:46,503 --> 00:00:49,096\\ndat komt je misschien bekend \\nvoor van internet-bankieren.\\n\\n29\\n00:00:49,222 --> 00:00:50,409\\nAls je Bitcoins verstuurt\\n\\n30\\n00:00:50,456 --> 00:00:52,292\\nwordt er een digitale handtekening\\naan de transactie toegevoegd.\\n\\n31\\n00:00:52,550 --> 00:00:53,413\\nNa een paar minuten\\n\\n32\\n00:00:53,446 --> 00:00:55,464\\nwordt de transactie gecontroleerd\\ndoor een Bitcoin miner\\n\\n33\\n00:00:55,566 --> 00:00:57,071\\nen permanent en anomien opgeslagen\\n\\n34\\n00:00:57,072 --> 00:00:58,237\\nin het Bitcoin netwerk.\\n\\n35\\n00:00:58,301 --> 00:01:00,652\\nDe Bitcoin software is open source\\n\\n36\\n00:01:00,704 --> 00:01:02,439\\ndus iedereen kan de broncode bekijken.\\n\\n37\\n00:01:02,924 --> 00:01:04,541\\nBitcoin verandert de financiele wereld\\n\\n38\\n00:01:04,563 --> 00:01:06,607\\nzoals het internet de\\nuitgeverijen heeft wakker geschud.\\n\\n39\\n00:01:06,818 --> 00:01:08,014\\nAls iedereen toegang heeft\\n\\n40\\n00:01:08,015 --> 00:01:09,060\\ntot een globale markt,\\n\\n41\\n00:01:09,146 --> 00:01:10,966\\nkrijgen ideeen de vrije ruimte.\\n\\n42\\n00:01:11,624 --> 00:01:12,698\\nLaten we eens kijken\\n\\n43\\n00:01:12,706 --> 00:01:15,069\\nhoe je Bitcoins nu al kan gebruiken:\\n\\n44\\n00:01:15,201 --> 00:01:16,895\\nJe kan er videogames mee kopen,\\n\\n45\\n00:01:16,913 --> 00:01:17,676\\nkadootjes,\\n\\n46\\n00:01:17,811 --> 00:01:18,374\\nboeken,\\n\\n47\\n00:01:18,474 --> 00:01:19,365\\nservers,\\n\\n48\\n00:01:19,623 --> 00:01:21,411\\nen zelfs alpaca wollen sokken.\\n\\n49\\n00:01:21,498 --> 00:01:23,200\\nEr zijn meerdere Bitcoin exchanges\\n\\n50\\n00:01:23,208 --> 00:01:24,411\\nwaar je Bitcoins kan verhandelen:\\n\\n51\\n00:01:24,427 --> 00:01:24,990\\nVoor dollars,\\n\\n52\\n00:01:24,997 --> 00:01:25,466\\neuros,\\n\\n53\\n00:01:25,490 --> 00:01:25,997\\nen meer.\\n\\n54\\n00:01:26,295 --> 00:01:27,394\\nBitcoins zijn een goede manier\\n\\n55\\n00:01:27,410 --> 00:01:29,033\\nvoor kleine bedrijven\\nen freelancers\\n\\n56\\n00:01:29,050 --> 00:01:30,146\\nom op te vallen.\\n\\n57\\n00:01:30,146 --> 00:01:32,745\\nBitcoin transacties zijn kosteloos\\nen kunnen niet teruggedraaid worden,\\n\\n58\\n00:01:32,745 --> 00:01:33,745\\ner zijn geen transactiekosten,\\n\\n59\\n00:01:33,745 --> 00:01:35,419\\nen de Bitcoin economie zelf\\n\\n60\\n00:01:35,420 --> 00:01:36,774\\nzorgt weer voor extra inkomsten.\\n\\n61\\n00:01:36,985 --> 00:01:39,295\\nVoor je eerste Bitcoins en \\nmeer informatie bezoek:\\n\\n62\\n00:01:39,312 --> 00:01:40,750\\nweusecoins.com\\n\\n63\\n00:01:40,750 --> 00:01:50,000\\nVertaling: www.Bitcoinspot.nl\\n -',\n", + " 'bytes': 4238,\n", + " 'sha1': 'ay6zxtnjw1japhn8idx8o681nw9qaxv',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784385,\n", + " 'timestamp': '2013-04-19T13:26:11Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665922,\n", + " 'title': 'What is Bitcoin?.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 What is Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin is the first 2 00:00:02,902 --> 00:00:04,968 decentralized digital cu...'\",\n", + " 'text': \"0\\n00:00:00,210 --> 00:00:01,546\\nWhat is Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin is the first\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\ndecentralized digital currency.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcoins are digital coins\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nyou can send\\nthrough the Internet.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nCompared to other\\nalternatives,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nBitcoins have a number\\nof advantages.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoins are transferred\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\ndirectly from person\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\nto person\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nvia the net\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nwithout going\\nthrough a bank\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\nor clearinghouse.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nThis means that the fees\\nare much lower,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nyou can use them\\nin every country,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nyour account cannot\\nbe frozen\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\nand there are no\\nprerequisites\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\nor arbitrary limits.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nLet's look at how it works!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nBitcoins are generated\\nall over the Internet\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nby anybody running\\na free application\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\ncalled a Bitcoin miner.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nMining requires a certain\\namount of work\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nfor each block of coins.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nThis amount is\\nautomatically adjusted\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\n by the network\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nsuch that Bitcoins\\nare always created\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\nat a predictable\\nand limited rate.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nYour Bitcoins are stored\\nin your digital wallet\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nwhich might look familiar\\nif you use online banking.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nWhen you transfer Bitcoins,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nan electronic signature\\nis added.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nAfter a few minutes\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nthe transaction is\\nverified by a miner\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nand permanently and\\nanonymously stored\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\nin the network.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nThe Bitcoin software is\\ncompletely open source\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\nand anybody can\\nreview the code.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin is\\nchanging finance\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nthe same way the web\\nchanged publishing.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nWhen everyone\\nhas access\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\nto a global market,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\ngreat ideas flourish.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nLet's look at\\nsome examples\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nof how Bitcoins are\\nalready used today:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nYou can purchase\\nvideo games,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\ngifts,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nbooks,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nservers\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\nand alpaca socks.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nSeveral currency exchanges exist\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\nwhere you can trade\\nyour Bitcoins\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\nfor dollars,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neuros\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\nand more.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nBitcoins are\\na great way\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\nfor small businesses\\nand freelancers\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\nto get noticed.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nIt doesn't cost anything to\\nstart accepting them,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nthere are no chargebacks or fees\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\nand you'll get\\nadditional business\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nfrom the Bitcoin economy.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nFor your first Bitcoins and\\nmore information, visit:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com\",\n", + " 'bytes': 3984,\n", + " 'sha1': 'ql1wfvzddwoj873jr62le2rev9zmbo1',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784388,\n", + " 'timestamp': '2013-04-19T13:26:12Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665924,\n", + " 'title': 'What is Bitcoin?.webm.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Mikä on Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin on ensimmäinen 2 00:00:02,902 --> 00:00:04,968 hajautettu digitaali...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nMikä on Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin on ensimmäinen\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\nhajautettu digitaalinen valuutta.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcoinit ovat digitaalisia kolikoita\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\njoita voi lähettää Internetin yli.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nMuihin vaihtoehtoihin verrattuna\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nBitcoineilla on useita etuja.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoinit lähetetään\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\nsuoraan ihmiseltä\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\ntoiselle\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nnetin kautta\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nilman, että ne menevät pankin\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\ntai maksunvälittäjän läpi.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nTämä tarkoittaa, että kulut\\novat paljon pienemmät,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nvoit käyttää niitä\\nkaikkialla,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nrahojasi ei voida jäädyttää\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\neikä käytölle ole mitään \\nvaatimuksia\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\ntai mielivaltaisia rajoituksia.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nKatsotaanpas miten tämä toimii!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nBitcoinit luodaan\\njoka puolella Internetiä,\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nkuka tahansa voi luoda bitcoineja, \\nilmaisella ohjelmalla\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nnimeltä Bitcoin-louhija.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nLouhiminen vaatii tietyn\\nmäärän työtä\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\njokaisen lohkon ratkaisemiseksi.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nBitcoin-verkko säätää tämän\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\nmäärän automaattisesti\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nsellaiseksi, että bitcoineja\\nluodaan\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\nennustettavissa olevalla\\nja rajoitetulla nopeudella.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nBitcoinisi talletetaan\\ndigitaaliseen lompakkoosi\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\njoka voi näyttää tutulta\\nverkkopankkeja käyttäville.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nKun teet Bitcoin-siirron,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nsiihen lisätään sähköinen allekirjoitus.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nMuutaman minuutin kuluttua\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nlouhija vahvistaa siirron\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nja tallentaa sen pysyvästi\\nja anonyymisti\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\nBitcoin-verkkoon.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nBitcoin ohjelmisto on täysin\\navointa lähdekoodia\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\njoten kuka tahansa voi \\ntarkistaa koodin.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin on muuttamassa rahaliikenteen\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nkuten Internet muutti julkaisemisen.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nKun jokaisella on mahdollisuus\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\nolla mukana maailmanlaajuisessa\\nkaupassa,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nloistavat ideat menestyvät.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nTässä on muutamia esimerkkejä\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nsiitä miten bitcoineja\\nkäytetään jo tänä päivänä:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nVoit ostaa\\npelejä,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\nlahjoja,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nkirjoja,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nservereitä\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\nja Alpaca-sukkia.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nOn olemassa useita vaihtopörssejä,\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\njoissa voit vaihtaa\\nbitcoinisi\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\ndollareiksi,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neuroiksi\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\ntai joksikin muuksi valuutaksi.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nBitcoinit ovat\\npienyrityksille\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\nja freelancereille\\nloistava tapa\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\ntulla huomatuksi.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nEi maksa mitään\\nalkaa hyväksyä bitcoineja,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nei ole takaisinmaksuja\\ntai kuluja\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\nja saat lisää\\nasiakkaita\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nBitcoin-harrastajien keskuudesta.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nHankkiaksesi ensimmäiset bitcoinisi\\ntai saadaksesi lisää tietoa, avaa:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4252,\n", + " 'sha1': 'jv7tnne8ljlk2sbxnj93fe3xzs5ujm4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784389,\n", + " 'timestamp': '2013-04-19T13:26:14Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665925,\n", + " 'title': 'What is Bitcoin?.webm.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 C'est quoi, bitcoin ? 1 00:00:01,609 --> 00:00:02,901 Bitcoin est la première 2 00:00:02,902 --> 00:00:04,968 devise monétai...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nC\\'est quoi, bitcoin ?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin est la première\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\ndevise monétaire électronique décentralisée.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nLes bitcoins sont des jetons électroniques\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nque vous pouvez envoyez à travers internet.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nPar rapport aux autres monnaies électroniques,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nles bitcoins ont plusieurs avantages.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nLes bitcoins se transmettent\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\ndirectement d\\'une personne\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\nà une autre\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nà travers le réseau\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nsans passer par une banque\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\nou une chambre de compensation.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nCela signifie que les frais de transaction\\nsont bien moindres,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nque vous pouvez les utiliser dans n\\'importe\\nquel pays,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nque votre compte ne peut pas être bloqué,\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\net qu\\'il n\\'y a pas de conditions préalables\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\nou de limites arbitraire.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nVoyons comment cela fonctionne !\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nLes bitcoins sont générés\\nà travers tout le réseau\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\npar n\\'importe quel personne\\nfaisant tourner une application\\nlibre\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nappelée \"un extracteur de bitcoin\".\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nL\\'extraction recquiert un minimum\\nde travail\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\npour chaque bloc de transactions.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nLa difficulté est automatiquement\\najustée\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\n par le réseau\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nde telle sorte que les bitcoins\\nsont toujours générés\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\nselon un rythme prédictible\\net limité.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nVos bitcoins sont stockés\\ndans votre portefeuille électronique\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nqui peut vous sembler familier\\nsi vous utiliser des banques\\nen ligne.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nQuand vous transférez des bitcoins,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nune signature électronique est\\najoutée.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nAprès quelques minutes\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nla transaction est\\nvérifiée par un extracteur\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\npuis stockée de façon anonyme\\net permanente\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\ndans le réseau.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nBitcoin est un logiciel libre\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\ndonc n\\'importe qui peut inspecter\\nson code source.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin change la finance\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nde la même façon que le web\\nchange l\\'édition.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nQuand tout le monde a accès\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\nà un marché global,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nde grandes idées apparaissent.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nVoyons quelques exemples\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nmontrant comment les bitcoins\\nsont d\\'ores et déjà utilisés:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nVous pouvez acheter des jeux vidéos,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\ndes cadeaux,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\ndes livres,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\ndes serveurs informatiques,\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\net bien sûr des chaussettes en Alpaca.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nPlusieurs sites d\\'échanges existent\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\noù vous pouvez échangez vos bitcoins\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\ncontre des dollars,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\ndes euros,\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\nou autre.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nLes bitcoins sont un\\nexcellent moyen\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\npour les petites entreprises\\net pour les autoentrepreneurs\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\nde se faire remarquer.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nCela ne coute rien de \\ncommencer à les accepter,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nil n\\'y a pas de frais divers\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\net vous pourez faire des affaires\\ncomplémentaires\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nà partir de l\\'économie bitcoin.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nPour obtenir vos premiers bitcoins,\\nrendez-vous sur:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4522,\n", + " 'sha1': 'lju9raf3uscotsy6jekeantfs5rrf5k',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784391,\n", + " 'timestamp': '2013-04-19T13:26:15Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665926,\n", + " 'title': 'What is Bitcoin?.webm.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Was ist Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin ist die erste 2 00:00:02,902 --> 00:00:04,968 dezentralisierte digita...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nWas ist Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin ist die erste\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\ndezentralisierte digitale Währung.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcoins sind digitale Münzen\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\ndie du über das Internet\\nversenden kannst.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nIm Vergleich zu anderen\\nAlternativen\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nhaben Bitcoins\\neinige Vorteile:\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoins werden direkt\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\nvon Person\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\nzu Person\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\ndurchs Internet übertragen,\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nohne den Umweg über\\neine Bank oder eine\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\nAbrechnungsstelle nehmen zu müssen.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nDas bedeutet, dass die Gebühren\\nviel geringer sind.\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nDu kannst sie in jedem\\nLand benutzen,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nund dein Guthaben kann\\nnicht eingefroren werden.\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\nEs gibt auch keine\\nsonstigen Bedingungen\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\noder künstliche Einschränkungen.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nLass uns sehen,\\nwie das funktioniert!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nBitcoins werden verteilt\\nüber das Internet generiert.\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nJeder kann mitmachen,\\nindem er eine Software startet:\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nden Bitcoin-Miner.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nDer Miner benötigt einen\\ngewissen Aufwand, um einen\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nBlock von Münzen zu erzeugen.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nDieser Aufwand wird automatisch\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\nvom Netzwerk angepasst,\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nsodass Bitcoins stets\\nmit einer vorhersehbaren\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\nund beschränkten\\nRate erstellt werden.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nDeine Bitcoins sind in deiner\\ndigitalen Geldbörse gespeichert,\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nähnlich wie du es vom Online-\\nBanking her kennst.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nWenn du Bitcoins überweist\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nwird eine elektronische\\nSignatur hinzugefügt.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nNach ein paar Minuten\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nwird die Transaktion durch\\neinen Miner bestätigt\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nund permanent und anonym\\nim Netzwerk\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\ngespeichert.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nDie Bitcoin-Software ist\\nkomplett Opensource,\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\nsodass jeder den Quellcode\\nüberprüfen kann.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin ändert das\\nFinanzsystem\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nso wie es das Web mit\\nden Inhalten tat!\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nWenn jeder Zugriff auf\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\neinen globalen Markt hat\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nkönnen großartige Ideen sprießen.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nHier sind ein paar Beispiele\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nwie Bitcoins schon heute\\nverwendet werden:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nDu kannst Videospiele,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\nGeschenke,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nBücher,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nServer,\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\nund Alpaka-Socken kaufen.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nMehrere Wechselstuben\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\nermöglichen den Eintausch\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\nfür Dollar,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\nEuro,\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\nund weitere Währungen.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nBitcoins sind großartig,\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\nkleine Unternehmen und\\nSelbstständige\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\nbekannt zu machen.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nEs kostet nichts, sie als\\nZahlungsmittel zu akzeptieren.\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nEs gibt werder Rückbuchungen\\nnoch Gebühren,\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\ndafür erhältst du\\nweitere Kunden aus\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nder Bitcoin-Community.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nDeine ersten Bitcoins und\\nweitere Informationen findest\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\ndu auf: weusecoins.com',\n", + " 'bytes': 4274,\n", + " 'sha1': 'cv4mufibd9nl1r4e85bfg93yqwp4le2',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784392,\n", + " 'timestamp': '2013-04-19T13:26:17Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665927,\n", + " 'title': 'What is Bitcoin?.webm.el.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,533 Τι είναι το Bitcoin; 1 00:00:01,609 --> 00:00:04,805 Το Bitcoin είναι το πρώτο αποκεντρωμέν...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,533\\nΤι είναι το Bitcoin;\\n\\n1\\n00:00:01,609 --> 00:00:04,805\\nΤο Bitcoin είναι το πρώτο\\nαποκεντρωμένο, ψηφιακό νόμισμα.\\n\\n2\\n00:00:04,900 --> 00:00:07,844\\nΤα bitcoins είναι ψηφιακά κέρματα\\nπου μπορείτε να στείλετε μέσω του Διαδικτύου.\\n\\n3\\n00:00:07,951 --> 00:00:11,337\\nΣε σύγκριση με άλλες εναλλακτικές λύσεις,\\nτο Bitcoin έχει πολλά πλεονεκτήματα.\\n\\n4\\n00:00:11,492 --> 00:00:13,992\\nΤα bitcoins μεταφέρονται άμεσα\\nαπό άτομο σε άτομο\\n\\n5\\n00:00:13,992 --> 00:00:14,759\\nμέσω του δικτύου\\n\\n6\\n00:00:14,759 --> 00:00:15,759\\nχωρίς να μεσολαβήσει τράπεζα\\n\\n7\\n00:00:15,798 --> 00:00:16,845\\nή άλλος διαμεσολαβητής.\\n\\n8\\n00:00:17,145 --> 00:00:18,845\\nΑυτό σημαίνει ότι οι προμήθειες\\nείναι πολύ μικρότερες\\n\\n9\\n00:00:18,846 --> 00:00:20,339\\nΜπορείτε να το χρησιμοποιήσετε\\nσε οποιαδήποτε χώρα,\\n\\n10\\n00:00:20,339 --> 00:00:21,738\\nο λογαριασμός σας\\nδεν μπορεί να παγώσει\\n\\n11\\n00:00:21,792 --> 00:00:24,738\\nκαι δεν υπάρχουν προϋποθέσεις\\nή αυθαίρετα όρια.\\n\\n12\\n00:00:25,952 --> 00:00:27,795\\nΑς δούμε πώς λειτουργεί!\\n\\n13\\n00:00:27,795 --> 00:00:30,595\\nΤα bitcoins παράγονται σε ολόκληρο\\nτο Διαδίκτυο από τον καθένα\\n\\n14\\n00:00:30,635 --> 00:00:33,410\\nπου τρέχει το δωρεάν πρόγραμμα\\nπου ονομάζεται \"Εξόρυξη Bitcoin\".\\n\\n15\\n00:00:33,445 --> 00:00:36,611\\nΗ εξόρυξη bitcoins απαιτεί ένα ορισμένο\\nποσό εργασίας για κάθε μπλοκ κερμάτων.\\n\\n16\\n00:00:36,968 --> 00:00:39,427\\nΤο ποσό αυτό είναι αυτόματα\\nρυθμίζεται από το δίκτυο\\n\\n17\\n00:00:39,462 --> 00:00:41,187\\nέτσι ώστε τα bitcoins\\nπάντοτε να δημιουργούνται\\n\\n18\\n00:00:41,222 --> 00:00:43,929\\nσε μια προβλέψιμη και\\nπεριορισμένη αναλογία.\\n\\n19\\n00:00:44,146 --> 00:00:46,146\\nΤα Bitcoin σας αποθηκεύονται\\nστο ψηφιακό πορτοφόλι σας\\n\\n20\\n00:00:46,503 --> 00:00:49,222\\nπου θα σας φανεί οικείο αν\\nχρησιμοποιείτε ψηφιακές τράπεζες.\\n\\n21\\n00:00:49,222 --> 00:00:50,222\\nΌταν μεταφέρετε τα bitcoins,\\n\\n22\\n00:00:50,456 --> 00:00:52,456\\nπροστίθεται μια ηλεκτρονική υπογραφή.\\n\\n23\\n00:00:52,550 --> 00:00:55,565\\nΜετά από λίγα λεπτά η συναλλαγή\\nεπαληθεύεται από έναν \"εξορύκτη\"\\n\\n24\\n00:00:55,601 --> 00:00:58,018\\nκαι αποθηκεύεται μόνιμα\\nκαι ανώνυμα στο δίκτυο.\\n\\n25\\n00:00:58,101 --> 00:01:00,701\\nΤο λογισμικό του Bitcoin είναι\\nαπολύτως ανοικτού κώδικα\\n\\n26\\n00:01:00,704 --> 00:01:02,704\\nκαι ο καθένας μπορεί\\nνα ελέγξει τον κώδικα.\\n\\n27\\n00:01:02,924 --> 00:01:04,563\\nΤο Bitcoin αλλάζει τα οικονομικά\\n\\n28\\n00:01:04,563 --> 00:01:06,563\\nμε τον ίδιο τρόπο που το\\nδιαδίκτυο άλλαξε τις εκδόσεις.\\n\\n29\\n00:01:06,818 --> 00:01:09,093\\nΌταν όλοι έχουν πρόσβαση\\nσε μια παγκόσμια αγορά,\\n\\n30\\n00:01:09,146 --> 00:01:10,846\\nμεγάλες ιδέες\\nμπορούν να ανθίσουν.\\n\\n31\\n00:01:11,624 --> 00:01:12,705\\nΑς δούμε μερικά παραδείγματα\\n\\n32\\n00:01:12,706 --> 00:01:15,200\\nπως τα bitcoin ήδη\\nχρησιμοποιούνται σήμερα:\\n\\n33\\n00:01:15,200 --> 00:01:16,800\\nΜπορείτε να αγοράσετε\\nβίντεο-παιχνίδια,\\n\\n34\\n00:01:16,913 --> 00:01:17,811\\nδώρα,\\n\\n35\\n00:01:17,811 --> 00:01:18,685\\nβιβλία,\\n\\n36\\n00:01:18,685 --> 00:01:19,623\\nδιακομιστές,\\n\\n37\\n00:01:19,623 --> 00:01:21,498\\nκαι κάλτσες αλπακά.\\n\\n38\\n00:01:21,498 --> 00:01:23,208\\nΥπάρχουν αρκετά\\nανταλλακτήρια νομίσματος\\n\\n39\\n00:01:23,208 --> 00:01:24,508\\nόπου μπορείτε να\\nανταλλάξετε τα bitcoin σας\\n\\n40\\n00:01:24,527 --> 00:01:26,300\\nγια δολάρια, ευρώ και άλλα.\\n\\n41\\n00:01:26,335 --> 00:01:28,294\\nΤα bitcoin είναι ένας πολύ καλός\\nτρόπος να προβληθούν\\n\\n42\\n00:01:28,310 --> 00:01:30,195\\nοι μικρές επιχειρήσεις και\\nοι ελεύθεροι επαγγελματίες.\\n\\n43\\n00:01:30,388 --> 00:01:32,378\\nΔεν κοστίζει τίποτα να\\nαρχίσετε να τα δέχεστε,\\n\\n44\\n00:01:32,378 --> 00:01:33,778\\nδεν υπάρχουν χρεώσεις\\nή προμήθειες\\n\\n45\\n00:01:33,845 --> 00:01:36,725\\nκαι μπορείτε να πάρετε εξτρά δουλειές\\nαπό την Bitcoin οικονομία.\\n\\n46\\n00:01:36,985 --> 00:01:39,312\\nΓια τα πρώτα bitcoin σας και\\nπερισσότερες πληροφορίες,\\n\\n47\\n00:01:39,312 --> 00:01:41,000\\nεπισκεφθείτε την ιστοσελίδα:\\nweusecoins.com',\n", + " 'bytes': 5378,\n", + " 'sha1': 'im549xv86k95s49wcj964er8dmq8kjr',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784394,\n", + " 'timestamp': '2013-04-19T13:26:19Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665929,\n", + " 'title': 'What is Bitcoin?.webm.iw.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 אז מה זה בעצם מטביט? 1 00:00:01,609 --> 00:00:02,901 מטביט הוא המטבע הדיגיטלי 2 00:00:02,9...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nאז מה זה בעצם מטביט?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nמטביט הוא המטבע הדיגיטלי\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\nהמבוזר הראשון.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nמטביטים הינם \\nמטבעות דיגיטליים\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nאשר ניתן לשלוח \\nדרך האינטרנט.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nלמטביט מספר יתרונות\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nלעומת האלטרנטיבות הקיימות.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nמטביטים מועברים\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\nבאופן ישיר\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\nמאדם לאדם\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nדרך האינטרנט\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nללא מעבר דרך בנק\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\nאו מערכת סליקה כלשהיא.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nהמשמעות היא שהעמלות נמוכות בצורה משמעותית,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nניתן להשתמש בהם בכל מדינה,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nלא ניתן להקפיא את חשבונכם,\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\nואין שום מגבלות שרירותיות\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\nאו דרישות כלשהן.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nבואו ונראה איך זה עובד!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nמטביטים נוצרים\\nע\"י משתמשים מכל העולם\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nהמריצים תוכנה\\nחינמית הנקראת\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\n\"כורה מטביטים\".\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nפעולת הכרייה דורשת\\nכמות עבודה מסויימת\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nעבור כל בלוק של מטביטים.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nכמות זו משתנה\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\n אוטומטית ע\"י הרשת\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nכך שקצב ייצור\\nהמטביטים הינו\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\nצפוי מראש ומוגבל.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nהמטביטים שמורים\\nבארנק הדיגיטלי שלכם\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nהמעוצב בדומה למערכות \\nמקוונות לניהול חשבונות בנק.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nכל פעם כשאתם מעבירים מטביט\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nנוספת חתימה אלקטרונית.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nההעברה מאושרת על ידי\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\n\"כורה מטביטים\"\\nתוך זמן קצר\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nומאוחסנת ברשת \\nבאופן אנונימי\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\nובלתי הפיך.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nתוכנת המטביט הינה פרוייקט\\nקוד פתוח מא\\' עד ת\\',\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\nכך שכל אחד יכול לבחון אותו.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nמטביט משנה את שוק ההון\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nכמו שהרשת שינתה את עולם הפרסום וההוצא לאור.\\n\\n40\\n00:01:06,818 --> 00:01:09,060\\nכאשר לכל אחד ואחת ניתנת הגישה לשוק הגלובלי,\\n\\n41\\n00:01:09,146 --> 00:01:10,966\\n או אז רעיונות גדולים יכולים להתפשט ולפרוח.\\n\\n42\\n00:01:11,624 --> 00:01:13,198\\nכמה דוגמאות\\nלדרכים בהם\\n\\n43\\n00:01:13,206 --> 00:01:15,069\\nניתן להשתמש במטביט\\nכבר היום:\\n\\n44\\n00:01:15,201 --> 00:01:16,895\\nאפשר לקנות משחקי וידאו,\\n\\n45\\n00:01:16,913 --> 00:01:17,676\\nמתנות,\\n\\n46\\n00:01:17,811 --> 00:01:18,474\\nספרים,\\n\\n47\\n00:01:18,685 --> 00:01:19,365\\nשרתי רשת,\\n\\n48\\n00:01:19,623 --> 00:01:21,411\\nוגרבי אלפקה.\\n\\n49\\n00:01:21,498 --> 00:01:23,200\\nקיימים חלפני כספים\\n\\n50\\n00:01:23,208 --> 00:01:24,411\\nהמאפשרים החלפת מטביט\\n\\n51\\n00:01:24,427 --> 00:01:24,990\\nעבור דולר,\\n\\n52\\n00:01:24,997 --> 00:01:25,466\\nאירו,\\n\\n53\\n00:01:25,490 --> 00:01:25,997\\nועוד.\\n\\n54\\n00:01:26,295 --> 00:01:27,394\\nמטביט הינו\\nאמצעי מעולה\\n\\n55\\n00:01:27,410 --> 00:01:30,146\\nעבור עצמאים ועסקים\\n קטנים לקבל פרסום.\\n\\n56\\n00:01:30,388 --> 00:01:32,346\\nעלות השימוש בהם אפסית,\\n\\n57\\n00:01:32,378 --> 00:01:33,713\\nללא שום עמלות או ביטולים,\\n\\n58\\n00:01:33,745 --> 00:01:35,419\\nותזכו להנות מעסקים\\n\\n59\\n00:01:35,420 --> 00:01:36,774\\nעם קהילת המטביט \\nההולכת וגודלת.\\n\\n60\\n00:01:36,985 --> 00:01:39,295\\nכדי לקבל את המטביטים הראשונים\\nשלכם ולמידע נוסף בקרו ב-\\n\\n61\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4793,\n", + " 'sha1': '8y9hanawexqcclywnyhc4cbli8aiiws',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784396,\n", + " 'timestamp': '2013-04-19T13:26:20Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665931,\n", + " 'title': 'What is Bitcoin?.webm.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Che cos'e' Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin e' la prima 2 00:00:02,902 --> 00:00:04,968 moneta digitale decent...'\",\n", + " 'text': \"0\\n00:00:00,210 --> 00:00:01,546\\nChe cos'e' Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin e' la prima\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\nmoneta digitale decentralizzata.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nI Bitcoin sono soldi digitali\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nPuoi inviarli\\nattraverso Internet.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nAl confronto con\\nle altre monete,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nBitcoin ha numerosi\\nvantaggi.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nI Bitcoin sono trasferiti\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\ndirettamente da persona\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\na persona\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nvia rete\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nsenza passare\\nper una banca\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\no camera di compensazione.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nQuesto significa che i\\ncosti sono assai miniri,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\npuoi usarli in\\ntutte le nazioni,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nil tuo account non\\npuo' essere congelato\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\ne non ci sono\\nprerequisiti\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\no limiti arbitrari.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nVediamo come funziona!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nI Bitcoin sono generati\\ntutti attraverso Internet\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nda chiunque esegua\\nun'applicazione gratuita\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nchiamata minatore Bitcoin.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nMinare richiede una certa\\nquantita' di lavoro\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nper ogni blocco di monete.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nQuesta quantita' viene\\naggiustata automaticamente\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\ndal network.\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nQuesti Bitcoin sono\\nsempre creati\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\nsecondo un limite\\nrateale prestabilito.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nI tuoi Bitcoin si trovano\\nnel tuo portamonete digitale.\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nche ti sembrera' famigliare\\nse gia' usi le banche online.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nQuando trasferisci Bitcoin,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nviene aggiunta\\nuna firma digitale.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nDopo pochi minuti\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nil trasferimento viene\\nverificarto da un minatore\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nviene poi salvato permanentemente\\ne anonimamente\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\nsul network.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nIl software Bitcoin e'\\ncompletamente open source\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\ne chiunque puo'\\nverificarne il codice.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin cambia\\nla finanza\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nnello stesso modo in cui il web\\nha cambiato l'editoria.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nQuando tutti\\nhanno accesso\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\nal mercato globale,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nfioriscono grandi idee.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nGuardiamo ad alcuni esempi\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nsu come i Bitcoin sono\\ngia' usati tutt'oggi:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nPuoi comprare\\nvideo games,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\nregali,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nlibri,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nserver\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\ne calze di alpaca.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nEsistono diversi cambisti\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\ndove puoi scambiare\\ni tuoi Bitcoin\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\nper dollari,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neuro\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\ne molto altro.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nI Bitcoin sono\\nun ottimo modo\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\ncon cui le piccole imprese\\ne liberi professionisti\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\npossono farsi notare.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nNon costa nulla\\niniziare ad accettarli,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nnon ci sono costi\\ndi ritorno o tasse\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\ne scoprirete altri affari\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nsul mercato Bitcoin.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nPer i tuoi primi Bitcoin e\\naltre informazioni, visita:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com e bitcoin.org\",\n", + " 'bytes': 4106,\n", + " 'sha1': 'ltxdyty6d62zqbc1zmnws8iz5u9ob54',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784397,\n", + " 'timestamp': '2013-04-19T13:26:22Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665932,\n", + " 'title': 'What is Bitcoin?.webm.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Bitcoinとは? 1 00:00:01,609 --> 00:00:02,901 Bitcoinは初めての 2 00:00:02,902 --> 00:00:04,968 デジタル通貨です...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nBitcoinとは?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoinは初めての\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\nデジタル通貨です。\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcoinはインターネットを通し\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\n送信できる\\nデジタルコインです。\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\n他の代替通貨に比べて、\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nBitcoinにはいくつかの\\n利点があります。\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoinはインターネットを通じ\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\n個人同士で\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\n直接取引\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nでき、\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\n銀行や手形交換所を\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\n通す必要もありません。\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nこれにより手数料が非常に\\n低く抑えられ、\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nどの国でも使用でき、\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\n口座を凍結される\\n心配もありません。\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\n使用においての\\n必須条件や\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\n制限もありません。\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nではどのような仕組みか見てみましょう!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nBitcoinはインターネット上の\\nあらゆる場所で\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nBitcoinを採掘できる\\n無料のアプリケーションを\\n使用しているすべてのユーザーによって\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\n生成されています\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\n各ブロックのコインを採掘するには\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nそれなりの作業量が必要です。\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nこの作業量は自動的に\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\nネットワークにより調整されています\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nこれによりBitcoinは常に\\n一定で\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\n適切な量が生成されます。\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nあなたのBitcoinは\\nオンライン銀行口座のような\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nデジタル財布に蓄えられます。\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nBitcoinを送信すると\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\n電子署名が添付されます。\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\n数分後\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nBitcoin 採掘アプリケーションによって\\n取引が認証されます。\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nそしてネットワークに\\n匿名で永久に\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\n保存されます。\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nBitcoinソフトウェアは\\nオープンソースのため\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\nだれでもコードを\\n見ることができます。\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoinはネットが書物の発行を\\n変えたように\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\n金融も変えています。\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\n多くの人がアクセスできる\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\nグローバル市場では、\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\n様々な良質なアイディアが発展します。\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nではBitcoinがどのように\\n使用されているか\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nいくつかの例を\\n見てみましょう\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nゲームを購入したり、\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\nプレゼント、\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\n本、\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nサーバー、\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\nアルパカ用の靴下だって。\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nBitcoinにはいくつかの\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\n通貨へ変換できます。\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\nドル、\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\nユーロ、\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\n他にもいろいろあります。\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nBitcoinは\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\n小規模ビジネスやフリーランスなどに\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\n注目されるのに最適です。\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nBitcoinを受け付けるのに\\n費用はかかりません、\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\n引き落としや費用はなく\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\nBitcoin経済により\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\n新たなビジネスを得られます。\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nBitcoinに関する情報はこちら\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4582,\n", + " 'sha1': 'dzjroq8bpwaof5krt21lw8eqytt1rcq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784398,\n", + " 'timestamp': '2013-04-19T13:26:23Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665933,\n", + " 'title': 'What is Bitcoin?.webm.ko.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 비트 코인(Bit Coin)이란 무엇인가? 1 00:00:01,609 --> 00:00:02,901 비트 코인은 첫번째로 2 00:00:02,902 --> 0...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\n비트 코인(Bit Coin)이란 무엇인가?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\n비트 코인은 첫번째로\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\n만들어진 디지털 화폐이다.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\n비트코인은 디지털 코인이며\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\n인터넷을 통해 보낼수 있다.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\n다른 기존의 통화들과 비교해서\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\n비트코인은 많은 장점들이 있다.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\n비트코인은 은행이나\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\n다른 대행업체를\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\n거치지 않고\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\n직접적으로 인터넷을 통해\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\n개인 대 개인으로\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\n거래를 할 수 있다\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\n그래서 수수료가 은행이나 다른 대행업체에 비해 아주 저렴하다.\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\n어느 나라에서든지\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\n사용이 가능하며\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\n사용하는 구좌는 자격요건이 제한이 없으며\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\n구좌가 동결되거나 독점적인 제한이 없다.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\n어떻게 사용하는가?\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\n비트코인은 누구든지 비트코인 마인너(Bitcoin Miner)라고\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\n부르는 매체를 사용하여\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\n인터넷을 통하여 발행 할 수 있다.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\n비트코인 네트웍스는 \"코인 생성\" 옵션을 \\n\\n23\\n00:00:35,239 --> 00:00:36,693\\n선택한 소프트웨어를 작동하는 누구가에게\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\n한 묶음의 새로운 비트코인을 시간당 6번 정도씩\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\n 무작위로 생성해 배분한다. \\n\\n26\\n00:00:39,273 --> 00:00:40,724\\n소프트웨어를 작동하는 사람은 누구나 비트코인 묽음을 받을 수 있으며\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\n발행금액은 네트웍에 의해 자동적으로 조정되어 예측과 조정이 가능하다.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\n비트코인은 온라인 뱅킹처럼 사용자의 전자지갑에 저장 할 수 있으며\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\n거래할때 전자 싸인이 필요하다\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\n결제 몇분후에 거래내역이 비트코인 마인너(Bitcoin Miner)에게\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\n검증되고\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\n네트웍에\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\n자동적으로\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\n차명으로 영구히\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\n저장된다.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\n비트 코인 운용 소트트 웨어는 완전하게 오프되어 있어\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\n누구든지 그 코드를 검사 할 수 있다.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\n비트코인은\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\n웹시장에서 통용되는것과 다른 통화와 똑같이\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\n일반 경제에서 사용되고 있고\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\n모두가 글로벌 시장에서 사용할때 그것에 대한\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\n좋은 아이디어가 넘칠것이다.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\n그 예로는\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\n오늘날 이미 비트코인을\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\n비디오 게임\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\n선물\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\n서적\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\n서버\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\n양발들을 구매하는데 사용되고 있다.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\n또한 비트코인은\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\n사용자가 사용할 수 있게\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\n달러화\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\n유로화\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\n그밖에 다른 국제 통화로\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\n바꾸어 통용되고 있고\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\n소규모 사업, 프리랜스 사업에도\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\n사용되고 있다.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\n비트코인을 받는데\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\n부가적인 비용과 수수료가 부과되지 않으며\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\n비트코인 경제를 통해서\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\n여러분들은 사업면에서 여러가지 혜택을 볼 것이다.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\n처음 비트코인을 접하는 사람들은 보다 자세한 정보를 얻기위해서는\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nwww.weusecoins.com을 방문하시길 바람니다.',\n", + " 'bytes': 4752,\n", + " 'sha1': '3dzxptr4xv2w3mw5r7gbdrh0kcoir1w',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784400,\n", + " 'timestamp': '2013-04-19T13:26:25Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665935,\n", + " 'title': 'What is Bitcoin?.webm.lt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Kas yra Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin yra pirmoji 2 00:00:02,902 --> 00:00:04,968 decentralizuota skaitmeni...'\",\n", + " 'text': \"0\\n00:00:00,210 --> 00:00:01,546\\nKas yra Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin yra pirmoji\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\ndecentralizuota skaitmeninė valiuta.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcoins yra skaitmeninės monetos\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nkurias gali siųsti\\nper internetą.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nLyginant su kitomis\\nalternatyvomis,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nBitcoins turi daug\\nprivalumų.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoins yra persiunčiami\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\ntiesiai iš žmogaus\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\nkitam žmogui\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nper internetą\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nnereikia net \\neiti į banką\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\nar kita instituciją.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nTai reiškia, kad mokesčiai\\nyra daug mažesni,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\njuos gali naudoti\\nvisose šalyse,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\ntavo sąskaita negali būti\\nužšaldyta,\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\nnėra jokių\\npapildomų sąlygų\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\nar kitų apribojimų.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nPažiūrėkime kaip tai veikia!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nBitcoins yra generuojami\\nvisame internete.\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nTai gali daryti bet kas\\nnaudodamasis nemokamu klientu\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nvadinamu Bitcoin generatorium.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nGeneravimas reikalauja tam\\ntikro kiekio darbų\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nkiekvienam monetų blokui \\npagaminti.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nDarbų kiekis yra \\nautomatiškai koreguojamas\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\nviso tinklo\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nkad Bitcoins\\nbūtų sukurti\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\ntam tikru greičiu ir \\nribotu kiekiu.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nJūsų Bitcoins yra talpinami\\nJūsų skaitmeninėje piniginėje\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nkuri yra labai panaši\\nį internetinę bankininkystę.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nKai darote pavedimą Bitcoins,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nelektroninis parašas\\npridedamas.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nPo kelių minučių\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\npavedimai yra\\npatvirtinami generuotojų\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nkurie yra nuolatos\\nanonimiškai patalpinti\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\ntinkle.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nBitcoin programa yra\\nvisiškai atviro kodo\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\nir kiekvienas gali\\nperžiūrėti kodą.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin keičia\\nfinansus\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\ntaip pat kaip internetas\\nkeičia leidybą.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nKai kiekvienas \\nturi prisijungimą\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\nprie tarptautinių rinkų -\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nnuostabios idėjos klesti.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nPasižiūrėkime į kai\\nkuriuos pavyzdžius\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nkaip Bitcoin yra\\nnaudojami šendien:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nJūs galite nusipirkti\\nvideo žaidimų,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\ndovanų,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nknygų,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nvietą serveriuose\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\nir net kojinių.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nYra keletas valiutų keityklų\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\nkur Jūs galite prekiauti ir\\nuž savo Bitcons\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\npirkt dolerius\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neurus\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\nir dar daugiau.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nBitcoin yra\\npuikus būdas\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\nmažam verslui\\nar freelance'eriams\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\nbūt pastebėtiems.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nPradėt atsiskaitynėt\\nnieko nekainuoja,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nnėra jokių papildomų sąlygų\\nir mokesčių\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\nir Jūs turėsite\\npapildomą verslą\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\niš Bitcoin ekonomikos.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nNorite gauti savo pirmąji Bitcoin\\nar sužinoti daugiau, apsilankykite:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com\",\n", + " 'bytes': 4193,\n", + " 'sha1': 'cp6bi0s1e6ld97jgdsipvd6c0j71jat',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784401,\n", + " 'timestamp': '2013-04-19T13:26:26Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665936,\n", + " 'title': 'What is Bitcoin?.webm.no.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Hva er Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin er den første 2 00:00:02,902 --> 00:00:04,968 desentraliserte digital...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nHva er Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin er den første\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\ndesentraliserte digitale valuta.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcons er digitale mynter\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nsom du kan sende\\nvia Internett.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nSammenlignet med andre \\nalternativer,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nså har Bitcoins en rekke\\nfordeler.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoins kan overføres\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\ndirekte fra person\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\ntil person\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nvia Internett\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nuten å gå\\ngjennom en bank\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\neller en klareringssentral.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nDette betyr at avgifter\\nvil være mye lavere,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\ndu kan bruke de\\ni alle land,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\ndin konto vil aldri\\nbli sperret\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\nog det er ingen\\nforutsetninger\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\neller arbitrære begrensninger.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nLa oss se hvordan det virker!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nBitcoins kan genereres\\nover alt på Internett\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nav alle som bruker\\nen gratis programvare\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nkalt Bitcoin miner.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nMining krever en \\nviss arbeidsmengde\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nfor hver blokk av mynter.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nDenne mengden er \\nautomatisk justert \\n\\n25\\n00:00:38,273 --> 00:00:39,249\\nav nettverket\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nslik at Bitcoins \\nalltid vil bli opprettet\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\ntil en forutsigbar\\nog begrenset kurs.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nDine Bitcoins er lagret\\ni din digitale lommebok \\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nsom vil se kjent ut\\nhvis du er vant til å bruke nettbank.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nNår du overfører Bitconis,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nvil en elektronisk signatur\\nbli dannet.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nEtter noen få minutter\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\ner transaksjonen \\nverifisert av en miner\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nog permanent og \\nanonymt lagret\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\ni nettverket.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nBitconis programvare er basert\\npå åpen kildekode\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\nog hvem som helst kan \\nundersøke koden.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin\\nforandrer finans \\n\\n39\\n00:01:04,563 --> 00:01:06,607\\npå samme måte som Internett\\nendret publisering.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nNår alle \\nhar tilgang\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\ntil et globalt marked\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nvil gode ideer blomstre.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nLa oss se på\\nnoen eksempler\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\npå hvordan Bitcoins\\nallerede blir brukt i dag:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nDu kan handle\\ndataspill,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\ngaver,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nbøker,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\ndatautstyr\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\nog alpaca sokker.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nEn rekke valutaer kan brukes\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\nslik at du kan omsette\\ndine Bitcoins\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\ni dollar,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neuro\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\nog mange flere.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nBitcoins er \\nen fin mulighet\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\nfor små forretninger\\nog frilansere\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\ntil å bli lagt merke til.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nDet koster ingenting å \\nkomme i gang,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\ndet er ingen tilbakeføringer\\neller avgifter\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\nog du vil få \\ntilleggs virksomhet\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nfra Bitcon økonomien.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nFor å komme i gang med Bitcoin\\nog for mer informasjon, besøk:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4078,\n", + " 'sha1': 'iyj84tlvxojok35bouvllgxi8v896t8',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784402,\n", + " 'timestamp': '2013-04-19T13:26:28Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665937,\n", + " 'title': 'What is Bitcoin?.webm.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Czym jest Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin to pierwsza 2 00:00:02,902 --> 00:00:04,968 niezależna cyfrowa wal...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nCzym jest Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin to pierwsza\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\nniezależna cyfrowa waluta.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitmonety to cyfrowe monety\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nktóre możesz przesyłać\\nprzez Internet\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nPorównując je \\nz innymi walutami\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nBitmonety mają dużo zalet\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nSą one przesyłane\\n\\n8\\n00:00:12,545 --> 00:00:13,984\\nbezpośrednio od osoby\\ndo osoby\\n\\n9\\n00:00:13,992 --> 00:00:14,744\\nprzez Internet\\n\\n10\\n00:00:14,759 --> 00:00:15,797\\nbez potrzeby chodzenia\\ndo banku\\n\\n11\\n00:00:15,798 --> 00:00:16,880\\nczy kantoru.\\n\\n12\\n00:00:17,145 --> 00:00:18,786\\nOznacza to, że opłaty \\nsą dużo niższe,\\n\\n13\\n00:00:18,831 --> 00:00:20,316\\nmożesz ich używać wszędzie,\\n\\n14\\n00:00:20,339 --> 00:00:21,706\\nnikt nie zablokuje Ci konta,\\n\\n15\\n00:00:21,792 --> 00:00:22,893\\ni nie ma żadnych dodatkowych\\n\\n16\\n00:00:22,933 --> 00:00:23,950\\nwymagań czy ograniczeń.\\n\\n17\\n00:00:25,952 --> 00:00:27,585\\nZobaczmy jak to działa!\\n\\n18\\n00:00:27,795 --> 00:00:29,880\\nBitmonety wytwarzają\\nużytkownicy Internetu\\n\\n19\\n00:00:29,935 --> 00:00:31,479\\ndzięki darmowej\\naplikacji\\n\\n20\\n00:00:31,513 --> 00:00:33,333\\nw procesie zwanym \"minowaniem\".\\n(ang. \"mining\")\\n\\n21\\n00:00:33,445 --> 00:00:35,224\\nMinowanie wymaga określonego\\nnakładu pracy\\n\\n22\\n00:00:35,239 --> 00:00:36,693\\nna każdą paczkę monet.\\n\\n23\\n00:00:36,968 --> 00:00:38,250\\nIlość tej pracy jest\\ndopasowywana automatycznie\\n\\n24\\n00:00:38,273 --> 00:00:39,249\\nprzez sieć w taki sposób\\n\\n25\\n00:00:39,273 --> 00:00:40,724\\nże monety są\\nzawsze tworzone\\n\\n26\\n00:00:40,740 --> 00:00:43,310\\nw z góry ustalony\\ni przewidywalny sposób.\\n\\n27\\n00:00:44,146 --> 00:00:46,370\\nBitmonety są przechowywane\\nw cyfrowym portfelu\\n\\n28\\n00:00:46,503 --> 00:00:49,096\\ntak jak robią to dziś\\nbanki internetowe.\\n\\n29\\n00:00:49,222 --> 00:00:50,409\\nGdy chcesz przesłać Bitmonety,\\n\\n30\\n00:00:50,456 --> 00:00:52,292\\ndodawany zostaje\\ncyfrowy podpis.\\n\\n31\\n00:00:52,550 --> 00:00:53,413\\nPo kilku minutach\\n\\n32\\n00:00:53,446 --> 00:00:55,464\\ntransakcja jest weryfikowana\\nprzez minera, po czym\\n\\n33\\n00:00:55,566 --> 00:00:57,071\\njest trwale i anonimowo\\nprzechowywana\\n\\n34\\n00:00:57,072 --> 00:00:58,237\\nw całej sieci.\\n\\n35\\n00:00:58,301 --> 00:01:00,652\\nOprogramowanie Bitcoin jest\\ncałkowicie otwarte\\n\\n36\\n00:01:00,704 --> 00:01:02,439\\ni każdy może\\nprzejrzeć jego kod.\\n\\n37\\n00:01:02,924 --> 00:01:04,541\\nBitcoin zmienia finanse\\n\\n38\\n00:01:04,563 --> 00:01:06,607\\ntak jak Internet zmienił\\nwydawnictwa prasowe.\\n\\n39\\n00:01:06,818 --> 00:01:08,014\\nGdy każdy ma \\njednakowy dostęp\\n\\n40\\n00:01:08,015 --> 00:01:09,060\\ndo globalnego rynku,\\n\\n41\\n00:01:09,146 --> 00:01:10,966\\npowstaje wiele\\nfajnych pomysłów.\\n\\n42\\n00:01:11,624 --> 00:01:13,198\\nZobaczmy teraz, jak\\nw praktyce\\n\\n43\\n00:01:13,206 --> 00:01:15,069\\nBitcoin jest używany\\njuż dzisiaj:\\n\\n44\\n00:01:15,201 --> 00:01:16,895\\nMożesz płacić nim\\nza gry komputerowe,\\n\\n45\\n00:01:16,913 --> 00:01:17,676\\nprezenty,\\n\\n46\\n00:01:17,811 --> 00:01:18,474\\nksiążki,\\n\\n47\\n00:01:18,685 --> 00:01:19,365\\nserwery,\\n\\n48\\n00:01:19,623 --> 00:01:21,411\\ni... skarperki z owczej wełny.\\n\\n49\\n00:01:21,498 --> 00:01:23,200\\nIstnieje kilka kantorów,\\nw których możesz\\n\\n50\\n00:01:23,208 --> 00:01:24,411\\nwymieniać Bitmonety \\nna inne waluty:\\n\\n51\\n00:01:24,427 --> 00:01:24,990\\ndolary,\\n\\n52\\n00:01:24,997 --> 00:01:25,466\\neuro,\\n\\n53\\n00:01:25,490 --> 00:01:25,997\\nczy złotówki.\\n\\n54\\n00:01:26,295 --> 00:01:27,394\\nBitcoin to świetny sposób\\n\\n55\\n00:01:27,410 --> 00:01:29,033\\ndla małych firm\\ni freelancerów\\n\\n56\\n00:01:29,050 --> 00:01:30,146\\nby zostać zauważonym.\\n\\n57\\n00:01:30,388 --> 00:01:32,346\\nAkceptowanie ich nic\\nnie kosztuje,\\n\\n58\\n00:01:32,378 --> 00:01:33,713\\nnie ma żadnych opłat ani zwrotów\\n\\n59\\n00:01:33,745 --> 00:01:35,419\\na w dodatku masz\\ndarmową reklamę\\n\\n60\\n00:01:35,420 --> 00:01:36,774\\ndzięki ekosystemowi Bitcoin.\\n\\n61\\n00:01:36,985 --> 00:01:39,295\\nJeśli chcesz uzyskać więcej\\ninformacji, odwiedź stronę:\\n\\n62\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com\\n(lub bitcoin.pl)',\n", + " 'bytes': 4092,\n", + " 'sha1': 'fi8ikyilbpkyrsc0hydhlt6oyrn3hnq',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784403,\n", + " 'timestamp': '2013-04-19T13:26:30Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665938,\n", + " 'title': 'What is Bitcoin?.webm.pt-BR.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 O que é Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin é a primeira 2 00:00:02,902 --> 00:00:04,968 moeda digital descentr...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nO que é Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin é a primeira\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\nmoeda digital descentralizada.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitcoins são moedas digitais\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nque você pode\\nenviar pela Internet.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nComparadas a outras\\nalternativas,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nBitcoins têm várias\\nvantagens.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nBitcoins são transferidas\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\ndiretamente de uma pessoa\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\nà outra\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\npela Internet.\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nSem passar por\\num banco\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\nou outro\\nintermediário.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nIsso significa que as taxas\\nsão muito menores,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nvocê pode usá-las\\nem qualquer país,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nsua conta não pode\\nser congelada\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\ne não existem\\npré-requisitos\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\nou limites arbitrários.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nVamos ver como funciona!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nBitcoins são geradas\\nna internet\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\npor qualquer pessoa rodando\\numa aplicação gratuita\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nchamada minerador Bitcoin.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nA mineração requer um\\ncerto trabalho\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\npara cada bloco de moedas.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nA dificuldade é\\najustada automaticamente\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\npela rede\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nde forma que Bitcoins\\nsejam criadas\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\nnuma taxa limitada\\ne previsível.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nSuas Bitcoins são guardadas\\nem sua carteira digital\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nque lhe será familiar\\ncaso já tenha usado internet banking.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nQuando você transfere suas moedas,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\numa assinatura digital\\né criada.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nDentro de alguns minutos\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\na transação será verificada\\npor um minerador\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\ne permanente e\\nanonimamente salva\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\nna rede.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nO software Bitcoin é\\ncompletamente livre\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\ne qualquer pessoa\\npode revisar seu código.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin está\\nmudando as finanças\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nda mesma forma que a web\\nmudou a imprensa.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nQuando todos\\ntêm acesso\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\na um mercado global,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\ngrandes idéias germinam.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nVejamos alguns\\nexemplos\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nde como Bitcoins são\\nusadas hoje:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nVocê pode comprar\\njogos,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\npresentes,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nlivros,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nservidores\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\ne meias de alpaca.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nHá muitos mercados de câmbio\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\nonde você pode trocar\\nsuas Bitcoins\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\npor dólares,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neuros\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\nou mais.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nBitcoins são uma\\ngrande maneira\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\npara pequenos empresários\\ne autônomos\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\nse fazerem notar.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nNão custa nada para\\ncomeçar a aceitá-las,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nnão há reversões ou taxas\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\ne você fará\\nnegócios adicionais\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\ncom a economia Bitcoin.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nPara adquirir suas primeiras Bitcoins\\ne mais informações:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4066,\n", + " 'sha1': 'lo357o78qruj7gu9nhsu91mbpzkde3t',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784404,\n", + " 'timestamp': '2013-04-19T13:26:31Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665939,\n", + " 'title': 'What is Bitcoin?.webm.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Что такое биткоин? 1 00:00:01,609 --> 00:00:02,901 Биткоин - это первая 2 00:00:02,902 --> 00:0...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nЧто такое биткоин?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nБиткоин - это первая\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\nдецентрализованная цифровая валюта.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nБиткоины - это цифровые монетки,\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nкоторые вы можете отправить через интернет\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nВ сравнении с другими валютами,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nу биткоинов есть ряд преимуществ.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nБиткоины передаются\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\nнепосредственно от пользователя\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\nк пользователю\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\nчерез сеть,\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nне проходя через банк\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\nили процессинговый центр.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nЭто означает: маленькие комиссии,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\nвы можете использовать\\nбиткоины в любой стране,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\nваш счет не может быть заблокирован\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\nи нет каких-либо обязательных условий\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\nили других ограничений.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nДавайте посмотрим как это работает!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nБиткоины генерируются в интернете\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\nкаждым, кто запустил\\nбесплатное приложение,\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nназываемое генератором биткоинов.\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nГенерирование требует от компьютера\\nвыполнить определённую работу\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\nс каждым блоком монет.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nЭтот объём регулируется автоматически\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\nсетью\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\nтак, что всегда создаётся\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\nограниченное и предсказуемое число биткоинов.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nВаши биткоины хранятся в вашем цифровом кошельке\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nкоторый наверняка вам знаком,\\nесли вы пользовались интернет-банкингом\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nКогда вы передаете Биткоины,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nк ним добавляется цифровая подпись.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nСпустя несколько минут\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nтранзакция подтверждается генератором\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\nи навсегда\\nанонимно сохраняется\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\nв сети.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nПрограммное обеспечение для работы с биткоинами имеет открытый исходный код\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\nи кто угодно может просмотреть код.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nБиткоин меняет финансы\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nтакже как интернет\\nизменил печать.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nКогда у каждого\\nесть доступ\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\nк мировому рынку,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nтогда процветают великие идеи.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nДавайте рассмотрим несколько примеров\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nтого как биткоины уже\\nиспользуются сегодня:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nВы можете купить\\nвидеоигры,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\nподарки,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nкниги,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nсерверы,\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\nи носки из альпаки.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nСуществует несколько валютных бирж,\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\nгде вы можете торговать биткоинами\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\nза доллары,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\nевро\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\nи так далее...\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nБиткоины - это\\nотличный способ\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\nдля малого бизнеса\\nи фрилансеров\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\nвыделиться.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nНичего не стоит начать их приём,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nздесь нет возвратов и\\nпроцентов за транзакцию\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\nи вы получите\\nразвитие бизнеса\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nот биткоин-экономики.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nЧтобы получить больше информации\\nи ваши первые биткоины посетите:',\n", + " 'bytes': 5705,\n", + " 'sha1': 'discb691n7ji2b75dfuqrxahei5tgj6',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784406,\n", + " 'timestamp': '2013-04-19T13:26:33Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665940,\n", + " 'title': 'What is Bitcoin?.webm.es-ES.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,546 Que es Bitcoin? 1 00:00:01,609 --> 00:00:02,901 Bitcoin es la primera 2 00:00:02,902 --> 00:00:04,968 moneda digital descentra...'\",\n", + " 'text': '0\\n00:00:00,210 --> 00:00:01,546\\nQue es Bitcoin?\\n\\n1\\n00:00:01,609 --> 00:00:02,901\\nBitcoin es la primera\\n\\n2\\n00:00:02,902 --> 00:00:04,968\\nmoneda digital descentralizada.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nLos bitcoins son monedas digitales\\n\\n4\\n00:00:06,138 --> 00:00:07,654\\nque puedes enviar\\na través de Internet.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nComparado con otras\\nalternativas,\\n\\n6\\n00:00:09,333 --> 00:00:11,388\\nBitcoin tiene numerosas\\nventajas.\\n\\n7\\n00:00:11,492 --> 00:00:12,523\\nLos bitcoins son transferidos\\n\\n8\\n00:00:12,545 --> 00:00:13,304\\ndirectamente de persona\\n\\n9\\n00:00:13,312 --> 00:00:13,984\\na persona\\n\\n10\\n00:00:13,992 --> 00:00:14,744\\na través de la red\\n\\n11\\n00:00:14,759 --> 00:00:15,797\\nsin pasar\\npor un banco\\n\\n12\\n00:00:15,798 --> 00:00:16,880\\nu otro intermediario.\\n\\n13\\n00:00:17,145 --> 00:00:18,786\\nEsto significa que las comisiones\\nson mucho menores,\\n\\n14\\n00:00:18,831 --> 00:00:20,316\\npuedes usarlo\\nen cualquier país,\\n\\n15\\n00:00:20,339 --> 00:00:21,706\\ntu cuenta no puede\\nser congelada\\n\\n16\\n00:00:21,792 --> 00:00:22,893\\ny no hay\\nprerequisitos\\n\\n17\\n00:00:22,933 --> 00:00:23,950\\no limites arbitrarios.\\n\\n18\\n00:00:25,952 --> 00:00:27,585\\nMiremos como funciona!\\n\\n19\\n00:00:27,795 --> 00:00:29,880\\nLos bitcoins son generados\\nen todo Internet\\n\\n20\\n00:00:29,935 --> 00:00:31,479\\npor cualquiera\\ncon un programa gratuito\\n\\n21\\n00:00:31,513 --> 00:00:33,333\\nllamdado \"Bitcoin miner\".\\n\\n22\\n00:00:33,445 --> 00:00:35,224\\nCrear bitcoins requiere\\nuna cierta cantidad de trabajo\\n\\n23\\n00:00:35,239 --> 00:00:36,693\\npara cada bloque de monedas.\\n\\n24\\n00:00:36,968 --> 00:00:38,250\\nEsta cantidad\\nse ajusta automaticamente\\n\\n25\\n00:00:38,273 --> 00:00:39,249\\npor la red\\n\\n26\\n00:00:39,273 --> 00:00:40,724\\npara que los bitcoins\\nsiempre sean creados\\n\\n27\\n00:00:40,740 --> 00:00:43,310\\na un ratio predecible\\ny limitado.\\n\\n28\\n00:00:44,146 --> 00:00:46,370\\nTus bitcoins se guardan\\nen tu billetera digital\\n\\n29\\n00:00:46,503 --> 00:00:49,096\\nque te resultará familiar\\nsi usas banca digital.\\n\\n30\\n00:00:49,222 --> 00:00:50,409\\nCuando transfieres bitcoins,\\n\\n31\\n00:00:50,456 --> 00:00:52,292\\nuna firma electrónica\\nes añadida.\\n\\n32\\n00:00:52,550 --> 00:00:53,413\\nPasados unos minutos\\n\\n33\\n00:00:53,446 --> 00:00:55,464\\nla transación es\\nverificada por un \"miner\"\\n\\n34\\n00:00:55,566 --> 00:00:57,071\\ny es permante y\\nanonimamente alamacenada\\n\\n35\\n00:00:57,072 --> 00:00:58,237\\npor la red.\\n\\n36\\n00:00:58,301 --> 00:01:00,652\\nEl software de Bitcoin es\\ncompletamente abierto\\n\\n37\\n00:01:00,704 --> 00:01:02,439\\ny cualquiera puede\\nrevisar el código.\\n\\n38\\n00:01:02,924 --> 00:01:04,541\\nBitcoin está\\ncambiando las finanzas\\n\\n39\\n00:01:04,563 --> 00:01:06,607\\nde la misma manera que la web\\nha cambiado el periodismo.\\n\\n40\\n00:01:06,818 --> 00:01:08,014\\nCuando cualquiera\\ntiene acceso\\n\\n41\\n00:01:08,015 --> 00:01:09,060\\nal mercado global,\\n\\n42\\n00:01:09,146 --> 00:01:10,966\\nflorecen grandes ideas.\\n\\n43\\n00:01:11,624 --> 00:01:13,198\\nMiremos\\nalgunos ejemplos\\n\\n44\\n00:01:13,206 --> 00:01:15,069\\nde como los bitcoins\\nestán usandose hoy en día:\\n\\n45\\n00:01:15,201 --> 00:01:16,895\\nPuedes comprar\\nvideojuegos,\\n\\n46\\n00:01:16,913 --> 00:01:17,676\\nregalos,\\n\\n47\\n00:01:17,811 --> 00:01:18,474\\nlibros,\\n\\n48\\n00:01:18,685 --> 00:01:19,365\\nservidores\\n\\n49\\n00:01:19,623 --> 00:01:21,411\\ny calcetines de alpaca.\\n\\n50\\n00:01:21,498 --> 00:01:23,200\\nExisten varias casas de cambio\\n\\n51\\n00:01:23,208 --> 00:01:24,411\\ndonde puedes intercambiar\\ntus bitcoins\\n\\n52\\n00:01:24,427 --> 00:01:24,990\\npor dolares,\\n\\n53\\n00:01:24,997 --> 00:01:25,466\\neuros\\n\\n54\\n00:01:25,490 --> 00:01:25,997\\ny más.\\n\\n55\\n00:01:26,295 --> 00:01:27,394\\nLos bitcoins son\\nuna gran forma\\n\\n56\\n00:01:27,410 --> 00:01:29,033\\npara que pequeños negocios\\ny autónomos\\n\\n57\\n00:01:29,050 --> 00:01:30,146\\nreciban publicidad.\\n\\n58\\n00:01:30,388 --> 00:01:32,346\\nNo cuesta nada\\nempezar a aceptarlos,\\n\\n59\\n00:01:32,378 --> 00:01:33,713\\nno hay cargos o comisiones\\n\\n60\\n00:01:33,745 --> 00:01:35,419\\ny recibirás\\nnegocio adicional\\n\\n61\\n00:01:35,420 --> 00:01:36,774\\nde la economía Bitcoin.\\n\\n62\\n00:01:36,985 --> 00:01:39,295\\nPara tus primeros bitcoins y\\nmás información, visita:\\n\\n63\\n00:01:39,312 --> 00:01:41,335\\nweusecoins.com',\n", + " 'bytes': 4090,\n", + " 'sha1': '69wyizlmop6apl9yuuw6w58m2vzlssu',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94784407,\n", + " 'timestamp': '2013-04-19T13:26:34Z',\n", + " 'user': {'id': 2578985, 'text': 'YtUPt'},\n", + " 'page': {'id': 25665941,\n", + " 'title': 'What is Bitcoin?.webm.tr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,210 --> 00:00:01,609 Bitcoin (bitsikke) nedir? 1 00:00:01,609 --> 00:00:02,902 Bitsikke merkezi olmayan 2 00:00:02,902 --> 00:00:05,000 ilk dijital...'\",\n", + " 'text': \"0\\n00:00:00,210 --> 00:00:01,609\\nBitcoin (bitsikke) nedir?\\n\\n1\\n00:00:01,609 --> 00:00:02,902\\nBitsikke merkezi olmayan\\n\\n2\\n00:00:02,902 --> 00:00:05,000\\nilk dijital para birimidir.\\n\\n3\\n00:00:05,000 --> 00:00:06,138\\nBitsikke internet üzerinden\\n\\n4\\n00:00:06,138 --> 00:00:07,951\\ngönderilebilen dijital bir para birimidir.\\n\\n5\\n00:00:07,951 --> 00:00:09,333\\nAlternatifleriyle kıyaslandığında\\n\\n6\\n00:00:09,333 --> 00:00:11,492\\nbitsikkelerin çeşitli avantajları vardır.\\n\\n7\\n00:00:11,492 --> 00:00:12,545\\nBitsikkeler\\n\\n8\\n00:00:12,545 --> 00:00:13,312\\narada herhangir bir\\n\\n9\\n00:00:13,312 --> 00:00:13,992\\nbanka veya takas kurumu olmadan\\n\\n10\\n00:00:13,992 --> 00:00:14,759\\ninternet üzerinden\\n\\n11\\n00:00:14,759 --> 00:00:15,798\\ndirekt olarak kişiden kişiye\\n\\n12\\n00:00:15,798 --> 00:00:17,145\\ntransfer edilebilirler.\\n\\n13\\n00:00:17,145 --> 00:00:18,831\\nBu şu demek, transfer ücretleri çok düşük,\\n\\n14\\n00:00:18,831 --> 00:00:20,339\\nher ülkede kullanılabilir,\\n\\n15\\n00:00:20,339 --> 00:00:21,791\\nhesabınız kimse tarafından dondurulamaz,\\n\\n16\\n00:00:21,792 --> 00:00:22,933\\nve hiçbir kullanım önkoşulu\\n\\n17\\n00:00:22,933 --> 00:00:25,952\\nya da keyfi sınırlama yoktur.\\n\\n18\\n00:00:25,952 --> 00:00:27,795\\nŞimdi nasıl çalıştığına bakalım!\\n\\n19\\n00:00:27,795 --> 00:00:29,935\\nBitsikkeler bitsikke madencisi adı verilen ücretsiz uygulamayı\\n\\n20\\n00:00:29,935 --> 00:00:31,512\\ninternete bağlı olarak koşan\\n\\n21\\n00:00:31,513 --> 00:00:33,445\\nherkes tarafından yaratılabilir.\\n\\n22\\n00:00:33,445 --> 00:00:35,239\\nMadencilik, her sikke bloğu için\\n\\n23\\n00:00:35,239 --> 00:00:36,968\\nbelirli bir iş yükü gerektirir.\\n\\n24\\n00:00:36,968 --> 00:00:38,273\\nBu miktar,\\n\\n25\\n00:00:38,273 --> 00:00:39,273\\nbitsikkeler öngörülebilir ve limitli bir oranda\\n\\n26\\n00:00:39,273 --> 00:00:40,740\\nyaratılacak şekilde\\n\\n27\\n00:00:40,740 --> 00:00:44,146\\nağ tarafından ayarlanır.\\n\\n28\\n00:00:44,146 --> 00:00:46,503\\nBitsikkeleriniz, internet bankacılığından alışkın olduğumuz\\n\\n29\\n00:00:46,503 --> 00:00:49,222\\ndijital cüzdanlarda saklanır.\\n\\n30\\n00:00:49,222 --> 00:00:50,456\\nBitsikkelerinizi transfer ettiğinizde\\n\\n31\\n00:00:50,456 --> 00:00:52,550\\nelektronik bir imza eklenir.\\n\\n32\\n00:00:52,550 --> 00:00:53,446\\nBirkaç dakika sonra\\n\\n33\\n00:00:53,446 --> 00:00:55,565\\ntransfer işlemi bir madenci tarafından onaylanır,\\n\\n34\\n00:00:55,566 --> 00:00:57,072\\nve onay, kalıcı ve anonim olarak\\n\\n35\\n00:00:57,072 --> 00:00:58,301\\nağda saklanır.\\n\\n36\\n00:00:58,301 --> 00:01:00,704\\nBitsikke uygulaması tamamen açık kaynak kodludur\\n\\n37\\n00:01:00,704 --> 00:01:02,924\\nve isteyen herkes kodu gözden geçirebilir.\\n\\n38\\n00:01:02,924 --> 00:01:04,563\\nBitsikke, web'in yayıncılığı değiştirdiği gibi\\n\\n39\\n00:01:04,563 --> 00:01:06,818\\nfinansı değiştirmektedir.\\n\\n40\\n00:01:06,818 --> 00:01:08,015\\nHerkes global bir pazara\\n\\n41\\n00:01:08,015 --> 00:01:09,146\\nerişim sahibi olduğunda\\n\\n42\\n00:01:09,146 --> 00:01:11,624\\nharika fikirler gelişebilir.\\n\\n43\\n00:01:11,624 --> 00:01:13,205\\nŞimdi bitsikkelerin bugünkü kullanımlarıyla ilgili\\n\\n44\\n00:01:13,206 --> 00:01:15,201\\nbazı örneklere göz atalım.\\n\\n45\\n00:01:15,201 --> 00:01:16,913\\nVideo oyunlar satın alabilirsiniz,\\n\\n46\\n00:01:16,913 --> 00:01:17,811\\nhediyeler,\\n\\n47\\n00:01:17,811 --> 00:01:18,685\\nkitaplar,\\n\\n48\\n00:01:18,685 --> 00:01:19,623\\nsunucular\\n\\n49\\n00:01:19,623 --> 00:01:21,498\\nve yün çoraplar.\\n\\n50\\n00:01:21,498 --> 00:01:23,208\\nBitsikkelerinizi\\n\\n51\\n00:01:23,208 --> 00:01:24,426\\ndolar, avro ve diğer kurlara\\n\\n52\\n00:01:24,427 --> 00:01:24,997\\ndönüştürebileceğiniz\\n\\n53\\n00:01:24,997 --> 00:01:25,490\\nkur dönüşüm aracıları mevcuttur.\\n\\n54\\n00:01:25,490 --> 00:01:26,295\\nkur dönüşüm aracıları mevcuttur.\\n\\n55\\n00:01:26,295 --> 00:01:27,410\\nBitsikkeler küçük ölçekli iş yerleri\\n\\n56\\n00:01:27,410 --> 00:01:29,050\\nve serbet çalışanların\\n\\n57\\n00:01:29,050 --> 00:01:30,387\\nfarkedilmesi için harika bir yoldur.\\n\\n58\\n00:01:30,388 --> 00:01:32,378\\nBitsikke kabul etmeye başlamak için herhangi bir\\n\\n59\\n00:01:32,378 --> 00:01:33,745\\nbaşlangıç maliyeti, ekstra ücretlendirme ve geri para ibrazı yoktur\\n\\n60\\n00:01:33,745 --> 00:01:35,420\\nayrıca bitsikke ekonomisindekilerinden\\n\\n61\\n00:01:35,420 --> 00:01:36,985\\ndaha fazla iş alabilirsiniz.\\n\\n62\\n00:01:36,985 --> 00:01:39,312\\nİlk bitsikkelerinizi edinmek ve daha fazla bilgi almak için\\n\\n63\\n00:01:39,312 --> 03:59:59,000\\nweusecoins.com adresini ziyaret ediniz.\",\n", + " 'bytes': 4366,\n", + " 'sha1': 'azjsdy313cfwmcyw3f4ty1gxeok7qza',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 94792202,\n", + " 'timestamp': '2013-04-19T16:40:30Z',\n", + " 'user': {'id': 2789958, 'text': 'PauloFianiBacila'},\n", + " 'page': {'id': 25668264,\n", + " 'title': 'Br-AcademiaBrasileiraDeLetras.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:03,400 Brazilian Academy of Letters'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,400\\nBrazilian Academy of Letters',\n", + " 'bytes': 60,\n", + " 'sha1': 'tf3hr7hw0okpw0qjwi5cd2v78jendsc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 606350788,\n", + " 'timestamp': '2021-11-09T09:22:33Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 25668972,\n", + " 'title': 'Yeager supersonic flight 1947.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Pacha Tchernof moved page [[TimedText:Yeager supersonic flight 1947.ogg.zh-hant.srt]] to [[TimedText:Yeager supersonic flight 1947.ogv.zh-hant.srt]]: rename of the original file',\n", + " 'text': '0 \\n00:00:00,000 --> 00:00:05,500\\n1947年十月,在加州慕洛沙漠飛行試驗中心\\n\\n1\\n00:00:06,000 --> 00:00:09,500 \\nXS-1這架飛機創造了歷史\\n\\n2 \\n00:00:10,000 --> 00:00:13,500 \\n而它的駕駛員,則是查克·葉格上尉(Charles E. Yeager.) \\n\\n3 \\n00:00:14,000 --> 00:00:18,500 \\n這架飛機以及這位駕駛員 即將進行第一次\\n\\n4 \\n00:00:19,000 --> 00:00:22,000 \\n超越音速的水平飛行。\\n\\n5 \\n00:00:25,000 --> 00:00:27,100 \\n一架B-29轟炸機將會先將XS-1送到空中 \\n\\n6 \\n00:00:27,200 --> 00:00:32,000 \\n然後將他在35,000 英呎的空中發射。 \\n\\n7 \\n00:00:33,000 --> 00:00:34,500 \\nXS-1 並不是一架軍機\\n\\n8 \\n00:00:35,000 --> 00:00:37,500 \\n而是一座「飛行的實驗室」\\n \\n9 \\n00:00:38,000 --> 00:00:40,500 \\n他是設計來測試超音速飛行對飛行器的影響\\n\\n10 \\n00:00:42,000 --> 00:00:44,500 \\n他由四具火箭引擎推進\\n\\n11 \\n00:00:45,000 --> 00:00:48,500 \\n它的無載重量不超過5,000磅\\n\\n12 \\n00:00:49,000 --> 00:00:53,000 \\n但卻搭載著8000磅的燃料 \\n\\n13 \\n00:00:54,000 --> 00:00:56,500 \\nB-29轟炸機創造了許多讓人難忘的事蹟\\n\\n14 \\n00:00:57,000 --> 00:01:01,500 \\n但這次任務可說是前無來者。\\n\\n15 \\n00:01:02,000 --> 00:01:06,000 \\n而以前也從來沒有一架飛機做過XS-1將要完成的任務\\n\\n16 \\n00:01:16,000 --> 00:01:17,500 \\n在水平飛行中突破音障\\n\\n17 \\n00:01:18,000 --> 00:01:20,500 \\n這將是非常驚人的壯舉\\n\\n18 \\n00:01:21,000 --> 00:01:27,000 \\n而這也將給空軍帶來關於新推進系統的有用資訊\\n\\n19 \\n00:01:28,000 --> 00:01:29,500 \\n查克·葉格登上了XS-1\\n\\n20 \\n00:01:30,000 --> 00:01:33,000 \\n而在這個小小的飛行器中,這次的飛行將不會持續很久\\n\\n21 \\n00:01:34,000 --> 00:01:37,500 \\n在全速推進情況下飛行不會持續超過兩分半鐘\\n\\n22 \\n00:01:38,000 --> 00:01:41,000 \\n這次飛行將會十分快速\\n\\n23 \\n00:01:59,000 --> 00:02:01,000 \\n預備! \\n\\n24 \\n00:02:01,000 --> 00:02:02,500 \\n雷達小組也已經就緒\\n\\n25 \\n00:02:03,000 --> 00:02:05,500 \\n做好計時的準備。 雷達是唯一\\n\\n26 \\n00:02:06,000 --> 00:02:09,000 \\n在極高的空中為飛行器測速的方法。\\n\\n27 \\n00:02:14,000 --> 00:02:14,500 \\n他起航了!\\n\\n28 \\n00:02:15,000 --> 00:02:19,000 \\n歷史性的一次重要飛行\\n\\n29 \\n00:02:24,000 --> 00:02:25,500 \\n現在他已經接近了音障\\n\\n30 \\n00:02:26,000 --> 00:02:32,000 \\n音速在 35,000高空中是每小時660英里. \\n\\n31 \\n00:02:33,000 --> 00:02:36,500 \\n這個重要的時刻,穿越了音障 \\n\\n32 \\n00:02:37,000 --> 00:02:39,500 \\n這將是水平飛行的第一次,\\n\\n33 \\n00:02:40,000 --> 00:02:48,500 \\n第一次人類進行超越音速的的飛行。\\n\\n34 \\n00:02:49,000 --> 00:02:53,500 \\n這次飛行為查克·葉格上尉帶來了名聲, 而這架歷史性的飛機— XS-1 \\n\\n35 \\n00:02:54,000 --> 00:02:59,000 \\n則在史密斯森研究中心獲得了一個展示的空間。',\n", + " 'bytes': 2857,\n", + " 'sha1': 'n4mjotcn2dzqczeloyoypyhc7sok0rm',\n", + " 'parent_id': 94794726,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96448295,\n", + " 'timestamp': '2013-05-18T13:02:09Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 25694829,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\nPanorama fotos von Pelješac (2009-2013)\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nFlagge mit Blick Orebić\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\nGebirge von der Spitze der Halbinsel im Osten gesehen\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić aus Vižanica\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić aus dem Nordwesten\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nHalbinsel Pelješac als aus dem Kanal angesehen\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\nÖdland oberhalb Orebić\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\nÖdland oberhalb Orebić\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\n\"Kapetani\" und die Inseln von \"Bila Ploča\" (weiße Platte)\\n\\n9\\n00:00:36,000 --> 00:00:39,800\\nOskorušno aus Viter\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda aus Viter\\n\\n11\\n00:00:44,000 --> 00:00:47,800\\n\"Kapetani\" aus dem Westen\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nWeinberge im Süden\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj aus dem Westen\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nNieder Nakovana von Gradina\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nKorčula aus Gradina\\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nAuf Supine über Mokalo\\n\\n17.\\n00:01:08,000 --> 00:01:11,800\\nOrebić von Mokalo\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomje und Pijavičino aus dem Westen\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nKloster in Podgorje aus dem Nordosten\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nKloster in Podgorje aus dem Nordwesten\\n\\n\\n21.\\n00:01:24,000 --> 00:01:27,800\\nOrebić aus Supine\\n\\n22.\\n00:01:28,000 --> 00:01:31,800\\nMokalo und Postup aus Supine\\n\\n23.\\n00:01:32,000 --> 00:01:35,800\\nGrat Pratnjice\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić aus dem Norden\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić aus dem Nordwesten\\n\\n26.\\n00:01:44,000 --> 00:01:47,800\\nBerg Žrnovnica\\n\\n27.\\n00:01:48,000 --> 00:01:51,800\\nOrebić aus dem Norden\\n\\n28.\\n00:01:52,000 --> 00:01:55,800\\nAnsicht von Orebić zwischen 2 Felsen\\n\\n29.\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31.\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nVižanica-Südosthänge\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\nBucht von Divna\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nPelješka Duba vom Gipfel des Pelješac aus gesehen\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nBarinski Spitzen und Žrnovska Banja im Hintergrund\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\nBlick von der Halbinsel im Westen\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nGornja Vrućica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton und Salinen\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nDonja Vrućica von Süden (Mokalo Bereich)\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nKloster in Kuna Pelješka angesehen aus dem Süden\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nvernachlässigt Weinberge von Vlastica gesehen\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina aus dem Westen\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRuskovići aus dem Norden\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nDorf Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nDorf Lovište\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nHängen Vlaštica\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\nKreuz auf der Spitze von Pelješac',\n", + " 'bytes': 2969,\n", + " 'sha1': 'b9f43l7b7i2dyivwuw0ty5ae550mmjo',\n", + " 'parent_id': 94901093,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96447916,\n", + " 'timestamp': '2013-05-18T12:49:54Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 25694960,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\npanorama fotos de Pelješac. Fotos tomadas en el periodo 2009-2013\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nBandiera con la vista hacia Orebić\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\ncordillera vista desde la parte superior de la península hacia el este\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić desde Vižanica\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić desde el noroeste\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nPenínsula como se ve desde el canal\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\ntierra estéril por encima de Orebić\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\ntierra estéril por encima de Orebić\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\n\"Kapetani\" y las islas de \"Bila ploča\" (\"panel blanco\")\\n\\n9\\n00:00:36,000 --> 00:00:39,800\\nOskorušno desde Viter\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda desde Viter\\n\\n11\\n00:00:44,000 --> 00:00:47,800\\n\"Kapetani\" desde Occidente\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nViñedos en el sur\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj desde el oeste\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nBaja Nakovana desde Gradina\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nKorčula desde Gradina\\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nEn posición supina encima Mokalo\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić desde Mokalo\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomje y Pijavičino desde el oeste\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nmonasterio en Podgorje desde el noreste\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nmonasterio en Podgorje desde el noroeste\\n\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić desde Supine\\n\\n22\\n00:01:28,000 --> 00:01:31,800\\nMokalo y Postup desde Supino\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\ncresta Pratnjice\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić desde el norte\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić desde el noroeste\\n\\n26\\n00:01:44,000 --> 00:01:47,800\\nColina Žrnovnica\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić desde el norte\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nVista de Orebić entre 2 rocas\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nVižanica-sureste pendientes\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\nbahía de Divna\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nPelješka Duba vista desde mas alto pico de Pelješac\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nPicos Barinski y Žrnovska Banja en segundo plano\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\nvista desde la península hacia el oeste\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nGornja Vrućica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton y salinas\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nDonja Vrućica de sur (rango Mokalo)\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nMonasterio en Kuna Pelješka visto desde el sur\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nviñedos abandonados visto desde Vlaštica\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina desde el oeste\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRuskovići desde el norte\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\npueblo de Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\npueblo de Lovište\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nladeras de Vlaštica\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\ncruz en el pico de Pelješac',\n", + " 'bytes': 3050,\n", + " 'sha1': 'bzsqez7v4h4nbjkrqaacsl2qjl84dxg',\n", + " 'parent_id': 96443427,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97519598,\n", + " 'timestamp': '2013-06-03T13:35:39Z',\n", + " 'user': {'id': 83322, 'text': 'Alexanderps'},\n", + " 'page': {'id': 25714948,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,800\\nAs fotos panorâmicas do Pelješac. Tirados no período de 2009-2013\\n\\n2\\n00:00:04,000 --> 00:00:07,800\\nBandeira com vista a Orebić\\n\\n3\\n00:00:08,000 --> 00:00:11,800\\nVista para a montanha a partir do topo da península para o leste\\n\\n4\\n00:00:12,000 --> 00:00:15,800\\nOrebić a partir de Vižanica\\n\\n5\\n00:00:16,000 --> 00:00:19,800\\nOrebić a partir do noroeste\\n\\n6\\n00:00:20,000 --> 00:00:23,800\\nPenínsula vista do canal\\n\\n7\\n00:00:24,000 --> 00:00:27,800\\nTerra árida sobre Orebić\\n\\n8\\n00:00:28,000 --> 00:00:31,800\\nTerra árida sobre Orebić\\n\\n9\\n00:00:32,000 --> 00:00:35,800\\n\"Kapetani\" e as ilhas de \"Bila Ploča\" (\"Painel Branco\")\\n\\n10\\n00:00:36,000 --> 00:00:39,800\\nOskorušno a partir de Viter\\n\\n11\\n00:00:40,000 --> 00:00:43,800\\nZagruda a partir de Viter\\n\\n12\\n00:00:44,000 --> 00:00:47,800\\n\"Kapetani\" pelo Oeste\\n\\n13\\n00:00:48,000 --> 00:00:51,800\\nVinhedos no Sul\\n\\n14\\n00:00:52,000 --> 00:00:55,800\\nViganj a partir do oeste\\n\\n15\\n00:00:56,000 --> 00:00:59,800\\nBaixa Nakovana de Gradina\\n\\n16\\n00:01:00,000 --> 00:01:03,800\\nKorčula a partir de Gradina\\n\\n17\\n00:01:04,000 --> 00:01:07,800\\nEm Supine sobre Mokalo \\n\\n18\\n00:01:08,000 --> 00:01:11,800\\nOrebić a partir de Mokalo\\n\\n19\\n00:01:12,000 --> 00:01:15,800\\nPotomje e Pijavičino pelo oeste\\n\\n20\\n00:01:16,000 --> 00:01:19,800\\nMosteiro em Podgorje visto pelo nordeste\\n\\n21\\n00:01:20,000 --> 00:01:23,800\\nMosteiro em Podgorje visto pelo noroeste\\n\\n22\\n00:01:24,000 --> 00:01:27,800\\nOrebić a partir de Supine\\n\\n23\\n00:01:28,000 --> 00:01:31,800\\nMokalo e Postup a partir de Supine\\n\\n24\\n00:01:32,000 --> 00:01:35,800\\nSerra de Pratnjice\\n\\n25\\n00:01:36,000 --> 00:01:39,800\\nOrebić a partir do norte\\n\\n26\\n00:01:40,000 --> 00:01:43,800\\nOrebić a partir do noroeste\\n\\n27\\n00:01:44,000 --> 00:01:47,800\\nColina Žrnovnica\\n\\n28\\n00:01:48,000 --> 00:01:51,800\\nOrebić a partir do norte\\n\\n29\\n00:01:52,000 --> 00:01:55,800\\nVista de Orebić entre duas rochas\\n\\n30\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n31\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n32\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n33\\n00:02:08,000 --> 00:02:11,800\\nVižanica-encostas do sudoeste\\n\\n34\\n00:02:12,000 --> 00:02:15,800\\nBaía Divna\\n\\n35\\n00:02:16,000 --> 00:02:19,800\\nDuba Pelješka, vista a partir do cume de Pelješac\\n\\n36\\n00:02:20,000 --> 00:02:23,800\\nPicos Barinski e Žrnovska Banja ao fundo\\n\\n37\\n00:02:24,000 --> 00:02:27,800\\nVista da península a oeste\\n\\n38\\n00:02:28,000 --> 00:02:31,800\\nGornja Vrućica\\n\\n39\\n00:02:32,000 --> 00:02:35,800\\nSton e algumas salinas\\n\\n40\\n00:02:36,000 --> 00:02:39,800\\nDonja Vrućica pela vista sul (serra de Mokalo)\\n\\n41\\n00:02:40,000 --> 00:02:43,800\\nMosteiro em Kuna Pelješka visto a partir do sul\\n\\n42\\n00:02:44,000 --> 00:02:47,800\\nVinhas abandonadas-vista de Vlaštica\\n\\n43\\n00:02:48,000 --> 00:02:51,800\\nJanjina a partir do oeste\\n\\n44\\n00:02:52,000 --> 00:02:55,800\\nRuskovići a partir do norte\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nAldeia Lovište \\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nAldeia Lovište \\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nEncostas de Vlaštica \\n\\n47\\n00:03:08,000 --> 00:03:11,800\\nCruz no topo de Pelješac',\n", + " 'bytes': 3037,\n", + " 'sha1': 'plgr5tjqpgogc6arip34ph7i6uf1ft3',\n", + " 'parent_id': 97519359,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96448680,\n", + " 'timestamp': '2013-05-18T13:15:11Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 25721534,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\nLe foto panoramiche di Pelješac. Foto scatate nel periodo 2009-2013\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nBandiera nella vista di Orebić\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\npaesaggio montagnero di penisola visto ad est\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić da Vižanica\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić da nord-ovest\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nPenisola vista dal canale\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\nterra arida sopra Orebić\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\nterra arida sopra Orebić\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\n\"Kapetani\" e le isole \"Bila ploča\" (\"pannello bianco\")\\n\\n9\\n00:00:36,000 --> 00:00:39,800\\nOskorušno da Viter\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda vista da Viter\\n\\n11\\n00:00:44,000 --> 00:00:47,800\\n\"Kapetani\" dall\\'Occidente\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nVigneti a Sud\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj da ovest\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nBassa Nakovana vista da Gradina\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nKorcula dal Gradina\\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nSopra Mokalo supina\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić da Mokalo\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomje e Pijavičino da ovest\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nMonastero Podgorje da nord-est\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nMonastero Podgorje da nord-ovest\\n\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić da Supine\\n\\n22\\n00:01:28,000 --> 00:01:31,800\\nMokalo e Postup da Supine\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\ncresta di Pratnjice \\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić da nord\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić da nord-ovest\\n\\n26\\n00:01:44,000 --> 00:01:47,800\\ncollina Žrnovnica\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić da nord\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nVissta di Orebić tra due rocce\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nVižanica-sud-est da sci\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\ngolfo di Divna\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nDuba Pelješka vista da più alto picco Peljesac\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nCime e Žrnovska Banja Barinski sfondo\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\nvista dalla penisola ad ovest\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nGornja Vrućica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton e saline\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nDonja Vrućica da sud (campo Mokalo)\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nMonastero in Kuna Pelješka visto da sud\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nvigneti abbandonati visti da Vlaštica\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina da ovest\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRuskovići da nord\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nVillaggio di Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nVillaggio di Lovište\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nVlaštica pendii\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\ncroce al culmine di Peljesac',\n", + " 'bytes': 2857,\n", + " 'sha1': 'r89fi3vstgvzov79d4yy0hggvjpuw43',\n", + " 'parent_id': 96448641,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 589620348,\n", + " 'timestamp': '2021-09-08T10:00:15Z',\n", + " 'user': {'id': 2366229, 'text': 'Achim55'},\n", + " 'page': {'id': 25732053,\n", + " 'title': 'Arirang.ogg.ko.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Revert to revision 95030205 dated 2013-04-23 21:18:37 by Ryuch using [[:en:Wikipedia:Tools/Navigation_popups|popups]]',\n", + " 'text': '1\\n00:00:10,1000 --> 00:00:31,3100\\n아리랑 아리랑 아라리요 아리랑 고개로 넘어간다.\\n\\n2\\n00:00:31,3100 --> 00:00:56,5600\\n나를 버리고 가시는 님은 십리도 못가서 발병난다.\\n\\n3\\n00:00:56,5600 --> 00:01:23,8300\\n아리랑 아리랑 아라리요 아리랑 고개로 넘어간다.',\n", + " 'bytes': 305,\n", + " 'sha1': 'bmtzuboh87dd95wkt4iy2dgkqekyq37',\n", + " 'parent_id': 589565194,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95344131,\n", + " 'timestamp': '2013-04-29T21:29:01Z',\n", + " 'user': {'id': 1178694, 'text': 'Rillke'},\n", + " 'page': {'id': 25739400,\n", + " 'title': 'En-us-blue.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Protected TimedText:En-us-blue.ogg.en.srt: Transcription finished. ([Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite))',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,400\\nBlue',\n", + " 'bytes': 36,\n", + " 'sha1': '2l0uvwer7vouvuin06b56n4h22cz4hv',\n", + " 'parent_id': 95060934,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 525922884,\n", + " 'timestamp': '2021-01-14T16:30:01Z',\n", + " 'user': {'text': '77.43.132.149'},\n", + " 'page': {'id': 25751651,\n", + " 'title': 'SOS morse code.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:01,500\\nS ...\\n\\n2\\n00:00:01,600 --> 00:00:02,700\\nO ---\\n\\n3\\n00:00:02,800 --> 00:00:03,300\\nS ...',\n", + " 'bytes': 115,\n", + " 'sha1': 'rhvv0vun5wcjmdcwbh07o1vf274atm2',\n", + " 'parent_id': 474377455,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 687890254,\n", + " 'timestamp': '2022-09-11T01:58:17Z',\n", + " 'user': {'id': 10672571, 'text': 'Rowandigitalphotography'},\n", + " 'page': {'id': 25777305,\n", + " 'title': 'United States Navy Band - God Save the King.oga.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:11,000 --> 00:00:18,000\\nGod save our gracious King,\\n\\n2\\n00:00:18,000 --> 00:00:25,000\\nLong live our noble King,\\n\\n3\\n00:00:25,000 --> 00:00:30,000\\nGod save the King.\\n\\n4\\n00:00:32,700 --> 00:00:39,000\\nSend him victorious,\\n\\n5\\n00:00:39,000 --> 00:00:46,000\\nHappy and glorious,\\n\\n6\\n00:00:46,000 --> 00:00:53,000\\nLong to reign over us,\\n\\n7\\n00:00:53,500 --> 00:01:01,000\\nGod save the King!',\n", + " 'bytes': 385,\n", + " 'sha1': 'kpl6qnm2u8uxd2n19e6fca0tlcjtx00',\n", + " 'parent_id': 687885852,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95188380,\n", + " 'timestamp': '2013-04-27T06:55:45Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 25777342,\n", + " 'title': 'Eric Walter - voix.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,000 Hola, mi nombre es Éric Walter, nací en París, 2 00:00:05,200 --> 00:00:11,000 y soy el secretario general de Hadopi desde e...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,000\\nHola, mi nombre es Éric Walter, nací en París,\\n\\n2\\n00:00:05,200 --> 00:00:11,000\\ny soy el secretario general de Hadopi desde el 1 de marzo.',\n", + " 'bytes': 173,\n", + " 'sha1': '0erjff8ek7of9ft97x7aid47ghcy85d',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95189494,\n", + " 'timestamp': '2013-04-27T07:38:47Z',\n", + " 'user': {'id': 55568, 'text': 'Littletung'},\n", + " 'page': {'id': 25777754,\n", + " 'title': 'Elephants Dream (high quality).ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:15,000 --> 00:00:17,951 我們可以看到左邊有... 2 00:00:18,166 --> 00:00:20,083 我們可以看到右邊有... 3 00:00:20,119 --> 00:00:21,962 ...'\",\n", + " 'text': '1\\n00:00:15,000 --> 00:00:17,951\\n我們可以看到左邊有...\\n\\n2\\n00:00:18,166 --> 00:00:20,083\\n我們可以看到右邊有...\\n\\n3\\n00:00:20,119 --> 00:00:21,962\\n...the head-snarlers\\n\\n4\\n00:00:21,999 --> 00:00:24,368\\n一切都是安全的。\\n完全安全。\\n\\n5\\n00:00:24,582 --> 00:00:27,035\\nEmo?\\n\\n6\\n00:00:28,206 --> 00:00:29,996\\n小心!\\n\\n7\\n00:00:47,037 --> 00:00:48,494\\n你有沒有受傷?\\n\\n8\\n00:00:51,994 --> 00:00:53,949\\n我想沒有。\\n你呢?\\n\\n9\\n00:00:55,160 --> 00:00:56,985\\n我很好。\\n\\n10\\n00:00:57,118 --> 00:01:01,111\\n站起來。\\nEmo,這裡不安全。\\n\\n11\\n00:01:02,034 --> 00:01:03,573\\n我們走吧。\\n\\n12\\n00:01:03,610 --> 00:01:05,114\\n接下來呢?\\n\\n13\\n00:01:05,200 --> 00:01:09,146\\n你會看到的!\\n\\n14\\n00:01:16,032 --> 00:01:18,022\\nEmo.\\n這邊走。\\n\\n15\\n00:01:34,237 --> 00:01:35,481\\n跟我走!\\n\\n16\\n00:02:11,106 --> 00:02:12,480\\nEmo,快點!\\n\\n17\\n00:02:48,059 --> 00:02:49,930\\n你一點都不專心!\\n\\n18\\n00:02:50,142 --> 00:02:54,052\\n我只是想接...\\n...電話。\\n\\n19\\n00:02:54,974 --> 00:02:57,972\\nEmo,你看,\\n我的意思是聽。\\n\\n20\\n00:02:59,140 --> 00:03:02,008\\n你必須學會聽。\\n\\n21\\n00:03:03,140 --> 00:03:04,965\\n這不是什麼遊戲。\\n\\n22\\n00:03:05,056 --> 00:03:09,345\\n你,我的意思是我們,\\n我們很容易從這裡消失。\\n\\n23\\n00:03:10,014 --> 00:03:13,959\\n聽著,\\n聽機器的聲音。\\n\\n24\\n00:03:18,054 --> 00:03:20,009\\n聽聽你自\\u200b\\u200b己的呼吸。\\n\\n25\\n00:04:27,001 --> 00:04:28,956\\n好了,你一點都不累嗎?\\n\\n26\\n00:04:29,084 --> 00:04:30,909\\n累? ! ?\\n\\n27\\n00:04:31,126 --> 00:04:34,491\\nEmo,這個機器就好像時鐘的發條。\\n\\n28\\n00:04:35,083 --> 00:04:37,074\\n在這裡只要走錯一步...\\n\\n29\\n00:04:37,166 --> 00:04:39,121\\n...你就會摔成肉泥\\n\\n30\\n00:04:40,958 --> 00:04:42,004\\n但這不是 -\\n\\n31\\n00:04:42,041 --> 00:04:46,034\\n肉泥,Emo!\\n這就是你想要的,肉泥?\\n\\n32\\n00:04:47,040 --> 00:04:48,995\\nEmo,你的人生目標...\\n\\n33\\n00:04:50,081 --> 00:04:51,953\\n...肉泥?\\n\\n34\\n00:05:41,156 --> 00:05:43,028\\nEmo,閉上眼睛。\\n\\n35\\n00:05:44,156 --> 00:05:46,027\\n為什麼?\\n- 馬上!\\n\\n36\\n00:05:51,155 --> 00:05:52,102\\n好吧。\\n\\n37\\n00:05:53,113 --> 00:05:54,688\\n很好。\\n\\n38\\n00:05:59,070 --> 00:06:02,103\\n你在左邊看到什麼了,Emo?\\n\\n39\\n00:06:04,028 --> 00:06:05,899\\n什麼都沒有。\\n- 真的?\\n\\n40\\n00:06:06,027 --> 00:06:07,105\\n不,根本沒有什麼。\\n\\n41\\n00:06:07,944 --> 00:06:11,984\\n那你的右邊呢,\\n你有沒有在你的右邊看到什麼,Emo?\\n\\n42\\n00:06:13,151 --> 00:06:16,102\\n一樣的,Proog。完全一樣...\\n\\n43\\n00:06:16,942 --> 00:06:19,098\\n...什麼都沒有!\\n- 非常好。\\n\\n44\\n00:06:40,105 --> 00:06:42,724\\n聽,Proog!你聽到沒有!\\n\\n45\\n00:06:43,105 --> 00:06:44,894\\n我們可以到這裡嗎?\\n\\n46\\n00:06:44,979 --> 00:06:47,894\\n那裡?\\n那裡不安全,Emo。\\n\\n47\\n00:06:49,145 --> 00:06:52,013\\n但是...\\n- 相信我,那裡不安全。\\n\\n48\\n00:06:53,020 --> 00:06:54,145\\n也許我可以...\\n\\n49\\n00:06:54,181 --> 00:06:55,969\\n不。\\n\\n50\\n00:06:57,102 --> 00:06:59,934\\n不!\\n\\n51\\n00:07:00,144 --> 00:07:03,058\\n還有什麼問題嗎,Emo?\\n\\n52\\n00:07:03,976 --> 00:07:05,090\\n不。\\n\\n53\\n00:07:09,059 --> 00:07:10,089\\nEmo?\\n\\n54\\n00:07:11,142 --> 00:07:13,058\\nEmo,為什麼...\\n\\n55\\n00:07:13,095 --> 00:07:14,022\\nEmo...\\n\\n56\\n00:07:14,058 --> 00:07:18,003\\n...為什麼你看不到\\n這個地方的美麗之處?\\n\\n57\\n00:07:18,141 --> 00:07:20,048\\n它的運作之道。\\n\\n58\\n00:07:20,140 --> 00:07:23,895\\n它是多麼完美。\\n\\n59\\n00:07:23,932 --> 00:07:26,964\\n不,Proog,我看不到。\\n\\n60\\n00:07:27,056 --> 00:07:29,970\\n我看不到,因為它什麼都沒有。\\n\\n61\\n00:07:31,055 --> 00:07:34,965\\n而我為什麼要用我的生命\\n來相信一個不存在的事物?\\n\\n62\\n00:07:35,055 --> 00:07:36,926\\n好了,你可以告訴我嗎?\\n\\n63\\n00:07:37,054 --> 00:07:38,926\\n回答我。\\n\\n64\\n00:07:42,970 --> 00:07:44,000\\nProog...\\n\\n65\\n00:07:45,053 --> 00:07:46,985\\n...你這個變態!\\n\\n66\\n00:07:47,022 --> 00:07:48,918\\n離我遠點。\\n\\n67\\n00:07:52,052 --> 00:07:54,884\\n不! Emo!那是陷阱!\\n\\n68\\n00:07:55,135 --> 00:07:56,931\\n啊,這是陷阱!\\n\\n69\\n00:07:56,968 --> 00:08:01,043\\n在左邊你可以看到\\n巴比倫空中花園!\\n\\n70\\n00:08:01,967 --> 00:08:03,957\\n這怎麼會是個陷阱呢?\\n\\n71\\n00:08:05,050 --> 00:08:06,922\\n不,Emo。\\n\\n72\\n00:08:09,008 --> 00:08:12,088\\n在右邊你可以看到...\\n...猜猜是什麼...\\n\\n73\\n00:08:12,924 --> 00:08:14,665\\n...羅德島太陽神銅像!\\n\\n74\\n00:08:15,132 --> 00:08:16,053\\n不!\\n\\n75\\n00:08:16,090 --> 00:08:21,919\\n羅德島太陽神銅像\\n它在這裡等你,Proog。\\n\\n76\\n00:08:51,001 --> 00:08:52,923\\n它在這裡...\\n\\n77\\n00:08:52,959 --> 00:08:56,040\\n我告訴你吧,\\nEmo...\\n\\n78\\n00:08:57,000 --> 00:08:59,867\\n...它在。',\n", + " 'bytes': 4738,\n", + " 'sha1': 'r531u5d5g397uew4gdazb5qmyeseyh7',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95190606,\n", + " 'timestamp': '2013-04-27T08:02:00Z',\n", + " 'user': {'id': 55568, 'text': 'Littletung'},\n", + " 'page': {'id': 25778071,\n", + " 'title': 'Elephants Dream.ogg.zh.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:Elephants Dream (high quality).ogv.zh.srt',\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Littletung moved page [[TimedText:Elephants Dream.ogg.zh.srt]] to [[TimedText:Elephants Dream (high quality).ogv.zh.srt]]',\n", + " 'text': '#REDIRECT [[TimedText:Elephants Dream (high quality).ogv.zh.srt]]',\n", + " 'bytes': 65,\n", + " 'sha1': 'g61zpqywpa53tufq936v3g39244lvqv',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 643194759,\n", + " 'timestamp': '2022-03-22T21:48:47Z',\n", + " 'user': {'id': 9562670, 'text': 'Cutlass'},\n", + " 'page': {'id': 25779617,\n", + " 'title': 'U.S. Navy Band, Advance Australia Fair (instrumental).ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'there was an attempt',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:05,000\\nAustralians all let us rejoice \\n\\n2\\n00:00:05,000 --> 00:00:10,000\\nFor we are one and free\\n\\n3\\n00:00:10,000 --> 00:00:15,000\\nWe've golden soil and wealth for toil\\n\\n4\\n00:00:15,000 --> 00:00:20,000\\nOur home is girt by sea\\n\\n5\\n00:00:20,000 --> 00:00:25,000\\nOur land abounds in nature's gifts\\n\\n6\\n00:00:25,000 --> 00:00:30,000\\nOf beauty rich and rare\\n\\n7\\n00:00:30,000 --> 00:00:35,000\\nIn history's page, let every stage\\n\\n8\\n00:00:35,000 --> 00:00:40,000\\nAdvance Australia Fair\\n\\n9\\n00:00:40,000 --> 00:00:45,000\\nIn joyful strains then let us sing\\n\\n10\\n00:00:45,000 --> 00:00:52,000\\nAdvance Australia Fair!\",\n", + " 'bytes': 623,\n", + " 'sha1': 's1v0p9x5u8goqnzjbuqx69sktvjpgua',\n", + " 'parent_id': 591335861,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 661395555,\n", + " 'timestamp': '2022-06-04T06:14:09Z',\n", + " 'user': {'text': '2400:4050:82A3:2100:598D:6C5B:F310:FC4F'},\n", + " 'page': {'id': 25791139,\n", + " 'title': 'Kimi ga Yo instrumental.ogg.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:09,000\\n君が代は\\n\\n2\\n00:00:09,000 --> 00:00:20,000\\n千代に八千代に\\n\\n3\\n00:00:20,000 --> 00:00:30,000\\nさざれ石の\\n\\n4\\n00:00:30,000 --> 00:00:40,000\\n巌となりて\\n\\n5\\n00:00:40,000 --> 00:00:58,000\\n苔の生すまで',\n", + " 'bytes': 249,\n", + " 'sha1': '8bbg4qie37ewp3zbpxme2mf73o55raa',\n", + " 'parent_id': 654391102,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 400963261,\n", + " 'timestamp': '2020-03-02T16:01:10Z',\n", + " 'user': {'id': 8430642, 'text': 'RalvahKaset'},\n", + " 'page': {'id': 25791193,\n", + " 'title': 'United States Navy Band - Nokoreach.ogg.km.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:08,000\\nសូមពួកទេវព្តា រក្សាមហាក្សត្រយើង\\n\\n2\\n00:00:08,000 --> 00:00:16,000\\nអោយបានរុងរឿង ដោយជ័យមង្គលសិរីសួស្តី\\n\\n3\\n00:00:16,000 --> 00:00:25,000\\nយើងខ្ញុំព្រះអង្គ សូមជ្រកក្រោមម្លប់ព្រះបារមី\\n\\n4\\n00:00:25,000 --> 00:00:34,000\\nនៃព្រះនរបតី វង្សក្សត្រាដែលសាងប្រាសាទថ្ម\\n\\n5\\n00:00:35,000 --> 00:00:41,000\\nគ្រប់គ្រងដែនខ្មែរ បុរាណថ្កើងថ្កាន។\\n\\n6\\n00:00:42,000 --> 00:00:50,000\\nប្រាសាទសិលា កំបាំងកណ្តាលព្រៃ\\n\\n7\\n00:00:50,000 --> 00:00:58,000\\nគួរអោយស្រមៃ នឹកដល់យសស័ក្តិមហានគរ\\n\\n8\\n00:00:58,000 --> 00:01:08,000\\nជាតិខ្មែរដូចថ្ម គង់វង្សនៅល្អរឹងប៉ឹងជំហរ\\n\\n9\\n00:01:08,000 --> 00:01:17,000\\nយើងសង្ឃឹមពរ ភ័ព្វព្រេងសំណាងរបស់កម្ពុជា\\n\\n10\\n00:01:18,000 --> 00:01:27,000\\nមហារដ្ឋកើតមាន យូរអង្វែងហើយ។',\n", + " 'bytes': 1354,\n", + " 'sha1': '36k7v8jpy2yc91svmtm396kr10z7s1w',\n", + " 'parent_id': 95233806,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95234265,\n", + " 'timestamp': '2013-04-28T05:35:18Z',\n", + " 'user': {'id': 117688, 'text': 'Billytanghh'},\n", + " 'page': {'id': 25791333,\n", + " 'title': 'O Canada.ogg.en-ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:03,000 O Canada! 2 00:00:03,000 --> 00:00:08,000 Our home and native land! 3 00:00:08,000 --> 00:00:15,000 True patriot love in all t...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,000\\nO Canada!\\n\\n2\\n00:00:03,000 --> 00:00:08,000\\nOur home and native land!\\n\\n3\\n00:00:08,000 --> 00:00:15,000\\nTrue patriot love in all thy sons command.\\n\\n4\\n00:00:16,000 --> 00:00:20,000\\nWith glowing hearts we see thee rise,\\n\\n5\\n00:00:20,000 --> 00:00:24,000\\nThe True North strong and free!\\n\\n6\\n00:00:24,000 --> 00:00:26,000\\nFrom far and wide,\\n\\n7\\n00:00:26,000 --> 00:00:33,000\\nO Canada, we stand on guard for thee.\\n\\n8\\n00:00:33,000 --> 00:00:41,000\\nGod keep our land glorious and free!\\n\\n9\\n00:00:41,000 --> 00:00:48,000\\nO Canada, we stand on guard for thee.\\n\\n10\\n00:00:49,000 --> 00:00:57,000\\nO Canada, we stand on guard for thee.',\n", + " 'bytes': 648,\n", + " 'sha1': '90p85evyhigjv7x2qtilxjwya9ge0kk',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 139047649,\n", + " 'timestamp': '2014-11-09T08:32:41Z',\n", + " 'user': {'id': 1216133, 'text': 'Champion'},\n", + " 'page': {'id': 25791357,\n", + " 'title': 'O Canada.ogg.frc.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'TheChampionMan1234 moved page [[TimedText:O Canada.ogg.fr.srt]] to [[TimedText:O Canada.ogg.frc.srt]]: More specific variety',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:03,000\\nÔ Canada!\\n\\n2\\n00:00:03,000 --> 00:00:08,000\\nTerre de nos aïeux,\\n\\n3\\n00:00:08,000 --> 00:00:15,000\\nTon front est ceint de fleurons glorieux!\\n\\n4\\n00:00:16,000 --> 00:00:20,000\\nCar ton bras sait porter l'épée,\\n\\n5\\n00:00:20,000 --> 00:00:24,000\\nIl sait porter la croix!\\n\\n6\\n00:00:24,000 --> 00:00:26,000\\nTon histoire est une épopée\\n\\n7\\n00:00:26,000 --> 00:00:33,000\\nDes plus brillants exploits.\\n\\n8\\n00:00:33,000 --> 00:00:41,000\\nEt ta valeur, de foi trempée,\\n\\n9\\n00:00:41,000 --> 00:00:48,000\\nProtégera nos foyers et nos droits.\\n\\n10\\n00:00:49,000 --> 00:00:57,000\\nProtégera nos foyers et nos droits.\",\n", + " 'bytes': 627,\n", + " 'sha1': 'aeb3dw37zurl097cu8ivfspycunuqgf',\n", + " 'parent_id': 95234348,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95314261,\n", + " 'timestamp': '2013-04-29T11:28:49Z',\n", + " 'user': {'id': 5100, 'text': 'Fuzheado'},\n", + " 'page': {'id': 25814701,\n", + " 'title': 'GLAM Wiki US 2013 Boot Camp - David Ferriero.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'start',\n", + " 'text': '1\\n00:00:03,000 --> 00:00:08,400\\nDavid Ferriero, Archivist of the United States',\n", + " 'bytes': 78,\n", + " 'sha1': '90eh51yb87al90tidmbvno03oh5prys',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 329858363,\n", + " 'timestamp': '2018-11-30T09:59:15Z',\n", + " 'user': {'text': '139.193.107.234'},\n", + " 'page': {'id': 25846648,\n", + " 'title': 'Pink noise.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:10,000\\n(pink noise)',\n", + " 'bytes': 44,\n", + " 'sha1': 'lzh8jbulyavuymteezwx6svswra0ssw',\n", + " 'parent_id': 329858317,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95442596,\n", + " 'timestamp': '2013-05-01T11:26:29Z',\n", + " 'user': {'id': 1728326, 'text': 'MuhdNurHidayat'},\n", + " 'page': {'id': 25848025,\n", + " 'title': 'Thank You from the Children of OLPC.ogg.ms.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Updated timecodes',\n", + " 'text': '1\\n00:00:23,000 --> 00:00:26,500\\nSaya juga menggunakan XO untuk\\n\\n2\\n00:00:26,500 --> 00:00:28,500\\nmenangkap gambar di rumah.\\n\\n3\\n00:00:28,500 --> 00:00:30,500\\nSaya juga guna XO untuk buat pengiraan matematik.\\n\\n4\\n00:00:30,500 --> 00:00:34,500\\nSaya juga melukis di atas XO ini.\\n\\n5\\n00:00:34,500 --> 00:00:37,500\\nJadi, saya ingin ucap terima kasih kepada mereka yang membawa XO ke sini.\\n\\n6\\n00:00:37,500 --> 00:00:39,500\\nMereka patut bawa lebih banyak XO\\n\\n7\\n00:00:39,500 --> 00:00:41,000\\nuntuk abang dan kakak saya,\\n\\n8\\n00:00:41,000 --> 00:00:43,500\\ndan orang lain di rumah saya,\\n\\n9\\n00:00:43,500 --> 00:00:45,500\\njadi saya sangat berterima kasih kepada mereka.\\n\\n10\\n00:00:45,500 --> 00:00:48,500\\nSaya suka komputer riba saya, terima kasih.\\n\\n11\\n00:00:48,500 --> 00:00:52,500\\nTerima kasih.',\n", + " 'bytes': 777,\n", + " 'sha1': 'qo0j47kel4n5o8epd0du79aplzbnamm',\n", + " 'parent_id': 95442452,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95444145,\n", + " 'timestamp': '2013-05-01T11:53:03Z',\n", + " 'user': {'id': 1728326, 'text': 'MuhdNurHidayat'},\n", + " 'page': {'id': 25848304,\n", + " 'title': 'Thank You from the Children of OLPC.ogg.zh-my.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:23,000 --> 00:00:26,500\\n我也用这XO\\n\\n2\\n00:00:26,500 --> 00:00:28,500\\n来在家里拍照。\\n\\n3\\n00:00:28,500 --> 00:00:30,500\\n我也用来算数学。\\n\\n4\\n00:00:30,500 --> 00:00:34,500\\n我也用来画画。\\n\\n5\\n00:00:34,500 --> 00:00:37,500\\n所以,我想要谢那个带这XO来这儿的人们。\\n\\n6\\n00:00:37,500 --> 00:00:39,500\\n他们应该带多XO\\n\\n7\\n00:00:39,500 --> 00:00:41,000\\n给我的兄弟姐妹,\\n\\n8\\n00:00:41,000 --> 00:00:43,500\\n和我家人们,\\n\\n9\\n00:00:43,500 --> 00:00:45,500\\n所以我要谢他们。\\n\\n10\\n00:00:45,500 --> 00:00:48,500\\n我很喜欢我的手提电脑,谢谢。\\n\\n11\\n00:00:48,500 --> 00:00:52,500\\n谢谢。',\n", + " 'bytes': 647,\n", + " 'sha1': 'e80m4gihbdzbb78dhfplzj6iik985f4',\n", + " 'parent_id': 95444006,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 127968921,\n", + " 'timestamp': '2014-07-02T09:04:56Z',\n", + " 'user': {'id': 1607850, 'text': 'Buernia'},\n", + " 'page': {'id': 25851144,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,800 -->00:00:03,500\\n你好!我是特离谱。我帮维基百科制作了可视化编辑器。\\n\\n2\\n00:00:03,505 -->00:00:07,505\\n任何人都可以编辑维基百科,但新手往往很难下手,\\n\\n3\\n00:00:07,762 -->00:00:11,262\\n因为维基百科的页面代码是非常难以理解的。\\n\\n4\\n00:00:11,287 -->00:00:14,787\\n我们12年前创建维基百科时,真是令人兴奋,\\n\\n5\\n00:00:14,925 -->00:00:16,925\\n但是如果我们希望所有人都参与到维基的建设中,\\n\\n6\\n00:00:17,327 -->00:00:19,327\\n我们应该要让人们更容易编辑维基百科。\\n\\n7\\n00:00:19,360 -->00:00:22,360\\n推出可视化编辑器是我们所见过的维基百科的最大的变化了。\\n\\n8\\n00:00:22,604 -->00:00:27,104\\n它使编辑维基百科就像写论文或发电子邮件一样简单。\\n\\n9\\n00:00:27,196 -->00:00:28,696\\n它仍然有些小问题,\\n\\n10\\n00:00:28,962 -->00:00:31,962\\n但如果你想先睹为快,看看将来可以怎么样编辑维基,\\n\\n11\\n00:00:32,207 -->00:00:34,207\\n不妨就在维基百科上创建一个帐户吧。\\n\\n12\\n00:00:34,518 -->00:00:38,018\\n到参数设置、编辑、在启用可视化编辑器前打勾。\\n\\n13\\n00:00:38,296 -->00:00:42,296\\n你使用可视化编辑器后可以给我们反馈意见,帮助我们完善它。\\n\\n14\\n00:00:42,622 -->00:00:46,122\\n最后,希望你加入我们,让所有人的知识都可以共享。',\n", + " 'bytes': 1373,\n", + " 'sha1': 'h5imf80hrarot47ung8isospvxe9hzq',\n", + " 'parent_id': 95457300,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 127968933,\n", + " 'timestamp': '2014-07-02T09:05:18Z',\n", + " 'user': {'id': 1607850, 'text': 'Buernia'},\n", + " 'page': {'id': 25851158,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.zh-cn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,800 -->00:00:03,500\\n你好!我是特雷弗。我正在帮助维基百科制作可视化编辑器。\\n\\n2\\n00:00:03,505 -->00:00:07,505\\n任何人都可以编辑维基百科,但新手往往不知所从,\\n\\n3\\n00:00:07,762 -->00:00:11,262\\n因为维基百科的旧代码十分难以理解。\\n\\n4\\n00:00:11,287 -->00:00:14,787\\n它在我们12年前创建维基百科时的确很棒,\\n\\n5\\n00:00:14,925 -->00:00:16,925\\n但是如果我们要将人类知识的总和向所有人分享,\\n\\n6\\n00:00:17,327 -->00:00:19,327\\n我们应该要让人们分享知识变得更加容易。\\n\\n7\\n00:00:19,360 -->00:00:22,360\\n推出可视化编辑器是我们所见过维基百科的最大变化了。\\n\\n8\\n00:00:22,604 -->00:00:27,104\\n它使编辑维基百科就像写论文或发电子邮件一样简单。\\n\\n9\\n00:00:27,196 -->00:00:28,696\\n它仍然有些小问题,\\n\\n10\\n00:00:28,962 -->00:00:31,962\\n但如果你想先睹为快,看看将来可以怎样编辑维基,\\n\\n11\\n00:00:32,207 -->00:00:34,207\\n不妨就在维基百科上创建一个帐户吧。\\n\\n12\\n00:00:34,518 -->00:00:38,018\\n进入参数设置,单击编辑,然后在启用可视化编辑器前打勾。\\n\\n13\\n00:00:38,296 -->00:00:42,296\\n你使用可视化编辑器时还能给我们提供反馈意见,帮助我们完善它。\\n\\n14\\n00:00:42,622 -->00:00:46,122\\n最后,加入我们吧,让所有人的知识都可以共享。',\n", + " 'bytes': 1376,\n", + " 'sha1': 'snoa0cz0600hsadey97z5aqss75uxvr',\n", + " 'parent_id': 99370040,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 109566724,\n", + " 'timestamp': '2013-11-13T13:29:22Z',\n", + " 'user': {'id': 284676, 'text': 'Skiper'},\n", + " 'page': {'id': 25851863,\n", + " 'title': \"Hymne National de Côte d'Ivoire.ogg.fr.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,500 --> 00:00:05,800\\nSalut Ô terre d’espérance!\\n\\n2\\n00:00:6,000 --> 00:00:09,900\\nPays de l’hospitalité.\\n\\n3\\n00:00:10,750 --> 00:00:14,800\\nTes légions remplies de vaillance,\\n\\n4\\n00:00:14,850 --> 00:00:19,100\\nont relevé ta dignité.\\n\\n5\\n00:00:19,900 --> 00:00:24,000\\nTes fils, chère Côte d’Ivoire,\\n\\n6\\n00:00:24,200 --> 00:00:28,900\\nfiers artisans de ta grandeur,\\n\\n7\\n00:00:29,200 --> 00:00:33,000\\ntous rassemblés et pour ta gloire,\\n\\n8\\n00:00:33,100 --> 00:00:38,000\\nte bâtiront dans le bonheur.\\n\\n9\\n00:00:38,200 --> 00:00:42,600\\nFiers ivoiriens le pays nous appelle.\\n\\n10\\n00:00:42,600 --> 00:00:47,020\\nSi nous avons, dans la paix, ramené la liberté,\\n\\n11\\n00:00:47,020 --> 00:00:52,000\\nnotre devoir sera d’être un modèle\\n\\n12\\n00:00:52,000 --> 00:00:56,800\\nde l’espérance promise à l’humanité\\n\\n13\\n00:00:56,800 --> 00:01:01,350\\nen forgeant, unis dans la foi nouvelle,\\n\\n14\\n00:01:01,400 --> 00:01:07,500\\nla patrie de la vraie fraternité.',\n", + " 'bytes': 959,\n", + " 'sha1': 'keb2u461g6aq2xff3utjld9rraati3h',\n", + " 'parent_id': 99980006,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 205242817,\n", + " 'timestamp': '2016-08-31T13:30:39Z',\n", + " 'user': {'id': 53794, 'text': 'Hedwig in Washington'},\n", + " 'page': {'id': 25871849,\n", + " 'title': 'Jabberwocky-UK.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/168.9.24.58|168.9.24.58]] ([[User talk:168.9.24.58|talk]]) to last revision by 201.141.75.182',\n", + " 'text': '1\\n00:00:01,000 --> 00:00:10,000\\n\\'Twas brillig, and the slithy toves\\nDid gyre and gimble in the wabe;\\nAll mimsy were the borogoves,\\nAnd the mome raths outgrabe.\\n\\n2\\n00:00:10,000 --> 00:00:20,000\\n\"Beware the Jabberwock, my son!\\nThe jaws that bite, the claws that catch!\\nBeware the Jubjub bird, and shun\\nThe frumious Bandersnatch!\"\\n\\n3\\n00:00:20,000 --> 00:00:29,000\\nHe took his vorpal sword in hand:\\nLong time the manxome foe he sought—\\nSo rested he by the Tumtum tree,\\nAnd stood awhile in thought.\\n\\n4\\n00:00:29,000 --> 00:00:37,500\\nAnd as in uffish thought he stood,\\nThe Jabberwock, with eyes of flame,\\nCame whiffling through the tulgey wood,\\nAnd burbled as it came!\\n\\n5\\n00:00:37,500 --> 00:00:46,500\\nOne,two! One,two! and through and through\\nThe vorpal blade went snicker-snack!\\nHe left it dead,and with its head\\nHe went galumphing back.\\n\\n6 \\n00:00:46,500 --> 00:00:55,500\\n\"And hast thou slain the Jabberwock?\\nCome to my arms, my beamish boy!\\nO frabjous day! Callooh! Callay!\"\\nHe chortled in his joy.\\n\\n7\\n00:00:55,500 --> 00:00:66,500\\n\\'Twas brillig, and the slithy toves\\nDid gyre and gimble in the wabe;\\nAll mimsy were the borogoves,\\nAnd the mome raths outgrabe.',\n", + " 'bytes': 1157,\n", + " 'sha1': '9kjzkit2x5z71bogwadbv8km42wc3gv',\n", + " 'parent_id': 205242616,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 95740132,\n", + " 'timestamp': '2013-05-06T20:34:29Z',\n", + " 'user': {'text': '76.111.23.130'},\n", + " 'page': {'id': 25939117,\n", + " 'title': 'Ru-кошка.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:02,000 Koshka - Cat - Кошка'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,000\\nKoshka - Cat - Кошка',\n", + " 'bytes': 57,\n", + " 'sha1': 'h67cgbqdm9xv0ux4ksgkqmm3ttajf1p',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 128875837,\n", + " 'timestamp': '2014-07-13T10:31:16Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 26005426,\n", + " 'title': 'Bibiana spiega quello che facciamo-YouTube.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'McZusatz moved page [[TimedText:Bibiana spiega quello che facciamo-YouTube.webm]] to [[TimedText:Bibiana spiega quello che facciamo-YouTube.webm.en.srt]] without leaving a redirect',\n", + " 'text': \"\\n1\\n00:00:00.420 --> 00:00:05.560\\nI am Bibiana Esperanza Chiquillo , \\nthe coordinator of international cooperation\\n\\n2\\n00:00:05.560 --> 00:00:08.200\\nand public-private\\npartnerships\\n\\n3\\n00:00:08.200 --> 00:00:15.200\\nfor the Social Integration Secretariat.\\n\\n4\\n00:00:20.020 --> 00:00:27.020\\nNow we are working with Armadilla ,\\nan Italian social cooperative,\\n\\n5\\n00:00:29.699 --> 00:00:36.699\\nin a International cooperation project\\nfinanced by the European Union, \\n\\n6\\n00:00:43.659 --> 00:00:50.659\\nthe efforts being done in the world\\nto achieve the millennium development goals.\\n\\n7\\n00:00:51.219 --> 00:00:58.219\\nthey are now here because in Colombia,\\nparticularly in Bogota',\\n\\n8\\n00:00:58.879 --> 00:01:03.459\\nbecause they are interested to cover the projects\\nfor the enforcements of the rights of the unprivileged, \\n\\n9\\n00:01:03.459 --> 00:01:10.459\\nand the programs\\nfor food security.\\n\\n10\\n00:01:14.880 --> 00:01:21.880\\nThey want to show\\nhow we alleviate poverty\\n\\n11\\n00:01:27.539 --> 00:01:28.409\\nWith the footage they collect\\nthey will make a television program\\n\\n12\\n00:01:28.409 --> 00:01:34.439\\nthey will show the reality\\nof the work in progress for the Millennium Development Goals,\\n\\n13\\n00:01:34.439 --> 00:01:38.729\\nnot just \\nthe institutional policies,\\n\\n14\\n00:01:38.729 --> 00:01:41.710\\nbut the ground reality of the people\\nwho work and benefice from the activities.\",\n", + " 'bytes': 1371,\n", + " 'sha1': 'hzfj9l4nwtnege08a6lu5bw57be20hl',\n", + " 'parent_id': 128875797,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 128875862,\n", + " 'timestamp': '2014-07-13T10:31:48Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 26005694,\n", + " 'title': 'Bibiana spiega quello che facciamo-YouTube.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'McZusatz moved page [[TimedText:Bibiana spiega quello che facciamo-YouTube.webmsd.webm.es.srt]] to [[TimedText:Bibiana spiega quello che facciamo-YouTube.webm.es.srt]] without leaving a redirect',\n", + " 'text': '\\n1\\n00:00:00.270 --> 00:00:02.480\\nBibiana Esperanza Chiquillo es mi nombre,\\n\\n2\\n00:00:02.480 --> 00:00:06.860\\nsoy la persona que coordina el tema de cooperaciòn internacional\\n\\n3\\n00:00:06.860 --> 00:00:08.659\\ny alianzas publico-privadas de la Secretaria de Integraciòn Social\\n\\n4\\n00:00:08.659 --> 00:00:10.269\\nen esta oportunidad presentamos una propuesta\\n\\n5\\n00:00:10.269 --> 00:00:12.489\\nque hemos venido tratando desde el año anterior,\\n\\n6\\n00:00:12.489 --> 00:00:15.909\\ny es una propuesta de una cooperativa\\nsocial italiana que se llama Armadilla\\n\\n7\\n00:00:15.909 --> 00:00:17.240\\nacercaron a nosotros, nos contactaron\\n\\n8\\n00:00:17.240 --> 00:00:21.330\\ny es esta organización internacional\\n\\n9\\n00:00:21.330 --> 00:00:22.929\\ndenominada Armadilla\\n\\n10\\n00:00:22.929 --> 00:00:26.210\\nnos explican que aplicaron a un proyecto con la\\nunión europea\\n\\n11\\n00:00:26.210 --> 00:00:29.400\\nen donde se está convocando a hacer el\\nseguimiento de los objetivos de\\n\\n\\n12\\n00:00:29.400 --> 00:00:31.759\\ndesarrollo del milenio en diferentes\\npaíses\\n\\n13\\n00:00:31.759 --> 00:00:35.800\\nentre estos países del mundo, africa\\nIndia,Arabia uno de\\nlos escogidos es Colombia\\n\\n14\\n00:00:35.800 --> 00:00:39.870\\nporque se enteraron que en Colombia\\nparticularmente en Bogotá\\n\\n15\\n00:00:39.870 --> 00:00:43.380\\nse tenian unos proyectos importantes\\n\\n16\\n00:00:43.380 --> 00:00:47.290\\ncomo la garantía de los derechos\\n\\n17\\n00:00:47.290 --> 00:00:48.699\\ny uno de esos programas interesantes\\n\\n18\\n00:00:48.699 --> 00:00:51.280\\nes el de la seguridad alimentaria\\n\\n19\\n00:00:51.280 --> 00:00:53.450\\nque son solo una parte de los problemas\\nde esta zona\\n\\n20\\n00:00:53.450 --> 00:00:58.130\\ny además comentamos que no solo trabajamos\\nel tema del hambre y la pobreza\\n\\n21\\n00:00:58.130 --> 00:01:00.3\\ndesde esta secretaria que\\n\\n22\\n00:01:00.350 --> 00:01:02.020\\nmira mas alla’ de resolver la \\n pobreza y el hambre\\n\\n23\\n00:01:02.020 --> 00:01:04.360\\nsino también lograr impactar\\n\\n24\\n00:01:04.360 --> 00:01:07.960\\notros procesos sociales desde escenarios\\ntan importantes como son los comedores\\n\\n25\\n00:01:07.960 --> 00:01:09.200\\ncomunitarios y asambleas\\n\\n26\\n00:01:09.200 --> 00:01:11.549\\ntratamos también el tema \\nde los niños y de las niñas \\n\\n27\\n00:01:11.549 --> 00:01:14.720\\nque es otro tema importante de \\neste pais\\n\\n28\\n00:01:14.720 --> 00:01:18.130\\ny que esta en la agenda de todas\\nlas regiones \\n\\n29\\n00:01:18.130 --> 00:01:22.530\\nellos nos explicaron que haran\\nun documental que sera un\\nprograma de televisión \\n\\n30\\n00:01:22.530 --> 00:01:25.130\\npara mostrar la realidad de este tipo de\\ndesarrollo social teniendo en cuenta\\n\\n31\\n00:01:25.130 --> 00:01:27.410\\nsiempre los objetivos del milenio\\n\\n32\\n00:01:27.410 --> 00:01:31.800\\na través de formas alternativas,\\nes decir que vayan más allá de lo institucional\\n\\n33\\n00:01:31.800 --> 00:01:33.990\\nentonces la idea es mostrar ese aspecto\\n\\n34\\n00:01:33.990 --> 00:01:38.100\\npero también para que se presenten\\nlos avances desde la\\n\\n35\\n00:01:38.100 --> 00:01:40.300\\ncooperación internacional\\n\\n36\\n00:01:40.300 --> 00:01:41.710\\nprecisamente desde este sitio',\n", + " 'bytes': 3073,\n", + " 'sha1': 'jp8kipue6577jt3jy268qyj5yzmw976',\n", + " 'parent_id': 96106953,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 599903258,\n", + " 'timestamp': '2021-10-18T21:23:18Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 26049045,\n", + " 'title': 'Wikipedia video tutorial-2-Reliability-en.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall update',\n", + " 'text': '1\\n00:00:01,169 --> 00:00:03,461\\nHello there, I\\'m Teresa.\\n\\n2\\n00:00:03,503 --> 00:00:05,180\\nThanks for watching our video,\\n\\n3\\n00:00:05,212 --> 00:00:07,780\\nwhich explains how anyone\\ncan contribute to Wikipedia,\\n\\n4\\n00:00:07,780 --> 00:00:10,794\\nthe worlds biggest and best,\\nfree encyclopedia.\\n\\n5\\n00:00:11,282 --> 00:00:15,515\\nAs you may know, it\\'s possible for anyone\\nto edit any article on Wikipedia.\\n\\n6\\n00:00:15,570 --> 00:00:19,989\\nAll you have to do is click \"Edit\",\\nchange the text, and click \"Save\".\\n\\n7\\n00:00:20,049 --> 00:00:23,234\\nBut this doesn\\'t provide anyone\\nwith the means to rewrite history.\\n\\n8\\n00:00:23,266 --> 00:00:27,444\\nOn the contrary, I would like to explain\\nhow Wikipedia retains its integrity,\\n\\n9\\n00:00:27,479 --> 00:00:29,912\\nalthough anyone can modify it so easily.\\n\\n10\\n00:00:30,510 --> 00:00:33,456\\nLike most computer programs,\\nthe program behind Wikipedia\\n\\n11\\n00:00:33,505 --> 00:00:36,089\\nhas many tools that most readers\\ndon\\'t know about.\\n\\n12\\n00:00:36,111 --> 00:00:38,281\\nI\\'m going to tell you\\nabout two of those tools\\n\\n13\\n00:00:38,337 --> 00:00:42,237\\nthat have been specifically constructed\\nto ensure the reliability of Wikipedia.\\n\\n14\\n00:00:42,761 --> 00:00:45,828\\nThe first tool is called \"Recent changes.\"\\n\\n15\\n00:00:47,228 --> 00:00:51,481\\nIn the menu to your left,\\nyou\\'ll find the link to recent changes.\\n\\n16\\n00:00:52,458 --> 00:00:54,218\\nThis is a list of every change\\n\\n17\\n00:00:54,248 --> 00:00:57,428\\nthat has been recently made\\non your language version of Wikipedia.\\n\\n18\\n00:00:57,459 --> 00:01:00,106\\nLets look at this first article\\non the top of the list.\\n\\n19\\n00:01:00,208 --> 00:01:04,241\\nIf I click again on \"Recent changes\",\\njust a few seconds later,\\n\\n20\\n00:01:04,259 --> 00:01:06,888\\nthen you see that this article\\nis already way down here\\n\\n21\\n00:01:07,835 --> 00:01:09,805\\nand all those other articles above\\n\\n22\\n00:01:09,832 --> 00:01:13,708\\nhave either been created \\nor modified in the last four seconds.\\n\\n23\\n00:01:14,670 --> 00:01:17,566\\nThis is what I refer to\\nas the \"pulse of Wikipedia\".\\n\\n24\\n00:01:17,596 --> 00:01:19,359\\nPretty impressive, don\\'t you think?\\n\\n25\\n00:01:19,677 --> 00:01:21,258\\nLets go back to the article.\\n\\n26\\n00:01:22,269 --> 00:01:24,889\\nWhen you click here on \"differences\",\\n\\n27\\n00:01:24,931 --> 00:01:27,491\\nyou will see all of the changes\\nthat have been made.\\n\\n28\\n00:01:27,770 --> 00:01:32,846\\nWhat you see here are the previous version\\nand the new modified version side by side.\\n\\n29\\n00:01:33,534 --> 00:01:36,824\\nThis way, all of the changes\\nare totally transparent.\\n\\n30\\n00:01:36,948 --> 00:01:40,633\\nThe alert and active community\\nwill carefully watch for modifications\\n\\n31\\n00:01:40,633 --> 00:01:43,305\\nand correct any false information.\\n\\n32\\n00:01:44,073 --> 00:01:46,227\\nThis is just one of many effective ways\\n\\n33\\n00:01:46,237 --> 00:01:48,740\\nto maintain the integrity\\nof Wikipedia\\'s content.\\n\\n34\\n00:01:48,968 --> 00:01:51,139\\nThe other tool that\\nI want to tell you about\\n\\n35\\n00:01:51,166 --> 00:01:56,246\\nis a personalized recent changes list, \\nor what we refer to as a \"Watchlist\".\\n\\n36\\n00:01:56,780 --> 00:02:00,501\\nNow to get a watchlist you will have\\nto open up a user account.\\n\\n37\\n00:02:00,708 --> 00:02:05,244\\nBut don\\'t panic! It\\'s quick,\\nit\\'s painless, and it\\'s free!\\n\\n38\\n00:02:07,384 --> 00:02:10,967\\nYou just click on this link\\nand follow the instructions.\\n\\n39\\n00:02:13,684 --> 00:02:16,261\\nBut how do I create my own watchlist?\\n\\n40\\n00:02:16,291 --> 00:02:20,531\\nWell, it\\'s best to create a watchlist\\nfor your own particular field of interest.\\n\\n41\\n00:02:21,101 --> 00:02:23,254\\nTake me for example.\\n\\n42\\n00:02:23,271 --> 00:02:25,446\\nI love dogs...\\n\\n43\\n00:02:25,467 --> 00:02:27,198\\ncanines that is.\\n\\n44\\n00:02:28,304 --> 00:02:31,848\\nI\\'m constantly on the lookout\\nfor any new articles about dogs.\\n\\n45\\n00:02:33,113 --> 00:02:34,767\\nA Labrador retriever!\\n\\n46\\n00:02:34,777 --> 00:02:37,977\\nLook at that face! You gotta love it!\\n\\n47\\n00:02:38,420 --> 00:02:40,207\\nLets click on this article.\\n\\n48\\n00:02:40,772 --> 00:02:43,125\\nYes! I definitely want to read\\n\\n49\\n00:02:43,147 --> 00:02:45,505\\nand follow any changes\\nmade to this article.\\n\\n50\\n00:02:45,715 --> 00:02:48,501\\nSo I just click \"watch\".\\n\\n51\\n00:02:49,251 --> 00:02:53,179\\nand this article has now been magically\\nadded to my personal watchlist,\\n\\n52\\n00:02:53,239 --> 00:02:57,589\\nwhich I can read at any time\\nby clicking here on \"watchlist\".\\n\\n53\\n00:02:58,737 --> 00:03:01,417\\nWhenever anyone edits\\nan article on your watchlist,\\n\\n54\\n00:03:01,448 --> 00:03:03,256\\nyou\\'ll be able to see it\\n\\n55\\n00:03:03,298 --> 00:03:04,779\\nand with one click\\n\\n56\\n00:03:04,808 --> 00:03:06,722\\nyou\\'ll see who made the changes\\n\\n57\\n00:03:07,530 --> 00:03:09,913\\nand what changes they made.\\n\\n58\\n00:03:11,860 --> 00:03:13,703\\nBy the way, it\\'s not only me\\n\\n59\\n00:03:13,727 --> 00:03:16,191\\nwho has this Labrador retriever\\non their watchlist.\\n\\n60\\n00:03:16,279 --> 00:03:19,728\\nNo, I\\'m confident that thousands\\nof dog lovers around the world\\n\\n61\\n00:03:19,768 --> 00:03:22,887\\nhave this beautiful face\\non their watchlist too.\\n\\n62\\n00:03:22,921 --> 00:03:24,297\\nI mean the dog.\\n\\n63\\n00:03:25,203 --> 00:03:30,706\\nSo those were only two of the many tools\\nused to maintain the quality of Wikipedia.\\n\\n64\\n00:03:31,029 --> 00:03:34,697\\nBut the very best way to ensure\\nthe ongoing quality of Wikipedia\\n\\n65\\n00:03:34,731 --> 00:03:36,825\\nis to increase the number of editors\\n\\n66\\n00:03:36,833 --> 00:03:39,537\\nwho contribute with\\ntheir own special expertise.\\n\\n67\\n00:03:40,184 --> 00:03:42,550\\nThe more editors, the higher the quality.\\n\\n68\\n00:03:42,993 --> 00:03:47,011\\nSo please join the superb\\nand unique pool of human knowledge\\n\\n69\\n00:03:47,067 --> 00:03:50,355\\nand help to grow bigger\\nand better wherever possible.\\n\\n70\\n00:03:50,432 --> 00:03:52,008\\nThanks for joining us!\\n\\n71\\n00:03:52,054 --> 00:03:54,027\\nGoodbye, and good luck!',\n", + " 'bytes': 5823,\n", + " 'sha1': 'kt1mt4oafyd62wvnkczkk8iy921llvp',\n", + " 'parent_id': 96104466,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96660184,\n", + " 'timestamp': '2013-05-21T13:45:27Z',\n", + " 'user': {'id': 555072, 'text': 'PrimeHunter'},\n", + " 'page': {'id': 26062424,\n", + " 'title': 'A through Z in Morse code.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'tweak timing again',\n", + " 'text': '1\\n00:00:01,000 --> 00:00:02,000\\nA · –\\n\\n2\\n00:00:02,000 --> 00:00:03,000\\nB – · · ·\\n\\n3\\n00:00:03,800 --> 00:00:04,800\\nC – · – ·\\n\\n4\\n00:00:05,600 --> 00:00:06,600\\nD – · ·\\n\\n5\\n00:00:06,700 --> 00:00:07,700\\nE ·\\n\\n6\\n00:00:07,900 --> 00:00:08,900\\nF · · – ·\\n\\n7\\n00:00:09,500 --> 00:00:10,500\\nG – – ·\\n\\n8\\n00:00:11,000 --> 00:00:12,000\\nH · · · ·\\n\\n9\\n00:00:12,000 --> 00:00:13,000\\nI · ·\\n\\n10\\n00:00:13,500 --> 00:00:14,500\\nJ · – – –\\n\\n11\\n00:00:15,500 --> 00:00:16,500\\nK – · –\\n\\n12\\n00:00:17,500 --> 00:00:18,500\\nL · – · ·\\n\\n13\\n00:00:18,500 --> 00:00:19,500\\nM – –\\n\\n14\\n00:00:20,000 --> 00:00:21,000\\nN – ·\\n\\n15\\n00:00:21,000 --> 00:00:22,000\\nO – – –\\n\\n16\\n00:00:23,000 --> 00:00:24,000\\nP · – – ·\\n\\n17\\n00:00:24,800 --> 00:00:25,800\\nQ – – · –\\n\\n18\\n00:00:26,700 --> 00:00:27,700\\nR · – ·\\n\\n19\\n00:00:28,000 --> 00:00:29,000\\nS · · ·\\n\\n20\\n00:00:29,500 --> 00:00:30,500\\nT –\\n\\n21\\n00:00:30,500 --> 00:00:31,500\\nU · · –\\n\\n22\\n00:00:31,900 --> 00:00:32,900\\nV · · · –\\n\\n23\\n00:00:33,500 --> 00:00:34,500\\nW · – –\\n\\n24\\n00:00:35,000 --> 00:00:36,000\\nX – · · –\\n\\n25\\n00:00:36,800 --> 00:00:37,800\\nY – · – –\\n\\n26\\n00:00:38,500 --> 00:00:39,500\\nZ – – · ·',\n", + " 'bytes': 1209,\n", + " 'sha1': '6jw7zdqznml2z142o13bsku307zvutk',\n", + " 'parent_id': 96659827,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96222371,\n", + " 'timestamp': '2013-05-14T15:10:54Z',\n", + " 'user': {'text': '88.196.88.60'},\n", + " 'page': {'id': 26080565,\n", + " 'title': 'Kamasutra.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:09,000 Kamasutra'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:09,000\\nKamasutra',\n", + " 'bytes': 41,\n", + " 'sha1': 'esfpojydwt9zbut3ba4js75834392am',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96310021,\n", + " 'timestamp': '2013-05-16T03:40:51Z',\n", + " 'user': {'text': '67.82.165.49'},\n", + " 'page': {'id': 26109214,\n", + " 'title': \"Billy Murray - You're a Grand Old Flag.ogg.en.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:18,000 --> 00:00:26,000\\nThere\\'s a feeling comes a-stealing,\\nand it sets my brain a-reeling,\\nwhen I\\'m listening to the music of a military band.\\n\\n2\\n00:00:26,100 --> 00:00:34,000\\nTunes like \"Yankee Doodle\"\\nsimply sets me off my noodle,\\nit\\'s that patriotic something that no one can understand.\\n\\n3\\n00:00:34,100 --> 00:00:40,900\\nWay down south, in the land of cotton,\\nmelody untiring,\\nain\\'t that inspiring?\\n\\n4\\n00:00:41,000 --> 00:00:48,000\\nHurrah! Hurrah! We\\'ll join the jubilee!\\nAnd that\\'s going some, for the Yankees, by gum!\\n\\n5\\n00:00:48,100 --> 00:00:55,000\\nRed, white and blue, hats off to you!\\nHonest, you\\'re a grand old flag!\\n\\n6\\n00:00:55,100 --> 00:01:02,000\\nYou\\'re a grand old flag,\\nthough you\\'re torn to a rag,\\nand forever in peace may you wave.\\n\\n7\\n00:01:02,100 --> 00:01:09,000\\nYou\\'re the emblem of,\\nthe land I love.\\nThe home of the free and the brave.\\n\\n8\\n00:01:09,100 --> 00:01:16,000\\nEv\\'ry heart beats true\\non the Red, White and Blue,\\nwhere there\\'s never a boast or brag.\\n\\n9\\n00:01:16,100 --> 00:01:24,000\\nBut should auld acquaintance be forgot,\\nkeep your eye on the grand old flag.\\n\\n10\\n00:01:24,100 --> 00:01:31,000\\nYou\\'re a grand old flag,\\nthough you\\'re torn to a rag,\\nand forever in peace may you wave.\\n\\n11\\n00:01:31,100 --> 00:01:38,000\\nYou\\'re the emblem of,\\nthe land I love.\\nThe home of the free and the brave.\\n\\n12\\n00:01:38,100 --> 00:01:46,000\\nEv\\'ry heart beats true\\non the Red, White and Blue,\\nwhere there\\'s never a boast or brag.\\n\\n13\\n00:01:46,100 --> 00:01:54,000\\nBut should auld acquaintance be forgot,\\nkeep your eye on the grand old flag.',\n", + " 'bytes': 1561,\n", + " 'sha1': '2ukneybo887jprzglpymlh2uzuzb89f',\n", + " 'parent_id': 96309984,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 580418290,\n", + " 'timestamp': '2021-08-13T12:29:08Z',\n", + " 'user': {'id': 6385668, 'text': 'Armonthap'},\n", + " 'page': {'id': 26110371,\n", + " 'title': 'Thai National Anthem - US Navy Band.ogg.th.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,320\\nประเทศไทยรวมเลือดเนื้อชาติเชื้อไทย\\n\\n2\\n00:00:05,320 --> 00:00:10,500\\nเป็นประชารัฐ ไผทของไทยทุกส่วน\\n\\n3\\n00:00:10,500 --> 00:00:15,760\\nอยู่ดำรงคงไว้ได้ทั้งมวล\\n\\n4\\n00:00:15,760 --> 00:00:21,160\\nด้วยไทยล้วนหมาย รักสามัคคี\\n\\n5\\n00:00:21,160 --> 00:00:26,640\\nไทยนี้รักสงบ แต่ถึงรบไม่ขลาด\\n\\n6\\n00:00:26,640 --> 00:00:31,880\\nเอกราชจะไม่ให้ใครข่มขี่\\n\\n7\\n00:00:31,880 --> 00:00:37,420\\nสละเลือดทุกหยาดเป็นชาติพลี\\n\\n8\\n00:00:37,420 --> 00:00:43,080\\nเถลิงประเทศชาติไทยทวี มีชัย ชโย',\n", + " 'bytes': 920,\n", + " 'sha1': 'g2lnl37009nlktn0ce8f4q5dz5q113u',\n", + " 'parent_id': 96313190,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96313460,\n", + " 'timestamp': '2013-05-16T06:43:58Z',\n", + " 'user': {'id': 171081, 'text': 'Xiengyod~commonswiki'},\n", + " 'page': {'id': 26110434,\n", + " 'title': 'Thai Royal Anthem - US Navy Band.ogg.th.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,460\\nข้าวรพุทธเจ้า\\n\\n2\\n00:00:05,900 --> 00:00:11,360\\nเอามโนและศิระกราน\\n\\n3\\n00:00:11,740 --> 00:00:17,260\\nนบพระภูมิบาล บุญดิเรก\\n\\n4\\n00:00:17,660 --> 00:00:29,120\\nเอกบรมจักริน พระสยามินทร์ พระยศยิ่งยง\\n\\n5\\n00:00:29,580 --> 00:00:35,220\\nเย็นศิระเพราะพระบริบาล\\n\\n6\\n00:00:35,660 --> 00:00:41,360\\nผลพระคุณ ธ รักษา\\n\\n7\\n00:00:41,800 --> 00:00:49,680\\nปวงประชาเป็นสุขศานต์ ขอบันดาล\\n\\n8\\n00:00:49,680 --> 00:00:53,400\\nธ ประสงค์ใด\\n\\n9\\n00:00:53,400 --> 00:01:00,040\\nจงสฤษดิ์ดัง หวังวรหฤทัย\\n\\n10\\n00:01:00,040 --> 00:01:06,380\\nดุจถวายชัย ชโย',\n", + " 'bytes': 930,\n", + " 'sha1': 't3ax6j0mv8g5akvrbt76ddwjsuns27w',\n", + " 'parent_id': 96313363,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96372256,\n", + " 'timestamp': '2013-05-17T03:41:09Z',\n", + " 'user': {'id': 117688, 'text': 'Billytanghh'},\n", + " 'page': {'id': 26128710,\n", + " 'title': 'God Defend New Zealand instrumental.ogg.mi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:06,000 E Ihowā Atua, 2 00:00:06,000 --> 00:00:13,000 O ngā iwi mātou rā 3 00:00:13,000 --> 00:00:20,000 Āta whakarangona; 4 00:...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,000\\nE Ihowā Atua,\\n\\n2\\n00:00:06,000 --> 00:00:13,000\\nO ngā iwi mātou rā\\n\\n3\\n00:00:13,000 --> 00:00:20,000\\nĀta whakarangona;\\n\\n4\\n00:00:20,000 --> 00:00:26,000\\nMe aroha noa\\n\\n5\\n00:00:26,000 --> 00:00:34,000\\nKia hua ko te pai;\\n\\n6\\n00:00:34,000 --> 00:00:41,000\\nKia tau tō atawhai;\\n\\n7\\n00:00:41,000 --> 00:00:50,000\\nManaakitia mai\\n\\n8\\n00:00:50,000 --> 00:01:00,000\\nAotearoa',\n", + " 'bytes': 395,\n", + " 'sha1': 'lremm31ne6zjln6qnwl34cgop3b0w5v',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 589551006,\n", + " 'timestamp': '2021-09-08T00:42:36Z',\n", + " 'user': {'id': 285765, 'text': 'Michael Bednarek'},\n", + " 'page': {'id': 26138288,\n", + " 'title': 'La Marseillaise.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Undo revision 589539100 by [[Special:Contribs/2603:7000:7740:9133:24DE:8B69:A780:25C6|2603:7000:7740:9133:24DE:8B69:A780:25C6]]: was correct.',\n", + " 'text': \"\\n1\\n00:00:00,000 --> 00:00:03,700\\nAllons enfants de la Patrie,\\n\\n2\\n00:00:03,700 --> 00:00:08,000\\nLe jour de gloire est arrivé!\\n\\n3\\n00:00:08,000 --> 00:00:12,000\\nContre nous de la tyrannie,\\n\\n4\\n00:00:12,000 --> 00:00:16,000\\nL'étendard sanglant est levé,\\n\\n5\\n00:00:16,000 --> 00:00:20,000\\nL'étendard sanglant est levé!\\n\\n6\\n00:00:20,000 --> 00:00:24,000\\nEntendez-vous dans les campagnes\\n\\n7\\n00:00:24,000 --> 00:00:28,000\\nMugir ces féroces soldats?\\n\\n8\\n00:00:28,000 --> 00:00:32,000\\nIls viennent jusque dans vos bras\\n\\n9\\n00:00:32,000 --> 00:00:37,000\\nÉgorger vos fils, vos compagnes!\\n\\n10\\n00:00:37,000 --> 00:00:41,000\\nAux armes, citoyens,\\n\\n11\\n00:00:41,000 --> 00:00:45,000\\nFormez vos bataillons,\\n\\n12\\n00:00:45,000 --> 00:00:50,000\\nMarchons, marchons!\\n\\n13\\n00:00:50,000 --> 00:00:53,700\\nQu'un sang impur\\n\\n14\\n00:00:53,700 --> 00:00:58,000\\nAbreuve nos sillons !\\n\\n15\\n00:00:59,000 --> 00:01:02,000\\nAux armes, citoyens,\\n\\n16\\n00:01:02,000 --> 00:01:06,000\\nFormez vos bataillons,\\n\\n17\\n00:01:06,000 --> 00:01:10,000\\nMarchons, marchons!\\n\\n18\\n00:01:10,000 --> 00:01:14,000\\nQu'un sang impur\\n\\n19\\n00:01:14,000 --> 00:01:19,000\\nAbreuve nos sillons !\\n\\n20\\n00:01:19,000 --> 00:01:23,000\\nQue veut cette horde d'esclaves\\n\\n21\\n00:01:23,000 --> 00:01:27,000\\nDe traîtres,de rois conjurés ?\",\n", + " 'bytes': 1256,\n", + " 'sha1': 'dkieujxkp81g4b62bvkzsjxodnkeqrz',\n", + " 'parent_id': 589539100,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97840196,\n", + " 'timestamp': '2013-06-09T08:51:57Z',\n", + " 'user': {'id': 2010648, 'text': 'TsamiW'},\n", + " 'page': {'id': 26155889,\n", + " 'title': 'Yochai Benkler - On Autonomy, Control and Cultural Experience.ogg.he.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\n0\\n00:00:00,000 --> 00:00:05,000 \\nראיון עם יוחאי בנקלר\\n\\n1\\n00:00:06,080 --> 00:00:08,040 \\nכשאני אומר אוטונומיה של משתמש, מה שאני מתכוון\\n\\n2\\n00:00:08,040 --> 00:00:15,920 \\nברמה הפשוטה ביותר, שאנשים יכולים לעשות יותר לעצמם\\n\\n3\\n00:00:15,920 --> 00:00:19,920 \\nבעצמם, מבלי שיצטרכו לבקש רשות\\n\\n4\\n00:00:19,920 --> 00:00:27,800 \\nומבלי שיצטרכו להכפיף את המעשים שלהם\\n\\n5\\n00:00:27,800 --> 00:00:29,840 \\nלשליטתו של מישהו.\\n\\n6\\n00:00:30,280 --> 00:00:39,480\\nמה שאירע בכלכלת המידע התעשייתי הוא\\n\\n7\\n00:00:39,480 --> 00:00:49,480 \\nשאנשים עברו ממצב בו הם היו יחסית חופשיים לעשות שימוש בכמות מוגבלת\\n\\n8\\n00:00:49,480 --> 00:00:55,440 \\nשל חומרים שהיו ברשותם, במעגלים החברתיים שהיו פתוחים לשיח\\n\\n9\\n00:00:55,440 --> 00:01:01,280\\nמשפחה, חברים, בד\"כ מקומות קטנים לרוב האנשים -\\n\\n10\\n00:01:01,480 --> 00:01:05,800\\nלמודל תעשייתי של הפקה תרבותית\\n\\n11\\n00:01:05,840 --> 00:01:08,480 \\nבו החומרים הופקו על ידי\\n\\n12\\n00:01:08,480 --> 00:01:15,400\\nקבוצה של [[w:he:מפיק|מפיקים]] בעלי מקצוע ששלטו בחווייה\\n\\n13\\n00:01:15,400 --> 00:01:22,400 \\nובכך הפכו את האדם היחיד לקולט פסיבי של השיח התרבותי.\\n\\n14\\n00:01:22,600 --> 00:01:29,600 \\nכך קרה שהמאמצים לקחת את החומרים האלה ולייצרם מחדש\\n\\n15\\n00:01:29,600 --> 00:01:32,480 \\nאו להשתתף כדובר בשיח התרבותי\\n\\n16\\n00:01:32,520 --> 00:01:37,640 \\nחייבו קבלת רשות.\\n\\n17\\n00:01:38,000 --> 00:01:45,200 \\nמה שאנחנו רואים כעת הוא שבאמצעות שילוב של טכנולוגיית מחשב\\n\\n18\\n00:01:45,120 --> 00:01:52,040 \\nשכוללת עיבוד דיגיטלי וטכנולוגיית רישות,\\n\\n19\\n00:01:52,520 --> 00:01:56,080 \\nאנשים יכולים להשתתף\\n\\n20\\n00:01:56,520 --> 00:02:01,520 \\nבסביבה התרבותית ובסביבת המידע, להפוך סביבות אלה לשלהם\\n\\n21\\n00:02:01,520 --> 00:02:04,760 \\nולהשתמש בהן כ\"רדי מייד\" - חומרי בסיס לביטוי עצמי שלהם.\\n\\n22\\n00:02:04,760 --> 00:02:07,800 \\nלחפש בעצמם, לייצר מסרים\\n\\n23\\n00:02:07,800 --> 00:02:11,320 \\nלהקים את הקהילות שלהם כשנחוץ שיתוף פעולה עם אחרים.\\n\\n24\\n00:02:11,520 --> 00:02:16,480 \\nולא להסתמך על מספר מוגבל של מימסדים קיימים\\n\\n25\\n00:02:17,000 --> 00:02:20,840 \\nאו על קבוצה של חומרים [[w:he:זכויות יוצרים|שאסור להשתמש בהם]]\\n\\n26\\n00:02:20,920 --> 00:02:25,760 \\nבלי לשאול: \"אפשר בבקשה להשתמש בזה?\"\\n\\n27\\n00:02:25,760 --> 00:02:27,080 \\n\"אפשר בבקשה ליצור?\".\\n\\n28\\n00:02:27,200 --> 00:02:30,800 \\nWhat happens when people can do more for and\\nמה שקורה כשאנשים יכולים לעשות יותר לעצמם\\n\\n29\\n00:02:30,800 --> 00:02:35,040 \\nובשביל עצמם, מה שקורה הוא שכוחות קיימים\\n\\n30\\n00:02:35,600 --> 00:02:38,240 \\n- בעיקר חברות מסחריות, אבל במקומות מסויימים גם ממשלות -\\n\\n31\\n00:02:38,840 --> 00:02:44,880 \\nששולטים בחוויה, אלה שבעבר היה צורך לבקש את רשותם,\\n\\n32\\n00:02:45,200 --> 00:02:47,440 \\nמתנגדים לשינוי, מכיוון\\n\\n33\\n00:02:47,440 --> 00:02:49,720 \\nשהם רוצים להמשיך לשלוט.\\n\\n34\\n00:02:49,800 --> 00:02:52,760 \\nאם אתה יכול לשלוט - אתה רוצה לשלוט.\\n\\n35\\n00:02:54,360 --> 00:03:01,080 \\nכיום אנחנו רואים סוגים שונים של מאבקים,\\n\\n36\\n00:03:01,160 --> 00:03:04,240 \\nכמה מהם מודעים לגמרי לעצמם,\\n\\n37\\n00:03:04,360 --> 00:03:08,480 \\nאני חושב, למשל, שהמאבק שניהלה [[w:he:הוליווד|הוליווד]] להרחבת\\n\\n38\\n00:03:08,560 --> 00:03:13,640 ההגבלות הטכנולוגיות על השימוש בחומרי תרבות\\n\\n39\\n00:03:13,680 --> 00:03:16,400 \\n[[w:he:ניהול זכויות דיגיטלי|ניהול זכויות דיגיטלי]], [[w:en:Trusted Computing|מערכות מוגנות]]\\n\\n40\\n00:03:16,440 --> 00:03:18,840 \\nהוא מאבק מודע לעצמו.\\n\\n41\\n00:03:18,880 --> 00:03:27,440 \\nמאבקים אחרים פחות מודעים, מבוססים יותר על חרדות\\n\\n42\\n00:03:27,440 --> 00:03:30,800 \\nומבטאים חרדות. למשל\\n\\n43\\n00:03:30,800 --> 00:03:35,600 \\nדאגה עקבית ומתמשכת בנושא אבטחה באינטרנט\\n\\n44\\n00:03:35,760 --> 00:03:39,560 \\n\"מה יקרה אם מישהו יפצח את מערכת המחשב שלך?\"\\n\\n45\\n00:03:39,560 --> 00:03:43,120 \\nהתעסקות בלתי פוסקת בנושאי איכות,\\n\\n46\\n00:03:43,080 --> 00:03:44,760 \\nמאיפה נקבל איכות טובה\\n\\n47\\n00:03:44,760 --> 00:03:51,120 \\nושעורי הטעויות ב[[w:he:ויקיפדיה|ויקיפדיה]], כל אלה ביטויים הרבה יותר תת-הכרתיים\\n\\n48\\n00:03:51,200 --> 00:03:55,320 \\nשל פחד שגורם להצדקה\\n\\n49\\n00:03:55,520 --> 00:04:00,520 \\nשל מערכת השליטה הישנה.\\n\\n50\\n00:04:00,520 --> 00:04:04,320 \\nבגלל פעולות טכנולוגיות וחברתיות,\\n\\n51\\n00:04:04,520 --> 00:04:11,120 \\nבגלל מאפיינים טכנולוגיים ומנהגים חברתיים\\n\\n52\\n00:04:11,400 --> 00:04:17,160 \\nשהולכים ומתפשטים ברשתות השיתופיות.\\n\\n53\\n00:04:17,680 --> 00:04:25,040 \\nוכך, לפעמים אנחנו רואים מאמץ לגרום לשינויים חוקיים\\n\\n54\\n00:04:25,280 --> 00:04:30,640 \\nודרישה לשליטה חוקית כאשר למעשה כבר אין בכך כל צורך.\\n\\n55\\n00:04:30,680 --> 00:04:36,640 \\nלפעמים אנחנו רואים ... אני לא אגיד \"תעמולה\",\\n\\n56\\n00:04:36,680 --> 00:04:41,600 \\nאבל נקרא לזה \"דיון ציבורי\" ו\"חקיקה ציבורית\"\\n\\n57\\n00:04:41,600 --> 00:04:47,400 \\nשנובעים מחרדה, ושואפים לחזק\\n\\n58\\n00:04:47,400 --> 00:04:51,480 \\nאת השולטים המסורתיים.\\n\\n59\\n00:04:51,480 --> 00:04:55,080 \\nמורים אומרים לתלמידים שלהם לא להשתמש בוויקיפדיה\\n\\n60\\n00:04:55,720 --> 00:05:02,040 \\nכיוון ששימוש כזה מערער את התחושה ש\"אני המורה\\n\\n61\\n00:05:02,200 --> 00:05:06,120 \\nואני יודע בדיוק איזה חומרים אישרתי לשימוש\\n\\n62\\n00:05:06,120 --> 00:05:07,720 \\nואיזה ניתן לאשר.\"\\n\\n63\\n00:05:07,800 --> 00:05:13,160 \\nאני רגיל לראות ילדים פונים לסמכות\\n\\n64\\n00:05:13,200 --> 00:05:16,120 \\nבמקום להידרש לכמה מקורות.\\n\\n65\\n00:05:16,360 --> 00:05:20,280 \\nאני רוצה ללמד אותם שיראו את זה כמקור\\n\\n66\\n00:05:20,680 --> 00:05:24,400 \\nאבל לא כמקור של סמכות. מקור של תובנות,\\n\\n67\\n00:05:24,400 --> 00:05:28,920 \\nהתקדמות אפשרית בחקירה שכל הזמן מטילה ספק.\\n\\n68\\n00:05:29,000 --> 00:05:34,400 \\nמערכת מבוזרת מחייבת\\n\\n69\\n00:05:34,440 --> 00:05:38,480 \\nאת כולנו להפוך להיות כל הזמן קוראים ספקנות.\\n\\n70\\n00:05:38,480 --> 00:05:43,200 \\nוזה שינוי יסודי מהמערכת התרבותית המסורתית\\n\\n71\\n00:05:43,200 --> 00:05:46,840 \\nשבה היינו אומרים: \"איך אדע שזה נכון?\"\\n\\n72\\n00:05:46,840 --> 00:05:50,960 \\nומשיבים: \"תלוי מי אמר את זה ואיפה זה התפרסם!\" ומחפשים מקור של סמכות.\\n\\n73\\n00:05:51,000 --> 00:05:53,520 \\nשיאשר שזוהי אכן סמכות.\\n\\n74\\n00:05:53,880 --> 00:05:58,920 \\nבמקום זה עלי לפתח יכולות חדשות\\n\\n75\\n00:05:59,200 --> 00:06:04,720 \\nשל חיפוש בחמישה מקורות, הענקת רמות שונות של משקל לכל מקור\\n\\n76\\n00:06:04,720 --> 00:06:08,920 \\nואז יש לי בטחון סביר שהתשובה הנכונה\\n\\n77\\n00:06:08,920 --> 00:06:15,400 \\nהיא א\\' ולא ב\\', בלי שאעניק סמכות מלאה לאף אחד מהמקורות.\\n\\n78\\n00:06:15,400 --> 00:06:19,800 \\nזאת נקודה נוספת של שליטה, נסיון\\n\\n79\\n00:06:19,800 --> 00:06:24,720 \\nלגרום לאנשים שימשיכו לחשוב שהם זקוקים\\n\\n80\\n00:06:24,720 --> 00:06:29,080 \\nלסמכות של המומחה, לאדם אחראי\\n\\n81\\n00:06:29,080 --> 00:06:33,600 \\nשיגיד לך מה טוב ומה לא טוב, מה איכות גבוהה ומה איכות ירודה\\n\\n82\\n00:06:33,600 --> 00:06:38,280 \\nעל איזה מידע ראוי לסמוך ועל איזה מידע לא.\\n\\n83\\n00:06:38,280 --> 00:06:42,240 \\nוזה תחום אחר שבו ישנם בעלי שליטה,\\n\\n84\\n00:06:42,280 --> 00:06:49,200 \\nבהקשר הזה אני חושב שהם פחות מתוכננים\\n\\n85\\n00:06:49,200 --> 00:06:53,400 \\nמאשר בהקשר של הוליווד, שמנסה לנהל את הזכויות הדיגיטליות.\\n\\n86\\n00:06:53,560 --> 00:07:02,760 \\nאני חושב שגם זה סוג של נסיון לשימור עצמי.\\n\\n87\\n00:07:03,200 --> 00:07:08,080 \\nאבל זה מבטא גם אמונה עמוקה\\n\\n88\\n00:07:08,080 --> 00:07:12,520 \\nבכך שאנשים מסוימים שמחזיקים בתפקידים מסויימים\\n\\n89\\n00:07:12,520 --> 00:07:16,280 \\nהם הדוברים הסמכותיים של הסדר הישן\\n\\n90\\n00:07:16,280 --> 00:07:20,840 \\nוהם ממשיכים להחזיק בערכים שעשו אותם בעלי סמכות\\n\\n91\\n00:07:20,840 --> 00:07:25,120 \\nושהפכו את הסמכות שלהם לבעלת חשיבות. זוהי התנגדות תרבותית\\n\\n92\\n00:07:25,120 --> 00:07:31,600 \\nיותר משהיא מעשית או חוקית.\\n\\n93\\n00:07:31,680 --> 00:07:37,080 \\nאבל רואים גם התנגדות מצד משתתפים אחרים, שהיו בעלי תפקידי\\n\\n94\\n00:07:37,080 --> 00:07:42,800 \\nשליטה במודלים הישנים ומנסים לשמר\\n\\n95\\n00:07:42,800 --> 00:07:45,880 \\nאת יתרונם כשולטים\\n\\n96\\n00:07:45,920 --> 00:07:48,120 \\nבאמצעות מערכות שונות של הגבלה.\\n\\n97\\n00:07:48,120 --> 00:07:50,120\\nתרגמה מאנגלית: סימה שמעוני',\n", + " 'bytes': 10400,\n", + " 'sha1': 'hipxvcq0xayca72lm5iigxi21jm06a5',\n", + " 'parent_id': 97840030,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96779692,\n", + " 'timestamp': '2013-05-23T09:31:35Z',\n", + " 'user': {'text': '46.253.35.136'},\n", + " 'page': {'id': 26188833,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\nFotos panoràmiques de Pelješac. Fotos fetes entre 2009-2013\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nBandera amb vista cap a Orebić\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\nVista de la serralada des de la part superior de la península cap a l\\'est\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić des de Vižanica\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić des del nord-oest\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nVista de la península des del canal\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\nTerra estèril per sobre d\\'Orebić\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\nTerra estèril per sobre d\\'Orebić\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\n\"Kapetani\" i les illes de \"Bila ploča\" (\"panell blanc\")\\n\\n9\\n00:00:36,000 --> 00:00:39,800\\nOskorušno des de Viter\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda des de Viter\\n\\n11\\n00:00:44,000 --> 00:00:47,800\\n\"Kapetani\" des d\\'Occident\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nVinyes al sud\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj des de l\\'oest\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nBaixa Nakovana des de Gradina\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nKorčula des de Gradina\\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nA Supine sobre Mokalo\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić des de Mokalo\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomje i Pijavičino des de l\\'oest\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nMonestir a Podgorje des del nord-est\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nMonestir a Podgorje des del nord-oest\\n\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić des de Supine\\n\\n22\\n00:01:28,000 --> 00:01:31,800\\nMokalo i Postup des de Supino\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\nCresta de Pratnjice\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić des del nord\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić des del nord-oest\\n\\n26\\n00:01:44,000 --> 00:01:47,800\\nPujol de Žrnovnica\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić des del nord\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nVista d\\'Orebić entre 2 roques\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nPendents del sud-est de Vižanica\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\nBadia de Divna\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nPelješka Duba vista des del pic més alt de Pelješac\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nPics Barinski i Žrnovska Banja en segon pla\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\nVista des de la península cap a l\\'oest\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nGornja Vrućica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton i salines\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nDonja Vrućica del sud (rang Mokalo)\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nMonestir a Kuna Pelješka vist des del sud\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nVinyes abandonades vistes des de Vlaštica\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina des de l\\'oest\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRuskovići des del nord\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nPoble de Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nPoble de Lovište\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nVessants de Vlaštica\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\nCreu en el pic més gran de Pelješac',\n", + " 'bytes': 3021,\n", + " 'sha1': 'pvl3ivli1pjfkfkewasyys5xslff73d',\n", + " 'parent_id': 96567556,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96651920,\n", + " 'timestamp': '2013-05-21T10:36:29Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 26188886,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\nPelješac des photos panoramiques. Photos prises dans la période 2009-2013\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nBandiera en vue de Orebić\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\nvue sur la montagne depuis le sommet de la péninsule à l\\'est\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić à partir de Vižanica\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić du nord-ouest\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nPéninsule vu depuis le canal\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\nterre aride au-dessus de Orebić\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\nterre aride au-dessus de Orebić\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\n\"Kapetanje\" et les îles de \"Bila ploča\" (\"panneau blanc\")\\n\\n9\\n00:00:36,000 --> 00:00:39,800\\nOskorusno de Viterbi\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda de Viter\\n\\n11\\n00:00:44,000 --> 00:00:47,800\\n\"Kapetani\" de l\\'Occident\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nVignobles du Sud\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj de l\\'ouest\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nFaible Nakovana de Gradina\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nKorčula de Gradina\\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nAu-dessus Mokalo dos\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić à partir de Mokalo\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomje et Pijaviino de l\\'ouest\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nPodgorje monastère du nord-est\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nPodgorje monastère du nord-ouest\\n\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić à partir de Supine\\n\\n22\\n00:01:28,000 --> 00:01:31,800\\nMokalo et Postup de Supino\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\nPratnjice crête\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić du nord\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić du nord-ouest\\n\\n26\\n00:01:44,000 --> 00:01:47,800\\nColline Žrnovnica\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić du nord\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nVoir Orebić entre deux rochers\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nPentes Vižanica-sud-est\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\nBay Divna\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nDuba Pelješka plus haut pic vue de Pelješac\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nPics et Žrnovska Banja Barinski fond\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\nvoir à partir de la péninsule à l\\'ouest\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nGornja Vrućica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton et sel\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nDonja Vrućica sud (plage Mokalo)\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nMonastère dans Kuna Pelješka vue du sud\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nvignobles abandonnés vu de Vlastica\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina de l\\'ouest\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRuskovići du nord\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nvillage Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nvillage Lovište\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nPentes de Vlaštica\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\nCroix dans le plus grand pic de Pelješac',\n", + " 'bytes': 2927,\n", + " 'sha1': 'jl86f9czl3x17qn06pw25o2ksxi8140',\n", + " 'parent_id': 96567730,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 128786473,\n", + " 'timestamp': '2014-07-12T12:47:17Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 26189623,\n", + " 'title': 'What are the factors that generate poverty?-- TVP.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'McZusatz moved page [[TimedText:What are the factors that generate poverty]] to [[TimedText:What are the factors that generate poverty?-- TVP.webm.en.srt]]',\n", + " 'text': \"\\n1\\n00:00:04.330 --> 00:00:11.330\\nThe main factor of poverty is the poverty\\nexisting in people?s minds\\n\\n2\\n00:00:11.980 --> 00:00:18.980\\nor instance, a farmer with 10 acres land who\\nsays that he has no food for the next two\\n\\n3\\n00:00:26.029 --> 00:00:26.800\\nmonths.\\n\\n4\\n00:00:26.800 --> 00:00:31.539\\nPeople's mind sets will need to be changed.\\n\\n5\\n00:00:31.539 --> 00:00:38.539\\nSo long as people continue to feel dependency,\\nthey will not be able to develop.\\n\\n6\\n00:00:46.760 --> 00:00:53.760\\nWe will need to uproot the cause of poverty\\nby supporting people in exploring new ways\\n\\n7\\n00:01:00.790 --> 00:01:06.159\\nof improving their livelihoods.\\nWe need to revive small enterprises run by\\n\\n8\\n00:01:06.159 --> 00:01:10.530\\ncraftsmen that have been displaced by modern\\nproducts manufactured by bigger\\n\\n9\\n00:01:10.530 --> 00:01:17.530\\ncompanies, like clay tea cups that were made\\nby potters or ropes that are now replaced\\n\\n10\\n00:01:19.100 --> 00:01:24.510\\nby plastic ones made by bigger\\ncompanies.\\n\\n11\\n00:01:24.510 --> 00:01:31.510\\nf we want to remove poverty in the villages,\\nwe will have to revive small rural industries,\\n\\n12\\n00:01:49.960 --> 00:01:56.960\\npromote these products and motivate\\nthe villagers.\",\n", + " 'bytes': 1198,\n", + " 'sha1': 'bdk895jw46krptp8dmffq793yj2a8rz',\n", + " 'parent_id': 96571027,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96651793,\n", + " 'timestamp': '2013-05-21T10:33:19Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 26213468,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,000 --> 00:00:03,800 Panoramiczne zdjęcia półwyspie Peljesac. Malowane w latach 2009-2013 1 00:00:04,000 --> 00:00:07,800 Flag widokiem Orebić ...'\",\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\nPanoramiczne zdjęcia półwyspie Peljesac. Malowane w latach 2009-2013\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nFlag widokiem Orebić\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\npasmo górskie widziane z góry półwyspu na wschód\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić z Vižanice\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić od północnego zachodu\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nPeninsula patrząc od kanału\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\njałowej ziemi nad miastem\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\njałowej ziemi nad miastem\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\nCaptains i wyspy z panelem Bile\\n\\n9\\n00:00:36,000 --> 00:00:39,800\\nOskorušno z Viter\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda z Viter\\n\\n11.\\n00:00:44,000 --> 00:00:47,800\\n\"kapetani\" z Zachodu\\n\\n12.\\n00:00:48,000 --> 00:00:51,800\\nWinnice w południowej\\n\\n13.\\n00:00:52,000 --> 00:00:55,800\\nViganj z zachodu\\n\\n14.\\n00:00:56,000 --> 00:00:59,800\\nDolna Nakovana z Cytadeli\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nKorčula z ruin\\n\\n16.\\n00:01:04,000 --> 00:01:07,800\\nW pozycji leżącej powyżej Mokalo\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić z Mokalo\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomje i Pijavičino z zachodu\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nKlasztor w północno-wschodniej Podgorje\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nKlasztor w północno-zachodniej Podgorje\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić z Supina\\n\\n22.\\n00:01:28,000 --> 00:01:31,800\\nMokalo i uczta Supina\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\nPratnjice Gorge\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić od północy\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić od północnego zachodu\\n\\n26\\n00:01:44,000 --> 00:01:47,800\\npagórek Žrnovnica\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić od północy\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nZobacz Orebić między 2 Stine\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32.\\n00:02:08,000 --> 00:02:11,800\\nVižanica-południowy wschód stoki\\n\\n\\n33.\\n00:02:12,000 --> 00:02:15,800\\nDivna bay\\n\\n34.\\n00:02:16,000 --> 00:02:19,800\\nPelješka Duba oglądany ze szczytu wzgórza\\n\\n35.\\n00:02:20,000 --> 00:02:23,800\\nSzczyty Barinski i Žrnovska Banja tło\\n\\n36.\\n00:02:24,000 --> 00:02:27,800\\nWidok z półwyspu na zachód\\n\\n37.\\n00:02:28,000 --> 00:02:31,800\\nGórna Vrucica\\n\\n38.\\n00:02:32,000 --> 00:02:35,800\\nSton i baseny solankowe\\n\\n39.\\n00:02:36,000 --> 00:02:39,800\\nDolna gorączka z południa (Mokalo)\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nKlasztor w Kuni patrząc od południa\\n\\n41.\\n00:02:44,000 --> 00:02:47,800\\nzaniedbane winnice oglądali z uprawnieniami\\n\\n42.\\n00:02:48,000 --> 00:02:51,800\\nJanjina z zachodu\\n\\n43.\\n00:02:52,000 --> 00:02:55,800\\nRusković północ\\n\\n44.\\n00:02:56,000 --> 00:02:59,800\\nwieś Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nwieś Lovište\\n\\n46.\\n00:03:04,000 --> 00:03:07,800\\nstoki przywileje\\n\\n47.\\n00:03:08,000 --> 00:03:11,800\\nKrzyż na szczycie Pelješac',\n", + " 'bytes': 2903,\n", + " 'sha1': 'svl294bdj4dl67sfhu1vrqry8cp4yfi',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96679019,\n", + " 'timestamp': '2013-05-21T19:46:24Z',\n", + " 'user': {'text': '190.224.110.163'},\n", + " 'page': {'id': 26221489,\n", + " 'title': 'La Marseillaise.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\n¡Marchemos, hijos de la patria,\\n\\n2\\n00:00:04,000 --> 00:00:08,000\\nEl día de gloria ha llegado!\\n\\n3\\n00:00:08,000 --> 00:00:11,000\\nContra nosotros la tiranía,\\n\\n4\\n00:00:11,000 --> 00:00:20,000\\nEl estandarte sangriento se ha alzado,\\n\\n5\\n00:00:20,000 --> 00:00:24,000\\n¿Escucháis vosotros en las campiñas,\\n\\n6\\n00:00:24,000 --> 00:00:28,000\\nrugir a esos feroces soldados?\\n\\n7\\n00:00:28,000 --> 00:00:32,000\\nellos vienen hasta vuestros brazos,\\n\\n8\\n00:00:32,000 --> 00:00:37,000\\nA degollar a nuestros hijos y compañeras!\\n\\n9\\n00:00:37,000 --> 00:00:42,000\\n¡A las armas, ciudadanos!\\n\\n10\\n00:00:42,000 --> 00:00:45,000\\n¡Formad vuestros batallones!\\n\\n11\\n00:00:45,000 --> 00:00:49,000\\nMarchad, marchad,\\n\\n12\\n00:00:49,000 --> 00:00:53,000\\n¡Que una sangre impura\\n\\n13\\n00:00:53,000 --> 00:00:56,000\\nempape nuestro camino!\\n\\n14\\n00:00:57,000 --> 00:01:02,000\\n¡A las armas, ciudadanos!\\n\\n15\\n00:01:02,000 --> 00:01:06,000\\n¡Formad vuestros batallones!\\n\\n16\\n00:01:06,000 --> 00:01:10,000\\nMarchad, marchad,\\n\\n17\\n00:01:10,000 --> 00:01:14,000\\n¡Que una sangre impura\\n\\n18\\n00:01:14,000 --> 00:01:18,000\\nempape nuestro camino!',\n", + " 'bytes': 1126,\n", + " 'sha1': 'tkefl5qinuklcdntxuyt91wr3iqhq1d',\n", + " 'parent_id': 96678763,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96766375,\n", + " 'timestamp': '2013-05-23T01:42:29Z',\n", + " 'user': {'id': 2895512, 'text': 'Loteclat'},\n", + " 'page': {'id': 26249781,\n", + " 'title': 'Castle Entrance Piano 01.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with 'Castle Entrance Piano 01'\",\n", + " 'text': 'Castle Entrance Piano 01',\n", + " 'bytes': 24,\n", + " 'sha1': '2y9nnmkfnrl70v6svx9p87zjp2lt7vg',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96775077,\n", + " 'timestamp': '2013-05-23T07:44:06Z',\n", + " 'user': {'id': 2062180, 'text': 'Ramakrishnan.nikhil'},\n", + " 'page': {'id': 26252064,\n", + " 'title': 'Expedition 35 Welcome Ceremony.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,800 --> 00:00:05,003 [ Silence ] 2 00:00:05,003 --> 00:00:14,080 [ Helicopter Taking Off ] 3 00:00:20,518 --> 00:00:29,594 [ Outside Noise ] 4 00:...'\",\n", + " 'text': \"1\\n00:00:00,800 --> 00:00:05,003\\n[ Silence ]\\n\\n2\\n00:00:05,003 --> 00:00:14,080\\n[ Helicopter Taking Off ]\\n\\n3\\n00:00:20,518 --> 00:00:29,594\\n[ Outside Noise ]\\n\\n4\\n00:00:31,030 --> 00:00:40,106\\n[ Truck Idling ]\\n\\n5\\n00:01:00,493 --> 00:01:09,034\\n[ Background Conversations ]\\n\\n6\\n00:01:09,034 --> 00:01:10,136\\n>> I can see you're walking on your own.\\n\\n7\\n00:01:10,135 --> 00:01:11,269\\nVery nice.\\n\\n8\\n00:01:11,269 --> 00:01:12,837\\n[ Truck Idling and Background Conversations ]\\n\\n9\\n00:01:12,837 --> 00:01:14,506\\nHello.\\n\\n10\\n00:01:14,507 --> 00:01:23,582\\n[ Background Conversations ]\\n\\n11\\n00:01:25,016 --> 00:01:34,092\\n[ Sirens ]\\n\\n12\\n00:01:37,530 --> 00:01:46,605\\n[ Static Background ]\\n\\n13\\n00:01:49,040 --> 00:01:51,242\\n[ Background Conversations ]\\n\\n14\\n00:01:51,242 --> 00:01:55,381\\nWelcome to the land of Kazakhstan, and allow me\\n\\n15\\n00:01:55,381 --> 00:01:59,552\\nto present you with a little souvenir.\\n\\n16\\n00:01:59,552 --> 00:02:02,487\\nRoman has done this before, so he knows the routine.\\n\\n17\\n00:02:02,487 --> 00:02:09,027\\n[ Background Conversations ]\\n\\n18\\n00:02:09,027 --> 00:02:13,498\\nSo allow me to present you with our traditional coat.\\n\\n19\\n00:02:13,498 --> 00:02:22,040\\n[ Background Conversations ]\\n\\n20\\n00:02:22,040 --> 00:02:25,510\\nThe crew is into music, we've been told.\\n\\n21\\n00:02:25,510 --> 00:02:30,382\\n[ Background Conversations ]\\n\\n22\\n00:02:30,382 --> 00:02:31,349\\nOh thank you.\\n\\n23\\n00:02:31,349 --> 00:02:32,150\\nVery nice.\\n\\n24\\n00:02:32,151 --> 00:02:32,850\\n[ Foreign Language Spoken ]\\n\\n25\\n00:02:32,850 --> 00:02:39,425\\n>> You stay there Chris.\\n\\n26\\n00:02:39,425 --> 00:02:40,659\\n>> Yes or no.\\n\\n27\\n00:02:40,658 --> 00:02:42,026\\n[Foreign Language Spoken]\\n\\n28\\n00:02:42,026 --> 00:02:51,102\\n[ Background Conversations ]\\n\\n29\\n00:03:05,150 --> 00:03:13,759\\n>> The representatives from the Kursk Region made these for you,\\n\\n30\\n00:03:13,758 --> 00:03:20,765\\nand in honor of your return to earth.\\n\\n31\\n00:03:20,765 --> 00:03:24,135\\nSo this is for you, and good luck in the future.\\n\\n32\\n00:03:24,135 --> 00:03:26,305\\n[ Background Conversations ]\\n\\n33\\n00:03:26,305 --> 00:03:27,939\\nDoes it look like me?\\n\\n34\\n00:03:27,939 --> 00:03:29,875\\nYes. It looks exactly like you.\\n\\n35\\n00:03:29,875 --> 00:03:31,075\\n>> [Foreign Language Spoken]\\n\\n36\\n00:03:31,075 --> 00:03:35,013\\n>> You already have 7 million views on YouTube.\\n\\n37\\n00:03:35,014 --> 00:03:35,914\\n>> Okay.\\n\\n38\\n00:03:35,913 --> 00:03:36,714\\n>> That's a lot.\\n\\n39\\n00:03:36,715 --> 00:03:37,983\\n>> [Foreign Language Spoken]\\n\\n40\\n00:03:37,983 --> 00:03:43,989\\n>> And that's a good song.\\n\\n41\\n00:03:43,989 --> 00:03:47,526\\nI'm glad that other people appreciate it.\\n\\n42\\n00:03:47,526 --> 00:03:56,602\\n[ Background Conversations ]\\n\\n43\\n00:04:01,006 --> 00:04:06,544\\nIt's very important for humanity to be in space,\\n\\n44\\n00:04:06,544 --> 00:04:13,284\\nand it felt like music there, and it was a big part\\n\\n45\\n00:04:13,284 --> 00:04:17,322\\nof my life, and so I'm glad to know that I have millions\\n\\n46\\n00:04:17,322 --> 00:04:20,591\\nof viewa on YouTube, because it allows me\\n\\n47\\n00:04:20,591 --> 00:04:22,493\\nto share my experience.\\n\\n48\\n00:04:22,494 --> 00:04:30,135\\n[ Background Conversations ]\\n\\n49\\n00:04:30,134 --> 00:04:35,173\\nSometimes we have a spare minute or two,\\n\\n50\\n00:04:35,173 --> 00:04:43,147\\nand so I played instruments, especially my favorite songs.\\n\\n51\\n00:04:43,148 --> 00:04:48,721\\nThis was the last question, thank you very much.\\n\\n52\\n00:04:48,721 --> 00:04:52,458\\nWe are done with questions.\\n\\n53\\n00:04:52,458 --> 00:04:54,460\\nOne more please.\\n\\n54\\n00:04:54,459 --> 00:04:56,995\\nNo, that is sufficient.\\n\\n55\\n00:04:58,230 --> 00:05:00,232\\nWhat about the [inaudible] situation.\\n\\n56\\n00:05:00,232 --> 00:05:06,271\\nWas it difficult?\\n\\n57\\n00:05:06,271 --> 00:05:11,143\\nWe have a very good team,\\n\\n58\\n00:05:11,142 --> 00:05:17,482\\nand we worked well together resolving any issues\\n\\n59\\n00:05:17,483 --> 00:05:20,519\\nthat may arise, and I think we had a very good\\n\\n60\\n00:05:20,519 --> 00:05:22,788\\nsuccessful flight.\\n\\n61\\n00:05:22,788 --> 00:05:23,622\\nSmile.\\n\\n62\\n00:05:23,622 --> 00:05:24,723\\n>> [ Foreign Language Spoken ]\\n\\n63\\n00:05:24,723 --> 00:05:28,927\\n>> Thank you very much everyone.\\n\\n64\\n00:05:28,927 --> 00:05:31,096\\n>>Tom, first of all welcome back.\\n\\n65\\n00:05:31,096 --> 00:05:31,764\\n>> Thanks very much.\\n\\n66\\n00:05:31,764 --> 00:05:33,198\\nGood to be back.\\n\\n67\\n00:05:33,197 --> 00:05:34,599\\nSo I guess I'll start with his.\\n\\n68\\n00:05:34,600 --> 00:05:36,969\\nThe last couple of days on orbit were going to be kind of calm\\n\\n69\\n00:05:36,968 --> 00:05:38,704\\nwith you guys getting sort of packed up and ready\\n\\n70\\n00:05:38,704 --> 00:05:39,838\\nto come back to earth.\\n\\n71\\n00:05:39,838 --> 00:05:41,439\\nThat kind of changed a little bit, didn't it?\\n\\n72\\n00:05:41,439 --> 00:05:42,774\\n>> Oh yes.\\n\\n73\\n00:05:42,774 --> 00:05:46,477\\nWe were shocked the day before the space walk to wake up\\n\\n74\\n00:05:46,478 --> 00:05:49,747\\nand find out we're going to actually start cleaning\\n\\n75\\n00:05:49,747 --> 00:05:52,151\\nout the airlock and go all the way through execution\\n\\n76\\n00:05:52,151 --> 00:05:54,319\\nof a spacewalk in 48 hours.\\n\\n77\\n00:05:54,319 --> 00:05:57,556\\nAnd I don't know if that's ever been done before on station,\\n\\n78\\n00:05:57,555 --> 00:05:58,356\\nwith the station crew.\\n\\n79\\n00:05:58,357 --> 00:05:59,491\\nSo that was very exciting.\\n\\n80\\n00:05:59,490 --> 00:06:01,826\\n>> As always, I liked to actually have to get up\\n\\n81\\n00:06:01,826 --> 00:06:05,197\\nand do that, and you guys had trained for it, but what was it\\n\\n82\\n00:06:05,197 --> 00:06:06,264\\nlike to actually get up there\\n\\n83\\n00:06:06,264 --> 00:06:08,901\\nand actually do the spacewalk itself?\\n\\n84\\n00:06:08,901 --> 00:06:11,370\\n>> It was surprisingly relaxing.\\n\\n85\\n00:06:11,370 --> 00:06:13,372\\nThe ground had done such great preparation for us.\\n\\n86\\n00:06:13,372 --> 00:06:15,206\\nWe had a busy day the day before getting ready.\\n\\n87\\n00:06:15,206 --> 00:06:18,009\\nSo when we woke up, Chris Cassidy, and Chris Hadfield\\n\\n88\\n00:06:18,009 --> 00:06:21,447\\nand I, we just got to looked at each other and said, this is it.\\n\\n89\\n00:06:21,447 --> 00:06:22,848\\nThis is amazing.\\n\\n90\\n00:06:22,848 --> 00:06:27,052\\nI just went by the timeline, felt safe, didn't feel rushed.\\n\\n91\\n00:06:27,052 --> 00:06:30,222\\nA little bit tired, but it's very exciting.\\n\\n92\\n00:06:30,221 --> 00:06:32,356\\n>> So besides that, when you look back on your time\\n\\n93\\n00:06:32,357 --> 00:06:33,926\\non board the space station, what are you going\\n\\n94\\n00:06:33,925 --> 00:06:36,728\\nto remember the most about it?\\n\\n95\\n00:06:36,728 --> 00:06:37,663\\n>> Two things.\\n\\n96\\n00:06:37,663 --> 00:06:39,031\\nMy relationship with people.\\n\\n97\\n00:06:39,031 --> 00:06:41,165\\nNot just the crew, which is one of the biggest impressions,\\n\\n98\\n00:06:41,165 --> 00:06:43,235\\nbut the relationship with the people on the ground.\\n\\n99\\n00:06:43,235 --> 00:06:46,271\\nAll those voices from around the world almost become your crew\\n\\n100\\n00:06:46,271 --> 00:06:49,608\\nmates, even though there's no face necessarily associated\\n\\n101\\n00:06:49,608 --> 00:06:50,809\\nwith them.\\n\\n102\\n00:06:50,809 --> 00:06:53,612\\nBut you get the feeling of this huge team effort.\\n\\n103\\n00:06:53,612 --> 00:06:59,051\\nWe got a lot of experimental work done,\\n\\n104\\n00:06:59,050 --> 00:07:00,985\\nrefurbishing experiments and getting some data\\n\\n105\\n00:07:00,985 --> 00:07:04,021\\nfor the ground, and working together as a whole team,\\n\\n106\\n00:07:04,021 --> 00:07:05,324\\nincluding with everyone\\n\\n107\\n00:07:05,324 --> 00:07:07,091\\non the ground is what I'm going to remember the most.\\n\\n108\\n00:07:07,091 --> 00:07:08,293\\n>> So last question.\\n\\n109\\n00:07:08,293 --> 00:07:09,528\\nWhat are your thoughts and what was the experience\\n\\n110\\n00:07:09,528 --> 00:07:10,896\\nlike on board the Soyuz?\\n\\n111\\n00:07:10,896 --> 00:07:12,064\\nI guess a little bit different then the space shuttle was,\\n\\n112\\n00:07:12,064 --> 00:07:13,232\\nright?\\n\\n113\\n00:07:13,232 --> 00:07:15,801\\n>> Yes. Definitely exciting ride on the Soyuz.\\n\\n114\\n00:07:15,800 --> 00:07:17,902\\nI highly recommend it.\\n\\n115\\n00:07:17,903 --> 00:07:20,572\\nThe landing is completely different from the shuttle.\\n\\n116\\n00:07:20,572 --> 00:07:24,042\\nA lot of spinning and rocking.\\n\\n117\\n00:07:24,041 --> 00:07:25,009\\nJust exciting.\\n\\n118\\n00:07:25,009 --> 00:07:26,677\\nI don't know if the come was going,\\n\\n119\\n00:07:26,677 --> 00:07:29,514\\nbut we were just shouting out, woohoo most of the time\\n\\n120\\n00:07:29,514 --> 00:07:30,848\\nbecause it's so much fun.\\n\\n121\\n00:07:30,848 --> 00:07:33,185\\n>> Well welcome back, and we'll see you back in Houston.\\n\\n122\\n00:07:33,185 --> 00:07:33,886\\n>> Thanks Josh.\\n\\n123\\n00:07:33,886 --> 00:07:34,552\\nReally good to be back.\\n\\n124\\n00:07:34,552 --> 00:07:35,487\\nThanks.\\n\\n125\\n00:07:35,487 --> 00:07:41,493\\n[ Silence ]\",\n", + " 'bytes': 8777,\n", + " 'sha1': '80vgb3865fvelhck4o43157w65wqfoc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96789588,\n", + " 'timestamp': '2013-05-23T12:35:30Z',\n", + " 'user': {'id': 274, 'text': 'Kaganer'},\n", + " 'page': {'id': 26256941,\n", + " 'title': '¿Qué es Wikipedia?.ogv.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"\\ufeff1\\n00:00:04,250 --> 00:00:05,500\\nПривет!\\n\\n2\\n00:00:05,650 --> 00:00:07,500\\nМеня зовут Мариана и я хочу рассказть вам о Википедии.\\n\\n3\\n00:00:07,840 --> 00:00:09,500\\nУверена, что вы знаете про неё и пользуетесь ею,\\n\\n4\\n00:00:09,750 --> 00:00:12,000\\nно знаете ли вы, что она собой представляет? ...\\n\\n5\\n00:00:12,000 --> 00:00:13,000\\nИ как она создаётся?\\n\\n6\\n00:00:13,360 --> 00:00:16,050\\nХоть это и выглядит искажением идеи энциклопедии,\\n\\n7\\n00:00:16,300 --> 00:00:18,500\\nздесь преследуется та же цель, что и в традиционных энциклопедиях:\\n\\n8\\n00:00:18,750 --> 00:00:22,250\\n«Собрание всех человеческих знаний воедино на систематической основе».\\n\\n9\\n00:00:22,500 --> 00:00:25,800\\nОднако, у Википедии есть несколько важных отличий\\n\\n10\\n00:00:25,700 --> 00:00:27,750\\nот традиционных энциклопедий.\\n\\n11\\n00:00:27,610 --> 00:00:28,400\\nНапример,\\n\\n12\\n00:00:28,400 --> 00:00:31,250\\nона развивается благодаря тысячам добровольцев,\\n\\n13\\n00:00:31,500 --> 00:00:35,500\\nнацеленых на то, чтобы донести знания до каждого человека на планете,\\n\\n14\\n00:00:35,500 --> 00:00:36,600\\nи при этом — на его собственном языке.\\n\\n15\\n00:00:36,650 --> 00:00:37,840\\nКак это достигается?\\n\\n16\\n00:00:37,850 --> 00:00:41,500\\nКакими правилами руководствуются ''википедисты''?\\n\\n17\\n00:00:41,750 --> 00:00:43,800\\nОб этом мы сейчас и расскажем.\\n\\n18\\n00:00:49,000 --> 00:00:52,800\\nЛюбой может добавить или изменить содержание Википедии,\\n\\n19\\n00:00:52,900 --> 00:00:55,800\\nно с условием, что она по-прежнему остаётся энциклопедией.\\n\\n20\\n00:00:55,800 --> 00:00:59,455\\nТак что здесь не допускаются ни оригинальные исследования, ни эссе.\\n\\n21\\n00:00:59,455 --> 00:01:02,000\\nСтатьи должны отвечать всеобщим интересам,\\n\\n22\\n00:01:02,000 --> 00:01:05,200\\nи поэтому следует избегать незначимой информации.\\n\\n23\\n00:01:05,200 --> 00:01:06,950\\nЭто и есть первое правило,\\n\\n24\\n00:01:06,950 --> 00:01:08,500\\nили, как говорят ''википедисты'',\\n\\n25\\n00:01:08,500 --> 00:01:09,400\\n«первый столп»,\\n\\n26\\n00:01:09,400 --> 00:01:10,450\\nна котором основана Википедия.\\n\\n27\\n00:01:13,100 --> 00:01:15,600\\nЭту энциклопедию пишет множество добровольцев.\\n\\n28\\n00:01:15,600 --> 00:01:18,200\\nЛюди с различным жизненным опытом,\\n\\n29\\n00:01:18,200 --> 00:01:19,100\\nразных убеждений,\\n\\n30\\n00:01:19,100 --> 00:01:20,450\\nс разными идеями.\\n\\n31\\n00:01:20,900 --> 00:01:24,900\\nВикипедия не склоняется ни к какой частной точке зрения;\\n\\n32\\n00:01:25,150 --> 00:01:28,650\\nно пытается охватить информацию из всех возможных точек зрения.\\n\\n33\\n00:01:28,900 --> 00:01:31,250\\nЭто второй столп,\\n\\n34\\n00:01:31,250 --> 00:01:33,250\\nкоторый называется «нейтральной точкой зрения» (НТЗ).\\n\\n35\\n00:01:35,000 --> 00:01:38,000\\nТретий столп отражает тот факт, что Викиепедия состоит из свободных материалов.\\n\\n36\\n00:01:38,400 --> 00:01:41,100\\nЕё тексты доступны для использования, изменения и распространения в любых целях,\\n\\n37\\n00:01:41,350 --> 00:01:43,400\\nпри условии, что корректно указывается источник\\n\\n38\\n00:01:43,400 --> 00:01:46,100\\nи сохраняется та же самая лицензия «Creative Commons».\\n\\n39\\n00:01:46,350 --> 00:01:49,600\\nЛицензия изображений может быть иной,\\n\\n40\\n00:01:49,850 --> 00:01:52,600\\nно всегда допускающей копирование и повторное использование.\\n\\n41\\n00:01:53,300 --> 00:01:56,300\\nВ таких случаях, нужно прочитать условия каждой конкретной лицензии,\\n\\n42\\n00:01:56,300 --> 00:01:58,500\\nчтобы понять, какие права она предоставляет и какие обязанности налагает.\\n\\n43\\n00:02:01,500 --> 00:02:04,300\\nВзаимодействие такого количества людей может приводить к спорам.\\n\\n44\\n00:02:04,550 --> 00:02:08,650\\nСледовательно, четвертый столп заключается в том, что участники должны быть вежливы друг с другом,\\n\\n45\\n00:02:08,650 --> 00:02:10,200\\nи предполагать в других добрые намерения.\\n\\n46\\n00:02:10,200 --> 00:02:13,900\\nВ основе этого проекта — толерантность и вежливость.\\n\\n47\\n00:02:16,800 --> 00:02:19,500\\nВ Википедии нет чётких правил.\\n\\n48\\n00:02:19,750 --> 00:02:21,250\\nМожет показаться странным,\\n\\n49\\n00:02:20,800 --> 00:02:23,300\\nно на самом деле в этом состоит пятый столп этой энциклопедии.\\n\\n50\\n00:02:23,320 --> 00:02:27,000\\nЧтобы принять участие, от вас требуется только здравый смысл\\n\\n51\\n00:02:27,000 --> 00:02:30,200\\nи уважение к другим википедистам, участвующим в этом приключении.\\n\\n52\\n00:02:30,450 --> 00:02:32,500\\nЛюбой может добавить что-то своё.\\n\\n53\\n00:02:32,750 --> 00:02:34,750\\nНекоторые развивают весь комплекс статей,\\n\\n54\\n00:02:34,750 --> 00:02:37,300\\nтогда как другие делают мелкие исправления орфографических ошибок.\\n\\n55\\n00:02:37,300 --> 00:02:40,000\\nВы тоже можете помочь в создании, редактировании и исправлении статей.\\n\\n56\\n00:02:41,000 --> 00:02:42,000\\nВсе изменения обратимы,\\n\\n57\\n00:02:42,000 --> 00:02:46,250\\nпоэтому если вы сделаете что-то не то — всегда можно вернуться к предыдущей версии.\\n\\n58\\n00:02:46,300 --> 00:02:48,500\\nПравьте смело! Вы википедист!\",\n", + " 'bytes': 7033,\n", + " 'sha1': 'ij5ynkyp2yjfy0604839ahj51z5xwme',\n", + " 'parent_id': 96789434,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96973729,\n", + " 'timestamp': '2013-05-25T23:51:21Z',\n", + " 'user': {'id': 2829625, 'text': 'Fort123'},\n", + " 'page': {'id': 26268108,\n", + " 'title': 'Qc-peut-être.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,400\\npeut-être (accent québécois)',\n", + " 'bytes': 63,\n", + " 'sha1': 'c35hf1kajupgaklzj0gc43cgd670m91',\n", + " 'parent_id': 96827438,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96978400,\n", + " 'timestamp': '2013-05-26T01:47:50Z',\n", + " 'user': {'id': 2829625, 'text': 'Fort123'},\n", + " 'page': {'id': 26268268,\n", + " 'title': 'Qc-fête.oga.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,000\\nfête (accent québécois)',\n", + " 'bytes': 58,\n", + " 'sha1': '2g59x1ur4q7bh8jtl233rmr6bqkudz0',\n", + " 'parent_id': 96827552,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99949929,\n", + " 'timestamp': '2013-07-13T13:20:17Z',\n", + " 'user': {'text': '198.105.113.97'},\n", + " 'page': {'id': 26268307,\n", + " 'title': 'FRQC-tête.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Undo revision 99949923 by [[Special:Contributions/198.105.113.97|198.105.113.97]] ([[User talk:198.105.113.97|talk]])',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\ntête (accent québécois)',\n", + " 'bytes': 58,\n", + " 'sha1': '3z4vynszqno9snh0f2ei94p6m24zg8r',\n", + " 'parent_id': 99949923,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 692835209,\n", + " 'timestamp': '2022-09-29T01:44:27Z',\n", + " 'user': {'id': 11458406, 'text': 'HelpingWithGrammaly'},\n", + " 'page': {'id': 26268495,\n", + " 'title': 'Soviet Anthem Instrumental 1955.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'null, NaN, Unknown.',\n", + " 'text': '1\\n00:00:03,800 --> 00:00:10,300\\nUnbreakable Union of freeborn Republics\\n\\n2\\n00:00:10,300 --> 00:00:17,600\\nGreat Russia has welded forever to stand!\\n\\n3\\n00:00:17,600 --> 00:00:24,6\\nCreated in struggle by will of the Peoples,\\n\\n4\\n00:00:24,600 --> 00:00:31,800\\nUnited and Mighty, our Soviet Land!\\n\\n5\\n00:00:31,800 --> 00:00:45,500\\nSing to our Motherland, Free, and Undying,\\n\\n6\\n00:00:45,500 --> 00:00:52,222\\nFriendship of people is a reliable stronghold!\\n\\n7\\n00:00:52,222 --> 00:01:06,200\\nFlag of the Soviets, Flag of the people,\\n\\n8\\n00:01:06,111 --> 00:01:30,000\\nFrom Victory to Victory lead us on!',\n", + " 'bytes': 589,\n", + " 'sha1': 'oltievgcmylqqjufcq0jptrry77we5c',\n", + " 'parent_id': 692835072,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 193429056,\n", + " 'timestamp': '2016-04-16T13:26:52Z',\n", + " 'user': {'id': 277061, 'text': 'Mendaliv'},\n", + " 'page': {'id': 26271149,\n", + " 'title': 'ReaganBeginsBombingRussia.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'shift timing around a little',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:04,800\\nMy fellow Americans, I'm pleased to tell you today that I've signed legislation...\\n\\n2\\n00:00:05,000 --> 00:00:09,800\\n...that will outlaw Russia forever. We begin bombing in five minutes.\",\n", + " 'bytes': 217,\n", + " 'sha1': '42kbj4ummsnrs9gkvl6ahdec0wdszpl',\n", + " 'parent_id': 193428372,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97262563,\n", + " 'timestamp': '2013-05-30T00:33:51Z',\n", + " 'user': {'id': 2829625, 'text': 'Fort123'},\n", + " 'page': {'id': 26274794,\n", + " 'title': 'FR-Tard (Gaspésie).ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,999\\ntard (accent québécois)',\n", + " 'bytes': 57,\n", + " 'sha1': 'cj4xgs2ksrok0xcdgsca82bh4qja3t3',\n", + " 'parent_id': 96849003,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 96867223,\n", + " 'timestamp': '2013-05-24T17:01:43Z',\n", + " 'user': {'text': '92.149.104.74'},\n", + " 'page': {'id': 26279959,\n", + " 'title': 'Fr-W-fr-Paris.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:99,999 W'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:99,999\\nW',\n", + " 'bytes': 33,\n", + " 'sha1': 'rs5dmnbyycgglaxofnjuflke50s4yp3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 630409789,\n", + " 'timestamp': '2022-02-17T15:49:58Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 26300886,\n", + " 'title': 'National Anthem of Russia (2000), instrumental, one verse.ogg.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments, new text division for better readability, added the version in the Latin script',\n", + " 'text': \"1\\n00:00:04,210 --> 00:00:10,703\\nРоссия – священная наша держава,\\nRossiya – svyashchennaya nasha derzhava,\\n\\n2\\n00:00:10,736 --> 00:00:17,278\\nРоссия – любимая наша страна.\\nRossiya – lyubimaya nasha strana.\\n\\n3\\n00:00:17,532 --> 00:00:24,195\\nМогучая воля, великая слава –\\nMoguchaya volya, velikaya slava –\\n\\n4\\n00:00:24,273 --> 00:00:30,777\\nТвоё достоянье на все времена!\\nTvoyo dostoyan'ye na vse vremena!\\n\\n5\\n00:00:31,481 --> 00:00:37,809\\nСлавься, Отечество\\nSlav'sya, Otechestvo\\n\\n6\\n00:00:38,522 --> 00:00:44,301\\nнаше свободное,\\nnashe svobodnoye,\\n\\n7\\n00:00:45,286 --> 00:00:51,536\\nБратских народов союз вековой,\\nBratskikh narodov soyuz vekovoy,\\n\\n8\\n00:00:52,196 --> 00:00:58,497\\nПредками данная\\nPredkami dannaya\\n\\n9\\n00:00:59,178 --> 00:01:05,533\\nмудрость народная!\\nmudrost' narodnaya!\\n\\n10\\n00:01:06,243 --> 00:01:08,746\\nСлавься, страна!\\nSlav'sya, strana!\\n\\n11\\n00:01:08,797 --> 00:01:16,199\\nМы гордимся тобой!\\nMy gordimsya toboy!\",\n", + " 'bytes': 1136,\n", + " 'sha1': '41z6xsf7vxj73jqdm2dwcu674wox3jt',\n", + " 'parent_id': 572557525,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 126991002,\n", + " 'timestamp': '2014-06-19T06:45:10Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 26320005,\n", + " 'title': '2012-06 Brandenburg an der Havel~Hohenstücken Betriebshof←Anton-Saefkow-Allee.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Rückwärtsfahrer moved page [[TimedText:2012-06 Brandenburg an der Havel Hohenstücken Betriebshof←Anton -Saefkow-Allee.ogv.de.srt]] to [[TimedText:2012-06 Brandenburg an der Havel~Hohenstücken Betriebshof←Anton-Saefkow-Allee.ogv.de.srt]]: Anpass...',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:17,800\\nHohenstücken Betriebshof\\n\\n2\\n00:01:32,280 --> 00:01:49,080\\nAm Silokanal\\n\\n3\\n00:02:21,000 --> 00:02:56,160\\nRotdornweg\\n\\n4\\n00:03:38,040 --> 00:04:02,360\\nGördenallee\\n\\n5\\n00:04:30,200 --> 00:04:47,480\\nGeranienweg\\n\\n6\\n00:05:07,560 --> 00:06:00,040\\nBahnhof Görden\\n\\n7\\n00:06:35,640 --> 00:07:21,480\\nWaldcafé Görden\\n\\n8\\n00:08:35,040 --> 00:09:00,800\\nAsklepios-Klinik\\n\\n9\\n00:09:40,520 --> 00:10:08,680\\nKaltenhausener Weg\\n\\n10\\n00:10:38,560 --> 00:10:50,080\\nAnton-Saefkow-Allee',\n", + " 'bytes': 494,\n", + " 'sha1': 'ats9c4fvrh88b3hzyp1ku7fibphswl1',\n", + " 'parent_id': 96994127,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97010628,\n", + " 'timestamp': '2013-05-26T13:26:00Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 26324739,\n", + " 'title': 'Brandenburg an der Havel~Anton-Saefkow-Allee←Hauptbahnhof←Magdeburger Straße % Oberlandesgericht.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:20,600 Anton-Saefkow-Allee 2 00:00:52,600 --> 00:00:59,800 Kaltenhausener Weg 3 00:01:41,960 --> 00:02:22,360 Asklepios-Klinik 4 00:...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:20,600\\nAnton-Saefkow-Allee\\n\\n2\\n00:00:52,600 --> 00:00:59,800\\nKaltenhausener Weg\\n\\n3\\n00:01:41,960 --> 00:02:22,360\\nAsklepios-Klinik\\n\\n4\\n00:03:42,200 --> 00:04:24,240\\nWaldcafé Görden\\n\\n5\\n00:04:58,080 --> 00:06:08,320\\nBahnhof Görden\\n\\n6\\n00:06:28,040 --> 00:06:50,920\\nGeranienweg\\n\\n7\\n00:07:18,960 --> 00:07:52,280\\nGördenallee\\n\\n8\\n00:08:37,880 --> 00:09:04,440\\nRotdornweg\\n\\n9\\n00:09:33,200 --> 00:10:00,760\\nAm Silokanal\\n\\n10\\n00:11:51,560 --> 00:12:20,720\\nAugust-Bebel-Straße\\n\\n11\\n00:13:23,000 --> 00:15:42,080\\nFontanestraße\\n\\n12\\n00:16:18,400 --> 00:16:42,720\\nKarl-Marx-Straße\\n\\n13\\n00:17:09,640 --> 00:18:00,960\\nFouquéstraße\\xa0/ Fachhochschule\\n\\n14\\n00:18:29,320 --> 00:18:53,000\\nMagdeburger Straße\\xa0/ Oberlandesgericht\\n\\n15\\n00:19:41,800 --> 00:20:27,760\\nNicolaiplatz\\n\\n16\\n00:20:49,960 --> 00:21:55,360\\nLuckenberger Straße\\n\\n17\\n00:22:23,560 --> 00:22:52,240\\nKanalstraße\\n\\n18\\n00:25:01,480 --> 00:25:25,480\\nJacobstraße\\n\\n19\\n00:25:49,480 --> 00:26:31,680\\nSteinstraße\\xa0/ Kino\\n\\n20\\n00:26:54,280 --> 00:28:50,640\\nNeustädtischer Markt\\n\\n21\\n00:29:22,640 --> 00:29:48,000\\nSt.-Annen-Straße\\n\\n22\\n00:30:31,560 --> 00:30:57,240\\nGeschwister-Scholl-Straße\\n\\n23\\n00:31:29,960 --> 00:35:53,920\\nHauptbahnhof\\n\\n24\\n00:36:18,280 --> 00:36:32,080\\nBlumenstraße\\n\\n25\\n00:36:57,960 --> 00:37:31,760\\nGroße Gartenstraße\\n\\n26\\n00:39:31,720 --> 00:39:58,440\\nKanalstraße\\n\\n27\\n00:40:32,680 --> 00:41:47,840\\nLuckenberger Straße\\n\\n28\\n00:42:09,800 --> 00:43:07,280\\nNicolaiplatz\\n\\n29\\n00:43:45,160 --> 00:43:48,720\\nMagdeburger Straße\\xa0/ Oberlandesgericht',\n", + " 'bytes': 1526,\n", + " 'sha1': 'j1m6m3ilvhnoab8ow35ubtm6n82trfv',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97014530,\n", + " 'timestamp': '2013-05-26T14:20:45Z',\n", + " 'user': {'text': '198.105.120.22'},\n", + " 'page': {'id': 26325754,\n", + " 'title': \"Qc-p't-être.ogg.fr.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:01,300 p’t-être (accent québécois)'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,300\\np’t-être (accent québécois)',\n", + " 'bytes': 64,\n", + " 'sha1': 't7tj6nkavwfgzd0sn6mumk9sslj9oc7',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97017775,\n", + " 'timestamp': '2013-05-26T14:57:26Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 26326439,\n", + " 'title': '2012-06 Brandenburg an der Havel~Magdeburger Straße % Oberlandesgericht←Hauptbahnhof←Hohenstücken Nord.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:07,360 Magdeburger Straße\\xa0/ Oberlandesgericht 2 00:00:52,800 --> 00:02:07,280 Nicolaiplatz 3 00:02:47,520 --> 00:03:15,920 Ritterst...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:07,360\\nMagdeburger Straße\\xa0/ Oberlandesgericht\\n\\n2\\n00:00:52,800 --> 00:02:07,280\\nNicolaiplatz\\n\\n3\\n00:02:47,520 --> 00:03:15,920\\nRitterstraße\\xa0/ Museum\\n\\n4\\n00:03:56,640 --> 00:04:24,360\\nJahrtausendbrücke\\n\\n5\\n00:04:46,520 --> 00:05:20,520\\nHauptstraße\\n\\n6\\n00:05:50,120 --> 00:07:15,560\\nNeustädtischer Markt\\n\\n7\\n00:07:36,480 --> 00:08:12,920\\nSteinstraße\\xa0/ Kino\\n\\n8\\n00:08:32,400 --> 00:09:06,400\\nJacobstraße\\n\\n9\\n00:09:19,880 --> 00:09:48,880\\nGroße Gartenstraße\\n\\n10\\n00:10:24,960 --> 00:10:48,200\\nBlumenstraße\\n\\n11\\n00:11:21,040 --> 00:13:57,040\\nHauptbahnhof\\n\\n12\\n00:14:18,160 --> 00:14:33,280\\nGeschwister-Scholl-Straße\\n\\n13\\n00:15:15,800 --> 00:15:50,920\\nSt.-Annen-Straße\\n\\n14\\n00:16:17,400 --> 00:17:21,120\\nNeustädtischer Markt\\n\\n15\\n00:17:47,720 --> 00:18:25,840\\nHauptstraße\\n\\n16\\n00:18:51,840 --> 00:19:08,000\\nJahrtausendbrücke\\n\\n17\\n00:19:47,520 --> 00:20:15,840\\nRitterstraße\\xa0/ Museum\\n\\n18\\n00:20:45,360 --> 00:21:34,960\\nNicolaiplatz\\n\\n19\\n00:22:04,320 --> 00:22:19,320\\nMagdeburger Straße\\xa0/ Oberlandesgericht\\n\\n20\\n00:22:56,160 --> 00:23:35,400\\nFouquéstraße\\xa0/ Fachhochschule\\n\\n21\\n00:23:58,280 --> 00:24:28,880\\nKarl-Marx-Straße\\n\\n22\\n00:24:59,440 --> 00:25:39,000\\nFontanestraße\\n\\n23\\n00:26:28,080 --> 00:26:47,040\\nAugust-Bebel-Straße\\n\\n24\\n00:27:42,840 --> 00:28:40,880\\nHohenstücken Betriebshof\\n\\n25\\n00:29:21,400 --> 00:30:05,680\\nWillibald-Alexis-Straße\\n\\n26\\n00:30:44,480 --> 00:31:16,480\\nRosa-Luxemburg-Allee\\n\\n27\\n00:31:48,160 --> 00:32:27,320\\nTschirchdamm\\n\\n28\\n00:33:01,880 --> 00:33:08,800\\nHohenstücken Nord',\n", + " 'bytes': 1523,\n", + " 'sha1': 'bdlm20i5e0ari4zopc2hz7uyzt87x4l',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97022504,\n", + " 'timestamp': '2013-05-26T15:41:20Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 26327341,\n", + " 'title': '2012-06 Brandenburg an der Havel~Hohenstücken Nord←Nicolaiplatz.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:17,120 Hohenstücken Nord 2 00:00:57,800 --> 00:01:30,240 Tschirchdamm 3 00:02:06,480 --> 00:02:37,720 Rosa-Luxemburg-Allee 4 00:03:...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:17,120\\nHohenstücken Nord\\n\\n2\\n00:00:57,800 --> 00:01:30,240\\nTschirchdamm\\n\\n3\\n00:02:06,480 --> 00:02:37,720\\nRosa-Luxemburg-Allee\\n\\n4\\n00:03:11,240 --> 00:03:50,280\\nWillibald-Alexis-Straße\\n\\n5\\n00:04:34,160 --> 00:05:34,320\\nHohenstücken Betriebshof\\n\\n6\\n00:06:20,680 --> 00:06:42,360\\nAugust-Bebel-Straße\\n\\n7\\n00:07:39,800 --> 00:08:14,480\\nFontanestraße\\n\\n8\\n00:08:58,040 --> 00:09:25,880\\nKarl-Marx-Straße\\n\\n9\\n00:09:52,320 --> 00:10:48,120\\nFouquéstraße\\xa0/ Fachhochschule\\n\\n10\\n00:11:16,320 --> 00:11:43,000\\nMagdeburger Straße\\xa0/ Oberlandesgericht\\n\\n11\\n00:12:19,680 --> 00:12:31,320\\nNicolaiplatz',\n", + " 'bytes': 608,\n", + " 'sha1': 'arn52vjans1hjnu6qz7xua72hzixkvl',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97024237,\n", + " 'timestamp': '2013-05-26T16:08:51Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 26328015,\n", + " 'title': '2012-06 Brandenburg an der Havel~Magdeburger Straße % Oberlandesgericht←Rotdornweg.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:18,640 Magdeburger Straße\\xa0/ Oberlandesgericht 2 00:00:47,520 --> 00:01:23,600 Fouquéstraße\\xa0/ Fachhochschule 3 00:01:47,440 --> 0...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:18,640\\nMagdeburger Straße\\xa0/ Oberlandesgericht\\n\\n2\\n00:00:47,520 --> 00:01:23,600\\nFouquéstraße\\xa0/ Fachhochschule\\n\\n3\\n00:01:47,440 --> 00:02:16,120\\nKarl-Marx-Straße\\n\\n4\\n00:02:48,680 --> 00:04:40,880\\nFontanestraße\\n\\n5\\n00:05:31,360 --> 00:06:00,760\\nAugust-Bebel-Straße\\n\\n6\\n00:07:40,840 --> 00:08:09,840\\nAm Silokanal\\n\\n7\\n00:08:43,440 --> 00:08:49,080\\nRotdornweg',\n", + " 'bytes': 381,\n", + " 'sha1': 'jh328nsjtr8mlha7xw01bpbuis969wc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97038255,\n", + " 'timestamp': '2013-05-26T19:58:19Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 26332349,\n", + " 'title': '2012-06 Brandenburg an der Havel~Geranienweg←Hohenstücken Betriebshof.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:06,520 Geranienweg 2 00:00:35,160 --> 00:00:53,600 Gördenallee 3 00:01:40,720 --> 00:01:59,440 Rotdornweg 4 00:02:28,560 --> 00:02:...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,520\\nGeranienweg\\n\\n2\\n00:00:35,160 --> 00:00:53,600\\nGördenallee\\n\\n3\\n00:01:40,720 --> 00:01:59,440\\nRotdornweg\\n\\n4\\n00:02:28,560 --> 00:02:47,560\\nAm Silokanal\\n\\n5\\n00:04:16,880 --> 00:04:23,320\\nHohenstücken Betriebshof',\n", + " 'bytes': 238,\n", + " 'sha1': 'cexrww1g05ydqrpb2mxapcl336vs3e3',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 126990742,\n", + " 'timestamp': '2014-06-19T06:35:24Z',\n", + " 'user': {'id': 2524041, 'text': 'Rückwärtsfahrer'},\n", + " 'page': {'id': 26335042,\n", + " 'title': '2012-06 Brandenburg an der Havel~Ritterstraße Museum←Hauptbahnhof←Quenzbrücke←Hauptstraße.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Rückwärtsfahrer moved page [[TimedText:Brandenburg an der Havel~Ritterstraße Museum←Hauptbahnhof←Quenzbrücke←Hauptstraße.ogv.de.srt]] to [[TimedText:2012-06 Brandenburg an der Havel~Ritterstraße Museum←Hauptbahnhof←Quenzbrücke←Haupts...',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:07,160\\nRitterstraße\\xa0/ Museum\\n\\n2\\n00:00:49,920 --> 00:01:23,760\\nJahrtausendbrücke\\n\\n3\\n00:01:52,880 --> 00:02:27,160\\nHauptstraße\\n\\n4\\n00:02:58,920 --> 00:03:53,160\\nNeustädtischer Markt\\n\\n5\\n00:04:39,560 --> 00:05:10,720\\nSt.-Annen-Straße\\n\\n6\\n00:05:56,520 --> 00:06:24,120\\nGeschwister-Scholl-Straße\\n\\n7\\n00:06:49,880 --> 00:08:32,240\\nHauptbahnhof\\n\\n8\\n00:08:55,200 --> 00:09:26,560\\nBlumenstraße\\n\\n9\\n00:09:53,400 --> 00:10:27,040\\nGroße Gartenstraße\\n\\n10\\n00:10:45,600 --> 00:11:17,360\\nJacobstraße\\n\\n11\\n00:11:48,000 --> 00:12:35,120\\nSteinstraße\\xa0/ Kino\\n\\n12\\n00:13:02,400 --> 00:14:08,200\\nNeustädtischer Markt\\n\\n13\\n00:14:39,320 --> 00:15:15,840\\nHauptstraße\\n\\n14\\n00:15:46,080 --> 00:16:03,160\\nJahrtausendbrücke\\n\\n15\\n00:16:52,800 --> 00:17:26,680\\nRitterstraße\\xa0/ Museum\\n\\n16\\n00:17:59,920 --> 00:18:59,120\\nNicolaiplatz\\n\\n17\\n00:19:30,720 --> 00:19:54,800\\nMagdeburger Straße\\xa0/ Oberlandesgericht\\n\\n18\\n00:20:24,480 --> 00:21:16,640\\nFouquéstraße\\xa0/ Fachhochschule\\n\\n19\\n00:21:56,960 --> 00:22:43,800\\nBahnhof Altstadt\\n\\n20\\n00:23:16,320 --> 00:23:56,440\\nDreifertstraße\\n\\n21\\n00:24:37,440 --> 00:25:09,360\\nSüdtor\\n\\n22\\n00:25:37,440 --> 00:26:10,280\\nFrankenstraße\\n\\n23\\n00:26:31,200 --> 00:26:59,200\\nHessenweg\\n\\n24\\n00:27:20,480 --> 00:27:51,280\\nAm Stadion\\xa0/ Industriemuseum\\n\\n25\\n00:28:02,680 --> 00:29:30,960\\nQuenzbrücke\\n\\n26\\n00:29:46,560 --> 00:30:30,280\\nAm Stadion\\xa0/ Industriemuseum\\n\\n27\\n00:30:54,040 --> 00:31:25,880\\nHessenweg\\n\\n28\\n00:31:49,920 --> 00:32:21,800\\nFrankenstraße\\n\\n29\\n00:32:45,400 --> 00:33:17,840\\nSüdtor\\n\\n30\\n00:33:59,400 --> 00:34:38,160\\nDreifertstraße\\n\\n31\\n00:35:11,400 --> 00:35:42,440\\nBahnhof Altstadt\\n\\n32\\n00:36:23,520 --> 00:37:10,160\\nFouquéstraße\\xa0/ Fachhochschule\\n\\n33\\n00:37:59,520 --> 00:38:22,600\\nMagdeburger Straße\\xa0/ Oberlandesgericht\\n\\n34\\n00:39:24,000 --> 00:40:40,760\\nNicolaiplatz\\n\\n35\\n00:41:14,400 --> 00:41:50,800\\nRitterstraße\\xa0/ Museum\\n\\n36\\n00:42:29,280 --> 00:42:58,200\\nJahrtausendbrücke\\n\\n37\\n00:43:24,600 --> 00:43:27,920\\nHauptstraße',\n", + " 'bytes': 1965,\n", + " 'sha1': '6aev1vzw6243knl1zhh1k4z7om0i7l0',\n", + " 'parent_id': 126990670,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 525638652,\n", + " 'timestamp': '2021-01-12T23:26:21Z',\n", + " 'user': {'id': 5617889, 'text': 'Sabelöga'},\n", + " 'page': {'id': 26346604,\n", + " 'title': '¿Qué es Wikipedia?.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\ufeff1\\n00:00:04,250 --> 00:00:05,500\\nHej!\\n\\n2\\n00:00:05,650 --> 00:00:07,500\\nJag heter Mariana, och jag ska berätta om Wikipedia.\\n\\n3\\n00:00:07,840 --> 00:00:09,500\\nJag är säker på att du känner till och använder Wikipedia -\\n\\n4\\n00:00:09,750 --> 00:00:12,000\\n- men vet du verkligen hur det fungerar?\\n\\n5\\n00:00:12,000 --> 00:00:13,000\\nOch hur det är uppbyggt?\\n\\n6\\n00:00:13,360 --> 00:00:16,050\\nTrots att det ser ut som ett väldigt besynnerligt uppslagsverk,\\n\\n7\\n00:00:16,300 --> 00:00:18,500\\neftersträvar det samma mål som traditionella uppslagsverk:\\n\\n8\\n00:00:18,750 --> 00:00:22,250\\n\"Förena all mänsklig kunskap på ett systematiskt sätt\".\\n\\n9\\n00:00:22,500 --> 00:00:25,800\\nWikipedia har dock några viktiga skillnader\\n\\n10\\n00:00:25,700 --> 00:00:27,650\\ngentemot traditionella uppslagsverk.\\n\\n11\\n00:00:27,650 --> 00:00:28,400\\nTill exempel,\\n\\n12\\n00:00:28,400 --> 00:00:31,250\\ndet är utvecklat av tusentals frivilliga\\n\\n13\\n00:00:31,500 --> 00:00:35,500\\nmed målet att skänka kunskap till varenda person på planeten,\\n\\n14\\n00:00:35,500 --> 00:00:36,600\\npå deras eget språk.\\n\\n15\\n00:00:36,650 --> 00:00:37,840\\nHur uppnås detta?\\n\\n16\\n00:00:37,850 --> 00:00:41,500\\nVilka är reglerna som organiserar och vägleder \"wikipedianer\"?\\n\\n17\\n00:00:41,750 --> 00:00:43,800\\nDet är ämnet för den här videon.\\n\\n18\\n00:00:49,000 --> 00:00:52,800\\nVemsomhelst kan lägga till eller korrigera innehåll,\\n\\n19\\n00:00:52,900 --> 00:00:55,800\\nmen man måste föstå att det fortfarande är ett uppslagsverk.\\n\\n20\\n00:00:55,800 --> 00:00:59,455\\nSå varken originalforskning eller uppsatser accepteras här.\\n\\n21\\n00:00:59,455 --> 00:01:02,000\\nArtiklarna ska förmedla allmänintresse,\\n\\n22\\n00:01:02,000 --> 00:01:05,200\\noch kortlivad information bör undvikas.\\n\\n23\\n00:01:05,200 --> 00:01:06,950\\nDet är den första regeln,\\n\\n24\\n00:01:06,950 --> 00:01:08,500\\neller som \"wikipedianer\" kallar den:\\n\\n25\\n00:01:08,500 --> 00:01:09,400\\nDen första pelaren\\n\\n26\\n00:01:09,400 --> 00:01:12,000\\ngenom vilken detta uppslagsverk fungerar.\\n\\n27\\n00:01:13,100 --> 00:01:15,600\\nEtt antal frivilliga skriver detta uppslagsverk.\\n\\n28\\n00:01:15,600 --> 00:01:18,200\\nMänniskor med olika bakgrund,\\n\\n29\\n00:01:18,200 --> 00:01:19,100\\nolika tro,\\n\\n30\\n00:01:19,100 --> 00:01:20,450\\nolika idéer.\\n\\n31\\n00:01:20,900 --> 00:01:24,900\\nWikipedia ska inte ta ställning;\\n\\n32\\n00:01:25,150 --> 00:01:28,650\\nmen ska försöka innehålla information från alla möjliga synvinklar.\\n\\n33\\n00:01:28,900 --> 00:01:31,250\\nDet är därför den andra pelaren\\n\\n34\\n00:01:31,250 --> 00:01:33,250\\nkallas: Neutral synvinkel\\n\\n35\\n00:01:35,000 --> 00:01:38,000\\nDen tredje pelaren handlar om att Wikipedias innehåll är fritt.\\n\\n36\\n00:01:38,400 --> 00:01:41,100\\nTexterna får användas, ändras, och spridas oavsett syfte,\\n\\n37\\n00:01:41,350 --> 00:01:43,400\\nså länge som källan är korrekt angiven\\n\\n38\\n00:01:43,400 --> 00:01:46,100\\noch samma \"Creative Commons\"-licens behålls.\\n\\n39\\n00:01:46,350 --> 00:01:49,600\\nLicenserna kan variera på bilderna,\\n\\n40\\n00:01:49,850 --> 00:01:52,600\\nmen kopiering och återanvändning är alltid tillåten.\\n\\n41\\n00:01:53,300 --> 00:01:56,300\\nI dessa fall måste varje enskild licens läsas\\n\\n42\\n00:01:56,300 --> 00:01:58,500\\nför att man ska kunna förstå vilka skyldig- och rättigheter som gäller.\\n\\n43\\n00:02:01,500 --> 00:02:04,300\\nAtt så många människor interagerar kan skapa konflikter.\\n\\n44\\n00:02:04,550 --> 00:02:08,650\\nDärav den fjärde pelaren, som säger att användare ska vara respektfulla mot varandra,\\n\\n45\\n00:02:08,650 --> 00:02:10,200\\noch förutsätta goda avsikter.\\n\\n46\\n00:02:10,200 --> 00:02:13,900\\nTolerans och artighet är fundamentala för projektet.\\n\\n47\\n00:02:16,800 --> 00:02:19,500\\nWikipedia har inga strikta regler.\\n\\n48\\n00:02:19,750 --> 00:02:21,050\\nDet kan tyckas märkligt,\\n\\n49\\n00:02:21,050 --> 00:02:23,300\\nmen det är faktiskt uppslagsverkets femte pelare.\\n\\n50\\n00:02:23,320 --> 00:02:27,000\\nDet enda som krävs för att du ska kunna delta är sunt förnuft\\n\\n51\\n00:02:27,000 --> 00:02:30,200\\noch respekt för andra wikipedianer ombord på detta äventyr.\\n\\n52\\n00:02:30,450 --> 00:02:32,500\\nVemsomhelst kan bidraga med något.\\n\\n53\\n00:02:32,750 --> 00:02:34,750\\nEn del utvecklar långa, komplexa artiklar\\n\\n54\\n00:02:34,750 --> 00:02:37,300\\nmedan andra rättar små stavfel.\\n\\n55\\n00:02:37,300 --> 00:02:40,000\\nDu kan också hjälpa till genom att skapa, redigera och rätta artiklar.\\n\\n56\\n00:02:41,000 --> 00:02:42,000\\nRedigeringar går att ångra,\\n\\n57\\n00:02:42,000 --> 00:02:46,250\\nså om något blir fel kan man alltid gå tillbaka till en tidigare version.\\n\\n58\\n00:02:46,300 --> 00:02:48,500\\nVar järv! Var wikipedian!',\n", + " 'bytes': 4587,\n", + " 'sha1': '35nsn1t1zz77y3b5owz4mavos8y8fzk',\n", + " 'parent_id': 525637903,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101564124,\n", + " 'timestamp': '2013-08-09T11:50:54Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26346791,\n", + " 'title': \"Amandine Bourgeois - L'enfer et moi presentation (Français).ogv.sv.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,230 --> 00:00:01,000\\nHej!\\n\\n2\\n00:00:01,000 --> 00:00:03,000\\nJag heter Amandine Bourgeois.\\n\\n3\\n00:00:03,001 --> 00:00:05,492\\nMin låt \"L\\'enfer et moi\" tävlar i\\n\\n4\\n00:00:05,492 --> 00:00:09,138\\nEurovision Song Contest i Malmö 2013.',\n", + " 'bytes': 240,\n", + " 'sha1': 'fxtk26wqv1a06wmuy05ywshtex87i49',\n", + " 'parent_id': 101564021,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101589766,\n", + " 'timestamp': '2013-08-09T21:33:24Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26347144,\n", + " 'title': 'Loreen presenting herself in Swedish.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:03,295\\nJag heter Loreen, och jag vann med -\\n\\n2\\n00:00:03,295 --> 00:00:05,725\\n- världens bästa låt,\\n<i>Euphoria</i>.',\n", + " 'bytes': 143,\n", + " 'sha1': 'n0nplsma89brp55opr9w2od99mtakkc',\n", + " 'parent_id': 97890675,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 125271077,\n", + " 'timestamp': '2014-05-30T09:44:23Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 26366995,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.eu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\nPelješacen argazki panoramikoak. 2009-2013 aldian egindako argazkiak\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nBandera, atzean Orebić herria duela\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\nMendilerroa penintsula burutik ekialdera ikusita\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić Vižanicatik \\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić ipar-mendebaldetik ikusita \\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nPenintsula kanaletik ikusita\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\nOrebić gainetik lur antzu\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\nLur harritsua Orebićetik gora\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\n\"Kapetani\" eta uharteak \"Bila ploča\"tik (\\'lauza zuria\\') \\n\\n9\\n00:00:36,000 --> 00:00:39,800\\nOskorušno Viter-etik \\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda Viter-etik \\n\\n11\\n00:00:44,000 --> 00:00:47,800\\n\"Kapetani\" mendebaldetik\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nHegoaldeko mahastiak\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj mendebaldetik ikusita\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nNakovana Barrena Kastrotik \\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nKorčula Kastrotik ikusita \\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nSupine Mokalotik gora\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić Mokalotik ikusita \\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomje eta Pijavičino mendebaldetik ikusita\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nPodgorjeko monasterioa ipar-ekialdetik ikusita\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nPodgorjeko monasterioa ipar-mendebaldetik ikusita\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić Supinetik ikusita \\n\\n22\\n00:01:28,000 --> 00:01:31,800\\nMokalo eta Postup Supinetik ikusita\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\nPratnjice mendigunea\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić iparraldetik ikusita \\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić ipar-mendebaldetik ikusita \\n\\n26\\n00:01:44,000 --> 00:01:47,800\\nŽrnovnica muinoa\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić iparraldetik ikusita\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nOrebić bi harkaitz artetik ikusita\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nVižanica, hego-ekialdeko hegala\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\nDivnako Badia\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nPelješka Duba Pelješacen gailurretik ikusita\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nBarinski gailurrak eta Žrnovska Banja atzealdean\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\nPenintsularen ikuspegia mendebaldera\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nGornja Vrućica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton, ondoan gatzaga duela\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nDonja Vrućica hegoaldetik, Mokalo mendilerrotik ikusita\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nKuna Pelješkako monasterioa hegoaldetik ikusita\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nUtzitako mahastiak Vlaštica ikusita\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina mendebaldetik ikusita\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRuskovići iparraldetik ikusita \\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nLovište iparraldetik ikusita\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nLovište herria\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nVlašticaren maldak\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\nPelješacen gailurreko gurutzea',\n", + " 'bytes': 3131,\n", + " 'sha1': '4un9q3p0bdvj7x3zwfa7bqrqpykpxos',\n", + " 'parent_id': 123807618,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 182400700,\n", + " 'timestamp': '2015-12-21T01:51:20Z',\n", + " 'user': {'id': 1128209, 'text': 'Didym'},\n", + " 'page': {'id': 26370027,\n", + " 'title': 'Leipzig.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/195.41.180.129|195.41.180.129]] ([[User talk:195.41.180.129|talk]]) to last revision by 195.240.116.54',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,400\\nLeipzig',\n", + " 'bytes': 39,\n", + " 'sha1': 'pdfy3xh0bhqo852lf4637d37bmnf5wx',\n", + " 'parent_id': 180091368,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101584989,\n", + " 'timestamp': '2013-08-09T20:02:51Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26421368,\n", + " 'title': 'Eyþór Ingi - Ég á líf presentation (Íslenska).ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,128 --> 00:00:00,669\\nHallå!\\n\\n2\\n00:00:00,669 --> 00:00:02,847\\nJag heter Eyþór, och...\\n\\n3\\n00:00:02,847 --> 00:00:05,369\\nLåten heter \"Ég á líf\".',\n", + " 'bytes': 159,\n", + " 'sha1': 'lsa3ne2bh9eywzos7ugal2ia5fi0uvn',\n", + " 'parent_id': 101514418,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101585089,\n", + " 'timestamp': '2013-08-09T20:04:45Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26421429,\n", + " 'title': 'Eyþór Ingi - Ég á líf presentation (Íslenska).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,128 --> 00:00:00,669\\nHello!\\n\\n2\\n00:00:00,669 --> 00:00:02,847\\nMy name is Eyþór, and...\\n\\n3\\n00:00:02,847 --> 00:00:05,369\\nThe name of the song is \"Ég á líf\".',\n", + " 'bytes': 170,\n", + " 'sha1': '5r9bsm2xyh04qx471s9btf3dspdhhq4',\n", + " 'parent_id': 101514521,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101588683,\n", + " 'timestamp': '2013-08-09T21:13:34Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26421465,\n", + " 'title': 'Robin Stjernberg - You presentation (svenska).ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,259 --> 00:00:01,096\\nHej allihopa!\\n\\n2\\n00:00:01,096 --> 00:00:02,116\\nRobin Stjernberg heter jag -\\n\\n3\\n00:00:02,116 --> 00:00:07,792\\n- och jag representerar Sverige i Eurovision Song Contest 2013, med min låt som heter \"You\".',\n", + " 'bytes': 234,\n", + " 'sha1': '5u2smst8k0pdlsylbfnafuqxm0if2vg',\n", + " 'parent_id': 97351826,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101588788,\n", + " 'timestamp': '2013-08-09T21:15:37Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26421554,\n", + " 'title': 'Robin Stjernberg - You presentation (svenska).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,259 --> 00:00:01,096\\nHi everybody!\\n\\n2\\n00:00:01,096 --> 00:00:02,116\\nMy name is Robin Stjernberg -\\n\\n3\\n00:00:02,116 --> 00:00:07,792\\n- and I represent Sweden in the Eurovision Song Contest 2013, with my song, titled \"You\".',\n", + " 'bytes': 231,\n", + " 'sha1': 'b1iohyiq2bnuzm43oakjcfybwy6poco',\n", + " 'parent_id': 97351864,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101589974,\n", + " 'timestamp': '2013-08-09T21:36:08Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26422205,\n", + " 'title': 'Loreen presenting herself in Swedish.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:03,295\\nMy name is Loreen, and I won with...\\n\\n2\\n00:00:03,295 --> 00:00:05,725\\n...the best song in the world:\\n<i>Euphoria</i>.',\n", + " 'bytes': 149,\n", + " 'sha1': '45wdtdxrhpm7e1gjm7wh7az16r58ucw',\n", + " 'parent_id': 97890823,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101585621,\n", + " 'timestamp': '2013-08-09T20:13:26Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26437026,\n", + " 'title': 'El Sueño de Morfeo - Contigo hasta el final presentation (Español).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,182 --> 00:00:01,566\\nHi, I\\'m David.\\n\\n2\\n00:00:01,566 --> 00:00:02,619\\nHello, I\\'m Juan.\\n\\n3\\n00:00:02,619 --> 00:00:05,257\\nHi, I\\'m Raquel. We are El Sueño de Morfeo.\\n\\n4\\n00:00:05,257 --> 00:00:09,519\\n...and \"Contigo hasta el final\" is our song in the Eurovision 2013.',\n", + " 'bytes': 274,\n", + " 'sha1': 'aql5mnpbfr19ip6cxl1olste6wdfnbt',\n", + " 'parent_id': 101565223,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97412613,\n", + " 'timestamp': '2013-06-01T11:46:40Z',\n", + " 'user': {'id': 2789307, 'text': 'Ruan123'},\n", + " 'page': {'id': 26438117,\n", + " 'title': 'Qc-caisse.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,020\\ncaisse (accent québécois)',\n", + " 'bytes': 59,\n", + " 'sha1': 'osyzuryeqdt8gqsj8ddx04dcoecoh2t',\n", + " 'parent_id': 97412556,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97443013,\n", + " 'timestamp': '2013-06-01T23:39:24Z',\n", + " 'user': {'id': 603043, 'text': 'MisterSanderson'},\n", + " 'page': {'id': 26446842,\n", + " 'title': 'Page-Curation-Video.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Cutting the dialogues into smaller pieces, to reduce pollution on the video screen.',\n", + " 'text': \"1\\n00:00:01,000 --> 00:00:03,000\\nWelcome to Page Curation on Wikipedia! \\n\\n2\\n00:00:03,500 --> 00:00:12,000\\nThis new feature aims to give curators better tools for reviewing new pages on Wikipedia -- as well as help page creators improve their articles. \\n\\n3\\n00:00:13,000 --> 00:00:23,000\\nCurrently, page patrol tools like this one make it difficult to review new pages quickly and accurately, and can be frustrating for both patrollers and creators. \\n\\n4\\n00:00:23,500 --> 00:00:32,000\\nPage Curation aims to offer a better experience, by providing two integrated tools: the New Pages Feed and the Curation Toolbar.\\n\\n5\\n00:00:32,500 --> 00:00:34,000\\nHere's how they work.\\n\\n6\\n00:00:34,500 --> 00:00:39,000\\nThe New Pages Feed lets you quickly see what new pages have just been created on Wikipedia.\\n\\n7\\n00:00:40,500 --> 00:00:45,000\\nHelpful information is provided for each new page, with a color-coded icon showing its status.\\n\\n8\\n00:00:46,000 --> 00:00:51,000\\nFor example, this page was just marked as reviewed, as shown by its green icon.\\n\\n9\\n00:00:51,000 --> 00:00:56,500\\nAnd this page is still unreviewed, with several possible issues highlighted in red.\\n\\n10\\n00:00:57,500 --> 00:01:07,000\\nThe New Pages Feed can be sorted by date, or filtered by a variety of criteria, so you can easily find articles to review by type -- or even by user name. \\n\\n11\\n00:01:07,500 --> 00:01:14,000\\nIf you're an autoconfirmed editor on Wikipedia, click on the 'Review' button to examine any page on this list.\\n\\n12\\n00:01:14,500 --> 00:01:20,000\\nThis takes you to the article you selected, and shows a Curation bar at the right edge of the page.\\n\\n13\\n00:01:20,500 --> 00:01:35,000\\nThis toolbar includes a number of useful tools for reviewing new pages: you can get page info, contact page creators, mark a page as reviewed, add tags, mark the page for deletion — or jump to the next page on the list. \\n\\n14\\n00:01:36,500 --> 00:01:38,500\\nLet's go over these tools one at a time.\\n\\n15\\n00:01:39,000 --> 00:01:51,500\\nPage Info lets you view information about this page, including its status, its creator and last reviewer, as well as possible issues, such as lack of categories or references -- and the page history. \\n\\n16\\n00:01:53,000 --> 00:01:58,000\\n'WikiLove' lets you send a message to page editors, to show your appreciation for their work.\\n\\n17\\n00:01:58,500 --> 00:02:05,000\\nYou can quickly select which editors to thank, then pick the award of your choice and post it with your comment on their talk pages.\\n\\n18\\n00:02:06,000 --> 00:02:13,000\\nOnce you've reviewed a page, you can 'mark it as reviewed’, to let others know that you have checked it and did not find any serious problems.\\n\\n19\\n00:02:13,500 --> 00:02:21,000\\nIf you like, you can also add a personal message on the creator's talk page to greet them or help them improve the article.\\n\\n20\\n00:02:21,500 --> 00:02:26,000\\nA green icon then appears, so that other patrollers know they don't need to review this page. \\n\\n21\\n00:02:27,000 --> 00:02:34,000\\nIf you find issues with this page, you can quickly add maintenance tags such as this one, so other editors know what to fix.\\n\\n22\\n00:02:34,500 --> 00:02:40,000\\nYou can select as many tags as needed, and add them to the page all at once.\\n\\n23\\n00:02:41,000 --> 00:02:47,000\\nIf you think a page violates Wikipedia's policies, you can 'mark it for deletion' with this special tool.\\n\\n24\\n00:02:47,500 --> 00:02:52,500\\nThis will tag that page, so administrators can easily find it and delete it. \\n\\n25\\n00:02:53,500 --> 00:03:00,000\\nFinally, you can use the 'Next tool to jump to the next page in your list, until you find another article to review.\\n\\n26\\n00:03:01,500 --> 00:03:04,000\\nSo that's Page Curation in a nutshell.\\n\\n27\\n00:03:04,500 --> 00:03:08,000\\nFor more information, click on the 'Learn more' links.\\n\\n28\\n00:03:09,000 --> 00:03:13,500\\nThis first set of curation tools was designed in collaboration with the Wikipedia community.\\n\\n29\\n00:03:14,000 --> 00:03:23,000\\nWe aimed to create an experience that's easy to use by curators, while providing better feedback for creators, so they can improve Wikipedia together.\\n\\n30\\n00:03:23,500 --> 00:03:27,000\\nWe hope you'll find Page Curation useful. Enjoy ...\",\n", + " 'bytes': 4177,\n", + " 'sha1': '43yjgeur0is9g9fadoiltxdh6i11bet',\n", + " 'parent_id': 97442524,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 271945633,\n", + " 'timestamp': '2017-12-14T07:38:57Z',\n", + " 'user': {'id': 1037472, 'text': 'Edslov'},\n", + " 'page': {'id': 26473379,\n", + " 'title': 'Salve, Oh Patria.oga.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:37,000 --> 00:00:41,000\\n¡Salve, oh Patria, mil veces!, ¡Oh Patria!\\n\\n2\\n00:00:41,000 --> 00:00:45,000\\n¡gloria a ti!¡gloria a ti!,\\n¡gloria a ti!¡gloria ti!\\n\\n3\\n00:00:45,100 --> 00:00:51,100\\nya tu pecho, tu pecho rebosa!,\\n\\n4\\n00:00:51,200 --> 00:00:54,400\\n¡gozo y paz, ya tu pecho rebosa!\\n\\n5\\n00:00:54,500 --> 00:00:59,400\\ny tu frente, tu frente radiosa\\n\\n6\\n00:00:59,500 --> 00:01:04,400\\nmás que el sol contemplamos lucir!\\n\\n7\\n00:01:04,500 --> 00:01:08,400\\ny tu frente, tu frente radiosa\\n\\n8\\n00:01:08,500 --> 00:01:12,400\\nmás que el sol contemplamos lucir!\\n\\n9\\n00:01:12,100 --> 00:01:22,400\\n\\n\\n10\\n00:01:22,500 --> 00:01:27,500\\n\\n\\n11\\n00:01:27,600 --> 00:01:33,000\\n\\n\\n12\\n00:01:35,000 --> 00:01:39,000\\nLos primeros los hijos del suelo\\n\\n13\\n00:01:40,100 --> 00:01:43,300\\nque, soberbio; el Pichincha decora\\n\\n14\\n00:01:44,400 --> 00:01:48,000\\nte aclamaron por siempre señora\\n\\n15\\n00:01:48,1000 --> 00:01:53,400\\ny vertieron su sangre por ti.\\n\\n16\\n00:01:53,500 --> 00:01:57,400\\nDios miró y aceptó el holocausto,\\n\\n17\\n00:01:57,500 --> 00:02:02,100\\ny esa sangre fue germen fecundo\\n\\n18\\n00:02:02,200 --> 00:02:07,700\\nde otros héroes que, atónito, el mundo\\n\\n19\\n00:02:07,800 --> 00:02:10,100\\nvio en tu torno a millares surgir\\n\\n20\\n00:02:10,200 --> 00:02:16,000\\nDios miró y aceptó el holocausto,\\n\\n21\\n00:02:16,100 --> 00:02:21,300\\ny esa sangre fue germen fecundo\\n\\n22\\n00:02:21,400 --> 00:02:25,000\\nde otros héroes que, atónito, el mundo\\n\\n23\\n00:02:25,100 --> 00:02:28,500\\nvio en tu torno a millares surgir\\n\\n23\\n00:02:28,600 --> 00:02:38,500\\na millares surgir, a millares surgir\\n\\n24\\n00:02:40,000 --> 00:02:44,400\\n¡Salve, oh Patria, mil veces!, ¡Oh Patria!\\n\\n25\\n00:02:44,500 --> 00:02:48,400\\n¡gloria a ti!¡gloria a ti!,\\n¡gloria a ti!¡gloria ti!\\n\\n27\\n00:02:48,500 --> 00:02:53,000\\nya tu pecho, tu pecho rebosa!,\\n\\n28\\n00:02:53,001 --> 00:02:57,000\\n¡gozo y paz, ya tu pecho rebosa!\\n\\n29\\n00:02:57,001 --> 00:03:02,000\\ny tu frente, tu frente radiosa\\n\\n30\\n00:03:02,100 --> 00:03:06,000\\nmás que el sol contemplamos lucir!\\n\\n31\\n00:03:06,100 --> 00:03:12,000\\nya tu pecho, tu pecho rebosa!,\\n\\n32\\n00:03:12,100 --> 00:03:16,000\\nmás que el sol contemplamos lucir!\\n\\n33\\n00:03:16,001 --> 00:03:20,100\\ny tu frente, tu frente radiosa\\n\\n34\\n00:03:20,200 --> 00:03:25,000\\nmás que el sol contemplamos lucir!\\n\\n35\\n00:03:25,100 --> 00:03:30,000\\nya tu pecho, tu pecho rebosa!,\\n\\n36\\n00:03:30,100 --> 00:03:34,000\\nmás que el sol contemplamos lucir!',\n", + " 'bytes': 2409,\n", + " 'sha1': '86afjrvzwdu10xs0amosb9mhsy4464d',\n", + " 'parent_id': 271069957,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 128875722,\n", + " 'timestamp': '2014-07-13T10:30:14Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 26501435,\n", + " 'title': \"Amandine Bourgeois - L'enfer et moi presentation (Français).ogv.fr.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': \"McZusatz moved page [[TimedText:Amandine Bourgeois - L'enfer et moi presentation (French).ogv.fr.srt]] to [[TimedText:Amandine Bourgeois - L'enfer et moi presentation (Français).ogv.fr.srt]] without leaving a redirect\",\n", + " 'text': \"1\\n00:00:00,500 --> 00:00:01,499\\nBonjour,\\n\\n2\\n00:00:01,500 --> 00:00:03,000\\nJe m’appelle Amandine Bourgeois\\n\\n3\\n00:00:03,001 --> 00:00:05,000\\net je vais chanter « L’enfer et moi »\\n\\n4\\n00:00:05,001 --> 00:00:08,000\\nà l’''Eurovision Song Contest'' à Malmö\\n\\n4\\n00:00:08,001 --> 00:00:09,000\\nen 2013.\",\n", + " 'bytes': 302,\n", + " 'sha1': '1tgrcvyckszshald6cakutcddo1li4o',\n", + " 'parent_id': 97637098,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 293652419,\n", + " 'timestamp': '2018-03-25T12:30:00Z',\n", + " 'user': {'id': 1178893, 'text': 'Garam'},\n", + " 'page': {'id': 26509598,\n", + " 'title': 'The National Anthem of the Republic of Korea.ogg.ko.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:13,000\\n동해물과 백두산이 마르고 닳도록\\n\\n2\\n00:00:13,500 --> 00:00:26,500\\n하느님이 보우하사 우리나라 만세\\n\\n3\\n00:00:27,700 --> 00:00:41,000\\n무궁화 삼천리 화려강산\\n\\n4\\n00:00:41,500 --> 00:00:55,000\\n대한 사람 대한으로 길이 보전하세',\n", + " 'bytes': 302,\n", + " 'sha1': '765dsw5hdw5r21ogdnr3qxe5xzxfew3',\n", + " 'parent_id': 100877205,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 127729753,\n", + " 'timestamp': '2014-06-29T08:11:04Z',\n", + " 'user': {'id': 69480, 'text': 'Joshua'},\n", + " 'page': {'id': 26519284,\n", + " 'title': 'The Brabanconne.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'change lyrics to current version',\n", + " 'text': '1\\n00:00:04,000 --> 00:00:09,000\\nÔ Belgique, ô mère chérie\\n\\n2\\n00:00:09,000 --> 00:00:13,000\\nÀ toi nos cœurs, à toi nos bras\\n\\n3\\n00:00:13,000 --> 00:00:17,000\\nÀ toi notre sang, ô Patrie !\\n\\n4\\n00:00:17,000 --> 00:00:22,000\\nNous le jurons tous, tu vivras !\\n\\n4\\n00:00:22,000 --> 00:00:27,000\\nTu vivras toujours grande et belle\\n\\n5\\n00:00:27,000 --> 00:00:31,000\\nEt ton invincible unité\\n\\n6\\n00:00:31,000 --> 00:00:36,000\\nAura pour devise immortelle :\\n\\n7\\n00:00:36,000 --> 00:00:41,000\\nLe Roi, la Loi, la Liberté !\\n\\n8\\n00:00:41,000 --> 00:00:45,000\\nAura pour devise immortelle :\\n\\n9\\n00:00:45,000 --> 00:00:50,000\\nLe Roi, la Loi, la Liberté !\\n\\n10\\n00:00:50,000 --> 00:00:55,000\\nLe Roi, la Loi, la Liberté !\\n\\n11\\n00:00:55,000 --> 00:01:03,000\\nLe Roi, la Loi, la Liberté !',\n", + " 'bytes': 765,\n", + " 'sha1': 'hhm2o7y9wigk4fcgxq5fc4aixuuixx8',\n", + " 'parent_id': 97769819,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97710789,\n", + " 'timestamp': '2013-06-06T21:35:04Z',\n", + " 'user': {'id': 1178694, 'text': 'Rillke'},\n", + " 'page': {'id': 26519614,\n", + " 'title': '\"One Day in Berlin\" - Visit of John F. Kennedy, president of the United States in Berlin, 1963.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '+4',\n", + " 'text': '1\\n00:00:13,000 --> 00:00:25,500\\nTwo thousand years ago, two thousand years ago the proudest boast was \"civis Romanus sum.\"\\n\\n2\\n00:00:26,000 --> 00:00:37,800\\nToday, in the world of freedom, the proudest boast is \"Ich bin ein Berliner.\"\\n\\n3\\n00:00:38,200 --> 00:00:41,500\\nIt was a great day in the history of Berlin\\n\\n4\\n00:00:41,500 --> 00:00:44,500\\nJune, 26 1963\\n\\n100\\n00:15:20,000 --> 00:15:24,400\\nI am proud\\n\\n102\\n00:15:24,400 --> 00:15:27,400\\nto come to this city\\n\\n103\\n00:15:27,400 --> 00:15:31,000\\nas the guest of your distinguished Mayor,\\n\\n104\\n00:15:31,000 --> 00:15:38,000\\nwho has symbolized throughout the world the fighting spirit of West Berlin.\\n\\n105\\n00:15:38,000 --> 00:15:47,000\\nAnd I am proud\\n\\n106\\n00:15:47,000 --> 00:15:53,000\\nAnd I am proud to visit the Federal Republic\\n\\n107\\n00:15:53,000 --> 00:15:59,000\\nwith your distinguished Chancellor who for so many years\\n\\n108\\n00:15:59,000 --> 00:16:06,000\\nhas committed Germany to democracy and freedom and progress,\\n\\n110\\n00:16:07,487 --> 00:16:18,500\\nand to come here in the company of my fellow American, General Clay, who\\n\\n111\\n00:16:22,000 --> 00:16:32,023\\nwho has been in this city during its great moments of crisis and will come again if ever needed.\\n\\n112\\n00:16:44,300 --> 00:16:57,200\\nTwo thousand years ago, two thousand years ago the proudest boast was \"civis Romanus sum.\"\\n\\n113\\n00:16:57,200 --> 00:17:07,000\\nToday, in the world of freedom, the proudest boast is \"Ich bin ein Berliner.\"\\n\\n114\\n00:17:14,000 --> 00:17:25,500\\nI …, I …, I appreciate, I appreciate my interpreter translating my German!\\n\\n115\\n00:17:38,000 --> 00:17:47,000\\nThere are many people in the world who really don\\'t understand, or say they don\\'t,\\n\\n116\\n00:17:47,000 --> 00:17:54,500\\nwhat is the great issue between the free world and the Communist world.\\n\\n117\\n00:17:55,000 --> 00:17:58,000\\nLet them come to Berlin!\\n\\n118\\n00:18:05,500 --> 00:18:15,500\\nThere are some who say …, there are some who say that communism is the wave of the future.\\n\\n119\\n00:18:15,500 --> 00:18:18,000\\nLet them come to Berlin!\\n\\n120\\n00:18:20,288 --> 00:18:27,379\\nAnd there are some who say in Europe and elsewhere we can work\\n\\n121\\n00:18:27,379 --> 00:18:32,742\\nwith the Communists. Let them come to Berlin!\\n\\n122\\n00:18:36,527 --> 00:18:47,673\\nAnd there are even a few who say that it\\'s true that communism is an evil system,\\n\\n123\\n00:18:47,673 --> 00:18:52,712\\nbut it permits us to make economic progress.\\n\\n124\\n00:18:52,712 --> 00:18:58,958\\nLass\\' sie nach Berlin kommen! Let them come to Berlin!\\n\\n125\\n00:19:04,484 --> 00:19:14,605\\nFreedom has many difficulties and democracy is not perfect, but we have never had\\n\\n126\\n00:19:14,605 --> 00:19:18,950\\nto put a wall up to keep our people in, to prevent them from leaving us.\\n\\n127\\n00:19:29,120 --> 00:19:39,700\\nI want to say, on behalf of my countrymen, who live many miles away\\n\\n128\\n00:19:39,700 --> 00:19:48,283\\non the other side of the Atlantic, who are far distant from you, that they take the greatest pride\\n\\n129\\n00:19:48,283 --> 00:19:58,032\\nthat they have been able to share with you, even from a distance, the story of the last 18 years.\\n\\n130\\n00:19:58,032 --> 00:20:10,188\\nI know of no town, no city, that has been besieged for 18 years that still lives\\n\\n131\\n00:20:10,188 --> 00:20:19,070\\nwith the vitality and the force, and the hope and the determination of the city of West Berlin.\\n\\n132\\n00:20:33,001 --> 00:20:43,195\\nWhile the wall is the most obvious and vivid demonstration of the failures of the Communist system,\\n\\n133\\n00:20:43,195 --> 00:20:53,467\\nfor all the world to see, we take no satisfaction in it, for it is, as your Mayor has said,\\n\\n134\\n00:20:53,467 --> 00:21:01,652\\nan offense not only against history but an offense against humanity, separating families,\\n\\n135\\n00:21:01,652 --> 00:21:10,952\\ndividing husbands and wives and brothers and sisters, and dividing a people who wish to be joined together.\\n\\n136\\n00:21:17,662 --> 00:21:28,552\\nWhat is true of this city is true of Germany—real, lasting peace in Europe can never be assured\\n\\n137\\n00:21:28,552 --> 00:21:37,216\\nas long as one German out of four is denied the elementary right of free men,\\n\\n138\\n00:21:37,216 --> 00:21:48,260\\nand that is to make a free choice. In 18 years of peace and good faith, this generation\\n\\n139\\n00:21:48,260 --> 00:21:57,293\\nof Germans has earned the right to be free, including the right to unite their families\\n\\n140\\n00:21:57,293 --> 00:22:03,466\\nand their nation in lasting peace, with good will to all people.\\n\\n141\\n00:22:14,400 --> 00:22:21,505\\nYou live in a defended island of freedom, but your life is part of the main.\\n\\n142\\n00:22:21,505 --> 00:22:28,741\\nSo let me ask you, as I close, to lift your eyes beyond the dangers of today,\\n\\n143\\n00:22:28,741 --> 00:22:35,286\\nto the hopes of tomorrow, beyond the freedom merely of this city of Berlin,\\n\\n144\\n00:22:35,286 --> 00:22:41,266\\nor your country of Germany, to the advance of freedom everywhere,\\n\\n145\\n00:22:41,266 --> 00:22:46,888\\nbeyond the wall to the day of peace with justice,\\n\\n146\\n00:22:46,888 --> 00:22:52,939\\nbeyond yourselves and ourselves to all mankind.\\n\\n147\\n00:22:52,939 --> 00:23:01,438\\nFreedom is indivisible, and when one man is enslaved, all are not free.\\n\\n148\\n00:23:01,438 --> 00:23:09,466\\nWhen all are free, then we can look forward to that day when this city will be\\n\\n149\\n00:23:09,466 --> 00:23:15,802\\njoined as one and this country and this great Continent of Europe in a peaceful\\n\\n150\\n00:23:15,802 --> 00:23:24,231\\nand hopeful globe. When that day finally comes, as it will, the people of West Berlin\\n\\n151\\n00:23:24,231 --> 00:23:33,766\\ncan take sober satisfaction in the fact that they were in the front lines for almost two decades.\\n\\n152\\n00:23:49,764 --> 00:24:02,443\\nAll free men, wherever they may live, are citizens of Berlin, and, therefore, as a free man,\\n\\n153\\n00:24:02,443 --> 00:24:08,445\\nI take pride in the words \"Ich bin ein Berliner!\"',\n", + " 'bytes': 5869,\n", + " 'sha1': 'sq3yxc9sl8tlhd061vylzjgs2xiynka',\n", + " 'parent_id': 97710429,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601107204,\n", + " 'timestamp': '2021-10-22T12:59:25Z',\n", + " 'user': {'id': 4008733, 'text': 'JhsBot'},\n", + " 'page': {'id': 26530462,\n", + " 'title': 'National Flag Anthem of the Republic of China piano version.oga.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'JhsBot moved page [[TimedText:National Flag Anthem of the Republic of China.ogg.zh-hant.srt]] to [[TimedText:National Flag Anthem of the Republic of China piano version.oga.zh-hant.srt]] without leaving a redirect: Moved because the [[File:National Flag Anthem of the Republic of China piano version.oga|file it belongs to]] was moved',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,000\\n山川壯麗、物產豐隆\\n\\n2\\n00:00:06,000 --> 00:00:12,000\\n炎黃世冑,東亞稱雄\\n\\n3\\n00:00:12,000 --> 00:00:19,000\\n毋自暴自棄、毋故步自封\\n\\n4\\n00:00:19,000 --> 00:00:25,000\\n光我民族,促進大同\\n\\n5\\n00:00:25,000 --> 00:00:31,000\\n創業維艱,緬懷諸先烈\\n\\n6\\n00:00:31,000 --> 00:00:38,000\\n守成不易,莫徒務近功\\n\\n7\\n00:00:38,000 --> 00:00:44,000\\n同心同德,貫徹始終\\n\\n8\\n00:00:44,000 --> 00:00:51,000\\n青天白日滿地紅\\n\\n9\\n00:00:51,000 --> 00:00:58,000\\n同心同德,貫徹始終\\n\\n10\\n00:00:58,000 --> 00:01:06,000\\n青天白日滿地紅',\n", + " 'bytes': 609,\n", + " 'sha1': '79daq113wda2yacd515j74ptpz2za45',\n", + " 'parent_id': 371958061,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97758076,\n", + " 'timestamp': '2013-06-07T19:16:52Z',\n", + " 'user': {'id': 2280090, 'text': 'Rahulkepapa'},\n", + " 'page': {'id': 26535914,\n", + " 'title': 'Sarva shiksha abhiyan, kasturba gandhi balika vidyalaya.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:06,861 According to the last census, 300 million Indians could not read or write, of which 200 million were women. 2 00:00:06,861 --> ...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,861\\nAccording to the last census, 300 million Indians could not read or write, of which 200 million were women.\\n\\n2\\n00:00:06,861 --> 00:00:10,942\\nPeople don\\'t like girls much.\\n\\n3\\n00:00:10,942 --> 00:00:14,666\\nWhat would you like to be when you\\'re grown up?\\n\\n4\\n00:00:14,666 --> 00:00:16,211\\nI\\'d like to be a pilot.\\n\\n5\\n00:00:16,211 --> 00:00:17,208\\nA pilot\\n\\n6\\n00:00:17,208 --> 00:00:19,007\\nWhy?\\n\\n7\\n00:00:19,115 --> 00:00:21,592\\nI want to roam the skies.\\n\\n8\\n00:00:21,592 --> 00:00:25,784\\nReally. How nice. So you want to fly? Where do you want to fly?\\n\\n9\\n00:00:25,784 --> 00:00:29,573\\nIn the skies. In the skies.\\n\\n10\\n00:00:31,896 --> 00:00:36,295\\nIn 2002, India enacted the historic 86th Indian Constitutional Amendment Act\\n\\n11\\n00:00:36,295 --> 00:00:41,222\\nthat declared elementary education as a Fundamental Right for all children.\\n\\n12\\n00:00:41,222 --> 00:00:44,340\\nWith 304 million Indian citizens still non-literate,\\n\\n13\\n00:00:44,340 --> 00:00:46,782\\nthe educational challenge couldn\\'t be addressed merely with\\n\\n14\\n00:00:46,782 --> 00:00:52,851\\ndeclarations of rights. So, the Indian Government launched the Sarva Shiksha Abhiyan, the programme of \\'Education for All\".\\n\\n15\\n00:00:53,435 --> 00:00:56,414\\nGood morning Ma\\'am.\\n\\n16\\n00:00:56,414 --> 00:00:58,908\\nSit down girls.\\n\\n17\\n00:00:59,600 --> 00:01:04,977\\nLargely funded by the Indian government, this programme has received around 250 million Euros\\n\\n18\\n00:01:04,977 --> 00:01:07,702\\nfrom the World Bank and the European Union.\\n\\n19\\n00:01:08,009 --> 00:01:14,899\\nIn 2009, the Indian Parliament took a further step and passed ‚ÄúThe Right of Children to Free and Compulsory Education Act‚Äù.\\n\\n20\\n00:01:15,606 --> 00:01:18,321\\nand delegated all Indian States\\n\\n21\\n00:01:18,490 --> 00:01:20,914\\nthe duty to provide free and compulsory education to all children\\n\\n22\\n00:01:20,914 --> 00:01:24,612\\nbetween 6 and 14 years old. And in order to increase the enrolment of girls\\n\\n23\\n00:01:24,612 --> 00:01:27,456\\nin primary schools, the Indian government set up 3600 residential schools\\n\\n24\\n00:01:27,456 --> 00:01:31,307\\nacross the country for 6 to 14 year old girls\\n\\n25\\n00:01:31,307 --> 00:01:33,517\\nfrom the most marginalized communities.\\n\\n26\\n00:01:33,517 --> 00:01:36,222\\nOur team went to one such school in Sarnath,\\n\\n27\\n00:01:36,222 --> 00:01:40,414\\na town associated with Lord Buddha and located in the Northern Indian state of Uttar Pradesh.\\n\\n28\\n00:01:40,414 --> 00:01:44,056\\nHere, besides the academic curricula, girls learn life skills\\n\\n29\\n00:01:44,056 --> 00:01:48,073\\nand performing arts. They learn their rights and they learn to defend themselves.\\n\\n30\\n00:01:48,073 --> 00:01:51,657\\nThey understand their role and value in family and society and they acquire\\n\\n31\\n00:01:51,657 --> 00:01:56,489\\nself-confidence. They learn to be proud of being women.\\n\\n32\\n00:01:58,874 --> 00:02:01,783\\nNowadays, we see that\\n\\n33\\n00:02:01,783 --> 00:02:04,941\\nthat girls are married off when they really young.\\n\\n34\\n00:02:04,941 --> 00:02:07,994\\nIn villages, parents marry off their children at a very young age.\\n\\n35\\n00:02:07,994 --> 00:02:11,355\\nWe will have to talk to people about this issue.\\n\\n36\\n00:02:12,063 --> 00:02:13,976\\nBirds, birds, they keep flying;\\n\\n37\\n00:02:14,038 --> 00:02:18,323\\nBirds! birds! they keep flying;\\n\\n38\\n00:02:18,323 --> 00:02:23,844\\nHappily, Happily, they sing\\n\\n39\\n00:02:25,460 --> 00:02:30,241\\nfrom among them one flies away. So, how many remain? Zero\\n\\n40\\n00:02:31,165 --> 00:02:33,599\\nI believe we are doing something that\\n\\n41\\n00:02:33,599 --> 00:02:39,416\\nvery few people are able to do. Most teachers go and teach\\n\\n42\\n00:02:39,416 --> 00:02:42,846\\nand earn money. I also earn money\\n\\n43\\n00:02:42,846 --> 00:02:48,277\\nbut along with it, I receive a lot of sympathy and affection\\n\\n44\\n00:02:48,277 --> 00:02:51,580\\nfrom these children.\\n\\n45\\n00:02:51,580 --> 00:02:53,501\\nThese were children whose lives were earlier being wasted.\\n\\n46\\n00:02:53,501 --> 00:02:56,022\\nWe are bringing these children together and we are preparing them as good citizens;\\n\\n47\\n00:02:56,022 --> 00:03:00,335\\nand so our society and our country will really be able to develop\\n\\n48\\n00:03:00,335 --> 00:03:06,914\\nFour small birds used to eat pomegranate\\n\\n49\\n00:03:08,560 --> 00:03:10,990\\nNo one used to teach us in the school where I used to study earlier.\\n\\n50\\n00:03:10,990 --> 00:03:18,941\\nThe teacher used to come and sit on her chair and never used to bother about the students\\n\\n51\\n00:03:18,941 --> 00:03:21,539\\neven if they were fighting and hitting each other.\\n\\n52\\n00:03:21,539 --> 00:03:27,342\\nThis is why I used to stay at home and not go to school\\n\\n53\\n00:03:27,342 --> 00:03:35,459\\nThen when news about this school was published in the newspapers, my aunt got me enrolled in this school\\n\\n54\\n00:03:35,459 --> 00:03:38,748\\nand I came to study here\\n\\n55\\n00:03:39,502 --> 00:03:46,141\\nWe get notebooks here and pens and pencils.\\n\\n56\\n00:03:46,141 --> 00:03:51,582\\nIf we don\\'t have something and we ask out teachers, they immediately give it to us.\\n\\n57\\n00:03:51,582 --> 00:03:57,834\\nOur teachers always tell us not to worry and ask us to share our desires and wishes with them. They say, \"we are here for you, don\\'t worry\"\\n\\n58\\n00:03:59,664 --> 00:04:02,520\\nSometimes, we even call them \"Mummy\".\\n\\n59\\n00:04:03,182 --> 00:04:07,831\\nMany families are unable to send their children to schools because they cannot pay the fees.\\n\\n60\\n00:04:07,831 --> 00:04:12,783\\nThey feel that they must first organise for their food and then think of educating their children.\\n\\n61\\n00:04:12,783 --> 00:04:18,678\\nSo our government decided to enrol such girls into schools, girls belonged to families living below the poverty line;\\n\\n62\\n00:04:18,678 --> 00:04:20,862\\nyoung girls aged between 6 to 14 years old,\\n\\n63\\n00:04:20,862 --> 00:04:25,422\\nthat have studied upto 1 or 2 or 3 Grade; that are school drop outs\\n\\n64\\n00:04:25,422 --> 00:04:33,744\\nand decided that such girls should be enroled and in such a place where they can stay away from home in a residential school\\n\\n65\\n00:04:33,744 --> 00:04:37,096\\nfor 24 hours a day\\n\\n66\\n00:04:37,096 --> 00:04:43,342\\nwhere their lodging, food, study is taken care of\\n\\n67\\n00:04:43,342 --> 00:04:46,143\\nso that the child can live in a conducive environment\\n\\n68\\n00:04:46,143 --> 00:04:50,302\\nand develops her skills fully.\\n\\n69\\n00:04:50,302 --> 00:04:56,781\\nMy parents has always said that however poor they may be,\\n\\n70\\n00:04:56,781 --> 00:04:58,912\\nthey would be always ready to give up everything they have just for educating us girls\\n\\n71\\n00:04:58,912 --> 00:05:01,781\\nso that we have the opportunity to study and achieve glory\\n\\n72\\n00:05:01,842 --> 00:05:09,742\\nNowadays, parents know that girls can achieve excellence and enter any profession\\n\\n73\\n00:05:09,742 --> 00:05:14,543\\nAnd our parents even tell us that we are more important for them than sons would have been\\n\\n74\\n00:05:14,543 --> 00:05:15,861\\nand that we must study as much as we want\\n\\n75\\n00:05:15,861 --> 00:05:19,571\\neven if they might have to sell their homes to fund our studies\\n\\n76\\n00:05:19,571 --> 00:05:25,462\\nOne day a man came to our village in search of an address written on a piece of paper\\n\\n77\\n00:05:25,462 --> 00:05:34,501\\nNo one was able to help him, so the gentleman asked me if I could help.\\n\\n78\\n00:05:34,501 --> 00:05:40,502\\nI saw the address written on a black sign board on the street\\n\\n79\\n00:05:40,502 --> 00:05:45,022\\nand explained to him how he could reach the place he was looking for. He thanked me in English.\\n\\n80\\n00:05:45,022 --> 00:05:46,622\\nGirls who were sitting nearby started giggling\\n\\n81\\n00:05:46,622 --> 00:05:49,060\\nand when I asked them why they were laughing, they asked me what he said to me.\\n\\n82\\n00:05:49,060 --> 00:05:57,537\\nI told them that he had said \"Thankyou\". They said they had thought he had said something abusive\\n\\n83\\n00:05:57,537 --> 00:06:00,354\\nParents, of our students, know\\n\\n84\\n00:06:00,354 --> 00:06:02,184\\nthat child marriage is wrong.\\n\\n85\\n00:06:02,184 --> 00:06:08,428\\nThey say that children in their communities are married off young\\n\\n86\\n00:06:08,428 --> 00:06:12,400\\nand that neighbours criticise them for sending their girls off to schools instead of getting them married.\\n\\n87\\n00:06:12,492 --> 00:06:15,619\\nbut parents understand this value\\n\\n88\\n00:06:15,619 --> 00:06:17,987\\nand say that they want their daughters to study and not to marry them off young\\n\\n89\\n00:06:20,199 --> 00:06:22,523\\nSo, slowly the mind set of our parents, towards their girls, is changing\\n\\n90\\n00:06:35,771 --> 00:06:43,345\\nEducation is the only means through which we can search for and lead out the talents of these children\\n\\n91\\n00:06:43,345 --> 00:06:46,308\\nbecause these will be the children who will build the nation.\\n\\n92\\n00:06:49,185 --> 00:06:51,554\\n37% of the kids in class V\\n\\n93\\n00:06:51,554 --> 00:06:56,664\\ncannot read a text meant for Class II. Now, if you say that therefore the money\\n\\n94\\n00:06:56,664 --> 00:06:59,902\\nand the benefits aren\\'t reaching the target population\\n\\n95\\n00:06:59,902 --> 00:07:02,902\\nin one sense you are right. But what can a government do?\\n\\n96\\n00:07:02,902 --> 00:07:07,176\\nIt sets up schools, it hires teachers. So, we say you need more\\n\\n97\\n00:07:07,176 --> 00:07:09,944\\nparent teacher involvement. You must have the local community\\n\\n98\\n00:07:09,944 --> 00:07:16,248\\nforcing accountability. Teachers must be made to teach.\\n\\n99\\n00:07:16,248 --> 00:07:19,342\\nYou know that these are things that are not just done by governments\\n\\n100\\n00:07:19,342 --> 00:07:23,166\\nThese are things that are done by social pressure, by social awareness,\\n\\n101\\n00:07:28,782 --> 00:07:28,862\\nWhen the constitution was framed in 1950, the argument was made\\n\\n102\\n00:07:28,862 --> 00:07:34,617\\nthat education was not a fundamental right.\\n\\n103\\n00:07:35,125 --> 00:07:41,256\\nbecause the government then said that we don\\'t have the financial resources\\n\\n104\\n00:07:41,256 --> 00:07:48,059\\nto ensure education. India\\'s population in 1950 was around 350 million.\\n\\n105\\n00:07:48,059 --> 00:07:49,780\\nNow, of course, we are over a billion\\n\\n106\\n00:07:49,780 --> 00:07:52,900\\nBut even in those days also the government said that we didn\\'t have the\\n\\n107\\n00:07:52,900 --> 00:07:54,776\\nfinancial resources, so give us ten years. And within ten years\\n\\n108\\n00:07:54,776 --> 00:07:58,085\\nwe will progressively see that all children are in school\\n\\n109\\n00:07:58,085 --> 00:08:02,979\\n1960 came, 1970 came, 1980 came, 1990 came\\n\\n110\\n00:08:02,979 --> 00:08:07,782\\nthe same arguments- we don\\'t have the financial resources\\n\\n111\\n00:08:07,782 --> 00:08:10,943\\nand in the meantime, what were you seeing?\\n\\n112\\n00:08:10,943 --> 00:08:17,022\\nIndia was becoming absolutely corporate; a country for higher education\\n\\n113\\n00:08:17,022 --> 00:08:25,300\\nThe Indian Institutes of Technology, the IITs, are very well known. The Indian Institutes for Management, the IIMs,\\n\\n114\\n00:08:25,300 --> 00:08:27,422\\nI studied in IIM Ahmedabad\\n\\n115\\n00:08:27,422 --> 00:08:30,222\\nThey were fantastic institutions. They turned out the best managers\\n\\n116\\n00:08:30,222 --> 00:08:33,585\\nwho are now all over the world doing exceptionally well\\n\\n117\\n00:08:33,585 --> 00:08:37,340\\nSo, when you look at these kinds of higher institutions, India did very well\\n\\n118\\n00:08:37,340 --> 00:08:41,100\\nbut the neglect of basic education and schooling was unforgivable\\n\\n119\\n00:08:41,100 --> 00:08:44,862\\nAnd it took the civil society movement\\n\\n120\\n00:08:44,862 --> 00:08:50,176\\nthe Right ot Education movement- years and years of pushing and pushing and pushing\\n\\n121\\n00:08:50,176 --> 00:08:54,068\\nuntil it was made a fundamental right in 2003.\\n\\n122\\n00:08:54,237 --> 00:08:57,269\\nI am a daughter, I am a daughter.\\n\\n123\\n00:08:57,269 --> 00:08:59,217\\nI will become a star\\n\\n124\\n00:08:59,217 --> 00:09:01,074\\nI will become a star....\\n\\n125\\n00:09:01,120 --> 00:09:04,780\\nAlthough India still has a long way to go,\\n\\n126\\n00:09:04,780 --> 00:09:07,420\\nwith only 8 million children out of school in 2009, it has started\\n\\n127\\n00:09:07,420 --> 00:09:11,100\\nwalking on the path towards ensuring the right to education for each Indian child.\\n\\n128\\n00:09:11,100 --> 00:09:17,397\\nIn fact, most Indians believe that education for all is the best investment\\n\\n129\\n00:09:17,397 --> 00:09:20,022\\nthat families and Governments can make. The benefits of such investments\\n\\n130\\n00:09:20,022 --> 00:09:20,942\\nwill be enjoyed by all.\\n\\n131\\n00:09:20,942 --> 00:09:23,182\\nI will climb up on my own feet\\n\\n132\\n00:09:23,182 --> 00:09:23,980\\nI will see the world\\n\\n133\\n00:09:23,980 --> 00:09:27,222\\nCan India afford these high levels of investments in basic health and education?\\n\\n134\\n00:09:27,222 --> 00:09:31,781\\nbut above all, the fundamental way of posing the question is\\n\\n135\\n00:09:31,781 --> 00:09:35,222\\nCan India afford not to invest in basic health,\\n\\n136\\n00:09:35,222 --> 00:09:39,222\\nbasic education, basic nutrition and such essentials of life?\\n\\n137\\n00:09:39,222 --> 00:09:41,000\\nSubtitles by the Amara.org community',\n", + " 'bytes': 12907,\n", + " 'sha1': '71w92jae7c3fgcu86236pcb9m6dq7zy',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97758166,\n", + " 'timestamp': '2013-06-07T19:20:15Z',\n", + " 'user': {'id': 2280090, 'text': 'Rahulkepapa'},\n", + " 'page': {'id': 26535938,\n", + " 'title': 'Sarva shiksha abhiyan, kasturba gandhi balika vidyalaya.webm.hi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 -> 00:00:06,861 पिछली जनगणना के अनुसार, 300 करोड़ भारतीयों को नहीं ...'\",\n", + " 'text': '1\\n00:00:00,000 -> 00:00:06,861\\nपिछली जनगणना के अनुसार, 300 करोड़ भारतीयों को नहीं पढ़ सकता है या 200 मिलियन महिलाएं भी थीं, जिनमें से लिखना.\\n\\n2\\n00:00:06,861 -> 00:00:10,942\\nलोग ज्यादा लड़कियों को पसंद नहीं है.\\n\\n3\\n00:00:10,942 -> 00:00:14,666\\nक्या आप आप बड़े हो रहे हैं जब होना चाहते हैं?\\n\\n4\\n00:00:14,666 -> 00:00:16,211\\nमैं एक पायलट बनना चाहते हैं.\\n\\n5\\n00:00:16,211 -> 00:00:17,208\\nएक पायलट\\n\\n6\\n00:00:17,208 -> 00:00:19,007\\nक्यों?\\n\\n7\\n00:00:19,115 -> 00:00:21,592\\nमैं आसमान घूमने के लिए चाहते हैं.\\n\\n8\\n00:00:21,592 -> 00:00:25,784\\nसच में. कितना अच्छा. तो तुम उड़ करना चाहते हैं? आप कहां उड़ करना चाहते हैं?\\n\\n9\\n00:00:25,784 -> 00:00:29,573\\nआसमान में. आसमान में.\\n\\n10\\n00:00:31,896 -> 00:00:36,295\\n2002 में, भारत के ऐतिहासिक 86 वें भारतीय संविधान संशोधन अधिनियम अधिनियमित\\n\\n11\\n00:00:36,295 -> 00:00:41,222\\nकि सभी बच्चों के लिए एक मौलिक अधिकार के रूप में प्राथमिक शिक्षा की घोषणा की.\\n\\n12\\n00:00:41,222 -> 00:00:44,340\\nअभी भी निरक्षर 304 मिलियन भारतीय नागरिकों के साथ,\\n\\n13\\n00:00:44,340 -> 00:00:46,782\\nशैक्षिक चुनौती के साथ केवल संबोधित नहीं किया जा सकता है\\n\\n14\\n00:00:46,782 -> 00:00:52,851\\nअधिकार की घोषणाओं. इसलिए भारत सरकार ने सर्व शिक्षा अभियान, सभी के लिए शिक्षा के कार्यक्रम \\'का शुभारंभ किया.\\n\\n15\\n00:00:53,435 -> 00:00:56,414\\nमैडम सुप्रभात.\\n\\n16\\n00:00:56,414 -> 00:00:58,908\\nलड़कियों बैठ जाओ.\\n\\n17\\n00:00:59,600 -> 00:01:04,977\\nमोटे तौर पर भारत सरकार द्वारा वित्त पोषित इस कार्यक्रम मिलियन लगभग 250 यूरो प्राप्त हुआ है\\n\\n18\\n00:01:04,977 -> 00:01:07,702\\nविश्व बैंक और यूरोपीय संघ से.\\n\\n19\\n00:01:08,009 -> 00:01:14,899\\nवर्ष 2009 में भारतीय संसद ने एक कदम और आगे ले गया और पारित, नि: शुल्क एवं अनिवार्य शिक्षा अधिनियम, Au को बच्चों के अधिकार authe.\\n\\n20\\n00:01:15,606 -> 00:01:18,321\\nऔर सभी भारतीय राज्यों प्रत्यायोजित\\n\\n21\\n00:01:18,490 -> 00:01:20,914\\nसभी बच्चों को मुफ्त और अनिवार्य शिक्षा उपलब्ध कराने के लिए शुल्क\\n\\n22\\n00:01:20,914 -> 00:01:24,612\\n6 के बीच और 14 साल पुरानी है. और आदेश में लड़कियों का नामांकन बढ़ाने के लिए\\n\\n23\\n00:01:24,612 -> 00:01:27,456\\nप्राथमिक विद्यालयों में, भारत सरकार ने 3600 आवासीय विद्यालय की स्थापना\\n\\n24\\n00:01:27,456 -> 00:01:31,307\\n6 से 14 साल पुराने लड़कियों के लिए देश भर में\\n\\n25\\n00:01:31,307 -> 00:01:33,517\\nसबसे उपेक्षित समुदायों से.\\n\\n26\\n00:01:33,517 -> 00:01:36,222\\nहमारी टीम सारनाथ में ऐसे ही एक स्कूल के पास गया\\n\\n27\\n00:01:36,222 -> 00:01:40,414\\nएक शहर में भगवान बुद्ध के साथ जुड़े रहे हैं और उत्तर प्रदेश के उत्तरी भारतीय राज्य में स्थित है.\\n\\n28\\n00:01:40,414 -> 00:01:44,056\\nइधर, शैक्षिक पाठ्यक्रम के अलावा, लड़कियों के जीवन कौशल सीखना\\n\\n29\\n00:01:44,056 -> 00:01:48,073\\nऔर प्रदर्शन कला. वे अपने अधिकारों को जानने के लिए और वे खुद का बचाव करना सीखो.\\n\\n30\\n00:01:48,073 -> 00:01:51,657\\nवे परिवार और समाज में उनकी भूमिका और मूल्य को समझते हैं और उन्हें हासिल\\n\\n31\\n00:01:51,657 -> 00:01:56,489\\nआत्मविश्वास. वे महिलाओं के होने का गर्व होना सीखना.\\n\\n32\\n00:01:58,874 -> 00:02:01,783\\nआजकल, हम देखते हैं कि\\n\\n33\\n00:02:01,783 -> 00:02:04,941\\nवे वास्तव में युवा जब कि लड़कियों की शादी कर रहे हैं.\\n\\n34\\n00:02:04,941 -> 00:02:07,994\\nगांवों में, माता पिता एक बहुत ही कम उम्र में अपने बच्चों की शादी.\\n\\n35\\n00:02:07,994 -> 00:02:11,355\\nहम इस मुद्दे के बारे में लोगों से बात करनी होगी.\\n\\n36\\n00:02:12,063 -> 00:02:13,976\\nपक्षी, पक्षियों, वे उड़ान रखने;\\n\\n37\\n00:02:14,038 -> 00:02:18,323\\nपक्षी! पक्षियों! वे उड़ान रखने;\\n\\n38\\n00:02:18,323 -> 00:02:23,844\\nखुशी से, खुशी से, वे गाते\\n\\n39\\n00:02:25,460 -> 00:02:30,241\\nदूर उन के बीच में से एक मक्खियों. तो, कितने बने हुए हैं? शून्य\\n\\n40\\n00:02:31,165 -> 00:02:33,599\\nमैं हम जानते हैं कि कुछ कर रहे हैं विश्वास\\n\\n41\\n00:02:33,599 -> 00:02:39,416\\nबहुत कम लोगों को ऐसा करने में सक्षम हैं. अधिकांश शिक्षकों को जाना और सिखाने\\n\\n42\\n00:02:39,416 -> 00:02:42,846\\nऔर पैसा कमाते हैं. मैं भी पैसे कमाने\\n\\n43\\n00:02:42,846 -> 00:02:48,277\\nलेकिन इसके साथ साथ, मैं सहानुभूति और स्नेह का एक बहुत कुछ प्राप्त\\n\\n44\\n00:02:48,277 -> 00:02:51,580\\nइन बच्चों से.\\n\\n45\\n00:02:51,580 -> 00:02:53,501\\nये जिनके जीवन पहले बर्बाद किया जा रहा थे बच्चे थे.\\n\\n46\\n00:02:53,501 -> 00:02:56,022\\nहम एक साथ इन बच्चों को ला रहे हैं और हम अच्छे नागरिक के रूप में उन्हें तैयारी कर रहे हैं;\\n\\n47\\n00:02:56,022 -> 00:03:00,335\\nऔर इसलिए हमारे समाज और हमारे देश वास्तव में विकसित करने में सक्षम हो जाएगा\\n\\n48\\n00:03:00,335 -> 00:03:06,914\\nअनार खाने के लिए इस्तेमाल किया चार छोटे पक्षियों\\n\\n49\\n00:03:08,560 -> 00:03:10,990\\nकोई भी मुझे लगता है कि पहले का अध्ययन किया जहां स्कूल में हमें सिखाने के लिए इस्तेमाल किया.\\n\\n50\\n00:03:10,990 -> 00:03:18,941\\nशिक्षक आते हैं और उसे कुर्सी पर बैठते थे और छात्रों के बारे में चिंता करने के लिए इस्तेमाल कभी नहीं\\n\\n51\\n00:03:18,941 -> 00:03:21,539\\nवे लड़ रहे हैं और एक दूसरे को मार रहे थे, भले ही.\\n\\n52\\n00:03:21,539 -> 00:03:27,342\\nयह मैं घर पर रहने के लिए इस्तेमाल क्यों है और स्कूल जाने के लिए नहीं\\n\\n53\\n00:03:27,342 -> 00:03:35,459\\nइस स्कूल के बारे में खबर समाचार पत्रों में प्रकाशित किया गया था तब, जब मेरी चाची मुझे इस स्कूल में दाखिला मिल गया\\n\\n54\\n00:03:35,459 -> 00:03:38,748\\nऔर मैं यहां अध्ययन करने के लिए आया था\\n\\n55\\n00:03:39,502 -> 00:03:46,141\\nहम यहाँ नोटबुक और कलम और पेंसिल मिलता है.\\n\\n56\\n00:03:46,141 -> 00:03:51,582\\nहम कुछ भी नहीं है और हम शिक्षकों को बाहर पूछना, वे तुरंत इसे हमें दे.\\n\\n57\\n00:03:51,582 -> 00:03:57,834\\nहमारे शिक्षकों को हमेशा चिंता और उनके साथ हमारी इच्छाओं और इच्छाओं को साझा करने के लिए हमें पूछने के लिए नहीं हमें बताओ. वे \"चिंता मत करो, हम तुम्हारे लिए यहाँ हैं कहते हैं,\"\\n\\n58\\n00:03:59,664 -> 00:04:02,520\\nकभी कभी, हम भी उन्हें \\'माँ\\' कहते हैं.\\n\\n59\\n00:04:03,182 -> 00:04:07,831\\nकई परिवारों वे फीस का भुगतान नहीं कर सकते हैं क्योंकि स्कूलों में अपने बच्चों को भेजने में असमर्थ हैं.\\n\\n60\\n00:04:07,831 -> 00:04:12,783\\nउन्होंने कहा कि वे पहली बार अपने बच्चों को शिक्षित करने के बारे में सोच तो उनके भोजन के लिए संगठित और चाहिए कि लग रहा है.\\n\\n61\\n00:04:12,783 -> 00:04:18,678\\nहमारे सरकारी स्कूलों में इस तरह लड़कियों को भर्ती करने का फैसला किया तो, लड़कियों के गरीबी रेखा से नीचे रहने वाले परिवारों के थे;\\n\\n62\\n00:04:18,678 -> 00:04:20,862\\n6 से 14 वर्ष के बीच आयु वर्ग के युवा लड़कियों,\\n\\n63\\n00:04:20,862 -> 00:04:25,422\\nकि 1 या 2 या 3 ग्रेड तक अध्ययन किया है, स्कूल छोड़ बहिष्कार कर रहे हैं कि\\n\\n64\\n00:04:25,422 -> 00:04:33,744\\nऔर ऐसी लड़कियों enroled किया जाना चाहिए और इस तरह एक जगह में, जहां वे एक आवासीय स्कूल में घर से दूर रह सकते हैं कि फैसला किया\\n\\n65\\n00:04:33,744 -> 00:04:37,096\\n24 घंटे एक दिन के लिए\\n\\n66\\n00:04:37,096 -> 00:04:43,342\\nउनके आवास, भोजन, अध्ययन का ध्यान रखा जाता है जहां\\n\\n67\\n00:04:43,342 -> 00:04:46,143\\nबच्चे को एक अनुकूल माहौल में रह सकते हैं तो\\n\\n68\\n00:04:46,143 -> 00:04:50,302\\nऔर पूरी तरह से अपने कौशल विकसित करता है.\\n\\n69\\n00:04:50,302 -> 00:04:56,781\\nमेरे माता पिता ने हमेशा की तरह, वे हो सकता है लेकिन गरीब ने कहा है कि\\n\\n70\\n00:04:56,781 -> 00:04:58,912\\nवे हमेशा सिर्फ हमें लड़कियों को शिक्षित करने के लिए वे सब कुछ देने के लिए तैयार हो जाएगा\\n\\n71\\n00:04:58,912 -> 00:05:01,781\\nहम महिमा का अध्ययन करने और प्राप्त करने का अवसर है ताकि\\n\\n72\\n00:05:01,842 -> 00:05:09,742\\nआजकल, माता - पिता लड़कियों उत्कृष्टता प्राप्त करने और किसी भी पेशे में प्रवेश कर सकते हैं कि पता\\n\\n73\\n00:05:09,742 -> 00:05:14,543\\nऔर हमारे माता पिता भी हम बेटों गया होता की तुलना में उनके लिए अधिक महत्वपूर्ण है कि हमें बताओ\\n\\n74\\n00:05:14,543 -> 00:05:15,861\\nहम चाहते हैं के रूप में हम जितना अध्ययन करना चाहिए और कि\\n\\n75\\n00:05:15,861 -> 00:05:19,571\\nवे हमारे अध्ययन निधि के लिए अपने घरों को बेचने के लिए हो सकता है, भले ही\\n\\n76\\n00:05:19,571 -> 00:05:25,462\\nएक दिन एक आदमी कागज के एक टुकड़े पर लिखी एक पते की खोज में हमारे गांव के लिए आया था\\n\\n77\\n00:05:25,462 -> 00:05:34,501\\nकोई भी उसे मदद कर रहा था, तो मैं मदद कर सकता है यदि सज्जन ने मुझसे पूछा.\\n\\n78\\n00:05:34,501 -> 00:05:40,502\\nमैं सड़क पर एक काले रंग के साइन बोर्ड पर लिखा पता देखा\\n\\n79\\n00:05:40,502 -> 00:05:45,022\\nऔर वह देख रहा था जगह तक पहुंच सकता है कि कैसे उसे समझाया. उन्होंने कहा कि अंग्रेजी में मुझे धन्यवाद दिया.\\n\\n80\\n00:05:45,022 -> 00:05:46,622\\nपास में बैठे थे जो लड़कियों काढ़ शुरू\\n\\n81\\n00:05:46,622 -> 00:05:49,060\\nऔर वे हँस रहे थे क्यों मैं ने उन से पूछा, जब वे वह मुझसे क्या कहा था मुझसे पूछा.\\n\\n82\\n00:05:49,060 -> 00:05:57,537\\nमुझे लगता है वह \"ठनक\" ने कहा था कि उन्हें बताया. उन्होंने कहा कि वे वह अपमानजनक कुछ कहा था, सोचा था, कहा\\n\\n83\\n00:05:57,537 -> 00:06:00,354\\nमाता पिता, हमारे छात्रों का पता है,\\n\\n84\\n00:06:00,354 -> 00:06:02,184\\nकि बाल विवाह गलत है.\\n\\n85\\n00:06:02,184 -> 00:06:08,428\\nवे अपने समुदायों में बच्चों जवान की शादी कर रहे हैं का कहना है कि\\n\\n86\\n00:06:08,428 -> 00:06:12,400\\nऔर कहा कि पड़ोसी देशों के स्कूलों को बंद कर उनकी लड़कियों को भेजने के बजाय उन्हें शादी हो रही है के लिए उन्हें आलोचना.\\n\\n87\\n00:06:12,492 -> 00:06:15,619\\nलेकिन माता - पिता इस मूल्य को समझने\\n\\n88\\n00:06:15,619 -> 00:06:17,987\\nऔर वे अपनी बेटियों को उन्हें युवा बंद का अध्ययन करने और शादी करने के लिए नहीं चाहते हैं का कहना है कि\\n\\n89\\n00:06:20,199 -> 00:06:22,523\\nतो, धीरे धीरे हमारे माता - पिता का मन बनाया, उनकी लड़कियों के प्रति बदल रहा है,\\n\\n90\\n00:06:35,771 -> 00:06:43,345\\nशिक्षा हम के लिए खोज और इन बच्चों की प्रतिभा को बाहर का नेतृत्व कर सकते हैं, जिसके माध्यम से ही मतलब है\\n\\n91\\n00:06:43,345 -> 00:06:46,308\\nइन राष्ट्र का निर्माण होगा जो बच्चों को हो जाएगा.\\n\\n92\\n00:06:49,185 -> 00:06:51,554\\nवर्ग वी में बच्चों के 37%\\n\\n93\\n00:06:51,554 -> 00:06:56,664\\nद्वितीय श्रेणी के लिए बने एक पाठ नहीं पढ़ सकते हैं. अब, आप उस इसलिए पैसे का कहना है कि अगर\\n\\n94\\n00:06:56,664 -> 00:06:59,902\\nऔर लाभ लक्षित जनसंख्या से नहीं पहुंच पा रहे हैं\\n\\n95\\n00:06:59,902 -> 00:07:02,902\\nएक अर्थ में है कि आप सही कर रहे हैं. लेकिन एक सरकार क्या कर सकते हैं?\\n\\n96\\n00:07:02,902 -> 00:07:07,176\\nयह स्कूलों सेट, यह शिक्षकों को काम देता है. तो, हम आपको अधिक जरूरत है\\n\\n97\\n00:07:07,176 -> 00:07:09,944\\nमाता पिता शिक्षक भागीदारी. आप स्थानीय समुदाय होनी चाहिए\\n\\n98\\n00:07:09,944 -> 00:07:16,248\\nजवाबदेही मजबूर. शिक्षकों को पढ़ाने के लिए किया जाना चाहिए.\\n\\n99\\n00:07:16,248 -> 00:07:19,342\\nआप ये सिर्फ सरकारों द्वारा नहीं किया जाता है कि बातें कर रहे हैं कि पता\\n\\n100\\n00:07:19,342 -> 00:07:23,166\\nये सामाजिक जागरूकता, सामाजिक दबाव के द्वारा किया जाता है कि बातें कर रहे हैं\\n\\n101\\n00:07:28,782 -> 00:07:28,862\\nसंविधान 1950 में फंसाया गया था, तर्क दिया गया था\\n\\n102\\n00:07:28,862 -> 00:07:34,617\\nकि शिक्षा एक मौलिक अधिकार नहीं था.\\n\\n103\\n00:07:35,125 -> 00:07:41,256\\nसरकार तो हम वित्तीय संसाधन नहीं है कि कहा क्योंकि\\n\\n104\\n00:07:41,256 -> 00:07:48,059\\nशिक्षा सुनिश्चित करने के लिए. 1950 में भारत की जनसंख्या 350 मिलियन के आसपास थी.\\n\\n105\\n00:07:48,059 -> 00:07:49,780\\nअब, ज़ाहिर है, हम कर रहे हैं एक अरब से अधिक\\n\\n106\\n00:07:49,780 -> 00:07:52,900\\nलेकिन फिर भी उन दिनों में भी सरकार को हम नहीं था कि कहा\\n\\n107\\n00:07:52,900 -> 00:07:54,776\\nवित्तीय संसाधनों, तो हमें दस साल दे. और दस साल के भीतर\\n\\n108\\n00:07:54,776 -> 00:07:58,085\\nहम उत्तरोत्तर सभी बच्चों को स्कूल में हैं देखेंगे\\n\\n109\\n00:07:58,085 -> 00:08:02,979\\n1960 आया 1970 1980, आया, आया, 1990 में आया था\\n\\n110\\n00:08:02,979 -> 00:08:07,782\\nएक ही तर्क है, हम वित्तीय संसाधन नहीं है\\n\\n111\\n00:08:07,782 -> 00:08:10,943\\nऔर इस बीच में, आप क्या देख रहे थे?\\n\\n112\\n00:08:10,943 -> 00:08:17,022\\nभारत बिल्कुल कॉर्पोरेट होता जा रहा था, एक देश में उच्च शिक्षा के लिए\\n\\n113\\n00:08:17,022 -> 00:08:25,300\\nभारतीय प्रौद्योगिकी संस्थान, आईआईटी, बहुत अच्छी तरह से जाना जाता है. प्रबंधन के लिए भारतीय संस्थानों, आईआईएम,\\n\\n114\\n00:08:25,300 -> 00:08:27,422\\nमैं आईआईएम अहमदाबाद में अध्ययन\\n\\n115\\n00:08:27,422 -> 00:08:30,222\\nवे शानदार संस्थानों थे. वे सबसे अच्छे प्रबंधकों निकला\\n\\n116\\n00:08:30,222 -> 00:08:33,585\\nसब जो असाधारण अच्छी तरह से कर रही है दुनिया भर में अब कर रहे हैं\\n\\n117\\n00:08:33,585 -> 00:08:37,340\\nतो, अगर आप उच्च संस्थानों के इन प्रकार को देखें, तो भारत में बहुत अच्छा प्रदर्शन किया था\\n\\n118\\n00:08:37,340 -> 00:08:41,100\\nलेकिन बुनियादी शिक्षा और स्कूली शिक्षा की उपेक्षा अक्षम्य था\\n\\n119\\n00:08:41,100 -> 00:08:44,862\\nऔर यह नागरिक समाज आंदोलन ले लिया\\n\\n120\\n00:08:44,862 -> 00:08:50,176\\nराइट ओ.टी. शिक्षा आंदोलन साल और धक्का और धक्का और धक्का का साल\\n\\n121\\n00:08:50,176 -> 00:08:54,068\\nयह 2003 में एक मौलिक अधिकार बनाया गया था जब तक.\\n\\n122\\n00:08:54,237 -> 00:08:57,269\\nमैं एक बेटी हूँ, मैं एक बेटी हूँ.\\n\\n123\\n00:08:57,269 -> 00:08:59,217\\nमैं एक सितारा बन जाएगा\\n\\n124\\n00:08:59,217 -> 00:09:01,074\\nमैं एक सितारा हो जाएगा ....\\n\\n125\\n00:09:01,120 -> 00:09:04,780\\nभारत अभी भी एक लंबा रास्ता तय किया है,\\n\\n126\\n00:09:04,780 -> 00:09:07,420\\n2009 में स्कूल के बाहर केवल 8 लाख बच्चों के साथ, यह शुरू कर दिया है\\n\\n127\\n00:09:07,420 -> 00:09:11,100\\nप्रत्येक भारतीय बच्चे के लिए शिक्षा के अधिकार को सुनिश्चित करने की दिशा पथ पर चल रहा है.\\n\\n128\\n00:09:11,100 -> 00:09:17,397\\nवास्तव में, ज्यादातर भारतीयों को सभी के लिए शिक्षा सबसे अच्छा निवेश का मानना \\u200b\\u200bहै कि\\n\\n129\\n00:09:17,397 -> 00:09:20,022\\nकि परिवारों और सरकारों बना सकते हैं. इस तरह के निवेश का लाभ\\n\\n130\\n00:09:20,022 -> 00:09:20,942\\nसभी ने आनंद लिया जाएगा.\\n\\n131\\n00:09:20,942 -> 00:09:23,182\\nमैं अपने खुद के पैर पर चढ़ जाएगा\\n\\n132\\n00:09:23,182 -> 00:09:23,980\\nमैं दुनिया को देखना होगा\\n\\n133\\n00:09:23,980 -> 00:09:27,222\\nभारत बुनियादी स्वास्थ्य और शिक्षा के क्षेत्र में निवेश के इन उच्च स्तर को बर्दाश्त कर सकते हैं?\\n\\n134\\n00:09:27,222 -> 00:09:31,781\\nलेकिन सब से ऊपर, प्रश्न प्रस्तुत की मौलिक रास्ता है\\n\\n135\\n00:09:31,781 -> 00:09:35,222\\nभारत, बुनियादी स्वास्थ्य में निवेश करने के लिए नहीं बर्दाश्त कर सकते हैं\\n\\n136\\n00:09:35,222 -> 00:09:39,222\\nबुनियादी शिक्षा, बुनियादी पोषण और जीवन की ऐसी अनिवार्य है?\\n\\n137\\n00:09:39,222 -> 00:09:41,000\\nAmara.org समुदाय द्वारा मूवी',\n", + " 'bytes': 25669,\n", + " 'sha1': 'pinqwbclz990kbc6sxptre474aned66',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97939657,\n", + " 'timestamp': '2013-06-10T20:31:40Z',\n", + " 'user': {'id': 2280090, 'text': 'Rahulkepapa'},\n", + " 'page': {'id': 26536002,\n", + " 'title': 'Sarva shiksha abhiyan, kasturba gandhi balika vidyalaya.webm.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 -> 00:00:06,861\\nSecondo l\\'ultimo censimento, 300 milioni di indiani non sanno né leggere né scrivere, di questi 300 milioni, 200 sono donne.\\n\\n2\\n00:00:06,861 -> 00:00:10,942\\nAlla gente non piacciono le ragazze. \\n\\n3\\n00:00:10,942 -> 00:00:14,666\\nCosa ti piacerebbe essere da grande?\\n4\\n00:00:14,666 -> 00:00:16,211\\nMi piacerebbe essere un pilota.\\n\\n5\\n00:00:16,211 -> 00:00:17,208\\nUn pilota?\\n\\n6\\n00:00:17,208 -> 00:00:19,007\\nE perché?\\n\\n7\\n00:00:19,115 -> 00:00:21,592\\nVoglio vagare nei cieli.\\n\\n8\\n00:00:21,592 -> 00:00:25,784\\nDavvero? Che bello. Così ti piacerebbe volare? Dove vuoi volare?\\n\\n9\\n00:00:25,784 -> 00:00:29,573\\nNei cieli. Nei cieli.\\n\\n10\\n00:00:31,896 -> 00:00:36,295\\nNel 2002, il governo indiano ha emendato la costituzione promulgando il noto ‘Eighty-Sixth amendment act’ (l’ottantaseiesimo atto di emendamento) \\n\\n11\\n00:00:36,295 -> 00:00:41,222\\nil quale ha dichiarato l’istruzione elementare un diritto fondamentale per tutti i bambini.\\n\\n12\\n00:00:41,222 -> 00:00:44,340\\nCon 304 milioni di cittadini indiani ancora non alfabetizzati,\\n\\n13\\n00:00:44,340 -> 00:00:46,782\\nla sfida per l’educazione non è solo un problema di \\n\\n14\\n00:00:46,782 -> 00:00:52,851\\ndichiarazioni dei diritti umani. Per questo motivo, il governo indiano ha lanciato il Sarva Shiksha Abhiyan, il programma di \\'Educazione per tutti \".\\n\\n15\\n00:00:53,435 -> 00:00:56,414\\nBuongiorno signora.\\n\\n16\\n00:00:56,414 -> 00:00:58,908\\nSedetevi ragazze.\\n\\n17\\n00:00:59,600 -> 00:01:04,977\\nPerlopiù finanziato dal governo indiano, questo programma ha ricevuto circa 250 milioni di euro\\n\\n18\\n00:01:04,977 -> 00:01:07,702\\ndalla Banca Mondiale e l\\'Unione Europea.\\n\\n19\\n00:01:08,009 -> 00:01:14,899\\nNel 2009, il Parlamento indiano ha fatto un ulteriore passo in avanti ed ha promulgato un decreto che garantiva il diritto di tutti i bambini ad un’educazione gratuita e obbligatoria \\n\\n20\\n00:01:15,606 -> 00:01:18,321\\ne delegava a tutti gli Stati indiani\\n\\n21\\n00:01:18,490 -> 00:01:20,914\\nil dovere di fornire un’istruzione gratuita e obbligatoria a tutti i bambini\\n\\n22\\n00:01:20,914 -> 00:01:24,612\\ntra i 6 e 14 anni. Inoltre, al fine di aumentare l\\'iscrizione delle bambine\\n\\n23\\n00:01:24,612 -> 00:01:27,456\\nnelle scuole elementari, il governo indiano ha istituito, in tutto il paese, 3.600 scuole residenziali\\n\\n24\\n00:01:27,456 -> 00:01:31,307\\nper ragazze dai 6 a 14 anni \\n\\n25\\n00:01:31,307 -> 00:01:33,517\\nProvenienti dalle comunità più emarginate.\\n\\n26\\n00:01:33,517 -> 00:01:36,222\\nLa nostra squadra è andata in una di queste scuole, a Sarnath,\\n\\n27\\n00:01:36,222 -> 00:01:40,414\\nuna città associata con il Signore Buddha e che si trova nello stato indiano dell\\'Uttar Pradesh.\\n\\n28\\n00:01:40,414 -> 00:01:44,056\\nQui, oltre al curriculum accademico, le ragazze imparano strategie di vita\\n\\n29\\n00:01:44,056 -> 00:01:48,073\\ne le arti dello spettacolo; imparano a conoscere i loro diritti e imparano a difendersi.\\n\\n30\\n00:01:48,073 -> 00:01:51,657\\nInoltre, qui, comprendono il proprio ruolo e il proprio valore nella famiglia e nella società, acquistando in tal modo\\n\\n31\\n00:01:51,657 -> 00:01:56,489\\nfiducia in se stesse. Le ragazze imparano ad essere orgogliose di essere donne.\\n\\n32\\n00:01:58,874 -> 00:02:01,783\\nAncora oggi, vediamo \\n\\n33\\n00:02:01,783 -> 00:02:04,941\\nragazze che vengono maritate da giovanissime.\\n\\n34\\n00:02:04,941 -> 00:02:07,994\\nNei villaggi, i genitori fanno sposare i loro figli quando sono ancora molto giovani.\\n\\n35\\n00:02:07,994 -> 00:02:11,355\\nBisognerà parlare con la gente di questo problema.\\n\\n36\\n00:02:12,063 -> 00:02:13,976\\nUccelli, uccelli, continuano a volare;\\n\\n37\\n00:02:14,038 -> 00:02:18,323\\nUccelli! uccelli! continuano a volare;\\n\\n38\\n00:02:18,323 -> 00:02:23,844\\nFelicemente, Felicemente, cantano\\n\\n39\\n00:02:25,460 -> 00:02:30,241\\ne tra loro uno ne vola via. Quindi, quanti ne restano? Zero\\n\\n40\\n00:02:31,165 -> 00:02:33,599\\nIo credo che stiamo facendo qualcosa che\\n\\n41\\n00:02:33,599 -> 00:02:39,416\\npochissime persone sono in grado di fare. La maggior parte degli insegnanti vanno, insegnano\\n\\n42\\n00:02:39,416 -> 00:02:42,846\\ne guadagnano denaro. Anche io ho uno stipendio\\n\\n43\\n00:02:42,846 -> 00:02:48,277\\nma insieme a questo ricevo tanta simpatia e affetto\\n\\n44\\n00:02:48,277 -> 00:02:51,580\\nda questi bambini.\\n\\n45\\n00:02:51,580 -> 00:02:53,501\\nLe vite di questi bambini, prima, venivano sprecate.\\n\\n46\\n00:02:53,501 -> 00:02:56,022\\nRecuperando questi bambini, li stiamo preparando ad essere buoni cittadini;\\n\\n47\\n00:02:56,022 -> 00:03:00,335\\ne così la nostra società e il nostro paese saranno davvero in grado di svilupparsi. \\n\\n48\\n00:03:00,335 -> 00:03:06,914\\nQuattro piccoli uccelli erano soli mangiare un melograno.\\n\\n49\\n00:03:08,560 -> 00:03:10,990\\nNella scuola dove studiavo prima, nessuno ci insegnava qualcosa. \\n\\n50\\n00:03:10,990 -> 00:03:18,941\\nL\\'insegnante si sedeva sulla sua sedia e non si preoccupava mai degli studenti\\n\\n51\\n00:03:18,941 -> 00:03:21,539\\nanche se litigavano e si davano le botte tra loro.\\n\\n52\\n00:03:21,539 -> 00:03:27,342\\nÈ per questo che stano a casa e non andavo a scuola. \\n\\n53\\n00:03:27,342 -> 00:03:35,459\\nPoi, quando i giornali hanno pubblicato un articolo su questa scuola, mia zia mi ci ha iscritta \\n\\n54\\n00:03:35,459 -> 00:03:38,748\\ne sono venuta a studiare qui\\n\\n55\\n00:03:39,502 -> 00:03:46,141\\nQui, riceviamo quaderni, penne e matite.\\n\\n56\\n00:03:46,141 -> 00:03:51,582\\nSe non abbiamo qualcosa lo chiediamo e le insegnanti ce lo danno immediatamente. \\n\\n57\\n00:03:51,582 -> 00:03:57,834\\nI nostri insegnanti ci dicono sempre di non preoccuparci, di chiedere e di condividere i nostri desideri con loro; ci dicono: \"noi siamo qui per te, non ti preoccupare\"\\n\\n58\\n00:03:59,664 -> 00:04:02,520\\nA volte, addirittura chiamiamo le maestre “mamma”.\\n\\n59\\n00:04:03,182 -> 00:04:07,831\\nIn molti casi le famiglie non mandano i figli a scuola perché non possono permettersi le rette scolastiche. \\n\\n60\\n00:04:07,831 -> 00:04:12,783\\nSentono che devono prima pensare al loro nutrimento e poi alla loro educazione.\\n\\n61\\n00:04:12,783 -> 00:04:18,678\\nPer questo, il nostro governo ha deciso di iscrivere le ragazze in queste scuole. Queste ragazze appartenevano a famiglie che vivono al di sotto della soglia di povertà;\\n\\n62\\n00:04:18,678 -> 00:04:20,862\\nsono giovani ragazze di età compresa tra i 6 e i 14 anni,\\n\\n63\\n00:04:20,862 -> 00:04:25,422\\nche hanno studiato fino alla 1 o 2 o 3 elementare e che hanno abbandonato gli studi.\\n\\n64\\n00:04:25,422 -> 00:04:33,744\\nIl governo, quindi, ha deciso che queste ragazze dovrebbero essere iscritte in un posto dove possono stare lontano da casa, cioè in una scuola residenziale,\\n\\n65\\n00:04:33,744 -> 00:04:37,096\\naperta 24 ore al giorno,\\n\\n66\\n00:04:37,096 -> 00:04:43,342\\nche si occupa del loro alloggio,del cibo, e dello studio \\n67\\n00:04:43,342 -> 00:04:46,143\\nin modo che le bambine possano vivere in un ambiente favorevole\\n\\n68\\n00:04:46,143 -> 00:04:50,302\\nsviluppando liberamente le proprie abilità. \\n\\n69\\n00:04:50,302 -> 00:04:56,781\\nI miei genitori hanno sempre detto che per quanto poveri possano essere,\\n\\n70\\n00:04:56,781 -> 00:04:58,912\\nsarebbero sempre pronti a rinunciare a tutto quello che hanno per la mia educazione\\n\\n71\\n00:04:58,912 -> 00:05:01,781\\nin modo che io abbia la possibilità di studiare e di raggiungere i miei obiettivi. \\n\\n72\\n00:05:01,842 -> 00:05:09,742\\nAl giorno d\\'oggi, i genitori sanno che le ragazze possono raggiungere l\\'eccellenza e inserirsi in qualsiasi professione.\\n\\n73\\n00:05:09,742 -> 00:05:14,543\\nI nostri genitori ci dicono anche che per loro siamo più importanti di quanto non sarebbero stati dei figli maschi\\n\\n74\\n00:05:14,543 -> 00:05:15,861\\ne che quindi dobbiamo studiare quanto vogliamo\\n\\n75\\n00:05:15,861 -> 00:05:19,571\\nanche se dovesse significare vendere la loro case per finanziare i nostri studi.\\n\\n76\\n00:05:19,571 -> 00:05:25,462\\nUn giorno un uomo è arrivato nel nostro paese in cerca di un indirizzo scritto su un pezzo di carta.\\n\\n77\\n00:05:25,462 -> 00:05:34,501\\nNessuno è stato in grado di aiutarlo. Per questo il signore ha chiesto a me se potevo aiutarlo.\\n\\n78\\n00:05:34,501 -> 00:05:40,502\\nAvevo visto l\\'indirizzo scritto su un cartello bianco sulla strada\\n\\n79\\n00:05:40,502 -> 00:05:45,022\\ne gli ho spiegato come raggiungere il luogo che cercava. Mi ha ringraziato in inglese.\\n\\n80\\n00:05:45,022 -> 00:05:46,622\\nLe ragazze che erano sedute vicino a me subito dopo cominciarono a ridacchiare\\n\\n81\\n00:05:46,622 -> 00:05:49,060\\ne quando ho chiesto loro perché stavano ridendo, mi hanno chiesto che cosa mi avesse detto l’uomo. \\n\\n82\\n00:05:49,060 -> 00:05:57,537\\nHo detto loro che aveva detto \"Grazie\"; loro mi risposero che avevano pensato mi avesse detto qualcosa di abusivo. \\n\\n83\\n00:05:57,537 -> 00:06:00,354\\nI genitori dei nostri studenti sanno\\n\\n84\\n00:06:00,354 -> 00:06:02,184\\nche far sposare i bambini è sbagliato;\\n\\n85,\\n00:06:02,184 -> 00:06:08,428\\nCi raccontano che, nelle loro comunità, i bambini vengono fatti sposare da giovanissimi \\n\\n86\\n00:06:08,428 -> 00:06:12,400\\ne che i vicini li criticano per il fatto che mandano le loro ragazze a scuole invece di farle sposare.\\n\\n87\\n00:06:12,492 -> 00:06:15,619\\nAl contrario i genitori delle nostre alunne comprendono il valore dello studio\\n\\n88\\n00:06:15,619 -> 00:06:17,987\\ne dicono che vogliono far studiare le loro figlie invece di farle sposare da giovanissime. \\n\\n89\\n00:06:20,199 -> 00:06:22,523\\nIn questo modo, lentamente, l’atteggiamento mentale dei nostri genitori verso le loro ragazze, sta cambiando.\\n\\n90\\n00:06:35,771 -> 00:06:43,345\\nL\\'educazione è l\\'unico mezzo attraverso il quale possiamo cercare di tirare fuori i talenti di queste bambine \\n\\n91\\n00:06:43,345 -> 00:06:46,308\\nperché queste saranno le ragazze che potranno costruire la nostra nazione.\\n\\n92,\\n00:06:49,185 -> 00:06:51,554\\nIl 37% dei bambini in 5 elementare\\n93\\n00:06:51,554 -> 00:06:56,664\\nnon sono in grado di leggere un testo pensato per la 2 elementare. Ora, se uno quindi critica il governo dicendo che il denaro\\n\\n94\\n00:06:56,664 -> 00:06:59,902\\ne i benefici non raggiungono la popolazione target\\n\\n95\\n00:06:59,902 -> 00:07:02,902\\nin un certo senso ha ragione. Ma cosa può fare il governo?\\n\\n96\\n00:07:02,902 -> 00:07:07,176\\nUn governo costruisce le scuole, assume gli insegnanti ma c’è bisogno di qualcos’altro, come ad esempio \\n97\\n00:07:07,176 -> 00:07:09,944\\nil coinvolgimento di insegnanti e genitori insieme. È necessario che la comunità locale\\n\\n98\\n00:07:09,944 -> 00:07:16,248\\nrichieda alle autorità un senso di responsabilità. Gli insegnanti devono essere fatti per insegnare.\\n\\n99\\n00:07:16,248 -> 00:07:19,342\\nQueste sono cose che non sono solo messe in atto dai governi.\\n\\n100\\n00:07:19,342 -> 00:07:23,166\\nQueste sono cose che si ottengono attraverso la pressione sociale e con una consapevolezza per il sociale.\\n\\n101\\n00:07:28,782 -> 00:07:28,862\\nQuando nel 1950 fu promulgata la Costituzione, si disse\\n\\n102\\n00:07:28,862 -> 00:07:34,617\\nche l\\'istruzione non era un diritto fondamentale\\n\\n103\\n00:07:35,125 -> 00:07:41,256\\nperché il governo non aveva le risorse finanziarie\\n\\n104\\n00:07:41,256 -> 00:07:48,059\\nal fine di garantire l\\'istruzione. Allora la popolazione indiana era di circa 350 milioni.\\n\\n105\\n00:07:48,059 -> 00:07:49,780\\nOra, naturalmente, ci sono più di un miliardo di persone in India.\\n\\n106\\n00:07:49,780 -> 00:07:52,900\\nDunque il governo disse che, anche allora, non avevano le \\n\\n107\\n00:07:52,900 -> 00:07:54,776\\nrisorse finanziarie adatte, e che dunque dovevamo aspettare dieci anni e che poi nel giro di dieci anni\\n\\n108\\n00:07:54,776 -> 00:07:58,085\\ntutti i bambini avrebbero avuto un posto a scuola.\\n\\n109\\n00:07:58,085 -> 00:08:02,979\\nIl 1960 è arrivato, poi il 1970, il 1980 e anche il 1990.\\n\\n110\\n00:08:02,979 -> 00:08:07,782\\nSempre gli stessi argomenti: non abbiamo le risorse finanziarie.\\n\\n111\\n00:08:07,782 -> 00:08:10,943\\nPerò nel frattempo, a cosa stavamo assistendo?\\n\\n112\\n00:08:10,943 -> 00:08:17,022\\nL’India stava assumendo un ruolo sempre più aziendale; stava diventando un paese per l\\'istruzione superiore.\\n\\n113\\n00:08:17,022 -> 00:08:25,300\\n‘L’Istituto indiano di tecnologia’, le IIt, è molto conosciuto così come ‘l’Istituto indiano di Gestione’, i IIMS.\\n\\n114\\n00:08:25,300 -> 00:08:27,422\\nHo studiato al IIM di Ahmedabad.\\n\\n115\\n00:08:27,422 -> 00:08:30,222\\nErano istituzioni fantastici. Hanno formato i migliori gestori\\n\\n116\\n00:08:30,222 -> 00:08:33,585\\nche sono richiesti ormai in tutto il mondo.\\n\\n117\\n00:08:33,585 -> 00:08:37,340\\nSe si prendono in considerazione questi istituti superiori, l\\'India ha raggiunto degli ottimi obiettivi\\n\\n118\\n00:08:37,340 -> 00:08:41,100\\nma la negligenza nei confronti dell’istruzione di base e il progetto di scolarizzazione era di certo imperdonabile.\\n\\n119\\n00:08:41,100 -> 00:08:44,862\\nCi sono voluti il movimento della società civile e\\n\\n120\\n00:08:44,862 -> 00:08:50,176\\nil movimento per il ‘Diritto all’educazione’- poi anni e anni di pressione, pressione e pressione\\n121\\n00:08:50,176 -> 00:08:54,068\\nfino a che, il diritto all’educazione, non è stato reso un diritto fondamentale nel 2003.\\n\\n122\\n00:08:54,237 -> 00:08:57,269\\nSono una figlia, io sono una figlia.\\n\\n123\\n00:08:57,269 -> 00:08:59,217\\nDiventerò una star.\\n\\n124\\n00:08:59,217 -> 00:09:01,074\\nDiventerò una star ....\\n\\n125\\n00:09:01,120 -> 00:09:04,780\\nAnche se l\\'India ha ancora una lunga strada da percorrere,\\n\\n126\\n00:09:04,780 -> 00:09:07,420\\ncon 8 milioni di bambini ancora non iscritti a scuola nel 2009, il paese si sta incamminando\\n\\n127\\n00:09:07,420 -> 00:09:11,100\\nsul sentiero per garantire il diritto all\\'istruzione ad ogni bambino indiano.\\n\\n128\\n00:09:11,100 -> 00:09:17,397\\nIn realtà, la maggior parte degli indiani crede che l\\'istruzione per tutti sia il miglior investimento\\n\\n129\\n00:09:17,397 -> 00:09:20,022\\nche le famiglie ed i governi possano fare. I benefici di tali investimenti\\n\\n130\\n00:09:20,022 -> 00:09:20,942\\nsaranno apprezzati da tutti.\\n\\n131\\n00:09:20,942 -> 00:09:23,182\\nSalirò sui miei piedi.\\n\\n132\\n00:09:23,182 -> 00:09:23,980\\nVedrò il mondo.\\n\\n133\\n00:09:23,980 -> 00:09:27,222\\nL’India può permettersi i costi di questi investimenti nella sanità e nell’istruzione di base?\\n\\n134\\n00:09:27,222 -> 00:09:31,781\\nma, soprattutto, un modo migliore di porre la domanda è\\n\\n135\\n00:09:31,781 -> 00:09:35,222\\nl’India può permettersi di non investire nella sanità di base,\\n\\n136\\n00:09:35,222 -> 00:09:39,222\\nnell’istruzione elementare, nella nutrizione di base e nelle questioni essenziali per la vita?\\n\\n137\\n00:09:39,222 -> 00:09:41,000\\nSottotitoli da parte della comunità Amara.org',\n", + " 'bytes': 14403,\n", + " 'sha1': '4yepviz3iisgzmdm60tt3oen3q0ey80',\n", + " 'parent_id': 97939555,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101588954,\n", + " 'timestamp': '2013-08-09T21:18:51Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26544483,\n", + " 'title': 'Robin Stjernberg - You presentation (svenska).ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,259 --> 00:00:01,096\\nHallo an alle!\\n\\n2\\n00:00:01,096 --> 00:00:02,116\\nIch heiße Robin Stjernberg -\\n\\n3\\n00:00:02,116 --> 00:00:07,792\\n- und Ich repräsentiere Schweden im der Eurovision Song Contest 2013, mit meinem Song mit dem Titel \"You\".',\n", + " 'bytes': 250,\n", + " 'sha1': 'pyfxbdexbycimzg5rf8g9m7ka15v6la',\n", + " 'parent_id': 97795884,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101589127,\n", + " 'timestamp': '2013-08-09T21:22:19Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26544637,\n", + " 'title': 'Robin Stjernberg - You presentation (svenska).ogv.hu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,259 --> 00:00:01,096\\nHello mindenki!\\n\\n2\\n00:00:01,096 --> 00:00:02,116\\nAz én nevem Robin Stjernberg -\\n\\n3\\n00:00:02,116 --> 00:00:07,792\\n- és én képviselem Svédországot a 2013-as Eurovíziós Dalfesztiválon, a \"You\" című dalommal.',\n", + " 'bytes': 247,\n", + " 'sha1': 'mhhdkrjkyhupop4gwoikb1ocp65ffdv',\n", + " 'parent_id': 97796439,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101589333,\n", + " 'timestamp': '2013-08-09T21:26:12Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26544868,\n", + " 'title': 'Ryan Dolan - Only Love Survives presentation.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,100 --> 00:00:00,836\\nHello!\\n\\n2\\n00:00:00,836 --> 00:00:04,542\\nMy name is Ryan Dolan, and I\\'m singing \"Only Love Survives\".',\n", + " 'bytes': 132,\n", + " 'sha1': 'iyz3o07dowr5nf0nhb9erp8tlbmila5',\n", + " 'parent_id': 97797155,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101589393,\n", + " 'timestamp': '2013-08-09T21:27:25Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26544876,\n", + " 'title': 'Ryan Dolan - Only Love Survives presentation.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,100 --> 00:00:00,836\\nHallå!\\n\\n2\\n00:00:00,836 --> 00:00:04,542\\nJag heter Ryan Dolan, och jag sjunger \"Only Love Survives\".',\n", + " 'bytes': 132,\n", + " 'sha1': '0pyg910rck1bh7d6n71akpsoy6z6xff',\n", + " 'parent_id': 97797180,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101564271,\n", + " 'timestamp': '2013-08-09T11:53:51Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26544894,\n", + " 'title': \"Amandine Bourgeois - L'enfer et moi presentation (Français).ogv.en.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,230 --> 00:00:01,000\\nHello!\\n\\n2\\n00:00:01,000 --> 00:00:03,000\\nMy name is Amandine Bourgeois.\\n\\n3\\n00:00:03,001 --> 00:00:05,492\\nMy song \"L\\'enfer et moi\" is competing in -\\n\\n4\\n00:00:05,492 --> 00:00:09,138\\n- the Eurovision Song Contest in Malmö, 2013.',\n", + " 'bytes': 258,\n", + " 'sha1': '47ty0i7x1g6rwf42kxpbd966yyk0z1r',\n", + " 'parent_id': 97797241,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101587717,\n", + " 'timestamp': '2013-08-09T20:52:31Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26545139,\n", + " 'title': \"Marco Mengoni - L'essenziale presentation (Italiano).ogv.en.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,345 --> 00:00:02,560\\nHi, I\\'m Marco Mengoni.\\n\\n2\\n00:00:02,560 --> 00:00:06,713\\nThe title of my song is\\n\"L\\'essenziale\".',\n", + " 'bytes': 127,\n", + " 'sha1': 'kblw01j4gtw0mojvwzojlo0k2jqropf',\n", + " 'parent_id': 97798612,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101587790,\n", + " 'timestamp': '2013-08-09T20:54:03Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26545170,\n", + " 'title': \"Marco Mengoni - L'essenziale presentation (Italiano).ogv.sv.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,345 --> 00:00:02,560\\nHej, jag heter Marco Mengoni.\\n\\n2\\n00:00:02,560 --> 00:00:06,713\\nMin låt heter\\n\"L\\'essenziale\".',\n", + " 'bytes': 125,\n", + " 'sha1': 'saurbx8enja0n29uiz1kkdfi5hs0mcz',\n", + " 'parent_id': 97798580,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97798952,\n", + " 'timestamp': '2013-06-08T14:35:11Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26545279,\n", + " 'title': 'Stefan Caplan.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:00,391 --> 00:00:03,572 Ja, hej! Jag heter Stefan Caplan och kommer från Mölndal - 2 00:00:03,572 --> 00:00:07,613 - som är en del utav \"Västra Gö...\\'',\n", + " 'text': '1\\n00:00:00,391 --> 00:00:03,572\\nJa, hej! Jag heter Stefan Caplan och kommer från Mölndal -\\n\\n2\\n00:00:03,572 --> 00:00:07,613\\n- som är en del utav \"Västra Götaland, västra\", som valkretsen heter.\\n\\n3\\n00:00:07,613 --> 00:00:13,215\\nJag kom in i Riksdagen 2010 och sitter i Försvarsutskottet.\\n\\n4\\n00:00:13,215 --> 00:00:17,976\\nOch jag har, tack och lov, bara fått ett utskott som jag kan lägga min tid och kraft i.',\n", + " 'bytes': 416,\n", + " 'sha1': 'joqxq9qqx0tjogn28njrwt3bhv7pfy0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101585834,\n", + " 'timestamp': '2013-08-09T20:16:40Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26545392,\n", + " 'title': 'El Sueño de Morfeo - Contigo hasta el final presentation (Español).ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,182 --> 00:00:01,566\\nHej, jag heter David.\\n\\n2\\n00:00:01,566 --> 00:00:02,619\\nHejsan! Jag heter Juan.\\n\\n3\\n00:00:02,619 --> 00:00:05,257\\nHej, jag heter Raquel. Vi är El Sueño de Morfeo.\\n\\n4\\n00:00:05,257 --> 00:00:09,519\\n...och \"Contigo hasta el final\" är vår låt i Eurovision 2013.',\n", + " 'bytes': 292,\n", + " 'sha1': 'kh80ja7li9ve5t9uht219luy04sjaqf',\n", + " 'parent_id': 97799341,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101586335,\n", + " 'timestamp': '2013-08-09T20:25:13Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26545569,\n", + " 'title': 'El Sueño de Morfeo - Contigo hasta el final presentation (Español).ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,182 --> 00:00:01,566\\n¡Hola! Soy David.\\n\\n2\\n00:00:01,566 --> 00:00:02,619\\nMuy buena. Soy Juan.\\n\\n3\\n00:00:02,619 --> 00:00:05,257\\n¡Hola! Soy Raquel. Somos El Sueño de Morfeo.\\n\\n4\\n00:00:05,257 --> 00:00:09,519\\n...Y \"Contigo hasta el final\" es nuestra canción para Eurovision 2013.',\n", + " 'bytes': 289,\n", + " 'sha1': 'g2tj8ncac024tfeuoe2n3wlbcej2ld0',\n", + " 'parent_id': 97800022,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101587662,\n", + " 'timestamp': '2013-08-09T20:51:13Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26545817,\n", + " 'title': \"Marco Mengoni - L'essenziale presentation (Italiano).ogv.it.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,345 --> 00:00:02,560\\nCiao! Sono Marco Mengoni.\\n\\n2\\n00:00:02,560 --> 00:00:06,713\\nQuesto è il titolo della mia canzone:\\n\"L\\'essenziale\".',\n", + " 'bytes': 145,\n", + " 'sha1': '05k4fsd9dh41dqgldijl74cyg8f9o4l',\n", + " 'parent_id': 97800957,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101585058,\n", + " 'timestamp': '2013-08-09T20:04:09Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26552564,\n", + " 'title': 'Eyþór Ingi - Ég á líf presentation (Íslenska).ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,128 --> 00:00:00,669\\nHallo!\\n\\n2\\n00:00:00,669 --> 00:00:02,847\\nIch heiße Eyþór, und...\\n\\n3\\n00:00:02,847 --> 00:00:05,369\\nDer Song heißt \"Ég á líf\".',\n", + " 'bytes': 162,\n", + " 'sha1': 'k0nbdvtgjx57389wcz5ryvknjd94ee6',\n", + " 'parent_id': 101514478,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101589492,\n", + " 'timestamp': '2013-08-09T21:28:24Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26552591,\n", + " 'title': 'Ryan Dolan - Only Love Survives presentation.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,100 --> 00:00:00,836\\nHallo!\\n\\n2\\n00:00:00,836 --> 00:00:04,542\\nIch heiße Ryan Dolan, und ich singe \"Only Love Survives\".',\n", + " 'bytes': 130,\n", + " 'sha1': 'pgggii9wbl58pxzr4lq03ibzekz441t',\n", + " 'parent_id': 97825444,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101564502,\n", + " 'timestamp': '2013-08-09T11:59:34Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26557703,\n", + " 'title': \"Cezar - It's My Life presentation (Română).ogv.ro.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1\\n00:00:00,160 --> 00:00:01,153\\nSalut!\\n\\n2\\n00:00:01,153 --> 00:00:03,361\\nSunt Cezar din România -\\n\\n3\\n00:00:03,361 --> 00:00:07,261\\n- și cânt la Eurovision piesa „It's My Life”.\",\n", + " 'bytes': 182,\n", + " 'sha1': '7vtdvadvjda8vyscxgr4c9uxfk4kn3m',\n", + " 'parent_id': 97967394,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101564595,\n", + " 'timestamp': '2013-08-09T12:02:01Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26557761,\n", + " 'title': \"Cezar - It's My Life presentation (Română).ogv.sv.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,160 --> 00:00:01,153\\nHej!\\n\\n2\\n00:00:01,153 --> 00:00:03,361\\nJag är Cezar, från Rumänien -\\n\\n3\\n00:00:03,361 --> 00:00:07,261\\n- och i Eurovision sjunger jag låten \"It\\'s My Life\".',\n", + " 'bytes': 189,\n", + " 'sha1': '3t8wdbdi3x8h8zfn7yvdp049tvuldxn',\n", + " 'parent_id': 97892182,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101564983,\n", + " 'timestamp': '2013-08-09T12:11:54Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26558071,\n", + " 'title': \"Cezar - It's My Life presentation (Română).ogv.en.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,160 --> 00:00:01,153\\nHello!\\n\\n2\\n00:00:01,153 --> 00:00:03,361\\nI\\'m Cezar, from Romania -\\n\\n3\\n00:00:03,361 --> 00:00:07,261\\n- and i sing the Eurovision song \"It\\'s My Life\".',\n", + " 'bytes': 179,\n", + " 'sha1': '3nwfgkhq81kxsnyrq1tfn0rhkuz3nww',\n", + " 'parent_id': 97892173,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97931407,\n", + " 'timestamp': '2013-06-10T17:41:49Z',\n", + " 'user': {'text': '79.10.180.60'},\n", + " 'page': {'id': 26559767,\n", + " 'title': 'NREGA.webm.hi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:03,596 -> 00:00:05,034\\nभारत सामाजिक नीति के क्षेत्र में अग्रणी है और कई लोग इसे मान्यता देना भूल जाते हैं कि;\\n\\n2\\n00:00:05,034 -> 00:00:10,700\\n क्योंकि हम इस देश के इस देश की आर्थिक क्षेत्र में हुए \\n\\n3\\n00:00:10,700 -> 00:00:14,017\\nअद्भुत उपलब्धियों से मंत्रमुग्ध हैं \\n\\n\\n4\\n00:00:14,017 -> 00:00:16,192\\nजबरदस्त आर्थिक समृद्धि और प्रगति\\n\\n5\\n00:00:16,192 -> 00:00:20,477\\nलेकिन मानव विकास के विचार और एमडीजी कहते हैं की यह पर्याप्त नहीं है .\\n\\n6\\n00:00:20,477 -> 00:00:23,771\\nसमाचार पत्र केवल भारत के विकास की कहानी पर कवर स्टोरी नहीं कर सकते\\n.\\n\\n7\\n00:00:23,771 -> 00:00:27,968\\nआपको लोगों के जीवन में क्या हो रहा है उस पर नजर भी रखनी है.\\n\\n8\\n00:00:27,968 -> 00:00:32,083\\nक्या हम विश्वास के साथ खड़े हो के कह सकते हैं की भारत मे पर्यावरण बेहतर है ?\\n\\n9\\n00:00:32,083 -> 00:00:35,568\\nक्या हम विश्वास के साथ खड़े हो के कह सकते हैं की \\nस्कूली शिक्षा की गुणवत्ता में सुधार हुआ है?\\n\\n10\\n00:00:35,568 -> 00:00:40,205\\nक्या भारत आत्मविश्वास से खड़े हो के कह सकतता हैं की \\nपीने के पानी के लिए उपयोग बहुत बेहतर है?\\n\\n11\\n00:00:40,205 -> 00:00:43,936\\nसमाज में प्रगति मानव विकास के इन संकेतकों के द्वारा परखा जाना चाहिए.\\n\\n12\\n00:00:43,936 -> 00:00:46,772\\nप्रधान होने का क्या मतलब है?\\n\\n13\\n00:00:48,836 -> 00:00:51,819\\nप्रधान होबे का मतलब है मेरे गाँव की गरीबी दूर हो \\n\\n14\\n00:00:51,819 -> 00:00:54,637\\nमें जन जन तक पहुंचू सबकी सेवा करूँ ख्याल करूँ \\n\\n15\\n00:00:54,637 -> 00:00:57,836\\nमेरे गाँव में क्या चीज़ की जरुरत है \\n\\n16\\n00:00:57,836 -> 00:01:00,866\\nउसे मैं पंचायत से दिलवाउं \\n\\n17\\n00:01:00,866 -> 00:01:06,751\\nआर्थिक लाभ वितरित करने के लिए आदेश में\\n2005 में अधिक समान विकास,, भारत\\n\\n18\\n00:01:06,751 -> 00:01:10,702\\nसरकार ने महात्मा गांधी राष्ट्रीय पारित\\nग्रामीण रोजगार गारंटी अधिनियम के फलस्वरूप\\n\\n19\\n00:01:10,702 -> 00:01:15,235\\nएक महत्वाकांक्षी कार्यक्रम शुरू किया\\nहर साल कम से कम 100 दिनों के लिए रोजगार देने की एक कानूनी गारंटी प्रदान करते हैं\\n\\n20\\n00:01:15,235 -> 00:01:21,349\\nसांविधिक न्यूनतम मजदूरी पर,\\nसभी ग्रामीण परिवार के सभी वयस्क सदस्यों के लिए,\\n\\n21\\n00:01:21,349 -> 00:01:24,636\\nजो कि विकास योजनाओं में काम करने को तैयार थे\\nजिनके अपने समुदायों के लिए भी ये फायदेमंद है.\\n\\n22\\n00:02:06,213 -> 00:02:07,944\\nरोजगार गारंटी अधिनियम एक अधिनियम है के लोगों को गारंटी देता है \\n\\n23\\n00:02:07,944 -> 00:02:08,809\\nकी 15 दिनों के भीतर स्थानीय सार्वजनिक कार्यों में उन्हें नियोजित किया जाना है.\\n\\n24\\n00:02:08,809 -> 00:02:09,242\\nवे काम के लिए आते हैं और अगर रोजगार नहीं मिलता है, तो रोजगार भत्ता दिया जाता है.\\n\\n25\\n00:02:09,242 -> 00:02:09,458\\nयह एक बहुत ही प्रगतिशील कानून है,वास्तव में बहुत ही अनोखी ,. एक राजनीतिक चमत्कार सा हो गया था जो.\\n\\n26\\n00:02:09,458 -> 00:02:09,566\\nहमारी टीम वाराणसी, उत्तर प्रदेश के उत्तरी भारतीय राज्य में स्थित शहर के पास एक गांव का दौरा किया.\\n\\n27\\n00:02:09,566 -> 00:02:09,620\\nइधर, एक स्थानीय गैर सरकारी संगठन, महिला स्वरोजगार समिति, या एमएसएस, गांव महिलाओं के बीच जागरूकता बढ़ाने को गई है\\n\\n28\\n00:02:09,620 -> 00:02:09,647\\nआयोजन स्वयं सहायता समूहों, नेतृत्व कौशल प्रशिक्षण आयोजित करने और महिलाओं के उपयोग नरेगा, की मदद\\n\\n29\\n00:02:09,647 -> 00:02:09,661\\nग्रामीण रोजगार गारंटी योजना भारत सरकार द्वारा शुरू की.\\n\\n30\\n00:02:09,661 -> 00:02:09,675\\nभारतीय संविधान में लिखा है, नरेगा में महिलाओं की भागीदारी होनी चाहिए 33% होनी चाहिए.\\n\\n31\\n00:02:09,675 -> 00:02:13,635\\nऔर आप नीमरखौना की ग्राम पंचायत में इस का एक वास्तविक जीवन उदाहरण देख रहे हैं.\\n\\n32\\n00:02:18,937 -> 00:02:30,833\\nआप देख सकते हैं, यहां कामकाजी महिलाओं की संख्या अधिक हैं.\\n\\n33\\n00:02:30,833 -> 00:02:32,601\\nहम इस गांव में कुछ महिलाओं के साक्षात्कार किया और उन से पूछा की कैसे उनके जीवन बदल गया था\\n\\n34\\n00:02:32,601 -> 00:02:33,485\\nनरेगा के लिए काम करने के बाद और महिला स्वरोजगार समिति जैसे गैर सरकारी संगठनों के साथ.\\n\\n35\\n00:02:33,485 -> 00:02:34,369\\nपैसा निकल के घर लेन से बहुत काम कर सकते हैं \\n\\n36\\n00:02:34,369 -> 00:02:37,886\\nउदाहरण के लिए हमारे पास पर्याप्त पैसा नहीं है इसलिए हमारे बच्चों को प्राथमिक स्कूल के बाद बाहर पढाना छोड़ दिया है.\\n\\n37\\n00:02:37,886 -> 00:02:42,645\\nवे महंगे हैं क्योंकि हम अच्छे स्कूलों के लिए उन्हें नहीं भेज सकते हैं .. तो, मैंने अपने पति से कहा\\n\\n38\\n00:02:42,645 -> 00:02:45,024\\nमैं नरेगा में काम करती हुं स्कूल भुगतान के लिए और बच्चे का खर्च तुम चलाओ.\\n\\n39\\n00:02:47,404 -> 00:02:49,501\\nप्रगति का एक बहुत बनाया गया है. जहां पहले भोजन और दवाओं के लिए कोई पैसा नहीं था , अब वहाँ है.\\n\\n40\\n00:02:49,501 -> 00:02:54,168\\nजहां पहले हम, साक्षर और जनता में विश्वास के साथ बात करने में सक्षम नहीं थे\\n\\n41\\n00:02:54,168 -> 00:02:55,871\\nअब हम भी गांव के प्रधान बन के खड़े हो सकते हैं. और यहां तक \\u200b\\u200b कि उन्हे तंग करने की हिम्मत कर सक्ते हैं\\n\\n42\\n00:02:55,871 -> 00:02:56,722\\nयह एक कानून है. यह सिर्फ एक योजना नहीं है बल्कि एक क़ानूनी अधिकार है. और मुझे लगता है कि यह वास्तव में अद्भुत हो सकता है \\n\\n43\\n00:02:56,722 -> 00:02:57,148\\nसिर्फ़ सुरक्षा उपलब्ध कराने के मामले में ही नहीं,.\\n\\n44\\n00:02:57,148 -> 00:02:57,361\\nपहला उद्देश्य बिल्कुल लोगों के लिए कुछ सामाजिक सुरक्षा के प्रकार प्रदान करने का है\\n\\n45\\n00:02:57,361 -> 00:02:57,467\\nलेकिन यह भी बहुत सारे दिलचस्प, सामाजिक, आर्थिक और राजनीतिक परिवर्तन ला सकता है.\\n\\n46 \\n00:02:57,467 -> 00:02:57,520\\nयह माइग्रेशन को कम कर देता है, क्योंकि यह स्थानीय संस्थाओं के माध्यम से कार्यान्वित किया जाता है इस के माध्यम से एक नया जीवन देता है. \\n\\n47\\n00:02:57,520 -> 00:02:57,547\\nयह कानून, महिलाओं को घरों से बाहर आने के लिए और सार्वजनिक क्षेत्र का हिस्सा बनने के लिए मदद करता है\\n\\n48\\n00:03:38,430 -> 00:03:41,903\\nअब तक सबसे बड़ी चुनौती है अपने घरों के बाहर महिलाओं को लाना हीं सबसे बड़ी चुनौती है \\n\\n49\\n00:03:41,903 -> 00:03:41,953\\n\\nक्योंकि वो हमेशा घूँघट में रही हैं जो हमारी भारतीय संस्कृति है \\n50\\n00:03:54,176 -> 00:03:56,569\\nमैं अपने घर के बाहर कभी नहीं गया था, इसलिए मैं अपने चार दीवारों के बाहर क्या हुआ पता नहीं था.\\n\\n51\\n00:03:56,569 -> 00:04:01,227\\nमैंने सोचा कि .एनजीओ लोग अपने पैसे के साथ भाग गया होगा \\n\\n52\\n00:04:01,227 -> 00:04:03,104\\nमैने सोचा की बैठ के के उनकी बात सुनने से अपना समय बर्बाद करने के बजाय अपने घर के काम करन सही है।\\n\\n53\\n00:04:03,104 -> 00:04:09,367\\nतो, मैंने उन्हें प्रोत्साहित नहीं किया.\\n\\n54\\n00:04:15,500 -> 00:04:26,360\\nउस समय मेरे कई बार मन करने पे भी वे लोग आते रह गये. वे लोग अपने फायदे के लिए ही आते थे. \\n\\n55\\n00:04:26,360 -> 00:04:40,296\\nपर धीरे धीरे इनकी बातें सुन के मुझे एहसास हुआ की नहीं जो ये लोग कह रहे है वो सही है. \\n\\n56\\n00:04:40,296 -> 00:04:49,767\\nतो, मैं उनके साथ काम करने के लिए अपने दैनिक गतिविधियों से समय निकाल लिया.\\n\\n57\\n00:04:49,767 -> 00:04:59,089\\nहम छोटे गतिविधियों कर रही है और कुछ पैसे कमाने शुरू कर दिया.\\n\\n58\\n00:04:59,089 -> 00:05:06,269\\nहमने एक महिलाओं की समूह बनाया.\\n\\n59\\n00:05:06,269 -> 00:05:13,450\\nयह हमारी सामूहिक आवाज़ और शक्ति में वृद्धि हुई.\\n\\n60\\n00:05:13,450 -> 00:05:25,433\\nउस मुझे ये लगा की इस चार दिवारी के बाहर इस दुनिया में थोडा सा अपनी मर्जी से जीने का हक भी मिला और \\n\\n61\\n00:05:25,433 -> 00:05:27,421\\n मैं अन्य महिलाओं को भी वो अधिकार दिलाने का हक मिला \\n\\n62\\n00:05:27,421 -> 00:05:28,415\\nऔर उनकी इच्छा के अनुसार उनके जीवन जीने की महिलाओं को समझ आ गयी \\n\\n63\\n00:05:28,415 -> 00:05:29,410\\nमहिलाओं के नेतृत्व कौशल और विश्वास हासिल हो जाता है, तो वे समझते हैं\\n\\n64\\n00:05:29,410 -> 00:05:31,369\\nनरेगा वएक कानून है ,और हमारा उसमे सहयोग करना और उसमे जिनकी जो जरूरते हैं वो हक पाना ये ज़िम्मेदरी पंचायत के नागरिक होने के नाते महिलाओं की भी बनती है \\n\\n65\\n00:05:31,369 -> 00:06:49,423\\nऔर हमें और दूसरों को अपने अधिकारों का उपयोग और उनकी जरूरतों को पूरा करने के लिए समर्थन करते हैं.\\n\\n66\\n00:06:49,423 -> 00:07:01,995\\nलेकिन रोजगार गारंटी अधिनियम के बारे में अलग क्या है\\n\\n67\\n00:07:01,995 -> 00:07:08,281\\nवो बेहतर शासन और जवाबदेही सुनिश्चित करने के लिए जो अधीनियम के खंड हैं वो है। \\n\\n68\\n00:07:08,281 -> 00:07:11,424\\nसामाजिक अंकेक्षण, जो यह लोगों द्वारा कार्यक्रम के कामकाज की अंकेक्षण अनिवार्य है\\n\\n69\\n00:07:11,424 -> 00:07:12,996\\nऔर वास्तव में सरकार भी लगातार सामाजिक अंकेक्षण प्रोत्साहित कर रही है.\\n\\n70\\n00:07:12,996 -> 00:07:13,782\\nलोगों के समूह एक गांव में जा सकते हैं, एक सार्वजनिक सभा के लिए कहते हैं, खातों के लिए पूछते हैं \\n\\n71\\n00:07:13,782 -> 00:07:14,175\\nलोगों से पूछते हैं की उनके मजदूरी का भुगतान किया गया है की नहीं \\n72\\n00:07:14,175 -> 00:07:14,371\\nआप काम के लिए 100 दिनों पाने वाले थे. क्या यह हो रह है?\\n\\n73\\n00:07:14,371 -> 00:07:14,469\\nक्या आपको एक नौकरी की पेशकश की थी?\\n\\n74\\n00:07:14,469 -> 00:07:14,518\\nतो, यह एक बड़ा अंतर बना रही है.\\n\\n75\\n00:07:14,518 -> 00:07:14,543\\nनरेगा रोजगार गारंटी योजना आलोचनाओं और विवादों से घिरी हुई है \\n\\n76\\n00:07:14,543 -> 00:07:14,555\\nकुप्रबंधन, प्रभावहीनता और गरीबी के मुख्या कारणों पर कम प्रभाव के चलते \\n\\n77\\n00:07:14,555 -> 00:07:14,561\\nकार्यक्रम अच्छी तरह से कार्यान्वित किया जाता है, तो वे अच्छी तरह से झारखंड के ग्रामीण अर्थव्यवस्था को बदल सकता है.\\n\\n78\\n00:07:14,561 -> 00:07:14,564\\nदूसरी ओर, झारखंड भारत की सबसे भ्रष्ट और आपराधिक राज्यों में से एक है.\\n\\n79\\n00:07:14,564 -> 00:07:14,566\\nऔर रोजगार गारंटी की जमीनी हकीकत काफी निराशाजनक है.\\n\\n80\\n00:07:20,238 -> 00:07:22,387\\nयह लोग कहते आसानी से मिल जाता है की \"बेहतर कार्यक्रम \\'तैयार किया जा सकता है ,\\n\\n81\\n00:07:22,387 -> 00:07:23,461\\nयह वास्तव में डिजाइन और प्रभावी ढंग से इन कार्यक्रमों को लागू कर सकते हैं, जो लोगों को खोजने के लिए उतना आसान नहीं है.\\n\\n82\\n00:07:23,461 -> 00:07:23,998\\nमेरा मानना \\u200b\\u200bहै कि अगर काम संगठित रूप से किया जाये और मजबूत संगठनों का गठन किया जाये , \\n\\n83\\n00:07:23,998 -> 00:07:24,267\\nतो यह भविष्य के लिए बहुत बड़ा अवसर है.\\n\\n84\\n00:07:24,267 -> 00:07:24,401\\nतो वे इस कार्यक्रम को बचाने और यह काम करने में सक्षम हो जाएगा.\\n\\n85\\n00:07:24,401 -> 00:07:24,468\\nउसकी सफलता यही है की पहले इसे संघटित किया गया और उनकी जरुरतें देखी गयी और उनका ज्ञान बढाया गया उनकी क्षमता बढाई गयी \\n\\n86\\n00:07:24,468 -> 00:07:24,536\\nतब उनके अन्दर एक नेतृत्व की क्षमता आई अब उनको ये पता है की इस कानून में ये लिखा है और हमें ये ऐसे मिलेगा \\n\\n87\\n00:07:24,536 -> 00:07:24,554\\nऔर मेरा ये पक्का विस्वास है की भारत में एक बहुत बड़ा लोकतान्त्रिक स्थल है \\n\\n88\\n00:07:24,554 -> 00:07:24,563\\nजो की अभी जितना उपयोग हो रहा है उससे ज्यादा उपयोग किया जा सकता है इस तरह के बदलाव लेन के लिए \\n\\n89\\n00:07:24,563 -> 00:07:24,573\\nतो, मूल रूप से मैं खुद को इस सब का एक छोटा सा हिस्सा होने के रूप में देखता हूँ \\n\\n90\\n00:07:24,573 -> 00:07:29,204\\nइसी में अकादमिक अनुसन्धान, बदलाव लाने वाले नीति निर्धारक और जरुरी सामाजिक आन्दोलन साथ में आएंगे \\n\\n91\\n00:07:29,204 -> 00:07:33,835\\nमेरा दिल यही कह रहा है',\n", + " 'bytes': 20618,\n", + " 'sha1': 'mm58abzhoy19owwkhr6c8q8gk3s55py',\n", + " 'parent_id': 97853240,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97853339,\n", + " 'timestamp': '2013-06-09T12:01:31Z',\n", + " 'user': {'id': 2280090, 'text': 'Rahulkepapa'},\n", + " 'page': {'id': 26559780,\n", + " 'title': 'NREGA.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,596 --> 00:00:05,034 India is in the forefront of social policy and many people forget that; 2 00:00:05,034 --> 00:00:10,700 to recognize that; bec...'\",\n", + " 'text': '1\\n00:00:03,596 --> 00:00:05,034\\nIndia is in the forefront of social policy and many people forget that;\\n\\n2\\n00:00:05,034 --> 00:00:10,700\\nto recognize that; because we\\'re quite\\nmesmerized by the wonderful achievements on\\n\\n3\\n00:00:10,700 --> 00:00:14,017\\nthe economic front of this country.\\n\\n4\\n00:00:14,017 --> 00:00:16,192\\nTremendous economic prosperity and progress\\n\\n5\\n00:00:16,192 --> 00:00:20,477\\nbut the human development idea and the MDGs say that it\\'s not enough.\\n\\n6\\n00:00:20,477 --> 00:00:23,771\\nThe newspapers cannot jost cover the\\ngrowth story of India.\\n\\n7\\n00:00:23,771 --> 00:00:27,968\\nyou also have to look at what is happening to the lives of people.\\n\\n8\\n00:00:27,968 --> 00:00:32,083\\nCan we confidently stand up and say that the environment is better in India?\\n\\n9\\n00:00:32,083 --> 00:00:35,568\\nCan we confidently stand up and say\\nthe quality of schooling has improved?\\n\\n10\\n00:00:35,568 --> 00:00:40,205\\nCan India confidently stand up and say\\nthat the access to drinking water is much better?\\n\\n11\\n00:00:40,205 --> 00:00:43,936\\nProgress in society has to be judged by these indicators of human development.\\n\\n12\\n00:00:43,936 --> 00:00:46,772\\nWhat does being an elected village head mean for you?\\n\\n13\\n00:00:48,836 --> 00:00:51,819\\nBeing a village head means to remove poverty among women\\n\\n14\\n00:00:51,819 --> 00:00:54,637\\nthat I am able to reach all people, to serve them\\n\\n15\\n00:00:54,637 --> 00:00:57,836\\nand to care for them, to see what my village needs\\n\\n16\\n00:00:57,836 --> 00:01:00,866\\nand to get the village council to address these needs\\n\\n17\\n00:01:00,866 --> 00:01:06,751\\nIn order to distribute the benefits of economic\\ngrowth more equitably, in 2005, the Indian\\n\\n18\\n00:01:06,751 --> 00:01:10,702\\nGovernment passed the Mahatma Gandhi National\\nRural Employment Guarantee Act, and consequently\\n\\n19\\n00:01:10,702 --> 00:01:15,235\\nlaunched an ambitious programme that would\\nprovide a legal guarantee for 100 days of\\n\\n20\\n00:01:15,235 --> 00:01:21,349\\nemployment every year, at the statutory minimum\\nwage, to all adult members of all rural households\\n\\n21\\n00:01:21,349 --> 00:01:24,636\\nthat were willing to work in development schemes\\nbeneficial to their communities.\\n\\n22\\n00:02:06,213 --> 00:02:07,944\\nThe Employment Guarantee Act is an Act that gives people\\n\\n23\\n00:02:07,944 --> 00:02:08,809\\nthe right to be employed in local public works within 15 days.\\n\\n24\\n00:02:08,809 --> 00:02:09,242\\nIf they apply for work and if they don\\'t get employment, then they have to be given an employment allowance.\\n\\n25\\n00:02:09,242 --> 00:02:09,458\\nThis is a very progressive legislation; very unique actually.; which was a bit of a political miracle.\\n\\n26\\n00:02:09,458 --> 00:02:09,566\\nOur team visited a village near Varanasi, a town located in the Northern Indian state of Uttar Pradesh.\\n\\n27\\n00:02:09,566 --> 00:02:09,620\\nHere, a local NGO, the Mahila Swarojgar Samiti, or MSS, has been raising awareness amongst village women,\\n\\n28\\n00:02:09,620 --> 00:02:09,647\\norganising self help groups, conducting leadership skills training and helping women access NREGA,\\n\\n29\\n00:02:09,647 --> 00:02:09,661\\nthe rural employment guarantee scheme launched by the Indian government.\\n\\n30\\n00:02:09,661 --> 00:02:09,675\\nAs is written in the Indian constitution, women\\'s participation in NREGA should be should be 33%.\\n\\n31\\n00:02:09,675 --> 00:02:13,635\\nAnd you are seeing a real life example of this in the village panchayat of Neemrakhauna.\\n\\n32\\n00:02:18,937 --> 00:02:30,833\\nAs you can see, the number of women working here are more.\\n\\n33\\n00:02:30,833 --> 00:02:32,601\\nWe interviewed some women in this village and asked them how their lives had changed\\n\\n34\\n00:02:32,601 --> 00:02:33,485\\nafter working for NREGA and with NGOs like the Mahila Swarojgar Samiti.\\n\\n35\\n00:02:33,485 --> 00:02:34,369\\nWhen you bring home money, you can get a lot of work done.\\n\\n36\\n00:02:34,369 --> 00:02:37,886\\nFor instance our children have to drop out after primary school because we don\\'t have enough money.\\n\\n37\\n00:02:37,886 --> 00:02:42,645\\nWe cannot send them to good schools because they are expensive.. So, I told my husband\\n\\n38\\n00:02:42,645 --> 00:02:45,024\\nthat he should look after household expenses and that I would work in NREGA and pay for the school.\\n\\n39\\n00:02:47,404 --> 00:02:49,501\\nA lot of progress has been made. Where earlier there was no money for food and medicines, there is now.\\n\\n40\\n00:02:49,501 --> 00:02:54,168\\nWhere earlier we were not literate and not able to speak with confidence in public,\\n\\n41\\n00:02:54,168 --> 00:02:55,871\\nnow we can even stand up to the village head. and even dare to tease him.\\n\\n42\\n00:02:55,871 --> 00:02:56,722\\nIt is a law. It is not just a scheme. And I think it could really have wonderful\\n\\n43\\n00:02:56,722 --> 00:02:57,148\\neffects, not just in terms of providing security.\\n\\n44\\n00:02:57,148 --> 00:02:57,361\\nThe first objective ofcourse is to provide some kind of social security to people\\n\\n45\\n00:02:57,361 --> 00:02:57,467\\nbut it can also bring about a lot of very interesting social, economic and political change.\\n\\n46\\n00:02:57,467 --> 00:02:57,520\\nbecause it reduces migration, it is implemented through local institutions that have a new lease of life through this\\n\\n47\\n00:02:57,520 --> 00:02:57,547\\nlaw, because it helps women to come out of the households and to become part of the public sphere\\n\\n48\\n00:03:38,430 --> 00:03:41,903\\nThe biggest challenge is to bring women outside their homes because until now\\n\\n49\\n00:03:41,903 --> 00:03:41,953\\nthey have stayed behind veils as required in our culture\\n\\n50\\n00:03:54,176 --> 00:03:56,569\\nI had never been outside my home, so I didn\\'t know what happened outside its four walls.\\n\\n51\\n00:03:56,569 --> 00:04:01,227\\nI thought that the NGO people would have run away with my money.\\n\\n52\\n00:04:01,227 --> 00:04:03,104\\nI felt that if I sat and listened to them, I would have wasted my time instead of doing my household work.\\n\\n53\\n00:04:03,104 --> 00:04:09,367\\nSo, I did not encourage them.\\n\\n54\\n00:04:15,500 --> 00:04:26,360\\nI used to tell them not to waste their time with me but their team kept coming back.\\n\\n55\\n00:04:26,360 --> 00:04:40,296\\nI slowly realised that what they were telling me was right. It was in my benefit.\\n\\n56\\n00:04:40,296 --> 00:04:49,767\\nSo, I took out time from my daily activities to work with them.\\n\\n57\\n00:04:49,767 --> 00:04:59,089\\nWe started doing small activities and earning some money.\\n\\n58\\n00:04:59,089 --> 00:05:06,269\\nThe we made a women\\'s collective.\\n\\n59\\n00:05:06,269 --> 00:05:13,450\\nThis increased our collective voice and power.\\n\\n60\\n00:05:13,450 --> 00:05:25,433\\nI felt that by going outside the four walls of my home, I was able to exercise my right to live according to my will\\n\\n61\\n00:05:25,433 --> 00:05:27,421\\nand I was also able to help other women exercise their rights\\n\\n62\\n00:05:27,421 --> 00:05:28,415\\nand to share knowledge with women on how to live their lives according to their will.\\n\\n63\\n00:05:28,415 --> 00:05:29,410\\nWhen women gain leadership skills and confidence, they understand\\n\\n64\\n00:05:29,410 --> 00:05:31,369\\nthat NREGA is a law wherein they, and their communities, must fulfill their responsibilities as citizens of their village\\n\\n65\\n00:05:31,369 --> 00:06:49,423\\nand support us and others to access their rights and fulfill their needs.\\n\\n66\\n00:06:49,423 --> 00:07:01,995\\nBut what is distinct about the Employment Guarantee Act\\n\\n67\\n00:07:01,995 --> 00:07:08,281\\nare the clauses to ensure better governance and accountability.\\n\\n68\\n00:07:08,281 --> 00:07:11,424\\nSocial audit, which means that it is an audit by people, of the functioning of the programme is mandatory\\n\\n69\\n00:07:11,424 --> 00:07:12,996\\nSo, everyone, and in fact the government is also, proactively encouraging social audits.\\n\\n70\\n00:07:12,996 --> 00:07:13,782\\nGroups of people can go to a village, ask for the accounts, call for a public meeting\\n\\n71\\n00:07:13,782 --> 00:07:14,175\\nand ask people if they were paid the wages they were assured\\n\\n72\\n00:07:14,175 --> 00:07:14,371\\nYou were supposed to get 100 days of work. Are you getting it?\\n\\n73\\n00:07:14,371 --> 00:07:14,469\\nWere you offered a job when you went to ask for it?\\n\\n74\\n00:07:14,469 --> 00:07:14,518\\nSo, its making a huge difference.\\n\\n75\\n00:07:14,518 --> 00:07:14,543\\nThe NREGA employment guarantee scheme has been surrounded by criticisms and controversies\\n\\n76\\n00:07:14,543 --> 00:07:14,555\\naround mismanagement, poor effectiveness and its limited impact on the drivers of poverty.\\n\\n77\\n00:07:14,555 --> 00:07:14,561\\nAnd if the programme is well implemented, they could well transform the rural economy of Jharkhand.\\n\\n78\\n00:07:14,561 --> 00:07:14,564\\nOn the other hand, Jharkhand is one of the most corrupt and criminalised states of India.\\n\\n79\\n00:07:14,564 --> 00:07:14,566\\nAnd the ground reality of the Employment Guarantee is quite dismal.\\n\\n80\\n00:07:20,238 --> 00:07:22,387\\nWhile it is easy to find people who say that \"better programmes\" could be designed,\\n\\n81\\n00:07:22,387 --> 00:07:23,461\\nit is not as easy to find people who can actually design and enforce these programmes effectively.\\n\\n82\\n00:07:23,461 --> 00:07:23,998\\nMy feeling is that if the work was organised and formed strong organisations,\\n\\n83\\n00:07:23,998 --> 00:07:24,267\\nAnd this is the really big opportunity for the future.\\n\\n84\\n00:07:24,267 --> 00:07:24,401\\nthen they would be able to save the programme and make it work.\\n\\n85\\n00:07:24,401 --> 00:07:24,468\\nIts success is in the fact that it was organised well, people\\'s needs were assesses and their knowledge and capacity was built.\\n\\n86\\n00:07:24,468 --> 00:07:24,536\\nOnly then, did they acquire leadership and learn what was written in the legislation and how they would get it.\\n\\n87\\n00:07:24,536 --> 00:07:24,554\\nI really believe that in India there is a huge democratic space that can be used much more than it is used\\n\\n88\\n00:07:24,554 --> 00:07:24,563\\nat the moment to bring about that kind of change.\\n\\n89\\n00:07:24,563 --> 00:07:24,573\\nSo, basically I see myself as being a small part of all that.\\n\\n90\\n00:07:24,573 --> 00:07:29,204\\nAnd that\\'s where things like research, influencing policy makers and being part of social movements, all come together.\\n\\n91\\n00:07:29,204 --> 00:07:33,835\\nand that\\'s where my heart is.',\n", + " 'bytes': 10169,\n", + " 'sha1': 'f0av1fl6b74zf9duzyx2q4rgk8qlavy',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97886182,\n", + " 'timestamp': '2013-06-09T20:50:22Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26568328,\n", + " 'title': 'Krista Siegfrids - Marry Me presentation (suomeksi).ogv.fi.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,373 --> 00:00:04,402\\nMä oon Krista Siegfrids, ja tän biisin kappaleen nimi on \"Marry Me\".',\n", + " 'bytes': 102,\n", + " 'sha1': 'j14eqie3rv6hhuzdr10vcbtqdt4jr7m',\n", + " 'parent_id': 97886086,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97886167,\n", + " 'timestamp': '2013-06-09T20:50:04Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26568341,\n", + " 'title': 'Krista Siegfrids - Marry Me presentation (suomeksi).ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:00,373 --> 00:00:04,402 Jag är Krista Siegfrids, och den här låten heter \"Marry Me\".\\'',\n", + " 'text': '1\\n00:00:00,373 --> 00:00:04,402\\nJag är Krista Siegfrids, och den här låten heter \"Marry Me\".',\n", + " 'bytes': 95,\n", + " 'sha1': 'od3hhe5lob0pgj26zlp24ohypfo5vel',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97886207,\n", + " 'timestamp': '2013-06-09T20:50:56Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26568352,\n", + " 'title': 'Krista Siegfrids - Marry Me presentation (suomeksi).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:00,373 --> 00:00:04,402 I am Krista Siegfrids, and the name of this song is \"Marry Me\".\\'',\n", + " 'text': '1\\n00:00:00,373 --> 00:00:04,402\\nI am Krista Siegfrids, and the name of this song is \"Marry Me\".',\n", + " 'bytes': 95,\n", + " 'sha1': 'qk8i5r2ksv9itibjwgqfnqqk8uy7otc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97887352,\n", + " 'timestamp': '2013-06-09T21:08:49Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26568639,\n", + " 'title': 'Krista Siegfrids - Marry Me presentation (suomeksi).ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,373 --> 00:00:04,402\\nIch bin Krista Siegfrids, und dieser Song heißt \"Marry Me\".',\n", + " 'bytes': 92,\n", + " 'sha1': '0caddwqk2bu0i6u0tqhy19op807r91x',\n", + " 'parent_id': 97887178,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101564197,\n", + " 'timestamp': '2013-08-09T11:52:27Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26569235,\n", + " 'title': \"Amandine Bourgeois - L'enfer et moi presentation (Français).ogv.de.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,230 --> 00:00:01,000\\nHallo!\\n\\n2\\n00:00:01,000 --> 00:00:03,000\\nIch heiße Amandine Bourgeois.\\n\\n3\\n00:00:03,001 --> 00:00:05,492\\nMeinem Song \"L\\'enfer et moi\" konkurriert im -\\n\\n4\\n00:00:05,492 --> 00:00:09,138\\n- dem Eurovision Song Contest im Malmö 2013.',\n", + " 'bytes': 260,\n", + " 'sha1': '2yy44w5x0ybji4zh2n3owdli0svgaor',\n", + " 'parent_id': 97889595,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101590166,\n", + " 'timestamp': '2013-08-09T21:39:43Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26569518,\n", + " 'title': 'Loreen presenting herself in Swedish.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:03,295\\nIch heiße Loreen, und ich gewann mit...\\n\\n2\\n00:00:03,295 --> 00:00:05,725\\n...dem besten Lied der Welt:\\n<i>Euphoria</i>.',\n", + " 'bytes': 151,\n", + " 'sha1': '0olt495zsi1nup2hw217zl64sp9676v',\n", + " 'parent_id': 97972068,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101564664,\n", + " 'timestamp': '2013-08-09T12:03:41Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26569962,\n", + " 'title': \"Cezar - It's My Life presentation (Română).ogv.de.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,160 --> 00:00:01,153\\nHallo!\\n\\n2\\n00:00:01,153 --> 00:00:03,361\\nIch bin Cezar, aus Rumänien -\\n\\n3\\n00:00:03,361 --> 00:00:07,261\\n- und ich singe das Eurovision Lied \"It\\'s My Life\".',\n", + " 'bytes': 187,\n", + " 'sha1': '548h7kqmrta924mhbocbzphqq232yyk',\n", + " 'parent_id': 97892165,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97902252,\n", + " 'timestamp': '2013-06-10T05:58:07Z',\n", + " 'user': {'id': 1690, 'text': 'WhisperToMe'},\n", + " 'page': {'id': 26572513,\n", + " 'title': 'BellSouth denies phone records were handed over to the NSA.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,200 --> 00:00:05,400\\nBellSouth denies phone records were handed over to the NSA\\n\\n2\\n00:00:05,600 --> 00:00:07,800\\nFrom Wikinews - the free news source\\n\\n3\\n00:00:07,600 --> 00:00:10,400\\nat wikinews.org\\n\\n4\\n00:00:10,600 --> 00:00:13,400\\nBellSouth, said in a statement yesterday that the telephone company\\n\\n5\\n00:00:13,600 --> 00:00:16,400\\ndid not hand over customer call records\\n\\n6\\n00:00:16,600 --> 00:00:18,400\\nto the National Security Agency or NSA.\\n\\n7\\n00:00:18,600 --> 00:00:22,400\\nOn May 11th, 2006, USA Today reported that\\n\\n8\\n00:00:22,600 --> 00:00:25,400\\nthe NSA collected millions of call logs\\n\\n9\\n00:00:25,600 --> 00:00:28,400\\nfrom telecommunications companies in 2001\\n\\n10\\n00:00:28,600 --> 00:00:31,400\\nunder a contract that it allegedly had with the NSA.\\n\\n11\\n00:00:31,600 --> 00:00:35,400\\nBellSouth said that they conducted a \"internal review\"\\n\\n12\\n00:00:35,600 --> 00:00:38,400\\nand that the review \"confirmed no such contract exists\\n\\n13\\n00:00:38,600 --> 00:00:42,400\\nand we have not provided bulk customer calling records\\n\\n14\\n00:00:42,600 --> 00:00:45,400\\nto the NSA,\" said Jeff Battcher, spokesman for BellSouth.\\n\\n15\\n00:00:45,600 --> 00:00:48,400\\n\"We do not believe that any final review\\n\\n16\\n00:00:48,600 --> 00:00:51,400\\nwill turn up anything different from what we have currently found.\\n\\n17\\n00:00:51,600 --> 00:00:54,400\\nThere is no link between the NSA and BellSouth that\\n\\n18\\n00:00:54,600 --> 00:00:57,400\\nwe can find in what we feel is a very exhaustive review.\\n\\n19\\n00:00:57,600 --> 00:00:59,400\\nWe wouldn\\'t have made this bold statement if\\n\\n20\\n00:00:59,600 --> 00:01:02,400\\nwe weren\\'t confident about this,\" added Battcher.\\n\\n21\\n00:01:02,600 --> 00:01:05,400\\nAT&T and Verizon Communications were also\\n\\n22\\n00:01:05,600 --> 00:01:07,400\\nsaid to have handed over customer call logs,\\n\\n23\\n00:01:07,600 --> 00:01:09,400\\nbut Verizon said on Friday that they don\\'t\\n\\n24\\n00:01:09,600 --> 00:01:11,400\\n\"and will not, provide any government agency \\n\\n25\\n00:01:11,600 --> 00:01:14,400\\nunfettered access to our customer records\\n\\n26\\n00:01:14,600 --> 00:01:16,400\\nor provide information to the government under\\n\\n27\\n00:01:16,600 --> 00:01:20,400\\ncircumstances that would allow a fishing expedition.\"\\n\\n28\\n00:01:20,600 --> 00:01:23,400\\nOn Monday, Massachusetts Representative Edward Markey\\n\\n29\\n00:01:23,600 --> 00:01:27,400\\nof the House Energy and Commerce subcommittee on telecommunications\\n\\n30\\n00:01:27,600 --> 00:01:31,400\\nasked for help from the Federal Communications Commission or FCC,\\n\\n31\\n00:01:31,600 --> 00:01:35,400\\nto investigate whether Verizon, AT&T, and BellSouth\\n\\n32\\n00:01:35,600 --> 00:01:40,400\\nviolated privacy rights under communication laws and regulations.\\n\\n33\\n00:01:40,600 --> 00:01:42,400\\nThis sound file and all text in the article\\n\\n34\\n00:01:42,600 --> 00:01:46,400\\nare released into the public domain.',\n", + " 'bytes': 2824,\n", + " 'sha1': 'kfyh8cxmxqscnc8qbj23eauxu3cn8hx',\n", + " 'parent_id': 97902240,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 643621176,\n", + " 'timestamp': '2022-03-24T09:25:51Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 26573890,\n", + " 'title': 'Hatikvah instrumental.ogg.he.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments',\n", + " 'text': '1\\n00:00:00,093 --> 00:00:06,538\\nכל עוד בלבב פנימה\\n\\n2\\n00:00:06,777 --> 00:00:13,305\\nנפש יהודי הומייה\\n\\n3\\n00:00:13,477 --> 00:00:20,513\\nולפאתי מזרח קדימה\\n\\n4\\n00:00:21,034 --> 00:00:27,761\\nעין לציון צופיה\\n\\n5\\n00:00:28,257 --> 00:00:34,784\\nעוֹד לֹא אָבְדָה תִּקְוָתֵנוּ\\n\\n6\\n00:00:35,231 --> 00:00:42,025\\nהַתִּקְוָה בַּת שְׁנוֹת אַלְפַּיִם\\n\\n7\\n00:00:42,479 --> 00:00:48,808\\nלִהְיוֹת עַם חָפְשִׁי בְּאַרְצֵנוּ\\n\\n8\\n00:00:49,542 --> 00:00:56,255\\nאֶרֶץ צִיּוֹן וִירוּשָׁלַיִם\\n\\n9\\n00:00:57,022 --> 00:01:03,239\\nלִהְיוֹת עַם חָפְשִׁי בְּאַרְצֵנוּ\\n\\n10\\n00:01:04,258 --> 00:01:12,993\\nאֶרֶץ צִיּוֹן וִירוּשָׁלַיִם',\n", + " 'bytes': 818,\n", + " 'sha1': '86zkc8uzssc8wqvwjtoke32u1jjizvz',\n", + " 'parent_id': 531669272,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101586067,\n", + " 'timestamp': '2013-08-09T20:20:35Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26574167,\n", + " 'title': 'El Sueño de Morfeo - Contigo hasta el final presentation (Español).ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,182 --> 00:00:01,566\\nHallo, Ich bin David.\\n\\n2\\n00:00:01,566 --> 00:00:02,619\\nGuten tag, ich bin Juan.\\n\\n3\\n00:00:02,619 --> 00:00:05,257\\nHallo, Ich bin Raquel. Wir sind \"El Sueño de Morfeo\" -\\n\\n4\\n00:00:05,257 --> 00:00:09,519\\n- und \"Contigo hasta el final\" ist unser Lied in der Eurovision 2013.',\n", + " 'bytes': 303,\n", + " 'sha1': 'gov2rr7oti2odfv9woyn54fz12n9wn2',\n", + " 'parent_id': 97907690,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 512186455,\n", + " 'timestamp': '2020-11-12T16:07:55Z',\n", + " 'user': {'id': 1056739, 'text': 'Andreyyshore'},\n", + " 'page': {'id': 26578929,\n", + " 'title': 'Aliona Moon - O Mie presentation (Română).ogv.ro.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"Again, the sentence doesn't end there.\",\n", + " 'text': '1\\n00:00:00,580 --> 00:00:02,591\\nSalut! Sunt Aliona Moon din Moldova\\n\\n2\\n00:00:02,591 --> 00:00:05,612\\nși piesa mea pentru Eurovision este „O mie”.',\n", + " 'bytes': 150,\n", + " 'sha1': '40w9dgwj5ou9jehwqkcfh6o1249uo5a',\n", + " 'parent_id': 101515276,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 594592968,\n", + " 'timestamp': '2021-09-30T08:58:03Z',\n", + " 'user': {'id': 2366229, 'text': 'Achim55'},\n", + " 'page': {'id': 26581951,\n", + " 'title': 'United States Navy Band - O Canada.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/88.249.65.182|88.249.65.182]] ([[User talk:88.249.65.182|talk]]) to last revision by RA0808',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\nO Canada!\\n\\n2\\n00:00:04,000 --> 00:00:11,000\\nOur home and native land!\\n\\n3\\n00:00:11,000 --> 00:00:21,000\\nTrue patriot love in all of us command.\\n\\n4\\n00:00:21,000 --> 00:00:26,000\\nWith glowing hearts we see thee rise,\\n\\n5\\n00:00:26,000 --> 00:00:32,000\\nThe True North strong and free!\\n\\n6\\n00:00:32,000 --> 00:00:34,500\\nFrom far and wide,\\n\\n7\\n00:00:34,500 --> 00:00:43,000\\nO Canada, we stand on guard for thee.\\n\\n8\\n00:00:43,000 --> 00:00:53,000\\nGod keep our land glorious and free!\\n\\n9\\n00:00:53,000 --> 00:01:04,000\\nO Canada, we stand on guard for thee.\\n\\n10\\n00:01:04,000 --> 00:01:18,000\\nO Canada, we stand on guard for thee.',\n", + " 'bytes': 645,\n", + " 'sha1': 'ef0xuwkkeo72shx0bwrksj0p3fyi33v',\n", + " 'parent_id': 594574647,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 224762871,\n", + " 'timestamp': '2016-12-01T01:23:02Z',\n", + " 'user': {'text': '68.191.37.27'},\n", + " 'page': {'id': 26581965,\n", + " 'title': 'United States Navy Band - O Canada.ogg.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:04,000\\nÔ Canada!\\n\\n2\\n00:00:04,000 --> 00:00:11,000\\nTerre de nos aïeux,\\n\\n3\\n00:00:11,000 --> 00:00:21,000\\nTon front est ceint de fleurons glorieux!\\n\\n4\\n00:00:21,000 --> 00:00:26,000\\nCar ton bras sait porter l'épée,\\n\\n5\\n00:00:26,000 --> 00:00:32,000\\nIl sait porter la croix!\\n\\n6\\n00:00:32,000 --> 00:00:37,000\\nTon histoire est une épopée\\n\\n7\\n00:00:37,000 --> 00:00:43,000\\nDes plus brillants exploits.\\n\\n8\\n00:00:43,000 --> 00:00:53,000\\nEt ta valeur, de foi trempée,\\n\\n9\\n00:00:53,000 --> 00:01:04,000\\nProtégera nos foyers et nos droits.\\n\\n10\\n00:01:04,000 --> 00:01:18,000\\nProtégera nos foyers et nos droits.\",\n", + " 'bytes': 627,\n", + " 'sha1': 'ma06aueh1a1unnkhqj228lv95kg4sst',\n", + " 'parent_id': 97931615,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 512186770,\n", + " 'timestamp': '2020-11-12T16:09:56Z',\n", + " 'user': {'id': 1056739, 'text': 'Andreyyshore'},\n", + " 'page': {'id': 26584594,\n", + " 'title': 'Aliona Moon - O Mie presentation (Română).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'more natural phrasing',\n", + " 'text': '1\\n00:00:00,580 --> 00:00:02,591\\nHello! I\\'m Aliona Moon from Moldova\\n\\n2\\n00:00:02,591 --> 00:00:05,612\\nand my song for Eurovision is called <i>\"O mie\"<i>.',\n", + " 'bytes': 152,\n", + " 'sha1': 'by3bvcpymvmna2ismbv3u4ej0aq1c4b',\n", + " 'parent_id': 101515838,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101515767,\n", + " 'timestamp': '2013-08-08T15:12:58Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26584629,\n", + " 'title': 'Aliona Moon - O Mie presentation (Română).ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,580 --> 00:00:02,591\\nHej!\\nJag är Aliona Moon från Moldavien\\n\\n2\\n00:00:02,591 --> 00:00:05,612\\noch min låt i Eurovision heter <i>\"O mie\"<i>.',\n", + " 'bytes': 152,\n", + " 'sha1': 'gcsoi1waut2u3zi974whkzoo039q6pd',\n", + " 'parent_id': 97967361,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101515908,\n", + " 'timestamp': '2013-08-08T15:15:20Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26584855,\n", + " 'title': 'Aliona Moon - O Mie presentation (Română).ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,580 --> 00:00:02,591\\nHallo!\\nIch bin Aliona Moon aus Moldawien\\n\\n2\\n00:00:02,591 --> 00:00:05,612\\nund mein Lied in der Eurovision heißt <i>\"O mie\"<i>.',\n", + " 'bytes': 159,\n", + " 'sha1': '0aawii2r4mzdmsizxxlw41ibpoxmxk0',\n", + " 'parent_id': 101515872,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97960316,\n", + " 'timestamp': '2013-06-11T08:33:06Z',\n", + " 'user': {'id': 1998184, 'text': 'Tacsipacsi'},\n", + " 'page': {'id': 26591638,\n", + " 'title': 'Pl-Budapeszt.ogg.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:00,900 Budapeszt'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:00,900\\nBudapeszt',\n", + " 'bytes': 41,\n", + " 'sha1': 'shv0zcoweaf6wi49j6c9zmrmfaptwf7',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101590041,\n", + " 'timestamp': '2013-08-09T21:37:24Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26593694,\n", + " 'title': 'Loreen presenting herself in Swedish.ogv.ro.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:03,295\\nMă numesc Loreen și am câștigat cu...\\n\\n2\\n00:00:03,295 --> 00:00:05,725\\n...cel mai bun cântec din lume:\\n„Euphoria”.',\n", + " 'bytes': 155,\n", + " 'sha1': '5soybed6xrlf1v9w1k524gswlgi18id',\n", + " 'parent_id': 97967049,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97967863,\n", + " 'timestamp': '2013-06-11T12:01:44Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26593904,\n", + " 'title': 'Gianluca - Tomorrow presentation (Malti).ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:00,092 --> 00:00:01,084 Hello! I\\'m Gianluca - 2 00:00:01,084 --> 00:00:04,205 - and I represent Malta with the song <i>\"Tomorrow\"<i>.\\'',\n", + " 'text': '1\\n00:00:00,092 --> 00:00:01,084\\nHello! I\\'m Gianluca -\\n\\n2\\n00:00:01,084 --> 00:00:04,205\\n- and I represent Malta with the song <i>\"Tomorrow\"<i>.',\n", + " 'bytes': 142,\n", + " 'sha1': '208e2dq51xs7qtskxn9wme8sg126cvr',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97967886,\n", + " 'timestamp': '2013-06-11T12:02:50Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26593911,\n", + " 'title': 'Gianluca - Tomorrow presentation (Malti).ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:00,092 --> 00:00:01,084 Hej! Jag heter Gianluca - 2 00:00:01,084 --> 00:00:04,205 - och jag representerar Malta med låten <i>\"Tomorrow\"<i>.\\'',\n", + " 'text': '1\\n00:00:00,092 --> 00:00:01,084\\nHej! Jag heter Gianluca -\\n\\n2\\n00:00:01,084 --> 00:00:04,205\\n- och jag representerar Malta med låten <i>\"Tomorrow\"<i>.',\n", + " 'bytes': 149,\n", + " 'sha1': 'ewpg763m1g9vrkhgv27yv43oav6vd7n',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 97968032,\n", + " 'timestamp': '2013-06-11T12:08:28Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 26593961,\n", + " 'title': 'Gianluca - Tomorrow presentation (Malti).ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:00,092 --> 00:00:01,084 Hallo! Ich bin Gianluca - 2 00:00:01,084 --> 00:00:04,205 - und ich präsentiere Malta mit dem Lied <i>\"Tomorrow\"<i>.\\'',\n", + " 'text': '1\\n00:00:00,092 --> 00:00:01,084\\nHallo! Ich bin Gianluca -\\n\\n2\\n00:00:01,084 --> 00:00:04,205\\n- und ich präsentiere Malta mit dem Lied <i>\"Tomorrow\"<i>.',\n", + " 'bytes': 150,\n", + " 'sha1': '3l6wcz25b8htk71edgkelkoekciwxf2',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 98008967,\n", + " 'timestamp': '2013-06-12T02:46:22Z',\n", + " 'user': {'text': '70.79.47.231'},\n", + " 'page': {'id': 26604518,\n", + " 'title': '439 Friesland.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,200\\nFriesland',\n", + " 'bytes': 41,\n", + " 'sha1': 'e0qz0ocaxy03f2zew96tcas5lcxiu41',\n", + " 'parent_id': 98008932,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 98031503,\n", + " 'timestamp': '2013-06-12T11:45:28Z',\n", + " 'user': {'text': '139.0.163.84'},\n", + " 'page': {'id': 26613586,\n", + " 'title': 'Thank You from the Children of OLPC.ogg.id.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'This is a subtitle for Indonesian, edited from Malaysian.',\n", + " 'text': '1\\n00:00:23,000 --> 00:00:26,500\\nSaya juga menggunakan XO untuk\\n\\n2\\n00:00:26,500 --> 00:00:28,500\\nmengambil gambar di rumah.\\n\\n3\\n00:00:28,500 --> 00:00:30,500\\nSaya juga menggunakan XO untuk membantu saya dalam matematika.\\n\\n4\\n00:00:30,500 --> 00:00:34,500\\nSaya juga menggambar dengan XO ini.\\n\\n5\\n00:00:34,500 --> 00:00:37,500\\nJadi, saya ingin mengucapkan banyak terima kasih kepada mereka yang membawa XO ke sini.\\n\\n6\\n00:00:37,500 --> 00:00:39,500\\nMereka harus membawa lebih banyak XO\\n\\n7\\n00:00:39,500 --> 00:00:41,000\\nuntuk adik dan kakak saya,\\n\\n8\\n00:00:41,000 --> 00:00:43,500\\ndan orang lain di rumah saya,\\n\\n9\\n00:00:43,500 --> 00:00:45,500\\njadi saya sangat berterima kasih kepada mereka.\\n\\n10\\n00:00:45,500 --> 00:00:48,500\\nSaya suka komputer jinjing saya, terima kasih.\\n\\n11\\n00:00:48,500 --> 00:00:52,500\\nTerima kasih.',\n", + " 'bytes': 811,\n", + " 'sha1': '9dq5w0748x023qt9d9l3qn04aixhbgk',\n", + " 'parent_id': 98031451,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 139724165,\n", + " 'timestamp': '2014-11-16T22:38:08Z',\n", + " 'user': {'id': 3437004, 'text': 'Mavrikant'},\n", + " 'page': {'id': 26651280,\n", + " 'title': 'Ussr Azerbaijan Anthem.ogg.az.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:01,000 --> 00:00:09,500\\nAzərbaycan! Çiçəklənən Respublika, şanlı diyar!\\n\\n2\\n00:00:09,700 --> 00:00:018,100\\nQadir sovet ellərində həm azadsan, həm bəxtiyar.\\n\\n3\\n00:00:018,300 --> 00:00:027,000\\nOktyabrdan qüvvət alıb sən qovuşdun səadətə,\\n\\n4\\n00:00:027,100 --> 00:00:035,000\\nAlqış olsun bu hünərə, alqış olsun bu qüdrətə!\\n\\n5\\n00:00:035,400 --> 00:00:043,300\\nYolumuz Lenin yoludur, partiyadır rəhbərimiz,\\n\\n6\\n00:00:043,700 --> 00:00:051,600\\nKommunizmin günəşile nurlanacaq səhərimiz.\\n\\n7\\n00:00:018,300 --> 00:00:027,000\\nBiz gədirik gələcəye qaliblərin cərgəsində,\\n\\n8\\n00:00:018,300 --> 00:00:027,000\\nYaşa, yaşa Azərbaycan, böyük sovet ölkəsində!\\n\\n9\\n00:00:018,300 --> 00:00:027,000\\nOdlar yurdu! Bu ağ günlər el gücünün bəhrəsidir,\\n\\n10\\n00:00:018,300 --> 00:00:027,000\\nQehrəmanlıq, bir də hünər azad insan həvəsidir.\\n\\n11\\n00:00:018,300 --> 00:00:027,000\\nNəsillərdən-nəsillərə yadigardır dəyaneətin,\\n\\n12\\n00:00:018,300 --> 00:00:027,000\\nKommunizmə gedirik biz, sıra möhkəm, addım mətin.\\n\\n13\\n00:00:018,300 --> 00:00:027,000\\nYolumuz Lenin yoludur, partiyadır rəhbərimiz,\\n\\n14\\n00:00:018,300 --> 00:00:027,000\\nKommunizmin günəşile nurlanacaq səhərimiz.\\n\\n15\\n00:00:018,300 --> 00:00:027,000\\nBiz gədirik gələcəye qaliblərin cərgəsində,\\n\\n16\\n00:00:018,300 --> 00:00:027,000\\nYaşa, yaşa Azərbaycan, böyük sovet ölkəsində!\\n\\n17\\n00:00:018,300 --> 00:00:027,000\\nRəşadətli rus xalqıdır dostluq, birlik bayraqdarı,\\n\\n18\\n00:00:018,300 --> 00:00:027,000\\nMüqəddəsdir, sarsılmazdır dost əllərin bu ilqarı.\\n\\n19\\n00:00:018,300 --> 00:00:027,000\\nQardaş xalqlar birliyindən aldıq gücü, qüdrəti biz,\\n\\n20\\n00:00:018,300 --> 00:00:027,000\\nQoy var olsun bu ittifaq -- şanlı Sovet Vətenimiz! \\n\\n21\\n00:00:018,300 --> 00:00:027,000\\nYolumuz Lenin yoludur, partiyadır rəhbərimiz,\\n\\n22\\n00:00:018,300 --> 00:00:027,000\\nKommunizmin günəşile nurlanacaq səhərimiz.\\n\\n23\\n00:00:018,300 --> 00:00:027,00\\nBiz gədirik gələcəye qaliblərin cərgəsində,\\n\\n24\\n00:00:018,300 --> 00:00:027,000\\nYaşa, yaşa Azərbaycan, böyük sovet ölkəsində!',\n", + " 'bytes': 2129,\n", + " 'sha1': 'j3chruj2kdj9k8w7gbhxqa1m78bk16s',\n", + " 'parent_id': 119712553,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 211732957,\n", + " 'timestamp': '2016-11-02T17:46:24Z',\n", + " 'user': {'text': '168.8.249.165'},\n", + " 'page': {'id': 26655148,\n", + " 'title': 'US NAVY Band - Kaba Ma Kyei.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00-0:10\\nPya Ma Ta Lu La Mhuay Ne Mche Uwe.\\n\\n2\\n0:10-0:15\\nDo Pye, Do Mye.\\n\\n3\\n0:15-0:19\\nMya La Kha Halan Nuayen Dyan Ze Bo.\\n\\n4\\n0:19-0:25\\nSu Pu Ti Ni Mya Wada Fyu Sin De Pye.\\n\\n5\\n0:25-0:30.\\nDo Pye, Do Mye.\\n\\n6\\n0:30-0:33\\nRyi Daun Zu Wuemye Tiden Le.\\n\\n7\\n0:33-0:39\\nWuedei Tan Pyu Be.\\n\\n8\\n0:39-0:41\\nTai Dein Zo Le.\\n\\n9\\n0:41-0:45\\nKaba Ma Myama Pye!\\n\\n10\\n0:45-0:49\\nDo Abo Bwa Wuemue Si Mo Tchi Mya No Be.\\n\\n11\\n0:49-0:53\\nKaba Ma Myenma Pye!\\n\\n12\\n0:53-0:57\\nDo Abo Bwa Wuemue Si Mo Tchi Mya No Be.\\n\\n13\\n0:57-1:03\\nPya Dan Zugo Eue Pe Lo Do Ka Gwe Mele.\\n\\n14\\n1:03-1:08\\nDa Do Pye Da Do Mye Do Pan De Mye.\\n\\n15\\n1:08-1:12\\nDo Pye, Do Mye.\\n\\n16\\n1:12-1:18\\nGobo Go Ni Na Zwa Do Dadwe!\\n\\n17\\n1:18-1:20\\nTan Shan Ba Zo Le.\\n\\n18\\n1:20-1:30\\nDo To Wun Be Wuepo Ta Mye.',\n", + " 'bytes': 730,\n", + " 'sha1': 'qarvd1n87v14gspv94hqufil1ifiwll',\n", + " 'parent_id': 182765301,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 98199770,\n", + " 'timestamp': '2013-06-14T23:29:11Z',\n", + " 'user': {'id': 154385, 'text': 'Victorgrigas'},\n", + " 'page': {'id': 26669972,\n", + " 'title': 'Ntsika Kellem of Sinenjongo High School - Wikipedia means help to me.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:04,000 --> 00:00:06,000\\nThis means help to me\\n\\n2\\n00:00:06,001 --> 00:00:011,000\\nBecause, like, I know that those people who are trying to do this to us\\n\\n3\\n00:00:011,001 --> 00:00:014,000\\nlike, are trying to open doors for us\\n\\n4\\n00:00:014,001 --> 00:00:018,000\\nso that we can search on Wikipedia, free.\\n\\n5\\n00:00:019,501 --> 00:00:020,500\\nso...\\n\\n6\\n00:00:021,501 --> 00:00:025,000\\n...and it means alot to me - Wikipedia.\\n\\n7\\n00:00:025,001 --> 00:00:026,500\\n(Camera Operator) Why?\\n\\n8\\n00:00:027,001 --> 00:00:035,000\\nBecause (laughs) it's like I get the information there, it's a source of information to me.\\n\\n9\\n00:00:035,001 --> 00:00:040,000\\nAny question that I have, it's the answer.\",\n", + " 'bytes': 688,\n", + " 'sha1': 'hnft415ap2tmve2kqmkv3uyr5a2jszf',\n", + " 'parent_id': 98199752,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 102383029,\n", + " 'timestamp': '2013-08-21T15:01:15Z',\n", + " 'user': {'id': 734848, 'text': 'Googledance'},\n", + " 'page': {'id': 26707213,\n", + " 'title': 'Himno a cochabamba.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Agreado el resto de la letra',\n", + " 'text': '1\\n00:00:12,000 --> 00:00:19,000\\nBrilla el sol de septiembre radiante\\n\\n2\\n00:00:19,000 --> 00:00:23,000\\nreflejando la gloria inmortal\\n\\n3\\n00:00:24,000 --> 00:00:31,000\\ndel gran pueblo que firme y constante (bis)\\n\\n4\\n00:00:32,000 --> 00:00:36,000\\nfue primero (bis)\\n\\n5\\n00:00:37,000 --> 00:00:41,000\\nen la lucha marcial\\n\\n6\\n00:00:42,000 --> 00:00:46,000\\nfue primero (bis)\\n\\n7\\n00:00:47,000 --> 00:00:51,000\\nen la lucha marcial\\n\\n8\\n00:00:55,000 --> 00:01:02,000\\nLibertad del Tunari en la cumbre\\n\\n9\\n00:01:03,000 --> 00:01:06,000\\nya su solio por siempre fijo; \\n\\n\\n10\\n00:01:07,000 --> 00:01:14,000\\nla cadena de vil servidumbre Cochabamba esforzada rompió. \\n\\n\\n11\\n00:01:15,000 --> 00:01:24,000\\nDe sus hijos el noble ardimiento su altivez y denuedo sin par\\n\\n12\\n00:01:25,000 --> 00:01:35,000\\ndespertaron el bélico aliento de cien pueblos que van a luchar\\n\\n13\\n00:01:36,000 --> 00:01:37,000\\na luchar\\n\\n14\\n00:01:40,000 --> 00:01:45,000\\nBrilla el sol de septiembre radiante\\n\\n15\\n00:01:47,000 --> 00:01:50,000\\nreflejando la gloria inmortal\\n\\n16\\n00:01:51,000 --> 00:01:59,000\\ndel gran pueblo que firme y constante (bis)\\n\\n17\\n00:02:00,000 --> 00:02:03,000\\nfue primero (bis)\\n\\n18\\n00:02:05,000 --> 00:02:08,000\\nen la lucha marcial\\n\\n19\\n00:02:09,000 --> 00:02:14,000\\nfue primero (bis)\\n\\n20\\n00:02:15,000 --> 00:02:21,000\\nen la lucha marcial\\n\\n21\\n00:02:24,000 --> 00:02:31,000\\nTranscrito por Googledance: en Benimamet, España',\n", + " 'bytes': 1391,\n", + " 'sha1': 'jadzwtmy0jzcu3hlyj55tb7nzxyo9hf',\n", + " 'parent_id': 102381679,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 98449873,\n", + " 'timestamp': '2013-06-18T21:31:56Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 26747746,\n", + " 'title': 'The Dickson Baseball Dictionary -LOC-.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'm',\n", + " 'text': '0\\n00:00:01,709 --> 00:00:06,470\\nFemale Speaker:\\nFrom the Library of Congress, in Washington, D.C.\\n\\n1\\n00:00:06,470 --> 00:00:09,450\\n\\n\\n2\\n00:00:15,450 --> 00:00:20,179\\nGuy Lamolinara:\\nGood afternoon everyone, and welcome to our\\n\\n3\\n00:00:20,179 --> 00:00:25,319\\n\"Books and Beyond\" program today. I\\'m Guy\\nLamolinara and I\\'m the communications officer\\n\\n4\\n00:00:25,319 --> 00:00:29,308\\nfor the Center for the Book. And for those\\nof you who don\\'t know about the Center for\\n\\n5\\n00:00:29,309 --> 00:00:34,829\\nthe Book, we\\'re the reading promotion unit\\nof the Library of Congress, and we\\'ve established\\n\\n6\\n00:00:34,829 --> 00:00:40,140\\na state center for the book in every state\\nin the Union and also in all the U.S. territories.\\n\\n7\\n00:00:40,140 --> 00:00:46,149\\nIn fact, if you\\'re going to the Virgin Islands,\\nwe\\'re establishing even as I speak a Center\\n\\n8\\n00:00:46,149 --> 00:00:51,760\\nfor the Book in the Virgin Islands, and that\\'s\\nwhere John Cole is right now, our Center\\'s\\n\\n9\\n00:00:51,760 --> 00:00:52,399\\ndirector.\\n\\n10\\n00:00:52,399 --> 00:00:53,030\\n[laughter]\\n\\n11\\n00:00:53,030 --> 00:00:58,140\\nAlso, I want to remind you about the National\\nBook Festival -- this will be our ninth one,\\n\\n12\\n00:00:58,140 --> 00:01:04,339\\ncoming up on September 26, and it will be\\non the National Mall, as it always is. And\\n\\n13\\n00:01:04,339 --> 00:01:09,590\\nthe Center for the Book is the part of the\\nLibrary that organizes the author\\'s program,\\n\\n14\\n00:01:09,590 --> 00:01:15,710\\nand we also oversee the Pavilion of the States.\\nOur \"Books and Beyond\" programs feature authors\\n\\n15\\n00:01:15,710 --> 00:01:19,548\\nwho have used the collections of the Library\\nof Congress in their works.\\n\\n16\\n00:01:19,549 --> 00:01:24,060\\nToday\\'s speaker, Paul Dickson, really couldn\\'t\\nhave come at a better time, talking about\\n\\n17\\n00:01:24,060 --> 00:01:30,479\\nbaseball and his baseball dictionary. Following\\nthe program, Paul will sign copies of his\\n\\n18\\n00:01:30,479 --> 00:01:35,549\\nbook, and he will also answer questions, and\\nthe book is for sale in the back of the room.\\n\\n19\\n00:01:35,549 --> 00:01:40,439\\nI just should tell you that this program is\\nbeing recorded for Web cast, so if you ask\\n\\n20\\n00:01:40,439 --> 00:01:44,029\\na question, you\\'ll automatically be part of\\nthat Web cast.\\n\\n21\\n00:01:44,030 --> 00:01:49,259\\nToday, Paul is going to discuss the third\\nedition of his monumental work, \"The Dickson\\n\\n22\\n00:01:49,259 --> 00:01:54,829\\nBaseball Dictionary.\" Ordinarily, you might\\nnot think a dictionary would be a fun thing\\n\\n23\\n00:01:54,829 --> 00:02:00,119\\nto read, but that\\'s not the case with Paul\\'s\\ndictionary. If you love baseball, this is\\n\\n24\\n00:02:00,119 --> 00:02:05,759\\nreally essential for your library, and also\\nit\\'s essential for anybody who loves language,\\n\\n25\\n00:02:05,759 --> 00:02:12,560\\nbecause baseball, really -- the terms in baseball\\nhave permeated our language. In \"The Washington\\n\\n26\\n00:02:12,560 --> 00:02:18,970\\nPost,\" just this past Thursday, David Broder\\ndedicated a column to Paul\\'s dictionary, calling\\n\\n27\\n00:02:18,970 --> 00:02:23,550\\nit a wonderful companion volume for the nights\\nwhen there are rainouts or the days when our\\n\\n28\\n00:02:23,550 --> 00:02:26,470\\nfavorite teams are traveling.\"\\n\\n29\\n00:02:26,470 --> 00:02:31,620\\nToday I was just happening to be looking through\\nthe book, and I saw a curious expression called\\n\\n30\\n00:02:31,620 --> 00:02:36,830\\n\"automobile squint.\" And according to Paul\\nDickson, that refers to the theory, in the\\n\\n31\\n00:02:36,830 --> 00:02:42,470\\nearly days of the automobile, that driving\\nwould adversely affect a ball player\\'s eye.\\n\\n32\\n00:02:42,470 --> 00:02:49,310\\nAccording to a report in the St. Louis Post-Dispatch\\nof 1910, \"Tris Speaker\\'s batting notch has\\n\\n33\\n00:02:49,310 --> 00:02:54,920\\nfallen considerably, and the automobile craze\\nis to blame for it.\" So please join me in\\n\\n34\\n00:02:54,920 --> 00:02:58,190\\nwelcoming Paul Dickson.\\n\\n35\\n00:02:58,190 --> 00:03:00,690\\n[applause]\\n\\n36\\n00:03:00,690 --> 00:03:07,690\\nPaul Dickson:\\nGot a little unpacking to do here. [laughs]\\n\\n37\\n00:03:15,020 --> 00:03:22,020\\nThank you very much, and I will talk about\\nthe Library in the ninth inning of this little\\n\\n38\\n00:03:22,430 --> 00:03:27,470\\ntalk today, just before we go to questions.\\n\\n39\\n00:03:27,470 --> 00:03:34,470\\nThe dictionary pretty much started 25 years\\nago this spring. In 1984 I was at a ball game\\n\\n40\\n00:03:38,450 --> 00:03:44,790\\nat Memorial Stadium with my older son. We\\nwere just seeing, you know, a Sunday afternoon\\n\\n41\\n00:03:44,790 --> 00:03:49,579\\ngame, and he kept saying to me, \"You know,\\nDad, why do they -- why is it this way?\" and\\n\\n42\\n00:03:49,580 --> 00:03:55,030\\n\"Why do they call it a dugout?\" and \"Why do\\nthey say shortstop?\" and why is it this and\\n\\n43\\n00:03:55,030 --> 00:04:00,910\\nwhy -- you know, the whole game -- \"Why do\\ntwo teams have different uniforms?\" and \"What\\'s\\n\\n44\\n00:04:00,910 --> 00:04:05,180\\nthat called, what are those funny socks with\\nthe no toes and no heels called?\" He\\'d always\\n\\n45\\n00:04:05,180 --> 00:04:09,010\\n-- he just, you know, as a 9-year old -- I\\nthink he was nine then -- would do is they\\n\\n46\\n00:04:09,010 --> 00:04:11,459\\njust have -- they just don\\'t stop questioning.\\n\\n47\\n00:04:11,460 --> 00:04:16,650\\nAnd I said, \"Look, we\\'ll go to the library\\nMonday morning, and we\\'ll go over to the reference\\n\\n48\\n00:04:16,649 --> 00:04:20,948\\nsection, and we\\'ll pick out a big fat baseball\\ndictionary, it\\'s probably green in color,\\n\\n49\\n00:04:20,949 --> 00:04:24,430\\nand we\\'ll look up all this stuff and find\\nout where all of it came from.\" And, of course,\\n\\n50\\n00:04:24,430 --> 00:04:29,139\\nthere was no such book. And I had been publishing\\nbooks by then, and my son -- my two sons really\\n\\n51\\n00:04:29,139 --> 00:04:34,449\\nbrought me back to baseball. I had been an\\navid, avid fan as a kid, and then as other\\n\\n52\\n00:04:34,449 --> 00:04:39,289\\nthings came along -- girls and mortgages and\\nother things -- I sort of got away from it.\\n\\n53\\n00:04:39,289 --> 00:04:44,870\\nBut it was when my kids, when I saw the game\\nagain through my children\\'s eyes, my two sons\\'\\n\\n54\\n00:04:44,870 --> 00:04:49,860\\neyes, it was just remarkable, and it got me\\ninto baseball writing. I\\'ve subsequently done\\n\\n55\\n00:04:49,860 --> 00:04:54,849\\nnine \"bat and ball\" books -- I say \"bat and\\nball\" because I\\'ve written one book on softball\\n\\n56\\n00:04:54,849 --> 00:04:59,810\\nand eight books on baseball, so I can make\\nthat claim.\\n\\n57\\n00:04:59,810 --> 00:05:06,460\\nSo, by starting this thing in \\'84, I went\\nto a number of publishers, one of whom -- I\\n\\n58\\n00:05:06,460 --> 00:05:12,789\\nproposed a book of 3,000 terms, and I worked\\non a very extensive head list -- always using\\n\\n59\\n00:05:12,789 --> 00:05:16,270\\nthe Library, by the way, looking at -- this\\nis way before there was Google, or the Internet,\\n\\n60\\n00:05:16,270 --> 00:05:19,710\\nor anything else -- but looking at, looking,\\ntrying to go through old periodicals, trying\\n\\n61\\n00:05:19,710 --> 00:05:23,669\\nto find 19th century terms, et cetera. I came\\nup with the idea that there would be probably\\n\\n62\\n00:05:23,669 --> 00:05:30,240\\nabout 3,000 terms, which was mind-boggling,\\nbecause the first publisher I went to, and\\n\\n63\\n00:05:30,240 --> 00:05:33,580\\nI proposed a -- I can\\'t remember the word\\nlength, but the number of pages -- my first\\n\\n64\\n00:05:33,580 --> 00:05:37,440\\npublisher, which was then, that I went to\\nwith it, was Doubleday, and in those days\\n\\n65\\n00:05:37,440 --> 00:05:41,780\\n-- I got this wonderful rejection letter from\\nthe editor. He said, \"Look, we own our own\\n\\n66\\n00:05:41,780 --> 00:05:47,818\\nplant now, and we\\'re not that good at gluing\\nbooks together. It\\'s a glue problem, not a\\n\\n67\\n00:05:47,819 --> 00:05:48,479\\ncontent problem.\"\\n\\n68\\n00:05:48,479 --> 00:05:48,830\\n[laughter]\\n\\n69\\n00:05:48,830 --> 00:05:54,469\\nSo I got my first rejection because of technological\\nreasons beyond my control. But I did go to\\n\\n70\\n00:05:54,469 --> 00:06:00,490\\na reference publisher, Facts on File, and\\nwe contracted it. We did a lot of work on\\n\\n71\\n00:06:00,490 --> 00:06:06,110\\nit, I brought a lot of people in, including\\nall the people at the Hall of Fame, and people\\n\\n72\\n00:06:06,110 --> 00:06:10,479\\nat the Library here, and other places. Put\\ntogether a small team of about a dozen to\\n\\n73\\n00:06:10,479 --> 00:06:15,969\\n15 helpers who really worked, helped me get\\nthat first edition out. The first edition\\n\\n74\\n00:06:15,969 --> 00:06:22,969\\ncame out in \\'89. That edition came out with\\n5,000 entries, which was pretty colossal;\\n\\n75\\n00:06:22,999 --> 00:06:29,999\\nit\\'s a big fat book. That book immediately\\nset off almost a storm of people showing up\\n\\n76\\n00:06:32,139 --> 00:06:37,969\\nand wanting to help me with the next book.\\nThings from umpires, people who were formerly\\n\\n77\\n00:06:37,969 --> 00:06:43,009\\numpires; people who were studying 19th-century\\nbaseball, people who were studying statistics.\\n\\n78\\n00:06:43,009 --> 00:06:48,900\\nPeople who gave vast amounts of time; my editor,\\nwho\\'s here today, Skip McAfee had spent literally\\n\\n79\\n00:06:48,900 --> 00:06:53,888\\n-- he became my editor at that point, and\\nbecame -- I would say thousands of hours had\\n\\n80\\n00:06:53,889 --> 00:07:00,430\\nbeen put into the book, and many other people,\\neven in the early days, dozens of dozens,\\n\\n81\\n00:07:00,430 --> 00:07:03,969\\nmaybe hundreds of hours, in some cases, doing\\nthe work.\\n\\n82\\n00:07:03,969 --> 00:07:09,719\\nThe second edition came out, again, on the\\n\"nine\" -- \\'89, then \\'99. We got up to 7,500,\\n\\n83\\n00:07:09,719 --> 00:07:16,719\\n7,200 -- something like that -- entries, and\\nthen, you know, I said, \"That\\'s it. It\\'s the\\n\\n84\\n00:07:17,080 --> 00:07:20,550\\ndefinitive work, that\\'s enough, we\\'re done.\\nYou know, there\\'s nothing else to be done\\n\\n85\\n00:07:20,550 --> 00:07:26,110\\nhere.\" And of course, I was absolutely dead\\nwrong, because then a whole new group of ideas\\n\\n86\\n00:07:26,110 --> 00:07:31,689\\nstarted coming in. There was a mushrooming\\nof statistics, of statistical terminology\\n\\n87\\n00:07:31,689 --> 00:07:37,139\\nthat came into play at that time, and it was\\nphenomenal. There was more and more stuff.\\n\\n88\\n00:07:37,139 --> 00:07:41,180\\nThere were more and more Spanish terms creeping\\ninto the language of baseball, there were\\n\\n89\\n00:07:41,180 --> 00:07:46,439\\nJapanese terms starting to come into baseball.\\nAnd because of the digitization of documents,\\n\\n90\\n00:07:46,439 --> 00:07:53,439\\nthere were more people doing 19th and 18th-century\\nresearch on protoypical or proto-ball, prototypical\\n\\n91\\n00:07:55,419 --> 00:07:56,650\\nballs of baseball.\\n\\n92\\n00:07:56,650 --> 00:08:02,068\\nSo I had scholars, by the time I finished\\nwith this edition -- again, it\\'s like a collective\\n\\n93\\n00:08:02,069 --> 00:08:08,289\\nsnowball going down a hill and picking up\\nmore snow -- if you look in the back of the\\n\\n94\\n00:08:08,289 --> 00:08:13,710\\nbook, you\\'ll find 350 people who were willing\\nto help me with this book. There are probably\\n\\n95\\n00:08:13,710 --> 00:08:20,710\\nhalf a dozen names from the Library, but there\\nare librarians, there are baseball -- just\\n\\n96\\n00:08:21,189 --> 00:08:26,259\\nplain old baseball fans, who would read their\\nlocal paper and mark terms as they came up;\\n\\n97\\n00:08:26,259 --> 00:08:31,389\\nother people who listened. But it also includes\\nsome of the top names in baseball scholarship.\\n\\n98\\n00:08:31,389 --> 00:08:35,930\\nI mentioned Skip; John Thorne, Peter Morris\\n-- there are a number of names, if you look\\n\\n99\\n00:08:35,929 --> 00:08:42,929\\nback there and you\\'ve done any reading on\\nsort of the scholarly side of baseball, there\\'s\\n\\n100\\n00:08:43,000 --> 00:08:47,400\\na \"who\\'s who\" back there of those people.\\nAnd then there are people who threw themselves\\n\\n101\\n00:08:47,400 --> 00:08:52,970\\ninto this very openly. David Shulman, who\\'s\\nprobably one of the most famous of all the\\n\\n102\\n00:08:52,970 --> 00:08:58,910\\nlinguistic researchers, who died in his 90s\\na few years ago; David was profiled in \"60\\n\\n103\\n00:08:58,910 --> 00:09:05,910\\nMinutes\" a couple months before he died, he\\nwas major profiled in \"The New Yorker.\" David\\n\\n104\\n00:09:06,180 --> 00:09:10,870\\nhad also been a code-breaker in World War\\nII, and had written his first article on baseball\\n\\n105\\n00:09:10,870 --> 00:09:12,780\\nslang in 1939.\\n\\n106\\n00:09:12,780 --> 00:09:18,790\\nSo, I put together this team of people that\\nwas, even to me, remarkable, and the only\\n\\n107\\n00:09:18,790 --> 00:09:23,000\\nmetaphor I could come up with to explain it\\nwas Tom Sawyer and the fence. You know, when\\n\\n108\\n00:09:23,000 --> 00:09:26,380\\nTom Sawyer is painting the white fence, and\\neverybody is saying, \"What are you doing Tom?\"\\n\\n109\\n00:09:26,380 --> 00:09:31,810\\nAnd he says \"Oh, I\\'m having the best time\\nof my life painting this fence.\" And so I\\n\\n110\\n00:09:31,810 --> 00:09:37,959\\nsort of picked up people that way, and it\\'s\\nbeen almost -- if I was in your seat listening\\n\\n111\\n00:09:37,960 --> 00:09:42,840\\nto me saying that I recruited 350 people that\\nI didn\\'t have to pay, and who are all mostly\\n\\n112\\n00:09:42,840 --> 00:09:49,840\\npleased as punch to be in the book, including,\\nyou know, top lexicographers -- John Morse,\\n\\n113\\n00:09:50,710 --> 00:09:55,530\\nGrant Barrett, and I mean, up and down the\\nline, Erin McKean -- these are all people\\n\\n114\\n00:09:55,530 --> 00:10:01,699\\nthat kicked in, and these are people -- Jesse\\nSheidlower, the OED people have really helped\\n\\n115\\n00:10:01,700 --> 00:10:06,040\\nme a lot on this, I mean, on a personal level.\\n\\n116\\n00:10:06,040 --> 00:10:10,860\\nSo, it\\'s been remarkable, the fact that just\\nthis civilian, this guy, you know, gets all\\n\\n117\\n00:10:10,860 --> 00:10:14,510\\nthese -- and there are probably more PhDs\\n-- you could probably staff a small university\\n\\n118\\n00:10:14,510 --> 00:10:16,980\\nwith the PhDs who have helped with this book.\\n\\n119\\n00:10:16,980 --> 00:10:17,380\\n[laughter]\\n\\n120\\n00:10:17,380 --> 00:10:23,650\\nSo I just -- [laughs] I take that all -- and\\nthe question, of course, becomes how can there\\n\\n121\\n00:10:23,650 --> 00:10:30,650\\nbe -- well, the exactly number -- I have to\\nwrite this down. There\\'s exactly 10,687 definitions\\n\\n122\\n00:10:30,740 --> 00:10:37,740\\nin the book -- no, entries; 10,687 entries,\\n12,358 definitions. The reason is many of\\n\\n123\\n00:10:42,680 --> 00:10:49,530\\nthese terms have multiple meanings. There\\nare 15 baseball meanings of \"hook,\" 13 meanings\\n\\n124\\n00:10:49,530 --> 00:10:54,900\\nof \"slot,\" 11 of \"break,\" \"cut\" -- there are\\ncertain terms like this which in face have\\n\\n125\\n00:10:54,900 --> 00:11:00,990\\nspecific baseball meanings. And when you start\\nlooking at language, you begin to realize\\n\\n126\\n00:11:00,990 --> 00:11:05,770\\nthat words that vastly different meanings\\nwithin the context of even one small area.\\n\\n127\\n00:11:05,770 --> 00:11:12,770\\nFor example, \"in\" has multiple meanings: the\\ninfield is in, \"Is this relief pitcher going\\n\\n128\\n00:11:14,880 --> 00:11:21,670\\nto go in tonight?\" et cetera, et cetera. So\\n\"in\" starts to be based on more than one meaning\\n\\n129\\n00:11:21,670 --> 00:11:23,180\\nwithin the context of baseball.\\n\\n130\\n00:11:23,180 --> 00:11:29,359\\nThe one that got me started really thinking\\nthis way; the word with the most meanings\\n\\n131\\n00:11:29,360 --> 00:11:36,360\\nin the Oxford English Dictionary is \"set,\"\\nwhich has 137 meanings as a noun and a verb.\\n\\n132\\n00:11:39,110 --> 00:11:44,680\\nEverything from \"Boolean set,\" to \"set your\\nhair,\" to a \"set\" in tennis, but each 137\\n\\n133\\n00:11:44,680 --> 00:11:50,579\\nseparate meanings of \"set.\" So it becomes\\nsort of a wonderful sort of drill in looking\\n\\n134\\n00:11:50,580 --> 00:11:57,140\\nat language as it exists. The 10,000 is fascinating,\\nbecause the general rule of thumb is that\\n\\n135\\n00:11:57,140 --> 00:12:04,140\\na person pretty much with a high school education\\nworking day-to-day is about 10,000 words,\\n\\n136\\n00:12:05,390 --> 00:12:09,790\\nthat their daily vocabulary is about -- you\\nknow, the one they need to get up in the morning\\n\\n137\\n00:12:09,790 --> 00:12:13,480\\nto get to work, at home, do whatever they\\nhave to do, is about 10,000 words. So when\\n\\n138\\n00:12:13,480 --> 00:12:17,280\\nyou realize, this is just 10,000 words for\\nbaseball, that\\'s pretty extraordinary.\\n\\n139\\n00:12:17,280 --> 00:12:23,980\\nAnd the question is: how come? How come baseball\\nhas worked like this? How come it has taken\\n\\n140\\n00:12:23,980 --> 00:12:28,530\\non this sort of aura? I mean, you couldn\\'t\\ndo -- I mean, this book is 4.2 pounds.\\n\\n141\\n00:12:28,530 --> 00:12:29,300\\n[laughter]\\n\\n142\\n00:12:29,300 --> 00:12:36,300\\nYou know, it\\'s a mess, and we had to cut it\\nat the end. There\\'s 635,000 words, individual\\n\\n143\\n00:12:36,410 --> 00:12:43,410\\nwords, and you know, it\\'s a massive thing.\\nAnd again, it\\'s been 25 years in the works.\\n\\n144\\n00:12:43,930 --> 00:12:49,410\\nI often pinch myself and I say, \"Why is this?\\nWhy is this not true of other things? Why\\n\\n145\\n00:12:49,410 --> 00:12:51,670\\nis this true of baseball in particular?\"\\n\\n146\\n00:12:51,670 --> 00:12:56,550\\nI think one of the reasons was the way baseball\\ndeveloped and the importance of baseball with\\n\\n147\\n00:12:56,550 --> 00:13:01,300\\nthe development of newspapers in America.\\nBaseball and newspapers were meant for each\\n\\n148\\n00:13:01,300 --> 00:13:07,130\\nother, and in the early days, when you had\\ntelegraph and no other means of communicating\\n\\n149\\n00:13:07,130 --> 00:13:13,000\\nbetween cities, the box score of a baseball\\ngame could be sent from one coast to the other\\n\\n150\\n00:13:13,000 --> 00:13:18,980\\novernight so the morning paper would have\\nthe box score from that game, because it was\\n\\n151\\n00:13:18,980 --> 00:13:23,570\\nvery easy to transmit those numbers, and they\\nwere based on a formula. So you had this very\\n\\n152\\n00:13:23,570 --> 00:13:30,410\\nearly business with that. The other thing\\nyou had very early was a certain intense interest\\n\\n153\\n00:13:30,410 --> 00:13:35,209\\nin putting your best writers on baseball,\\nand this went right into this century, that\\n\\n154\\n00:13:35,210 --> 00:13:41,620\\nyou would pick the guys with the best sort\\nof use of metaphor, the best use of colorful\\n\\n155\\n00:13:41,620 --> 00:13:48,030\\nlanguage, because baseball has since needed\\nvariation in order to really become interesting\\n\\n156\\n00:13:48,030 --> 00:13:53,890\\nto read about. That whole business -- and\\nof course, at the same time there was a huge\\n\\n157\\n00:13:53,890 --> 00:13:59,040\\nmovement, which came out of the University\\nof Chicago around 1920, when there was a \"pure\\n\\n158\\n00:13:59,040 --> 00:14:05,260\\nEnglish\" movement in this country, and there\\nwere long editorials. Some newspapers tried\\n\\n159\\n00:14:05,260 --> 00:14:11,720\\nto ban baseball slang from the sports sections.\\nThe idea that it was going to somehow poison\\n\\n160\\n00:14:11,720 --> 00:14:16,840\\nthe ability of young people to communicate,\\nbecause they were reading these sports sections\\n\\n161\\n00:14:16,840 --> 00:14:22,490\\nthat were using all this slang, and using\\nwords like \"slugger,\" you know, and \"the brakes,\"\\n\\n162\\n00:14:22,490 --> 00:14:27,460\\nand these highly slang-y terms. So it was\\nsort of like mathematicians opposing the box\\n\\n163\\n00:14:27,460 --> 00:14:34,460\\nscores because it would give the kids a bad\\nidea of what math is really like. It was insane.\\n\\n164\\n00:14:34,840 --> 00:14:35,090\\n[laughter]\\n\\n165\\n00:14:35,090 --> 00:14:39,460\\nAnd it was also the liberals -- it was \"The\\nNation\" magazine got aboard this thing, University\\n\\n166\\n00:14:39,460 --> 00:14:43,670\\nof Chicago saying \"You\\'ve got to stop all\\nthis baseball slang, we\\'ll ruin our children.\"\\n\\n167\\n00:14:43,670 --> 00:14:44,920\\n[laughter]\\n\\n168\\n00:14:44,920 --> 00:14:51,890\\nAnd of course, that goes all the way through\\ninto the famous business with Dizzy Dean using\\n\\n169\\n00:14:51,890 --> 00:14:57,870\\nthe word \"ain\\'t,\" in the depths of the Depression\\nhe\\'s chastised on the radio by somebody who\\n\\n170\\n00:14:57,870 --> 00:15:03,510\\nwas -- Bergen Evans or somebody -- who was\\na user of perfect English, and said that he\\n\\n171\\n00:15:03,510 --> 00:15:07,819\\nshould use \"ain\\'t\" on the radio, and Dizzy\\nsaid, \"A lot of people who ain\\'t saying ain\\'t,\\n\\n172\\n00:15:07,820 --> 00:15:10,910\\nain\\'t making a living.\"\\n\\n173\\n00:15:10,910 --> 00:15:12,260\\n[laughter]\\n\\n174\\n00:15:12,260 --> 00:15:18,040\\nAnd I think the other big influence was the\\nbroadcasters. I mean, the early days of radio,\\n\\n175\\n00:15:18,040 --> 00:15:25,040\\nthere was nothing like it. You had these big-city\\nteams bringing in these Southerners, who were\\n\\n176\\n00:15:26,190 --> 00:15:32,340\\njust tripping over their own metaphors. And\\nyou know, you\\'ve got Red Smith, and Mel Allen,\\n\\n177\\n00:15:32,340 --> 00:15:37,880\\nand Arch MacDonald, and all these phrases\\n-- Red Barber, I said Red Smith, who was also\\n\\n178\\n00:15:37,880 --> 00:15:44,260\\na great writer, but Red Barber -- and Barber\\nbrought in all of these sort of Southern-isms\\n\\n179\\n00:15:44,260 --> 00:15:49,600\\ninto Brooklyn. And he would talk about, you\\nknow, \"being in the catbird seat,\" and the\\n\\n180\\n00:15:49,600 --> 00:15:55,510\\nbases being \"FOBs -- full of Brooklyns,\" and\\nArch Macdonald would talk about \"ducks on\\n\\n181\\n00:15:55,510 --> 00:16:01,170\\nthe pond.\" And this carried through, and it\\nstill carries through today. And many places\\n\\n182\\n00:16:01,170 --> 00:16:07,010\\nin this country, the baseball on the radio\\nis vastly more colorful than baseball on television,\\n\\n183\\n00:16:07,010 --> 00:16:11,610\\nbecause you know -- you have in your mind,\\nyou know exactly what the dimensions are out\\n\\n184\\n00:16:11,610 --> 00:16:16,580\\nthere. So everything else becomes metaphoric,\\nand everything else sort of becomes colorful,\\n\\n185\\n00:16:16,580 --> 00:16:19,840\\nand everything -- you\\'re filling time, but\\nyou\\'re also -- there\\'s a certain poetry to\\n\\n186\\n00:16:19,840 --> 00:16:25,620\\nit. So baseball was vastly expanded by the\\nbroadcasters, and again, almost every city\\n\\n187\\n00:16:25,620 --> 00:16:30,290\\nin the country. \"Well, I grew up in...\" -- you\\nname a city. \"I grew up in St. Louis.\" \"Oh,\\n\\n188\\n00:16:30,290 --> 00:16:37,290\\nI remember so-and-so, that was the great announcer.\"\\nAnd even Harry Kalas who died two days ago\\n\\n189\\n00:16:37,320 --> 00:16:41,550\\nwas one of these guys, was a broadcaster that\\neverybody just loved. And so that\\'s another\\n\\n190\\n00:16:41,550 --> 00:16:44,680\\nreason for all of this.\\n\\n191\\n00:16:44,680 --> 00:16:49,260\\nThe other thing that\\'s amazing is the ability\\nof baseball to create new terminology. I was\\n\\n192\\n00:16:49,260 --> 00:16:53,200\\njust -- in the new edition, I just picked\\na couple things that I just loved that were\\n\\n193\\n00:16:53,200 --> 00:17:00,120\\nin the new edition. One of my favorites is\\n\"peacocking,\" and peacocking is a sort of\\n\\n194\\n00:17:00,120 --> 00:17:04,849\\na manifestation that players, starting with\\nRicky Henderson and some others who do it,\\n\\n195\\n00:17:04,849 --> 00:17:09,708\\nwhen they go to the plate they start peacocking\\nwith their jerseys, they pull them out like\\n\\n196\\n00:17:09,709 --> 00:17:14,129\\nthis. And for some reason, somebody picked\\nup the term, created the term \"peacocking\"\\n\\n197\\n00:17:14,128 --> 00:17:18,039\\nfor this, when they go like this. And I\\'m\\nsure it has something to do with ventilation,\\n\\n198\\n00:17:18,039 --> 00:17:22,730\\nor superstition or something else, but it\\'s\\njust a wonderful term. And another one I love\\n\\n199\\n00:17:22,730 --> 00:17:28,569\\nis \"top-stepper,\" which is usually a relief\\npitcher, but a pitcher who makes his manger\\n\\n200\\n00:17:28,569 --> 00:17:34,620\\nor his pitching coach so nervous that he stands\\non the top step of the dugout to watch him.\\n\\n201\\n00:17:34,620 --> 00:17:36,399\\n[laughter]\\n\\n202\\n00:17:36,399 --> 00:17:43,399\\nAnd there\\'s another one, a nice one is \"loogy,\"\\nwhich is a lefty one-out guy, meaning a left-handed\\n\\n203\\n00:17:44,090 --> 00:17:51,090\\nreliever who comes in for one out. And the\\none we have a lot of fun with is \"Bugs Bunny\\n\\n204\\n00:17:51,610 --> 00:17:56,529\\nchange-up,\" and that came in a couple years\\nago, and it basically -- what it is, it\\'s\\n\\n205\\n00:17:56,529 --> 00:18:02,970\\na ball that appears to be a fast ball, but\\njust as it gets into the sort of outer extreme\\n\\n206\\n00:18:02,970 --> 00:18:09,970\\nof the base of the wheelhouse, where the batter\\nwill swing, it stops just momentarily -- appears\\n\\n207\\n00:18:11,360 --> 00:18:16,229\\nto stop momentarily, you know, for an infinitesimal\\nfraction of a second -- and then continues\\n\\n208\\n00:18:16,230 --> 00:18:23,230\\nin a bit slower. And it has -- it\\'s an illusion,\\net cetera, but certain pitchers were -- they\\'d\\n\\n209\\n00:18:25,700 --> 00:18:31,070\\nsay, \"He was throwing the Bugs Bunny change-up.\"\\nAnd it took a lot of work, and really work\\n\\n210\\n00:18:31,070 --> 00:18:36,990\\nI did with William Safire, we actually -- he\\nput me on it, and we got working on it, and\\n\\n211\\n00:18:36,990 --> 00:18:43,990\\nSafire -- and we came up with a 1946 Bugs\\nBunny cartoon in which Bugs is playing the\\n\\n212\\n00:18:44,649 --> 00:18:50,620\\nGashouse Gorillas, it\\'s a \"Looney Tunes\" cartoon,\\nand Bugs throws this one pitch, and these\\n\\n213\\n00:18:50,620 --> 00:18:55,350\\nmonstrous guys can\\'t hit it, because it stops,\\nand their timing is thrown off. So he strikes\\n\\n214\\n00:18:55,350 --> 00:18:59,330\\nout the side with this one pitch, so hence\\nBugs Bunny change-up.\\n\\n215\\n00:18:59,330 --> 00:19:06,269\\nAnd you know, again, there are a lot of others,\\nsome of which, again, are more humorous than\\n\\n216\\n00:19:06,269 --> 00:19:11,879\\nanything else. Tug McGraw -- who I interviewed\\nfor the second edition, before he passed away\\n\\n217\\n00:19:11,879 --> 00:19:17,299\\n-- McGraw had these wonderful names for every\\npitch in the business. He had a Jameson, which\\n\\n218\\n00:19:17,299 --> 00:19:19,168\\nwas neat and straight, it was a fastball.\\n\\n219\\n00:19:19,169 --> 00:19:19,639\\n[laughter]\\n\\n220\\n00:19:19,639 --> 00:19:25,360\\nAnd he was the one who came up with the Linda\\nRonstadt fastball -- Linda Ronstadt fastball\\n\\n221\\n00:19:25,360 --> 00:19:28,418\\nis \"Blue Bayou\" -- one that \"blew by you.\"\\n\\n222\\n00:19:28,419 --> 00:19:28,840\\n[laughter]\\n\\n223\\n00:19:28,840 --> 00:19:35,658\\nAnd then the Peggy Lee fastball, which is\\n\"Is That All There Is?\"\\n\\n224\\n00:19:35,659 --> 00:19:36,879\\n[laughter]\\n\\n225\\n00:19:36,879 --> 00:19:41,980\\nBut these go back, I mean there are a lot\\nof earlier ones, too. They are playful. I\\n\\n226\\n00:19:41,980 --> 00:19:47,100\\nmean, Satchel Paige had his various pitches,\\nand hesitation pitches, and so this goes -- there\\'s\\n\\n227\\n00:19:47,100 --> 00:19:52,019\\na whole history of this sort of playfulness\\nwith baseball language. There are also, in\\n\\n228\\n00:19:52,019 --> 00:19:58,440\\ndoing this book, there are some tremendous\\nsurprises, and I\\'ll list a couple of them,\\n\\n229\\n00:19:58,440 --> 00:20:04,360\\none of which is that a lot of these terms,\\nwhich seem that they were born into baseball,\\n\\n230\\n00:20:04,360 --> 00:20:10,590\\nactually came out of something else. I mean,\\nthe earliest uses of \"grand slam\" is in bridge,\\n\\n231\\n00:20:10,590 --> 00:20:16,830\\ncontract bridge. Rubber game -- when we say,\\nyou know, of the three-game series, each team\\n\\n232\\n00:20:16,830 --> 00:20:20,699\\nis one-one, and the third game is the rubber\\ngame. That\\'s a bridge term. And it came into\\n\\n233\\n00:20:20,700 --> 00:20:25,460\\nbaseball in the 1860s, but it has always been\\n-- you know, that was a borrowing from bridge.\\n\\n234\\n00:20:25,460 --> 00:20:29,869\\nThe borrowings were everywhere. I mean, you\\'ve\\ngot \"double-header,\" going originally to a\\n\\n235\\n00:20:29,869 --> 00:20:35,509\\nrailroad train with two engines, two locomotives,\\nall the early uses of that. There are ones\\n\\n236\\n00:20:35,509 --> 00:20:40,769\\nthat -- \"hit and run\" is another one, sadly,\\nin the news in a baseball context, because\\n\\n237\\n00:20:40,769 --> 00:20:47,080\\nof last week\\'s fatality, but \"hit and run\"\\nwas a baseball term before it was a name for\\n\\n238\\n00:20:47,080 --> 00:20:53,408\\na traffic felony, for a vehicular felony.\\nAnother one -- I think the most curious one\\n\\n239\\n00:20:53,409 --> 00:20:57,889\\nis \"jazz,\" and there\\'s -- we have, I don\\'t\\nknow, about three or four columns on the word\\n\\n240\\n00:20:57,889 --> 00:21:04,090\\n\"jazz\" and how all the early uses of \"jazz\"\\n-- and we brought in some major scholars:\\n\\n241\\n00:21:04,090 --> 00:21:11,090\\nGerald Cohen, who is probably the leading\\nexpert on etymology in the country. Gerald\\n\\n242\\n00:21:11,600 --> 00:21:18,600\\ncame in with this, a lot of the work is his.\\nBut all the early uses of \"jazz\" are in baseball,\\n\\n243\\n00:21:19,940 --> 00:21:26,940\\nand they only transmute to music in 1916,\\nbut before then, a team is jazzed, the team\\n\\n244\\n00:21:29,080 --> 00:21:33,840\\nmay have no skill, but it has plenty of jazz.\\nAnd these were appearing in the papers, you\\n\\n245\\n00:21:33,840 --> 00:21:38,899\\ncould go through the microfilm and see evidence\\nof the word jazz showing up before it shows\\n\\n246\\n00:21:38,899 --> 00:21:43,678\\nup in music. So, that\\'s been really an interesting\\nthing.\\n\\n247\\n00:21:43,679 --> 00:21:48,139\\nAnother thing I want to just go over a little\\nbit is, there are a couple of terms -- everybody\\n\\n248\\n00:21:48,139 --> 00:21:52,240\\nsays to me, \"What are your favorites? You\\nknow, what are the things that you really\\n\\n249\\n00:21:52,240 --> 00:21:59,240\\nlike?\" And I think the three that I get the\\nmost fun out of -- one of them is \"home run.\"\\n\\n250\\n00:22:00,149 --> 00:22:07,149\\n\"Home run\" is very interesting, because \"home\\nrun\" starts very early, but it\\'s not -- it\\n\\n251\\n00:22:07,779 --> 00:22:13,600\\nstarts in the 1850s, but early, early citations\\n-- again, these are things I found here at\\n\\n252\\n00:22:13,600 --> 00:22:20,600\\nthe library -- all the early citations for\\n\"home run\" are from horse racing, which is\\n\\n253\\n00:22:20,610 --> 00:22:25,719\\nfascinating, because it became -- it was sort\\nof the same as home stretch, but it was sort\\n\\n254\\n00:22:25,720 --> 00:22:32,600\\nof an unencumbered, free sort of finishing\\nof the race. And that -- of course, home run\\n\\n255\\n00:22:32,600 --> 00:22:39,600\\nis interesting because it has all these other\\nmeanings, ranging from -- there\\'s a set of\\n\\n256\\n00:22:39,730 --> 00:22:44,389\\nsexual, sort of, accomplishments that ends\\nwith a \"home run,\" that teenagers know all\\n\\n257\\n00:22:44,389 --> 00:22:46,129\\nabout, or they used to know about.\\n\\n258\\n00:22:46,129 --> 00:22:46,379\\n[laughter]\\n\\n259\\n00:22:46,379 --> 00:22:53,379\\nI assume they do today. All the way to business-like\\nstock, with -- I mean, I\\'ve seen a Wall Street\\n\\n260\\n00:22:53,610 --> 00:22:59,549\\ndictionary that says, you know, \"home run:\\na stock with an unimaginable capital gain;\\n\\n261\\n00:22:59,549 --> 00:23:05,119\\na home run.\" And of course, it\\'s [unintelligible].\\nTo some degree, has been supplanted by \"slam\\n\\n262\\n00:23:05,119 --> 00:23:10,009\\ndunk,\" but \"slam dunk\" is something a little\\nbit easier, I think, than a \"home run\". A\\n\\n263\\n00:23:10,009 --> 00:23:14,869\\n\"home run\" is really a big accomplishment.\\nSo I just -- and we\\'ve done -- there\\'s a long\\n\\n264\\n00:23:14,869 --> 00:23:19,918\\nexplanation of the development of the term,\\nand how it evolved over the years.\\n\\n265\\n00:23:19,919 --> 00:23:26,919\\nAnother one that I just love to talk about\\nis the term \"at bat, on deck, in the hold.\"\\n\\n266\\n00:23:28,909 --> 00:23:34,480\\nAnd we put a lot of research into this, and\\nbasically tracked it back to a particular\\n\\n267\\n00:23:34,480 --> 00:23:41,480\\ngame played in Belfast, Maine in 1889, I think\\n-- yeah, 1889 -- in which the Boston Red Sox\\n\\n268\\n00:23:44,379 --> 00:23:50,629\\nwere traveling in an exhibition series through\\nNew England, and they took on a team called\\n\\n269\\n00:23:50,629 --> 00:23:57,629\\nthe Belfast Pastimes of Belfast, Maine. And\\nin the process of beating the Pastimes 35\\n\\n270\\n00:23:57,830 --> 00:24:04,110\\nto 1, in this baseball game, the announcer\\n-- in those days, the scorekeeper actually\\n\\n271\\n00:24:04,110 --> 00:24:07,639\\ngave the -- they would say, they would announce\\nthe next inning, and each team had its own\\n\\n272\\n00:24:07,639 --> 00:24:12,699\\nscorekeeper. And the scorekeeper would get\\nup and say, \"At bat, next, next.\" And then\\n\\n273\\n00:24:12,700 --> 00:24:19,700\\nthe guy who was the scorekeeper for the Pastimes,\\nwho was a sailor, according to the original\\n\\n274\\n00:24:20,509 --> 00:24:26,399\\ndescription -- and of course, Belfast is a\\nseagoing town -- and he says, he gets up and\\n\\n275\\n00:24:26,399 --> 00:24:32,639\\nhe says, \"At bat so-and-so, on deck so-and-so,\\nin the hold so-and-so,\" as in the dugout,\\n\\n276\\n00:24:32,639 --> 00:24:37,899\\nstill in the hold of his ship. And what happens\\nis the Boston writers who were up there pick\\n\\n277\\n00:24:37,899 --> 00:24:43,779\\nthis up and take it back, and it starts showing\\nup in the papers, and all of a sudden that\\n\\n278\\n00:24:43,779 --> 00:24:46,759\\nbecomes the way, that\\'s transmogrified.\\n\\n279\\n00:24:46,759 --> 00:24:53,360\\nAnd again, a lot of this business about doing\\netymological research -- and I actually was\\n\\n280\\n00:24:53,360 --> 00:24:58,199\\nup, I actually went to Belfast, Maine and\\nwent digging through the papers, and found\\n\\n281\\n00:24:58,200 --> 00:25:02,789\\nrecollections of that game by people actually\\non that field and hearing it for the first\\n\\n282\\n00:25:02,789 --> 00:25:06,860\\ntime. I couldn\\'t find the actual original\\ngame -- I couldn\\'t find the game, but I couldn\\'t\\n\\n283\\n00:25:06,860 --> 00:25:11,039\\nfind mention, but I found, later, other people\\nwho had been at the game saying, \"That was\\n\\n284\\n00:25:11,039 --> 00:25:16,950\\nthe game they first used this term.\" So that\\nwas how all of this was recalled.\\n\\n285\\n00:25:16,950 --> 00:25:23,950\\nAnother one that\\'s an awful lot of fun is\\n\"fungo,\" which comes in, it\\'s kind of a practice\\n\\n286\\n00:25:24,379 --> 00:25:29,789\\nhit, a practice game, you know, hitting the\\nball up in the air, sort of a catch game.\\n\\n287\\n00:25:29,789 --> 00:25:36,789\\nAnd what\\'s amazing about that is that term\\ncomes in in 1867, and there are five really\\n\\n288\\n00:25:37,929 --> 00:25:44,929\\nstrong camps of lexicographers, etymologists,\\nthose people who study language, there are\\n\\n289\\n00:25:45,879 --> 00:25:52,879\\nfive camps on \"fungo.\" One of them is this\\nextruded thing, which I have a hard time with,\\n\\n290\\n00:25:53,090 --> 00:25:57,449\\nwhich is \"fungible,\" which sort of, like,\\nit\\'s a replacement for the other one. I\\'m\\n\\n291\\n00:25:57,450 --> 00:26:03,519\\nnot really cool on that, but I -- I have to\\ngive the scholars their room to play. The\\n\\n292\\n00:26:03,519 --> 00:26:07,700\\nother is that it comes from fungus, meaning\\nthat it was made of a cheaper wood; the \"fungo\"\\n\\n293\\n00:26:07,700 --> 00:26:12,289\\nbat was usually a cheaper bat and it didn\\'t\\ncost as much, and you know, it was just meant\\n\\n294\\n00:26:12,289 --> 00:26:18,399\\nfor a one-arm flip like this. The other, which\\nis the people at the Dictionary of American\\n\\n295\\n00:26:18,399 --> 00:26:24,518\\nRegional English, they have picked as their\\netymology that it comes from the German word\\n\\n296\\n00:26:24,519 --> 00:26:30,399\\n\"fangen,\" \"to catch.\" But there is also a\\nfaction in the Dictionary of American Regional\\n\\n297\\n00:26:30,399 --> 00:26:37,360\\nEnglish who has talked about the Scottish\\nverb \"feng\" [spelled phonetically], which\\n\\n298\\n00:26:37,360 --> 00:26:39,498\\nis \"to pitch,\" or \"to toss.\"\\n\\n299\\n00:26:39,499 --> 00:26:46,499\\nThe one I think -- the one that makes the\\nmost sense is there\\'s an old cricket term\\n\\n300\\n00:26:46,739 --> 00:26:50,950\\nwhich also follows an old street game, an\\nold Scottish street term, which is \"fungo,\"\\n\\n301\\n00:26:50,950 --> 00:26:56,149\\nwhich is, like, \"have a fun go at it.\" And\\nin cricket, there\\'s a very early term for\\n\\n302\\n00:26:56,149 --> 00:27:01,080\\na practice swing, in which you would say,\\n\"Take a fun go\" -- in other words, take a\\n\\n303\\n00:27:01,080 --> 00:27:06,918\\nbat at it, just for the fun of it. Very interesting\\nuse of the word \"fung,\" but you see actually\\n\\n304\\n00:27:06,919 --> 00:27:13,919\\nearly cricket descriptions, cricket games,\\nwhich said \"The batter took a few fun gos.\"\\n\\n305\\n00:27:18,519 --> 00:27:22,159\\nThere\\'s also a Scottish street game that says\\n\"One, two, three, go, fun go\" that sort of\\n\\n306\\n00:27:22,159 --> 00:27:28,509\\nfits into that as well. So, again, it\\'s -- and\\nI\\'m sure, sometime next week I will get a\\n\\n307\\n00:27:28,509 --> 00:27:33,619\\nletter from somebody saying \"My grandfather\\ncame from Aberdeen, had written this in his\\n\\n308\\n00:27:33,619 --> 00:27:37,350\\nbook in such and such a year.\"\\n\\n309\\n00:27:37,350 --> 00:27:44,350\\nThe other one, I think, that causes the most\\ninterest along the way has been \"fan\". The\\n\\n310\\n00:27:44,580 --> 00:27:49,449\\npredominant belief, including the Oxford English\\nDictionary and others, is that \"fan\" is a\\n\\n311\\n00:27:49,450 --> 00:27:55,109\\nclipped form of \"fanatic,\" and there\\'s some\\nsignificant backup to that. Another recent\\n\\n312\\n00:27:55,109 --> 00:28:01,210\\n-- and again, the book has -- I think we have\\neight or nine columns on the etymology of\\n\\n313\\n00:28:01,210 --> 00:28:04,369\\nthe word \"fan,\" so there\\'s a lot of scholarship\\nthat went into each of these explanations,\\n\\n314\\n00:28:04,369 --> 00:28:11,369\\nI\\'m giving you the sort of quick and dirty.\\nThe other is -- it\\'s sort of a synonym for\\n\\n315\\n00:28:13,830 --> 00:28:20,168\\n\"windbag,\" or like a fan, you know, bellowing\\nlike a fan, creating a lot of air. And Peter\\n\\n316\\n00:28:20,169 --> 00:28:25,919\\nMorris, who delivered a scholarly paper, a\\nvery fine paper, believes in this, and has\\n\\n317\\n00:28:25,919 --> 00:28:32,570\\nattestations and has his own proof. The one\\nthat I find the most interesting is -- and\\n\\n318\\n00:28:32,570 --> 00:28:39,330\\nmaybe the most romantically inclined to go\\nwith -- is \"fan\" comes from the word \"fancy\".\\n\\n319\\n00:28:39,330 --> 00:28:44,279\\nAnd this word starts showing up in 1818.\\n\\n320\\n00:28:44,279 --> 00:28:49,109\\nThere\\'s a British writer named Pierce Egan,\\nall of whose books I have looked at here.\\n\\n321\\n00:28:49,109 --> 00:28:54,149\\nThey\\'re remarkable, but Pierce Egan was a\\nBritish journalist who pretty much invented\\n\\n322\\n00:28:54,150 --> 00:28:58,840\\n-- two things he invented was: basically sports\\nwriting, he was the first beat sports writer\\n\\n323\\n00:28:58,840 --> 00:29:05,418\\nin the world. And he was also the first newspaper\\nperson to basically use slang as opposed to\\n\\n324\\n00:29:05,419 --> 00:29:10,869\\nthe King\\'s English. He would write very slangy.\\nHe wrote about cockfighting -- he only wrote\\n\\n325\\n00:29:10,869 --> 00:29:15,309\\nabout the lower sports, he wrote about cockfighting,\\nand he came up with terms like \"battle royale\"\\n\\n326\\n00:29:15,309 --> 00:29:20,389\\nor \"the cock of the walk,\" and he had this\\nwonderful, punchy sort of thing. And he loved\\n\\n327\\n00:29:20,389 --> 00:29:25,369\\nto write about prize-fighting, and he virtually\\ninvented the language of prize-fighting. He\\n\\n328\\n00:29:25,369 --> 00:29:31,939\\nwould cover -- he didn\\'t cover fox hunting\\nand the elite sports, he covered bull baiting\\n\\n329\\n00:29:31,940 --> 00:29:36,679\\nand pigeon racing and cockfighting and prize-fighting.\\n\\n330\\n00:29:36,679 --> 00:29:41,989\\nBut Egan, who had this marvelous -- if I was\\nyounger, I would do a biography of Pierce\\n\\n331\\n00:29:41,989 --> 00:29:47,679\\nEgan, but that\\'s another story -- but he had\\nthis group that he derided, a group he called\\n\\n332\\n00:29:47,679 --> 00:29:54,679\\n\"the fancy\". And the fancy were basically\\nnoblemen who slummed in London and went to\\n\\n333\\n00:29:55,799 --> 00:30:02,799\\nprize-fights and went to cockfights and were\\nsort of dissipated guys. They drank, they\\n\\n334\\n00:30:03,429 --> 00:30:10,429\\nwere kind in the movies that put this perfumed\\nhandkerchief up their sleeve. And he would\\n\\n335\\n00:30:10,559 --> 00:30:16,340\\ntalk about them derisively, alternately as\\n\"the fancy boys,\" but then it became \"the\\n\\n336\\n00:30:16,340 --> 00:30:22,369\\nfancy,\" and then over time, you start to see\\nthings showing -- and that goes across the\\n\\n337\\n00:30:22,369 --> 00:30:28,040\\nworld to America. So it\\'s this sort of elite\\ngroup of people who are slumming and betting\\n\\n338\\n00:30:28,040 --> 00:30:35,040\\n-- they bet heavily, the fancy boys bet heavily\\n-- and that it morphs into \"fanc\" as slang,\\n\\n339\\n00:30:35,940 --> 00:30:42,940\\n\"the fancy fanc\". And Mencken, H.L. Mencken\\nin \"American Language,\" he basically has a\\n\\n340\\n00:30:43,409 --> 00:30:48,899\\nscholar that he found who first brought this\\nup, and Mencken actually goes on the side\\n\\n341\\n00:30:48,899 --> 00:30:55,899\\nof the \"fanc\". So I just thought those, just\\nto go through a couple of my favorite ones.\\n\\n342\\n00:30:56,690 --> 00:31:02,799\\nSo I think I want to say something about the\\nlanguage -- and I\\'m aware of the time here,\\n\\n343\\n00:31:02,799 --> 00:31:08,679\\nbecause I don\\'t want to [inaudible]. I think\\nthe thing about baseball which is remarkable,\\n\\n344\\n00:31:08,679 --> 00:31:15,330\\nand one of the other reasons the language\\nis so rich -- I think one thing is that it\\n\\n345\\n00:31:15,330 --> 00:31:22,330\\ntranscends eras, that basically the language\\nis -- we are told, for example, every decade\\n\\n346\\n00:31:22,659 --> 00:31:27,489\\nsomeone writes a column in some newspaper\\nand says, \"You know, the old terms are gone.\\n\\n347\\n00:31:27,489 --> 00:31:32,879\\nWe never hear of a \\'Texas leaguer\\' anymore,\\nor a \\'dying quail,\\' or we never hear the words\\n\\n348\\n00:31:32,879 --> 00:31:39,879\\n\\'cup of coffee\\' for a guy with a small turn\\nin the majors. And we never hear \\'can of corn\\'\\n\\n349\\n00:31:39,940 --> 00:31:42,299\\nfor a loping fly ball.\"\\n\\n350\\n00:31:42,299 --> 00:31:46,359\\nAnd of course, as soon as that column comes\\nout, about a week later Vince Scully\\'s on\\n\\n351\\n00:31:46,359 --> 00:31:50,529\\nthe radio saying \"Well, we got a big picket\\nfence out there, and we got a can of corn,\"\\n\\n352\\n00:31:50,529 --> 00:31:56,929\\nand all of this stuff, because it keeps returning\\nitself. It\\'s almost like it turns itself over\\n\\n353\\n00:31:56,929 --> 00:32:03,929\\nand go back to this sort of bucolic terminology\\nof, you know, farmboys in baggy pants running\\n\\n354\\n00:32:06,859 --> 00:32:12,210\\naround a pasture playing a kid\\'s game. I mean,\\nso that\\'s sort of -- what intrigues me is\\n\\n355\\n00:32:12,210 --> 00:32:16,590\\nthat stuff really doesn\\'t die, it sort of\\ngoes into hibernation and then comes out again\\n\\n356\\n00:32:16,590 --> 00:32:19,499\\nwhen somebody needs a new set of metaphors.\\n\\n357\\n00:32:19,499 --> 00:32:25,350\\nSpeaking of metaphors, baseball is absolutely\\na metaphoric circus. We compiled a list here,\\n\\n358\\n00:32:25,350 --> 00:32:28,119\\nit\\'s got over 100 -- these are just food terms\\n--\\n\\n359\\n00:32:28,119 --> 00:32:29,509\\n[laughter]\\n\\n360\\n00:32:29,509 --> 00:32:36,509\\n-- that have gone into baseball. \"Apple knocker,\"\\n\"banana boat,\" \"banana stock,\" \"grapefruit,\"\\n\\n361\\n00:32:36,580 --> 00:32:43,580\\n\"grapefruit league.\" You could go to \"cup\\nof coffee,\" \"strawberry,\" \"rasberry,\" which\\n\\n362\\n00:32:43,789 --> 00:32:50,789\\ncomes out of baseball; and all of these have\\nsome nice piece of etymology to them. But\\n\\n363\\n00:32:51,799 --> 00:32:58,549\\nthe food terms -- and of course, there\\'s a\\ncouple animal terms. Maybe 20 less than the\\n\\n364\\n00:32:58,549 --> 00:33:05,549\\nfood terms, but it\\'s just a way of sort of\\nshowing that the game itself, it just loves\\n\\n365\\n00:33:06,889 --> 00:33:07,289\\nmetaphors.\\n\\n366\\n00:33:07,289 --> 00:33:13,489\\nSo something like the aforementioned can of\\ncorn for that ball that lopes out of the sky\\n\\n367\\n00:33:13,489 --> 00:33:20,330\\nand into the fielder\\'s glove is probably an\\nallusion -- this one that\\'s very difficult\\n\\n368\\n00:33:20,330 --> 00:33:26,918\\nto prove, but the folkloric explanation was\\nthe old grocer with the hook, you know, the\\n\\n369\\n00:33:26,919 --> 00:33:31,460\\ngrabber that he would use in the old time\\ngrocery store; he\\'d pull out his apron, and\\n\\n370\\n00:33:31,460 --> 00:33:33,950\\nthe can of corn would tumble down into the\\napron.\\n\\n371\\n00:33:33,950 --> 00:33:39,979\\nOr \"cup of coffee\" was -- \"so and so just\\nhad a cup of coffee with the Royals,\" you\\n\\n372\\n00:33:39,979 --> 00:33:44,330\\nknow, just came up at the end of the season\\nfor a couple days. Didn\\'t really get into\\n\\n373\\n00:33:44,330 --> 00:33:47,658\\nthe game, but you know, we brought him up\\nfor a cup of coffee. And it\\'s just -- it\\'s\\n\\n374\\n00:33:47,659 --> 00:33:54,659\\nsuch a bucolic sort of non-threatening -- I\\nmean, it sounds like George Carlin, but everybody\\n\\n375\\n00:33:54,779 --> 00:34:00,220\\nelse has a \"locker room\" but baseball has\\na \"clubhouse\". You know, it\\'s that business.\\n\\n376\\n00:34:00,220 --> 00:34:01,909\\n[laughter]\\n\\n377\\n00:34:01,909 --> 00:34:06,999\\nI think the other thing that\\'s really interesting\\nabout the language is that it has become our\\n\\n378\\n00:34:06,999 --> 00:34:13,998\\nlanguage. There are literally hundreds and\\nhundreds of terms that are baseball, and we\\n\\n379\\n00:34:14,339 --> 00:34:20,960\\nsay every day. \"Batting average,\" \"bean,\"\\n\"bench,\" \"benchwarmer,\" \"bonehead,\" et cetera.\\n\\n380\\n00:34:20,960 --> 00:34:25,339\\nWe go on and on about, you know, somebody\\n-- if you watch the Sunday morning shows,\\n\\n381\\n00:34:25,339 --> 00:34:32,168\\nthe talking heads, \"Well, this guy\\'s coming\\nin in relief,\" \"He\\'s got to take his turn\\n\\n382\\n00:34:32,168 --> 00:34:38,949\\nat the plate,\" \"the Obama administration hasn\\'t\\ngotten to first base on appointments yet,\"\\n\\n383\\n00:34:38,949 --> 00:34:45,949\\nand if you start to deconstruct all that Sunday\\nmorning talk, wow, [laughs] there\\'s just baseball\\n\\n384\\n00:34:47,049 --> 00:34:48,288\\nall over it.\\n\\n385\\n00:34:48,289 --> 00:34:53,710\\nAnd I tried to come up with sort of a turning\\npoint when all this changed, and a lot of\\n\\n386\\n00:34:53,710 --> 00:34:58,420\\nit seems to appear -- the beginning of it,\\nthat I can find -- there\\'s probably earlier\\n\\n387\\n00:34:58,420 --> 00:35:03,750\\nexamples, but the first time I really see\\nit used is by Franklin D. Roosevelt in the\\n\\n388\\n00:35:03,750 --> 00:35:09,559\\nfireside chats. And Roosevelt would basically\\n-- he knew he was talking -- he knew he was\\n\\n389\\n00:35:09,559 --> 00:35:14,280\\na man of sort of Aristocratic, for lack of\\na better term, breeding and high education,\\n\\n390\\n00:35:14,280 --> 00:35:19,319\\nbut he\\'s got a country that\\'s in the dumps,\\nand he\\'s got to -- he doesn\\'t want to talk\\n\\n391\\n00:35:19,319 --> 00:35:24,980\\nto the country about caucuses and filibusters\\nand that stuff. He wants to talk to them in\\n\\n392\\n00:35:24,980 --> 00:35:29,470\\na language they can understand, so he can\\nsay, \"Well, my box score with Congress is\\n\\n393\\n00:35:29,470 --> 00:35:33,390\\nnot very good,\" or \"This legislation\\'s rounding\\nthird and I\\'m going to need your help to bring\\n\\n394\\n00:35:33,390 --> 00:35:39,400\\nit home.\" And he would use that sort of imagery.\\nAnd from then on, it was used sporadically\\n\\n395\\n00:35:39,400 --> 00:35:39,900\\nby presidents.\\n\\n396\\n00:35:39,900 --> 00:35:45,589\\nPresident Eisenhower is another one. Eisenhower\\nthrew in a lot of football -- no golf, but\\n\\n397\\n00:35:45,589 --> 00:35:48,400\\nhe would throw in a lot of football -- but\\nif you go look through some of Eisenhower\\'s\\n\\n398\\n00:35:48,400 --> 00:35:55,400\\nspeeches, he talks about it in terms of baseball.\\nAnd so I -- again, I think that helped -- there\\n\\n399\\n00:35:56,640 --> 00:36:02,598\\nwas sort of this process by which we began\\nto see baseball in terms of our own lives.\\n\\n400\\n00:36:02,599 --> 00:36:08,650\\nIt\\'s slow enough, and it\\'s also long enough\\n--- you know, it\\'s 162 game season. It\\'s not\\n\\n401\\n00:36:08,650 --> 00:36:13,390\\nlike a football game that\\'s every Sunday,\\nit\\'s like day-in-day-out for the sort of the\\n\\n402\\n00:36:13,390 --> 00:36:18,490\\nharvest part of the year, the part where we\\'re\\nplanting crops through the time we\\'re harvesting.\\n\\n403\\n00:36:18,490 --> 00:36:25,490\\nAnd so a lot of the way it\\'s done, the batting\\naverages, the fact that baseball finds a way\\n\\n404\\n00:36:25,930 --> 00:36:30,210\\nto -- there are two games the same day, or\\nyou have two singles in a row; they\\'re \"back-to-back\\n\\n405\\n00:36:30,210 --> 00:36:33,900\\nsingles\". That\\'s a baseball term. You don\\'t\\nthink of the things that have now -- \"the\\n\\n406\\n00:36:33,900 --> 00:36:38,530\\nbreaks,\" the breaks of the game, \"he got all\\nthe breaks.\" \"Game face.\" These are things\\n\\n407\\n00:36:38,530 --> 00:36:43,109\\nwe don\\'t think about any more as baseball\\nterms, but that\\'s where they come from.\\n\\n408\\n00:36:43,109 --> 00:36:45,598\\nSo I\\'m going to tell you -- there\\'s just two\\nother things, and then we\\'ll go to the questions,\\n\\n409\\n00:36:45,599 --> 00:36:50,119\\nif that makes sense. The two other things\\nI want to talk about is I\\'ve been doing a\\n\\n410\\n00:36:50,119 --> 00:36:54,650\\nlot of radio and things with this book, because\\nit\\'s just been out for less than a month,\\n\\n411\\n00:36:54,650 --> 00:37:00,410\\nand everybody says, \"Is there going to be\\na fourth edition?\" Well, that would be -- let\\n\\n412\\n00:37:00,410 --> 00:37:07,410\\nme see, \\'89, \\'99, 2009 -- 2019. And people\\nare already coming through with stuff. Very\\n\\n413\\n00:37:12,200 --> 00:37:15,230\\ngood stuff is starting to come in again, and\\npeople are saying, \"Oh, there\\'s that statistic\\n\\n414\\n00:37:15,230 --> 00:37:21,210\\nyou didn\\'t have in the book.\" So we\\'re skipping\\nor gearing up for the inevitable, which is,\\n\\n415\\n00:37:21,210 --> 00:37:26,980\\nyou know, another version, which would mean\\n-- I\\'m 70 this summer, so I\\'ll be 80 -- or\\n\\n416\\n00:37:26,980 --> 00:37:28,930\\nmy kids will take it over. One of the things\\nI did --\\n\\n417\\n00:37:28,930 --> 00:37:29,328\\n[laughter]\\n\\n418\\n00:37:29,329 --> 00:37:35,289\\nWhen I started this process, and this is a\\nperson confessing to you of an enormous immodesty,\\n\\n419\\n00:37:35,289 --> 00:37:38,770\\nand I\\'ll do it anyhow, but one of the things\\nI had in the back of my head when I was many\\n\\n420\\n00:37:38,770 --> 00:37:44,859\\nyears younger, 25 years ago, I said, \"Boy,\\nwouldn\\'t it be cool to create a piece of American\\n\\n421\\n00:37:44,859 --> 00:37:51,859\\nreference and that you became, like Roget\\nmaybe or Webster, where you would brand this\\n\\n422\\n00:37:51,869 --> 00:37:55,250\\nthing.\" And my first publisher was aghast,\\nwhen I went to Facts on File. They wanted\\n\\n423\\n00:37:55,250 --> 00:38:00,740\\nto call it the \"Facts on File Baseball Dictionary.\"\\nI said, \"Not on my watch, you don\\'t.\"\\n\\n424\\n00:38:00,740 --> 00:38:01,339\\n[laughter]\\n\\n425\\n00:38:01,339 --> 00:38:07,359\\nSo, and my two sons who are very -- one of\\nthem just built a Web site for the book called\\n\\n426\\n00:38:07,359 --> 00:38:14,359\\nbaseballdictionary.com, so they\\'re in Double\\nA right now, getting ready to go into the\\n\\n427\\n00:38:15,230 --> 00:38:15,690\\ngame.\\n\\n428\\n00:38:15,690 --> 00:38:16,150\\n[laughter]\\n\\n429\\n00:38:16,150 --> 00:38:22,039\\nI just want to talk about the Library for\\na second. When I first came to Washington\\n\\n430\\n00:38:22,039 --> 00:38:29,039\\nin the late \\'60s, I was sent down here to\\ncover Gemini and Apollo for NASA, and I was\\n\\n431\\n00:38:31,760 --> 00:38:34,150\\ndoing a lot of freelance. I started coming\\nto the Library at night. I wasn\\'t married,\\n\\n432\\n00:38:34,150 --> 00:38:41,089\\nI was here in town. I just couldn\\'t believe\\nmy eyes -- and I\\'d used the New York Public\\n\\n433\\n00:38:41,089 --> 00:38:45,808\\nLibrary before -- it just, it was unbelievable,\\nand there was nothing I couldn\\'t do here.\\n\\n434\\n00:38:45,809 --> 00:38:50,829\\nAnd I kept -- you know, I hate that when papers,\\nthe newspapers will say something like \"so\\n\\n435\\n00:38:50,829 --> 00:38:56,720\\nand so discovered -- hidden in the stacks\\nof the Library of Congress he found this document.\"\\n\\n436\\n00:38:56,720 --> 00:39:00,470\\nThere are people in the Library who are trying\\nto get you to look at the document.\\n\\n437\\n00:39:00,470 --> 00:39:00,720\\n[laughter]\\n\\n438\\n00:39:00,520 --> 00:39:04,759\\n\"I found this obscure document!\" Doesn\\'t it\\nmake him sound like Marco Polo going into\\n\\n439\\n00:39:04,760 --> 00:39:07,150\\nthe stacks, or something.\\n\\n440\\n00:39:07,150 --> 00:39:07,750\\n[laughter]\\n\\n441\\n00:39:07,750 --> 00:39:13,910\\nBut the fact is I still find this place magic,\\nand I\\'ve used it. I have -- I\\'ll do one more\\n\\n442\\n00:39:13,910 --> 00:39:18,420\\ntiny bit of immodesty -- I have five books\\ncoming out this year, which is a fluke, because\\n\\n443\\n00:39:18,420 --> 00:39:22,780\\nthis one I\\'ve been working on for 25 years.\\nHere\\'s a book from Johns Hopkins which comes\\n\\n444\\n00:39:22,780 --> 00:39:27,960\\nout next month, which I\\'ve been working on\\nfor six years; but it\\'s just a fluke of time\\n\\n445\\n00:39:27,960 --> 00:39:34,140\\nthat they all came out together. But every\\none of those books has basically a major component\\n\\n446\\n00:39:34,140 --> 00:39:38,970\\nfrom this Library. And it\\'s not just the regular\\ngoing in and putting in the call slip and\\n\\n447\\n00:39:38,970 --> 00:39:42,439\\ngetting out the book, it\\'s the next level\\nhere.\\n\\n448\\n00:39:42,440 --> 00:39:47,539\\nI\\'m working on a biography now, my first biography.\\nI\\'m doing Bill Veck, who is a very interesting\\n\\n449\\n00:39:47,539 --> 00:39:54,539\\ncharacter in the history of baseball. And\\nI found, in the Library -- now, I didn\\'t find\\n\\n450\\n00:39:55,520 --> 00:40:02,520\\nit, it was in the catalogue -- but I listened\\nto 305 broadcasts that Bill Veck did for Armed\\n\\n451\\n00:40:03,950 --> 00:40:10,049\\nForces radio in the \\'50s, and I sat in one\\nof those broadcast booths on the first floor\\n\\n452\\n00:40:10,049 --> 00:40:17,049\\nhere, and for 2 1/2 days I listened to this\\nguy. And by the end of the 2 1/2 days, I could\\n\\n453\\n00:40:17,880 --> 00:40:24,660\\ntalk like him, I knew exactly how he said,\\ntalked about things. He never said \"woman,\"\\n\\n454\\n00:40:24,660 --> 00:40:30,460\\nhe always said \"the female of the species.\"\\nHe never said -- he never used nicknames.\\n\\n455\\n00:40:30,460 --> 00:40:35,359\\nSo when he said \"Satchel Paige,\" he didn\\'t\\nsay \"Satchel Paige,\" he said \"Leroy Paige.\"\\n\\n456\\n00:40:35,359 --> 00:40:41,058\\nI got a key -- I got more understanding of\\nthat guy from his recordings, and from what\\n\\n457\\n00:40:41,059 --> 00:40:46,920\\nI discovered, what the people in the department\\ntold me, that I was the first one to ever\\n\\n458\\n00:40:46,920 --> 00:40:51,539\\nask for them. Because they had to put them\\non some carrier so I could listen to them\\n\\n459\\n00:40:51,539 --> 00:40:56,359\\non the thing. But the other thing is, in photography,\\nthe \"Look\" magazine collection -- 3 million\\n\\n460\\n00:40:56,359 --> 00:41:01,029\\nphotographs. And I found extraordinary material\\non this one man.\\n\\n461\\n00:41:01,029 --> 00:41:08,020\\nThere is no other place that I know of in\\nthe country where you go -- you go through\\n\\n462\\n00:41:08,020 --> 00:41:11,880\\nthe obvious really quickly. I mean, the databases\\nare cool beyond belief, and they make Google\\n\\n463\\n00:41:11,880 --> 00:41:17,299\\nlook like nursery school. They\\'ve got these\\nphenomenal and very expensive databases, and\\n\\n464\\n00:41:17,299 --> 00:41:22,180\\nall that\\'s wonderful. You could probably get\\na lot of that at a top university library.\\n\\n465\\n00:41:22,180 --> 00:41:29,180\\nBut what\\'s really remarkable is the extent\\nto which this place holds on to American life,\\n\\n466\\n00:41:30,000 --> 00:41:36,579\\nand holds on to it with grace and a tremendous\\nability to share. I mean, I\\'ve tried to use\\n\\n467\\n00:41:36,579 --> 00:41:41,299\\nthe British museum, and you\\'re just a writer.\\nI\\'m not -- I don\\'t have an advanced degree\\n\\n468\\n00:41:41,299 --> 00:41:44,869\\nor something -- you know, well, then maybe.\\nHere, it doesn\\'t matter.\\n\\n469\\n00:41:44,869 --> 00:41:48,720\\nAnd I think the other thing is, you\\'ve got\\n-- I mean, even on things like [unintelligible]\\n\\n470\\n00:41:48,720 --> 00:41:53,890\\n\"All the newspapers are digitized.\" Well,\\nif we go with the digitization, which is now\\n\\n471\\n00:41:53,890 --> 00:41:59,670\\nthe trend, we\\'re going to end up with a very\\nelite view of the world, because if you\\'re\\n\\n472\\n00:41:59,670 --> 00:42:04,369\\n-- let\\'s say you\\'re looking at New York City.\\nNow every library in the country has the ProQuest,\\n\\n473\\n00:42:04,369 --> 00:42:07,880\\nthey have \"The New York Times\" back to the\\nfirst issue, they have \"The Wall Street Journal\"\\n\\n474\\n00:42:07,880 --> 00:42:12,270\\nback to the first issue, they have, you know,\\n\"The Washington Post\" back to the first issue.\\n\\n475\\n00:42:12,270 --> 00:42:17,500\\nBut who\\'s going to digitize \"The Washington\\nStar\"? Or \"The New York Herald-Tribune\"? Or\\n\\n476\\n00:42:17,500 --> 00:42:23,069\\n\"The New York Daily News\"? Or the second,\\nthird, fourth and fifth papers in all these\\n\\n477\\n00:42:23,069 --> 00:42:28,049\\ntowns. And a lot of times it was that second\\npaper, with a much more of a blue-collar audience\\n\\n478\\n00:42:28,049 --> 00:42:34,170\\nand much more of an attempt to please, and\\nbe a little bit anti-establishment in the\\n\\n479\\n00:42:34,170 --> 00:42:39,460\\nface of \"The New York Times.\" I remember when\\nI was a kid, when the Salk vaccine -- I grew\\n\\n480\\n00:42:39,460 --> 00:42:41,730\\nup in a neighborhood ravaged by polio, and\\n\"The\\n\\n481\\n00:42:41,730 --> 00:42:47,589\\nNew York Herald-Tribune\" has this huge second\\ncoming headline: \"Polio Solved!\" You know,\\n\\n482\\n00:42:47,589 --> 00:42:51,240\\nI\\'m going to school screaming and yelling,\\nlike, you know, \"Polio Solved!\" And all my\\n\\n483\\n00:42:51,240 --> 00:42:54,589\\nneighbor kids, all the kids in the neighborhood\\nread \"The New York Times.\" And \"The New York\\n\\n484\\n00:42:54,589 --> 00:43:00,210\\nTimes,\" on page A72: \"West Coast researcher\\nbelieves he may have new clue to polio.\"\\n\\n485\\n00:43:00,210 --> 00:43:00,460\\n[laughter]\\n\\n486\\n00:43:00,450 --> 00:43:05,419\\nAnd that was Jonas Salk. And so, you lived\\na different life through these other papers.\\n\\n487\\n00:43:05,420 --> 00:43:09,339\\nSo I think the fact of the matter is -- I\\nmean, that place downstairs where you do the\\n\\n488\\n00:43:09,339 --> 00:43:15,058\\nmicrophone, man, that\\'s just one of the best\\nplaces in the world. And so I just want to\\n\\n489\\n00:43:15,059 --> 00:43:18,190\\nuse this time as an opportunity to thank the\\nLibrary. I\\'ve been using it, I\\'ve written\\n\\n490\\n00:43:18,190 --> 00:43:23,200\\n-- I\\'ll be probably up to 54 books by the\\nend of the year, and I just want to thank\\n\\n491\\n00:43:23,200 --> 00:43:28,210\\nthe Library for making it possible for me\\nto make a living. And also, a lot of the quality\\n\\n492\\n00:43:28,210 --> 00:43:33,809\\nthat goes into these things comes right out\\nof this building or the ones across the street.\\n\\n493\\n00:43:33,809 --> 00:43:34,720\\n[applause]\\n\\n494\\n00:43:34,720 --> 00:43:38,359\\nSo, questions? Yes, sir.\\n\\n495\\n00:43:38,359 --> 00:43:45,359\\nMale Speaker:\\nCould you tell us where the term \"K\" comes\\n\\n496\\n00:43:48,380 --> 00:43:50,980\\nfrom for a strikeout?\\n\\n497\\n00:43:50,980 --> 00:43:55,779\\nPaul Dickson:\\nThat goes back to Henry Chadwick and his original\\n\\n498\\n00:43:55,779 --> 00:44:02,779\\ndescription. And again, Dave Kelly and I found\\nthe original -- there are lot of -- Chadwick,\\n\\n499\\n00:44:04,279 --> 00:44:07,869\\nwho was the guy that put together a lot of\\nthe early rules, he was a British journalist\\n\\n500\\n00:44:07,869 --> 00:44:12,900\\nwho came to this country. And there are many\\ntheories about \"K,\" but the one that wins\\n\\n501\\n00:44:12,900 --> 00:44:19,740\\nthe day is that Chadwick, in creating his\\nearly scoring system, picked the letter \"K\"\\n\\n502\\n00:44:19,740 --> 00:44:26,740\\nas the dominant sound in \"strike\". And it\\nwas annotation, which he explains later; he\\n\\n503\\n00:44:26,960 --> 00:44:30,670\\nput it in first, and then somebody asked him\\nlater how did it come about. And he said he\\n\\n504\\n00:44:30,670 --> 00:44:35,950\\ndidn\\'t want to use \"S\" or \"SO\" because it\\nlooked too much like \"single\" or something,\\n\\n505\\n00:44:35,950 --> 00:44:40,730\\nbut \"K\" was just this perfect thing. And he\\nalso -- it was suggested by somebody at the\\n\\n506\\n00:44:40,730 --> 00:44:44,980\\ntime that he also like the sort of the symmetry\\nof the three strokes for the K. When you\\'re\\n\\n507\\n00:44:44,980 --> 00:44:49,490\\nwriting it in the book, you have three strikes;\\nyou know, three pen marks.\\n\\n508\\n00:44:49,490 --> 00:44:49,939\\nYes, sir.\\n\\n509\\n00:44:49,940 --> 00:44:52,180\\nMale Speaker:\\nSpeaking of scoring systems, why do you suppose\\n\\n510\\n00:44:52,180 --> 00:44:58,190\\nto this day Major League Baseball doesn\\'t\\neven have a standard scorecard or standard\\n\\n511\\n00:44:58,190 --> 00:44:59,079\\nscoring system?\\n\\n512\\n00:44:59,079 --> 00:45:01,859\\nPaul Dickson:\\nBecause, as Thomas Boswell -- I did a book\\n\\n513\\n00:45:01,859 --> 00:45:06,170\\non keeping score, so as Thomas Boswell once\\nsaid, \"It\\'s an inalienable right of every\\n\\n514\\n00:45:06,170 --> 00:45:08,410\\nAmerican to keep his own scoring system.\"\\n\\n515\\n00:45:08,410 --> 00:45:11,000\\n[laughter and applause]\\n\\n516\\n00:45:11,000 --> 00:45:17,170\\nAnd I found, when I did research on the scoring\\nbook -- again, next door -- one of the most\\n\\n517\\n00:45:17,170 --> 00:45:24,170\\ncurious things that I found was a scorebook\\ninvented by L.L. Bean for the television age.\\n\\n518\\n00:45:25,329 --> 00:45:32,329\\nAnd apparently L.L. Bean -- one day, Ted Williams\\ncomes into L.L. Bean in Freeport, Maine and\\n\\n519\\n00:45:32,660 --> 00:45:36,970\\nword goes up to the old man that Ted Williams\\nis in the lobby, or downstairs buying fishing\\n\\n520\\n00:45:36,970 --> 00:45:43,129\\nrods. And Bean comes downstairs and says,\\n\"That scoring system is no good, it doesn\\'t\\n\\n521\\n00:45:43,130 --> 00:45:49,599\\nwork for T.V.\" So with Ted Williams advice,\\nBean creates his own scoring system. It was\\n\\n522\\n00:45:49,599 --> 00:45:51,520\\ntotally worthless, but --\\n\\n523\\n00:45:51,520 --> 00:45:52,210\\n[laughter]\\n\\n524\\n00:45:52,210 --> 00:45:55,990\\nSo I think -- the other thing, a lot of the\\nstuff is Chadwick. A lot of the numbering\\n\\n525\\n00:45:55,990 --> 00:46:01,578\\nof the places around the bases. But I found\\nthat a lot of -- I\\'ve been in broadcast booths\\n\\n526\\n00:46:01,579 --> 00:46:06,960\\nwhere I would have thought that this would\\nbe all digitized, and there are still guys\\n\\n527\\n00:46:06,960 --> 00:46:12,680\\nwho basically do the hand scorecard and they\\nmake -- they have all different kinds of notations.\\n\\n528\\n00:46:12,680 --> 00:46:19,578\\nYou know, notations for spectacular catches\\n-- and the beauty of the scorekeeping is it\\'s\\n\\n529\\n00:46:19,579 --> 00:46:24,680\\ntotally indigenous to baseball. And I remember\\nsitting with a friend of mine who was much\\n\\n530\\n00:46:24,680 --> 00:46:29,160\\nolder, and he knew I was working on a book\\non scorekeeping, and he said, \"Wait here,\"\\n\\n531\\n00:46:29,160 --> 00:46:33,450\\nand he went -- he was about five houses away\\n-- and he came back with a scorecard from\\n\\n532\\n00:46:33,450 --> 00:46:38,669\\nthe last time the New York Giants played the\\nBrooklyn Dodgers in New York; the last time\\n\\n533\\n00:46:38,670 --> 00:46:40,520\\nthey both played. And he said, \"I was at that\\ngame.\"\\n\\n534\\n00:46:40,520 --> 00:46:46,410\\nAnd he gets up there, and it was almost like\\nwatching, like, a rabbi, or --\\n\\n535\\n00:46:46,410 --> 00:46:46,660\\n[laughter]\\n\\n536\\n00:46:46,569 --> 00:46:48,849\\n-- the Jewish praying, or whatever. And he\\'s\\nalmost like -- here he\\'s going, he\\'s rocking\\n\\n537\\n00:46:48,849 --> 00:46:55,740\\nback and forth, and he\\'s going -- and he was\\ncalling the game, from this piece of cheap\\n\\n538\\n00:46:55,740 --> 00:47:00,359\\npulp paper that he had done so many years\\nago. It was amazing. And he called the whole\\n\\n539\\n00:47:00,359 --> 00:47:05,490\\ngame. Holy cow. \"What, he got a single? How\\ndid he get a single?\"\\n\\n540\\n00:47:05,490 --> 00:47:06,118\\nYou know, but --\\n\\n541\\n00:47:06,119 --> 00:47:08,609\\nMale Speaker:\\nI score old games and I\\'ve yet to find the\\n\\n542\\n00:47:08,609 --> 00:47:09,440\\nperfect scorecard to use.\\n\\n543\\n00:47:09,440 --> 00:47:09,890\\nPaul Dickson:\\nBut that\\'s, like, the holy grail.\\n\\n544\\n00:47:09,890 --> 00:47:10,140\\n[laughter]\\n\\n545\\n00:47:09,890 --> 00:47:11,720\\nThat\\'s sort of the fun of it.\\n\\n546\\n00:47:11,720 --> 00:47:13,490\\nMale Speaker:\\nWhat\\'s the best baseball word that\\'s been\\n\\n547\\n00:47:13,490 --> 00:47:13,799\\ninvented in this century?\\n\\n548\\n00:47:13,799 --> 00:47:14,049\\nPaul Dickson:\\nOh...\\n\\n549\\n00:47:14,039 --> 00:47:14,289\\n[laughter]\\n\\n550\\n00:47:14,119 --> 00:47:18,670\\nMan. The best baseball word?\\n\\n551\\n00:47:18,670 --> 00:47:24,510\\nMale Speaker:\\nSecret sauce.\\n\\n552\\n00:47:24,510 --> 00:47:30,349\\nPaul Dickson:\\nSecret sauce.\\n\\n553\\n00:47:30,349 --> 00:47:31,809\\n[laughter]\\n\\n554\\n00:47:31,809 --> 00:47:34,170\\nWhich is a statistical term. Tell us.\\n\\n555\\n00:47:34,170 --> 00:47:35,559\\nMale Speaker:\\n[inaudible]\\n\\n556\\n00:47:35,559 --> 00:47:39,559\\nPaul Dickson:\\nOkay. We\\'re going to read you -- this wasn\\'t\\n\\n557\\n00:47:39,559 --> 00:47:46,559\\nadvertised as a reading. We\\'re going to do\\nit from the book.\\n\\n558\\n00:47:46,760 --> 00:47:47,910\\n[laughter]\\n\\n559\\n00:47:47,910 --> 00:47:54,910\\nYou know, people say to me, \"Oh, you say on\\npage 687...\"\\n\\n560\\n00:48:01,750 --> 00:48:02,910\\n[laughter]\\n\\n561\\n00:48:02,910 --> 00:48:04,058\\nOkay:\\n\\n562\\n00:48:04,059 --> 00:48:09,640\\nSecret Sauce: the three ingredients that most\\nreliably predict post-season success -- a\\n\\n563\\n00:48:09,640 --> 00:48:12,960\\nhigh strikeout rate [spelled phonetically]\\nfor the pitching staff, adjusted for a team\\'s\\n\\n564\\n00:48:12,960 --> 00:48:18,000\\nleague and ballpark; quality of defense such\\nas fielding units above average in a reliable\\n\\n565\\n00:48:18,000 --> 00:48:21,420\\nclosure, as measured by wins expected above\\nreplacement --\\n\\n566\\n00:48:21,420 --> 00:48:28,420\\n-- this is one of these terms that has come\\nin with the advent of sabermetrics and almost\\n\\n567\\n00:48:28,650 --> 00:48:35,650\\na maniacal interest in statistics. My favorite\\none of the new statistical terms is a term\\n\\n568\\n00:48:38,029 --> 00:48:45,029\\ncalled PECOTA, which reminds you of Billy\\nPecota the in-fielder. And PECOTA is all-caps,\\n\\n569\\n00:48:45,769 --> 00:48:52,769\\nand it stands for \"Player Empirical Comparison\\nand Optimization Text Algorithm.\" Needless\\n\\n570\\n00:48:54,099 --> 00:49:01,099\\nto say, I had great help on the statistical\\nterms in this book by a leading statistician\\n\\n571\\n00:49:01,390 --> 00:49:05,578\\nfrom the University of Delaware, who is the\\nbig expert on baseball statistics, because\\n\\n572\\n00:49:05,579 --> 00:49:12,579\\nI can\\'t -- things like -- terms like that\\nI couldn\\'t have written myself, I need somebody\\n\\n573\\n00:49:13,299 --> 00:49:19,640\\nelse to sort of say what exactly was there.\\nBecause it\\'s almost like higher math, or physics\\n\\n574\\n00:49:19,640 --> 00:49:24,660\\nor something, the way that\\'s going.\\n\\n575\\n00:49:24,660 --> 00:49:28,609\\nMale Speaker:\\nHave you heard the new one, AGI? This kid\\n\\n576\\n00:49:28,609 --> 00:49:33,180\\nMcCarthy just wrote a book about playing single-A\\nball in Ogden, Utah, and AGI is a statistic\\n\\n577\\n00:49:33,180 --> 00:49:36,519\\nthat pitchers use. It\\'s an \"Almost Got in\\nthe Game.\"\\n\\n578\\n00:49:36,519 --> 00:49:37,049\\n[laughter]\\n\\n579\\n00:49:37,049 --> 00:49:43,670\\nPaul Dickson:\\nThat\\'s like Phil Rizzuto\\'s \"WW\" in his scorecard.\\n\\n580\\n00:49:43,670 --> 00:49:47,839\\nHe\\'d say, \"WW: Wasn\\'t Watching.\"\\n\\n581\\n00:49:47,839 --> 00:49:48,670\\n[laughter]\\n\\n582\\n00:49:48,670 --> 00:49:50,339\\nYes, sir.\\n\\n583\\n00:49:50,339 --> 00:49:57,339\\nMale Speaker:\\nWhat\\'s the derivation of the \"golden sombrero\"?\\n\\n584\\n00:49:57,849 --> 00:50:02,630\\nPaul Dickson:\\nIt comes from a hat trick, and it may in fact\\n\\n585\\n00:50:02,630 --> 00:50:09,630\\nbe a Hispanic influence on the game, because\\n-- one of the things -- I wrote another book,\\n\\n586\\n00:50:10,019 --> 00:50:13,950\\nwhich is called \"The Unwritten Rules of Baseball,\"\\nand I talked to a lot of people about some\\n\\n587\\n00:50:13,950 --> 00:50:17,149\\nof the unwritten rules about ethnicity; the\\nunwritten rule that kept African-Americans\\n\\n588\\n00:50:17,150 --> 00:50:23,529\\nout of the game, and also there was a rule\\nthat -- pretty much unwritten rule -- that\\n\\n589\\n00:50:23,529 --> 00:50:29,170\\nyou couldn\\'t have too many Latin players on\\nyour team, because they tended to be too happy-go-lucky\\n\\n590\\n00:50:29,170 --> 00:50:34,769\\nand such. And of course, that was -- it was\\na cultural difference. Often an Anglo player\\n\\n591\\n00:50:34,769 --> 00:50:38,319\\nwould come back with his head down and say,\\n\"I just struck out at the end of the world.\"\\n\\n592\\n00:50:38,319 --> 00:50:43,950\\nA Latin guy would say, \"Next time I\\'m going\\nto knock it out of here,\" you know, with his\\n\\n593\\n00:50:43,950 --> 00:50:50,109\\nhead up. So I think terms like \"golden sombrero\"\\ncame out of that sort of, \"Hey, you know,\\n\\n594\\n00:50:50,109 --> 00:50:56,730\\nI struck out three times, I struck out four\\ntimes.\" And the \"platinum sombrero\" is five\\n\\n595\\n00:50:56,730 --> 00:50:58,480\\ntimes, but it shows up -- it starts showing\\nup in \\'80s.\\n\\n596\\n00:50:58,480 --> 00:50:58,730\\n[laughter]\\n\\n597\\n00:50:58,480 --> 00:51:00,470\\nMale Speaker:\\nYou alluded to the connection between baseball\\n\\n598\\n00:51:00,470 --> 00:51:07,470\\nlanguage and newspaper, and with the demise\\nof so many papers, and the decline in baseball\\n\\n599\\n00:51:11,099 --> 00:51:18,099\\ncoverage in newspapers, should we be worried\\nabout the language in baseball?\\n\\n600\\n00:51:19,069 --> 00:51:22,619\\nPaul Dickson:\\nI\\'m not sure. I mean, they\\'ll probably find\\n\\n601\\n00:51:22,619 --> 00:51:28,900\\na new -- try to find a new outlet. I have\\na lot -- I\\'m on Facebook with a lot of baseball\\n\\n602\\n00:51:28,900 --> 00:51:35,450\\nwriters, and they\\'re filing outside the games,\\nnow. Tyler Kempner, the \"New York Times\" guy\\n\\n603\\n00:51:35,450 --> 00:51:40,640\\nwho covers the Yankees, is on Facebook writing\\nabout stuff in spring training that doesn\\'t\\n\\n604\\n00:51:40,640 --> 00:51:47,400\\nshow up in \"The New York Times.\" So, the new\\nmedia is -- it at once is a curse to the written\\n\\n605\\n00:51:47,400 --> 00:51:52,480\\nword, but it\\'s also, in another sense, it\\ngives it a new flexibility. So I\\'m not terribly\\n\\n606\\n00:51:52,480 --> 00:51:52,880\\ndepressed.\\n\\n607\\n00:51:52,880 --> 00:51:57,190\\nBut little things bother me, like the fact\\nthat \"The Washington Post\" decides not to\\n\\n608\\n00:51:57,190 --> 00:52:00,809\\ncover the Orioles anymore, you know, which\\nis a little bit parochial.\\n\\n609\\n00:52:00,809 --> 00:52:01,059\\n[laughter]\\n\\n610\\n00:52:00,920 --> 00:52:01,990\\nMale Speaker:\\nAlong those same lines, do you think that\\n\\n611\\n00:52:01,990 --> 00:52:08,990\\nthe bred of announcers today, within the last\\n20 years, is significantly less colorful than\\n\\n612\\n00:52:12,619 --> 00:52:15,990\\nthe old [inaudible].\\n\\n613\\n00:52:15,990 --> 00:52:21,939\\nPaul Dickson:\\nI think that\\'s true to a point, but Vin Scully\\n\\n614\\n00:52:21,940 --> 00:52:28,660\\nis still working; you got John Miller, who\\'s\\nwonderful. There are some people outside the\\n\\n615\\n00:52:28,660 --> 00:52:34,149\\nbig cities who are doing a wonderful job;\\nsome of the double-A, triple-A announcers\\n\\n616\\n00:52:34,150 --> 00:52:38,200\\nare doing some really interesting work. I\\nkeep hearing little bits from friends who\\n\\n617\\n00:52:38,200 --> 00:52:42,710\\nsay, \"You\\'ve got to hear this guy now,\" you\\nknow, somewhere out in Oregon or somewhere.\\n\\n618\\n00:52:42,710 --> 00:52:47,510\\nI think the tradition is still there. I think\\nwhat\\'s been bled out is television is bleeding\\n\\n619\\n00:52:47,510 --> 00:52:53,510\\na lot of it out, because the demands of so\\nmany ads, the pace of the game changes with\\n\\n620\\n00:52:53,510 --> 00:53:00,089\\nthe advertising, and -- but I think the urge\\nis still there.\\n\\n621\\n00:53:00,089 --> 00:53:07,089\\nMale Speaker:\\nWho do you think of as the best color man\\n\\n622\\n00:53:08,579 --> 00:53:08,930\\nin baseball?\\n\\n623\\n00:53:08,930 --> 00:53:09,799\\nPaul Dickson:\\nYou mean historically?\\n\\n624\\n00:53:09,799 --> 00:53:10,319\\nMale Speaker:\\nYeah.\\n\\n625\\n00:53:10,319 --> 00:53:12,190\\nPaul Dickson:\\nOof, I don\\'t know. I grew up in New York,\\n\\n626\\n00:53:12,190 --> 00:53:16,849\\nyou know, so I\\'d be hearing Red Barber and\\nMel Allen, I loved those guys. I think it\\'s\\n\\n627\\n00:53:16,849 --> 00:53:20,410\\nwhere you grew up. And you couldn\\'t beat those\\ntwo --\\n\\n628\\n00:53:20,410 --> 00:53:21,848\\nMale Speaker:\\n[inaudible]\\n\\n629\\n00:53:21,849 --> 00:53:25,200\\nPaul Dickson:\\nOf the announcers, I think John Miller\\'s the\\n\\n630\\n00:53:25,200 --> 00:53:32,200\\nbest. And he hasn\\'t been sullied, he hasn\\'t\\nbeen dampened by television, which often happens.\\n\\n631\\n00:53:33,339 --> 00:53:34,839\\n[applause]\\n\\n632\\n00:53:34,839 --> 00:53:40,109\\nFemale Speaker:\\nThis has been a presentation of the Library\\n\\n633\\n00:53:40,109 --> 00:53:42,619\\nof Congress. Visit us, at loc.gov.\\n\\n634\\n00:53:42,619 --> 00:53:43,589\\n[end transcript]',\n", + " 'bytes': 71062,\n", + " 'sha1': 'n8eyim581isjubprcfz3wmrwxo1fi7p',\n", + " 'parent_id': 98449001,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 98501478,\n", + " 'timestamp': '2013-06-19T20:20:19Z',\n", + " 'user': {'id': 2808134, 'text': 'Jamaican college grad'},\n", + " 'page': {'id': 26761809,\n", + " 'title': 'Green anoles in a territorial fight.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with 'note how the anoles bite at each others heads and the scars recieved from the battle'\",\n", + " 'text': 'note how the anoles bite at each others heads and the scars recieved from the battle',\n", + " 'bytes': 84,\n", + " 'sha1': 'c557ah8sh9pbmfabj8gb2gne0j17lxb',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99255564,\n", + " 'timestamp': '2013-07-01T15:27:20Z',\n", + " 'user': {'id': 14396, 'text': 'Aktron'},\n", + " 'page': {'id': 26769987,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.cs.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'some corrections',\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\nPanoramatické fotografie poloostrova Pelješac. Fotografováno v letech 2009-2013\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nVýhled na Orebić a vlajka\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\npohled z pohoří v horní části poloostrova\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić z Vižanice\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić od severozápadu\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nPoloostrov při pohledu z kanálu\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\nneúrodná půda nad městem\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\nneúrodná půda nad městem\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\nPrůsmyk kapetani a ostrovy s Bile ploče\\n\\n9.\\n00:00:36,000 --> 00:00:39,800\\nOskorušno z pohoří Viter\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda z pohoří Viter\\n\\n11\\n00:00:44,000 --> 00:00:47,800\\nPrůsmyk Kapetani\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nVinice na jižní straně\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj od západu\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nDolní Nakovana, pohled od kaštelu\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nPohled na Korčulu od trosek kaštela\\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nVleže nad Mokalou\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić s Mokalou\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomja a Pijavićino od západu\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nklášter v severovýchodním Podgorje\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nKlášter v severozápadní Podgorje\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić ze Supina\\n\\n22\\n00:01:28,000 --> 00:01:31,800\\nMokalo a Supino\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\nSoutěska Pratnjice\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić od severu\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić od severozápadu\\n\\n26\\n00:01:44,000 --> 00:01:47,800\\nVrchol Žrnovnica\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić od severu\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nPohled na Orebić\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nVižanica- svahy na jihovýchodu\\n\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\nKrásná zátoka\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nPelješka Duba při pohledu z vrcholu kopce\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nBarinské vrcholy a Žrnovska Banja v pozadí\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\npohled z poloostrova na západě\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nHorní Vručica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton a solné pánve\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nHorský hřeben Mokalo s vesnicí Donja Vručica \\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nKlášter Kuni, pohled z jihu\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nzanedbané, ale opravované vinice\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina od západu\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRusković sever\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nObec Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nObec Lovište\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nsvahy na pravé straně\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\nkříž na vrcholu Pelješac',\n", + " 'bytes': 2911,\n", + " 'sha1': 'kik83ue7t8jp9iudvtkij7nf1rknlet',\n", + " 'parent_id': 98547801,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 118570701,\n", + " 'timestamp': '2014-03-09T02:02:20Z',\n", + " 'user': {'id': 502443, 'text': 'AMPERIO'},\n", + " 'page': {'id': 26781170,\n", + " 'title': 'Soviet Anthem Instrumental 1955.ogg.gl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:03,800 --> 00:00:10,300\\nUnión indestrutible de Repúblicas Libres\\n\\n2\\n00:00:10,300 --> 00:00:17,600\\nque uniu por sempre á gran Rusia!\\n\\n3\\n00:00:17,600 --> 00:00:24,6\\nLonga vida á obra creada polo pobo,\\n\\n4\\n00:00:24,600 --> 00:00:31,800\\nUnida e forte Unión Soviética!\\n\\n5\\n00:00:31,800 --> 00:00:45,500\\nCantémoslle á patria, fogar do libre,\\n\\n6\\n00:00:45,500 --> 00:00:52,500\\nmestura de pobos en grande irmandade!\\n\\n7\\n00:00:52,500 --> 00:01:06,200\\npartido de Lenin, a forza do pobo\\n\\n8\\n00:01:06,200 --> 00:01:30,000\\nlévanos ao triunfo do comunismo!',\n", + " 'bytes': 554,\n", + " 'sha1': '0lf7e4zcb4h914dllbeq9uf44tcrfpw',\n", + " 'parent_id': 98553257,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 144136691,\n", + " 'timestamp': '2014-12-26T01:45:18Z',\n", + " 'user': {'id': 1216133, 'text': 'Champion'},\n", + " 'page': {'id': 26816329,\n", + " 'title': 'Anthem of Europe (US Navy instrumental long version).ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:09,600 --> 00:00:13,700\\nJoyful, joyful, we adore Thee,\\n\\n2\\n00:00:13,700 --> 00:00:17,000\\nGod of glory, Lord of love;\\n\\n3\\n00:00:17,000 --> 00:00:21,070\\nhearts unfold like flow'rs before Thee,\\n\\n4\\n00:00:21,070 --> 00:00:24,570\\nOpening to the Sun above,\\n\\n5\\n00:00:24,570 --> 00:00:29,170\\nMelt the clouds of sin and sadness;\\n\\n6\\n00:00:29,170 --> 00:00:32,670\\ndrive the dark of doubt away;\\n\\n7\\n00:00:32,670 --> 00:00:37,030\\nGiver of immortal gladness,\\n\\n8\\n00:00:37,030 --> 00:00:40,700\\nfill us with the light of day!\\n\\n9\\n00:00:40,700 --> 00:00:45,100\\nMelt the clouds of sin and sadness;\\n\\n10\\n00:00:45,100 --> 00:00:48,870\\ndrive the dark of doubt away;\\n\\n11\\n00:00:48,870 --> 00:00:53,530\\nGiver of immortal gladness,\\n\\n12\\n00:00:53,530 --> 00:00:57,230\\nfill us with the light of day!\\n\\n13\\n00:00:57,230 --> 00:01:01,400\\nAll Thy works with joy surround Thee,\\n\\n14\\n00:01:01,400 --> 00:01:04,670\\nearth and heav'n reflect Thy rays,\\n\\n15\\n00:01:04,670 --> 00:01:09,000\\nstars and angels sing around Thee,\\n\\n16\\n00:01:09,000 --> 00:01:13,130\\ncenter of unbroken praise:\\n\\n17\\n00:01:13,130 --> 00:01:16,700\\nField and forest, vale and mountain,\\n\\n18\\n00:01:16,700 --> 00:01:20,400\\nFlow'ry meadow, flashing sea,\\n\\n19\\n00:01:20,400 --> 00:01:24,500\\nchanting bird and flowing fountain,\\n\\n20\\n00:01:24,500 --> 00:01:28,170\\ncall us to rejoice in Thee.\\n\\n21\\n00:01:28,170 --> 00:01:32,170\\nField and forest, vale and mountain,\\n\\n22\\n00:01:32,170 --> 00:01:35,970\\nFlow'ry meadow, flashing sea,\\n\\n23\\n00:01:36,970 --> 00:01:40,200\\nchanting bird and flowing fountain,\\n\\n24\\n00:01:40,200 --> 00:01:43,900\\ncall us to rejoice in Thee.\",\n", + " 'bytes': 1577,\n", + " 'sha1': 'air2yy051eutbxrvda2fcrov273622b',\n", + " 'parent_id': 144058834,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 541143740,\n", + " 'timestamp': '2021-03-10T16:01:37Z',\n", + " 'user': {'text': '141.193.118.3'},\n", + " 'page': {'id': 26828563,\n", + " 'title': 'Poacher.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:000 --> 0:00 --> 0:15\\n\"Liconshire Poacher\" Plays\\n2 \\n0:15 --> 0:26\\nZero, two, five, eight, eight.',\n", + " 'bytes': 104,\n", + " 'sha1': '7dmbl4o895httvinqbp3eg4wp8knnza',\n", + " 'parent_id': 541143232,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 153951761,\n", + " 'timestamp': '2015-03-19T13:07:24Z',\n", + " 'user': {'id': 2335816, 'text': 'Great Brightstar'},\n", + " 'page': {'id': 26843934,\n", + " 'title': 'Dmitry Medvedev address on 26 August 2008 regarding Abkhazia & South Ossetia.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:01,160 --> 00:00:06,399\\nMy dear fellow countrymen, citizens of Russia!\\n\\n1\\n00:00:06,399 --> 00:00:13,399\\nYou are no doubt well aware of the tragedy\\nof South Ossetia. The night-time execution-style\\n\\n2\\n00:00:19,699 --> 00:00:26,699\\nbombardment of Tskhinval by the Georgian troops\\nresulted in the deaths of hundreds of our\\n\\n3\\n00:00:28,750 --> 00:00:35,750\\ncivilians. Among the dead were the Russian\\npeacekeepers, who gave their lives in fulfilling\\n\\n4\\n00:00:37,290 --> 00:00:42,170\\ntheir duty to protect women, children and\\nthe elderly.\\n\\n5\\n00:00:42,170 --> 00:00:49,170\\nThe Georgian leadership, in violation of the\\nUN Charter and their obligations under international\\n\\n6\\n00:00:49,760 --> 00:00:55,440\\nagreements and contrary to the voice of reason,\\nunleashed an armed conflict victimizing innocent\\n\\n7\\n00:00:55,440 --> 00:01:00,640\\ncivilians. The same fate lay in store for\\nAbkhazia. Obviously, they in Tbilisi hoped\\n\\n8\\n00:01:00,640 --> 00:01:07,640\\nfor a blitz-krieg that would have confronted\\nthe world community with an accomplished fact.\\n\\n9\\n00:01:08,120 --> 00:01:15,120\\nThe most inhuman way was chosen to achieve\\nthe objective — annexing South Ossetia through\\n\\n10\\n00:01:16,950 --> 00:01:21,520\\nthe annihilation of a whole people.\\n\\n11\\n00:01:21,520 --> 00:01:28,520\\nThat was not the first attempt to do this.\\nIn 1991, President Gamsahourdia of Georgia,\\n\\n12\\n00:01:30,140 --> 00:01:37,140\\nhaving proclaimed the motto \"Georgia for Georgians\"\\n— just think about it! — ordered attacks\\n\\n13\\n00:01:42,850 --> 00:01:49,850\\non the cities of Sukhum and Tskhinval. The\\nresult then was thousands of killed people,\\n\\n14\\n00:01:50,300 --> 00:01:56,270\\ndozens of thousands of refugees and devastated\\nvillages. And it was Russia who at that time\\n\\n15\\n00:01:56,270 --> 00:02:01,030\\nput an end to the eradication of the Abkhaz\\nand Ossetian peoples. Our country came forward\\n\\n16\\n00:02:01,030 --> 00:02:04,110\\nas a mediator and peacekeeper insisting on\\na political settlement. In doing so we were\\n\\n17\\n00:02:04,110 --> 00:02:08,389\\ninvariably guided by the recognition of Georgia\\'s\\nterritorial integrity.\\n\\n18\\n00:02:08,389 --> 00:02:10,630\\nThe Georgian leadership chose another way.\\nDisrupting the negotiating process, ignoring\\n\\n19\\n00:02:10,630 --> 00:02:14,549\\nthe agreements achieved, committing political\\nand military provocations, attacking the peacekeepers\\n\\n20\\n00:02:14,550 --> 00:02:17,560\\n— all these actions grossly violated the\\nregime established in conflict zones with\\n\\n21\\n00:02:17,560 --> 00:02:20,560\\nthe support of the United Nations and OSCE.\\n\\n22\\n00:02:20,560 --> 00:02:23,600\\nRussia continually displayed calm and patience.\\nWe repeatedly called for returning to the\\n\\n23\\n00:02:23,600 --> 00:02:28,700\\nnegotiating table and did not deviate from\\nthis position of ours even after the unilateral\\n\\n24\\n00:02:28,700 --> 00:02:33,049\\nproclamation of Kosovo\\'s independence. However\\nour persistent proposals to the Georgian side\\n\\n25\\n00:02:33,050 --> 00:02:38,450\\nto conclude agreements with Abkhazia and South\\nOssetia on the non-use of force remained unanswered.\\n\\n26\\n00:02:38,450 --> 00:02:43,970\\nRegrettably, they were ignored also by NATO\\nand even at the United Nations.\\n\\n27\\n00:02:43,970 --> 00:02:50,970\\nIt stands quite clear now: a peaceful resolution\\nof the conflict was not part of Tbilisi\\'s\\n\\n28\\n00:02:52,570 --> 00:02:56,709\\nplan. The Georgian leadership was methodically\\npreparing for war, while the political and\\n\\n29\\n00:02:56,710 --> 00:03:03,240\\nmaterial support provided by their foreign\\nguardians only served to reinforce the perception\\n\\n30\\n00:03:03,240 --> 00:03:05,000\\nof their own impunity.\\n\\n31\\n00:03:05,000 --> 00:03:12,000\\nTbilisi made its choice during the night of\\nAugust 8, 2008. Saakashvili opted for genocide\\n\\n32\\n00:03:14,390 --> 00:03:20,130\\nto accomplish his political objectives. By\\ndoing so he himself dashed all the hopes for\\n\\n33\\n00:03:20,130 --> 00:03:25,740\\nthe peaceful coexistence of Ossetians, Abkhazians\\nand Georgians in a single state. The peoples\\n\\n34\\n00:03:25,740 --> 00:03:32,740\\nof South Ossetia and Abkhazia have several\\ntimes spoken out at referendums in favor of\\n\\n35\\n00:03:34,490 --> 00:03:40,270\\nindependence for their republics. It is our\\nunderstanding that after what has happened\\n\\n36\\n00:03:40,270 --> 00:03:45,000\\nin Tskhinval and what has been planned for\\nAbkhazia they have the right to decide their\\n\\n37\\n00:03:45,000 --> 00:03:45,380\\ndestiny by themselves.\\n\\n38\\n00:03:45,380 --> 00:03:51,870\\nThe Presidents of South Ossetia and Abkhazia,\\nbased on the results of the referendums conducted\\n\\n39\\n00:03:51,870 --> 00:03:58,870\\nand on the decisions taken by the Parliaments\\nof the two republics, appealed to Russia to\\n\\n40\\n00:04:04,060 --> 00:04:07,520\\nrecognize the state sovereignty of South Ossetia\\nand Abkhazia. The Federation Council and the\\n\\n41\\n00:04:07,520 --> 00:04:14,520\\nState Duma voted in support of those appeals.\\n\\n42\\n00:04:16,069 --> 00:04:23,069\\nA decision needs to be taken based on the\\nsituation on the ground. Considering the freely\\n\\n43\\n00:04:26,930 --> 00:04:31,160\\nexpressed will of the Ossetian and Abkhaz\\npeoples and being guided by the provisions\\n\\n44\\n00:04:31,160 --> 00:04:37,350\\nof the UN Charter, the 1970 Declaration on\\nthe Principles of International Law Governing\\n\\n45\\n00:04:37,350 --> 00:04:41,520\\nFriendly Relations Between States, the CSCE\\nHelsinki Final Act of 1975 and other fundamental\\n\\n46\\n00:04:41,520 --> 00:04:46,750\\ninternational instruments, I signed Decrees\\non the recognition by the Russian Federation\\n\\n47\\n00:04:46,750 --> 00:04:48,389\\nof South Ossetia\\'s and Abkhazia\\'s independence.\\n\\n48\\n00:04:48,389 --> 00:04:55,389\\nRussia calls on other states to follow its\\nexample. This is not an easy choice to make,\\n\\n49\\n00:04:56,630 --> 00:05:03,630\\nbut it represents the only possibility to\\nsave human lives.',\n", + " 'bytes': 5769,\n", + " 'sha1': 'jmvexq759g1wpwjj5oxi7lwfi45cp71',\n", + " 'parent_id': 98765302,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 153951764,\n", + " 'timestamp': '2015-03-19T13:07:26Z',\n", + " 'user': {'id': 2335816, 'text': 'Great Brightstar'},\n", + " 'page': {'id': 26843935,\n", + " 'title': 'Dmitry Medvedev address on 26 August 2008 regarding Abkhazia & South Ossetia.ogg.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:01,160 --> 00:00:03,400\\nД.МЕДВЕДЕВ: Уважаемые граждане\\nРоссии!\\n\\n1\\n00:00:03,400 --> 00:00:08,600\\nВы, безусловно, знаете о\\nтрагедии Южной Осетии:\\n\\n2\\n00:00:08,600 --> 00:00:12,179\\nночной расстрел Цхинвала\\nгрузинскими войсками привел\\n\\n3\\n00:00:12,179 --> 00:00:18,350\\nк гибели сотен наших мирных\\nграждан, погибли российские\\n\\n4\\n00:00:18,350 --> 00:00:23,460\\nмиротворцы, до конца выполнившие\\nсвой долг по защите женщин,\\n\\n5\\n00:00:23,460 --> 00:00:26,320\\nдетей и стариков.\\n\\n6\\n00:00:26,320 --> 00:00:30,179\\nГрузинское руководство\\nв нарушение Устава ООН,\\n\\n7\\n00:00:30,179 --> 00:00:34,550\\nсвоих обязательств по международным\\nсоглашениям, вопреки здравому\\n\\n8\\n00:00:34,550 --> 00:00:39,430\\nсмыслу развязало вооружённый\\nконфликт, жертвами которого\\n\\n9\\n00:00:39,430 --> 00:00:46,430\\nстали мирные люди. Эта же\\nучасть ждала Абхазию. Очевидно,\\n\\n10\\n00:00:46,480 --> 00:00:48,828\\nв Тбилиси рассчитывали\\nна блицкриг, который поставил\\n\\n11\\n00:00:48,829 --> 00:00:53,820\\nбы мировое сообщество перед\\nсвершившимся фактом. Был\\n\\n12\\n00:00:53,820 --> 00:00:57,829\\nвыбран самый бесчеловечный\\nспособ добиться своей цели\\n\\n13\\n00:00:57,829 --> 00:01:02,960\\n— присоединить Южную Осетию\\nценой уничтожения целого\\n\\n14\\n00:01:02,960 --> 00:01:03,370\\nнарода.\\n\\n15\\n00:01:03,370 --> 00:01:10,370\\nЭто была не первая попытка.\\nВ 1991 году президент Грузии\\n\\n16\\n00:01:10,540 --> 00:01:14,950\\nГамсахурдия с призывом\\n«Грузия — для грузин» — только\\n\\n17\\n00:01:14,950 --> 00:01:18,370\\nвдумайтесь в эти слова\\n— приказал штурмовать Сухум\\n\\n18\\n00:01:18,370 --> 00:01:24,600\\nи Цхинвал. Тысячи погибших,\\nдесятки тысяч беженцев,\\n\\n19\\n00:01:24,600 --> 00:01:29,669\\nразорённые сёла — вот к\\nчему тогда это привело.\\n\\n20\\n00:01:29,670 --> 00:01:32,740\\nИменно Россия в тот момент\\nостановила истребление\\n\\n21\\n00:01:32,740 --> 00:01:36,890\\nабхазского и осетинского\\nнародов. Наша страна стала\\n\\n22\\n00:01:36,890 --> 00:01:40,680\\nпосредником и миротворцем,\\nдобиваясь политического\\n\\n23\\n00:01:40,680 --> 00:01:44,960\\nурегулирования. При этом\\nмы неизменно исходили из\\n\\n24\\n00:01:44,960 --> 00:01:49,970\\nпризнания территориальной\\nцелостности Грузии.\\n\\n25\\n00:01:49,970 --> 00:01:54,020\\nГрузинское руководство\\nвыбрало другой путь: срыв\\n\\n26\\n00:01:54,020 --> 00:01:58,380\\nпереговорного процесса,\\nигнорирование достигнутых\\n\\n27\\n00:01:58,380 --> 00:02:02,770\\nдоговорённостей, политические\\nи военные провокации, нападения\\n\\n28\\n00:02:02,770 --> 00:02:06,250\\nна миротворцев — всё это\\nгрубо нарушало режим в\\n\\n29\\n00:02:06,250 --> 00:02:12,590\\nзонах конфликта, установленный\\nпри поддержке ООН и ОБСЕ.\\n\\n30\\n00:02:12,590 --> 00:02:17,090\\nРоссия проявляла выдержку\\nи терпение. Мы неоднократно\\n\\n31\\n00:02:17,090 --> 00:02:20,770\\nпризывали вернуться за\\nстол переговоров и не отошли\\n\\n32\\n00:02:20,770 --> 00:02:24,830\\nот своей позиции даже после\\nодностороннего провозглашения\\n\\n33\\n00:02:24,830 --> 00:02:29,960\\nнезависимости Косово. Но\\nнаши настойчивые предложения\\n\\n34\\n00:02:29,960 --> 00:02:33,230\\nк грузинской стороне заключить\\nс Абхазией и Южной Осетией\\n\\n35\\n00:02:33,230 --> 00:02:38,019\\nдоговорённости о неприменении\\nсилы остались без ответа.\\n\\n36\\n00:02:38,020 --> 00:02:45,020\\nК сожалению, их проигнорировали\\nи в НАТО, и даже в ООН.\\n\\n37\\n00:02:45,030 --> 00:02:48,370\\nСейчас понятно: мирное\\nразрешение конфликта в\\n\\n38\\n00:02:48,370 --> 00:02:52,750\\nпланы Тбилиси не входило\\n— грузинское руководство\\n\\n39\\n00:02:52,750 --> 00:02:56,530\\nметодично готовилось к\\nвойне, а политическая и\\n\\n40\\n00:02:56,530 --> 00:03:00,090\\nматериальная поддержка\\nвнешних покровителей только\\n\\n41\\n00:03:00,090 --> 00:03:04,290\\nукрепляла ощущение собственной\\nбезнаказанности.\\n\\n42\\n00:03:04,290 --> 00:03:10,069\\nВ ночь на 8 августа 2008 года\\nв Тбилиси сделали свой\\n\\n43\\n00:03:10,069 --> 00:03:13,970\\nвыбор: Саакашвили избрал\\nгеноцид для решения своих\\n\\n44\\n00:03:13,970 --> 00:03:19,650\\nполитических задач. Этим\\nон собственноручно перечеркнул\\n\\n45\\n00:03:19,650 --> 00:03:25,650\\nвсе надежды на мирное существование\\nосетин, абхазов и грузин\\n\\n46\\n00:03:25,650 --> 00:03:30,890\\nв одном государстве. Народы\\nЮжной Осетии и Абхазии\\n\\n47\\n00:03:30,890 --> 00:03:34,458\\nнеоднократно высказывались\\nна референдумах в поддержку\\n\\n48\\n00:03:34,459 --> 00:03:39,840\\nнезависимости своих республик.\\nМы понимаем, что после того,\\n\\n49\\n00:03:39,840 --> 00:03:43,459\\nчто произошло в Цхинвале\\nи планировалось в Абхазии,\\n\\n50\\n00:03:43,459 --> 00:03:46,209\\nони имеют право решить\\nсвою судьбу сами.\\n\\n51\\n00:03:46,209 --> 00:03:50,980\\nПрезиденты Южной Осетии\\nи Абхазии, основываясь\\n\\n52\\n00:03:50,980 --> 00:03:54,649\\nна результатах референдумов\\nи решениях республиканских\\n\\n53\\n00:03:54,650 --> 00:03:59,180\\nпарламентов, обратились\\nк России с просьбой о признании\\n\\n54\\n00:03:59,180 --> 00:04:03,640\\nгосударственного суверенитета\\nЮжной Осетии и Абхазии.\\n\\n55\\n00:04:03,640 --> 00:04:08,359\\nСовет Федерации и Государственная\\nДума проголосовали в поддержку\\n\\n56\\n00:04:08,360 --> 00:04:11,380\\nэтих обращений.\\n\\n57\\n00:04:11,380 --> 00:04:16,649\\nИсходя из сложившейся ситуации\\nнеобходимо принять решение.\\n\\n58\\n00:04:16,649 --> 00:04:19,940\\nУчитывая свободное волеизъявление\\nосетинского и абхазского\\n\\n59\\n00:04:19,940 --> 00:04:25,000\\nнародов, руководствуясь\\nположениями Устава ООН,\\n\\n60\\n00:04:25,000 --> 00:04:31,160\\nдекларацией 1970 года о принципах\\nмеждународного права, касающихся\\n\\n61\\n00:04:31,160 --> 00:04:36,070\\nдружественных отношений\\nмежду государствами, Хельсинкским\\n\\n62\\n00:04:36,070 --> 00:04:42,060\\nЗаключительным актом СБСЕ\\n1975 года, другими основополагающими\\n\\n63\\n00:04:42,060 --> 00:04:47,410\\nмеждународными документами\\n— я подписал указы о признании\\n\\n64\\n00:04:47,410 --> 00:04:51,630\\nРоссийской Федерацией\\nнезависимости Южной Осетии\\n\\n65\\n00:04:51,630 --> 00:04:55,200\\nи независимости Абхазии.\\n\\n66\\n00:04:55,200 --> 00:04:58,070\\nРоссия призывает другие\\nгосударства последовать\\n\\n67\\n00:04:58,070 --> 00:05:03,440\\nеё примеру. Это нелёгкий\\nвыбор, но это единственная\\n\\n68\\n00:05:03,440 --> 00:05:05,969\\nвозможность сохранить\\nжизни людей.',\n", + " 'bytes': 8848,\n", + " 'sha1': '0wlwo973evtxir9e0s33181a1x5mzlx',\n", + " 'parent_id': 98765319,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 283493958,\n", + " 'timestamp': '2018-01-28T13:44:37Z',\n", + " 'user': {'text': '78.131.202.173'},\n", + " 'page': {'id': 26886708,\n", + " 'title': 'Star Spangled Banner instrumental.ogg.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00 --> 00:00:04\\nO, powiedz, czy widzisz\\n\\n2\\n00:00:04 --> 00:00:07\\nw pierwszym świetle świtu\\n\\n3\\n00:00:09 --> 00:00:11\\nCośmy tak dumnie sławili\\n\\n4\\n00:00:12 --> 00:00:15\\nw ostatnim blasku zmierzchu\\n\\n5\\n00:00:17 --> 00:00:20\\nNa czyje to pasy i błyszczące gwiazdy\\n\\n6\\n00:00:21 --> 00:00:24\\nw szaleńczej walce\\n\\n7\\n00:00:25 --> 00:00:29\\nPonad szańcami spoglądaliśmy,\\n\\n8\\n00:00:30 --> 00:00:33\\njak dumnie łopotały\\n\\n9\\n00:00:34 --> 00:00:38\\nOślepiająca czerwień rakiet,\\n\\n10\\n00:00:38 --> 00:00:42\\nbomby rozdzierające powietrze\\n\\n11\\n00:00:43 --> 00:00:46\\nDowodziły przez całą noc,\\n\\n12\\n00:00:47 --> 00:00:50\\nże nasz sztandar ciągle tam trwa.\\n\\n13\\n00:00:51 --> 00:00:56\\nO, powiedz, czy jeszcze gwiaździsty\\n\\n14\\n00:00:57 --> 00:01:02\\nsztandar powiewa\\n\\n15\\n00:01:03 --> 00:01:08\\nPonad krajem wolnych,\\n\\n16\\n00:01:09 --> 00:01:16\\nojczyzną dzielnych ludzi?',\n", + " 'bytes': 858,\n", + " 'sha1': 'ht303mpo0wocy1wqisuqv23jy2f73ik',\n", + " 'parent_id': 185692092,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 98951979,\n", + " 'timestamp': '2013-06-27T06:27:28Z',\n", + " 'user': {'id': 52724, 'text': 'Sergey kudryavtsev'},\n", + " 'page': {'id': 26900565,\n", + " 'title': 'Ru-лошадь.ogg.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:01,300 лошадь'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,300\\nлошадь',\n", + " 'bytes': 44,\n", + " 'sha1': 'hq4ydjc5o79snynujgifnfetoxtik0u',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 98968067,\n", + " 'timestamp': '2013-06-27T11:48:17Z',\n", + " 'user': {'id': 1435078, 'text': 'రహ్మానుద్దీన్'},\n", + " 'page': {'id': 26906758,\n", + " 'title': 'Type in Telugu on Telugu Wikipedia.webm.te.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,400\\nతెలుగు వికీపీడియాలో తెలుగులో ఎలా టైపు చేయాలి?<br />\\n<small>(రూపొందించినది:Psubhashish, అనువాదం : రహ్మానుద్దీన్)<br />\\nలైసెన్స్ : CC-BY-SA 3.0</small>\\n\\n2\\n00:00:04,600 --> 00:00:06,800\\nte.wikipedia.org వద్ద వికీపీడియాను సందర్శించండి\\n\\n3\\n00:00:06,000 --> 00:00:08,400\\nవెతుకు అని ఉన్న సెర్చ్ బార్ పై క్లిక్ చేయండి\\n\\n4\\n00:00:09,600 --> 00:00:16,800\\nకీబోర్డ్ బొమ్మ పై క్లిక్ చేసి \"తెలుగు\"ను ఎంచుకోండి\\n\\n5\\n00:00:17,000 --> 00:00:25,400\\nమీకు సౌకర్యంగా ఉండే కీబోర్డ్ రకాన్ని(లిప్యంతరీకరణ లేదా ఇ\\u200dన్స్క్రిప్ట్ లేదా ఇ\\u200dన్స్క్రిప్ట్ 2) ను ఎంచుకోండి\\n\\n6\\n00:00:26,600 --> 00:00:34,800\\nతెలుగు వికీపీడియాలో మార్పులు చేయండి, తెలుగులోనే టైపు చేయండి :)',\n", + " 'bytes': 1321,\n", + " 'sha1': '26njc2wbvwqd4y5umptto058giypp58',\n", + " 'parent_id': 98967980,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 98968437,\n", + " 'timestamp': '2013-06-27T11:54:01Z',\n", + " 'user': {'id': 1435078, 'text': 'రహ్మానుద్దీన్'},\n", + " 'page': {'id': 26907042,\n", + " 'title': 'Type in Telugu on Telugu Wikimedia projects.webm.te.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'changed timing',\n", + " 'text': '1\\n00:00:03,600 --> 00:00:06,800\\nte.wikipedia.org వద్ద వికీపీడియాను సందర్శించండి\\n\\n2\\n00:00:06,000 --> 00:00:08,400\\nవెతుకు అని ఉన్న సెర్చ్ బార్ పై క్లిక్ చేయండి\\n\\n3\\n00:00:09,600 --> 00:00:16,800\\nకీబోర్డ్ బొమ్మ పై క్లిక్ చేసి \"తెలుగు\"ను ఎంచుకోండి\\n\\n4\\n00:00:17,000 --> 00:00:25,400\\nమీకు సౌకర్యంగా ఉండే కీబోర్డ్ రకాన్ని(లిప్యంతరీకరణ లేదా ఇ\\u200dన్స్క్రిప్ట్ లేదా ఇ\\u200dన్స్క్రిప్ట్ 2) ను ఎంచుకోండి\\n\\n5\\n00:00:26,600 --> 00:00:34,800\\nతెలుగు వికీపీడియాలో మార్పులు చేయండి, తెలుగులోనే టైపు చేయండి :)',\n", + " 'bytes': 977,\n", + " 'sha1': 'i7mxnfzgw2qqcrfls4kik8q7o6d18va',\n", + " 'parent_id': 98968270,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 98968679,\n", + " 'timestamp': '2013-06-27T11:58:56Z',\n", + " 'user': {'id': 1435078, 'text': 'రహ్మానుద్దీన్'},\n", + " 'page': {'id': 26907221,\n", + " 'title': 'Type in Telugu on Telugu Wikimedia projects.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,400\\nHow to type Telugu on Telugu Wikipedia\\n\\n2\\n00:00:03,000 --> 00:00:04,400\\n(Production by User:Psubhashish, Translation: User:రహ్మానుద్దీన్)\\n\\n3\\n00:00:04,600 --> 00:00:06,800\\nVisit Telugu Wikipedia at te.wikipedia.org\\n\\n4\\n00:00:06,000 --> 00:00:08,400\\nClick on the search bar\\n\\n5\\n00:00:09,600 --> 00:00:16,800\\nClick on the Keyboard icon and select \"తెలుగు\"\\n\\n6\\n00:00:17,000 --> 00:00:25,400\\nSelect the layout (లిప్యంతరీకరణ/ఇ\\u200dన్స్క్రిప్ట్ /ఇ\\u200dన్స్క్రిప్ట్ 2)\\n\\n7\\n00:00:26,600 --> 00:00:34,800\\nKeep typing, keep Editing Telugu Wikipedia :)',\n", + " 'bytes': 679,\n", + " 'sha1': '9qzqf9kz98wbhgb8awrbf6jv1nbe4jk',\n", + " 'parent_id': 98968663,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 444368896,\n", + " 'timestamp': '2020-08-28T06:46:34Z',\n", + " 'user': {'id': 291679, 'text': 'Anon126'},\n", + " 'page': {'id': 26911437,\n", + " 'title': 'WWV time signal - 20090904.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'fix announcement at 15:02 UTC',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:08,000\\nAt the tone , fifteen hours , zero minute , coordinated universal time ( UTC) *beeps* \\n\\n2\\n00:00:09,100 --> 00:00:15,000\\nNational Institute of Standards and Technology time: this is Radio Station WWV, Fort Collins Colorado, \\n\\n3\\n00:00:15,000 --> 00:00:23,000\\nbroadcasting on internationally allocated standard carrier frequencies of two-point-five, five, ten, fifteen, \\n\\n4\\n00:00:23,000 --> 00:00:29,000\\nand twenty megahertz, providing time of day, standard time interval, and other related information. Inquiries regarding \\n\\n5\\n00:00:29,000 --> 00:00:37,000\\nthese transmissions may be directed to the National Institute of Standards and Technology, Radio Station WWV, 2000 East \\n\\n6\\n00:00:37,000 --> 00:00:42,200\\nCounty Road 58, Fort Collins, Colorado, 80524.\\n\\n7\\n00:01:01,200 --> 00:01:08,300 \\nAt the tone , fifteen hours , one minute , coordinated universal time (UTC) *beeps*\\n\\n8\\n00:02:00,100 --> 00:02:08\\nAt the tone , fifteen hours , two minutes , coordinated universal time (UTC) *beeps*',\n", + " 'bytes': 1019,\n", + " 'sha1': '0p3s6sqkgm83iw9qnjkubl7dtgzaey9',\n", + " 'parent_id': 414120507,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99141906,\n", + " 'timestamp': '2013-06-29T23:29:49Z',\n", + " 'user': {'text': '109.10.10.239'},\n", + " 'page': {'id': 26963798,\n", + " 'title': 'En-us-sketch.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:01,000 Sketch'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,000\\nSketch',\n", + " 'bytes': 38,\n", + " 'sha1': '1qfwqxp20s6ckraegz5697jrwv4k0ab',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99150353,\n", + " 'timestamp': '2013-06-30T01:59:03Z',\n", + " 'user': {'text': '36.74.20.143'},\n", + " 'page': {'id': 26965957,\n", + " 'title': 'Crazytales-soundtest.ogg.id.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:03,300 Mary Mempunyai Seekor Anak Kambing 2 00:00:03,300 --> 00:00:05,000 Yang memiliki Bulu Putih, Seputih salju 3 00:00:06,000 --> ...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,300\\nMary Mempunyai Seekor Anak Kambing\\n\\n2\\n00:00:03,300 --> 00:00:05,000\\nYang memiliki Bulu Putih, Seputih salju\\n\\n3\\n00:00:06,000 --> 00:00:09,600\\nDan kemana-mana Mary pergi, Anak kambing akan ikut',\n", + " 'bytes': 223,\n", + " 'sha1': '1k5jg1p15ylwgmvb7gx1yar0vg0fqgx',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99217313,\n", + " 'timestamp': '2013-07-01T01:38:35Z',\n", + " 'user': {'id': 2743376, 'text': 'Iggoul2'},\n", + " 'page': {'id': 26984553,\n", + " 'title': 'Labrador barking on command.theora.ogv.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:03,800 --> 00:00:05,000 [Ladrido] 2 00:00:05,000 --> 00:00:06,000 HABLAR. 3 00:00:06,000 --> 00:00:07,000 [Ladrido de nuevo]'\",\n", + " 'text': '1\\n00:00:03,800 --> 00:00:05,000\\n[Ladrido]\\n\\n2\\n00:00:05,000 --> 00:00:06,000\\nHABLAR.\\n\\n3\\n00:00:06,000 --> 00:00:07,000\\n[Ladrido de nuevo]',\n", + " 'bytes': 134,\n", + " 'sha1': 'tkrtrnxz2sehluaex4virpx8764ybzi',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99235276,\n", + " 'timestamp': '2013-07-01T09:22:36Z',\n", + " 'user': {'text': '130.209.144.234'},\n", + " 'page': {'id': 26988601,\n", + " 'title': 'Bright College Years.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,200 Bright College years, with pleasure rife, 2 00:00:05,300 --> 00:00:09,200 The shortest, gladdest years of life; 3 00:00:09,300...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,200\\nBright College years, with pleasure rife,\\n\\n2\\n00:00:05,300 --> 00:00:09,200\\nThe shortest, gladdest years of life;\\n\\n3\\n00:00:09,300 --> 00:00:14,200\\nHow swiftly are ye gliding by!\\n\\n4\\n00:00:14,300 --> 00:00:18,200\\nOh, why doth time so quickly fly?\\n\\n5\\n00:00:18,300 --> 00:00:23,200\\nThe seasons come, the seasons go,\\n\\n6\\n00:00:23,300 --> 00:00:28,200\\nThe earth is green or white with snow,\\n\\n7\\n00:00:28,300 --> 00:00:37,200\\nBut time and change shall naught avail\\n\\n8\\n00:00:37,300 --> 00:00:47,200\\nTo break the friendships formed at Yale.\\n\\n9\\n00:00:47,300 --> 00:00:52,200\\nIn after years, should troubles rise\\n\\n10\\n00:00:52,300 --> 00:00:57,200\\nTo cloud the blue of sunny skies,\\n\\n11\\n00:00:57,300 --> 00:01:03,200\\nHow bright will seem, through mem\\'ry\\'s haze\\n\\n12\\n00:01:03,300 --> 00:01:07,200\\nThose happy, golden, bygone days!\\n\\n13\\n00:01:07,300 --> 00:01:13,200\\nOh, let us strive that ever we\\n\\n14\\n00:01:13,300 --> 00:01:18,200\\nMay let these words our watch-cry be,\\n\\n15\\n00:01:18,300 --> 00:01:29,200\\nWhere\\'er upon life\\'s sea we sail:\\n\\n16\\n00:01:29,300 --> 00:01:39,200\\n\"For God, for Country and for Yale!\"',\n", + " 'bytes': 1120,\n", + " 'sha1': 'ecn23f7zlwshcnwmhrpxmz1twf2ulns',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 140215909,\n", + " 'timestamp': '2014-11-22T04:08:56Z',\n", + " 'user': {'id': 1216133, 'text': 'Champion'},\n", + " 'page': {'id': 27018067,\n", + " 'title': 'Star Spangled Banner instrumental.ogg.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1\\n00:00:00 --> 00:00:04\\nDi' dunque che alle prime\\n\\n2\\n00:00:04 --> 00:00:07\\nluci dell'alba puoi vedere\\n\\n3\\n00:00:09 --> 00:00:11\\nCiò che salutammo fieri\\n\\n4\\n00:00:12 --> 00:00:15\\nall'ultimo raggio del crepuscolo?\\n\\n5\\n00:00:17 --> 00:00:20\\nLe cui larghe striscie e brillanti stelle,\\n\\n6\\n00:00:21 --> 00:00:24\\nnella battaglia pericolosa,\\n\\n7\\n00:00:25 --> 00:00:29\\nsui bastioni che guardavamo,\\n\\n8\\n00:00:30 --> 00:00:33\\nsventolavano gagliardamente?\\n\\n9\\n00:00:34 --> 00:00:38\\nE i rossi lampi dei razzi,\\n\\n10\\n00:00:38 --> 00:00:42\\nle bombe che esplodevano in aria\\n\\n11\\n00:00:43 --> 00:00:46\\nHanno dato prova nella notte\\n\\n12\\n00:00:47 --> 00:00:50\\nche la nostra bandiera ancora era là.\\n\\n13\\n00:00:51 --> 00:00:56\\nì dunque, sventola ancora\\n\\n14\\n00:00:57 --> 00:01:02\\nil nostro stendardo brillante di stelle,\\n\\n15\\n00:01:03 --> 00:01:08\\nsulla terra dei liberi\\n\\n16\\n00:01:09 --> 00:01:16\\ne la casa dei forti?\",\n", + " 'bytes': 886,\n", + " 'sha1': '3n138jc2c9by4s52pnhls0f0n78hw5z',\n", + " 'parent_id': 99317009,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 629929227,\n", + " 'timestamp': '2022-02-15T08:17:31Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 27031406,\n", + " 'title': 'Mazurek Dabrowskiego.ogg.pl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,234\\nJeszcze Polska nie zginęła,\\n\\n2\\n00:00:03,296 --> 00:00:06,000\\nKiedy my żyjemy.\\n\\n3\\n00:00:06,600 --> 00:00:09,793\\nCo nam obca przemoc wzięła,\\n\\n4\\n00:00:09,843 --> 00:00:12,764\\nSzablą odbierzemy.\\n\\n5\\n00:00:13,242 --> 00:00:16,548\\nMarsz, marsz, Dąbrowski,\\n\\n6\\n00:00:16,597 --> 00:00:19,500\\nZ ziemi włoskiej do Polski.\\n\\n7\\n00:00:19,757 --> 00:00:23,243\\nZa twoim przewodem\\n\\n8\\n00:00:23,263 --> 00:00:26,225\\nZłączym się z narodem.\\n\\n9\\n00:00:26,691 --> 00:00:29,986\\nMarsz, marsz, Dąbrowski,\\n\\n10\\n00:00:30,037 --> 00:00:33,460\\nZ ziemi włoskiej do Polski.\\n\\n11\\n00:00:33,503 --> 00:00:36,891\\nZa twoim przewodem\\n\\n12\\n00:00:36,925 --> 00:00:40,278\\nZłączym się z narodem.',\n", + " 'bytes': 695,\n", + " 'sha1': 'tc99xlevydd46juvyqhkaxydfvzax3d',\n", + " 'parent_id': 629841355,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 442667099,\n", + " 'timestamp': '2020-08-24T12:05:44Z',\n", + " 'user': {'id': 5617889, 'text': 'Sabelöga'},\n", + " 'page': {'id': 27035774,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,420 --> 00:00:09,260\\nWikipedia, en trovärdig källa?\\n\\n2\\n00:00:14,720 --> 00:00:20,210\\nJa,mina kära elever , tack för den trevliga\\nveckan. Innan ni går, det postmoderna\\n\\n3\\n00:00:20,010 --> 00:00:26,460\\nsamhället ur ett stoicistiskt perspektiv,\\n475 sidor, till på måndag. Trevlig helg,\\n\\n4\\n00:00:26,660 --> 00:00:28,200\\nTack!\\n\\n5\\n00:00:46,320 --> 00:00:52,440\\nDu är min favoritelev, tack!\\n\\n6\\n00:00:57,320 --> 00:00:59,420\\nFöljande måndag\\n\\n7\\n00:01:12,340 --> 00:01:23,070\\nJag har ju sagt att Wikipedia inte är en\\ntrovärdig källa, ut, ut! Ut ur mitt rum!\\n\\n8\\n00:01:36,860 --> 00:01:53,240\\nÄven du? Jag är besviken, ut, ut!\\n\\n9\\n00:01:58,940 --> 00:02:04,230\\nJag blir så arg, arg. Jag har ju för fasen, fasen!\\n\\n10\\n00:02:19,490 --> 00:02:26,470\\nKänner du igen dig? Du är inte ensam.\\nWikipedia är Sveriges sjätte mest\\n\\n11\\n00:02:26,500 --> 00:02:31,460\\nbesökta sida, så chansen är ganska stor\\natt dina elever går in och hittar fakta och\\n\\n12\\n00:02:31,480 --> 00:02:38,780\\ninformation just där. Det kanske även du\\nsom pedagog gör? Men hur går det då att\\n\\n13\\n00:02:38,800 --> 00:02:42,020\\nveta om en Wikipediaartikel är pålitlig\\neller inte?\\n\\n14\\n00:02:42,610 --> 00:02:50,210\\nJag skulle ge dig tre tips. De tipsen, det\\när Kä, Di och Hi.\\n\\n15\\n00:02:50,420 --> 00:02:56,880\\nKä, det är källor. Det finns längst ner på\\nWikipedias artikel. Titta efter hur många det är.\\n\\n16\\n00:02:57,220 --> 00:02:59,760\\nOm du tycker att det är bra källor.\\n\\n17\\n00:03:00,080 --> 00:03:02,600\\nKlicka dig gärna vidare på en källa för att\\nse var du hamnar. \\n\\n18\\n00:03:03,480 --> 00:03:08,160\\nDen andra, det är Di, det betyder\\ndiskussion. Till varje artikel finns\\n\\n19\\n00:03:08,180 --> 00:03:12,800\\nnämligen en flik, gå in där och titta på\\nvad man pratar om. Pratar man ens om\\n\\n20\\n00:03:12,820 --> 00:03:16,070\\nnånting? Om man gör det man brukar\\nprata om innehåll och struktur. \\n\\n21\\n00:03:16,580 --> 00:03:21,560\\nFinns det diskussion till artikeln, gör det \\noftast artikeln bättre. Det visar många varit inne\\n\\n22\\n00:03:21,660 --> 00:03:24,950\\noch granskat och funderat på vad som\\nstår i artikeln och hur den ska se ut. \\n\\n23\\n00:03:25,780 --> 00:03:32,990\\nDet sista det är Hi, historik. Det också en\\nflik. Kolla där hur många som har lagt till\\n\\n24\\n00:03:33,750 --> 00:03:38,010\\ninformation och tagit bort information. Ju\\nfler som har varit med att bidragit och\\n\\n25\\n00:03:38,130 --> 00:03:43,170\\npratat och diskuterat, desto bättre. Det\\ngör artikeln mycket mer trovärdig. \\n\\n26\\n00:03:44,140 --> 00:03:50,510\\nDet är alltså tre enkla grejer, Kä, Di och Hi. \\nTitta gärna på det här tillsammans med dina\\n\\n27\\n00:03:50,560 --> 00:03:54,820\\nelever för att bedöma en artikels\\ntrovärdighet på Wikipedia. \\n\\n28\\n00:03:55,700 --> 00:03:59,150\\nPå Wikimedia Sverige, där arbetar vi\\nbland annat med utbildningsprogrammet\\n\\n29\\n00:03:59,240 --> 00:04:05,360\\nWikipedia i Utbildning. Hör gärna av dig\\nom du är nyfiken, fundersam eller kanske\\n\\n30\\n00:04:05,870 --> 00:04:11,520\\nskeptisk? Vi vill höra ifrån dig. Det vi gör,\\när att göra Wikipedia mer tillgängligt,\\n\\n31\\n00:04:12,040 --> 00:04:18,150\\nanvändbart och förståeligt. Vi vill\\njättegärna höra ifrån just dig. \\n\\n32\\n00:04:26,190 --> 00:04:29,980\\nWikipedia i utbildning\\n\\n33\\n00:04:32,690 --> 00:04:36,340\\nHar du fått nog av Wikipedia?\\nKan du inte få nog av Wikipedia?\\n\\n34\\n00:04:37,980 --> 00:04:41,430\\nHör av dig till\\nutbildning@wikimedia.se',\n", + " 'bytes': 3432,\n", + " 'sha1': 'qb0riduw6m9itgp9yb8e4tyk88esokq',\n", + " 'parent_id': 442666739,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99369009,\n", + " 'timestamp': '2013-07-03T11:58:27Z',\n", + " 'user': {'id': 2742126, 'text': 'Jan Ainali (WMSE)'},\n", + " 'page': {'id': 27035786,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,270 --> 00:00:10,230 Wikipedia, a trustworthy source? 2 00:00:14,810 --> 00:00:19,650 Well, my dear students, thanks for a nice week. Before you go,...'\",\n", + " 'text': \"1\\n00:00:01,270 --> 00:00:10,230\\nWikipedia, a trustworthy source?\\n\\n2\\n00:00:14,810 --> 00:00:19,650\\nWell, my dear students, thanks for a nice\\nweek. Before you go, the post-modern\\n\\n3\\n00:00:19,720 --> 00:00:25,870\\nsociety from a stoicistisc perspective,\\n475 pages, hand in on Monday.\\n\\n4\\n00:00:26,330 --> 00:00:29,220\\nHave a nice weekend, \\nThank you!\\n\\n5\\n00:00:47,560 --> 00:00:51,760\\nYou are my favorite pupil, thank you!\\n\\n6\\n00:00:57,270 --> 00:00:58,820\\nNext Monday\\n\\n7\\n00:01:12,660 --> 00:01:21,950\\nI told you that Wikipedia is not a credible\\nsource, out, out! Get out of my room!\\n\\n8\\n00:01:38,750 --> 00:01:52,740\\nEven you? I'm disappointed, out, out!\\n\\n9\\n00:01:59,420 --> 00:02:06,960\\nI get so angry, angry. \\nI've bloody well...\\n\\n10\\n00:02:19,160 --> 00:02:25,930\\nDo you recognize yourself? You are not\\nalone. Wikipedia is Swedens sixth most\\n\\n11\\n00:02:26,060 --> 00:02:31,740\\nvisited page, so chances are pretty high\\nthat your students go there to find facts\\n\\n12\\n00:02:31,860 --> 00:02:37,690\\nand information, just there. Perhaps even\\nyou as educator do that?\\n\\n13\\n00:02:38,220 --> 00:02:42,120\\nBut how can you know whether the articles \\non Wikipedia are reliable or not?\\n\\n14\\n00:02:42,530 --> 00:02:49,940\\nI'll give you three tips. The tips, they are\\nSo, Ta and Hi.\\n\\n15\\n00:02:50,890 --> 00:02:54,860\\nSo, it is sources. They exists at the\\nbottom of the Wikipedia articles.\\n\\n16\\n00:02:55,760 --> 00:02:59,700\\nLook at how many it is and if you think they are good sources.\\n\\n17\\n00:02:59,980 --> 00:03:02,960\\nPlease do click through on\\nthe source to see where you end up.\\n\\n18\\n00:03:03,800 --> 00:03:10,630\\nSecond is Ta, this means Talk. For\\neach article, there is a tab, go in and see\\n\\n19\\n00:03:10,710 --> 00:03:14,580\\nwhat people are talking about. Do they\\neven talk about anything? If they are, it is\\n\\n20\\n00:03:14,690 --> 00:03:18,850\\nusually about content and structure. If\\nthere is a discussion about the article, it\\n\\n21\\n00:03:18,920 --> 00:03:22,640\\nusually makes the article better. It shows\\nmany have been in the article and studied\\n\\n22\\n00:03:22,720 --> 00:03:25,250\\nand considered what is in the article and\\nhow it should look like.\\n\\n23\\n00:03:26,020 --> 00:03:33,310\\nLast is Hi, History. That is also a tab.\\nCheck how many have added information\\n\\n24\\n00:03:33,440 --> 00:03:38,340\\nand removed information. The more\\ncontributers and people partaking in\\n\\n25\\n00:03:38,460 --> 00:03:43,080\\ndiscussions, the better.\\nIt makes article a lot more credible.\\n\\n26\\n00:03:44,190 --> 00:03:48,590\\nSo it is three simple things, So, Ta and Hi.\\n\\n27\\n00:03:48,790 --> 00:03:50,340\\nPlease take a look on this together with your\\n\\n28\\n00:03:50,420 --> 00:03:55,460\\nstudents in order to evaluate an article's\\ncredibility on Wikipedia.\\n\\n29\\n00:03:55,720 --> 00:03:59,780\\nOn Wikimedia Sweden, we are working\\nwith the education programme Wikipedia\\n\\n30\\n00:03:59,810 --> 00:04:06,020\\nin Education. Please let us know if you\\nare curious, thoughtful or maybe skeptical?\\n\\n31\\n00:04:06,400 --> 00:04:10,360\\nWe want to hear from you.\\nWhat we do, is to make Wikipedia\\n\\n32\\n00:04:10,460 --> 00:04:18,030\\naccessible, useful and understandable.\\nWe would really like to hear from you.\\n\\n33\\n00:04:24,240 --> 00:04:29,300\\nWikipedia in Education\\n\\n34\\n00:04:32,630 --> 00:04:37,240\\nAre you fed up with Wikipedia?\\nCan you not get enough of Wikipedia?\\n\\n35\\n00:04:37,970 --> 00:04:41,440\\nContact us on\\nutbildning@wikimedia.se\",\n", + " 'bytes': 3369,\n", + " 'sha1': 'mea5jk8iww4m7tl6a3wcv4kcq4qh8n5',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 225690829,\n", + " 'timestamp': '2016-12-10T00:31:26Z',\n", + " 'user': {'id': 1661481, 'text': 'AVIADOR'},\n", + " 'page': {'id': 27041972,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Ligerísima corrección de ortografía.',\n", + " 'text': '1\\n00:00:0,700 --> 00:00:4,400\\nHola, me llamo Trevor y estoy tratando de crear un Editor Visual para Wikipedia.\\n\\n2\\n00:00:4,500 --> 00:00:7,100\\nTodos pueden editar en Wikipedia, pero la mayoría se siente desorientada\\n\\n3\\n00:00:7,100 --> 00:00:11,100\\ndebido a que el código Wiki puede resultar difícil de entender. \\n\\n4\\n00:00:11,200 --> 00:00:13,900\\nCuando lo creamos hace doce años era alucinante,\\n\\n5\\n00:00:14,000 --> 00:00:17,000\\npero si queremos compartir el conocimiento con todos,\\n\\n6\\n00:00:17,900 --> 00:00:19,000\\ndebemos hacerlo más accesible.\\n\\n7\\n00:00:19,100 --> 00:00:23,000\\nEl editor visual es el cambio más importante que hayamos realizado jamás.\\n\\n8\\n00:00:24,000 --> 00:00:27,200\\nSerá como escribir una nota de papel o mandar un e-mail.\\n\\n9\\n00:00:27,100 --> 00:00:28,900\\nAún tiene sus pequeños fallos,\\n\\n10\\n00:00:29,000 --> 00:00:32,000\\npero si quieres saber cómo funcionará la Wikipedia en un futuro más cercano,\\n\\n11\\n00:00:33,000 --> 00:00:34,400\\ncrea una cuenta (por ejemplo) en Wikipedia en inglés,\\n\\n12\\n00:00:35,000 --> 00:00:38,000\\nve a Preferencias y activa la versión Alfa de VisualEditor.\\n\\n13\\n00:00:39,000 --> 00:00:42,100\\nIncluso nos puedes servir de ayuda si realizas alguna prueba y nos envías tus comentarios acerca del programa.\\n\\n14\\n00:00:42,200 --> 00:00:46,000\\nAsí que, por favor: únete a nosotros para que compartir el conocimiento humano sea más fácil.',\n", + " 'bytes': 1391,\n", + " 'sha1': 'l3yjpk627fy06a646qrnjavfvc47pq4',\n", + " 'parent_id': 225337307,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99468079,\n", + " 'timestamp': '2013-07-04T23:38:03Z',\n", + " 'user': {'id': 1561451, 'text': 'Supermicio'},\n", + " 'page': {'id': 27066124,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'fix',\n", + " 'text': \"1\\n00:00:00,800 --> 00:00:03,500\\nCiao! Sono Trevor, e sto aiutando a creare un VisualEditor per Wikipedia.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nTutti possono contribuire a Wikipedia, ma la maggior parte di chi ci prova è facilmente confusa\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\nperché il vecchio codice di Wikipedia è alquanto difficile da comprendere.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nÈ stato fantastico quando l'abbiamo creato dodici anni fa,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nma se abbiamo intenzione di portare la somma di tutta la conoscenza umana a tutti,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\ndobbiamo renderla facile da condividere.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nIl VisualEditor è il più grande cambiamento che abbiamo mai apportato a Wikipedia.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nCiò rende la scrittura su Wikipedia simile allo scrivere un saggio per la scuola o al mandare un'email\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nCi sono ancora un po' di bug,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nma se vuoi un assaggio di come Wikipedia ha intenzione di lavorare nel prossimo futuro,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\nCrea un account sulla Wikipedia in lingua inglese.\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nVai sulle tue preferenze, e attiva la versione alpha del VisualEditor.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nPuoi anche aiutarci usandolo e poi mandandoci un commento.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nQuindi, per favore, unisciti a noi nel rendere la somma di tutta la conoscenza umana facile da condividere.\",\n", + " 'bytes': 1493,\n", + " 'sha1': '7jq8t63wln8zh1z11thg4q2t2ry58wc',\n", + " 'parent_id': 99468043,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99468292,\n", + " 'timestamp': '2013-07-04T23:54:40Z',\n", + " 'user': {'id': 2460843, 'text': 'Revolution will'},\n", + " 'page': {'id': 27066215,\n", + " 'title': 'The National Anthem of the Republic of Korea.ogg.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:13,000 東海が乾き果て、白頭山が磨り減る時まで 2 00:00:13,500 --> 00:00:26,500 神のお護りくださる我が国...'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:13,000\\n東海が乾き果て、白頭山が磨り減る時まで\\n\\n2\\n00:00:13,500 --> 00:00:26,500\\n神のお護りくださる我が国、万歳\\n\\n3\\n00:00:27,700 --> 00:00:41,000\\n無窮花、三千里、華麗な山河、\\n\\n3\\n00:00:41,500 --> 00:00:55,000\\n大韓びとよ、大韓をとわに保全せよ',\n", + " 'bytes': 326,\n", + " 'sha1': 'rnmpjew99m1nayjit04xikiyvq4sxs9',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99478347,\n", + " 'timestamp': '2013-07-05T08:40:41Z',\n", + " 'user': {'id': 120596, 'text': 'Quahadi'},\n", + " 'page': {'id': 27068952,\n", + " 'title': 'Panorame Pelišca.09-13.2.ogv.sk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '0\\n00:00:00,000 --> 00:00:03,800\\nPanoramatické fotografie polostrova Pelješac. Fotografovanie v rokoch 2009-2013\\n\\n1\\n00:00:04,000 --> 00:00:07,800\\nVýhľad na Orebić a vlajka\\n\\n2\\n00:00:08,000 --> 00:00:11,800\\npohľad z pohoria v hornej časti polostrova\\n\\n3\\n00:00:12,000 --> 00:00:15,800\\nOrebić z Vižanice\\n\\n4\\n00:00:16,000 --> 00:00:19,800\\nOrebić od severozápadu\\n\\n5\\n00:00:20,000 --> 00:00:23,800\\nPolostrov pri pohľade z kanála\\n\\n6\\n00:00:24,000 --> 00:00:27,800\\nneúrodná pôda nad mestom\\n\\n7\\n00:00:28,000 --> 00:00:31,800\\nneúrodná pôda nad mestom\\n\\n8\\n00:00:32,000 --> 00:00:35,800\\nPriesmyk kapetan a ostrovy s Bile Ploče\\n\\n9.\\n00:00:36,000 --> 00:00:39,800\\nOskorusno z pohoria Viter\\n\\n10\\n00:00:40,000 --> 00:00:43,800\\nZagruda z pohoria Viter\\n\\n11\\n00:00:44,000 --> 00:00:47,800\\nPriesmyk kapetan\\n\\n12\\n00:00:48,000 --> 00:00:51,800\\nVinice na južnej strane\\n\\n13\\n00:00:52,000 --> 00:00:55,800\\nViganj od západu\\n\\n14\\n00:00:56,000 --> 00:00:59,800\\nDolné Nakovana, pohľad od kaštieľa\\n\\n15\\n00:01:00,000 --> 00:01:03,800\\nPohľad na Korčulu od trosiek Kaštela\\n\\n16\\n00:01:04,000 --> 00:01:07,800\\nĽahu nad Mokalo\\n\\n17\\n00:01:08,000 --> 00:01:11,800\\nOrebić s Mokalo\\n\\n18\\n00:01:12,000 --> 00:01:15,800\\nPotomja a Pijavicino od západu\\n\\n19\\n00:01:16,000 --> 00:01:19,800\\nkláštor v severovýchodnom Podgorje\\n\\n20\\n00:01:20,000 --> 00:01:23,800\\nKláštor v severozápadnej Podgorje\\n\\n21\\n00:01:24,000 --> 00:01:27,800\\nOrebić zo šupín\\n\\n22\\n00:01:28,000 --> 00:01:31,800\\nMokalo a Supino\\n\\n23\\n00:01:32,000 --> 00:01:35,800\\nTiesňava Pratnjice\\n\\n24\\n00:01:36,000 --> 00:01:39,800\\nOrebić od severu\\n\\n25\\n00:01:40,000 --> 00:01:43,800\\nOrebić od severozápadu\\n\\n26\\n00:01:44,000 --> 00:01:47,800\\nVrchol Žrnovnica\\n\\n27\\n00:01:48,000 --> 00:01:51,800\\nOrebić od severu\\n\\n28\\n00:01:52,000 --> 00:01:55,800\\nPohľad na Orebić\\n\\n29\\n00:01:56,000 --> 00:01:59,800\\nMali Ston\\n\\n30\\n00:02:00,000 --> 00:02:03,800\\nSton\\n\\n31\\n00:02:04,000 --> 00:02:07,800\\nMali Ston\\n\\n32\\n00:02:08,000 --> 00:02:11,800\\nVižanica-svahy na juhovýchodu\\n\\n\\n33\\n00:02:12,000 --> 00:02:15,800\\nKrásna zátoka\\n\\n34\\n00:02:16,000 --> 00:02:19,800\\nPelješka Duba pri pohľade z vrcholu kopca\\n\\n35\\n00:02:20,000 --> 00:02:23,800\\nBarinské vrcholy a Žrnovska Banja v pozadí\\n\\n36\\n00:02:24,000 --> 00:02:27,800\\npohľad z polostrova na západe\\n\\n37\\n00:02:28,000 --> 00:02:31,800\\nHorná Vrucica\\n\\n38\\n00:02:32,000 --> 00:02:35,800\\nSton a soľné panvy\\n\\n39\\n00:02:36,000 --> 00:02:39,800\\nHorský hrebeň Mokalo s dedinou Donja Vrucica\\n\\n40\\n00:02:40,000 --> 00:02:43,800\\nKláštor Kuni, pohľad z juhu\\n\\n41\\n00:02:44,000 --> 00:02:47,800\\nzanedbané, ale opravované vinice\\n\\n42\\n00:02:48,000 --> 00:02:51,800\\nJanjina od západu\\n\\n43\\n00:02:52,000 --> 00:02:55,800\\nRuskovići sever\\n\\n44\\n00:02:56,000 --> 00:02:59,800\\nObec Lovište\\n\\n45\\n00:03:00,000 --> 00:03:03,800\\nObec Lovište\\n\\n46\\n00:03:04,000 --> 00:03:07,800\\nsvahy na pravej strane\\n\\n47\\n00:03:08,000 --> 00:03:11,800\\nkríž na vrchole Pelješac',\n", + " 'bytes': 2896,\n", + " 'sha1': 'f2rr9yh33yxu9l5a19n5lje6up91ifh',\n", + " 'parent_id': 99478300,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 405782143,\n", + " 'timestamp': '2020-03-21T04:49:53Z',\n", + " 'user': {'id': 3788913, 'text': 'Ixocactus'},\n", + " 'page': {'id': 27080515,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'detalhes da tradução',\n", + " 'text': '1\\n00:00:01,270 --> 00:00:10,230\\nWikipédia, uma fonte confiável?\\n\\n2\\n00:00:14,810 --> 00:00:19,650\\nQueridos alunos, obrigada pela semana. \\nMas antes de irem, quero um trabalho sobre a sociedade pós-moderna\\n\\n3\\n00:00:19,720 --> 00:00:25,870\\nsob uma perspectiva estoica, 475 páginas,\\nem minhas mãos na segunda-feira.\\n\\n4\\n00:00:26,330 --> 00:00:29,220\\nTenham um bom fim de semana!\\nObrigada!\\n\\n5\\n00:00:47,560 --> 00:00:51,760\\nVocê é minha aluna predileta,\\nmuito obrigada!\\n\\n6\\n00:00:57,270 --> 00:00:58,820\\nNa segunda-feira seguinte...\\n\\n7\\n00:01:12,660 --> 00:01:21,950\\nJá disse que a Wikipedia não é uma fonte\\nde informações confiável, saia, saia! Saia da minha sala!\\n\\n8\\n00:01:38,750 --> 00:01:52,740\\nAté você? Estou desapontada, saia, saia!\\n\\n9\\n00:01:59,420 --> 00:02:06,960\\nEu fico tão, tão irritada. \\nMas eu vou ficar bem...\\n\\n10\\n00:02:19,160 --> 00:02:25,930\\nVocê se identificou? Você não está\\nsozinho! Wikipédia é a décima página\\n\\n11\\n00:02:26,060 --> 00:02:31,740\\nmais visitada do Brasil, e são grandes \\nas chances de seus estudantes buscarem\\n\\n12\\n00:02:31,860 --> 00:02:37,690\\nfatos e informações nela. Talvez\\naté você professor faça isso!\\n\\n13\\n00:02:38,220 --> 00:02:42,120\\nMas como saber se os artigos da \\nWikipédia são confiáveis ou não?\\n\\n14\\n00:02:42,530 --> 00:02:49,940\\nAtravés de siglas, vou lhe dar três dicas.\\nAs dicas são Fo, Di e Hi.\\n\\n15\\n00:02:50,890 --> 00:02:54,860\\n\"Fo\", para fontes. Elas existem no pé\\ndos artigos da Wikipédia.\\n\\n16\\n00:02:55,760 --> 00:02:59,700\\nOlhe sua quantidade e veja se você as considera boas fontes. \\n\\n17\\n00:02:59,980 --> 00:03:02,960\\nClique na referência\\npara ver onde você irá parar.\\n\\n18\\n00:03:03,800 --> 00:03:10,630\\nA segunda dica é \"Di\", de discussão. Em cada\\nartigo existe uma aba. Clique e veja\\n\\n19\\n00:03:10,710 --> 00:03:14,580\\no que está sendo discutindo.\\nQuando há alguma discussão, normalmente\\n\\n20\\n00:03:14,690 --> 00:03:18,850\\né sobre o conteúdo e estrutura,\\ne tende a tornar o artigo melhor.\\n\\n21\\n00:03:18,920 --> 00:03:22,640\\nDiscussões mostram que muitos\\nacessaram e estudaram o artigo,\\n\\n22\\n00:03:22,720 --> 00:03:25,250\\nconsiderando como e o que deve\\nestar nele apresentado.\\n\\n23\\n00:03:26,020 --> 00:03:33,310\\nPor último temos o \"Hi\", de Histórico, que também é\\numa aba. Confira quantas pessoas já adicionaram\\n\\n24\\n00:03:33,440 --> 00:03:38,340\\ne removeram informação. Quanto\\nmais contribuidores participando, melhor.\\n\\n25\\n00:03:38,460 --> 00:03:43,080\\nIsso tende a aumentar a credibilidade do artigo.\\n\\n26\\n00:03:44,190 --> 00:03:48,590\\nEssas são as três pequenas dicas: Fo, Di e Hi.\\n\\n27\\n00:03:48,790 --> 00:03:50,340\\nPor favor confira as \\ndicas junto de seus\\n\\n28\\n00:03:50,420 --> 00:03:55,460\\nestudantes para avaliar a credibilidade\\nde um artigo na Wikipédia.\\n\\n29\\n00:03:55,720 --> 00:03:59,780\\nNa Wikimedia Suécia estamos trabalhando\\ncom o programa de educação da Wikipédia\\n\\n30\\n00:03:59,810 --> 00:04:06,020\\nPor favor nos contacte caso esteja\\ncurioso, pensativo ou até mesmo cético!?\\n\\n31\\n00:04:06,400 --> 00:04:10,360\\nQueremos ouvi-lo.\\nO que fazemos é tornar a Wikipédia\\n\\n32\\n00:04:10,460 --> 00:04:18,030\\nacessível, útil e compreensível.\\nNós realmente gostaríamos de te ouvir.\\n\\n33\\n00:04:24,240 --> 00:04:29,300\\nWikipédia na Educação\\n\\n34\\n00:04:32,630 --> 00:04:37,240\\nVocê está de saco cheio da Wikipédia?\\nNão aguenta mais a Wikipédia?\\n\\n35\\n00:04:37,970 --> 00:04:41,440\\nContacte-nos em\\nutbildning@wikimedia.se',\n", + " 'bytes': 3431,\n", + " 'sha1': 'p6pmhuxqia4a5gvgb9562ouubh5avu3',\n", + " 'parent_id': 121342970,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99507234,\n", + " 'timestamp': '2013-07-05T17:16:56Z',\n", + " 'user': {'id': 308377, 'text': 'Ravave'},\n", + " 'page': {'id': 27083870,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:0,700 --> 00:00:4,400\\nHola, em dic Trevor i estic tractant d'elaborar un VisualEditor per a la Wikipedia.\\n\\n2\\n00:00:4,500 --> 00:00:7,100\\nTots poden editar en ella, peró la majoría és sent confosa\\n\\n3\\n00:00:7,100 --> 00:00:11,100\\ndegut a que el códi Wiki pot ressultar prou complexa.\\n\\n4\\n00:00:11,200 --> 00:00:13,900\\nFa dotze anys, cuan la vam crear, va ser al·lucinant,\\n\\n5\\n00:00:14,000 --> 00:00:17,000\\nperó si volem compartir el coneixement amb tothom,\\n\\n6\\n00:00:17,900 --> 00:00:19,000\\nhem de fer-la més accesible a tots\\n\\n7\\n00:00:19,100 --> 00:00:23,000\\nEl VisualEditor es el canvi més important que s'haja fet mai.\\n\\n8\\n00:00:24,000 --> 00:00:27,200\\nSerà com escriure una nota a un paper o manar un e-mail.\\n\\n9\\n00:00:27,100 --> 00:00:28,900\\nEncara te les seues errades,\\n\\n10\\n00:00:29,000 --> 00:00:32,000\\nperó si vols saber com funcionará la Wikipedia en un futur més proper,\\n\\n11\\n00:00:33,000 --> 00:00:34,400\\nObri't un compte (per eixemple) a la Wikipedia en anglés,\\n\\n12\\n00:00:35,000 --> 00:00:38,000\\nVes-hi a preferències i activa la versió Alfa del VisualEditor.\\n\\n13\\n00:00:39,000 --> 00:00:42,100\\nTambé ens pots servir d'ajuda si real·litzes una proba i ens envíes els teus comentaris sobre la ferramenta.\\n\\n14\\n00:00:42,200 --> 00:00:46,000\\nAixina que per favor: uneix-te a nosaltres perque pugam compartir el coneixement humá de la manera més fácil.\",\n", + " 'bytes': 1378,\n", + " 'sha1': 'a4mpv8phkifx0ig9feb60ocy41cq3jv',\n", + " 'parent_id': 99507151,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99565771,\n", + " 'timestamp': '2013-07-06T17:30:01Z',\n", + " 'user': {'id': 2309588, 'text': 'RLuts'},\n", + " 'page': {'id': 27100925,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.uk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with ' 1 00:00:00,800 --> 00:00:03,500 Привіт! Мене звати Тревор, я допомагаю створювати Візуальний редакто...'\",\n", + " 'text': '\\n1\\n00:00:00,800 --> 00:00:03,500\\nПривіт! Мене звати Тревор, я допомагаю створювати Візуальний редактор для Вікіпедії.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nКожен може редагувати Вікіпедію, але у більшість з тих, хто намагається, роблять це невпевнено,\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\nтому що розмітка Вікіпедії важка для сприйняття.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nВона була чудова, коли ми створили її дванадцять років тому,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nале якщо ми збираємось зібрати суму всіх людських знань,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\nми повинні зробити все, щоб люди легко могли ними ділитись.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nВізуальний редактор — це найбільша зміна у Вікіпедії, яку ми коли-небудь робили.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nЗа допомогою нього можна дописувати у Вікіпедію так само легко, як писати у шкільну газету, або відправляти email.\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nВін все ще має невеликі помилки,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nале якщо ви хочете подивитись, як Вікіпедія буде працювати найближчим часом,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\nстворіть обліковий запис у Вікіпедії,\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nувійдіть у ваші налаштування і увімкніть альфа-версію Візуального редактора.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nВи можете також допомогти нам, якщо будете використовувати його та надсилати нам свої відгуки.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nТому, будь ласка, приєднуйтесь до нас, щоб ми могли легше зібрати та ділитись сумою усіх людських знань.',\n", + " 'bytes': 2336,\n", + " 'sha1': 'q25zp3b8npuqc2uul25hd1p4dqjwr1b',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99648230,\n", + " 'timestamp': '2013-07-08T00:20:46Z',\n", + " 'user': {'id': 2754992, 'text': 'আফতাবুজ্জামান'},\n", + " 'page': {'id': 27123783,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.bn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'add 2 new',\n", + " 'text': '\\n1\\n00:00:00,800 --> 00:00:03,500\\nহাই! আমি ট্রেভর, এবং আমি উইকিপিডিয়ার জন্য একটি ভিজ্যুয়ালএডিটর নির্মাণে সাহায্য করছি।\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nযে কেউ উইকিপিডিয়া সম্পাদনা করতে পারে, কিন্তু সবচেয়ে বেশি যারা চেষ্টা করে সহজে বিভ্রান্ত হয়\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\nকারণ উইকিপিডিয়ার পুরাতন কোড বুঝা বেশ কঠিন।\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nবারো বছর আগে এটি অসাধারণ ছিল যখন আমরা এটি তৈরি করেছিলাম,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nকিন্তু যদি আমারা সকলের সকল জ্ঞানের সমষ্টি পেতে চাই,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\nআমদের এটা আরও সহজে ভাগ করেছি।\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nভিজ্যুয়ালএডিটর উইকিপিডিয়ায় করা আমাদের সবচেয়ে বড় পরিবর্তন।\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nএটি বিদ্যালয়ে একটি লেখার কাগজে লেখা বা ইমেইল পাঠানোর মত উইকিপিডিয়াকে লেখারযোগ্য করে তোলে।\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nএটা এখনও একটু ত্রুটিযুক্ত,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nকিন্তু আপনি যদি অদূর ভবিষ্যতে উইকিপিডিয়া কিভাবে কাজ করতে যাচ্ছে তা একবার দেখে নিতে চান তাহলে\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\nইংরেজি উইকিপিডিয়াতে একটি অ্যাকাউন্ট তৈরি করুন।\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nআপনার পছন্দসমূহে যান, এবং ভিজ্যুয়ালএডিটরের আলফা সংস্করণ চালু করুন।\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nএমনকি আপনি এটি ব্যবহার করে আমাদের সাহায্য করতে পারেন, এবং তারপর আমাদের প্রতিক্রিয়া প্রেরণ করতে পারেন।\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nতাই দয়া করে, সকল জ্ঞানের সমষ্টি সহজে ভাগাভাগি করার জন্য আমাদের সঙ্গে যোগদান করুন।\\n\\n15\\n00:00:46,122 --> 00:00:52,000\\nbn.wikipedia.org/wiki/উইকিপিডিয়া:ভিজ্যুয়ালএডিটর\\n\\n16\\n00:00:52,000 --> 00:00:54,000\\nউইকিপিডিয়া',\n", + " 'bytes': 3186,\n", + " 'sha1': 'g32652vgj6e7fdck6xitp7f8x5e9mj2',\n", + " 'parent_id': 99648080,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99991686,\n", + " 'timestamp': '2013-07-14T05:40:09Z',\n", + " 'user': {'id': 2787585, 'text': 'CouvGeek'},\n", + " 'page': {'id': 27127876,\n", + " 'title': 'En-us-North Korea.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': \"Correcting 'China' to 'Korea. In the audio clip, the person said Korea.\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:01,500\\nNorth Korea',\n", + " 'bytes': 43,\n", + " 'sha1': 'r90b8f7ube8b9ymuujo3uskpp80mxpw',\n", + " 'parent_id': 99651885,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99674454,\n", + " 'timestamp': '2013-07-08T12:13:58Z',\n", + " 'user': {'id': 117597, 'text': 'Saper'},\n", + " 'page': {'id': 27133049,\n", + " 'title': 'AAR214-KSFO-Crash.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'till 2:27',\n", + " 'text': \"1\\n00:00:00,169 --> 00:00:03,283\\nAsiana 214 heavy San Francisco tower, runway 28L cleared to land\\n\\n2\\n00:00:03,330 --> 00:00:04,847\\nAlright cleared to land 28L Asiana 214. (Inaudible)\\n\\n3\\n00:00:04,986 --> 00:00:09,374\\nSkywest 5427, fly runway heading, contact NORCAL departures\\n\\n4\\n00:00:09,559 --> 00:00:11,604\\nFly runway heading go over to departures Skywest 5427 good day.\\n\\n5\\n00:00:12,728 --> 00:00:14,061\\nTower, United 85.\\n\\n6\\n00:00:14,646 --> 00:00:17,033\\nUnited 85 go ahead.\\n\\n7\\n00:00:17,726 --> 00:00:21,747\\nThis is United 85 at the end we might need few more minutes, just a heads up.\\n\\n8\\n00:00:21,747 --> 00:00:25,875\\nUnited 85, roger, hold short of runway 28 left, let me know when you're ready.\\n\\n9\\n00:00:25,875 --> 00:00:27,432\\nHold short of 28 left united 85.\\n\\n10\\n00:00:28,373 --> 00:00:32,547\\nSan Francisco tower, Skywest 5452, quiet bridge visual 28 right.\\n\\n11\\n00:00:32,547 --> 00:00:36,169\\n5452 San Francisco tower, runway 28 right cleared to land.\\n\\n12\\n00:00:36,531 --> 00:00:38,523\\nCleared to land 28 right, Skywest 5452.\\n\\n13\\n00:00:39,016 --> 00:00:40,402\\nHorizon 635 heading 235 ... 600 [background: what happened?]\\n\\n14\\n00:00:41,341 --> 00:00:42,078\\n[noise]\\n\\n15\\n00:00:43,109 --> 00:00:43,463\\n[noise]\\n\\n16\\n00:00:43,849 --> 00:00:46,421\\nSan Francisco tower, Skyhawk 737\\n\\n17\\n00:00:46,421 --> 00:00:47,386\\nGo around\\n\\n18\\n00:00:47,386 --> 00:00:49,701\\n500 feet over San Carlos.\\n\\n19\\n00:00:50,517 --> 00:00:52,979\\nSkywest 6389 maintain 3000\\n\\n20\\n00:00:53,088 --> 00:00:54,739\\n280 3000 Skywest 6389\\n\\n21\\n00:00:55,771 --> 00:00:57,593\\nHello? Asiana 214\\n\\n22\\n00:00:57,840 --> 00:01:00,346\\n214 heavy, emergency vehicles are responding.\\n\\n23\\n00:01:00,746 --> 00:01:01,892\\nAsiana 214!\\n\\n24\\n00:01:02,677 --> 00:01:04,359\\nEmergency ... ing\\n\\n25\\n00:01:04,359 --> 00:01:09,235\\nOkay tower, uh... uh.... [Asiana crew unaudible]\\n\\n26\\n00:01:11,220 --> 00:01:16,764\\nCessna 737ZD, San Francisco tower, remain clear of the San Francisco class bravo airspace, contact San Carlos tower.\\n\\n27\\n00:01:17,596 --> 00:01:21,787\\n7ZD contacting San Carlos tower and remaining clear\\n\\n28\\n00:01:22,803 --> 00:01:28,148\\nHelicopter 3SF leaving the bravo airspace in 2 miles, radar services terminated, squawk, maintain VFR, frequency change approved.\\n\\n29\\n00:01:28,347 --> 00:01:29,779\\n3SF, San Francisco tower.\\n\\n30\\n00:01:31,825 --> 00:01:32,414\\nHorizon 6\\n\\n31\\n00:01:33,106 --> 00:01:34,630\\n[ Asiana crew unaudible]\\n\\n32\\n00:01:35,415 --> 00:01:37,390\\nAsiana 214 heavy, San Francisco tower.\\n\\n33\\n00:01:37,728 --> 00:01:41,836\\nIs there someone ... [ Asiana crew unaudible ] .. uh ...\\n\\n34\\n00:01:42,036 --> 00:01:43,374\\n635 is going around.\\n\\n35\\n00:01:43,590 --> 00:01:46,502\\nHorizon 635, fly heading 265, maintain 3100.\\n\\n36\\n00:01:47,175 --> 00:01:49,162\\n265 3100 Horizon 635\\n\\n37\\n00:01:50,644 --> 00:01:51,920\\n[Asiana crew unaudible]\\n\\n38\\n00:01:52,487 --> 00:01:55,965\\nAsiana 214 heavy, emergency vehicles are responding, is everyone on their way.\\n\\n39\\n00:01:56,502 --> 00:01:57,042\\nOkay.\\n\\n40\\n00:01:57,887 --> 00:02:00,328\\nSkywest 5452. San Francisco tower, go around.\\n\\n41\\n00:02:01,250 --> 00:02:02,515\\nSkywest 5452, copy.\\n\\n42\\n00:02:03,392 --> 00:02:06,663\\nSkywest 5452 fly 280 maintain 3000.\\n\\n43\\n00:02:07,324 --> 00:02:09,933\\n280 3000 Skywest 452.\\n\\n44\\n00:02:09,933 --> 00:02:14,461\\nHorizon 635 fly 265 maintain 3100.\\n\\n45\\n00:02:14,461 --> 00:02:17,532\\nYes it's 265 we're on, Horizon 635.\\n\\n46\\n00:02:17,670 --> 00:02:19,712\\nPlease contact NORCAL departure on 135.1\\n\\n47\\n00:02:19,712 --> 00:02:21,451\\n35.1 Horizon 635\\n\\n48\\n00:02:22,420 --> 00:02:26,369\\nSkywest 5452 contact NORCAL departure on 35.1\\n\\n49\\n00:02:26,369 --> 00:02:27,061\\n35.1\",\n", + " 'bytes': 3582,\n", + " 'sha1': 'nj0up22inyfi8hoz01gpmy1f1mvd7y5',\n", + " 'parent_id': 99668239,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 209544080,\n", + " 'timestamp': '2016-10-12T17:11:01Z',\n", + " 'user': {'id': 2754992, 'text': 'আফতাবুজ্জামান'},\n", + " 'page': {'id': 27144202,\n", + " 'title': 'The Impact Of Wikipedia.webm.bn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nউইকিপিডিয়া অলাভজনক, কিন্তু এটি বিশ্বের #৫ ওয়েবসাইট। উইকিপিডিয়ার সকল নিবন্ধ স্বেচ্ছাসেবকদের দ্বারা লিখিত।\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nআমরা তাদের কয়েকজনকে আপনার সাথে পরিচয় করিয়ে দিতে চাই ...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nআমি নেপাল থেকে এসেছি\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nআমি ইরাক থেকে এসেছি\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nআমি এসেছি ভারত থেকে\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nআমি বাইরাম, নিউ জার্সি থেকে\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nআমি বার্মিংহাম, ইংল্যান্ডে থাকি\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nশিকাগো, ইলিনয় -- লা পাজ, বলিভিয়া -- নাইরোবি, কেনিয়া\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nকুয়ালালামপুর, মালয়েশিয়া -- ইতালির মিলান -- দক্ষিণ আফ্রিকা\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nপোল্যান্ড -- জাপান -- আর্মেনিয়া\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nব্রাজিল -- রাশিয়া -- বতসোয়ানা\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nইসরায়েল -- উজবেকিস্তান -- হংকং\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nইস্তানবুল -- মেক্সিকো\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nচাট্টানুগা, টেনেসি\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nAt the beginning of my joining to Wikipedia in 2008, I started many articles.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nOne of them, I think it was about a lady called Mariam Nour.\\xa0\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nWe didn’t have an article about it, so -- and this was my first article.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nSo I forget about it! \\xa0Maybe two or three years later, \\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nI passed by this article. \\xa0I was shocked. \\xa0\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nMore than 100,000 people read this article. \\xa0\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nThey used it, so they got their information from this article. \\xa0They passed by this article, \\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nso you feel like you affected and influenced more than 100,000 people.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nI was just so terrified when I pushed the \\'edit\\' button for the first time. \\xa0\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nI thought, “Oh my god, I’m going to ruin everything!\\nThat can’t work! \\xa0I can’t do it!”\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia is an \\'open source\\' -- where everyone can throw in his or her idea \\n\\n26\\n00:01:29,100 --> 00:01:34,000\\nand then somebody else comes in and polishes on that idea to make it superb.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nThere are thousands of people working every day, every hour, every minute on Wikipedia to improve it.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nA lot of it is the volunteerism. \\xa0This is a unique way to volunteer.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nIt brings together both professionals and amateurs who have a love for a particular topic.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nThe people who had different opinions in the beginning start to collaborate.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nA lot of what you would assume a large Internet corporation would handle \\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nis handled by volunteers like me.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nYou just can’t say, “Okay, I’m right, you’re wrong, this is my version of the article!”\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nIf there’s an issue of bias, \\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nthen somebody has probably flagged it and if not, now I can flag it too.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nYou’ve got hundreds and thousands of people seeing that \\n\\n37\\n00:02:13,001 --> 00:02:15,000\\nand correcting it.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nAnd then I push the button and\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom - The journey started and it was great.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nFirst I started with \\'Probability\\'. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nThe first article I started is \\'Probability\\'.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nOne of my main articles I wrote on Wikipedia was \\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nthe article on stab wounds.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nI write about fly fishing, \\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nMontana history, National Park history, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nUnderutilized crops. Chess players. Biodiversity.\\xa0\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nMilitary history topics. Armenian history. Roman history.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nJudges. Communication. Biographies. Football.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIreland. Pennsylvania. Mostly photography.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Baking, because I love to bake.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nNuclear weapons and radioactivity, \\n\\n51\\n00:02:50,201 --> 00:02:52,000\\nand whitewater kayaking.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nThere’s all this information that’s out there that’s kind of scattered\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\nand we’re putting it together in one place.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nWe are offering free knowledge for everyone, \\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nin their own language so they can use it.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nEveryone is benefited by this whether they are rich or poor.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nFor-profit companies have different motivations and different requirements. \\xa0\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nFrom the Wikimedia Foundation, I don’t take a salary and I also don’t even take expenses.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\n\\xa0I think it’s very important that I’m able to say quite clearly, \\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nLook, when I’m asking you for money, I’m not asking you for money for myself --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nI’m asking you for money for the Foundation which is the team who supports this amazing community that I’m a part of.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nআমি মনে করি উইকিপিডিয়া আমাকে সত্যিই বিশ্বে একটি বিশাল পার্থক্য আনতে এই সুযোগ দিয়েছে।\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nএটি আপনার সন্তানদের ভবিষ্যতের জন্য, আপনার ভবিষ্যতের জন্য একটি বিনিয়োগের মত।\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nআপনাকে ধন্যবাদ\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nThe content contained in this video is available under the Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) unless otherwise stated. This work is attributable to: Victor Grigas, Wikimedia Foundation.\\nThe views and opinions expressed in this video are solely those of the individuals appearing in the video and do not necessarily reflect the policies or positions of any company, organization, or institution the individual may be a member of.\\nThe trademarks and logos of the Wikimedia Foundation and any other organization are not included under the terms of this Creative Commons license. Wikimedia trademarks and logos, including \"Wikipedia\" and the puzzle globe logo, are registered trademarks of the Wikimedia Foundation. For more information, please see our Trademark Policy page,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nএই ভিডিওটি ক্রিয়েটিভ কমন্স লাইসেন্সের আওতায় প্রকাশিত হয়।\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nউইকিপিডিয়ার মত, এটি অনুলিপি, পুনঃমিশ্রণ ও ভাগ করার জন্য উন্মুক্ত।',\n", + " 'bytes': 8389,\n", + " 'sha1': 'gn3t0qr5yl717bpvsa32pp1gm97bbjv',\n", + " 'parent_id': 99687924,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 260984302,\n", + " 'timestamp': '2017-10-02T16:55:14Z',\n", + " 'user': {'id': 2754992, 'text': 'আফতাবুজ্জামান'},\n", + " 'page': {'id': 27164284,\n", + " 'title': 'Bangladesh building collapse - WN.ogv.bn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Aftabuzzaman moved page [[TimedText:Bangladesh building collapse - WN.ogg.bn.srt]] to [[TimedText:Bangladesh building collapse - WN.ogv.bn.srt]]',\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:10,400\\n২০১৩ সালে রানা প্লাজা ধসের পর উদ্ধার অভিযানের কিছু ভিডিও চিত্র।\\n\\n2\\n00:00:10,400 --> 00:00:45,400\\n\\n3\\n00:00:45,400 --> 00:00:58,000\\n২০১৩ সালে রানা প্লাজা ধসের পর উদ্ধার অভিযানের কিছু ভিডিও চিত্র।',\n", + " 'bytes': 438,\n", + " 'sha1': 'ihkpb9ok3d8qhrn5l0h5pgq2iw1h1hh',\n", + " 'parent_id': 99739736,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99800629,\n", + " 'timestamp': '2013-07-10T18:02:33Z',\n", + " 'user': {'text': '188.48.32.41'},\n", + " 'page': {'id': 27185662,\n", + " 'title': 'BergenBelsenHatikva.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,000 --> 00:00:10,400 As long as in the heart, within, 2 00:00:11,000 --> 00:00:19,400 A Jewish soul still yearns, 3 00:00:20,000 --> 00:00:26,400 A...'\",\n", + " 'text': '1\\n00:00:01,000 --> 00:00:10,400\\nAs long as in the heart, within,\\n\\n2\\n00:00:11,000 --> 00:00:19,400\\nA Jewish soul still yearns,\\n\\n3\\n00:00:20,000 --> 00:00:26,400\\nAnd onward, towards the ends of the east,\\n\\n4\\n00:00:27,000 --> 00:00:33,400\\nAn eye still looks toward Zion;\\n\\n5\\n00:00:34,000 --> 00:00:39,400\\nOur hope is not yet lost,\\n\\n6\\n00:00:40,000 --> 00:00:45,400\\nThe ancient hope,\\n\\n7\\n00:00:46,000 --> 00:00:52,400\\nTo return to the land of our fathers,\\n\\n8\\n00:00:53,000 --> 00:00:58,400\\nThe city where David encamped.\\n\\n9\\n00:00:59,000 --> 00:01:03,400\\nOur hope is not yet lost,\\n\\n10\\n00:01:04,000 --> 00:01:08,400\\nThe ancient hope,\\n\\n11\\n00:01:09,000 --> 00:01:14,400\\nTo return to the land of our fathers,\\n\\n12\\n00:01:15,300 --> 00:01:20,400\\nThe city where David encamped.',\n", + " 'bytes': 758,\n", + " 'sha1': '3aqxslgkfd3dbjvizm6bvk3sx9ou5u5',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 607629984,\n", + " 'timestamp': '2021-11-16T19:15:03Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 27229846,\n", + " 'title': 'Wanna Work Together? with subtitles - Creative Commons.ogv.uk.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'overall subtitles update',\n", + " 'text': '1\\n00:00:04,774 --> 00:00:08,105\\nХочете творити колективно?\\n\\n2\\n00:00:10,000 --> 00:00:12,324\\nКоли ви ділитесь своєю творчістю,\\n\\n3\\n00:00:12,342 --> 00:00:14,593\\nви даєте можливість людям з усього світу\\n\\n4\\n00:00:14,710 --> 00:00:16,835\\nвикористовувати її, вивчати її,\\n\\n5\\n00:00:16,855 --> 00:00:19,000\\nнадихатись нею.\\n\\n6\\n00:00:19,193 --> 00:00:20,403\\nНаприклад, вчитель,\\n\\n7\\n00:00:20,463 --> 00:00:24,536\\nякий надихає юні серця, надбаннями\\nлюдства й знаннями зі всього світу,\\n\\n8\\n00:00:24,577 --> 00:00:27,770\\nчи мисткиня, яка вибудовує\\nкрасу з маленьких дрібничок,\\n\\n9\\n00:00:27,881 --> 00:00:29,463\\nякі вона знаходить у мережі.\\n\\n10\\n00:00:29,873 --> 00:00:33,416\\nЧи письменник, чиї оповідання\\nвбирають в себе ідеї та образи,\\n\\n11\\n00:00:33,436 --> 00:00:36,173\\nстворені людьми,\\nяких він ніколи навіть не зустрічав.\\n\\n12\\n00:00:36,399 --> 00:00:39,313\\nУсі ці люди знають: коли ви ділитесь\\nсвоїм творчим багатством,\\n\\n13\\n00:00:39,343 --> 00:00:41,208\\nви можете досягнути нечуваних висот.\\n\\n14\\n00:00:41,244 --> 00:00:45,300\\nЦі люди та мільйони людей по всьому світу\\n\\n15\\n00:00:45,333 --> 00:00:49,774\\nспільно працюють, щоб збудувати\\nбагатшу, кращу, живу культуру,\\n\\n16\\n00:00:49,806 --> 00:00:52,195\\nвикористовуючи Creative Commons.\\n\\n17\\n00:00:53,606 --> 00:00:55,386\\nЩоб зрозуміти Creative Commons,\\n\\n18\\n00:00:55,400 --> 00:00:58,126\\nвам потрібно знати дещо про те,\\nяк працює авторське право.\\n\\n19\\n00:00:58,134 --> 00:01:00,766\\nЧи ви знали, що коли ви\\nщо-небудь створюєте, будь-що,\\n\\n20\\n00:01:00,766 --> 00:01:06,489\\nвід світлини чи пісні\\nдо малюнка, фільму, оповідання,\\n\\n21\\n00:01:06,520 --> 00:01:09,318\\nви автоматично отримуєте\\nабсолютні права на цей твір\\n\\n22\\n00:01:09,358 --> 00:01:10,767\\n(«Всі права застережено»)\\n\\n23\\n00:01:10,812 --> 00:01:11,780\\nЦе правда!\\n\\n24\\n00:01:11,810 --> 00:01:15,346\\nАвторське право захищає вашу творчість від\\nвикористання, на яке ви не дали дозволу.\\n\\n25\\n00:01:15,386 --> 00:01:16,790\\n(* «добропорядного використання»)\\n\\n26\\n00:01:16,830 --> 00:01:19,880\\nАле часом повне авторське право\\nобмежує занадто.\\n\\n27\\n00:01:19,900 --> 00:01:23,270\\nА що, як ви свідомо хочете дозволити\\nцим мільйонам мільйонів людей\\n\\n28\\n00:01:23,309 --> 00:01:24,652\\nвикористовувати ваш твір,\\n\\n29\\n00:01:24,682 --> 00:01:27,316\\nщоб вони не мусили щоразу\\nзвертатись до вас за дозволом?\\n\\n30\\n00:01:27,316 --> 00:01:30,160\\nА що, як ви бажаєте, щоб інші люди\\nмогли ділитись вашим твором,\\n\\n31\\n00:01:30,207 --> 00:01:32,940\\nвикористовували його і створювати\\nна його основі нові твори?\\n\\n32\\n00:01:33,020 --> 00:01:34,572\\nНа щастя, є відповідь:\\n\\n33\\n00:01:34,712 --> 00:01:36,522\\nCreative Commons.\\n\\n34\\n00:01:36,765 --> 00:01:39,608\\nМи надаємо вільні ліцензії,\\nякі ви можете використовувати,\\n\\n35\\n00:01:39,620 --> 00:01:44,162\\nщоб повідомити людям, які саме права\\nви бажаєте передати громадськості.\\n\\n36\\n00:01:44,235 --> 00:01:48,051\\nЦе неважко, це займає\\nлише хвилинку і нічого не коштує.\\n\\n37\\n00:01:48,112 --> 00:01:51,519\\nПросто відкрийте нашу веб-сторінку\\nі дайте відповідь на кілька запитань:\\n\\n38\\n00:01:51,539 --> 00:01:53,922\\n«Чи хотіли б ви дозволити комерційне\\nвикористання вашого твору?»\\n\\n39\\n00:01:53,941 --> 00:01:56,123\\nабо «Чи дозволяєте ви редагувати його?»\\n\\n40\\n00:01:56,172 --> 00:01:57,622\\nНа основі ваших відповідей\\n\\n41\\n00:01:57,659 --> 00:01:59,866\\nми підберемо вам ліцензію,\\nяка чітко означує,\\n\\n42\\n00:01:59,890 --> 00:02:02,927\\nщо інші люди зможуть, а що —\\nне зможуть робити з вашим твором.\\n\\n43\\n00:02:03,000 --> 00:02:07,765\\nВи не відмовляєтесь від авторського права,\\nа «шліфуєте» його так, як вигідно вам.\\n\\n44\\n00:02:08,450 --> 00:02:11,798\\nЛаскаво просимо до нового світу,\\nде панує співпраця між людьми!\\n\\n45\\n00:02:12,000 --> 00:02:14,929\\nКілька років тому його ще не існувало.\\n\\n46\\n00:02:15,000 --> 00:02:19,437\\nАле тепер уже є мільйони й мільйони\\nпісень, малюнків, світлин, відео\\n\\n47\\n00:02:19,475 --> 00:02:24,344\\nта текстів, вільних до розповсюдження,\\nвикористання та реміксування —\\n\\n48\\n00:02:24,405 --> 00:02:25,904\\nбезкоштовно.\\n\\n49\\n00:02:26,197 --> 00:02:27,945\\nХочете творити колективно?\\n\\n50\\n00:02:28,163 --> 00:02:29,707\\nПриєднуйтесь до Спільнот —\\n\\n51\\n00:02:29,734 --> 00:02:31,745\\nТворчих Спільнот (Creative Commons).\\n\\n52\\n00:02:34,547 --> 00:02:36,028\\nКінець\\n\\n53\\n00:02:36,238 --> 00:02:38,270\\nАнімація і дизайн\\nRyan Junell - junell.net\\n\\n54\\n00:02:38,310 --> 00:02:40,430\\nМузика і звук\\nLesser - LSR1.com\\n\\n55\\n00:02:40,470 --> 00:02:42,370\\nДикторка - Sara Kraft\\nkraftpurver.com\\n\\n56\\n00:02:42,400 --> 00:02:44,328\\nСценарій Eric Steuer\\ncreativecommons.org\\n\\n57\\n00:02:44,381 --> 00:02:45,625\\nОсоблива подяка\\n\\n58\\n00:02:57,600 --> 00:03:02,000\\nІ всім, хто підтримує Creative Commons,\\nвеликим і маленьким.\\n\\n59\\n00:03:02,505 --> 00:03:06,539\\nДеякі права застережено',\n", + " 'bytes': 6639,\n", + " 'sha1': '7w0gm15yp7tgw3o8ubumjqa4dofhxhf',\n", + " 'parent_id': 99981679,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99957708,\n", + " 'timestamp': '2013-07-13T16:03:49Z',\n", + " 'user': {'id': 294714, 'text': 'Teles'},\n", + " 'page': {'id': 27232087,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.pt.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\n1\\n00:00:00,800 --> 00:00:03,500\\nOi! Meu nome é Trevor e estou ajudando a construir o VisualEditor para a Wikipédia.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nQualquer um pode editar a Wikipédia, mas muitos que tentam ficam facilmente confusos\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\ndevido ao antigo código da Wikipédia bastante difícil de compreender.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nFoi incrível quando nós o criamos doze anos atrás,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nmas, se quisermos fornecer a soma de todo conhecimento humano para todos,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\ntemos que transformá-lo em algo fácil de compartilhar.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nVisualEditor é a maior mudança na Wikipédia que já fizemos.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nIsso faz com que escrever na Wikipédia seja parecido com escrever uma tarefa da escola ou enviar um e-mail.\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nAinda existem alguns erros,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nmas, se quiser estar à frente e ver como a Wikipédia funcionará num futuro próximo,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\ncrie uma conta na Wikipédia.\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nVá para suas preferências e ative o VisualEditor.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nPode, inclusive, nos ajudar ao usá-lo e enviar comentários sobre ele.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nPor favor, junte-se a nós para fazer a soma de todo conhecimento humano mais fácil de compartilhar.',\n", + " 'bytes': 1441,\n", + " 'sha1': 'ba2gd3a8s8t4lsdy1c8rg14nnk5if60',\n", + " 'parent_id': 99957604,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 99957743,\n", + " 'timestamp': '2013-07-13T16:04:39Z',\n", + " 'user': {'id': 294714, 'text': 'Teles'},\n", + " 'page': {'id': 27232131,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with ' 1 00:00:00,800 --> 00:00:03,500 Oi! Meu nome é Trevor e estou ajudando a construir o VisualEditor para a Wikipédia. 2 00:00:03,505 --> 00:00:07,505 Qualquer...'\",\n", + " 'text': '\\n1\\n00:00:00,800 --> 00:00:03,500\\nOi! Meu nome é Trevor e estou ajudando a construir o VisualEditor para a Wikipédia.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nQualquer um pode editar a Wikipédia, mas muitos que tentam ficam facilmente confusos\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\ndevido ao antigo código da Wikipédia bastante difícil de compreender.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nFoi incrível quando nós o criamos doze anos atrás,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nmas, se quisermos fornecer a soma de todo conhecimento humano para todos,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\ntemos que transformá-lo em algo fácil de compartilhar.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nVisualEditor é a maior mudança na Wikipédia que já fizemos.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nIsso faz com que escrever na Wikipédia seja parecido com escrever uma tarefa da escola ou enviar um e-mail.\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nAinda existem alguns erros,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nmas, se quiser estar à frente e ver como a Wikipédia funcionará num futuro próximo,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\ncrie uma conta na Wikipédia.\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nVá para suas preferências e ative o VisualEditor.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nPode, inclusive, nos ajudar ao usá-lo e enviar comentários sobre ele.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nPor favor, junte-se a nós para fazer a soma de todo conhecimento humano mais fácil de compartilhar.',\n", + " 'bytes': 1441,\n", + " 'sha1': 'ba2gd3a8s8t4lsdy1c8rg14nnk5if60',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100061386,\n", + " 'timestamp': '2013-07-15T13:19:03Z',\n", + " 'user': {'id': 2742126, 'text': 'Jan Ainali (WMSE)'},\n", + " 'page': {'id': 27264020,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:01,270 --> 00:00:10,230 维基百科,是一个可靠的资源吗? 2 00:00:14,810 --> 00:00:19,650 我亲爱的同学们,谢谢愉快的一周...'\",\n", + " 'text': '1 \\n00:00:01,270 --> 00:00:10,230 \\n维基百科,是一个可靠的资源吗?\\n\\n2 \\n00:00:14,810 --> 00:00:19,650 \\n我亲爱的同学们,谢谢愉快的一周。\\n在你们离开前,剖析\\n\\n3 \\n00:00:19,720 --> 00:00:25,870 \\n社会从禁欲者的角度。\\n475页,星期一上交。\\n\\n4 \\n00:00:26,330 --> 00:00:29,220 \\n祝你们有个愉快的周末, \\n谢谢! \\n\\n5 \\n00:00:47,560 --> 00:00:51,760 \\n你是我最爱的学生,谢谢你! \\n\\n6 \\n00:00:57,270 --> 00:00:58,820 \\n下周一 \\n\\n7 \\n00:01:12,660 --> 00:01:21,950 \\n我告诉过你维基百科不是一个可靠的资源,\\n出去,出去!滚出我的房间! \\n\\n8 \\n00:01:38,750 --> 00:01:52,740 \\n你也这样?我非常的失望,出去,出去! \\n\\n9 \\n00:01:59,420 --> 00:02:06,960 \\n我非常的生气,非常生气。 \\n真是气死我了。。。 \\n\\n10 \\n00:02:19,160 --> 00:02:25,930 \\n你能认清你自己吗?你并不是一个人。\\n维基百科是瑞典排名第六 \\n\\n11 \\n00:02:26,060 --> 00:02:31,740 \\n被访问的最多的网页,所以机会是非常大的\\n你的学生去那找一些 \\n\\n12 \\n00:02:31,860 --> 00:02:37,690 \\n真实可靠的信息。也许作为教育者的你\\n也可以这样做呢? \\n\\n13 \\n00:02:38,220 --> 00:02:42,120 \\n但是我们怎么知道维基百科上的文章\\n是可靠的呢? \\n\\n14 \\n00:02:42,530 --> 00:02:49,940 \\n我给你三点建议。它们是\\nSo, Ta and Hi. \\n\\n15 \\n00:02:50,890 --> 00:02:54,860 \\nSo,是英文的资源。他们存在\\n维基百科里文章的最底端。 \\n\\n16 \\n00:02:55,760 --> 00:02:59,700 \\n去看看有多少资源,如果你认为他们是很好的资源。 \\n\\n17 \\n00:02:59,980 --> 00:03:02,960 \\n点进去\\n看看你会被链接到哪里。 \\n\\n18 \\n00:03:03,800 --> 00:03:10,630 \\n第二个是Ta,英文中的讨论。\\n每个文章都有一个标签按钮,进去看看 \\n\\n19 \\n00:03:10,710 --> 00:03:14,580 \\n人们在谈些什么。是不是\\n有些人在自言自语些什么东西?如果是, \\n\\n20 \\n00:03:14,690 --> 00:03:18,850 \\n它通常是一些关于内容和结构的。\\n如果关于文章有个讨论, \\n\\n21 \\n00:03:18,920 --> 00:03:22,640 \\n它通常会使文章变得更好。它证明了\\n有很多人看过文章并且研究了 \\n\\n22 \\n00:03:22,720 --> 00:03:25,250 \\n考虑了文章里有什么,\\n文章看起来怎么样。 \\n\\n23 \\n00:03:26,020 --> 00:03:33,310 \\n最后一个是Hi,是历史。也有一个标签按钮。\\n去看看有多少人添加过信息 \\n\\n24 \\n00:03:33,440 --> 00:03:38,340 \\n有多少人删除过信息。\\n越多人为文章做贡献 \\n\\n25 \\n00:03:38,460 --> 00:03:43,080 \\n参加讨论,文章就会越好。 \\n它会使一个文章更加可信。 \\n\\n26 \\n00:03:44,190 --> 00:03:48,590 \\n以上就是简单的三点建议,资源,讨论和历史 \\n\\n27 \\n00:03:48,790 --> 00:03:50,340 \\n请一起和你的学生看看以上三点 \\n\\n28 \\n00:03:50,420 --> 00:03:55,460 \\n来评价在维基百科上的文章\\n是否可信的。 \\n\\n29 \\n00:03:55,720 --> 00:03:59,780 \\n瑞典维基百科,我们也正在做着\\n一个教育项目—维基百科教育 \\n\\n30 \\n00:03:59,810 --> 00:04:06,020 \\n请让我们知道是否你对它\\n感到好奇,有一些想法或者是有些怀疑? \\n\\n31 \\n00:04:06,400 --> 00:04:10,360 \\n我们希望听到你们的意见。 \\n我们所做的,是让维基百科 \\n\\n32 \\n00:04:10,460 --> 00:04:18,030 \\n易接近的,有用的和易理解的, \\n我们真心希望能得到你们的宝贵意见。 \\n\\n33 \\n00:04:24,240 --> 00:04:29,300 \\n维基百科教育 \\n\\n34 \\n00:04:32,630 --> 00:04:37,240 \\n你已经厌倦了维基百科吗? \\n你还没有从维基百科得到足够的信息吗? \\n\\n35 \\n00:04:37,970 --> 00:04:41,440 \\n联系我们 \\nutbildning@wikimedia.se',\n", + " 'bytes': 3624,\n", + " 'sha1': 'lehqxkjpqt961nj45met1la93jqw5zk',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100298237,\n", + " 'timestamp': '2013-07-19T17:08:13Z',\n", + " 'user': {'id': 20772, 'text': 'Continent'},\n", + " 'page': {'id': 27264975,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '誤字訂正',\n", + " 'text': '\\n1\\n00:00:00,800 --> 00:00:03,500\\nこんにちは、私はトレヴァーといいます\\nウィキペディアのビジュアルエディター開発に携わっています。\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nウィキペディアは誰もが編集できます\\nでも、やってみるとよく分からないと感じる人は多いです\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\nウィキペディアのこれまでの書き方がとても理解しづらいからです\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\n12年前にできたときには良かったんですが\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\n人類が集めたあらゆる知識がすべての人に届くようにしたいなら\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\n送り出すやり方を簡単にしないといけません\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nビジュアルエディターはウィキペディアに対してこれまで行われたうちで最大の変化です\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nこれを使ってウィキペディアに書くと、課題レポートを書いたりメールを送ったりするのと同じようにできます\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nまだ少し不具合もありますが\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nもしウィキペディアが近い将来どうなるかを先取りしてみたいなら\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\n英語版ウィキペディアでアカウントを作って\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\n個人設定に行って、ビジュアルエディターのアルファ版を有効にしてください\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nこれを使った感想や意見を送ってもらえると助かります\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\n私たちといっしょに、人類が集めたあらゆる知識を簡単に送り出せるようにしましょう',\n", + " 'bytes': 1801,\n", + " 'sha1': '6w06hnxshwn9x1u7fdyxdr1nubikdvk',\n", + " 'parent_id': 100064650,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100093375,\n", + " 'timestamp': '2013-07-16T01:50:58Z',\n", + " 'user': {'id': 117688, 'text': 'Billytanghh'},\n", + " 'page': {'id': 27272702,\n", + " 'title': 'Majulah Singapura.ogg.ms.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:04,000 --> 00:00:08,000 Mari kita rakyat Singapura 2 00:00:08,000 --> 00:00:14,000 sama-sama menuju bahagia; 3 00:00:14,000 --> 00:00:20,000 Cita-cita...'\",\n", + " 'text': '1\\n00:00:04,000 --> 00:00:08,000\\nMari kita rakyat Singapura\\n\\n2\\n00:00:08,000 --> 00:00:14,000\\nsama-sama menuju bahagia;\\n\\n3\\n00:00:14,000 --> 00:00:20,000\\nCita-cita kita yang mulia,\\n\\n4\\n00:00:20,000 --> 00:00:24,000\\nberjaya Singapura.\\n\\n5\\n00:00:24,000 --> 00:00:29,000\\nMarilah kita bersatu\\n\\n6\\n00:00:29,000 --> 00:00:34,000\\ndengan semangat yang baru;\\n\\n7\\n00:00:34,000 --> 00:00:40,000\\nSemua kita berseru,\\n\\n8\\n00:00:40,000 --> 00:00:45,000\\nMajulah Singapura,\\n\\n9\\n00:00:45,000 --> 00:00:49,000\\nMajulah Singapura!\\n\\n10\\n00:00:49,000 --> 00:00:54,000\\nMarilah kita bersatu\\n\\n11\\n00:00:54,000 --> 00:00:59,000\\ndengan semangat yang baru;\\n\\n12\\n00:00:59,000 --> 00:01:05,000\\nSemua kita berseru,\\n\\n13\\n00:01:05,000 --> 00:01:10,000\\nMajulah Singapura,\\n\\n14\\n00:01:10,000 --> 00:01:17,000\\nMajulah Singapura!',\n", + " 'bytes': 776,\n", + " 'sha1': '3jfk5cxv1bl0aw555bkawv2t0bsf6g9',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 376799534,\n", + " 'timestamp': '2019-11-21T10:49:19Z',\n", + " 'user': {'id': 2073340, 'text': 'Jdx'},\n", + " 'page': {'id': 27272737,\n", + " 'title': 'Majulah Singapura.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/139.218.96.19|139.218.96.19]] ([[User talk:139.218.96.19|talk]]) to last revision by Billytanghh',\n", + " 'text': '1\\n00:00:04,000 --> 00:00:08,000\\nCome, fellow Singaporeans\\n\\n2\\n00:00:08,000 --> 00:00:14,000\\nLet us progress towards happiness together\\n\\n3\\n00:00:14,000 --> 00:00:20,000\\nMay our noble aspiration bring\\n\\n4\\n00:00:20,000 --> 00:00:24,000\\nSingapore success\\n\\n5\\n00:00:24,000 --> 00:00:29,000\\nCome, let us unite\\n\\n6\\n00:00:29,000 --> 00:00:34,000\\nIn a new spirit\\n\\n7\\n00:00:34,000 --> 00:00:40,000\\nTogether we proclaim\\n\\n8\\n00:00:40,000 --> 00:00:45,000\\nOnward Singapore\\n\\n9\\n00:00:45,000 --> 00:00:49,000\\nOnward Singapore\\n\\n10\\n00:00:49,000 --> 00:00:54,000\\nCome, let us unite\\n\\n11\\n00:00:54,000 --> 00:00:59,000\\nIn a new spirit\\n\\n12\\n00:00:59,000 --> 00:01:05,000\\nTogether we proclaim\\n\\n13\\n00:01:05,000 --> 00:01:10,000\\nOnward Singapore\\n\\n14\\n00:01:10,000 --> 00:01:17,000\\nOnward Singapore',\n", + " 'bytes': 763,\n", + " 'sha1': 'bsepot0lhfxrrcclr8glbbyhq8ueri8',\n", + " 'parent_id': 371477314,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100093656,\n", + " 'timestamp': '2013-07-16T02:00:36Z',\n", + " 'user': {'id': 117688, 'text': 'Billytanghh'},\n", + " 'page': {'id': 27272768,\n", + " 'title': 'Majulah Singapura.ogg.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:04,000 --> 00:00:08,000 来吧,新加坡人民, 2 00:00:08,000 --> 00:00:14,000 让我们共同向幸福迈进; 3 00:00:14,000 --> 00:00:20,000 ...'\",\n", + " 'text': '1\\n00:00:04,000 --> 00:00:08,000\\n来吧,新加坡人民,\\n\\n2\\n00:00:08,000 --> 00:00:14,000\\n让我们共同向幸福迈进;\\n\\n3\\n00:00:14,000 --> 00:00:20,000\\n我们崇高的理想,\\n\\n4\\n00:00:20,000 --> 00:00:24,000\\n要使新加坡成功。\\n\\n5\\n00:00:24,000 --> 00:00:29,000\\n来吧,让我们以新的精神,\\n\\n6\\n00:00:29,000 --> 00:00:34,000\\n团结在一起;\\n\\n7\\n00:00:34,000 --> 00:00:40,000\\n我们齐声欢呼:\\n\\n8\\n00:00:40,000 --> 00:00:45,000\\n前进吧,新加坡!\\n\\n9\\n00:00:45,000 --> 00:00:49,000\\n前进吧,新加坡!\\n\\n10\\n00:00:49,000 --> 00:00:54,000\\n来吧,让我们以新的精神,\\n\\n11\\n00:00:54,000 --> 00:00:59,000\\n团结在一起;\\n\\n12\\n00:00:59,000 --> 00:01:05,000\\n我们齐声欢呼:\\n\\n13\\n00:01:05,000 --> 00:01:10,000\\n前进吧,新加坡!\\n\\n14\\n00:01:10,000 --> 00:01:17,000\\n前进吧,新加坡!',\n", + " 'bytes': 833,\n", + " 'sha1': '39gpj4iajct3lo9g6acf8ce2uv26crc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100093711,\n", + " 'timestamp': '2013-07-16T02:03:58Z',\n", + " 'user': {'id': 117688, 'text': 'Billytanghh'},\n", + " 'page': {'id': 27272781,\n", + " 'title': 'Majulah Singapura.ogg.ta.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:04,000 --> 00:00:08,000 சிங்கப்பூர் மக்கள் நாம் 2 00:00:08,000 --> 00:00:14,000 செல்வொம் ம...'\",\n", + " 'text': '1\\n00:00:04,000 --> 00:00:08,000\\nசிங்கப்பூர் மக்கள் நாம்\\n\\n2\\n00:00:08,000 --> 00:00:14,000\\nசெல்வொம் மகிழ்வை நோக்கியே\\n\\n3\\n00:00:14,000 --> 00:00:20,000\\nசிங்கப்பூரின் வெற்றிதான்\\n\\n4\\n00:00:20,000 --> 00:00:24,000\\nசிறந்த நம் நாட்டமே\\n\\n5\\n00:00:24,000 --> 00:00:29,000\\nஒன்றிணைவோம் அனைவரும்\\n\\n6\\n00:00:29,000 --> 00:00:34,000\\nஓங்கிடும் புத்துணர்வுடன்\\n\\n7\\n00:00:34,000 --> 00:00:40,000\\nமுழுங்குவோம் ஒன்றித்தே\\n\\n8\\n00:00:40,000 --> 00:00:45,000\\nமுன்னேறட்டும் சிங்கப்பூர்\\n\\n9\\n00:00:45,000 --> 00:00:49,000\\nமுன்னேறட்டும் சிங்கப்பூர்\\n\\n10\\n00:00:49,000 --> 00:00:54,000\\nஒன்றிணைவோம் அனைவரும்\\n\\n11\\n00:00:54,000 --> 00:00:59,000\\nஓங்கிடும் புத்துணர்வுடன்\\n\\n12\\n00:00:59,000 --> 00:01:05,000\\nமுழுங்குவோம் ஒன்றித்தே\\n\\n13\\n00:01:05,000 --> 00:01:10,000\\nமுன்னேறட்டும் சிங்கப்பூர்\\n\\n14\\n00:01:10,000 --> 00:01:17,000\\nமுன்னேறட்டும் சிங்கப்பூர்',\n", + " 'bytes': 1411,\n", + " 'sha1': 'rzi59wdv6oynfy3f6bijzgfof8370vx',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 644169345,\n", + " 'timestamp': '2022-03-26T09:25:14Z',\n", + " 'user': {'id': 10962988, 'text': 'Endwise'},\n", + " 'page': {'id': 27275729,\n", + " 'title': 'Trayvon Martin Shooting Call1.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Minor corrections',\n", + " 'text': \"0\\n00:00:00,130 --> 00:00:05,939\\nDispatcher: Sanford Police Department. ...\\nZimmerman: Hey, we've had some break-ins in\\n\\n1\\n00:00:05,940 --> 00:00:12,490\\nmy neighborhood, and there's a real suspicious\\nguy, uh, [near] Retreat View Circle. Um, the\\n\\n2\\n00:00:12,490 --> 00:00:19,220\\nbest address I can give you is 111 Retreat\\nView Circle. This guy looks like he's up to\\n\\n3\\n00:00:19,220 --> 00:00:24,659\\nno good, or he's on drugs or something. It's\\nraining and he's just walking around, looking\\n\\n4\\n00:00:24,659 --> 00:00:27,589\\nabout.\\nDispatcher: Okay, and this guy is he white,\\n\\n5\\n00:00:27,589 --> 00:00:29,749\\nblack, or Hispanic?\\nZimmerman: He looks black.\\n\\n6\\n00:00:29,749 --> 00:00:34,940\\nDispatcher: Did you see what he was wearing?\\nZimmerman: Yeah. A dark hoodie, like a grey\\n\\n7\\n00:00:34,940 --> 00:00:41,940\\nhoodie, and either jeans or sweatpants and\\nwhite tennis shoes. He's, I don't know,\\n\\n8\\n00:00:42,090 --> 00:00:44,990\\nhe was just staring...\\nDispatcher: Okay, he's just walking around\\n\\n9\\n00:00:44,990 --> 00:00:46,040\\nthe area...\\nZimmerman: ...looking at all the houses.\\n\\n10\\n00:00:46,040 --> 00:00:49,150\\nDispatcher: Okay...\\nZimmerman: Now he's just staring at me.\\n\\n11\\n00:00:49,150 --> 00:00:52,410\\nDispatcher: Okay. You said it's 1111 Retreat\\nView? Or 111?\\n\\n12\\n00:00:52,410 --> 00:00:55,180\\nZimmerman: That's the clubhouse...\\nDispatcher: That's the clubhouse. Do you know\\n\\n13\\n00:00:55,180 --> 00:01:00,190\\nwhat the—he's near the clubhouse right now?\\nZimmerman: Yeah, now he's coming towards me.\\n\\n14\\n00:01:00,190 --> 00:01:07,190\\nDispatcher: Okay.\\nZimmerman: He's got his hand in his waistband.\\n\\n15\\n00:01:08,390 --> 00:01:11,149\\nAnd he's a black male.\\nDispatcher: How old would you say he looks?\\n\\n16\\n00:01:11,149 --> 00:01:13,819\\nZimmerman: He's got a button on his shirt.\\nLate teens.\\n\\n17\\n00:01:13,819 --> 00:01:20,819\\nDispatcher: Late teens. Okay.\\nZimmerman: Something's wrong with him. Yup,\\n\\n18\\n00:01:21,729 --> 00:01:23,179\\nhe's coming to check me out. He's got something\\nin his hands. I don't know what his deal is.\\n\\n19\\n00:01:23,179 --> 00:01:25,069\\nDispatcher: Okay, just let me know if he does anything,\\nokay?\\n\\n20\\n00:01:25,069 --> 00:01:29,130\\nZimmerman: How long until you get an officer\\nover here?\\n\\n21\\n00:01:29,130 --> 00:01:36,130\\nDispatcher: Yeah, we've got someone on the\\nway. Just let me know if this guy does anything\\n\\n22\\n00:01:36,929 --> 00:01:43,090\\nelse.\\nZimmerman: Okay. These assholes, they always\\n\\n23\\n00:01:43,090 --> 00:01:50,090\\nget away. When you come to the clubhouse,\\nyou come straight in and make a left. Actually,\\n\\n24\\n00:01:51,880 --> 00:01:56,149\\nyou would go past the clubhouse.\\nDispatcher: So it's on the left-hand side from\\n\\n25\\n00:01:56,149 --> 00:01:59,899\\nthe clubhouse?\\nZimmerman: No, you go in straight through\\n\\n26\\n00:01:59,899 --> 00:02:06,849\\nthe entrance and then you make a left...uh,\\nyou go straight in, don't turn, and make a\\n\\n27\\n00:02:06,849 --> 00:02:10,789\\nleft. Shit, he's running.\\nDispatcher: He's running? Which way is he\\n\\n28\\n00:02:10,789 --> 00:02:13,609\\nrunning?\\nZimmerman: Down towards the other entrance\\n\\n29\\n00:02:13,610 --> 00:02:16,250\\nto the neighborhood.\\nDispatcher: Which entrance is that that he's\\n\\n30\\n00:02:16,250 --> 00:02:18,740\\nheading towards?\\nZimmerman: The back entrance...fucking [disputed/unintelligible]\\n\\n31\\n00:02:18,740 --> 00:02:21,940\\nDispatcher: Are you following him?\\nZimmerman: Yeah.\\n\\n32\\n00:02:21,940 --> 00:02:26,859\\nDispatcher: Okay, we don't need you to do\\nthat.\\n\\n33\\n00:02:26,860 --> 00:02:33,310\\nZimmerman: Okay.\\nDispatcher: All right, sir, what is your name?\\n\\n34\\n00:02:33,310 --> 00:02:39,120\\nZimmerman: George...He ran.\\nDispatcher: All right, George, what's your\\n\\n35\\n00:02:39,120 --> 00:02:41,700\\nlast name?\\nZimmerman: Zimmerman.\\n\\n36\\n00:02:41,700 --> 00:02:45,829\\nDispatcher: And George, what's the phone number\\nyou're calling from?\\n\\n37\\n00:02:45,830 --> 00:02:48,300\\nZimmerman: [redacted]\\nDispatcher: All right, George, we do have\\n\\n38\\n00:02:48,300 --> 00:02:55,300\\nthem on the way. Do you want to meet with\\nthe officer when they get out there?\\n\\n39\\n00:02:55,940 --> 00:02:58,870\\nZimmerman: Yeah.\\nDispatcher: Alright, where you going to meet\\n\\n40\\n00:02:58,870 --> 00:03:03,010\\nwith them at?\\nZimmerman: If they come in through the gate,\\n\\n41\\n00:03:03,010 --> 00:03:10,010\\ntell them to go straight past the club house,\\nand uh, straight past the club house and make\\n\\n42\\n00:03:12,760 --> 00:03:18,420\\na left, and then they go past the mailboxes,\\nyou'll see my truck...[unintelligible]\\n\\n43\\n00:03:18,420 --> 00:03:22,119\\nDispatcher: What address are you parked in\\nfront of?\\n\\n44\\n00:03:22,120 --> 00:03:25,490\\nZimmerman: I don't know. It's a cut through\\nso I don't know the address.\\n\\n45\\n00:03:25,490 --> 00:03:29,100\\nDispatcher: Okay. Do you live in the area?\\nZimmerman: Yeah, I...[unintelligible]\\n\\n46\\n00:03:29,100 --> 00:03:35,680\\nDispatcher: What's your apartment number?\\nZimmerman: It's a home. It's 1950, Oh, crap.\\n\\n47\\n00:03:35,680 --> 00:03:38,660\\nI don't want to give it all out. I don't know\\nwhere this kid is.\\n\\n48\\n00:03:38,660 --> 00:03:41,530\\nDispatcher: Okay. Do you want to just meet\\nwith them right near the mailboxes then?\\n\\n49\\n00:03:41,530 --> 00:03:46,060\\nZimmerman: Yeah, that's fine.\\nDispatcher: All right, George. I'll let them\\n\\n50\\n00:03:46,060 --> 00:03:49,460\\nknow to meet you around there okay?\\nZimmerman: Actually, could you have them call\\n\\n51\\n00:03:49,460 --> 00:03:52,670\\nme and I'll tell them where I'm at?\\nDispatcher: Okay, yeah. That's no problem.\\n\\n52\\n00:03:52,670 --> 00:03:54,709\\nZimmerman: Should I give you my number or\\nyou got it?\\n\\n53\\n00:03:54,710 --> 00:03:57,450\\nDispatcher: Yeah, I got it [redacted]\\nZimmerman: Yeah, you got it.\\n\\n54\\n00:03:57,450 --> 00:04:02,480\\nDispatcher: Okay. No problem. I'll let them\\nknow to call you when they're in the area.\\n\\n55\\n00:04:02,480 --> 00:04:03,629\\nZimmerman: Thanks.\\nDispatcher: You're welcome.\",\n", + " 'bytes': 5836,\n", + " 'sha1': 'r8b429qf39g2bchmk3u3f97umi31s79',\n", + " 'parent_id': 154293812,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100149717,\n", + " 'timestamp': '2013-07-17T04:28:43Z',\n", + " 'user': {'text': '216.229.136.201'},\n", + " 'page': {'id': 27288684,\n", + " 'title': 'Unterstützen Sie Wikipedia.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'This is a translation in progress',\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,00\\nMy favorite word in Wikipedia? *Pfff.\\n\\n2\\n00:00:05,001 --> 00:00:09,00\\nESM – Europäischer Stabilitätsmechanismus\\n\\n3\\n00:00:09,001 --> 00:00:11,00\\nKoboldmakis\\n\\n4\\n00:00:11,001 --> 00:00:12,00\\nFukushima\\n\\n5\\n00:00:12,001 --> 00:00:14,00\\nUh! Lightfield Camera\\n\\n6\\n00:00:14,001 --> 00:00:16,00\\nPolymerase-Kettenreaktion\\n\\n7\\n00:00:16,001 --> 00:00:18,00\\nFußwurzelarthrose\\n\\n8\\n00:00:18,001 --> 00:00:20,00\\nWusste ich besser Bescheid als mein Hausarzt\\n\\n9\\n00:00:20,001 --> 00:00:24,00\\nDann ist man bei Fiskalpakt, bei Rettungsschirm\\n\\n10\\n00:00:24,001 --> 00:00:26,00\\nund am Ende ist man selber Experte\\n\\n11\\n00:00:26,001 --> 00:00:28,00\\nKaffeklatsch\\n\\n12\\n00:00:28,001 --> 00:00:30,00\\nIndigo-Kinder\\n\\n13\\n00:00:30,001 --> 00:00:31,00\\nAserbaidschan\\n\\n14\\n00:00:31,001 --> 00:00:33,30\\nIst halt so ein kleines *pff Ding\\n\\n15\\n00:00:33,301 --> 00:00:35,00\\nSocial Entrepreneur\\n\\n16\\n00:00:35,001 --> 00:00:38,30\\nMeine Eltern mussten nachschlagen, aber jetzt wissen sie, was ich tue\\n\\n17\\n00:00:38,301 --> 00:00:41,00\\nIch wusste gleich, dass mein Kind etwas Besonderes ist\\n\\n18\\n00:00:41,001 --> 00:00:44,00\\nVor allem hätte die Dimension gar nicht in eine Zeitung gepasst\\n\\n19\\n00:00:44,001 --> 00:00:47,00\\nWenn ich unterwegs bin, was wissen möchte, möchte ich es sofort wissen\\n\\n20\\n00:00:47,001 --> 00:00:51,00\\nBevor ich Fachliteratur kaufe, hol ich mir hier erst mal ein großen Überblick\\n\\n21\\n00:00:51,001 --> 00:00:53,00\\nHat mir beim Studium sehr geholfen\\n\\n22\\n00:00:53,001 --> 00:00:55,00\\nTut mir leid, mir fällt nichts ein.\\n\\n23\\n00:00:55,000 --> 00:00:58,00\\nIch benutze es jeden Tag. Es ist wie Frühstücken und Zähneputzen.\\n\\n24\\n00:00:58,001 --> 00:01:02,00\\nMal ehrlich. Können Sie sich eine Welt ohne Wikipedia vorstellen? \\n\\n25\\n00:01:03,001 --> 00:01:06,00\\nAlso, ich kann das nicht. Wikipedia ist so wichtig für uns alle. \\n\\n26\\n00:01:06,001 --> 00:01:08,00\\nWikipedia hilft uns, wenn wir Informationen brauchen. \\n\\n27\\n00:01:08,001 --> 00:01:12,00\\nHilft uns, wenn wir Wissen suchen. Aber Wikipedia ist nicht selbstverständlich. \\n\\n28\\n00:01:12,001 --> 00:01:17,00\\nWikipedia ist getragen von ehrenamtlichen, aber wir haben Kosten. \\n\\n29\\n00:01:17,001 --> 00:01:22,00\\nFür den Betrieb der Webseite, für die Entwicklung der Software, für Programme, rund um die Förderung Freien Wissens.\\n\\n30\\n00:01:22,001 --> 00:01:29,00\\nEbay nimmt Gebühren. Google und Facebook schalten Werbung. Warum macht das eigentlich Wikipedia nicht?\\n\\n31\\n00:01:29,001 --> 00:01:33,00\\nWir finanzieren uns über Spenden. Leser spenden für Wikipedia. Leser, wie sie. \\n\\n32\\n00:01:33,001 --> 00:01:38,00\\nUnd deswegen bitte ich sie heute, um ihre Spende für Wikipedia. \\n\\n33\\n00:01:38,001 --> 00:01:41,00\\nSorgen sie dafür, dass Wikipedia auch in Zukunft für uns da ist. \\n\\n34\\n00:01:41,001 --> 00:01:43,00\\nSeien sie jetzt für Wikipedia da. \\n\\n35\\n00:01:43,001 --> 00:01:45,00\\nDankeschön.\\n\\n35\\n00:01:45,001 --> 00:01:47,00\\n*Wikipedia soll kostenlos und unabhängig bleiben. Helfen sie mit.',\n", + " 'bytes': 2954,\n", + " 'sha1': '9ph4kd7q76oveqw4kjled02fdnfxecb',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100171096,\n", + " 'timestamp': '2013-07-17T14:11:10Z',\n", + " 'user': {'text': '190.64.10.68'},\n", + " 'page': {'id': 27295321,\n", + " 'title': 'United States Navy Band - National Anthem of Uruguay (complete).ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:58,000 --> 00:01:01,800\\nOrientales, la Patria o la tumba\\n\\n2\\n00:01:02,000 --> 00:01:05,200\\nLibertad, o con gloria morir!\\n\\n3\\n00:01:05,400 --> 00:01:08,400\\nOrientales, la Patria o la tumba\\n\\n4\\n00:01:08,600 --> 00:01:11,800\\nLibertad, o con gloria morir!\\n\\n5\\n00:01:12,000 --> 00:01:15,200\\nEs el voto que el alma pronuncia\\n\\n6\\n00:01:15,400 --> 00:01:18,200\\nY que heroicos, sabremos cumplir\\n\\n7\\n00:01:18,400 --> 00:01:21,200\\nEs el voto que el alma pronuncia\\n\\n8\\n00:01:21,400 --> 00:01:25,000\\nY que heroicos, sabremos cumplir!\\n\\n9\\n00:01:25,400 --> 00:01:28,600\\n¡Que sabremos cumplir!\\n\\n10\\n00:01:28,800 --> 00:01:31,600\\nEs el voto que el alma pronuncia\\n\\n11\\n00:01:31,800 --> 00:01:35,000\\nY que heroicos, sabremos cumplir!\\n\\n12\\n00:01:35,400 --> 00:01:38,600\\n¡Que sabremos cumplir!\\n\\n13\\n00:01:39,400 --> 00:01:42,600\\n¡Sabremos cumplir!\\n\\n14\\n00:01:43,200 --> 00:01:49,600\\n¡Sabremos cumplir! ¡Sabremos cumplir!',\n", + " 'bytes': 899,\n", + " 'sha1': '9g1x6vgpl52icyoytjexlfgm0r82eo1',\n", + " 'parent_id': 100170940,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 682867614,\n", + " 'timestamp': '2022-08-16T14:24:09Z',\n", + " 'user': {'text': '115.164.204.129'},\n", + " 'page': {'id': 27295682,\n", + " 'title': 'Negaraku instrumental.ogg.ms.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '.Saya di talian berikut merupakan maklumat .lanjut mengenai perkara tersebut melui .akiah yang tang dalam negeri koperasi ini .sagsat di si amalan kita semua dapat .sambutan hangat pergerauan oleheg .Gurgoer_',\n", + " 'text': '1\\n00:00:08,000 --muralimegarmutu19741641030> 00:00:12,000\\nNegaraku,\\n\\n2\\n00:00:13,000 --> 00:00:19,000\\nTanah tumpahnya darahku,\\n\\n3\\n00:00:20,000 --> 00:00:30,000\\nRakyat hidup, bersatu dan maju,\\n\\n4\\n00:00:32,000 --> 00:00:43,000\\nRahmat bahagia, Tuhan kurniakan,\\n\\n5\\n00:00:44,000 --> 00:00:55,000\\nRaja kita, Selamat bertakhta!\\n\\n6\\n00:00:56,000 --> 00:01:06,000\\nRahmat bahagia, Tuhan kurniakan,\\n\\n7\\n00:01:08,000 --> 00:01:20,000\\nRaja kita, Selamat bertakhta!',\n", + " 'bytes': 448,\n", + " 'sha1': 'hpy1xnox41teq55lbdp16vodz56it1i',\n", + " 'parent_id': 562860502,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100189850,\n", + " 'timestamp': '2013-07-17T21:36:32Z',\n", + " 'user': {'id': 240842, 'text': 'Jean-Frédéric'},\n", + " 'page': {'id': 27302719,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Hop!',\n", + " 'text': '1\\n00:00:01,270 --> 00:00:10,230\\nWikipédia, une source fiable ?\\n\\n2\\n00:00:14,810 --> 00:00:19,650\\nEh bien, mes chers élèves, merci pour cette charmante semaine.\\nAvant de partir, la société\\n\\n3\\n00:00:19,720 --> 00:00:25,870\\npost-moderne dans une perspective stoïcienne,\\n475 pages, à rendre pour lundi.\\n\\n4\\n00:00:26,330 --> 00:00:29,220\\nPassez un bon week-end, \\nMerci !\\n\\n5\\n00:00:47,560 --> 00:00:51,760\\nAh, ma meilleure élève, merci !\\n\\n6\\n00:00:57,270 --> 00:00:58,820\\n<i>Le lundi suivant<i>\\n\\n7\\n00:01:12,660 --> 00:01:21,950\\nJe vous ai dit que Wikipédia n’est pas une source\\nfiable, dehors, dehors ! Sortez de mon bureau !\\n\\n8\\n00:01:38,750 --> 00:01:52,740\\nMême toi ? Je suis déçue, dehors, dehors !\\n\\n9\\n00:01:59,420 --> 00:02:06,960\\nJe suis tellement en colère, en colère.\\nJe dois, je dois…\\n\\n10\\n00:02:19,160 --> 00:02:25,930\\nVous vous reconnaissez ? Vous n’êtes pas seul.\\nWikipédia est le sixième site le plus\\n\\n11\\n00:02:26,060 --> 00:02:31,740\\nvisité en Suède, il y a donc de bonnes chances\\nque vos élèves l’utilisent pour trouver des faits\\n\\n12\\n00:02:31,860 --> 00:02:37,690\\net des informations. Peut-être même que vous,\\nenseignant, le faites aussi ?\\n\\n13\\n00:02:38,220 --> 00:02:42,120\\nMais comment savoir si les articles \\nde Wikipédia sont fiables ou pas ?\\n\\n14\\n00:02:42,530 --> 00:02:49,940\\nJe vous vous donner trois astuces : So, Di, et Hi.\\n\\n15\\n00:02:50,890 --> 00:02:54,860\\nSo, ce sont les sources. Elles sont renseignées au bas\\ndes articles Wikipédia.\\n\\n16\\n00:02:55,760 --> 00:02:59,700\\nRegardez combien il y en a, et si vous estimez que ce sont de bonnes sources.\\n\\n17\\n00:02:59,980 --> 00:03:02,960\\nC’est une bonne idée que de cliquer sur la source\\npour voir où vous arrivez.\\n\\n18\\n00:03:03,800 --> 00:03:10,630\\nLe second est Di, pour Discussion.\\nPour chaque article, il y a un onglet,\\n\\n19\\n00:03:10,710 --> 00:03:14,580\\nallez voir ce dont discutent les gens.\\nIl y a-t-il seulement des discussions ?\\n\\n20\\n00:03:14,690 --> 00:03:18,850\\nSi oui, c’est généralement sur le contenu et la structure des articles.\\nS’il y a une discussion associée à l’article,\\n\\n21\\n00:03:18,920 --> 00:03:22,640\\ncela rend généralement l’article meilleur. Cela montre que \\nbeaucoup de personnes sont passées par l’article, l’ont étudié\\n\\n22\\n00:03:22,720 --> 00:03:25,250\\net ont réfléchi à ce qu’il y a dans l’article et\\nà quoi il devrait ressembler.\\n\\n23\\n00:03:26,020 --> 00:03:33,310\\nLe dernier, c’est Hi, Historique. C’est aussi un onglet.\\nRegardez combien de personnes ont ajouté ou retiré\\n\\n24\\n00:03:33,440 --> 00:03:38,340\\ndes informations. Plus il y a de contributeurs et de personnes \\nprenant part aux discussion, mieux c’est.\\n\\n25\\n00:03:38,460 --> 00:03:43,080\\nCela rend l’article beaucoup plus fiable.\\n\\n26\\n00:03:44,190 --> 00:03:48,590\\nCe sont donc trois choses simples, So, Di, et Hi.\\n\\n27\\n00:03:48,790 --> 00:03:50,340\\nRegardez donc cela ensemble avec vos étudiants\\n\\n28\\n00:03:50,420 --> 00:03:55,460\\npour évaluer la fiabilité d’un article Wikipédia.\\n\\n29\\n00:03:55,720 --> 00:03:59,780\\nÀ Wikimédia Suède, nous travaillons sur un programme\\n« Wikipédia et l’Éducation »\\n\\n30\\n00:03:59,810 --> 00:04:06,020\\nContactez-nous si vous êtes curieux, intriguées,\\nou peut-être sceptiques ?\\n\\n31\\n00:04:06,400 --> 00:04:10,360\\nNous voulons avoir votre avis.\\nCe que nous faisons, c’est rendre Wikipédia\\n\\n32\\n00:04:10,460 --> 00:04:18,030\\nplus accessible, plus utile, plus compréhensible.\\nNous voulons vraiment en discuter avec vous.\\n\\n33\\n00:04:24,240 --> 00:04:29,300\\nWikipedia dans l’Éducation\\n\\n34\\n00:04:32,630 --> 00:04:37,240\\nVous en avez assez de Wikipédia ?\\nVous ne vous lassez pas de Wikipédia ?\\n\\n35\\n00:04:37,970 --> 00:04:41,440\\nContactez-nous à\\nutbildning@wikimedia.se',\n", + " 'bytes': 3731,\n", + " 'sha1': '8jci056yefd4ihwjsalj9ebfxs3eky4',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 325873688,\n", + " 'timestamp': '2018-10-30T02:20:36Z',\n", + " 'user': {'text': '200.84.203.161'},\n", + " 'page': {'id': 27305260,\n", + " 'title': 'United States Navy Band - Gloria al Bravo Pueblo.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,000\\n¡Gloria al Bravo Pueblo!\\n\\n2\\n00:00:02,300 --> 00:00:04,200\\nque el yugo lanzó\\n\\n3\\n00:00:05,400 --> 00:00:06,200\\nla Ley respetando\\n\\n4\\n00:00:7,300 --> 00:00:8,200\\nla virtud y honor\\n\\n5\\n00:00:11,000 --> 00:00:12,200\\n¡Gloria al Bravo Pueblo!\\n\\n6\\n00:00:13,400 --> 00:00:14,200\\nque el yugo lanzó\\n\\n7\\n00:00:15,400 --> 00:00:17,200\\nla Ley respetando.\\n\\n8\\n00:00:18,000 --> 00:00:19,200\\nla virtud y honor\\n\\n9\\n00:00:20,300 --> 00:00:21,200\\n¡Abajo cadenas!\\n\\n10\\n00:00:23,000 --> 00:00:25,200\\n¡Abajo cadenas!\\n\\n11\\n00:00:26,000 --> 00:00:27,200\\nGritaba el Señor,\\n\\n12\\n00:00:28,000 --> 00:00:29,200\\nGritaba el Señor..\\n\\n13\\n00:00:31,000 --> 00:00:35,200\\ny el pobre en su\\nchoza, libertad pidió\\n\\n14\\n00:00:36,000 --> 00:00:40,200\\na este Santo nombre,\\ntembló de pavor\\n\\n15\\n00:00:42,000 --> 00:00:46,200\\nel vil egoísmo\\nque otra vez triunfó\\n\\n16\\n00:00:47,000 --> 00:00:49,200\\na este Santo nombre \\n\\n17\\n00:00:50,000 --> 00:00:53,200\\na este Santo nombre \\n\\n18\\n00:00:53,500 --> 00:00:55,200\\ntembló de pavor \\n\\n19\\n00:00:56,000 --> 00:00:57,200\\nel vil egoísmo\\n\\n20\\n00:00:58,400 --> 00:01:00,200\\nque otra vez triunfó\\n\\n21\\n00:01:02,000 --> 00:01:04,200\\nel vil egoísmo \\n\\n22\\n00:01:05,000 --> 00:01:06,200\\nque otra vez triunfó...\\n\\n23\\n00:01:07,100 --> 00:1:10,200\\n¡Gloria al Bravo pueblo!\\n\\n24\\n00:01:10,700 --> 00:01:12,200\\nque el yugo lanzó\\n\\n25\\n00:01:12,000 --> 00:01:15,200\\nla Ley respetando\\n\\n26\\n00:01:16,000 --> 00:01:17,200\\nla virtud y honor \\n\\n27\\n00:01:18,000 --> 00:01:20,200\\n¡Gloria al Bravo pueblo!\\n\\n28\\n00:01:21,000 --> 00:01:23,200\\nque el yugo lanzó\\n\\n29\\n00:01:24,000 --> 00:01:26,200\\nla Ley respetando\\n\\n30\\n00:01:27,000 --> 00:01:29,200\\nla virtud y honor',\n", + " 'bytes': 1661,\n", + " 'sha1': '66k1p4194ctruzypjczl4u1jr23rvft',\n", + " 'parent_id': 272256222,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100333599,\n", + " 'timestamp': '2013-07-20T09:20:48Z',\n", + " 'user': {'id': 1190641, 'text': 'Manojk'},\n", + " 'page': {'id': 27305760,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.ml.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:01,270 --> 00:00:10,230\\n<!--Wikipedia, a trustworthy source?-->വിശ്വസിക്കാവുന്ന ഒരു സ്രോതസ്സാണോ വിക്കിപീഡിയ ?\\n\\n2\\n00:00:14,810 --> 00:00:19,650\\n<!--Well, my dear students, thanks for a nice-->ശരി, എന്റെ കുട്ടികളേ, ഈ നല്ലരൊഴ്ചയ്ക്ക് നന്ദി.\\nBefore you go, the post-modern\\n\\n3\\n00:00:19,720 --> 00:00:25,870\\nsociety from a stoicistisc perspective,\\n475 pages, hand in on Monday.\\n\\n4\\n00:00:26,330 --> 00:00:29,220\\n<!--Have a nice weekend, -->നല്ലൊരാഴ്ച ആശംസിക്കുന്നു, \\n<!--Thank you!-->താങ്ക്\\u200cയൂ !\\n\\n5\\n00:00:47,560 --> 00:00:51,760\\n<!--You are my favorite pupil, thank you!-->നിങ്ങളെന്റെ പ്രിയപ്പെട്ടെ ശിഷ്യരാണ്, നന്ദി\\n\\n6\\n00:00:57,270 --> 00:00:58,820\\n<!--Next Monday-->അടുത്ത തിങ്കളാഴ്ച\\n\\n7\\n00:01:12,660 --> 00:01:21,950\\n<!--I told you that Wikipedia is not a credible-->ഞാന്\\u200d നിന്നോട് പറഞ്ഞിരുന്നില്ലേ വിക്കിപീഡിയ വിശ്വസിനീയമായ\\n<!--source, out, out! Get out of my room!-->സ്രോതസല്ല എന്ന്, പോ, പോ! എന്റെ മുറിയില്\\u200d നിന്ന് പുറത്ത് കടക്ക്\\n\\n8\\n00:01:38,750 --> 00:01:52,740\\n<!--Even you? I'm disappointed, out, out!-->നീയും കൂടി ? ഞാന്\\u200d നിരാശനാണ്, പോ, പോ!\\n\\n\\n9\\n00:01:59,420 --> 00:02:06,960\\nഎനിക്ക് ശരിക്കും ദേഷ്യം വരുന്നു, ദേഷ്യം.<!--I get so angry, angry.--> \\nI've bloody well...\\n\\n10\\n00:02:19,160 --> 00:02:25,930\\nDo you recognize yourself? You are not\\nalone. വിക്കിപീഡിയ is Swedens sixth most\\n\\n11\\n00:02:26,060 --> 00:02:31,740\\nvisited page, so chances are pretty high\\nthat your students go there to find facts\\n\\n12\\n00:02:31,860 --> 00:02:37,690\\nand information, just there. Perhaps even\\nyou as educator do that?\\n\\n13\\n00:02:38,220 --> 00:02:42,120\\nBut how can you know whether the articles \\non വിക്കിപീഡിയ are reliable or not?\\n\\n14\\n00:02:42,530 --> 00:02:49,940\\nI'll give you three tips. The tips, they are\\nSo, Ta and Hi.\\n\\n15\\n00:02:50,890 --> 00:02:54,860\\nSo, it is sources. They exists at the\\nbottom of the വിക്കിപീഡിയ articles.\\n\\n16\\n00:02:55,760 --> 00:02:59,700\\nLook at how many it is and if you think they are good sources.\\n\\n17\\n00:02:59,980 --> 00:03:02,960\\nPlease do click through on\\nthe source to see where you end up.\\n\\n18\\n00:03:03,800 --> 00:03:10,630\\nSecond is Ta, this means Talk. For\\neach article, there is a tab, go in and see\\n\\n19\\n00:03:10,710 --> 00:03:14,580\\nwhat people are talking about. Do they\\neven talk about anything? If they are, it is\\n\\n20\\n00:03:14,690 --> 00:03:18,850\\nusually about content and structure. If\\nthere is a discussion about the article, it\\n\\n21\\n00:03:18,920 --> 00:03:22,640\\nusually makes the article better. It shows\\nmany have been in the article and studied\\n\\n22\\n00:03:22,720 --> 00:03:25,250\\nand considered what is in the article and\\nhow it should look like.\\n\\n23\\n00:03:26,020 --> 00:03:33,310\\nLast is Hi, History. That is also a tab.\\nCheck how many have added information\\n\\n24\\n00:03:33,440 --> 00:03:38,340\\nand removed information. The more\\ncontributers and people partaking in\\n\\n25\\n00:03:38,460 --> 00:03:43,080\\ndiscussions, the better.\\nIt makes article a lot more credible.\\n\\n26\\n00:03:44,190 --> 00:03:48,590\\nSo it is three simple things, So, Ta and Hi.\\n\\n27\\n00:03:48,790 --> 00:03:50,340\\nPlease take a look on this together with your\\n\\n28\\n00:03:50,420 --> 00:03:55,460\\nstudents in order to evaluate an article's\\ncredibility on വിക്കിപീഡിയ.\\n\\n29\\n00:03:55,720 --> 00:03:59,780\\nOn വിക്കിമീഡിയ സ്വീഡൻ, we are working\\nwith the education programme വിക്കിപീഡിയ\\n\\n30\\n00:03:59,810 --> 00:04:06,020\\nin Education. Please let us know if you\\nare curious, thoughtful or maybe skeptical?\\n\\n31\\n00:04:06,400 --> 00:04:10,360\\nWe want to hear from you.\\nWhat we do, is to make വിക്കിപീഡിയ\\n\\n32\\n00:04:10,460 --> 00:04:18,030\\naccessible, useful and understandable.\\nWe would really like to hear from you.\\n\\n33\\n00:04:24,240 --> 00:04:29,300\\nവിക്കിപീഡിയ in Education\\n\\n34\\n00:04:32,630 --> 00:04:37,240\\nAre you fed up with വിക്കിപീഡിയ?\\nCan you not get enough of വിക്കിപീഡിയ?\\n\\n35\\n00:04:37,970 --> 00:04:41,440\\nContact us on\\nutbildning@wikimedia.se\",\n", + " 'bytes': 4730,\n", + " 'sha1': '4bkntb8ru36gyd981yvhwew5frcibrb',\n", + " 'parent_id': 100333421,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100210473,\n", + " 'timestamp': '2013-07-18T09:20:30Z',\n", + " 'user': {'id': 1188897, 'text': 'Arnaugir'},\n", + " 'page': {'id': 27310094,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1\\nLa Viquipèdia, una font fiable?\\n\\n2\\n00:00:14,810 --> 00:00:19,650\\nHola, estimats estudiants, gràcies per aquesta\\ngran setmana. Abans que marxeu, la societat\\n\\n3\\n00:00:19,720 --> 00:00:25,870\\npostmoderna des d'una perspectiva estoica. \\n475 pàgines per entregar el dilluns que ve.\\n\\n4\\n00:00:26,330 --> 00:00:29,220\\nBon cap de setmana,\\ngràcies!\\n\\n5\\n00:00:47,560 --> 00:00:51,760\\nEts la meva alumna preferida, gràcies!\\n\\n6\\n00:00:57,270 --> 00:00:58,820\\nEl dilluns següent\\n\\n7\\n00:01:12,660 --> 00:01:21,950\\nJa et vaig dir que la Viquipèdia no és una font\\ncreïble, fora, fora! Fora del meu despatx!\\n\\n8\\n00:01:38,750 --> 00:01:52,740\\nFins i tot tu? Estic decepcionada, fora, fora!\\n\\n9\\n00:01:59,420 --> 00:02:06,960\\nEstic tan i tan enfadada.\\nNo ho entenen...\\n\\n10\\n00:02:19,160 --> 00:02:25,930\\nEt reconeixes a tu mateix/a? No estàs\\nsol/a. La Viquipèdia és la sisena web\\n\\n11\\n00:02:26,060 --> 00:02:31,740\\nen suec més visitada i, per tant, les possibilitats\\nque els teus estudiants hi vagin per trobar informació\\n\\n12\\n00:02:31,860 --> 00:02:37,690\\ni dades són força elevades. Potser fins i tot\\ntu com a docent, ho fas?\\n\\n13\\n00:02:38,220 --> 00:02:42,120\\nPerò com pots saber si els articles\\nde la Viquipèdia són fiables o no?\\n\\n14\\n00:02:42,530 --> 00:02:49,940\\nEt diré tres tucs. Aquests trucs són\\nRe, Di i Hi.\\n\\n15\\n00:02:50,890 --> 00:02:54,860\\nRe, és Referències. Existeixen al davall\\nde tot els articles de la Viquipèdia.\\n\\n16\\n00:02:55,760 --> 00:02:59,700\\nMira quantes n'hi ha i pensa si apunten a bones fonts.\\n\\n17\\n00:02:59,980 --> 00:03:02,960\\nIntenta fer clic a les referències\\naviam on et porten.\\n\\n18\\n00:03:03,800 --> 00:03:10,630\\nLa segona és Di, que significa Discussió. En\\ncada article hi ha una pestanya, entra-hi\\n\\n19\\n00:03:10,710 --> 00:03:14,580\\ni mira de què parla la gent. Debaten sobre\\nalguna cosa? Si ho fan, sol ser\\n\\n20\\n00:03:14,690 --> 00:03:18,850\\nsobre el contingut i l'estructura. Si hi\\nha una discussió sobre l'article,\\n\\n21\\n00:03:18,920 --> 00:03:22,640\\nnormalment significa que es tracta d'un bon treball. \\nMostra que molta gent ha estat a l'article i ha estudiat\\n\\n22\\n00:03:22,720 --> 00:03:25,250\\ni considerat què hi ha en l'article\\ni com hauria de quedar.\\n\\n23\\n00:03:26,020 --> 00:03:33,310\\nEl darrer és Hi, Historial. També hi ha una\\npestanya. Mira quanta gent ha afegit i ha tret\\n\\n24\\n00:03:33,440 --> 00:03:38,340\\ninformació. Quants més contribuïdors\\ni gent participin en l'article,\\n\\n25\\n00:03:38,460 --> 00:03:43,080\\nmillor serà. Fa un article\\nmolt més creïble.\\n\\n26\\n00:03:44,190 --> 00:03:48,590\\nPer tant, són tres coses simples: Re, Di i Hi.\\n\\n27\\n00:03:48,790 --> 00:03:50,340\\nSi us plau, dóna un cop d'ull a això juntament\\n\\n28\\n00:03:50,420 --> 00:03:55,460\\namb els teus estudiants per avaluar la \\ncredibilitat d'un article de la Viquipèdia.\\n\\n29\\n00:03:55,720 --> 00:03:59,780\\nA Wikimedia Suècia, estem treballant\\namb el programa d'educació de Wikipedia\\n\\n30\\n00:03:59,810 --> 00:04:06,020\\nin Education. Si us plau, diga'ns si t'ha semblat\\ncuriós, t'ha donat per pensar o bé ets escèptic/a?\\n\\n31\\n00:04:06,400 --> 00:04:10,360\\nVolem saber què penses.\\nEl que fem nosaltres és fer la Viquipèdia\\n\\n32\\n00:04:10,460 --> 00:04:18,030\\naccessible, útil i comprensible.\\nRealment voldríem parlar amb tu.\\n\\n33\\n00:04:24,240 --> 00:04:29,300\\nWikipedia in Education\\n\\n34\\n00:04:32,630 --> 00:04:37,240\\nEstàs tip de la Viquipèdia?\\nNo en tens suficient de la Viquipèdia?\\n\\n35\\n00:04:37,970 --> 00:04:41,440\\nContacta'ns a\\nutbildning@wikimedia.se\",\n", + " 'bytes': 3476,\n", + " 'sha1': 'mvs5m3yeee1mu9ttbcwb2xkuruwfd55',\n", + " 'parent_id': 100210436,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 343763061,\n", + " 'timestamp': '2019-03-25T17:35:51Z',\n", + " 'user': {'id': 1067832, 'text': 'Iwan Novirion'},\n", + " 'page': {'id': 27318747,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.id.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'update',\n", + " 'text': '1\\n00:00:01,270 --> 00:00:10,230\\nWikipedia, sumber terpercaya?!\\n\\n2\\n00:00:14,810 --> 00:00:19,650\\nNah, anak-anak, selamat berakhir pekan. Sebelum pulang, makalah tentang \\n\\n3\\n00:00:19,720 --> 00:00:25,920\\nmasyarakat pasca-modern dari perspektif stoikisme, 475 halaman, kumpulkan hari Senin!\\n\\n4\\n00:00:26,330 --> 00:00:29,220\\nSelamat berakhir pekan. Terima kasih!\\n\\n5\\n00:00:47,560 --> 00:00:51,760\\nMurid favorit ku, makasih ya!\\n\\n6\\n00:00:57,270 --> 00:00:58,820\\nHari Seninnya...\\n\\n7\\n00:01:12,660 --> 00:01:21,950\\nSudah saya bilang Wikipedia bukan sumber yang kredibel, keluar, keluar! Keluar dari ruangan ini!\\n\\n8\\n00:01:38,750 --> 00:01:52,740\\nKamu juga? Mengecewakan..., keluar, keluar!\\n\\n9\\n00:01:59,420 --> 00:02:06,960\\nArgh... Ini membuat saya geram, geraaaam! Saya marah...!!! Argh...argh...\\n\\n10\\n00:02:19,160 --> 00:02:25,930\\nAnda pernah mengalaminya? Anda tidak sendiri. Wikipedia adalah situs yang paling\\n\\n11\\n00:02:26,060 --> 00:02:31,740\\nsering dikunjungi, jadi kemungkinannya sangat besar jika murid-murid Anda menjadikannya sebagai sumber referensi\\n\\n12\\n00:02:31,860 --> 00:02:37,690\\ndan mencari informasi dari sana. Bahkan mungkin Anda sebagai pendidik juga melakukannya?\\n\\n13\\n00:02:38,220 --> 00:02:42,120\\nTapi bagaimana Anda bisa tahu artikel dari Wikipedia itu kredibel atau tidak?\\n\\n14\\n00:02:42,530 --> 00:02:49,940\\nSaya akan memberikan 3 tips. Tips tersebut adalah Re, Bi dan Ri.\\n\\n15\\n00:02:50,890 --> 00:02:54,860\\nRe, adalah referensi. Berada di bagian paling bawah dari suatu artikel di Wikipedia.\\n\\n16\\n00:02:55,760 --> 00:02:59,700\\nLihat berapa banyak jumlahnya dan apakah bisa disebut sebagai referensi yang baik.\\n\\n17\\n00:02:59,980 --> 00:03:02,960\\nSilakan klik pada masing-masing referensi tersebut untuk melihat Anda dibawa ke mana.\\n\\n18\\n00:03:03,800 --> 00:03:10,630\\nYang kedua adalah Bi, ini maksudnya Bicara. Setiap artikel ada sebuah tab Halaman Pembicaraan, pergilah ke sana dan perhatikan\\n\\n19\\n00:03:10,710 --> 00:03:14,580\\napa yang dibicarakan. Apa mereka membicarakan sesuatu? Jika ya, itu biasanya\\n\\n20\\n00:03:14,690 --> 00:03:18,850\\ntentang isi dan struktur artikel. Jika ada diskusi tentang artikel tersebut, biasanya\\n\\n21\\n00:03:18,920 --> 00:03:22,640\\nbertujuan membuat artikel lebih baik. Ini akan menjelaskan berapa orang yang tertarik dengan artikel tsb dan mempelajarinya\\n\\n22\\n00:03:22,720 --> 00:03:25,250\\ndan mempertimbangkan apa yang perlu ada di dalamnya serta bagaimana seharusnya artikel tersebut terlihat.\\n\\n23\\n00:03:26,020 --> 00:03:33,310\\nYang terakhir adalah Ri, Riwayat. Ada juga tab untuk Riwayat Penyuntingan. Periksalah berapa orang yang sudah menambahkan informasi\\n\\n24\\n00:03:33,440 --> 00:03:38,340\\natau menghapus informasi. Semakin banyak kontributor dan orang yang terlibat dalam\\n\\n25\\n00:03:38,460 --> 00:03:43,080\\nriwayat penyuntingan, akan semakin baik. Ini akan membuat artikel menjadi lebih kredibel.\\n\\n26\\n00:03:44,190 --> 00:03:48,590\\nJadi ini adalah tiga hal yang sederhana, Re, Bi dan Ri.\\n\\n27\\n00:03:48,790 --> 00:03:50,340\\nSilakan tonton video ini bersama dengan\\n\\n28\\n00:03:50,420 --> 00:03:55,460\\nmurid-murid Anda dalam rangka mengevaluasi kredibilitas suatu artikel pada Wikipedia.\\n\\n29\\n00:03:55,720 --> 00:03:59,780\\nDi Wikimedia Swedia, kita bekerja dengan program pembelajaran Wikipedia\\n\\n30\\n00:03:59,810 --> 00:04:06,020\\ndalam Pendidikan. Mohon sampaikan jika Anda tertarik, jadi berpikir atau mungkin malah jadi skeptis?\\n\\n31\\n00:04:06,400 --> 00:04:10,360\\nKami ingin mendengan kabar dari Anda. Apa yang kami lakukan, adalah membuat Wikipedia\\n\\n32\\n00:04:10,460 --> 00:04:18,030\\ndapat diakses, berguna dan mudah dimengerti. Kami sangat ingin mendengar kabar dari Anda.\\n\\n33\\n00:04:24,240 --> 00:04:29,300\\nWikipedia dalam Pendidikan\\n\\n34\\n00:04:32,630 --> 00:04:37,240\\nApa Anda bosan dengan Wikipedia? Atau Anda merasa kurang puas dengan Wikipedia?\\n\\n35\\n00:04:37,970 --> 00:04:41,440\\nHubungi kami: utbildning@wikimedia.se',\n", + " 'bytes': 3850,\n", + " 'sha1': 'b1owlnazpx2mgedl4pfadhki8e3spb1',\n", + " 'parent_id': 343754817,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100272280,\n", + " 'timestamp': '2013-07-19T09:28:43Z',\n", + " 'user': {'id': 708955, 'text': 'Danmichaelo'},\n", + " 'page': {'id': 27324495,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.nb.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Danmichaelo moved page [[TimedText:Hur tittar du på Wikipedia.webm.no.srt]] to [[TimedText:Hur tittar du på Wikipedia.webm.nb.srt]]: nb is preferred over no I guess',\n", + " 'text': '1\\n00:00:01,270 --> 00:00:10,230\\nWikipedia, en troverdig kilde?! \\n\\n2\\n00:00:14,300 --> 00:00:19,050\\nJa, mine kjære elever, da vil jeg takke for en\\nhyggelig uke. Før dere går; \\n\\n3\\n00:00:19,050 --> 00:00:25,870\\nDet postmoderne samfunnet fra et stoistisk\\nperspektiv, 475 sider, til mandag.\\n\\n4\\n00:00:26,200 --> 00:00:29,220\\nGod helg!\\nTakk!\\n\\n5\\n00:00:47,450 --> 00:00:51,760\\nDu er min yndlingselev, takk!\\n\\n6\\n00:00:57,270 --> 00:00:58,820\\nNeste mandag\\n\\n7\\n00:01:12,660 --> 00:01:21,950\\nJeg har jo sagt at Wikipedia ikke er en\\ntroverdig kilde, ut, ut! Ut av mitt rom!\\n\\n8\\n00:01:38,750 --> 00:01:52,740\\nTil og med du?\\nJeg er skuffet, ut, ut!\\n\\n9\\n00:01:58,050 --> 00:02:06,960\\nÅh, jeg blir så sint, så sint.\\nJeg har jo for faen... faen... åh... åh!\\n\\n10\\n00:02:19,160 --> 00:02:25,930\\nKjenner du deg igjen? Du er ikke alene.\\nWikipedia er sveriges sjette mest\\n\\n11\\n00:02:26,060 --> 00:02:31,740\\nbesøkte nettsted, så sjansene er ganske store\\nfor at dine elevene går dit for å finne faktainformasjon\\n\\n12\\n00:02:31,860 --> 00:02:37,690\\nakkurat der. Kanskje til og med\\ndu som pedagog gjør det?\\n\\n13\\n00:02:38,220 --> 00:02:42,120\\nMen hvordan kan du vite om en\\nWikipedia-artikkel er pålitelig eller ikke?\\n\\n14\\n00:02:42,530 --> 00:02:49,940\\nJeg skal gi deg tre tips. Tipsene er\\nKi, Di og Hi.\\n\\n15\\n00:02:50,890 --> 00:02:54,860\\nKi, det er kilder. De finnes helst nederst\\npå Wikipedia.\\n\\n16\\n00:02:55,760 --> 00:02:59,700\\nSe hvor mange det er,\\nog om det virker som bra kilder.\\n\\n17\\n00:02:59,980 --> 00:03:02,960\\nKlikk deg gjerne videre på en kilde\\nfor å se hvor du havner.\\n\\n18\\n00:03:03,800 --> 00:03:10,630\\nDen andre er Di, det betyr diskusjon. For\\nhver artikkel er det en fane, gå inn der og se\\n\\n19\\n00:03:10,710 --> 00:03:14,580\\nhva folk snakker om. Snakker man i det\\nhele tatt om noe? Hvis man gjør det, pleier\\n\\n20\\n00:03:14,690 --> 00:03:18,850\\nman snakke om innhold og struktur.\\nFinnes det en diskusjon om artikkelen,\\n\\n21\\n00:03:18,920 --> 00:03:22,640\\ngjør det oftest artikkelen bedre. Det viser\\nat mange har vært inne og studert og\\n\\n22\\n00:03:22,720 --> 00:03:25,250\\nvurdert hva som står i artikkelen og\\nhvordan den bør se ut.\\n\\n23\\n00:03:26,020 --> 00:03:33,310\\nDet siste, det er Hi, historikk. Det er også en fane.\\nSjekk hvor mange som har lagt til informasjon\\n\\n24\\n00:03:33,440 --> 00:03:38,340\\nog fjernet informasjon. Jo flere som\\nhar vært med og bidratt og\\n\\n25\\n00:03:38,460 --> 00:03:43,080\\npratet og diskutert, desto bedre.\\nDet gjør artikkelen mye mer troverdig.\\n\\n26\\n00:03:44,190 --> 00:03:48,590\\nDet er altså tre enkle ting: Ki, Di og Hi.\\n\\n27\\n00:03:48,790 --> 00:03:50,340\\nSe gjerne på dette sammen med dine elever\\n\\n28\\n00:03:50,420 --> 00:03:55,460\\nfor å bedømme en artikkels\\ntroverdighet på Wikipedia.\\n\\n29\\n00:03:55,720 --> 00:03:59,780\\nI Wikimedia Sverige arbeider vi blant annet\\nmed utdanningsprogrammet\\n\\n30\\n00:03:59,810 --> 00:04:06,020\\nWikipedia i utdanning. Ta gjerne kontakt\\nom du er nysgjerrig, undrende eller kanskje skeptisk?\\n\\n31\\n00:04:06,400 --> 00:04:10,360\\nVi ønsker å høre fra deg.\\nDet vi gjør er å gjøre Wikipedia\\n\\n32\\n00:04:10,460 --> 00:04:18,030\\nmer tilgjengelig, brukervennlig og forståelig.\\nVi vil veldig gjerne høre fra deg.\\n\\n33\\n00:04:24,240 --> 00:04:29,300\\nWikipedia i utdanning\\n\\n34\\n00:04:32,630 --> 00:04:37,240\\nHar du fått nok av Wikipedia?\\nKan du ikke få nok av Wikipedia?\\n\\n35\\n00:04:37,970 --> 00:04:41,440\\nKontakt oss på\\nutbildning@wikimedia.se',\n", + " 'bytes': 3383,\n", + " 'sha1': 'ayxymvk91c8xiygbfzer6d6nz0p2h3r',\n", + " 'parent_id': 100254389,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100272281,\n", + " 'timestamp': '2013-07-19T09:28:43Z',\n", + " 'user': {'id': 708955, 'text': 'Danmichaelo'},\n", + " 'page': {'id': 27330739,\n", + " 'title': 'Hur tittar du på Wikipedia.webm.no.srt',\n", + " 'namespace': 102,\n", + " 'redirect': 'TimedText:Hur tittar du på Wikipedia.webm.nb.srt',\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Danmichaelo moved page [[TimedText:Hur tittar du på Wikipedia.webm.no.srt]] to [[TimedText:Hur tittar du på Wikipedia.webm.nb.srt]]: nb is preferred over no I guess',\n", + " 'text': '#REDIRECT [[TimedText:Hur tittar du på Wikipedia.webm.nb.srt]]',\n", + " 'bytes': 63,\n", + " 'sha1': 'q59ulf72hd7gnusq22cnot0riuw2f5x',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601135606,\n", + " 'timestamp': '2021-10-22T15:14:00Z',\n", + " 'user': {'id': 4008733, 'text': 'JhsBot'},\n", + " 'page': {'id': 27345479,\n", + " 'title': 'South African national anthem.oga.xh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'JhsBot moved page [[TimedText:South Africa National Anthem.ogg.xh.srt]] to [[TimedText:South African national anthem.oga.xh.srt]] without leaving a redirect: Moved because the [[File:South African national anthem.oga|file it belongs to]] was moved',\n", + " 'text': \"1\\n00:00:03,000 --> 00:00:09,000\\nNkosi sikelel' iAfrika\\n\\n2\\n00:00:10,000 --> 00:00:15,000\\nMaluphakanyisw' uphondo lwayo,\",\n", + " 'bytes': 118,\n", + " 'sha1': '6iecz4h4b3rgtmlfnhyrtgpg4xap294',\n", + " 'parent_id': 101980217,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 344818419,\n", + " 'timestamp': '2019-04-04T04:45:04Z',\n", + " 'user': {'id': 7766564, 'text': 'Munt0'},\n", + " 'page': {'id': 27356964,\n", + " 'title': 'Aaron Swartz - The Network Transformation.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Remove line breaks',\n", + " 'text': \"\\ufeff1\\n00:00:03,200 --> 00:00:08,080\\nThe change in the architecture of the media is completely connected to a change in the architecture of control\\n\\n2\\n00:00:08,119 --> 00:00:11,559\\nWith the broadcast system you have one person in one station\\n\\n3\\n00:00:11,599 --> 00:00:13,719\\ndeciding what gets put out over the airwaves. \\n\\n4\\n00:00:13,800 --> 00:00:17,640\\nWhen you have a distributed network like the internet everybody can be a server.\\n\\n5\\n00:00:17,679 --> 00:00:20,559\\nThere's no distinction between the broadcaster and the receiver:\\n\\n6\\n00:00:20,879 --> 00:00:22,279\\nevery computer does both.\\n\\n7\\n00:00:22,399 --> 00:00:27,079\\nYou can take your home laptop and run a server off of it that can distribute movies and music\\n\\n8\\n00:00:27,120 --> 00:00:31,640\\nand webpages and email in the same way that the biggest computers at Google can.\\n\\n9\\n00:00:31,679 --> 00:00:35,519\\nThere's no fundamental difference between the computers they have in the racks in their server rooms\\n\\n10\\n00:00:31,760 --> 00:00:31,800\\n\\n\\n11\\n00:00:35,520 --> 00:00:36,920\\nand what you have on your desk.\\n\\n12\\n00:00:38,039 --> 00:00:39,560\\nIn the old system of broadcasting, \\n\\n13\\n00:00:39,600 --> 00:00:42,800\\nyou were fundamentally limited by the amount of space in the airwaves\\n\\n14\\n00:00:42,759 --> 00:00:46,439\\nYou could only send out 10 channels over the airwaves in television\\n\\n15\\n00:00:46,439 --> 00:00:48,519\\nor even with cable you had 500 channels.\\n\\n16\\n00:00:48,679 --> 00:00:50,640\\nOn the internet, everybody can have a channel; \\n\\n17\\n00:00:50,759 --> 00:00:53,039\\neveryone can get a blog or a MySpace page;\\n\\n18\\n00:00:53,079 --> 00:00:55,159\\neveryone has a way of expressing themselves\\n\\n19\\n00:00:55,479 --> 00:00:57,719\\nand so what you see now is not a question of\\n\\n20\\n00:00:57,719 --> 00:00:59,119\\nwho gets access to the airwaves, \\n\\n21\\n00:00:59,280 --> 00:01:00,840\\nit's a question of who gets control\\n\\n22\\n00:01:00,840 --> 00:01:02,400\\nover the ways you find people.\\n\\n23\\n00:01:02,799 --> 00:01:05,399\\nYou start seeing power centralising in sites like Google,\\n\\n24\\n00:01:05,439 --> 00:01:08,480\\nthese sort of 'gatekeepers' that tell you where on the internet you want to go\\n\\n25\\n00:01:08,599 --> 00:01:11,559\\nthe people who provide you your sources of news and information.\\n\\n26\\n00:01:11,599 --> 00:01:15,079\\nSo its not only certain people have a license to speak\\n\\n27\\n00:01:15,280 --> 00:01:16,640\\nnow everyone has a license to speak,\\n\\n28\\n00:01:16,680 --> 00:01:17,760\\nit's a question of who gets heard.\\n\\n29\\n00:01:19,400 --> 00:01:22,600\\nSo one of the biggest questions we're facing in a world of many speakers\\n\\n30\\n00:01:22,680 --> 00:01:24,040\\nhow do you find what's good?\\n\\n31\\n00:01:24,040 --> 00:01:27,240\\nAre we gonna go to a system like the old media where you go to CNN\\n\\n32\\n00:01:27,359 --> 00:01:29,239\\nand they pick a handful of people to focus on \\n\\n33\\n00:01:29,280 --> 00:01:30,239\\nand you read what they say\\n\\n34\\n00:01:30,280 --> 00:01:32,040\\nor are we going to go with something more like the internet\\n\\n35\\n00:01:32,200 --> 00:01:35,200\\nwhere everybody has a chance of being heard, a more democratic system. \\n\\n36\\n00:01:35,480 --> 00:01:38,480\\nOne of the most interesting technologies for doing something like that\\n\\n37\\n00:01:38,439 --> 00:01:39,840\\nis a system called collaborative filtering,\\n\\n38\\n00:01:40,079 --> 00:01:43,640\\nwhere everybody expresses their opinions on what they like and what they don't like\\n\\n39\\n00:01:43,680 --> 00:01:47,400\\nand the computer tries to match you up with other people who have similar preferences\\n\\n40\\n00:01:47,439 --> 00:01:50,719\\nand recommend you things that they also like that you didn't know about before.\\n\\n41\\n00:01:50,760 --> 00:01:52,800\\nIt's the same kind of system you see on Amazon\\n\\n42\\n00:01:52,840 --> 00:01:55,159\\nwhere people who bought this book also bought this book.\\n\\n43\\n00:01:55,159 --> 00:01:57,920\\nPeople are trying to experiment that not only with books \\n\\n44\\n00:01:58,000 --> 00:02:01,079\\nbut with blogs, web pages and news stories all across the internet,\\n\\n45\\n00:02:01,120 --> 00:02:04,320\\nthey're trying to find ways and things that you never would have heard of before \\n\\n46\\n00:02:04,400 --> 00:02:05,719\\nand bringing them in front of you.\\n\\n47\\n00:02:06,200 --> 00:02:08,080\\nMass media had this fundamental paradox\\n\\n48\\n00:02:08,400 --> 00:02:10,319\\nbecause it was aiming at a huge audience \\n\\n49\\n00:02:10,360 --> 00:02:12,760\\nbut it wanted to convince everybody they were an individual\\n\\n50\\n00:02:12,759 --> 00:02:15,159\\nso you see all these ads on television all the time like\\n\\n51\\n00:02:15,360 --> 00:02:17,560\\n'buck the trend, buy these jeans' right?\\n\\n52\\n00:02:17,599 --> 00:02:20,039\\nAnd it's on a show that 4 million people are watching,\\n\\n53\\n00:02:20,280 --> 00:02:23,840\\nyou're not going to buck a trend by doing what 4 million other people are. \\n\\n54\\n00:02:24,000 --> 00:02:26,840\\nNow that the internet is actually making these niche things possible\\n\\n55\\n00:02:27,039 --> 00:02:29,039\\nthe mass media is incredibly threatened\\n\\n56\\n00:02:29,400 --> 00:02:32,879\\nno longer this idea of bucking the crowd and being your own\\n\\n57\\n00:02:33,479 --> 00:02:36,280\\nit's no longer just a theory you can actually do it on the internet\\n\\n58\\n00:02:36,280 --> 00:02:40,400\\nAnd what we're starting to see is tools that take power away from the big conglomerates \\n\\n59\\n00:02:40,560 --> 00:02:42,199\\nand start to distribute it to small groups.\\n\\n60\\n00:02:42,479 --> 00:02:47,239\\nAnd so there are a bunch of issues in a system like that there are questions of funding you know,\\n\\n61\\n00:02:47,280 --> 00:02:50,400\\nhow will these small groups get paid and how will the random blogger be able to live\\n\\n62\\n00:02:50,520 --> 00:02:53,400\\nin a way that an investigative journalist can now\\n\\n63\\n00:02:53,599 --> 00:02:55,879\\nbecause there's one giant source of advertising.\\n\\n64\\n00:02:55,919 --> 00:02:59,799\\nYou know there are question finding people, how will I be able to find the stuff I'm interested in,\\n\\n65\\n00:02:59,879 --> 00:03:01,599\\nand the stuff that's trustworthy and reliable\\n\\n66\\n00:03:02,080 --> 00:03:04,719\\nand so for each of these there are new technologies\\n\\n67\\n00:03:04,719 --> 00:03:06,520\\npeople are trying all sorts of different things\\n\\n68\\n00:03:06,680 --> 00:03:08,240\\nand one of the most exciting things about the internet is that\\n\\n69\\n00:03:08,280 --> 00:03:12,400\\nthere is still experimentation in this, since everybody can just go up and start a website\\n\\n70\\n00:03:12,400 --> 00:03:15,640\\nwith a new piece of technology to try and solve one of these problems.\\n\\n71\\n00:03:15,680 --> 00:03:18,640\\nWe're seeing lots of different possibilities, lots of different funding models\\n\\n72\\n00:03:18,680 --> 00:03:22,920\\nlots of different recommendations systems and who knows what will work best.\\n\\n73\\n00:03:23,439 --> 00:03:25,759\\nWe have a chance to try it all and see what falls out.\\n\\n74\\n00:03:25,800 --> 00:03:27,840\\nSo there are a couple of interesting funding models:\\n\\n75\\n00:03:27,879 --> 00:03:30,479\\nOne of course is the sort of standard method of advertising,\\n\\n76\\n00:03:30,599 --> 00:03:35,039\\nyou go to a bunch of big corporate sponsors and instead of having them fund a television show\\n\\n77\\n00:03:35,080 --> 00:03:36,400\\nyou have them fund your webpage.\\n\\n78\\n00:03:36,400 --> 00:03:39,800\\nBut a more interesting one is you do the same thing with niche groups\\n\\n79\\n00:03:40,000 --> 00:03:45,039\\ninstead of going to IBM/Ford or some big company and having them buy a banner out on your site, \\n\\n80\\n00:03:45,120 --> 00:03:47,599\\nyou go to people who actually care about the readers you have.\\n\\n81\\n00:03:47,680 --> 00:03:50,719\\nIf you're a design weblog you go to design companies.\\n\\n82\\n00:03:50,759 --> 00:03:53,719\\nIf you're a politics webblog, you go to other politicians.\\n\\n83\\n00:03:53,879 --> 00:03:58,039\\nYou have a very targeted narrow group of people who are really interested in the subject,\\n\\n84\\n00:03:58,039 --> 00:04:01,120\\nthats an audience advertisers really love.\\n\\n85\\n00:04:01,759 --> 00:04:04,560\\nAnother possibility is to turn directly to your readers for support.\\n\\n86\\n00:04:04,680 --> 00:04:07,719\\nSo you see blogs say, I wanna go on a trip to New Hampshire \\n\\n87\\n00:04:07,719 --> 00:04:10,400\\nto cover the American political conventions.\\n\\n88\\n00:04:10,439 --> 00:04:11,599\\nWill you support me?\\n\\n89\\n00:04:12,000 --> 00:04:13,400\\nAnd the readers pour in money.\\n\\n90\\n00:04:13,400 --> 00:04:16,720\\nThese people are very dedicated if they feel like they have a personal connection\\n\\n91\\n00:04:16,720 --> 00:04:17,800\\nwith the person writing,\\n\\n92\\n00:04:17,800 --> 00:04:20,240\\nso they are eager to spend money to support it! \\n\\n93\\n00:04:21,000 --> 00:04:23,879\\nAnother thing is that you work simply off of volunteer labor,\\n\\n94\\n00:04:23,879 --> 00:04:27,040\\nyou have people who have a day job that's an expert on a subject\\n\\n95\\n00:04:27,040 --> 00:04:30,280\\nand they just enjoy talking about it so they rate stuff in their free time\\n\\n96\\n00:04:30,360 --> 00:04:31,199\\nand publish it on the internet.\\n\\n97\\n00:04:31,439 --> 00:04:33,920\\nOr they have readers who read their site and contribute stuff\\n\\n98\\n00:04:34,000 --> 00:04:36,399\\nand it gets compiled into one exciting source.\\n\\n99\\n00:04:36,680 --> 00:04:39,040\\nSo I think there are lots of different experiments\\n\\n100\\n00:04:39,040 --> 00:04:40,760\\nand people are trying in lots of different ways.\\n\\n101\\n00:04:41,000 --> 00:04:46,480\\nThat's one of the errors you had with television, right, was that television could only provide one level of interest.\\n\\n102\\n00:04:48,600 --> 00:04:51,720\\nIt was funded based on adertising, not on how much people cared about the program.\\n\\n103\\n00:04:52,360 --> 00:04:56,280\\nAdvertisers were going to pay the same no matter how exciting or how compelling \\n\\n104\\n00:04:56,279 --> 00:04:58,119\\nor how interested an audience was in the show\\n\\n105\\n00:04:58,160 --> 00:05:01,880\\nso what you ended up with was fairly boring shows that appealed to lots of people\\n\\n106\\n00:05:01,920 --> 00:05:04,400\\nbecause that's what advertisers wanted\\n\\n107\\n00:05:04,399 --> 00:05:05,919\\nthey wanted lots people watching the shows.\\n\\n108\\n00:05:06,160 --> 00:05:08,280\\nWhereas in a normal market economy what happens is\\n\\n109\\n00:05:08,279 --> 00:05:10,279\\nif you really want something you pay more for it\\n\\n110\\n00:05:10,360 --> 00:05:12,040\\nyou just can't do that with television. \\n\\n111\\n00:05:12,279 --> 00:05:15,399\\nSo one of the interesting things about broadcast is that a lot of what you like \\n\\n112\\n00:05:15,399 --> 00:05:17,039\\ndepends on what other people like\\n\\n113\\n00:05:17,399 --> 00:05:19,239\\nthere are only so many shows out there\\n\\n114\\n00:05:19,240 --> 00:05:20,160\\nthey are all kind of bland\\n\\n115\\n00:05:20,199 --> 00:05:21,839\\nso what happens, you have these megahits\\n\\n116\\n00:05:22,000 --> 00:05:26,920\\nlike American Idol or Lost, where everybody at the water cooler is talking about this show,\\n\\n117\\n00:05:27,000 --> 00:05:29,879\\nso you have to watch it because otherwise you can't keep up with them.\\n\\n118\\n00:05:30,120 --> 00:05:33,399\\nWhenever social factors get involved\\n\\n119\\n00:05:33,560 --> 00:05:35,639\\nyou have this sort of process of rich gets richer\\n\\n120\\n00:05:35,680 --> 00:05:40,040\\none thing takes off because thats what everybody else is doing!\\n\\n121\\n00:05:40,360 --> 00:05:43,720\\nOne nice thing about the internet is that it allows for so much more variety\\n\\n122\\n00:05:43,720 --> 00:05:47,960\\nthat niche products can get so much more attention and interest\\n\\n123\\n00:05:48,000 --> 00:05:50,720\\nSo they've the run the numbers and there is this proven mathematical fact\\n\\n124\\n00:05:50,759 --> 00:05:54,639\\nthat as long as some percentage of what you care about is whether other people\\n\\n125\\n00:05:54,680 --> 00:05:58,040\\nlike it or now you're gonna end up with these patterns of hits and failures.\\n\\n126\\n00:05:58,680 --> 00:06:01,720\\nIf you have two things which are equivalent in quality,\\n\\n127\\n00:06:01,720 --> 00:06:04,640\\nand one of them is liked by one more person than the other one,\\n\\n128\\n00:06:04,680 --> 00:06:06,079\\nyou're going to go that one.\\n\\n129\\n00:06:06,120 --> 00:06:08,399\\nThere's some small chance that you're going to go to that one \\n\\n130\\n00:06:08,399 --> 00:06:09,719\\nand everybody's going to start going to that one\\n\\n131\\n00:06:09,759 --> 00:06:11,120\\nand all of a sudden you have Harry Potter.\\n\\n132\\n00:06:11,160 --> 00:06:14,840\\nThis one book plucked of nowhere that suddenly becomes this humongous mega-hit.\\n\\n133\\n00:06:14,879 --> 00:06:18,079\\nnot because it's a hundred million times better written than every other book\\n\\n134\\n00:06:18,120 --> 00:06:19,840\\nbut simply because everybody's reading it.\\n\\n135\\n00:06:21,000 --> 00:06:22,959\\nAnd putting stuff on the internet doesn't change that,\\n\\n136\\n00:06:23,079 --> 00:06:27,039\\nyou still care about what your friends like, you still wanna read what everybody else is talking about,\\n\\n137\\n00:06:27,040 --> 00:06:30,720\\nyou still wanna do what's popular because you think maybe other people have a valid opinion\\n\\n138\\n00:06:30,759 --> 00:06:34,159\\nand maybe you wanna talk to them about it, maybe you want to join part of this community.\\n\\n139\\n00:06:34,199 --> 00:06:37,240\\nBut whatever your reason is, as long as you care about other people's opinions \\n\\n140\\n00:06:37,240 --> 00:06:38,720\\nyou're going to end up with these hits. \\n\\n141\\n00:06:38,800 --> 00:06:38,840\\nYou just have this social signifier that everybody cares about.\\n\\n142\\n00:06:39,040 --> 00:06:41,640\\nYou just have this social signifier that everybody cares about.\\n\\n143\\n00:06:41,680 --> 00:06:45,040\\nEverybody's watching American Idol doesn't matter how good the show is.\\n\\n144\\n00:06:45,079 --> 00:06:49,279\\nI mean it has to be somewhat decent so people watch it, but once everybody's watching it,\\n\\n145\\n00:06:49,480 --> 00:06:54,160\\nand everybody's talking about it, you know, it suddenly becomes this megahit for no real reason,\\n\\n146\\n00:06:54,199 --> 00:06:56,039\\nright, just because it's a social phenomenon.\\n\\n147\\n00:06:56,079 --> 00:07:00,560\\nAnd what television does, it chops off the tail and it throws away all the other shows \\n\\n148\\n00:07:00,600 --> 00:07:03,400\\npeople would like but don't care enough about to be megahits\\n\\n149\\n00:07:03,399 --> 00:07:06,599\\nand instead pours all of its money into these cheap-to-produce shows.\\n\\n150\\n00:07:06,680 --> 00:07:08,639\\nWell you can't get rid of hits, right,\\n\\n151\\n00:07:08,720 --> 00:07:11,040\\nit's a fact that people would want to do what their friends are doing\\n\\n152\\n00:07:11,040 --> 00:07:15,480\\nyou can't avoid that but what you can do is say there's the whole rest of the world out there\\n\\n153\\n00:07:15,519 --> 00:07:18,719\\nthere's a whole rest of what people care about other than what everybody else is doing.\\n\\n154\\n00:07:19,000 --> 00:07:22,399\\nEverybody has their own particular interests, everybody has something that fascinates them\\n\\n155\\n00:07:22,399 --> 00:07:25,719\\nand what the internet does is it allows them to do that,\\n\\n156\\n00:07:25,720 --> 00:07:29,040\\nto get involved and find other people who share these things.\\n\\n157\\n00:07:29,079 --> 00:07:33,199\\nOne of the exciting things about Wikipedia is that it doesn't just have articles on\\n\\n158\\n00:07:33,240 --> 00:07:36,160\\nyou know, 100 most popular things or 1000 most popular things\\n\\n159\\n00:07:36,199 --> 00:07:39,240\\nyou can pick the most obscure subject in the world and there's an article about it.\\n\\n160\\n00:07:39,279 --> 00:07:43,039\\nBecause for EVERYTHING, there's someone who cares a great deal about it\\n\\n161\\n00:07:43,040 --> 00:07:46,439\\nand that's what television, that's what radio doesn't provide, but the internet does!\\n\\n162\\n00:07:46,600 --> 00:07:50,040\\nIt provides a way for you to get in touch with those other people who really \\n\\n163\\n00:07:50,079 --> 00:07:52,240\\ncare about this completely obscure thing.\\n\\n164\\n00:07:52,480 --> 00:07:56,040\\nIt doesn't just go into the direction of topic, it goes into the direction of time.\\n\\n165\\n00:07:56,040 --> 00:07:58,480\\nYou can go back in time and find all the shows that have been canceled,\\n\\n166\\n00:07:58,519 --> 00:08:00,799\\nfind all the articles that have been deleted,\\n\\n167\\n00:08:00,839 --> 00:08:04,039\\nyou can go back and find everything that has been lost in major culture\\n\\n168\\n00:08:04,040 --> 00:08:05,439\\nand it's got a place on the internet,\\n\\n169\\n00:08:05,480 --> 00:08:09,640\\nYouTube music videos from the 70s and the 80s that you can't find anywhere these days\\n\\n170\\n00:08:09,680 --> 00:08:11,439\\nyou can watch at your leisure.\\n\\n171\\n00:08:11,480 --> 00:08:13,640\\nI think lessening the power of the hits\\n\\n172\\n00:08:13,680 --> 00:08:16,720\\nbringing down the things from the top and making it more egalitarian\\n\\n173\\n00:08:16,720 --> 00:08:18,040\\nis the something we should always strive for\\n\\n174\\n00:08:18,079 --> 00:08:21,039\\nit may be really difficult, it may not be super possible\\n\\n175\\n00:08:21,079 --> 00:08:24,039\\nbut it's something to hope for, to drive for\\n\\n176\\n00:08:24,079 --> 00:08:26,719\\nand what that means is \\n\\n177\\n00:08:26,720 --> 00:08:31,160\\nthrowing away as much as possible, all the things that give you hints about\\n\\n178\\n00:08:31,199 --> 00:08:34,039\\nyou should do this because other people like it.\\n\\n179\\n00:08:34,039 --> 00:08:37,519\\nIt's very tempting when you're building a website or programming system\\n\\n180\\n00:08:37,519 --> 00:08:39,840\\nis to start sorting things that are really popular at the top\\n\\n181\\n00:08:39,879 --> 00:08:43,039\\nbut all that does is, that it makes it less democratic and less fair.\\n\\n182\\n00:08:43,120 --> 00:08:48,240\\nYou have to have continual pressure, to try and pull things from the bottom of the tail up,\\n\\n183\\n00:08:48,279 --> 00:08:51,399\\ngive everybody a chance to look at everything and if you do that,\\n\\n184\\n00:08:51,440 --> 00:08:53,720\\nmaybe you won't get completely rid of hits, \\n\\n185\\n00:08:53,720 --> 00:08:55,639\\nbut you can start to ameliorate some of their problems.\\n\\n186\\n00:08:55,679 --> 00:08:59,279\\nI mean that's one power of data mining is that construct to find obscure subjects\\n\\n187\\n00:08:59,399 --> 00:09:01,840\\nthat you wouldn't have found simply because they are not popular.\\n\\n188\\n00:09:01,879 --> 00:09:03,919\\nYou know, one of the tools of recommendations\\n\\n189\\n00:09:03,919 --> 00:09:06,759\\ncan be to pull you to the less popular stuff down on the tail.\\n\\n190\\n00:09:06,919 --> 00:09:09,919\\nThe random article button on Wikipedia is really cool in this sense:\\n\\n191\\n00:09:10,000 --> 00:09:13,240\\nYou can just wake up every day and read about some completely random topic\\n\\n192\\n00:09:13,240 --> 00:09:17,039\\nthat you'd never would have heard of except for the fact that there's an article on Wikipedia about it,\\n\\n193\\n00:09:17,080 --> 00:09:20,040\\nand boy are there some completely random topics! (interviewer laughs)\",\n", + " 'bytes': 18551,\n", + " 'sha1': 'l0cjc8sgvr0jr6409pncwf0klhlllys',\n", + " 'parent_id': 344817774,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100364780,\n", + " 'timestamp': '2013-07-20T21:18:46Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 27356990,\n", + " 'title': 'Aaron Swartz - The Network Transformation.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:03,001 --> 00:00:08,012 El cambio en la arquitectura de los medios está completamente conectada a un cambio del control 2 00:00:08,012 --> 00:00:11...'\",\n", + " 'text': '\\ufeff1\\n00:00:03,001 --> 00:00:08,012\\nEl cambio en la arquitectura de los medios está completamente conectada a un cambio del control\\n\\n2\\n00:00:08,012 --> 00:00:11,006\\nDentro de los sistemas de difusión se tiene una persona en una estación\\n\\n3\\n00:00:11,006 --> 00:00:13,007\\ndecidiendo que es lo que se transmitirá.\\n\\n4\\n00:00:13,007 --> 00:00:17,067\\nCuando tienes una red distribuida como el internet, todos pueden ser un servidor,\\n\\n5\\n00:00:17,068 --> 00:00:20,088\\nno hay distinción entre el locutor y el receptor,\\n\\n6\\n00:00:20,088 --> 00:00:22,004\\ntodas las computadoras hacen ambas cosas.\\n\\n7\\n00:00:22,004 --> 00:00:27,012\\nPuedes llevarte tu laptop y comenzar un servidor que distribuya películas, música,\\n\\n8\\n00:00:27,012 --> 00:00:31,068\\ny páginas de internet y correo electrónico de la misma manera que las grandes computadoras de Google.\\n\\n9\\n00:00:31,068 --> 00:00:31,076\\nNo hay gran diferencia entre las computadoras que tienen en las salas de servidores de Iraq\\n\\n10\\n00:00:31,076 --> 00:00:35,051\\nNo hay gran diferencia entre las computadoras que tienen en las salas de servidores de Iraq\\n\\n11\\n00:00:35,051 --> 00:00:38,003\\ny la computadora que está en tu escritorio.\\n\\n12\\n00:00:38,003 --> 00:00:39,006\\nEn el antiguo sistema de transmisión\\n\\n13\\n00:00:39,006 --> 00:00:42,076\\nfundamentalmente estabas limitado a la cantidad de espacio en las ondas aéreas,\\n\\n14\\n00:00:42,076 --> 00:00:46,043\\npodías enviar solamente 10 canales en la televisión\\n\\n15\\n00:00:46,043 --> 00:00:48,067\\no, en el caso de cable, hasta 500 canales.\\n\\n16\\n00:00:48,067 --> 00:00:50,076\\nEn internet todos pueden tener un canal,\\n\\n17\\n00:00:50,076 --> 00:00:53,008\\ntodos pueden tener un blog o una página de MySpace,\\n\\n18\\n00:00:53,008 --> 00:00:55,048\\ntodos tienen una manera de expresarse.\\n\\n19\\n00:00:55,048 --> 00:00:57,072\\nEntonces, lo que puede verse ahora no depende de\\n\\n20\\n00:00:57,072 --> 00:00:59,028\\nquien tiene acceso para transmitir,\\n\\n21\\n00:00:59,027 --> 00:01:00,083\\nes cuestión de quién tiene el control\\n\\n22\\n00:01:00,084 --> 00:01:02,008\\nde las maneras en las que encuentras a la gente.\\n\\n23\\n00:01:02,008 --> 00:01:05,043\\nPuede verse la centralización del poder en sitios como Google,\\n\\n24\\n00:01:05,043 --> 00:01:08,006\\nuna especie de guardianes indicando a donde quieres ir,\\n\\n25\\n00:01:08,006 --> 00:01:11,006\\nla gente que te provee de fuentes de información y noticias;\\n\\n26\\n00:01:11,006 --> 00:01:15,028\\nentonces no es que solamente ciertas personas tengan permiso de hablar\\n\\n27\\n00:01:15,028 --> 00:01:16,068\\nahora, todos tienen permitido hablar.\\n\\n28\\n00:01:16,067 --> 00:01:19,003\\nLa cuestión es quien es escuchado.\\n\\n29\\n00:01:19,004 --> 00:01:22,068\\nEntonces, una de las preguntas más importantes en un mundo lleno de gente expresándose\\n\\n30\\n00:01:22,067 --> 00:01:24,003\\n¿Cómo encuentras lo que es realmente bueno?\\n\\n31\\n00:01:24,004 --> 00:01:27,036\\n¿Vamos a ir a un sistema como antes, como CNN?\\n\\n32\\n00:01:27,036 --> 00:01:29,028\\nen donde seleccionan un montón de gente\\n\\n33\\n00:01:29,028 --> 00:01:30,028\\npara enfocarse en ella y lees lo que dicen\\n\\n34\\n00:01:30,028 --> 00:01:32,002\\no ¿vamos a ir por algo más como el internet?\\n\\n35\\n00:01:32,001 --> 00:01:35,048\\nen donde todos tienen oportunidad de ser escuchados, un sistema más democrático.\\n\\n36\\n00:01:35,048 --> 00:01:38,043\\nUno de las tecnologías más interesantes para hacer algo así\\n\\n37\\n00:01:38,043 --> 00:01:40,007\\nes un sistema llamado \"Filtrado colaborativo\"\\n\\n38\\n00:01:40,007 --> 00:01:43,067\\nen donde todos expresan opiniones sobre lo que les gusta o no les gusta\\n\\n39\\n00:01:43,067 --> 00:01:47,043\\ny la computadora crea coincidencias con más personas de preferencias similares a las tuyas\\n\\n40\\n00:01:47,043 --> 00:01:50,075\\ny te recomienda cosas que también les gustan, que tal vez nunca habías conocido.\\n\\n41\\n00:01:50,075 --> 00:01:52,083\\nEs el mismo tipo de sistema que puede verse en Amazon\\n\\n42\\n00:01:52,084 --> 00:01:55,016\\nen donde la gente que compró cierto libro, también compró otro cierto libro;\\n\\n43\\n00:01:55,016 --> 00:01:58,000\\nla gente no solamente trata de experimentar con libros\\n\\n44\\n00:01:58,000 --> 00:02:01,012\\nsino también con blogs, páginas web y noticias por todo el internet,\\n\\n45\\n00:02:01,012 --> 00:02:04,004\\nestán intentando encontrar maneras y cosas que nunca habían visto\\n\\n46\\n00:02:04,004 --> 00:02:06,002\\npara llevarlas a ti.\\n\\n47\\n00:02:06,001 --> 00:02:08,003\\nLos medios masivos tenían esta paradoja fundamental\\n\\n48\\n00:02:08,003 --> 00:02:10,036\\nporque buscaban llegar a una gran audiencia\\n\\n49\\n00:02:10,036 --> 00:02:12,075\\npero, al mismo tiempo, querían convencer a todo el mundo de ser individuos\\n\\n50\\n00:02:12,075 --> 00:02:15,036\\ny pueden verse todos estos anuncios en la televisión todo el tiempo:\\n\\n51\\n00:02:15,036 --> 00:02:17,006\\n\"¡rompe la tendencia, compra estos pantalones!\", ¿cierto?\\n\\n52\\n00:02:17,006 --> 00:02:20,027\\ny pasa en un programa que 4 millones de personas están viendo,\\n\\n53\\n00:02:20,027 --> 00:02:24,000\\nno vas a romper una tendencia haciendo lo que otros 4 millones están haciendo también.\\n\\n54\\n00:02:24,000 --> 00:02:27,003\\nAhora que el internet está, de hecho, haciendo posibles estas cuestiones\\n\\n55\\n00:02:27,003 --> 00:02:29,003\\nlos medios masivos se encuentran increíblemente amenazados.\\n\\n56\\n00:02:29,003 --> 00:02:33,048\\nEsta idea de ir en contra de la multitud y ser tú mismo\\n\\n57\\n00:02:33,048 --> 00:02:36,027\\nno es solamente una teoría, puedes lograrlo en internet\\n\\n58\\n00:02:36,027 --> 00:02:40,055\\ny comienzan a notarse estas herramientas que le restan poder a los grandes conglomerados\\n\\n59\\n00:02:40,056 --> 00:02:42,048\\ny comienzan a ser distribuidas en grupos pequeños.\\n\\n60\\n00:02:42,048 --> 00:02:47,027\\nEntonces hay un montón de cuestiones en un sistema como ese, hay dudas sobre los fondos, ¿sabes?\\n\\n61\\n00:02:47,027 --> 00:02:50,051\\n¿cómo es que se les paga a estos pequeños grupos? y ¿cómo va a vivir el blogger promedio?\\n\\n62\\n00:02:50,051 --> 00:02:53,006\\nDe cierta forma, el hecho de que un periodista investigador ahora pueda\\n\\n63\\n00:02:53,006 --> 00:02:55,092\\nporque hay una gran fuente de publicidad.\\n\\n64\\n00:02:55,092 --> 00:02:59,088\\n¿Sabes?, las preguntas están encontrando a las personas, ¿cómo encontraré la información que me interesa?\\n\\n65\\n00:02:59,087 --> 00:03:02,007\\n¿la información real y fidedigna?\\n\\n66\\n00:03:02,008 --> 00:03:04,072\\nPor cada una de ellas, hay nuevas tecnologías,\\n\\n67\\n00:03:04,072 --> 00:03:06,068\\nla gente está intentando todo tipo de cosas distintas\\n\\n68\\n00:03:06,068 --> 00:03:08,028\\ny dentro de todas las cosas emocionantes del internet\\n\\n69\\n00:03:08,027 --> 00:03:12,003\\nestá el hecho de que aún se experimenta con ello porque todos pueden tener una página web\\n\\n70\\n00:03:12,003 --> 00:03:15,067\\ncon una nueva porción de tecnología que intenta y resuelve uno de esos problemas\\n\\n71\\n00:03:15,068 --> 00:03:18,068\\nEstamos viendo muchísimas posibilidades distintas, muchísimos modelos de financiamiento\\n\\n72\\n00:03:18,068 --> 00:03:23,044\\nmuchísimos sistemas de recomendación y quien sabe cual funcionará mejor.\\n\\n73\\n00:03:23,044 --> 00:03:25,008\\nTenemos la oportunidad de intentarlos todos y ver cual falla.\\n\\n74\\n00:03:25,008 --> 00:03:27,088\\nHay un par de modelos interesantes de financiamiento,\\n\\n75\\n00:03:27,087 --> 00:03:30,006\\nuno, claro está, es el método estándar de publicidad,\\n\\n76\\n00:03:30,006 --> 00:03:35,008\\nvas a un montón de patrocinadores corporativos grandes y, en lugar de que financien un programa de tv\\n\\n77\\n00:03:35,008 --> 00:03:36,004\\nhaces que financien tu página web.\\n\\n78\\n00:03:36,003 --> 00:03:40,000\\nPero el más interesante es aquél en el que se hace lo mismo con grupos de personas\\n\\n79\\n00:03:40,000 --> 00:03:45,012\\ny en lugar de ir a IBM o Ford o a alguna gran compañía para que compren un banner de tu página web,\\n\\n80\\n00:03:45,012 --> 00:03:47,068\\nte acercas a gente que está realmente interesada en tus lectores,\\n\\n81\\n00:03:47,068 --> 00:03:50,076\\nsi tienes un weblog de diseño, te acercas a compañías de diseño;\\n\\n82\\n00:03:50,075 --> 00:03:53,087\\nsi tendrás un blog sobre política, te acercas a otros políticos;\\n\\n83\\n00:03:53,087 --> 00:03:58,003\\nposees un grupo muy específico de personas que están realmente interesadas en el asunto,\\n\\n84\\n00:03:58,003 --> 00:04:01,075\\neso es una audiencia que los publicistas realmente adoran.\\n\\n85\\n00:04:01,075 --> 00:04:04,067\\nOtra posibilidad para conseguir apoyo, es recurrir directamente a tus lectores,\\n\\n86\\n00:04:04,068 --> 00:04:07,072\\nporque puedes ver que en los blogs dice \"Quiero ir a New Hampshire\\n\\n87\\n00:04:07,072 --> 00:04:10,044\\npara cubrir las convenciones sobre política.\\n\\n88\\n00:04:10,044 --> 00:04:12,000\\n¿Me apoyarías?\"\\n\\n89\\n00:04:12,000 --> 00:04:13,003\\ny los lectores donarán su dinero\\n\\n90\\n00:04:13,003 --> 00:04:16,072\\npues al ser tan dedicados, sienten que tienen una especie de conexión personal\\n\\n91\\n00:04:16,072 --> 00:04:17,007\\ncon la persona que está escribiendo.\\n\\n92\\n00:04:17,007 --> 00:04:21,000\\nEstán ansiosos de gastar dinero para apoyarlo.\\n\\n93\\n00:04:21,000 --> 00:04:23,088\\nOtra, es que simplemente hagas trabajo voluntario,\\n\\n94\\n00:04:23,088 --> 00:04:27,004\\ntienes a gente que tiene un trabajo, pero es experta en algún tema\\n\\n95\\n00:04:27,004 --> 00:04:30,036\\ny simplemente disfrutan hablar de ello, entonces se dedican a escribir en su tiempo libre\\n\\n96\\n00:04:30,036 --> 00:04:31,043\\ny lo publican en internet;\\n\\n97\\n00:04:31,043 --> 00:04:34,000\\no tienen lectores en su web y contribuyen con algo\\n\\n98\\n00:04:34,000 --> 00:04:36,067\\ny se junta toda la información en una emocionante fuente.\\n\\n99\\n00:04:36,067 --> 00:04:39,003\\nEntonces creo que hay muchos experimentos interesantes,\\n\\n100\\n00:04:39,004 --> 00:04:41,000\\nla gente está experimentando muchas maneras distintas.\\n\\n101\\n00:04:41,000 --> 00:04:48,005\\nUno de los errores de la televisión, podría proveer un solo nivel de interés,\\n\\n102\\n00:04:48,005 --> 00:04:52,035\\nestaba financiada por la publicidad y no por el nivel de interés que tuviera la gente en el programa.\\n\\n103\\n00:04:52,036 --> 00:04:56,028\\nLos publicistas van a pagar lo mismo sin importar que tan atractivo sea,\\n\\n104\\n00:04:56,028 --> 00:04:58,016\\no que tan interesada se encuentre la audiencia.\\n\\n105\\n00:04:58,016 --> 00:05:01,092\\nEllo desembocaba en programas bastante aburridos que le resultaban atractivos a mucha gente,\\n\\n106\\n00:05:01,091 --> 00:05:04,003\\nporque era lo que los publicistas buscaban,\\n\\n107\\n00:05:04,004 --> 00:05:06,016\\nquerían a mucha gente viendo los programas.\\n\\n108\\n00:05:06,016 --> 00:05:08,028\\nMientras que en una economía de mercado normal, lo que sucedería es\\n\\n109\\n00:05:08,028 --> 00:05:10,036\\nque si realmente quieres algo pagas más por ello,\\n\\n110\\n00:05:10,036 --> 00:05:12,028\\nlo cual no es posible con la televisión.\\n\\n111\\n00:05:12,028 --> 00:05:15,004\\nUna de las cosas más interesantes sobre las transmisiones es que mucho de lo que te gusta\\n\\n112\\n00:05:15,004 --> 00:05:17,004\\ndepende de otras personas.\\n\\n113\\n00:05:17,004 --> 00:05:19,024\\nHay tantos programas de televisión,\\n\\n114\\n00:05:19,024 --> 00:05:20,002\\nhay todo tipo de programas desabridos,\\n\\n115\\n00:05:20,002 --> 00:05:22,000\\nentonces ¿qué pasa?, que tienes estos megahits\\n\\n116\\n00:05:22,000 --> 00:05:27,000\\ncomo American Idol o Lost, todo mundo habla de ellos\\n\\n117\\n00:05:27,000 --> 00:05:30,012\\nentonces también tienes que verlo para no quedar fuera de la conversación.\\n\\n118\\n00:05:30,012 --> 00:05:33,055\\nCualesquiera que sean los factores sociales involucrados,\\n\\n119\\n00:05:33,055 --> 00:05:35,067\\nhay un proceso en el que el rico se enriquece más,\\n\\n120\\n00:05:35,067 --> 00:05:40,036\\nalgo desaparece simplemente porque todo mundo lo está desapareciendo.\\n\\n121\\n00:05:40,036 --> 00:05:43,072\\nUn punto bueno sobre el internet es que permite tanta variedad,\\n\\n122\\n00:05:43,072 --> 00:05:48,000\\nque los productos obtienen mayor atención e interés.\\n\\n123\\n00:05:48,000 --> 00:05:50,076\\nSe han hecho análisis y los números comprueban, como un hecho matemático,\\n\\n124\\n00:05:50,076 --> 00:05:54,068\\nque siempre que un porcentaje de lo que te interesa, esté sin importar si otras personas\\n\\n125\\n00:05:54,067 --> 00:05:58,067\\nles gusta o no, terminarás con estos patrones de hits y fracasos.\\n\\n126\\n00:05:58,067 --> 00:06:01,072\\nSi tienes dos cosas que son equivalentes en calidad,\\n\\n127\\n00:06:01,072 --> 00:06:04,067\\nuna de ellas le gustará más a una persona que a la otra,\\n\\n128\\n00:06:04,067 --> 00:06:06,012\\ntú escogerás aquella,\\n\\n129\\n00:06:06,012 --> 00:06:08,004\\nhay una pequeña oportunidad de que te vayas con esa,\\n\\n130\\n00:06:08,004 --> 00:06:09,076\\ny todo mundo lo hará también.\\n\\n131\\n00:06:09,076 --> 00:06:11,016\\nY de pronto tienes Harry Potter,\\n\\n132\\n00:06:11,016 --> 00:06:14,088\\neste libro que surgió de la nada y que de pronto se convirtió en un hit masivo,\\n\\n133\\n00:06:14,088 --> 00:06:18,012\\nno porque esté mil veces mejor escrito que cualquier libro,\\n\\n134\\n00:06:18,012 --> 00:06:21,000\\nsino simplemente porque todo el mundo está leyéndolo.\\n\\n135\\n00:06:21,000 --> 00:06:23,007\\nY poner cosas en internet no cambia ese hecho,\\n\\n136\\n00:06:23,007 --> 00:06:27,003\\naún te interesa lo que les gusta a tus amigos, aún quieres leer sobre lo que todos hablan,\\n\\n137\\n00:06:27,004 --> 00:06:30,076\\no aún quieres hacer lo que es popular porque piensas que tal vez otras personas tienen una opinión válida\\n\\n138\\n00:06:30,076 --> 00:06:34,002\\ny tal vez quieres hablar con ellos sobre eso, y quieres sentirte parte de esta comunidad.\\n\\n139\\n00:06:34,002 --> 00:06:37,024\\nCualquiera que sea tu razón, mientras te interese la opinión de los demás,\\n\\n140\\n00:06:37,024 --> 00:06:38,007\\nvas a terminar con estos \"hits\".\\n\\n141\\n00:06:38,007 --> 00:06:39,003\\nTienes este significante por el cual todo mundo se interesa.\\n\\n142\\n00:06:39,004 --> 00:06:41,068\\nTienes este significante por el cual todo mundo se interesa.\\n\\n143\\n00:06:41,067 --> 00:06:45,007\\nTodo mundo está viendo American Idol, sin importar lo bueno o malo del programa,\\n\\n144\\n00:06:45,007 --> 00:06:49,048\\ndigo, tiene que estar decente para que la gente lo vea, pero una vez que todos lo ven,\\n\\n145\\n00:06:49,048 --> 00:06:54,002\\nhablan sobre él, se convierte en un megahit sin ninguna razón aparente,\\n\\n146\\n00:06:54,002 --> 00:06:56,007\\nsimplemente porque es un fenómeno social.\\n\\n147\\n00:06:56,007 --> 00:07:00,005\\nY lo que la televisión hace es promover ese programa y quitar los demás\\n\\n148\\n00:07:00,005 --> 00:07:03,003\\nprogramas que a la gente podrían gustarle pero que no les interesa lo suficiente como para que sean megahits.\\n\\n149\\n00:07:03,004 --> 00:07:06,068\\nEntonces se invierte todo el dinero en estos programas baratos.\\n\\n150\\n00:07:06,067 --> 00:07:08,072\\nClaro que no puedes deshacerte de estos hits,\\n\\n151\\n00:07:08,072 --> 00:07:11,004\\nes un hecho que la gente quiere hacer lo que sus amigos,\\n\\n152\\n00:07:11,004 --> 00:07:15,052\\nes inevitable, pero lo que sí se puede es: hay todo un \"resto del mundo\",\\n\\n153\\n00:07:15,052 --> 00:07:19,000\\nun resto del mundo que prefiere hacer algo diferente a lo que todos los demás hacen.\\n\\n154\\n00:07:19,000 --> 00:07:22,004\\nTodos tienen intereses particulares, algo que les fascina,\\n\\n155\\n00:07:22,004 --> 00:07:25,072\\ny lo que hace el internet es darles la oportunidad de hacerlo.\\n\\n156\\n00:07:25,072 --> 00:07:29,007\\nInvolucrarse y encontrar a más gente que comparta sus mismo intereses.\\n\\n157\\n00:07:29,007 --> 00:07:33,024\\nUna de las cosas emocionantes de Wikipedia es que no solamente tiene artículos sobre,\\n\\n158\\n00:07:33,024 --> 00:07:36,002\\nno sé, las 100 cosas más populares o las mil cosas más populares,\\n\\n159\\n00:07:36,002 --> 00:07:39,028\\nsino que además puedes encontrar hasta el tema más extraño en el mundo, ¡ahí está!\\n\\n160\\n00:07:39,028 --> 00:07:43,004\\nPorque para todo, hay alguien muy interesado\\n\\n161\\n00:07:43,004 --> 00:07:46,006\\ny es lo que la televisión y la radio no proveen, pero la internet ¡sí!\\n\\n162\\n00:07:46,005 --> 00:07:50,007\\nProvee una manera en la uno puede ponerse en contacto con todas esas otras personas que realmente\\n\\n163\\n00:07:50,007 --> 00:07:52,048\\nestán interesadas en esta cosa extraña.\\n\\n164\\n00:07:52,048 --> 00:07:56,004\\nNo solamente va en dirección del tema, sino también en dirección del tiempo.\\n\\n165\\n00:07:56,004 --> 00:07:58,052\\nPuedes regresar y encontrar programas cancelados,\\n\\n166\\n00:07:58,052 --> 00:08:00,084\\nencontrar los artículos que han sido \"borrados\",\\n\\n167\\n00:08:00,084 --> 00:08:04,004\\npuedes volver y encontrarlo todo; lo que estaba perdido en la cultura\\n\\n168\\n00:08:04,004 --> 00:08:05,048\\ntiene un lugar en el internet.\\n\\n169\\n00:08:05,048 --> 00:08:09,067\\nYoutube tiene videos de los 70s y 80s casi imposibles de encontrar ahora.\\n\\n170\\n00:08:09,067 --> 00:08:11,048\\nTodos puedes encontrarlos.\\n\\n171\\n00:08:11,048 --> 00:08:13,067\\nCreo que disminuir el poder de los hits,\\n\\n172\\n00:08:13,067 --> 00:08:16,072\\ny bajarlos para hacer todo más igualitario\\n\\n173\\n00:08:16,072 --> 00:08:18,007\\nes algo por lo que deberíamos luchar.\\n\\n174\\n00:08:18,007 --> 00:08:21,007\\nTal vez será muy difícil, puede no ser súper posible\\n\\n175\\n00:08:21,007 --> 00:08:24,007\\npero es algo que puede movernos\\n\\n176\\n00:08:24,007 --> 00:08:26,072\\ny lo que ello significa es\\n\\n177\\n00:08:26,072 --> 00:08:31,002\\ndejar de lado, lo más que se pueda, todas las cosas que se les parezcan, por ejemplo:\\n\\n178\\n00:08:31,002 --> 00:08:34,004\\n\"deberías hacer esto porque a otras personas les gusta\".\\n\\n179\\n00:08:34,004 --> 00:08:37,052\\nEs muy tentador cuando estás construyendo una página web o programando\\n\\n180\\n00:08:37,052 --> 00:08:39,087\\ncomenzar a situar lo popular al principio\\n\\n181\\n00:08:39,087 --> 00:08:43,011\\npero lo único que logras, es hacer todo menos democrático y menos justo,\\n\\n182\\n00:08:43,011 --> 00:08:48,027\\ndeberías querer intentarlo constantemente y llevar lo \"no tan popular\" a donde estaba \"lo popular\",\\n\\n183\\n00:08:48,028 --> 00:08:51,043\\ndar a todos una oportunidad de ver todo y si lo haces,\\n\\n184\\n00:08:51,043 --> 00:08:53,072\\ntal vez no te libres del todo de los hits,\\n\\n185\\n00:08:53,072 --> 00:08:55,067\\npero puedes empezar a hacerlo.\\n\\n186\\n00:08:55,067 --> 00:08:59,004\\nDigo, ese es uno de los poderes de la \"minería de datos\", te ayuda a encontrar temas casi desaparecidos\\n\\n187\\n00:08:59,004 --> 00:09:01,087\\nque no hubieras descubierto simplemente porque no son populares.\\n\\n188\\n00:09:01,087 --> 00:09:03,091\\nUna de las herramientas de recomendación\\n\\n189\\n00:09:03,091 --> 00:09:06,091\\npuede ser que vayas a lo menos popular en el internet.\\n\\n190\\n00:09:06,091 --> 00:09:10,000\\nEl \"artículo aleatorio\" en Wikipedia es muy interesante en este sentido,\\n\\n191\\n00:09:10,000 --> 00:09:13,024\\nal despertar todos los días puedes leer de algún tema desconocido y aleatorio,\\n\\n192\\n00:09:13,024 --> 00:09:17,008\\nalgo de lo que nunca habías escuchado, excepto porque hay un artículo en Wikipedia sobre ello.\\n\\n193\\n00:09:17,008 --> 99:59:59,000\\nY ¡créeme!, realmente hay temas muy extraños en Wikipedia.',\n", + " 'bytes': 18779,\n", + " 'sha1': 'apnsy4aqoz6qg1sayfrmlpm4k0bk9x0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100364817,\n", + " 'timestamp': '2013-07-20T21:19:52Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 27357002,\n", + " 'title': 'Aaron Swartz - The Network Transformation.webm.tr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '\\ufeff1 00:00:03,001 --> 00:00:08,012 Medyanın yapısını değişiyor olması, toplumları kontrol etmenin de değişmesi anlamına geliyor 2 00:00:08,012 --> 0...'\",\n", + " 'text': '\\ufeff1\\n00:00:03,001 --> 00:00:08,012\\nMedyanın yapısını değişiyor olması, toplumları kontrol etmenin de değişmesi anlamına geliyor\\n\\n2\\n00:00:08,012 --> 00:00:11,006\\nYayın mekanizmasında her haber / bilgi istasyonunda bir kişi bulunur\\n\\n3\\n00:00:11,006 --> 00:00:13,007\\nve bu kişi hangi bilginin ve yayının insanlara yayılması gerektiğine karar verir.\\n\\n4\\n00:00:13,007 --> 00:00:17,067\\nInterenet gibi herkesin bilgi kaynağı olabildiği bir ilişki ortamı olduğu zaman\\n\\n5\\n00:00:17,068 --> 00:00:20,088\\nArtık bilgiye ulaşmak isteyen ile ne türlü bilgilerin yayılmasına karar veren ve engelleyen bir mekanizma artık yoktur\\n\\n6\\n00:00:20,088 --> 00:00:22,004\\nVe her bilgisayar artık bunu yapmaktadır.\\n\\n7\\n00:00:22,004 --> 00:00:27,012\\nEvinize bir bilgisayar alıp onu bilgi yaymak için kullanırsanız / server gibi kullanırsanır, bu bilgisayar artık müzik ve filmleri insanlara yayabilme olasılığına ulaşmıştır.\\n\\n8\\n00:00:27,012 --> 00:00:31,068\\nşuanda websiteleri, emailler ve sosyal medya, şuanda dünyanın en büyük bilgisayarları olan google bilgisayarları ile aynı işi yapabilirler.\\n\\n9\\n00:00:31,068 --> 00:00:31,076\\nTemelde bu en büyük bilgisayar ile Iraktaki bilgi odaların /server odaları arasında neredeyse hiç bir fark yoktur.\\n\\n10\\n00:00:31,076 --> 00:00:35,051\\n.\\n\\n11\\n00:00:35,051 --> 00:00:38,003\\nevlerde bulunan bilgisayarlarda aynı özelliğe sahiptirler\\n\\n12\\n00:00:38,003 --> 00:00:39,006\\nEski tip yayın ve bilgi paylaşımında\\n\\n13\\n00:00:39,006 --> 00:00:42,076\\nSizler temelde ne kadar bilginin paylaşıması gerektiğine karar verildiğinden limitli bilgiye ulaşabiliyordunuz.\\n\\n14\\n00:00:42,076 --> 00:00:46,043\\nEn fazla 10 kanal insanlar ile paylaşılabiliyordu\\n\\n15\\n00:00:46,043 --> 00:00:48,067\\nkablolu TVlerde 500 kadar kanal paylaşılıyordu.\\n\\n16\\n00:00:48,067 --> 00:00:50,076\\nInternette is herkes bir kanala sahiptir\\n\\n17\\n00:00:50,076 --> 00:00:53,008\\nHer kes bir blog / site / MYspace sayfalarına sahip olabilirler.\\n\\n18\\n00:00:53,008 --> 00:00:55,048\\nherkesin artık kendi bilgilerini aktarabilir ve kendini ifade edebilir\\n\\n19\\n00:00:55,048 --> 00:00:57,072\\nve şuanda gördüğümüz artık kavadan gelen TV sinyallerinin soru olmaktan çıkmasıdır\\n\\n20\\n00:00:57,072 --> 00:00:59,028\\nsoru olmaktan çıkmasıdır\\n\\n21\\n00:00:59,027 --> 00:01:00,083\\nŞuanda asıl soru bu bilgileri ve paylaşımları\\n\\n22\\n00:01:00,084 --> 00:01:02,008\\nkimin kontrol edeceğidir\\n\\n23\\n00:01:02,008 --> 00:01:05,043\\nŞu anda gücü merkezleştiren google gibi siteleri görmeye başladık\\n\\n24\\n00:01:05,043 --> 00:01:08,006\\nBu siteler bizlere \"Kapı Tutucular\" nereye gitmemiz konusunda yönlendirmeye başladılar\\n\\n25\\n00:01:08,006 --> 00:01:11,006\\nİnsanların sizlere sunduğu haberleri ve bilgileri yönlendirebiliyorlar.\\n\\n26\\n00:01:11,006 --> 00:01:15,028\\nbu sadece bazı insanların konuşma hakları olmadıkları anlamına geliyor\\n\\n27\\n00:01:15,028 --> 00:01:16,068\\nşuanda internet sayesinde artık herkes konuşma lisansına sahip,\\n\\n28\\n00:01:16,067 --> 00:01:19,003\\nŞuanda asıl soru kimin duyulacağı ile ilgili.\\n\\n29\\n00:01:19,004 --> 00:01:22,068\\nEn büyük sorulardan birisi, çok fazla bilgisini ve tecrübesini paylaşmak insan ortaya çıktı.\\n\\n30\\n00:01:22,067 --> 00:01:24,003\\nŞuanda bunlardan hangisinin iyi olduğunu nasıl bulacaksınız?\\n\\n31\\n00:01:24,004 --> 00:01:27,036\\nEski tip medya sistemi olan CNNnin gittiği yoldan mı gideceğiz.\\n\\n32\\n00:01:27,036 --> 00:01:29,028\\nBir kaç insana büyük anlamlar yükleyip, tüm insanları onlara mı odaklatacağız\\n\\n33\\n00:01:29,028 --> 00:01:30,028\\nve onlar ne derse onu mu dinleyeceğiz\\n\\n34\\n00:01:30,028 --> 00:01:32,002\\nveya iherkesin sesini duyurabildiği daha demokratik olan\\n\\n35\\n00:01:32,001 --> 00:01:35,048\\ninternet gibi birşey ile mi yolumuza devam edeceğiz.\\n\\n36\\n00:01:35,048 --> 00:01:38,043\\nŞuanda bir çok teknoloji adı işbirliği yapan filtreleme olan\\n\\n37\\n00:01:38,043 --> 00:01:40,007\\nçok ilgiç bir teknoloji bunu sağlamaktadır.\\n\\n38\\n00:01:40,007 --> 00:01:43,067\\nherkesin kendi fikrini ve neyi sevip sevmediğini gösterdikten sonra buna göre ayırt ederek\\n\\n39\\n00:01:43,067 --> 00:01:47,043\\nbilgisayarlar seni otomatik olarak aynı önceliklere sahip olabileceğin diğer insanlara yönlendirmektedir\\n\\n40\\n00:01:47,043 --> 00:01:50,075\\nsenin daha önce hiç bilmediğin bir şeyi sırf sevdiğin takip ettiğin insanlar seviyor diye tavsiye edebilmektedir.\\n\\n41\\n00:01:50,075 --> 00:01:52,083\\nAynı sistem Amazonda veya diğer alışveriş sitelerinde de vardır\\n\\n42\\n00:01:52,084 --> 00:01:55,016\\nsana senin aldığın kitabı aldığında, bu kitabı alanlar şu kitabı da satın aldı diyerek otomatik olarak tavsiye etmektedir.\\n\\n43\\n00:01:55,016 --> 00:01:58,000\\ninsanlar bu tavsiyeleri sadece kitaplarda değil\\n\\n44\\n00:01:58,000 --> 00:02:01,012\\nbloglar, websiteleri, yeni hikayelerde de tüm internet dünyasında denemektedirler.\\n\\n45\\n00:02:01,012 --> 00:02:04,004\\nOnlar şimdiye kadar hiç duymadığınız ve görmediğiniz şeyleri de\\n\\n46\\n00:02:04,004 --> 00:02:06,002\\nsizin önünüze getirmektedirler.\\n\\n47\\n00:02:06,001 --> 00:02:08,003\\nBüyük medya kuruluşlar büyük paradox ve çelişkidedirler,\\n\\n48\\n00:02:08,003 --> 00:02:10,036\\nçünkü çok fazla sayıda dinleyiciye ulaşmak arzusundadırlar\\n\\n49\\n00:02:10,036 --> 00:02:12,075\\naynı zamanda da herkesin bireysel olduğu konusunda insanları ikna etmeye uğraşmaktadırlar.\\n\\n50\\n00:02:12,075 --> 00:02:15,036\\nŞuanda tüm reklamlarda sürekli olarak\\n\\n51\\n00:02:15,036 --> 00:02:17,006\\n\"para harcatma ve bu kot pantolonu satın almalısın\" trendi mevcuttur, değil mi?\\n\\n52\\n00:02:17,006 --> 00:02:20,027\\nÇünkü o sırada 4 milyon insan o probramı izliyordur,\\n\\n53\\n00:02:20,027 --> 00:02:24,000\\nBu 4 milyon kişi ile trendi kontrol edemezsiniz.\\n\\n54\\n00:02:24,000 --> 00:02:27,003\\nŞuanda internet aslında bu niş şeyleri gerçeklendiriyor\\n\\n55\\n00:02:27,003 --> 00:02:29,003\\neski tip medya bu işten çok fazla korkmuş durumda\\n\\n56\\n00:02:29,003 --> 00:02:33,048\\nartık binlerce insanları kontrol edebildiğiniz ve sizin olan bir topluluk artık yok\\n\\n57\\n00:02:33,048 --> 00:02:36,027\\nartık çok fazla teoriden öte, bunu internetten yapabilirsiniz.\\n\\n58\\n00:02:36,027 --> 00:02:40,055\\nVe biz artık bu gelişmelerin büyük tekel güçlerin, güçlerini kaybettiklerini görmeye başladık\\n\\n59\\n00:02:40,056 --> 00:02:42,048\\nve bu gücün küçük gruplara kaymaya başladığını görmeye başladık.\\n\\n60\\n00:02:42,048 --> 00:02:47,027\\nBu sistemde bazı temel konulardan olan ekonomik olarak bu insanların nasıl gelir elde edeceğidir.\\n\\n61\\n00:02:47,027 --> 00:02:50,051\\nbu durumda bu küçük websitesi, blog sahipleri para kazanacaklar ve hayatta kalacaklardır\\n\\n62\\n00:02:50,051 --> 00:02:53,006\\naraştırmaca gazetecinin yaptığı gibi\\n\\n63\\n00:02:53,006 --> 00:02:55,092\\nçünkü burada çok büyük reklam kaynağı vardır.\\n\\n64\\n00:02:55,092 --> 00:02:59,088\\nBurada insan bulmak sorusu olduğunu biliyoruz, ben ilgilendiğim insanları nasıl bulacağım\\n\\n65\\n00:02:59,087 --> 00:03:02,007\\nve sözüne değer verilebilen ve güvenli insaları\\n\\n66\\n00:03:02,008 --> 00:03:04,072\\nve tüm bunlar için yeni teknolojiler mevcuttur\\n\\n67\\n00:03:04,072 --> 00:03:06,068\\ninsalar farklı ve çeşitli şeyleri denemektedirler\\n\\n68\\n00:03:06,068 --> 00:03:08,028\\ntüm bunlar internet hakkında farklı şeyler söylemektedirler\\n\\n69\\n00:03:08,027 --> 00:03:12,003\\nbu konuda hale deneylemeler devam etmektedir, şuanda herkes bir websitesi veya blog başlatabilmektedir\\n\\n70\\n00:03:12,003 --> 00:03:15,067\\nbunlar yeni teknolojiler ve bu tip sorunları çözmek için çalışmaktadır.\\n\\n71\\n00:03:15,068 --> 00:03:18,068\\nŞuanda para kazanma ile ilgili çok farklı modeller mevcuttur.\\n\\n72\\n00:03:18,068 --> 00:03:23,044\\ngelirmodeli ile ilgili çok fazla tavsiye olduğu gibi hangisinin en iyi çalışağı ile ilgili yorumlar vardır\\n\\n73\\n00:03:23,044 --> 00:03:25,008\\nbiz bunların hepsini denemeli ve hangisinin çalışmadığını denemeli ve görmeliyiz\\n\\n74\\n00:03:25,008 --> 00:03:27,088\\nMeselsa bazı çok ilginç gelir modeli:\\n\\n75\\n00:03:27,087 --> 00:03:30,006\\nTabiki standart reklam modeli\\n\\n76\\n00:03:30,006 --> 00:03:35,008\\nbüyük reklam verren firmalara gidip onlara TV yerine size reklam vermelerine ikna etme\\n\\n77\\n00:03:35,008 --> 00:03:36,004\\nsayfanızı böylece yayında tutabilirsiniz\\n\\n78\\n00:03:36,003 --> 00:03:40,000\\nama daha ilginç olanı niş / özel gruplara odaklanmak\\n\\n79\\n00:03:40,000 --> 00:03:45,012\\nBüyük IBM/FORD gibi firmalara gitmektense ve onların sitenizden banner ve reklam yeri satın almasını sağlamaktansa\\n\\n80\\n00:03:45,012 --> 00:03:47,068\\ndirek olarak sizi okuyan insanlara gidebilirsiniz\\n\\n81\\n00:03:47,068 --> 00:03:50,076\\neğer design ile ilgili bir websitesi ve blog\\'unuz var ise , dizayn firmalarına gidebilirsiniz\\n\\n82\\n00:03:50,075 --> 00:03:53,087\\neğer politik bir blogunuz var ise, politikacılara gidebilirsiniz\\n\\n83\\n00:03:53,087 --> 00:03:58,003\\nÇok dar ama konunuz ile ilgilenen insalara gidebilirsiniz\\n\\n84\\n00:03:58,003 --> 00:04:01,075\\nbu bir izleyici tabanlı reklam verenlerdir ve çok severler\\n\\n85\\n00:04:01,075 --> 00:04:04,067\\ndiğer mümkün olan okuyucularınıza gidip onlardan yardım ve gelir isteyebilirsiniz\\n\\n86\\n00:04:04,068 --> 00:04:07,072\\nbir blog gördünüz, NEW HAMSPSHIRE (Amerikada bir şehir) \\'e Amerkian politik kongresine\\n\\n87\\n00:04:07,072 --> 00:04:10,044\\ngitmek için bütçe yaratmaya çalışıyorum diyen\\n\\n88\\n00:04:10,044 --> 00:04:12,000\\nbeni destekler misiniz (Maddi Olarak)?\\n\\n89\\n00:04:12,000 --> 00:04:13,003\\nve sizin takipçileriniz, okuyucularınız size para dökeceklerdir\\n\\n90\\n00:04:13,003 --> 00:04:16,072\\nbu tip yazarlar site sahipleri, temelden insanlar / takipçileri ile çok güçlü bağları vardır.\\n\\n91\\n00:04:16,072 --> 00:04:17,007\\nkişiler yazılarından dolayı bir bağlantı\\n\\n92\\n00:04:17,007 --> 00:04:21,000\\ninsanlar / takipçileri onu desteklemek için para harcamaya hazırdırlar!\\n\\n93\\n00:04:21,000 --> 00:04:23,088\\nDiğeri ise bu işi gönüllü olarka yapmaktır\\n\\n94\\n00:04:23,088 --> 00:04:27,004\\ntek günlük bilgisini aktaracak bir günlük işi olan insanlar mevcuttur\\n\\n95\\n00:04:27,004 --> 00:04:30,036\\nboş zamanlarında bilgilerini aktarmak için konuşmaktan hoşanan insanlar vardır\\n\\n96\\n00:04:30,036 --> 00:04:31,043\\nve bunu internette yaymaktan hoşlanan insanlar\\n\\n97\\n00:04:31,043 --> 00:04:34,000\\nveya okuyucuları var olan, sitelerini okuyan ve destek olan insanlar\\n\\n98\\n00:04:34,000 --> 00:04:36,067\\nve bu çok heyecanlandırıcı bir gelir kaynağıdır.\\n\\n99\\n00:04:36,067 --> 00:04:39,003\\nBenim düşünce çok fazla ilginç deneylerin olduğu yönündedir,\\n\\n100\\n00:04:39,004 --> 00:04:41,000\\ninsanlar çok fazla değişik yolu deniyorlar\\n\\n101\\n00:04:41,000 --> 00:04:48,005\\nBüyük bir hatalardan birisi TVlerde değil mi, sadece tek bir ilgi çeken noktaya odaklanmaktadırlar\\n\\n102\\n00:04:48,005 --> 00:04:52,035\\nsadece reklam ve ne kadar çok insanın ilgisinin çekileceği üzerine kurulmuş bir sistem\\n\\n103\\n00:04:52,036 --> 00:04:56,028\\nreklam vericiler ne kadar ilginç veya ilgi uyandırdığına bakmadan reklam veriyorlardı\\n\\n104\\n00:04:56,028 --> 00:04:58,016\\nveya izleyicilerin gerçekten programa önem verip vermediklerini bilmeden\\n\\n105\\n00:04:58,016 --> 00:05:01,092\\nbu genelde çok fazla insanın izlediği fakat sıkıcılığı çok fazla kişi taradından da kabul edilen şekilde son buluyordu\\n\\n106\\n00:05:01,091 --> 00:05:04,003\\nçünkü reklam vericilerin istedikleri\\n\\n107\\n00:05:04,004 --> 00:05:06,016\\nçok fazla insanın izlediği programlardı\\n\\n108\\n00:05:06,016 --> 00:05:08,028\\naslında normal market ekonomisinin olduğu ortamda olan şey\\n\\n109\\n00:05:08,028 --> 00:05:10,036\\neğer birşeyi çok fazla istiyorsan çok para ödersin\\n\\n110\\n00:05:10,036 --> 00:05:12,028\\nbunu TV ile yapmak imkansızdır\\n\\n111\\n00:05:12,028 --> 00:05:15,004\\nBu durumda yayınlar ile ilgili çok ilginç olan kısım, çok fazla sevilen şey\\n\\n112\\n00:05:15,004 --> 00:05:17,004\\ndiğer insanların bir şeyi ne kadar sevdiği ile ilgilidir\\n\\n113\\n00:05:17,004 --> 00:05:19,024\\ndışarıda çok fazla Show var\\n\\n114\\n00:05:19,024 --> 00:05:20,002\\nçok fazla kibar olan showlardır bunlar\\n\\n115\\n00:05:20,002 --> 00:05:22,000\\nsonuçta ne olur, bu megahit çok izlenen programlar LOST veya\\n\\n116\\n00:05:22,000 --> 00:05:27,000\\nYetenek Sizsiniz gibi programlar, herkesin hakkında konuştuğu programlar\\n\\n117\\n00:05:27,000 --> 00:05:30,012\\nbu programları izlemek zorundasınız yoksa insanların hep beraber yaptıkları olaylardan uzak kalmış olursunuz\\n\\n118\\n00:05:30,012 --> 00:05:33,055\\nbunu üzerine sosyal faktörlerden olan\\n\\n119\\n00:05:33,055 --> 00:05:35,067\\nbu temel olan zengin daha zengin olur süreci\\n\\n120\\n00:05:35,067 --> 00:05:40,036\\nsadece bir şey, bir program çok ünlü olur ve büyük çıkış yapar çünkü herkes aynı şeyi yapmayı başlar\\n\\n121\\n00:05:40,036 --> 00:05:43,072\\nInternetin bu durumda en güzel yanı insanlara çok fazla çeşit sunmaktadır\\n\\n122\\n00:05:43,072 --> 00:05:48,000\\nniş çok özel konular ve ürünler bile dikkat ve ilgi çekebilirler\\n\\n123\\n00:05:48,000 --> 00:05:50,076\\nBöylece rakamlar konuşur ve bu matematiksel olarak kanıtlanmış bir gerçeklemdir.\\n\\n124\\n00:05:50,076 --> 00:05:54,068\\nSen belirli bir oranda insanın ilgisini, senin odaklandığın konuda çekersen\\n\\n125\\n00:05:54,067 --> 00:05:58,067\\nve eğer diğer insanlarda bunu severler ise sen bu durumda başarılı veya başarısız olarak sonuçlarına ulaşırsın\\n\\n126\\n00:05:58,067 --> 00:06:01,072\\neğer bir birine eşit ve aynı kalitede sunulmuş iki konun var ise\\n\\n127\\n00:06:01,072 --> 00:06:04,067\\nbirisi diğerinden biraz daha fazla insan tarafından bile takip ediliyor olsa\\n\\n128\\n00:06:04,067 --> 00:06:06,012\\nsen doğal olarak daha fazla ilgi\\n\\n129\\n00:06:06,012 --> 00:06:08,004\\nçekene biraz daha fazla şans olduğu için gideceksindir\\n\\n130\\n00:06:08,004 --> 00:06:09,076\\nve herkes aynısını yapmaya başlayacaktır\\n\\n131\\n00:06:09,076 --> 00:06:11,016\\nve en sonunda aniden bir Harry Potter\\'ın olacaktır\\n\\n132\\n00:06:11,016 --> 00:06:14,088\\nBu kitabın ve filmin aniden bu kadar ünlü olmasının sebebi de budur.\\n\\n133\\n00:06:14,088 --> 00:06:18,012\\nHiç bir şekilde diğer binlerce kitaptan daha iyi yazıldığı ile ilgisi yoktur\\n\\n134\\n00:06:18,012 --> 00:06:21,000\\nçok basit olarak herkes bu kitabı okumaya yönelince bu durum oluşmuştur.\\n\\n135\\n00:06:21,000 --> 00:06:23,007\\nBazı şeyleri internete koymak da aynı temeldedir\\n\\n136\\n00:06:23,007 --> 00:06:27,003\\nsen hala arkadaşlarının ne sevdiği ile ilgilenmek durumundasın, sen hala insanların hakkında konuştuğu şeyi okumak istersin\\n\\n137\\n00:06:27,004 --> 00:06:30,076\\nhala populer olanı yapmak istersin çünkü diğer insanların bu konuya odaklanmasının geçerli bir nedeni olduğunu düşünürsün\\n\\n138\\n00:06:30,076 --> 00:06:34,002\\nve belki sen de bu konuda konuşmak istersin, bu topluluğa ait olmak istesin\\n\\n139\\n00:06:34,002 --> 00:06:37,024\\nsebebi ne olursa olsun, sen diğer insanların ne düşündüğünü önemsedikçe\\n\\n140\\n00:06:37,024 --> 00:06:38,007\\nkonular ve internette yayımlanan herşey de aynı şekilde hit olan ve olmayanlar olarak sonuçlanacaktır.\\n\\n141\\n00:06:38,007 --> 00:06:39,003\\nSen sadece insanların sevdikleri şeye odaklanırsın,\\n\\n142\\n00:06:39,004 --> 00:06:41,068\\nbu sosyan bir belirleyicidir\\n\\n143\\n00:06:41,067 --> 00:06:45,007\\nherkes Yetenek Sizsinizi izliyor ise, bu programın ne kadar kaliteli olduğu önemli değildir\\n\\n144\\n00:06:45,007 --> 00:06:49,048\\nDemeye çalıştığım yüksek miktarda insan bu programı izlediğinden, ama bunu izleyip, bu konuda konuşmaya başladıklarında\\n\\n145\\n00:06:49,048 --> 00:06:54,002\\nBiliriz ki çok kısa süre sonunda Megahit olur ve bunun hiç bir sebebi olmaz,\\n\\n146\\n00:06:54,002 --> 00:06:56,007\\nevet doğru, çünkü sadece sosyal bir fenomen ve çok izlenen olmuştur\\n\\n147\\n00:06:56,007 --> 00:07:00,005\\nve TV nin yaptığı, diğer tüm showları yok etmesidir\\n\\n148\\n00:07:00,005 --> 00:07:03,003\\ninsanları bu megahit durumunu kontrol etmek isteselerde kimin megahit olduğu konusunda ilgilenmezler\\n\\n149\\n00:07:03,004 --> 00:07:06,068\\ntüm paralarını bu ucuza üretilmiş showlara aktarırlar\\n\\n150\\n00:07:06,067 --> 00:07:08,072\\nbu konuda hit olma durumunda kaçamazsınız, değil mi?\\n\\n151\\n00:07:08,072 --> 00:07:11,004\\ninsanlar çok basit olarak arkadaşları ne yapıyorlarsa onu yapmak isterler\\n\\n152\\n00:07:11,004 --> 00:07:15,052\\nbu konu doğrudur, faka tüm dünya dışarıda durmaktadır,\\n\\n153\\n00:07:15,052 --> 00:07:19,000\\nçok fazla insan diğer insanların dikkate aldıklarını kesinlikle dikkate alıp onların yaptıkalrını yapacaklarıdır\\n\\n154\\n00:07:19,000 --> 00:07:22,004\\nHerkesin kendine has ilgisi vardır, herkesi heyecanlandıran ve harekete geçiren farklı konular vardır\\n\\n155\\n00:07:22,004 --> 00:07:25,072\\nve internet bu ilgi alanları ile ilgili yapmaya izin vermektedir\\n\\n156\\n00:07:25,072 --> 00:07:29,007\\nbu konuda daha fazla işin içinde olmak için sizin ile ilgili aynı şeyleri düşünen insanlara bulmak gereklidir\\n\\n157\\n00:07:29,007 --> 00:07:33,024\\nWikipedia hakkında çok önemli olan durum sadece içindeki makaleler değildir.\\n\\n158\\n00:07:33,024 --> 00:07:36,002\\nBiliyorsunuz 100lerce veya binlerce çok popüler konu vardır\\n\\n159\\n00:07:36,002 --> 00:07:39,028\\ndünyada hiç bilinmeyen bir konuyu alıp onun ile ilgili bir makale veya yazı bulabilirsiniz\\n\\n160\\n00:07:39,028 --> 00:07:43,004\\nÇünkü herhangi birşey ile ilgilinen dünyanın farklı yerinde bir kişi daha mevcuttur\\n\\n161\\n00:07:43,004 --> 00:07:46,006\\nişte bunu ne radyo ne de Televizyonlar sağlamamaktadırlar\\n\\n162\\n00:07:46,005 --> 00:07:50,007\\nInterner bir şekilde farklı insanlarınilgisini çeken şeye odaklanmanızı ve o konuda\\n\\n163\\n00:07:50,007 --> 00:07:52,048\\nbilgi almanızı sağlar\\n\\n164\\n00:07:52,048 --> 00:07:56,004\\nSadeec bilgi değil ek olarak internet o bilgi ile ilgili zamansal olarak da gerilere gitmenizi sağlayacaktır\\n\\n165\\n00:07:56,004 --> 00:07:58,052\\nÇok eskilere gidip artık kapatılmış ve dinlenmeyen izlenmeyen bilgilere bile ulaşabilirsiniz\\n\\n166\\n00:07:58,052 --> 00:08:00,084\\ntüm silinmiş makalelere bile ulaşabilirsiniz\\n\\n167\\n00:08:00,084 --> 00:08:04,004\\ntüm bu güçlenmiş boğucu kültürde silinmiş bilgilere bile ulaşabilirsiniz\\n\\n168\\n00:08:04,004 --> 00:08:05,048\\nbu bilgiler internette mevcuttur\\n\\n169\\n00:08:05,048 --> 00:08:09,067\\n70lerden 80 lerden kalan müzikleri youtube dan izleyebilirsiniz, bunları başka hiçbir yerde bulamaz ve dinleyemezsiniz\\n\\n170\\n00:08:09,067 --> 00:08:11,048\\nbunu sebestçe izleyebilir ve dinleyebilirsiniz\\n\\n171\\n00:08:11,048 --> 00:08:13,067\\nBence, hitlerin gücünü azaltmanın\\n\\n172\\n00:08:13,067 --> 00:08:16,072\\naşağıda kalmış şeyleri yukarı çıkarmak ve bunları daha eşitlikçi bir zemine getirmek\\n\\n173\\n00:08:16,072 --> 00:08:18,007\\nbizim için çabalanması gereken bir konudur\\n\\n174\\n00:08:18,007 --> 00:08:21,007\\nbu çok zordur ve çok fazla da mümkün olmayabilir\\n\\n175\\n00:08:21,007 --> 00:08:24,007\\nbu konuda ümitlenmek ve bunun için çabalamalıyız\\n\\n176\\n00:08:24,007 --> 00:08:26,072\\nbunun anlamı şudur\\n\\n177\\n00:08:26,072 --> 00:08:31,002\\nhit verilen ve hitleşen çoğu şeyi silip atmalıyız\\n\\n178\\n00:08:31,002 --> 00:08:34,004\\nçünkü bunu diğer insanlar sevdi diye yapmıştın\\n\\n179\\n00:08:34,004 --> 00:08:37,052\\nWebsitesi izlemek ve ve bir sistemi programlamak çok heyecanlandırıcıdır\\n\\n180\\n00:08:37,052 --> 00:08:39,087\\nve bu çok polüler olan şeylerin çok fazla azaltılması çok önemlidir\\n\\n181\\n00:08:39,087 --> 00:08:43,011\\nbu hit konular sistemi daha az demokratik ve daha az eşitlikçi yapmaktadır\\n\\n182\\n00:08:43,011 --> 00:08:48,027\\nSürekli olarak haklarını isteyerek, deneyerek ve dipteki şeyleri yukarı çekerek\\n\\n183\\n00:08:48,028 --> 00:08:51,043\\ntüm insanlara eşit şans vermek çok önemlidir.\\n\\n184\\n00:08:51,043 --> 00:08:53,072\\nbunu yatığımızda belki bu hitlerden kurtulamayız,\\n\\n185\\n00:08:53,072 --> 00:08:55,067\\nAma bu daha az hit almış konuları destekleyerek onların bazı problemlerine çözüm bulabilirsin\\n\\n186\\n00:08:55,067 --> 00:08:59,004\\nDemeya çalıştığım, bilgi kaynaklandırması belirsiz konuları bulup onları inşa etmektir\\n\\n187\\n00:08:59,004 --> 00:09:01,087\\nbu konuları bulmak çok zordur çünkü populer değildirler.\\n\\n188\\n00:09:01,087 --> 00:09:03,091\\nBu tavsiye programlarını biliyorsunuzdur,\\n\\n189\\n00:09:03,091 --> 00:09:06,091\\nbu programlar daha az populer konuları yukarı çekebilirler\\n\\n190\\n00:09:06,091 --> 00:09:10,000\\nMesela Wikipedia da ki herhangi bir konuyu rast gele okuma butonu çok önemlidir\\n\\n191\\n00:09:10,000 --> 00:09:13,024\\nHer sabah uyandığınızda bir tane rast gele bir konu okuyabilirsiniz\\n\\n192\\n00:09:13,024 --> 00:09:17,008\\nBu konu hakkında hiç bilmediğin duymadığın bir Wikipedia konusu olabilir.\\n\\n193\\n00:09:17,008 --> 99:59:59,000\\nve sen, kesinlikle hiç ama hiç bilmediğin rast gele bir konu wikipediada kesinlikle vardır.',\n", + " 'bytes': 20806,\n", + " 'sha1': 'rnskzor2rgvfhny1ukmxjylpqls4spu',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100498677,\n", + " 'timestamp': '2013-07-22T22:42:24Z',\n", + " 'user': {'id': 1590495, 'text': 'McZusatz'},\n", + " 'page': {'id': 27391377,\n", + " 'title': 'US President Barack Obama, surveillance activities, June 2013.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:01,140 --> 00:00:16,140\\nThey help us prevent terrorist attacks.\\nAnd the modest encroachments on the privacy\\n\\n2\\n00:00:17,010 --> 00:00:21,390\\nthat are involved\\nin getting phone numbers or duration without\\n\\n3\\n00:00:21,390 --> 00:00:28,390\\na name attached\\nand not looking at content, that on net,\\n\\n4\\n00:00:30,279 --> 00:00:32,789\\nit was worth us doing.',\n", + " 'bytes': 357,\n", + " 'sha1': '48sji54rjm1c7wswgyicywubielbhj9',\n", + " 'parent_id': 100498614,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100522926,\n", + " 'timestamp': '2013-07-23T09:48:58Z',\n", + " 'user': {'id': 3029358, 'text': 'Chiatos'},\n", + " 'page': {'id': 27396926,\n", + " 'title': 'The Impact Of Wikipedia.webm.ita.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with ' 1 00:00:00,000 --> 00:00:05,000 Wikipedia è un'organizzazione no profit, ma è il 5° sito web al mondo. Tutti gli articoli su Wikipedia sono scritti da volon...'\",\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia è un\\'organizzazione no profit, ma è il 5° sito web al mondo. Tutti gli articoli su Wikipedia sono scritti da volontari.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nVogliamo presentarvene alcuni...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nIo sono nepalese\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nIo sono irachena\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nIo sono indiana\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nIo sono di Byram, nel New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nIo vivo a Birmingham, in Inghilterra\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La Paz, Bolivia -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malesia -- Milano, in Italia -- Sud Africa\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolonia -- Giappone -- Armenia\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrasile -- Russia -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsraele -- Uzbekistan -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul -- Messico\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nQuando ho iniziato a partecipare a Wikipedia, nel 2008, ho cominciato molti articoli.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nUno, quello dedicato a una donna, Mariam Nour.\\xa0\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nNon c\\'era un articolo su di lei, perciò... -- è stato il mio primo articolo.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nNon mi ricordo, forse due o tre anni dopo,\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nsono capitata su questo articolo. Sono rimasta scioccata!\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nPiù di 10.000 persone avevano letto questo articolo.\\xa0\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nLo avevao usato, avevano tratto le loro informazioni da questo articolo. Erano passate da questo articolo,\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nperciò ti senti di aver influenzato più di 100.000 persone.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nEro terrorizzata quando ho schiacciato il bottone \"modifica\" per la prima volta.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nHo pensato, \"Mio dio, rovinerò tutto! Non può funzionare! Non posso farlo!\"\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia è un \\'open source\\' -- dove tutti possono mettere le loro idee\\n26\\n00:01:29,100 --> 00:01:34,000\\ne poi qualcun altro arriva e fa brillare quell\\'idea in modo da renderla superba.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nCi sono migliaia di persone che lavorano ogni giorno, ogni ora, ogni minuto a Wikipedia per migliorarla. \\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nMolto è lavoro volontario. Questo è un modo unico di fare volontariato.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nMette insieme professionisti e non professionisti che amano un particolare tema.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nLe persone che all\\'inizio hanno diverse opinioni cominciano a collaborare.\\n\\n31\\n00:01:54,001 --> 00:01:58,500\\nMolto di quello che immagineresti gestito da una grande Società di Internet\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nè gestito da volontari come me.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nNon puoi dire, \"Va bene, io ho ragione, tu hai torno, questa è la mia versione dell\\'articolo!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nSe c\\'è un problema di faziosità,\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nallora qualcuno l\\'ha probabilmente evidenziato e se no posso evidenziarlo io stesso.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nCi sono centinaia di migliaia di persone che lo vedono\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\ne lo correggono.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nE poi ho schiacciato il bottone e...\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom - Il viaggio è cominciato ed è stato grande.\\n\\n51\\n00:02:19,601 --> 00:02:21,000\\nHo cominciato con \\'Probabilità\\'. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nIl primo articolo che ho cominciato è \\'Probabilità\\'.\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nUno dei principali articoli che ho scritto su Wikipedia è\\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nl\\'articolo sulle pugnalate.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nHo scritto sulla pesca con la mosca,\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nStoria del Montana, la storia del Parco Nazionale Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nColture dimenticate. Scacchisti. Biodiversità.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nArgomenti di storia militare. Storia dell\\'Armenia. Storia Romana.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nGiudici. Comunicazione. Biografie. Calcio.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrlanda. Pennsylvania. Soprattutto fotografia.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Cuocere al forno, perché adoro farlo.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nArmi nucleari e radioattività,\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\ne kayak sulle rapide.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nCi sono tutte queste informazioni li fuori, sparpagliate\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\ne noi le mettiamo insieme in un posto.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nOffriamo conoscenza gratuita a tutti,\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nnella loro lingua così possono utilizzarla.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nTutti beneficiano di questo, che siano ricchi o poveri.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nLe società di profitto hanno differenti motivazioni ed esigenze.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nDalla Wikimedia Foundation io non ricevo uno stipendio e nemmeno il rimborso spese.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nPens che sia molto importante per me poter dire chiaramente,\\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nGuarda, quando ti chiedo dei soldi, non sto chiedendo i tuoi soldi per me --\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nTi chiedo dei soldi per la Fondazione che è il gruppo che sostiene questa sorprendente comunità di cui faccio parte.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nPenso che Wikipedia mi abbia dato la possibilità di fare una grossa differenza nel mondo.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nE\\' come un investimento per il futuro, per il futuro dei tuoi figli.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nGrazie\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nIl contenuto di questo video è dispoibile sotto la Licenza Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) a meno che non sia previsto altrimenti. Questo lavoro è attributio a: Victor Grigas, Wikimedia Foundation.\\nI punti di vista e le opinioni espresse in questo video appartengono alle persone che appaiono in questo video e non riflettono necessariamente le politiche o le posizioni delle società, organizzazioni o istitutzioni di cui gli individui fanno parte.\\nIl marchio e il logo di Wikimedia Foundation e di qualsiasi altra organizzazione non sono inclusi nei termini della licenza Creative Commons license. Il marchio e il logo Wikimedia, inclusi \"Wikipedia\" e il logo del pianeta puzzle, sono marchi registrati della Wikimedia Foundation. Per maggiori informazioni, vedi la nostra pagina Trademark Policy,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nQuesto video è pubblicato sotto una licenza Creative Commons.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nCome Wikipedia, può essere copiato gratuitamente, remixato e condiviso.',\n", + " 'bytes': 7013,\n", + " 'sha1': 'fqiac8yzk7vu7l0yv4c7wnq6cdccpb6',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100524397,\n", + " 'timestamp': '2013-07-23T10:30:20Z',\n", + " 'user': {'id': 1116977, 'text': 'נו, טוב'},\n", + " 'page': {'id': 27397352,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.he.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:03,500\\nשלום! אני טרבור, ואני עוזר לבנות עורך חזותי לוויקיפדיה.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nכולם יכולים לערוך את ויקיפדיה, אבל מרבית המנסים מתבלבלים בקלות\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\nוזה כי הקוד המיושן של ויקיפדיה הוא די קשה להבנה.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nזה היה מדהים כשיצרנו אותו לפני 12 שנים,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nאבל אם אנחנו רוצים להנגיש את סך הידע האנושי לכולם,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\nאנחנו חייבים להפוך אותו לקל יותר לשתף.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nהעורך החזותי הוא השינוי הגדול ביותר בוויקיפדיה שאי פעם עשינו.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nהוא הופך את הכתיבה בוויקיפדיה לדומה לכתיבה על נייר בכיתה או שליחת דוא״ל.\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nעדיין קיימים כמה באגים,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nאבל אם אתם רוצים הצצה מוקדמת לאופן בו תעבוד ויקיפדיה בעתיד הקרוב,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\nצרו חשבון בוויקיפדיה האנגלית.\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nהיכנסו להעדפות שלכם, והפעילו את גרסת האלפא של העורך החזותי.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nאתם אפילו יכולים לעזור לנו ע״י שימוש בו ושליחת משוב אלינו.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nאז בבקשה, הצטרפו אלינו בהפיכת הידע האנושי קל יותר לשיתוף.',\n", + " 'bytes': 1777,\n", + " 'sha1': '55qjq164mwkpbpnf5lp0u5h5wagdyl5',\n", + " 'parent_id': 100524338,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 575019559,\n", + " 'timestamp': '2021-07-14T06:36:59Z',\n", + " 'user': {'id': 788958, 'text': 'Perey'},\n", + " 'page': {'id': 27399340,\n", + " 'title': 'Chamberlain-war-declaration.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Tweaked timings. Split one long caption in two. Corrected one word (and -> but).',\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:06,400\\nI am speaking to you, from the Cabinet Room, at 10 Downing Street.\\n\\n2\\n00:00:06,600 --> 00:00:14,000\\nThis morning, the British ambassador in Berlin handed the German Government\\n\\n3\\n00:00:14,000 --> 00:00:21,200\\na final note, stating that unless we heard from them by 11 o'clock\\n\\n4\\n00:00:21,400 --> 00:00:30,400\\nthat they were prepared at once to withdraw their troops from Poland, a state of war would exist between us.\\n\\n5\\n00:00:30,600 --> 00:00:37,000\\nI have to tell you now, that no such undertaking has been received,\\n\\n6\\n00:00:37,100 --> 00:00:43,400\\nand that consequently, this country is at war with Germany.\\n\\n7\\n00:00:47,200 --> 00:00:56,400\\nYou can imagine, what a bitter blow it is to me, that all my long struggle to win peace has failed.\\n\\n8\\n00:00:57,000 --> 00:01:04,200\\nYet I cannot believe that there is anything more, or anything different that I could have done\\n\\n9\\n00:01:04,400 --> 00:01:06,400\\nand that would have been more successful. \\n\\n10\\n00:01:06,600 --> 00:01:13,700\\nUp to the very last, it would have been quite possible to have arranged a peaceful and honourable \\n\\n11\\n00:01:13,800 --> 00:01:20,000\\nsettlement between Germany and Poland. But Hitler would not have it.\\n\\n12\\n00:01:20,000 --> 00:01:26,900\\nHe had evidently made up his mind to attack Poland whatever happened.\\n\\n13\\n00:01:27,000 --> 00:01:34,400\\nAnd although he now says he put forward reasonable proposals which were rejected by the Poles,\\n\\n14\\n00:01:34,600 --> 00:01:37,500\\nthat is not a true statement.\\n\\n15\\n00:01:37,501 --> 00:01:43,000\\nThe proposals were never shown to the Poles, nor to us.\\n\\n16\\n00:01:43,000 --> 00:01:51,000\\nAnd though they were announced in the German broadcast on Thursday night, Hitler did not wait to hear comments on them,\\n\\n17\\n00:01:51,000 --> 00:01:56,500\\nbut ordered his troops to cross the Polish frontier the next morning.\\n\\n18\\n00:01:57,000 --> 00:02:05,000\\nHis action shows convincingly, that there is no chance of expecting that this man will ever give up his practice\\n\\n19\\n00:02:05,000 --> 00:02:12,400\\nof using force to gain his will. He can only be stopped by force, and we and France,\\n\\n20\\n00:02:12,500 --> 00:02:18,800\\nare today in fulfilment of our obligations, going to the aid of Poland\\n\\n21\\n00:02:18,900 --> 00:02:24,400\\nwho is so bravely resisting this wicked and unprovoked attack upon her people.\\n\\n22\\n00:02:24,800 --> 00:02:33,000\\nWe have a clear conscience. We have done all that any country could do to establish peace.\\n\\n23\\n00:02:33,500 --> 00:02:39,400\\nBut the situation, in which no word given by Germany's ruler could be trusted,\\n\\n24\\n00:02:39,500 --> 00:02:45,000\\nand no people or country could feel itself safe, had become intolerable.\\n\\n25\\n00:02:45,000 --> 00:02:54,000\\nAnd now that we have resolved to finish it, I know that you will all play your part with calmness and courage.\",\n", + " 'bytes': 2835,\n", + " 'sha1': '9vaf4y390565am19m1t1meprogilkgk',\n", + " 'parent_id': 575017890,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 311035084,\n", + " 'timestamp': '2018-07-13T16:10:13Z',\n", + " 'user': {'id': 1547075, 'text': 'Illegitimate Barrister'},\n", + " 'page': {'id': 27414314,\n", + " 'title': 'The National Anthem of the Republic of Korea.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:04,000\\nUntil the East Sea's waters run dry\\n\\n2\\n00:00:04,000 --> 00:00:13,000\\nand Mt. Baekdu is worn away,\\n\\n3\\n00:00:13,500 --> 00:00:20,500\\nmay God preserve our country.\\n\\n4\\n00:00:20,500 --> 00:00:26,500\\nLong live our nation!\\n\\n5\\n00:00:27,700 --> 00:00:31,000\\nHibiscus and \\n\\n6\\n00:00:31,000 --> 00:00:35,000\\nthree thousand li \\n\\n7\\n00:00:35,000 --> 00:00:41,000\\nfull of splendid mountains and rivers;\\n\\n8\\n00:00:41,500 --> 00:00:45,000\\ngreat Korean people,\\n\\n9\\n00:00:45,000 --> 00:00:48,555\\nto the great Korean way,\\n\\n10\\n00:00:48,555 --> 00:00:55,000\\nstay always true!\",\n", + " 'bytes': 582,\n", + " 'sha1': 'adckk2pwuu86i5etgkia0ncspfh6a28',\n", + " 'parent_id': 311035058,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 219460744,\n", + " 'timestamp': '2016-11-25T18:19:21Z',\n", + " 'user': {'id': 2672346, 'text': 'Svensson1'},\n", + " 'page': {'id': 27419600,\n", + " 'title': 'The Impact Of Wikipedia.webm.it.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:05,000\\nWikipedia è no profit, ma è il 5° sito web del mondo. Tutti gli articoli di Wikipedia sono scritti da volontari.\\n\\n2\\n00:00:06,000 --> 00:00:11,500\\nVogliamo presentarvene alcuni...\\n\\n3\\n00:00:12,000 --> 00:00:13,000\\nIo sono nepalese\\n\\n4\\n00:00:13,100 --> 00:00:14,000\\nIo sono irachena\\n\\n5\\n00:00:14,100 --> 00:00:16,000\\nIo sono indiana\\n\\n6\\n00:00:16,001 --> 00:00:17,000\\nIo sono di Byram, New Jersey\\n\\n7\\n00:00:17,100 --> 00:00:18,000\\nIo vivo a Birmingham, Inghilterra\\n\\n8\\n00:00:18,100 --> 00:00:22,050\\nChicago, Illinois -- La Paz, Bolivia -- Nairobi, Kenya\\n\\n9\\n00:00:22,051 --> 00:00:24,000\\nKuala Lumpur, Malesia -- Milano in Italia -- Sud Africa\\n\\n10\\n00:00:24,100 --> 00:00:26,100\\nPolonia -- Giappone -- Armenia\\n\\n11\\n00:00:26,200 --> 00:00:28,000\\nBrasile -- Russia -- Botswana\\n\\n12\\n00:00:28,001 --> 00:00:30,500\\nIsraele -- Uzbekistan -- Hong Kong\\n\\n13\\n00:00:30,501 --> 00:00:31,000\\nIstanbul -- Messico\\n\\n14\\n00:00:31,001 --> 00:00:32,000\\nChattanooga, Tennessee\\n\\n15\\n00:00:33,000 --> 00:00:38,000\\nQuando ho iniziato a partecipare a Wikipedia, nel 2008, ho cominciato molti articoli.\\n\\n16\\n00:00:38,100 --> 00:00:44,000\\nUno di questi, credo fosse quello su una signora, Mariam Nour.\\n\\n17\\n00:00:44,100 --> 00:00:48,000\\nNon c\\'era un articolo su di lei, così ... e questo è stato il mio primo articolo.\\n\\n18\\n00:00:48,100 --> 00:00:52,500\\nMe lo ero dimenticato! Forse due o tre anni dopo,\\n\\n19\\n00:00:52,600 --> 00:00:57,000\\nsono passata da questo articolo. Sono rimasta scioccata.\\xa0\\n\\n20\\n00:00:57,100 --> 00:01:02,000\\nPiù di 100.000 persone lo avevano letto.\\n\\n21\\n00:01:02,100 --> 00:01:08,000\\nLo hanno usato, quindi hanno preso le loro informazioni da questo articolo. Sono passati da questo articolo,\\n\\n22\\n00:01:08,100 --> 00:01:15,000\\nperciò tu ti senti di avere interessato e influenzato più di 100.000 persone.\\n\\n23\\n00:01:15,500 --> 00:01:19,000\\nEro proprio terrorizzata quando ho schiacciato il bottone \"modifica\" per la prima volta.\\n\\n24\\n00:01:19,100 --> 00:01:24,000\\nHo pensato, \"Mio dio, rovinerò tutto! Non può funzionare! Non ne sono capace!\"\\n\\n25\\n00:01:24,100 --> 00:01:29,000\\nWikipedia è un \\'open source\\' -- dove tutti possono mettere le loro idee\\n\\n26\\n00:01:29,100 --> 00:01:34,000\\ne poi qualcun altro arriva e fa brillare quel\\'idea e la rende superba.\\n\\n27\\n00:01:34,100 --> 00:01:40,500\\nCi sono migliaia di persone che lavorano ogni giorno, ogni ora, ogni minuto a Wikipedia per migliorarla.\\n\\n28\\n00:01:40,501 --> 00:01:44,000\\nMolti di loro sono volontari. E\\' un modo unico di essere volontari.\\n\\n29\\n00:01:44,100 --> 00:01:49,000\\nMette insieme professionisti e non professionisti amano un particolare tema.\\n\\n30\\n00:01:49,100 --> 00:01:54,000\\nPersone che hanno opinioni differenti all\\'inizio iniziano a collaborare.\\n31\\n00:01:54,001 --> 00:01:58,500\\nMolto di quello che immagineresti gestito da una grande società di Internet\\n\\n32\\n00:01:58,501 --> 00:02:01,000\\nè gestito da volontari come me.\\n\\n33\\n00:02:01,100 --> 00:02:05,000\\nTu no puoi dire, \"Va bene, io ho ragione e tu hai torto, questa è la mia versione dell\\'articolo!\"\\n\\n34\\n00:02:05,100 --> 00:02:07,000\\nSe c\\'è un problema di errori,\\n\\n35\\n00:02:07,100 --> 00:02:11,000\\nqualcuno lo ha probabilmente già segnalato e altrimenti posso segnalarlo io.\\n\\n36\\n00:02:11,000 --> 00:02:13,000\\nCentinaia di migliaia di persone lo vedono\\n\\n37\\n00:02:13,001 --> 00:02:15,000\\ne correggono.\\n\\n38\\n00:02:15,001 --> 00:02:16,400\\nE poi ho schiacciato il bottone e\\n\\n39\\n00:02:16,401 --> 00:02:19,600\\nBoom - Il viaggio è cominciato ed è stato grande.\\n51\\n00:02:19,601 --> 00:02:21,000\\nHo cominciato con \\'Probabilità\\'. \\n\\n40\\n00:02:21,001 --> 00:02:24,000\\nIl primo articolo che ho cominciato è \"Probabilità\".\\n\\n41\\n00:02:24,001 --> 00:02:26,000\\nUno dei principali articoli che ho scritto in Wikipedia è stato\\n\\n42\\n00:02:26,001 --> 00:02:27,400\\nl\\'articolo sulle pugnalate.\\n\\n43\\n00:02:27,401 --> 00:02:29,000\\nIo ho scritto sulla pesca con la mosca,\\n\\n44\\n00:02:29,001 --> 00:02:32,000\\nla storia del Montana, la storia del Parco Nazionale, Yellowstone.\\n\\n45\\n00:02:32,001 --> 00:02:36,100\\nColture dimenticate. Giocatori di scacchi. Biodiversità.\\n\\n46\\n00:02:36,101 --> 00:02:39,100\\nArgomenti di storia militare. Storia dell\\'Armenia. Storia romana.\\n\\n47\\n00:02:39,101 --> 00:02:42,100\\nGiudici. Comunicazione. Biografie. Calcio.\\n\\n48\\n00:02:42,101 --> 00:02:45,901\\nIrlanda. Pennsylvania. Prevalentemente fotografia.\\n\\n49\\n00:02:45,901 --> 00:02:47,600\\nPink Floyd. Cucinare al forno, perché lo adoro.\\n\\n50\\n00:02:47,601 --> 00:02:50,200\\nArmi nucleari e radioattività,\\n\\n51\\n00:02:50,201 --> 00:02:52,000\\ne kayaking nelle rapide.\\n\\n52\\n00:02:52,201 --> 00:02:56,000\\nCi sono tutte quelle informazioni frammentarie la fuori\\n\\n53\\n00:02:56,001 --> 00:02:59,000\\ne noi le mettiamo insieme in un posto solo.\\n\\n54\\n00:02:59,100 --> 00:03:03,000\\nStiamo offrendo conoscenza gratuita a tutti,\\n\\n55\\n00:03:03,101 --> 00:03:07,000\\nnella loro lingua, così possono usarla.\\n\\n56\\n00:03:07,501 --> 00:03:11,000\\nTutti possono beneficiarne, ricchi o poveri.\\n\\n57\\n00:03:11,001 --> 00:03:16,000\\nLe società di profitto hanno motivazioni e ncessità differenti.\\n\\n58\\n00:03:16,500 --> 00:03:22,000\\nIo non prendo uno stipendio da Wikimedia Foundation, e nemmeno rimborsi spesa.\\n\\n59\\n00:03:22,001 --> 00:03:25,500\\nPenso sia molto importante che io possa dire chiaramente,\\n\\n60\\n00:03:25,501 --> 00:03:30,500\\nGuarda, quando ti chiedo soldi, non te li sto chiedendo per me--\\n\\n61\\n00:03:30,501 --> 00:03:36,000\\nTe li sto chiedendo per la FOndazione che è il gruppo che sostiene questa sorprendente comunità di cui faccio parte.\\n\\n62\\n00:03:36,501 --> 00:03:41,400\\nPenso che Wikipedia mi abbia dato la possibilità veramente di fare una grande differenza nel mondo.\\n\\n63\\n00:03:41,401 --> 00:03:48,000\\nE\\' come un investimento per il tuo futuro e quello dei tuoi figli.\\n\\n64\\n00:03:53,401 --> 00:03:57,000\\nGrazie\\n\\n65\\n00:04:00,000 --> 00:04:03,000\\nIl contenuto di questo video è disponibile secondo la licenza Creative Commons Attribution-ShareAlike License v3.0 (http://creativecommons.org/licenses/by-sa/3.0) se non previsto altrimenti. Questo lavoro è attribuito a: Victor Grigas, Wikimedia Foundation.\\nI punti di vista e le opinioni espressi in questo video appartnengono solo alle persone che appiono nel video e non rispecchiano necessariamente le politiche o le posizioni delle società, organizzazioni o istitutzioni di cui gli individui fanno eventualmente parte.\\nI marchi e i logo di Wikimedia Foundation e di qualsiasi altra organizzazione non sono inclusi sotto questa licenza Creative Commons license. Wikimedia marchi e logo, incluso \"Wikipedia\" il logo del pianeta puzzle, sono marchi registrati della Wikimedia Foundation. Per maggiori informazioni, vedi la nostra pagina di Trademark Policy,\\nhttp://www.wikimediafoundation.org/wiki/Trademark_Policy or contact trademarks@wikimedia.org.\\n\\n66\\n00:04:03,000 --> 00:04:05,000\\nQuesto viedo è pubblicato sotto una licenza Creative Commons.\\n\\n79\\n00:04:05,001 --> 00:04:09,000\\nCome Wikipedia, può essere liberamente e gratuitamente copiato, remixato e condiviso.',\n", + " 'bytes': 7001,\n", + " 'sha1': 'nyvebrjth7ninpwwljglkld1q2m6zbu',\n", + " 'parent_id': 100616783,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100641664,\n", + " 'timestamp': '2013-07-25T08:48:07Z',\n", + " 'user': {'id': 2363765, 'text': 'ICarlytranslator'},\n", + " 'page': {'id': 27424976,\n", + " 'title': 'Ununpentium.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:02,700 Ununpentium'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:02,700\\nUnunpentium',\n", + " 'bytes': 43,\n", + " 'sha1': '8xwac2s5flqh27p1c45pb6z6c6enwhr',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100671488,\n", + " 'timestamp': '2013-07-25T18:42:08Z',\n", + " 'user': {'id': 2762823, 'text': 'Novikov16'},\n", + " 'page': {'id': 27433218,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with ' 1 00:00:00,800 --> 00:00:03,500 Привет! Меня зовут Тревор, я помогаю создавать Визуальный редактор дл...'\",\n", + " 'text': '\\n1\\n00:00:00,800 --> 00:00:03,500\\nПривет! Меня зовут Тревор, я помогаю создавать Визуальный редактор для Википедии.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nКаждый может редактировать Википедию, но большинство из тех, кто пытается, делают это неуверенно,\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\nпотому что разметка Википедии тяжелая для восприятия.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nОна была великолепна, когда мы создали ее двенадцать лет назад,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nно если мы собираемся собрать сумму всех человеческих знаний,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\nмы должны сделать все, чтобы люди легко могли ими делиться.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nВизуальный редактор - это самое большое изменение в Википедии, которое мы когда-либо делали.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nС помощью него можно писать в Википедию так же легко, как писать в школьную газету, или отправлять email.\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nОн все еще имеет небольшие ошибки,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nно если вы хотите посмотреть, как Википедия будет работать в ближайшее время,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\nсоздайте учетную запись в Википедии,\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nвойдите в настройки и включите альфа-версию Визуального редактора.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nВы можете помочь нам, если будете использовать его и присылать нам свои отзывы.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nПоэтому, пожалуйста, присоединяйтесь к нам, чтобы мы могли легче собирать и делиться суммой всех человеческих знаний.',\n", + " 'bytes': 2346,\n", + " 'sha1': '6u63n338ept8he4ivsi1zkcgauh3gjw',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100686412,\n", + " 'timestamp': '2013-07-26T01:53:46Z',\n", + " 'user': {'id': 1279456, 'text': 'GorillaWarfare'},\n", + " 'page': {'id': 27436443,\n", + " 'title': 'RefTools rework.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'fix',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,000\\nIn this video I\\'m going to demonstrate how to use the referencing toolbar to cite a source on Wikipedia.\\n\\n2\\n00:00:06,100 --> 00:00:15,000\\nSo, once you\\'re in the article that contains the text you want to cite, go to the \"Edit source\" tab in the upper right-hand corner.\\n\\n3\\n00:00:15,100 --> 00:00:20,000\\nThis will display a text box containing the article contents.\\n\\n4\\n00:00:20,100 --> 00:00:25,000\\nNow in this case I want to cite the text in the \"Challenges\" section.\\n\\n5\\n00:00:25,100 --> 00:00:34,000\\nFirst I place my cursor at the end of the sentence I want to cite, and then I go here to the \"Cite\" button on the editing toolbar.\\n\\n6\\n00:00:34,100 --> 00:00:40,000\\nThis drops down another toolbar, and in this toolbar you can see there is an option that says, \"Templates,\"\\n\\n7\\n00:00:40,100 --> 00:00:47,000\\nand in here you can choose if you\\'re citing a website, a news source, a book, or an academic journal.\\n\\n8\\n00:00:47,100 --> 00:00:51,000\\nNow, in my case, I am citing an academic journal, so I use that option.\\n\\n9\\n00:00:51,100 --> 00:00:55,000\\nA dialog box comes up with quite a few fields that you can fill in.\\n\\n10\\n00:00:55,100 --> 00:01:02,000\\nNow you should just try to fill in as many you can; in a lot of cases, you won\\'t be able to fill all of them.\\n\\n11\\n00:01:24,000 --> 00:01:26,000\\nYou\\'ll have the option to fill in the date that the journal was published.\\n\\n12\\n00:01:26,100 --> 00:01:33,000\\nNow, you can do this by putting in the day, the month, and the year.\\n\\n13\\n00:01:33,100 --> 00:01:37,000\\nIf you only know some of these, in this case I only know the year, that\\'s fine as well.\\n\\n14\\n00:01:41,000 --> 00:01:47,000\\nYou\\'ll have the option to include the page numbers that you are using to cite the work.\\n\\n15\\n00:01:47,100 --> 00:01:53,000\\nYou should not just include the total number of pages in the book or the journal\\n\\n16\\n00:01:53,100 --> 00:02:00,000\\njust include the page range that contains the information that you are using.\\n\\n17\\n00:02:01,000 --> 00:02:06,000\\nThere are a number of options like \"DOI\" and \"PMID\"; these are identifier numbers for journal articles.\\n\\n18\\n00:02:06,100 --> 00:02:10,000\\nThere are also similar ones for books.\\n\\n19\\n00:02:10,100 --> 00:02:20,000\\nIf you can you should try to include these, because these are unique identifiers that will make it easier for others to find the same content that you are using.\\n\\n20\\n00:02:26,000 --> 00:02:30,000\\nI\\'m just going to copy-and-paste it from here, because they\\'re easy to mis-type.\\n\\n21\\n00:02:36,000 --> 00:02:43,000\\nNow, this particular article has an ISSN, and you\\'ll see that that does not appear here,\\n\\n22\\n00:02:43,100 --> 00:02:48,000\\nbut if you click on \"Show/hide extra fields,\" you\\'ll see there are quite a few other fields that you can fill in,\\n\\n23\\n00:02:48,100 --> 00:02:52,000\\nand one of these is the one that I\\'m looking for.\\n\\n24\\n00:02:53,000 --> 00:02:57,000\\nNow, once I\\'ve filled in all of the fields that I can, I also choose a \"ref name\".\\n\\n25\\n00:02:57,100 --> 00:03:02,000\\nThis is very useful for you to reuse the same citation more than once.\\n\\n26\\n00:03:02,100 --> 00:03:09,000\\nSo you can name it whatever you like; I tend to name it the author\\'s name,\\n\\n27\\n00:03:09,100 --> 00:03:16,000\\nbut as long as it\\'s unique from the other references on the page, you can really call it whatever is easiest for you to remember.\\n\\n28\\n00:03:16,100 --> 00:03:18,000\\nNow, once you\\'re done, you can hit \"preview\".\\n\\n29\\n00:03:18,100 --> 00:03:21,000\\nThis will show the text that it\\'s going to create.\\n\\n30\\n00:03:21,100 --> 00:03:26,000\\nYou can also show the parsed preview, which is what this will look like in the references section on the article.\\n\\n31\\n00:03:26,100 --> 00:03:32,000\\nIf you\\'re satisfied with that, you can click \"Insert\", and you\\'ll see that it inserts this string of text right here.\\n\\n32\\n00:03:32,100 --> 00:03:34,000\\nThat\\'s the actual citation.\\n\\n33\\n00:03:34,100 --> 00:03:37,000\\nSo, if I click \"Save\",\\n\\n34\\n00:03:48,000 --> 00:03:55,000\\nYou\\'ll see that in the \"Challenges\" section there\\'s now a number seven in superscript,\\n\\n35\\n00:03:55,100 --> 00:04:01,000\\nand if you look down at the references section, number seven here is the article that I just cited. \\n\\n36\\n00:04:01,100 --> 00:04:05,000\\nNow, if I want to use that same citation again, I can click \"Edit source,\"\\n\\n37\\n00:04:05,000 --> 00:04:14,000\\nand in this case the same article that I used to cite the \"Challenges\" section also is usable for the \"Techniques\" section.\\n\\n38\\n00:04:14,100 --> 00:04:19,000\\nSo instead of inserting all of the same information more than once,\\n\\n39\\n00:04:19,100 --> 00:04:24,000\\nyou can actually just insert your cursor, again, at the end of the sentence you want to cite,\\n\\n40\\n00:04:24,100 --> 00:04:30,000\\nand click on \"Named references,\" and you can choose the name of the reference from down here.\\n\\n41\\n00:04:30,100 --> 00:04:36,000\\nSo, this is what I called it. It shows you a little preview, and then you can click \"Insert.\"\\n\\n42\\n00:04:37,000 --> 00:04:42,000\\nAnd you\\'ll see a very short referencing tag.\\n\\n43\\n00:04:42,100 --> 00:04:45,000\\nIf I click \"Save\"\\n\\n44\\n00:04:50,000 --> 00:04:56,000\\nYou\\'ll see that that same number seven now appears also at the end of the \"Techniques\" section.\\n\\n45\\n00:04:56,100 --> 00:05:00,000\\nAnd down here you\\'ll see \"a\" and \"b,\" and that indicates that it\\'s been cited twice.',\n", + " 'bytes': 5317,\n", + " 'sha1': '9zu5ie673rwjhk2mh5dddnwtxxilat6',\n", + " 'parent_id': 100686338,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100687731,\n", + " 'timestamp': '2013-07-26T02:51:22Z',\n", + " 'user': {'id': 1279456, 'text': 'GorillaWarfare'},\n", + " 'page': {'id': 27436941,\n", + " 'title': 'VisualEditor reference tutorial.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'fix timestamp',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,000\\nIn this video, I\\'m going to demonstrate how to add a reference using the VisualEditor.\\n\\n2\\n00:00:06,100 --> 00:00:10,000\\nSo here I\\'m on the article that I would like to add a citation to,\\n\\n3\\n00:00:10,100 --> 00:00:14,000\\nso I can click \"Edit\" in the top right-hand corner.\\n\\n4\\n00:00:14,100 --> 00:00:16,000\\nThis opens up the VisualEditor.\\n\\n5\\n00:00:17,000 --> 00:00:22,000\\nNow, this is the paragraph that I would like to cite,\\n\\n6\\n00:00:22,100 --> 00:00:27,000\\nSo I click at the very end of that last sentence, which is where I want to add the citation.\\n\\n7\\n00:00:27,100 --> 00:00:36,000\\nNow I can go up here and click on this little book with the bookmark type thing in it, and if I hover over it it will say \"Reference.\"\\n\\n8\\n00:00:36,100 --> 00:00:40,000\\nThis will open up the reference dialogue.\\n\\n9\\n00:00:40,100 --> 00:00:46,000\\nNow, if I wanted to, I could just type in the reference text in MLA or APA format,\\n\\n10\\n00:00:46,100 --> 00:00:51,000\\nbut I actually prefer to use the citation templates, which will format them for me.\\n\\n11\\n00:00:51,100 --> 00:00:58,000\\nSo, if I click on this puzzle piece, it will open the template editor, and I can choose the template I would like to use.\\n\\n12\\n00:00:58,100 --> 00:01:04,000\\nSo, all of our citation templates begin with \"Cite,\" and then once you type in that you\\'ll have a couple of options.\\n\\n13\\n00:01:04,100 --> 00:01:07,000\\nThese top four here are the most common.\\n\\n14\\n00:01:07,100 --> 00:01:14,000\\nI\\'m personally citing an academic journal right now, so that\\'s the one that I\\'m going to use, but they\\'re all relatively similar.\\n\\n15\\n00:01:14,100 --> 00:01:17,000\\nSo I can click \"Add template,\"\\n\\n16\\n00:01:17,100 --> 00:01:23,000\\nand I will be given a list of parameters that I can add.\\n\\n17\\n00:01:23,100 --> 00:01:32,000\\nSo first I\\'m going to add the author\\'s last name, so I click on that and get a box where I can type in the author\\'s name.\\n\\n18\\n00:01:37,000 --> 00:01:43,000\\nOnce I\\'ve done that, I can click back to the template in the left-hand corner, and add more parameters.\\n\\n19\\n00:01:43,100 --> 00:01:46,000\\nSo first name, it\\'s just an initial in this case, but that\\'s okay.\\n\\n20\\n00:01:50,000 --> 00:01:56,000\\nIt will also give some suggestions of required fields, so in this case the \"Source date\".\\n\\n21\\n00:01:56,100 --> 00:01:59,000\\nI only know the year, but that\\'s okay.\\n\\n22\\n00:01:59,100 --> 00:02:02,000\\n\"Source title\" here...\\n\\n23\\n00:02:08,100 --> 00:02:13,000\\nI would also like to add the journal name.\\n\\n24\\n00:02:25,000 --> 00:02:30,000\\nLet\\'s also do the DOI. I\\'m just going to copy-and-paste it.\\n\\n25\\n00:02:55,000 --> 00:03:07,000\\nYou can enter the page numbers if you like; you should only enter the page numbers where the actual article appears, don\\'t just enter the number of pages in the source.\\n\\n26\\n00:03:16,000 --> 00:03:19,000\\nAlright, so I think that\\'s enough for now. So I can click \"Apply changes,\"\\n\\n27\\n00:03:19,100 --> 00:03:24,000\\nand it will show what what the template\\'s going to appear like in this box.\\n\\n28\\n00:03:24,100 --> 00:03:27,000\\nSo I\\'m satisfied with that, and I can click \"Insert reference.\"\\n\\n29\\n00:03:27,100 --> 00:03:30,000\\nAnd then you\\'ll see the little number seven appear up here.\\n\\n30\\n00:03:30,100 --> 00:03:34,000\\nSo now I can save the page, just add a summary.\\n\\n31\\n00:03:40,000 --> 00:03:42,000\\nAnd it will save.\\n\\n32\\n00:03:51,000 --> 00:04:01,000\\nAnd now you can see that the number seven reference has appeared in the references section, with the appropriate superscript right here.\\n\\n33\\n00:04:02,000 --> 00:04:07,000\\nNow if you want to use that same citation again, you can again click \"Edit\".\\n\\n34\\n00:04:10,000 --> 00:04:15,000\\nAnd now I want to use this same document to cite the \"Techniques\" section here.\\n\\n35\\n00:04:15,100 --> 00:04:19,000\\nSo again, I place my cursor at the end of the sentence that I want to cite,\\n\\n36\\n00:04:19,100 --> 00:04:22,000\\nand click again on the reference button.\\n\\n37\\n00:04:22,100 --> 00:04:32,000\\nAnd now at the bottom I can click on \"Use an existing reference,\" and you\\'ll see a list of all of the references in the article.\\n\\n38\\n00:04:32,100 --> 00:04:35,000\\nYou can just click on one you\\'d like to add.\\n\\n39\\n00:04:35,100 --> 00:04:40,000\\nAnd you\\'ll see here that it adds the number seven again right after this section.\\n\\n40\\n00:04:40,100 --> 00:04:48,100\\nSo I can click \"Save page,\" add an edit summary, and save the page.\\n\\n41\\n00:04:54,000 --> 00:04:56,500\\nAnd you will see that number seven appears here and here,\\n\\n42\\n00:04:56,600 --> 00:05:02,000\\nand down here you will see that there\\'s an \"a\" and a \"b,\" which indicates that it\\'s been cited twice.',\n", + " 'bytes': 4597,\n", + " 'sha1': 'rp17judaf5dzk2xr4il2pq8dak8bygx',\n", + " 'parent_id': 100687638,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100753493,\n", + " 'timestamp': '2013-07-27T10:10:23Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27450098,\n", + " 'title': '中文維基百科教學頻道第三章.ogv.zh-cn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:13,640 --> 00:00:24,720 现在看到是一般备有粗体、连结等条目的条目 2 00:00:24,800 --> 00:00:29,120 现在会介绍如何编辑和产...'\",\n", + " 'text': '1\\n00:00:13,640 --> 00:00:24,720\\n现在看到是一般备有粗体、连结等条目的条目\\n\\n2\\n00:00:24,800 --> 00:00:29,120\\n现在会介绍如何编辑和产生\\n\\n3\\n00:00:29,120 --> 00:00:38,120\\n一般条目页面上方都有编辑按钮\\n\\n4\\n00:00:38,280 --> 00:00:41,160\\n单击后\\n\\n5\\n00:00:41,320 --> 00:00:45,840\\n你便进入了编辑面中,\\n\\n6\\n00:00:45,840 --> 00:00:51,320\\n除了平时看到的文字后,另外附有特殊的符号\\n\\n7\\n00:00:51,320 --> 00:01:00,160\\n上方有一个编辑工作栏,是这次教学的重点\\n\\n8\\n00:01:00,160 --> 00:01:05,80\\n如果你尚未注册,将会预设成新的编辑栏\\n\\n9\\n00:01:05,80 --> 00:01:08,160\\n(即目前画面显示的排列)\\n\\n10\\n00:01:08,440 --> 00:01:14,80\\n如果你是已注册用户,可能会因为你的设定而改用旧版本\\n\\n11\\n00:01:14,80 --> 00:01:18,840\\n现在介绍的新版编辑栏的基本操作\\n\\n12\\n00:01:24,160 --> 00:01:29,880\\n在输入文字后,\\n\\n13\\n00:01:29,880 --> 00:01:35,760\\n将要改动的文字反白\\n\\n14\\n00:01:35,760 --> 00:01:39,920\\n第一个\"A\"是将文字修改成粗体\\n\\n15\\n00:01:39,920 --> 00:01:42,880\\n如果你单击\\n\\n16\\n00:01:42,880 --> 00:01:47,560\\n会自动在你选文字的两侧加上\\'\\'\\'\\u3000\\'\\'\\'的符号\\n\\n17\\n00:01:47,720 --> 00:01:50,800\\n想预览你的编辑?\\n\\n18\\n00:01:50,800 --> 00:01:56,520\\n在编辑方格的下方单击「显示预览」\\n\\n19\\n00:02:01,400 --> 00:02:07,280\\n现在,你可以「预览」一栏下方预览自己的编辑了\\n\\n20\\n00:02:07,720 --> 00:02:15,0\\n「维基百科」三字真的变成粗体!\\n\\n21\\n00:02:20,440 --> 00:02:23,360\\n第二个\"A\"是斜体\\n\\n22\\n00:02:23,360 --> 00:02:27,720\\n会在两侧自动产生符号\\'\\'\\u3000\\'\\'\\n\\n23\\n00:02:28,160 --> 00:02:34,80\\n你可以再按「显示预览」看看结果如何\\n\\n24\\n00:02:36,480 --> 00:02:42,960\\n成功了!\\n\\n25\\n00:02:42,960 --> 00:02:52,960\\n在你操作熟稔后,可以自己动手输入,不依赖编辑栏\\n\\n26\\n00:02:52,960 --> 00:02:58,560\\n这个方法也是可以的\\n\\n27\\n00:02:58,560 --> 00:03:09,640\\n第二章教学影片中谈到的链接便是这个按钮产生\\n\\n28\\n00:03:09,720 --> 00:03:16,320\\n它可制造内部及外部链接\\n\\n29\\n00:03:16,400 --> 00:03:23,720\\n你输入及选择条目名称后\\n\\n30\\n00:03:23,880 --> 00:03:27,280\\n按插入连结\\n\\n31\\n00:03:27,360 --> 00:03:34,280\\n便在你输入文字两侧加入[[\\u3000]]符号,成为内部链接\\n\\n32\\n00:03:34,520 --> 00:03:43,0\\n当然你可以预览来确认内部连结是否有效\\n\\n33\\n00:03:43,560 --> 00:03:47,800\\n用浏览器分页开启蓝色字\\n\\n34\\n00:03:48,0 --> 00:03:51,640\\n成功了!\\n\\n35\\n00:03:51,640 --> 00:03:56,80\\n第二章提及的外部连结也可以产生\\n\\n36\\n00:03:56,160 --> 00:04:02,280\\n比如说你发现一个与某个条目有密切关系的网页,\\n\\n37\\n00:04:02,440 --> 00:04:08,280\\n只要复制网址\\n\\n38\\n00:04:08,600 --> 00:04:15,40\\n按连结工具\\n\\n39\\n00:04:15,40 --> 00:04:19,400\\n在「目标页面或网址」贴上网址\\n\\n40\\n00:04:19,560 --> 00:04:22,320\\n外部连结便产生了\\n\\n41\\n00:04:22,400 --> 00:04:30,360\\n不过读者只看网址无法知道这连结会带他到哪里啊!\\n\\n42\\n00:04:30,720 --> 00:04:38,480\\n所以你应该在「显示文字」输入该网页名称\\n\\n43\\n00:04:41,200 --> 00:04:48,160\\n现在文字两旁会自动加入[\\u3000]符号\\n\\n44\\n00:04:48,600 --> 00:04:53,960\\n前半部分是你提供的网址\\n\\n45\\n00:04:54,80 --> 00:04:58,80\\n前半部分是你提供的网址\\n\\n46\\n00:04:58,440 --> 00:05:04,360\\n后半部是你提供的网页名称\\n\\n47\\n00:05:04,360 --> 00:05:07,360\\n预览\\n\\n48\\n00:05:07,480 --> 00:05:12,960\\n阅读时不会显示网址,只看到「显示文字」的文字\\n\\n49\\n00:05:13,120 --> 00:05:18,880\\n用分页开启,便可到该网页了',\n", + " 'bytes': 3640,\n", + " 'sha1': 'lb7kshehxjrgwfo3j7pkgpt8txshlta',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100753591,\n", + " 'timestamp': '2013-07-27T10:13:07Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27450153,\n", + " 'title': '中文維基百科教學頻道第三章.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:13,640 --> 00:00:24,720 現在看到是一般備有粗體、連結等條目的條目 2 00:00:24,800 --> 00:00:29,120 現在會介紹如何編輯和產...'\",\n", + " 'text': '1\\n00:00:13,640 --> 00:00:24,720\\n現在看到是一般備有粗體、連結等條目的條目\\n\\n2\\n00:00:24,800 --> 00:00:29,120\\n現在會介紹如何編輯和產生\\n\\n3\\n00:00:29,120 --> 00:00:38,120\\n一般條目頁面上方都有編輯按鈕\\n\\n4\\n00:00:38,280 --> 00:00:41,160\\n按一下後\\n\\n5\\n00:00:41,320 --> 00:00:45,840\\n你便進入了編輯面中,\\n\\n6\\n00:00:45,840 --> 00:00:51,320\\n除了平時看到的文字後,另外附有特殊的符號\\n\\n7\\n00:00:51,320 --> 00:01:00,160\\n上方有一個編輯工作欄,是這次教學的重點\\n\\n8\\n00:01:00,160 --> 00:01:05,80\\n如果你尚未註冊,將會預設成新的編輯欄\\n\\n9\\n00:01:05,80 --> 00:01:08,160\\n(即目前畫面顯示的排列)\\n\\n10\\n00:01:08,440 --> 00:01:14,80\\n如果你是已註冊用戶,可能會因為你的設定而改用舊版本\\n\\n11\\n00:01:14,80 --> 00:01:18,840\\n現在介紹的新版編輯欄的基本操作\\n\\n12\\n00:01:24,160 --> 00:01:29,880\\n在輸入文字後,\\n\\n13\\n00:01:29,880 --> 00:01:35,760\\n將要改動的文字反白\\n\\n14\\n00:01:35,760 --> 00:01:39,920\\n第一個\"A\"是將文字修改成粗體\\n\\n15\\n00:01:39,920 --> 00:01:42,880\\n如果你按一下\\n\\n16\\n00:01:42,880 --> 00:01:47,560\\n會自動在你選文字的兩側加上\\'\\'\\'\\u3000\\'\\'\\'的符號\\n\\n17\\n00:01:47,720 --> 00:01:50,800\\n想預覽你的編輯?\\n\\n18\\n00:01:50,800 --> 00:01:56,520\\n在編輯方格的下方按一下「顯示預覽」\\n\\n19\\n00:02:01,400 --> 00:02:07,280\\n現在,你可以「預覽」一欄下方預覽自己的編輯了\\n\\n20\\n00:02:07,720 --> 00:02:15,0\\n「維基百科」三字真的變成粗體!\\n\\n21\\n00:02:20,440 --> 00:02:23,360\\n第二個\"A\"是斜體\\n\\n22\\n00:02:23,360 --> 00:02:27,720\\n會在兩側自動產生符號\\'\\'\\u3000\\'\\'\\n\\n23\\n00:02:28,160 --> 00:02:34,80\\n你可以再按「顯示預覽」看看結果如何\\n\\n24\\n00:02:36,480 --> 00:02:42,960\\n成功了!\\n\\n25\\n00:02:42,960 --> 00:02:52,960\\n在你操作熟稔後,可以自己動手輸入,不依賴編輯欄\\n\\n26\\n00:02:52,960 --> 00:02:58,560\\n這個方法也是可以的\\n\\n27\\n00:02:58,560 --> 00:03:09,640\\n第二章教學影片中談到的連結便是這個按鈕產生\\n\\n28\\n00:03:09,720 --> 00:03:16,320\\n它可製造內部及外部連結\\n\\n29\\n00:03:16,400 --> 00:03:23,720\\n你輸入及選擇條目名稱後\\n\\n30\\n00:03:23,880 --> 00:03:27,280\\n按插入連結\\n\\n31\\n00:03:27,360 --> 00:03:34,280\\n便在你輸入文字兩側加入[[\\u3000]]符號,成為內部連結\\n\\n32\\n00:03:34,520 --> 00:03:43,0\\n當然你可以預覽來確認內部連結是否有效\\n\\n33\\n00:03:43,560 --> 00:03:47,800\\n用瀏覽器分頁開啟藍色字\\n\\n34\\n00:03:48,0 --> 00:03:51,640\\n成功了!\\n\\n35\\n00:03:51,640 --> 00:03:56,80\\n第二章提及的外部連結也可以產生\\n\\n36\\n00:03:56,160 --> 00:04:02,280\\n比如說你發現一個與某個條目有密切關係的網頁,\\n\\n37\\n00:04:02,440 --> 00:04:08,280\\n只要複製網址\\n\\n38\\n00:04:08,600 --> 00:04:15,40\\n按連結工具\\n\\n39\\n00:04:15,40 --> 00:04:19,400\\n在「目標頁面或網址」貼上網址\\n\\n40\\n00:04:19,560 --> 00:04:22,320\\n外部連結便產生了\\n\\n41\\n00:04:22,400 --> 00:04:30,360\\n不過讀者只看網址無法知道這連結會帶他到哪裡啊!\\n\\n42\\n00:04:30,720 --> 00:04:38,480\\n所以你應該在「顯示文字」輸入該網頁名稱\\n\\n43\\n00:04:41,200 --> 00:04:48,160\\n現在文字兩旁會自動加入[\\u3000]符號\\n\\n44\\n00:04:48,600 --> 00:04:53,960\\n前半部分是你提供的網址\\n\\n45\\n00:04:54,80 --> 00:04:58,80\\n中間留一個空格\\n\\n46\\n00:04:58,440 --> 00:05:04,360\\n後半部是你提供的網頁名稱\\n\\n47\\n00:05:04,360 --> 00:05:07,360\\n預覽\\n\\n48\\n00:05:07,480 --> 00:05:12,960\\n閱讀時不會顯示網址,只看到「顯示文字」的文字\\n\\n49\\n00:05:13,120 --> 00:05:18,880\\n用分頁開啟,便可到該網頁了',\n", + " 'bytes': 3637,\n", + " 'sha1': '0f5p882u6mzk8xjfg7v0t0lclnhzr4s',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100754120,\n", + " 'timestamp': '2013-07-27T10:29:06Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27450296,\n", + " 'title': '中文維基百科教學頻道第一章.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:16,120 --> 00:00:22,0 現在看到的是中文維基百科的首頁(Vector版) 2 00:00:22,240 --> 00:00:27,520 你可以輸入你找的內容 3 00:00:...'\",\n", + " 'text': '1\\n00:00:16,120 --> 00:00:22,0\\n現在看到的是中文維基百科的首頁(Vector版)\\n\\n2\\n00:00:22,240 --> 00:00:27,520\\n你可以輸入你找的內容\\n\\n3\\n00:00:27,800 --> 00:00:30,960\\n相關條目會在下方展開\\n\\n4\\n00:00:31,200 --> 00:00:36,160\\n也可在最下方選擇「包含...」來搜尋所有相關條目\\n\\n5\\n00:00:36,360 --> 00:00:41,840\\n按「放大鏡」可以直接找你輸入的條目\\n\\n6\\n00:00:42,120 --> 00:00:50,440\\n這樣,你便可以找到所需的條目了\\n\\n7\\n00:00:50,840 --> 00:00:59,400\\n另外用MonoBook 、MySkin等版本也有相同功能\\n\\n8\\n00:00:59,680 --> 00:01:06,440\\n按「進入」便可直接進入條目\\n\\n9\\n00:01:06,800 --> 00:01:15,640\\n按「搜尋」可找到所有相關條目\\n\\n10\\n00:01:16,240 --> 00:01:26,240\\n相關條目便會列表,功能與「包含...」相同\\n\\n11\\n00:01:26,720 --> 00:01:32,720\\n按「進入」,會直接進入條目\\n\\n12\\n00:01:37,120 --> 00:01:40,640\\n也可修改網址來搜尋\\n\\n13\\n00:01:41,40 --> 00:01:49,200\\n在http://zh.wikipedia.org/wiki/ 後\\n\\n14\\n00:01:49,520 --> 00:01:54,800\\n改成你找的內容,比如「香港」\\n\\n15\\n00:01:54,920 --> 00:02:00,720\\n再移至網址\\n\\n16\\n00:02:08,280 --> 00:02:12,80\\n現在看到的是名叫「香港」的條目\\n\\n17\\n00:02:12,80 --> 00:02:18,560\\n而且有「維基百科,自由的百科全書」\\n\\n18\\n00:02:18,560 --> 00:02:21,440\\n條目的背景都是白色\\n\\n19\\n00:02:21,440 --> 00:02:33,0\\n條目內有條目標題(或名稱) 及引言\\n\\n20\\n00:02:34,920 --> 00:02:44,520\\n在一些比較長的條目,會包含目錄和章節\\n\\n21\\n00:02:47,120 --> 00:02:50,120\\n在條目最後有「參考文獻」一欄\\n\\n22\\n00:02:50,680 --> 00:02:54,880\\n說明此條目引用的來源\\n\\n23\\n00:02:55,280 --> 00:02:58,880\\n這種就是條目了\\n\\n24\\n00:02:59,80 --> 00:03:00,640\\n另外維基百科還有非條目類的文章\\n\\n25\\n00:03:00,800 --> 00:03:02,480\\n比如這頁面,以「維基百科:」為標題、\\n\\n26\\n00:03:02,600 --> 00:03:08,160\\n沒有「維基百科,自由的百科全書」、\\n\\n27\\n00:03:08,280 --> 00:03:11,80\\n而且是淺藍色背景的,\\n\\n28\\n00:03:11,200 --> 00:03:12,640\\n這是非條目頁面了',\n", + " 'bytes': 2109,\n", + " 'sha1': 'h06cnso58dwtxo2w340016jx0zw1yia',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100754247,\n", + " 'timestamp': '2013-07-27T10:31:19Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27450322,\n", + " 'title': '中文維基百科教學頻道第一章.ogv.zh-cn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:16,120 --> 00:00:22,0\\n现在看到的是中文维基百科的首页(Vector版)\\n\\n2\\n00:00:22,240 --> 00:00:27,520\\n你可以输入你找的内容\\n\\n3\\n00:00:27,800 --> 00:00:30,960\\n相关条目会在下方展开\\n\\n4\\n00:00:31,200 --> 00:00:36,160\\n也可在最下方选择「包含...」来搜寻所有相关条目\\n\\n5\\n00:00:36,360 --> 00:00:41,840\\n按「放大镜」可以直接找你输入的条目\\n\\n6\\n00:00:42,120 --> 00:00:50,440\\n这样,你便可以找到所需的条目了\\n\\n7\\n00:00:50,840 --> 00:00:59,400\\n另外用MonoBook 、MySkin等版本也有相同功能\\n\\n8\\n00:00:59,680 --> 00:01:06,440\\n按「进入」便可直接进入条目\\n\\n9\\n00:01:06,800 --> 00:01:15,640\\n按「搜寻」可找到所有相关条目\\n\\n10\\n00:01:16,240 --> 00:01:26,240\\n相关条目便会列表,功能与「包含...」相同\\n\\n11\\n00:01:26,720 --> 00:01:32,720\\n按「进入」,会直接进入条目\\n\\n12\\n00:01:37,120 --> 00:01:40,640\\n也可修改网址来搜寻\\n\\n13\\n00:01:41,40 --> 00:01:49,200\\n在http://zh.wikipedia.org/wiki/ 后\\n\\n14\\n00:01:49,520 --> 00:01:54,800\\n改成您找的内容,比如「香港」\\n\\n15\\n00:01:54,920 --> 00:02:00,720\\n再移至网址\\n\\n16\\n00:02:08,280 --> 00:02:12,80\\n现在看到的是名叫「香港」的条目\\n\\n17\\n00:02:12,80 --> 00:02:18,560\\n而且有「维基百科,自由的百科全书」\\n\\n18\\n00:02:18,560 --> 00:02:21,440\\n条目的背景都是白色\\n\\n19\\n00:02:21,440 --> 00:02:33,0\\n条目内有条目标题(或名称) 及引言\\n\\n20\\n00:02:34,920 --> 00:02:44,520\\n在一些比较长的条目,会包含目录和章节\\n\\n\\n21\\n00:02:47,120 --> 00:02:50,120\\n在条目最后有「参考文献」一栏\\n\\n22\\n00:02:50,680 --> 00:02:54,880\\n说明此条目引用的来源\\n\\n23\\n00:02:55,280 --> 00:02:58,880\\n这种就是条目了\\n\\n24\\n00:02:59,80 --> 00:03:00,640\\n另外维基百科还有非条目类的文章\\n\\n25\\n00:03:00,800 --> 00:03:02,480\\n比如这页面,以「维基百科:」为标题、\\n\\n\\n26\\n00:03:02,600 --> 00:03:08,160\\n没有「维基百科,自由的百科全书」、\\n\\n\\n27\\n00:03:08,280 --> 00:03:11,80\\n而且是浅蓝色背景的,\\n\\n28\\n00:03:11,200 --> 00:03:12,640\\n这是非条目页面了',\n", + " 'bytes': 2112,\n", + " 'sha1': 'nemhlfrzu50o5kvhxhjupsqnrac2pyj',\n", + " 'parent_id': 100754212,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100754801,\n", + " 'timestamp': '2013-07-27T10:43:42Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27450441,\n", + " 'title': '中文維基百科教學頻道第兩章.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:19,680 --> 00:00:25,880 現在顯示的是中文維基百科條目, 2 00:00:25,960 --> 00:00:31,200 用來介紹每個條目的基本格式。 3 00:...'\",\n", + " 'text': '1\\n00:00:19,680 --> 00:00:25,880\\n現在顯示的是中文維基百科條目,\\n\\n2\\n00:00:25,960 --> 00:00:31,200\\n用來介紹每個條目的基本格式。\\n\\n3\\n00:00:31,200 --> 00:00:34,880\\n除了第一章提到的引言和標題外,\\n\\n4\\n00:00:34,920 --> 00:00:37,880\\n也有其他的項目\\n\\n5\\n00:00:37,920 --> 00:00:44,640\\n比如是這個消歧義(Otheruses)模板\\n\\n6\\n00:00:44,640 --> 00:00:52,680\\n消除由於一詞多義做成的問題\\n\\n7\\n00:00:52,680 --> 00:00:56,800\\n另外部分條目有條目專用的模板\\n\\n8\\n00:00:56,800 --> 00:01:02,0\\n是用來提醒或警告編者、讀者、管理員\\n\\n9\\n00:01:02,40 --> 00:01:08,120\\n掛起模板的條目可能存在問題或注意事項\\n\\n10\\n00:01:08,200 --> 00:01:11,720\\n各條目因不同需要有不同的排列或不同模板,如:\\n\\n11\\n00:01:11,840 --> 00:01:20,920\\n信息框模板(Infobox):\\n提供條目主要內容,為讀者較快了解基本資料\\n\\n12\\n00:01:21,0 --> 00:01:25,520\\n這種模板展示持有者、始創者等資料\\n\\n13\\n00:01:25,520 --> 00:01:28,40\\n但是亦有些信息框模板是提供人物國藉等\\n\\n14\\n00:01:28,80 --> 00:01:31,720\\n視乎條目記載的是人事地或其他,便用不同模板\\n\\n15\\n00:01:33,600 --> 00:01:38,0\\n第一章提到的目錄和章節出現在較長的條目\\n\\n16\\n00:01:38,40 --> 00:01:42,720\\n其實章節不單只是一級\\n\\n17\\n00:01:42,760 --> 00:01:47,560\\n還可以無限延展\\n\\n18\\n00:01:47,560 --> 00:01:52,880\\n不過一般而言,三級已經很足夠\\n\\n19\\n00:01:52,880 --> 00:01:56,960\\n維基百科目錄除了像書本看到多少章節外...\\n\\n20\\n00:01:56,960 --> 00:02:06,960\\n只要一按那章節,便直接到了!\\n\\n21\\n00:02:07,240 --> 00:02:12,680\\n很方便吧!\\n\\n22\\n00:02:12,680 --> 00:02:15,40\\n有時候你在閱讀條目時...\\n\\n23\\n00:02:15,120 --> 00:02:20,160\\n會發現[1] 或 其他數字\\n\\n24\\n00:02:20,200 --> 00:02:22,280\\n你一按一下這數字\\n\\n25\\n00:02:22,400 --> 00:02:26,160\\n會跳到下方的一堆文字的章節\\n\\n26\\n00:02:26,200 --> 00:02:30,920\\n淺藍色部分是你按的那段文字的參考內容或註釋,\\n\\n27\\n00:02:30,920 --> 00:02:38,880\\n便於讀者了解更多的該條目的信息。\\n\\n28\\n00:02:38,880 --> 00:02:41,880\\n而這些文字就是放在「參考文獻及註釋」的章節中\\n\\n29\\n00:02:49,480 --> 00:02:51,560\\n在維基內,連結可分為兩種\\n\\n30\\n00:02:51,560 --> 00:02:58,640\\n一種是內部連結\\n\\n31\\n00:02:58,680 --> 00:03:02,320\\n內部連結是條目中是藍色字\\n\\n32\\n00:03:02,400 --> 00:03:12,400\\n按一下藍色字,便可直接連結到該條目\\n\\n33\\n00:03:12,400 --> 00:03:18,360\\n編者也可以將它連結至其他語言\\n\\n34\\n00:03:18,520 --> 00:03:27,0\\n另外一種,是外部連結\\n\\n35\\n00:03:27,40 --> 00:03:34,240\\n一般的外部連結,是放在「外部連結」一節\\n\\n36\\n00:03:34,760 --> 00:03:44,760\\n外部連結是藍色文字及附有箭頭圖案\\n\\n37\\n00:03:44,880 --> 00:03:51,640\\n這樣便可到指定的網頁',\n", + " 'bytes': 2889,\n", + " 'sha1': 'gimmpnodjm9jlpb41lbggws90qbmldo',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100755166,\n", + " 'timestamp': '2013-07-27T10:48:04Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27450475,\n", + " 'title': '中文維基百科教學頻道第兩章.ogv.zh-cn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:19,680 --> 00:00:25,880 现在显示的是中文维基百科条目, 2 00:00:25,960 --> 00:00:31,200 用来介绍每个条目的基本格式。 3 00:...'\",\n", + " 'text': '1\\n00:00:19,680 --> 00:00:25,880\\n现在显示的是中文维基百科条目,\\n\\n2\\n00:00:25,960 --> 00:00:31,200\\n用来介绍每个条目的基本格式。\\n\\n3\\n00:00:31,200 --> 00:00:34,880\\n除了第一章提到的引言和标题外,\\n\\n4\\n00:00:34,920 --> 00:00:37,880\\n也有其他的项目\\n\\n5\\n00:00:37,920 --> 00:00:44,640\\n比如是这个消歧义(Otheruses)模板\\n\\n6\\n00:00:44,640 --> 00:00:52,680\\n消除由于一词多义做成的问题\\n\\n7\\n00:00:52,680 --> 00:00:56,800\\n另外部分条目有条目专用的模板\\n\\n8\\n00:00:56,800 --> 00:01:02,0\\n是用来提醒或警告编者、读者、管理员\\n\\n9\\n00:01:02,40 --> 00:01:08,120\\n挂起模板的条目可能存在问题或注意事项\\n\\n10\\n00:01:08,200 --> 00:01:11,720\\n各条目因不同需要有不同的排列或不同模板,如:\\n\\n11\\n00:01:11,840 --> 00:01:20,920\\n信息框模板(Infobox):\\n提供条目主要内容,为读者较快了解基本资料\\n\\n12\\n00:01:21,0 --> 00:01:25,520\\n这种模板展示持有者、始创者等资料\\n\\n13\\n00:01:25,520 --> 00:01:28,40\\n但是亦有些信息框模板是提供人物国藉等\\n\\n14\\n00:01:28,80 --> 00:01:31,720\\n视乎条目记载的是人事地或其他,便用不同模板\\n\\n15\\n00:01:33,600 --> 00:01:38,0\\n第一章提到的目录和章节出现在较长的条目\\n\\n16\\n00:01:38,40 --> 00:01:42,720\\n其实章节不单只是一级\\n\\n17\\n00:01:42,760 --> 00:01:47,560\\n还可以无限延展\\n\\n18\\n00:01:47,560 --> 00:01:52,880\\n不过一般而言,三级已经很足够\\n\\n19\\n00:01:52,880 --> 00:01:56,960\\n维基百科目录除了像书本看到多少章节外...\\n\\n20\\n00:01:56,960 --> 00:02:06,960\\n只要一按那章节,便直接到了!\\n\\n21\\n00:02:07,240 --> 00:02:12,680\\n很方便吧!\\n\\n22\\n00:02:12,680 --> 00:02:15,40\\n有时候你在阅读条目时...\\n\\n23\\n00:02:15,120 --> 00:02:20,160\\n会发现[1] 或 其他数字\\n\\n24\\n00:02:20,200 --> 00:02:22,280\\n你一单击这数字\\n\\n25\\n00:02:22,400 --> 00:02:26,160\\n会跳到下方的一堆文字的章节\\n\\n26\\n00:02:26,200 --> 00:02:30,920\\n浅蓝色部分是你按的那段文字的参考内容或注释,\\n\\n27\\n00:02:30,920 --> 00:02:38,880\\n便于读者了解更多的该条目的信息。\\n\\n28\\n00:02:38,880 --> 00:02:41,880\\n而这些文字就是放在「参考文献及注释」的章节中\\n\\n29\\n00:02:49,480 --> 00:02:51,560\\n在维基内,连结可分为两种\\n\\n30\\n00:02:51,560 --> 00:02:58,640\\n一种是内部连结\\n\\n31\\n00:02:58,680 --> 00:03:02,320\\n内部连结是条目中是蓝色字\\n\\n32\\n00:03:02,400 --> 00:03:12,400\\n单击蓝色字,便可直接连结到该条目\\n\\n33\\n00:03:12,400 --> 00:03:18,360\\n编者也可以将它链接至其他语言\\n\\n34\\n00:03:18,520 --> 00:03:27,0\\n另外一种,是外部连结\\n\\n35\\n00:03:27,40 --> 00:03:34,240\\n一般的外部连结,是放在「外部连结」一节\\n\\n36\\n00:03:34,760 --> 00:03:44,760\\n外部链接是蓝色文字及附有箭头图案\\n\\n37\\n00:03:44,880 --> 00:03:51,640\\n这样便可到指定的网页',\n", + " 'bytes': 2883,\n", + " 'sha1': 'p0zew7wz0y5t96wkyhv29z58jb22ohd',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 528349711,\n", + " 'timestamp': '2021-01-25T15:54:39Z',\n", + " 'user': {'id': 6537099, 'text': 'MiiCii'},\n", + " 'page': {'id': 27461557,\n", + " 'title': 'Anthem of the Sakha Republic.ogg.sah.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:5,500 --> 00:00:12,800\\nСахам сирэ дьоллоох тускуга\\n\\n2\\n00:00:13,300 --> 00:00:21,800\\nСаһарҕалыы ыҥыра ыллыыр,\\n\\n3\\n00:00:22,200 --> 00:00:29,400\\nИлинтэн арҕаа ол кустуга\\n\\n4\\n00:00:30,000 --> 00:00:37,800\\nАлмаас таас курдук сандаара сырдыыр.\\n\\n5\\n00:00:38,300 --> 00:00:46,000\\nБарҕа быйаҥнаах Сахам дойдута\\n\\n6\\n00:00:46,500 --> 00:00:54,500\\nМодун Россия киэн туттуута,\\n\\n7\\n00:00:55,000 --> 00:01:03,000\\nӨркөн өрөгөй тойугун туойдун,\\n\\n8\\n00:01:03,500 --> 00:01:11,000\\nҮүнэр үйэҕэ үрдүү туруохтун!\\n\\n9\\n00:01:11,500 --> 00:01:19,300\\nҮллэр үөстээх Өлүөнэ Эбэ\\n\\n10\\n00:01:20,000 --> 00:01:26,600\\nӨлбөт мэҥэ угуттуур уулаах.\\n\\n11\\n00:01:27,200 --> 00:01:34,400\\nЭлбэх омукка эрчим эбэр,\\n\\n12\\n00:01:35,000 --> 00:01:43,300\\nИли-эйэни олохтуур уохтаах.\\n\\n13\\n00:01:43,800 --> 00:01:51,400\\nБарҕа быйаҥнаах Сахам дойдута\\n\\n14\\n00:01:51,800 --> 00:01:59,800\\nМодун Россия киэн туттуута,\\n\\n15\\n00:02:00,300 --> 00:02:07,300\\nӨркөн өрөгөй тойугун туойдун,\\n\\n16\\n00:02:07,700 --> 00:02:15,100\\nҮүнэр үйэҕэ үрдүү туруохтун!\\n\\n17\\n00:02:16,800 --> 00:02:24,200\\nБарҕа быйаҥнаах Сахам дойдута,\\n\\n18\\n00:02:24,800 --> 00:02:32,500\\nАрчылыыр аар алгыһын биэрдэ\\n\\n19\\n00:02:33,000 --> 00:02:39,500\\nСахабыт сирэ дьоһун дуолан\\n\\n20\\n00:02:40,000 --> 00:02:48,200\\nСайдыы аартыгар түөрэҕэ түстэ. \\n\\n21\\n00:02:48,800 --> 00:02:56,500\\nБарҕа быйаҥнаах Сахам дойдута\\n\\n22\\n00:02:57,000 --> 00:03:04,500\\nМодун Россия киэн туттуута,\\n\\n23\\n00:03:05,000 --> 00:03:12,500\\nӨркөн өрөгөй тойугун туойдун,\\n\\n24\\n00:03:13,000 --> 00:03:24,800\\nҮүнэр үйэҕэ үрдүү туруохтун!',\n", + " 'bytes': 2071,\n", + " 'sha1': 'rfjo4pj8iuj3q68cslvboa13vrnlu0o',\n", + " 'parent_id': 100802943,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100888837,\n", + " 'timestamp': '2013-07-29T17:08:32Z',\n", + " 'user': {'id': 106171, 'text': 'Rodrigo.Argenton'},\n", + " 'page': {'id': 27484001,\n", + " 'title': 'Primeiras edições.webm.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:11,130 --> 00:00:15,150 Nas primeiras edições começaremos por negrito, selecionando o texto e clicando no botão N. 2 00:00:15,155 --> 00:00:19,105 ...'\",\n", + " 'text': '1\\n00:00:11,130 --> 00:00:15,150\\nNas primeiras edições começaremos por negrito, selecionando o texto e clicando no botão N.\\n\\n2\\n00:00:15,155 --> 00:00:19,105\\nVocês verá abaixo três opções, clico em mostrar a previsão para ver como está a sua edição.\\n\\n3\\n0:00:19,110 --> 00:00:23,000\\nPara o itálico, faço o mesmo processo, \\n\\n4\\n00:00:23,100 --> 00:00:25,170\\nseleciono o texto e clico no botão I.\\n\\n5\\n00:00:25,175 --> 00:00:28,000\\nPara inserir um ligação para outra página desta wiki, \\n\\n6\\n00:00:28,000 --> 00:00:29,000\\nseleciono o texto que quero criar a ligação,\\n\\n7\\n00:00:29,100 --> 00:00:30,000\\nclico nesta corrente, \\n\\n8\\n00:00:30,100 --> 00:00:36,170\\nverifico se a página existe e se selecionado para uma página interna\\n\\n9\\n00:00:41,140 --> 00:00:42,800\\nPara ligações externas, \\n\\n10\\n00:00:43,000 --> 00:00:45,000\\neu clico no botão link, \\n\\n11\\n00:00:45,500 --> 00:00:46,800\\ncoloco o endereço que eu quero, \\n\\n12\\n00:00:47,000 --> 00:00:47,800\\no nome que irá aparecer, \\n\\n13\\n00:00:48,000 --> 00:00:49,00\\nverifico se é um link externo\\n\\n14\\n00:00:49,000 --> 00:00:50,090\\ne clico em inserir o link.\\n\\n14\\n00:00:50,100 --> 00:00:51,100\\nAtenção à esse espaço.\\n\\n15\\n00:01:00,07 --> 00:01:02,000\\nOs botões inserem automaticamente a sintaxe,\\n\\n16\\n00:01:02,100 --> 00:01:05,000\\nno entanto, podemos fazer isso manualmente,\\n\\n17\\n00:01:06,000 --> 00:01:07,000\\ntudo o que a gente abre a gente fecha.\\n\\n18\\n00:01:08,000 --> 00:01:10,000\\nNo caso de ligações externas\\n\\n19\\n00:01:10,100 --> 00:01:12,000\\nO endereço que a gente quer\\n\\n20\\n00:01:12,100 --> 00:01:14,000\\nespaço, o nome que irá aparecer\\n\\n21\\n00:01:14:100 --> 00:01:15,000',\n", + " 'bytes': 1632,\n", + " 'sha1': 'kbj89h6w702tnz3r0kbjdovhgku71tb',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100923914,\n", + " 'timestamp': '2013-07-30T10:32:17Z',\n", + " 'user': {'id': 2742126, 'text': 'Jan Ainali (WMSE)'},\n", + " 'page': {'id': 27492350,\n", + " 'title': 'Ett filmklipp om Wikimedia Commons.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:11,220 --> 00:00:16,620 Wikimedia Commons också känt som bara Commons, är ett projekt som samlar 2 00:00:16,600 --> 00:00:23,100 bilder, ljud och vi...'\",\n", + " 'text': '1\\n00:00:11,220 --> 00:00:16,620\\nWikimedia Commons också känt som\\nbara Commons, är ett projekt som samlar\\n\\n2\\n00:00:16,600 --> 00:00:23,100\\nbilder, ljud och video och annan\\nutbildande och förklarande multimedia.\\n\\n3\\n00:00:23,590 --> 00:00:28,420\\nDet finns mer än 16 miljioner filer på\\nCommons som är fria att ladda ner. \\n\\n4\\n00:00:28,540 --> 00:00:35,610\\nDe kan användas till tidningar, webbplatser,\\naffischer, reklam, konst och mycket annat.\\n\\n5\\n00:00:38,690 --> 00:00:41,620\\nFilerna lagras på Commons \\noch kan användas fritt, \\n\\n6\\n00:00:42,140 --> 00:00:46,050\\näven för kommersiella ändamål så \\nlänge licensen är respekteras. \\n\\n7\\n00:00:47,230 --> 00:00:52,300\\nLicensen på Wikimedia den innebär att du \\när tillåten att använda, sprida, \\n\\n8\\n00:00:52,560 --> 00:00:59,310\\ngöra om, modifiera, bygga vidare och skapa \\nnya verk på de nuvarande verken, \\n\\n9\\n00:00:59,930 --> 00:01:04,130\\nså länge du anger upp upphovspersonen \\noch den korrekta licensen för verket. \\n\\n10\\n00:01:05,840 --> 00:01:10,670\\nFiler ligger i kategorier. Låt oss titta på en fil, \\nsamt vilka andra filer som ligger i samma kategori.\\n\\n11\\n00:01:15,300 --> 00:01:17,960\\nAtt hitta vad du söker, det gör du\\nenklast genom att klicka dig till kategorier,\\n\\n12\\n00:01:19,620 --> 00:01:22,660\\neller genom att nyttja de gallerier\\n som finns på Commons.\\n\\n13\\n00:01:24,830 --> 00:01:30,600\\nPå Commons kan du hitta foton, film och ljud\\ni olika gallerier som platser och landmärken, \\n\\n14\\n00:01:30,900 --> 00:01:37,470\\ndjur, växter och mineraler,\\npersoner, vardagliga saker, konstföremål.\\n\\n15\\n00:01:38,780 --> 00:01:42,440\\nÄven historiska bilder och\\ninskannade antika böcker. \\n\\n16\\n00:01:45,970 --> 00:01:49,190\\nDu kan också hitta förklaringar som \\ndiagram, grafer och kartor,\\n\\n17\\n00:01:49,350 --> 00:01:52,250\\nvideo och ljudinspelningar och\\nmycket mycket annat.\\n\\n18\\n00:01:56,460 --> 00:02:00,380\\nOm du gillar att fotografera, får du \\ngärna ladda upp dina bilder på Commons.\\n\\n19\\n00:01:59,620 --> 00:02:05,100\\n Om du gillar att illustrera, kan du\\n lägga upp dina egna diagram och animationer.\\n\\n20\\n00:02:05,980 --> 00:02:09,570\\nOm du är musiker, så kan du\\nladda upp dina inspelningar av fri musik. \\n\\n21\\n00:02:07,890 --> 00:02:18,730\\nOm du får problem så finns det en frågesida\\noch många hjälpsidor på olika språk.\\n\\n22\\n00:02:20,930 --> 00:02:24,250\\nFör att kunna ladda upp filer,\\nså måste du registrera en användare.\\n\\n23\\n00:02:24,760 --> 00:02:28,110\\nRegistreringen är gratis och enkel\\noch det behövs inte om du redan är\\n\\n24\\n00:02:28,210 --> 00:02:31,160\\nen registrerad användare på Wikipedia. \\n\\n25\\n00:02:32,860 --> 00:02:37,170\\nDu kan stödja Commons speciellt genom\\natt skänka pengar till Wikimedia Foundation.\\n\\n26\\n00:02:38,450 --> 00:02:42,650\\nEller så kan du välja att stödja Wikimedia\\nSverige, en allmännyttig ideell förening\\n\\n27\\n00:02:42,700 --> 00:02:48,080\\nsom i Sverige sprider kunskap om Commons\\noch andra Wikimedia Foundation-projekt.',\n", + " 'bytes': 2953,\n", + " 'sha1': 'l4o1w3ltnutpfjoqiiaksb7c9g7s2vs',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100927096,\n", + " 'timestamp': '2013-07-30T12:09:14Z',\n", + " 'user': {'id': 2742126, 'text': 'Jan Ainali (WMSE)'},\n", + " 'page': {'id': 27493223,\n", + " 'title': 'Ett filmklipp om Wikimedia Commons.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': \"1\\n00:00:11,220 --> 00:00:16,620\\nWikimedia Commons, also known as\\nonly Commons, a project that collects\\n\\n2\\n00:00:16,600 --> 00:00:23,100\\nimages, audio and video and other\\neducational and explanatory multimedia.\\n\\n\\n3\\n00:00:23,590 --> 00:00:28,420\\nThere are more than 16 million files on\\nCommons which are free to download.\\n\\n4\\n00:00:28,540 --> 00:00:35,610\\nThey can be used for magazines, websites,\\nposters, advertising, art and much more.\\n\\n\\n5\\n00:00:38,690 --> 00:00:41,620\\nThe files are stored on Commons\\nand can be used freely,\\n\\n6\\n00:00:42,140 --> 00:00:46,050\\neven for commercial purposes as\\nlong as the license is respected.\\n\\n7\\n00:00:47,230 --> 00:00:52,300\\nThe license on Wikimedia means that you\\nare permitted to use, distribute,\\n\\n8\\n00:00:52,560 --> 00:00:59,310\\nredo, modify, build on, and create\\nnew work on the existing work,\\n\\n9\\n00:00:59,930 --> 00:01:04,130\\nas long as you state the author\\nand the correct license for the work.\\n \\n\\n10\\n00:01:05,840 --> 00:01:10,670\\nFiles are located in categories. Let's look at a file,\\nand which other files are in the same category.\\n\\n11\\n00:01:15,300 --> 00:01:17,960\\nTo find what you seek, you can\\neasily click through categories,\\n\\n\\n12\\n00:01:19,620 --> 00:01:22,660\\nor by utilizing the galleries\\nwhich are available on Commons.\\n\\n13\\n00:01:24,830 --> 00:01:30,600\\nIn Commons, you can find photos, video and audio\\nin various galleries like sites and landmarks,\\n\\n\\n14\\n00:01:30,900 --> 00:01:37,470\\nanimals, plants and minerals;\\npeople, daily things, objects of art.\\n\\n\\n15\\n00:01:38,780 --> 00:01:42,440\\nEven historical images and\\nscanned antique books.\\n\\n\\n16\\n00:01:45,970 --> 00:01:49,190\\nYou can also find explanations to\\ncharts, graphs and maps,\\n\\n\\n17\\n00:01:49,350 --> 00:01:52,250\\nvideo and audio recordings\\nand much more.\\n\\n\\n18\\n00:01:56,460 --> 00:02:00,380\\nIf you like taking photos, you can\\nupload your photos to Commons.\\n\\n19\\n00:01:59,620 --> 00:02:05,100\\nIf you like to illustrate, you can\\nadd your own graphics and animations.\\n\\n\\n20\\n00:02:05,980 --> 00:02:09,570\\nIf you're a musician, you can\\nupload your recordings of free music.\\n\\n\\n21\\n00:02:07,890 --> 00:02:18,730\\nIf you have problems, there is a question page\\nand many help pages in different languages.\\n\\n\\n22\\n00:02:20,930 --> 00:02:24,250\\nIn order to upload files,\\nyou need to register a user.\\n\\n\\n23\\n00:02:24,760 --> 00:02:28,110\\nRegistration is free and simple\\nand it is not necessary if you are\\n\\n24\\n00:02:28,210 --> 00:02:31,160\\na registered user on Wikipedia.\\n\\n\\n25\\n00:02:32,860 --> 00:02:37,170\\nYou can support the Commons especially through\\ndonating to Wikimedia Foundation.\\n\\n\\n26\\n00:02:38,450 --> 00:02:42,650\\nOr you can choose to support Wikimedia\\nSweden, a non-profit association\\n\\n27\\n00:02:42,700 --> 00:02:48,080\\nthat in Sweden spread knowledge of Commons\\nand other Wikimedia Foundation projects.\",\n", + " 'bytes': 2793,\n", + " 'sha1': 'ra4kngb5cnfitenmn1lx9p1v0f7vbv7',\n", + " 'parent_id': 100926164,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 372192597,\n", + " 'timestamp': '2019-10-27T20:49:24Z',\n", + " 'user': {'id': 1297740, 'text': 'Snævar'},\n", + " 'page': {'id': 27494115,\n", + " 'title': 'Ladda upp en film på Commons.ogv.sv.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:12,230 --> 00:00:15,770\\nInnan du laddar upp din fil, är det viktigt\\natt det är ett filformat som fungerar på\\n\\n2\\n00:00:15,880 --> 00:00:22,860\\nWikimedia Commons. De filformat som\\nfungerar för film är .ogv och .webm. \\n\\n3\\n00:00:23,800 --> 00:00:27,140\\nNär du sett att din fil är en av dessa\\nfilformat kan du ladda upp din fil. \\n\\n4\\n00:00:28,020 --> 00:00:32,370\\nOm du vill ha hjälp med hur man\\nkonverterar, så kan du söka efter help :\\n\\n5\\n00:00:32,510 --> 00:00:38,250\\nconverting video på Wikimedia Commons\\ni sökrutan. Och där står det om hur du\\n\\n6\\n00:00:38,340 --> 00:00:44,220\\nkonverterar filmklipp.\\nTryck på Ladda upp fil, det första du ser\\n\\n7\\n00:00:44,330 --> 00:00:49,160\\när information om licensen, vilken\\ninnebär att du tillåter andra att använda,\\n\\n8\\n00:00:49,650 --> 00:00:55,680\\nsprida, göra om, modifera,och bygga\\nvidare, skapa nya verk på ditt verk så\\n\\n9\\n00:00:56,140 --> 00:01:00,480\\nlänge de anger att det är du som är\\nupphovsman eller upphovskvinna. \\n\\n10\\n00:01:01,480 --> 00:01:05,470\\nOm det känns ok, \\nkan du klicka dig vidare. \\n\\n11\\n00:01:05,980 --> 00:01:10,960\\nVälj nu mediafil att donera. \\nNär du är nöjd med de filer du laddat\\n\\n12\\n00:01:11,000 --> 00:01:14,220\\nupp, och fått ett godkändtecken, \\nkan du trycka på fortsätt. \\n\\n13\\n00:01:15,280 --> 00:01:18,600\\nHär måste du intyga att det är du som är\\nskapare av detta verk.\\n\\n14\\n00:01:19,790 --> 00:01:22,540\\nTexten om licensen kommer upp som du\\nnu godkänner. \\n\\n15\\n00:01:23,100 --> 00:01:27,030\\nDu kan läsa om vad licensen innebär\\ninnan du trycker på nästa. \\n\\n16\\n00:01:29,280 --> 00:01:33,010\\nDu får nu välja en titel, gärna en\\nbeskrivande en titel så att andra också\\n\\n17\\n00:01:33,370 --> 00:01:36,260\\nkan hitta den fantastiska fil du precis\\nladdat upp. \\n\\n18\\n00:01:36,720 --> 00:01:42,990\\nLägg gärna till en beskrivning av din fil. \\nDatumet för din fil läggs ofta till automatiskt.\\n\\n19\\n00:01:44,340 --> 00:01:47,040\\nNär du är klar med titel och beskrivning,\\ntryck på nästa. \\n\\n20\\n00:01:48,430 --> 00:01:50,710\\nHärligt! \\nTack för din uppladdning. \\n\\n21\\n00:01:51,030 --> 00:01:54,580\\nDu får nu en wikilink för att använda \\nfilmen på till exempel Wikipedia. \\n\\n22\\n00:01:55,480 --> 00:01:58,080\\nDu får även en URL för att länka till\\nfilmen på andra ställen. \\n\\n23\\n00:01:59,270 --> 00:02:02,720\\nDu kan nu trycka på din fil och nu\\nkommer du in på filens wikisida. \\n\\n24\\n00:02:03,630 --> 00:02:06,060\\nTack så mycket för att du tog dig tid.',\n", + " 'bytes': 2468,\n", + " 'sha1': 'sk9vbn0cpnqkay4u14piukz4g9xb5u1',\n", + " 'parent_id': 372192246,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 371933966,\n", + " 'timestamp': '2019-10-26T01:47:36Z',\n", + " 'user': {'id': 1297740, 'text': 'Snævar'},\n", + " 'page': {'id': 27494872,\n", + " 'title': 'Ladda upp en film på Commons.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'fix format',\n", + " 'text': \"1\\n00:00:12.230 --> 00:00:15.770\\nBefore you upload your file, it is important\\nthat it has a file format that works on\\n\\n2\\n00:00:15.880 --> 00:00:22.860\\nWikimedia Commons. The file formats\\nworks that for film is: ogv and. webm.\\n\\n3\\n00:00:23.800 --> 00:00:27.140\\nWhen you found that your file is one of these\\nfile formats, you can upload your file.\\n\\n4\\n00:00:28.020 --> 00:00:32.370\\nIf you want help with how to\\nconvert, you can search for help:\\n\\n5\\n00:00:32.510 --> 00:00:38.250\\nconverting video on Wikimedia Commons\\nin the search box. And there it states about how you\\n\\n6\\n00:00:38.340 --> 00:00:44.220\\nconvert video.\\nPress the Upload file, the first thing you see\\n\\n7\\n00:00:44.330 --> 00:00:49.160\\nis information about the license, which\\nmeans that you allow others to use,\\n\\n8\\n00:00:49.650 --> 00:00:55.680\\ndistribute, modify and build upon,\\ncreate new works based on your work \\n\\n9\\n00:00:56.140 --> 00:01:00.480\\nas long as they indicate that you are\\nthe author.\\n\\n10\\n00:01:01.480 --> 00:01:05.470\\nIf it feels ok,\\nyou can click to continue.\\n\\n11\\n00:01:05.980 --> 00:01:10.960\\nSelect your media file to donate.\\nWhen you are satisfied with the files you uploaded\\n\\n12\\n00:01:11.000 --> 00:01:14.220\\nand received an approved button,\\nyou can press continue.\\n\\n13\\n00:01:15.280 --> 00:01:18.600\\nHere you have to certify that it is you who are\\ncreator of this work.\\n\\n14\\n00:01:19.790 --> 00:01:22.540\\nThe text of the license comes up \\nfor you to agree.\\n\\n15\\n00:01:23.100 --> 00:01:27.030\\nYou can read about what the license means\\nbefore pressing next.\\n\\n16\\n00:01:29.280 --> 00:01:33.010\\nYou may now choose a title, please use a\\ndescriptive a title so that others\\n\\n17\\n00:01:33.370 --> 00:01:36.260\\ncan find the amazing file you just\\nuploaded.\\n\\n18\\n00:01:36.720 --> 00:01:42.990\\nFeel free to add a description of your file.\\nThe date of your file is often added automatically.\\n\\n19\\n00:01:44.340 --> 00:01:47.040\\nWhen you finish with the title and description,\\npress next.\\n\\n20\\n00:01:48.430 --> 00:01:50.710\\nLovely!\\nThanks for your upload.\\n\\n21\\n00:01:51.030 --> 00:01:54.580\\nYou will now have a wiklink in order to use\\nfilm on, for example Wikipedia.\\n\\n22\\n00:01:55.480 --> 00:01:58.080\\nYou also get a URL in order to link to\\nthe film from other places.\\n\\n23\\n00:01:59.270 --> 00:02:02.720\\nYou can now press on your file and now\\nyou enter the file's wiki page.\\n\\n24\\n00:02:03.630 --> 00:02:06.060\\nThanks you very much for your time.\",\n", + " 'bytes': 2396,\n", + " 'sha1': 'lzocragibfy9ps7atbrn4e2uogg6woh',\n", + " 'parent_id': 100930566,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 114017302,\n", + " 'timestamp': '2014-01-15T13:21:15Z',\n", + " 'user': {'id': 8815, 'text': 'Peter17'},\n", + " 'page': {'id': 27500334,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.fr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'typo',\n", + " 'text': \"\\n1\\n00:00:00,800 --> 00:00:03,500\\nBonjour ! Je suis Trevor, et j'aide à créer un éditeur visuel pour Wikipédia.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nN'importe qui peut modifier Wikipédia, mais ceux qui essaient sont pour la plupart facilement embrouillés.\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\nparce que l'ancien code de Wikipédia est assez difficile à comprendre.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nC'était génial quand nous l'avons créé il y a douze ans,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nmais si nous voulons obtenir la somme de toutes les connaissances humaines pour tous,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\nnous devons la rendre plus facile à partager.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nL'éditeur visuel est le plus grand changement de Wikipédia que nous ayons fait.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nIl permet d'écrire sur Wikipédia aussi facilement qu'un document pour la classe ou envoyer un courriel.\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nIl est encore un peu buggé,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nmais si vous voulez un aperçu de la façon dont Wikipédia va fonctionner dans un proche avenir,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\nCréez un compte sur la Wikipédia en anglais.\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nAllez à vos préférences, et activez la version alpha de l'éditeur visuel.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nVous pouvez même nous aider en l'utilisant et en nous envoyant des commentaires.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nAlors rejoignez-nous en rendant la somme de toutes les connaissances humaines faciles à partager.\",\n", + " 'bytes': 1545,\n", + " 'sha1': 'da9i0yqs9dz39jbm54vky4rlv0p8pi4',\n", + " 'parent_id': 114017284,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100962378,\n", + " 'timestamp': '2013-07-31T05:46:47Z',\n", + " 'user': {'id': 2264563, 'text': 'Davidricardo2003'},\n", + " 'page': {'id': 27502843,\n", + " 'title': 'Himno Universidad de Medellin.ogg.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:17,000 --> 00:00:26,400\\nLa libertad es el fruto\\nmás dulce de tus entrañas\\n\\n2\\n00:00:26,600 --> 00:00:36,800\\nLa libertad y la ciencia\\nson tus estrellas mas altas\\n\\n3\\n00:00:36,800 --> 00:00:44,400\\nLa libertad es el fruto\\nmás dulce de tus entrañas\\n\\n4\\n00:00:44,600 --> 00:00:53,800\\nLa libertad y la ciencia\\nson tus estrellas mas altas\\n\\n5\\n00:00:53,800 --> 00:01:02,800\\nCantando vamos tus hijos,\\na recibir el futuro,\\n\\n6\\n00:01:02,800 --> 00:01:12,800\\nY a repartir tus cosechas\\npor los caminos del mundo.\\n\\n7\\n00:01:12,900 --> 00:01:20,800\\nY a repartir tus cosechas\\npor los caminos del mundo.\\n\\n8\\n00:01:37,000 --> 00:01:47,400\\nLa libertad es el fruto\\nmás dulce de tus entrañas\\n\\n9\\n00:01:47,900 --> 00:01:55,800\\nLa libertad y la ciencia\\nson tus estrellas mas altas\\n\\n10\\n00:01:56,000 --> 00:02:05,400\\nLa libertad es el fruto\\nmás dulce de tus entrañas\\n\\n11\\n00:02:05,600 --> 00:02:17,800\\nLa libertad y la ciencia\\nson tus estrellas mas altas',\n", + " 'bytes': 936,\n", + " 'sha1': '72fkyh4719xcrmlcbdn9slrb3wja6ha',\n", + " 'parent_id': 100960882,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 117005769,\n", + " 'timestamp': '2014-02-22T05:56:43Z',\n", + " 'user': {'id': 2990494, 'text': 'Jianhui67'},\n", + " 'page': {'id': 27505378,\n", + " 'title': 'RMS Titanic distress signal simulated as morse code.wav.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'Reverted edits by [[Special:Contributions/76.170.84.122|76.170.84.122]] ([[User talk:76.170.84.122|talk]]) to last revision by Einottaja',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:33,000\\nSOS SOS CQD CQD - MGY We are sinking fast passengers being put into boats MGY',\n", + " 'bytes': 109,\n", + " 'sha1': '62tgba12ockos8keb0wpcb4937hbniz',\n", + " 'parent_id': 116971998,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100994063,\n", + " 'timestamp': '2013-07-31T14:44:29Z',\n", + " 'user': {'id': 2742126, 'text': 'Jan Ainali (WMSE)'},\n", + " 'page': {'id': 27507288,\n", + " 'title': 'Ett filmklipp om Wikimedia Commons.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:11,220 --> 00:00:16,620 维基资源共享只被作为一个 共享所被大家熟知。这个项目搜集 2 00:00:16,600 --> 00:00:23,100 图片,影...'\",\n", + " 'text': '1\\n00:00:11,220 --> 00:00:16,620\\n维基资源共享只被作为一个\\n共享所被大家熟知。这个项目搜集\\n\\n2\\n00:00:16,600 --> 00:00:23,100\\n图片,影音,视频和其他的\\n教育性和解释性的多媒体。\\n\\n3\\n00:00:23,590 --> 00:00:28,420\\n有超过一千六百万的文件在维基资源共享里\\n他们都是免费下载的。\\n4\\n00:00:28,540 --> 00:00:35,610\\n他们能被用在杂志,网站,\\n海报,广告,艺术和许多其他地方。 \\n5\\n00:00:38,690 --> 00:00:41,620\\n文件都贮存在维基资源共享里\\n可以免费使用,\\n6\\n00:00:42,140 --> 00:00:46,050\\n甚至作为一些商业用途\\n只要文件许可是被尊重的。\\n7\\n00:00:47,230 --> 00:00:52,300\\n在Wikimedia上的许可证意味着你\\n是允许使用,传播,\\n8\\n00:00:52,560 --> 00:00:59,310\\n重做,修改,扩大和创建\\n新的东西在原有的基础上。\\n\\n9\\n00:00:59,930 --> 00:01:04,130\\n只要你标明作者\\n和作品的正确许可。\\n\\n10\\n00:01:05,840 --> 00:01:10,670\\n文件位于不同类别中。让我们看一个文件,\\n它和其他的文件在一个类别中。\\n11\\n00:01:15,300 --> 00:01:17,960\\n想要找到你所寻找的,你\\n可以很简单的通过点击类别\\n\\n12\\n00:01:19,620 --> 00:01:22,660\\n或者使用画廊\\n在维基资源共享里可以找到\\n\\n13\\n00:01:24,830 --> 00:01:30,600\\n在维基资源共享里,你能找到照片,视频和影音\\n在不同种类的画廊里像场所,地标\\n\\n14\\n00:01:30,900 --> 00:01:37,470\\n动物,植物和矿物,\\n人物,日常事物和艺术品,\\n\\n15\\n00:01:38,780 --> 00:01:42,440\\n甚至一些历史照片和\\n扫描的古老的书籍。\\n\\n\\n16\\n00:01:45,970 --> 00:01:49,190\\n你也能找到对图片,表格\\n和地图的解释\\n\\n17\\n00:01:49,350 --> 00:01:52,250\\n视频和影音片段和\\n许多其他的东西。\\n\\n\\n18\\n00:01:56,460 --> 00:02:00,380\\n如果你爱好摄影,你可以\\n上传照片到维基资源共享。\\n\\n19\\n00:01:59,620 --> 00:02:05,100\\n如果你喜欢图解说明,你可以\\n键入你自己的图表和动画。\\n\\n\\n20\\n00:02:05,980 --> 00:02:09,570\\n如果你是歌音乐家,你可以\\n上传你免费的音乐录音。\\n\\n\\n21\\n00:02:07,890 --> 00:02:18,730\\n如果你有问题,我们有一个问题页\\n和许多不同语言的帮助页面。\\n\\n22\\n00:02:20,930 --> 00:02:24,250\\n为了能过上传文件,\\n你需要注册用户\\n\\n\\n23\\n00:02:24,760 --> 00:02:28,110\\n注册是免费的而且简单\\n你不需要注册如果你是\\n24\\n00:02:28,210 --> 00:02:31,160\\n维基百科的用户。\\n\\n\\n25\\n00:02:32,860 --> 00:02:37,170\\n你可以支持维基资源共享通过\\n给维基百科基金会捐款\\n\\n26\\n00:02:38,450 --> 00:02:42,650\\n或者你可以选择支持瑞典维基百科\\n一个非盈利性的机构\\n\\n27\\n00:02:42,700 --> 00:02:48,080\\n在瑞典传播维基资源共享的知识\\n和其他的维基百科基金会的项目。',\n", + " 'bytes': 2796,\n", + " 'sha1': 'hmtzyfu5gz4atuz4us3g9ppwy9woslw',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 100994134,\n", + " 'timestamp': '2013-07-31T14:45:35Z',\n", + " 'user': {'id': 2742126, 'text': 'Jan Ainali (WMSE)'},\n", + " 'page': {'id': 27507301,\n", + " 'title': 'Ladda upp en film på Commons.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '00:00:12.230,00:00:15.770 在上传你的文件之前,很重要的一点是 文件的格式要适合 00:00:15.880,00:00:22.860 维基资源共享。对于...'\",\n", + " 'text': '00:00:12.230,00:00:15.770 \\n在上传你的文件之前,很重要的一点是\\n文件的格式要适合\\n\\n00:00:15.880,00:00:22.860 \\n维基资源共享。对于影片的文件格式\\n是.ogv和.webm。\\n\\n00:00:23.800,00:00:27.140 \\n当你发现你的文件是这其中的一种,\\n你就可以上传文件。\\n\\n00:00:28.020,00:00:32.370 \\n如果你想要帮助如何\\n转换格式,你可以搜索帮助: \\n\\n00:00:32.510,00:00:38.250 \\n转换视频在维基资源共享\\n的搜索框内。那会教你如何\\n\\n00:00:38.340,00:00:44.220 \\n转换视频。\\n点击上传文件,你看的第一歌东西\\n\\n00:00:44.330,00:00:49.160 \\n是关于许可的信息,它\\n意味着你允许其他人使用\\n\\n00:00:49.650,00:00:55.680 \\n传播,修改和扩大,\\n创建新的东西在你的基础上\\n\\n00:00:56.140,00:01:00.480 \\n只要他们标明你就是原创者。\\n\\n00:01:01.480,00:01:05.470 \\n如果一切ok,\\n你可以点击继续。\\n\\n00:01:05.980,00:01:10.960 \\n选择你要上传的媒体文件。\\n如果你对所上传的文件感到满意\\n\\n\\n00:01:11.000,00:01:14.220 \\n并且得到一个确认按钮,\\n你可以点击继续。\\n\\n00:01:15.280,00:01:18.600 \\n这里你要证明你就是\\n作品的原创者。\\n\\n00:01:19.790,00:01:22.540 \\n许可的相关条文跳出\\n需要你的同意。\\n\\n00:01:23.100,00:01:27.030 \\n你可以阅读一下许可是什么东西\\n在你点击下一步以前\\n\\n00:01:29.280,00:01:33.010 \\n现在你可以选择一个标题,请用一个\\n描述性的标题以便其他人\\n\\n00:01:33.370,00:01:36.260 \\n能够找到完美的文件\\n你所上传的\\n\\n00:01:36.720,00:01:42.990 \\n请再加上一个对文件的描述。\\n上传文件的日期会自动生成。\\n\\n00:01:44.340,00:01:47.040 \\n当你结束了文件的标题和描述,\\n点击下一步。\\n\\n00:01:48.430,00:01:50.710 \\n太棒了!\\n谢谢你的上传。\\n\\n00:01:51.030,00:01:54.580 \\n现在你有一个维基链接方便使用\\n文件在,例如维基百科上。\\n\\n00:01:55.480,00:01:58.080\\n你也得到了一个URL能够链接\\n文件到其他的地方。\\n00:01:59.270,00:02:02.720 \\n现在你可以点击你上传的文件并且\\n可以进入文件的维基页面。\\n\\n00:02:03.630,00:02:06.060 \\n非常感谢你的时间!',\n", + " 'bytes': 2174,\n", + " 'sha1': 'bdy7pdrmr6pda4w8cddlmbvj270zg6b',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101066867,\n", + " 'timestamp': '2013-08-01T14:11:37Z',\n", + " 'user': {'text': '88.255.123.50'},\n", + " 'page': {'id': 27523514,\n", + " 'title': 'Wiki feel stupid v2.ogv.tr.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:05:00,000 Deneme sürümü v.1'\",\n", + " 'text': '1\\n00:00:00,000 --> 00:05:00,000\\nDeneme sürümü v.1',\n", + " 'bytes': 52,\n", + " 'sha1': 'hsdmjyccnxftcthjchpysjtdnndqlkk',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101067716,\n", + " 'timestamp': '2013-08-01T14:29:54Z',\n", + " 'user': {'id': 246324, 'text': 'Toliño'},\n", + " 'page': {'id': 27523889,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.gl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'tradución ao galego/Galician translation',\n", + " 'text': '\\n1\\n00:00:00,800 --> 00:00:03,500\\nOla! Son Trevor, e axudo a construír un editor visual para a Wikipedia.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nCalquera persoa pode editar a Wikipedia, pero a maioría das que o intenta confúndese facilmente\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\ndebido a que o código vello da Wikipedia é bastante difícil de entender.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nEra fantástico cando o creamos hai doce anos,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\npero se queremos reunir e ofrecer á xente a suma de todo o coñecemento humano,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\ntemos que dar máis facilidades para compartilo.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nO editor visual é o meirande cambio que fixemos na Wikipedia.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nFai que escribir na Wikipedia sexa como escribir traballo para clase ou enviar un correo electrónico.\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nAínda ten algúns erros,\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\npero se queres botarlle un ollo a como vai traballar a Wikipedia nun futuro próximo,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\ncrea unha conta na Wikipedia en inglés.\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nVai ás preferencias e activa a versión alfa do editor visual.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nMesmo podes axudarnos utilizándoo e logo enviando os teus comentarios.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nÚnete a nós para que a suma de todo o coñecemento humano sexa máis doada de compartir.',\n", + " 'bytes': 1436,\n", + " 'sha1': 'exqer0wvj226qyv7vojx3yyk6cf7vf0',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101075735,\n", + " 'timestamp': '2013-08-01T17:16:46Z',\n", + " 'user': {'text': '116.39.11.26'},\n", + " 'page': {'id': 27525676,\n", + " 'title': 'Trayvon Martin Shooting Call1.ogg.ko.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '0 00:00:00,130 --> 00:00:05,939 Dispatcher: 샌포드 경찰청 입니다 무슨일입니까? Zimmerman: 네 저기 여기 동네에, 무단으로 침입한 1 ...'\",\n", + " 'text': '0\\n00:00:00,130 --> 00:00:05,939\\nDispatcher: 샌포드 경찰청 입니다 무슨일입니까?\\nZimmerman: 네 저기 여기 동네에, 무단으로 침입한\\n\\n1\\n00:00:05,940 --> 00:00:12,490\\n사람이 보이는데 되게 의심 가거든요?\\n어,, 리트릿 뷰 서클 근처에요 음..\\n\\n2\\n00:00:12,490 --> 00:00:19,220\\n주소는 대강 리트릿 뷰 서클 111번지 쯤\\n될겁니다. 이 사람 되게 뭔가\\n\\n3\\n00:00:19,220 --> 00:00:24,659\\n뭔가 안좋아보이고, 약을 한것같기도 하구요.\\n지금 비내리고있는데 그냥 우산도 없이 걷네요.\\n\\n4\\n00:00:24,659 --> 00:00:27,589\\nDispatcher: 알겠습니다 그 사람이 백인입니까\\n\\n5\\n00:00:27,589 --> 00:00:29,749\\n흑인, 아니면 히스패닉계입니까?\\nZimmerman: 어, 흑인같아요.\\n\\n6\\n00:00:29,749 --> 00:00:34,940\\nDispatcher: 그 사람이 뭘 입었는지 보입니까?\\nZimmerman: 네. 검은색 후드티, 회색계열?\\n\\n7\\n00:00:34,940 --> 00:00:41,940\\n그리고 청바지.. 아니면 스웨트바지를 입고있구요\\n흰 테니스 운동화를 신고있네요. 이사람은.. [알아들을수 없음],\\n\\n8\\n00:00:42,090 --> 00:00:44,990\\n지금 저를 그냥 쳐다보고 있어요..\\nDispatcher: 그니까 지금 그 사람이 그 주변을\\n\\n9\\n00:00:44,990 --> 00:00:46,040\\n둘러보고 있다는 건가요?\\nZimmerman: 네 침입할 집을 찾는 것 같아요.\\n\\n10\\n00:00:46,040 --> 00:00:49,150\\nDispatcher: 알겠습니다..\\nZimmerman: 지금 저를 쳐다보고 있어요..\\n\\n11\\n00:00:49,150 --> 00:00:52,410\\nDispatcher: 네 아까 1111 번지라고 하셨나요 아님\\n111번지?\\n\\n12\\n00:00:52,410 --> 00:00:55,180\\nZimmerman: 클럽하우스에요.\\nDispatcher: 클럽하우스요? 그 사람이\\n\\n13\\n00:00:55,180 --> 00:01:00,190\\n클럽하우스 근처 정확히 어디쯤인지 말씀해주시겠습니까?\\nZimmerman: 네.. 지금 저한테 다가오는데요. \\n\\n14\\n00:01:00,190 --> 00:01:07,190\\nDispatcher: 네.\\nZimmerman: 허리띠를 손에 쥐고있어요..\\n\\n15\\n00:01:08,390 --> 00:01:11,149\\n그리고 흑인 남성이구요..\\nDispatcher: 몇살로 보이십니까?\\n\\n16\\n00:01:11,149 --> 00:01:13,819\\nZimmerman: 셔츠에는 버튼이 달려있어요,\\n아 한 10대 후반 정도?\\n\\n17\\n00:01:13,819 --> 00:01:20,819\\nDispatcher: 10대 후반, 알겠습니다.\\nZimmerman: 저 녀석 뭔가 이상해요.\\n\\n18\\n00:01:21,729 --> 00:01:23,179\\n절 보려고 다가오고있고, 손에 뭘 쥐고 있어요.\\n뭘하려고 하는건지 전혀 모르겠어요.\\n\\n19\\n00:01:23,179 --> 00:01:25,069\\nDispatcher: 뭘 하려고하는 거 같음 즉시 알려주세요.\\n알겠습니까?\\n\\n20\\n00:01:25,069 --> 00:01:29,130\\nZimmerman: 여기에 경찰관이 도착하는데\\n몇분이나 걸립니까?\\n\\n21\\n00:01:29,130 --> 00:01:36,130\\nDispatcher: 이미 한명이 그쪽으로 가고 있습니다.\\n뭘하는거같으면 즉시 알려주세요.\\n\\n22\\n00:01:36,929 --> 00:01:43,090\\nZimmerman: 예.. 이런녀석들은 항상 무언갈 갖고\\n\\n23\\n00:01:43,090 --> 00:01:50,090\\n달아나기 마련이죠. 클럽하우스에 도착하시면\\n직진해서 왼쪽으로 도세요.\\n\\n24\\n00:01:51,880 --> 00:01:56,149\\n사실 클럽하우스 좀 전쯤일 거에요\\nDispatcher: 그니까 클럽하우스 왼편이라는\\n\\n25\\n00:01:56,149 --> 00:01:59,899\\n건가요?\\nZimmerman: 아뇨, 그냥 정문 들어와서\\n\\n26\\n00:01:59,899 --> 00:02:06,849\\n왼쪽으로 도세요.. 어.. 그냥 \\n일단 들어와서는 왼편을 보세요. \\n\\n27\\n00:02:06,849 --> 00:02:10,789\\n돌지는 말구요. 젠장, 도망가잖아.\\nDispatcher: 달아납니까? 어느 길로 가는지\\n\\n28\\n00:02:10,789 --> 00:02:13,609\\n알려주실 수 있습니까?\\nZimmerman: 옆 동네로 가려고 다른 문\\n\\n29\\n00:02:13,610 --> 00:02:16,250\\n쪽 길로 가는거같아요.\\nDispatcher: 어떤 문쪽 입니까?\\n\\n30\\n00:02:16,250 --> 00:02:18,740\\nZimmerman: 뒷문이요...씨발.. [이해할 수 없음]\\n\\n31\\n00:02:18,740 --> 00:02:21,940\\nDispatcher: 지금 쫓고있습니까?\\nZimmerman: 네..\\n\\n32\\n00:02:21,940 --> 00:02:26,859\\nDispatcher: 알겠습니다. 그러실 필요는\\n없습니다.\\n\\n33\\n00:02:26,860 --> 00:02:33,310\\nZimmerman: 네.\\nDispatcher: 네, 성함이?\\n\\n34\\n00:02:33,310 --> 00:02:39,120\\nZimmerman: 조지요.....도망갔어요.\\nDispatcher: 네 조지씨, 성이?\\n\\n35\\n00:02:39,120 --> 00:02:41,700\\nZimmerman: 짐머만이요.\\n\\n36\\n00:02:41,700 --> 00:02:45,829\\nDispatcher: 네 조지씨 지금 경찰서로\\n전화하신 전화번호가 무엇이죠?\\n\\n37\\n00:02:45,830 --> 00:02:48,300\\nZimmerman: [편집됨]\\nDispatcher: 알겠습니다. 조지씨. 지금\\n\\n38\\n00:02:48,300 --> 00:02:55,300\\n우리고 같은 길로 향하고 있습니다.\\n나중에 잡았을 때 경관을 만나길 원하십니까?\\n\\n39\\n00:02:55,940 --> 00:02:58,870\\nZimmerman: 네.\\nDispatcher: 예 어디서 만나고 싶으십\\n\\n40\\n00:02:58,870 --> 00:03:03,010\\n니까?\\nZimmerman: 경관님들이 문지나 오시면,\\n\\n41\\n00:03:03,010 --> 00:03:10,010\\n클럽하우스 좀 뒤로 오라고 말씀해주세요.\\n어, 클럽하우스에서 바로 뒤,그리고 왼쪽 그리고\\n\\n42\\n00:03:12,760 --> 00:03:18,420\\n그리고 쭉가면 우체통을 지나칠 겁니다.\\n그럼 제 트럭이 보일거에요..[이해할 수 없음]\\n\\n43\\n00:03:18,420 --> 00:03:22,119\\nDispatcher: 주차되어있는 번지가 뭔지\\n아십니까?\\n\\n44\\n00:03:22,120 --> 00:03:25,490\\nZimmerman: 아뇨 여긴 지름길이라\\n모르겠어요.\\n\\n45\\n00:03:25,490 --> 00:03:29,100\\nDispatcher: 예. 그곳에 사십니까?\\nZimmerman: 네 저는..[알아들을 수 없음]\\n\\n46\\n00:03:29,100 --> 00:03:35,680\\nDispatcher: 그쪽 아파트번지좀 알려주시겠습니까?\\nZimmerman: 어, 그냥 집이에요 1950 번지.. 제길\\n\\n47\\n00:03:35,680 --> 00:03:38,660\\n계속 찾아야겠어요. 어디로 갔는지 사라졌어요.\\n\\n48\\n00:03:38,660 --> 00:03:41,530\\nDispatcher: 예 알겠습니다. 그냥 우체통\\n근처에서 경관님들이랑 만나시지 않으시겠습니까?\\n\\n49\\n00:03:41,530 --> 00:03:46,060\\nZimmerman: 네 그게 좋겠네요.\\nDispatcher: 네 알겠습니다 조지씨. 경관들에게\\n\\n50\\n00:03:46,060 --> 00:03:49,460\\n알려주겠습니다. 괜찮겠습니까?\\nZimmerman: 네.. 그냥 저한테 통화해달라고\\n\\n51\\n00:03:49,460 --> 00:03:52,670\\n말해주시면 안될까요?\\nDispatcher: 가능합니다.\\n\\n52\\n00:03:52,670 --> 00:03:54,709\\nZimmerman: 다시 전화번호 알려드릴까요?\\n\\n53\\n00:03:54,710 --> 00:03:57,450\\nDispatcher: 아뇨 번호가 [편집됨] 맞죠?\\nZimmerman: 네 맞아요.\\n\\n54\\n00:03:57,450 --> 00:04:02,480\\nDispatcher: 예 경관들이 그쪽에 도착하면\\n조지씨에게 연락하라고 알려 드리겠습니다.\\n\\n55\\n00:04:02,480 --> 00:04:03,629\\nZimmerman: 네 감사합니다.\\nDispatcher: 감사합니다.',\n", + " 'bytes': 6625,\n", + " 'sha1': '5lkkhav07pwkmyektloy2oyi78tit8h',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101385442,\n", + " 'timestamp': '2013-08-06T13:29:08Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27590991,\n", + " 'title': '中文維基百科教學頻道第四章 第一部分.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:10,160 --> 00:00:18,400\\n條目內只有文字介紹時會不夠清晰?太沈悶?\\n\\n2\\n00:00:18,400 --> 00:00:24,480\\n加入圖片(或檔案)來幫助介紹吧!\\n\\n3\\n00:00:24,480 --> 00:00:34,200\\n只要擁有帳戶和圖片符合條件,便可把圖片上傳和加入在條目!\\n\\n4\\n00:00:52,40 --> 00:00:59,320\\n我(原作者)拍攝了一張街道的圖片,擁有此圖版權\\n\\n5\\n00:00:59,320 --> 00:01:06,320\\n這圖片便可使用\"自由內容許可協議\"來發佈了\\n\\n6\\n00:01:10,360 --> 00:01:26,680\\n在維基百內的圖片,部分是以\"自由內容許可協議\"發佈\\n\\n7\\n00:01:26,840 --> 00:01:38,520\\n這張圖片是以\"創用 CC\" (常簡稱 CC,\\n Creative Commons)\\n\\n8\\n00:01:38,520 --> 00:01:51,0\\n在圖片附近註明原作者資料,你便可以在網上自由分享圖片\\n\\n9\\n00:01:51,120 --> 00:01:56,720\\n或修改圖片\\n\\n10\\n00:01:56,800 --> 00:02:04,400\\n我們也歡迎用戶將CC的圖片修改後再上傳\\n\\n11\\n00:02:34,160 --> 00:02:40,440\\n條目\"ABC電影\"需要一張圖片幫助介紹\\n\\n12\\n00:02:40,440 --> 00:02:46,920\\n雖然電影海報有版權,但沒有自由替代品協助介紹條目,\\n\\n13\\n00:02:47,80 --> 00:02:53,400\\n這是「合理使用」,允許上傳\\n\\n14\\n00:02:53,400 --> 00:02:57,360\\n但你不可以上傳整套有版權的電影\\n\\n15\\n00:02:57,360 --> 00:03:04,840\\n因為介紹可以利用海報或文字替代,不屬於「合理使用」\\n\\n16\\n00:03:08,880 --> 00:03:17,80\\n但海報不可用來介紹人物,因為可用自由版權圖片替代\\n\\n17\\n00:03:17,80 --> 00:03:23,640\\n如自己拍攝的照片',\n", + " 'bytes': 1539,\n", + " 'sha1': 'hxf4un13s7itnla9w5ecx2k669qgfxb',\n", + " 'parent_id': 101382978,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101385467,\n", + " 'timestamp': '2013-08-06T13:29:35Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27591004,\n", + " 'title': '中文維基百科教學頻道第四章 第一部分.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:10,160 - > 00:00:18,400\\n条目内只有文字介绍时会不够清晰?太沉闷?\\n\\n2\\n00:00:18,400 - > 00:00:24,480\\n加入图片(或档案)来帮助介绍吧!\\n\\n3\\n00:00:24,480 - > 00:00:34,200\\n只要拥有帐户和图片符合条件,便可把图片上传和加入在条目!\\n\\n4\\n00:00:52,40 - > 00:00:59,320\\n我(原作者)拍摄了一张街道的图片,拥有此图具有版权\\n\\n5\\n00:00:59,320 - > 00:01:06,320\\n这图片便可使用“自由内容许可协议”来发布了\\n\\n6\\n00:01:10,360 - > 00:01:26,680\\n在维基百内的图片,部分是以“自由内容许可协议”发布\\n\\n7\\n00:01:26,840 - > 00:01:38,520\\n这张图片是以“创用CC”(常简称CC,\\n\\xa0风景)\\n\\n8\\n00:01:38,520 - > 00:01:51,0\\n在图片附近注明原作者资料,你便可以在网上自由分享图片\\n\\n9\\n00:01:51,120 - > 00:01:56,720\\n或修改图片\\n\\n10\\n00:01:56,800 - > 00:02:04,400\\n我们也欢迎用户将CC的图片修改后再上传\\n\\n11\\n00:02:34,160 - > 00:02:40,440\\n条目“ABC电影”需要一张图片帮助介绍\\n\\n12\\n00:02:40,440 - > 00:02:46,920\\n虽然电影海报有版权,但没有自由替代品协助介绍条目,\\n\\n13\\n00:02:47,80 - > 00:02:53,400\\n这是「合理使用」,允许上传\\n\\n14\\n00:02:53,400 - > 00:02:57,360\\n但你不可以上传整套有版权的电影\\n\\n15\\n00:02:57,360 - > 00:03:04,840\\n因为介绍可以利用海报或文字替代,不属于“合理使用”\\n\\n16\\n00:03:08,880 - > 00:03:17,80\\n但海报不可用来介绍人物,因为可用自由版权图片替代\\n\\n17\\n00:03:17,80 - > 00:03:23,640\\n如自己拍摄的照片',\n", + " 'bytes': 1571,\n", + " 'sha1': '6g0qx4y4faegk3uynlkar0yps5rfg4w',\n", + " 'parent_id': 101383034,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101443076,\n", + " 'timestamp': '2013-08-07T10:11:18Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27602963,\n", + " 'title': '中文維基百科教學頻道第四章 第二部分.ogv.zh-hant.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:08,160 --> 00:00:17,960 條目需要圖片協助介紹而維基共享沒有相同的檔案 2 00:00:31,200 --> 00:00:46,40 你上傳的檔案將直接...'\",\n", + " 'text': '1\\n00:00:08,160 --> 00:00:17,960\\n條目需要圖片協助介紹而維基共享沒有相同的檔案\\n\\n2\\n00:00:31,200 --> 00:00:46,40\\n你上傳的檔案將直接上傳至\"維基共享\" ( Wikimedia Commons)\\n\\n3\\n00:00:46,200 --> 00:00:56,600\\n(一個維基媒體基金會的媒體檔案庫,存放檔案)\\n\\n4\\n00:00:56,600 --> 00:01:03,320\\n這頁幫助你分辦準備上傳檔案是那種版權類型\\n\\n5\\n00:01:03,320 --> 00:01:12,40\\n上半部是自由版權和公共領域\\n\\n6\\n00:01:12,240 --> 00:01:20,80\\n下半部非自由版權\\n\\n7\\n00:01:22,40 --> 00:01:36,80\\n你也可以進入維基共享(Wikimedia Commons)上傳多個檔案\\n\\n8\\n00:01:39,480 --> 00:01:49,680\\n現在我要上傳一個\\u200b\\u200b香港政府部門的徽標\\n\\n9\\n00:01:49,960 --> 00:01:54,400\\n選擇檔案\\n\\n10\\n00:01:54,600 --> 00:02:08,720\\n維基百科支援的圖片,聲音,影片檔案格式,包括:\\n\\n11\\n00:02:09,880 --> 00:02:15,920\\n下方檔案名稱(描述文件名\\u200b\\u200b)請改一個與圖片相關名稱\\n\\n12\\n00:02:15,920 --> 00:02:21,560\\n檔案描述部分必須需填寫,否則可能被刪除\\n\\n13\\n00:02:21,680 --> 00:02:29,760\\n這些都是常見填寫資料\\n\\n14\\n00:02:48,0 --> 00:02:51,320\\n填寫的例子\\n\\n15\\n00:02:58,0 --> 00:03:08,240\\n輸入檔案資料後,你必須選擇合適的授權\\n\\n16\\n00:03:08,240 --> 00:03:17,360\\n因為上傳的是標誌,將會選擇標誌的授權\\n\\n17\\n00:03:17,480 --> 00:03:23,560\\n最後按\"上載檔案\"\\n\\n18\\n00:03:24,560 --> 00:03:28,240\\n成功了\\n\\n19\\n00:03:28,240 --> 00:03:37,920\\n這便是剛才輸入的資料\\n\\n20\\n00:03:37,920 --> 00:03:52,120\\n複製檔案名稱\\n\\n21\\n00:03:52,600 --> 00:03:59,160\\n在合適的地方貼上便完成了!\\n\\n22\\n00:03:59,520 --> 00:04:08,800\\n請觀看下一章圖片插入條目的方法。',\n", + " 'bytes': 1720,\n", + " 'sha1': '8g6sr1ubvxvyyzwqw7132pgm9we28xj',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101443119,\n", + " 'timestamp': '2013-08-07T10:12:03Z',\n", + " 'user': {'id': 927874, 'text': '香港分子'},\n", + " 'page': {'id': 27602973,\n", + " 'title': '中文維基百科教學頻道第四章 第二部分.ogv.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:08,160 --> 00:00:17,960 条目需要图片协助介绍而维基共享没有相同的档案 2 00:00:31,200 --> 00:00:46,40 你上传的档案将直接...'\",\n", + " 'text': '1\\n00:00:08,160 --> 00:00:17,960\\n条目需要图片协助介绍而维基共享没有相同的档案\\n\\n2\\n00:00:31,200 --> 00:00:46,40\\n你上传的档案将直接上传至\"维基共享\" ( Wikimedia Commons) \\n\\n3\\n00:00:46,200 --> 00:00:56,600\\n(一个维基媒体基金会的媒体档案库,存放档案) \\n\\n4\\n00:00:56,600 --> 00:01:03,320\\n这页帮助你分办准备上传档案是那种版权类型\\n\\n5\\n00:01:03,320 --> 00:01:12,40\\n上半部是自由版权和公共领域\\n\\n6\\n00:01:12,240 --> 00:01:20,80\\n下半部非自由版权\\n\\n7\\n00:01:22,40 --> 00:01:36,80\\n你也可以进入维基共享(Wikimedia Commons)上传多个档案\\n\\n8\\n00:01:39,480 --> 00:01:49,680\\n现在我要上传一个香港政府部门的徽标\\n\\n9\\n00:01:49,960 --> 00:01:54,400\\n选择档案\\n\\n10\\n00:01:54,600 --> 00:02:08,720\\n维基百科支援的图片,声音,影片档案格式,包括: \\n\\n11\\n00:02:09,880 --> 00:02:15,920\\n下方档案名称(描述文件名\\u200b\\u200b)请改一个与图片相关名称\\n\\n12\\n00:02:15,920 --> 00:02:21,560\\n档案描述部分必须需填写,否则可能被删除\\n\\n13\\n00:02:21,680 --> 00:02:29,760\\n这些都是常见填写资料\\n\\n14\\n00:02:48,0 --> 00:02:51,320\\n填写的例子\\n\\n15\\n00:02:58,0 --> 00:03:08,240\\n输入档案资料后,你必须选择合适的授权\\n\\n16\\n00:03:08,240 --> 00:03:17,360\\n因为上传的是标志,将会选择标志的授权\\n\\n17\\n00:03:17,480 --> 00:03:23,560\\n最后按\"上载档案\" \\n\\n18\\n00:03:24,560 --> 00:03:28,240\\n成功了\\n\\n19\\n00:03:28,240 --> 00:03:37,920\\n这便是刚才输入的资料\\n\\n20\\n00:03:37,920 --> 00:03:52,120\\n复制档案名称\\n\\n21\\n00:03:52,600 --> 00:03:59,160\\n在合适的地方贴上便完成了! \\n\\n22\\n00:03:59,520 --> 00:04:08,800\\n请观看下一章图片插入条目的方法。',\n", + " 'bytes': 1719,\n", + " 'sha1': 'pbles7jyya5pvy44oeottcfow1g3972',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101879798,\n", + " 'timestamp': '2013-08-14T00:48:46Z',\n", + " 'user': {'id': 889002, 'text': 'Rock drum'},\n", + " 'page': {'id': 27614531,\n", + " 'title': 'Wikimedia UK Wikimania 2013 video.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Welsh',\n", + " 'text': \"1\\n00:00:19,500 --> 00:00:22,500\\nHi, my name is Jon Davies and I'm Chief Executive of Wikimedia UK.\\n\\n2\\n00:00:22,510 --> 00:00:26,000\\nI'm Jonathan Cardy and I'm the GLAM organiser for Wikimedia UK\\n\\n3\\n00:00:27,000 --> 00:00:30,000\\nMy name is Katie Chan.\\n\\n4\\n00:00:31,000 --> 00:00:35,000\\nI work for Wikimedia UK as Volunteer Support Organiser.\\n\\n5\\n00:00:36,000 --> 00:00:40,500\\nMy name's Richard Nevell and I provide office support at the Wikimedia UK offices.\\n\\n6\\n00:00:41,000 --> 00:00:45,000\\nI'm Daria Cybulska and I'm the Programme Manager at Wikimedia UK.\\n\\n7\\n00:00:46,000 --> 00:00:49,900\\nWikimedia UK's aim is to bring the volunteer community in the UK together with\\n\\n8\\n00:00:50,000 --> 00:00:54,900\\nsome of the big institutions in GLAM and education so that we can improve the whole of the projects.\\n\\n9\\n00:00:55,000 --> 00:01:01,000\\nBring in new people editing, support them, and make sure that throughout Britain,\\n\\n10\\n00:01:01,100 --> 00:01:07,000\\nWikimedia - our projects - are seen as some of the great, great sources of knowledge that they really are.\\n\\n11\\n00:01:08,000 --> 00:01:13,900\\nWikimedia UK's GLAM programe is a series of events and other collaborations\\n\\n12\\n00:01:12,000 --> 00:01:16,900\\nwith Galleries, Libraries, Archives and Museums.\\n\\n13\\n00:01:17,000 --> 00:01:24,000\\nIt's very much volunteer-led. We want the volunteers to tell us what are the sorts of subjects they're interested in,\\n\\n14\\n00:01:25,000 --> 00:01:29,900\\nwhat parts of the country they're interested in, we will then try and make sure we've got events going on in those parts\\n\\n15\\n00:01:30,000 --> 00:01:32,800\\nof the country and in those particular subject areas.\\n\\n16\\n00:01:32,900 --> 00:01:36,800\\nVolunteers are an important part of the charity, on all levels.\\n\\n17\\n00:01:37,000 --> 00:01:38,200\\nVolunteers actually inspire what I do,\\n\\n18\\n00:01:38,500 --> 00:01:42,999\\nso they provide ideas for events or reasons why they should happen.\\n\\n19\\n00:01:43,000 --> 00:01:50,900\\nI love volunteers because they are essential to our chapter, our charity; they are at the heart of everything we do.\\n\\n20\\n00:01:51,000 --> 00:01:56,900\\nOur events, and pretty much all our activities are led and done by volunteers.\\n\\n21\\n00:01:57,000 --> 00:02:00,000\\nI'm sitting here in our office in London - it's infeasibly warm.\\n\\n22\\n00:02:00,100 --> 00:02:04,800\\nFor one time in the UK we've got a proper summer, but whenever you come to London\\n\\n23\\n00:02:05,000 --> 00:02:08,900\\nwe've got a seat here for you, decent coffee (cup of tea if you want it).\\n\\n24\\n00:02:09,000 --> 00:02:14,000\\nWe welcome any Wikimedians from all over the world here; you'll get a warm welcome in our office.\\n\\n25\\n00:02:14,522 --> 00:02:18,160\\n(Welsh) I hope you're having great fun over there\\n\\n26\\n00:02:18,160 --> 00:02:22,689\\nand hope you'll have the same, if not more fun,\\n\\n27\\n00:02:22,689 --> 00:02:26,189\\nwhen you come to Wikimania in London next year.\\n\\n28\\n00:02:54,449 --> 00:02:57,821\\nHello everyone. I hope you're all enjoying Wikimania over in Hong Kong.\\n\\n29\\n00:02:57,821 --> 00:03:01,321\\nWe look forward to welcoming you here in London next year.\",\n", + " 'bytes': 3083,\n", + " 'sha1': '4yxm2zgz8uymokwc0tdwoqcvhwye9wq',\n", + " 'parent_id': 101870909,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 672073281,\n", + " 'timestamp': '2022-07-07T06:51:57Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 27622398,\n", + " 'title': 'Apollo13-wehaveaproblem.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Overall update',\n", + " 'text': \"1\\n00:00:01,821 --> 00:00:04,291\\nOkay, Houston, we've had a problem here.\\n\\n2\\n00:00:04,409 --> 00:00:06,400\\nThis is Houston. Say again, please.\\n\\n3\\n00:00:07,000 --> 00:00:08,749\\nHouston, we've had a problem.\\n\\n4\\n00:00:09,735 --> 00:00:11,805\\nWe've had a MAIN B BUS UNDERVOLT.\\n\\n5\\n00:00:12,477 --> 00:00:14,247\\nRoger. MAIN B UNDERVOLT.\\n\\n6\\n00:00:15,716 --> 00:00:18,354\\nOkay, stand by, 13. We're looking at it.\\n\\n7\\n00:00:19,727 --> 00:00:24,458\\nOkay. Right now, Houston, the voltage is—\\n\\n8\\n00:00:24,508 --> 00:00:26,165\\nis looking good, damn.\\n\\n9\\n00:00:27,518 --> 00:00:32,410\\nAnd we had a pretty large bang associated\\nwith the CAUTION AND WARNING there.\\n\\n10\\n00:00:32,906 --> 00:00:36,500\\nAnd as I recall,\\nMAIN B was the one that had\\n\\n11\\n00:00:36,527 --> 00:00:38,915\\nhad an amp spike on it once before.\\n\\n12\\n00:00:40,000 --> 00:00:41,418\\nRoger, Fred.\\n\\n13\\n00:00:42,892 --> 00:00:47,451\\nIn the interim here, we're starting to go\\nahead and button up the tunnel again.\\n\\n14\\n00:00:48,262 --> 00:00:49,530\\nRoger.\\n\\n15\\n00:00:50,525 --> 00:00:54,499\\nYes. That jolt must have rocked\\n\\n16\\n00:00:54,531 --> 00:00:58,872\\nthe sensor on—see now—O2 QUANTITY 2.\\n\\n17\\n00:00:58,931 --> 00:01:02,287\\nIt—was oscillating down\\naround 20 to 60 percent.\\n\\n18\\n00:01:02,321 --> 00:01:04,174\\nNow it's fullscale high again.\\n\\n19\\n00:01:05,003 --> 00:01:06,004\\nRoger.\\n\\n20\\n00:01:06,757 --> 00:01:09,296\\nAnd, Houston, we had\\na RESTART on our computer\\n\\n21\\n00:01:09,317 --> 00:01:12,835\\nand we had a PGNCS light\\nand the RESTART RESET.\\n\\n22\\n00:01:13,976 --> 00:01:18,530\\nRoger. RESTART and a PGNCS light.\\nRESET on a PGNCS, RESET —\\n\\n23\\n00:01:18,580 --> 00:01:24,960\\nOkay. And we're looking at our S—\\nSERVICE MODULE RCS HELIUM 1.\\n\\n24\\n00:01:25,338 --> 00:01:29,499\\nWe have—B is barber poled\\nand D is barber poled,\\n\\n25\\n00:01:30,065 --> 00:01:35,008\\nHELIUM 2, D is barber pole,\\nand SECONDARY PROPELLANTS,\\n\\n26\\n00:01:35,028 --> 00:01:39,764\\nI have A and C barber pole.\\nBMAG temperatures?\\n\\n27\\n00:01:41,725 --> 00:01:43,513\\nOkay, AC 2 is showing zip.\\n\\n28\\n00:01:43,547 --> 00:01:45,867\\nI'm going to try\\nto reconfigure on that, Jack.\\n\\n29\\n00:01:47,308 --> 00:01:48,577\\nRoger.\\n\\n30\\n00:01:49,024 --> 00:01:53,721\\nYes. We got a MAIN BUS\\nA UNDERVOLT now, too, showing.\\n\\n31\\n00:01:53,754 --> 00:01:55,274\\nMAIN A UNDERVOLT.\\n\\n32\\n00:01:57,167 --> 00:02:02,200\\nIt's reading about 25-1/2,\\nMAIN B is reading zip right now.\\n\\n33\\n00:02:03,222 --> 00:02:04,775\\nStand by 1, Jim.\\n\\n34\\n00:02:05,924 --> 00:02:07,004\\n13, Houston.\\n\\n35\\n00:02:07,024 --> 00:02:08,936\\nWe'd like you\\nto attempt to reconnect\\n\\n36\\n00:02:08,969 --> 00:02:12,826\\nfuel cell 1 to MAIN A\\nand fuel cell 3 to MAIN B.\\n\\n37\\n00:02:13,454 --> 00:02:16,359\\nVerify that quad Delta is open.\\n\\n38\\n00:02:17,500 --> 00:02:20,727\\nOkay, Houston. I'm showing—\\nI tried to reset\\n\\n39\\n00:02:20,760 --> 00:02:25,728\\nand fuel cell 1 and 3\\nare both showing gray flags,\\n\\n40\\n00:02:26,148 --> 00:02:28,826\\nbut they are both\\nshowing zip on the flows.\\n\\n41\\n00:02:29,300 --> 00:02:30,262\\nWe copy.\\n\\n42\\n00:02:31,754 --> 00:02:36,238\\n13, Houston, we'd like you\\nto open circuit fuel cell 1.\\n\\n43\\n00:02:36,271 --> 00:02:38,325\\nLeave 2 and 3 as is.\\n\\n44\\n00:02:40,243 --> 00:02:42,230\\nOkay, I'll get to work on that.\\n\\n45\\n00:02:42,279 --> 00:02:46,000\\nBut it looks to me… I'm looking out the…\\nback, we are venting something.\\n\\n46\\n00:02:47,500 --> 00:02:51,000\\nWe are… we are venting\\nsomething out the… in the rear… into space\\n\\n47\\n00:02:51,500 --> 00:02:53,087\\nRoger, we copy you're venting.\\n\\n48\\n00:02:53,696 --> 00:02:55,365\\nIt’s a gas of some sort.\",\n", + " 'bytes': 3520,\n", + " 'sha1': 'bugi40phf1oljs5xh6fneauoeh6uivl',\n", + " 'parent_id': 669228498,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101587988,\n", + " 'timestamp': '2013-08-09T20:58:36Z',\n", + " 'user': {'id': 36151, 'text': 'Abbedabb'},\n", + " 'page': {'id': 27638696,\n", + " 'title': \"Marco Mengoni - L'essenziale presentation (Italiano).ogv.de.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '[[COM:AES|←]]Created page with \\'1 00:00:00,345 --> 00:00:02,560 Hallo, Ich bin Marco Mengoni. 2 00:00:02,560 --> 00:00:06,713 Der Titel meines Lied ist \"L\\'essenziale\".\\'',\n", + " 'text': '1\\n00:00:00,345 --> 00:00:02,560\\nHallo, Ich bin Marco Mengoni.\\n\\n2\\n00:00:02,560 --> 00:00:06,713\\nDer Titel meines Lied ist\\n\"L\\'essenziale\".',\n", + " 'bytes': 136,\n", + " 'sha1': 'qwh0a67w6rbaq97eibdmsnbos870ykz',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101607863,\n", + " 'timestamp': '2013-08-10T03:31:59Z',\n", + " 'user': {'id': 2884419, 'text': 'Tim Moritz Hector (WMDE)'},\n", + " 'page': {'id': 27643808,\n", + " 'title': 'ZDFCheck so funktioniert er.ogv.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'fix',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000 \\nHow many truth is really in statements made by politicans?\\n\\n2\\n00:00:04,000 --> 00:00:10,000 \\nThe website ZDFcheck is going to check this during the election campaigns 2013.\\n\\n3\\n00:00:10,000 --> 00:00:13,000 \\nEverything begins with a checkable quote:\\n\\n4\\n00:00:13,000 --> 00:00:18,000 \\na team of ZDF-editors works behind the scenes\\n\\n5\\n00:00:18,000 --> 00:00:22,000 \\nand examines the statemens, chooses one and does the research.\\n\\n6\\n00:00:22,000 --> 00:00:26,000 \\nThe results can be seen by everybody live and transparent on http://heute.de\\n\\n7\\n00:00:26,000 --> 00:00:28,000 \\nand even participate him- or herself.\\n\\n8\\n00:00:28,000 --> 00:00:31,000 \\nEither you can contribute with concrete facts from the beginning;\\n\\n9\\n00:00:31,000 --> 00:00:35,000 \\nthe editorial team checks, and what is factually correct \\n\\n10\\n00:00:35,000 --> 00:00:37,000 \\nhas an influence on the result.\\n\\n11\\n00:00:37,000 --> 00:00:40,000 \\nIn the end it should be figured out whether the thesis is true\\n\\n12\\n00:00:40,000 --> 00:00:42,000 \\nor only partially\\n\\n13\\n00:00:42,000 --> 00:00:45,000 \\nor whether it is simply wrong.',\n", + " 'bytes': 1117,\n", + " 'sha1': 'bfasc2podoes2lc1cno04cvppxlx1pd',\n", + " 'parent_id': 101607822,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101631512,\n", + " 'timestamp': '2013-08-10T12:43:19Z',\n", + " 'user': {'id': 980266, 'text': 'TheSophera'},\n", + " 'page': {'id': 27649560,\n", + " 'title': 'George W Bush Columbia FINAL.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Splitting a couple of long lines up.',\n", + " 'text': '1\\n00:00:00,800 --> 00:00:02,800\\nMy fellow Americans,\\n\\n2\\n00:00:03,200 --> 00:00:05,800\\nThis day has brought terrible news,\\n\\n3\\n00:00:06,000 --> 00:00:09,100\\nand great sadness to our country.\\n\\n4\\n00:00:09,300 --> 00:00:11,400\\nAt 9 o\\'clock this morning,\\n\\n5\\n00:00:11,600 --> 00:00:13,700\\nMission Control in Houston\\n\\n6\\n00:00:13,800 --> 00:00:17,500\\nlost contact with our Space Shuttle Columbia.\\n\\n7\\n00:00:18,100 --> 00:00:19,700\\nA short time later,\\n\\n8\\n00:00:19,800 --> 00:00:24,000\\ndebris was seen falling from the skies above Texas.\\n\\n9\\n00:00:24,300 --> 00:00:26,400\\nThe Columbia is lost;\\n\\n10\\n00:00:26,800 --> 00:00:29,300\\nthere are no survivors.\\n\\n11\\n00:00:29,500 --> 00:00:32,100\\nOn board was a crew of seven:\\n\\n12\\n00:00:32,500 --> 00:00:34,400\\nColonel Rick Husband,\\n\\n13\\n00:00:34,500 --> 00:00:36,800\\nLt. Colonel Michael Anderson,\\n\\n14\\n00:00:36,900 --> 00:00:39,100\\nCommander Laurel Clark,\\n\\n15\\n00:00:39,300 --> 00:00:41,300\\nCaptain David Brown,\\n\\n16\\n00:00:41,400 --> 00:00:43,900\\nCommander William McCool,\\n\\n17\\n00:00:44,000 --> 00:00:46,300\\nDr. Kalpana Chawla,\\n\\n18\\n00:00:46,400 --> 00:00:48,500\\nand Ilan Ramon,\\n\\n19\\n00:00:48,600 --> 00:00:52,100\\na Colonel in the Israeli Air Force.\\n\\n20\\n00:00:52,500 --> 00:00:54,500\\nThese men and women assumed great risk\\n\\n21\\n00:00:54,600 --> 00:00:57,800\\nin the service to all humanity.\\n\\n22\\n00:00:58,200 --> 00:01:02,600\\nIn an age when space flight has come to seem almost routine,\\n\\n23\\n00:01:02,800 --> 00:01:06,500\\nit is easy to overlook the dangers of travel by rocket,\\n\\n24\\n00:01:06,600 --> 00:01:08,600\\nand the difficulties of navigating\\n\\n25\\n00:01:08,700 --> 00:01:12,000\\nthe fierce outer atmosphere of the Earth.\\n\\n26\\n00:01:12,300 --> 00:01:14,900\\nThese astronauts knew the dangers,\\n\\n27\\n00:01:15,000 --> 00:01:17,500\\nand they faced them willingly,\\n\\n28\\n00:01:17,600 --> 00:01:22,100\\nknowing they had a high and noble purpose in life.\\n\\n29\\n00:01:22,400 --> 00:01:27,000\\nBecause of their courage and daring and idealism,\\n\\n30\\n00:01:27,100 --> 00:01:29,800\\nwe will miss them all the more.\\n\\n31\\n00:01:30,400 --> 00:01:33,300\\nAll Americans today are thinking, as well,\\n\\n32\\n00:01:33,400 --> 00:01:36,100\\nof the families of these men and women\\n\\n33\\n00:01:36,200 --> 00:01:39,800\\nwho have been given this sudden shock and grief.\\n\\n34\\n00:01:40,000 --> 00:01:41,900\\nYou\\'re not alone.\\n\\n35\\n00:01:42,000 --> 00:01:44,900\\nOur entire nation grieves with you.\\n\\n36\\n00:01:45,100 --> 00:01:49,500\\nAnd those you loved will always have the respect and gratitude\\n\\n37\\n00:01:49,600 --> 00:01:51,700\\nof this country.\\n\\n38\\n00:01:52,100 --> 00:01:56,100\\nThe cause in which they died will continue.\\n\\n39\\n00:01:56,300 --> 00:02:00,900\\nMankind is led into the darkness beyond our world\\n\\n40\\n00:02:01,000 --> 00:02:03,700\\nby the inspiration of discovery\\n\\n41\\n00:02:03,800 --> 00:02:06,600\\nand the longing to understand.\\n\\n42\\n00:02:06,700 --> 00:02:08,600\\nOur journey into space\\n\\n43\\n00:02:08,700 --> 00:02:10,600\\nwill go on.\\n\\n44\\n00:02:10,800 --> 00:02:15,900\\nIn the skies today, we saw destruction and tragedy.\\n\\n45\\n00:02:16,100 --> 00:02:18,700\\nYet farther than we can see\\n\\n46\\n00:02:19,000 --> 00:02:21,500\\nthere is comfort and hope.\\n\\n47\\n00:02:21,700 --> 00:02:25,000\\nIn the words of the prophet Isaiah:\\n\\n48\\n00:02:25,200 --> 00:02:28,900\\n\"Lift your eyes and look to the heavens.\\n\\n49\\n00:02:29,000 --> 00:02:31,300\\nWho created all these?\\n\\n50\\n00:02:31,400 --> 00:02:34,900\\nHe who brings out the starry hosts one by one\\n\\n51\\n00:02:35,000 --> 00:02:38,500\\nand calls them each by name.\\n\\n52\\n00:02:38,800 --> 00:02:43,000\\nBecause of His great power and mighty strength,\\n\\n53\\n00:02:43,100 --> 00:02:45,900\\nnot one of them is missing.\"\\n\\n54\\n00:02:46,100 --> 00:02:49,300\\nThe same Creator who names the stars\\n\\n55\\n00:02:49,400 --> 00:02:51,400\\nalso knows the names\\n\\n56\\n00:02:51,500 --> 00:02:55,200\\nof the seven souls we mourn today.\\n\\n57\\n00:02:55,300 --> 00:02:57,600\\nThe crew of the shuttle Columbia\\n\\n58\\n00:02:57,700 --> 00:03:00,600\\ndid not return safely to Earth,\\n\\n59\\n00:03:00,700 --> 00:03:02,400\\nyet we can pray\\n\\n60\\n00:03:02,500 --> 00:03:05,100\\nthat all are safely home.\\n\\n61\\n00:03:05,500 --> 00:03:08,700\\nMay God bless the grieving families,\\n\\n62\\n00:03:08,800 --> 00:03:14,100\\nand may God continue to bless America.',\n", + " 'bytes': 4187,\n", + " 'sha1': 'cgcuoj3qpfp664uj8gquyn11to8u17s',\n", + " 'parent_id': 101630721,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 117167289,\n", + " 'timestamp': '2014-02-23T20:10:18Z',\n", + " 'user': {'text': '117.199.177.136'},\n", + " 'page': {'id': 27676108,\n", + " 'title': 'Community at Work.webm.es.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:34,129 --> 00:00:39,380\\nUna sexta parte de la población de Colombia vive en Bogotá, una metrópolis de alrededor de 8 millones de personas\\n\\n2\\n00:00:39,380 --> 00:00:44,090\\nque sigue creciendo con el continuo\\ny el aumento de afluencia de personas y familias\\n\\n3\\n00:00:44,090 --> 00:00:47,400\\nescapar de la pobreza y la violencia\\nde las zonas rurales.\\n\\n4\\n00:00:47,400 --> 00:00:50,950\\nPero lo que los migrantes de las zonas rurales encontrar en las grandes ciudades como Bogotá\\n\\n5\\n00:00:50,950 --> 00:00:53,720\\nes a menudo más pobreza\\ny más violencia\\n\\n6\\n00:01:19,320 --> 00:01:22,630\\nEl Gobierno de Bogotá está llevando\\n\\n7\\n00:01:22,630 --> 00:01:23,530\\na cabo un programa integral de seguridad alimentaria\\n\\n8\\n00:01:23,530 --> 00:01:26,020\\ndenominado \"Bogotá sin hambre\".\\n\\n9\\n00:01:26,020 --> 00:01:30,390\\nsta política se centra en los comedores\\ncomunitarios ubicados en áreas\\n\\n10\\n00:01:30,390 --> 00:01:34,180\\ndonde la mayoría de los pobres,\\nlos vulnerables y los marginados población.\\n\\n11\\n00:02:18,089 --> 00:02:21,349\\nMarisol Grenette,\\nun líder activo de Juan Pablo II,\\n\\n12\\n00:02:21,349 --> 00:02:24,639\\nes un ejemplo de una madre soltera\\nque salió de la pobreza.\\n\\n13\\n00:02:24,639 --> 00:02:27,599\\nElla llegó a la ciudad con el sueño\\nde una vida mejor.\\n\\n14\\n00:02:27,599 --> 00:02:30,860\\nAl principio, las cosas salieron mal\\n\\n15\\n00:03:09,389 --> 00:03:12,389\\nElla no perdió el coraje y la constancia\\n\\n16\\n00:03:12,389 --> 00:03:13,239\\nse llevó a cabo el\\n\\n17\\n00:03:13,239 --> 00:03:15,239\\nSe formó un grupo de madres jóvenes\\n\\n18\\n00:03:15,239 --> 00:03:18,239\\ny vivieron juntos, el cuidado de los demás,\\n\\n19\\n00:03:18,239 --> 00:03:21,189\\norganizaron una cocina común\\ny abrieron una guardería para sus hijos\\n\\n20\\n00:03:21,189 --> 00:03:22,189\\ny los hijos de la comunidad\\n\\n21\\n00:04:40,749 --> 00:04:44,779\\nEs entonces que llega el soporte de las entidades locales, \\ny la pequeña comunidad de ayuda recíproca,\\n\\n22\\n00:04:44,779 --> 00:04:46,249\\nse transforma en un gran centro de ayuda local, una gran comunidad de servicios\\n\\n23\\n00:04:46,249 --> 00:04:52,249\\ndonde estas mujeres manejan una biblioteca, un comedor comunitario, un centro de salud, un programa de educación, junto con el desarrollo de una habilidad de auto-empoderamiento económico.',\n", + " 'bytes': 2271,\n", + " 'sha1': 'gktk1llkygjclc9es9n9uvjm00mqqwh',\n", + " 'parent_id': 101771448,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101787675,\n", + " 'timestamp': '2013-08-12T15:54:00Z',\n", + " 'user': {'id': 2280090, 'text': 'Rahulkepapa'},\n", + " 'page': {'id': 27676135,\n", + " 'title': 'Community at Work.webm.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\n1\\n00:00:34.129 --> 00:00:39.380\\nOne sixth of Colombia\\'s population lives in Bogotá,\\na metropolis of around 8 million people\\n\\n2\\n00:00:39.380 --> 00:00:44.090\\nthat continues to grow with the continuous \\nand increasing influx of individuals and families\\n\\n3\\n00:00:44.090 --> 00:00:47.400\\nescaping poverty and violence \\nof the rural areas.\\n\\n4\\n00:00:47.400 --> 00:00:50.950\\nBut what migrants from rural areas \\nfind in big cities like Bogota \\n\\n5\\n00:00:50.950 --> 00:00:53.720\\nis often more poverty \\nand more violence\\n\\n6\\n00:01:19.320 --> 00:01:22.630\\nEl Gobierno de Bogotá está llevando\\n\\n7\\n00:01:22.630 --> 00:01:23.530\\na cabo un programa integral de seguridad alimentaria \\n\\n8\\n00:01:23.530 --> 00:01:26.020\\ndenominado \"Bogotá sin hambre\". \\n\\n9\\n00:01:26.020 --> 00:01:30.390\\nsta política se centra en los comedores \\ncomunitarios ubicados en áreas \\n\\n10\\n00:01:30.390 --> 00:01:34.180\\ndonde la mayoría de los pobres, \\nlos vulnerables y los marginados población.\\n\\n11\\n00:02:18.089 --> 00:02:21.349\\nMarisol Grenette,\\nun líder activo de Juan Pablo II,\\n\\n12\\n00:02:21.349 --> 00:02:24.639\\nes un ejemplo de una madre soltera \\nque salió de la pobreza. \\n\\n13\\n00:02:24.639 --> 00:02:27.599\\nElla llegó a la ciudad con el sueño\\nde una vida mejor. \\n\\n14\\n00:02:27.599 --> 00:02:30.860\\nAl principio, las cosas salieron mal\\n\\n15\\n00:03:09.389 --> 00:03:12.389\\nElla no perdió el coraje y la constancia\\n\\n16\\n00:03:12.389 --> 00:03:13.239\\nse llevó a cabo el\\n\\n17\\n00:03:13.239 --> 00:03:15.239\\nSe formó un grupo de madres jóvenes\\n\\n18\\n00:03:15.239 --> 00:03:18.239\\ny vivieron juntos, el cuidado de los demás,\\n\\n19\\n00:03:18.239 --> 00:03:21.189\\norganizaron una cocina común\\ny abrieron una guardería para sus hijos\\n\\n20\\n00:03:21.189 --> 00:03:22.189\\ny los hijos de la comunidad',\n", + " 'bytes': 1753,\n", + " 'sha1': 'gzb1q4hhyq634lakxyvptxzfcay3418',\n", + " 'parent_id': 101771656,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 185843168,\n", + " 'timestamp': '2016-01-28T05:41:56Z',\n", + " 'user': {'id': 774, 'text': 'HaeB'},\n", + " 'page': {'id': 27678202,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.tl.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Undo revision 185833122 by [[Special:Contributions/Riovilogdacusin|Riovilogdacusin]] ([[User talk:Riovilogdacusin|talk]])',\n", + " 'text': '\\n1\\n00:00:00,800 --> 00:00:03,500\\nMabuhay! Ako si Trevor, at tumutulong ako sa paggawa ng VisualEditor para sa Wikipedia.\\n\\n2\\n00:00:03,505 --> 00:00:07,505\\nMaaaring baguhin ninuman ang Wikipedia, ngunit madaling malito ang nakararami sa mga sumusubok nito\\n\\n3\\n00:00:07,762 --> 00:00:11,262\\ndahil mahirap maunawaan ang lumang kodigo ng Wikipedia.\\n\\n4\\n00:00:11,287 --> 00:00:14,787\\nAng ganda nito noong nilikha natin ito labindalawang taon nang nakalilipas,\\n\\n5\\n00:00:14,925 --> 00:00:16,925\\nngunit kung ipapadala natin ang kabuuan ng lahat ng kaalaman ng tao sa lahat,\\n\\n6\\n00:00:17,327 --> 00:00:19,327\\nkailangang mapadali natin ang pagpapamahagi nito.\\n\\n7\\n00:00:19,360 --> 00:00:22,360\\nAng VisualEditor ay ang pinakamalaking pagbabago sa Wikipedia na aming ginawa.\\n\\n8\\n00:00:22,604 --> 00:00:27,104\\nGinagawa nitong parang papel na isinusulat para sa klase o isang e-liham na pinapadala ang pagsusulat sa Wikipedia.\\n\\n9\\n00:00:27,196 --> 00:00:28,696\\nMay ilan pa itong kamalian (bugs),\\n\\n10\\n00:00:28,962 --> 00:00:31,962\\nngunit kung nais mong makakita sa kung paano gagana ang Wikipedia sa lalapit na panahon,\\n\\n11\\n00:00:32,207 --> 00:00:34,207\\nLumikha ng kuwenta sa Wikipedia.\\n\\n12\\n00:00:34,518 --> 00:00:38,018\\nPumunta sa inyong mga nais, at paganahin ang bersiyong Alpha ng VisualEditor.\\n\\n13\\n00:00:38,296 --> 00:00:42,296\\nMaaari mo pa kaming tulungan sa paggamit nito, tapos sa pagpapadala sa amin ng inyong mga komento.\\n\\n14\\n00:00:42,622 --> 00:00:46,122\\nKaya sige na, samahan niyo kami upang mapadali ang pagpapamahagi sa kabuuan ng lahat ng kaalaman ng tao.',\n", + " 'bytes': 1548,\n", + " 'sha1': '8wnos8we5v111vl8av65aexnamss074',\n", + " 'parent_id': 185833122,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101781698,\n", + " 'timestamp': '2013-08-12T14:06:53Z',\n", + " 'user': {'text': '81.43.119.35'},\n", + " 'page': {'id': 27679089,\n", + " 'title': 'The Impact Of Wikipedia.webm.ca.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"Una paraula en castellà s'havia escapat a l'igual que un accent :P\",\n", + " 'text': '1\\n00:00:00,000 --> 00:00:06,000\\nWikipedia no té ànim de lucre,\\nperò és la 5a web més visitada del món.\\nTots els artícles de Wikipedia\\nsón escrits per voluntaris.\\n\\n2\\n00:00:06,300 --> 00:00:11,200\\nEns agradaria presentar-te a alguns d\\'ells...\\n\\n3\\n00:00:12,000 --> 00:00:13,100\\nSóc de Nepal.\\n\\n4\\n00:00:13,100 --> 00:00:14,400\\nSóc d\\'Iraq.\\n\\n5\\n00:00:14,400 --> 00:00:15,600\\nVinc de l\\'Índia.\\n\\n6\\n00:00:15,600 --> 00:00:17,000\\nSóc de Byram, Nova Jersey.\\n\\n7\\n00:00:17,000 --> 00:00:18,300\\nVisc a Birmingham, Anglaterra.\\n\\n8\\n00:00:18,300 --> 00:00:19,600\\nChicago, Illinois.\\n\\n9\\n00:00:19,600 --> 00:00:20,650\\nLa Paz, Bolívia.\\n\\n10\\n00:00:20,650 --> 00:00:21,600\\nNairobi, Kènia.\\n\\n11\\n00:00:21,600 --> 00:00:22,600\\nKuala Lumpur, Malàsia.\\n\\n12\\n00:00:22,600 --> 00:00:23,600\\nMilan, a Itàlia.\\n\\n13\\n00:00:23,600 --> 00:00:24,500\\nSud-àfrica.\\n\\n14\\n00:00:24,500 --> 00:00:25,000\\nPolònia.\\n\\n15\\n00:00:25,000 --> 00:00:25,600\\nJapó.\\n\\n16\\n00:00:25,600 --> 00:00:26,300\\nArmènia.\\n\\n17\\n00:00:26,300 --> 00:00:26,900\\nBrasil.\\n\\n18\\n00:00:26,900 --> 00:00:27,400\\nRússia.\\n\\n19\\n00:00:27,400 --> 00:00:28,100\\nBotswana.\\n\\n20\\n00:00:28,100 --> 00:00:28,400\\nIsrael.\\n\\n21\\n00:00:28,400 --> 00:00:29,200\\nUzbekistan.\\n\\n22\\n00:00:29,200 --> 00:00:29,800\\nHong Kong.\\n\\n23\\n00:00:29,800 --> 00:00:30,500\\nIstambul.\\n\\n24\\n00:00:30,500 --> 00:00:31,200\\nMèxic.\\n\\n25\\n00:00:31,200 --> 00:00:32,400\\nChattanooga, Tennessee.\\n\\n26\\n00:00:32,900 --> 00:00:38,800\\nAl principi, quan vaig entrar a Wikipedia,\\nal 2008, vaig començar molts articles.\\n\\n27\\n00:00:38,800 --> 00:00:44,200\\nUn d\\'ells, crec que tractava\\nsobre una dona anomenada Mariam Nour. \\n\\n28\\n00:00:44,200 --> 00:00:48,000\\nNo teníem un article al respecte...\\ni aquest va ser el meu primer article.\\n\\n29\\n00:00:48,100 --> 00:00:52,700\\nI, no m\\'enrecordo bé,\\nprobablement dos o tres anys després\\n\\n30\\n00:00:52,700 --> 00:00:57,000\\nvaig passar per aquell article i vaig quedar impactada.\\n\\n31\\n00:00:57,100 --> 00:01:02,000\\nMés de 100 000 persones van llegir l\\'article,\\n\\n32\\n00:01:02,100 --> 00:01:08,000\\nel van utilitzar, van obtenir informació\\nd\\'aquell article, van passar per l\\'article,\\n\\n33\\n00:01:08,100 --> 00:01:15,100\\naleshores et dones compte de que has afectat\\ni influenciat a més de 100 000 persones.\\n\\n34\\n00:01:15,100 --> 00:01:19,200\\nEstava aterrada quan vaig prémer\\nel botó \"Editar\" per primera vegada.\\n\\n35\\n00:01:19,400 --> 00:01:24,000\\nPensava: \"Oh, déu meu, ho destroçaré tot!\\nNo pot funcionar, no puc fer-ho!\".\\n\\n36\\n00:01:24,000 --> 00:01:29,000\\nWikipedia és códi obert,\\non tots poden llançar la seva idea\\n\\n36\\n00:01:29,000 --> 00:01:34,300\\ni llavors vé algú més\\ni millora aquesta idea per fer-la magnífica.\\n\\n37\\n00:01:34,600 --> 00:01:36,700\\nHi ha milers de persones treballant \\n\\n38\\n00:01:36,700 --> 00:01:40,400\\ncada dia, cada hora, cada minut,\\na Wikipedia, per fer-la millor.\\n\\n39\\n00:01:40,400 --> 00:01:44,000\\nEn la seva majoria és voluntariat.\\nÉs una manera única de ser voluntari.\\n\\n40\\n00:01:44,000 --> 00:01:49,000\\nReuneix a professionals i aficionats\\nque senten amor per un tema concret.\\n\\n41\\n00:01:49,100 --> 00:01:53,400\\nPersones que al principi tenen\\ndiferents opinions, comencen a col·laborar.\\n\\n42\\n00:01:53,400 --> 00:01:58,800\\nMolt del que podries suposar\\nque una gran empresa d\\'Internet gestionaria\\n\\n43\\n00:01:58,800 --> 00:02:00,700\\nho gestiona voluntaris como jo.\\n\\n44\\n00:02:00,700 --> 00:02:02,500\\nSimplement no pots dir:\\n\\n45\\n00:02:02,500 --> 00:02:04,900\\n\"Escolta, jo tinc raó, tu estàs equivocat,\\naquesta és la meva versió de l\\'artcle!\".\\n\\n46\\n00:02:04,900 --> 00:02:06,800\\nSi hi ha algún problema de neutralitat,\\n\\n47\\n00:02:06,800 --> 00:02:10,500\\nprobablement algú ho haurá marcat,\\ni sinó, puc fer-ho jo ara també.\\n\\n48\\n00:02:10,500 --> 00:02:13,300\\nHi ha cents i milers de persones veient-ho\\n\\n49\\n00:02:13,300 --> 00:02:14,700\\ni corregint-ho.\\n\\n50\\n00:02:14,700 --> 00:02:16,400\\nLlavors vaig prémer el botó i...\\n\\n51\\n00:02:16,400 --> 00:02:19,000\\nPAM!, el viatge va començar, i va ser fantástic.\\n\\n52\\n00:02:19,000 --> 00:02:21,300\\nPrimer vaig començar amb \"Probabilitat\".\\n\\n53\\n00:02:21,300 --> 00:02:24,100\\nEl primer article que vaig començar amb \"Probabilitat\".\\n\\n54\\n00:02:24,100 --> 00:02:25,800\\nUn dels articles més importants\\nque vaig escriure a Wikipedia\\n\\n55\\n00:02:25,800 --> 00:02:27,300\\nva ser l\\'article sobre ferides d\\'arma blanca.\\n\\n56\\n00:02:27,300 --> 00:02:29,000\\nEscric sobre la pesca amb mosca,\\n\\n57\\n00:02:29,001 --> 00:02:32,200\\nHistòria de Montana,\\nHistòria dels Parcs Nacionals, Yellowstone...\\n\\n58\\n00:02:32,200 --> 00:02:33,500\\nCultius infrautilitzats.\\n\\n59\\n00:02:33,500 --> 00:02:34,500\\nJugadors d\\'escacs.\\n\\n60\\n00:02:34,500 --> 00:02:35,500\\nBiodiversitat. \\n\\n61\\n00:02:35,500 --> 00:02:37,000\\nHistòria militar.\\n\\n62\\n00:02:37,000 --> 00:02:38,300\\nHistòria d\\'Armènia.\\n\\n63\\n00:02:38,300 --> 00:02:39,100\\nHistòria Romana.\\n\\n64\\n00:02:39,100 --> 00:02:39,700\\nJutges.\\n\\n65\\n00:02:39,700 --> 00:02:40,700\\nComunicació.\\n\\n66\\n00:02:40,700 --> 00:02:41,400\\nBiografies.\\n\\n67\\n00:02:41,400 --> 00:02:42,100\\nFutbol.\\n\\n68\\n00:02:42,100 --> 00:02:42,800\\nIrlanda.\\n\\n69\\n00:02:42,800 --> 00:02:43,700\\nPensilvania.\\n\\n70\\n00:02:43,700 --> 00:02:44,900\\nLa majoria, fotografia.\\n\\n71\\n00:02:44,900 --> 00:02:45,600\\nPink Floyd.\\n\\n72\\n00:02:45,600 --> 00:02:47,100\\nReposteria, perque m\\'encanta fornejar.\\n\\n73\\n00:02:47,100 --> 00:02:50,200\\nArmes nuclears i radioactivitat,\\n\\n74\\n00:02:50,200 --> 00:02:52,500\\ni piragüisme en aigües braves.\\n\\n75\\n00:02:52,500 --> 00:02:56,000\\nTenims tota aquesta informació\\nallà fora, tan dispersa,\\n\\n76\\n00:02:56,000 --> 00:02:58,900\\ni nosaltres la recopilem en un lloc.\\n\\n77\\n00:02:58,900 --> 00:03:03,200\\nEstem oferint coneixement lliure per tots,\\n\\n78\\n00:03:03,600 --> 00:03:07,000\\nen la seva pròpia llengua, per que puguin utilizar-ho.\\n\\n79\\n00:03:07,501 --> 00:03:11,500\\nTots es beneficien, siguin rics o pobres.\\n\\n80\\n00:03:11,500 --> 00:03:15,500\\nLes companyies comercials tenen\\nmotivacions diferents i necessitats diferents.\\n\\n81\\n00:03:15,800 --> 00:03:22,300\\nEn la Fundació Wikimedia, no tinc salari\\ni ni tan sols carrego despeses.\\n\\n82\\n00:03:22,300 --> 00:03:25,500\\nCrec que és molt important dir-ho bastant clar:\\n\\n83\\n00:03:25,500 --> 00:03:30,500\\nQuan et demano diners, no estic demanant diners per mí;\\n\\n84\\n00:03:30,500 --> 00:03:36,000\\nt\\'estic demanant diners per la Fundació, que és el equip\\nque suporta a aquesta increïble comunitat de la que formo part.\\n\\n85\\n00:03:36,500 --> 00:03:41,600\\nCrec que Wikipedia m\\'ha donat l\\'oportunitat\\nde fer realment un món molt diferent.\\n\\n86\\n00:03:41,600 --> 00:03:47,400\\nÉs com una inversió en el teu futur,\\nen el futur dels teus fills.\\n\\n87\\n00:03:53,200 --> 00:03:56,800\\nGracies.\\n\\n88\\n00:03:59,900 --> 00:04:03,000\\nEl contingut d\\'aquest vídeo està disponible sota la llicència\\nCreative Commons Reconeixement-Compartir Igual v3.0\\n(http://creativecommons.org/licenses/by-sa/3.0/deed.ca).\\nAquest treball és obra de: Victor Grigas, Fundació Wikimedia.\\n\\nEls punts de vista i opinions expressades en aquest vídeo són responsabilitat exclusiva de les persones que apareixen en elll, i no reflexen necessariament les polítiques o la posició de cap empresa, organització, o institució de la que aquesta persona pugui formar part.\\nLes marques comercials i logotips de la Fundació Wikimedia i qualsevol altra organització no estan incloses en els termes de la llicència de Creative Commons. Les marques i logotips de Wikimedia, incloent \"Wikipedia\" i el logotip del globus trencaclosques, són marques registrades de la Fundació Wikimedia. Es pot obtenir més informació a la nostra Política de Marques http://www.wikimediafoundation.org/wiki/Trademark_Policy o escrivint a trademarks@wikimedia.org.\\n\\n89\\n00:04:03,400 --> 00:04:05,800\\nAquest vídeo s\\'ha publicat\\nsota una llicència Creative Commons.\\n\\n90\\n00:04:05,800 --> 00:04:09,000\\nCom Wikipedia, pots copiar-ho,\\nmodificar-ho i compartir-ho lliurement.',\n", + " 'bytes': 7802,\n", + " 'sha1': 'cexfy8jvavhv3hou60rshxzark8qtd6',\n", + " 'parent_id': 101781558,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101938215,\n", + " 'timestamp': '2013-08-14T20:12:41Z',\n", + " 'user': {'id': 322046, 'text': 'Llywelyn2000'},\n", + " 'page': {'id': 27700621,\n", + " 'title': 'Wikimedia UK Wikimania 2013 video.webm.cy.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'iaith',\n", + " 'text': \"1\\n00:00:19,500 --> 00:00:23,492\\nHelo. Fy enw i yw Jon Davies,\\na fi yw Prif Weithredwr Wikimedia UK.\\n\\n2\\n00:00:23,492 --> 00:00:27,302\\nJonathan Cardy ydw i, a fi yw\\ntrefnydd GLAM Wikimedia UK.\\n\\n3\\n00:00:27,302 --> 00:00:30,613\\nFy enw i yw Katie Chan.\\n\\n4\\n00:00:30,613 --> 00:00:35,292\\nRwy'n gweithio i Wikimedia UK fel\\nTrefnydd Cymorth Gwirfoddolwyr.\\n\\n5\\n00:00:35,291 --> 00:00:41,186\\nRichard Nevell yw fy enw i, ac rwy'n\\ngynorthwyo gwaith swyddfeydd Wikimedia UK.\\n\\n6\\n00:00:41,218 --> 00:00:45,565\\nDaria Cybulska ydw i, a fi yw\\nRheolwr Rhaglenni Wikimedia UK.\\n\\n7\\n00:00:46,186 --> 00:00:49,797\\nNod Wikimedia UK yw dod a chymunedau\\ngwirfoddol y DU gyda'i gilydd\\n\\n8\\n00:00:49,797 --> 00:00:53,710\\ni gyd-weithio efo sefydliadau mawr\\nyn GLAM ac yn addysg\\n\\n9\\n00:00:53,709 --> 00:00:59,013\\ner mwyn gwella'r holl brosiectau\\nwrth annog a chefnogi pobl newydd i olygu\\n\\n10\\n00:00:59,014 --> 00:01:03,363\\nac i sicrhau, ledled Prydain,\\nbod prosiectau Wikimedia\\n\\n11\\n00:01:03,363 --> 00:01:07,371\\nyn cael eu hadnabod fel yr adnoddau enfawr\\no wybodaeth yr ydynt.\\n\\n12\\n00:01:07,829 --> 00:01:13,472\\nMae rhaglen GLAM Wikimedia UK\\nyn gyfres o ddigwyddiadau a phrosiectau\\n\\n13\\n00:01:13,472 --> 00:01:17,255\\nar y cyd gyda galerïau, llyfrgelloedd,\\narchifau ac amgueddfeydd (GLAM).\\n\\n14\\n00:01:17,255 --> 00:01:22,438\\nY gwirfoddolwyr sy'n arwain.\\nRydym eisiau iddyn nhw ddweud wrthym ni\\n\\n15\\n00:01:22,438 --> 00:01:27,078\\ny math o bynciau sydd yn eu diddori nhw\\na pha rannau o wledydd Prydain mae ganddyn nhw ddiddordeb.\\n\\n16\\n00:01:27,078 --> 00:01:32,475\\nByddwn yna'n ceisio sicrhau bod digwyddiadau\\nyn y rhan honno o'r wlad ac yn y meysydd y dymunwch.\\n\\n17\\n00:01:32,475 --> 00:01:36,375\\nMae gwirfoddolwyr yn rhan bwysig o'r elusen ar bob lefel.\\n\\n18\\n00:01:36,886 --> 00:01:39,580\\nY gwirfoddolwyr sy'n ysbrydoli'r hyn rwyf i'n ei wneud\\n\\n19\\n00:01:39,580 --> 00:01:43,632\\nac maen nhw'n cyfrannu syniadau ar gyfer digwyddiadau\\na'r rhesymau pam ddylent ddigwydd.\\n\\n20\\n00:01:43,632 --> 00:01:47,919\\nDw i'n caru'r gwirfoddolwyr gan eu bod\\nyn hanfodol i'n gwaith, ein helusen.\\n\\n21\\n00:01:47,919 --> 00:01:51,303\\nNhw sydd wrth galon popeth rydym yn ei wneud.\\n\\n22\\n00:01:51,303 --> 00:01:57,045\\nGwirfoddolwyr sy'n arwain bron pob un\\no'n digwyddiadau a'n gweithgareddau.\\n\\n23\\n00:01:57,045 --> 00:02:00,240\\nRwy'n eistedd yma yn ein swyddfa yn Llundain -\\nmae'n boeth dros ben,\\n\\n24\\n00:02:00,240 --> 00:02:05,089\\nAm unwaith yn y DU mae gennym haf go iawn -\\nond pryd bynnag y dewch i Lundain\\n\\n25\\n00:02:05,089 --> 00:02:08,861\\nmae gennym gadair yma i chi, coffi da,\\nneu de os oes well gennych chi.\\n\\n26\\n00:02:08,861 --> 00:02:12,195\\nRydym yn croesawu pob Wikimediwr\\no bob cwr o'r byd yma;\\n\\n27\\n00:02:12,195 --> 00:02:13,950\\nCewch groeso cynnes yn ein swyddfa.\\n\\n28\\n00:02:14,522 --> 00:02:18,160\\nDwi'n gobeithio'ch bod chi'n\\ncael andros o hwyl acw\\n\\n29\\n00:02:18,160 --> 00:02:22,689\\na gobeithio y cewch chi'r un faint\\no hwyl, os nad mwy\\n\\n30\\n00:02:22,689 --> 00:02:26,189\\npan ddewch i i Lundain\\ni'r Wikimania y flwyddyn nesaf.\\n\\n31\\n00:02:54,449 --> 00:02:57,821\\nHelo pawb. Rwy'n gobeithio'ch bod chi i gyd\\nyn mwynhau Wikimania draw yn Hong Kong.\\n\\n32\\n00:02:57,821 --> 00:03:01,321\\nEdrychwn ymlaen at eich croesawu\\nyma yn Llundain y flwyddyn nesaf.\",\n", + " 'bytes': 3183,\n", + " 'sha1': 'du849h49jzexp0xqszagpgapzh4wdh0',\n", + " 'parent_id': 101870452,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 101936569,\n", + " 'timestamp': '2013-08-14T19:44:12Z',\n", + " 'user': {'id': 322046, 'text': 'Llywelyn2000'},\n", + " 'page': {'id': 27701482,\n", + " 'title': '¿Qué es Wikipedia?.ogv.cy.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'iaith',\n", + " 'text': '1\\n00:00:04,730 --> 00:00:05,500\\nHelo!\\n\\n2\\n00:00:05,579 --> 00:00:07,683\\nFy enw i yw Marina a hoffwn ddweud wrthoch chi am Wicipedia.\\n\\n3\\n00:00:07,675 --> 00:00:09,855\\nRwy\\'n siŵr eich bod yn ymwybodol ohono ac yn ei ddefnyddio.\\n\\n4\\n00:00:09,863 --> 00:00:13,112\\nOnd ydych chi\\'n gwybod ei gwir ystyr a phwrpas a sut mae\\'n cael ei greu?\\n\\n5\\n00:00:13,360 --> 00:00:16,238\\nEr ei fod yn edrych fel gwyddoniadur gwahanol,\\n\\n6\\n00:00:16,238 --> 00:00:18,786\\nmae\\'n rhannu\\'r un nod a gwyddoniaduron traddodiadol:\\n\\n7\\n00:00:18,786 --> 00:00:22,445\\n\"Dod a holl wybodaeth y byd ynghyd mewn dull systematig\".\\n\\n8\\n00:00:22,707 --> 00:00:25,442\\nFodd bynnag, mae gan Wicipedia rhai gwahaniaethau pwysig\\n\\n9\\n00:00:25,442 --> 00:00:27,378\\no\\'i gymharu â gwyddoniaduron traddodiadol.\\n\\n10\\n00:00:27,626 --> 00:00:31,743\\nEr enghraifft, mae\\'n cael ei ddatblygu gan filoedd o wirfoddolwyr\\n\\n11\\n00:00:31,743 --> 00:00:35,355\\ngyda\\'r bwriad o wneud gwybodaeth ar gael i bob person ar y blaned,\\n\\n12\\n00:00:35,355 --> 00:00:36,569\\nyn eu hiaith eu hunain.\\n\\n13\\n00:00:36,831 --> 00:00:37,840\\nSut mae cyflawni hyn?\\n\\n14\\n00:00:38,229 --> 00:00:41,856\\nPa reolau sy\\'n cadw trefn ar, ac yn arwain \\'\\'wicipedwyr\\'\\'?\\n\\n15\\n00:00:41,856 --> 00:00:43,769\\nDyna yw testun y fideo yma.\\n\\n16\\n00:00:49,000 --> 00:00:52,800\\nGall unrhyw un ychwanegu neu gywiro cynnwys Wicipedia\\n\\n17\\n00:00:52,900 --> 00:00:55,800\\nond mae\\'n rhaid cydnabod mai gwyddoniadur ydyw o hyd,\\n\\n18\\n00:00:55,792 --> 00:00:59,738\\nfelly ni dderbynnir ymchwil na thraethodau gwreiddiol yma.\\n\\n19\\n00:00:59,746 --> 00:01:02,389\\nRhaid i erthyglau gyfleu diddordeb cyffredin,\\n\\n20\\n00:01:02,389 --> 00:01:05,572\\na dylant osgoi gwybodaeth ddarfodedig - gwybodaeth dros dro.\\n\\n21\\n00:01:05,572 --> 00:01:07,342\\nDyna yw\\'r rheol gyntaf oll,\\n\\n22\\n00:01:07,342 --> 00:01:08,794\\nneu, fel y caiff ei alw gan Wicipedwyr,\\n\\n23\\n00:01:08,794 --> 00:01:12,009\\n\"Y Golofn Cyntaf\" yn y modd mae\\'r gwyddoniadur hwn yn gweithio.\\n\\n24\\n00:01:13,100 --> 00:01:15,855\\nMae llawer o wirfoddolwyr yn ysgrifennu i\\'r gwyddoniadur hwn.\\n\\n25\\n00:01:15,855 --> 00:01:18,094\\nPobl o gefndiroedd gwahanol,\\n\\n26\\n00:01:18,094 --> 00:01:19,015\\ngydag amrywiaeth o gredoau,\\n\\n27\\n00:01:19,015 --> 00:01:20,365\\na gyda syniadau gwahanol.\\n\\n28\\n00:01:20,900 --> 00:01:24,900\\nNi ddylai Wicipedia goleddu safbwynt fel un ei hun;\\n\\n29\\n00:01:25,150 --> 00:01:28,650\\nond dylai wneud ymdrech i gynnwys yr holl safbwyntiau posib.\\n\\n30\\n00:01:28,900 --> 00:01:31,487\\nDyna pam yr enwir yr ail golofn yn\\n\\n31\\n00:01:31,487 --> 00:01:33,487\\n\"Safbwynt Diduedd\".\\n\\n32\\n00:01:35,000 --> 00:01:38,321\\nMae\\'r trydedd golofn yn dangos bod cynnwys Wicipedia am ddim.\\n\\n33\\n00:01:38,527 --> 00:01:42,060\\nMae\\'r testunau ar gael i\\'w defnyddio, eu newid, a\\'u dosbarthu ar gyfer unrhyw bwrpas,\\n\\n34\\n00:01:42,060 --> 00:01:44,186\\ncyn belled a bod y ffynhonnell yn cael ei phriodoli\\'n gywir\\n\\n35\\n00:01:44,186 --> 00:01:46,164\\na bod yr un drwydded hawlfraint \"Creative Commons\" yn cael ei chadw.\\n\\n36\\n00:01:46,350 --> 00:01:49,600\\nGall trwyddedu amrywio o ran delweddau\\n\\n37\\n00:01:49,850 --> 00:01:52,600\\nond caniateir copio ac ail-ddefnyddio o hyd.\\n\\n38\\n00:01:53,300 --> 00:01:56,300\\nYn yr achosion hyn, dylai pob trwydded berthnasol gael ei darllen\\n\\n39\\n00:01:56,300 --> 00:01:58,500\\ner mwyn deall ystod rhyddid y drwydded ayb.\\n\\n40\\n00:02:01,500 --> 00:02:04,300\\nGall rhyngweithio rhwng cymaint o bobl achosi dadlau.\\n\\n41\\n00:02:04,550 --> 00:02:08,650\\nFelly, y bedwaredd Golofn yw y dylai defnyddwyr fod yn barchus o\\'i gilydd,\\n\\n42\\n00:02:08,650 --> 00:02:10,200\\na thybio ewyllys da pob tro.\\n\\n43\\n00:02:10,200 --> 00:02:13,900\\nMae goddefgarwch a boneddigeiddrwydd yn sylfaenol i\\'r prosiect.\\n\\n44\\n00:02:16,800 --> 00:02:19,500\\nDoes gan Wicipedia ddim rheolau cadarn.\\n\\n45\\n00:02:19,579 --> 00:02:20,889\\nA gall hyn ymddangos yn od!\\n\\n46\\n00:02:20,897 --> 00:02:23,309\\nDyma yw pumed Golofn y gwyddoniadur hwn.\\n\\n47\\n00:02:23,309 --> 00:02:26,664\\nEr mwyn i chi gymryd rhan, dim ond synnwyr cyffredin\\n\\n48\\n00:02:26,664 --> 00:02:30,082\\na pharch tuag at Wicipediaid eraill sydd eu hangen ar yr anturiaeth!\\n\\n49\\n00:02:30,450 --> 00:02:32,500\\nGall pawb gyfrannu rhywbeth.\\n\\n50\\n00:02:32,750 --> 00:02:34,750\\nMae rhai pobl yn datblygu erthyglau cymhleth a chyflawn\\n\\n51\\n00:02:34,750 --> 00:02:37,300\\ntra bod eraill yn cywiro gwallau sillafu bychan.\\n\\n52\\n00:02:37,300 --> 00:02:40,000\\nGallwch hefyd helpu wrth greu, golygu a chywiro erthyglau.\\n\\n53\\n00:02:40,780 --> 00:02:42,296\\nMae\\'n bosib dadwneud golygiadau.\\n\\n54\\n00:02:42,296 --> 00:02:46,425\\nFelly os ydych yn gwneud rhywbeth yn anghywir mae\\'n bosib dychwelyd at y fersiwn blaenorol.\\n\\n55\\n00:02:46,425 --> 00:02:48,625\\nByddwch yn ddewr! Byddwch yn Wicipediad!',\n", + " 'bytes': 4587,\n", + " 'sha1': 'evyz9im1sutbatyaazdx9mixite6g85',\n", + " 'parent_id': 101875090,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 125718579,\n", + " 'timestamp': '2014-06-04T01:16:48Z',\n", + " 'user': {'id': 1216133, 'text': 'Champion'},\n", + " 'page': {'id': 27710613,\n", + " 'title': 'National Banner Song.ogg.zh-tw.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'oops again',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\n山川壯麗,物產豐隆\\n\\n2\\n00:00:04,100 --> 00:00:09,000\\n炎黃世胄,東亞稱雄\\n\\n3\\n00:00:09,100 --> 00:00:14,000\\n毋自暴自棄,毋故步自封\\n\\n4\\n00:00:14,100 --> 00:00:19,000\\n光我民族,促進大同\\n\\n5\\n00:00:19,100 --> 00:00:24,000\\n創業維艱,緬懷諸先烈\\n\\n6\\n00:00:24,100 --> 00:00:29,000\\n守成不易,莫徒務近功\\n\\n7\\n00:00:29,100 --> 00:00:34,000\\n同心同德,貫徹始終\\n\\n8\\n00:00:34,100 --> 00:00:38,000\\n青天白日滿地紅\\n\\n9\\n00:00:38,100 --> 00:00:43,000\\n同心同德,貫徹始終\\n\\n10\\n00:00:43,100 --> 00:00:53,000\\n青天白日滿地紅',\n", + " 'bytes': 609,\n", + " 'sha1': '2h1095r9geez1p7z3a363aoo6fnv20t',\n", + " 'parent_id': 125718564,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601135613,\n", + " 'timestamp': '2021-10-22T15:14:02Z',\n", + " 'user': {'id': 4008733, 'text': 'JhsBot'},\n", + " 'page': {'id': 27724050,\n", + " 'title': 'South African national anthem.oga.zu.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'JhsBot moved page [[TimedText:South Africa National Anthem.ogg.zu.srt]] to [[TimedText:South African national anthem.oga.zu.srt]] without leaving a redirect: Moved because the [[File:South African national anthem.oga|file it belongs to]] was moved',\n", + " 'text': '1\\n00:00:16,000 --> 00:00:21,400\\nYizwa imithandazo yethu,\\n\\n2\\n00:00:22,600 --> 00:00:34,000\\nNkosi sikelela, thina lusapho lwayo.',\n", + " 'bytes': 126,\n", + " 'sha1': 'sjantfojo19o6v8dagarxpm2tfgt67i',\n", + " 'parent_id': 101980317,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 262942878,\n", + " 'timestamp': '2017-10-15T08:42:41Z',\n", + " 'user': {'id': 1547075, 'text': 'Illegitimate Barrister'},\n", + " 'page': {'id': 27724051,\n", + " 'title': 'South Africa National Anthem.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:03,000 --> 00:00:09,000\\nLord bless Africa\\n\\n2\\n00:00:9,000 --> 00:00:15,000\\nMay her glory be lifted high,\\n\\n3\\n00:00:15,000 --> 00:00:21,400\\nHear our prayers\\n\\n4\\n00:00:21,600 --> 00:00:34,000\\nLord bless us, your children.\\n\\n5\\n00:00:34,500 --> 00:00:41,400\\nIntervene and end all conflicts,\\n\\n6\\n00:00:41,400 --> 00:00:46,000\\nprotect us, Protect our nation,\\n\\n7\\n00:00:46,000 --> 00:00:59,000\\nLord we ask your to protect our nation,\\n\\n8\\n00:00:59,000 --> 00:01:10,000\\nProtect South Africa, South Africa.\\n\\n9\\n00:01:10,000 --> 00:01:17,000\\nOut of the blue of our heavens,\\n\\n10\\n00:01:17,000 --> 00:01:23,000\\nOut of the depths of our seas,\\n\\n11\\n00:01:23,000 --> 00:01:29,000\\nOver everlasting mountains,\\n\\n12\\n00:01:29,000 --> 00:01:35,000\\nhere the echoing crags resound!\\n\\n13\\n00:01:35,000 --> 00:01:41,400\\nSounds the call to come together,\\n\\n14\\n00:01:41,600 --> 00:01:47,000\\nAnd united we shall stand,\\n\\n15\\n00:01:47,000 --> 00:01:54,000\\nLet us live and strive for freedom\\n\\n16\\n00:01:54,000 --> 00:02:00,000\\nIn South Africa our land.',\n", + " 'bytes': 1013,\n", + " 'sha1': '61v5sl84uoek606efs16m62sp84c8y0',\n", + " 'parent_id': 161926198,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 601135593,\n", + " 'timestamp': '2021-10-22T15:13:58Z',\n", + " 'user': {'id': 4008733, 'text': 'JhsBot'},\n", + " 'page': {'id': 27724053,\n", + " 'title': 'South African national anthem.oga.st.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'JhsBot moved page [[TimedText:South Africa National Anthem.ogg.st.srt]] to [[TimedText:South African national anthem.oga.st.srt]] without leaving a redirect: Moved because the [[File:South African national anthem.oga|file it belongs to]] was moved',\n", + " 'text': '1\\n00:00:35,000 --> 00:00:41,400\\nMorena boloka setjhaba sa heso,\\n\\n2\\n00:00:41,000 --> 00:00:46,000\\nO fedise dintwa le matshwenyeho,\\n\\n3\\n00:00:46,000 --> 00:00:59,000\\nO se boloke, O se boloke setjhaba sa heso,\\n\\n4\\n00:00:59,000 --> 00:01:10,000\\nSetjhaba sa, South Afrika — South Afrika.',\n", + " 'bytes': 282,\n", + " 'sha1': 'qxxr2jtr50w6xafjzu60zf3vqweft79',\n", + " 'parent_id': 251711241,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 103517790,\n", + " 'timestamp': '2013-09-05T15:00:26Z',\n", + " 'user': {'id': 1004995, 'text': 'Cymrodor'},\n", + " 'page': {'id': 27730864,\n", + " 'title': 'Wikimedia Italia - WikiGuida 2 - Commons.ogv.cy.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:11,136 --> 00:00:14,013\\nMae Wikimedia Commons, neu jyst \"Commons\",\\n\\n2\\n00:00:14,013 --> 00:00:17,543\\nyn brosiect sy\\'n casglu delweddau, seiniau, fideos\\n\\n3\\n00:00:17,544 --> 00:00:21,599\\nac adnoddau aml-gyfryngol eraill sy\\'n egluro neu\\'n addysgu.\\n\\n4\\n00:00:22,269 --> 00:00:26,310\\nMae\\'r ffeiliau yma yn Commons ar gael i\\'w defnyddio yn rhydd ac am ddim\\n\\n5\\n00:00:26,310 --> 00:00:30,510\\na hefyd ar gyfer pwrpasau masnachol, cyn belled bod defnyddwyr yn cadw i\\'r amodau.\\n\\n6\\n00:00:31,933 --> 00:00:34,975\\nGanwyd Commons yn 2004, yn chwaer-brosiect i Wikipedia,\\n\\n7\\n00:00:34,975 --> 00:00:38,430\\nfel ystorfa gyffredin ar gyfer nifer prosiectau\\'r Wikimedia Foundation,\\n\\n8\\n00:00:38,430 --> 00:00:42,243\\nac yna ddatblygodd fel prosiect annibynnol gyda chanllawiau ei hun.\\n\\n9\\n00:00:42,334 --> 00:00:49,126\\nYn Commons, gallwch ddod o hyd i luniau o leoedd a thirnodau, anifeiliaid, planhigion a mwynau.\\n\\n10\\n00:00:49,702 --> 00:00:53,202\\nHefyd lluniau o bobl, gwrthrychau pob dydd a darnau o gelf.\\n\\n11\\n00:00:53,518 --> 00:00:58,043\\nMae hefyd lluniau a recordiadau hanesyddol a chopiau o lyfrau hynafol wedi\\'u sganio.\\n\\n12\\n00:00:58,485 --> 00:01:04,492\\nMae cynlluniau, diagramau, graffiau, mapiau, recordiadau fideo a sain,\\n\\n13\\n00:01:04,492 --> 00:01:06,214\\na llawer mwy yma hefyd.\\n\\n14\\n00:01:06,519 --> 00:01:10,614\\nMae\\'r hawlfreintiau ar rhai o\\'r ffeiliau wedi dod i ben\\n\\n15\\n00:01:10,613 --> 00:01:16,113\\ntra bod yr awduron neu\\'r hawlfreintwyr wedi rhoi caniatad i\\'w deunydd cael ei ddefnyddio\\n\\n16\\n00:01:16,114 --> 00:01:18,864\\ndan rhai amodau syml, megis cydnabyddiaeth\\n\\n17\\n00:01:18,864 --> 00:01:24,308\\nneu fod gwaith deilliadol yn cael ei ryddhau dan yr un amodau.\\n\\n18\\n00:01:24,729 --> 00:01:28,578\\nMae dros 7 miliwn o adnoddau yn Commons, ar gael i\\'w lawrlwytho\\n\\n19\\n00:01:28,578 --> 00:01:34,238\\na\\'i defnyddio ar gyfer traethodau, gwefannau, posteri, hysbysebion, gwaith celf...\\n\\n20\\n00:01:35,834 --> 00:01:41,378\\nGellir cynnwys adnoddau o Commons yn uniongyrchol mewn tudalennau Wicipedia\\n\\n21\\n00:01:41,378 --> 00:01:46,106\\nac unrhyw brosiect Wikimedia, cyn belled bod canllawiau\\'r prosiect penodol,\\n\\n22\\n00:01:46,106 --> 00:01:49,701\\ndisgwyliadau cymuned yr iaith iddo gael ei ddefnyddio ynddo\\n\\n23\\n00:01:49,701 --> 00:01:53,626\\nac unrhyw gyfreithiau perthnasol yn y wlad ble\\'r tarddwyd y cynnwys yn cael eu dilyn.\\n\\n24\\n00:01:53,849 --> 00:01:57,174\\nMae gan bob ffeil yn Commons tudalen wiki ei hun.\\n\\n25\\n00:01:57,563 --> 00:02:01,428\\nYn gyntaf mae\\'r teitl ac yna\\'r adnodd aml-gyfrwng neu ragolwg ohono,\\n\\n26\\n00:02:01,428 --> 00:02:03,528\\nfel yn achos lluniau mawr iawn.\\n\\n27\\n00:02:04,079 --> 00:02:07,785\\nMae wedyn disgrifiad o\\'r adnodd (yn aml yn amlieithog)\\n\\n28\\n00:02:07,785 --> 00:02:12,666\\na\\'r holl wybodaeth am yr adnodd, yr awdur, y dyddiad a\\'r termau defnydd.\\n\\n29\\n00:02:13,079 --> 00:02:16,968\\nMae hanes y ffeil yn rhestru\\'r holl newidiadau sy\\'n bodoli.\\n\\n30\\n00:02:17,056 --> 00:02:21,256\\nMae\\'n bosib newid a gwella ffeiliau wedi\\'i uwchlwytho gan ddefnyddwyr eraill.\\n\\n31\\n00:02:21,825 --> 00:02:24,603\\nHefyd, mae rhestr o\\'r tudalennau yn Commons\\n\\n32\\n00:02:24,603 --> 00:02:28,175\\na phrosiectau eraill y Wikimedia Foundation sydd yn cysylltu i\\'r adnodd\\n\\n33\\n00:02:28,175 --> 00:02:29,722\\nneu yn ei mewnosod.\\n\\n34\\n00:02:30,190 --> 00:02:35,190\\nAr waelod y dudalen mae\\'r categoriau ble mae\\'r adnodd wedi ei gatalogio.\\n\\n35\\n00:02:35,556 --> 00:02:38,294\\nMae\\'r categoriau mewn Saesneg safonol\\n\\n36\\n00:02:38,294 --> 00:02:41,794\\nond dylai dealltwriaeth fras o\\'r iaith fod yn ddigon i\\'w deall.\\n\\n37\\n00:02:43,111 --> 00:02:45,087\\nSut gallwch chi gyfrannu i Commons?\\n\\n38\\n00:02:45,315 --> 00:02:48,672\\n Os ydych yn hoffi tynnu lluniau, gallwch uwchlwytho\\'ch lluniau.\\n\\n39\\n00:02:48,672 --> 00:02:52,061\\nGall rhywun sy\\'n dda ar ddarlunio ychwanegu diagramau ac animeiddiadau\\n\\n40\\n00:02:52,061 --> 00:02:55,212\\na cherddor rhannu recordiadau o gerddoriaeth am ddim.\\n\\n41\\n00:02:55,212 --> 00:02:59,013\\nGall hyd yn oed ffilmiau a recordiadau o ddramau theatr cael eu uwchlwytho\\n\\n42\\n00:02:59,013 --> 00:03:01,925\\ncyn belled nad oes cyfyngiadau hawlfraint arnynt.\\n\\n43\\n00:03:02,513 --> 00:03:07,158\\nRhaid cofrestru fel defnyddiwr er mwyn uwchlwytho ffeiliau i Commons.\\n\\n44\\n00:03:07,468 --> 00:03:10,619\\nMae\\'r cofrestriad yn gyflym ac am ddim...\\n\\n45\\n00:03:10,896 --> 00:03:14,079\\nond does dim angen cofrestru os ydych eisoes wedi cofrestru\\n\\n46\\n00:03:14,079 --> 00:03:15,890\\ndrwy brosiect arall gan y Wikimedia Foundation.\\n\\n47\\n00:03:16,049 --> 00:03:19,375\\nGellir ddim ond uwchlwytho adnoddau sydd mewn fformat rhydd.\\n\\n48\\n00:03:19,375 --> 00:03:23,192\\nEr enghraifft, yr unig fformat fideo a chaniateir yw Ogg Theora.\\n\\n49\\n00:03:23,675 --> 00:03:30,000\\nMae nifer o raglenni cod agored ac am ddim ar gael i drawsnewid ffeiliau o un fformat i\\'r llall.\\n\\n50\\n00:03:30,270 --> 00:03:32,833\\nRhaid i bob ffeil sy\\'n cael ei huwchlwytho gydymffurfio a:\\n\\n51\\n00:03:32,833 --> 00:03:37,246\\ncyfraith UDA, ble mae Wikimedia Foundation yn bodoli\\'n gyfreithlon;\\n\\n52\\n00:03:37,246 --> 00:03:40,317\\ngyfraith y wlad ble mae\\'r adnodd yn dod ohono;\\n\\n53\\n00:03:40,317 --> 00:03:45,532\\na chyfraith gwlad y defnyddiwr sy\\'n gyfrifol am y cynnwys mae\\'n ei uwchlwytho.\\n\\n54\\n00:03:46,056 --> 00:03:50,635\\n Yna, rhaid i chi wirio nad ydych yn torri unrhyw gyfreithiau preifatrwydd\\n\\n55\\n00:03:50,635 --> 00:03:52,167\\na nodau masnachol\\n\\n56\\n00:03:52,167 --> 00:03:56,367\\nna\\'r cyfyngiadau mae rhai amgueddfeydd yn gosod ar ddefnydd gweithiau o gelf.\\n\\n57\\n00:03:56,667 --> 00:04:00,571\\nOs yw\\'r deunydd eisoes wedi\\'i gyhoeddi rhywle arall dan drwydded na sy\\'n rhydd,\\n\\n58\\n00:04:00,571 --> 00:04:04,881\\nrhaid i\\'r awduron neu\\'r hawlfreintwyr anfon e-bost yn adnabod eu hunain\\n\\n59\\n00:04:04,881 --> 00:04:11,302\\nac yn datgan eu caniatad i\\'w gwaith cael eu cyhoeddi dan drwydded rydd.\\n\\n60\\n00:04:12,007 --> 00:04:14,257\\nFel Wikipedia, wiki yw Commons.\\n\\n61\\n00:04:14,257 --> 00:04:16,054\\nMae\\'n wefan sy\\'n agored i bawb\\n\\n62\\n00:04:16,054 --> 00:04:18,606\\na\\'n cael ei rheoli gan wirfoddolwyr o bob cwr y byd\\n\\n63\\n00:04:18,606 --> 00:04:22,055\\nsy\\'n gweithio i adnabod a chategoreiddio\\'r deunydd,\\n\\n64\\n00:04:22,054 --> 00:04:24,440\\ncwblhau neu gyfieithu disgrifiadau,\\n\\n65\\n00:04:24,440 --> 00:04:27,475\\ncreu galeriau a thudalennau gyda themau penodol,\\n\\n66\\n00:04:27,475 --> 00:04:31,675\\nac adnabod a dileu unrhyw gynnwys o ffynonellau anaddas neu heb drwydded dderbyniol.\\n\\n67\\n00:04:32,944 --> 00:04:35,360\\nMae Commons yn brosiect amlieithog:\\n\\n68\\n00:04:35,359 --> 00:04:38,031\\nmae\\'r holl gyfieithiadau i gyd ar yr un gwefan\\n\\n69\\n00:04:38,031 --> 00:04:41,043\\na\\'r cymunedau ieithyddol gwahanol yn rhannu\\'r un gofod.\\n\\n70\\n00:04:41,642 --> 00:04:45,610\\nI chwilio cynnwys Commons yn haws na drwy\\'r categoriau,\\n\\n71\\n00:04:45,610 --> 00:04:48,082\\ngallwch edrych ar galerïau,\\n\\n72\\n00:04:48,082 --> 00:04:54,315\\nsef tudalennau wedi\\'u creu yn bwrpasol i gasglu adnoddau ar yr un pwnc.\\n\\n73\\n00:04:55,007 --> 00:04:59,403\\nMae trafodaeth pob adnodd yn digwydd yn ei dudalen sgwrsio ei hun,\\n\\n74\\n00:04:59,402 --> 00:05:05,354\\ntra bod trafodaethau mwy cyffredin am Commons yn digwydd ar dudalen pwrpasol.\\n\\n75\\n00:05:06,093 --> 00:05:08,871\\nYn Saesneg mae\\'r rhan fwyaf o\\'r trafodaethau,\\n\\n76\\n00:05:08,870 --> 00:05:12,370\\nond mae tudalennau ar gael i drafod mewn ieithoedd eraill hefyd.\\n\\n77\\n00:05:12,938 --> 00:05:16,474\\nMae yna ganolfan cymorth a llawer o dudalennau cymorth ar gael\\n\\n78\\n00:05:16,474 --> 00:05:19,974\\nmewn nifer o ieithoedd os ydych yn cael problemau.\\n\\n79\\n00:05:20,232 --> 00:05:23,347\\nOs yw\\'r mater yn fwy penodol neu\\'n gymhleth, gallwch ofyn i\\'r gweinyddwyr.\\n\\n80\\n00:05:23,347 --> 00:05:25,470\\nMaen nhw hefyd yn wirfoddolwyr\\n\\n81\\n00:05:25,470 --> 00:05:31,220\\nond maent wedi ennill hyder y gymuned dros amser am eu gwybodaeth o\\'r prosiect.\\n\\n82\\n00:05:31,434 --> 00:05:35,502\\nDim ond y gweinyddwyr gall cyflawni rhai gweithredoedd arbennig,\\n\\n83\\n00:05:35,502 --> 00:05:37,914\\nfel dileu adnoddau.\\n\\n84\\n00:05:39,760 --> 00:05:41,930\\nOs ydych eisiau ail-ddefnyddio adnodd o Commons,\\n\\n85\\n00:05:41,929 --> 00:05:46,383\\ngwnewch yn siŵr ei fod yn cydymffurfio a\\'r gyfraith yn eich gwlad chi.\\n\\n86\\n00:05:46,383 --> 00:05:50,228\\nNi all Commons sicrhau cyfreithlondeb pob adnodd mewn unrhyw gyd-destun,\\n\\n87\\n00:05:50,228 --> 00:05:53,188\\nna chwaith ei gywirdeb na\\'i dibynadwyedd llwyr.\\n\\n88\\n00:05:53,188 --> 00:05:56,736\\nFodd bynnag, mae\\'n anhygoel i weld faint o ddeunydd dilys a defnyddiol\\n\\n89\\n00:05:56,736 --> 00:05:58,585\\nsydd wedi cael ei uwchlwytho.\\n\\n90\\n00:05:59,446 --> 00:06:03,722\\nMae mwy a mwy o archifau cyhoeddus, amgueddfeydd,\\n\\n91\\n00:06:03,730 --> 00:06:09,944\\nllyfrgelloedd a chasgliadau preifat yn cyfrannu \"rhoddion\" o adnoddau sy\\'n dda i bawb.\\n\\n92\\n00:06:10,742 --> 00:06:14,869\\nMae nifer o ffotograffwyr proffesiynol yn cyhoeddi eu gwaith ar Commons,\\n\\n93\\n00:06:14,876 --> 00:06:18,135\\ngan fod yn falch o weld eu gwaith yn cael ei ymledu dros y byd.\\n\\n94\\n00:06:18,520 --> 00:06:22,073\\nMae\\'r un yn wir am ddarlunwyr,\\n\\n95\\n00:06:22,073 --> 00:06:25,827\\nsy\\'n rhoi cynlluniau a diagramau hynod o effeithiol.\\n\\n96\\n00:06:26,577 --> 00:06:30,784\\nMae gan y gymuned nifer o ffyrdd i gymeradwyo gwaith o safon.\\n\\n97\\n00:06:30,784 --> 00:06:35,069\\nMae yna gystadleuaeth i wobrwyo ffotograff y flwyddyn.\\n\\n98\\n00:06:35,653 --> 00:06:40,697\\nHefyd mae detholiad yn pigo\\'r lluniau gorau gan ddefnyddwyr Commons\\n\\n99\\n00:06:40,697 --> 00:06:45,014\\nac un arall yn gwobrwyo\\'r lluniau mwyaf effeithiol fesul dosbarth.\\n\\n100\\n00:06:45,530 --> 00:06:49,312\\nMae llun arbennig o ddiddorol yn cael ei ddewis pob dydd,\\n\\n101\\n00:06:49,312 --> 00:06:52,812\\na\\'r un fath yn digwydd gyda\\'r adnoddau aml-gyfrwng eraill.\\n\\n102\\n00:06:54,443 --> 00:06:59,578\\nGallwch gefnogi Commons yn ariannol gan roi i\\'r Wikimedia Foundation,\\n\\n103\\n00:06:59,578 --> 00:07:04,618\\nneu gallwch ddewis i gefnogi Wikimedia UK,\\n\\n104\\n00:07:04,626 --> 00:07:08,579\\nsefydliad dielw sy\\'n hyrwyddo\\'r Commons ym Mhrydain\\n\\n105\\n00:07:08,571 --> 00:07:11,512\\na phrosiectau eraill y Wikimedia Foundation.',\n", + " 'bytes': 9826,\n", + " 'sha1': 'eazz8bblxdsv5laii54ldj7etrq643c',\n", + " 'parent_id': 102245752,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 189526274,\n", + " 'timestamp': '2016-03-06T03:28:06Z',\n", + " 'user': {'id': 410833, 'text': 'Akaniji'},\n", + " 'page': {'id': 27747902,\n", + " 'title': 'Nippon News No241.ogv.ja.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': '仰ぎ献り→仰ぎ献り、軍列行進→分列行進',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:08,000\\n日本ニュース 製作 社団法人 日本映画社\\n\\n2\\n00:00:07,500 --> 00:00:10,000\\n第241号 陸軍省検閲済 海軍省検閲第一号\\n\\n3\\n00:00:10,000 --> 00:00:16,500\\n脱帽 大元帥陛下親臨 陸軍始観兵式\\n\\n4\\n00:00:22,000 --> 00:00:30,000\\n昭和20年の新春を飾る陸軍始観兵式は、畏くも大元帥陛下の親臨を仰ぎ奉り、\\n\\n5\\n00:00:30,000 --> 00:00:36,000\\n1月8日宮城前広場において、いと厳かに執り行われました。\\n\\n6\\n00:00:36,000 --> 00:00:45,000\\n武勲輝く軍旗を先頭に、皇軍の精鋭は陛下の御馬前に堂々の分列行進を行う。\\n\\n7\\n00:00:45,000 --> 00:00:53,000\\n比島決戦いよいよ危急を告げる時、後衛の参加諸部隊は戦闘帽、鉄兜姿も凛々しく、\\n\\n8\\n00:00:53,000 --> 00:01:01,000\\n将兵の士気、益々奮い、ただただ一死奉公、米英撃滅をかたく誓い奉ったのであります。\\n\\n9\\n00:02:10,500 --> 00:02:17,000\\n撃て驕米\\n\\n10\\n00:02:18,000 --> 00:02:30,000\\n福留比島方面海軍航空部隊指揮官、神風特別攻撃隊「金剛隊」の命名式に臨む。\\n\\n11\\n00:02:41,000 --> 00:02:46,500\\n福留長官は「金剛隊」と力強く命名。\\n\\n12\\n00:02:46,500 --> 00:03:00,000\\n国家の運命を双肩に担う諸君の壮気は、軍人として至高のものであると壮途を祝する。\\n\\n13\\n00:03:00,000 --> 00:03:10,000\\n次いで長官は、隊員の一人一人を抱くが如く激励。\\n\\n14\\n00:03:19,000 --> 00:03:32,000\\n大西比島方面海軍航空部隊指揮官また心から交わす握手。\\n\\n15\\n00:03:32,000 --> 00:03:37,000\\n量を頼んで強引なる比島作戦の展開を謀る敵アメリカ。\\n\\n16\\n00:03:37,000 --> 00:04:02,000\\nその敵を厳然と迎えて我に特別攻撃隊あり。\\n\\n17\\n00:04:02,000 --> 00:04:20,000\\n時は来た。進発!いま金剛隊は征く、敵船団目指して。\\n\\n18\\n00:04:20,000 --> 00:04:25,000\\n陸軍特別攻撃隊も相次いで基地を出発する。\\n\\n19\\n00:04:25,000 --> 00:04:31,000\\nレイテ、ミンドロの上陸に続いて、敵はいままたルソン島をも窺い、\\n\\n20\\n00:04:31,000 --> 00:04:38,000\\nリンガエン湾には機動部隊、百隻内外の一大船団、虎視眈々と上陸の機を狙う。\\n\\n21\\n00:04:38,000 --> 00:04:43,000\\n今やルソン島を巡る戦況は俄然活発化するに至った。\\n\\n22\\n00:04:43,000 --> 00:04:46,000\\nこの敵、討たざるべからず。\\n\\n23\\n00:04:46,000 --> 00:04:53,000\\n一機また一機、飛び立つ特別攻撃隊。\\n\\n24\\n00:04:53,000 --> 00:05:00,000\\n刀を揚げて送るは富永比島方面陸軍航空部隊指揮官。\\n\\n25\\n00:05:00,000 --> 00:05:08,000\\nいま幾千の若き陸海軍の将兵は、尽忠の二字を抱いて敵陣の真っ只中へ。\\n\\n26\\n00:05:08,000 --> 00:05:13,000\\n朝敵、討つべし。比島方面にアメリカ軍殲滅の神機至るの時、\\n\\n27\\n00:05:13,000 --> 00:05:17,000\\n我ら一億今こそ特別攻撃隊の精神を体し、\\n\\n28\\n00:05:17,000 --> 00:05:30,000\\n戦力の増強・航空機増産にただただ死力を尽くして挺身あるのみ。\\n\\n29\\n00:05:38,000 --> 00:05:42,000\\n日本ニュース 終',\n", + " 'bytes': 3173,\n", + " 'sha1': 'jcpl7j82k2i0zdu61bkhoryp3czh1m1',\n", + " 'parent_id': 189525776,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 689871142,\n", + " 'timestamp': '2022-09-19T14:46:41Z',\n", + " 'user': {'id': 2366229, 'text': 'Achim55'},\n", + " 'page': {'id': 27759273,\n", + " 'title': 'Indonesiaraya.ogg.id.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': '[[Commons:Rollback|Reverted]] edits by [[Special:Contributions/114.5.146.130|114.5.146.130]] ([[User talk:114.5.146.130|talk]]) to last revision by Terez26',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:05,200\\nIndonesia tanah airku\\n\\n2\\n00:00:05,201 --> 00:00:09,400\\nTanah tumpah darahku\\n\\n3\\n00:00:09,500 --> 00:00:14,600\\nDi sanalah aku berdiri\\n\\n4\\n00:00:14,601 --> 00:00:19,600\\nJadi pandu ibuku\\n\\n5\\n00:00:19,700 --> 00:00:24,200\\nIndonesia kebangsaanku\\n\\n6\\n00:00:24,201 --> 00:00:29,350\\nBangsa dan tanah airku\\n\\n7\\n00:00:29,351 --> 00:00:34,400\\nMarilah kita berseru\\n\\n8\\n00:00:34,401 --> 00:00:39,700\\nIndonesia bersatu\\n\\n9\\n00:00:39,701 --> 00:00:42,300\\nHiduplah tanahku,\\n\\n10\\n00:00:42,301 --> 00:00:44,600\\nHiduplah negeriku,\\n\\n11\\n00:00:44,601 --> 00:00:49,500\\nBangsaku, Rakyatku, Semuanya\\n\\n12\\n00:00:49,501 --> 00:00:52,000\\nBangunlah jiwanya,\\n\\n13\\n00:00:52,001 --> 00:00:54,550\\nBangunlah badannya,\\n\\n14\\n00:00:54,551 --> 00:00:59,400\\nUntuk Indonesia Raya\\n\\n15\\n00:00:59,401 --> 00:01:02,100\\nIndonesia Raya\\n\\n16\\n00:01:02,201 --> 00:01:04,400\\nMerdeka, Merdeka!\\n\\n17\\n00:01:04,401 --> 00:01:09,600\\nTanahku, Negeriku yang kucinta\\n\\n18\\n00:01:09,601 --> 00:01:12,000\\nIndonesia Raya\\n\\n19\\n00:01:12,001 --> 00:01:14,400\\nMerdeka, Merdeka!\\n\\n20\\n00:01:14,401 --> 00:01:19,400\\nHiduplah Indonesia Raya!\\n\\n21\\n00:01:19,401 --> 00:01:21,700\\nIndonesia Raya\\n\\n22\\n00:01:21,701 --> 00:01:24,100\\nMerdeka, Merdeka!\\n\\n23\\n00:01:24,101 --> 00:01:29,000\\nTanahku, Negeriku yang kucinta\\n\\n24\\n00:01:29,001 --> 00:01:31,400\\nIndonesia Raya\\n\\n25\\n00:01:31,401 --> 00:01:33,700\\nMerdeka, Merdeka!\\n\\n26\\n00:01:33,701 --> 00:01:39,800\\n<b><i>Hiduplah Indonesia Raya!</i></b>',\n", + " 'bytes': 1425,\n", + " 'sha1': 'rrt7ry4qry1nec6fgidmeud2bizx4qa',\n", + " 'parent_id': 689858812,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 142770599,\n", + " 'timestamp': '2014-12-15T00:03:53Z',\n", + " 'user': {'text': '111.184.125.55'},\n", + " 'page': {'id': 27765412,\n", + " 'title': 'Sneak Preview - Wikipedia VisualEditor.webm.zh-tw.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,800 -->00:00:03,500\\n你好!我叫特雷福,我正在幫維基百科製作視覺化編輯器。\\n\\n2\\n00:00:03,505 -->00:00:07,505\\n人人都可以編輯維基百科,但新手往往會束手無措。\\n\\n3\\n00:00:07,762 -->00:00:11,262\\n因應維基百科舊的代碼十分難以使用。\\n\\n4\\n00:00:11,287 -->00:00:14,787\\n那在12年前我們創立維基百科時確實很讚,\\n\\n5\\n00:00:14,925 -->00:00:16,925\\n但如果我們要將所有人類的知識匯總分享,\\n\\n6\\n00:00:17,327 -->00:00:19,327\\n我們就應該讓這個過程變得更加容易。\\n\\n7\\n00:00:19,360 -->00:00:22,360\\n推出視覺化編輯器是我所見過維基百科最大的變化了。\\n\\n8\\n00:00:22,604 -->00:00:27,104\\n這使編輯維基百科就像寫論文或發電郵一樣容易。\\n\\n9\\n00:00:27,196 -->00:00:28,696\\n雖然這還不是很完美,\\n\\n10\\n00:00:28,962 -->00:00:31,962\\n但如果你想先睹為快,瞭解將來可以怎樣編輯維基,\\n\\n11\\n00:00:32,207 -->00:00:34,207\\n不妨來維基百科註冊一個帳戶吧。\\n\\n12\\n00:00:34,518 -->00:00:38,018\\n進入參數設定,點擊編輯,然後在開啟視覺化編輯器前打√。\\n\\n13\\n00:00:38,296 -->00:00:42,296\\n在你使用視覺化編輯器時還可以給我們回報建議,幫助我們完善。\\n\\n14\\n00:00:42,622 -->00:00:46,122\\n最後,加入我們吧,讓所有人的知識可以共享。',\n", + " 'bytes': 1340,\n", + " 'sha1': 'p01yu21jxwb2b7t6t7qywhg8jok397x',\n", + " 'parent_id': 127968910,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 102232652,\n", + " 'timestamp': '2013-08-19T08:45:39Z',\n", + " 'user': {'id': 1794541, 'text': 'TianyinLee'},\n", + " 'page': {'id': 27775015,\n", + " 'title': 'National Banner Song.ogg.zh-cn.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\n山川壮丽,物产丰隆\\n\\n2\\n00:00:04,100 --> 00:00:09,000\\n炎黄世胄,东亚称雄\\n\\n3\\n00:00:09,100 --> 00:00:14,000\\n毋自暴自弃,毋故步自封\\n\\n4\\n00:00:14,100 --> 00:00:19,000\\n光我民族,促进大同\\n\\n5\\n00:00:19,100 --> 00:00:24,000\\n创业维艰,缅怀诸先烈\\n\\n6\\n00:00:24,100 --> 00:00:29,000\\n守成不易,莫徒务近功\\n\\n7\\n00:00:29,100 --> 00:00:34,000\\n同心同德,贯彻始终\\n\\n8\\n00:00:34,100 --> 00:00:38,000\\n青天白日满地红\\n\\n9\\n00:00:38,100 --> 00:00:43,000\\n同心同德,贯彻始终\\n\\n10\\n00:00:43,100 --> 00:00:53,000\\n青天白日满地红',\n", + " 'bytes': 616,\n", + " 'sha1': 'q4hemd8btar7v7hqefuj3sygv1dpvz9',\n", + " 'parent_id': 102232317,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 102232631,\n", + " 'timestamp': '2013-08-19T08:45:09Z',\n", + " 'user': {'id': 1794541, 'text': 'TianyinLee'},\n", + " 'page': {'id': 27775055,\n", + " 'title': 'National Banner Song.ogg.zh-hans.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\n山川壮丽,物产丰隆\\n\\n2\\n00:00:04,100 --> 00:00:09,000\\n炎黄世胄,东亚称雄\\n\\n3\\n00:00:09,100 --> 00:00:14,000\\n毋自暴自弃,毋故步自封\\n\\n4\\n00:00:14,100 --> 00:00:19,000\\n光我民族,促进大同\\n\\n5\\n00:00:19,100 --> 00:00:24,000\\n创业维艰,缅怀诸先烈\\n\\n6\\n00:00:24,100 --> 00:00:29,000\\n守成不易,莫徒务近功\\n\\n7\\n00:00:29,100 --> 00:00:34,000\\n同心同德,贯彻始终\\n\\n8\\n00:00:34,100 --> 00:00:38,000\\n青天白日满地红\\n\\n9\\n00:00:38,100 --> 00:00:43,000\\n同心同德,贯彻始终\\n\\n10\\n00:00:43,100 --> 00:00:53,000\\n青天白日满地红',\n", + " 'bytes': 616,\n", + " 'sha1': 'q4hemd8btar7v7hqefuj3sygv1dpvz9',\n", + " 'parent_id': 102232394,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 134890779,\n", + " 'timestamp': '2014-09-19T03:29:06Z',\n", + " 'user': {'id': 1216133, 'text': 'Champion'},\n", + " 'page': {'id': 27775079,\n", + " 'title': 'National Banner Song.ogg.zh.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Undo revision 134890754 by [[Special:Contributions/TheChampionMan1234|TheChampionMan1234]] ([[User talk:TheChampionMan1234|talk]])',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\n山川壯麗,物產豐隆\\n\\n2\\n00:00:04,100 --> 00:00:09,000\\n炎黃世胄,東亞稱雄\\n\\n3\\n00:00:09,100 --> 00:00:14,000\\n毋自暴自棄,毋故步自封\\n\\n4\\n00:00:14,100 --> 00:00:19,000\\n光我民族,促進大同\\n\\n5\\n00:00:19,100 --> 00:00:24,000\\n創業維艱,緬懷諸先烈\\n\\n6\\n00:00:24,100 --> 00:00:29,000\\n守成不易,莫徒務近功\\n\\n7\\n00:00:29,100 --> 00:00:34,000\\n同心同德,貫徹始終\\n\\n8\\n00:00:34,100 --> 00:00:38,000\\n青天白日滿地紅\\n\\n9\\n00:00:38,100 --> 00:00:43,000\\n同心同德,貫徹始終\\n\\n10\\n00:00:43,100 --> 00:00:53,000\\n青天白日滿地紅',\n", + " 'bytes': 609,\n", + " 'sha1': '2h1095r9geez1p7z3a363aoo6fnv20t',\n", + " 'parent_id': 134890754,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 102244108,\n", + " 'timestamp': '2013-08-19T13:00:04Z',\n", + " 'user': {'text': '125.25.240.246'},\n", + " 'page': {'id': 27778566,\n", + " 'title': 'Thai National Anthem - US Navy Band.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:00,000 --> 00:00:05,320 Thailand embraces in its bosom all people of Thai blood, 2 00:00:05,320 --> 00:00:10,500 Every inch of Thailand belongs to the ...'\",\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:05,320\\nThailand embraces in its bosom all people of Thai blood,\\n\\n2\\n00:00:05,320 --> 00:00:10,500\\nEvery inch of Thailand belongs to the Thais.\\n\\n3\\n00:00:10,500 --> 00:00:15,760\\nIt has long maintained its sovereignty,\\n\\n4\\n00:00:15,760 --> 00:00:21,160\\nBecause the Thais have always been united.\\n\\n5\\n00:00:21,160 --> 00:00:26,640\\nThe Thai people are peace-loving, But they are no cowards at war.\\n\\n6\\n00:00:26,640 --> 00:00:31,880\\nNor shall they suffer tyranny.\\n\\n7\\n00:00:31,880 --> 00:00:37,420\\nAll Thais are ready to give up every drop of blood,\\n\\n8\\n00:00:37,420 --> 00:00:43,080\\nFor the nation's safety, freedom and progress.\",\n", + " 'bytes': 643,\n", + " 'sha1': 'niao3gan2kthefj9n82zwwbsr5u1wfo',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 102244280,\n", + " 'timestamp': '2013-08-19T13:03:20Z',\n", + " 'user': {'id': 1975, 'text': 'Sebastian Wallroth'},\n", + " 'page': {'id': 27778643,\n", + " 'title': '2013-04-22 Resonanz.ogv.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'new',\n", + " 'text': '1\\n00:00:00,000 --> 00:00:04,000\\nDa muss ich ja unbedingt nochmal dabei sein.\\n\\n2\\n00:00:04,000 --> 00:00:06,000\\nWenn die Runde nun schon so groß ist.\\n\\n3\\n00:00:06,000 --> 00:00:08,000\\nDu willst nicht fotografiert werden?\\n\\n4\\n00:00:08,000 --> 00:00:10,000\\nAchso. Darf ich Dich fotografieren?\\n\\n5\\n00:00:13,000 --> 00:00:16,000\\nDu weißt doch: Du musst einfach den Arm über die Augen halten.',\n", + " 'bytes': 386,\n", + " 'sha1': 'gn5gz1jnq7kz3tlagssofohc7h2aekc',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 102250428,\n", + " 'timestamp': '2013-08-19T14:55:22Z',\n", + " 'user': {'text': '131.159.16.202'},\n", + " 'page': {'id': 27780229,\n", + " 'title': 'Het braken van een man - SoundCloud - Beeld en Geluid.ogg.en.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Added a missing \"sniff\"',\n", + " 'text': '1\\n00:00:00,700 --> 00:00:2,700\\nUuuuurrrrrrrrrrp!\\n\\n2\\n00:00:02,700 --> 00:00:3,300\\nAeh!\\n\\n3\\n00:00:03,600 --> 00:00:6,100\\nBüüüöööaaaaarrgh!\\n\\n4\\n00:00:06,100 --> 00:00:6,400\\nPff!\\n\\n5\\n00:00:06,400 --> 00:00:7,400\\nBröärrg!\\n\\n6\\n00:00:07,600 --> 00:00:10,000\\nWöaarh!\\n\\n7\\n00:00:10,000 --> 00:00:10,600\\nAeh!\\n\\n7\\n00:00:10,600 --> 00:00:11,000\\n\\\\*sniff\\\\*\\n\\n8\\n00:00:11,000 --> 00:00:11,700\\nAehh!\\n\\n9\\n00:00:12,000 --> 00:00:12,600\\nAeh!\\n\\n10\\n00:00:12,700 --> 00:00:13,600\\n\\\\*sniff\\\\*\\n\\n11\\n00:00:14,300 --> 00:00:15,500\\nUuuurrp!',\n", + " 'bytes': 508,\n", + " 'sha1': 'l252vvskdqsxxjgzvjbt026oaspcjsp',\n", + " 'parent_id': 102250356,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 102250606,\n", + " 'timestamp': '2013-08-19T14:59:31Z',\n", + " 'user': {'text': '131.159.16.202'},\n", + " 'page': {'id': 27780731,\n", + " 'title': 'Het braken van een man - SoundCloud - Beeld en Geluid.ogg.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'Translation from english subtitle',\n", + " 'text': '1\\n00:00:00,700 --> 00:00:2,700\\nÖöööörrrrrrrrrrp!\\n\\n2\\n00:00:02,700 --> 00:00:3,300\\nAeh!\\n\\n3\\n00:00:03,600 --> 00:00:6,100\\nBüüüöööaaaaarrgh!\\n\\n4\\n00:00:06,100 --> 00:00:6,400\\nPff!\\n\\n5\\n00:00:06,400 --> 00:00:7,400\\nBröärrg!\\n\\n6\\n00:00:07,600 --> 00:00:10,000\\nWöaarh!\\n\\n7\\n00:00:10,000 --> 00:00:10,700\\nAeh!\\n\\n8\\n00:00:11,000 --> 00:00:11,700\\nAehh!\\n\\n9\\n00:00:12,000 --> 00:00:12,600\\nAeh!\\n\\n10\\n00:00:12,700 --> 00:00:13,600\\n\\\\*sniff\\\\*\\n\\n11\\n00:00:14,300 --> 00:00:15,500\\nÖööörrp!',\n", + " 'bytes': 474,\n", + " 'sha1': 'ab5uw1fsjxcazt7h5n660htv4pekru1',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 103027371,\n", + " 'timestamp': '2013-08-31T03:55:50Z',\n", + " 'user': {'id': 1011036, 'text': 'Sobreira 10'},\n", + " 'page': {'id': 27824024,\n", + " 'title': 'La Marseillaise.ogg.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '\\n1\\n00:00:00,000 --> 00:00:04,000\\nAvante filhos do nosso país,\\n\\n2\\n00:00:04,000 --> 00:00:08,000\\nO dia da glória chegou!\\n\\n3\\n00:00:08,000 --> 00:00:12,000\\nContra nós vem a tirania,\\n\\n4\\n00:00:12,000 --> 00:00:16,000\\nQue o estandarte sangrento elevou!\\n\\n5\\n00:00:16,000 --> 00:00:20,000\\nQue o estandarte sangrento elevou!\\n\\n6\\n00:00:20,000 --> 00:00:24,000\\nVós entendem aí nos campos\\n\\n7\\n00:00:24,000 --> 00:00:28,000\\nRugir os ferozes soldados?\\n\\n8\\n00:00:28,000 --> 00:00:32,000\\nEles vem até os nossos braços\\n\\n9\\n00:00:32,000 --> 00:00:37,000\\nDegolar mulheres e crianças!\\n\\n10\\n00:00:37,000 --> 00:00:41,000\\nÀs armas, cidadãos,\\n\\n11\\n00:00:41,000 --> 00:00:45,000\\nFormai seus batalhões,\\n\\n12\\n00:00:45,000 --> 00:00:50,000\\nMarchai, marchai!\\n\\n13\\n00:00:50,000 --> 00:00:54,000\\nE que um sangue impuro\\n\\n14\\n00:00:54,000 --> 00:00:58,000\\nBanhe o nosso solo!\\n\\n15\\n00:00:58,000 --> 00:01:02,000\\nÀs armas, cidadãos\\n\\n16\\n00:01:02,000 --> 00:01:06,000\\nFormai seus batalhões,\\n\\n17\\n00:01:06,000 --> 00:01:10,000\\nMarchai, marchai!\\n\\n18\\n00:01:10,000 --> 00:01:14,000\\nE que um sangue impuro\\n\\n19\\n00:01:14,000 --> 00:01:19,000\\nBanhe o nosso solo!',\n", + " 'bytes': 1119,\n", + " 'sha1': 'rme2zv59rv5t31jukityi1oyet356k6',\n", + " 'parent_id': 103027356,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 102596253,\n", + " 'timestamp': '2013-08-24T18:28:13Z',\n", + " 'user': {'id': 106171, 'text': 'Rodrigo.Argenton'},\n", + " 'page': {'id': 27860799,\n", + " 'title': 'Criação de conta.webm.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:10,180 --> 00:00:12,100 clique em criar conta para começarmos. 2 00:00:12,126 --> 00:00:13,180 Insira seu nome de usuário, 3 00:00:13,259 --> 00:0...'\",\n", + " 'text': '1\\n00:00:10,180 --> 00:00:12,100\\nclique em criar conta para começarmos.\\n\\n2\\n00:00:12,126 --> 00:00:13,180\\nInsira seu nome de usuário, \\n\\n3\\n00:00:13,259 --> 00:00:15,213\\nele aceita vários caracteres como pode ver.\\n\\n4\\n00:00:16,227 --> 00:00:17,149\\nEscolha uma senha, e a repita.\\n\\n5\\n00:00:17,991 --> 00:00:20,054\\nOs emails são opcionais, mas lhe garante algumas vantagens.\\n\\n6\\n00:00:20,172 --> 00:00:22,244\\npor uma questão de segurança pedimos que insira o captcha\\n\\n7\\n00:00:22,610 --> 00:00:24,543\\nclique em \"crie sua conta\", e está criada!',\n", + " 'bytes': 541,\n", + " 'sha1': '0mzpaofjbynwvtlrenjw2xtc5jkuoo1',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 102596352,\n", + " 'timestamp': '2013-08-24T18:29:41Z',\n", + " 'user': {'id': 106171, 'text': 'Rodrigo.Argenton'},\n", + " 'page': {'id': 27860846,\n", + " 'title': 'Conta com som.webm.pt-br.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': \"[[COM:AES|←]]Created page with '1 00:00:10,180 --> 00:00:12,100 Clique em criar conta para começarmos. 2 00:00:12,126 --> 00:00:13,180 Insira seu nome de usuário, 3 00:00:13,259 --> 00:0...'\",\n", + " 'text': '1\\n00:00:10,180 --> 00:00:12,100\\nClique em criar conta para começarmos.\\n\\n2\\n00:00:12,126 --> 00:00:13,180\\nInsira seu nome de usuário, \\n\\n3\\n00:00:13,259 --> 00:00:15,213\\nele aceita vários caracteres como pode ver.\\n\\n4\\n00:00:16,227 --> 00:00:17,149\\nEscolha uma senha, e a repita.\\n\\n5\\n00:00:17,991 --> 00:00:20,054\\nOs emails são opcionais, mas lhe garante algumas vantagens.\\n\\n6\\n00:00:20,172 --> 00:00:22,244\\nPor uma questão de segurança pedimos que insira o captcha\\n\\n7\\n00:00:22,610 --> 00:00:24,543\\nClique em \"crie sua conta\", e está criada!',\n", + " 'bytes': 541,\n", + " 'sha1': 'fwj0w7w2i94y45dg4szyr3lmaequsq2',\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 693386711,\n", + " 'timestamp': '2022-10-01T08:32:10Z',\n", + " 'user': {'id': 11592035, 'text': 'Collager'},\n", + " 'page': {'id': 27894977,\n", + " 'title': 'Desteapta-te, romane!.ogg.ro.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'text': '1\\n00:00:00,000 --> 00:00:09,000\\nDeşteaptă-te, române, din somnul cel de moarte,\\nDeщеаптъ-те, роmъnе, dіn соmnȢл чел dе móрте,\\n\\n2\\n00:00:09,000 --> 00:00:22,000\\nÎn care te-adânciră barbarii de tirani!\\nꙞn каре тĕ аdъnчіръ барбарii dе тіраnĭ!\\n\\n3\\n00:00:22,000 --> 00:00:31,000\\nAcum ori niciodată croieşte-ţi altă soarta,\\nАкȢm орĭ nічĭ оdатъ кроĭеще\\'цĭ алтъ сóрте,\\n\\n4\\n00:00:31,000 --> 00:00:45,000\\nLa care să se-nchine şi cruzii tăi dusmani!\\nЛа кареа съ се \\'nкіnе ші крȢzіĭ тъĭ dȢшmаnĭ!\\n\\n5\\n00:00:45,000 --> 00:00:54,000\\nAcum ori niciodată să dăm dovezi la lume,\\nАкȢm, орĭ nічĭ оdатъ съ dъm dовеzĭ ла лȢmе,\\n\\n6\\n00:00:54,000 --> 00:01:08,000\\nCă-n aste mâni mai curge un sânge de roman,\\nКъ \\'nасте mъnĭ mаĭ кȢрџе Ȣn съnџе dе роmаn,\\n\\n7\\n00:01:08,000 --> 00:01:17,000\\nŞi că-n a noastre piepturi păstrăm cu fală-un nume\\nШĭ къ\\'n а nóстре пептȢрĭ пъстръm кȢ фалъ Ȣn nȢmе\\n\\n8\\n00:01:17,000 --> 00:01:30,000\\nTriumfător în lupte, un nume de Traian!\\nТрĭȢmфътор dе пополĭ, Ȣn nȢmе dе Траĭаn\\n\\n9\\n00:01:30,000 --> 00:01:39,000\\nPriviţi, măreţe umbre, Mihai, Ştefan, Corvine,\\nПрівіцĭ mъреце Ȣmбре, МіхаĭȢ, Щефаn, Корвіnе,\\n\\n10\\n00:01:39,000 --> 00:01:53,000\\nRomâna naţiune, ai voştri strănepoţi,\\nЛа nаціа роmъnъ, л\\'аĭ востріĭ стръnепоцĭ,\\n\\n11\\n00:01:53,000 --> 00:02:02,000\\nCu braţele armate, cu focul vostru-n vine,\\nКȢ брацеле арmате, кȢ фокȢл вострȢ\\'n віnе,\\n\\n12\\n00:02:02,000 --> 00:02:17,000\\n\"Viaţă-n libertate, ori moarte!\" strigă toţi.\\n\"Віĭацъ \\'n лібертате, орĭ móрте\" стрігъ тоцĭ.',\n", + " 'bytes': 1831,\n", + " 'sha1': '7zdqimb12y3xfmu44eo462x2mqasiw7',\n", + " 'parent_id': 693386682,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 643291034,\n", + " 'timestamp': '2022-03-23T06:09:46Z',\n", + " 'user': {'id': 189884, 'text': 'Pacha Tchernof'},\n", + " 'page': {'id': 27901669,\n", + " 'title': 'Levitan USSR attacked.ogg.ru.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': False,\n", + " 'comment': 'timings adjustments, new text division for better readability',\n", + " 'text': '1\\n00:00:02,459 --> 00:00:07,516\\n(Позывная мелодия)\\n\\n2\\n00:00:19,263 --> 00:00:26,445\\n(Позывная мелодия)\\n\\n3\\n00:00:31,255 --> 00:00:32,862\\nВнимание!\\n\\n4\\n00:00:33,788 --> 00:00:36,257\\nГоворит Москва!\\n\\n5\\n00:00:37,257 --> 00:00:39,761\\nГоворит Москва!\\n\\n6\\n00:00:41,238 --> 00:00:45,495\\nЗаявление Советского правительства.\\n\\n7\\n00:00:47,000 --> 00:00:52,297\\nГраждане и гражданки Советского Союза,\\n\\n8\\n00:00:53,732 --> 00:00:57,740\\nсегодня, 22 июня,\\n\\n9\\n00:00:58,267 --> 00:01:00,525\\nв 4 часа утра,\\n\\n10\\n00:01:01,357 --> 00:01:04,301\\nбез объявления войны,\\n\\n11\\n00:01:05,493 --> 00:01:10,517\\nгерманские войска напали на нашу страну,\\n\\n12\\n00:01:11,520 --> 00:01:17,826\\nатаковали наши границы во многих местах\\n\\n13\\n00:01:18,610 --> 00:01:25,189\\nи подвергли бомбордировке города Житомир,\\n\\n14\\n00:01:25,222 --> 00:01:31,760\\nКиев, Севастополь, Каунас и другие.',\n", + " 'bytes': 1133,\n", + " 'sha1': 'pzvd5b5szscslq4aoyidwmshihgabtt',\n", + " 'parent_id': 102779227,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 103016833,\n", + " 'timestamp': '2013-08-30T22:38:37Z',\n", + " 'user': {'id': 46400, 'text': 'Sannita'},\n", + " 'page': {'id': 27913828,\n", + " 'title': \"Wikidata's World.webm.en.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'comment': 'fix',\n", + " 'text': '1\\n00:00:21,000 --> 00:00:25,000\\nEverything is connected.\\n\\n2\\n00:00:27,600 --> 00:00:32,000\\nKnowledge is to understand these connections.\\n\\n3\\n00:00:35,700 --> 00:00:44,000\\nImagine a world in which everyone can share in the sum of all knowledge.\\n\\n4\\n00:00:51,600 --> 00:00:55,000\\nDescribing how everything is connected,\\n\\n5\\n00:00:58,200 --> 00:01:01,000\\nin a way that can be translated,\\n\\n6\\n00:01:06,000 --> 00:01:07,000\\nshared,\\n\\n7\\n00:01:11,200 --> 00:01:13,000\\nand edited,\\n\\n8\\n00:01:15,500 --> 00:01:16,800\\nby everyone,\\n\\n9\\n00:01:18,000 --> 00:01:19,500\\nand everything.\\n\\n10\\n00:01:28,100 --> 00:01:29,100\\nThat\\n\\n11\\n00:01:30,200 --> 00:01:32,000\\nis Wikidata.\\n\\n12\\n00:01:34,000 --> 00:01:40,000\\nJoin us.',\n", + " 'bytes': 690,\n", + " 'sha1': 'sqtb7k9zwp7lnzi7s4swhg8ksiwr06o',\n", + " 'parent_id': 102869086,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 103633623,\n", + " 'timestamp': '2013-09-06T16:48:54Z',\n", + " 'user': {'id': 1794541, 'text': 'TianyinLee'},\n", + " 'page': {'id': 27913970,\n", + " 'title': \"Wikidata's World.webm.zh.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:21,000 --> 00:00:25,000\\n任何事物都是相关联的,\\n\\n2\\n00:00:27,600 --> 00:00:32,000\\n知识帮助我们了解这些关联。\\n\\n3\\n00:00:35,700 --> 00:00:44,000\\n想象一个人人都可以分享所有知识总和的世界,\\n\\n4\\n00:00:51,600 --> 00:00:55,000\\n描述事物之间的关联,\\n\\n5\\n00:00:58,200 --> 00:01:01,000\\n用一种可以被翻译、\\n\\n6\\n00:01:06,000 --> 00:01:07,000\\n分享\\n\\n7\\n00:01:11,200 --> 00:01:13,000\\n以及编辑的方式,\\n\\n8\\n00:01:15,500 --> 00:01:16,800\\n人人都可以,\\n\\n9\\n00:01:18,000 --> 00:01:19,500\\n任何事都可以。\\n\\n10\\n00:01:28,100 --> 00:01:29,100\\n这\\n\\n11\\n00:01:30,200 --> 00:01:32,000\\n就是维基数据。\\n\\n12\\n00:01:34,000 --> 00:01:40,000\\n加入我们。',\n", + " 'bytes': 709,\n", + " 'sha1': 'jaxyqiwy51sxvxpyab40vhs4kagn4qj',\n", + " 'parent_id': 103633275,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 103633593,\n", + " 'timestamp': '2013-09-06T16:48:31Z',\n", + " 'user': {'id': 1794541, 'text': 'TianyinLee'},\n", + " 'page': {'id': 27914949,\n", + " 'title': \"Wikidata's World.webm.zh-hans.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:21,000 --> 00:00:25,000\\n任何事物都是相关联的,\\n\\n2\\n00:00:27,600 --> 00:00:32,000\\n知识帮助我们了解这些关联。\\n\\n3\\n00:00:35,700 --> 00:00:44,000\\n想象一个人人都可以分享所有知识总和的世界,\\n\\n4\\n00:00:51,600 --> 00:00:55,000\\n描述事物之间的关联,\\n\\n5\\n00:00:58,200 --> 00:01:01,000\\n用一种可以被翻译、\\n\\n6\\n00:01:06,000 --> 00:01:07,000\\n分享\\n\\n7\\n00:01:11,200 --> 00:01:13,000\\n以及编辑的方式,\\n\\n8\\n00:01:15,500 --> 00:01:16,800\\n人人都可以,\\n\\n9\\n00:01:18,000 --> 00:01:19,500\\n任何事都可以。\\n\\n10\\n00:01:28,100 --> 00:01:29,100\\n这\\n\\n11\\n00:01:30,200 --> 00:01:32,000\\n就是维基数据。\\n\\n12\\n00:01:34,000 --> 00:01:40,000\\n加入我们。',\n", + " 'bytes': 709,\n", + " 'sha1': 'jaxyqiwy51sxvxpyab40vhs4kagn4qj',\n", + " 'parent_id': 103633378,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 103633611,\n", + " 'timestamp': '2013-09-06T16:48:42Z',\n", + " 'user': {'id': 1794541, 'text': 'TianyinLee'},\n", + " 'page': {'id': 27914952,\n", + " 'title': \"Wikidata's World.webm.zh-cn.srt\",\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': '1\\n00:00:21,000 --> 00:00:25,000\\n任何事物都是相关联的,\\n\\n2\\n00:00:27,600 --> 00:00:32,000\\n知识帮助我们了解这些关联。\\n\\n3\\n00:00:35,700 --> 00:00:44,000\\n想象一个人人都可以分享所有知识总和的世界,\\n\\n4\\n00:00:51,600 --> 00:00:55,000\\n描述事物之间的关联,\\n\\n5\\n00:00:58,200 --> 00:01:01,000\\n用一种可以被翻译、\\n\\n6\\n00:01:06,000 --> 00:01:07,000\\n分享\\n\\n7\\n00:01:11,200 --> 00:01:13,000\\n以及编辑的方式,\\n\\n8\\n00:01:15,500 --> 00:01:16,800\\n人人都可以,\\n\\n9\\n00:01:18,000 --> 00:01:19,500\\n任何事都可以。\\n\\n10\\n00:01:28,100 --> 00:01:29,100\\n这\\n\\n11\\n00:01:30,200 --> 00:01:32,000\\n就是维基数据。\\n\\n12\\n00:01:34,000 --> 00:01:40,000\\n加入我们。',\n", + " 'bytes': 709,\n", + " 'sha1': 'jaxyqiwy51sxvxpyab40vhs4kagn4qj',\n", + " 'parent_id': 103633404,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " {'id': 106008478,\n", + " 'timestamp': '2013-10-01T12:04:35Z',\n", + " 'user': {'id': 59544, 'text': 'Yellowcard'},\n", + " 'page': {'id': 27934224,\n", + " 'title': 'Husam Azrak Telekom.WebM.de.srt',\n", + " 'namespace': 102,\n", + " 'restrictions': []},\n", + " 'minor': True,\n", + " 'text': \"1\\n00:00:00,000 --> 00:00:03,000\\nAus unserer Sicht ist dieser Vorwurf haltlos,\\n\\n2\\n00:00:03,000 --> 00:00:09,000\\nweil wir jedem Anbieter, ob StartUp, mittelständisches Unternehmen oder großer Konzern\\n\\n3\\n00:00:09,000 --> 00:00:12,000\\ndie Möglichkeit bieten, sich mit uns an einen Tisch zu setzen,\\n\\n4\\n00:00:12,000 --> 00:00:17,000\\nund solche, ''ehm'', qualitätssichernden Dienste anzubieten.\\n\\n5\\n00:00:17,000 --> 00:00:19,000\\nDas machen wir diskriminierungsfrei.\\n\\n6\\n00:00:19,000 --> 00:00:22,000\\nÜbrigens tritt die Deutsche Telekom hier in Vorleistung.\\n\\n7\\n00:00:22,000 --> 00:00:24,000\\nDas kann sich also jeder leisten.\\n\\n8\\n00:00:24,000 --> 00:00:27,000\\nDas Zweite ist, dass wir das freie Internet für alle\\n\\n9\\n00:00:27,000 --> 00:00:31,000\\nselbstverständlich parallel weiter ausbauen, verbessern\\n\\n10\\n00:00:31,000 --> 00:00:34,000\\nin der Übertragungsqualität\\n\\n11\\n00:00:34,000 --> 00:00:36,000\\naber auch in dem Netzausbau.\\n\\n12\\n00:00:36,000 --> 00:00:40,000\\nWir wollen nämlich auch das Internet bis in die ländlichen Gebiete aufbauen.\\n\\n13\\n00:00:40,000 --> 00:00:43,000\\nDas ist also ein paralleler Strang.\\n\\n14\\n00:00:43,000 --> 00:00:45,000\\nHier ist von Diskriminierung überhaupt…\",\n", + " 'bytes': 1183,\n", + " 'sha1': 'rigd0a2jcodf2zavvrzogh9v4djdg66',\n", + " 'parent_id': 102907544,\n", + " 'model': 'wikitext',\n", + " 'format': 'text/x-wiki',\n", + " 'deleted': {'text': False, 'comment': False, 'user': False}},\n", + " ...]" + ] + }, + "execution_count": 104, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "previous_json" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python [conda env:factored]", + "language": "python", + "name": "conda-env-factored-py" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.10" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +}